From 9e8ac821e4042f19eefd512435d7eb651447ad0d Mon Sep 17 00:00:00 2001 From: Max Brunsfeld Date: Wed, 1 Aug 2018 16:47:56 -0700 Subject: [PATCH] Don't allow whitespace inside of string literals --- grammar.js | 6 +- src/grammar.json | 11 +- src/parser.c | 66794 +++++++++++++++++++++++---------------------- 3 files changed, 33414 insertions(+), 33397 deletions(-) diff --git a/grammar.js b/grammar.js index a590cf3..944e856 100644 --- a/grammar.js +++ b/grammar.js @@ -677,7 +677,7 @@ module.exports = grammar({ '\'', choice( $.escape_sequence, - /[^\n']/ + token.immediate(/[^\n']/) ), '\'' ), @@ -690,13 +690,13 @@ module.exports = grammar({ string_literal: $ => seq( '"', repeat(choice( - token(prec(1, /[^\\"\n]/)), + token.immediate(prec(1, /[^\\"\n]/)), $.escape_sequence )), '"' ), - escape_sequence: $ => token(seq( + escape_sequence: $ => token.immediate(seq( '\\', choice( /[^xuU]/, diff --git a/src/grammar.json b/src/grammar.json index 650628e..4a7106f 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -4027,8 +4027,11 @@ "name": "escape_sequence" }, { - "type": "PATTERN", - "value": "[^\\n']" + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "PATTERN", + "value": "[^\\n']" + } } ] }, @@ -4067,7 +4070,7 @@ "type": "CHOICE", "members": [ { - "type": "TOKEN", + "type": "IMMEDIATE_TOKEN", "content": { "type": "PREC", "value": 1, @@ -4091,7 +4094,7 @@ ] }, "escape_sequence": { - "type": "TOKEN", + "type": "IMMEDIATE_TOKEN", "content": { "type": "SEQ", "members": [ diff --git a/src/parser.c b/src/parser.c index 6037033..d71283c 100644 --- a/src/parser.c +++ b/src/parser.c @@ -2444,8 +2444,6 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(86); if (lookahead == '[') ADVANCE(87); - if (lookahead == '\\') - ADVANCE(88); if (lookahead == ']') ADVANCE(104); if (lookahead == '^') @@ -2465,7 +2463,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { SKIP(113); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(73); - if (('A' <= lookahead && lookahead <= '_') || + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(115); END_STATE(); @@ -2828,24 +2827,35 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 146: if (lookahead == '\n') - SKIP(146); + SKIP(147); if (lookahead == '\"') ADVANCE(4); if (lookahead == '/') - ADVANCE(147); + ADVANCE(148); if (lookahead == '\\') ADVANCE(88); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') - ADVANCE(147); + ADVANCE(148); if (lookahead != 0) - ADVANCE(147); + ADVANCE(148); END_STATE(); case 147: - ACCEPT_TOKEN(aux_sym_SLASH_LBRACK_CARET_BSLASH_BSLASH_DQUOTE_BSLASHn_RBRACK_SLASH); + if (lookahead == '\"') + ADVANCE(4); + if (lookahead == '/') + ADVANCE(118); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(147); END_STATE(); case 148: + ACCEPT_TOKEN(aux_sym_SLASH_LBRACK_CARET_BSLASH_BSLASH_DQUOTE_BSLASHn_RBRACK_SLASH); + END_STATE(); + case 149: if (lookahead == '\n') ADVANCE(134); if (lookahead == '(') @@ -2861,7 +2871,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead != 0) ADVANCE(131); END_STATE(); - case 149: + case 150: if (lookahead == '!') ADVANCE(137); if (lookahead == '\"') @@ -2894,7 +2904,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(149); + SKIP(150); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(73); if (('A' <= lookahead && lookahead <= 'Z') || @@ -2902,7 +2912,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'z')) ADVANCE(115); END_STATE(); - case 150: + case 151: if (lookahead == '\n') ADVANCE(134); if (lookahead == '/') @@ -2910,9 +2920,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') - SKIP(150); + SKIP(151); END_STATE(); - case 151: + case 152: if (lookahead == '!') ADVANCE(2); if (lookahead == '\"') @@ -2965,7 +2975,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(151); + SKIP(152); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(73); if (('A' <= lookahead && lookahead <= 'Z') || @@ -2973,9 +2983,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'z')) ADVANCE(115); END_STATE(); - case 152: + case 153: if (lookahead == '#') - ADVANCE(153); + ADVANCE(154); if (lookahead == '/') ADVANCE(118); if (lookahead == '}') @@ -2984,61 +2994,61 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(152); + SKIP(153); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(115); END_STATE(); - case 153: + case 154: if (lookahead == 'i') - ADVANCE(154); + ADVANCE(155); if (lookahead == '\t' || lookahead == ' ') - ADVANCE(153); - END_STATE(); - case 154: - if (lookahead == 'f') - ADVANCE(155); + ADVANCE(154); END_STATE(); case 155: - ACCEPT_TOKEN(aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH); - if (lookahead == 'd') + if (lookahead == 'f') ADVANCE(156); - if (lookahead == 'n') - ADVANCE(159); END_STATE(); case 156: - if (lookahead == 'e') + ACCEPT_TOKEN(aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH); + if (lookahead == 'd') ADVANCE(157); + if (lookahead == 'n') + ADVANCE(160); END_STATE(); case 157: - if (lookahead == 'f') + if (lookahead == 'e') ADVANCE(158); END_STATE(); case 158: - ACCEPT_TOKEN(aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH); + if (lookahead == 'f') + ADVANCE(159); END_STATE(); case 159: - if (lookahead == 'd') - ADVANCE(160); + ACCEPT_TOKEN(aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH); END_STATE(); case 160: - if (lookahead == 'e') + if (lookahead == 'd') ADVANCE(161); END_STATE(); case 161: - if (lookahead == 'f') + if (lookahead == 'e') ADVANCE(162); END_STATE(); case 162: - ACCEPT_TOKEN(aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH); + if (lookahead == 'f') + ADVANCE(163); END_STATE(); case 163: + ACCEPT_TOKEN(aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH); + END_STATE(); + case 164: if (lookahead == 0) ADVANCE(1); if (lookahead == '!') - ADVANCE(164); + ADVANCE(165); if (lookahead == '\"') ADVANCE(4); if (lookahead == '#') @@ -3091,17 +3101,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(163); + SKIP(164); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(115); END_STATE(); - case 164: + case 165: if (lookahead == '=') ADVANCE(3); END_STATE(); - case 165: + case 166: if (lookahead == '(') ADVANCE(114); if (lookahead == ')') @@ -3109,7 +3119,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '*') ADVANCE(139); if (lookahead == '.') - ADVANCE(166); + ADVANCE(167); if (lookahead == '/') ADVANCE(118); if (lookahead == '[') @@ -3118,17 +3128,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(165); + SKIP(166); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(115); END_STATE(); - case 166: + case 167: if (lookahead == '.') ADVANCE(57); END_STATE(); - case 167: + case 168: if (lookahead == 0) ADVANCE(1); if (lookahead == '#') @@ -3141,19 +3151,19 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(167); + SKIP(168); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(115); END_STATE(); - case 168: + case 169: if (lookahead == '!') ADVANCE(137); if (lookahead == '\"') ADVANCE(4); if (lookahead == '#') - ADVANCE(169); + ADVANCE(170); if (lookahead == '&') ADVANCE(138); if (lookahead == '\'') @@ -3180,7 +3190,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(168); + SKIP(169); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(73); if (('A' <= lookahead && lookahead <= 'Z') || @@ -3188,21 +3198,21 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'z')) ADVANCE(115); END_STATE(); - case 169: + case 170: if (lookahead == 'd') ADVANCE(6); if (lookahead == 'e') - ADVANCE(170); + ADVANCE(171); if (lookahead == 'i') ADVANCE(23); if (lookahead == '\t' || lookahead == ' ') - ADVANCE(169); + ADVANCE(170); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(12); END_STATE(); - case 170: + case 171: ACCEPT_TOKEN(sym_preproc_directive); if (lookahead == 'n') ADVANCE(19); @@ -3212,72 +3222,72 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'z')) ADVANCE(12); END_STATE(); - case 171: + case 172: if (lookahead == '#') - ADVANCE(172); + ADVANCE(173); if (lookahead == '/') ADVANCE(118); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(171); + SKIP(172); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(115); END_STATE(); - case 172: + case 173: if (lookahead == 'e') - ADVANCE(173); + ADVANCE(174); if (lookahead == 'i') - ADVANCE(154); + ADVANCE(155); if (lookahead == '\t' || lookahead == ' ') - ADVANCE(172); - END_STATE(); - case 173: - if (lookahead == 'l') - ADVANCE(174); - if (lookahead == 'n') - ADVANCE(179); + ADVANCE(173); END_STATE(); case 174: - if (lookahead == 'i') + if (lookahead == 'l') ADVANCE(175); - if (lookahead == 's') - ADVANCE(177); + if (lookahead == 'n') + ADVANCE(180); END_STATE(); case 175: - if (lookahead == 'f') + if (lookahead == 'i') ADVANCE(176); + if (lookahead == 's') + ADVANCE(178); END_STATE(); case 176: - ACCEPT_TOKEN(aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH); + if (lookahead == 'f') + ADVANCE(177); END_STATE(); case 177: - if (lookahead == 'e') - ADVANCE(178); + ACCEPT_TOKEN(aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH); END_STATE(); case 178: - ACCEPT_TOKEN(aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH); + if (lookahead == 'e') + ADVANCE(179); END_STATE(); case 179: - if (lookahead == 'd') - ADVANCE(180); + ACCEPT_TOKEN(aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH); END_STATE(); case 180: - if (lookahead == 'i') + if (lookahead == 'd') ADVANCE(181); END_STATE(); case 181: - if (lookahead == 'f') + if (lookahead == 'i') ADVANCE(182); END_STATE(); case 182: - ACCEPT_TOKEN(aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH); + if (lookahead == 'f') + ADVANCE(183); END_STATE(); case 183: + ACCEPT_TOKEN(aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH); + END_STATE(); + case 184: if (lookahead == '(') ADVANCE(114); if (lookahead == ')') @@ -3298,11 +3308,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(183); + SKIP(184); END_STATE(); - case 184: + case 185: if (lookahead == '#') - ADVANCE(172); + ADVANCE(173); if (lookahead == '/') ADVANCE(118); if (lookahead == '}') @@ -3311,13 +3321,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(184); + SKIP(185); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(115); END_STATE(); - case 185: + case 186: if (lookahead == '!') ADVANCE(2); if (lookahead == '\"') @@ -3370,7 +3380,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(185); + SKIP(186); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(73); if (('A' <= lookahead && lookahead <= 'Z') || @@ -3378,7 +3388,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'z')) ADVANCE(115); END_STATE(); - case 186: + case 187: if (lookahead == '!') ADVANCE(137); if (lookahead == '\"') @@ -3407,7 +3417,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(186); + SKIP(187); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(73); if (('A' <= lookahead && lookahead <= 'Z') || @@ -3415,7 +3425,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'z')) ADVANCE(115); END_STATE(); - case 187: + case 188: if (lookahead == '!') ADVANCE(2); if (lookahead == '\"') @@ -3466,7 +3476,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(187); + SKIP(188); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(73); if (('A' <= lookahead && lookahead <= 'Z') || @@ -3474,7 +3484,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'z')) ADVANCE(115); END_STATE(); - case 188: + case 189: if (lookahead == '(') ADVANCE(114); if (lookahead == ')') @@ -3497,31 +3507,40 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(188); + SKIP(189); END_STATE(); - case 189: + case 190: if (lookahead == '\n') - SKIP(189); + SKIP(191); if (lookahead == '/') - ADVANCE(190); + ADVANCE(192); if (lookahead == '\\') - ADVANCE(191); + ADVANCE(193); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') - ADVANCE(192); + ADVANCE(194); if (lookahead != 0 && lookahead != '\'') - ADVANCE(192); + ADVANCE(194); END_STATE(); - case 190: + case 191: + if (lookahead == '/') + ADVANCE(118); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(191); + END_STATE(); + case 192: ACCEPT_TOKEN(aux_sym_SLASH_LBRACK_CARET_BSLASHn_SQUOTE_RBRACK_SLASH); if (lookahead == '*') ADVANCE(60); if (lookahead == '/') ADVANCE(63); END_STATE(); - case 191: + case 193: ACCEPT_TOKEN(aux_sym_SLASH_LBRACK_CARET_BSLASHn_SQUOTE_RBRACK_SLASH); if (lookahead == 'U') ADVANCE(89); @@ -3534,10 +3553,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead != 0) ADVANCE(97); END_STATE(); - case 192: + case 194: ACCEPT_TOKEN(aux_sym_SLASH_LBRACK_CARET_BSLASHn_SQUOTE_RBRACK_SLASH); END_STATE(); - case 193: + case 195: if (lookahead == '!') ADVANCE(2); if (lookahead == '\"') @@ -3586,7 +3605,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(193); + SKIP(195); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(73); if (('A' <= lookahead && lookahead <= 'Z') || @@ -3594,7 +3613,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'z')) ADVANCE(115); END_STATE(); - case 194: + case 196: if (lookahead == '!') ADVANCE(137); if (lookahead == '\"') @@ -3631,7 +3650,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(194); + SKIP(196); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(73); if (('A' <= lookahead && lookahead <= 'Z') || @@ -3639,9 +3658,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'z')) ADVANCE(115); END_STATE(); - case 195: + case 197: if (lookahead == '!') - ADVANCE(164); + ADVANCE(165); if (lookahead == '%') ADVANCE(38); if (lookahead == '&') @@ -3688,13 +3707,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(195); + SKIP(197); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(115); END_STATE(); - case 196: + case 198: if (lookahead == '!') ADVANCE(137); if (lookahead == '\"') @@ -3723,7 +3742,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(196); + SKIP(198); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(73); if (('A' <= lookahead && lookahead <= 'Z') || @@ -4573,20 +4592,20 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [21] = {.lex_state = 145}, [22] = {.lex_state = 146}, [23] = {.lex_state = 145}, - [24] = {.lex_state = 148}, - [25] = {.lex_state = 149}, - [26] = {.lex_state = 149}, - [27] = {.lex_state = 149}, + [24] = {.lex_state = 149}, + [25] = {.lex_state = 150}, + [26] = {.lex_state = 150}, + [27] = {.lex_state = 150}, [28] = {.lex_state = 145}, - [29] = {.lex_state = 150}, + [29] = {.lex_state = 151}, [30] = {.lex_state = 136}, [31] = {.lex_state = 116}, [32] = {.lex_state = 136}, [33] = {.lex_state = 136}, - [34] = {.lex_state = 151}, + [34] = {.lex_state = 152}, [35] = {.lex_state = 136}, [36] = {.lex_state = 136}, - [37] = {.lex_state = 152}, + [37] = {.lex_state = 153}, [38] = {.lex_state = 136}, [39] = {.lex_state = 136}, [40] = {.lex_state = 136}, @@ -4595,8 +4614,8 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [43] = {.lex_state = 145}, [44] = {.lex_state = 136}, [45] = {.lex_state = 136}, - [46] = {.lex_state = 151}, - [47] = {.lex_state = 151}, + [46] = {.lex_state = 152}, + [47] = {.lex_state = 152}, [48] = {.lex_state = 145}, [49] = {.lex_state = 116}, [50] = {.lex_state = 145}, @@ -4604,99 +4623,99 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [52] = {.lex_state = 136}, [53] = {.lex_state = 136}, [54] = {.lex_state = 145}, - [55] = {.lex_state = 163}, + [55] = {.lex_state = 164}, [56] = {.lex_state = 146}, [57] = {.lex_state = 145}, - [58] = {.lex_state = 165}, - [59] = {.lex_state = 150}, + [58] = {.lex_state = 166}, + [59] = {.lex_state = 151}, [60] = {.lex_state = 133}, [61] = {.lex_state = 119}, [62] = {.lex_state = 116}, [63] = {.lex_state = 124}, - [64] = {.lex_state = 167}, + [64] = {.lex_state = 168}, [65] = {.lex_state = 116}, [66] = {.lex_state = 116}, - [67] = {.lex_state = 168}, + [67] = {.lex_state = 169}, [68] = {.lex_state = 124}, [69] = {.lex_state = 133}, [70] = {.lex_state = 116}, [71] = {.lex_state = 136}, - [72] = {.lex_state = 171}, + [72] = {.lex_state = 172}, [73] = {.lex_state = 145}, - [74] = {.lex_state = 149}, - [75] = {.lex_state = 167}, - [76] = {.lex_state = 171}, - [77] = {.lex_state = 149}, - [78] = {.lex_state = 167}, - [79] = {.lex_state = 171}, - [80] = {.lex_state = 149}, + [74] = {.lex_state = 150}, + [75] = {.lex_state = 168}, + [76] = {.lex_state = 172}, + [77] = {.lex_state = 150}, + [78] = {.lex_state = 168}, + [79] = {.lex_state = 172}, + [80] = {.lex_state = 150}, [81] = {.lex_state = 145}, [82] = {.lex_state = 136}, [83] = {.lex_state = 136}, - [84] = {.lex_state = 183}, - [85] = {.lex_state = 151}, - [86] = {.lex_state = 183}, - [87] = {.lex_state = 183}, - [88] = {.lex_state = 183}, + [84] = {.lex_state = 184}, + [85] = {.lex_state = 152}, + [86] = {.lex_state = 184}, + [87] = {.lex_state = 184}, + [88] = {.lex_state = 184}, [89] = {.lex_state = 136}, [90] = {.lex_state = 116}, [91] = {.lex_state = 136}, [92] = {.lex_state = 145}, - [93] = {.lex_state = 167}, + [93] = {.lex_state = 168}, [94] = {.lex_state = 136}, [95] = {.lex_state = 136}, [96] = {.lex_state = 116}, [97] = {.lex_state = 136}, [98] = {.lex_state = 145}, [99] = {.lex_state = 136}, - [100] = {.lex_state = 151}, - [101] = {.lex_state = 151}, + [100] = {.lex_state = 152}, + [101] = {.lex_state = 152}, [102] = {.lex_state = 136}, [103] = {.lex_state = 124}, [104] = {.lex_state = 116}, [105] = {.lex_state = 116}, [106] = {.lex_state = 136}, - [107] = {.lex_state = 184}, - [108] = {.lex_state = 184}, - [109] = {.lex_state = 185}, - [110] = {.lex_state = 185}, - [111] = {.lex_state = 152}, + [107] = {.lex_state = 185}, + [108] = {.lex_state = 185}, + [109] = {.lex_state = 186}, + [110] = {.lex_state = 186}, + [111] = {.lex_state = 153}, [112] = {.lex_state = 116}, - [113] = {.lex_state = 185}, + [113] = {.lex_state = 186}, [114] = {.lex_state = 136}, [115] = {.lex_state = 136}, - [116] = {.lex_state = 165}, - [117] = {.lex_state = 165}, + [116] = {.lex_state = 166}, + [117] = {.lex_state = 166}, [118] = {.lex_state = 116}, - [119] = {.lex_state = 165}, + [119] = {.lex_state = 166}, [120] = {.lex_state = 136}, - [121] = {.lex_state = 165}, - [122] = {.lex_state = 183}, + [121] = {.lex_state = 166}, + [122] = {.lex_state = 184}, [123] = {.lex_state = 136}, [124] = {.lex_state = 136}, [125] = {.lex_state = 145}, [126] = {.lex_state = 145}, - [127] = {.lex_state = 165}, - [128] = {.lex_state = 186}, + [127] = {.lex_state = 166}, + [128] = {.lex_state = 187}, [129] = {.lex_state = 136}, - [130] = {.lex_state = 167}, - [131] = {.lex_state = 183}, - [132] = {.lex_state = 151}, + [130] = {.lex_state = 168}, + [131] = {.lex_state = 184}, + [132] = {.lex_state = 152}, [133] = {.lex_state = 145}, [134] = {.lex_state = 145}, - [135] = {.lex_state = 163}, + [135] = {.lex_state = 164}, [136] = {.lex_state = 146}, - [137] = {.lex_state = 187}, + [137] = {.lex_state = 188}, [138] = {.lex_state = 133}, [139] = {.lex_state = 145}, [140] = {.lex_state = 145}, - [141] = {.lex_state = 150}, + [141] = {.lex_state = 151}, [142] = {.lex_state = 146}, - [143] = {.lex_state = 149}, - [144] = {.lex_state = 148}, - [145] = {.lex_state = 149}, - [146] = {.lex_state = 149}, - [147] = {.lex_state = 149}, + [143] = {.lex_state = 150}, + [144] = {.lex_state = 149}, + [145] = {.lex_state = 150}, + [146] = {.lex_state = 150}, + [147] = {.lex_state = 150}, [148] = {.lex_state = 119}, [149] = {.lex_state = 116}, [150] = {.lex_state = 124}, @@ -4706,32 +4725,32 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [154] = {.lex_state = 116}, [155] = {.lex_state = 136}, [156] = {.lex_state = 145}, - [157] = {.lex_state = 168}, - [158] = {.lex_state = 149}, - [159] = {.lex_state = 149}, - [160] = {.lex_state = 150}, + [157] = {.lex_state = 169}, + [158] = {.lex_state = 150}, + [159] = {.lex_state = 150}, + [160] = {.lex_state = 151}, [161] = {.lex_state = 136}, [162] = {.lex_state = 116}, [163] = {.lex_state = 136}, - [164] = {.lex_state = 167}, - [165] = {.lex_state = 149}, - [166] = {.lex_state = 151}, - [167] = {.lex_state = 151}, - [168] = {.lex_state = 171}, - [169] = {.lex_state = 149}, - [170] = {.lex_state = 167}, - [171] = {.lex_state = 171}, - [172] = {.lex_state = 167}, - [173] = {.lex_state = 171}, + [164] = {.lex_state = 168}, + [165] = {.lex_state = 150}, + [166] = {.lex_state = 152}, + [167] = {.lex_state = 152}, + [168] = {.lex_state = 172}, + [169] = {.lex_state = 150}, + [170] = {.lex_state = 168}, + [171] = {.lex_state = 172}, + [172] = {.lex_state = 168}, + [173] = {.lex_state = 172}, [174] = {.lex_state = 136}, - [175] = {.lex_state = 165}, - [176] = {.lex_state = 183}, + [175] = {.lex_state = 166}, + [176] = {.lex_state = 184}, [177] = {.lex_state = 136}, [178] = {.lex_state = 145}, - [179] = {.lex_state = 186}, - [180] = {.lex_state = 183}, - [181] = {.lex_state = 151}, - [182] = {.lex_state = 167}, + [179] = {.lex_state = 187}, + [180] = {.lex_state = 184}, + [181] = {.lex_state = 152}, + [182] = {.lex_state = 168}, [183] = {.lex_state = 145}, [184] = {.lex_state = 136}, [185] = {.lex_state = 136}, @@ -4739,39 +4758,39 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [187] = {.lex_state = 136}, [188] = {.lex_state = 136}, [189] = {.lex_state = 145}, - [190] = {.lex_state = 151}, - [191] = {.lex_state = 171}, - [192] = {.lex_state = 171}, - [193] = {.lex_state = 171}, - [194] = {.lex_state = 184}, + [190] = {.lex_state = 152}, + [191] = {.lex_state = 172}, + [192] = {.lex_state = 172}, + [193] = {.lex_state = 172}, + [194] = {.lex_state = 185}, [195] = {.lex_state = 136}, [196] = {.lex_state = 136}, [197] = {.lex_state = 136}, - [198] = {.lex_state = 188}, - [199] = {.lex_state = 185}, - [200] = {.lex_state = 188}, - [201] = {.lex_state = 188}, - [202] = {.lex_state = 188}, - [203] = {.lex_state = 185}, + [198] = {.lex_state = 189}, + [199] = {.lex_state = 186}, + [200] = {.lex_state = 189}, + [201] = {.lex_state = 189}, + [202] = {.lex_state = 189}, + [203] = {.lex_state = 186}, [204] = {.lex_state = 136}, - [205] = {.lex_state = 152}, - [206] = {.lex_state = 185}, - [207] = {.lex_state = 185}, - [208] = {.lex_state = 165}, - [209] = {.lex_state = 165}, - [210] = {.lex_state = 186}, - [211] = {.lex_state = 165}, - [212] = {.lex_state = 187}, + [205] = {.lex_state = 153}, + [206] = {.lex_state = 186}, + [207] = {.lex_state = 186}, + [208] = {.lex_state = 166}, + [209] = {.lex_state = 166}, + [210] = {.lex_state = 187}, + [211] = {.lex_state = 166}, + [212] = {.lex_state = 188}, [213] = {.lex_state = 136}, - [214] = {.lex_state = 165}, - [215] = {.lex_state = 165}, + [214] = {.lex_state = 166}, + [215] = {.lex_state = 166}, [216] = {.lex_state = 136}, - [217] = {.lex_state = 183}, - [218] = {.lex_state = 183}, + [217] = {.lex_state = 184}, + [218] = {.lex_state = 184}, [219] = {.lex_state = 136}, [220] = {.lex_state = 136}, - [221] = {.lex_state = 151}, - [222] = {.lex_state = 151}, + [221] = {.lex_state = 152}, + [222] = {.lex_state = 152}, [223] = {.lex_state = 119}, [224] = {.lex_state = 124}, [225] = {.lex_state = 116}, @@ -4783,7 +4802,7 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [231] = {.lex_state = 136}, [232] = {.lex_state = 136}, [233] = {.lex_state = 136}, - [234] = {.lex_state = 185}, + [234] = {.lex_state = 186}, [235] = {.lex_state = 136}, [236] = {.lex_state = 145}, [237] = {.lex_state = 136}, @@ -4795,96 +4814,96 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [243] = {.lex_state = 136}, [244] = {.lex_state = 136}, [245] = {.lex_state = 136}, - [246] = {.lex_state = 189}, - [247] = {.lex_state = 185}, + [246] = {.lex_state = 190}, + [247] = {.lex_state = 186}, [248] = {.lex_state = 145}, [249] = {.lex_state = 145}, [250] = {.lex_state = 145}, - [251] = {.lex_state = 151}, + [251] = {.lex_state = 152}, [252] = {.lex_state = 145}, - [253] = {.lex_state = 151}, + [253] = {.lex_state = 152}, [254] = {.lex_state = 145}, - [255] = {.lex_state = 187}, - [256] = {.lex_state = 188}, - [257] = {.lex_state = 187}, - [258] = {.lex_state = 187}, + [255] = {.lex_state = 188}, + [256] = {.lex_state = 189}, + [257] = {.lex_state = 188}, + [258] = {.lex_state = 188}, [259] = {.lex_state = 116}, - [260] = {.lex_state = 187}, + [260] = {.lex_state = 188}, [261] = {.lex_state = 136}, [262] = {.lex_state = 136}, - [263] = {.lex_state = 183}, + [263] = {.lex_state = 184}, [264] = {.lex_state = 136}, [265] = {.lex_state = 136}, [266] = {.lex_state = 136}, [267] = {.lex_state = 136}, - [268] = {.lex_state = 193}, - [269] = {.lex_state = 186}, - [270] = {.lex_state = 186}, - [271] = {.lex_state = 193}, - [272] = {.lex_state = 193}, + [268] = {.lex_state = 195}, + [269] = {.lex_state = 187}, + [270] = {.lex_state = 187}, + [271] = {.lex_state = 195}, + [272] = {.lex_state = 195}, [273] = {.lex_state = 116}, - [274] = {.lex_state = 186}, - [275] = {.lex_state = 194}, - [276] = {.lex_state = 151}, - [277] = {.lex_state = 151}, + [274] = {.lex_state = 187}, + [275] = {.lex_state = 196}, + [276] = {.lex_state = 152}, + [277] = {.lex_state = 152}, [278] = {.lex_state = 145}, - [279] = {.lex_state = 151}, - [280] = {.lex_state = 165}, + [279] = {.lex_state = 152}, + [280] = {.lex_state = 166}, [281] = {.lex_state = 133}, - [282] = {.lex_state = 187}, + [282] = {.lex_state = 188}, [283] = {.lex_state = 145}, - [284] = {.lex_state = 149}, + [284] = {.lex_state = 150}, [285] = {.lex_state = 146}, - [286] = {.lex_state = 149}, - [287] = {.lex_state = 150}, + [286] = {.lex_state = 150}, + [287] = {.lex_state = 151}, [288] = {.lex_state = 133}, - [289] = {.lex_state = 149}, - [290] = {.lex_state = 171}, - [291] = {.lex_state = 149}, - [292] = {.lex_state = 149}, - [293] = {.lex_state = 171}, - [294] = {.lex_state = 149}, - [295] = {.lex_state = 149}, - [296] = {.lex_state = 171}, - [297] = {.lex_state = 149}, + [289] = {.lex_state = 150}, + [290] = {.lex_state = 172}, + [291] = {.lex_state = 150}, + [292] = {.lex_state = 150}, + [293] = {.lex_state = 172}, + [294] = {.lex_state = 150}, + [295] = {.lex_state = 150}, + [296] = {.lex_state = 172}, + [297] = {.lex_state = 150}, [298] = {.lex_state = 146}, - [299] = {.lex_state = 168}, - [300] = {.lex_state = 148}, - [301] = {.lex_state = 149}, - [302] = {.lex_state = 149}, - [303] = {.lex_state = 149}, - [304] = {.lex_state = 168}, - [305] = {.lex_state = 150}, + [299] = {.lex_state = 169}, + [300] = {.lex_state = 149}, + [301] = {.lex_state = 150}, + [302] = {.lex_state = 150}, + [303] = {.lex_state = 150}, + [304] = {.lex_state = 169}, + [305] = {.lex_state = 151}, [306] = {.lex_state = 136}, [307] = {.lex_state = 116}, [308] = {.lex_state = 136}, - [309] = {.lex_state = 168}, - [310] = {.lex_state = 151}, - [311] = {.lex_state = 151}, - [312] = {.lex_state = 168}, - [313] = {.lex_state = 171}, - [314] = {.lex_state = 149}, - [315] = {.lex_state = 149}, - [316] = {.lex_state = 151}, + [309] = {.lex_state = 169}, + [310] = {.lex_state = 152}, + [311] = {.lex_state = 152}, + [312] = {.lex_state = 169}, + [313] = {.lex_state = 172}, + [314] = {.lex_state = 150}, + [315] = {.lex_state = 150}, + [316] = {.lex_state = 152}, [317] = {.lex_state = 136}, [318] = {.lex_state = 145}, - [319] = {.lex_state = 149}, + [319] = {.lex_state = 150}, [320] = {.lex_state = 136}, - [321] = {.lex_state = 149}, + [321] = {.lex_state = 150}, [322] = {.lex_state = 145}, - [323] = {.lex_state = 149}, - [324] = {.lex_state = 151}, - [325] = {.lex_state = 167}, - [326] = {.lex_state = 167}, - [327] = {.lex_state = 167}, + [323] = {.lex_state = 150}, + [324] = {.lex_state = 152}, + [325] = {.lex_state = 168}, + [326] = {.lex_state = 168}, + [327] = {.lex_state = 168}, [328] = {.lex_state = 136}, - [329] = {.lex_state = 183}, - [330] = {.lex_state = 183}, - [331] = {.lex_state = 183}, - [332] = {.lex_state = 186}, - [333] = {.lex_state = 193}, + [329] = {.lex_state = 184}, + [330] = {.lex_state = 184}, + [331] = {.lex_state = 184}, + [332] = {.lex_state = 187}, + [333] = {.lex_state = 195}, [334] = {.lex_state = 145}, - [335] = {.lex_state = 167}, + [335] = {.lex_state = 168}, [336] = {.lex_state = 145}, [337] = {.lex_state = 136}, [338] = {.lex_state = 136}, @@ -4894,29 +4913,29 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [342] = {.lex_state = 136}, [343] = {.lex_state = 136}, [344] = {.lex_state = 136}, - [345] = {.lex_state = 151}, - [346] = {.lex_state = 151}, + [345] = {.lex_state = 152}, + [346] = {.lex_state = 152}, [347] = {.lex_state = 136}, - [348] = {.lex_state = 151}, + [348] = {.lex_state = 152}, [349] = {.lex_state = 145}, - [350] = {.lex_state = 151}, - [351] = {.lex_state = 184}, - [352] = {.lex_state = 171}, + [350] = {.lex_state = 152}, + [351] = {.lex_state = 185}, + [352] = {.lex_state = 172}, [353] = {.lex_state = 124}, - [354] = {.lex_state = 171}, - [355] = {.lex_state = 171}, - [356] = {.lex_state = 171}, - [357] = {.lex_state = 184}, - [358] = {.lex_state = 171}, - [359] = {.lex_state = 171}, - [360] = {.lex_state = 171}, - [361] = {.lex_state = 184}, - [362] = {.lex_state = 171}, - [363] = {.lex_state = 171}, - [364] = {.lex_state = 171}, + [354] = {.lex_state = 172}, + [355] = {.lex_state = 172}, + [356] = {.lex_state = 172}, + [357] = {.lex_state = 185}, + [358] = {.lex_state = 172}, + [359] = {.lex_state = 172}, + [360] = {.lex_state = 172}, + [361] = {.lex_state = 185}, + [362] = {.lex_state = 172}, + [363] = {.lex_state = 172}, + [364] = {.lex_state = 172}, [365] = {.lex_state = 136}, - [366] = {.lex_state = 165}, - [367] = {.lex_state = 188}, + [366] = {.lex_state = 166}, + [367] = {.lex_state = 189}, [368] = {.lex_state = 136}, [369] = {.lex_state = 136}, [370] = {.lex_state = 136}, @@ -4924,42 +4943,42 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [372] = {.lex_state = 136}, [373] = {.lex_state = 136}, [374] = {.lex_state = 136}, - [375] = {.lex_state = 151}, - [376] = {.lex_state = 151}, + [375] = {.lex_state = 152}, + [376] = {.lex_state = 152}, [377] = {.lex_state = 136}, - [378] = {.lex_state = 184}, - [379] = {.lex_state = 186}, + [378] = {.lex_state = 185}, + [379] = {.lex_state = 187}, [380] = {.lex_state = 136}, - [381] = {.lex_state = 188}, - [382] = {.lex_state = 185}, - [383] = {.lex_state = 185}, - [384] = {.lex_state = 185}, - [385] = {.lex_state = 165}, - [386] = {.lex_state = 187}, - [387] = {.lex_state = 165}, - [388] = {.lex_state = 187}, - [389] = {.lex_state = 186}, - [390] = {.lex_state = 193}, - [391] = {.lex_state = 186}, - [392] = {.lex_state = 187}, - [393] = {.lex_state = 165}, + [381] = {.lex_state = 189}, + [382] = {.lex_state = 186}, + [383] = {.lex_state = 186}, + [384] = {.lex_state = 186}, + [385] = {.lex_state = 166}, + [386] = {.lex_state = 188}, + [387] = {.lex_state = 166}, + [388] = {.lex_state = 188}, + [389] = {.lex_state = 187}, + [390] = {.lex_state = 195}, + [391] = {.lex_state = 187}, + [392] = {.lex_state = 188}, + [393] = {.lex_state = 166}, [394] = {.lex_state = 136}, [395] = {.lex_state = 146}, - [396] = {.lex_state = 149}, - [397] = {.lex_state = 149}, - [398] = {.lex_state = 149}, + [396] = {.lex_state = 150}, + [397] = {.lex_state = 150}, + [398] = {.lex_state = 150}, [399] = {.lex_state = 136}, [400] = {.lex_state = 136}, [401] = {.lex_state = 136}, [402] = {.lex_state = 136}, [403] = {.lex_state = 136}, [404] = {.lex_state = 136}, - [405] = {.lex_state = 187}, - [406] = {.lex_state = 187}, - [407] = {.lex_state = 165}, - [408] = {.lex_state = 165}, - [409] = {.lex_state = 187}, - [410] = {.lex_state = 195}, + [405] = {.lex_state = 188}, + [406] = {.lex_state = 188}, + [407] = {.lex_state = 166}, + [408] = {.lex_state = 166}, + [409] = {.lex_state = 188}, + [410] = {.lex_state = 197}, [411] = {.lex_state = 136}, [412] = {.lex_state = 145}, [413] = {.lex_state = 145}, @@ -4969,36 +4988,36 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [417] = {.lex_state = 136}, [418] = {.lex_state = 136}, [419] = {.lex_state = 136}, - [420] = {.lex_state = 185}, - [421] = {.lex_state = 185}, + [420] = {.lex_state = 186}, + [421] = {.lex_state = 186}, [422] = {.lex_state = 145}, [423] = {.lex_state = 145}, [424] = {.lex_state = 136}, [425] = {.lex_state = 136}, [426] = {.lex_state = 136}, - [427] = {.lex_state = 185}, + [427] = {.lex_state = 186}, [428] = {.lex_state = 136}, [429] = {.lex_state = 145}, [430] = {.lex_state = 136}, - [431] = {.lex_state = 185}, + [431] = {.lex_state = 186}, [432] = {.lex_state = 116}, [433] = {.lex_state = 145}, [434] = {.lex_state = 145}, - [435] = {.lex_state = 151}, + [435] = {.lex_state = 152}, [436] = {.lex_state = 145}, [437] = {.lex_state = 145}, [438] = {.lex_state = 145}, - [439] = {.lex_state = 195}, - [440] = {.lex_state = 195}, - [441] = {.lex_state = 195}, + [439] = {.lex_state = 197}, + [440] = {.lex_state = 197}, + [441] = {.lex_state = 197}, [442] = {.lex_state = 136}, - [443] = {.lex_state = 151}, + [443] = {.lex_state = 152}, [444] = {.lex_state = 136}, [445] = {.lex_state = 145}, - [446] = {.lex_state = 151}, + [446] = {.lex_state = 152}, [447] = {.lex_state = 136}, [448] = {.lex_state = 145}, - [449] = {.lex_state = 196}, + [449] = {.lex_state = 198}, [450] = {.lex_state = 136}, [451] = {.lex_state = 136}, [452] = {.lex_state = 136}, @@ -5012,28 +5031,28 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [460] = {.lex_state = 136}, [461] = {.lex_state = 136}, [462] = {.lex_state = 136}, - [463] = {.lex_state = 195}, + [463] = {.lex_state = 197}, [464] = {.lex_state = 116}, - [465] = {.lex_state = 195}, - [466] = {.lex_state = 151}, + [465] = {.lex_state = 197}, + [466] = {.lex_state = 152}, [467] = {.lex_state = 145}, [468] = {.lex_state = 145}, - [469] = {.lex_state = 165}, - [470] = {.lex_state = 188}, - [471] = {.lex_state = 187}, - [472] = {.lex_state = 165}, - [473] = {.lex_state = 187}, - [474] = {.lex_state = 187}, - [475] = {.lex_state = 187}, - [476] = {.lex_state = 187}, - [477] = {.lex_state = 187}, - [478] = {.lex_state = 187}, - [479] = {.lex_state = 165}, + [469] = {.lex_state = 166}, + [470] = {.lex_state = 189}, + [471] = {.lex_state = 188}, + [472] = {.lex_state = 166}, + [473] = {.lex_state = 188}, + [474] = {.lex_state = 188}, + [475] = {.lex_state = 188}, + [476] = {.lex_state = 188}, + [477] = {.lex_state = 188}, + [478] = {.lex_state = 188}, + [479] = {.lex_state = 166}, [480] = {.lex_state = 136}, - [481] = {.lex_state = 193}, - [482] = {.lex_state = 183}, - [483] = {.lex_state = 193}, - [484] = {.lex_state = 186}, + [481] = {.lex_state = 195}, + [482] = {.lex_state = 184}, + [483] = {.lex_state = 195}, + [484] = {.lex_state = 187}, [485] = {.lex_state = 136}, [486] = {.lex_state = 136}, [487] = {.lex_state = 136}, @@ -5046,66 +5065,66 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [494] = {.lex_state = 136}, [495] = {.lex_state = 136}, [496] = {.lex_state = 136}, - [497] = {.lex_state = 193}, - [498] = {.lex_state = 186}, - [499] = {.lex_state = 186}, + [497] = {.lex_state = 195}, + [498] = {.lex_state = 187}, + [499] = {.lex_state = 187}, [500] = {.lex_state = 145}, - [501] = {.lex_state = 195}, + [501] = {.lex_state = 197}, [502] = {.lex_state = 136}, [503] = {.lex_state = 116}, - [504] = {.lex_state = 151}, - [505] = {.lex_state = 151}, + [504] = {.lex_state = 152}, + [505] = {.lex_state = 152}, [506] = {.lex_state = 136}, - [507] = {.lex_state = 187}, + [507] = {.lex_state = 188}, [508] = {.lex_state = 133}, - [509] = {.lex_state = 187}, - [510] = {.lex_state = 149}, - [511] = {.lex_state = 149}, - [512] = {.lex_state = 149}, - [513] = {.lex_state = 150}, - [514] = {.lex_state = 149}, - [515] = {.lex_state = 171}, - [516] = {.lex_state = 149}, - [517] = {.lex_state = 171}, - [518] = {.lex_state = 149}, - [519] = {.lex_state = 171}, - [520] = {.lex_state = 168}, + [509] = {.lex_state = 188}, + [510] = {.lex_state = 150}, + [511] = {.lex_state = 150}, + [512] = {.lex_state = 150}, + [513] = {.lex_state = 151}, + [514] = {.lex_state = 150}, + [515] = {.lex_state = 172}, + [516] = {.lex_state = 150}, + [517] = {.lex_state = 172}, + [518] = {.lex_state = 150}, + [519] = {.lex_state = 172}, + [520] = {.lex_state = 169}, [521] = {.lex_state = 146}, - [522] = {.lex_state = 168}, - [523] = {.lex_state = 150}, + [522] = {.lex_state = 169}, + [523] = {.lex_state = 151}, [524] = {.lex_state = 133}, - [525] = {.lex_state = 168}, - [526] = {.lex_state = 171}, - [527] = {.lex_state = 149}, - [528] = {.lex_state = 168}, - [529] = {.lex_state = 171}, - [530] = {.lex_state = 149}, - [531] = {.lex_state = 168}, - [532] = {.lex_state = 171}, - [533] = {.lex_state = 149}, - [534] = {.lex_state = 168}, - [535] = {.lex_state = 151}, + [525] = {.lex_state = 169}, + [526] = {.lex_state = 172}, + [527] = {.lex_state = 150}, + [528] = {.lex_state = 169}, + [529] = {.lex_state = 172}, + [530] = {.lex_state = 150}, + [531] = {.lex_state = 169}, + [532] = {.lex_state = 172}, + [533] = {.lex_state = 150}, + [534] = {.lex_state = 169}, + [535] = {.lex_state = 152}, [536] = {.lex_state = 136}, [537] = {.lex_state = 145}, - [538] = {.lex_state = 168}, + [538] = {.lex_state = 169}, [539] = {.lex_state = 136}, - [540] = {.lex_state = 168}, + [540] = {.lex_state = 169}, [541] = {.lex_state = 145}, - [542] = {.lex_state = 168}, - [543] = {.lex_state = 151}, - [544] = {.lex_state = 171}, - [545] = {.lex_state = 149}, - [546] = {.lex_state = 151}, - [547] = {.lex_state = 149}, + [542] = {.lex_state = 169}, + [543] = {.lex_state = 152}, + [544] = {.lex_state = 172}, + [545] = {.lex_state = 150}, + [546] = {.lex_state = 152}, + [547] = {.lex_state = 150}, [548] = {.lex_state = 145}, - [549] = {.lex_state = 149}, + [549] = {.lex_state = 150}, [550] = {.lex_state = 145}, - [551] = {.lex_state = 149}, - [552] = {.lex_state = 183}, - [553] = {.lex_state = 193}, - [554] = {.lex_state = 165}, + [551] = {.lex_state = 150}, + [552] = {.lex_state = 184}, + [553] = {.lex_state = 195}, + [554] = {.lex_state = 166}, [555] = {.lex_state = 136}, - [556] = {.lex_state = 151}, + [556] = {.lex_state = 152}, [557] = {.lex_state = 136}, [558] = {.lex_state = 136}, [559] = {.lex_state = 136}, @@ -5118,34 +5137,34 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [566] = {.lex_state = 136}, [567] = {.lex_state = 136}, [568] = {.lex_state = 136}, - [569] = {.lex_state = 151}, + [569] = {.lex_state = 152}, [570] = {.lex_state = 136}, [571] = {.lex_state = 116}, - [572] = {.lex_state = 171}, - [573] = {.lex_state = 171}, - [574] = {.lex_state = 184}, - [575] = {.lex_state = 184}, - [576] = {.lex_state = 184}, - [577] = {.lex_state = 171}, - [578] = {.lex_state = 171}, - [579] = {.lex_state = 171}, - [580] = {.lex_state = 184}, - [581] = {.lex_state = 184}, - [582] = {.lex_state = 184}, - [583] = {.lex_state = 171}, - [584] = {.lex_state = 171}, - [585] = {.lex_state = 184}, - [586] = {.lex_state = 184}, - [587] = {.lex_state = 184}, - [588] = {.lex_state = 171}, - [589] = {.lex_state = 171}, + [572] = {.lex_state = 172}, + [573] = {.lex_state = 172}, + [574] = {.lex_state = 185}, + [575] = {.lex_state = 185}, + [576] = {.lex_state = 185}, + [577] = {.lex_state = 172}, + [578] = {.lex_state = 172}, + [579] = {.lex_state = 172}, + [580] = {.lex_state = 185}, + [581] = {.lex_state = 185}, + [582] = {.lex_state = 185}, + [583] = {.lex_state = 172}, + [584] = {.lex_state = 172}, + [585] = {.lex_state = 185}, + [586] = {.lex_state = 185}, + [587] = {.lex_state = 185}, + [588] = {.lex_state = 172}, + [589] = {.lex_state = 172}, [590] = {.lex_state = 136}, - [591] = {.lex_state = 188}, - [592] = {.lex_state = 188}, - [593] = {.lex_state = 165}, + [591] = {.lex_state = 189}, + [592] = {.lex_state = 189}, + [593] = {.lex_state = 166}, [594] = {.lex_state = 136}, - [595] = {.lex_state = 151}, - [596] = {.lex_state = 184}, + [595] = {.lex_state = 152}, + [596] = {.lex_state = 185}, [597] = {.lex_state = 136}, [598] = {.lex_state = 136}, [599] = {.lex_state = 136}, @@ -5158,33 +5177,33 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [606] = {.lex_state = 136}, [607] = {.lex_state = 136}, [608] = {.lex_state = 136}, - [609] = {.lex_state = 151}, - [610] = {.lex_state = 185}, - [611] = {.lex_state = 188}, - [612] = {.lex_state = 186}, - [613] = {.lex_state = 193}, - [614] = {.lex_state = 151}, + [609] = {.lex_state = 152}, + [610] = {.lex_state = 186}, + [611] = {.lex_state = 189}, + [612] = {.lex_state = 187}, + [613] = {.lex_state = 195}, + [614] = {.lex_state = 152}, [615] = {.lex_state = 136}, - [616] = {.lex_state = 185}, - [617] = {.lex_state = 187}, - [618] = {.lex_state = 187}, - [619] = {.lex_state = 165}, - [620] = {.lex_state = 187}, - [621] = {.lex_state = 193}, - [622] = {.lex_state = 186}, + [616] = {.lex_state = 186}, + [617] = {.lex_state = 188}, + [618] = {.lex_state = 188}, + [619] = {.lex_state = 166}, + [620] = {.lex_state = 188}, + [621] = {.lex_state = 195}, + [622] = {.lex_state = 187}, [623] = {.lex_state = 145}, [624] = {.lex_state = 146}, [625] = {.lex_state = 124}, [626] = {.lex_state = 145}, [627] = {.lex_state = 116}, [628] = {.lex_state = 116}, - [629] = {.lex_state = 168}, + [629] = {.lex_state = 169}, [630] = {.lex_state = 124}, - [631] = {.lex_state = 149}, + [631] = {.lex_state = 150}, [632] = {.lex_state = 136}, [633] = {.lex_state = 136}, [634] = {.lex_state = 136}, - [635] = {.lex_state = 185}, + [635] = {.lex_state = 186}, [636] = {.lex_state = 136}, [637] = {.lex_state = 145}, [638] = {.lex_state = 136}, @@ -5192,28 +5211,28 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [640] = {.lex_state = 145}, [641] = {.lex_state = 145}, [642] = {.lex_state = 116}, - [643] = {.lex_state = 185}, - [644] = {.lex_state = 149}, - [645] = {.lex_state = 149}, - [646] = {.lex_state = 171}, - [647] = {.lex_state = 171}, + [643] = {.lex_state = 186}, + [644] = {.lex_state = 150}, + [645] = {.lex_state = 150}, + [646] = {.lex_state = 172}, + [647] = {.lex_state = 172}, [648] = {.lex_state = 145}, - [649] = {.lex_state = 151}, + [649] = {.lex_state = 152}, [650] = {.lex_state = 145}, - [651] = {.lex_state = 149}, + [651] = {.lex_state = 150}, [652] = {.lex_state = 145}, - [653] = {.lex_state = 171}, - [654] = {.lex_state = 171}, - [655] = {.lex_state = 149}, + [653] = {.lex_state = 172}, + [654] = {.lex_state = 172}, + [655] = {.lex_state = 150}, [656] = {.lex_state = 145}, - [657] = {.lex_state = 171}, - [658] = {.lex_state = 171}, - [659] = {.lex_state = 149}, - [660] = {.lex_state = 165}, + [657] = {.lex_state = 172}, + [658] = {.lex_state = 172}, + [659] = {.lex_state = 150}, + [660] = {.lex_state = 166}, [661] = {.lex_state = 136}, - [662] = {.lex_state = 187}, + [662] = {.lex_state = 188}, [663] = {.lex_state = 136}, - [664] = {.lex_state = 195}, + [664] = {.lex_state = 197}, [665] = {.lex_state = 136}, [666] = {.lex_state = 136}, [667] = {.lex_state = 136}, @@ -5227,22 +5246,22 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [675] = {.lex_state = 136}, [676] = {.lex_state = 136}, [677] = {.lex_state = 136}, - [678] = {.lex_state = 187}, - [679] = {.lex_state = 187}, - [680] = {.lex_state = 165}, + [678] = {.lex_state = 188}, + [679] = {.lex_state = 188}, + [680] = {.lex_state = 166}, [681] = {.lex_state = 136}, [682] = {.lex_state = 136}, [683] = {.lex_state = 136}, - [684] = {.lex_state = 185}, + [684] = {.lex_state = 186}, [685] = {.lex_state = 136}, [686] = {.lex_state = 136}, - [687] = {.lex_state = 185}, + [687] = {.lex_state = 186}, [688] = {.lex_state = 145}, - [689] = {.lex_state = 185}, + [689] = {.lex_state = 186}, [690] = {.lex_state = 145}, - [691] = {.lex_state = 165}, + [691] = {.lex_state = 166}, [692] = {.lex_state = 136}, - [693] = {.lex_state = 185}, + [693] = {.lex_state = 186}, [694] = {.lex_state = 136}, [695] = {.lex_state = 136}, [696] = {.lex_state = 145}, @@ -5256,14 +5275,14 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [704] = {.lex_state = 136}, [705] = {.lex_state = 136}, [706] = {.lex_state = 136}, - [707] = {.lex_state = 185}, - [708] = {.lex_state = 185}, + [707] = {.lex_state = 186}, + [708] = {.lex_state = 186}, [709] = {.lex_state = 145}, [710] = {.lex_state = 136}, [711] = {.lex_state = 145}, [712] = {.lex_state = 145}, [713] = {.lex_state = 145}, - [714] = {.lex_state = 185}, + [714] = {.lex_state = 186}, [715] = {.lex_state = 145}, [716] = {.lex_state = 145}, [717] = {.lex_state = 116}, @@ -5271,145 +5290,145 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [719] = {.lex_state = 145}, [720] = {.lex_state = 136}, [721] = {.lex_state = 145}, - [722] = {.lex_state = 151}, - [723] = {.lex_state = 151}, + [722] = {.lex_state = 152}, + [723] = {.lex_state = 152}, [724] = {.lex_state = 145}, [725] = {.lex_state = 145}, - [726] = {.lex_state = 165}, - [727] = {.lex_state = 195}, + [726] = {.lex_state = 166}, + [727] = {.lex_state = 197}, [728] = {.lex_state = 145}, - [729] = {.lex_state = 151}, - [730] = {.lex_state = 183}, - [731] = {.lex_state = 195}, - [732] = {.lex_state = 187}, - [733] = {.lex_state = 195}, - [734] = {.lex_state = 193}, - [735] = {.lex_state = 151}, - [736] = {.lex_state = 185}, - [737] = {.lex_state = 151}, - [738] = {.lex_state = 151}, - [739] = {.lex_state = 151}, - [740] = {.lex_state = 151}, - [741] = {.lex_state = 151}, - [742] = {.lex_state = 151}, - [743] = {.lex_state = 151}, - [744] = {.lex_state = 151}, - [745] = {.lex_state = 151}, - [746] = {.lex_state = 195}, - [747] = {.lex_state = 151}, - [748] = {.lex_state = 187}, - [749] = {.lex_state = 188}, - [750] = {.lex_state = 187}, - [751] = {.lex_state = 165}, - [752] = {.lex_state = 187}, - [753] = {.lex_state = 187}, - [754] = {.lex_state = 187}, - [755] = {.lex_state = 187}, + [729] = {.lex_state = 152}, + [730] = {.lex_state = 184}, + [731] = {.lex_state = 197}, + [732] = {.lex_state = 188}, + [733] = {.lex_state = 197}, + [734] = {.lex_state = 195}, + [735] = {.lex_state = 152}, + [736] = {.lex_state = 186}, + [737] = {.lex_state = 152}, + [738] = {.lex_state = 152}, + [739] = {.lex_state = 152}, + [740] = {.lex_state = 152}, + [741] = {.lex_state = 152}, + [742] = {.lex_state = 152}, + [743] = {.lex_state = 152}, + [744] = {.lex_state = 152}, + [745] = {.lex_state = 152}, + [746] = {.lex_state = 197}, + [747] = {.lex_state = 152}, + [748] = {.lex_state = 188}, + [749] = {.lex_state = 189}, + [750] = {.lex_state = 188}, + [751] = {.lex_state = 166}, + [752] = {.lex_state = 188}, + [753] = {.lex_state = 188}, + [754] = {.lex_state = 188}, + [755] = {.lex_state = 188}, [756] = {.lex_state = 136}, - [757] = {.lex_state = 165}, - [758] = {.lex_state = 183}, - [759] = {.lex_state = 186}, - [760] = {.lex_state = 193}, - [761] = {.lex_state = 185}, - [762] = {.lex_state = 193}, - [763] = {.lex_state = 193}, - [764] = {.lex_state = 193}, - [765] = {.lex_state = 193}, - [766] = {.lex_state = 193}, - [767] = {.lex_state = 193}, - [768] = {.lex_state = 193}, - [769] = {.lex_state = 193}, - [770] = {.lex_state = 193}, - [771] = {.lex_state = 193}, - [772] = {.lex_state = 186}, - [773] = {.lex_state = 195}, - [774] = {.lex_state = 193}, + [757] = {.lex_state = 166}, + [758] = {.lex_state = 184}, + [759] = {.lex_state = 187}, + [760] = {.lex_state = 195}, + [761] = {.lex_state = 186}, + [762] = {.lex_state = 195}, + [763] = {.lex_state = 195}, + [764] = {.lex_state = 195}, + [765] = {.lex_state = 195}, + [766] = {.lex_state = 195}, + [767] = {.lex_state = 195}, + [768] = {.lex_state = 195}, + [769] = {.lex_state = 195}, + [770] = {.lex_state = 195}, + [771] = {.lex_state = 195}, + [772] = {.lex_state = 187}, + [773] = {.lex_state = 197}, + [774] = {.lex_state = 195}, [775] = {.lex_state = 136}, - [776] = {.lex_state = 194}, - [777] = {.lex_state = 151}, + [776] = {.lex_state = 196}, + [777] = {.lex_state = 152}, [778] = {.lex_state = 136}, [779] = {.lex_state = 136}, - [780] = {.lex_state = 149}, - [781] = {.lex_state = 149}, - [782] = {.lex_state = 149}, - [783] = {.lex_state = 149}, - [784] = {.lex_state = 168}, - [785] = {.lex_state = 168}, - [786] = {.lex_state = 168}, - [787] = {.lex_state = 150}, - [788] = {.lex_state = 168}, - [789] = {.lex_state = 171}, - [790] = {.lex_state = 168}, - [791] = {.lex_state = 171}, - [792] = {.lex_state = 168}, - [793] = {.lex_state = 171}, - [794] = {.lex_state = 168}, - [795] = {.lex_state = 151}, - [796] = {.lex_state = 168}, + [780] = {.lex_state = 150}, + [781] = {.lex_state = 150}, + [782] = {.lex_state = 150}, + [783] = {.lex_state = 150}, + [784] = {.lex_state = 169}, + [785] = {.lex_state = 169}, + [786] = {.lex_state = 169}, + [787] = {.lex_state = 151}, + [788] = {.lex_state = 169}, + [789] = {.lex_state = 172}, + [790] = {.lex_state = 169}, + [791] = {.lex_state = 172}, + [792] = {.lex_state = 169}, + [793] = {.lex_state = 172}, + [794] = {.lex_state = 169}, + [795] = {.lex_state = 152}, + [796] = {.lex_state = 169}, [797] = {.lex_state = 145}, - [798] = {.lex_state = 168}, + [798] = {.lex_state = 169}, [799] = {.lex_state = 145}, - [800] = {.lex_state = 168}, - [801] = {.lex_state = 149}, - [802] = {.lex_state = 149}, - [803] = {.lex_state = 149}, - [804] = {.lex_state = 183}, + [800] = {.lex_state = 169}, + [801] = {.lex_state = 150}, + [802] = {.lex_state = 150}, + [803] = {.lex_state = 150}, + [804] = {.lex_state = 184}, [805] = {.lex_state = 136}, - [806] = {.lex_state = 165}, - [807] = {.lex_state = 151}, - [808] = {.lex_state = 185}, - [809] = {.lex_state = 151}, - [810] = {.lex_state = 151}, - [811] = {.lex_state = 151}, - [812] = {.lex_state = 151}, - [813] = {.lex_state = 151}, - [814] = {.lex_state = 151}, - [815] = {.lex_state = 151}, - [816] = {.lex_state = 151}, - [817] = {.lex_state = 151}, - [818] = {.lex_state = 151}, - [819] = {.lex_state = 171}, - [820] = {.lex_state = 171}, - [821] = {.lex_state = 171}, - [822] = {.lex_state = 171}, - [823] = {.lex_state = 184}, - [824] = {.lex_state = 184}, - [825] = {.lex_state = 184}, - [826] = {.lex_state = 184}, - [827] = {.lex_state = 184}, - [828] = {.lex_state = 184}, + [806] = {.lex_state = 166}, + [807] = {.lex_state = 152}, + [808] = {.lex_state = 186}, + [809] = {.lex_state = 152}, + [810] = {.lex_state = 152}, + [811] = {.lex_state = 152}, + [812] = {.lex_state = 152}, + [813] = {.lex_state = 152}, + [814] = {.lex_state = 152}, + [815] = {.lex_state = 152}, + [816] = {.lex_state = 152}, + [817] = {.lex_state = 152}, + [818] = {.lex_state = 152}, + [819] = {.lex_state = 172}, + [820] = {.lex_state = 172}, + [821] = {.lex_state = 172}, + [822] = {.lex_state = 172}, + [823] = {.lex_state = 185}, + [824] = {.lex_state = 185}, + [825] = {.lex_state = 185}, + [826] = {.lex_state = 185}, + [827] = {.lex_state = 185}, + [828] = {.lex_state = 185}, [829] = {.lex_state = 136}, - [830] = {.lex_state = 165}, - [831] = {.lex_state = 151}, - [832] = {.lex_state = 185}, - [833] = {.lex_state = 151}, - [834] = {.lex_state = 151}, - [835] = {.lex_state = 151}, - [836] = {.lex_state = 151}, - [837] = {.lex_state = 151}, - [838] = {.lex_state = 151}, - [839] = {.lex_state = 151}, - [840] = {.lex_state = 151}, - [841] = {.lex_state = 151}, - [842] = {.lex_state = 151}, - [843] = {.lex_state = 188}, - [844] = {.lex_state = 193}, - [845] = {.lex_state = 184}, - [846] = {.lex_state = 151}, - [847] = {.lex_state = 187}, - [848] = {.lex_state = 193}, + [830] = {.lex_state = 166}, + [831] = {.lex_state = 152}, + [832] = {.lex_state = 186}, + [833] = {.lex_state = 152}, + [834] = {.lex_state = 152}, + [835] = {.lex_state = 152}, + [836] = {.lex_state = 152}, + [837] = {.lex_state = 152}, + [838] = {.lex_state = 152}, + [839] = {.lex_state = 152}, + [840] = {.lex_state = 152}, + [841] = {.lex_state = 152}, + [842] = {.lex_state = 152}, + [843] = {.lex_state = 189}, + [844] = {.lex_state = 195}, + [845] = {.lex_state = 185}, + [846] = {.lex_state = 152}, + [847] = {.lex_state = 188}, + [848] = {.lex_state = 195}, [849] = {.lex_state = 145}, - [850] = {.lex_state = 149}, - [851] = {.lex_state = 149}, - [852] = {.lex_state = 149}, + [850] = {.lex_state = 150}, + [851] = {.lex_state = 150}, + [852] = {.lex_state = 150}, [853] = {.lex_state = 124}, [854] = {.lex_state = 116}, [855] = {.lex_state = 116}, - [856] = {.lex_state = 168}, + [856] = {.lex_state = 169}, [857] = {.lex_state = 136}, [858] = {.lex_state = 136}, [859] = {.lex_state = 136}, - [860] = {.lex_state = 185}, + [860] = {.lex_state = 186}, [861] = {.lex_state = 136}, [862] = {.lex_state = 145}, [863] = {.lex_state = 136}, @@ -5417,501 +5436,501 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [865] = {.lex_state = 145}, [866] = {.lex_state = 145}, [867] = {.lex_state = 116}, - [868] = {.lex_state = 185}, - [869] = {.lex_state = 168}, - [870] = {.lex_state = 168}, + [868] = {.lex_state = 186}, + [869] = {.lex_state = 169}, + [870] = {.lex_state = 169}, [871] = {.lex_state = 145}, - [872] = {.lex_state = 151}, + [872] = {.lex_state = 152}, [873] = {.lex_state = 145}, - [874] = {.lex_state = 168}, - [875] = {.lex_state = 149}, + [874] = {.lex_state = 169}, + [875] = {.lex_state = 150}, [876] = {.lex_state = 145}, [877] = {.lex_state = 145}, - [878] = {.lex_state = 185}, + [878] = {.lex_state = 186}, [879] = {.lex_state = 145}, [880] = {.lex_state = 145}, [881] = {.lex_state = 116}, [882] = {.lex_state = 145}, - [883] = {.lex_state = 149}, - [884] = {.lex_state = 151}, - [885] = {.lex_state = 149}, - [886] = {.lex_state = 149}, + [883] = {.lex_state = 150}, + [884] = {.lex_state = 152}, + [885] = {.lex_state = 150}, + [886] = {.lex_state = 150}, [887] = {.lex_state = 145}, [888] = {.lex_state = 145}, [889] = {.lex_state = 145}, [890] = {.lex_state = 145}, - [891] = {.lex_state = 151}, - [892] = {.lex_state = 149}, + [891] = {.lex_state = 152}, + [892] = {.lex_state = 150}, [893] = {.lex_state = 145}, - [894] = {.lex_state = 171}, - [895] = {.lex_state = 171}, - [896] = {.lex_state = 149}, + [894] = {.lex_state = 172}, + [895] = {.lex_state = 172}, + [896] = {.lex_state = 150}, [897] = {.lex_state = 145}, [898] = {.lex_state = 145}, [899] = {.lex_state = 145}, - [900] = {.lex_state = 171}, - [901] = {.lex_state = 171}, + [900] = {.lex_state = 172}, + [901] = {.lex_state = 172}, [902] = {.lex_state = 145}, [903] = {.lex_state = 145}, [904] = {.lex_state = 145}, - [905] = {.lex_state = 171}, - [906] = {.lex_state = 171}, + [905] = {.lex_state = 172}, + [906] = {.lex_state = 172}, [907] = {.lex_state = 136}, - [908] = {.lex_state = 165}, - [909] = {.lex_state = 187}, - [910] = {.lex_state = 187}, - [911] = {.lex_state = 185}, - [912] = {.lex_state = 187}, - [913] = {.lex_state = 187}, - [914] = {.lex_state = 187}, - [915] = {.lex_state = 187}, - [916] = {.lex_state = 187}, - [917] = {.lex_state = 187}, - [918] = {.lex_state = 187}, - [919] = {.lex_state = 187}, - [920] = {.lex_state = 187}, - [921] = {.lex_state = 195}, - [922] = {.lex_state = 195}, - [923] = {.lex_state = 187}, + [908] = {.lex_state = 166}, + [909] = {.lex_state = 188}, + [910] = {.lex_state = 188}, + [911] = {.lex_state = 186}, + [912] = {.lex_state = 188}, + [913] = {.lex_state = 188}, + [914] = {.lex_state = 188}, + [915] = {.lex_state = 188}, + [916] = {.lex_state = 188}, + [917] = {.lex_state = 188}, + [918] = {.lex_state = 188}, + [919] = {.lex_state = 188}, + [920] = {.lex_state = 188}, + [921] = {.lex_state = 197}, + [922] = {.lex_state = 197}, + [923] = {.lex_state = 188}, [924] = {.lex_state = 145}, [925] = {.lex_state = 145}, [926] = {.lex_state = 145}, - [927] = {.lex_state = 185}, + [927] = {.lex_state = 186}, [928] = {.lex_state = 145}, [929] = {.lex_state = 145}, [930] = {.lex_state = 145}, [931] = {.lex_state = 145}, [932] = {.lex_state = 145}, [933] = {.lex_state = 136}, - [934] = {.lex_state = 165}, - [935] = {.lex_state = 185}, + [934] = {.lex_state = 166}, + [935] = {.lex_state = 186}, [936] = {.lex_state = 145}, - [937] = {.lex_state = 185}, - [938] = {.lex_state = 185}, - [939] = {.lex_state = 185}, - [940] = {.lex_state = 185}, - [941] = {.lex_state = 185}, - [942] = {.lex_state = 185}, - [943] = {.lex_state = 185}, - [944] = {.lex_state = 185}, - [945] = {.lex_state = 185}, - [946] = {.lex_state = 185}, - [947] = {.lex_state = 185}, + [937] = {.lex_state = 186}, + [938] = {.lex_state = 186}, + [939] = {.lex_state = 186}, + [940] = {.lex_state = 186}, + [941] = {.lex_state = 186}, + [942] = {.lex_state = 186}, + [943] = {.lex_state = 186}, + [944] = {.lex_state = 186}, + [945] = {.lex_state = 186}, + [946] = {.lex_state = 186}, + [947] = {.lex_state = 186}, [948] = {.lex_state = 136}, [949] = {.lex_state = 136}, [950] = {.lex_state = 136}, - [951] = {.lex_state = 185}, + [951] = {.lex_state = 186}, [952] = {.lex_state = 136}, [953] = {.lex_state = 136}, - [954] = {.lex_state = 185}, + [954] = {.lex_state = 186}, [955] = {.lex_state = 116}, [956] = {.lex_state = 145}, - [957] = {.lex_state = 185}, + [957] = {.lex_state = 186}, [958] = {.lex_state = 136}, [959] = {.lex_state = 145}, - [960] = {.lex_state = 151}, + [960] = {.lex_state = 152}, [961] = {.lex_state = 145}, - [962] = {.lex_state = 196}, - [963] = {.lex_state = 151}, + [962] = {.lex_state = 198}, + [963] = {.lex_state = 152}, [964] = {.lex_state = 145}, - [965] = {.lex_state = 151}, + [965] = {.lex_state = 152}, [966] = {.lex_state = 136}, - [967] = {.lex_state = 195}, - [968] = {.lex_state = 187}, - [969] = {.lex_state = 195}, + [967] = {.lex_state = 197}, + [968] = {.lex_state = 188}, + [969] = {.lex_state = 197}, [970] = {.lex_state = 136}, - [971] = {.lex_state = 165}, - [972] = {.lex_state = 187}, - [973] = {.lex_state = 193}, + [971] = {.lex_state = 166}, + [972] = {.lex_state = 188}, + [973] = {.lex_state = 195}, [974] = {.lex_state = 136}, [975] = {.lex_state = 136}, - [976] = {.lex_state = 195}, - [977] = {.lex_state = 151}, - [978] = {.lex_state = 151}, - [979] = {.lex_state = 194}, - [980] = {.lex_state = 151}, - [981] = {.lex_state = 151}, - [982] = {.lex_state = 151}, - [983] = {.lex_state = 168}, - [984] = {.lex_state = 168}, - [985] = {.lex_state = 168}, - [986] = {.lex_state = 168}, - [987] = {.lex_state = 168}, - [988] = {.lex_state = 168}, - [989] = {.lex_state = 168}, - [990] = {.lex_state = 151}, + [976] = {.lex_state = 197}, + [977] = {.lex_state = 152}, + [978] = {.lex_state = 152}, + [979] = {.lex_state = 196}, + [980] = {.lex_state = 152}, + [981] = {.lex_state = 152}, + [982] = {.lex_state = 152}, + [983] = {.lex_state = 169}, + [984] = {.lex_state = 169}, + [985] = {.lex_state = 169}, + [986] = {.lex_state = 169}, + [987] = {.lex_state = 169}, + [988] = {.lex_state = 169}, + [989] = {.lex_state = 169}, + [990] = {.lex_state = 152}, [991] = {.lex_state = 136}, - [992] = {.lex_state = 171}, - [993] = {.lex_state = 171}, - [994] = {.lex_state = 151}, + [992] = {.lex_state = 172}, + [993] = {.lex_state = 172}, + [994] = {.lex_state = 152}, [995] = {.lex_state = 136}, - [996] = {.lex_state = 188}, - [997] = {.lex_state = 184}, - [998] = {.lex_state = 187}, - [999] = {.lex_state = 149}, - [1000] = {.lex_state = 171}, - [1001] = {.lex_state = 171}, - [1002] = {.lex_state = 149}, - [1003] = {.lex_state = 149}, - [1004] = {.lex_state = 171}, - [1005] = {.lex_state = 171}, - [1006] = {.lex_state = 149}, - [1007] = {.lex_state = 149}, - [1008] = {.lex_state = 171}, - [1009] = {.lex_state = 171}, - [1010] = {.lex_state = 149}, - [1011] = {.lex_state = 149}, - [1012] = {.lex_state = 149}, - [1013] = {.lex_state = 149}, + [996] = {.lex_state = 189}, + [997] = {.lex_state = 185}, + [998] = {.lex_state = 188}, + [999] = {.lex_state = 150}, + [1000] = {.lex_state = 172}, + [1001] = {.lex_state = 172}, + [1002] = {.lex_state = 150}, + [1003] = {.lex_state = 150}, + [1004] = {.lex_state = 172}, + [1005] = {.lex_state = 172}, + [1006] = {.lex_state = 150}, + [1007] = {.lex_state = 150}, + [1008] = {.lex_state = 172}, + [1009] = {.lex_state = 172}, + [1010] = {.lex_state = 150}, + [1011] = {.lex_state = 150}, + [1012] = {.lex_state = 150}, + [1013] = {.lex_state = 150}, [1014] = {.lex_state = 145}, [1015] = {.lex_state = 145}, - [1016] = {.lex_state = 185}, + [1016] = {.lex_state = 186}, [1017] = {.lex_state = 145}, [1018] = {.lex_state = 145}, [1019] = {.lex_state = 116}, [1020] = {.lex_state = 145}, - [1021] = {.lex_state = 168}, - [1022] = {.lex_state = 151}, - [1023] = {.lex_state = 168}, - [1024] = {.lex_state = 168}, + [1021] = {.lex_state = 169}, + [1022] = {.lex_state = 152}, + [1023] = {.lex_state = 169}, + [1024] = {.lex_state = 169}, [1025] = {.lex_state = 145}, [1026] = {.lex_state = 145}, - [1027] = {.lex_state = 151}, - [1028] = {.lex_state = 168}, - [1029] = {.lex_state = 168}, - [1030] = {.lex_state = 171}, - [1031] = {.lex_state = 171}, - [1032] = {.lex_state = 149}, + [1027] = {.lex_state = 152}, + [1028] = {.lex_state = 169}, + [1029] = {.lex_state = 169}, + [1030] = {.lex_state = 172}, + [1031] = {.lex_state = 172}, + [1032] = {.lex_state = 150}, [1033] = {.lex_state = 136}, [1034] = {.lex_state = 136}, [1035] = {.lex_state = 136}, - [1036] = {.lex_state = 185}, + [1036] = {.lex_state = 186}, [1037] = {.lex_state = 136}, [1038] = {.lex_state = 136}, - [1039] = {.lex_state = 185}, - [1040] = {.lex_state = 149}, - [1041] = {.lex_state = 185}, - [1042] = {.lex_state = 149}, + [1039] = {.lex_state = 186}, + [1040] = {.lex_state = 150}, + [1041] = {.lex_state = 186}, + [1042] = {.lex_state = 150}, [1043] = {.lex_state = 145}, - [1044] = {.lex_state = 185}, - [1045] = {.lex_state = 149}, + [1044] = {.lex_state = 186}, + [1045] = {.lex_state = 150}, [1046] = {.lex_state = 136}, - [1047] = {.lex_state = 149}, + [1047] = {.lex_state = 150}, [1048] = {.lex_state = 136}, [1049] = {.lex_state = 145}, - [1050] = {.lex_state = 151}, - [1051] = {.lex_state = 149}, - [1052] = {.lex_state = 149}, - [1053] = {.lex_state = 149}, + [1050] = {.lex_state = 152}, + [1051] = {.lex_state = 150}, + [1052] = {.lex_state = 150}, + [1053] = {.lex_state = 150}, [1054] = {.lex_state = 145}, [1055] = {.lex_state = 145}, [1056] = {.lex_state = 145}, [1057] = {.lex_state = 145}, [1058] = {.lex_state = 145}, [1059] = {.lex_state = 145}, - [1060] = {.lex_state = 187}, + [1060] = {.lex_state = 188}, [1061] = {.lex_state = 136}, [1062] = {.lex_state = 145}, [1063] = {.lex_state = 145}, - [1064] = {.lex_state = 185}, + [1064] = {.lex_state = 186}, [1065] = {.lex_state = 145}, - [1066] = {.lex_state = 151}, + [1066] = {.lex_state = 152}, [1067] = {.lex_state = 145}, - [1068] = {.lex_state = 185}, + [1068] = {.lex_state = 186}, [1069] = {.lex_state = 136}, [1070] = {.lex_state = 145}, [1071] = {.lex_state = 145}, - [1072] = {.lex_state = 185}, + [1072] = {.lex_state = 186}, [1073] = {.lex_state = 145}, [1074] = {.lex_state = 145}, [1075] = {.lex_state = 145}, [1076] = {.lex_state = 145}, [1077] = {.lex_state = 145}, [1078] = {.lex_state = 136}, - [1079] = {.lex_state = 196}, - [1080] = {.lex_state = 151}, + [1079] = {.lex_state = 198}, + [1080] = {.lex_state = 152}, [1081] = {.lex_state = 145}, [1082] = {.lex_state = 145}, - [1083] = {.lex_state = 187}, - [1084] = {.lex_state = 196}, - [1085] = {.lex_state = 151}, - [1086] = {.lex_state = 187}, - [1087] = {.lex_state = 195}, - [1088] = {.lex_state = 187}, - [1089] = {.lex_state = 151}, - [1090] = {.lex_state = 165}, - [1091] = {.lex_state = 193}, - [1092] = {.lex_state = 195}, + [1083] = {.lex_state = 188}, + [1084] = {.lex_state = 198}, + [1085] = {.lex_state = 152}, + [1086] = {.lex_state = 188}, + [1087] = {.lex_state = 197}, + [1088] = {.lex_state = 188}, + [1089] = {.lex_state = 152}, + [1090] = {.lex_state = 166}, + [1091] = {.lex_state = 195}, + [1092] = {.lex_state = 197}, [1093] = {.lex_state = 136}, - [1094] = {.lex_state = 151}, - [1095] = {.lex_state = 151}, - [1096] = {.lex_state = 149}, - [1097] = {.lex_state = 149}, - [1098] = {.lex_state = 149}, - [1099] = {.lex_state = 171}, - [1100] = {.lex_state = 171}, - [1101] = {.lex_state = 149}, - [1102] = {.lex_state = 149}, - [1103] = {.lex_state = 149}, - [1104] = {.lex_state = 171}, - [1105] = {.lex_state = 171}, - [1106] = {.lex_state = 149}, - [1107] = {.lex_state = 149}, - [1108] = {.lex_state = 149}, - [1109] = {.lex_state = 171}, - [1110] = {.lex_state = 171}, - [1111] = {.lex_state = 168}, - [1112] = {.lex_state = 171}, - [1113] = {.lex_state = 171}, - [1114] = {.lex_state = 149}, - [1115] = {.lex_state = 168}, - [1116] = {.lex_state = 171}, - [1117] = {.lex_state = 171}, - [1118] = {.lex_state = 149}, - [1119] = {.lex_state = 168}, - [1120] = {.lex_state = 171}, - [1121] = {.lex_state = 171}, - [1122] = {.lex_state = 149}, + [1094] = {.lex_state = 152}, + [1095] = {.lex_state = 152}, + [1096] = {.lex_state = 150}, + [1097] = {.lex_state = 150}, + [1098] = {.lex_state = 150}, + [1099] = {.lex_state = 172}, + [1100] = {.lex_state = 172}, + [1101] = {.lex_state = 150}, + [1102] = {.lex_state = 150}, + [1103] = {.lex_state = 150}, + [1104] = {.lex_state = 172}, + [1105] = {.lex_state = 172}, + [1106] = {.lex_state = 150}, + [1107] = {.lex_state = 150}, + [1108] = {.lex_state = 150}, + [1109] = {.lex_state = 172}, + [1110] = {.lex_state = 172}, + [1111] = {.lex_state = 169}, + [1112] = {.lex_state = 172}, + [1113] = {.lex_state = 172}, + [1114] = {.lex_state = 150}, + [1115] = {.lex_state = 169}, + [1116] = {.lex_state = 172}, + [1117] = {.lex_state = 172}, + [1118] = {.lex_state = 150}, + [1119] = {.lex_state = 169}, + [1120] = {.lex_state = 172}, + [1121] = {.lex_state = 172}, + [1122] = {.lex_state = 150}, [1123] = {.lex_state = 136}, [1124] = {.lex_state = 136}, [1125] = {.lex_state = 136}, - [1126] = {.lex_state = 185}, + [1126] = {.lex_state = 186}, [1127] = {.lex_state = 136}, [1128] = {.lex_state = 136}, - [1129] = {.lex_state = 185}, - [1130] = {.lex_state = 168}, - [1131] = {.lex_state = 185}, - [1132] = {.lex_state = 168}, + [1129] = {.lex_state = 186}, + [1130] = {.lex_state = 169}, + [1131] = {.lex_state = 186}, + [1132] = {.lex_state = 169}, [1133] = {.lex_state = 145}, - [1134] = {.lex_state = 185}, - [1135] = {.lex_state = 168}, + [1134] = {.lex_state = 186}, + [1135] = {.lex_state = 169}, [1136] = {.lex_state = 136}, - [1137] = {.lex_state = 168}, + [1137] = {.lex_state = 169}, [1138] = {.lex_state = 136}, [1139] = {.lex_state = 145}, - [1140] = {.lex_state = 151}, - [1141] = {.lex_state = 168}, - [1142] = {.lex_state = 168}, - [1143] = {.lex_state = 168}, - [1144] = {.lex_state = 171}, - [1145] = {.lex_state = 171}, + [1140] = {.lex_state = 152}, + [1141] = {.lex_state = 169}, + [1142] = {.lex_state = 169}, + [1143] = {.lex_state = 169}, + [1144] = {.lex_state = 172}, + [1145] = {.lex_state = 172}, [1146] = {.lex_state = 145}, [1147] = {.lex_state = 145}, - [1148] = {.lex_state = 185}, + [1148] = {.lex_state = 186}, [1149] = {.lex_state = 145}, [1150] = {.lex_state = 145}, [1151] = {.lex_state = 145}, [1152] = {.lex_state = 145}, [1153] = {.lex_state = 145}, - [1154] = {.lex_state = 149}, + [1154] = {.lex_state = 150}, [1155] = {.lex_state = 136}, - [1156] = {.lex_state = 149}, - [1157] = {.lex_state = 196}, - [1158] = {.lex_state = 151}, + [1156] = {.lex_state = 150}, + [1157] = {.lex_state = 198}, + [1158] = {.lex_state = 152}, [1159] = {.lex_state = 145}, - [1160] = {.lex_state = 187}, + [1160] = {.lex_state = 188}, [1161] = {.lex_state = 145}, - [1162] = {.lex_state = 196}, - [1163] = {.lex_state = 151}, + [1162] = {.lex_state = 198}, + [1163] = {.lex_state = 152}, [1164] = {.lex_state = 145}, - [1165] = {.lex_state = 185}, + [1165] = {.lex_state = 186}, [1166] = {.lex_state = 116}, [1167] = {.lex_state = 145}, - [1168] = {.lex_state = 185}, + [1168] = {.lex_state = 186}, [1169] = {.lex_state = 145}, - [1170] = {.lex_state = 151}, + [1170] = {.lex_state = 152}, [1171] = {.lex_state = 145}, - [1172] = {.lex_state = 187}, - [1173] = {.lex_state = 196}, - [1174] = {.lex_state = 151}, + [1172] = {.lex_state = 188}, + [1173] = {.lex_state = 198}, + [1174] = {.lex_state = 152}, [1175] = {.lex_state = 145}, [1176] = {.lex_state = 145}, - [1177] = {.lex_state = 187}, - [1178] = {.lex_state = 187}, - [1179] = {.lex_state = 196}, - [1180] = {.lex_state = 149}, - [1181] = {.lex_state = 149}, - [1182] = {.lex_state = 149}, - [1183] = {.lex_state = 149}, - [1184] = {.lex_state = 149}, - [1185] = {.lex_state = 149}, - [1186] = {.lex_state = 168}, - [1187] = {.lex_state = 168}, - [1188] = {.lex_state = 168}, - [1189] = {.lex_state = 171}, - [1190] = {.lex_state = 171}, - [1191] = {.lex_state = 168}, - [1192] = {.lex_state = 168}, - [1193] = {.lex_state = 168}, - [1194] = {.lex_state = 171}, - [1195] = {.lex_state = 171}, - [1196] = {.lex_state = 168}, - [1197] = {.lex_state = 168}, - [1198] = {.lex_state = 168}, - [1199] = {.lex_state = 171}, - [1200] = {.lex_state = 171}, + [1177] = {.lex_state = 188}, + [1178] = {.lex_state = 188}, + [1179] = {.lex_state = 198}, + [1180] = {.lex_state = 150}, + [1181] = {.lex_state = 150}, + [1182] = {.lex_state = 150}, + [1183] = {.lex_state = 150}, + [1184] = {.lex_state = 150}, + [1185] = {.lex_state = 150}, + [1186] = {.lex_state = 169}, + [1187] = {.lex_state = 169}, + [1188] = {.lex_state = 169}, + [1189] = {.lex_state = 172}, + [1190] = {.lex_state = 172}, + [1191] = {.lex_state = 169}, + [1192] = {.lex_state = 169}, + [1193] = {.lex_state = 169}, + [1194] = {.lex_state = 172}, + [1195] = {.lex_state = 172}, + [1196] = {.lex_state = 169}, + [1197] = {.lex_state = 169}, + [1198] = {.lex_state = 169}, + [1199] = {.lex_state = 172}, + [1200] = {.lex_state = 172}, [1201] = {.lex_state = 145}, [1202] = {.lex_state = 145}, - [1203] = {.lex_state = 185}, + [1203] = {.lex_state = 186}, [1204] = {.lex_state = 145}, [1205] = {.lex_state = 145}, [1206] = {.lex_state = 145}, [1207] = {.lex_state = 145}, [1208] = {.lex_state = 145}, - [1209] = {.lex_state = 168}, + [1209] = {.lex_state = 169}, [1210] = {.lex_state = 136}, - [1211] = {.lex_state = 168}, - [1212] = {.lex_state = 196}, - [1213] = {.lex_state = 151}, + [1211] = {.lex_state = 169}, + [1212] = {.lex_state = 198}, + [1213] = {.lex_state = 152}, [1214] = {.lex_state = 145}, - [1215] = {.lex_state = 149}, + [1215] = {.lex_state = 150}, [1216] = {.lex_state = 145}, - [1217] = {.lex_state = 185}, + [1217] = {.lex_state = 186}, [1218] = {.lex_state = 145}, - [1219] = {.lex_state = 151}, - [1220] = {.lex_state = 149}, - [1221] = {.lex_state = 187}, - [1222] = {.lex_state = 165}, + [1219] = {.lex_state = 152}, + [1220] = {.lex_state = 150}, + [1221] = {.lex_state = 188}, + [1222] = {.lex_state = 166}, [1223] = {.lex_state = 145}, - [1224] = {.lex_state = 187}, - [1225] = {.lex_state = 196}, - [1226] = {.lex_state = 151}, + [1224] = {.lex_state = 188}, + [1225] = {.lex_state = 198}, + [1226] = {.lex_state = 152}, [1227] = {.lex_state = 145}, - [1228] = {.lex_state = 187}, - [1229] = {.lex_state = 196}, - [1230] = {.lex_state = 151}, + [1228] = {.lex_state = 188}, + [1229] = {.lex_state = 198}, + [1230] = {.lex_state = 152}, [1231] = {.lex_state = 145}, - [1232] = {.lex_state = 196}, - [1233] = {.lex_state = 151}, + [1232] = {.lex_state = 198}, + [1233] = {.lex_state = 152}, [1234] = {.lex_state = 145}, [1235] = {.lex_state = 145}, - [1236] = {.lex_state = 187}, - [1237] = {.lex_state = 187}, - [1238] = {.lex_state = 196}, + [1236] = {.lex_state = 188}, + [1237] = {.lex_state = 188}, + [1238] = {.lex_state = 198}, [1239] = {.lex_state = 145}, [1240] = {.lex_state = 145}, - [1241] = {.lex_state = 187}, - [1242] = {.lex_state = 187}, - [1243] = {.lex_state = 168}, - [1244] = {.lex_state = 168}, - [1245] = {.lex_state = 168}, - [1246] = {.lex_state = 168}, - [1247] = {.lex_state = 168}, - [1248] = {.lex_state = 168}, - [1249] = {.lex_state = 168}, + [1241] = {.lex_state = 188}, + [1242] = {.lex_state = 188}, + [1243] = {.lex_state = 169}, + [1244] = {.lex_state = 169}, + [1245] = {.lex_state = 169}, + [1246] = {.lex_state = 169}, + [1247] = {.lex_state = 169}, + [1248] = {.lex_state = 169}, + [1249] = {.lex_state = 169}, [1250] = {.lex_state = 145}, - [1251] = {.lex_state = 185}, + [1251] = {.lex_state = 186}, [1252] = {.lex_state = 145}, - [1253] = {.lex_state = 151}, - [1254] = {.lex_state = 168}, - [1255] = {.lex_state = 187}, - [1256] = {.lex_state = 165}, + [1253] = {.lex_state = 152}, + [1254] = {.lex_state = 169}, + [1255] = {.lex_state = 188}, + [1256] = {.lex_state = 166}, [1257] = {.lex_state = 145}, - [1258] = {.lex_state = 187}, - [1259] = {.lex_state = 196}, - [1260] = {.lex_state = 151}, + [1258] = {.lex_state = 188}, + [1259] = {.lex_state = 198}, + [1260] = {.lex_state = 152}, [1261] = {.lex_state = 145}, - [1262] = {.lex_state = 196}, - [1263] = {.lex_state = 151}, + [1262] = {.lex_state = 198}, + [1263] = {.lex_state = 152}, [1264] = {.lex_state = 145}, - [1265] = {.lex_state = 149}, - [1266] = {.lex_state = 149}, + [1265] = {.lex_state = 150}, + [1266] = {.lex_state = 150}, [1267] = {.lex_state = 145}, - [1268] = {.lex_state = 187}, - [1269] = {.lex_state = 187}, - [1270] = {.lex_state = 196}, + [1268] = {.lex_state = 188}, + [1269] = {.lex_state = 188}, + [1270] = {.lex_state = 198}, [1271] = {.lex_state = 145}, - [1272] = {.lex_state = 187}, - [1273] = {.lex_state = 187}, - [1274] = {.lex_state = 196}, + [1272] = {.lex_state = 188}, + [1273] = {.lex_state = 188}, + [1274] = {.lex_state = 198}, [1275] = {.lex_state = 145}, - [1276] = {.lex_state = 187}, - [1277] = {.lex_state = 196}, - [1278] = {.lex_state = 151}, + [1276] = {.lex_state = 188}, + [1277] = {.lex_state = 198}, + [1278] = {.lex_state = 152}, [1279] = {.lex_state = 145}, - [1280] = {.lex_state = 187}, - [1281] = {.lex_state = 187}, + [1280] = {.lex_state = 188}, + [1281] = {.lex_state = 188}, [1282] = {.lex_state = 145}, [1283] = {.lex_state = 145}, - [1284] = {.lex_state = 187}, + [1284] = {.lex_state = 188}, [1285] = {.lex_state = 145}, - [1286] = {.lex_state = 196}, - [1287] = {.lex_state = 151}, + [1286] = {.lex_state = 198}, + [1287] = {.lex_state = 152}, [1288] = {.lex_state = 145}, - [1289] = {.lex_state = 168}, - [1290] = {.lex_state = 168}, + [1289] = {.lex_state = 169}, + [1290] = {.lex_state = 169}, [1291] = {.lex_state = 145}, - [1292] = {.lex_state = 187}, - [1293] = {.lex_state = 187}, - [1294] = {.lex_state = 196}, + [1292] = {.lex_state = 188}, + [1293] = {.lex_state = 188}, + [1294] = {.lex_state = 198}, [1295] = {.lex_state = 145}, - [1296] = {.lex_state = 187}, - [1297] = {.lex_state = 196}, - [1298] = {.lex_state = 151}, - [1299] = {.lex_state = 149}, + [1296] = {.lex_state = 188}, + [1297] = {.lex_state = 198}, + [1298] = {.lex_state = 152}, + [1299] = {.lex_state = 150}, [1300] = {.lex_state = 145}, - [1301] = {.lex_state = 187}, - [1302] = {.lex_state = 187}, + [1301] = {.lex_state = 188}, + [1302] = {.lex_state = 188}, [1303] = {.lex_state = 145}, - [1304] = {.lex_state = 187}, - [1305] = {.lex_state = 187}, + [1304] = {.lex_state = 188}, + [1305] = {.lex_state = 188}, [1306] = {.lex_state = 145}, - [1307] = {.lex_state = 187}, - [1308] = {.lex_state = 187}, - [1309] = {.lex_state = 196}, + [1307] = {.lex_state = 188}, + [1308] = {.lex_state = 188}, + [1309] = {.lex_state = 198}, [1310] = {.lex_state = 145}, - [1311] = {.lex_state = 187}, + [1311] = {.lex_state = 188}, [1312] = {.lex_state = 145}, [1313] = {.lex_state = 145}, [1314] = {.lex_state = 145}, - [1315] = {.lex_state = 187}, - [1316] = {.lex_state = 196}, - [1317] = {.lex_state = 151}, - [1318] = {.lex_state = 168}, + [1315] = {.lex_state = 188}, + [1316] = {.lex_state = 198}, + [1317] = {.lex_state = 152}, + [1318] = {.lex_state = 169}, [1319] = {.lex_state = 145}, - [1320] = {.lex_state = 187}, - [1321] = {.lex_state = 187}, + [1320] = {.lex_state = 188}, + [1321] = {.lex_state = 188}, [1322] = {.lex_state = 145}, - [1323] = {.lex_state = 187}, - [1324] = {.lex_state = 187}, - [1325] = {.lex_state = 196}, - [1326] = {.lex_state = 149}, + [1323] = {.lex_state = 188}, + [1324] = {.lex_state = 188}, + [1325] = {.lex_state = 198}, + [1326] = {.lex_state = 150}, [1327] = {.lex_state = 145}, - [1328] = {.lex_state = 187}, + [1328] = {.lex_state = 188}, [1329] = {.lex_state = 145}, - [1330] = {.lex_state = 187}, + [1330] = {.lex_state = 188}, [1331] = {.lex_state = 145}, - [1332] = {.lex_state = 187}, - [1333] = {.lex_state = 187}, + [1332] = {.lex_state = 188}, + [1333] = {.lex_state = 188}, [1334] = {.lex_state = 145}, [1335] = {.lex_state = 145}, [1336] = {.lex_state = 145}, - [1337] = {.lex_state = 187}, - [1338] = {.lex_state = 187}, - [1339] = {.lex_state = 196}, - [1340] = {.lex_state = 168}, + [1337] = {.lex_state = 188}, + [1338] = {.lex_state = 188}, + [1339] = {.lex_state = 198}, + [1340] = {.lex_state = 169}, [1341] = {.lex_state = 145}, - [1342] = {.lex_state = 187}, + [1342] = {.lex_state = 188}, [1343] = {.lex_state = 145}, - [1344] = {.lex_state = 187}, - [1345] = {.lex_state = 187}, - [1346] = {.lex_state = 149}, + [1344] = {.lex_state = 188}, + [1345] = {.lex_state = 188}, + [1346] = {.lex_state = 150}, [1347] = {.lex_state = 145}, [1348] = {.lex_state = 145}, [1349] = {.lex_state = 145}, - [1350] = {.lex_state = 187}, + [1350] = {.lex_state = 188}, [1351] = {.lex_state = 145}, - [1352] = {.lex_state = 187}, - [1353] = {.lex_state = 187}, - [1354] = {.lex_state = 168}, + [1352] = {.lex_state = 188}, + [1353] = {.lex_state = 188}, + [1354] = {.lex_state = 169}, [1355] = {.lex_state = 145}, [1356] = {.lex_state = 145}, - [1357] = {.lex_state = 187}, - [1358] = {.lex_state = 149}, + [1357] = {.lex_state = 188}, + [1358] = {.lex_state = 150}, [1359] = {.lex_state = 145}, [1360] = {.lex_state = 145}, - [1361] = {.lex_state = 187}, - [1362] = {.lex_state = 168}, + [1361] = {.lex_state = 188}, + [1362] = {.lex_state = 169}, [1363] = {.lex_state = 145}, [1364] = {.lex_state = 145}, }; @@ -6418,72 +6437,72 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_string_literal_repeat1] = STATE(56), [anon_sym_DQUOTE] = ACTIONS(117), [aux_sym_SLASH_LBRACK_CARET_BSLASH_BSLASH_DQUOTE_BSLASHn_RBRACK_SLASH] = ACTIONS(119), - [sym_escape_sequence] = ACTIONS(121), + [sym_escape_sequence] = ACTIONS(119), [sym_comment] = ACTIONS(49), }, [23] = { - [ts_builtin_sym_end] = ACTIONS(123), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(125), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(125), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(125), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(125), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(125), - [sym_preproc_directive] = ACTIONS(125), - [anon_sym_SEMI] = ACTIONS(123), - [anon_sym_typedef] = ACTIONS(125), - [anon_sym_extern] = ACTIONS(125), - [anon_sym_LBRACE] = ACTIONS(123), - [anon_sym_RBRACE] = ACTIONS(123), - [anon_sym_LPAREN2] = ACTIONS(123), - [anon_sym_STAR] = ACTIONS(123), - [anon_sym_static] = ACTIONS(125), - [anon_sym_auto] = ACTIONS(125), - [anon_sym_register] = ACTIONS(125), - [anon_sym_inline] = ACTIONS(125), - [anon_sym_const] = ACTIONS(125), - [anon_sym_restrict] = ACTIONS(125), - [anon_sym_volatile] = ACTIONS(125), - [anon_sym__Atomic] = ACTIONS(125), - [anon_sym_unsigned] = ACTIONS(125), - [anon_sym_long] = ACTIONS(125), - [anon_sym_short] = ACTIONS(125), - [sym_primitive_type] = ACTIONS(125), - [anon_sym_enum] = ACTIONS(125), - [anon_sym_struct] = ACTIONS(125), - [anon_sym_union] = ACTIONS(125), - [anon_sym_if] = ACTIONS(125), - [anon_sym_switch] = ACTIONS(125), - [anon_sym_case] = ACTIONS(125), - [anon_sym_default] = ACTIONS(125), - [anon_sym_while] = ACTIONS(125), - [anon_sym_do] = ACTIONS(125), - [anon_sym_for] = ACTIONS(125), - [anon_sym_return] = ACTIONS(125), - [anon_sym_break] = ACTIONS(125), - [anon_sym_continue] = ACTIONS(125), - [anon_sym_goto] = ACTIONS(125), - [anon_sym_AMP] = ACTIONS(123), - [anon_sym_BANG] = ACTIONS(123), - [anon_sym_TILDE] = ACTIONS(123), - [anon_sym_PLUS] = ACTIONS(125), - [anon_sym_DASH] = ACTIONS(125), - [anon_sym_DASH_DASH] = ACTIONS(123), - [anon_sym_PLUS_PLUS] = ACTIONS(123), - [anon_sym_sizeof] = ACTIONS(125), - [sym_number_literal] = ACTIONS(123), - [anon_sym_SQUOTE] = ACTIONS(123), - [anon_sym_DQUOTE] = ACTIONS(123), - [sym_true] = ACTIONS(125), - [sym_false] = ACTIONS(125), - [sym_null] = ACTIONS(125), - [sym_identifier] = ACTIONS(125), + [ts_builtin_sym_end] = ACTIONS(121), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(123), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(123), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(123), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(123), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(123), + [sym_preproc_directive] = ACTIONS(123), + [anon_sym_SEMI] = ACTIONS(121), + [anon_sym_typedef] = ACTIONS(123), + [anon_sym_extern] = ACTIONS(123), + [anon_sym_LBRACE] = ACTIONS(121), + [anon_sym_RBRACE] = ACTIONS(121), + [anon_sym_LPAREN2] = ACTIONS(121), + [anon_sym_STAR] = ACTIONS(121), + [anon_sym_static] = ACTIONS(123), + [anon_sym_auto] = ACTIONS(123), + [anon_sym_register] = ACTIONS(123), + [anon_sym_inline] = ACTIONS(123), + [anon_sym_const] = ACTIONS(123), + [anon_sym_restrict] = ACTIONS(123), + [anon_sym_volatile] = ACTIONS(123), + [anon_sym__Atomic] = ACTIONS(123), + [anon_sym_unsigned] = ACTIONS(123), + [anon_sym_long] = ACTIONS(123), + [anon_sym_short] = ACTIONS(123), + [sym_primitive_type] = ACTIONS(123), + [anon_sym_enum] = ACTIONS(123), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_union] = ACTIONS(123), + [anon_sym_if] = ACTIONS(123), + [anon_sym_switch] = ACTIONS(123), + [anon_sym_case] = ACTIONS(123), + [anon_sym_default] = ACTIONS(123), + [anon_sym_while] = ACTIONS(123), + [anon_sym_do] = ACTIONS(123), + [anon_sym_for] = ACTIONS(123), + [anon_sym_return] = ACTIONS(123), + [anon_sym_break] = ACTIONS(123), + [anon_sym_continue] = ACTIONS(123), + [anon_sym_goto] = ACTIONS(123), + [anon_sym_AMP] = ACTIONS(121), + [anon_sym_BANG] = ACTIONS(121), + [anon_sym_TILDE] = ACTIONS(121), + [anon_sym_PLUS] = ACTIONS(123), + [anon_sym_DASH] = ACTIONS(123), + [anon_sym_DASH_DASH] = ACTIONS(121), + [anon_sym_PLUS_PLUS] = ACTIONS(121), + [anon_sym_sizeof] = ACTIONS(123), + [sym_number_literal] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_DQUOTE] = ACTIONS(121), + [sym_true] = ACTIONS(123), + [sym_false] = ACTIONS(123), + [sym_null] = ACTIONS(123), + [sym_identifier] = ACTIONS(123), [sym_comment] = ACTIONS(39), }, [24] = { [sym_preproc_params] = STATE(60), - [anon_sym_LF] = ACTIONS(127), - [anon_sym_LPAREN] = ACTIONS(129), - [sym_preproc_arg] = ACTIONS(131), + [anon_sym_LF] = ACTIONS(125), + [anon_sym_LPAREN] = ACTIONS(127), + [sym_preproc_arg] = ACTIONS(129), [sym_comment] = ACTIONS(49), }, [25] = { @@ -6512,17 +6531,17 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_translation_unit_repeat1] = STATE(74), [aux_sym__declaration_specifiers_repeat1] = STATE(20), [aux_sym_sized_type_specifier_repeat1] = STATE(21), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(133), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(135), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(137), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(139), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(141), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(143), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(145), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(147), - [sym_preproc_directive] = ACTIONS(149), - [anon_sym_typedef] = ACTIONS(151), - [anon_sym_extern] = ACTIONS(153), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(131), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(133), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(135), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(137), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(139), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(141), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(143), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(145), + [sym_preproc_directive] = ACTIONS(147), + [anon_sym_typedef] = ACTIONS(149), + [anon_sym_extern] = ACTIONS(151), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -6567,17 +6586,17 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_translation_unit_repeat1] = STATE(77), [aux_sym__declaration_specifiers_repeat1] = STATE(20), [aux_sym_sized_type_specifier_repeat1] = STATE(21), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(133), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(135), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(137), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(155), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(141), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(143), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(145), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(147), - [sym_preproc_directive] = ACTIONS(149), - [anon_sym_typedef] = ACTIONS(151), - [anon_sym_extern] = ACTIONS(153), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(131), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(133), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(135), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(153), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(139), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(141), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(143), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(145), + [sym_preproc_directive] = ACTIONS(147), + [anon_sym_typedef] = ACTIONS(149), + [anon_sym_extern] = ACTIONS(151), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -6622,17 +6641,17 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_translation_unit_repeat1] = STATE(80), [aux_sym__declaration_specifiers_repeat1] = STATE(20), [aux_sym_sized_type_specifier_repeat1] = STATE(21), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(133), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(135), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(137), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(157), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(141), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(143), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(145), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(147), - [sym_preproc_directive] = ACTIONS(149), - [anon_sym_typedef] = ACTIONS(151), - [anon_sym_extern] = ACTIONS(153), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(131), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(133), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(135), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(155), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(139), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(141), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(143), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(145), + [sym_preproc_directive] = ACTIONS(147), + [anon_sym_typedef] = ACTIONS(149), + [anon_sym_extern] = ACTIONS(151), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -6652,65 +6671,65 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(39), }, [28] = { - [ts_builtin_sym_end] = ACTIONS(159), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(161), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(161), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(161), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(161), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(161), - [sym_preproc_directive] = ACTIONS(161), - [anon_sym_SEMI] = ACTIONS(159), - [anon_sym_typedef] = ACTIONS(161), - [anon_sym_extern] = ACTIONS(161), - [anon_sym_LBRACE] = ACTIONS(159), - [anon_sym_RBRACE] = ACTIONS(159), - [anon_sym_LPAREN2] = ACTIONS(159), - [anon_sym_STAR] = ACTIONS(159), - [anon_sym_static] = ACTIONS(161), - [anon_sym_auto] = ACTIONS(161), - [anon_sym_register] = ACTIONS(161), - [anon_sym_inline] = ACTIONS(161), - [anon_sym_const] = ACTIONS(161), - [anon_sym_restrict] = ACTIONS(161), - [anon_sym_volatile] = ACTIONS(161), - [anon_sym__Atomic] = ACTIONS(161), - [anon_sym_unsigned] = ACTIONS(161), - [anon_sym_long] = ACTIONS(161), - [anon_sym_short] = ACTIONS(161), - [sym_primitive_type] = ACTIONS(161), - [anon_sym_enum] = ACTIONS(161), - [anon_sym_struct] = ACTIONS(161), - [anon_sym_union] = ACTIONS(161), - [anon_sym_if] = ACTIONS(161), - [anon_sym_switch] = ACTIONS(161), - [anon_sym_case] = ACTIONS(161), - [anon_sym_default] = ACTIONS(161), - [anon_sym_while] = ACTIONS(161), - [anon_sym_do] = ACTIONS(161), - [anon_sym_for] = ACTIONS(161), - [anon_sym_return] = ACTIONS(161), - [anon_sym_break] = ACTIONS(161), - [anon_sym_continue] = ACTIONS(161), - [anon_sym_goto] = ACTIONS(161), - [anon_sym_AMP] = ACTIONS(159), - [anon_sym_BANG] = ACTIONS(159), - [anon_sym_TILDE] = ACTIONS(159), - [anon_sym_PLUS] = ACTIONS(161), - [anon_sym_DASH] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(159), - [anon_sym_PLUS_PLUS] = ACTIONS(159), - [anon_sym_sizeof] = ACTIONS(161), - [sym_number_literal] = ACTIONS(159), - [anon_sym_SQUOTE] = ACTIONS(159), - [anon_sym_DQUOTE] = ACTIONS(159), - [sym_true] = ACTIONS(161), - [sym_false] = ACTIONS(161), - [sym_null] = ACTIONS(161), - [sym_identifier] = ACTIONS(161), + [ts_builtin_sym_end] = ACTIONS(157), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(159), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(159), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(159), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(159), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(159), + [sym_preproc_directive] = ACTIONS(159), + [anon_sym_SEMI] = ACTIONS(157), + [anon_sym_typedef] = ACTIONS(159), + [anon_sym_extern] = ACTIONS(159), + [anon_sym_LBRACE] = ACTIONS(157), + [anon_sym_RBRACE] = ACTIONS(157), + [anon_sym_LPAREN2] = ACTIONS(157), + [anon_sym_STAR] = ACTIONS(157), + [anon_sym_static] = ACTIONS(159), + [anon_sym_auto] = ACTIONS(159), + [anon_sym_register] = ACTIONS(159), + [anon_sym_inline] = ACTIONS(159), + [anon_sym_const] = ACTIONS(159), + [anon_sym_restrict] = ACTIONS(159), + [anon_sym_volatile] = ACTIONS(159), + [anon_sym__Atomic] = ACTIONS(159), + [anon_sym_unsigned] = ACTIONS(159), + [anon_sym_long] = ACTIONS(159), + [anon_sym_short] = ACTIONS(159), + [sym_primitive_type] = ACTIONS(159), + [anon_sym_enum] = ACTIONS(159), + [anon_sym_struct] = ACTIONS(159), + [anon_sym_union] = ACTIONS(159), + [anon_sym_if] = ACTIONS(159), + [anon_sym_switch] = ACTIONS(159), + [anon_sym_case] = ACTIONS(159), + [anon_sym_default] = ACTIONS(159), + [anon_sym_while] = ACTIONS(159), + [anon_sym_do] = ACTIONS(159), + [anon_sym_for] = ACTIONS(159), + [anon_sym_return] = ACTIONS(159), + [anon_sym_break] = ACTIONS(159), + [anon_sym_continue] = ACTIONS(159), + [anon_sym_goto] = ACTIONS(159), + [anon_sym_AMP] = ACTIONS(157), + [anon_sym_BANG] = ACTIONS(157), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(159), + [anon_sym_DASH] = ACTIONS(159), + [anon_sym_DASH_DASH] = ACTIONS(157), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_sizeof] = ACTIONS(159), + [sym_number_literal] = ACTIONS(157), + [anon_sym_SQUOTE] = ACTIONS(157), + [anon_sym_DQUOTE] = ACTIONS(157), + [sym_true] = ACTIONS(159), + [sym_false] = ACTIONS(159), + [sym_null] = ACTIONS(159), + [sym_identifier] = ACTIONS(159), [sym_comment] = ACTIONS(39), }, [29] = { - [anon_sym_LF] = ACTIONS(163), + [anon_sym_LF] = ACTIONS(161), [sym_comment] = ACTIONS(49), }, [30] = { @@ -6718,9 +6737,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_pointer_type_declarator] = STATE(86), [sym_function_type_declarator] = STATE(87), [sym_array_type_declarator] = STATE(88), - [anon_sym_LPAREN2] = ACTIONS(165), - [anon_sym_STAR] = ACTIONS(167), - [sym_identifier] = ACTIONS(169), + [anon_sym_LPAREN2] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(165), + [sym_identifier] = ACTIONS(167), [sym_comment] = ACTIONS(39), }, [31] = { @@ -6740,7 +6759,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(171), + [sym_primitive_type] = ACTIONS(169), [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), @@ -6751,9 +6770,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_sized_type_specifier_repeat1] = STATE(91), [anon_sym_LPAREN2] = ACTIONS(106), [anon_sym_STAR] = ACTIONS(106), - [anon_sym_unsigned] = ACTIONS(173), - [anon_sym_long] = ACTIONS(173), - [anon_sym_short] = ACTIONS(173), + [anon_sym_unsigned] = ACTIONS(171), + [anon_sym_long] = ACTIONS(171), + [anon_sym_short] = ACTIONS(171), [sym_primitive_type] = ACTIONS(112), [sym_identifier] = ACTIONS(114), [sym_comment] = ACTIONS(39), @@ -6774,7 +6793,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__declaration_specifiers_repeat1] = STATE(96), [aux_sym_sized_type_specifier_repeat1] = STATE(97), [anon_sym_extern] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(175), + [anon_sym_LBRACE] = ACTIONS(173), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -6783,10 +6802,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_restrict] = ACTIONS(25), [anon_sym_volatile] = ACTIONS(25), [anon_sym__Atomic] = ACTIONS(25), - [anon_sym_unsigned] = ACTIONS(177), - [anon_sym_long] = ACTIONS(177), - [anon_sym_short] = ACTIONS(177), - [sym_primitive_type] = ACTIONS(179), + [anon_sym_unsigned] = ACTIONS(175), + [anon_sym_long] = ACTIONS(175), + [anon_sym_short] = ACTIONS(175), + [sym_primitive_type] = ACTIONS(177), [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), @@ -6795,81 +6814,81 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { }, [34] = { [sym_enumerator] = STATE(101), - [anon_sym_COMMA] = ACTIONS(181), - [anon_sym_RBRACE] = ACTIONS(183), - [sym_identifier] = ACTIONS(185), + [anon_sym_COMMA] = ACTIONS(179), + [anon_sym_RBRACE] = ACTIONS(181), + [sym_identifier] = ACTIONS(183), [sym_comment] = ACTIONS(39), }, [35] = { [sym_enumerator_list] = STATE(102), - [anon_sym_COMMA] = ACTIONS(187), - [anon_sym_RPAREN] = ACTIONS(187), - [anon_sym_SEMI] = ACTIONS(187), - [anon_sym_extern] = ACTIONS(189), + [anon_sym_COMMA] = ACTIONS(185), + [anon_sym_RPAREN] = ACTIONS(185), + [anon_sym_SEMI] = ACTIONS(185), + [anon_sym_extern] = ACTIONS(187), [anon_sym_LBRACE] = ACTIONS(71), - [anon_sym_LPAREN2] = ACTIONS(187), - [anon_sym_STAR] = ACTIONS(187), - [anon_sym_LBRACK] = ACTIONS(187), - [anon_sym_RBRACK] = ACTIONS(187), - [anon_sym_static] = ACTIONS(189), - [anon_sym_auto] = ACTIONS(189), - [anon_sym_register] = ACTIONS(189), - [anon_sym_inline] = ACTIONS(189), - [anon_sym_const] = ACTIONS(189), - [anon_sym_restrict] = ACTIONS(189), - [anon_sym_volatile] = ACTIONS(189), - [anon_sym__Atomic] = ACTIONS(189), - [anon_sym_COLON] = ACTIONS(187), - [anon_sym_AMP] = ACTIONS(187), - [anon_sym_BANG] = ACTIONS(187), - [anon_sym_TILDE] = ACTIONS(187), - [anon_sym_PLUS] = ACTIONS(189), - [anon_sym_DASH] = ACTIONS(189), - [anon_sym_DASH_DASH] = ACTIONS(187), - [anon_sym_PLUS_PLUS] = ACTIONS(187), - [anon_sym_sizeof] = ACTIONS(189), - [sym_number_literal] = ACTIONS(187), - [anon_sym_SQUOTE] = ACTIONS(187), - [anon_sym_DQUOTE] = ACTIONS(187), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_identifier] = ACTIONS(189), + [anon_sym_LPAREN2] = ACTIONS(185), + [anon_sym_STAR] = ACTIONS(185), + [anon_sym_LBRACK] = ACTIONS(185), + [anon_sym_RBRACK] = ACTIONS(185), + [anon_sym_static] = ACTIONS(187), + [anon_sym_auto] = ACTIONS(187), + [anon_sym_register] = ACTIONS(187), + [anon_sym_inline] = ACTIONS(187), + [anon_sym_const] = ACTIONS(187), + [anon_sym_restrict] = ACTIONS(187), + [anon_sym_volatile] = ACTIONS(187), + [anon_sym__Atomic] = ACTIONS(187), + [anon_sym_COLON] = ACTIONS(185), + [anon_sym_AMP] = ACTIONS(185), + [anon_sym_BANG] = ACTIONS(185), + [anon_sym_TILDE] = ACTIONS(185), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(187), + [anon_sym_DASH_DASH] = ACTIONS(185), + [anon_sym_PLUS_PLUS] = ACTIONS(185), + [anon_sym_sizeof] = ACTIONS(187), + [sym_number_literal] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(185), + [anon_sym_DQUOTE] = ACTIONS(185), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_identifier] = ACTIONS(187), [sym_comment] = ACTIONS(39), }, [36] = { - [anon_sym_COMMA] = ACTIONS(191), - [anon_sym_RPAREN] = ACTIONS(191), - [anon_sym_SEMI] = ACTIONS(191), - [anon_sym_extern] = ACTIONS(193), - [anon_sym_LPAREN2] = ACTIONS(191), - [anon_sym_STAR] = ACTIONS(191), - [anon_sym_LBRACK] = ACTIONS(191), - [anon_sym_RBRACK] = ACTIONS(191), - [anon_sym_static] = ACTIONS(193), - [anon_sym_auto] = ACTIONS(193), - [anon_sym_register] = ACTIONS(193), - [anon_sym_inline] = ACTIONS(193), - [anon_sym_const] = ACTIONS(193), - [anon_sym_restrict] = ACTIONS(193), - [anon_sym_volatile] = ACTIONS(193), - [anon_sym__Atomic] = ACTIONS(193), - [anon_sym_COLON] = ACTIONS(191), - [anon_sym_AMP] = ACTIONS(191), - [anon_sym_BANG] = ACTIONS(191), - [anon_sym_TILDE] = ACTIONS(191), - [anon_sym_PLUS] = ACTIONS(193), - [anon_sym_DASH] = ACTIONS(193), - [anon_sym_DASH_DASH] = ACTIONS(191), - [anon_sym_PLUS_PLUS] = ACTIONS(191), - [anon_sym_sizeof] = ACTIONS(193), - [sym_number_literal] = ACTIONS(191), - [anon_sym_SQUOTE] = ACTIONS(191), - [anon_sym_DQUOTE] = ACTIONS(191), - [sym_true] = ACTIONS(193), - [sym_false] = ACTIONS(193), - [sym_null] = ACTIONS(193), - [sym_identifier] = ACTIONS(193), + [anon_sym_COMMA] = ACTIONS(189), + [anon_sym_RPAREN] = ACTIONS(189), + [anon_sym_SEMI] = ACTIONS(189), + [anon_sym_extern] = ACTIONS(191), + [anon_sym_LPAREN2] = ACTIONS(189), + [anon_sym_STAR] = ACTIONS(189), + [anon_sym_LBRACK] = ACTIONS(189), + [anon_sym_RBRACK] = ACTIONS(189), + [anon_sym_static] = ACTIONS(191), + [anon_sym_auto] = ACTIONS(191), + [anon_sym_register] = ACTIONS(191), + [anon_sym_inline] = ACTIONS(191), + [anon_sym_const] = ACTIONS(191), + [anon_sym_restrict] = ACTIONS(191), + [anon_sym_volatile] = ACTIONS(191), + [anon_sym__Atomic] = ACTIONS(191), + [anon_sym_COLON] = ACTIONS(189), + [anon_sym_AMP] = ACTIONS(189), + [anon_sym_BANG] = ACTIONS(189), + [anon_sym_TILDE] = ACTIONS(189), + [anon_sym_PLUS] = ACTIONS(191), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_DASH_DASH] = ACTIONS(189), + [anon_sym_PLUS_PLUS] = ACTIONS(189), + [anon_sym_sizeof] = ACTIONS(191), + [sym_number_literal] = ACTIONS(189), + [anon_sym_SQUOTE] = ACTIONS(189), + [anon_sym_DQUOTE] = ACTIONS(189), + [sym_true] = ACTIONS(191), + [sym_false] = ACTIONS(191), + [sym_null] = ACTIONS(191), + [sym_identifier] = ACTIONS(191), [sym_comment] = ACTIONS(39), }, [37] = { @@ -6889,11 +6908,11 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(111), [aux_sym__declaration_specifiers_repeat1] = STATE(112), [aux_sym_sized_type_specifier_repeat1] = STATE(113), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(195), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(197), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(199), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(193), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(195), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(197), [anon_sym_extern] = ACTIONS(23), - [anon_sym_RBRACE] = ACTIONS(201), + [anon_sym_RBRACE] = ACTIONS(199), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -6902,10 +6921,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_restrict] = ACTIONS(25), [anon_sym_volatile] = ACTIONS(25), [anon_sym__Atomic] = ACTIONS(25), - [anon_sym_unsigned] = ACTIONS(203), - [anon_sym_long] = ACTIONS(203), - [anon_sym_short] = ACTIONS(203), - [sym_primitive_type] = ACTIONS(205), + [anon_sym_unsigned] = ACTIONS(201), + [anon_sym_long] = ACTIONS(201), + [anon_sym_short] = ACTIONS(201), + [sym_primitive_type] = ACTIONS(203), [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), @@ -6914,146 +6933,146 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { }, [38] = { [sym_field_declaration_list] = STATE(114), - [anon_sym_COMMA] = ACTIONS(207), - [anon_sym_RPAREN] = ACTIONS(207), - [anon_sym_SEMI] = ACTIONS(207), - [anon_sym_extern] = ACTIONS(209), + [anon_sym_COMMA] = ACTIONS(205), + [anon_sym_RPAREN] = ACTIONS(205), + [anon_sym_SEMI] = ACTIONS(205), + [anon_sym_extern] = ACTIONS(207), [anon_sym_LBRACE] = ACTIONS(75), - [anon_sym_LPAREN2] = ACTIONS(207), - [anon_sym_STAR] = ACTIONS(207), - [anon_sym_LBRACK] = ACTIONS(207), - [anon_sym_RBRACK] = ACTIONS(207), - [anon_sym_static] = ACTIONS(209), - [anon_sym_auto] = ACTIONS(209), - [anon_sym_register] = ACTIONS(209), - [anon_sym_inline] = ACTIONS(209), - [anon_sym_const] = ACTIONS(209), - [anon_sym_restrict] = ACTIONS(209), - [anon_sym_volatile] = ACTIONS(209), - [anon_sym__Atomic] = ACTIONS(209), - [anon_sym_COLON] = ACTIONS(207), - [anon_sym_AMP] = ACTIONS(207), - [anon_sym_BANG] = ACTIONS(207), - [anon_sym_TILDE] = ACTIONS(207), - [anon_sym_PLUS] = ACTIONS(209), - [anon_sym_DASH] = ACTIONS(209), - [anon_sym_DASH_DASH] = ACTIONS(207), - [anon_sym_PLUS_PLUS] = ACTIONS(207), - [anon_sym_sizeof] = ACTIONS(209), - [sym_number_literal] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(207), - [anon_sym_DQUOTE] = ACTIONS(207), - [sym_true] = ACTIONS(209), - [sym_false] = ACTIONS(209), - [sym_null] = ACTIONS(209), - [sym_identifier] = ACTIONS(209), + [anon_sym_LPAREN2] = ACTIONS(205), + [anon_sym_STAR] = ACTIONS(205), + [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_RBRACK] = ACTIONS(205), + [anon_sym_static] = ACTIONS(207), + [anon_sym_auto] = ACTIONS(207), + [anon_sym_register] = ACTIONS(207), + [anon_sym_inline] = ACTIONS(207), + [anon_sym_const] = ACTIONS(207), + [anon_sym_restrict] = ACTIONS(207), + [anon_sym_volatile] = ACTIONS(207), + [anon_sym__Atomic] = ACTIONS(207), + [anon_sym_COLON] = ACTIONS(205), + [anon_sym_AMP] = ACTIONS(205), + [anon_sym_BANG] = ACTIONS(205), + [anon_sym_TILDE] = ACTIONS(205), + [anon_sym_PLUS] = ACTIONS(207), + [anon_sym_DASH] = ACTIONS(207), + [anon_sym_DASH_DASH] = ACTIONS(205), + [anon_sym_PLUS_PLUS] = ACTIONS(205), + [anon_sym_sizeof] = ACTIONS(207), + [sym_number_literal] = ACTIONS(205), + [anon_sym_SQUOTE] = ACTIONS(205), + [anon_sym_DQUOTE] = ACTIONS(205), + [sym_true] = ACTIONS(207), + [sym_false] = ACTIONS(207), + [sym_null] = ACTIONS(207), + [sym_identifier] = ACTIONS(207), [sym_comment] = ACTIONS(39), }, [39] = { - [anon_sym_COMMA] = ACTIONS(211), - [anon_sym_RPAREN] = ACTIONS(211), - [anon_sym_SEMI] = ACTIONS(211), - [anon_sym_extern] = ACTIONS(213), - [anon_sym_LPAREN2] = ACTIONS(211), - [anon_sym_STAR] = ACTIONS(211), - [anon_sym_LBRACK] = ACTIONS(211), - [anon_sym_RBRACK] = ACTIONS(211), - [anon_sym_static] = ACTIONS(213), - [anon_sym_auto] = ACTIONS(213), - [anon_sym_register] = ACTIONS(213), - [anon_sym_inline] = ACTIONS(213), - [anon_sym_const] = ACTIONS(213), - [anon_sym_restrict] = ACTIONS(213), - [anon_sym_volatile] = ACTIONS(213), - [anon_sym__Atomic] = ACTIONS(213), - [anon_sym_COLON] = ACTIONS(211), - [anon_sym_AMP] = ACTIONS(211), - [anon_sym_BANG] = ACTIONS(211), - [anon_sym_TILDE] = ACTIONS(211), - [anon_sym_PLUS] = ACTIONS(213), - [anon_sym_DASH] = ACTIONS(213), - [anon_sym_DASH_DASH] = ACTIONS(211), - [anon_sym_PLUS_PLUS] = ACTIONS(211), - [anon_sym_sizeof] = ACTIONS(213), - [sym_number_literal] = ACTIONS(211), - [anon_sym_SQUOTE] = ACTIONS(211), - [anon_sym_DQUOTE] = ACTIONS(211), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [sym_null] = ACTIONS(213), - [sym_identifier] = ACTIONS(213), + [anon_sym_COMMA] = ACTIONS(209), + [anon_sym_RPAREN] = ACTIONS(209), + [anon_sym_SEMI] = ACTIONS(209), + [anon_sym_extern] = ACTIONS(211), + [anon_sym_LPAREN2] = ACTIONS(209), + [anon_sym_STAR] = ACTIONS(209), + [anon_sym_LBRACK] = ACTIONS(209), + [anon_sym_RBRACK] = ACTIONS(209), + [anon_sym_static] = ACTIONS(211), + [anon_sym_auto] = ACTIONS(211), + [anon_sym_register] = ACTIONS(211), + [anon_sym_inline] = ACTIONS(211), + [anon_sym_const] = ACTIONS(211), + [anon_sym_restrict] = ACTIONS(211), + [anon_sym_volatile] = ACTIONS(211), + [anon_sym__Atomic] = ACTIONS(211), + [anon_sym_COLON] = ACTIONS(209), + [anon_sym_AMP] = ACTIONS(209), + [anon_sym_BANG] = ACTIONS(209), + [anon_sym_TILDE] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(211), + [anon_sym_DASH] = ACTIONS(211), + [anon_sym_DASH_DASH] = ACTIONS(209), + [anon_sym_PLUS_PLUS] = ACTIONS(209), + [anon_sym_sizeof] = ACTIONS(211), + [sym_number_literal] = ACTIONS(209), + [anon_sym_SQUOTE] = ACTIONS(209), + [anon_sym_DQUOTE] = ACTIONS(209), + [sym_true] = ACTIONS(211), + [sym_false] = ACTIONS(211), + [sym_null] = ACTIONS(211), + [sym_identifier] = ACTIONS(211), [sym_comment] = ACTIONS(39), }, [40] = { [sym_field_declaration_list] = STATE(115), - [anon_sym_COMMA] = ACTIONS(215), - [anon_sym_RPAREN] = ACTIONS(215), - [anon_sym_SEMI] = ACTIONS(215), - [anon_sym_extern] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(213), + [anon_sym_RPAREN] = ACTIONS(213), + [anon_sym_SEMI] = ACTIONS(213), + [anon_sym_extern] = ACTIONS(215), [anon_sym_LBRACE] = ACTIONS(75), - [anon_sym_LPAREN2] = ACTIONS(215), - [anon_sym_STAR] = ACTIONS(215), - [anon_sym_LBRACK] = ACTIONS(215), - [anon_sym_RBRACK] = ACTIONS(215), - [anon_sym_static] = ACTIONS(217), - [anon_sym_auto] = ACTIONS(217), - [anon_sym_register] = ACTIONS(217), - [anon_sym_inline] = ACTIONS(217), - [anon_sym_const] = ACTIONS(217), - [anon_sym_restrict] = ACTIONS(217), - [anon_sym_volatile] = ACTIONS(217), - [anon_sym__Atomic] = ACTIONS(217), - [anon_sym_COLON] = ACTIONS(215), - [anon_sym_AMP] = ACTIONS(215), - [anon_sym_BANG] = ACTIONS(215), - [anon_sym_TILDE] = ACTIONS(215), - [anon_sym_PLUS] = ACTIONS(217), - [anon_sym_DASH] = ACTIONS(217), - [anon_sym_DASH_DASH] = ACTIONS(215), - [anon_sym_PLUS_PLUS] = ACTIONS(215), - [anon_sym_sizeof] = ACTIONS(217), - [sym_number_literal] = ACTIONS(215), - [anon_sym_SQUOTE] = ACTIONS(215), - [anon_sym_DQUOTE] = ACTIONS(215), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [sym_null] = ACTIONS(217), - [sym_identifier] = ACTIONS(217), + [anon_sym_LPAREN2] = ACTIONS(213), + [anon_sym_STAR] = ACTIONS(213), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_RBRACK] = ACTIONS(213), + [anon_sym_static] = ACTIONS(215), + [anon_sym_auto] = ACTIONS(215), + [anon_sym_register] = ACTIONS(215), + [anon_sym_inline] = ACTIONS(215), + [anon_sym_const] = ACTIONS(215), + [anon_sym_restrict] = ACTIONS(215), + [anon_sym_volatile] = ACTIONS(215), + [anon_sym__Atomic] = ACTIONS(215), + [anon_sym_COLON] = ACTIONS(213), + [anon_sym_AMP] = ACTIONS(213), + [anon_sym_BANG] = ACTIONS(213), + [anon_sym_TILDE] = ACTIONS(213), + [anon_sym_PLUS] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(213), + [anon_sym_PLUS_PLUS] = ACTIONS(213), + [anon_sym_sizeof] = ACTIONS(215), + [sym_number_literal] = ACTIONS(213), + [anon_sym_SQUOTE] = ACTIONS(213), + [anon_sym_DQUOTE] = ACTIONS(213), + [sym_true] = ACTIONS(215), + [sym_false] = ACTIONS(215), + [sym_null] = ACTIONS(215), + [sym_identifier] = ACTIONS(215), [sym_comment] = ACTIONS(39), }, [41] = { - [anon_sym_COMMA] = ACTIONS(219), - [anon_sym_RPAREN] = ACTIONS(219), - [anon_sym_SEMI] = ACTIONS(219), - [anon_sym_extern] = ACTIONS(221), - [anon_sym_LPAREN2] = ACTIONS(219), - [anon_sym_STAR] = ACTIONS(219), - [anon_sym_LBRACK] = ACTIONS(219), - [anon_sym_RBRACK] = ACTIONS(219), - [anon_sym_static] = ACTIONS(221), - [anon_sym_auto] = ACTIONS(221), - [anon_sym_register] = ACTIONS(221), - [anon_sym_inline] = ACTIONS(221), - [anon_sym_const] = ACTIONS(221), - [anon_sym_restrict] = ACTIONS(221), - [anon_sym_volatile] = ACTIONS(221), - [anon_sym__Atomic] = ACTIONS(221), - [anon_sym_COLON] = ACTIONS(219), - [anon_sym_AMP] = ACTIONS(219), - [anon_sym_BANG] = ACTIONS(219), - [anon_sym_TILDE] = ACTIONS(219), - [anon_sym_PLUS] = ACTIONS(221), - [anon_sym_DASH] = ACTIONS(221), - [anon_sym_DASH_DASH] = ACTIONS(219), - [anon_sym_PLUS_PLUS] = ACTIONS(219), - [anon_sym_sizeof] = ACTIONS(221), - [sym_number_literal] = ACTIONS(219), - [anon_sym_SQUOTE] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(219), - [sym_true] = ACTIONS(221), - [sym_false] = ACTIONS(221), - [sym_null] = ACTIONS(221), - [sym_identifier] = ACTIONS(221), + [anon_sym_COMMA] = ACTIONS(217), + [anon_sym_RPAREN] = ACTIONS(217), + [anon_sym_SEMI] = ACTIONS(217), + [anon_sym_extern] = ACTIONS(219), + [anon_sym_LPAREN2] = ACTIONS(217), + [anon_sym_STAR] = ACTIONS(217), + [anon_sym_LBRACK] = ACTIONS(217), + [anon_sym_RBRACK] = ACTIONS(217), + [anon_sym_static] = ACTIONS(219), + [anon_sym_auto] = ACTIONS(219), + [anon_sym_register] = ACTIONS(219), + [anon_sym_inline] = ACTIONS(219), + [anon_sym_const] = ACTIONS(219), + [anon_sym_restrict] = ACTIONS(219), + [anon_sym_volatile] = ACTIONS(219), + [anon_sym__Atomic] = ACTIONS(219), + [anon_sym_COLON] = ACTIONS(217), + [anon_sym_AMP] = ACTIONS(217), + [anon_sym_BANG] = ACTIONS(217), + [anon_sym_TILDE] = ACTIONS(217), + [anon_sym_PLUS] = ACTIONS(219), + [anon_sym_DASH] = ACTIONS(219), + [anon_sym_DASH_DASH] = ACTIONS(217), + [anon_sym_PLUS_PLUS] = ACTIONS(217), + [anon_sym_sizeof] = ACTIONS(219), + [sym_number_literal] = ACTIONS(217), + [anon_sym_SQUOTE] = ACTIONS(217), + [anon_sym_DQUOTE] = ACTIONS(217), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [sym_null] = ACTIONS(219), + [sym_identifier] = ACTIONS(219), [sym_comment] = ACTIONS(39), }, [42] = { @@ -7071,10 +7090,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_restrict] = ACTIONS(25), [anon_sym_volatile] = ACTIONS(25), [anon_sym__Atomic] = ACTIONS(25), - [anon_sym_unsigned] = ACTIONS(223), - [anon_sym_long] = ACTIONS(223), - [anon_sym_short] = ACTIONS(223), - [sym_primitive_type] = ACTIONS(225), + [anon_sym_unsigned] = ACTIONS(221), + [anon_sym_long] = ACTIONS(221), + [anon_sym_short] = ACTIONS(221), + [sym_primitive_type] = ACTIONS(223), [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), @@ -7082,61 +7101,61 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(39), }, [43] = { - [ts_builtin_sym_end] = ACTIONS(227), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(229), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(229), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(229), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(229), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(229), - [sym_preproc_directive] = ACTIONS(229), - [anon_sym_SEMI] = ACTIONS(227), - [anon_sym_typedef] = ACTIONS(229), - [anon_sym_extern] = ACTIONS(229), - [anon_sym_LBRACE] = ACTIONS(227), - [anon_sym_RBRACE] = ACTIONS(227), - [anon_sym_LPAREN2] = ACTIONS(227), - [anon_sym_STAR] = ACTIONS(227), - [anon_sym_static] = ACTIONS(229), - [anon_sym_auto] = ACTIONS(229), - [anon_sym_register] = ACTIONS(229), - [anon_sym_inline] = ACTIONS(229), - [anon_sym_const] = ACTIONS(229), - [anon_sym_restrict] = ACTIONS(229), - [anon_sym_volatile] = ACTIONS(229), - [anon_sym__Atomic] = ACTIONS(229), - [anon_sym_unsigned] = ACTIONS(229), - [anon_sym_long] = ACTIONS(229), - [anon_sym_short] = ACTIONS(229), - [sym_primitive_type] = ACTIONS(229), - [anon_sym_enum] = ACTIONS(229), - [anon_sym_struct] = ACTIONS(229), - [anon_sym_union] = ACTIONS(229), - [anon_sym_if] = ACTIONS(229), - [anon_sym_switch] = ACTIONS(229), - [anon_sym_case] = ACTIONS(229), - [anon_sym_default] = ACTIONS(229), - [anon_sym_while] = ACTIONS(229), - [anon_sym_do] = ACTIONS(229), - [anon_sym_for] = ACTIONS(229), - [anon_sym_return] = ACTIONS(229), - [anon_sym_break] = ACTIONS(229), - [anon_sym_continue] = ACTIONS(229), - [anon_sym_goto] = ACTIONS(229), - [anon_sym_AMP] = ACTIONS(227), - [anon_sym_BANG] = ACTIONS(227), - [anon_sym_TILDE] = ACTIONS(227), - [anon_sym_PLUS] = ACTIONS(229), - [anon_sym_DASH] = ACTIONS(229), - [anon_sym_DASH_DASH] = ACTIONS(227), - [anon_sym_PLUS_PLUS] = ACTIONS(227), - [anon_sym_sizeof] = ACTIONS(229), - [sym_number_literal] = ACTIONS(227), - [anon_sym_SQUOTE] = ACTIONS(227), - [anon_sym_DQUOTE] = ACTIONS(227), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [sym_null] = ACTIONS(229), - [sym_identifier] = ACTIONS(229), + [ts_builtin_sym_end] = ACTIONS(225), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(227), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(227), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(227), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(227), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(227), + [sym_preproc_directive] = ACTIONS(227), + [anon_sym_SEMI] = ACTIONS(225), + [anon_sym_typedef] = ACTIONS(227), + [anon_sym_extern] = ACTIONS(227), + [anon_sym_LBRACE] = ACTIONS(225), + [anon_sym_RBRACE] = ACTIONS(225), + [anon_sym_LPAREN2] = ACTIONS(225), + [anon_sym_STAR] = ACTIONS(225), + [anon_sym_static] = ACTIONS(227), + [anon_sym_auto] = ACTIONS(227), + [anon_sym_register] = ACTIONS(227), + [anon_sym_inline] = ACTIONS(227), + [anon_sym_const] = ACTIONS(227), + [anon_sym_restrict] = ACTIONS(227), + [anon_sym_volatile] = ACTIONS(227), + [anon_sym__Atomic] = ACTIONS(227), + [anon_sym_unsigned] = ACTIONS(227), + [anon_sym_long] = ACTIONS(227), + [anon_sym_short] = ACTIONS(227), + [sym_primitive_type] = ACTIONS(227), + [anon_sym_enum] = ACTIONS(227), + [anon_sym_struct] = ACTIONS(227), + [anon_sym_union] = ACTIONS(227), + [anon_sym_if] = ACTIONS(227), + [anon_sym_switch] = ACTIONS(227), + [anon_sym_case] = ACTIONS(227), + [anon_sym_default] = ACTIONS(227), + [anon_sym_while] = ACTIONS(227), + [anon_sym_do] = ACTIONS(227), + [anon_sym_for] = ACTIONS(227), + [anon_sym_return] = ACTIONS(227), + [anon_sym_break] = ACTIONS(227), + [anon_sym_continue] = ACTIONS(227), + [anon_sym_goto] = ACTIONS(227), + [anon_sym_AMP] = ACTIONS(225), + [anon_sym_BANG] = ACTIONS(225), + [anon_sym_TILDE] = ACTIONS(225), + [anon_sym_PLUS] = ACTIONS(227), + [anon_sym_DASH] = ACTIONS(227), + [anon_sym_DASH_DASH] = ACTIONS(225), + [anon_sym_PLUS_PLUS] = ACTIONS(225), + [anon_sym_sizeof] = ACTIONS(227), + [sym_number_literal] = ACTIONS(225), + [anon_sym_SQUOTE] = ACTIONS(225), + [anon_sym_DQUOTE] = ACTIONS(225), + [sym_true] = ACTIONS(227), + [sym_false] = ACTIONS(227), + [sym_null] = ACTIONS(227), + [sym_identifier] = ACTIONS(227), [sym_comment] = ACTIONS(39), }, [44] = { @@ -7145,8 +7164,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_function_declarator] = STATE(121), [sym_array_declarator] = STATE(121), [anon_sym_LPAREN2] = ACTIONS(92), - [anon_sym_STAR] = ACTIONS(231), - [sym_identifier] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(229), + [sym_identifier] = ACTIONS(231), [sym_comment] = ACTIONS(39), }, [45] = { @@ -7162,35 +7181,35 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_restrict] = ACTIONS(25), [anon_sym_volatile] = ACTIONS(25), [anon_sym__Atomic] = ACTIONS(25), - [sym_identifier] = ACTIONS(235), + [sym_identifier] = ACTIONS(233), [sym_comment] = ACTIONS(39), }, [46] = { [sym_compound_statement] = STATE(130), [sym_parameter_list] = STATE(131), [aux_sym_declaration_repeat1] = STATE(132), - [anon_sym_COMMA] = ACTIONS(237), - [anon_sym_SEMI] = ACTIONS(239), - [anon_sym_LBRACE] = ACTIONS(241), - [anon_sym_LPAREN2] = ACTIONS(243), - [anon_sym_LBRACK] = ACTIONS(245), - [anon_sym_EQ] = ACTIONS(247), + [anon_sym_COMMA] = ACTIONS(235), + [anon_sym_SEMI] = ACTIONS(237), + [anon_sym_LBRACE] = ACTIONS(239), + [anon_sym_LPAREN2] = ACTIONS(241), + [anon_sym_LBRACK] = ACTIONS(243), + [anon_sym_EQ] = ACTIONS(245), [sym_comment] = ACTIONS(39), }, [47] = { [aux_sym_declaration_repeat1] = STATE(132), - [anon_sym_COMMA] = ACTIONS(237), - [anon_sym_SEMI] = ACTIONS(239), + [anon_sym_COMMA] = ACTIONS(235), + [anon_sym_SEMI] = ACTIONS(237), [sym_comment] = ACTIONS(39), }, [48] = { [sym_storage_class_specifier] = STATE(133), [sym_type_qualifier] = STATE(133), [aux_sym__declaration_specifiers_repeat1] = STATE(133), - [anon_sym_SEMI] = ACTIONS(249), + [anon_sym_SEMI] = ACTIONS(247), [anon_sym_extern] = ACTIONS(23), - [anon_sym_LPAREN2] = ACTIONS(249), - [anon_sym_STAR] = ACTIONS(249), + [anon_sym_LPAREN2] = ACTIONS(247), + [anon_sym_STAR] = ACTIONS(247), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -7199,7 +7218,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_restrict] = ACTIONS(25), [anon_sym_volatile] = ACTIONS(25), [anon_sym__Atomic] = ACTIONS(25), - [sym_identifier] = ACTIONS(251), + [sym_identifier] = ACTIONS(249), [sym_comment] = ACTIONS(39), }, [49] = { @@ -7226,41 +7245,41 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_translation_unit_repeat1] = STATE(49), [aux_sym__declaration_specifiers_repeat1] = STATE(20), [aux_sym_sized_type_specifier_repeat1] = STATE(21), - [ts_builtin_sym_end] = ACTIONS(253), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(255), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(258), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(261), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(264), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(267), - [sym_preproc_directive] = ACTIONS(270), - [anon_sym_typedef] = ACTIONS(273), - [anon_sym_extern] = ACTIONS(276), - [anon_sym_static] = ACTIONS(279), - [anon_sym_auto] = ACTIONS(279), - [anon_sym_register] = ACTIONS(279), - [anon_sym_inline] = ACTIONS(279), - [anon_sym_const] = ACTIONS(282), - [anon_sym_restrict] = ACTIONS(282), - [anon_sym_volatile] = ACTIONS(282), - [anon_sym__Atomic] = ACTIONS(282), - [anon_sym_unsigned] = ACTIONS(285), - [anon_sym_long] = ACTIONS(285), - [anon_sym_short] = ACTIONS(285), - [sym_primitive_type] = ACTIONS(288), - [anon_sym_enum] = ACTIONS(291), - [anon_sym_struct] = ACTIONS(294), - [anon_sym_union] = ACTIONS(297), - [sym_identifier] = ACTIONS(300), + [ts_builtin_sym_end] = ACTIONS(251), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(253), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(256), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(259), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(262), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(265), + [sym_preproc_directive] = ACTIONS(268), + [anon_sym_typedef] = ACTIONS(271), + [anon_sym_extern] = ACTIONS(274), + [anon_sym_static] = ACTIONS(277), + [anon_sym_auto] = ACTIONS(277), + [anon_sym_register] = ACTIONS(277), + [anon_sym_inline] = ACTIONS(277), + [anon_sym_const] = ACTIONS(280), + [anon_sym_restrict] = ACTIONS(280), + [anon_sym_volatile] = ACTIONS(280), + [anon_sym__Atomic] = ACTIONS(280), + [anon_sym_unsigned] = ACTIONS(283), + [anon_sym_long] = ACTIONS(283), + [anon_sym_short] = ACTIONS(283), + [sym_primitive_type] = ACTIONS(286), + [anon_sym_enum] = ACTIONS(289), + [anon_sym_struct] = ACTIONS(292), + [anon_sym_union] = ACTIONS(295), + [sym_identifier] = ACTIONS(298), [sym_comment] = ACTIONS(39), }, [50] = { [sym_storage_class_specifier] = STATE(134), [sym_type_qualifier] = STATE(134), [aux_sym__declaration_specifiers_repeat1] = STATE(134), - [anon_sym_SEMI] = ACTIONS(249), + [anon_sym_SEMI] = ACTIONS(247), [anon_sym_extern] = ACTIONS(23), - [anon_sym_LPAREN2] = ACTIONS(249), - [anon_sym_STAR] = ACTIONS(249), + [anon_sym_LPAREN2] = ACTIONS(247), + [anon_sym_STAR] = ACTIONS(247), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -7269,324 +7288,324 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_restrict] = ACTIONS(25), [anon_sym_volatile] = ACTIONS(25), [anon_sym__Atomic] = ACTIONS(25), - [sym_identifier] = ACTIONS(251), + [sym_identifier] = ACTIONS(249), [sym_comment] = ACTIONS(39), }, [51] = { [sym_storage_class_specifier] = STATE(51), [sym_type_qualifier] = STATE(51), [aux_sym__declaration_specifiers_repeat1] = STATE(51), - [anon_sym_extern] = ACTIONS(303), - [anon_sym_static] = ACTIONS(303), - [anon_sym_auto] = ACTIONS(303), - [anon_sym_register] = ACTIONS(303), - [anon_sym_inline] = ACTIONS(303), - [anon_sym_const] = ACTIONS(306), - [anon_sym_restrict] = ACTIONS(306), - [anon_sym_volatile] = ACTIONS(306), - [anon_sym__Atomic] = ACTIONS(306), - [anon_sym_unsigned] = ACTIONS(309), - [anon_sym_long] = ACTIONS(309), - [anon_sym_short] = ACTIONS(309), - [sym_primitive_type] = ACTIONS(309), - [anon_sym_enum] = ACTIONS(309), - [anon_sym_struct] = ACTIONS(309), - [anon_sym_union] = ACTIONS(309), - [sym_identifier] = ACTIONS(309), + [anon_sym_extern] = ACTIONS(301), + [anon_sym_static] = ACTIONS(301), + [anon_sym_auto] = ACTIONS(301), + [anon_sym_register] = ACTIONS(301), + [anon_sym_inline] = ACTIONS(301), + [anon_sym_const] = ACTIONS(304), + [anon_sym_restrict] = ACTIONS(304), + [anon_sym_volatile] = ACTIONS(304), + [anon_sym__Atomic] = ACTIONS(304), + [anon_sym_unsigned] = ACTIONS(307), + [anon_sym_long] = ACTIONS(307), + [anon_sym_short] = ACTIONS(307), + [sym_primitive_type] = ACTIONS(307), + [anon_sym_enum] = ACTIONS(307), + [anon_sym_struct] = ACTIONS(307), + [anon_sym_union] = ACTIONS(307), + [sym_identifier] = ACTIONS(307), [sym_comment] = ACTIONS(39), }, [52] = { - [anon_sym_COMMA] = ACTIONS(311), - [anon_sym_RPAREN] = ACTIONS(311), - [anon_sym_SEMI] = ACTIONS(311), - [anon_sym_extern] = ACTIONS(313), - [anon_sym_LPAREN2] = ACTIONS(311), - [anon_sym_STAR] = ACTIONS(311), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_RBRACK] = ACTIONS(311), - [anon_sym_static] = ACTIONS(313), - [anon_sym_auto] = ACTIONS(313), - [anon_sym_register] = ACTIONS(313), - [anon_sym_inline] = ACTIONS(313), - [anon_sym_const] = ACTIONS(313), - [anon_sym_restrict] = ACTIONS(313), - [anon_sym_volatile] = ACTIONS(313), - [anon_sym__Atomic] = ACTIONS(313), - [anon_sym_COLON] = ACTIONS(311), - [anon_sym_AMP] = ACTIONS(311), - [anon_sym_BANG] = ACTIONS(311), - [anon_sym_TILDE] = ACTIONS(311), - [anon_sym_PLUS] = ACTIONS(313), - [anon_sym_DASH] = ACTIONS(313), - [anon_sym_DASH_DASH] = ACTIONS(311), - [anon_sym_PLUS_PLUS] = ACTIONS(311), - [anon_sym_sizeof] = ACTIONS(313), - [sym_number_literal] = ACTIONS(311), - [anon_sym_SQUOTE] = ACTIONS(311), - [anon_sym_DQUOTE] = ACTIONS(311), - [sym_true] = ACTIONS(313), - [sym_false] = ACTIONS(313), - [sym_null] = ACTIONS(313), - [sym_identifier] = ACTIONS(313), + [anon_sym_COMMA] = ACTIONS(309), + [anon_sym_RPAREN] = ACTIONS(309), + [anon_sym_SEMI] = ACTIONS(309), + [anon_sym_extern] = ACTIONS(311), + [anon_sym_LPAREN2] = ACTIONS(309), + [anon_sym_STAR] = ACTIONS(309), + [anon_sym_LBRACK] = ACTIONS(309), + [anon_sym_RBRACK] = ACTIONS(309), + [anon_sym_static] = ACTIONS(311), + [anon_sym_auto] = ACTIONS(311), + [anon_sym_register] = ACTIONS(311), + [anon_sym_inline] = ACTIONS(311), + [anon_sym_const] = ACTIONS(311), + [anon_sym_restrict] = ACTIONS(311), + [anon_sym_volatile] = ACTIONS(311), + [anon_sym__Atomic] = ACTIONS(311), + [anon_sym_COLON] = ACTIONS(309), + [anon_sym_AMP] = ACTIONS(309), + [anon_sym_BANG] = ACTIONS(309), + [anon_sym_TILDE] = ACTIONS(309), + [anon_sym_PLUS] = ACTIONS(311), + [anon_sym_DASH] = ACTIONS(311), + [anon_sym_DASH_DASH] = ACTIONS(309), + [anon_sym_PLUS_PLUS] = ACTIONS(309), + [anon_sym_sizeof] = ACTIONS(311), + [sym_number_literal] = ACTIONS(309), + [anon_sym_SQUOTE] = ACTIONS(309), + [anon_sym_DQUOTE] = ACTIONS(309), + [sym_true] = ACTIONS(311), + [sym_false] = ACTIONS(311), + [sym_null] = ACTIONS(311), + [sym_identifier] = ACTIONS(311), [sym_comment] = ACTIONS(39), }, [53] = { - [anon_sym_COMMA] = ACTIONS(315), - [anon_sym_RPAREN] = ACTIONS(315), - [anon_sym_SEMI] = ACTIONS(315), - [anon_sym_extern] = ACTIONS(317), - [anon_sym_LPAREN2] = ACTIONS(315), - [anon_sym_STAR] = ACTIONS(315), - [anon_sym_LBRACK] = ACTIONS(315), - [anon_sym_RBRACK] = ACTIONS(315), - [anon_sym_static] = ACTIONS(317), - [anon_sym_auto] = ACTIONS(317), - [anon_sym_register] = ACTIONS(317), - [anon_sym_inline] = ACTIONS(317), - [anon_sym_const] = ACTIONS(317), - [anon_sym_restrict] = ACTIONS(317), - [anon_sym_volatile] = ACTIONS(317), - [anon_sym__Atomic] = ACTIONS(317), - [anon_sym_COLON] = ACTIONS(315), - [anon_sym_AMP] = ACTIONS(315), - [anon_sym_BANG] = ACTIONS(315), - [anon_sym_TILDE] = ACTIONS(315), - [anon_sym_PLUS] = ACTIONS(317), - [anon_sym_DASH] = ACTIONS(317), - [anon_sym_DASH_DASH] = ACTIONS(315), - [anon_sym_PLUS_PLUS] = ACTIONS(315), - [anon_sym_sizeof] = ACTIONS(317), - [sym_number_literal] = ACTIONS(315), - [anon_sym_SQUOTE] = ACTIONS(315), - [anon_sym_DQUOTE] = ACTIONS(315), - [sym_true] = ACTIONS(317), - [sym_false] = ACTIONS(317), - [sym_null] = ACTIONS(317), - [sym_identifier] = ACTIONS(317), + [anon_sym_COMMA] = ACTIONS(313), + [anon_sym_RPAREN] = ACTIONS(313), + [anon_sym_SEMI] = ACTIONS(313), + [anon_sym_extern] = ACTIONS(315), + [anon_sym_LPAREN2] = ACTIONS(313), + [anon_sym_STAR] = ACTIONS(313), + [anon_sym_LBRACK] = ACTIONS(313), + [anon_sym_RBRACK] = ACTIONS(313), + [anon_sym_static] = ACTIONS(315), + [anon_sym_auto] = ACTIONS(315), + [anon_sym_register] = ACTIONS(315), + [anon_sym_inline] = ACTIONS(315), + [anon_sym_const] = ACTIONS(315), + [anon_sym_restrict] = ACTIONS(315), + [anon_sym_volatile] = ACTIONS(315), + [anon_sym__Atomic] = ACTIONS(315), + [anon_sym_COLON] = ACTIONS(313), + [anon_sym_AMP] = ACTIONS(313), + [anon_sym_BANG] = ACTIONS(313), + [anon_sym_TILDE] = ACTIONS(313), + [anon_sym_PLUS] = ACTIONS(315), + [anon_sym_DASH] = ACTIONS(315), + [anon_sym_DASH_DASH] = ACTIONS(313), + [anon_sym_PLUS_PLUS] = ACTIONS(313), + [anon_sym_sizeof] = ACTIONS(315), + [sym_number_literal] = ACTIONS(313), + [anon_sym_SQUOTE] = ACTIONS(313), + [anon_sym_DQUOTE] = ACTIONS(313), + [sym_true] = ACTIONS(315), + [sym_false] = ACTIONS(315), + [sym_null] = ACTIONS(315), + [sym_identifier] = ACTIONS(315), [sym_comment] = ACTIONS(39), }, [54] = { [aux_sym_sized_type_specifier_repeat1] = STATE(54), - [anon_sym_SEMI] = ACTIONS(319), - [anon_sym_extern] = ACTIONS(321), - [anon_sym_LPAREN2] = ACTIONS(319), - [anon_sym_STAR] = ACTIONS(319), - [anon_sym_static] = ACTIONS(321), - [anon_sym_auto] = ACTIONS(321), - [anon_sym_register] = ACTIONS(321), - [anon_sym_inline] = ACTIONS(321), - [anon_sym_const] = ACTIONS(321), - [anon_sym_restrict] = ACTIONS(321), - [anon_sym_volatile] = ACTIONS(321), - [anon_sym__Atomic] = ACTIONS(321), - [anon_sym_unsigned] = ACTIONS(323), - [anon_sym_long] = ACTIONS(323), - [anon_sym_short] = ACTIONS(323), - [sym_primitive_type] = ACTIONS(321), - [sym_identifier] = ACTIONS(321), + [anon_sym_SEMI] = ACTIONS(317), + [anon_sym_extern] = ACTIONS(319), + [anon_sym_LPAREN2] = ACTIONS(317), + [anon_sym_STAR] = ACTIONS(317), + [anon_sym_static] = ACTIONS(319), + [anon_sym_auto] = ACTIONS(319), + [anon_sym_register] = ACTIONS(319), + [anon_sym_inline] = ACTIONS(319), + [anon_sym_const] = ACTIONS(319), + [anon_sym_restrict] = ACTIONS(319), + [anon_sym_volatile] = ACTIONS(319), + [anon_sym__Atomic] = ACTIONS(319), + [anon_sym_unsigned] = ACTIONS(321), + [anon_sym_long] = ACTIONS(321), + [anon_sym_short] = ACTIONS(321), + [sym_primitive_type] = ACTIONS(319), + [sym_identifier] = ACTIONS(319), [sym_comment] = ACTIONS(39), }, [55] = { - [ts_builtin_sym_end] = ACTIONS(326), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(328), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(328), - [anon_sym_COMMA] = ACTIONS(326), - [anon_sym_RPAREN] = ACTIONS(326), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(328), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(328), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(328), - [sym_preproc_directive] = ACTIONS(328), - [anon_sym_SEMI] = ACTIONS(326), - [anon_sym_typedef] = ACTIONS(328), - [anon_sym_extern] = ACTIONS(328), - [anon_sym_LBRACE] = ACTIONS(326), - [anon_sym_RBRACE] = ACTIONS(326), - [anon_sym_LPAREN2] = ACTIONS(326), - [anon_sym_STAR] = ACTIONS(328), - [anon_sym_LBRACK] = ACTIONS(326), - [anon_sym_RBRACK] = ACTIONS(326), - [anon_sym_EQ] = ACTIONS(328), - [anon_sym_static] = ACTIONS(328), - [anon_sym_auto] = ACTIONS(328), - [anon_sym_register] = ACTIONS(328), - [anon_sym_inline] = ACTIONS(328), - [anon_sym_const] = ACTIONS(328), - [anon_sym_restrict] = ACTIONS(328), - [anon_sym_volatile] = ACTIONS(328), - [anon_sym__Atomic] = ACTIONS(328), - [anon_sym_unsigned] = ACTIONS(328), - [anon_sym_long] = ACTIONS(328), - [anon_sym_short] = ACTIONS(328), - [sym_primitive_type] = ACTIONS(328), - [anon_sym_enum] = ACTIONS(328), - [anon_sym_struct] = ACTIONS(328), - [anon_sym_union] = ACTIONS(328), - [anon_sym_COLON] = ACTIONS(326), - [anon_sym_QMARK] = ACTIONS(326), - [anon_sym_STAR_EQ] = ACTIONS(326), - [anon_sym_SLASH_EQ] = ACTIONS(326), - [anon_sym_PERCENT_EQ] = ACTIONS(326), - [anon_sym_PLUS_EQ] = ACTIONS(326), - [anon_sym_DASH_EQ] = ACTIONS(326), - [anon_sym_LT_LT_EQ] = ACTIONS(326), - [anon_sym_GT_GT_EQ] = ACTIONS(326), - [anon_sym_AMP_EQ] = ACTIONS(326), - [anon_sym_CARET_EQ] = ACTIONS(326), - [anon_sym_PIPE_EQ] = ACTIONS(326), - [anon_sym_AMP] = ACTIONS(328), - [anon_sym_PIPE_PIPE] = ACTIONS(326), - [anon_sym_AMP_AMP] = ACTIONS(326), - [anon_sym_PIPE] = ACTIONS(328), - [anon_sym_CARET] = ACTIONS(328), - [anon_sym_EQ_EQ] = ACTIONS(326), - [anon_sym_BANG_EQ] = ACTIONS(326), - [anon_sym_LT] = ACTIONS(328), - [anon_sym_GT] = ACTIONS(328), - [anon_sym_LT_EQ] = ACTIONS(326), - [anon_sym_GT_EQ] = ACTIONS(326), - [anon_sym_LT_LT] = ACTIONS(328), - [anon_sym_GT_GT] = ACTIONS(328), - [anon_sym_PLUS] = ACTIONS(328), - [anon_sym_DASH] = ACTIONS(328), - [anon_sym_SLASH] = ACTIONS(328), - [anon_sym_PERCENT] = ACTIONS(328), - [anon_sym_DASH_DASH] = ACTIONS(326), - [anon_sym_PLUS_PLUS] = ACTIONS(326), - [anon_sym_DOT] = ACTIONS(326), - [anon_sym_DASH_GT] = ACTIONS(326), - [anon_sym_DQUOTE] = ACTIONS(326), - [sym_identifier] = ACTIONS(328), + [ts_builtin_sym_end] = ACTIONS(324), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(326), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(326), + [anon_sym_COMMA] = ACTIONS(324), + [anon_sym_RPAREN] = ACTIONS(324), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(326), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(326), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(326), + [sym_preproc_directive] = ACTIONS(326), + [anon_sym_SEMI] = ACTIONS(324), + [anon_sym_typedef] = ACTIONS(326), + [anon_sym_extern] = ACTIONS(326), + [anon_sym_LBRACE] = ACTIONS(324), + [anon_sym_RBRACE] = ACTIONS(324), + [anon_sym_LPAREN2] = ACTIONS(324), + [anon_sym_STAR] = ACTIONS(326), + [anon_sym_LBRACK] = ACTIONS(324), + [anon_sym_RBRACK] = ACTIONS(324), + [anon_sym_EQ] = ACTIONS(326), + [anon_sym_static] = ACTIONS(326), + [anon_sym_auto] = ACTIONS(326), + [anon_sym_register] = ACTIONS(326), + [anon_sym_inline] = ACTIONS(326), + [anon_sym_const] = ACTIONS(326), + [anon_sym_restrict] = ACTIONS(326), + [anon_sym_volatile] = ACTIONS(326), + [anon_sym__Atomic] = ACTIONS(326), + [anon_sym_unsigned] = ACTIONS(326), + [anon_sym_long] = ACTIONS(326), + [anon_sym_short] = ACTIONS(326), + [sym_primitive_type] = ACTIONS(326), + [anon_sym_enum] = ACTIONS(326), + [anon_sym_struct] = ACTIONS(326), + [anon_sym_union] = ACTIONS(326), + [anon_sym_COLON] = ACTIONS(324), + [anon_sym_QMARK] = ACTIONS(324), + [anon_sym_STAR_EQ] = ACTIONS(324), + [anon_sym_SLASH_EQ] = ACTIONS(324), + [anon_sym_PERCENT_EQ] = ACTIONS(324), + [anon_sym_PLUS_EQ] = ACTIONS(324), + [anon_sym_DASH_EQ] = ACTIONS(324), + [anon_sym_LT_LT_EQ] = ACTIONS(324), + [anon_sym_GT_GT_EQ] = ACTIONS(324), + [anon_sym_AMP_EQ] = ACTIONS(324), + [anon_sym_CARET_EQ] = ACTIONS(324), + [anon_sym_PIPE_EQ] = ACTIONS(324), + [anon_sym_AMP] = ACTIONS(326), + [anon_sym_PIPE_PIPE] = ACTIONS(324), + [anon_sym_AMP_AMP] = ACTIONS(324), + [anon_sym_PIPE] = ACTIONS(326), + [anon_sym_CARET] = ACTIONS(326), + [anon_sym_EQ_EQ] = ACTIONS(324), + [anon_sym_BANG_EQ] = ACTIONS(324), + [anon_sym_LT] = ACTIONS(326), + [anon_sym_GT] = ACTIONS(326), + [anon_sym_LT_EQ] = ACTIONS(324), + [anon_sym_GT_EQ] = ACTIONS(324), + [anon_sym_LT_LT] = ACTIONS(326), + [anon_sym_GT_GT] = ACTIONS(326), + [anon_sym_PLUS] = ACTIONS(326), + [anon_sym_DASH] = ACTIONS(326), + [anon_sym_SLASH] = ACTIONS(326), + [anon_sym_PERCENT] = ACTIONS(326), + [anon_sym_DASH_DASH] = ACTIONS(324), + [anon_sym_PLUS_PLUS] = ACTIONS(324), + [anon_sym_DOT] = ACTIONS(324), + [anon_sym_DASH_GT] = ACTIONS(324), + [anon_sym_DQUOTE] = ACTIONS(324), + [sym_identifier] = ACTIONS(326), [sym_comment] = ACTIONS(39), }, [56] = { [aux_sym_string_literal_repeat1] = STATE(136), - [anon_sym_DQUOTE] = ACTIONS(330), - [aux_sym_SLASH_LBRACK_CARET_BSLASH_BSLASH_DQUOTE_BSLASHn_RBRACK_SLASH] = ACTIONS(332), - [sym_escape_sequence] = ACTIONS(334), + [anon_sym_DQUOTE] = ACTIONS(328), + [aux_sym_SLASH_LBRACK_CARET_BSLASH_BSLASH_DQUOTE_BSLASHn_RBRACK_SLASH] = ACTIONS(330), + [sym_escape_sequence] = ACTIONS(330), [sym_comment] = ACTIONS(49), }, [57] = { - [ts_builtin_sym_end] = ACTIONS(336), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(338), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(338), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(338), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(338), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(338), - [sym_preproc_directive] = ACTIONS(338), - [anon_sym_SEMI] = ACTIONS(336), - [anon_sym_typedef] = ACTIONS(338), - [anon_sym_extern] = ACTIONS(338), - [anon_sym_LBRACE] = ACTIONS(336), - [anon_sym_RBRACE] = ACTIONS(336), - [anon_sym_LPAREN2] = ACTIONS(336), - [anon_sym_STAR] = ACTIONS(336), - [anon_sym_static] = ACTIONS(338), - [anon_sym_auto] = ACTIONS(338), - [anon_sym_register] = ACTIONS(338), - [anon_sym_inline] = ACTIONS(338), - [anon_sym_const] = ACTIONS(338), - [anon_sym_restrict] = ACTIONS(338), - [anon_sym_volatile] = ACTIONS(338), - [anon_sym__Atomic] = ACTIONS(338), - [anon_sym_unsigned] = ACTIONS(338), - [anon_sym_long] = ACTIONS(338), - [anon_sym_short] = ACTIONS(338), - [sym_primitive_type] = ACTIONS(338), - [anon_sym_enum] = ACTIONS(338), - [anon_sym_struct] = ACTIONS(338), - [anon_sym_union] = ACTIONS(338), - [anon_sym_if] = ACTIONS(338), - [anon_sym_switch] = ACTIONS(338), - [anon_sym_case] = ACTIONS(338), - [anon_sym_default] = ACTIONS(338), - [anon_sym_while] = ACTIONS(338), - [anon_sym_do] = ACTIONS(338), - [anon_sym_for] = ACTIONS(338), - [anon_sym_return] = ACTIONS(338), - [anon_sym_break] = ACTIONS(338), - [anon_sym_continue] = ACTIONS(338), - [anon_sym_goto] = ACTIONS(338), - [anon_sym_AMP] = ACTIONS(336), - [anon_sym_BANG] = ACTIONS(336), - [anon_sym_TILDE] = ACTIONS(336), - [anon_sym_PLUS] = ACTIONS(338), - [anon_sym_DASH] = ACTIONS(338), - [anon_sym_DASH_DASH] = ACTIONS(336), - [anon_sym_PLUS_PLUS] = ACTIONS(336), - [anon_sym_sizeof] = ACTIONS(338), - [sym_number_literal] = ACTIONS(336), - [anon_sym_SQUOTE] = ACTIONS(336), - [anon_sym_DQUOTE] = ACTIONS(336), - [sym_true] = ACTIONS(338), - [sym_false] = ACTIONS(338), - [sym_null] = ACTIONS(338), - [sym_identifier] = ACTIONS(338), + [ts_builtin_sym_end] = ACTIONS(332), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(334), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(334), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(334), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(334), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(334), + [sym_preproc_directive] = ACTIONS(334), + [anon_sym_SEMI] = ACTIONS(332), + [anon_sym_typedef] = ACTIONS(334), + [anon_sym_extern] = ACTIONS(334), + [anon_sym_LBRACE] = ACTIONS(332), + [anon_sym_RBRACE] = ACTIONS(332), + [anon_sym_LPAREN2] = ACTIONS(332), + [anon_sym_STAR] = ACTIONS(332), + [anon_sym_static] = ACTIONS(334), + [anon_sym_auto] = ACTIONS(334), + [anon_sym_register] = ACTIONS(334), + [anon_sym_inline] = ACTIONS(334), + [anon_sym_const] = ACTIONS(334), + [anon_sym_restrict] = ACTIONS(334), + [anon_sym_volatile] = ACTIONS(334), + [anon_sym__Atomic] = ACTIONS(334), + [anon_sym_unsigned] = ACTIONS(334), + [anon_sym_long] = ACTIONS(334), + [anon_sym_short] = ACTIONS(334), + [sym_primitive_type] = ACTIONS(334), + [anon_sym_enum] = ACTIONS(334), + [anon_sym_struct] = ACTIONS(334), + [anon_sym_union] = ACTIONS(334), + [anon_sym_if] = ACTIONS(334), + [anon_sym_switch] = ACTIONS(334), + [anon_sym_case] = ACTIONS(334), + [anon_sym_default] = ACTIONS(334), + [anon_sym_while] = ACTIONS(334), + [anon_sym_do] = ACTIONS(334), + [anon_sym_for] = ACTIONS(334), + [anon_sym_return] = ACTIONS(334), + [anon_sym_break] = ACTIONS(334), + [anon_sym_continue] = ACTIONS(334), + [anon_sym_goto] = ACTIONS(334), + [anon_sym_AMP] = ACTIONS(332), + [anon_sym_BANG] = ACTIONS(332), + [anon_sym_TILDE] = ACTIONS(332), + [anon_sym_PLUS] = ACTIONS(334), + [anon_sym_DASH] = ACTIONS(334), + [anon_sym_DASH_DASH] = ACTIONS(332), + [anon_sym_PLUS_PLUS] = ACTIONS(332), + [anon_sym_sizeof] = ACTIONS(334), + [sym_number_literal] = ACTIONS(332), + [anon_sym_SQUOTE] = ACTIONS(332), + [anon_sym_DQUOTE] = ACTIONS(332), + [sym_true] = ACTIONS(334), + [sym_false] = ACTIONS(334), + [sym_null] = ACTIONS(334), + [sym_identifier] = ACTIONS(334), [sym_comment] = ACTIONS(39), }, [58] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(340), - [anon_sym_RPAREN] = ACTIONS(342), - [sym_identifier] = ACTIONS(340), + [anon_sym_DOT_DOT_DOT] = ACTIONS(336), + [anon_sym_RPAREN] = ACTIONS(338), + [sym_identifier] = ACTIONS(336), [sym_comment] = ACTIONS(39), }, [59] = { - [anon_sym_LF] = ACTIONS(344), + [anon_sym_LF] = ACTIONS(340), [sym_comment] = ACTIONS(49), }, [60] = { - [anon_sym_LF] = ACTIONS(346), - [sym_preproc_arg] = ACTIONS(348), + [anon_sym_LF] = ACTIONS(342), + [sym_preproc_arg] = ACTIONS(344), [sym_comment] = ACTIONS(49), }, [61] = { [sym_string_literal] = STATE(143), - [anon_sym_DQUOTE] = ACTIONS(350), - [sym_system_lib_string] = ACTIONS(352), + [anon_sym_DQUOTE] = ACTIONS(346), + [sym_system_lib_string] = ACTIONS(348), [sym_comment] = ACTIONS(39), }, [62] = { - [sym_identifier] = ACTIONS(354), + [sym_identifier] = ACTIONS(350), [sym_comment] = ACTIONS(39), }, [63] = { - [sym_preproc_arg] = ACTIONS(356), + [sym_preproc_arg] = ACTIONS(352), [sym_comment] = ACTIONS(49), }, [64] = { - [ts_builtin_sym_end] = ACTIONS(358), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(360), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(360), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(360), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(360), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(360), - [sym_preproc_directive] = ACTIONS(360), - [anon_sym_typedef] = ACTIONS(360), - [anon_sym_extern] = ACTIONS(360), - [anon_sym_RBRACE] = ACTIONS(358), - [anon_sym_static] = ACTIONS(360), - [anon_sym_auto] = ACTIONS(360), - [anon_sym_register] = ACTIONS(360), - [anon_sym_inline] = ACTIONS(360), - [anon_sym_const] = ACTIONS(360), - [anon_sym_restrict] = ACTIONS(360), - [anon_sym_volatile] = ACTIONS(360), - [anon_sym__Atomic] = ACTIONS(360), - [anon_sym_unsigned] = ACTIONS(360), - [anon_sym_long] = ACTIONS(360), - [anon_sym_short] = ACTIONS(360), - [sym_primitive_type] = ACTIONS(360), - [anon_sym_enum] = ACTIONS(360), - [anon_sym_struct] = ACTIONS(360), - [anon_sym_union] = ACTIONS(360), - [sym_identifier] = ACTIONS(360), + [ts_builtin_sym_end] = ACTIONS(354), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(356), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(356), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(356), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(356), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(356), + [sym_preproc_directive] = ACTIONS(356), + [anon_sym_typedef] = ACTIONS(356), + [anon_sym_extern] = ACTIONS(356), + [anon_sym_RBRACE] = ACTIONS(354), + [anon_sym_static] = ACTIONS(356), + [anon_sym_auto] = ACTIONS(356), + [anon_sym_register] = ACTIONS(356), + [anon_sym_inline] = ACTIONS(356), + [anon_sym_const] = ACTIONS(356), + [anon_sym_restrict] = ACTIONS(356), + [anon_sym_volatile] = ACTIONS(356), + [anon_sym__Atomic] = ACTIONS(356), + [anon_sym_unsigned] = ACTIONS(356), + [anon_sym_long] = ACTIONS(356), + [anon_sym_short] = ACTIONS(356), + [sym_primitive_type] = ACTIONS(356), + [anon_sym_enum] = ACTIONS(356), + [anon_sym_struct] = ACTIONS(356), + [anon_sym_union] = ACTIONS(356), + [sym_identifier] = ACTIONS(356), [sym_comment] = ACTIONS(39), }, [65] = { - [sym_identifier] = ACTIONS(362), + [sym_identifier] = ACTIONS(358), [sym_comment] = ACTIONS(39), }, [66] = { - [sym_identifier] = ACTIONS(364), + [sym_identifier] = ACTIONS(360), [sym_comment] = ACTIONS(39), }, [67] = { @@ -7613,15 +7632,15 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_translation_unit_repeat1] = STATE(157), [aux_sym__declaration_specifiers_repeat1] = STATE(20), [aux_sym_sized_type_specifier_repeat1] = STATE(21), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(366), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(368), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(370), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(372), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(374), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(376), - [sym_preproc_directive] = ACTIONS(378), - [anon_sym_typedef] = ACTIONS(380), - [anon_sym_extern] = ACTIONS(382), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(362), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(364), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(366), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(368), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(370), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(372), + [sym_preproc_directive] = ACTIONS(374), + [anon_sym_typedef] = ACTIONS(376), + [anon_sym_extern] = ACTIONS(378), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -7641,12 +7660,12 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(39), }, [68] = { - [sym_preproc_arg] = ACTIONS(384), + [sym_preproc_arg] = ACTIONS(380), [sym_comment] = ACTIONS(49), }, [69] = { - [anon_sym_LF] = ACTIONS(386), - [sym_preproc_arg] = ACTIONS(388), + [anon_sym_LF] = ACTIONS(382), + [sym_preproc_arg] = ACTIONS(384), [sym_comment] = ACTIONS(49), }, [70] = { @@ -7666,7 +7685,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(390), + [sym_primitive_type] = ACTIONS(386), [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), @@ -7696,7 +7715,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(39), }, [72] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(392), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(388), [sym_comment] = ACTIONS(39), }, [73] = { @@ -7705,10 +7724,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_function_declarator] = STATE(166), [sym_array_declarator] = STATE(166), [sym_init_declarator] = STATE(167), - [anon_sym_SEMI] = ACTIONS(394), + [anon_sym_SEMI] = ACTIONS(390), [anon_sym_LPAREN2] = ACTIONS(92), [anon_sym_STAR] = ACTIONS(94), - [sym_identifier] = ACTIONS(396), + [sym_identifier] = ACTIONS(392), [sym_comment] = ACTIONS(39), }, [74] = { @@ -7737,17 +7756,17 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_translation_unit_repeat1] = STATE(169), [aux_sym__declaration_specifiers_repeat1] = STATE(20), [aux_sym_sized_type_specifier_repeat1] = STATE(21), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(133), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(135), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(137), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(398), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(141), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(143), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(145), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(147), - [sym_preproc_directive] = ACTIONS(149), - [anon_sym_typedef] = ACTIONS(151), - [anon_sym_extern] = ACTIONS(153), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(131), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(133), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(135), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(394), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(139), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(141), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(143), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(145), + [sym_preproc_directive] = ACTIONS(147), + [anon_sym_typedef] = ACTIONS(149), + [anon_sym_extern] = ACTIONS(151), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -7767,36 +7786,36 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(39), }, [75] = { - [ts_builtin_sym_end] = ACTIONS(400), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(402), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(402), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(402), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(402), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(402), - [sym_preproc_directive] = ACTIONS(402), - [anon_sym_typedef] = ACTIONS(402), - [anon_sym_extern] = ACTIONS(402), - [anon_sym_RBRACE] = ACTIONS(400), - [anon_sym_static] = ACTIONS(402), - [anon_sym_auto] = ACTIONS(402), - [anon_sym_register] = ACTIONS(402), - [anon_sym_inline] = ACTIONS(402), - [anon_sym_const] = ACTIONS(402), - [anon_sym_restrict] = ACTIONS(402), - [anon_sym_volatile] = ACTIONS(402), - [anon_sym__Atomic] = ACTIONS(402), - [anon_sym_unsigned] = ACTIONS(402), - [anon_sym_long] = ACTIONS(402), - [anon_sym_short] = ACTIONS(402), - [sym_primitive_type] = ACTIONS(402), - [anon_sym_enum] = ACTIONS(402), - [anon_sym_struct] = ACTIONS(402), - [anon_sym_union] = ACTIONS(402), - [sym_identifier] = ACTIONS(402), + [ts_builtin_sym_end] = ACTIONS(396), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(398), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(398), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(398), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(398), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(398), + [sym_preproc_directive] = ACTIONS(398), + [anon_sym_typedef] = ACTIONS(398), + [anon_sym_extern] = ACTIONS(398), + [anon_sym_RBRACE] = ACTIONS(396), + [anon_sym_static] = ACTIONS(398), + [anon_sym_auto] = ACTIONS(398), + [anon_sym_register] = ACTIONS(398), + [anon_sym_inline] = ACTIONS(398), + [anon_sym_const] = ACTIONS(398), + [anon_sym_restrict] = ACTIONS(398), + [anon_sym_volatile] = ACTIONS(398), + [anon_sym__Atomic] = ACTIONS(398), + [anon_sym_unsigned] = ACTIONS(398), + [anon_sym_long] = ACTIONS(398), + [anon_sym_short] = ACTIONS(398), + [sym_primitive_type] = ACTIONS(398), + [anon_sym_enum] = ACTIONS(398), + [anon_sym_struct] = ACTIONS(398), + [anon_sym_union] = ACTIONS(398), + [sym_identifier] = ACTIONS(398), [sym_comment] = ACTIONS(39), }, [76] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(404), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(400), [sym_comment] = ACTIONS(39), }, [77] = { @@ -7825,17 +7844,17 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_translation_unit_repeat1] = STATE(169), [aux_sym__declaration_specifiers_repeat1] = STATE(20), [aux_sym_sized_type_specifier_repeat1] = STATE(21), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(133), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(135), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(137), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(406), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(141), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(143), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(145), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(147), - [sym_preproc_directive] = ACTIONS(149), - [anon_sym_typedef] = ACTIONS(151), - [anon_sym_extern] = ACTIONS(153), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(131), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(133), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(135), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(402), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(139), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(141), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(143), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(145), + [sym_preproc_directive] = ACTIONS(147), + [anon_sym_typedef] = ACTIONS(149), + [anon_sym_extern] = ACTIONS(151), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -7855,36 +7874,36 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(39), }, [78] = { - [ts_builtin_sym_end] = ACTIONS(408), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(410), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(410), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(410), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(410), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(410), - [sym_preproc_directive] = ACTIONS(410), - [anon_sym_typedef] = ACTIONS(410), - [anon_sym_extern] = ACTIONS(410), - [anon_sym_RBRACE] = ACTIONS(408), - [anon_sym_static] = ACTIONS(410), - [anon_sym_auto] = ACTIONS(410), - [anon_sym_register] = ACTIONS(410), - [anon_sym_inline] = ACTIONS(410), - [anon_sym_const] = ACTIONS(410), - [anon_sym_restrict] = ACTIONS(410), - [anon_sym_volatile] = ACTIONS(410), - [anon_sym__Atomic] = ACTIONS(410), - [anon_sym_unsigned] = ACTIONS(410), - [anon_sym_long] = ACTIONS(410), - [anon_sym_short] = ACTIONS(410), - [sym_primitive_type] = ACTIONS(410), - [anon_sym_enum] = ACTIONS(410), - [anon_sym_struct] = ACTIONS(410), - [anon_sym_union] = ACTIONS(410), - [sym_identifier] = ACTIONS(410), + [ts_builtin_sym_end] = ACTIONS(404), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(406), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(406), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(406), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(406), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(406), + [sym_preproc_directive] = ACTIONS(406), + [anon_sym_typedef] = ACTIONS(406), + [anon_sym_extern] = ACTIONS(406), + [anon_sym_RBRACE] = ACTIONS(404), + [anon_sym_static] = ACTIONS(406), + [anon_sym_auto] = ACTIONS(406), + [anon_sym_register] = ACTIONS(406), + [anon_sym_inline] = ACTIONS(406), + [anon_sym_const] = ACTIONS(406), + [anon_sym_restrict] = ACTIONS(406), + [anon_sym_volatile] = ACTIONS(406), + [anon_sym__Atomic] = ACTIONS(406), + [anon_sym_unsigned] = ACTIONS(406), + [anon_sym_long] = ACTIONS(406), + [anon_sym_short] = ACTIONS(406), + [sym_primitive_type] = ACTIONS(406), + [anon_sym_enum] = ACTIONS(406), + [anon_sym_struct] = ACTIONS(406), + [anon_sym_union] = ACTIONS(406), + [sym_identifier] = ACTIONS(406), [sym_comment] = ACTIONS(39), }, [79] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(412), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(408), [sym_comment] = ACTIONS(39), }, [80] = { @@ -7913,17 +7932,17 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_translation_unit_repeat1] = STATE(169), [aux_sym__declaration_specifiers_repeat1] = STATE(20), [aux_sym_sized_type_specifier_repeat1] = STATE(21), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(133), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(135), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(137), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(414), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(141), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(143), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(145), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(147), - [sym_preproc_directive] = ACTIONS(149), - [anon_sym_typedef] = ACTIONS(151), - [anon_sym_extern] = ACTIONS(153), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(131), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(133), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(135), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(410), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(139), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(141), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(143), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(145), + [sym_preproc_directive] = ACTIONS(147), + [anon_sym_typedef] = ACTIONS(149), + [anon_sym_extern] = ACTIONS(151), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -7943,61 +7962,61 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(39), }, [81] = { - [ts_builtin_sym_end] = ACTIONS(416), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(418), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(418), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(418), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(418), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(418), - [sym_preproc_directive] = ACTIONS(418), - [anon_sym_SEMI] = ACTIONS(416), - [anon_sym_typedef] = ACTIONS(418), - [anon_sym_extern] = ACTIONS(418), - [anon_sym_LBRACE] = ACTIONS(416), - [anon_sym_RBRACE] = ACTIONS(416), - [anon_sym_LPAREN2] = ACTIONS(416), - [anon_sym_STAR] = ACTIONS(416), - [anon_sym_static] = ACTIONS(418), - [anon_sym_auto] = ACTIONS(418), - [anon_sym_register] = ACTIONS(418), - [anon_sym_inline] = ACTIONS(418), - [anon_sym_const] = ACTIONS(418), - [anon_sym_restrict] = ACTIONS(418), - [anon_sym_volatile] = ACTIONS(418), - [anon_sym__Atomic] = ACTIONS(418), - [anon_sym_unsigned] = ACTIONS(418), - [anon_sym_long] = ACTIONS(418), - [anon_sym_short] = ACTIONS(418), - [sym_primitive_type] = ACTIONS(418), - [anon_sym_enum] = ACTIONS(418), - [anon_sym_struct] = ACTIONS(418), - [anon_sym_union] = ACTIONS(418), - [anon_sym_if] = ACTIONS(418), - [anon_sym_switch] = ACTIONS(418), - [anon_sym_case] = ACTIONS(418), - [anon_sym_default] = ACTIONS(418), - [anon_sym_while] = ACTIONS(418), - [anon_sym_do] = ACTIONS(418), - [anon_sym_for] = ACTIONS(418), - [anon_sym_return] = ACTIONS(418), - [anon_sym_break] = ACTIONS(418), - [anon_sym_continue] = ACTIONS(418), - [anon_sym_goto] = ACTIONS(418), - [anon_sym_AMP] = ACTIONS(416), - [anon_sym_BANG] = ACTIONS(416), - [anon_sym_TILDE] = ACTIONS(416), - [anon_sym_PLUS] = ACTIONS(418), - [anon_sym_DASH] = ACTIONS(418), - [anon_sym_DASH_DASH] = ACTIONS(416), - [anon_sym_PLUS_PLUS] = ACTIONS(416), - [anon_sym_sizeof] = ACTIONS(418), - [sym_number_literal] = ACTIONS(416), - [anon_sym_SQUOTE] = ACTIONS(416), - [anon_sym_DQUOTE] = ACTIONS(416), - [sym_true] = ACTIONS(418), - [sym_false] = ACTIONS(418), - [sym_null] = ACTIONS(418), - [sym_identifier] = ACTIONS(418), + [ts_builtin_sym_end] = ACTIONS(412), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(414), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(414), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(414), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(414), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(414), + [sym_preproc_directive] = ACTIONS(414), + [anon_sym_SEMI] = ACTIONS(412), + [anon_sym_typedef] = ACTIONS(414), + [anon_sym_extern] = ACTIONS(414), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_RBRACE] = ACTIONS(412), + [anon_sym_LPAREN2] = ACTIONS(412), + [anon_sym_STAR] = ACTIONS(412), + [anon_sym_static] = ACTIONS(414), + [anon_sym_auto] = ACTIONS(414), + [anon_sym_register] = ACTIONS(414), + [anon_sym_inline] = ACTIONS(414), + [anon_sym_const] = ACTIONS(414), + [anon_sym_restrict] = ACTIONS(414), + [anon_sym_volatile] = ACTIONS(414), + [anon_sym__Atomic] = ACTIONS(414), + [anon_sym_unsigned] = ACTIONS(414), + [anon_sym_long] = ACTIONS(414), + [anon_sym_short] = ACTIONS(414), + [sym_primitive_type] = ACTIONS(414), + [anon_sym_enum] = ACTIONS(414), + [anon_sym_struct] = ACTIONS(414), + [anon_sym_union] = ACTIONS(414), + [anon_sym_if] = ACTIONS(414), + [anon_sym_switch] = ACTIONS(414), + [anon_sym_case] = ACTIONS(414), + [anon_sym_default] = ACTIONS(414), + [anon_sym_while] = ACTIONS(414), + [anon_sym_do] = ACTIONS(414), + [anon_sym_for] = ACTIONS(414), + [anon_sym_return] = ACTIONS(414), + [anon_sym_break] = ACTIONS(414), + [anon_sym_continue] = ACTIONS(414), + [anon_sym_goto] = ACTIONS(414), + [anon_sym_AMP] = ACTIONS(412), + [anon_sym_BANG] = ACTIONS(412), + [anon_sym_TILDE] = ACTIONS(412), + [anon_sym_PLUS] = ACTIONS(414), + [anon_sym_DASH] = ACTIONS(414), + [anon_sym_DASH_DASH] = ACTIONS(412), + [anon_sym_PLUS_PLUS] = ACTIONS(412), + [anon_sym_sizeof] = ACTIONS(414), + [sym_number_literal] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(412), + [anon_sym_DQUOTE] = ACTIONS(412), + [sym_true] = ACTIONS(414), + [sym_false] = ACTIONS(414), + [sym_null] = ACTIONS(414), + [sym_identifier] = ACTIONS(414), [sym_comment] = ACTIONS(39), }, [82] = { @@ -8005,9 +8024,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_pointer_type_declarator] = STATE(86), [sym_function_type_declarator] = STATE(87), [sym_array_type_declarator] = STATE(88), - [anon_sym_LPAREN2] = ACTIONS(165), - [anon_sym_STAR] = ACTIONS(420), - [sym_identifier] = ACTIONS(169), + [anon_sym_LPAREN2] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(416), + [sym_identifier] = ACTIONS(167), [sym_comment] = ACTIONS(39), }, [83] = { @@ -8017,48 +8036,48 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_array_type_declarator] = STATE(88), [sym_type_qualifier] = STATE(177), [aux_sym_type_definition_repeat1] = STATE(177), - [anon_sym_LPAREN2] = ACTIONS(165), - [anon_sym_STAR] = ACTIONS(167), + [anon_sym_LPAREN2] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(165), [anon_sym_const] = ACTIONS(25), [anon_sym_restrict] = ACTIONS(25), [anon_sym_volatile] = ACTIONS(25), [anon_sym__Atomic] = ACTIONS(25), - [sym_identifier] = ACTIONS(422), + [sym_identifier] = ACTIONS(418), [sym_comment] = ACTIONS(39), }, [84] = { - [anon_sym_RPAREN] = ACTIONS(424), - [anon_sym_SEMI] = ACTIONS(424), - [anon_sym_LPAREN2] = ACTIONS(424), - [anon_sym_LBRACK] = ACTIONS(424), + [anon_sym_RPAREN] = ACTIONS(420), + [anon_sym_SEMI] = ACTIONS(420), + [anon_sym_LPAREN2] = ACTIONS(420), + [anon_sym_LBRACK] = ACTIONS(420), [sym_comment] = ACTIONS(39), }, [85] = { [sym_parameter_list] = STATE(180), - [anon_sym_SEMI] = ACTIONS(426), - [anon_sym_LPAREN2] = ACTIONS(243), - [anon_sym_LBRACK] = ACTIONS(428), + [anon_sym_SEMI] = ACTIONS(422), + [anon_sym_LPAREN2] = ACTIONS(241), + [anon_sym_LBRACK] = ACTIONS(424), [sym_comment] = ACTIONS(39), }, [86] = { - [anon_sym_RPAREN] = ACTIONS(430), - [anon_sym_SEMI] = ACTIONS(430), - [anon_sym_LPAREN2] = ACTIONS(430), - [anon_sym_LBRACK] = ACTIONS(430), + [anon_sym_RPAREN] = ACTIONS(426), + [anon_sym_SEMI] = ACTIONS(426), + [anon_sym_LPAREN2] = ACTIONS(426), + [anon_sym_LBRACK] = ACTIONS(426), [sym_comment] = ACTIONS(39), }, [87] = { - [anon_sym_RPAREN] = ACTIONS(432), - [anon_sym_SEMI] = ACTIONS(432), - [anon_sym_LPAREN2] = ACTIONS(432), - [anon_sym_LBRACK] = ACTIONS(432), + [anon_sym_RPAREN] = ACTIONS(428), + [anon_sym_SEMI] = ACTIONS(428), + [anon_sym_LPAREN2] = ACTIONS(428), + [anon_sym_LBRACK] = ACTIONS(428), [sym_comment] = ACTIONS(39), }, [88] = { - [anon_sym_RPAREN] = ACTIONS(434), - [anon_sym_SEMI] = ACTIONS(434), - [anon_sym_LPAREN2] = ACTIONS(434), - [anon_sym_LBRACK] = ACTIONS(434), + [anon_sym_RPAREN] = ACTIONS(430), + [anon_sym_SEMI] = ACTIONS(430), + [anon_sym_LPAREN2] = ACTIONS(430), + [anon_sym_LBRACK] = ACTIONS(430), [sym_comment] = ACTIONS(39), }, [89] = { @@ -8066,37 +8085,37 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_pointer_type_declarator] = STATE(86), [sym_function_type_declarator] = STATE(87), [sym_array_type_declarator] = STATE(88), - [anon_sym_LPAREN2] = ACTIONS(165), - [anon_sym_STAR] = ACTIONS(167), - [sym_identifier] = ACTIONS(169), + [anon_sym_LPAREN2] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(165), + [sym_identifier] = ACTIONS(167), [sym_comment] = ACTIONS(39), }, [90] = { [sym_type_qualifier] = STATE(90), [aux_sym_type_definition_repeat1] = STATE(90), - [anon_sym_const] = ACTIONS(436), - [anon_sym_restrict] = ACTIONS(436), - [anon_sym_volatile] = ACTIONS(436), - [anon_sym__Atomic] = ACTIONS(436), - [anon_sym_unsigned] = ACTIONS(439), - [anon_sym_long] = ACTIONS(439), - [anon_sym_short] = ACTIONS(439), - [sym_primitive_type] = ACTIONS(439), - [anon_sym_enum] = ACTIONS(439), - [anon_sym_struct] = ACTIONS(439), - [anon_sym_union] = ACTIONS(439), - [sym_identifier] = ACTIONS(439), + [anon_sym_const] = ACTIONS(432), + [anon_sym_restrict] = ACTIONS(432), + [anon_sym_volatile] = ACTIONS(432), + [anon_sym__Atomic] = ACTIONS(432), + [anon_sym_unsigned] = ACTIONS(435), + [anon_sym_long] = ACTIONS(435), + [anon_sym_short] = ACTIONS(435), + [sym_primitive_type] = ACTIONS(435), + [anon_sym_enum] = ACTIONS(435), + [anon_sym_struct] = ACTIONS(435), + [anon_sym_union] = ACTIONS(435), + [sym_identifier] = ACTIONS(435), [sym_comment] = ACTIONS(39), }, [91] = { [aux_sym_sized_type_specifier_repeat1] = STATE(91), - [anon_sym_LPAREN2] = ACTIONS(319), - [anon_sym_STAR] = ACTIONS(319), - [anon_sym_unsigned] = ACTIONS(441), - [anon_sym_long] = ACTIONS(441), - [anon_sym_short] = ACTIONS(441), - [sym_primitive_type] = ACTIONS(321), - [sym_identifier] = ACTIONS(321), + [anon_sym_LPAREN2] = ACTIONS(317), + [anon_sym_STAR] = ACTIONS(317), + [anon_sym_unsigned] = ACTIONS(437), + [anon_sym_long] = ACTIONS(437), + [anon_sym_short] = ACTIONS(437), + [sym_primitive_type] = ACTIONS(319), + [sym_identifier] = ACTIONS(319), [sym_comment] = ACTIONS(39), }, [92] = { @@ -8131,7 +8150,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_directive] = ACTIONS(17), [anon_sym_typedef] = ACTIONS(19), [anon_sym_extern] = ACTIONS(21), - [anon_sym_RBRACE] = ACTIONS(444), + [anon_sym_RBRACE] = ACTIONS(440), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -8151,32 +8170,32 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(39), }, [93] = { - [ts_builtin_sym_end] = ACTIONS(446), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(448), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(448), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(448), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(448), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(448), - [sym_preproc_directive] = ACTIONS(448), - [anon_sym_typedef] = ACTIONS(448), - [anon_sym_extern] = ACTIONS(448), - [anon_sym_RBRACE] = ACTIONS(446), - [anon_sym_static] = ACTIONS(448), - [anon_sym_auto] = ACTIONS(448), - [anon_sym_register] = ACTIONS(448), - [anon_sym_inline] = ACTIONS(448), - [anon_sym_const] = ACTIONS(448), - [anon_sym_restrict] = ACTIONS(448), - [anon_sym_volatile] = ACTIONS(448), - [anon_sym__Atomic] = ACTIONS(448), - [anon_sym_unsigned] = ACTIONS(448), - [anon_sym_long] = ACTIONS(448), - [anon_sym_short] = ACTIONS(448), - [sym_primitive_type] = ACTIONS(448), - [anon_sym_enum] = ACTIONS(448), - [anon_sym_struct] = ACTIONS(448), - [anon_sym_union] = ACTIONS(448), - [sym_identifier] = ACTIONS(448), + [ts_builtin_sym_end] = ACTIONS(442), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(444), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(444), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(444), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(444), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(444), + [sym_preproc_directive] = ACTIONS(444), + [anon_sym_typedef] = ACTIONS(444), + [anon_sym_extern] = ACTIONS(444), + [anon_sym_RBRACE] = ACTIONS(442), + [anon_sym_static] = ACTIONS(444), + [anon_sym_auto] = ACTIONS(444), + [anon_sym_register] = ACTIONS(444), + [anon_sym_inline] = ACTIONS(444), + [anon_sym_const] = ACTIONS(444), + [anon_sym_restrict] = ACTIONS(444), + [anon_sym_volatile] = ACTIONS(444), + [anon_sym__Atomic] = ACTIONS(444), + [anon_sym_unsigned] = ACTIONS(444), + [anon_sym_long] = ACTIONS(444), + [anon_sym_short] = ACTIONS(444), + [sym_primitive_type] = ACTIONS(444), + [anon_sym_enum] = ACTIONS(444), + [anon_sym_struct] = ACTIONS(444), + [anon_sym_union] = ACTIONS(444), + [sym_identifier] = ACTIONS(444), [sym_comment] = ACTIONS(39), }, [94] = { @@ -8228,10 +8247,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_restrict] = ACTIONS(25), [anon_sym_volatile] = ACTIONS(25), [anon_sym__Atomic] = ACTIONS(25), - [anon_sym_unsigned] = ACTIONS(177), - [anon_sym_long] = ACTIONS(177), - [anon_sym_short] = ACTIONS(177), - [sym_primitive_type] = ACTIONS(450), + [anon_sym_unsigned] = ACTIONS(175), + [anon_sym_long] = ACTIONS(175), + [anon_sym_short] = ACTIONS(175), + [sym_primitive_type] = ACTIONS(446), [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), @@ -8251,147 +8270,174 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_restrict] = ACTIONS(108), [anon_sym_volatile] = ACTIONS(108), [anon_sym__Atomic] = ACTIONS(108), - [anon_sym_unsigned] = ACTIONS(452), - [anon_sym_long] = ACTIONS(452), - [anon_sym_short] = ACTIONS(452), + [anon_sym_unsigned] = ACTIONS(448), + [anon_sym_long] = ACTIONS(448), + [anon_sym_short] = ACTIONS(448), [sym_primitive_type] = ACTIONS(112), [sym_identifier] = ACTIONS(114), [sym_comment] = ACTIONS(39), }, [98] = { - [anon_sym_RBRACE] = ACTIONS(454), + [anon_sym_RBRACE] = ACTIONS(450), [sym_comment] = ACTIONS(39), }, [99] = { - [anon_sym_COMMA] = ACTIONS(456), - [anon_sym_RPAREN] = ACTIONS(456), - [anon_sym_SEMI] = ACTIONS(456), - [anon_sym_extern] = ACTIONS(458), - [anon_sym_LPAREN2] = ACTIONS(456), - [anon_sym_STAR] = ACTIONS(456), - [anon_sym_LBRACK] = ACTIONS(456), - [anon_sym_RBRACK] = ACTIONS(456), - [anon_sym_static] = ACTIONS(458), - [anon_sym_auto] = ACTIONS(458), - [anon_sym_register] = ACTIONS(458), - [anon_sym_inline] = ACTIONS(458), - [anon_sym_const] = ACTIONS(458), - [anon_sym_restrict] = ACTIONS(458), - [anon_sym_volatile] = ACTIONS(458), - [anon_sym__Atomic] = ACTIONS(458), - [anon_sym_COLON] = ACTIONS(456), - [anon_sym_AMP] = ACTIONS(456), - [anon_sym_BANG] = ACTIONS(456), - [anon_sym_TILDE] = ACTIONS(456), - [anon_sym_PLUS] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(458), - [anon_sym_DASH_DASH] = ACTIONS(456), - [anon_sym_PLUS_PLUS] = ACTIONS(456), - [anon_sym_sizeof] = ACTIONS(458), - [sym_number_literal] = ACTIONS(456), - [anon_sym_SQUOTE] = ACTIONS(456), - [anon_sym_DQUOTE] = ACTIONS(456), - [sym_true] = ACTIONS(458), - [sym_false] = ACTIONS(458), - [sym_null] = ACTIONS(458), - [sym_identifier] = ACTIONS(458), + [anon_sym_COMMA] = ACTIONS(452), + [anon_sym_RPAREN] = ACTIONS(452), + [anon_sym_SEMI] = ACTIONS(452), + [anon_sym_extern] = ACTIONS(454), + [anon_sym_LPAREN2] = ACTIONS(452), + [anon_sym_STAR] = ACTIONS(452), + [anon_sym_LBRACK] = ACTIONS(452), + [anon_sym_RBRACK] = ACTIONS(452), + [anon_sym_static] = ACTIONS(454), + [anon_sym_auto] = ACTIONS(454), + [anon_sym_register] = ACTIONS(454), + [anon_sym_inline] = ACTIONS(454), + [anon_sym_const] = ACTIONS(454), + [anon_sym_restrict] = ACTIONS(454), + [anon_sym_volatile] = ACTIONS(454), + [anon_sym__Atomic] = ACTIONS(454), + [anon_sym_COLON] = ACTIONS(452), + [anon_sym_AMP] = ACTIONS(452), + [anon_sym_BANG] = ACTIONS(452), + [anon_sym_TILDE] = ACTIONS(452), + [anon_sym_PLUS] = ACTIONS(454), + [anon_sym_DASH] = ACTIONS(454), + [anon_sym_DASH_DASH] = ACTIONS(452), + [anon_sym_PLUS_PLUS] = ACTIONS(452), + [anon_sym_sizeof] = ACTIONS(454), + [sym_number_literal] = ACTIONS(452), + [anon_sym_SQUOTE] = ACTIONS(452), + [anon_sym_DQUOTE] = ACTIONS(452), + [sym_true] = ACTIONS(454), + [sym_false] = ACTIONS(454), + [sym_null] = ACTIONS(454), + [sym_identifier] = ACTIONS(454), [sym_comment] = ACTIONS(39), }, [100] = { - [anon_sym_COMMA] = ACTIONS(460), - [anon_sym_RBRACE] = ACTIONS(460), - [anon_sym_EQ] = ACTIONS(462), + [anon_sym_COMMA] = ACTIONS(456), + [anon_sym_RBRACE] = ACTIONS(456), + [anon_sym_EQ] = ACTIONS(458), [sym_comment] = ACTIONS(39), }, [101] = { [aux_sym_enumerator_list_repeat1] = STATE(190), - [anon_sym_COMMA] = ACTIONS(464), - [anon_sym_RBRACE] = ACTIONS(454), + [anon_sym_COMMA] = ACTIONS(460), + [anon_sym_RBRACE] = ACTIONS(450), [sym_comment] = ACTIONS(39), }, [102] = { - [anon_sym_COMMA] = ACTIONS(466), - [anon_sym_RPAREN] = ACTIONS(466), - [anon_sym_SEMI] = ACTIONS(466), - [anon_sym_extern] = ACTIONS(468), - [anon_sym_LPAREN2] = ACTIONS(466), - [anon_sym_STAR] = ACTIONS(466), - [anon_sym_LBRACK] = ACTIONS(466), - [anon_sym_RBRACK] = ACTIONS(466), - [anon_sym_static] = ACTIONS(468), - [anon_sym_auto] = ACTIONS(468), - [anon_sym_register] = ACTIONS(468), - [anon_sym_inline] = ACTIONS(468), - [anon_sym_const] = ACTIONS(468), - [anon_sym_restrict] = ACTIONS(468), - [anon_sym_volatile] = ACTIONS(468), - [anon_sym__Atomic] = ACTIONS(468), - [anon_sym_COLON] = ACTIONS(466), - [anon_sym_AMP] = ACTIONS(466), - [anon_sym_BANG] = ACTIONS(466), - [anon_sym_TILDE] = ACTIONS(466), - [anon_sym_PLUS] = ACTIONS(468), - [anon_sym_DASH] = ACTIONS(468), - [anon_sym_DASH_DASH] = ACTIONS(466), - [anon_sym_PLUS_PLUS] = ACTIONS(466), - [anon_sym_sizeof] = ACTIONS(468), - [sym_number_literal] = ACTIONS(466), - [anon_sym_SQUOTE] = ACTIONS(466), - [anon_sym_DQUOTE] = ACTIONS(466), - [sym_true] = ACTIONS(468), - [sym_false] = ACTIONS(468), - [sym_null] = ACTIONS(468), - [sym_identifier] = ACTIONS(468), + [anon_sym_COMMA] = ACTIONS(462), + [anon_sym_RPAREN] = ACTIONS(462), + [anon_sym_SEMI] = ACTIONS(462), + [anon_sym_extern] = ACTIONS(464), + [anon_sym_LPAREN2] = ACTIONS(462), + [anon_sym_STAR] = ACTIONS(462), + [anon_sym_LBRACK] = ACTIONS(462), + [anon_sym_RBRACK] = ACTIONS(462), + [anon_sym_static] = ACTIONS(464), + [anon_sym_auto] = ACTIONS(464), + [anon_sym_register] = ACTIONS(464), + [anon_sym_inline] = ACTIONS(464), + [anon_sym_const] = ACTIONS(464), + [anon_sym_restrict] = ACTIONS(464), + [anon_sym_volatile] = ACTIONS(464), + [anon_sym__Atomic] = ACTIONS(464), + [anon_sym_COLON] = ACTIONS(462), + [anon_sym_AMP] = ACTIONS(462), + [anon_sym_BANG] = ACTIONS(462), + [anon_sym_TILDE] = ACTIONS(462), + [anon_sym_PLUS] = ACTIONS(464), + [anon_sym_DASH] = ACTIONS(464), + [anon_sym_DASH_DASH] = ACTIONS(462), + [anon_sym_PLUS_PLUS] = ACTIONS(462), + [anon_sym_sizeof] = ACTIONS(464), + [sym_number_literal] = ACTIONS(462), + [anon_sym_SQUOTE] = ACTIONS(462), + [anon_sym_DQUOTE] = ACTIONS(462), + [sym_true] = ACTIONS(464), + [sym_false] = ACTIONS(464), + [sym_null] = ACTIONS(464), + [sym_identifier] = ACTIONS(464), [sym_comment] = ACTIONS(39), }, [103] = { - [sym_preproc_arg] = ACTIONS(470), + [sym_preproc_arg] = ACTIONS(466), [sym_comment] = ACTIONS(49), }, [104] = { - [sym_identifier] = ACTIONS(472), + [sym_identifier] = ACTIONS(468), [sym_comment] = ACTIONS(39), }, [105] = { - [sym_identifier] = ACTIONS(474), + [sym_identifier] = ACTIONS(470), [sym_comment] = ACTIONS(39), }, [106] = { - [anon_sym_COMMA] = ACTIONS(476), - [anon_sym_RPAREN] = ACTIONS(476), - [anon_sym_SEMI] = ACTIONS(476), - [anon_sym_extern] = ACTIONS(478), - [anon_sym_LPAREN2] = ACTIONS(476), - [anon_sym_STAR] = ACTIONS(476), - [anon_sym_LBRACK] = ACTIONS(476), - [anon_sym_RBRACK] = ACTIONS(476), - [anon_sym_static] = ACTIONS(478), - [anon_sym_auto] = ACTIONS(478), - [anon_sym_register] = ACTIONS(478), - [anon_sym_inline] = ACTIONS(478), - [anon_sym_const] = ACTIONS(478), - [anon_sym_restrict] = ACTIONS(478), - [anon_sym_volatile] = ACTIONS(478), - [anon_sym__Atomic] = ACTIONS(478), - [anon_sym_COLON] = ACTIONS(476), - [anon_sym_AMP] = ACTIONS(476), - [anon_sym_BANG] = ACTIONS(476), - [anon_sym_TILDE] = ACTIONS(476), - [anon_sym_PLUS] = ACTIONS(478), - [anon_sym_DASH] = ACTIONS(478), - [anon_sym_DASH_DASH] = ACTIONS(476), - [anon_sym_PLUS_PLUS] = ACTIONS(476), - [anon_sym_sizeof] = ACTIONS(478), - [sym_number_literal] = ACTIONS(476), - [anon_sym_SQUOTE] = ACTIONS(476), - [anon_sym_DQUOTE] = ACTIONS(476), - [sym_true] = ACTIONS(478), - [sym_false] = ACTIONS(478), - [sym_null] = ACTIONS(478), - [sym_identifier] = ACTIONS(478), + [anon_sym_COMMA] = ACTIONS(472), + [anon_sym_RPAREN] = ACTIONS(472), + [anon_sym_SEMI] = ACTIONS(472), + [anon_sym_extern] = ACTIONS(474), + [anon_sym_LPAREN2] = ACTIONS(472), + [anon_sym_STAR] = ACTIONS(472), + [anon_sym_LBRACK] = ACTIONS(472), + [anon_sym_RBRACK] = ACTIONS(472), + [anon_sym_static] = ACTIONS(474), + [anon_sym_auto] = ACTIONS(474), + [anon_sym_register] = ACTIONS(474), + [anon_sym_inline] = ACTIONS(474), + [anon_sym_const] = ACTIONS(474), + [anon_sym_restrict] = ACTIONS(474), + [anon_sym_volatile] = ACTIONS(474), + [anon_sym__Atomic] = ACTIONS(474), + [anon_sym_COLON] = ACTIONS(472), + [anon_sym_AMP] = ACTIONS(472), + [anon_sym_BANG] = ACTIONS(472), + [anon_sym_TILDE] = ACTIONS(472), + [anon_sym_PLUS] = ACTIONS(474), + [anon_sym_DASH] = ACTIONS(474), + [anon_sym_DASH_DASH] = ACTIONS(472), + [anon_sym_PLUS_PLUS] = ACTIONS(472), + [anon_sym_sizeof] = ACTIONS(474), + [sym_number_literal] = ACTIONS(472), + [anon_sym_SQUOTE] = ACTIONS(472), + [anon_sym_DQUOTE] = ACTIONS(472), + [sym_true] = ACTIONS(474), + [sym_false] = ACTIONS(474), + [sym_null] = ACTIONS(474), + [sym_identifier] = ACTIONS(474), [sym_comment] = ACTIONS(39), }, [107] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(476), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(478), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(478), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(478), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(478), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(478), + [anon_sym_extern] = ACTIONS(476), + [anon_sym_RBRACE] = ACTIONS(478), + [anon_sym_static] = ACTIONS(476), + [anon_sym_auto] = ACTIONS(476), + [anon_sym_register] = ACTIONS(476), + [anon_sym_inline] = ACTIONS(476), + [anon_sym_const] = ACTIONS(476), + [anon_sym_restrict] = ACTIONS(476), + [anon_sym_volatile] = ACTIONS(476), + [anon_sym__Atomic] = ACTIONS(476), + [anon_sym_unsigned] = ACTIONS(476), + [anon_sym_long] = ACTIONS(476), + [anon_sym_short] = ACTIONS(476), + [sym_primitive_type] = ACTIONS(476), + [anon_sym_enum] = ACTIONS(476), + [anon_sym_struct] = ACTIONS(476), + [anon_sym_union] = ACTIONS(476), + [sym_identifier] = ACTIONS(476), + [sym_comment] = ACTIONS(39), + }, + [108] = { [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(480), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(482), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(482), @@ -8418,43 +8464,16 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(480), [sym_comment] = ACTIONS(39), }, - [108] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(484), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(486), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(486), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(486), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(486), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(486), - [anon_sym_extern] = ACTIONS(484), - [anon_sym_RBRACE] = ACTIONS(486), - [anon_sym_static] = ACTIONS(484), - [anon_sym_auto] = ACTIONS(484), - [anon_sym_register] = ACTIONS(484), - [anon_sym_inline] = ACTIONS(484), - [anon_sym_const] = ACTIONS(484), - [anon_sym_restrict] = ACTIONS(484), - [anon_sym_volatile] = ACTIONS(484), - [anon_sym__Atomic] = ACTIONS(484), - [anon_sym_unsigned] = ACTIONS(484), - [anon_sym_long] = ACTIONS(484), - [anon_sym_short] = ACTIONS(484), - [sym_primitive_type] = ACTIONS(484), - [anon_sym_enum] = ACTIONS(484), - [anon_sym_struct] = ACTIONS(484), - [anon_sym_union] = ACTIONS(484), - [sym_identifier] = ACTIONS(484), - [sym_comment] = ACTIONS(39), - }, [109] = { [sym__field_declarator] = STATE(199), [sym_pointer_field_declarator] = STATE(200), [sym_function_field_declarator] = STATE(201), [sym_array_field_declarator] = STATE(202), - [anon_sym_SEMI] = ACTIONS(488), - [anon_sym_LPAREN2] = ACTIONS(490), - [anon_sym_STAR] = ACTIONS(492), - [anon_sym_COLON] = ACTIONS(494), - [sym_identifier] = ACTIONS(496), + [anon_sym_SEMI] = ACTIONS(484), + [anon_sym_LPAREN2] = ACTIONS(486), + [anon_sym_STAR] = ACTIONS(488), + [anon_sym_COLON] = ACTIONS(490), + [sym_identifier] = ACTIONS(492), [sym_comment] = ACTIONS(39), }, [110] = { @@ -8494,11 +8513,11 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(205), [aux_sym__declaration_specifiers_repeat1] = STATE(112), [aux_sym_sized_type_specifier_repeat1] = STATE(113), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(195), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(197), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(199), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(193), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(195), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(197), [anon_sym_extern] = ACTIONS(23), - [anon_sym_RBRACE] = ACTIONS(498), + [anon_sym_RBRACE] = ACTIONS(494), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -8507,10 +8526,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_restrict] = ACTIONS(25), [anon_sym_volatile] = ACTIONS(25), [anon_sym__Atomic] = ACTIONS(25), - [anon_sym_unsigned] = ACTIONS(203), - [anon_sym_long] = ACTIONS(203), - [anon_sym_short] = ACTIONS(203), - [sym_primitive_type] = ACTIONS(205), + [anon_sym_unsigned] = ACTIONS(201), + [anon_sym_long] = ACTIONS(201), + [anon_sym_short] = ACTIONS(201), + [sym_primitive_type] = ACTIONS(203), [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), @@ -8537,10 +8556,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_restrict] = ACTIONS(25), [anon_sym_volatile] = ACTIONS(25), [anon_sym__Atomic] = ACTIONS(25), - [anon_sym_unsigned] = ACTIONS(203), - [anon_sym_long] = ACTIONS(203), - [anon_sym_short] = ACTIONS(203), - [sym_primitive_type] = ACTIONS(500), + [anon_sym_unsigned] = ACTIONS(201), + [anon_sym_long] = ACTIONS(201), + [anon_sym_short] = ACTIONS(201), + [sym_primitive_type] = ACTIONS(496), [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), @@ -8561,15 +8580,50 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_restrict] = ACTIONS(108), [anon_sym_volatile] = ACTIONS(108), [anon_sym__Atomic] = ACTIONS(108), - [anon_sym_unsigned] = ACTIONS(502), - [anon_sym_long] = ACTIONS(502), - [anon_sym_short] = ACTIONS(502), + [anon_sym_unsigned] = ACTIONS(498), + [anon_sym_long] = ACTIONS(498), + [anon_sym_short] = ACTIONS(498), [sym_primitive_type] = ACTIONS(112), [anon_sym_COLON] = ACTIONS(106), [sym_identifier] = ACTIONS(114), [sym_comment] = ACTIONS(39), }, [114] = { + [anon_sym_COMMA] = ACTIONS(500), + [anon_sym_RPAREN] = ACTIONS(500), + [anon_sym_SEMI] = ACTIONS(500), + [anon_sym_extern] = ACTIONS(502), + [anon_sym_LPAREN2] = ACTIONS(500), + [anon_sym_STAR] = ACTIONS(500), + [anon_sym_LBRACK] = ACTIONS(500), + [anon_sym_RBRACK] = ACTIONS(500), + [anon_sym_static] = ACTIONS(502), + [anon_sym_auto] = ACTIONS(502), + [anon_sym_register] = ACTIONS(502), + [anon_sym_inline] = ACTIONS(502), + [anon_sym_const] = ACTIONS(502), + [anon_sym_restrict] = ACTIONS(502), + [anon_sym_volatile] = ACTIONS(502), + [anon_sym__Atomic] = ACTIONS(502), + [anon_sym_COLON] = ACTIONS(500), + [anon_sym_AMP] = ACTIONS(500), + [anon_sym_BANG] = ACTIONS(500), + [anon_sym_TILDE] = ACTIONS(500), + [anon_sym_PLUS] = ACTIONS(502), + [anon_sym_DASH] = ACTIONS(502), + [anon_sym_DASH_DASH] = ACTIONS(500), + [anon_sym_PLUS_PLUS] = ACTIONS(500), + [anon_sym_sizeof] = ACTIONS(502), + [sym_number_literal] = ACTIONS(500), + [anon_sym_SQUOTE] = ACTIONS(500), + [anon_sym_DQUOTE] = ACTIONS(500), + [sym_true] = ACTIONS(502), + [sym_false] = ACTIONS(502), + [sym_null] = ACTIONS(502), + [sym_identifier] = ACTIONS(502), + [sym_comment] = ACTIONS(39), + }, + [115] = { [anon_sym_COMMA] = ACTIONS(504), [anon_sym_RPAREN] = ACTIONS(504), [anon_sym_SEMI] = ACTIONS(504), @@ -8604,55 +8658,20 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(506), [sym_comment] = ACTIONS(39), }, - [115] = { - [anon_sym_COMMA] = ACTIONS(508), - [anon_sym_RPAREN] = ACTIONS(508), - [anon_sym_SEMI] = ACTIONS(508), - [anon_sym_extern] = ACTIONS(510), - [anon_sym_LPAREN2] = ACTIONS(508), - [anon_sym_STAR] = ACTIONS(508), - [anon_sym_LBRACK] = ACTIONS(508), - [anon_sym_RBRACK] = ACTIONS(508), - [anon_sym_static] = ACTIONS(510), - [anon_sym_auto] = ACTIONS(510), - [anon_sym_register] = ACTIONS(510), - [anon_sym_inline] = ACTIONS(510), - [anon_sym_const] = ACTIONS(510), - [anon_sym_restrict] = ACTIONS(510), - [anon_sym_volatile] = ACTIONS(510), - [anon_sym__Atomic] = ACTIONS(510), - [anon_sym_COLON] = ACTIONS(508), - [anon_sym_AMP] = ACTIONS(508), - [anon_sym_BANG] = ACTIONS(508), - [anon_sym_TILDE] = ACTIONS(508), - [anon_sym_PLUS] = ACTIONS(510), - [anon_sym_DASH] = ACTIONS(510), - [anon_sym_DASH_DASH] = ACTIONS(508), - [anon_sym_PLUS_PLUS] = ACTIONS(508), - [anon_sym_sizeof] = ACTIONS(510), - [sym_number_literal] = ACTIONS(508), - [anon_sym_SQUOTE] = ACTIONS(508), - [anon_sym_DQUOTE] = ACTIONS(508), - [sym_true] = ACTIONS(510), - [sym_false] = ACTIONS(510), - [sym_null] = ACTIONS(510), - [sym_identifier] = ACTIONS(510), - [sym_comment] = ACTIONS(39), - }, [116] = { [sym__abstract_declarator] = STATE(211), [sym_abstract_pointer_declarator] = STATE(211), [sym_abstract_function_declarator] = STATE(211), [sym_abstract_array_declarator] = STATE(211), [sym_parameter_list] = STATE(212), - [anon_sym_RPAREN] = ACTIONS(512), - [anon_sym_LPAREN2] = ACTIONS(514), - [anon_sym_STAR] = ACTIONS(516), - [anon_sym_LBRACK] = ACTIONS(518), + [anon_sym_RPAREN] = ACTIONS(508), + [anon_sym_LPAREN2] = ACTIONS(510), + [anon_sym_STAR] = ACTIONS(512), + [anon_sym_LBRACK] = ACTIONS(514), [sym_comment] = ACTIONS(39), }, [117] = { - [anon_sym_RPAREN] = ACTIONS(520), + [anon_sym_RPAREN] = ACTIONS(516), [sym_comment] = ACTIONS(39), }, [118] = { @@ -8669,10 +8688,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_restrict] = ACTIONS(25), [anon_sym_volatile] = ACTIONS(25), [anon_sym__Atomic] = ACTIONS(25), - [anon_sym_unsigned] = ACTIONS(223), - [anon_sym_long] = ACTIONS(223), - [anon_sym_short] = ACTIONS(223), - [sym_primitive_type] = ACTIONS(522), + [anon_sym_unsigned] = ACTIONS(221), + [anon_sym_long] = ACTIONS(221), + [anon_sym_short] = ACTIONS(221), + [sym_primitive_type] = ACTIONS(518), [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), @@ -8685,11 +8704,11 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN2] = ACTIONS(106), [anon_sym_STAR] = ACTIONS(106), [anon_sym_LBRACK] = ACTIONS(106), - [anon_sym_unsigned] = ACTIONS(524), - [anon_sym_long] = ACTIONS(524), - [anon_sym_short] = ACTIONS(524), + [anon_sym_unsigned] = ACTIONS(520), + [anon_sym_long] = ACTIONS(520), + [anon_sym_short] = ACTIONS(520), [sym_primitive_type] = ACTIONS(112), - [sym_identifier] = ACTIONS(526), + [sym_identifier] = ACTIONS(522), [sym_comment] = ACTIONS(39), }, [120] = { @@ -8700,30 +8719,30 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_type_qualifier] = STATE(216), [aux_sym_type_definition_repeat1] = STATE(216), [anon_sym_LPAREN2] = ACTIONS(92), - [anon_sym_STAR] = ACTIONS(231), + [anon_sym_STAR] = ACTIONS(229), [anon_sym_const] = ACTIONS(25), [anon_sym_restrict] = ACTIONS(25), [anon_sym_volatile] = ACTIONS(25), [anon_sym__Atomic] = ACTIONS(25), - [sym_identifier] = ACTIONS(235), + [sym_identifier] = ACTIONS(233), [sym_comment] = ACTIONS(39), }, [121] = { [sym_parameter_list] = STATE(131), - [anon_sym_RPAREN] = ACTIONS(528), - [anon_sym_LPAREN2] = ACTIONS(243), - [anon_sym_LBRACK] = ACTIONS(245), + [anon_sym_RPAREN] = ACTIONS(524), + [anon_sym_LPAREN2] = ACTIONS(241), + [anon_sym_LBRACK] = ACTIONS(243), [sym_comment] = ACTIONS(39), }, [122] = { [sym_parameter_list] = STATE(131), - [anon_sym_COMMA] = ACTIONS(530), - [anon_sym_RPAREN] = ACTIONS(530), - [anon_sym_SEMI] = ACTIONS(530), - [anon_sym_LBRACE] = ACTIONS(530), - [anon_sym_LPAREN2] = ACTIONS(243), - [anon_sym_LBRACK] = ACTIONS(245), - [anon_sym_EQ] = ACTIONS(530), + [anon_sym_COMMA] = ACTIONS(526), + [anon_sym_RPAREN] = ACTIONS(526), + [anon_sym_SEMI] = ACTIONS(526), + [anon_sym_LBRACE] = ACTIONS(526), + [anon_sym_LPAREN2] = ACTIONS(241), + [anon_sym_LBRACK] = ACTIONS(243), + [anon_sym_EQ] = ACTIONS(526), [sym_comment] = ACTIONS(39), }, [123] = { @@ -8739,7 +8758,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_restrict] = ACTIONS(25), [anon_sym_volatile] = ACTIONS(25), [anon_sym__Atomic] = ACTIONS(25), - [sym_identifier] = ACTIONS(532), + [sym_identifier] = ACTIONS(528), [sym_comment] = ACTIONS(39), }, [124] = { @@ -8749,67 +8768,67 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_array_declarator] = STATE(221), [sym_init_declarator] = STATE(222), [anon_sym_LPAREN2] = ACTIONS(92), - [anon_sym_STAR] = ACTIONS(534), - [sym_identifier] = ACTIONS(536), + [anon_sym_STAR] = ACTIONS(530), + [sym_identifier] = ACTIONS(532), [sym_comment] = ACTIONS(39), }, [125] = { - [ts_builtin_sym_end] = ACTIONS(538), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(540), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(540), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(540), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(540), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(540), - [sym_preproc_directive] = ACTIONS(540), - [anon_sym_SEMI] = ACTIONS(538), - [anon_sym_typedef] = ACTIONS(540), - [anon_sym_extern] = ACTIONS(540), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_RBRACE] = ACTIONS(538), - [anon_sym_LPAREN2] = ACTIONS(538), - [anon_sym_STAR] = ACTIONS(538), - [anon_sym_static] = ACTIONS(540), - [anon_sym_auto] = ACTIONS(540), - [anon_sym_register] = ACTIONS(540), - [anon_sym_inline] = ACTIONS(540), - [anon_sym_const] = ACTIONS(540), - [anon_sym_restrict] = ACTIONS(540), - [anon_sym_volatile] = ACTIONS(540), - [anon_sym__Atomic] = ACTIONS(540), - [anon_sym_unsigned] = ACTIONS(540), - [anon_sym_long] = ACTIONS(540), - [anon_sym_short] = ACTIONS(540), - [sym_primitive_type] = ACTIONS(540), - [anon_sym_enum] = ACTIONS(540), - [anon_sym_struct] = ACTIONS(540), - [anon_sym_union] = ACTIONS(540), - [anon_sym_if] = ACTIONS(540), - [anon_sym_else] = ACTIONS(540), - [anon_sym_switch] = ACTIONS(540), - [anon_sym_case] = ACTIONS(540), - [anon_sym_default] = ACTIONS(540), - [anon_sym_while] = ACTIONS(540), - [anon_sym_do] = ACTIONS(540), - [anon_sym_for] = ACTIONS(540), - [anon_sym_return] = ACTIONS(540), - [anon_sym_break] = ACTIONS(540), - [anon_sym_continue] = ACTIONS(540), - [anon_sym_goto] = ACTIONS(540), - [anon_sym_AMP] = ACTIONS(538), - [anon_sym_BANG] = ACTIONS(538), - [anon_sym_TILDE] = ACTIONS(538), - [anon_sym_PLUS] = ACTIONS(540), - [anon_sym_DASH] = ACTIONS(540), - [anon_sym_DASH_DASH] = ACTIONS(538), - [anon_sym_PLUS_PLUS] = ACTIONS(538), - [anon_sym_sizeof] = ACTIONS(540), - [sym_number_literal] = ACTIONS(538), - [anon_sym_SQUOTE] = ACTIONS(538), - [anon_sym_DQUOTE] = ACTIONS(538), - [sym_true] = ACTIONS(540), - [sym_false] = ACTIONS(540), - [sym_null] = ACTIONS(540), - [sym_identifier] = ACTIONS(540), + [ts_builtin_sym_end] = ACTIONS(534), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(536), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(536), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(536), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(536), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(536), + [sym_preproc_directive] = ACTIONS(536), + [anon_sym_SEMI] = ACTIONS(534), + [anon_sym_typedef] = ACTIONS(536), + [anon_sym_extern] = ACTIONS(536), + [anon_sym_LBRACE] = ACTIONS(534), + [anon_sym_RBRACE] = ACTIONS(534), + [anon_sym_LPAREN2] = ACTIONS(534), + [anon_sym_STAR] = ACTIONS(534), + [anon_sym_static] = ACTIONS(536), + [anon_sym_auto] = ACTIONS(536), + [anon_sym_register] = ACTIONS(536), + [anon_sym_inline] = ACTIONS(536), + [anon_sym_const] = ACTIONS(536), + [anon_sym_restrict] = ACTIONS(536), + [anon_sym_volatile] = ACTIONS(536), + [anon_sym__Atomic] = ACTIONS(536), + [anon_sym_unsigned] = ACTIONS(536), + [anon_sym_long] = ACTIONS(536), + [anon_sym_short] = ACTIONS(536), + [sym_primitive_type] = ACTIONS(536), + [anon_sym_enum] = ACTIONS(536), + [anon_sym_struct] = ACTIONS(536), + [anon_sym_union] = ACTIONS(536), + [anon_sym_if] = ACTIONS(536), + [anon_sym_else] = ACTIONS(536), + [anon_sym_switch] = ACTIONS(536), + [anon_sym_case] = ACTIONS(536), + [anon_sym_default] = ACTIONS(536), + [anon_sym_while] = ACTIONS(536), + [anon_sym_do] = ACTIONS(536), + [anon_sym_for] = ACTIONS(536), + [anon_sym_return] = ACTIONS(536), + [anon_sym_break] = ACTIONS(536), + [anon_sym_continue] = ACTIONS(536), + [anon_sym_goto] = ACTIONS(536), + [anon_sym_AMP] = ACTIONS(534), + [anon_sym_BANG] = ACTIONS(534), + [anon_sym_TILDE] = ACTIONS(534), + [anon_sym_PLUS] = ACTIONS(536), + [anon_sym_DASH] = ACTIONS(536), + [anon_sym_DASH_DASH] = ACTIONS(534), + [anon_sym_PLUS_PLUS] = ACTIONS(534), + [anon_sym_sizeof] = ACTIONS(536), + [sym_number_literal] = ACTIONS(534), + [anon_sym_SQUOTE] = ACTIONS(534), + [anon_sym_DQUOTE] = ACTIONS(534), + [sym_true] = ACTIONS(536), + [sym_false] = ACTIONS(536), + [sym_null] = ACTIONS(536), + [sym_identifier] = ACTIONS(536), [sym_comment] = ACTIONS(39), }, [126] = { @@ -8868,19 +8887,19 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(254), [aux_sym__declaration_specifiers_repeat1] = STATE(20), [aux_sym_sized_type_specifier_repeat1] = STATE(21), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(542), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(538), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(9), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(544), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(546), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(548), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(540), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(542), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(544), [sym_preproc_directive] = ACTIONS(17), - [anon_sym_SEMI] = ACTIONS(550), + [anon_sym_SEMI] = ACTIONS(546), [anon_sym_typedef] = ACTIONS(19), [anon_sym_extern] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(241), - [anon_sym_RBRACE] = ACTIONS(552), - [anon_sym_LPAREN2] = ACTIONS(554), - [anon_sym_STAR] = ACTIONS(556), + [anon_sym_LBRACE] = ACTIONS(239), + [anon_sym_RBRACE] = ACTIONS(548), + [anon_sym_LPAREN2] = ACTIONS(550), + [anon_sym_STAR] = ACTIONS(552), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -8896,32 +8915,32 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), - [anon_sym_if] = ACTIONS(558), - [anon_sym_switch] = ACTIONS(560), - [anon_sym_case] = ACTIONS(562), - [anon_sym_default] = ACTIONS(564), - [anon_sym_while] = ACTIONS(566), - [anon_sym_do] = ACTIONS(568), - [anon_sym_for] = ACTIONS(570), - [anon_sym_return] = ACTIONS(572), - [anon_sym_break] = ACTIONS(574), - [anon_sym_continue] = ACTIONS(576), - [anon_sym_goto] = ACTIONS(578), - [anon_sym_AMP] = ACTIONS(556), - [anon_sym_BANG] = ACTIONS(580), - [anon_sym_TILDE] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_DASH_DASH] = ACTIONS(586), - [anon_sym_PLUS_PLUS] = ACTIONS(586), - [anon_sym_sizeof] = ACTIONS(588), - [sym_number_literal] = ACTIONS(590), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(594), - [sym_false] = ACTIONS(594), - [sym_null] = ACTIONS(594), - [sym_identifier] = ACTIONS(596), + [anon_sym_if] = ACTIONS(554), + [anon_sym_switch] = ACTIONS(556), + [anon_sym_case] = ACTIONS(558), + [anon_sym_default] = ACTIONS(560), + [anon_sym_while] = ACTIONS(562), + [anon_sym_do] = ACTIONS(564), + [anon_sym_for] = ACTIONS(566), + [anon_sym_return] = ACTIONS(568), + [anon_sym_break] = ACTIONS(570), + [anon_sym_continue] = ACTIONS(572), + [anon_sym_goto] = ACTIONS(574), + [anon_sym_AMP] = ACTIONS(552), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_TILDE] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(580), + [anon_sym_DASH] = ACTIONS(580), + [anon_sym_DASH_DASH] = ACTIONS(582), + [anon_sym_PLUS_PLUS] = ACTIONS(582), + [anon_sym_sizeof] = ACTIONS(584), + [sym_number_literal] = ACTIONS(586), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(590), + [sym_false] = ACTIONS(590), + [sym_null] = ACTIONS(590), + [sym_identifier] = ACTIONS(592), [sym_comment] = ACTIONS(39), }, [127] = { @@ -8937,8 +8956,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_macro_type_specifier] = STATE(258), [aux_sym__declaration_specifiers_repeat1] = STATE(259), [aux_sym_sized_type_specifier_repeat1] = STATE(260), - [anon_sym_DOT_DOT_DOT] = ACTIONS(598), - [anon_sym_RPAREN] = ACTIONS(600), + [anon_sym_DOT_DOT_DOT] = ACTIONS(594), + [anon_sym_RPAREN] = ACTIONS(596), [anon_sym_extern] = ACTIONS(23), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), @@ -8948,10 +8967,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_restrict] = ACTIONS(25), [anon_sym_volatile] = ACTIONS(25), [anon_sym__Atomic] = ACTIONS(25), - [anon_sym_unsigned] = ACTIONS(602), - [anon_sym_long] = ACTIONS(602), - [anon_sym_short] = ACTIONS(602), - [sym_primitive_type] = ACTIONS(604), + [anon_sym_unsigned] = ACTIONS(598), + [anon_sym_long] = ACTIONS(598), + [anon_sym_short] = ACTIONS(598), + [sym_primitive_type] = ACTIONS(600), [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), @@ -8991,9 +9010,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__declaration_specifiers_repeat1] = STATE(273), [aux_sym_sized_type_specifier_repeat1] = STATE(274), [anon_sym_extern] = ACTIONS(23), - [anon_sym_LPAREN2] = ACTIONS(606), - [anon_sym_STAR] = ACTIONS(608), - [anon_sym_RBRACK] = ACTIONS(610), + [anon_sym_LPAREN2] = ACTIONS(602), + [anon_sym_STAR] = ACTIONS(604), + [anon_sym_RBRACK] = ACTIONS(606), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -9002,28 +9021,28 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_restrict] = ACTIONS(25), [anon_sym_volatile] = ACTIONS(25), [anon_sym__Atomic] = ACTIONS(25), - [anon_sym_unsigned] = ACTIONS(612), - [anon_sym_long] = ACTIONS(612), - [anon_sym_short] = ACTIONS(612), - [sym_primitive_type] = ACTIONS(614), + [anon_sym_unsigned] = ACTIONS(608), + [anon_sym_long] = ACTIONS(608), + [anon_sym_short] = ACTIONS(608), + [sym_primitive_type] = ACTIONS(610), [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), - [anon_sym_AMP] = ACTIONS(608), - [anon_sym_BANG] = ACTIONS(616), - [anon_sym_TILDE] = ACTIONS(618), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_DASH_DASH] = ACTIONS(622), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_sizeof] = ACTIONS(624), - [sym_number_literal] = ACTIONS(626), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(628), - [sym_false] = ACTIONS(628), - [sym_null] = ACTIONS(628), - [sym_identifier] = ACTIONS(630), + [anon_sym_AMP] = ACTIONS(604), + [anon_sym_BANG] = ACTIONS(612), + [anon_sym_TILDE] = ACTIONS(614), + [anon_sym_PLUS] = ACTIONS(616), + [anon_sym_DASH] = ACTIONS(616), + [anon_sym_DASH_DASH] = ACTIONS(618), + [anon_sym_PLUS_PLUS] = ACTIONS(618), + [anon_sym_sizeof] = ACTIONS(620), + [sym_number_literal] = ACTIONS(622), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(624), + [sym_false] = ACTIONS(624), + [sym_null] = ACTIONS(624), + [sym_identifier] = ACTIONS(626), [sym_comment] = ACTIONS(39), }, [129] = { @@ -9048,98 +9067,98 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(276), [sym_concatenated_string] = STATE(276), [sym_string_literal] = STATE(253), - [anon_sym_LBRACE] = ACTIONS(632), - [anon_sym_LPAREN2] = ACTIONS(554), - [anon_sym_STAR] = ACTIONS(556), - [anon_sym_AMP] = ACTIONS(556), - [anon_sym_BANG] = ACTIONS(580), - [anon_sym_TILDE] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_DASH_DASH] = ACTIONS(586), - [anon_sym_PLUS_PLUS] = ACTIONS(586), - [anon_sym_sizeof] = ACTIONS(588), - [sym_number_literal] = ACTIONS(634), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(636), - [sym_false] = ACTIONS(636), - [sym_null] = ACTIONS(636), - [sym_identifier] = ACTIONS(636), + [anon_sym_LBRACE] = ACTIONS(628), + [anon_sym_LPAREN2] = ACTIONS(550), + [anon_sym_STAR] = ACTIONS(552), + [anon_sym_AMP] = ACTIONS(552), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_TILDE] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(580), + [anon_sym_DASH] = ACTIONS(580), + [anon_sym_DASH_DASH] = ACTIONS(582), + [anon_sym_PLUS_PLUS] = ACTIONS(582), + [anon_sym_sizeof] = ACTIONS(584), + [sym_number_literal] = ACTIONS(630), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(632), + [sym_false] = ACTIONS(632), + [sym_null] = ACTIONS(632), + [sym_identifier] = ACTIONS(632), [sym_comment] = ACTIONS(39), }, [130] = { - [ts_builtin_sym_end] = ACTIONS(638), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(640), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(640), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(640), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(640), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(640), - [sym_preproc_directive] = ACTIONS(640), - [anon_sym_typedef] = ACTIONS(640), - [anon_sym_extern] = ACTIONS(640), - [anon_sym_RBRACE] = ACTIONS(638), - [anon_sym_static] = ACTIONS(640), - [anon_sym_auto] = ACTIONS(640), - [anon_sym_register] = ACTIONS(640), - [anon_sym_inline] = ACTIONS(640), - [anon_sym_const] = ACTIONS(640), - [anon_sym_restrict] = ACTIONS(640), - [anon_sym_volatile] = ACTIONS(640), - [anon_sym__Atomic] = ACTIONS(640), - [anon_sym_unsigned] = ACTIONS(640), - [anon_sym_long] = ACTIONS(640), - [anon_sym_short] = ACTIONS(640), - [sym_primitive_type] = ACTIONS(640), - [anon_sym_enum] = ACTIONS(640), - [anon_sym_struct] = ACTIONS(640), - [anon_sym_union] = ACTIONS(640), - [sym_identifier] = ACTIONS(640), + [ts_builtin_sym_end] = ACTIONS(634), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(636), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(636), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(636), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(636), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(636), + [sym_preproc_directive] = ACTIONS(636), + [anon_sym_typedef] = ACTIONS(636), + [anon_sym_extern] = ACTIONS(636), + [anon_sym_RBRACE] = ACTIONS(634), + [anon_sym_static] = ACTIONS(636), + [anon_sym_auto] = ACTIONS(636), + [anon_sym_register] = ACTIONS(636), + [anon_sym_inline] = ACTIONS(636), + [anon_sym_const] = ACTIONS(636), + [anon_sym_restrict] = ACTIONS(636), + [anon_sym_volatile] = ACTIONS(636), + [anon_sym__Atomic] = ACTIONS(636), + [anon_sym_unsigned] = ACTIONS(636), + [anon_sym_long] = ACTIONS(636), + [anon_sym_short] = ACTIONS(636), + [sym_primitive_type] = ACTIONS(636), + [anon_sym_enum] = ACTIONS(636), + [anon_sym_struct] = ACTIONS(636), + [anon_sym_union] = ACTIONS(636), + [sym_identifier] = ACTIONS(636), [sym_comment] = ACTIONS(39), }, [131] = { - [anon_sym_COMMA] = ACTIONS(642), - [anon_sym_RPAREN] = ACTIONS(642), - [anon_sym_SEMI] = ACTIONS(642), - [anon_sym_LBRACE] = ACTIONS(642), - [anon_sym_LPAREN2] = ACTIONS(642), - [anon_sym_LBRACK] = ACTIONS(642), - [anon_sym_EQ] = ACTIONS(642), + [anon_sym_COMMA] = ACTIONS(638), + [anon_sym_RPAREN] = ACTIONS(638), + [anon_sym_SEMI] = ACTIONS(638), + [anon_sym_LBRACE] = ACTIONS(638), + [anon_sym_LPAREN2] = ACTIONS(638), + [anon_sym_LBRACK] = ACTIONS(638), + [anon_sym_EQ] = ACTIONS(638), [sym_comment] = ACTIONS(39), }, [132] = { [aux_sym_declaration_repeat1] = STATE(279), - [anon_sym_COMMA] = ACTIONS(237), - [anon_sym_SEMI] = ACTIONS(644), + [anon_sym_COMMA] = ACTIONS(235), + [anon_sym_SEMI] = ACTIONS(640), [sym_comment] = ACTIONS(39), }, [133] = { [sym_storage_class_specifier] = STATE(133), [sym_type_qualifier] = STATE(133), [aux_sym__declaration_specifiers_repeat1] = STATE(133), - [anon_sym_SEMI] = ACTIONS(646), - [anon_sym_extern] = ACTIONS(303), - [anon_sym_LPAREN2] = ACTIONS(646), - [anon_sym_STAR] = ACTIONS(646), - [anon_sym_static] = ACTIONS(303), - [anon_sym_auto] = ACTIONS(303), - [anon_sym_register] = ACTIONS(303), - [anon_sym_inline] = ACTIONS(303), - [anon_sym_const] = ACTIONS(306), - [anon_sym_restrict] = ACTIONS(306), - [anon_sym_volatile] = ACTIONS(306), - [anon_sym__Atomic] = ACTIONS(306), - [sym_identifier] = ACTIONS(309), + [anon_sym_SEMI] = ACTIONS(642), + [anon_sym_extern] = ACTIONS(301), + [anon_sym_LPAREN2] = ACTIONS(642), + [anon_sym_STAR] = ACTIONS(642), + [anon_sym_static] = ACTIONS(301), + [anon_sym_auto] = ACTIONS(301), + [anon_sym_register] = ACTIONS(301), + [anon_sym_inline] = ACTIONS(301), + [anon_sym_const] = ACTIONS(304), + [anon_sym_restrict] = ACTIONS(304), + [anon_sym_volatile] = ACTIONS(304), + [anon_sym__Atomic] = ACTIONS(304), + [sym_identifier] = ACTIONS(307), [sym_comment] = ACTIONS(39), }, [134] = { [sym_storage_class_specifier] = STATE(133), [sym_type_qualifier] = STATE(133), [aux_sym__declaration_specifiers_repeat1] = STATE(133), - [anon_sym_SEMI] = ACTIONS(648), + [anon_sym_SEMI] = ACTIONS(644), [anon_sym_extern] = ACTIONS(23), - [anon_sym_LPAREN2] = ACTIONS(648), - [anon_sym_STAR] = ACTIONS(648), + [anon_sym_LPAREN2] = ACTIONS(644), + [anon_sym_STAR] = ACTIONS(644), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -9148,290 +9167,290 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_restrict] = ACTIONS(25), [anon_sym_volatile] = ACTIONS(25), [anon_sym__Atomic] = ACTIONS(25), - [sym_identifier] = ACTIONS(650), + [sym_identifier] = ACTIONS(646), [sym_comment] = ACTIONS(39), }, [135] = { - [ts_builtin_sym_end] = ACTIONS(652), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(654), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(654), - [anon_sym_COMMA] = ACTIONS(652), - [anon_sym_RPAREN] = ACTIONS(652), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(654), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(654), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(654), - [sym_preproc_directive] = ACTIONS(654), - [anon_sym_SEMI] = ACTIONS(652), - [anon_sym_typedef] = ACTIONS(654), - [anon_sym_extern] = ACTIONS(654), - [anon_sym_LBRACE] = ACTIONS(652), - [anon_sym_RBRACE] = ACTIONS(652), - [anon_sym_LPAREN2] = ACTIONS(652), - [anon_sym_STAR] = ACTIONS(654), - [anon_sym_LBRACK] = ACTIONS(652), - [anon_sym_RBRACK] = ACTIONS(652), - [anon_sym_EQ] = ACTIONS(654), - [anon_sym_static] = ACTIONS(654), - [anon_sym_auto] = ACTIONS(654), - [anon_sym_register] = ACTIONS(654), - [anon_sym_inline] = ACTIONS(654), - [anon_sym_const] = ACTIONS(654), - [anon_sym_restrict] = ACTIONS(654), - [anon_sym_volatile] = ACTIONS(654), - [anon_sym__Atomic] = ACTIONS(654), - [anon_sym_unsigned] = ACTIONS(654), - [anon_sym_long] = ACTIONS(654), - [anon_sym_short] = ACTIONS(654), - [sym_primitive_type] = ACTIONS(654), - [anon_sym_enum] = ACTIONS(654), - [anon_sym_struct] = ACTIONS(654), - [anon_sym_union] = ACTIONS(654), - [anon_sym_COLON] = ACTIONS(652), - [anon_sym_QMARK] = ACTIONS(652), - [anon_sym_STAR_EQ] = ACTIONS(652), - [anon_sym_SLASH_EQ] = ACTIONS(652), - [anon_sym_PERCENT_EQ] = ACTIONS(652), - [anon_sym_PLUS_EQ] = ACTIONS(652), - [anon_sym_DASH_EQ] = ACTIONS(652), - [anon_sym_LT_LT_EQ] = ACTIONS(652), - [anon_sym_GT_GT_EQ] = ACTIONS(652), - [anon_sym_AMP_EQ] = ACTIONS(652), - [anon_sym_CARET_EQ] = ACTIONS(652), - [anon_sym_PIPE_EQ] = ACTIONS(652), - [anon_sym_AMP] = ACTIONS(654), - [anon_sym_PIPE_PIPE] = ACTIONS(652), - [anon_sym_AMP_AMP] = ACTIONS(652), - [anon_sym_PIPE] = ACTIONS(654), - [anon_sym_CARET] = ACTIONS(654), - [anon_sym_EQ_EQ] = ACTIONS(652), - [anon_sym_BANG_EQ] = ACTIONS(652), - [anon_sym_LT] = ACTIONS(654), - [anon_sym_GT] = ACTIONS(654), - [anon_sym_LT_EQ] = ACTIONS(652), - [anon_sym_GT_EQ] = ACTIONS(652), - [anon_sym_LT_LT] = ACTIONS(654), - [anon_sym_GT_GT] = ACTIONS(654), - [anon_sym_PLUS] = ACTIONS(654), - [anon_sym_DASH] = ACTIONS(654), - [anon_sym_SLASH] = ACTIONS(654), - [anon_sym_PERCENT] = ACTIONS(654), - [anon_sym_DASH_DASH] = ACTIONS(652), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DOT] = ACTIONS(652), - [anon_sym_DASH_GT] = ACTIONS(652), - [anon_sym_DQUOTE] = ACTIONS(652), - [sym_identifier] = ACTIONS(654), + [ts_builtin_sym_end] = ACTIONS(648), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(650), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(650), + [anon_sym_COMMA] = ACTIONS(648), + [anon_sym_RPAREN] = ACTIONS(648), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(650), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(650), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(650), + [sym_preproc_directive] = ACTIONS(650), + [anon_sym_SEMI] = ACTIONS(648), + [anon_sym_typedef] = ACTIONS(650), + [anon_sym_extern] = ACTIONS(650), + [anon_sym_LBRACE] = ACTIONS(648), + [anon_sym_RBRACE] = ACTIONS(648), + [anon_sym_LPAREN2] = ACTIONS(648), + [anon_sym_STAR] = ACTIONS(650), + [anon_sym_LBRACK] = ACTIONS(648), + [anon_sym_RBRACK] = ACTIONS(648), + [anon_sym_EQ] = ACTIONS(650), + [anon_sym_static] = ACTIONS(650), + [anon_sym_auto] = ACTIONS(650), + [anon_sym_register] = ACTIONS(650), + [anon_sym_inline] = ACTIONS(650), + [anon_sym_const] = ACTIONS(650), + [anon_sym_restrict] = ACTIONS(650), + [anon_sym_volatile] = ACTIONS(650), + [anon_sym__Atomic] = ACTIONS(650), + [anon_sym_unsigned] = ACTIONS(650), + [anon_sym_long] = ACTIONS(650), + [anon_sym_short] = ACTIONS(650), + [sym_primitive_type] = ACTIONS(650), + [anon_sym_enum] = ACTIONS(650), + [anon_sym_struct] = ACTIONS(650), + [anon_sym_union] = ACTIONS(650), + [anon_sym_COLON] = ACTIONS(648), + [anon_sym_QMARK] = ACTIONS(648), + [anon_sym_STAR_EQ] = ACTIONS(648), + [anon_sym_SLASH_EQ] = ACTIONS(648), + [anon_sym_PERCENT_EQ] = ACTIONS(648), + [anon_sym_PLUS_EQ] = ACTIONS(648), + [anon_sym_DASH_EQ] = ACTIONS(648), + [anon_sym_LT_LT_EQ] = ACTIONS(648), + [anon_sym_GT_GT_EQ] = ACTIONS(648), + [anon_sym_AMP_EQ] = ACTIONS(648), + [anon_sym_CARET_EQ] = ACTIONS(648), + [anon_sym_PIPE_EQ] = ACTIONS(648), + [anon_sym_AMP] = ACTIONS(650), + [anon_sym_PIPE_PIPE] = ACTIONS(648), + [anon_sym_AMP_AMP] = ACTIONS(648), + [anon_sym_PIPE] = ACTIONS(650), + [anon_sym_CARET] = ACTIONS(650), + [anon_sym_EQ_EQ] = ACTIONS(648), + [anon_sym_BANG_EQ] = ACTIONS(648), + [anon_sym_LT] = ACTIONS(650), + [anon_sym_GT] = ACTIONS(650), + [anon_sym_LT_EQ] = ACTIONS(648), + [anon_sym_GT_EQ] = ACTIONS(648), + [anon_sym_LT_LT] = ACTIONS(650), + [anon_sym_GT_GT] = ACTIONS(650), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_DASH] = ACTIONS(650), + [anon_sym_SLASH] = ACTIONS(650), + [anon_sym_PERCENT] = ACTIONS(650), + [anon_sym_DASH_DASH] = ACTIONS(648), + [anon_sym_PLUS_PLUS] = ACTIONS(648), + [anon_sym_DOT] = ACTIONS(648), + [anon_sym_DASH_GT] = ACTIONS(648), + [anon_sym_DQUOTE] = ACTIONS(648), + [sym_identifier] = ACTIONS(650), [sym_comment] = ACTIONS(39), }, [136] = { [aux_sym_string_literal_repeat1] = STATE(136), - [anon_sym_DQUOTE] = ACTIONS(656), - [aux_sym_SLASH_LBRACK_CARET_BSLASH_BSLASH_DQUOTE_BSLASHn_RBRACK_SLASH] = ACTIONS(658), - [sym_escape_sequence] = ACTIONS(661), + [anon_sym_DQUOTE] = ACTIONS(652), + [aux_sym_SLASH_LBRACK_CARET_BSLASH_BSLASH_DQUOTE_BSLASHn_RBRACK_SLASH] = ACTIONS(654), + [sym_escape_sequence] = ACTIONS(654), [sym_comment] = ACTIONS(49), }, [137] = { [aux_sym_preproc_params_repeat1] = STATE(282), - [anon_sym_COMMA] = ACTIONS(664), - [anon_sym_RPAREN] = ACTIONS(666), + [anon_sym_COMMA] = ACTIONS(657), + [anon_sym_RPAREN] = ACTIONS(659), [sym_comment] = ACTIONS(39), }, [138] = { - [anon_sym_LF] = ACTIONS(668), - [sym_preproc_arg] = ACTIONS(668), + [anon_sym_LF] = ACTIONS(661), + [sym_preproc_arg] = ACTIONS(661), [sym_comment] = ACTIONS(49), }, [139] = { - [ts_builtin_sym_end] = ACTIONS(670), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(672), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(672), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(672), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(672), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(672), - [sym_preproc_directive] = ACTIONS(672), - [anon_sym_SEMI] = ACTIONS(670), - [anon_sym_typedef] = ACTIONS(672), - [anon_sym_extern] = ACTIONS(672), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_RBRACE] = ACTIONS(670), - [anon_sym_LPAREN2] = ACTIONS(670), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_static] = ACTIONS(672), - [anon_sym_auto] = ACTIONS(672), - [anon_sym_register] = ACTIONS(672), - [anon_sym_inline] = ACTIONS(672), - [anon_sym_const] = ACTIONS(672), - [anon_sym_restrict] = ACTIONS(672), - [anon_sym_volatile] = ACTIONS(672), - [anon_sym__Atomic] = ACTIONS(672), - [anon_sym_unsigned] = ACTIONS(672), - [anon_sym_long] = ACTIONS(672), - [anon_sym_short] = ACTIONS(672), - [sym_primitive_type] = ACTIONS(672), - [anon_sym_enum] = ACTIONS(672), - [anon_sym_struct] = ACTIONS(672), - [anon_sym_union] = ACTIONS(672), - [anon_sym_if] = ACTIONS(672), - [anon_sym_switch] = ACTIONS(672), - [anon_sym_case] = ACTIONS(672), - [anon_sym_default] = ACTIONS(672), - [anon_sym_while] = ACTIONS(672), - [anon_sym_do] = ACTIONS(672), - [anon_sym_for] = ACTIONS(672), - [anon_sym_return] = ACTIONS(672), - [anon_sym_break] = ACTIONS(672), - [anon_sym_continue] = ACTIONS(672), - [anon_sym_goto] = ACTIONS(672), - [anon_sym_AMP] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(670), - [anon_sym_TILDE] = ACTIONS(670), - [anon_sym_PLUS] = ACTIONS(672), - [anon_sym_DASH] = ACTIONS(672), - [anon_sym_DASH_DASH] = ACTIONS(670), - [anon_sym_PLUS_PLUS] = ACTIONS(670), - [anon_sym_sizeof] = ACTIONS(672), - [sym_number_literal] = ACTIONS(670), - [anon_sym_SQUOTE] = ACTIONS(670), - [anon_sym_DQUOTE] = ACTIONS(670), - [sym_true] = ACTIONS(672), - [sym_false] = ACTIONS(672), - [sym_null] = ACTIONS(672), - [sym_identifier] = ACTIONS(672), + [ts_builtin_sym_end] = ACTIONS(663), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(665), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(665), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(665), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(665), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(665), + [sym_preproc_directive] = ACTIONS(665), + [anon_sym_SEMI] = ACTIONS(663), + [anon_sym_typedef] = ACTIONS(665), + [anon_sym_extern] = ACTIONS(665), + [anon_sym_LBRACE] = ACTIONS(663), + [anon_sym_RBRACE] = ACTIONS(663), + [anon_sym_LPAREN2] = ACTIONS(663), + [anon_sym_STAR] = ACTIONS(663), + [anon_sym_static] = ACTIONS(665), + [anon_sym_auto] = ACTIONS(665), + [anon_sym_register] = ACTIONS(665), + [anon_sym_inline] = ACTIONS(665), + [anon_sym_const] = ACTIONS(665), + [anon_sym_restrict] = ACTIONS(665), + [anon_sym_volatile] = ACTIONS(665), + [anon_sym__Atomic] = ACTIONS(665), + [anon_sym_unsigned] = ACTIONS(665), + [anon_sym_long] = ACTIONS(665), + [anon_sym_short] = ACTIONS(665), + [sym_primitive_type] = ACTIONS(665), + [anon_sym_enum] = ACTIONS(665), + [anon_sym_struct] = ACTIONS(665), + [anon_sym_union] = ACTIONS(665), + [anon_sym_if] = ACTIONS(665), + [anon_sym_switch] = ACTIONS(665), + [anon_sym_case] = ACTIONS(665), + [anon_sym_default] = ACTIONS(665), + [anon_sym_while] = ACTIONS(665), + [anon_sym_do] = ACTIONS(665), + [anon_sym_for] = ACTIONS(665), + [anon_sym_return] = ACTIONS(665), + [anon_sym_break] = ACTIONS(665), + [anon_sym_continue] = ACTIONS(665), + [anon_sym_goto] = ACTIONS(665), + [anon_sym_AMP] = ACTIONS(663), + [anon_sym_BANG] = ACTIONS(663), + [anon_sym_TILDE] = ACTIONS(663), + [anon_sym_PLUS] = ACTIONS(665), + [anon_sym_DASH] = ACTIONS(665), + [anon_sym_DASH_DASH] = ACTIONS(663), + [anon_sym_PLUS_PLUS] = ACTIONS(663), + [anon_sym_sizeof] = ACTIONS(665), + [sym_number_literal] = ACTIONS(663), + [anon_sym_SQUOTE] = ACTIONS(663), + [anon_sym_DQUOTE] = ACTIONS(663), + [sym_true] = ACTIONS(665), + [sym_false] = ACTIONS(665), + [sym_null] = ACTIONS(665), + [sym_identifier] = ACTIONS(665), [sym_comment] = ACTIONS(39), }, [140] = { - [ts_builtin_sym_end] = ACTIONS(674), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(676), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(676), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(676), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(676), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(676), - [sym_preproc_directive] = ACTIONS(676), - [anon_sym_SEMI] = ACTIONS(674), - [anon_sym_typedef] = ACTIONS(676), - [anon_sym_extern] = ACTIONS(676), - [anon_sym_LBRACE] = ACTIONS(674), - [anon_sym_RBRACE] = ACTIONS(674), - [anon_sym_LPAREN2] = ACTIONS(674), - [anon_sym_STAR] = ACTIONS(674), - [anon_sym_static] = ACTIONS(676), - [anon_sym_auto] = ACTIONS(676), - [anon_sym_register] = ACTIONS(676), - [anon_sym_inline] = ACTIONS(676), - [anon_sym_const] = ACTIONS(676), - [anon_sym_restrict] = ACTIONS(676), - [anon_sym_volatile] = ACTIONS(676), - [anon_sym__Atomic] = ACTIONS(676), - [anon_sym_unsigned] = ACTIONS(676), - [anon_sym_long] = ACTIONS(676), - [anon_sym_short] = ACTIONS(676), - [sym_primitive_type] = ACTIONS(676), - [anon_sym_enum] = ACTIONS(676), - [anon_sym_struct] = ACTIONS(676), - [anon_sym_union] = ACTIONS(676), - [anon_sym_if] = ACTIONS(676), - [anon_sym_switch] = ACTIONS(676), - [anon_sym_case] = ACTIONS(676), - [anon_sym_default] = ACTIONS(676), - [anon_sym_while] = ACTIONS(676), - [anon_sym_do] = ACTIONS(676), - [anon_sym_for] = ACTIONS(676), - [anon_sym_return] = ACTIONS(676), - [anon_sym_break] = ACTIONS(676), - [anon_sym_continue] = ACTIONS(676), - [anon_sym_goto] = ACTIONS(676), - [anon_sym_AMP] = ACTIONS(674), - [anon_sym_BANG] = ACTIONS(674), - [anon_sym_TILDE] = ACTIONS(674), - [anon_sym_PLUS] = ACTIONS(676), - [anon_sym_DASH] = ACTIONS(676), - [anon_sym_DASH_DASH] = ACTIONS(674), - [anon_sym_PLUS_PLUS] = ACTIONS(674), - [anon_sym_sizeof] = ACTIONS(676), - [sym_number_literal] = ACTIONS(674), - [anon_sym_SQUOTE] = ACTIONS(674), - [anon_sym_DQUOTE] = ACTIONS(674), - [sym_true] = ACTIONS(676), - [sym_false] = ACTIONS(676), - [sym_null] = ACTIONS(676), - [sym_identifier] = ACTIONS(676), + [ts_builtin_sym_end] = ACTIONS(667), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(669), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(669), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(669), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(669), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(669), + [sym_preproc_directive] = ACTIONS(669), + [anon_sym_SEMI] = ACTIONS(667), + [anon_sym_typedef] = ACTIONS(669), + [anon_sym_extern] = ACTIONS(669), + [anon_sym_LBRACE] = ACTIONS(667), + [anon_sym_RBRACE] = ACTIONS(667), + [anon_sym_LPAREN2] = ACTIONS(667), + [anon_sym_STAR] = ACTIONS(667), + [anon_sym_static] = ACTIONS(669), + [anon_sym_auto] = ACTIONS(669), + [anon_sym_register] = ACTIONS(669), + [anon_sym_inline] = ACTIONS(669), + [anon_sym_const] = ACTIONS(669), + [anon_sym_restrict] = ACTIONS(669), + [anon_sym_volatile] = ACTIONS(669), + [anon_sym__Atomic] = ACTIONS(669), + [anon_sym_unsigned] = ACTIONS(669), + [anon_sym_long] = ACTIONS(669), + [anon_sym_short] = ACTIONS(669), + [sym_primitive_type] = ACTIONS(669), + [anon_sym_enum] = ACTIONS(669), + [anon_sym_struct] = ACTIONS(669), + [anon_sym_union] = ACTIONS(669), + [anon_sym_if] = ACTIONS(669), + [anon_sym_switch] = ACTIONS(669), + [anon_sym_case] = ACTIONS(669), + [anon_sym_default] = ACTIONS(669), + [anon_sym_while] = ACTIONS(669), + [anon_sym_do] = ACTIONS(669), + [anon_sym_for] = ACTIONS(669), + [anon_sym_return] = ACTIONS(669), + [anon_sym_break] = ACTIONS(669), + [anon_sym_continue] = ACTIONS(669), + [anon_sym_goto] = ACTIONS(669), + [anon_sym_AMP] = ACTIONS(667), + [anon_sym_BANG] = ACTIONS(667), + [anon_sym_TILDE] = ACTIONS(667), + [anon_sym_PLUS] = ACTIONS(669), + [anon_sym_DASH] = ACTIONS(669), + [anon_sym_DASH_DASH] = ACTIONS(667), + [anon_sym_PLUS_PLUS] = ACTIONS(667), + [anon_sym_sizeof] = ACTIONS(669), + [sym_number_literal] = ACTIONS(667), + [anon_sym_SQUOTE] = ACTIONS(667), + [anon_sym_DQUOTE] = ACTIONS(667), + [sym_true] = ACTIONS(669), + [sym_false] = ACTIONS(669), + [sym_null] = ACTIONS(669), + [sym_identifier] = ACTIONS(669), [sym_comment] = ACTIONS(39), }, [141] = { - [anon_sym_LF] = ACTIONS(678), + [anon_sym_LF] = ACTIONS(671), [sym_comment] = ACTIONS(49), }, [142] = { [aux_sym_string_literal_repeat1] = STATE(285), - [anon_sym_DQUOTE] = ACTIONS(680), - [aux_sym_SLASH_LBRACK_CARET_BSLASH_BSLASH_DQUOTE_BSLASHn_RBRACK_SLASH] = ACTIONS(682), - [sym_escape_sequence] = ACTIONS(684), + [anon_sym_DQUOTE] = ACTIONS(673), + [aux_sym_SLASH_LBRACK_CARET_BSLASH_BSLASH_DQUOTE_BSLASHn_RBRACK_SLASH] = ACTIONS(675), + [sym_escape_sequence] = ACTIONS(675), [sym_comment] = ACTIONS(49), }, [143] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(125), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(125), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(125), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(125), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(125), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(125), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(125), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(125), - [sym_preproc_directive] = ACTIONS(125), - [anon_sym_SEMI] = ACTIONS(123), - [anon_sym_typedef] = ACTIONS(125), - [anon_sym_extern] = ACTIONS(125), - [anon_sym_LBRACE] = ACTIONS(123), - [anon_sym_LPAREN2] = ACTIONS(123), - [anon_sym_STAR] = ACTIONS(123), - [anon_sym_static] = ACTIONS(125), - [anon_sym_auto] = ACTIONS(125), - [anon_sym_register] = ACTIONS(125), - [anon_sym_inline] = ACTIONS(125), - [anon_sym_const] = ACTIONS(125), - [anon_sym_restrict] = ACTIONS(125), - [anon_sym_volatile] = ACTIONS(125), - [anon_sym__Atomic] = ACTIONS(125), - [anon_sym_unsigned] = ACTIONS(125), - [anon_sym_long] = ACTIONS(125), - [anon_sym_short] = ACTIONS(125), - [sym_primitive_type] = ACTIONS(125), - [anon_sym_enum] = ACTIONS(125), - [anon_sym_struct] = ACTIONS(125), - [anon_sym_union] = ACTIONS(125), - [anon_sym_if] = ACTIONS(125), - [anon_sym_switch] = ACTIONS(125), - [anon_sym_case] = ACTIONS(125), - [anon_sym_default] = ACTIONS(125), - [anon_sym_while] = ACTIONS(125), - [anon_sym_do] = ACTIONS(125), - [anon_sym_for] = ACTIONS(125), - [anon_sym_return] = ACTIONS(125), - [anon_sym_break] = ACTIONS(125), - [anon_sym_continue] = ACTIONS(125), - [anon_sym_goto] = ACTIONS(125), - [anon_sym_AMP] = ACTIONS(123), - [anon_sym_BANG] = ACTIONS(123), - [anon_sym_TILDE] = ACTIONS(123), - [anon_sym_PLUS] = ACTIONS(125), - [anon_sym_DASH] = ACTIONS(125), - [anon_sym_DASH_DASH] = ACTIONS(123), - [anon_sym_PLUS_PLUS] = ACTIONS(123), - [anon_sym_sizeof] = ACTIONS(125), - [sym_number_literal] = ACTIONS(123), - [anon_sym_SQUOTE] = ACTIONS(123), - [anon_sym_DQUOTE] = ACTIONS(123), - [sym_true] = ACTIONS(125), - [sym_false] = ACTIONS(125), - [sym_null] = ACTIONS(125), - [sym_identifier] = ACTIONS(125), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(123), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(123), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(123), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(123), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(123), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(123), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(123), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(123), + [sym_preproc_directive] = ACTIONS(123), + [anon_sym_SEMI] = ACTIONS(121), + [anon_sym_typedef] = ACTIONS(123), + [anon_sym_extern] = ACTIONS(123), + [anon_sym_LBRACE] = ACTIONS(121), + [anon_sym_LPAREN2] = ACTIONS(121), + [anon_sym_STAR] = ACTIONS(121), + [anon_sym_static] = ACTIONS(123), + [anon_sym_auto] = ACTIONS(123), + [anon_sym_register] = ACTIONS(123), + [anon_sym_inline] = ACTIONS(123), + [anon_sym_const] = ACTIONS(123), + [anon_sym_restrict] = ACTIONS(123), + [anon_sym_volatile] = ACTIONS(123), + [anon_sym__Atomic] = ACTIONS(123), + [anon_sym_unsigned] = ACTIONS(123), + [anon_sym_long] = ACTIONS(123), + [anon_sym_short] = ACTIONS(123), + [sym_primitive_type] = ACTIONS(123), + [anon_sym_enum] = ACTIONS(123), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_union] = ACTIONS(123), + [anon_sym_if] = ACTIONS(123), + [anon_sym_switch] = ACTIONS(123), + [anon_sym_case] = ACTIONS(123), + [anon_sym_default] = ACTIONS(123), + [anon_sym_while] = ACTIONS(123), + [anon_sym_do] = ACTIONS(123), + [anon_sym_for] = ACTIONS(123), + [anon_sym_return] = ACTIONS(123), + [anon_sym_break] = ACTIONS(123), + [anon_sym_continue] = ACTIONS(123), + [anon_sym_goto] = ACTIONS(123), + [anon_sym_AMP] = ACTIONS(121), + [anon_sym_BANG] = ACTIONS(121), + [anon_sym_TILDE] = ACTIONS(121), + [anon_sym_PLUS] = ACTIONS(123), + [anon_sym_DASH] = ACTIONS(123), + [anon_sym_DASH_DASH] = ACTIONS(121), + [anon_sym_PLUS_PLUS] = ACTIONS(121), + [anon_sym_sizeof] = ACTIONS(123), + [sym_number_literal] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_DQUOTE] = ACTIONS(121), + [sym_true] = ACTIONS(123), + [sym_false] = ACTIONS(123), + [sym_null] = ACTIONS(123), + [sym_identifier] = ACTIONS(123), [sym_comment] = ACTIONS(39), }, [144] = { [sym_preproc_params] = STATE(288), - [anon_sym_LF] = ACTIONS(686), - [anon_sym_LPAREN] = ACTIONS(129), - [sym_preproc_arg] = ACTIONS(688), + [anon_sym_LF] = ACTIONS(677), + [anon_sym_LPAREN] = ACTIONS(127), + [sym_preproc_arg] = ACTIONS(679), [sym_comment] = ACTIONS(49), }, [145] = { @@ -9460,17 +9479,17 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_translation_unit_repeat1] = STATE(291), [aux_sym__declaration_specifiers_repeat1] = STATE(20), [aux_sym_sized_type_specifier_repeat1] = STATE(21), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(133), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(135), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(137), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(690), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(141), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(143), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(145), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(147), - [sym_preproc_directive] = ACTIONS(149), - [anon_sym_typedef] = ACTIONS(151), - [anon_sym_extern] = ACTIONS(153), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(131), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(133), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(135), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(681), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(139), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(141), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(143), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(145), + [sym_preproc_directive] = ACTIONS(147), + [anon_sym_typedef] = ACTIONS(149), + [anon_sym_extern] = ACTIONS(151), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -9515,17 +9534,17 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_translation_unit_repeat1] = STATE(294), [aux_sym__declaration_specifiers_repeat1] = STATE(20), [aux_sym_sized_type_specifier_repeat1] = STATE(21), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(133), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(135), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(137), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(692), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(141), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(143), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(145), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(147), - [sym_preproc_directive] = ACTIONS(149), - [anon_sym_typedef] = ACTIONS(151), - [anon_sym_extern] = ACTIONS(153), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(131), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(133), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(135), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(683), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(139), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(141), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(143), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(145), + [sym_preproc_directive] = ACTIONS(147), + [anon_sym_typedef] = ACTIONS(149), + [anon_sym_extern] = ACTIONS(151), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -9570,17 +9589,17 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_translation_unit_repeat1] = STATE(297), [aux_sym__declaration_specifiers_repeat1] = STATE(20), [aux_sym_sized_type_specifier_repeat1] = STATE(21), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(133), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(135), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(137), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(694), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(141), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(143), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(145), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(147), - [sym_preproc_directive] = ACTIONS(149), - [anon_sym_typedef] = ACTIONS(151), - [anon_sym_extern] = ACTIONS(153), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(131), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(133), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(135), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(685), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(139), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(141), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(143), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(145), + [sym_preproc_directive] = ACTIONS(147), + [anon_sym_typedef] = ACTIONS(149), + [anon_sym_extern] = ACTIONS(151), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -9601,29 +9620,29 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { }, [148] = { [sym_string_literal] = STATE(299), - [anon_sym_DQUOTE] = ACTIONS(696), - [sym_system_lib_string] = ACTIONS(698), + [anon_sym_DQUOTE] = ACTIONS(687), + [sym_system_lib_string] = ACTIONS(689), [sym_comment] = ACTIONS(39), }, [149] = { - [sym_identifier] = ACTIONS(700), + [sym_identifier] = ACTIONS(691), [sym_comment] = ACTIONS(39), }, [150] = { - [sym_preproc_arg] = ACTIONS(702), + [sym_preproc_arg] = ACTIONS(693), [sym_comment] = ACTIONS(49), }, [151] = { - [sym_identifier] = ACTIONS(704), + [sym_identifier] = ACTIONS(695), [sym_comment] = ACTIONS(39), }, [152] = { - [sym_identifier] = ACTIONS(706), + [sym_identifier] = ACTIONS(697), [sym_comment] = ACTIONS(39), }, [153] = { - [anon_sym_LF] = ACTIONS(708), - [sym_preproc_arg] = ACTIONS(710), + [anon_sym_LF] = ACTIONS(699), + [sym_preproc_arg] = ACTIONS(701), [sym_comment] = ACTIONS(49), }, [154] = { @@ -9643,7 +9662,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(712), + [sym_primitive_type] = ACTIONS(703), [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), @@ -9678,10 +9697,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_function_declarator] = STATE(310), [sym_array_declarator] = STATE(310), [sym_init_declarator] = STATE(311), - [anon_sym_SEMI] = ACTIONS(714), + [anon_sym_SEMI] = ACTIONS(705), [anon_sym_LPAREN2] = ACTIONS(92), [anon_sym_STAR] = ACTIONS(94), - [sym_identifier] = ACTIONS(716), + [sym_identifier] = ACTIONS(707), [sym_comment] = ACTIONS(39), }, [157] = { @@ -9708,15 +9727,15 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_translation_unit_repeat1] = STATE(312), [aux_sym__declaration_specifiers_repeat1] = STATE(20), [aux_sym_sized_type_specifier_repeat1] = STATE(21), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(366), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(368), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(370), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(718), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(374), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(376), - [sym_preproc_directive] = ACTIONS(378), - [anon_sym_typedef] = ACTIONS(380), - [anon_sym_extern] = ACTIONS(382), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(362), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(364), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(366), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(709), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(370), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(372), + [sym_preproc_directive] = ACTIONS(374), + [anon_sym_typedef] = ACTIONS(376), + [anon_sym_extern] = ACTIONS(378), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -9761,17 +9780,17 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_translation_unit_repeat1] = STATE(314), [aux_sym__declaration_specifiers_repeat1] = STATE(20), [aux_sym_sized_type_specifier_repeat1] = STATE(21), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(133), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(135), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(137), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(720), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(141), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(143), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(145), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(147), - [sym_preproc_directive] = ACTIONS(149), - [anon_sym_typedef] = ACTIONS(151), - [anon_sym_extern] = ACTIONS(153), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(131), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(133), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(135), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(711), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(139), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(141), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(143), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(145), + [sym_preproc_directive] = ACTIONS(147), + [anon_sym_typedef] = ACTIONS(149), + [anon_sym_extern] = ACTIONS(151), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -9791,66 +9810,66 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(39), }, [159] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(161), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(161), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(161), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(161), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(161), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(161), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(161), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(161), - [sym_preproc_directive] = ACTIONS(161), - [anon_sym_SEMI] = ACTIONS(159), - [anon_sym_typedef] = ACTIONS(161), - [anon_sym_extern] = ACTIONS(161), - [anon_sym_LBRACE] = ACTIONS(159), - [anon_sym_LPAREN2] = ACTIONS(159), - [anon_sym_STAR] = ACTIONS(159), - [anon_sym_static] = ACTIONS(161), - [anon_sym_auto] = ACTIONS(161), - [anon_sym_register] = ACTIONS(161), - [anon_sym_inline] = ACTIONS(161), - [anon_sym_const] = ACTIONS(161), - [anon_sym_restrict] = ACTIONS(161), - [anon_sym_volatile] = ACTIONS(161), - [anon_sym__Atomic] = ACTIONS(161), - [anon_sym_unsigned] = ACTIONS(161), - [anon_sym_long] = ACTIONS(161), - [anon_sym_short] = ACTIONS(161), - [sym_primitive_type] = ACTIONS(161), - [anon_sym_enum] = ACTIONS(161), - [anon_sym_struct] = ACTIONS(161), - [anon_sym_union] = ACTIONS(161), - [anon_sym_if] = ACTIONS(161), - [anon_sym_switch] = ACTIONS(161), - [anon_sym_case] = ACTIONS(161), - [anon_sym_default] = ACTIONS(161), - [anon_sym_while] = ACTIONS(161), - [anon_sym_do] = ACTIONS(161), - [anon_sym_for] = ACTIONS(161), - [anon_sym_return] = ACTIONS(161), - [anon_sym_break] = ACTIONS(161), - [anon_sym_continue] = ACTIONS(161), - [anon_sym_goto] = ACTIONS(161), - [anon_sym_AMP] = ACTIONS(159), - [anon_sym_BANG] = ACTIONS(159), - [anon_sym_TILDE] = ACTIONS(159), - [anon_sym_PLUS] = ACTIONS(161), - [anon_sym_DASH] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(159), - [anon_sym_PLUS_PLUS] = ACTIONS(159), - [anon_sym_sizeof] = ACTIONS(161), - [sym_number_literal] = ACTIONS(159), - [anon_sym_SQUOTE] = ACTIONS(159), - [anon_sym_DQUOTE] = ACTIONS(159), - [sym_true] = ACTIONS(161), - [sym_false] = ACTIONS(161), - [sym_null] = ACTIONS(161), - [sym_identifier] = ACTIONS(161), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(159), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(159), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(159), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(159), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(159), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(159), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(159), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(159), + [sym_preproc_directive] = ACTIONS(159), + [anon_sym_SEMI] = ACTIONS(157), + [anon_sym_typedef] = ACTIONS(159), + [anon_sym_extern] = ACTIONS(159), + [anon_sym_LBRACE] = ACTIONS(157), + [anon_sym_LPAREN2] = ACTIONS(157), + [anon_sym_STAR] = ACTIONS(157), + [anon_sym_static] = ACTIONS(159), + [anon_sym_auto] = ACTIONS(159), + [anon_sym_register] = ACTIONS(159), + [anon_sym_inline] = ACTIONS(159), + [anon_sym_const] = ACTIONS(159), + [anon_sym_restrict] = ACTIONS(159), + [anon_sym_volatile] = ACTIONS(159), + [anon_sym__Atomic] = ACTIONS(159), + [anon_sym_unsigned] = ACTIONS(159), + [anon_sym_long] = ACTIONS(159), + [anon_sym_short] = ACTIONS(159), + [sym_primitive_type] = ACTIONS(159), + [anon_sym_enum] = ACTIONS(159), + [anon_sym_struct] = ACTIONS(159), + [anon_sym_union] = ACTIONS(159), + [anon_sym_if] = ACTIONS(159), + [anon_sym_switch] = ACTIONS(159), + [anon_sym_case] = ACTIONS(159), + [anon_sym_default] = ACTIONS(159), + [anon_sym_while] = ACTIONS(159), + [anon_sym_do] = ACTIONS(159), + [anon_sym_for] = ACTIONS(159), + [anon_sym_return] = ACTIONS(159), + [anon_sym_break] = ACTIONS(159), + [anon_sym_continue] = ACTIONS(159), + [anon_sym_goto] = ACTIONS(159), + [anon_sym_AMP] = ACTIONS(157), + [anon_sym_BANG] = ACTIONS(157), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(159), + [anon_sym_DASH] = ACTIONS(159), + [anon_sym_DASH_DASH] = ACTIONS(157), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_sizeof] = ACTIONS(159), + [sym_number_literal] = ACTIONS(157), + [anon_sym_SQUOTE] = ACTIONS(157), + [anon_sym_DQUOTE] = ACTIONS(157), + [sym_true] = ACTIONS(159), + [sym_false] = ACTIONS(159), + [sym_null] = ACTIONS(159), + [sym_identifier] = ACTIONS(159), [sym_comment] = ACTIONS(39), }, [160] = { - [anon_sym_LF] = ACTIONS(722), + [anon_sym_LF] = ACTIONS(713), [sym_comment] = ACTIONS(49), }, [161] = { @@ -9858,9 +9877,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_pointer_type_declarator] = STATE(86), [sym_function_type_declarator] = STATE(87), [sym_array_type_declarator] = STATE(88), - [anon_sym_LPAREN2] = ACTIONS(165), - [anon_sym_STAR] = ACTIONS(167), - [sym_identifier] = ACTIONS(169), + [anon_sym_LPAREN2] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(165), + [sym_identifier] = ACTIONS(167), [sym_comment] = ACTIONS(39), }, [162] = { @@ -9880,7 +9899,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(724), + [sym_primitive_type] = ACTIONS(715), [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), @@ -9903,7 +9922,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__declaration_specifiers_repeat1] = STATE(96), [aux_sym_sized_type_specifier_repeat1] = STATE(97), [anon_sym_extern] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(726), + [anon_sym_LBRACE] = ACTIONS(717), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -9912,10 +9931,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_restrict] = ACTIONS(25), [anon_sym_volatile] = ACTIONS(25), [anon_sym__Atomic] = ACTIONS(25), - [anon_sym_unsigned] = ACTIONS(177), - [anon_sym_long] = ACTIONS(177), - [anon_sym_short] = ACTIONS(177), - [sym_primitive_type] = ACTIONS(179), + [anon_sym_unsigned] = ACTIONS(175), + [anon_sym_long] = ACTIONS(175), + [anon_sym_short] = ACTIONS(175), + [sym_primitive_type] = ACTIONS(177), [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), @@ -9923,113 +9942,113 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(39), }, [164] = { - [ts_builtin_sym_end] = ACTIONS(728), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(730), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(730), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(730), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(730), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(730), - [sym_preproc_directive] = ACTIONS(730), - [anon_sym_typedef] = ACTIONS(730), - [anon_sym_extern] = ACTIONS(730), - [anon_sym_RBRACE] = ACTIONS(728), - [anon_sym_static] = ACTIONS(730), - [anon_sym_auto] = ACTIONS(730), - [anon_sym_register] = ACTIONS(730), - [anon_sym_inline] = ACTIONS(730), - [anon_sym_const] = ACTIONS(730), - [anon_sym_restrict] = ACTIONS(730), - [anon_sym_volatile] = ACTIONS(730), - [anon_sym__Atomic] = ACTIONS(730), - [anon_sym_unsigned] = ACTIONS(730), - [anon_sym_long] = ACTIONS(730), - [anon_sym_short] = ACTIONS(730), - [sym_primitive_type] = ACTIONS(730), - [anon_sym_enum] = ACTIONS(730), - [anon_sym_struct] = ACTIONS(730), - [anon_sym_union] = ACTIONS(730), - [sym_identifier] = ACTIONS(730), + [ts_builtin_sym_end] = ACTIONS(719), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(721), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(721), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(721), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(721), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(721), + [sym_preproc_directive] = ACTIONS(721), + [anon_sym_typedef] = ACTIONS(721), + [anon_sym_extern] = ACTIONS(721), + [anon_sym_RBRACE] = ACTIONS(719), + [anon_sym_static] = ACTIONS(721), + [anon_sym_auto] = ACTIONS(721), + [anon_sym_register] = ACTIONS(721), + [anon_sym_inline] = ACTIONS(721), + [anon_sym_const] = ACTIONS(721), + [anon_sym_restrict] = ACTIONS(721), + [anon_sym_volatile] = ACTIONS(721), + [anon_sym__Atomic] = ACTIONS(721), + [anon_sym_unsigned] = ACTIONS(721), + [anon_sym_long] = ACTIONS(721), + [anon_sym_short] = ACTIONS(721), + [sym_primitive_type] = ACTIONS(721), + [anon_sym_enum] = ACTIONS(721), + [anon_sym_struct] = ACTIONS(721), + [anon_sym_union] = ACTIONS(721), + [sym_identifier] = ACTIONS(721), [sym_comment] = ACTIONS(39), }, [165] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(229), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(229), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(229), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(229), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(229), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(229), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(229), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(229), - [sym_preproc_directive] = ACTIONS(229), - [anon_sym_SEMI] = ACTIONS(227), - [anon_sym_typedef] = ACTIONS(229), - [anon_sym_extern] = ACTIONS(229), - [anon_sym_LBRACE] = ACTIONS(227), - [anon_sym_LPAREN2] = ACTIONS(227), - [anon_sym_STAR] = ACTIONS(227), - [anon_sym_static] = ACTIONS(229), - [anon_sym_auto] = ACTIONS(229), - [anon_sym_register] = ACTIONS(229), - [anon_sym_inline] = ACTIONS(229), - [anon_sym_const] = ACTIONS(229), - [anon_sym_restrict] = ACTIONS(229), - [anon_sym_volatile] = ACTIONS(229), - [anon_sym__Atomic] = ACTIONS(229), - [anon_sym_unsigned] = ACTIONS(229), - [anon_sym_long] = ACTIONS(229), - [anon_sym_short] = ACTIONS(229), - [sym_primitive_type] = ACTIONS(229), - [anon_sym_enum] = ACTIONS(229), - [anon_sym_struct] = ACTIONS(229), - [anon_sym_union] = ACTIONS(229), - [anon_sym_if] = ACTIONS(229), - [anon_sym_switch] = ACTIONS(229), - [anon_sym_case] = ACTIONS(229), - [anon_sym_default] = ACTIONS(229), - [anon_sym_while] = ACTIONS(229), - [anon_sym_do] = ACTIONS(229), - [anon_sym_for] = ACTIONS(229), - [anon_sym_return] = ACTIONS(229), - [anon_sym_break] = ACTIONS(229), - [anon_sym_continue] = ACTIONS(229), - [anon_sym_goto] = ACTIONS(229), - [anon_sym_AMP] = ACTIONS(227), - [anon_sym_BANG] = ACTIONS(227), - [anon_sym_TILDE] = ACTIONS(227), - [anon_sym_PLUS] = ACTIONS(229), - [anon_sym_DASH] = ACTIONS(229), - [anon_sym_DASH_DASH] = ACTIONS(227), - [anon_sym_PLUS_PLUS] = ACTIONS(227), - [anon_sym_sizeof] = ACTIONS(229), - [sym_number_literal] = ACTIONS(227), - [anon_sym_SQUOTE] = ACTIONS(227), - [anon_sym_DQUOTE] = ACTIONS(227), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [sym_null] = ACTIONS(229), - [sym_identifier] = ACTIONS(229), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(227), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(227), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(227), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(227), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(227), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(227), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(227), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(227), + [sym_preproc_directive] = ACTIONS(227), + [anon_sym_SEMI] = ACTIONS(225), + [anon_sym_typedef] = ACTIONS(227), + [anon_sym_extern] = ACTIONS(227), + [anon_sym_LBRACE] = ACTIONS(225), + [anon_sym_LPAREN2] = ACTIONS(225), + [anon_sym_STAR] = ACTIONS(225), + [anon_sym_static] = ACTIONS(227), + [anon_sym_auto] = ACTIONS(227), + [anon_sym_register] = ACTIONS(227), + [anon_sym_inline] = ACTIONS(227), + [anon_sym_const] = ACTIONS(227), + [anon_sym_restrict] = ACTIONS(227), + [anon_sym_volatile] = ACTIONS(227), + [anon_sym__Atomic] = ACTIONS(227), + [anon_sym_unsigned] = ACTIONS(227), + [anon_sym_long] = ACTIONS(227), + [anon_sym_short] = ACTIONS(227), + [sym_primitive_type] = ACTIONS(227), + [anon_sym_enum] = ACTIONS(227), + [anon_sym_struct] = ACTIONS(227), + [anon_sym_union] = ACTIONS(227), + [anon_sym_if] = ACTIONS(227), + [anon_sym_switch] = ACTIONS(227), + [anon_sym_case] = ACTIONS(227), + [anon_sym_default] = ACTIONS(227), + [anon_sym_while] = ACTIONS(227), + [anon_sym_do] = ACTIONS(227), + [anon_sym_for] = ACTIONS(227), + [anon_sym_return] = ACTIONS(227), + [anon_sym_break] = ACTIONS(227), + [anon_sym_continue] = ACTIONS(227), + [anon_sym_goto] = ACTIONS(227), + [anon_sym_AMP] = ACTIONS(225), + [anon_sym_BANG] = ACTIONS(225), + [anon_sym_TILDE] = ACTIONS(225), + [anon_sym_PLUS] = ACTIONS(227), + [anon_sym_DASH] = ACTIONS(227), + [anon_sym_DASH_DASH] = ACTIONS(225), + [anon_sym_PLUS_PLUS] = ACTIONS(225), + [anon_sym_sizeof] = ACTIONS(227), + [sym_number_literal] = ACTIONS(225), + [anon_sym_SQUOTE] = ACTIONS(225), + [anon_sym_DQUOTE] = ACTIONS(225), + [sym_true] = ACTIONS(227), + [sym_false] = ACTIONS(227), + [sym_null] = ACTIONS(227), + [sym_identifier] = ACTIONS(227), [sym_comment] = ACTIONS(39), }, [166] = { [sym_compound_statement] = STATE(323), [sym_parameter_list] = STATE(131), [aux_sym_declaration_repeat1] = STATE(324), - [anon_sym_COMMA] = ACTIONS(237), - [anon_sym_SEMI] = ACTIONS(732), - [anon_sym_LBRACE] = ACTIONS(734), - [anon_sym_LPAREN2] = ACTIONS(243), - [anon_sym_LBRACK] = ACTIONS(245), - [anon_sym_EQ] = ACTIONS(247), + [anon_sym_COMMA] = ACTIONS(235), + [anon_sym_SEMI] = ACTIONS(723), + [anon_sym_LBRACE] = ACTIONS(725), + [anon_sym_LPAREN2] = ACTIONS(241), + [anon_sym_LBRACK] = ACTIONS(243), + [anon_sym_EQ] = ACTIONS(245), [sym_comment] = ACTIONS(39), }, [167] = { [aux_sym_declaration_repeat1] = STATE(324), - [anon_sym_COMMA] = ACTIONS(237), - [anon_sym_SEMI] = ACTIONS(732), + [anon_sym_COMMA] = ACTIONS(235), + [anon_sym_SEMI] = ACTIONS(723), [sym_comment] = ACTIONS(39), }, [168] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(736), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(727), [sym_comment] = ACTIONS(39), }, [169] = { @@ -10056,99 +10075,99 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_translation_unit_repeat1] = STATE(169), [aux_sym__declaration_specifiers_repeat1] = STATE(20), [aux_sym_sized_type_specifier_repeat1] = STATE(21), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(738), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(741), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(744), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(747), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(749), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(752), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(747), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(747), - [sym_preproc_directive] = ACTIONS(755), - [anon_sym_typedef] = ACTIONS(758), - [anon_sym_extern] = ACTIONS(761), - [anon_sym_static] = ACTIONS(279), - [anon_sym_auto] = ACTIONS(279), - [anon_sym_register] = ACTIONS(279), - [anon_sym_inline] = ACTIONS(279), - [anon_sym_const] = ACTIONS(282), - [anon_sym_restrict] = ACTIONS(282), - [anon_sym_volatile] = ACTIONS(282), - [anon_sym__Atomic] = ACTIONS(282), - [anon_sym_unsigned] = ACTIONS(285), - [anon_sym_long] = ACTIONS(285), - [anon_sym_short] = ACTIONS(285), - [sym_primitive_type] = ACTIONS(288), - [anon_sym_enum] = ACTIONS(291), - [anon_sym_struct] = ACTIONS(294), - [anon_sym_union] = ACTIONS(297), - [sym_identifier] = ACTIONS(300), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(729), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(732), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(735), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(738), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(740), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(743), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(738), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(738), + [sym_preproc_directive] = ACTIONS(746), + [anon_sym_typedef] = ACTIONS(749), + [anon_sym_extern] = ACTIONS(752), + [anon_sym_static] = ACTIONS(277), + [anon_sym_auto] = ACTIONS(277), + [anon_sym_register] = ACTIONS(277), + [anon_sym_inline] = ACTIONS(277), + [anon_sym_const] = ACTIONS(280), + [anon_sym_restrict] = ACTIONS(280), + [anon_sym_volatile] = ACTIONS(280), + [anon_sym__Atomic] = ACTIONS(280), + [anon_sym_unsigned] = ACTIONS(283), + [anon_sym_long] = ACTIONS(283), + [anon_sym_short] = ACTIONS(283), + [sym_primitive_type] = ACTIONS(286), + [anon_sym_enum] = ACTIONS(289), + [anon_sym_struct] = ACTIONS(292), + [anon_sym_union] = ACTIONS(295), + [sym_identifier] = ACTIONS(298), [sym_comment] = ACTIONS(39), }, [170] = { - [ts_builtin_sym_end] = ACTIONS(764), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(766), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(766), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(766), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(766), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(766), - [sym_preproc_directive] = ACTIONS(766), - [anon_sym_typedef] = ACTIONS(766), - [anon_sym_extern] = ACTIONS(766), - [anon_sym_RBRACE] = ACTIONS(764), - [anon_sym_static] = ACTIONS(766), - [anon_sym_auto] = ACTIONS(766), - [anon_sym_register] = ACTIONS(766), - [anon_sym_inline] = ACTIONS(766), - [anon_sym_const] = ACTIONS(766), - [anon_sym_restrict] = ACTIONS(766), - [anon_sym_volatile] = ACTIONS(766), - [anon_sym__Atomic] = ACTIONS(766), - [anon_sym_unsigned] = ACTIONS(766), - [anon_sym_long] = ACTIONS(766), - [anon_sym_short] = ACTIONS(766), - [sym_primitive_type] = ACTIONS(766), - [anon_sym_enum] = ACTIONS(766), - [anon_sym_struct] = ACTIONS(766), - [anon_sym_union] = ACTIONS(766), - [sym_identifier] = ACTIONS(766), + [ts_builtin_sym_end] = ACTIONS(755), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(757), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(757), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(757), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(757), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(757), + [sym_preproc_directive] = ACTIONS(757), + [anon_sym_typedef] = ACTIONS(757), + [anon_sym_extern] = ACTIONS(757), + [anon_sym_RBRACE] = ACTIONS(755), + [anon_sym_static] = ACTIONS(757), + [anon_sym_auto] = ACTIONS(757), + [anon_sym_register] = ACTIONS(757), + [anon_sym_inline] = ACTIONS(757), + [anon_sym_const] = ACTIONS(757), + [anon_sym_restrict] = ACTIONS(757), + [anon_sym_volatile] = ACTIONS(757), + [anon_sym__Atomic] = ACTIONS(757), + [anon_sym_unsigned] = ACTIONS(757), + [anon_sym_long] = ACTIONS(757), + [anon_sym_short] = ACTIONS(757), + [sym_primitive_type] = ACTIONS(757), + [anon_sym_enum] = ACTIONS(757), + [anon_sym_struct] = ACTIONS(757), + [anon_sym_union] = ACTIONS(757), + [sym_identifier] = ACTIONS(757), [sym_comment] = ACTIONS(39), }, [171] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(768), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(759), [sym_comment] = ACTIONS(39), }, [172] = { - [ts_builtin_sym_end] = ACTIONS(770), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(772), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(772), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(772), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(772), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(772), - [sym_preproc_directive] = ACTIONS(772), - [anon_sym_typedef] = ACTIONS(772), - [anon_sym_extern] = ACTIONS(772), - [anon_sym_RBRACE] = ACTIONS(770), - [anon_sym_static] = ACTIONS(772), - [anon_sym_auto] = ACTIONS(772), - [anon_sym_register] = ACTIONS(772), - [anon_sym_inline] = ACTIONS(772), - [anon_sym_const] = ACTIONS(772), - [anon_sym_restrict] = ACTIONS(772), - [anon_sym_volatile] = ACTIONS(772), - [anon_sym__Atomic] = ACTIONS(772), - [anon_sym_unsigned] = ACTIONS(772), - [anon_sym_long] = ACTIONS(772), - [anon_sym_short] = ACTIONS(772), - [sym_primitive_type] = ACTIONS(772), - [anon_sym_enum] = ACTIONS(772), - [anon_sym_struct] = ACTIONS(772), - [anon_sym_union] = ACTIONS(772), - [sym_identifier] = ACTIONS(772), + [ts_builtin_sym_end] = ACTIONS(761), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(763), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(763), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(763), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(763), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(763), + [sym_preproc_directive] = ACTIONS(763), + [anon_sym_typedef] = ACTIONS(763), + [anon_sym_extern] = ACTIONS(763), + [anon_sym_RBRACE] = ACTIONS(761), + [anon_sym_static] = ACTIONS(763), + [anon_sym_auto] = ACTIONS(763), + [anon_sym_register] = ACTIONS(763), + [anon_sym_inline] = ACTIONS(763), + [anon_sym_const] = ACTIONS(763), + [anon_sym_restrict] = ACTIONS(763), + [anon_sym_volatile] = ACTIONS(763), + [anon_sym__Atomic] = ACTIONS(763), + [anon_sym_unsigned] = ACTIONS(763), + [anon_sym_long] = ACTIONS(763), + [anon_sym_short] = ACTIONS(763), + [sym_primitive_type] = ACTIONS(763), + [anon_sym_enum] = ACTIONS(763), + [anon_sym_struct] = ACTIONS(763), + [anon_sym_union] = ACTIONS(763), + [sym_identifier] = ACTIONS(763), [sym_comment] = ACTIONS(39), }, [173] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(774), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(765), [sym_comment] = ACTIONS(39), }, [174] = { @@ -10158,28 +10177,28 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_array_type_declarator] = STATE(88), [sym_type_qualifier] = STATE(328), [aux_sym_type_definition_repeat1] = STATE(328), - [anon_sym_LPAREN2] = ACTIONS(165), - [anon_sym_STAR] = ACTIONS(420), + [anon_sym_LPAREN2] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(416), [anon_sym_const] = ACTIONS(25), [anon_sym_restrict] = ACTIONS(25), [anon_sym_volatile] = ACTIONS(25), [anon_sym__Atomic] = ACTIONS(25), - [sym_identifier] = ACTIONS(422), + [sym_identifier] = ACTIONS(418), [sym_comment] = ACTIONS(39), }, [175] = { [sym_parameter_list] = STATE(180), - [anon_sym_RPAREN] = ACTIONS(776), - [anon_sym_LPAREN2] = ACTIONS(243), - [anon_sym_LBRACK] = ACTIONS(428), + [anon_sym_RPAREN] = ACTIONS(767), + [anon_sym_LPAREN2] = ACTIONS(241), + [anon_sym_LBRACK] = ACTIONS(424), [sym_comment] = ACTIONS(39), }, [176] = { [sym_parameter_list] = STATE(180), - [anon_sym_RPAREN] = ACTIONS(778), - [anon_sym_SEMI] = ACTIONS(778), - [anon_sym_LPAREN2] = ACTIONS(243), - [anon_sym_LBRACK] = ACTIONS(428), + [anon_sym_RPAREN] = ACTIONS(769), + [anon_sym_SEMI] = ACTIONS(769), + [anon_sym_LPAREN2] = ACTIONS(241), + [anon_sym_LBRACK] = ACTIONS(424), [sym_comment] = ACTIONS(39), }, [177] = { @@ -10189,72 +10208,72 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_array_type_declarator] = STATE(88), [sym_type_qualifier] = STATE(219), [aux_sym_type_definition_repeat1] = STATE(219), - [anon_sym_LPAREN2] = ACTIONS(165), - [anon_sym_STAR] = ACTIONS(167), + [anon_sym_LPAREN2] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(165), [anon_sym_const] = ACTIONS(25), [anon_sym_restrict] = ACTIONS(25), [anon_sym_volatile] = ACTIONS(25), [anon_sym__Atomic] = ACTIONS(25), - [sym_identifier] = ACTIONS(422), + [sym_identifier] = ACTIONS(418), [sym_comment] = ACTIONS(39), }, [178] = { - [ts_builtin_sym_end] = ACTIONS(780), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(782), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(782), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(782), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(782), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(782), - [sym_preproc_directive] = ACTIONS(782), - [anon_sym_SEMI] = ACTIONS(780), - [anon_sym_typedef] = ACTIONS(782), - [anon_sym_extern] = ACTIONS(782), - [anon_sym_LBRACE] = ACTIONS(780), - [anon_sym_RBRACE] = ACTIONS(780), - [anon_sym_LPAREN2] = ACTIONS(780), - [anon_sym_STAR] = ACTIONS(780), - [anon_sym_static] = ACTIONS(782), - [anon_sym_auto] = ACTIONS(782), - [anon_sym_register] = ACTIONS(782), - [anon_sym_inline] = ACTIONS(782), - [anon_sym_const] = ACTIONS(782), - [anon_sym_restrict] = ACTIONS(782), - [anon_sym_volatile] = ACTIONS(782), - [anon_sym__Atomic] = ACTIONS(782), - [anon_sym_unsigned] = ACTIONS(782), - [anon_sym_long] = ACTIONS(782), - [anon_sym_short] = ACTIONS(782), - [sym_primitive_type] = ACTIONS(782), - [anon_sym_enum] = ACTIONS(782), - [anon_sym_struct] = ACTIONS(782), - [anon_sym_union] = ACTIONS(782), - [anon_sym_if] = ACTIONS(782), - [anon_sym_else] = ACTIONS(782), - [anon_sym_switch] = ACTIONS(782), - [anon_sym_case] = ACTIONS(782), - [anon_sym_default] = ACTIONS(782), - [anon_sym_while] = ACTIONS(782), - [anon_sym_do] = ACTIONS(782), - [anon_sym_for] = ACTIONS(782), - [anon_sym_return] = ACTIONS(782), - [anon_sym_break] = ACTIONS(782), - [anon_sym_continue] = ACTIONS(782), - [anon_sym_goto] = ACTIONS(782), - [anon_sym_AMP] = ACTIONS(780), - [anon_sym_BANG] = ACTIONS(780), - [anon_sym_TILDE] = ACTIONS(780), - [anon_sym_PLUS] = ACTIONS(782), - [anon_sym_DASH] = ACTIONS(782), - [anon_sym_DASH_DASH] = ACTIONS(780), - [anon_sym_PLUS_PLUS] = ACTIONS(780), - [anon_sym_sizeof] = ACTIONS(782), - [sym_number_literal] = ACTIONS(780), - [anon_sym_SQUOTE] = ACTIONS(780), - [anon_sym_DQUOTE] = ACTIONS(780), - [sym_true] = ACTIONS(782), - [sym_false] = ACTIONS(782), - [sym_null] = ACTIONS(782), - [sym_identifier] = ACTIONS(782), + [ts_builtin_sym_end] = ACTIONS(771), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(773), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(773), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(773), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(773), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(773), + [sym_preproc_directive] = ACTIONS(773), + [anon_sym_SEMI] = ACTIONS(771), + [anon_sym_typedef] = ACTIONS(773), + [anon_sym_extern] = ACTIONS(773), + [anon_sym_LBRACE] = ACTIONS(771), + [anon_sym_RBRACE] = ACTIONS(771), + [anon_sym_LPAREN2] = ACTIONS(771), + [anon_sym_STAR] = ACTIONS(771), + [anon_sym_static] = ACTIONS(773), + [anon_sym_auto] = ACTIONS(773), + [anon_sym_register] = ACTIONS(773), + [anon_sym_inline] = ACTIONS(773), + [anon_sym_const] = ACTIONS(773), + [anon_sym_restrict] = ACTIONS(773), + [anon_sym_volatile] = ACTIONS(773), + [anon_sym__Atomic] = ACTIONS(773), + [anon_sym_unsigned] = ACTIONS(773), + [anon_sym_long] = ACTIONS(773), + [anon_sym_short] = ACTIONS(773), + [sym_primitive_type] = ACTIONS(773), + [anon_sym_enum] = ACTIONS(773), + [anon_sym_struct] = ACTIONS(773), + [anon_sym_union] = ACTIONS(773), + [anon_sym_if] = ACTIONS(773), + [anon_sym_else] = ACTIONS(773), + [anon_sym_switch] = ACTIONS(773), + [anon_sym_case] = ACTIONS(773), + [anon_sym_default] = ACTIONS(773), + [anon_sym_while] = ACTIONS(773), + [anon_sym_do] = ACTIONS(773), + [anon_sym_for] = ACTIONS(773), + [anon_sym_return] = ACTIONS(773), + [anon_sym_break] = ACTIONS(773), + [anon_sym_continue] = ACTIONS(773), + [anon_sym_goto] = ACTIONS(773), + [anon_sym_AMP] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(771), + [anon_sym_TILDE] = ACTIONS(771), + [anon_sym_PLUS] = ACTIONS(773), + [anon_sym_DASH] = ACTIONS(773), + [anon_sym_DASH_DASH] = ACTIONS(771), + [anon_sym_PLUS_PLUS] = ACTIONS(771), + [anon_sym_sizeof] = ACTIONS(773), + [sym_number_literal] = ACTIONS(771), + [anon_sym_SQUOTE] = ACTIONS(771), + [anon_sym_DQUOTE] = ACTIONS(771), + [sym_true] = ACTIONS(773), + [sym_false] = ACTIONS(773), + [sym_null] = ACTIONS(773), + [sym_identifier] = ACTIONS(773), [sym_comment] = ACTIONS(39), }, [179] = { @@ -10290,9 +10309,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__declaration_specifiers_repeat1] = STATE(273), [aux_sym_sized_type_specifier_repeat1] = STATE(274), [anon_sym_extern] = ACTIONS(23), - [anon_sym_LPAREN2] = ACTIONS(606), - [anon_sym_STAR] = ACTIONS(608), - [anon_sym_RBRACK] = ACTIONS(784), + [anon_sym_LPAREN2] = ACTIONS(602), + [anon_sym_STAR] = ACTIONS(604), + [anon_sym_RBRACK] = ACTIONS(775), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -10301,71 +10320,71 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_restrict] = ACTIONS(25), [anon_sym_volatile] = ACTIONS(25), [anon_sym__Atomic] = ACTIONS(25), - [anon_sym_unsigned] = ACTIONS(612), - [anon_sym_long] = ACTIONS(612), - [anon_sym_short] = ACTIONS(612), - [sym_primitive_type] = ACTIONS(614), + [anon_sym_unsigned] = ACTIONS(608), + [anon_sym_long] = ACTIONS(608), + [anon_sym_short] = ACTIONS(608), + [sym_primitive_type] = ACTIONS(610), [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), - [anon_sym_AMP] = ACTIONS(608), - [anon_sym_BANG] = ACTIONS(616), - [anon_sym_TILDE] = ACTIONS(618), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_DASH_DASH] = ACTIONS(622), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_sizeof] = ACTIONS(624), - [sym_number_literal] = ACTIONS(786), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(788), - [sym_false] = ACTIONS(788), - [sym_null] = ACTIONS(788), - [sym_identifier] = ACTIONS(630), + [anon_sym_AMP] = ACTIONS(604), + [anon_sym_BANG] = ACTIONS(612), + [anon_sym_TILDE] = ACTIONS(614), + [anon_sym_PLUS] = ACTIONS(616), + [anon_sym_DASH] = ACTIONS(616), + [anon_sym_DASH_DASH] = ACTIONS(618), + [anon_sym_PLUS_PLUS] = ACTIONS(618), + [anon_sym_sizeof] = ACTIONS(620), + [sym_number_literal] = ACTIONS(777), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(779), + [sym_false] = ACTIONS(779), + [sym_null] = ACTIONS(779), + [sym_identifier] = ACTIONS(626), [sym_comment] = ACTIONS(39), }, [180] = { - [anon_sym_RPAREN] = ACTIONS(790), - [anon_sym_SEMI] = ACTIONS(790), - [anon_sym_LPAREN2] = ACTIONS(790), - [anon_sym_LBRACK] = ACTIONS(790), + [anon_sym_RPAREN] = ACTIONS(781), + [anon_sym_SEMI] = ACTIONS(781), + [anon_sym_LPAREN2] = ACTIONS(781), + [anon_sym_LBRACK] = ACTIONS(781), [sym_comment] = ACTIONS(39), }, [181] = { [sym_parameter_list] = STATE(180), - [anon_sym_SEMI] = ACTIONS(792), - [anon_sym_LPAREN2] = ACTIONS(243), - [anon_sym_LBRACK] = ACTIONS(428), + [anon_sym_SEMI] = ACTIONS(783), + [anon_sym_LPAREN2] = ACTIONS(241), + [anon_sym_LBRACK] = ACTIONS(424), [sym_comment] = ACTIONS(39), }, [182] = { - [ts_builtin_sym_end] = ACTIONS(794), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(796), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(796), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(796), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(796), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(796), - [sym_preproc_directive] = ACTIONS(796), - [anon_sym_typedef] = ACTIONS(796), - [anon_sym_extern] = ACTIONS(796), - [anon_sym_RBRACE] = ACTIONS(794), - [anon_sym_static] = ACTIONS(796), - [anon_sym_auto] = ACTIONS(796), - [anon_sym_register] = ACTIONS(796), - [anon_sym_inline] = ACTIONS(796), - [anon_sym_const] = ACTIONS(796), - [anon_sym_restrict] = ACTIONS(796), - [anon_sym_volatile] = ACTIONS(796), - [anon_sym__Atomic] = ACTIONS(796), - [anon_sym_unsigned] = ACTIONS(796), - [anon_sym_long] = ACTIONS(796), - [anon_sym_short] = ACTIONS(796), - [sym_primitive_type] = ACTIONS(796), - [anon_sym_enum] = ACTIONS(796), - [anon_sym_struct] = ACTIONS(796), - [anon_sym_union] = ACTIONS(796), - [sym_identifier] = ACTIONS(796), + [ts_builtin_sym_end] = ACTIONS(785), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(787), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(787), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(787), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(787), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(787), + [sym_preproc_directive] = ACTIONS(787), + [anon_sym_typedef] = ACTIONS(787), + [anon_sym_extern] = ACTIONS(787), + [anon_sym_RBRACE] = ACTIONS(785), + [anon_sym_static] = ACTIONS(787), + [anon_sym_auto] = ACTIONS(787), + [anon_sym_register] = ACTIONS(787), + [anon_sym_inline] = ACTIONS(787), + [anon_sym_const] = ACTIONS(787), + [anon_sym_restrict] = ACTIONS(787), + [anon_sym_volatile] = ACTIONS(787), + [anon_sym__Atomic] = ACTIONS(787), + [anon_sym_unsigned] = ACTIONS(787), + [anon_sym_long] = ACTIONS(787), + [anon_sym_short] = ACTIONS(787), + [sym_primitive_type] = ACTIONS(787), + [anon_sym_enum] = ACTIONS(787), + [anon_sym_struct] = ACTIONS(787), + [anon_sym_union] = ACTIONS(787), + [sym_identifier] = ACTIONS(787), [sym_comment] = ACTIONS(39), }, [183] = { @@ -10400,7 +10419,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_directive] = ACTIONS(17), [anon_sym_typedef] = ACTIONS(19), [anon_sym_extern] = ACTIONS(21), - [anon_sym_RBRACE] = ACTIONS(798), + [anon_sym_RBRACE] = ACTIONS(789), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -10424,8 +10443,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_type_qualifier] = STATE(337), [aux_sym__declaration_specifiers_repeat1] = STATE(337), [anon_sym_extern] = ACTIONS(23), - [anon_sym_LPAREN2] = ACTIONS(249), - [anon_sym_STAR] = ACTIONS(249), + [anon_sym_LPAREN2] = ACTIONS(247), + [anon_sym_STAR] = ACTIONS(247), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -10434,7 +10453,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_restrict] = ACTIONS(25), [anon_sym_volatile] = ACTIONS(25), [anon_sym__Atomic] = ACTIONS(25), - [sym_identifier] = ACTIONS(251), + [sym_identifier] = ACTIONS(249), [sym_comment] = ACTIONS(39), }, [185] = { @@ -10442,8 +10461,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_type_qualifier] = STATE(338), [aux_sym__declaration_specifiers_repeat1] = STATE(338), [anon_sym_extern] = ACTIONS(23), - [anon_sym_LPAREN2] = ACTIONS(249), - [anon_sym_STAR] = ACTIONS(249), + [anon_sym_LPAREN2] = ACTIONS(247), + [anon_sym_STAR] = ACTIONS(247), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -10452,62 +10471,62 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_restrict] = ACTIONS(25), [anon_sym_volatile] = ACTIONS(25), [anon_sym__Atomic] = ACTIONS(25), - [sym_identifier] = ACTIONS(251), + [sym_identifier] = ACTIONS(249), [sym_comment] = ACTIONS(39), }, [186] = { [aux_sym_sized_type_specifier_repeat1] = STATE(186), - [anon_sym_extern] = ACTIONS(321), - [anon_sym_LPAREN2] = ACTIONS(319), - [anon_sym_STAR] = ACTIONS(319), - [anon_sym_static] = ACTIONS(321), - [anon_sym_auto] = ACTIONS(321), - [anon_sym_register] = ACTIONS(321), - [anon_sym_inline] = ACTIONS(321), - [anon_sym_const] = ACTIONS(321), - [anon_sym_restrict] = ACTIONS(321), - [anon_sym_volatile] = ACTIONS(321), - [anon_sym__Atomic] = ACTIONS(321), - [anon_sym_unsigned] = ACTIONS(800), - [anon_sym_long] = ACTIONS(800), - [anon_sym_short] = ACTIONS(800), - [sym_primitive_type] = ACTIONS(321), - [sym_identifier] = ACTIONS(321), + [anon_sym_extern] = ACTIONS(319), + [anon_sym_LPAREN2] = ACTIONS(317), + [anon_sym_STAR] = ACTIONS(317), + [anon_sym_static] = ACTIONS(319), + [anon_sym_auto] = ACTIONS(319), + [anon_sym_register] = ACTIONS(319), + [anon_sym_inline] = ACTIONS(319), + [anon_sym_const] = ACTIONS(319), + [anon_sym_restrict] = ACTIONS(319), + [anon_sym_volatile] = ACTIONS(319), + [anon_sym__Atomic] = ACTIONS(319), + [anon_sym_unsigned] = ACTIONS(791), + [anon_sym_long] = ACTIONS(791), + [anon_sym_short] = ACTIONS(791), + [sym_primitive_type] = ACTIONS(319), + [sym_identifier] = ACTIONS(319), [sym_comment] = ACTIONS(39), }, [187] = { - [anon_sym_COMMA] = ACTIONS(803), - [anon_sym_RPAREN] = ACTIONS(803), - [anon_sym_SEMI] = ACTIONS(803), - [anon_sym_extern] = ACTIONS(805), - [anon_sym_LPAREN2] = ACTIONS(803), - [anon_sym_STAR] = ACTIONS(803), - [anon_sym_LBRACK] = ACTIONS(803), - [anon_sym_RBRACK] = ACTIONS(803), - [anon_sym_static] = ACTIONS(805), - [anon_sym_auto] = ACTIONS(805), - [anon_sym_register] = ACTIONS(805), - [anon_sym_inline] = ACTIONS(805), - [anon_sym_const] = ACTIONS(805), - [anon_sym_restrict] = ACTIONS(805), - [anon_sym_volatile] = ACTIONS(805), - [anon_sym__Atomic] = ACTIONS(805), - [anon_sym_COLON] = ACTIONS(803), - [anon_sym_AMP] = ACTIONS(803), - [anon_sym_BANG] = ACTIONS(803), - [anon_sym_TILDE] = ACTIONS(803), - [anon_sym_PLUS] = ACTIONS(805), - [anon_sym_DASH] = ACTIONS(805), - [anon_sym_DASH_DASH] = ACTIONS(803), - [anon_sym_PLUS_PLUS] = ACTIONS(803), - [anon_sym_sizeof] = ACTIONS(805), - [sym_number_literal] = ACTIONS(803), - [anon_sym_SQUOTE] = ACTIONS(803), - [anon_sym_DQUOTE] = ACTIONS(803), - [sym_true] = ACTIONS(805), - [sym_false] = ACTIONS(805), - [sym_null] = ACTIONS(805), - [sym_identifier] = ACTIONS(805), + [anon_sym_COMMA] = ACTIONS(794), + [anon_sym_RPAREN] = ACTIONS(794), + [anon_sym_SEMI] = ACTIONS(794), + [anon_sym_extern] = ACTIONS(796), + [anon_sym_LPAREN2] = ACTIONS(794), + [anon_sym_STAR] = ACTIONS(794), + [anon_sym_LBRACK] = ACTIONS(794), + [anon_sym_RBRACK] = ACTIONS(794), + [anon_sym_static] = ACTIONS(796), + [anon_sym_auto] = ACTIONS(796), + [anon_sym_register] = ACTIONS(796), + [anon_sym_inline] = ACTIONS(796), + [anon_sym_const] = ACTIONS(796), + [anon_sym_restrict] = ACTIONS(796), + [anon_sym_volatile] = ACTIONS(796), + [anon_sym__Atomic] = ACTIONS(796), + [anon_sym_COLON] = ACTIONS(794), + [anon_sym_AMP] = ACTIONS(794), + [anon_sym_BANG] = ACTIONS(794), + [anon_sym_TILDE] = ACTIONS(794), + [anon_sym_PLUS] = ACTIONS(796), + [anon_sym_DASH] = ACTIONS(796), + [anon_sym_DASH_DASH] = ACTIONS(794), + [anon_sym_PLUS_PLUS] = ACTIONS(794), + [anon_sym_sizeof] = ACTIONS(796), + [sym_number_literal] = ACTIONS(794), + [anon_sym_SQUOTE] = ACTIONS(794), + [anon_sym_DQUOTE] = ACTIONS(794), + [sym_true] = ACTIONS(796), + [sym_false] = ACTIONS(796), + [sym_null] = ACTIONS(796), + [sym_identifier] = ACTIONS(796), [sym_comment] = ACTIONS(39), }, [188] = { @@ -10531,35 +10550,35 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(345), [sym_concatenated_string] = STATE(345), [sym_string_literal] = STATE(346), - [anon_sym_LPAREN2] = ACTIONS(807), - [anon_sym_STAR] = ACTIONS(809), - [anon_sym_AMP] = ACTIONS(809), - [anon_sym_BANG] = ACTIONS(811), - [anon_sym_TILDE] = ACTIONS(813), - [anon_sym_PLUS] = ACTIONS(815), - [anon_sym_DASH] = ACTIONS(815), - [anon_sym_DASH_DASH] = ACTIONS(817), - [anon_sym_PLUS_PLUS] = ACTIONS(817), - [anon_sym_sizeof] = ACTIONS(819), - [sym_number_literal] = ACTIONS(821), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(823), - [sym_false] = ACTIONS(823), - [sym_null] = ACTIONS(823), - [sym_identifier] = ACTIONS(823), + [anon_sym_LPAREN2] = ACTIONS(798), + [anon_sym_STAR] = ACTIONS(800), + [anon_sym_AMP] = ACTIONS(800), + [anon_sym_BANG] = ACTIONS(802), + [anon_sym_TILDE] = ACTIONS(804), + [anon_sym_PLUS] = ACTIONS(806), + [anon_sym_DASH] = ACTIONS(806), + [anon_sym_DASH_DASH] = ACTIONS(808), + [anon_sym_PLUS_PLUS] = ACTIONS(808), + [anon_sym_sizeof] = ACTIONS(810), + [sym_number_literal] = ACTIONS(812), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(814), + [sym_false] = ACTIONS(814), + [sym_null] = ACTIONS(814), + [sym_identifier] = ACTIONS(814), [sym_comment] = ACTIONS(39), }, [189] = { [sym_enumerator] = STATE(348), - [anon_sym_RBRACE] = ACTIONS(825), - [sym_identifier] = ACTIONS(185), + [anon_sym_RBRACE] = ACTIONS(816), + [sym_identifier] = ACTIONS(183), [sym_comment] = ACTIONS(39), }, [190] = { [aux_sym_enumerator_list_repeat1] = STATE(350), - [anon_sym_COMMA] = ACTIONS(827), - [anon_sym_RBRACE] = ACTIONS(825), + [anon_sym_COMMA] = ACTIONS(818), + [anon_sym_RBRACE] = ACTIONS(816), [sym_comment] = ACTIONS(39), }, [191] = { @@ -10581,12 +10600,12 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(356), [aux_sym__declaration_specifiers_repeat1] = STATE(112), [aux_sym_sized_type_specifier_repeat1] = STATE(113), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(195), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(829), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(197), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(199), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(831), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(833), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(193), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(820), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(195), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(197), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(822), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(824), [anon_sym_extern] = ACTIONS(23), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), @@ -10596,10 +10615,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_restrict] = ACTIONS(25), [anon_sym_volatile] = ACTIONS(25), [anon_sym__Atomic] = ACTIONS(25), - [anon_sym_unsigned] = ACTIONS(203), - [anon_sym_long] = ACTIONS(203), - [anon_sym_short] = ACTIONS(203), - [sym_primitive_type] = ACTIONS(205), + [anon_sym_unsigned] = ACTIONS(201), + [anon_sym_long] = ACTIONS(201), + [anon_sym_short] = ACTIONS(201), + [sym_primitive_type] = ACTIONS(203), [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), @@ -10625,12 +10644,12 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(360), [aux_sym__declaration_specifiers_repeat1] = STATE(112), [aux_sym_sized_type_specifier_repeat1] = STATE(113), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(195), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(835), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(197), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(199), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(831), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(833), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(193), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(826), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(195), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(197), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(822), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(824), [anon_sym_extern] = ACTIONS(23), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), @@ -10640,10 +10659,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_restrict] = ACTIONS(25), [anon_sym_volatile] = ACTIONS(25), [anon_sym__Atomic] = ACTIONS(25), - [anon_sym_unsigned] = ACTIONS(203), - [anon_sym_long] = ACTIONS(203), - [anon_sym_short] = ACTIONS(203), - [sym_primitive_type] = ACTIONS(205), + [anon_sym_unsigned] = ACTIONS(201), + [anon_sym_long] = ACTIONS(201), + [anon_sym_short] = ACTIONS(201), + [sym_primitive_type] = ACTIONS(203), [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), @@ -10669,12 +10688,12 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(364), [aux_sym__declaration_specifiers_repeat1] = STATE(112), [aux_sym_sized_type_specifier_repeat1] = STATE(113), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(195), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(837), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(197), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(199), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(831), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(833), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(193), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(828), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(195), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(197), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(822), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(824), [anon_sym_extern] = ACTIONS(23), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), @@ -10684,10 +10703,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_restrict] = ACTIONS(25), [anon_sym_volatile] = ACTIONS(25), [anon_sym__Atomic] = ACTIONS(25), - [anon_sym_unsigned] = ACTIONS(203), - [anon_sym_long] = ACTIONS(203), - [anon_sym_short] = ACTIONS(203), - [sym_primitive_type] = ACTIONS(205), + [anon_sym_unsigned] = ACTIONS(201), + [anon_sym_long] = ACTIONS(201), + [anon_sym_short] = ACTIONS(201), + [sym_primitive_type] = ACTIONS(203), [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), @@ -10695,30 +10714,30 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(39), }, [194] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(839), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(841), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(841), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(841), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(841), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(841), - [anon_sym_extern] = ACTIONS(839), - [anon_sym_RBRACE] = ACTIONS(841), - [anon_sym_static] = ACTIONS(839), - [anon_sym_auto] = ACTIONS(839), - [anon_sym_register] = ACTIONS(839), - [anon_sym_inline] = ACTIONS(839), - [anon_sym_const] = ACTIONS(839), - [anon_sym_restrict] = ACTIONS(839), - [anon_sym_volatile] = ACTIONS(839), - [anon_sym__Atomic] = ACTIONS(839), - [anon_sym_unsigned] = ACTIONS(839), - [anon_sym_long] = ACTIONS(839), - [anon_sym_short] = ACTIONS(839), - [sym_primitive_type] = ACTIONS(839), - [anon_sym_enum] = ACTIONS(839), - [anon_sym_struct] = ACTIONS(839), - [anon_sym_union] = ACTIONS(839), - [sym_identifier] = ACTIONS(839), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(830), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(832), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(832), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(832), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(832), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(832), + [anon_sym_extern] = ACTIONS(830), + [anon_sym_RBRACE] = ACTIONS(832), + [anon_sym_static] = ACTIONS(830), + [anon_sym_auto] = ACTIONS(830), + [anon_sym_register] = ACTIONS(830), + [anon_sym_inline] = ACTIONS(830), + [anon_sym_const] = ACTIONS(830), + [anon_sym_restrict] = ACTIONS(830), + [anon_sym_volatile] = ACTIONS(830), + [anon_sym__Atomic] = ACTIONS(830), + [anon_sym_unsigned] = ACTIONS(830), + [anon_sym_long] = ACTIONS(830), + [anon_sym_short] = ACTIONS(830), + [sym_primitive_type] = ACTIONS(830), + [anon_sym_enum] = ACTIONS(830), + [anon_sym_struct] = ACTIONS(830), + [anon_sym_union] = ACTIONS(830), + [sym_identifier] = ACTIONS(830), [sym_comment] = ACTIONS(39), }, [195] = { @@ -10726,9 +10745,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_pointer_field_declarator] = STATE(200), [sym_function_field_declarator] = STATE(201), [sym_array_field_declarator] = STATE(202), - [anon_sym_LPAREN2] = ACTIONS(490), - [anon_sym_STAR] = ACTIONS(843), - [sym_identifier] = ACTIONS(496), + [anon_sym_LPAREN2] = ACTIONS(486), + [anon_sym_STAR] = ACTIONS(834), + [sym_identifier] = ACTIONS(492), [sym_comment] = ACTIONS(39), }, [196] = { @@ -10738,13 +10757,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_array_field_declarator] = STATE(202), [sym_type_qualifier] = STATE(368), [aux_sym_type_definition_repeat1] = STATE(368), - [anon_sym_LPAREN2] = ACTIONS(490), - [anon_sym_STAR] = ACTIONS(492), + [anon_sym_LPAREN2] = ACTIONS(486), + [anon_sym_STAR] = ACTIONS(488), [anon_sym_const] = ACTIONS(25), [anon_sym_restrict] = ACTIONS(25), [anon_sym_volatile] = ACTIONS(25), [anon_sym__Atomic] = ACTIONS(25), - [sym_identifier] = ACTIONS(845), + [sym_identifier] = ACTIONS(836), [sym_comment] = ACTIONS(39), }, [197] = { @@ -10768,79 +10787,79 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(375), [sym_concatenated_string] = STATE(375), [sym_string_literal] = STATE(376), - [anon_sym_LPAREN2] = ACTIONS(847), - [anon_sym_STAR] = ACTIONS(849), - [anon_sym_AMP] = ACTIONS(849), - [anon_sym_BANG] = ACTIONS(851), - [anon_sym_TILDE] = ACTIONS(853), - [anon_sym_PLUS] = ACTIONS(855), - [anon_sym_DASH] = ACTIONS(855), - [anon_sym_DASH_DASH] = ACTIONS(857), - [anon_sym_PLUS_PLUS] = ACTIONS(857), - [anon_sym_sizeof] = ACTIONS(859), - [sym_number_literal] = ACTIONS(861), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(863), - [sym_false] = ACTIONS(863), - [sym_null] = ACTIONS(863), - [sym_identifier] = ACTIONS(863), + [anon_sym_LPAREN2] = ACTIONS(838), + [anon_sym_STAR] = ACTIONS(840), + [anon_sym_AMP] = ACTIONS(840), + [anon_sym_BANG] = ACTIONS(842), + [anon_sym_TILDE] = ACTIONS(844), + [anon_sym_PLUS] = ACTIONS(846), + [anon_sym_DASH] = ACTIONS(846), + [anon_sym_DASH_DASH] = ACTIONS(848), + [anon_sym_PLUS_PLUS] = ACTIONS(848), + [anon_sym_sizeof] = ACTIONS(850), + [sym_number_literal] = ACTIONS(852), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(854), + [sym_false] = ACTIONS(854), + [sym_null] = ACTIONS(854), + [sym_identifier] = ACTIONS(854), [sym_comment] = ACTIONS(39), }, [198] = { - [anon_sym_COMMA] = ACTIONS(865), - [anon_sym_RPAREN] = ACTIONS(865), - [anon_sym_SEMI] = ACTIONS(865), - [anon_sym_LPAREN2] = ACTIONS(865), - [anon_sym_LBRACK] = ACTIONS(865), - [anon_sym_COLON] = ACTIONS(865), + [anon_sym_COMMA] = ACTIONS(856), + [anon_sym_RPAREN] = ACTIONS(856), + [anon_sym_SEMI] = ACTIONS(856), + [anon_sym_LPAREN2] = ACTIONS(856), + [anon_sym_LBRACK] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(856), [sym_comment] = ACTIONS(39), }, [199] = { [sym_parameter_list] = STATE(381), [aux_sym_field_declaration_repeat1] = STATE(382), - [anon_sym_COMMA] = ACTIONS(867), - [anon_sym_SEMI] = ACTIONS(869), - [anon_sym_LPAREN2] = ACTIONS(243), - [anon_sym_LBRACK] = ACTIONS(871), - [anon_sym_COLON] = ACTIONS(873), + [anon_sym_COMMA] = ACTIONS(858), + [anon_sym_SEMI] = ACTIONS(860), + [anon_sym_LPAREN2] = ACTIONS(241), + [anon_sym_LBRACK] = ACTIONS(862), + [anon_sym_COLON] = ACTIONS(864), [sym_comment] = ACTIONS(39), }, [200] = { - [anon_sym_COMMA] = ACTIONS(875), - [anon_sym_RPAREN] = ACTIONS(875), - [anon_sym_SEMI] = ACTIONS(875), - [anon_sym_LPAREN2] = ACTIONS(875), - [anon_sym_LBRACK] = ACTIONS(875), - [anon_sym_COLON] = ACTIONS(875), + [anon_sym_COMMA] = ACTIONS(866), + [anon_sym_RPAREN] = ACTIONS(866), + [anon_sym_SEMI] = ACTIONS(866), + [anon_sym_LPAREN2] = ACTIONS(866), + [anon_sym_LBRACK] = ACTIONS(866), + [anon_sym_COLON] = ACTIONS(866), [sym_comment] = ACTIONS(39), }, [201] = { - [anon_sym_COMMA] = ACTIONS(877), - [anon_sym_RPAREN] = ACTIONS(877), - [anon_sym_SEMI] = ACTIONS(877), - [anon_sym_LPAREN2] = ACTIONS(877), - [anon_sym_LBRACK] = ACTIONS(877), - [anon_sym_COLON] = ACTIONS(877), + [anon_sym_COMMA] = ACTIONS(868), + [anon_sym_RPAREN] = ACTIONS(868), + [anon_sym_SEMI] = ACTIONS(868), + [anon_sym_LPAREN2] = ACTIONS(868), + [anon_sym_LBRACK] = ACTIONS(868), + [anon_sym_COLON] = ACTIONS(868), [sym_comment] = ACTIONS(39), }, [202] = { - [anon_sym_COMMA] = ACTIONS(879), - [anon_sym_RPAREN] = ACTIONS(879), - [anon_sym_SEMI] = ACTIONS(879), - [anon_sym_LPAREN2] = ACTIONS(879), - [anon_sym_LBRACK] = ACTIONS(879), - [anon_sym_COLON] = ACTIONS(879), + [anon_sym_COMMA] = ACTIONS(870), + [anon_sym_RPAREN] = ACTIONS(870), + [anon_sym_SEMI] = ACTIONS(870), + [anon_sym_LPAREN2] = ACTIONS(870), + [anon_sym_LBRACK] = ACTIONS(870), + [anon_sym_COLON] = ACTIONS(870), [sym_comment] = ACTIONS(39), }, [203] = { [sym_storage_class_specifier] = STATE(383), [sym_type_qualifier] = STATE(383), [aux_sym__declaration_specifiers_repeat1] = STATE(383), - [anon_sym_SEMI] = ACTIONS(249), + [anon_sym_SEMI] = ACTIONS(247), [anon_sym_extern] = ACTIONS(23), - [anon_sym_LPAREN2] = ACTIONS(249), - [anon_sym_STAR] = ACTIONS(249), + [anon_sym_LPAREN2] = ACTIONS(247), + [anon_sym_STAR] = ACTIONS(247), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -10849,43 +10868,43 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_restrict] = ACTIONS(25), [anon_sym_volatile] = ACTIONS(25), [anon_sym__Atomic] = ACTIONS(25), - [anon_sym_COLON] = ACTIONS(249), - [sym_identifier] = ACTIONS(251), + [anon_sym_COLON] = ACTIONS(247), + [sym_identifier] = ACTIONS(249), [sym_comment] = ACTIONS(39), }, [204] = { - [anon_sym_COMMA] = ACTIONS(881), - [anon_sym_RPAREN] = ACTIONS(881), - [anon_sym_SEMI] = ACTIONS(881), - [anon_sym_extern] = ACTIONS(883), - [anon_sym_LPAREN2] = ACTIONS(881), - [anon_sym_STAR] = ACTIONS(881), - [anon_sym_LBRACK] = ACTIONS(881), - [anon_sym_RBRACK] = ACTIONS(881), - [anon_sym_static] = ACTIONS(883), - [anon_sym_auto] = ACTIONS(883), - [anon_sym_register] = ACTIONS(883), - [anon_sym_inline] = ACTIONS(883), - [anon_sym_const] = ACTIONS(883), - [anon_sym_restrict] = ACTIONS(883), - [anon_sym_volatile] = ACTIONS(883), - [anon_sym__Atomic] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(881), - [anon_sym_AMP] = ACTIONS(881), - [anon_sym_BANG] = ACTIONS(881), - [anon_sym_TILDE] = ACTIONS(881), - [anon_sym_PLUS] = ACTIONS(883), - [anon_sym_DASH] = ACTIONS(883), - [anon_sym_DASH_DASH] = ACTIONS(881), - [anon_sym_PLUS_PLUS] = ACTIONS(881), - [anon_sym_sizeof] = ACTIONS(883), - [sym_number_literal] = ACTIONS(881), - [anon_sym_SQUOTE] = ACTIONS(881), - [anon_sym_DQUOTE] = ACTIONS(881), - [sym_true] = ACTIONS(883), - [sym_false] = ACTIONS(883), - [sym_null] = ACTIONS(883), - [sym_identifier] = ACTIONS(883), + [anon_sym_COMMA] = ACTIONS(872), + [anon_sym_RPAREN] = ACTIONS(872), + [anon_sym_SEMI] = ACTIONS(872), + [anon_sym_extern] = ACTIONS(874), + [anon_sym_LPAREN2] = ACTIONS(872), + [anon_sym_STAR] = ACTIONS(872), + [anon_sym_LBRACK] = ACTIONS(872), + [anon_sym_RBRACK] = ACTIONS(872), + [anon_sym_static] = ACTIONS(874), + [anon_sym_auto] = ACTIONS(874), + [anon_sym_register] = ACTIONS(874), + [anon_sym_inline] = ACTIONS(874), + [anon_sym_const] = ACTIONS(874), + [anon_sym_restrict] = ACTIONS(874), + [anon_sym_volatile] = ACTIONS(874), + [anon_sym__Atomic] = ACTIONS(874), + [anon_sym_COLON] = ACTIONS(872), + [anon_sym_AMP] = ACTIONS(872), + [anon_sym_BANG] = ACTIONS(872), + [anon_sym_TILDE] = ACTIONS(872), + [anon_sym_PLUS] = ACTIONS(874), + [anon_sym_DASH] = ACTIONS(874), + [anon_sym_DASH_DASH] = ACTIONS(872), + [anon_sym_PLUS_PLUS] = ACTIONS(872), + [anon_sym_sizeof] = ACTIONS(874), + [sym_number_literal] = ACTIONS(872), + [anon_sym_SQUOTE] = ACTIONS(872), + [anon_sym_DQUOTE] = ACTIONS(872), + [sym_true] = ACTIONS(874), + [sym_false] = ACTIONS(874), + [sym_null] = ACTIONS(874), + [sym_identifier] = ACTIONS(874), [sym_comment] = ACTIONS(39), }, [205] = { @@ -10905,37 +10924,37 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(205), [aux_sym__declaration_specifiers_repeat1] = STATE(112), [aux_sym_sized_type_specifier_repeat1] = STATE(113), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(885), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(888), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(891), - [anon_sym_extern] = ACTIONS(894), - [anon_sym_RBRACE] = ACTIONS(897), - [anon_sym_static] = ACTIONS(894), - [anon_sym_auto] = ACTIONS(894), - [anon_sym_register] = ACTIONS(894), - [anon_sym_inline] = ACTIONS(894), - [anon_sym_const] = ACTIONS(899), - [anon_sym_restrict] = ACTIONS(899), - [anon_sym_volatile] = ACTIONS(899), - [anon_sym__Atomic] = ACTIONS(899), - [anon_sym_unsigned] = ACTIONS(902), - [anon_sym_long] = ACTIONS(902), - [anon_sym_short] = ACTIONS(902), - [sym_primitive_type] = ACTIONS(905), - [anon_sym_enum] = ACTIONS(908), - [anon_sym_struct] = ACTIONS(911), - [anon_sym_union] = ACTIONS(914), - [sym_identifier] = ACTIONS(917), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(876), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(879), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(882), + [anon_sym_extern] = ACTIONS(885), + [anon_sym_RBRACE] = ACTIONS(888), + [anon_sym_static] = ACTIONS(885), + [anon_sym_auto] = ACTIONS(885), + [anon_sym_register] = ACTIONS(885), + [anon_sym_inline] = ACTIONS(885), + [anon_sym_const] = ACTIONS(890), + [anon_sym_restrict] = ACTIONS(890), + [anon_sym_volatile] = ACTIONS(890), + [anon_sym__Atomic] = ACTIONS(890), + [anon_sym_unsigned] = ACTIONS(893), + [anon_sym_long] = ACTIONS(893), + [anon_sym_short] = ACTIONS(893), + [sym_primitive_type] = ACTIONS(896), + [anon_sym_enum] = ACTIONS(899), + [anon_sym_struct] = ACTIONS(902), + [anon_sym_union] = ACTIONS(905), + [sym_identifier] = ACTIONS(908), [sym_comment] = ACTIONS(39), }, [206] = { [sym_storage_class_specifier] = STATE(384), [sym_type_qualifier] = STATE(384), [aux_sym__declaration_specifiers_repeat1] = STATE(384), - [anon_sym_SEMI] = ACTIONS(249), + [anon_sym_SEMI] = ACTIONS(247), [anon_sym_extern] = ACTIONS(23), - [anon_sym_LPAREN2] = ACTIONS(249), - [anon_sym_STAR] = ACTIONS(249), + [anon_sym_LPAREN2] = ACTIONS(247), + [anon_sym_STAR] = ACTIONS(247), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -10944,30 +10963,30 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_restrict] = ACTIONS(25), [anon_sym_volatile] = ACTIONS(25), [anon_sym__Atomic] = ACTIONS(25), - [anon_sym_COLON] = ACTIONS(249), - [sym_identifier] = ACTIONS(251), + [anon_sym_COLON] = ACTIONS(247), + [sym_identifier] = ACTIONS(249), [sym_comment] = ACTIONS(39), }, [207] = { [aux_sym_sized_type_specifier_repeat1] = STATE(207), - [anon_sym_SEMI] = ACTIONS(319), - [anon_sym_extern] = ACTIONS(321), - [anon_sym_LPAREN2] = ACTIONS(319), - [anon_sym_STAR] = ACTIONS(319), - [anon_sym_static] = ACTIONS(321), - [anon_sym_auto] = ACTIONS(321), - [anon_sym_register] = ACTIONS(321), - [anon_sym_inline] = ACTIONS(321), - [anon_sym_const] = ACTIONS(321), - [anon_sym_restrict] = ACTIONS(321), - [anon_sym_volatile] = ACTIONS(321), - [anon_sym__Atomic] = ACTIONS(321), - [anon_sym_unsigned] = ACTIONS(920), - [anon_sym_long] = ACTIONS(920), - [anon_sym_short] = ACTIONS(920), - [sym_primitive_type] = ACTIONS(321), - [anon_sym_COLON] = ACTIONS(319), - [sym_identifier] = ACTIONS(321), + [anon_sym_SEMI] = ACTIONS(317), + [anon_sym_extern] = ACTIONS(319), + [anon_sym_LPAREN2] = ACTIONS(317), + [anon_sym_STAR] = ACTIONS(317), + [anon_sym_static] = ACTIONS(319), + [anon_sym_auto] = ACTIONS(319), + [anon_sym_register] = ACTIONS(319), + [anon_sym_inline] = ACTIONS(319), + [anon_sym_const] = ACTIONS(319), + [anon_sym_restrict] = ACTIONS(319), + [anon_sym_volatile] = ACTIONS(319), + [anon_sym__Atomic] = ACTIONS(319), + [anon_sym_unsigned] = ACTIONS(911), + [anon_sym_long] = ACTIONS(911), + [anon_sym_short] = ACTIONS(911), + [sym_primitive_type] = ACTIONS(319), + [anon_sym_COLON] = ACTIONS(317), + [sym_identifier] = ACTIONS(319), [sym_comment] = ACTIONS(39), }, [208] = { @@ -10988,12 +11007,12 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_macro_type_specifier] = STATE(258), [aux_sym__declaration_specifiers_repeat1] = STATE(259), [aux_sym_sized_type_specifier_repeat1] = STATE(260), - [anon_sym_DOT_DOT_DOT] = ACTIONS(598), - [anon_sym_RPAREN] = ACTIONS(600), + [anon_sym_DOT_DOT_DOT] = ACTIONS(594), + [anon_sym_RPAREN] = ACTIONS(596), [anon_sym_extern] = ACTIONS(23), - [anon_sym_LPAREN2] = ACTIONS(514), - [anon_sym_STAR] = ACTIONS(516), - [anon_sym_LBRACK] = ACTIONS(518), + [anon_sym_LPAREN2] = ACTIONS(510), + [anon_sym_STAR] = ACTIONS(512), + [anon_sym_LBRACK] = ACTIONS(514), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -11002,10 +11021,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_restrict] = ACTIONS(25), [anon_sym_volatile] = ACTIONS(25), [anon_sym__Atomic] = ACTIONS(25), - [anon_sym_unsigned] = ACTIONS(602), - [anon_sym_long] = ACTIONS(602), - [anon_sym_short] = ACTIONS(602), - [sym_primitive_type] = ACTIONS(604), + [anon_sym_unsigned] = ACTIONS(598), + [anon_sym_long] = ACTIONS(598), + [anon_sym_short] = ACTIONS(598), + [sym_primitive_type] = ACTIONS(600), [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), @@ -11020,14 +11039,14 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_type_qualifier] = STATE(387), [sym_parameter_list] = STATE(212), [aux_sym_type_definition_repeat1] = STATE(387), - [anon_sym_RPAREN] = ACTIONS(923), - [anon_sym_LPAREN2] = ACTIONS(514), - [anon_sym_STAR] = ACTIONS(516), - [anon_sym_LBRACK] = ACTIONS(518), - [anon_sym_const] = ACTIONS(925), - [anon_sym_restrict] = ACTIONS(925), - [anon_sym_volatile] = ACTIONS(925), - [anon_sym__Atomic] = ACTIONS(925), + [anon_sym_RPAREN] = ACTIONS(914), + [anon_sym_LPAREN2] = ACTIONS(510), + [anon_sym_STAR] = ACTIONS(512), + [anon_sym_LBRACK] = ACTIONS(514), + [anon_sym_const] = ACTIONS(916), + [anon_sym_restrict] = ACTIONS(916), + [anon_sym_volatile] = ACTIONS(916), + [anon_sym__Atomic] = ACTIONS(916), [sym_comment] = ACTIONS(39), }, [210] = { @@ -11063,9 +11082,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__declaration_specifiers_repeat1] = STATE(273), [aux_sym_sized_type_specifier_repeat1] = STATE(274), [anon_sym_extern] = ACTIONS(23), - [anon_sym_LPAREN2] = ACTIONS(606), - [anon_sym_STAR] = ACTIONS(608), - [anon_sym_RBRACK] = ACTIONS(927), + [anon_sym_LPAREN2] = ACTIONS(602), + [anon_sym_STAR] = ACTIONS(604), + [anon_sym_RBRACK] = ACTIONS(918), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -11074,77 +11093,77 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_restrict] = ACTIONS(25), [anon_sym_volatile] = ACTIONS(25), [anon_sym__Atomic] = ACTIONS(25), - [anon_sym_unsigned] = ACTIONS(612), - [anon_sym_long] = ACTIONS(612), - [anon_sym_short] = ACTIONS(612), - [sym_primitive_type] = ACTIONS(614), + [anon_sym_unsigned] = ACTIONS(608), + [anon_sym_long] = ACTIONS(608), + [anon_sym_short] = ACTIONS(608), + [sym_primitive_type] = ACTIONS(610), [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), - [anon_sym_AMP] = ACTIONS(608), - [anon_sym_BANG] = ACTIONS(616), - [anon_sym_TILDE] = ACTIONS(618), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_DASH_DASH] = ACTIONS(622), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_sizeof] = ACTIONS(624), - [sym_number_literal] = ACTIONS(929), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(931), - [sym_false] = ACTIONS(931), - [sym_null] = ACTIONS(931), - [sym_identifier] = ACTIONS(630), + [anon_sym_AMP] = ACTIONS(604), + [anon_sym_BANG] = ACTIONS(612), + [anon_sym_TILDE] = ACTIONS(614), + [anon_sym_PLUS] = ACTIONS(616), + [anon_sym_DASH] = ACTIONS(616), + [anon_sym_DASH_DASH] = ACTIONS(618), + [anon_sym_PLUS_PLUS] = ACTIONS(618), + [anon_sym_sizeof] = ACTIONS(620), + [sym_number_literal] = ACTIONS(920), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(922), + [sym_false] = ACTIONS(922), + [sym_null] = ACTIONS(922), + [sym_identifier] = ACTIONS(626), [sym_comment] = ACTIONS(39), }, [211] = { [sym_parameter_list] = STATE(392), - [anon_sym_RPAREN] = ACTIONS(933), - [anon_sym_LPAREN2] = ACTIONS(243), - [anon_sym_LBRACK] = ACTIONS(935), + [anon_sym_RPAREN] = ACTIONS(924), + [anon_sym_LPAREN2] = ACTIONS(241), + [anon_sym_LBRACK] = ACTIONS(926), [sym_comment] = ACTIONS(39), }, [212] = { - [anon_sym_COMMA] = ACTIONS(937), - [anon_sym_RPAREN] = ACTIONS(937), - [anon_sym_LPAREN2] = ACTIONS(937), - [anon_sym_LBRACK] = ACTIONS(937), + [anon_sym_COMMA] = ACTIONS(928), + [anon_sym_RPAREN] = ACTIONS(928), + [anon_sym_LPAREN2] = ACTIONS(928), + [anon_sym_LBRACK] = ACTIONS(928), [sym_comment] = ACTIONS(39), }, [213] = { - [anon_sym_COMMA] = ACTIONS(939), - [anon_sym_RPAREN] = ACTIONS(939), - [anon_sym_SEMI] = ACTIONS(939), - [anon_sym_extern] = ACTIONS(941), - [anon_sym_LPAREN2] = ACTIONS(939), - [anon_sym_STAR] = ACTIONS(939), - [anon_sym_LBRACK] = ACTIONS(939), - [anon_sym_RBRACK] = ACTIONS(939), - [anon_sym_static] = ACTIONS(941), - [anon_sym_auto] = ACTIONS(941), - [anon_sym_register] = ACTIONS(941), - [anon_sym_inline] = ACTIONS(941), - [anon_sym_const] = ACTIONS(941), - [anon_sym_restrict] = ACTIONS(941), - [anon_sym_volatile] = ACTIONS(941), - [anon_sym__Atomic] = ACTIONS(941), - [anon_sym_COLON] = ACTIONS(939), - [anon_sym_AMP] = ACTIONS(939), - [anon_sym_BANG] = ACTIONS(939), - [anon_sym_TILDE] = ACTIONS(939), - [anon_sym_PLUS] = ACTIONS(941), - [anon_sym_DASH] = ACTIONS(941), - [anon_sym_DASH_DASH] = ACTIONS(939), - [anon_sym_PLUS_PLUS] = ACTIONS(939), - [anon_sym_sizeof] = ACTIONS(941), - [sym_number_literal] = ACTIONS(939), - [anon_sym_SQUOTE] = ACTIONS(939), - [anon_sym_DQUOTE] = ACTIONS(939), - [sym_true] = ACTIONS(941), - [sym_false] = ACTIONS(941), - [sym_null] = ACTIONS(941), - [sym_identifier] = ACTIONS(941), + [anon_sym_COMMA] = ACTIONS(930), + [anon_sym_RPAREN] = ACTIONS(930), + [anon_sym_SEMI] = ACTIONS(930), + [anon_sym_extern] = ACTIONS(932), + [anon_sym_LPAREN2] = ACTIONS(930), + [anon_sym_STAR] = ACTIONS(930), + [anon_sym_LBRACK] = ACTIONS(930), + [anon_sym_RBRACK] = ACTIONS(930), + [anon_sym_static] = ACTIONS(932), + [anon_sym_auto] = ACTIONS(932), + [anon_sym_register] = ACTIONS(932), + [anon_sym_inline] = ACTIONS(932), + [anon_sym_const] = ACTIONS(932), + [anon_sym_restrict] = ACTIONS(932), + [anon_sym_volatile] = ACTIONS(932), + [anon_sym__Atomic] = ACTIONS(932), + [anon_sym_COLON] = ACTIONS(930), + [anon_sym_AMP] = ACTIONS(930), + [anon_sym_BANG] = ACTIONS(930), + [anon_sym_TILDE] = ACTIONS(930), + [anon_sym_PLUS] = ACTIONS(932), + [anon_sym_DASH] = ACTIONS(932), + [anon_sym_DASH_DASH] = ACTIONS(930), + [anon_sym_PLUS_PLUS] = ACTIONS(930), + [anon_sym_sizeof] = ACTIONS(932), + [sym_number_literal] = ACTIONS(930), + [anon_sym_SQUOTE] = ACTIONS(930), + [anon_sym_DQUOTE] = ACTIONS(930), + [sym_true] = ACTIONS(932), + [sym_false] = ACTIONS(932), + [sym_null] = ACTIONS(932), + [sym_identifier] = ACTIONS(932), [sym_comment] = ACTIONS(39), }, [214] = { @@ -11153,23 +11172,23 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_abstract_function_declarator] = STATE(393), [sym_abstract_array_declarator] = STATE(393), [sym_parameter_list] = STATE(212), - [anon_sym_RPAREN] = ACTIONS(933), - [anon_sym_LPAREN2] = ACTIONS(514), - [anon_sym_STAR] = ACTIONS(516), - [anon_sym_LBRACK] = ACTIONS(518), + [anon_sym_RPAREN] = ACTIONS(924), + [anon_sym_LPAREN2] = ACTIONS(510), + [anon_sym_STAR] = ACTIONS(512), + [anon_sym_LBRACK] = ACTIONS(514), [sym_comment] = ACTIONS(39), }, [215] = { [aux_sym_sized_type_specifier_repeat1] = STATE(215), - [anon_sym_RPAREN] = ACTIONS(319), - [anon_sym_LPAREN2] = ACTIONS(319), - [anon_sym_STAR] = ACTIONS(319), - [anon_sym_LBRACK] = ACTIONS(319), - [anon_sym_unsigned] = ACTIONS(943), - [anon_sym_long] = ACTIONS(943), - [anon_sym_short] = ACTIONS(943), - [sym_primitive_type] = ACTIONS(321), - [sym_identifier] = ACTIONS(321), + [anon_sym_RPAREN] = ACTIONS(317), + [anon_sym_LPAREN2] = ACTIONS(317), + [anon_sym_STAR] = ACTIONS(317), + [anon_sym_LBRACK] = ACTIONS(317), + [anon_sym_unsigned] = ACTIONS(934), + [anon_sym_long] = ACTIONS(934), + [anon_sym_short] = ACTIONS(934), + [sym_primitive_type] = ACTIONS(319), + [sym_identifier] = ACTIONS(319), [sym_comment] = ACTIONS(39), }, [216] = { @@ -11180,45 +11199,45 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_type_qualifier] = STATE(219), [aux_sym_type_definition_repeat1] = STATE(219), [anon_sym_LPAREN2] = ACTIONS(92), - [anon_sym_STAR] = ACTIONS(231), + [anon_sym_STAR] = ACTIONS(229), [anon_sym_const] = ACTIONS(25), [anon_sym_restrict] = ACTIONS(25), [anon_sym_volatile] = ACTIONS(25), [anon_sym__Atomic] = ACTIONS(25), - [sym_identifier] = ACTIONS(532), + [sym_identifier] = ACTIONS(528), [sym_comment] = ACTIONS(39), }, [217] = { - [anon_sym_COMMA] = ACTIONS(946), - [anon_sym_RPAREN] = ACTIONS(946), - [anon_sym_SEMI] = ACTIONS(946), - [anon_sym_LBRACE] = ACTIONS(946), - [anon_sym_LPAREN2] = ACTIONS(946), - [anon_sym_LBRACK] = ACTIONS(946), - [anon_sym_EQ] = ACTIONS(946), + [anon_sym_COMMA] = ACTIONS(937), + [anon_sym_RPAREN] = ACTIONS(937), + [anon_sym_SEMI] = ACTIONS(937), + [anon_sym_LBRACE] = ACTIONS(937), + [anon_sym_LPAREN2] = ACTIONS(937), + [anon_sym_LBRACK] = ACTIONS(937), + [anon_sym_EQ] = ACTIONS(937), [sym_comment] = ACTIONS(39), }, [218] = { [sym_parameter_list] = STATE(131), - [anon_sym_COMMA] = ACTIONS(948), - [anon_sym_RPAREN] = ACTIONS(948), - [anon_sym_SEMI] = ACTIONS(948), - [anon_sym_LBRACE] = ACTIONS(948), - [anon_sym_LPAREN2] = ACTIONS(243), - [anon_sym_LBRACK] = ACTIONS(245), - [anon_sym_EQ] = ACTIONS(948), + [anon_sym_COMMA] = ACTIONS(939), + [anon_sym_RPAREN] = ACTIONS(939), + [anon_sym_SEMI] = ACTIONS(939), + [anon_sym_LBRACE] = ACTIONS(939), + [anon_sym_LPAREN2] = ACTIONS(241), + [anon_sym_LBRACK] = ACTIONS(243), + [anon_sym_EQ] = ACTIONS(939), [sym_comment] = ACTIONS(39), }, [219] = { [sym_type_qualifier] = STATE(219), [aux_sym_type_definition_repeat1] = STATE(219), - [anon_sym_LPAREN2] = ACTIONS(950), - [anon_sym_STAR] = ACTIONS(950), - [anon_sym_const] = ACTIONS(436), - [anon_sym_restrict] = ACTIONS(436), - [anon_sym_volatile] = ACTIONS(436), - [anon_sym__Atomic] = ACTIONS(436), - [sym_identifier] = ACTIONS(439), + [anon_sym_LPAREN2] = ACTIONS(941), + [anon_sym_STAR] = ACTIONS(941), + [anon_sym_const] = ACTIONS(432), + [anon_sym_restrict] = ACTIONS(432), + [anon_sym_volatile] = ACTIONS(432), + [anon_sym__Atomic] = ACTIONS(432), + [sym_identifier] = ACTIONS(435), [sym_comment] = ACTIONS(39), }, [220] = { @@ -11229,161 +11248,161 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_type_qualifier] = STATE(394), [aux_sym_type_definition_repeat1] = STATE(394), [anon_sym_LPAREN2] = ACTIONS(92), - [anon_sym_STAR] = ACTIONS(534), + [anon_sym_STAR] = ACTIONS(530), [anon_sym_const] = ACTIONS(25), [anon_sym_restrict] = ACTIONS(25), [anon_sym_volatile] = ACTIONS(25), [anon_sym__Atomic] = ACTIONS(25), - [sym_identifier] = ACTIONS(235), + [sym_identifier] = ACTIONS(233), [sym_comment] = ACTIONS(39), }, [221] = { [sym_parameter_list] = STATE(131), - [anon_sym_COMMA] = ACTIONS(952), - [anon_sym_SEMI] = ACTIONS(952), - [anon_sym_LPAREN2] = ACTIONS(243), - [anon_sym_LBRACK] = ACTIONS(245), - [anon_sym_EQ] = ACTIONS(247), + [anon_sym_COMMA] = ACTIONS(943), + [anon_sym_SEMI] = ACTIONS(943), + [anon_sym_LPAREN2] = ACTIONS(241), + [anon_sym_LBRACK] = ACTIONS(243), + [anon_sym_EQ] = ACTIONS(245), [sym_comment] = ACTIONS(39), }, [222] = { - [anon_sym_COMMA] = ACTIONS(952), - [anon_sym_SEMI] = ACTIONS(952), + [anon_sym_COMMA] = ACTIONS(943), + [anon_sym_SEMI] = ACTIONS(943), [sym_comment] = ACTIONS(39), }, [223] = { [sym_string_literal] = STATE(23), - [anon_sym_DQUOTE] = ACTIONS(954), + [anon_sym_DQUOTE] = ACTIONS(945), [sym_system_lib_string] = ACTIONS(43), [sym_comment] = ACTIONS(39), }, [224] = { - [sym_preproc_arg] = ACTIONS(956), + [sym_preproc_arg] = ACTIONS(947), [sym_comment] = ACTIONS(49), }, [225] = { - [sym_identifier] = ACTIONS(958), + [sym_identifier] = ACTIONS(949), [sym_comment] = ACTIONS(39), }, [226] = { - [sym_identifier] = ACTIONS(960), + [sym_identifier] = ACTIONS(951), [sym_comment] = ACTIONS(39), }, [227] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(962), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(962), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(962), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(962), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(962), - [sym_preproc_directive] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(964), - [anon_sym_typedef] = ACTIONS(962), - [anon_sym_extern] = ACTIONS(962), - [anon_sym_LBRACE] = ACTIONS(964), - [anon_sym_RBRACE] = ACTIONS(964), - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_STAR] = ACTIONS(964), - [anon_sym_static] = ACTIONS(962), - [anon_sym_auto] = ACTIONS(962), - [anon_sym_register] = ACTIONS(962), - [anon_sym_inline] = ACTIONS(962), - [anon_sym_const] = ACTIONS(962), - [anon_sym_restrict] = ACTIONS(962), - [anon_sym_volatile] = ACTIONS(962), - [anon_sym__Atomic] = ACTIONS(962), - [anon_sym_unsigned] = ACTIONS(962), - [anon_sym_long] = ACTIONS(962), - [anon_sym_short] = ACTIONS(962), - [sym_primitive_type] = ACTIONS(962), - [anon_sym_enum] = ACTIONS(962), - [anon_sym_struct] = ACTIONS(962), - [anon_sym_union] = ACTIONS(962), - [anon_sym_if] = ACTIONS(962), - [anon_sym_else] = ACTIONS(962), - [anon_sym_switch] = ACTIONS(962), - [anon_sym_case] = ACTIONS(962), - [anon_sym_default] = ACTIONS(962), - [anon_sym_while] = ACTIONS(962), - [anon_sym_do] = ACTIONS(962), - [anon_sym_for] = ACTIONS(962), - [anon_sym_return] = ACTIONS(962), - [anon_sym_break] = ACTIONS(962), - [anon_sym_continue] = ACTIONS(962), - [anon_sym_goto] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(964), - [anon_sym_BANG] = ACTIONS(964), - [anon_sym_TILDE] = ACTIONS(964), - [anon_sym_PLUS] = ACTIONS(962), - [anon_sym_DASH] = ACTIONS(962), - [anon_sym_DASH_DASH] = ACTIONS(964), - [anon_sym_PLUS_PLUS] = ACTIONS(964), - [anon_sym_sizeof] = ACTIONS(962), - [sym_number_literal] = ACTIONS(964), - [anon_sym_SQUOTE] = ACTIONS(964), - [anon_sym_DQUOTE] = ACTIONS(964), - [sym_true] = ACTIONS(962), - [sym_false] = ACTIONS(962), - [sym_null] = ACTIONS(962), - [sym_identifier] = ACTIONS(962), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(953), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(953), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(953), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(953), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(953), + [sym_preproc_directive] = ACTIONS(953), + [anon_sym_SEMI] = ACTIONS(955), + [anon_sym_typedef] = ACTIONS(953), + [anon_sym_extern] = ACTIONS(953), + [anon_sym_LBRACE] = ACTIONS(955), + [anon_sym_RBRACE] = ACTIONS(955), + [anon_sym_LPAREN2] = ACTIONS(955), + [anon_sym_STAR] = ACTIONS(955), + [anon_sym_static] = ACTIONS(953), + [anon_sym_auto] = ACTIONS(953), + [anon_sym_register] = ACTIONS(953), + [anon_sym_inline] = ACTIONS(953), + [anon_sym_const] = ACTIONS(953), + [anon_sym_restrict] = ACTIONS(953), + [anon_sym_volatile] = ACTIONS(953), + [anon_sym__Atomic] = ACTIONS(953), + [anon_sym_unsigned] = ACTIONS(953), + [anon_sym_long] = ACTIONS(953), + [anon_sym_short] = ACTIONS(953), + [sym_primitive_type] = ACTIONS(953), + [anon_sym_enum] = ACTIONS(953), + [anon_sym_struct] = ACTIONS(953), + [anon_sym_union] = ACTIONS(953), + [anon_sym_if] = ACTIONS(953), + [anon_sym_else] = ACTIONS(953), + [anon_sym_switch] = ACTIONS(953), + [anon_sym_case] = ACTIONS(953), + [anon_sym_default] = ACTIONS(953), + [anon_sym_while] = ACTIONS(953), + [anon_sym_do] = ACTIONS(953), + [anon_sym_for] = ACTIONS(953), + [anon_sym_return] = ACTIONS(953), + [anon_sym_break] = ACTIONS(953), + [anon_sym_continue] = ACTIONS(953), + [anon_sym_goto] = ACTIONS(953), + [anon_sym_AMP] = ACTIONS(955), + [anon_sym_BANG] = ACTIONS(955), + [anon_sym_TILDE] = ACTIONS(955), + [anon_sym_PLUS] = ACTIONS(953), + [anon_sym_DASH] = ACTIONS(953), + [anon_sym_DASH_DASH] = ACTIONS(955), + [anon_sym_PLUS_PLUS] = ACTIONS(955), + [anon_sym_sizeof] = ACTIONS(953), + [sym_number_literal] = ACTIONS(955), + [anon_sym_SQUOTE] = ACTIONS(955), + [anon_sym_DQUOTE] = ACTIONS(955), + [sym_true] = ACTIONS(953), + [sym_false] = ACTIONS(953), + [sym_null] = ACTIONS(953), + [sym_identifier] = ACTIONS(953), [sym_comment] = ACTIONS(39), }, [228] = { - [ts_builtin_sym_end] = ACTIONS(966), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(968), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(968), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(968), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(968), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(968), - [sym_preproc_directive] = ACTIONS(968), - [anon_sym_SEMI] = ACTIONS(966), - [anon_sym_typedef] = ACTIONS(968), - [anon_sym_extern] = ACTIONS(968), - [anon_sym_LBRACE] = ACTIONS(966), - [anon_sym_RBRACE] = ACTIONS(966), - [anon_sym_LPAREN2] = ACTIONS(966), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_static] = ACTIONS(968), - [anon_sym_auto] = ACTIONS(968), - [anon_sym_register] = ACTIONS(968), - [anon_sym_inline] = ACTIONS(968), - [anon_sym_const] = ACTIONS(968), - [anon_sym_restrict] = ACTIONS(968), - [anon_sym_volatile] = ACTIONS(968), - [anon_sym__Atomic] = ACTIONS(968), - [anon_sym_unsigned] = ACTIONS(968), - [anon_sym_long] = ACTIONS(968), - [anon_sym_short] = ACTIONS(968), - [sym_primitive_type] = ACTIONS(968), - [anon_sym_enum] = ACTIONS(968), - [anon_sym_struct] = ACTIONS(968), - [anon_sym_union] = ACTIONS(968), - [anon_sym_if] = ACTIONS(968), - [anon_sym_else] = ACTIONS(968), - [anon_sym_switch] = ACTIONS(968), - [anon_sym_case] = ACTIONS(968), - [anon_sym_default] = ACTIONS(968), - [anon_sym_while] = ACTIONS(968), - [anon_sym_do] = ACTIONS(968), - [anon_sym_for] = ACTIONS(968), - [anon_sym_return] = ACTIONS(968), - [anon_sym_break] = ACTIONS(968), - [anon_sym_continue] = ACTIONS(968), - [anon_sym_goto] = ACTIONS(968), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_BANG] = ACTIONS(966), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_DASH_DASH] = ACTIONS(966), - [anon_sym_PLUS_PLUS] = ACTIONS(966), - [anon_sym_sizeof] = ACTIONS(968), - [sym_number_literal] = ACTIONS(966), - [anon_sym_SQUOTE] = ACTIONS(966), - [anon_sym_DQUOTE] = ACTIONS(966), - [sym_true] = ACTIONS(968), - [sym_false] = ACTIONS(968), - [sym_null] = ACTIONS(968), - [sym_identifier] = ACTIONS(968), + [ts_builtin_sym_end] = ACTIONS(957), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(959), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(959), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(959), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(959), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(959), + [sym_preproc_directive] = ACTIONS(959), + [anon_sym_SEMI] = ACTIONS(957), + [anon_sym_typedef] = ACTIONS(959), + [anon_sym_extern] = ACTIONS(959), + [anon_sym_LBRACE] = ACTIONS(957), + [anon_sym_RBRACE] = ACTIONS(957), + [anon_sym_LPAREN2] = ACTIONS(957), + [anon_sym_STAR] = ACTIONS(957), + [anon_sym_static] = ACTIONS(959), + [anon_sym_auto] = ACTIONS(959), + [anon_sym_register] = ACTIONS(959), + [anon_sym_inline] = ACTIONS(959), + [anon_sym_const] = ACTIONS(959), + [anon_sym_restrict] = ACTIONS(959), + [anon_sym_volatile] = ACTIONS(959), + [anon_sym__Atomic] = ACTIONS(959), + [anon_sym_unsigned] = ACTIONS(959), + [anon_sym_long] = ACTIONS(959), + [anon_sym_short] = ACTIONS(959), + [sym_primitive_type] = ACTIONS(959), + [anon_sym_enum] = ACTIONS(959), + [anon_sym_struct] = ACTIONS(959), + [anon_sym_union] = ACTIONS(959), + [anon_sym_if] = ACTIONS(959), + [anon_sym_else] = ACTIONS(959), + [anon_sym_switch] = ACTIONS(959), + [anon_sym_case] = ACTIONS(959), + [anon_sym_default] = ACTIONS(959), + [anon_sym_while] = ACTIONS(959), + [anon_sym_do] = ACTIONS(959), + [anon_sym_for] = ACTIONS(959), + [anon_sym_return] = ACTIONS(959), + [anon_sym_break] = ACTIONS(959), + [anon_sym_continue] = ACTIONS(959), + [anon_sym_goto] = ACTIONS(959), + [anon_sym_AMP] = ACTIONS(957), + [anon_sym_BANG] = ACTIONS(957), + [anon_sym_TILDE] = ACTIONS(957), + [anon_sym_PLUS] = ACTIONS(959), + [anon_sym_DASH] = ACTIONS(959), + [anon_sym_DASH_DASH] = ACTIONS(957), + [anon_sym_PLUS_PLUS] = ACTIONS(957), + [anon_sym_sizeof] = ACTIONS(959), + [sym_number_literal] = ACTIONS(957), + [anon_sym_SQUOTE] = ACTIONS(957), + [anon_sym_DQUOTE] = ACTIONS(957), + [sym_true] = ACTIONS(959), + [sym_false] = ACTIONS(959), + [sym_null] = ACTIONS(959), + [sym_identifier] = ACTIONS(959), [sym_comment] = ACTIONS(39), }, [229] = { @@ -11418,34 +11437,34 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_macro_type_specifier] = STATE(116), [aux_sym_type_definition_repeat1] = STATE(118), [aux_sym_sized_type_specifier_repeat1] = STATE(119), - [anon_sym_LPAREN2] = ACTIONS(970), - [anon_sym_STAR] = ACTIONS(972), + [anon_sym_LPAREN2] = ACTIONS(961), + [anon_sym_STAR] = ACTIONS(963), [anon_sym_const] = ACTIONS(25), [anon_sym_restrict] = ACTIONS(25), [anon_sym_volatile] = ACTIONS(25), [anon_sym__Atomic] = ACTIONS(25), - [anon_sym_unsigned] = ACTIONS(223), - [anon_sym_long] = ACTIONS(223), - [anon_sym_short] = ACTIONS(223), - [sym_primitive_type] = ACTIONS(225), + [anon_sym_unsigned] = ACTIONS(221), + [anon_sym_long] = ACTIONS(221), + [anon_sym_short] = ACTIONS(221), + [sym_primitive_type] = ACTIONS(223), [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), - [anon_sym_AMP] = ACTIONS(972), - [anon_sym_BANG] = ACTIONS(974), - [anon_sym_TILDE] = ACTIONS(976), - [anon_sym_PLUS] = ACTIONS(978), - [anon_sym_DASH] = ACTIONS(978), - [anon_sym_DASH_DASH] = ACTIONS(980), - [anon_sym_PLUS_PLUS] = ACTIONS(980), - [anon_sym_sizeof] = ACTIONS(982), - [sym_number_literal] = ACTIONS(984), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(986), - [sym_false] = ACTIONS(986), - [sym_null] = ACTIONS(986), - [sym_identifier] = ACTIONS(988), + [anon_sym_AMP] = ACTIONS(963), + [anon_sym_BANG] = ACTIONS(965), + [anon_sym_TILDE] = ACTIONS(967), + [anon_sym_PLUS] = ACTIONS(969), + [anon_sym_DASH] = ACTIONS(969), + [anon_sym_DASH_DASH] = ACTIONS(971), + [anon_sym_PLUS_PLUS] = ACTIONS(971), + [anon_sym_sizeof] = ACTIONS(973), + [sym_number_literal] = ACTIONS(975), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(977), + [sym_false] = ACTIONS(977), + [sym_null] = ACTIONS(977), + [sym_identifier] = ACTIONS(979), [sym_comment] = ACTIONS(39), }, [230] = { @@ -11469,33 +11488,33 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(410), [sym_concatenated_string] = STATE(410), [sym_string_literal] = STATE(253), - [anon_sym_LPAREN2] = ACTIONS(554), - [anon_sym_STAR] = ACTIONS(556), - [anon_sym_AMP] = ACTIONS(556), - [anon_sym_BANG] = ACTIONS(580), - [anon_sym_TILDE] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_DASH_DASH] = ACTIONS(586), - [anon_sym_PLUS_PLUS] = ACTIONS(586), - [anon_sym_sizeof] = ACTIONS(588), - [sym_number_literal] = ACTIONS(990), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(992), - [sym_false] = ACTIONS(992), - [sym_null] = ACTIONS(992), - [sym_identifier] = ACTIONS(992), + [anon_sym_LPAREN2] = ACTIONS(550), + [anon_sym_STAR] = ACTIONS(552), + [anon_sym_AMP] = ACTIONS(552), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_TILDE] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(580), + [anon_sym_DASH] = ACTIONS(580), + [anon_sym_DASH_DASH] = ACTIONS(582), + [anon_sym_PLUS_PLUS] = ACTIONS(582), + [anon_sym_sizeof] = ACTIONS(584), + [sym_number_literal] = ACTIONS(981), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(983), + [sym_false] = ACTIONS(983), + [sym_null] = ACTIONS(983), + [sym_identifier] = ACTIONS(983), [sym_comment] = ACTIONS(39), }, [231] = { [sym_parenthesized_expression] = STATE(412), - [anon_sym_LPAREN2] = ACTIONS(994), + [anon_sym_LPAREN2] = ACTIONS(985), [sym_comment] = ACTIONS(39), }, [232] = { [sym_parenthesized_expression] = STATE(413), - [anon_sym_LPAREN2] = ACTIONS(994), + [anon_sym_LPAREN2] = ACTIONS(985), [sym_comment] = ACTIONS(39), }, [233] = { @@ -11519,32 +11538,32 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(420), [sym_concatenated_string] = STATE(420), [sym_string_literal] = STATE(421), - [anon_sym_LPAREN2] = ACTIONS(996), - [anon_sym_STAR] = ACTIONS(998), - [anon_sym_AMP] = ACTIONS(998), - [anon_sym_BANG] = ACTIONS(1000), - [anon_sym_TILDE] = ACTIONS(1002), - [anon_sym_PLUS] = ACTIONS(1004), - [anon_sym_DASH] = ACTIONS(1004), - [anon_sym_DASH_DASH] = ACTIONS(1006), - [anon_sym_PLUS_PLUS] = ACTIONS(1006), - [anon_sym_sizeof] = ACTIONS(1008), - [sym_number_literal] = ACTIONS(1010), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1012), - [sym_false] = ACTIONS(1012), - [sym_null] = ACTIONS(1012), - [sym_identifier] = ACTIONS(1012), + [anon_sym_LPAREN2] = ACTIONS(987), + [anon_sym_STAR] = ACTIONS(989), + [anon_sym_AMP] = ACTIONS(989), + [anon_sym_BANG] = ACTIONS(991), + [anon_sym_TILDE] = ACTIONS(993), + [anon_sym_PLUS] = ACTIONS(995), + [anon_sym_DASH] = ACTIONS(995), + [anon_sym_DASH_DASH] = ACTIONS(997), + [anon_sym_PLUS_PLUS] = ACTIONS(997), + [anon_sym_sizeof] = ACTIONS(999), + [sym_number_literal] = ACTIONS(1001), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(1003), + [sym_false] = ACTIONS(1003), + [sym_null] = ACTIONS(1003), + [sym_identifier] = ACTIONS(1003), [sym_comment] = ACTIONS(39), }, [234] = { - [anon_sym_COLON] = ACTIONS(1014), + [anon_sym_COLON] = ACTIONS(1005), [sym_comment] = ACTIONS(39), }, [235] = { [sym_parenthesized_expression] = STATE(423), - [anon_sym_LPAREN2] = ACTIONS(994), + [anon_sym_LPAREN2] = ACTIONS(985), [sym_comment] = ACTIONS(39), }, [236] = { @@ -11582,40 +11601,40 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(251), [sym_concatenated_string] = STATE(251), [sym_string_literal] = STATE(253), - [anon_sym_SEMI] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(241), - [anon_sym_LPAREN2] = ACTIONS(554), - [anon_sym_STAR] = ACTIONS(556), - [anon_sym_if] = ACTIONS(1016), - [anon_sym_switch] = ACTIONS(1018), - [anon_sym_case] = ACTIONS(1020), - [anon_sym_default] = ACTIONS(1022), - [anon_sym_while] = ACTIONS(1024), - [anon_sym_do] = ACTIONS(1026), - [anon_sym_for] = ACTIONS(1028), - [anon_sym_return] = ACTIONS(572), - [anon_sym_break] = ACTIONS(574), - [anon_sym_continue] = ACTIONS(576), - [anon_sym_goto] = ACTIONS(578), - [anon_sym_AMP] = ACTIONS(556), - [anon_sym_BANG] = ACTIONS(580), - [anon_sym_TILDE] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_DASH_DASH] = ACTIONS(586), - [anon_sym_PLUS_PLUS] = ACTIONS(586), - [anon_sym_sizeof] = ACTIONS(588), - [sym_number_literal] = ACTIONS(590), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(594), - [sym_false] = ACTIONS(594), - [sym_null] = ACTIONS(594), - [sym_identifier] = ACTIONS(1030), + [anon_sym_SEMI] = ACTIONS(546), + [anon_sym_LBRACE] = ACTIONS(239), + [anon_sym_LPAREN2] = ACTIONS(550), + [anon_sym_STAR] = ACTIONS(552), + [anon_sym_if] = ACTIONS(1007), + [anon_sym_switch] = ACTIONS(1009), + [anon_sym_case] = ACTIONS(1011), + [anon_sym_default] = ACTIONS(1013), + [anon_sym_while] = ACTIONS(1015), + [anon_sym_do] = ACTIONS(1017), + [anon_sym_for] = ACTIONS(1019), + [anon_sym_return] = ACTIONS(568), + [anon_sym_break] = ACTIONS(570), + [anon_sym_continue] = ACTIONS(572), + [anon_sym_goto] = ACTIONS(574), + [anon_sym_AMP] = ACTIONS(552), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_TILDE] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(580), + [anon_sym_DASH] = ACTIONS(580), + [anon_sym_DASH_DASH] = ACTIONS(582), + [anon_sym_PLUS_PLUS] = ACTIONS(582), + [anon_sym_sizeof] = ACTIONS(584), + [sym_number_literal] = ACTIONS(586), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(590), + [sym_false] = ACTIONS(590), + [sym_null] = ACTIONS(590), + [sym_identifier] = ACTIONS(1021), [sym_comment] = ACTIONS(39), }, [237] = { - [anon_sym_LPAREN2] = ACTIONS(1032), + [anon_sym_LPAREN2] = ACTIONS(1023), [sym_comment] = ACTIONS(39), }, [238] = { @@ -11639,36 +11658,36 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(435), [sym_concatenated_string] = STATE(435), [sym_string_literal] = STATE(376), - [anon_sym_SEMI] = ACTIONS(1034), - [anon_sym_LPAREN2] = ACTIONS(847), - [anon_sym_STAR] = ACTIONS(849), - [anon_sym_AMP] = ACTIONS(849), - [anon_sym_BANG] = ACTIONS(851), - [anon_sym_TILDE] = ACTIONS(853), - [anon_sym_PLUS] = ACTIONS(855), - [anon_sym_DASH] = ACTIONS(855), - [anon_sym_DASH_DASH] = ACTIONS(857), - [anon_sym_PLUS_PLUS] = ACTIONS(857), - [anon_sym_sizeof] = ACTIONS(859), - [sym_number_literal] = ACTIONS(1036), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1038), - [sym_false] = ACTIONS(1038), - [sym_null] = ACTIONS(1038), - [sym_identifier] = ACTIONS(1038), + [anon_sym_SEMI] = ACTIONS(1025), + [anon_sym_LPAREN2] = ACTIONS(838), + [anon_sym_STAR] = ACTIONS(840), + [anon_sym_AMP] = ACTIONS(840), + [anon_sym_BANG] = ACTIONS(842), + [anon_sym_TILDE] = ACTIONS(844), + [anon_sym_PLUS] = ACTIONS(846), + [anon_sym_DASH] = ACTIONS(846), + [anon_sym_DASH_DASH] = ACTIONS(848), + [anon_sym_PLUS_PLUS] = ACTIONS(848), + [anon_sym_sizeof] = ACTIONS(850), + [sym_number_literal] = ACTIONS(1027), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(1029), + [sym_false] = ACTIONS(1029), + [sym_null] = ACTIONS(1029), + [sym_identifier] = ACTIONS(1029), [sym_comment] = ACTIONS(39), }, [239] = { - [anon_sym_SEMI] = ACTIONS(1040), + [anon_sym_SEMI] = ACTIONS(1031), [sym_comment] = ACTIONS(39), }, [240] = { - [anon_sym_SEMI] = ACTIONS(1042), + [anon_sym_SEMI] = ACTIONS(1033), [sym_comment] = ACTIONS(39), }, [241] = { - [sym_identifier] = ACTIONS(1044), + [sym_identifier] = ACTIONS(1035), [sym_comment] = ACTIONS(39), }, [242] = { @@ -11692,23 +11711,23 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(439), [sym_concatenated_string] = STATE(439), [sym_string_literal] = STATE(253), - [anon_sym_LPAREN2] = ACTIONS(554), - [anon_sym_STAR] = ACTIONS(556), - [anon_sym_AMP] = ACTIONS(556), - [anon_sym_BANG] = ACTIONS(580), - [anon_sym_TILDE] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_DASH_DASH] = ACTIONS(586), - [anon_sym_PLUS_PLUS] = ACTIONS(586), - [anon_sym_sizeof] = ACTIONS(588), - [sym_number_literal] = ACTIONS(1046), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1048), - [sym_false] = ACTIONS(1048), - [sym_null] = ACTIONS(1048), - [sym_identifier] = ACTIONS(1048), + [anon_sym_LPAREN2] = ACTIONS(550), + [anon_sym_STAR] = ACTIONS(552), + [anon_sym_AMP] = ACTIONS(552), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_TILDE] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(580), + [anon_sym_DASH] = ACTIONS(580), + [anon_sym_DASH_DASH] = ACTIONS(582), + [anon_sym_PLUS_PLUS] = ACTIONS(582), + [anon_sym_sizeof] = ACTIONS(584), + [sym_number_literal] = ACTIONS(1037), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(1039), + [sym_false] = ACTIONS(1039), + [sym_null] = ACTIONS(1039), + [sym_identifier] = ACTIONS(1039), [sym_comment] = ACTIONS(39), }, [243] = { @@ -11732,23 +11751,23 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(440), [sym_concatenated_string] = STATE(440), [sym_string_literal] = STATE(253), - [anon_sym_LPAREN2] = ACTIONS(554), - [anon_sym_STAR] = ACTIONS(556), - [anon_sym_AMP] = ACTIONS(556), - [anon_sym_BANG] = ACTIONS(580), - [anon_sym_TILDE] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_DASH_DASH] = ACTIONS(586), - [anon_sym_PLUS_PLUS] = ACTIONS(586), - [anon_sym_sizeof] = ACTIONS(588), - [sym_number_literal] = ACTIONS(1050), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1052), - [sym_false] = ACTIONS(1052), - [sym_null] = ACTIONS(1052), - [sym_identifier] = ACTIONS(1052), + [anon_sym_LPAREN2] = ACTIONS(550), + [anon_sym_STAR] = ACTIONS(552), + [anon_sym_AMP] = ACTIONS(552), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_TILDE] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(580), + [anon_sym_DASH] = ACTIONS(580), + [anon_sym_DASH_DASH] = ACTIONS(582), + [anon_sym_PLUS_PLUS] = ACTIONS(582), + [anon_sym_sizeof] = ACTIONS(584), + [sym_number_literal] = ACTIONS(1041), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(1043), + [sym_false] = ACTIONS(1043), + [sym_null] = ACTIONS(1043), + [sym_identifier] = ACTIONS(1043), [sym_comment] = ACTIONS(39), }, [244] = { @@ -11772,23 +11791,23 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(441), [sym_concatenated_string] = STATE(441), [sym_string_literal] = STATE(253), - [anon_sym_LPAREN2] = ACTIONS(554), - [anon_sym_STAR] = ACTIONS(556), - [anon_sym_AMP] = ACTIONS(556), - [anon_sym_BANG] = ACTIONS(580), - [anon_sym_TILDE] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_DASH_DASH] = ACTIONS(586), - [anon_sym_PLUS_PLUS] = ACTIONS(586), - [anon_sym_sizeof] = ACTIONS(588), - [sym_number_literal] = ACTIONS(1054), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1056), - [sym_false] = ACTIONS(1056), - [sym_null] = ACTIONS(1056), - [sym_identifier] = ACTIONS(1056), + [anon_sym_LPAREN2] = ACTIONS(550), + [anon_sym_STAR] = ACTIONS(552), + [anon_sym_AMP] = ACTIONS(552), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_TILDE] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(580), + [anon_sym_DASH] = ACTIONS(580), + [anon_sym_DASH_DASH] = ACTIONS(582), + [anon_sym_PLUS_PLUS] = ACTIONS(582), + [anon_sym_sizeof] = ACTIONS(584), + [sym_number_literal] = ACTIONS(1045), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(1047), + [sym_false] = ACTIONS(1047), + [sym_null] = ACTIONS(1047), + [sym_identifier] = ACTIONS(1047), [sym_comment] = ACTIONS(39), }, [245] = { @@ -11812,38 +11831,38 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(443), [sym_concatenated_string] = STATE(443), [sym_string_literal] = STATE(253), - [anon_sym_LPAREN2] = ACTIONS(1058), - [anon_sym_STAR] = ACTIONS(556), - [anon_sym_AMP] = ACTIONS(556), - [anon_sym_BANG] = ACTIONS(580), - [anon_sym_TILDE] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_DASH_DASH] = ACTIONS(586), - [anon_sym_PLUS_PLUS] = ACTIONS(586), - [anon_sym_sizeof] = ACTIONS(588), - [sym_number_literal] = ACTIONS(1060), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1062), - [sym_false] = ACTIONS(1062), - [sym_null] = ACTIONS(1062), - [sym_identifier] = ACTIONS(1062), + [anon_sym_LPAREN2] = ACTIONS(1049), + [anon_sym_STAR] = ACTIONS(552), + [anon_sym_AMP] = ACTIONS(552), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_TILDE] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(580), + [anon_sym_DASH] = ACTIONS(580), + [anon_sym_DASH_DASH] = ACTIONS(582), + [anon_sym_PLUS_PLUS] = ACTIONS(582), + [anon_sym_sizeof] = ACTIONS(584), + [sym_number_literal] = ACTIONS(1051), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(1053), + [sym_false] = ACTIONS(1053), + [sym_null] = ACTIONS(1053), + [sym_identifier] = ACTIONS(1053), [sym_comment] = ACTIONS(39), }, [246] = { - [aux_sym_SLASH_LBRACK_CARET_BSLASHn_SQUOTE_RBRACK_SLASH] = ACTIONS(1064), - [sym_escape_sequence] = ACTIONS(1064), + [aux_sym_SLASH_LBRACK_CARET_BSLASHn_SQUOTE_RBRACK_SLASH] = ACTIONS(1055), + [sym_escape_sequence] = ACTIONS(1057), [sym_comment] = ACTIONS(49), }, [247] = { - [anon_sym_COMMA] = ACTIONS(1066), - [anon_sym_SEMI] = ACTIONS(1068), + [anon_sym_COMMA] = ACTIONS(1059), + [anon_sym_SEMI] = ACTIONS(1061), [anon_sym_extern] = ACTIONS(83), - [anon_sym_LPAREN2] = ACTIONS(1071), - [anon_sym_STAR] = ACTIONS(1075), - [anon_sym_LBRACK] = ACTIONS(1066), - [anon_sym_EQ] = ACTIONS(1078), + [anon_sym_LPAREN2] = ACTIONS(1064), + [anon_sym_STAR] = ACTIONS(1068), + [anon_sym_LBRACK] = ACTIONS(1059), + [anon_sym_EQ] = ACTIONS(1071), [anon_sym_static] = ACTIONS(83), [anon_sym_auto] = ACTIONS(83), [anon_sym_register] = ACTIONS(83), @@ -11852,154 +11871,154 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_restrict] = ACTIONS(83), [anon_sym_volatile] = ACTIONS(83), [anon_sym__Atomic] = ACTIONS(83), - [anon_sym_COLON] = ACTIONS(1080), - [anon_sym_QMARK] = ACTIONS(1066), - [anon_sym_STAR_EQ] = ACTIONS(1066), - [anon_sym_SLASH_EQ] = ACTIONS(1066), - [anon_sym_PERCENT_EQ] = ACTIONS(1066), - [anon_sym_PLUS_EQ] = ACTIONS(1066), - [anon_sym_DASH_EQ] = ACTIONS(1066), - [anon_sym_LT_LT_EQ] = ACTIONS(1066), - [anon_sym_GT_GT_EQ] = ACTIONS(1066), - [anon_sym_AMP_EQ] = ACTIONS(1066), - [anon_sym_CARET_EQ] = ACTIONS(1066), - [anon_sym_PIPE_EQ] = ACTIONS(1066), - [anon_sym_AMP] = ACTIONS(1078), - [anon_sym_PIPE_PIPE] = ACTIONS(1066), - [anon_sym_AMP_AMP] = ACTIONS(1066), - [anon_sym_PIPE] = ACTIONS(1078), - [anon_sym_CARET] = ACTIONS(1078), - [anon_sym_EQ_EQ] = ACTIONS(1066), - [anon_sym_BANG_EQ] = ACTIONS(1066), - [anon_sym_LT] = ACTIONS(1078), - [anon_sym_GT] = ACTIONS(1078), - [anon_sym_LT_EQ] = ACTIONS(1066), - [anon_sym_GT_EQ] = ACTIONS(1066), - [anon_sym_LT_LT] = ACTIONS(1078), - [anon_sym_GT_GT] = ACTIONS(1078), - [anon_sym_PLUS] = ACTIONS(1078), - [anon_sym_DASH] = ACTIONS(1078), - [anon_sym_SLASH] = ACTIONS(1078), - [anon_sym_PERCENT] = ACTIONS(1078), - [anon_sym_DASH_DASH] = ACTIONS(1066), - [anon_sym_PLUS_PLUS] = ACTIONS(1066), - [anon_sym_DOT] = ACTIONS(1066), - [anon_sym_DASH_GT] = ACTIONS(1066), + [anon_sym_COLON] = ACTIONS(1073), + [anon_sym_QMARK] = ACTIONS(1059), + [anon_sym_STAR_EQ] = ACTIONS(1059), + [anon_sym_SLASH_EQ] = ACTIONS(1059), + [anon_sym_PERCENT_EQ] = ACTIONS(1059), + [anon_sym_PLUS_EQ] = ACTIONS(1059), + [anon_sym_DASH_EQ] = ACTIONS(1059), + [anon_sym_LT_LT_EQ] = ACTIONS(1059), + [anon_sym_GT_GT_EQ] = ACTIONS(1059), + [anon_sym_AMP_EQ] = ACTIONS(1059), + [anon_sym_CARET_EQ] = ACTIONS(1059), + [anon_sym_PIPE_EQ] = ACTIONS(1059), + [anon_sym_AMP] = ACTIONS(1071), + [anon_sym_PIPE_PIPE] = ACTIONS(1059), + [anon_sym_AMP_AMP] = ACTIONS(1059), + [anon_sym_PIPE] = ACTIONS(1071), + [anon_sym_CARET] = ACTIONS(1071), + [anon_sym_EQ_EQ] = ACTIONS(1059), + [anon_sym_BANG_EQ] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(1071), + [anon_sym_GT] = ACTIONS(1071), + [anon_sym_LT_EQ] = ACTIONS(1059), + [anon_sym_GT_EQ] = ACTIONS(1059), + [anon_sym_LT_LT] = ACTIONS(1071), + [anon_sym_GT_GT] = ACTIONS(1071), + [anon_sym_PLUS] = ACTIONS(1071), + [anon_sym_DASH] = ACTIONS(1071), + [anon_sym_SLASH] = ACTIONS(1071), + [anon_sym_PERCENT] = ACTIONS(1071), + [anon_sym_DASH_DASH] = ACTIONS(1059), + [anon_sym_PLUS_PLUS] = ACTIONS(1059), + [anon_sym_DOT] = ACTIONS(1059), + [anon_sym_DASH_GT] = ACTIONS(1059), [sym_identifier] = ACTIONS(83), [sym_comment] = ACTIONS(39), }, [248] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1082), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1082), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1082), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1082), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1082), - [sym_preproc_directive] = ACTIONS(1082), - [anon_sym_SEMI] = ACTIONS(1084), - [anon_sym_typedef] = ACTIONS(1082), - [anon_sym_extern] = ACTIONS(1082), - [anon_sym_LBRACE] = ACTIONS(1084), - [anon_sym_RBRACE] = ACTIONS(1084), - [anon_sym_LPAREN2] = ACTIONS(1084), - [anon_sym_STAR] = ACTIONS(1084), - [anon_sym_static] = ACTIONS(1082), - [anon_sym_auto] = ACTIONS(1082), - [anon_sym_register] = ACTIONS(1082), - [anon_sym_inline] = ACTIONS(1082), - [anon_sym_const] = ACTIONS(1082), - [anon_sym_restrict] = ACTIONS(1082), - [anon_sym_volatile] = ACTIONS(1082), - [anon_sym__Atomic] = ACTIONS(1082), - [anon_sym_unsigned] = ACTIONS(1082), - [anon_sym_long] = ACTIONS(1082), - [anon_sym_short] = ACTIONS(1082), - [sym_primitive_type] = ACTIONS(1082), - [anon_sym_enum] = ACTIONS(1082), - [anon_sym_struct] = ACTIONS(1082), - [anon_sym_union] = ACTIONS(1082), - [anon_sym_if] = ACTIONS(1082), - [anon_sym_switch] = ACTIONS(1082), - [anon_sym_case] = ACTIONS(1082), - [anon_sym_default] = ACTIONS(1082), - [anon_sym_while] = ACTIONS(1082), - [anon_sym_do] = ACTIONS(1082), - [anon_sym_for] = ACTIONS(1082), - [anon_sym_return] = ACTIONS(1082), - [anon_sym_break] = ACTIONS(1082), - [anon_sym_continue] = ACTIONS(1082), - [anon_sym_goto] = ACTIONS(1082), - [anon_sym_AMP] = ACTIONS(1084), - [anon_sym_BANG] = ACTIONS(1084), - [anon_sym_TILDE] = ACTIONS(1084), - [anon_sym_PLUS] = ACTIONS(1082), - [anon_sym_DASH] = ACTIONS(1082), - [anon_sym_DASH_DASH] = ACTIONS(1084), - [anon_sym_PLUS_PLUS] = ACTIONS(1084), - [anon_sym_sizeof] = ACTIONS(1082), - [sym_number_literal] = ACTIONS(1084), - [anon_sym_SQUOTE] = ACTIONS(1084), - [anon_sym_DQUOTE] = ACTIONS(1084), - [sym_true] = ACTIONS(1082), - [sym_false] = ACTIONS(1082), - [sym_null] = ACTIONS(1082), - [sym_identifier] = ACTIONS(1082), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1075), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1075), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1075), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1075), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1075), + [sym_preproc_directive] = ACTIONS(1075), + [anon_sym_SEMI] = ACTIONS(1077), + [anon_sym_typedef] = ACTIONS(1075), + [anon_sym_extern] = ACTIONS(1075), + [anon_sym_LBRACE] = ACTIONS(1077), + [anon_sym_RBRACE] = ACTIONS(1077), + [anon_sym_LPAREN2] = ACTIONS(1077), + [anon_sym_STAR] = ACTIONS(1077), + [anon_sym_static] = ACTIONS(1075), + [anon_sym_auto] = ACTIONS(1075), + [anon_sym_register] = ACTIONS(1075), + [anon_sym_inline] = ACTIONS(1075), + [anon_sym_const] = ACTIONS(1075), + [anon_sym_restrict] = ACTIONS(1075), + [anon_sym_volatile] = ACTIONS(1075), + [anon_sym__Atomic] = ACTIONS(1075), + [anon_sym_unsigned] = ACTIONS(1075), + [anon_sym_long] = ACTIONS(1075), + [anon_sym_short] = ACTIONS(1075), + [sym_primitive_type] = ACTIONS(1075), + [anon_sym_enum] = ACTIONS(1075), + [anon_sym_struct] = ACTIONS(1075), + [anon_sym_union] = ACTIONS(1075), + [anon_sym_if] = ACTIONS(1075), + [anon_sym_switch] = ACTIONS(1075), + [anon_sym_case] = ACTIONS(1075), + [anon_sym_default] = ACTIONS(1075), + [anon_sym_while] = ACTIONS(1075), + [anon_sym_do] = ACTIONS(1075), + [anon_sym_for] = ACTIONS(1075), + [anon_sym_return] = ACTIONS(1075), + [anon_sym_break] = ACTIONS(1075), + [anon_sym_continue] = ACTIONS(1075), + [anon_sym_goto] = ACTIONS(1075), + [anon_sym_AMP] = ACTIONS(1077), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_TILDE] = ACTIONS(1077), + [anon_sym_PLUS] = ACTIONS(1075), + [anon_sym_DASH] = ACTIONS(1075), + [anon_sym_DASH_DASH] = ACTIONS(1077), + [anon_sym_PLUS_PLUS] = ACTIONS(1077), + [anon_sym_sizeof] = ACTIONS(1075), + [sym_number_literal] = ACTIONS(1077), + [anon_sym_SQUOTE] = ACTIONS(1077), + [anon_sym_DQUOTE] = ACTIONS(1077), + [sym_true] = ACTIONS(1075), + [sym_false] = ACTIONS(1075), + [sym_null] = ACTIONS(1075), + [sym_identifier] = ACTIONS(1075), [sym_comment] = ACTIONS(39), }, [249] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1086), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1086), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1086), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1086), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1086), - [sym_preproc_directive] = ACTIONS(1086), - [anon_sym_SEMI] = ACTIONS(1088), - [anon_sym_typedef] = ACTIONS(1086), - [anon_sym_extern] = ACTIONS(1086), - [anon_sym_LBRACE] = ACTIONS(1088), - [anon_sym_RBRACE] = ACTIONS(1088), - [anon_sym_LPAREN2] = ACTIONS(1088), - [anon_sym_STAR] = ACTIONS(1088), - [anon_sym_static] = ACTIONS(1086), - [anon_sym_auto] = ACTIONS(1086), - [anon_sym_register] = ACTIONS(1086), - [anon_sym_inline] = ACTIONS(1086), - [anon_sym_const] = ACTIONS(1086), - [anon_sym_restrict] = ACTIONS(1086), - [anon_sym_volatile] = ACTIONS(1086), - [anon_sym__Atomic] = ACTIONS(1086), - [anon_sym_unsigned] = ACTIONS(1086), - [anon_sym_long] = ACTIONS(1086), - [anon_sym_short] = ACTIONS(1086), - [sym_primitive_type] = ACTIONS(1086), - [anon_sym_enum] = ACTIONS(1086), - [anon_sym_struct] = ACTIONS(1086), - [anon_sym_union] = ACTIONS(1086), - [anon_sym_if] = ACTIONS(1086), - [anon_sym_switch] = ACTIONS(1086), - [anon_sym_case] = ACTIONS(1086), - [anon_sym_default] = ACTIONS(1086), - [anon_sym_while] = ACTIONS(1086), - [anon_sym_do] = ACTIONS(1086), - [anon_sym_for] = ACTIONS(1086), - [anon_sym_return] = ACTIONS(1086), - [anon_sym_break] = ACTIONS(1086), - [anon_sym_continue] = ACTIONS(1086), - [anon_sym_goto] = ACTIONS(1086), - [anon_sym_AMP] = ACTIONS(1088), - [anon_sym_BANG] = ACTIONS(1088), - [anon_sym_TILDE] = ACTIONS(1088), - [anon_sym_PLUS] = ACTIONS(1086), - [anon_sym_DASH] = ACTIONS(1086), - [anon_sym_DASH_DASH] = ACTIONS(1088), - [anon_sym_PLUS_PLUS] = ACTIONS(1088), - [anon_sym_sizeof] = ACTIONS(1086), - [sym_number_literal] = ACTIONS(1088), - [anon_sym_SQUOTE] = ACTIONS(1088), - [anon_sym_DQUOTE] = ACTIONS(1088), - [sym_true] = ACTIONS(1086), - [sym_false] = ACTIONS(1086), - [sym_null] = ACTIONS(1086), - [sym_identifier] = ACTIONS(1086), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1079), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1079), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1079), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1079), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1079), + [sym_preproc_directive] = ACTIONS(1079), + [anon_sym_SEMI] = ACTIONS(1081), + [anon_sym_typedef] = ACTIONS(1079), + [anon_sym_extern] = ACTIONS(1079), + [anon_sym_LBRACE] = ACTIONS(1081), + [anon_sym_RBRACE] = ACTIONS(1081), + [anon_sym_LPAREN2] = ACTIONS(1081), + [anon_sym_STAR] = ACTIONS(1081), + [anon_sym_static] = ACTIONS(1079), + [anon_sym_auto] = ACTIONS(1079), + [anon_sym_register] = ACTIONS(1079), + [anon_sym_inline] = ACTIONS(1079), + [anon_sym_const] = ACTIONS(1079), + [anon_sym_restrict] = ACTIONS(1079), + [anon_sym_volatile] = ACTIONS(1079), + [anon_sym__Atomic] = ACTIONS(1079), + [anon_sym_unsigned] = ACTIONS(1079), + [anon_sym_long] = ACTIONS(1079), + [anon_sym_short] = ACTIONS(1079), + [sym_primitive_type] = ACTIONS(1079), + [anon_sym_enum] = ACTIONS(1079), + [anon_sym_struct] = ACTIONS(1079), + [anon_sym_union] = ACTIONS(1079), + [anon_sym_if] = ACTIONS(1079), + [anon_sym_switch] = ACTIONS(1079), + [anon_sym_case] = ACTIONS(1079), + [anon_sym_default] = ACTIONS(1079), + [anon_sym_while] = ACTIONS(1079), + [anon_sym_do] = ACTIONS(1079), + [anon_sym_for] = ACTIONS(1079), + [anon_sym_return] = ACTIONS(1079), + [anon_sym_break] = ACTIONS(1079), + [anon_sym_continue] = ACTIONS(1079), + [anon_sym_goto] = ACTIONS(1079), + [anon_sym_AMP] = ACTIONS(1081), + [anon_sym_BANG] = ACTIONS(1081), + [anon_sym_TILDE] = ACTIONS(1081), + [anon_sym_PLUS] = ACTIONS(1079), + [anon_sym_DASH] = ACTIONS(1079), + [anon_sym_DASH_DASH] = ACTIONS(1081), + [anon_sym_PLUS_PLUS] = ACTIONS(1081), + [anon_sym_sizeof] = ACTIONS(1079), + [sym_number_literal] = ACTIONS(1081), + [anon_sym_SQUOTE] = ACTIONS(1081), + [anon_sym_DQUOTE] = ACTIONS(1081), + [sym_true] = ACTIONS(1079), + [sym_false] = ACTIONS(1079), + [sym_null] = ACTIONS(1079), + [sym_identifier] = ACTIONS(1079), [sym_comment] = ACTIONS(39), }, [250] = { @@ -12010,97 +12029,97 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_init_declarator] = STATE(47), [anon_sym_SEMI] = ACTIONS(90), [anon_sym_LPAREN2] = ACTIONS(92), - [anon_sym_STAR] = ACTIONS(534), - [sym_identifier] = ACTIONS(1090), + [anon_sym_STAR] = ACTIONS(530), + [sym_identifier] = ACTIONS(1083), [sym_comment] = ACTIONS(39), }, [251] = { [sym_argument_list] = STATE(465), - [anon_sym_COMMA] = ACTIONS(1092), - [anon_sym_SEMI] = ACTIONS(1094), - [anon_sym_LPAREN2] = ACTIONS(1096), - [anon_sym_STAR] = ACTIONS(1098), - [anon_sym_LBRACK] = ACTIONS(1100), - [anon_sym_EQ] = ACTIONS(1102), - [anon_sym_QMARK] = ACTIONS(1104), - [anon_sym_STAR_EQ] = ACTIONS(1106), - [anon_sym_SLASH_EQ] = ACTIONS(1106), - [anon_sym_PERCENT_EQ] = ACTIONS(1106), - [anon_sym_PLUS_EQ] = ACTIONS(1106), - [anon_sym_DASH_EQ] = ACTIONS(1106), - [anon_sym_LT_LT_EQ] = ACTIONS(1106), - [anon_sym_GT_GT_EQ] = ACTIONS(1106), - [anon_sym_AMP_EQ] = ACTIONS(1106), - [anon_sym_CARET_EQ] = ACTIONS(1106), - [anon_sym_PIPE_EQ] = ACTIONS(1106), - [anon_sym_AMP] = ACTIONS(1108), - [anon_sym_PIPE_PIPE] = ACTIONS(1110), - [anon_sym_AMP_AMP] = ACTIONS(1112), - [anon_sym_PIPE] = ACTIONS(1114), - [anon_sym_CARET] = ACTIONS(1116), - [anon_sym_EQ_EQ] = ACTIONS(1118), - [anon_sym_BANG_EQ] = ACTIONS(1118), - [anon_sym_LT] = ACTIONS(1120), - [anon_sym_GT] = ACTIONS(1120), - [anon_sym_LT_EQ] = ACTIONS(1122), - [anon_sym_GT_EQ] = ACTIONS(1122), - [anon_sym_LT_LT] = ACTIONS(1124), - [anon_sym_GT_GT] = ACTIONS(1124), - [anon_sym_PLUS] = ACTIONS(1126), - [anon_sym_DASH] = ACTIONS(1126), - [anon_sym_SLASH] = ACTIONS(1098), - [anon_sym_PERCENT] = ACTIONS(1098), - [anon_sym_DASH_DASH] = ACTIONS(1128), - [anon_sym_PLUS_PLUS] = ACTIONS(1128), - [anon_sym_DOT] = ACTIONS(1130), - [anon_sym_DASH_GT] = ACTIONS(1130), + [anon_sym_COMMA] = ACTIONS(1085), + [anon_sym_SEMI] = ACTIONS(1087), + [anon_sym_LPAREN2] = ACTIONS(1089), + [anon_sym_STAR] = ACTIONS(1091), + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(1095), + [anon_sym_QMARK] = ACTIONS(1097), + [anon_sym_STAR_EQ] = ACTIONS(1099), + [anon_sym_SLASH_EQ] = ACTIONS(1099), + [anon_sym_PERCENT_EQ] = ACTIONS(1099), + [anon_sym_PLUS_EQ] = ACTIONS(1099), + [anon_sym_DASH_EQ] = ACTIONS(1099), + [anon_sym_LT_LT_EQ] = ACTIONS(1099), + [anon_sym_GT_GT_EQ] = ACTIONS(1099), + [anon_sym_AMP_EQ] = ACTIONS(1099), + [anon_sym_CARET_EQ] = ACTIONS(1099), + [anon_sym_PIPE_EQ] = ACTIONS(1099), + [anon_sym_AMP] = ACTIONS(1101), + [anon_sym_PIPE_PIPE] = ACTIONS(1103), + [anon_sym_AMP_AMP] = ACTIONS(1105), + [anon_sym_PIPE] = ACTIONS(1107), + [anon_sym_CARET] = ACTIONS(1109), + [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(1115), + [anon_sym_GT_EQ] = ACTIONS(1115), + [anon_sym_LT_LT] = ACTIONS(1117), + [anon_sym_GT_GT] = ACTIONS(1117), + [anon_sym_PLUS] = ACTIONS(1119), + [anon_sym_DASH] = ACTIONS(1119), + [anon_sym_SLASH] = ACTIONS(1091), + [anon_sym_PERCENT] = ACTIONS(1091), + [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_PLUS_PLUS] = ACTIONS(1121), + [anon_sym_DOT] = ACTIONS(1123), + [anon_sym_DASH_GT] = ACTIONS(1123), [sym_comment] = ACTIONS(39), }, [252] = { - [anon_sym_SEMI] = ACTIONS(1094), + [anon_sym_SEMI] = ACTIONS(1087), [sym_comment] = ACTIONS(39), }, [253] = { [sym_string_literal] = STATE(466), [aux_sym_concatenated_string_repeat1] = STATE(466), - [anon_sym_COMMA] = ACTIONS(1066), - [anon_sym_SEMI] = ACTIONS(1066), - [anon_sym_LPAREN2] = ACTIONS(1066), - [anon_sym_STAR] = ACTIONS(1078), - [anon_sym_LBRACK] = ACTIONS(1066), - [anon_sym_EQ] = ACTIONS(1078), - [anon_sym_QMARK] = ACTIONS(1066), - [anon_sym_STAR_EQ] = ACTIONS(1066), - [anon_sym_SLASH_EQ] = ACTIONS(1066), - [anon_sym_PERCENT_EQ] = ACTIONS(1066), - [anon_sym_PLUS_EQ] = ACTIONS(1066), - [anon_sym_DASH_EQ] = ACTIONS(1066), - [anon_sym_LT_LT_EQ] = ACTIONS(1066), - [anon_sym_GT_GT_EQ] = ACTIONS(1066), - [anon_sym_AMP_EQ] = ACTIONS(1066), - [anon_sym_CARET_EQ] = ACTIONS(1066), - [anon_sym_PIPE_EQ] = ACTIONS(1066), - [anon_sym_AMP] = ACTIONS(1078), - [anon_sym_PIPE_PIPE] = ACTIONS(1066), - [anon_sym_AMP_AMP] = ACTIONS(1066), - [anon_sym_PIPE] = ACTIONS(1078), - [anon_sym_CARET] = ACTIONS(1078), - [anon_sym_EQ_EQ] = ACTIONS(1066), - [anon_sym_BANG_EQ] = ACTIONS(1066), - [anon_sym_LT] = ACTIONS(1078), - [anon_sym_GT] = ACTIONS(1078), - [anon_sym_LT_EQ] = ACTIONS(1066), - [anon_sym_GT_EQ] = ACTIONS(1066), - [anon_sym_LT_LT] = ACTIONS(1078), - [anon_sym_GT_GT] = ACTIONS(1078), - [anon_sym_PLUS] = ACTIONS(1078), - [anon_sym_DASH] = ACTIONS(1078), - [anon_sym_SLASH] = ACTIONS(1078), - [anon_sym_PERCENT] = ACTIONS(1078), - [anon_sym_DASH_DASH] = ACTIONS(1066), - [anon_sym_PLUS_PLUS] = ACTIONS(1066), - [anon_sym_DOT] = ACTIONS(1066), - [anon_sym_DASH_GT] = ACTIONS(1066), + [anon_sym_COMMA] = ACTIONS(1059), + [anon_sym_SEMI] = ACTIONS(1059), + [anon_sym_LPAREN2] = ACTIONS(1059), + [anon_sym_STAR] = ACTIONS(1071), + [anon_sym_LBRACK] = ACTIONS(1059), + [anon_sym_EQ] = ACTIONS(1071), + [anon_sym_QMARK] = ACTIONS(1059), + [anon_sym_STAR_EQ] = ACTIONS(1059), + [anon_sym_SLASH_EQ] = ACTIONS(1059), + [anon_sym_PERCENT_EQ] = ACTIONS(1059), + [anon_sym_PLUS_EQ] = ACTIONS(1059), + [anon_sym_DASH_EQ] = ACTIONS(1059), + [anon_sym_LT_LT_EQ] = ACTIONS(1059), + [anon_sym_GT_GT_EQ] = ACTIONS(1059), + [anon_sym_AMP_EQ] = ACTIONS(1059), + [anon_sym_CARET_EQ] = ACTIONS(1059), + [anon_sym_PIPE_EQ] = ACTIONS(1059), + [anon_sym_AMP] = ACTIONS(1071), + [anon_sym_PIPE_PIPE] = ACTIONS(1059), + [anon_sym_AMP_AMP] = ACTIONS(1059), + [anon_sym_PIPE] = ACTIONS(1071), + [anon_sym_CARET] = ACTIONS(1071), + [anon_sym_EQ_EQ] = ACTIONS(1059), + [anon_sym_BANG_EQ] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(1071), + [anon_sym_GT] = ACTIONS(1071), + [anon_sym_LT_EQ] = ACTIONS(1059), + [anon_sym_GT_EQ] = ACTIONS(1059), + [anon_sym_LT_LT] = ACTIONS(1071), + [anon_sym_GT_GT] = ACTIONS(1071), + [anon_sym_PLUS] = ACTIONS(1071), + [anon_sym_DASH] = ACTIONS(1071), + [anon_sym_SLASH] = ACTIONS(1071), + [anon_sym_PERCENT] = ACTIONS(1071), + [anon_sym_DASH_DASH] = ACTIONS(1059), + [anon_sym_PLUS_PLUS] = ACTIONS(1059), + [anon_sym_DOT] = ACTIONS(1059), + [anon_sym_DASH_GT] = ACTIONS(1059), [anon_sym_DQUOTE] = ACTIONS(41), [sym_comment] = ACTIONS(39), }, @@ -12160,19 +12179,19 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(468), [aux_sym__declaration_specifiers_repeat1] = STATE(20), [aux_sym_sized_type_specifier_repeat1] = STATE(21), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(542), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(538), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(9), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(544), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(546), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(548), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(540), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(542), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(544), [sym_preproc_directive] = ACTIONS(17), - [anon_sym_SEMI] = ACTIONS(550), + [anon_sym_SEMI] = ACTIONS(546), [anon_sym_typedef] = ACTIONS(19), [anon_sym_extern] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(241), - [anon_sym_RBRACE] = ACTIONS(1132), - [anon_sym_LPAREN2] = ACTIONS(554), - [anon_sym_STAR] = ACTIONS(556), + [anon_sym_LBRACE] = ACTIONS(239), + [anon_sym_RBRACE] = ACTIONS(1125), + [anon_sym_LPAREN2] = ACTIONS(550), + [anon_sym_STAR] = ACTIONS(552), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -12188,49 +12207,49 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), - [anon_sym_if] = ACTIONS(558), - [anon_sym_switch] = ACTIONS(560), - [anon_sym_case] = ACTIONS(562), - [anon_sym_default] = ACTIONS(564), - [anon_sym_while] = ACTIONS(566), - [anon_sym_do] = ACTIONS(568), - [anon_sym_for] = ACTIONS(570), - [anon_sym_return] = ACTIONS(572), - [anon_sym_break] = ACTIONS(574), - [anon_sym_continue] = ACTIONS(576), - [anon_sym_goto] = ACTIONS(578), - [anon_sym_AMP] = ACTIONS(556), - [anon_sym_BANG] = ACTIONS(580), - [anon_sym_TILDE] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_DASH_DASH] = ACTIONS(586), - [anon_sym_PLUS_PLUS] = ACTIONS(586), - [anon_sym_sizeof] = ACTIONS(588), - [sym_number_literal] = ACTIONS(590), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(594), - [sym_false] = ACTIONS(594), - [sym_null] = ACTIONS(594), - [sym_identifier] = ACTIONS(596), + [anon_sym_if] = ACTIONS(554), + [anon_sym_switch] = ACTIONS(556), + [anon_sym_case] = ACTIONS(558), + [anon_sym_default] = ACTIONS(560), + [anon_sym_while] = ACTIONS(562), + [anon_sym_do] = ACTIONS(564), + [anon_sym_for] = ACTIONS(566), + [anon_sym_return] = ACTIONS(568), + [anon_sym_break] = ACTIONS(570), + [anon_sym_continue] = ACTIONS(572), + [anon_sym_goto] = ACTIONS(574), + [anon_sym_AMP] = ACTIONS(552), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_TILDE] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(580), + [anon_sym_DASH] = ACTIONS(580), + [anon_sym_DASH_DASH] = ACTIONS(582), + [anon_sym_PLUS_PLUS] = ACTIONS(582), + [anon_sym_sizeof] = ACTIONS(584), + [sym_number_literal] = ACTIONS(586), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(590), + [sym_false] = ACTIONS(590), + [sym_null] = ACTIONS(590), + [sym_identifier] = ACTIONS(592), [sym_comment] = ACTIONS(39), }, [255] = { [aux_sym_parameter_list_repeat1] = STATE(471), - [anon_sym_COMMA] = ACTIONS(1134), - [anon_sym_RPAREN] = ACTIONS(1136), + [anon_sym_COMMA] = ACTIONS(1127), + [anon_sym_RPAREN] = ACTIONS(1129), [sym_comment] = ACTIONS(39), }, [256] = { - [anon_sym_COMMA] = ACTIONS(1138), - [anon_sym_RPAREN] = ACTIONS(1138), - [anon_sym_SEMI] = ACTIONS(1138), - [anon_sym_LBRACE] = ACTIONS(1138), - [anon_sym_LPAREN2] = ACTIONS(1138), - [anon_sym_LBRACK] = ACTIONS(1138), - [anon_sym_EQ] = ACTIONS(1138), - [anon_sym_COLON] = ACTIONS(1138), + [anon_sym_COMMA] = ACTIONS(1131), + [anon_sym_RPAREN] = ACTIONS(1131), + [anon_sym_SEMI] = ACTIONS(1131), + [anon_sym_LBRACE] = ACTIONS(1131), + [anon_sym_LPAREN2] = ACTIONS(1131), + [anon_sym_LBRACK] = ACTIONS(1131), + [anon_sym_EQ] = ACTIONS(1131), + [anon_sym_COLON] = ACTIONS(1131), [sym_comment] = ACTIONS(39), }, [257] = { @@ -12243,12 +12262,12 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_array_declarator] = STATE(474), [sym_abstract_array_declarator] = STATE(475), [sym_parameter_list] = STATE(212), - [anon_sym_COMMA] = ACTIONS(1140), - [anon_sym_RPAREN] = ACTIONS(1140), - [anon_sym_LPAREN2] = ACTIONS(1142), - [anon_sym_STAR] = ACTIONS(1144), - [anon_sym_LBRACK] = ACTIONS(518), - [sym_identifier] = ACTIONS(1146), + [anon_sym_COMMA] = ACTIONS(1133), + [anon_sym_RPAREN] = ACTIONS(1133), + [anon_sym_LPAREN2] = ACTIONS(1135), + [anon_sym_STAR] = ACTIONS(1137), + [anon_sym_LBRACK] = ACTIONS(514), + [sym_identifier] = ACTIONS(1139), [sym_comment] = ACTIONS(39), }, [258] = { @@ -12292,10 +12311,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_restrict] = ACTIONS(25), [anon_sym_volatile] = ACTIONS(25), [anon_sym__Atomic] = ACTIONS(25), - [anon_sym_unsigned] = ACTIONS(602), - [anon_sym_long] = ACTIONS(602), - [anon_sym_short] = ACTIONS(602), - [sym_primitive_type] = ACTIONS(1148), + [anon_sym_unsigned] = ACTIONS(598), + [anon_sym_long] = ACTIONS(598), + [anon_sym_short] = ACTIONS(598), + [sym_primitive_type] = ACTIONS(1141), [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), @@ -12318,9 +12337,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_restrict] = ACTIONS(108), [anon_sym_volatile] = ACTIONS(108), [anon_sym__Atomic] = ACTIONS(108), - [anon_sym_unsigned] = ACTIONS(1150), - [anon_sym_long] = ACTIONS(1150), - [anon_sym_short] = ACTIONS(1150), + [anon_sym_unsigned] = ACTIONS(1143), + [anon_sym_long] = ACTIONS(1143), + [anon_sym_short] = ACTIONS(1143), [sym_primitive_type] = ACTIONS(112), [sym_identifier] = ACTIONS(114), [sym_comment] = ACTIONS(39), @@ -12357,34 +12376,34 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_macro_type_specifier] = STATE(116), [aux_sym_type_definition_repeat1] = STATE(118), [aux_sym_sized_type_specifier_repeat1] = STATE(119), - [anon_sym_LPAREN2] = ACTIONS(970), - [anon_sym_STAR] = ACTIONS(972), + [anon_sym_LPAREN2] = ACTIONS(961), + [anon_sym_STAR] = ACTIONS(963), [anon_sym_const] = ACTIONS(25), [anon_sym_restrict] = ACTIONS(25), [anon_sym_volatile] = ACTIONS(25), [anon_sym__Atomic] = ACTIONS(25), - [anon_sym_unsigned] = ACTIONS(223), - [anon_sym_long] = ACTIONS(223), - [anon_sym_short] = ACTIONS(223), - [sym_primitive_type] = ACTIONS(225), + [anon_sym_unsigned] = ACTIONS(221), + [anon_sym_long] = ACTIONS(221), + [anon_sym_short] = ACTIONS(221), + [sym_primitive_type] = ACTIONS(223), [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), - [anon_sym_AMP] = ACTIONS(972), - [anon_sym_BANG] = ACTIONS(974), - [anon_sym_TILDE] = ACTIONS(976), - [anon_sym_PLUS] = ACTIONS(978), - [anon_sym_DASH] = ACTIONS(978), - [anon_sym_DASH_DASH] = ACTIONS(980), - [anon_sym_PLUS_PLUS] = ACTIONS(980), - [anon_sym_sizeof] = ACTIONS(982), - [sym_number_literal] = ACTIONS(984), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(986), - [sym_false] = ACTIONS(986), - [sym_null] = ACTIONS(986), - [sym_identifier] = ACTIONS(988), + [anon_sym_AMP] = ACTIONS(963), + [anon_sym_BANG] = ACTIONS(965), + [anon_sym_TILDE] = ACTIONS(967), + [anon_sym_PLUS] = ACTIONS(969), + [anon_sym_DASH] = ACTIONS(969), + [anon_sym_DASH_DASH] = ACTIONS(971), + [anon_sym_PLUS_PLUS] = ACTIONS(971), + [anon_sym_sizeof] = ACTIONS(973), + [sym_number_literal] = ACTIONS(975), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(977), + [sym_false] = ACTIONS(977), + [sym_null] = ACTIONS(977), + [sym_identifier] = ACTIONS(979), [sym_comment] = ACTIONS(39), }, [262] = { @@ -12408,33 +12427,33 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(410), [sym_concatenated_string] = STATE(410), [sym_string_literal] = STATE(272), - [anon_sym_LPAREN2] = ACTIONS(606), - [anon_sym_STAR] = ACTIONS(608), - [anon_sym_AMP] = ACTIONS(608), - [anon_sym_BANG] = ACTIONS(616), - [anon_sym_TILDE] = ACTIONS(618), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_DASH_DASH] = ACTIONS(622), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_sizeof] = ACTIONS(624), - [sym_number_literal] = ACTIONS(990), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(992), - [sym_false] = ACTIONS(992), - [sym_null] = ACTIONS(992), - [sym_identifier] = ACTIONS(992), + [anon_sym_LPAREN2] = ACTIONS(602), + [anon_sym_STAR] = ACTIONS(604), + [anon_sym_AMP] = ACTIONS(604), + [anon_sym_BANG] = ACTIONS(612), + [anon_sym_TILDE] = ACTIONS(614), + [anon_sym_PLUS] = ACTIONS(616), + [anon_sym_DASH] = ACTIONS(616), + [anon_sym_DASH_DASH] = ACTIONS(618), + [anon_sym_PLUS_PLUS] = ACTIONS(618), + [anon_sym_sizeof] = ACTIONS(620), + [sym_number_literal] = ACTIONS(981), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(983), + [sym_false] = ACTIONS(983), + [sym_null] = ACTIONS(983), + [sym_identifier] = ACTIONS(983), [sym_comment] = ACTIONS(39), }, [263] = { - [anon_sym_COMMA] = ACTIONS(1152), - [anon_sym_RPAREN] = ACTIONS(1152), - [anon_sym_SEMI] = ACTIONS(1152), - [anon_sym_LBRACE] = ACTIONS(1152), - [anon_sym_LPAREN2] = ACTIONS(1152), - [anon_sym_LBRACK] = ACTIONS(1152), - [anon_sym_EQ] = ACTIONS(1152), + [anon_sym_COMMA] = ACTIONS(1145), + [anon_sym_RPAREN] = ACTIONS(1145), + [anon_sym_SEMI] = ACTIONS(1145), + [anon_sym_LBRACE] = ACTIONS(1145), + [anon_sym_LPAREN2] = ACTIONS(1145), + [anon_sym_LBRACK] = ACTIONS(1145), + [anon_sym_EQ] = ACTIONS(1145), [sym_comment] = ACTIONS(39), }, [264] = { @@ -12458,23 +12477,23 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(439), [sym_concatenated_string] = STATE(439), [sym_string_literal] = STATE(272), - [anon_sym_LPAREN2] = ACTIONS(606), - [anon_sym_STAR] = ACTIONS(608), - [anon_sym_AMP] = ACTIONS(608), - [anon_sym_BANG] = ACTIONS(616), - [anon_sym_TILDE] = ACTIONS(618), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_DASH_DASH] = ACTIONS(622), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_sizeof] = ACTIONS(624), - [sym_number_literal] = ACTIONS(1046), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1048), - [sym_false] = ACTIONS(1048), - [sym_null] = ACTIONS(1048), - [sym_identifier] = ACTIONS(1048), + [anon_sym_LPAREN2] = ACTIONS(602), + [anon_sym_STAR] = ACTIONS(604), + [anon_sym_AMP] = ACTIONS(604), + [anon_sym_BANG] = ACTIONS(612), + [anon_sym_TILDE] = ACTIONS(614), + [anon_sym_PLUS] = ACTIONS(616), + [anon_sym_DASH] = ACTIONS(616), + [anon_sym_DASH_DASH] = ACTIONS(618), + [anon_sym_PLUS_PLUS] = ACTIONS(618), + [anon_sym_sizeof] = ACTIONS(620), + [sym_number_literal] = ACTIONS(1037), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(1039), + [sym_false] = ACTIONS(1039), + [sym_null] = ACTIONS(1039), + [sym_identifier] = ACTIONS(1039), [sym_comment] = ACTIONS(39), }, [265] = { @@ -12498,23 +12517,23 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(440), [sym_concatenated_string] = STATE(440), [sym_string_literal] = STATE(272), - [anon_sym_LPAREN2] = ACTIONS(606), - [anon_sym_STAR] = ACTIONS(608), - [anon_sym_AMP] = ACTIONS(608), - [anon_sym_BANG] = ACTIONS(616), - [anon_sym_TILDE] = ACTIONS(618), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_DASH_DASH] = ACTIONS(622), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_sizeof] = ACTIONS(624), - [sym_number_literal] = ACTIONS(1050), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1052), - [sym_false] = ACTIONS(1052), - [sym_null] = ACTIONS(1052), - [sym_identifier] = ACTIONS(1052), + [anon_sym_LPAREN2] = ACTIONS(602), + [anon_sym_STAR] = ACTIONS(604), + [anon_sym_AMP] = ACTIONS(604), + [anon_sym_BANG] = ACTIONS(612), + [anon_sym_TILDE] = ACTIONS(614), + [anon_sym_PLUS] = ACTIONS(616), + [anon_sym_DASH] = ACTIONS(616), + [anon_sym_DASH_DASH] = ACTIONS(618), + [anon_sym_PLUS_PLUS] = ACTIONS(618), + [anon_sym_sizeof] = ACTIONS(620), + [sym_number_literal] = ACTIONS(1041), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(1043), + [sym_false] = ACTIONS(1043), + [sym_null] = ACTIONS(1043), + [sym_identifier] = ACTIONS(1043), [sym_comment] = ACTIONS(39), }, [266] = { @@ -12538,23 +12557,23 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(441), [sym_concatenated_string] = STATE(441), [sym_string_literal] = STATE(272), - [anon_sym_LPAREN2] = ACTIONS(606), - [anon_sym_STAR] = ACTIONS(608), - [anon_sym_AMP] = ACTIONS(608), - [anon_sym_BANG] = ACTIONS(616), - [anon_sym_TILDE] = ACTIONS(618), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_DASH_DASH] = ACTIONS(622), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_sizeof] = ACTIONS(624), - [sym_number_literal] = ACTIONS(1054), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1056), - [sym_false] = ACTIONS(1056), - [sym_null] = ACTIONS(1056), - [sym_identifier] = ACTIONS(1056), + [anon_sym_LPAREN2] = ACTIONS(602), + [anon_sym_STAR] = ACTIONS(604), + [anon_sym_AMP] = ACTIONS(604), + [anon_sym_BANG] = ACTIONS(612), + [anon_sym_TILDE] = ACTIONS(614), + [anon_sym_PLUS] = ACTIONS(616), + [anon_sym_DASH] = ACTIONS(616), + [anon_sym_DASH_DASH] = ACTIONS(618), + [anon_sym_PLUS_PLUS] = ACTIONS(618), + [anon_sym_sizeof] = ACTIONS(620), + [sym_number_literal] = ACTIONS(1045), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(1047), + [sym_false] = ACTIONS(1047), + [sym_null] = ACTIONS(1047), + [sym_identifier] = ACTIONS(1047), [sym_comment] = ACTIONS(39), }, [267] = { @@ -12578,32 +12597,32 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(481), [sym_concatenated_string] = STATE(481), [sym_string_literal] = STATE(272), - [anon_sym_LPAREN2] = ACTIONS(1154), - [anon_sym_STAR] = ACTIONS(608), - [anon_sym_AMP] = ACTIONS(608), - [anon_sym_BANG] = ACTIONS(616), - [anon_sym_TILDE] = ACTIONS(618), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_DASH_DASH] = ACTIONS(622), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_sizeof] = ACTIONS(624), - [sym_number_literal] = ACTIONS(1156), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1158), - [sym_false] = ACTIONS(1158), - [sym_null] = ACTIONS(1158), - [sym_identifier] = ACTIONS(1158), + [anon_sym_LPAREN2] = ACTIONS(1147), + [anon_sym_STAR] = ACTIONS(604), + [anon_sym_AMP] = ACTIONS(604), + [anon_sym_BANG] = ACTIONS(612), + [anon_sym_TILDE] = ACTIONS(614), + [anon_sym_PLUS] = ACTIONS(616), + [anon_sym_DASH] = ACTIONS(616), + [anon_sym_DASH_DASH] = ACTIONS(618), + [anon_sym_PLUS_PLUS] = ACTIONS(618), + [anon_sym_sizeof] = ACTIONS(620), + [sym_number_literal] = ACTIONS(1149), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(1151), + [sym_false] = ACTIONS(1151), + [sym_null] = ACTIONS(1151), + [sym_identifier] = ACTIONS(1151), [sym_comment] = ACTIONS(39), }, [268] = { [anon_sym_extern] = ACTIONS(83), - [anon_sym_LPAREN2] = ACTIONS(1071), - [anon_sym_STAR] = ACTIONS(1075), - [anon_sym_LBRACK] = ACTIONS(1066), - [anon_sym_RBRACK] = ACTIONS(1068), - [anon_sym_EQ] = ACTIONS(1078), + [anon_sym_LPAREN2] = ACTIONS(1064), + [anon_sym_STAR] = ACTIONS(1068), + [anon_sym_LBRACK] = ACTIONS(1059), + [anon_sym_RBRACK] = ACTIONS(1061), + [anon_sym_EQ] = ACTIONS(1071), [anon_sym_static] = ACTIONS(83), [anon_sym_auto] = ACTIONS(83), [anon_sym_register] = ACTIONS(83), @@ -12612,41 +12631,41 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_restrict] = ACTIONS(83), [anon_sym_volatile] = ACTIONS(83), [anon_sym__Atomic] = ACTIONS(83), - [anon_sym_QMARK] = ACTIONS(1066), - [anon_sym_STAR_EQ] = ACTIONS(1066), - [anon_sym_SLASH_EQ] = ACTIONS(1066), - [anon_sym_PERCENT_EQ] = ACTIONS(1066), - [anon_sym_PLUS_EQ] = ACTIONS(1066), - [anon_sym_DASH_EQ] = ACTIONS(1066), - [anon_sym_LT_LT_EQ] = ACTIONS(1066), - [anon_sym_GT_GT_EQ] = ACTIONS(1066), - [anon_sym_AMP_EQ] = ACTIONS(1066), - [anon_sym_CARET_EQ] = ACTIONS(1066), - [anon_sym_PIPE_EQ] = ACTIONS(1066), - [anon_sym_AMP] = ACTIONS(1075), - [anon_sym_PIPE_PIPE] = ACTIONS(1066), - [anon_sym_AMP_AMP] = ACTIONS(1066), + [anon_sym_QMARK] = ACTIONS(1059), + [anon_sym_STAR_EQ] = ACTIONS(1059), + [anon_sym_SLASH_EQ] = ACTIONS(1059), + [anon_sym_PERCENT_EQ] = ACTIONS(1059), + [anon_sym_PLUS_EQ] = ACTIONS(1059), + [anon_sym_DASH_EQ] = ACTIONS(1059), + [anon_sym_LT_LT_EQ] = ACTIONS(1059), + [anon_sym_GT_GT_EQ] = ACTIONS(1059), + [anon_sym_AMP_EQ] = ACTIONS(1059), + [anon_sym_CARET_EQ] = ACTIONS(1059), + [anon_sym_PIPE_EQ] = ACTIONS(1059), + [anon_sym_AMP] = ACTIONS(1068), + [anon_sym_PIPE_PIPE] = ACTIONS(1059), + [anon_sym_AMP_AMP] = ACTIONS(1059), [anon_sym_BANG] = ACTIONS(83), - [anon_sym_PIPE] = ACTIONS(1078), - [anon_sym_CARET] = ACTIONS(1078), + [anon_sym_PIPE] = ACTIONS(1071), + [anon_sym_CARET] = ACTIONS(1071), [anon_sym_TILDE] = ACTIONS(81), - [anon_sym_EQ_EQ] = ACTIONS(1066), - [anon_sym_BANG_EQ] = ACTIONS(1066), - [anon_sym_LT] = ACTIONS(1078), - [anon_sym_GT] = ACTIONS(1078), - [anon_sym_LT_EQ] = ACTIONS(1066), - [anon_sym_GT_EQ] = ACTIONS(1066), - [anon_sym_LT_LT] = ACTIONS(1078), - [anon_sym_GT_GT] = ACTIONS(1078), - [anon_sym_PLUS] = ACTIONS(1075), - [anon_sym_DASH] = ACTIONS(1075), - [anon_sym_SLASH] = ACTIONS(1078), - [anon_sym_PERCENT] = ACTIONS(1078), - [anon_sym_DASH_DASH] = ACTIONS(1068), - [anon_sym_PLUS_PLUS] = ACTIONS(1068), + [anon_sym_EQ_EQ] = ACTIONS(1059), + [anon_sym_BANG_EQ] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(1071), + [anon_sym_GT] = ACTIONS(1071), + [anon_sym_LT_EQ] = ACTIONS(1059), + [anon_sym_GT_EQ] = ACTIONS(1059), + [anon_sym_LT_LT] = ACTIONS(1071), + [anon_sym_GT_GT] = ACTIONS(1071), + [anon_sym_PLUS] = ACTIONS(1068), + [anon_sym_DASH] = ACTIONS(1068), + [anon_sym_SLASH] = ACTIONS(1071), + [anon_sym_PERCENT] = ACTIONS(1071), + [anon_sym_DASH_DASH] = ACTIONS(1061), + [anon_sym_PLUS_PLUS] = ACTIONS(1061), [anon_sym_sizeof] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(1066), - [anon_sym_DASH_GT] = ACTIONS(1066), + [anon_sym_DOT] = ACTIONS(1059), + [anon_sym_DASH_GT] = ACTIONS(1059), [sym_number_literal] = ACTIONS(81), [anon_sym_SQUOTE] = ACTIONS(81), [anon_sym_DQUOTE] = ACTIONS(81), @@ -12677,24 +12696,24 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(483), [sym_concatenated_string] = STATE(483), [sym_string_literal] = STATE(272), - [anon_sym_LPAREN2] = ACTIONS(606), - [anon_sym_STAR] = ACTIONS(608), - [anon_sym_RBRACK] = ACTIONS(1160), - [anon_sym_AMP] = ACTIONS(608), - [anon_sym_BANG] = ACTIONS(616), - [anon_sym_TILDE] = ACTIONS(618), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_DASH_DASH] = ACTIONS(622), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_sizeof] = ACTIONS(624), - [sym_number_literal] = ACTIONS(1162), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1164), - [sym_false] = ACTIONS(1164), - [sym_null] = ACTIONS(1164), - [sym_identifier] = ACTIONS(1164), + [anon_sym_LPAREN2] = ACTIONS(602), + [anon_sym_STAR] = ACTIONS(604), + [anon_sym_RBRACK] = ACTIONS(1153), + [anon_sym_AMP] = ACTIONS(604), + [anon_sym_BANG] = ACTIONS(612), + [anon_sym_TILDE] = ACTIONS(614), + [anon_sym_PLUS] = ACTIONS(616), + [anon_sym_DASH] = ACTIONS(616), + [anon_sym_DASH_DASH] = ACTIONS(618), + [anon_sym_PLUS_PLUS] = ACTIONS(618), + [anon_sym_sizeof] = ACTIONS(620), + [sym_number_literal] = ACTIONS(1155), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(1157), + [sym_false] = ACTIONS(1157), + [sym_null] = ACTIONS(1157), + [sym_identifier] = ACTIONS(1157), [sym_comment] = ACTIONS(39), }, [270] = { @@ -12732,85 +12751,85 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { }, [271] = { [sym_argument_list] = STATE(465), - [anon_sym_LPAREN2] = ACTIONS(1096), - [anon_sym_STAR] = ACTIONS(1166), - [anon_sym_LBRACK] = ACTIONS(1100), - [anon_sym_RBRACK] = ACTIONS(1160), - [anon_sym_EQ] = ACTIONS(1168), - [anon_sym_QMARK] = ACTIONS(1170), - [anon_sym_STAR_EQ] = ACTIONS(1172), - [anon_sym_SLASH_EQ] = ACTIONS(1172), - [anon_sym_PERCENT_EQ] = ACTIONS(1172), - [anon_sym_PLUS_EQ] = ACTIONS(1172), - [anon_sym_DASH_EQ] = ACTIONS(1172), - [anon_sym_LT_LT_EQ] = ACTIONS(1172), - [anon_sym_GT_GT_EQ] = ACTIONS(1172), - [anon_sym_AMP_EQ] = ACTIONS(1172), - [anon_sym_CARET_EQ] = ACTIONS(1172), - [anon_sym_PIPE_EQ] = ACTIONS(1172), - [anon_sym_AMP] = ACTIONS(1174), - [anon_sym_PIPE_PIPE] = ACTIONS(1176), - [anon_sym_AMP_AMP] = ACTIONS(1178), - [anon_sym_PIPE] = ACTIONS(1180), - [anon_sym_CARET] = ACTIONS(1182), - [anon_sym_EQ_EQ] = ACTIONS(1184), - [anon_sym_BANG_EQ] = ACTIONS(1184), - [anon_sym_LT] = ACTIONS(1186), - [anon_sym_GT] = ACTIONS(1186), - [anon_sym_LT_EQ] = ACTIONS(1188), - [anon_sym_GT_EQ] = ACTIONS(1188), - [anon_sym_LT_LT] = ACTIONS(1190), - [anon_sym_GT_GT] = ACTIONS(1190), - [anon_sym_PLUS] = ACTIONS(1192), - [anon_sym_DASH] = ACTIONS(1192), - [anon_sym_SLASH] = ACTIONS(1166), - [anon_sym_PERCENT] = ACTIONS(1166), - [anon_sym_DASH_DASH] = ACTIONS(1128), - [anon_sym_PLUS_PLUS] = ACTIONS(1128), - [anon_sym_DOT] = ACTIONS(1130), - [anon_sym_DASH_GT] = ACTIONS(1130), + [anon_sym_LPAREN2] = ACTIONS(1089), + [anon_sym_STAR] = ACTIONS(1159), + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_RBRACK] = ACTIONS(1153), + [anon_sym_EQ] = ACTIONS(1161), + [anon_sym_QMARK] = ACTIONS(1163), + [anon_sym_STAR_EQ] = ACTIONS(1165), + [anon_sym_SLASH_EQ] = ACTIONS(1165), + [anon_sym_PERCENT_EQ] = ACTIONS(1165), + [anon_sym_PLUS_EQ] = ACTIONS(1165), + [anon_sym_DASH_EQ] = ACTIONS(1165), + [anon_sym_LT_LT_EQ] = ACTIONS(1165), + [anon_sym_GT_GT_EQ] = ACTIONS(1165), + [anon_sym_AMP_EQ] = ACTIONS(1165), + [anon_sym_CARET_EQ] = ACTIONS(1165), + [anon_sym_PIPE_EQ] = ACTIONS(1165), + [anon_sym_AMP] = ACTIONS(1167), + [anon_sym_PIPE_PIPE] = ACTIONS(1169), + [anon_sym_AMP_AMP] = ACTIONS(1171), + [anon_sym_PIPE] = ACTIONS(1173), + [anon_sym_CARET] = ACTIONS(1175), + [anon_sym_EQ_EQ] = ACTIONS(1177), + [anon_sym_BANG_EQ] = ACTIONS(1177), + [anon_sym_LT] = ACTIONS(1179), + [anon_sym_GT] = ACTIONS(1179), + [anon_sym_LT_EQ] = ACTIONS(1181), + [anon_sym_GT_EQ] = ACTIONS(1181), + [anon_sym_LT_LT] = ACTIONS(1183), + [anon_sym_GT_GT] = ACTIONS(1183), + [anon_sym_PLUS] = ACTIONS(1185), + [anon_sym_DASH] = ACTIONS(1185), + [anon_sym_SLASH] = ACTIONS(1159), + [anon_sym_PERCENT] = ACTIONS(1159), + [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_PLUS_PLUS] = ACTIONS(1121), + [anon_sym_DOT] = ACTIONS(1123), + [anon_sym_DASH_GT] = ACTIONS(1123), [sym_comment] = ACTIONS(39), }, [272] = { [sym_string_literal] = STATE(497), [aux_sym_concatenated_string_repeat1] = STATE(497), - [anon_sym_LPAREN2] = ACTIONS(1066), - [anon_sym_STAR] = ACTIONS(1078), - [anon_sym_LBRACK] = ACTIONS(1066), - [anon_sym_RBRACK] = ACTIONS(1066), - [anon_sym_EQ] = ACTIONS(1078), - [anon_sym_QMARK] = ACTIONS(1066), - [anon_sym_STAR_EQ] = ACTIONS(1066), - [anon_sym_SLASH_EQ] = ACTIONS(1066), - [anon_sym_PERCENT_EQ] = ACTIONS(1066), - [anon_sym_PLUS_EQ] = ACTIONS(1066), - [anon_sym_DASH_EQ] = ACTIONS(1066), - [anon_sym_LT_LT_EQ] = ACTIONS(1066), - [anon_sym_GT_GT_EQ] = ACTIONS(1066), - [anon_sym_AMP_EQ] = ACTIONS(1066), - [anon_sym_CARET_EQ] = ACTIONS(1066), - [anon_sym_PIPE_EQ] = ACTIONS(1066), - [anon_sym_AMP] = ACTIONS(1078), - [anon_sym_PIPE_PIPE] = ACTIONS(1066), - [anon_sym_AMP_AMP] = ACTIONS(1066), - [anon_sym_PIPE] = ACTIONS(1078), - [anon_sym_CARET] = ACTIONS(1078), - [anon_sym_EQ_EQ] = ACTIONS(1066), - [anon_sym_BANG_EQ] = ACTIONS(1066), - [anon_sym_LT] = ACTIONS(1078), - [anon_sym_GT] = ACTIONS(1078), - [anon_sym_LT_EQ] = ACTIONS(1066), - [anon_sym_GT_EQ] = ACTIONS(1066), - [anon_sym_LT_LT] = ACTIONS(1078), - [anon_sym_GT_GT] = ACTIONS(1078), - [anon_sym_PLUS] = ACTIONS(1078), - [anon_sym_DASH] = ACTIONS(1078), - [anon_sym_SLASH] = ACTIONS(1078), - [anon_sym_PERCENT] = ACTIONS(1078), - [anon_sym_DASH_DASH] = ACTIONS(1066), - [anon_sym_PLUS_PLUS] = ACTIONS(1066), - [anon_sym_DOT] = ACTIONS(1066), - [anon_sym_DASH_GT] = ACTIONS(1066), + [anon_sym_LPAREN2] = ACTIONS(1059), + [anon_sym_STAR] = ACTIONS(1071), + [anon_sym_LBRACK] = ACTIONS(1059), + [anon_sym_RBRACK] = ACTIONS(1059), + [anon_sym_EQ] = ACTIONS(1071), + [anon_sym_QMARK] = ACTIONS(1059), + [anon_sym_STAR_EQ] = ACTIONS(1059), + [anon_sym_SLASH_EQ] = ACTIONS(1059), + [anon_sym_PERCENT_EQ] = ACTIONS(1059), + [anon_sym_PLUS_EQ] = ACTIONS(1059), + [anon_sym_DASH_EQ] = ACTIONS(1059), + [anon_sym_LT_LT_EQ] = ACTIONS(1059), + [anon_sym_GT_GT_EQ] = ACTIONS(1059), + [anon_sym_AMP_EQ] = ACTIONS(1059), + [anon_sym_CARET_EQ] = ACTIONS(1059), + [anon_sym_PIPE_EQ] = ACTIONS(1059), + [anon_sym_AMP] = ACTIONS(1071), + [anon_sym_PIPE_PIPE] = ACTIONS(1059), + [anon_sym_AMP_AMP] = ACTIONS(1059), + [anon_sym_PIPE] = ACTIONS(1071), + [anon_sym_CARET] = ACTIONS(1071), + [anon_sym_EQ_EQ] = ACTIONS(1059), + [anon_sym_BANG_EQ] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(1071), + [anon_sym_GT] = ACTIONS(1071), + [anon_sym_LT_EQ] = ACTIONS(1059), + [anon_sym_GT_EQ] = ACTIONS(1059), + [anon_sym_LT_LT] = ACTIONS(1071), + [anon_sym_GT_GT] = ACTIONS(1071), + [anon_sym_PLUS] = ACTIONS(1071), + [anon_sym_DASH] = ACTIONS(1071), + [anon_sym_SLASH] = ACTIONS(1071), + [anon_sym_PERCENT] = ACTIONS(1071), + [anon_sym_DASH_DASH] = ACTIONS(1059), + [anon_sym_PLUS_PLUS] = ACTIONS(1059), + [anon_sym_DOT] = ACTIONS(1059), + [anon_sym_DASH_GT] = ACTIONS(1059), [anon_sym_DQUOTE] = ACTIONS(41), [sym_comment] = ACTIONS(39), }, @@ -12834,10 +12853,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_restrict] = ACTIONS(25), [anon_sym_volatile] = ACTIONS(25), [anon_sym__Atomic] = ACTIONS(25), - [anon_sym_unsigned] = ACTIONS(612), - [anon_sym_long] = ACTIONS(612), - [anon_sym_short] = ACTIONS(612), - [sym_primitive_type] = ACTIONS(1194), + [anon_sym_unsigned] = ACTIONS(608), + [anon_sym_long] = ACTIONS(608), + [anon_sym_short] = ACTIONS(608), + [sym_primitive_type] = ACTIONS(1187), [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), @@ -12858,9 +12877,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_restrict] = ACTIONS(108), [anon_sym_volatile] = ACTIONS(108), [anon_sym__Atomic] = ACTIONS(108), - [anon_sym_unsigned] = ACTIONS(1196), - [anon_sym_long] = ACTIONS(1196), - [anon_sym_short] = ACTIONS(1196), + [anon_sym_unsigned] = ACTIONS(1189), + [anon_sym_long] = ACTIONS(1189), + [anon_sym_short] = ACTIONS(1189), [sym_primitive_type] = ACTIONS(112), [anon_sym_AMP] = ACTIONS(106), [anon_sym_BANG] = ACTIONS(106), @@ -12905,382 +12924,382 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_concatenated_string] = STATE(504), [sym_string_literal] = STATE(346), [aux_sym_initializer_pair_repeat1] = STATE(506), - [anon_sym_COMMA] = ACTIONS(1198), - [anon_sym_LBRACE] = ACTIONS(632), - [anon_sym_RBRACE] = ACTIONS(1200), - [anon_sym_LPAREN2] = ACTIONS(807), - [anon_sym_STAR] = ACTIONS(809), - [anon_sym_LBRACK] = ACTIONS(1202), - [anon_sym_AMP] = ACTIONS(809), - [anon_sym_BANG] = ACTIONS(811), - [anon_sym_TILDE] = ACTIONS(813), - [anon_sym_PLUS] = ACTIONS(815), - [anon_sym_DASH] = ACTIONS(815), - [anon_sym_DASH_DASH] = ACTIONS(817), - [anon_sym_PLUS_PLUS] = ACTIONS(817), - [anon_sym_sizeof] = ACTIONS(819), - [anon_sym_DOT] = ACTIONS(1204), - [sym_number_literal] = ACTIONS(1206), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1208), - [sym_false] = ACTIONS(1208), - [sym_null] = ACTIONS(1208), - [sym_identifier] = ACTIONS(1208), + [anon_sym_COMMA] = ACTIONS(1191), + [anon_sym_LBRACE] = ACTIONS(628), + [anon_sym_RBRACE] = ACTIONS(1193), + [anon_sym_LPAREN2] = ACTIONS(798), + [anon_sym_STAR] = ACTIONS(800), + [anon_sym_LBRACK] = ACTIONS(1195), + [anon_sym_AMP] = ACTIONS(800), + [anon_sym_BANG] = ACTIONS(802), + [anon_sym_TILDE] = ACTIONS(804), + [anon_sym_PLUS] = ACTIONS(806), + [anon_sym_DASH] = ACTIONS(806), + [anon_sym_DASH_DASH] = ACTIONS(808), + [anon_sym_PLUS_PLUS] = ACTIONS(808), + [anon_sym_sizeof] = ACTIONS(810), + [anon_sym_DOT] = ACTIONS(1197), + [sym_number_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(1201), + [sym_false] = ACTIONS(1201), + [sym_null] = ACTIONS(1201), + [sym_identifier] = ACTIONS(1201), [sym_comment] = ACTIONS(39), }, [276] = { [sym_argument_list] = STATE(465), - [anon_sym_COMMA] = ACTIONS(1210), - [anon_sym_SEMI] = ACTIONS(1210), - [anon_sym_LPAREN2] = ACTIONS(1096), - [anon_sym_STAR] = ACTIONS(1098), - [anon_sym_LBRACK] = ACTIONS(1100), - [anon_sym_EQ] = ACTIONS(1102), - [anon_sym_QMARK] = ACTIONS(1104), - [anon_sym_STAR_EQ] = ACTIONS(1106), - [anon_sym_SLASH_EQ] = ACTIONS(1106), - [anon_sym_PERCENT_EQ] = ACTIONS(1106), - [anon_sym_PLUS_EQ] = ACTIONS(1106), - [anon_sym_DASH_EQ] = ACTIONS(1106), - [anon_sym_LT_LT_EQ] = ACTIONS(1106), - [anon_sym_GT_GT_EQ] = ACTIONS(1106), - [anon_sym_AMP_EQ] = ACTIONS(1106), - [anon_sym_CARET_EQ] = ACTIONS(1106), - [anon_sym_PIPE_EQ] = ACTIONS(1106), - [anon_sym_AMP] = ACTIONS(1108), - [anon_sym_PIPE_PIPE] = ACTIONS(1110), - [anon_sym_AMP_AMP] = ACTIONS(1112), - [anon_sym_PIPE] = ACTIONS(1114), - [anon_sym_CARET] = ACTIONS(1116), - [anon_sym_EQ_EQ] = ACTIONS(1118), - [anon_sym_BANG_EQ] = ACTIONS(1118), - [anon_sym_LT] = ACTIONS(1120), - [anon_sym_GT] = ACTIONS(1120), - [anon_sym_LT_EQ] = ACTIONS(1122), - [anon_sym_GT_EQ] = ACTIONS(1122), - [anon_sym_LT_LT] = ACTIONS(1124), - [anon_sym_GT_GT] = ACTIONS(1124), - [anon_sym_PLUS] = ACTIONS(1126), - [anon_sym_DASH] = ACTIONS(1126), - [anon_sym_SLASH] = ACTIONS(1098), - [anon_sym_PERCENT] = ACTIONS(1098), - [anon_sym_DASH_DASH] = ACTIONS(1128), - [anon_sym_PLUS_PLUS] = ACTIONS(1128), - [anon_sym_DOT] = ACTIONS(1130), - [anon_sym_DASH_GT] = ACTIONS(1130), + [anon_sym_COMMA] = ACTIONS(1203), + [anon_sym_SEMI] = ACTIONS(1203), + [anon_sym_LPAREN2] = ACTIONS(1089), + [anon_sym_STAR] = ACTIONS(1091), + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(1095), + [anon_sym_QMARK] = ACTIONS(1097), + [anon_sym_STAR_EQ] = ACTIONS(1099), + [anon_sym_SLASH_EQ] = ACTIONS(1099), + [anon_sym_PERCENT_EQ] = ACTIONS(1099), + [anon_sym_PLUS_EQ] = ACTIONS(1099), + [anon_sym_DASH_EQ] = ACTIONS(1099), + [anon_sym_LT_LT_EQ] = ACTIONS(1099), + [anon_sym_GT_GT_EQ] = ACTIONS(1099), + [anon_sym_AMP_EQ] = ACTIONS(1099), + [anon_sym_CARET_EQ] = ACTIONS(1099), + [anon_sym_PIPE_EQ] = ACTIONS(1099), + [anon_sym_AMP] = ACTIONS(1101), + [anon_sym_PIPE_PIPE] = ACTIONS(1103), + [anon_sym_AMP_AMP] = ACTIONS(1105), + [anon_sym_PIPE] = ACTIONS(1107), + [anon_sym_CARET] = ACTIONS(1109), + [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(1115), + [anon_sym_GT_EQ] = ACTIONS(1115), + [anon_sym_LT_LT] = ACTIONS(1117), + [anon_sym_GT_GT] = ACTIONS(1117), + [anon_sym_PLUS] = ACTIONS(1119), + [anon_sym_DASH] = ACTIONS(1119), + [anon_sym_SLASH] = ACTIONS(1091), + [anon_sym_PERCENT] = ACTIONS(1091), + [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_PLUS_PLUS] = ACTIONS(1121), + [anon_sym_DOT] = ACTIONS(1123), + [anon_sym_DASH_GT] = ACTIONS(1123), [sym_comment] = ACTIONS(39), }, [277] = { - [anon_sym_COMMA] = ACTIONS(1210), - [anon_sym_SEMI] = ACTIONS(1210), + [anon_sym_COMMA] = ACTIONS(1203), + [anon_sym_SEMI] = ACTIONS(1203), [sym_comment] = ACTIONS(39), }, [278] = { - [ts_builtin_sym_end] = ACTIONS(1212), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1214), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1214), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1214), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1214), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1214), - [sym_preproc_directive] = ACTIONS(1214), - [anon_sym_SEMI] = ACTIONS(1212), - [anon_sym_typedef] = ACTIONS(1214), - [anon_sym_extern] = ACTIONS(1214), - [anon_sym_LBRACE] = ACTIONS(1212), - [anon_sym_RBRACE] = ACTIONS(1212), - [anon_sym_LPAREN2] = ACTIONS(1212), - [anon_sym_STAR] = ACTIONS(1212), - [anon_sym_static] = ACTIONS(1214), - [anon_sym_auto] = ACTIONS(1214), - [anon_sym_register] = ACTIONS(1214), - [anon_sym_inline] = ACTIONS(1214), - [anon_sym_const] = ACTIONS(1214), - [anon_sym_restrict] = ACTIONS(1214), - [anon_sym_volatile] = ACTIONS(1214), - [anon_sym__Atomic] = ACTIONS(1214), - [anon_sym_unsigned] = ACTIONS(1214), - [anon_sym_long] = ACTIONS(1214), - [anon_sym_short] = ACTIONS(1214), - [sym_primitive_type] = ACTIONS(1214), - [anon_sym_enum] = ACTIONS(1214), - [anon_sym_struct] = ACTIONS(1214), - [anon_sym_union] = ACTIONS(1214), - [anon_sym_if] = ACTIONS(1214), - [anon_sym_else] = ACTIONS(1214), - [anon_sym_switch] = ACTIONS(1214), - [anon_sym_case] = ACTIONS(1214), - [anon_sym_default] = ACTIONS(1214), - [anon_sym_while] = ACTIONS(1214), - [anon_sym_do] = ACTIONS(1214), - [anon_sym_for] = ACTIONS(1214), - [anon_sym_return] = ACTIONS(1214), - [anon_sym_break] = ACTIONS(1214), - [anon_sym_continue] = ACTIONS(1214), - [anon_sym_goto] = ACTIONS(1214), - [anon_sym_AMP] = ACTIONS(1212), - [anon_sym_BANG] = ACTIONS(1212), - [anon_sym_TILDE] = ACTIONS(1212), - [anon_sym_PLUS] = ACTIONS(1214), - [anon_sym_DASH] = ACTIONS(1214), - [anon_sym_DASH_DASH] = ACTIONS(1212), - [anon_sym_PLUS_PLUS] = ACTIONS(1212), - [anon_sym_sizeof] = ACTIONS(1214), - [sym_number_literal] = ACTIONS(1212), - [anon_sym_SQUOTE] = ACTIONS(1212), - [anon_sym_DQUOTE] = ACTIONS(1212), - [sym_true] = ACTIONS(1214), - [sym_false] = ACTIONS(1214), - [sym_null] = ACTIONS(1214), - [sym_identifier] = ACTIONS(1214), + [ts_builtin_sym_end] = ACTIONS(1205), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1207), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1207), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1207), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1207), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1207), + [sym_preproc_directive] = ACTIONS(1207), + [anon_sym_SEMI] = ACTIONS(1205), + [anon_sym_typedef] = ACTIONS(1207), + [anon_sym_extern] = ACTIONS(1207), + [anon_sym_LBRACE] = ACTIONS(1205), + [anon_sym_RBRACE] = ACTIONS(1205), + [anon_sym_LPAREN2] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1205), + [anon_sym_static] = ACTIONS(1207), + [anon_sym_auto] = ACTIONS(1207), + [anon_sym_register] = ACTIONS(1207), + [anon_sym_inline] = ACTIONS(1207), + [anon_sym_const] = ACTIONS(1207), + [anon_sym_restrict] = ACTIONS(1207), + [anon_sym_volatile] = ACTIONS(1207), + [anon_sym__Atomic] = ACTIONS(1207), + [anon_sym_unsigned] = ACTIONS(1207), + [anon_sym_long] = ACTIONS(1207), + [anon_sym_short] = ACTIONS(1207), + [sym_primitive_type] = ACTIONS(1207), + [anon_sym_enum] = ACTIONS(1207), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_union] = ACTIONS(1207), + [anon_sym_if] = ACTIONS(1207), + [anon_sym_else] = ACTIONS(1207), + [anon_sym_switch] = ACTIONS(1207), + [anon_sym_case] = ACTIONS(1207), + [anon_sym_default] = ACTIONS(1207), + [anon_sym_while] = ACTIONS(1207), + [anon_sym_do] = ACTIONS(1207), + [anon_sym_for] = ACTIONS(1207), + [anon_sym_return] = ACTIONS(1207), + [anon_sym_break] = ACTIONS(1207), + [anon_sym_continue] = ACTIONS(1207), + [anon_sym_goto] = ACTIONS(1207), + [anon_sym_AMP] = ACTIONS(1205), + [anon_sym_BANG] = ACTIONS(1205), + [anon_sym_TILDE] = ACTIONS(1205), + [anon_sym_PLUS] = ACTIONS(1207), + [anon_sym_DASH] = ACTIONS(1207), + [anon_sym_DASH_DASH] = ACTIONS(1205), + [anon_sym_PLUS_PLUS] = ACTIONS(1205), + [anon_sym_sizeof] = ACTIONS(1207), + [sym_number_literal] = ACTIONS(1205), + [anon_sym_SQUOTE] = ACTIONS(1205), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_true] = ACTIONS(1207), + [sym_false] = ACTIONS(1207), + [sym_null] = ACTIONS(1207), + [sym_identifier] = ACTIONS(1207), [sym_comment] = ACTIONS(39), }, [279] = { [aux_sym_declaration_repeat1] = STATE(279), - [anon_sym_COMMA] = ACTIONS(1216), - [anon_sym_SEMI] = ACTIONS(952), + [anon_sym_COMMA] = ACTIONS(1209), + [anon_sym_SEMI] = ACTIONS(943), [sym_comment] = ACTIONS(39), }, [280] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(1219), - [sym_identifier] = ACTIONS(1219), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1212), + [sym_identifier] = ACTIONS(1212), [sym_comment] = ACTIONS(39), }, [281] = { - [anon_sym_LF] = ACTIONS(1221), - [sym_preproc_arg] = ACTIONS(1221), + [anon_sym_LF] = ACTIONS(1214), + [sym_preproc_arg] = ACTIONS(1214), [sym_comment] = ACTIONS(49), }, [282] = { [aux_sym_preproc_params_repeat1] = STATE(509), - [anon_sym_COMMA] = ACTIONS(664), - [anon_sym_RPAREN] = ACTIONS(1223), + [anon_sym_COMMA] = ACTIONS(657), + [anon_sym_RPAREN] = ACTIONS(1216), [sym_comment] = ACTIONS(39), }, [283] = { - [ts_builtin_sym_end] = ACTIONS(1225), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1227), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1227), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1227), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1227), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1227), - [sym_preproc_directive] = ACTIONS(1227), - [anon_sym_SEMI] = ACTIONS(1225), - [anon_sym_typedef] = ACTIONS(1227), - [anon_sym_extern] = ACTIONS(1227), - [anon_sym_LBRACE] = ACTIONS(1225), - [anon_sym_RBRACE] = ACTIONS(1225), - [anon_sym_LPAREN2] = ACTIONS(1225), - [anon_sym_STAR] = ACTIONS(1225), - [anon_sym_static] = ACTIONS(1227), - [anon_sym_auto] = ACTIONS(1227), - [anon_sym_register] = ACTIONS(1227), - [anon_sym_inline] = ACTIONS(1227), - [anon_sym_const] = ACTIONS(1227), - [anon_sym_restrict] = ACTIONS(1227), - [anon_sym_volatile] = ACTIONS(1227), - [anon_sym__Atomic] = ACTIONS(1227), - [anon_sym_unsigned] = ACTIONS(1227), - [anon_sym_long] = ACTIONS(1227), - [anon_sym_short] = ACTIONS(1227), - [sym_primitive_type] = ACTIONS(1227), - [anon_sym_enum] = ACTIONS(1227), - [anon_sym_struct] = ACTIONS(1227), - [anon_sym_union] = ACTIONS(1227), - [anon_sym_if] = ACTIONS(1227), - [anon_sym_switch] = ACTIONS(1227), - [anon_sym_case] = ACTIONS(1227), - [anon_sym_default] = ACTIONS(1227), - [anon_sym_while] = ACTIONS(1227), - [anon_sym_do] = ACTIONS(1227), - [anon_sym_for] = ACTIONS(1227), - [anon_sym_return] = ACTIONS(1227), - [anon_sym_break] = ACTIONS(1227), - [anon_sym_continue] = ACTIONS(1227), - [anon_sym_goto] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(1225), - [anon_sym_BANG] = ACTIONS(1225), - [anon_sym_TILDE] = ACTIONS(1225), - [anon_sym_PLUS] = ACTIONS(1227), - [anon_sym_DASH] = ACTIONS(1227), - [anon_sym_DASH_DASH] = ACTIONS(1225), - [anon_sym_PLUS_PLUS] = ACTIONS(1225), - [anon_sym_sizeof] = ACTIONS(1227), - [sym_number_literal] = ACTIONS(1225), - [anon_sym_SQUOTE] = ACTIONS(1225), - [anon_sym_DQUOTE] = ACTIONS(1225), - [sym_true] = ACTIONS(1227), - [sym_false] = ACTIONS(1227), - [sym_null] = ACTIONS(1227), - [sym_identifier] = ACTIONS(1227), + [ts_builtin_sym_end] = ACTIONS(1218), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1220), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1220), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1220), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1220), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1220), + [sym_preproc_directive] = ACTIONS(1220), + [anon_sym_SEMI] = ACTIONS(1218), + [anon_sym_typedef] = ACTIONS(1220), + [anon_sym_extern] = ACTIONS(1220), + [anon_sym_LBRACE] = ACTIONS(1218), + [anon_sym_RBRACE] = ACTIONS(1218), + [anon_sym_LPAREN2] = ACTIONS(1218), + [anon_sym_STAR] = ACTIONS(1218), + [anon_sym_static] = ACTIONS(1220), + [anon_sym_auto] = ACTIONS(1220), + [anon_sym_register] = ACTIONS(1220), + [anon_sym_inline] = ACTIONS(1220), + [anon_sym_const] = ACTIONS(1220), + [anon_sym_restrict] = ACTIONS(1220), + [anon_sym_volatile] = ACTIONS(1220), + [anon_sym__Atomic] = ACTIONS(1220), + [anon_sym_unsigned] = ACTIONS(1220), + [anon_sym_long] = ACTIONS(1220), + [anon_sym_short] = ACTIONS(1220), + [sym_primitive_type] = ACTIONS(1220), + [anon_sym_enum] = ACTIONS(1220), + [anon_sym_struct] = ACTIONS(1220), + [anon_sym_union] = ACTIONS(1220), + [anon_sym_if] = ACTIONS(1220), + [anon_sym_switch] = ACTIONS(1220), + [anon_sym_case] = ACTIONS(1220), + [anon_sym_default] = ACTIONS(1220), + [anon_sym_while] = ACTIONS(1220), + [anon_sym_do] = ACTIONS(1220), + [anon_sym_for] = ACTIONS(1220), + [anon_sym_return] = ACTIONS(1220), + [anon_sym_break] = ACTIONS(1220), + [anon_sym_continue] = ACTIONS(1220), + [anon_sym_goto] = ACTIONS(1220), + [anon_sym_AMP] = ACTIONS(1218), + [anon_sym_BANG] = ACTIONS(1218), + [anon_sym_TILDE] = ACTIONS(1218), + [anon_sym_PLUS] = ACTIONS(1220), + [anon_sym_DASH] = ACTIONS(1220), + [anon_sym_DASH_DASH] = ACTIONS(1218), + [anon_sym_PLUS_PLUS] = ACTIONS(1218), + [anon_sym_sizeof] = ACTIONS(1220), + [sym_number_literal] = ACTIONS(1218), + [anon_sym_SQUOTE] = ACTIONS(1218), + [anon_sym_DQUOTE] = ACTIONS(1218), + [sym_true] = ACTIONS(1220), + [sym_false] = ACTIONS(1220), + [sym_null] = ACTIONS(1220), + [sym_identifier] = ACTIONS(1220), [sym_comment] = ACTIONS(39), }, [284] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(328), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(328), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(328), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(328), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(328), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(328), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(328), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(328), - [sym_preproc_directive] = ACTIONS(328), - [anon_sym_SEMI] = ACTIONS(326), - [anon_sym_typedef] = ACTIONS(328), - [anon_sym_extern] = ACTIONS(328), - [anon_sym_LBRACE] = ACTIONS(326), - [anon_sym_LPAREN2] = ACTIONS(326), - [anon_sym_STAR] = ACTIONS(326), - [anon_sym_static] = ACTIONS(328), - [anon_sym_auto] = ACTIONS(328), - [anon_sym_register] = ACTIONS(328), - [anon_sym_inline] = ACTIONS(328), - [anon_sym_const] = ACTIONS(328), - [anon_sym_restrict] = ACTIONS(328), - [anon_sym_volatile] = ACTIONS(328), - [anon_sym__Atomic] = ACTIONS(328), - [anon_sym_unsigned] = ACTIONS(328), - [anon_sym_long] = ACTIONS(328), - [anon_sym_short] = ACTIONS(328), - [sym_primitive_type] = ACTIONS(328), - [anon_sym_enum] = ACTIONS(328), - [anon_sym_struct] = ACTIONS(328), - [anon_sym_union] = ACTIONS(328), - [anon_sym_if] = ACTIONS(328), - [anon_sym_switch] = ACTIONS(328), - [anon_sym_case] = ACTIONS(328), - [anon_sym_default] = ACTIONS(328), - [anon_sym_while] = ACTIONS(328), - [anon_sym_do] = ACTIONS(328), - [anon_sym_for] = ACTIONS(328), - [anon_sym_return] = ACTIONS(328), - [anon_sym_break] = ACTIONS(328), - [anon_sym_continue] = ACTIONS(328), - [anon_sym_goto] = ACTIONS(328), - [anon_sym_AMP] = ACTIONS(326), - [anon_sym_BANG] = ACTIONS(326), - [anon_sym_TILDE] = ACTIONS(326), - [anon_sym_PLUS] = ACTIONS(328), - [anon_sym_DASH] = ACTIONS(328), - [anon_sym_DASH_DASH] = ACTIONS(326), - [anon_sym_PLUS_PLUS] = ACTIONS(326), - [anon_sym_sizeof] = ACTIONS(328), - [sym_number_literal] = ACTIONS(326), - [anon_sym_SQUOTE] = ACTIONS(326), - [anon_sym_DQUOTE] = ACTIONS(326), - [sym_true] = ACTIONS(328), - [sym_false] = ACTIONS(328), - [sym_null] = ACTIONS(328), - [sym_identifier] = ACTIONS(328), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(326), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(326), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(326), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(326), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(326), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(326), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(326), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(326), + [sym_preproc_directive] = ACTIONS(326), + [anon_sym_SEMI] = ACTIONS(324), + [anon_sym_typedef] = ACTIONS(326), + [anon_sym_extern] = ACTIONS(326), + [anon_sym_LBRACE] = ACTIONS(324), + [anon_sym_LPAREN2] = ACTIONS(324), + [anon_sym_STAR] = ACTIONS(324), + [anon_sym_static] = ACTIONS(326), + [anon_sym_auto] = ACTIONS(326), + [anon_sym_register] = ACTIONS(326), + [anon_sym_inline] = ACTIONS(326), + [anon_sym_const] = ACTIONS(326), + [anon_sym_restrict] = ACTIONS(326), + [anon_sym_volatile] = ACTIONS(326), + [anon_sym__Atomic] = ACTIONS(326), + [anon_sym_unsigned] = ACTIONS(326), + [anon_sym_long] = ACTIONS(326), + [anon_sym_short] = ACTIONS(326), + [sym_primitive_type] = ACTIONS(326), + [anon_sym_enum] = ACTIONS(326), + [anon_sym_struct] = ACTIONS(326), + [anon_sym_union] = ACTIONS(326), + [anon_sym_if] = ACTIONS(326), + [anon_sym_switch] = ACTIONS(326), + [anon_sym_case] = ACTIONS(326), + [anon_sym_default] = ACTIONS(326), + [anon_sym_while] = ACTIONS(326), + [anon_sym_do] = ACTIONS(326), + [anon_sym_for] = ACTIONS(326), + [anon_sym_return] = ACTIONS(326), + [anon_sym_break] = ACTIONS(326), + [anon_sym_continue] = ACTIONS(326), + [anon_sym_goto] = ACTIONS(326), + [anon_sym_AMP] = ACTIONS(324), + [anon_sym_BANG] = ACTIONS(324), + [anon_sym_TILDE] = ACTIONS(324), + [anon_sym_PLUS] = ACTIONS(326), + [anon_sym_DASH] = ACTIONS(326), + [anon_sym_DASH_DASH] = ACTIONS(324), + [anon_sym_PLUS_PLUS] = ACTIONS(324), + [anon_sym_sizeof] = ACTIONS(326), + [sym_number_literal] = ACTIONS(324), + [anon_sym_SQUOTE] = ACTIONS(324), + [anon_sym_DQUOTE] = ACTIONS(324), + [sym_true] = ACTIONS(326), + [sym_false] = ACTIONS(326), + [sym_null] = ACTIONS(326), + [sym_identifier] = ACTIONS(326), [sym_comment] = ACTIONS(39), }, [285] = { [aux_sym_string_literal_repeat1] = STATE(136), - [anon_sym_DQUOTE] = ACTIONS(1229), - [aux_sym_SLASH_LBRACK_CARET_BSLASH_BSLASH_DQUOTE_BSLASHn_RBRACK_SLASH] = ACTIONS(332), - [sym_escape_sequence] = ACTIONS(334), + [anon_sym_DQUOTE] = ACTIONS(1222), + [aux_sym_SLASH_LBRACK_CARET_BSLASH_BSLASH_DQUOTE_BSLASHn_RBRACK_SLASH] = ACTIONS(330), + [sym_escape_sequence] = ACTIONS(330), [sym_comment] = ACTIONS(49), }, [286] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(338), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(338), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(338), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(338), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(338), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(338), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(338), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(338), - [sym_preproc_directive] = ACTIONS(338), - [anon_sym_SEMI] = ACTIONS(336), - [anon_sym_typedef] = ACTIONS(338), - [anon_sym_extern] = ACTIONS(338), - [anon_sym_LBRACE] = ACTIONS(336), - [anon_sym_LPAREN2] = ACTIONS(336), - [anon_sym_STAR] = ACTIONS(336), - [anon_sym_static] = ACTIONS(338), - [anon_sym_auto] = ACTIONS(338), - [anon_sym_register] = ACTIONS(338), - [anon_sym_inline] = ACTIONS(338), - [anon_sym_const] = ACTIONS(338), - [anon_sym_restrict] = ACTIONS(338), - [anon_sym_volatile] = ACTIONS(338), - [anon_sym__Atomic] = ACTIONS(338), - [anon_sym_unsigned] = ACTIONS(338), - [anon_sym_long] = ACTIONS(338), - [anon_sym_short] = ACTIONS(338), - [sym_primitive_type] = ACTIONS(338), - [anon_sym_enum] = ACTIONS(338), - [anon_sym_struct] = ACTIONS(338), - [anon_sym_union] = ACTIONS(338), - [anon_sym_if] = ACTIONS(338), - [anon_sym_switch] = ACTIONS(338), - [anon_sym_case] = ACTIONS(338), - [anon_sym_default] = ACTIONS(338), - [anon_sym_while] = ACTIONS(338), - [anon_sym_do] = ACTIONS(338), - [anon_sym_for] = ACTIONS(338), - [anon_sym_return] = ACTIONS(338), - [anon_sym_break] = ACTIONS(338), - [anon_sym_continue] = ACTIONS(338), - [anon_sym_goto] = ACTIONS(338), - [anon_sym_AMP] = ACTIONS(336), - [anon_sym_BANG] = ACTIONS(336), - [anon_sym_TILDE] = ACTIONS(336), - [anon_sym_PLUS] = ACTIONS(338), - [anon_sym_DASH] = ACTIONS(338), - [anon_sym_DASH_DASH] = ACTIONS(336), - [anon_sym_PLUS_PLUS] = ACTIONS(336), - [anon_sym_sizeof] = ACTIONS(338), - [sym_number_literal] = ACTIONS(336), - [anon_sym_SQUOTE] = ACTIONS(336), - [anon_sym_DQUOTE] = ACTIONS(336), - [sym_true] = ACTIONS(338), - [sym_false] = ACTIONS(338), - [sym_null] = ACTIONS(338), - [sym_identifier] = ACTIONS(338), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(334), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(334), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(334), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(334), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(334), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(334), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(334), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(334), + [sym_preproc_directive] = ACTIONS(334), + [anon_sym_SEMI] = ACTIONS(332), + [anon_sym_typedef] = ACTIONS(334), + [anon_sym_extern] = ACTIONS(334), + [anon_sym_LBRACE] = ACTIONS(332), + [anon_sym_LPAREN2] = ACTIONS(332), + [anon_sym_STAR] = ACTIONS(332), + [anon_sym_static] = ACTIONS(334), + [anon_sym_auto] = ACTIONS(334), + [anon_sym_register] = ACTIONS(334), + [anon_sym_inline] = ACTIONS(334), + [anon_sym_const] = ACTIONS(334), + [anon_sym_restrict] = ACTIONS(334), + [anon_sym_volatile] = ACTIONS(334), + [anon_sym__Atomic] = ACTIONS(334), + [anon_sym_unsigned] = ACTIONS(334), + [anon_sym_long] = ACTIONS(334), + [anon_sym_short] = ACTIONS(334), + [sym_primitive_type] = ACTIONS(334), + [anon_sym_enum] = ACTIONS(334), + [anon_sym_struct] = ACTIONS(334), + [anon_sym_union] = ACTIONS(334), + [anon_sym_if] = ACTIONS(334), + [anon_sym_switch] = ACTIONS(334), + [anon_sym_case] = ACTIONS(334), + [anon_sym_default] = ACTIONS(334), + [anon_sym_while] = ACTIONS(334), + [anon_sym_do] = ACTIONS(334), + [anon_sym_for] = ACTIONS(334), + [anon_sym_return] = ACTIONS(334), + [anon_sym_break] = ACTIONS(334), + [anon_sym_continue] = ACTIONS(334), + [anon_sym_goto] = ACTIONS(334), + [anon_sym_AMP] = ACTIONS(332), + [anon_sym_BANG] = ACTIONS(332), + [anon_sym_TILDE] = ACTIONS(332), + [anon_sym_PLUS] = ACTIONS(334), + [anon_sym_DASH] = ACTIONS(334), + [anon_sym_DASH_DASH] = ACTIONS(332), + [anon_sym_PLUS_PLUS] = ACTIONS(332), + [anon_sym_sizeof] = ACTIONS(334), + [sym_number_literal] = ACTIONS(332), + [anon_sym_SQUOTE] = ACTIONS(332), + [anon_sym_DQUOTE] = ACTIONS(332), + [sym_true] = ACTIONS(334), + [sym_false] = ACTIONS(334), + [sym_null] = ACTIONS(334), + [sym_identifier] = ACTIONS(334), [sym_comment] = ACTIONS(39), }, [287] = { - [anon_sym_LF] = ACTIONS(1231), + [anon_sym_LF] = ACTIONS(1224), [sym_comment] = ACTIONS(49), }, [288] = { - [anon_sym_LF] = ACTIONS(1233), - [sym_preproc_arg] = ACTIONS(1235), + [anon_sym_LF] = ACTIONS(1226), + [sym_preproc_arg] = ACTIONS(1228), [sym_comment] = ACTIONS(49), }, [289] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(360), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(360), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(360), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(360), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(360), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(360), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(360), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(360), - [sym_preproc_directive] = ACTIONS(360), - [anon_sym_typedef] = ACTIONS(360), - [anon_sym_extern] = ACTIONS(360), - [anon_sym_static] = ACTIONS(360), - [anon_sym_auto] = ACTIONS(360), - [anon_sym_register] = ACTIONS(360), - [anon_sym_inline] = ACTIONS(360), - [anon_sym_const] = ACTIONS(360), - [anon_sym_restrict] = ACTIONS(360), - [anon_sym_volatile] = ACTIONS(360), - [anon_sym__Atomic] = ACTIONS(360), - [anon_sym_unsigned] = ACTIONS(360), - [anon_sym_long] = ACTIONS(360), - [anon_sym_short] = ACTIONS(360), - [sym_primitive_type] = ACTIONS(360), - [anon_sym_enum] = ACTIONS(360), - [anon_sym_struct] = ACTIONS(360), - [anon_sym_union] = ACTIONS(360), - [sym_identifier] = ACTIONS(360), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(356), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(356), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(356), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(356), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(356), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(356), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(356), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(356), + [sym_preproc_directive] = ACTIONS(356), + [anon_sym_typedef] = ACTIONS(356), + [anon_sym_extern] = ACTIONS(356), + [anon_sym_static] = ACTIONS(356), + [anon_sym_auto] = ACTIONS(356), + [anon_sym_register] = ACTIONS(356), + [anon_sym_inline] = ACTIONS(356), + [anon_sym_const] = ACTIONS(356), + [anon_sym_restrict] = ACTIONS(356), + [anon_sym_volatile] = ACTIONS(356), + [anon_sym__Atomic] = ACTIONS(356), + [anon_sym_unsigned] = ACTIONS(356), + [anon_sym_long] = ACTIONS(356), + [anon_sym_short] = ACTIONS(356), + [sym_primitive_type] = ACTIONS(356), + [anon_sym_enum] = ACTIONS(356), + [anon_sym_struct] = ACTIONS(356), + [anon_sym_union] = ACTIONS(356), + [sym_identifier] = ACTIONS(356), [sym_comment] = ACTIONS(39), }, [290] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1237), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1230), [sym_comment] = ACTIONS(39), }, [291] = { @@ -13309,17 +13328,17 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_translation_unit_repeat1] = STATE(169), [aux_sym__declaration_specifiers_repeat1] = STATE(20), [aux_sym_sized_type_specifier_repeat1] = STATE(21), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(133), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(135), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(137), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1239), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(141), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(143), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(145), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(147), - [sym_preproc_directive] = ACTIONS(149), - [anon_sym_typedef] = ACTIONS(151), - [anon_sym_extern] = ACTIONS(153), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(131), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(133), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(135), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1232), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(139), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(141), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(143), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(145), + [sym_preproc_directive] = ACTIONS(147), + [anon_sym_typedef] = ACTIONS(149), + [anon_sym_extern] = ACTIONS(151), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -13339,37 +13358,37 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(39), }, [292] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(402), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(402), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(402), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(402), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(402), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(402), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(402), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(402), - [sym_preproc_directive] = ACTIONS(402), - [anon_sym_typedef] = ACTIONS(402), - [anon_sym_extern] = ACTIONS(402), - [anon_sym_static] = ACTIONS(402), - [anon_sym_auto] = ACTIONS(402), - [anon_sym_register] = ACTIONS(402), - [anon_sym_inline] = ACTIONS(402), - [anon_sym_const] = ACTIONS(402), - [anon_sym_restrict] = ACTIONS(402), - [anon_sym_volatile] = ACTIONS(402), - [anon_sym__Atomic] = ACTIONS(402), - [anon_sym_unsigned] = ACTIONS(402), - [anon_sym_long] = ACTIONS(402), - [anon_sym_short] = ACTIONS(402), - [sym_primitive_type] = ACTIONS(402), - [anon_sym_enum] = ACTIONS(402), - [anon_sym_struct] = ACTIONS(402), - [anon_sym_union] = ACTIONS(402), - [sym_identifier] = ACTIONS(402), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(398), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(398), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(398), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(398), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(398), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(398), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(398), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(398), + [sym_preproc_directive] = ACTIONS(398), + [anon_sym_typedef] = ACTIONS(398), + [anon_sym_extern] = ACTIONS(398), + [anon_sym_static] = ACTIONS(398), + [anon_sym_auto] = ACTIONS(398), + [anon_sym_register] = ACTIONS(398), + [anon_sym_inline] = ACTIONS(398), + [anon_sym_const] = ACTIONS(398), + [anon_sym_restrict] = ACTIONS(398), + [anon_sym_volatile] = ACTIONS(398), + [anon_sym__Atomic] = ACTIONS(398), + [anon_sym_unsigned] = ACTIONS(398), + [anon_sym_long] = ACTIONS(398), + [anon_sym_short] = ACTIONS(398), + [sym_primitive_type] = ACTIONS(398), + [anon_sym_enum] = ACTIONS(398), + [anon_sym_struct] = ACTIONS(398), + [anon_sym_union] = ACTIONS(398), + [sym_identifier] = ACTIONS(398), [sym_comment] = ACTIONS(39), }, [293] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1241), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1234), [sym_comment] = ACTIONS(39), }, [294] = { @@ -13398,17 +13417,17 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_translation_unit_repeat1] = STATE(169), [aux_sym__declaration_specifiers_repeat1] = STATE(20), [aux_sym_sized_type_specifier_repeat1] = STATE(21), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(133), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(135), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(137), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1243), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(141), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(143), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(145), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(147), - [sym_preproc_directive] = ACTIONS(149), - [anon_sym_typedef] = ACTIONS(151), - [anon_sym_extern] = ACTIONS(153), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(131), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(133), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(135), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1236), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(139), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(141), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(143), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(145), + [sym_preproc_directive] = ACTIONS(147), + [anon_sym_typedef] = ACTIONS(149), + [anon_sym_extern] = ACTIONS(151), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -13428,37 +13447,37 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(39), }, [295] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(410), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(410), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(410), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(410), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(410), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(410), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(410), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(410), - [sym_preproc_directive] = ACTIONS(410), - [anon_sym_typedef] = ACTIONS(410), - [anon_sym_extern] = ACTIONS(410), - [anon_sym_static] = ACTIONS(410), - [anon_sym_auto] = ACTIONS(410), - [anon_sym_register] = ACTIONS(410), - [anon_sym_inline] = ACTIONS(410), - [anon_sym_const] = ACTIONS(410), - [anon_sym_restrict] = ACTIONS(410), - [anon_sym_volatile] = ACTIONS(410), - [anon_sym__Atomic] = ACTIONS(410), - [anon_sym_unsigned] = ACTIONS(410), - [anon_sym_long] = ACTIONS(410), - [anon_sym_short] = ACTIONS(410), - [sym_primitive_type] = ACTIONS(410), - [anon_sym_enum] = ACTIONS(410), - [anon_sym_struct] = ACTIONS(410), - [anon_sym_union] = ACTIONS(410), - [sym_identifier] = ACTIONS(410), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(406), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(406), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(406), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(406), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(406), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(406), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(406), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(406), + [sym_preproc_directive] = ACTIONS(406), + [anon_sym_typedef] = ACTIONS(406), + [anon_sym_extern] = ACTIONS(406), + [anon_sym_static] = ACTIONS(406), + [anon_sym_auto] = ACTIONS(406), + [anon_sym_register] = ACTIONS(406), + [anon_sym_inline] = ACTIONS(406), + [anon_sym_const] = ACTIONS(406), + [anon_sym_restrict] = ACTIONS(406), + [anon_sym_volatile] = ACTIONS(406), + [anon_sym__Atomic] = ACTIONS(406), + [anon_sym_unsigned] = ACTIONS(406), + [anon_sym_long] = ACTIONS(406), + [anon_sym_short] = ACTIONS(406), + [sym_primitive_type] = ACTIONS(406), + [anon_sym_enum] = ACTIONS(406), + [anon_sym_struct] = ACTIONS(406), + [anon_sym_union] = ACTIONS(406), + [sym_identifier] = ACTIONS(406), [sym_comment] = ACTIONS(39), }, [296] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1245), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1238), [sym_comment] = ACTIONS(39), }, [297] = { @@ -13487,17 +13506,17 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_translation_unit_repeat1] = STATE(169), [aux_sym__declaration_specifiers_repeat1] = STATE(20), [aux_sym_sized_type_specifier_repeat1] = STATE(21), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(133), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(135), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(137), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1247), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(141), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(143), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(145), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(147), - [sym_preproc_directive] = ACTIONS(149), - [anon_sym_typedef] = ACTIONS(151), - [anon_sym_extern] = ACTIONS(153), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(131), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(133), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(135), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1240), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(139), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(141), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(143), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(145), + [sym_preproc_directive] = ACTIONS(147), + [anon_sym_typedef] = ACTIONS(149), + [anon_sym_extern] = ACTIONS(151), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -13518,73 +13537,73 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { }, [298] = { [aux_sym_string_literal_repeat1] = STATE(521), - [anon_sym_DQUOTE] = ACTIONS(1249), - [aux_sym_SLASH_LBRACK_CARET_BSLASH_BSLASH_DQUOTE_BSLASHn_RBRACK_SLASH] = ACTIONS(1251), - [sym_escape_sequence] = ACTIONS(1253), + [anon_sym_DQUOTE] = ACTIONS(1242), + [aux_sym_SLASH_LBRACK_CARET_BSLASH_BSLASH_DQUOTE_BSLASHn_RBRACK_SLASH] = ACTIONS(1244), + [sym_escape_sequence] = ACTIONS(1244), [sym_comment] = ACTIONS(49), }, [299] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(125), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(125), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(125), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(125), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(125), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(125), - [sym_preproc_directive] = ACTIONS(125), - [anon_sym_SEMI] = ACTIONS(123), - [anon_sym_typedef] = ACTIONS(125), - [anon_sym_extern] = ACTIONS(125), - [anon_sym_LBRACE] = ACTIONS(123), - [anon_sym_LPAREN2] = ACTIONS(123), - [anon_sym_STAR] = ACTIONS(123), - [anon_sym_static] = ACTIONS(125), - [anon_sym_auto] = ACTIONS(125), - [anon_sym_register] = ACTIONS(125), - [anon_sym_inline] = ACTIONS(125), - [anon_sym_const] = ACTIONS(125), - [anon_sym_restrict] = ACTIONS(125), - [anon_sym_volatile] = ACTIONS(125), - [anon_sym__Atomic] = ACTIONS(125), - [anon_sym_unsigned] = ACTIONS(125), - [anon_sym_long] = ACTIONS(125), - [anon_sym_short] = ACTIONS(125), - [sym_primitive_type] = ACTIONS(125), - [anon_sym_enum] = ACTIONS(125), - [anon_sym_struct] = ACTIONS(125), - [anon_sym_union] = ACTIONS(125), - [anon_sym_if] = ACTIONS(125), - [anon_sym_switch] = ACTIONS(125), - [anon_sym_case] = ACTIONS(125), - [anon_sym_default] = ACTIONS(125), - [anon_sym_while] = ACTIONS(125), - [anon_sym_do] = ACTIONS(125), - [anon_sym_for] = ACTIONS(125), - [anon_sym_return] = ACTIONS(125), - [anon_sym_break] = ACTIONS(125), - [anon_sym_continue] = ACTIONS(125), - [anon_sym_goto] = ACTIONS(125), - [anon_sym_AMP] = ACTIONS(123), - [anon_sym_BANG] = ACTIONS(123), - [anon_sym_TILDE] = ACTIONS(123), - [anon_sym_PLUS] = ACTIONS(125), - [anon_sym_DASH] = ACTIONS(125), - [anon_sym_DASH_DASH] = ACTIONS(123), - [anon_sym_PLUS_PLUS] = ACTIONS(123), - [anon_sym_sizeof] = ACTIONS(125), - [sym_number_literal] = ACTIONS(123), - [anon_sym_SQUOTE] = ACTIONS(123), - [anon_sym_DQUOTE] = ACTIONS(123), - [sym_true] = ACTIONS(125), - [sym_false] = ACTIONS(125), - [sym_null] = ACTIONS(125), - [sym_identifier] = ACTIONS(125), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(123), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(123), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(123), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(123), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(123), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(123), + [sym_preproc_directive] = ACTIONS(123), + [anon_sym_SEMI] = ACTIONS(121), + [anon_sym_typedef] = ACTIONS(123), + [anon_sym_extern] = ACTIONS(123), + [anon_sym_LBRACE] = ACTIONS(121), + [anon_sym_LPAREN2] = ACTIONS(121), + [anon_sym_STAR] = ACTIONS(121), + [anon_sym_static] = ACTIONS(123), + [anon_sym_auto] = ACTIONS(123), + [anon_sym_register] = ACTIONS(123), + [anon_sym_inline] = ACTIONS(123), + [anon_sym_const] = ACTIONS(123), + [anon_sym_restrict] = ACTIONS(123), + [anon_sym_volatile] = ACTIONS(123), + [anon_sym__Atomic] = ACTIONS(123), + [anon_sym_unsigned] = ACTIONS(123), + [anon_sym_long] = ACTIONS(123), + [anon_sym_short] = ACTIONS(123), + [sym_primitive_type] = ACTIONS(123), + [anon_sym_enum] = ACTIONS(123), + [anon_sym_struct] = ACTIONS(123), + [anon_sym_union] = ACTIONS(123), + [anon_sym_if] = ACTIONS(123), + [anon_sym_switch] = ACTIONS(123), + [anon_sym_case] = ACTIONS(123), + [anon_sym_default] = ACTIONS(123), + [anon_sym_while] = ACTIONS(123), + [anon_sym_do] = ACTIONS(123), + [anon_sym_for] = ACTIONS(123), + [anon_sym_return] = ACTIONS(123), + [anon_sym_break] = ACTIONS(123), + [anon_sym_continue] = ACTIONS(123), + [anon_sym_goto] = ACTIONS(123), + [anon_sym_AMP] = ACTIONS(121), + [anon_sym_BANG] = ACTIONS(121), + [anon_sym_TILDE] = ACTIONS(121), + [anon_sym_PLUS] = ACTIONS(123), + [anon_sym_DASH] = ACTIONS(123), + [anon_sym_DASH_DASH] = ACTIONS(121), + [anon_sym_PLUS_PLUS] = ACTIONS(121), + [anon_sym_sizeof] = ACTIONS(123), + [sym_number_literal] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_DQUOTE] = ACTIONS(121), + [sym_true] = ACTIONS(123), + [sym_false] = ACTIONS(123), + [sym_null] = ACTIONS(123), + [sym_identifier] = ACTIONS(123), [sym_comment] = ACTIONS(39), }, [300] = { [sym_preproc_params] = STATE(524), - [anon_sym_LF] = ACTIONS(1255), - [anon_sym_LPAREN] = ACTIONS(129), - [sym_preproc_arg] = ACTIONS(1257), + [anon_sym_LF] = ACTIONS(1246), + [anon_sym_LPAREN] = ACTIONS(127), + [sym_preproc_arg] = ACTIONS(1248), [sym_comment] = ACTIONS(49), }, [301] = { @@ -13613,17 +13632,17 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_translation_unit_repeat1] = STATE(527), [aux_sym__declaration_specifiers_repeat1] = STATE(20), [aux_sym_sized_type_specifier_repeat1] = STATE(21), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(133), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(135), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(137), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1259), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(141), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(143), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(145), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(147), - [sym_preproc_directive] = ACTIONS(149), - [anon_sym_typedef] = ACTIONS(151), - [anon_sym_extern] = ACTIONS(153), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(131), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(133), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(135), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1250), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(139), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(141), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(143), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(145), + [sym_preproc_directive] = ACTIONS(147), + [anon_sym_typedef] = ACTIONS(149), + [anon_sym_extern] = ACTIONS(151), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -13668,17 +13687,17 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_translation_unit_repeat1] = STATE(530), [aux_sym__declaration_specifiers_repeat1] = STATE(20), [aux_sym_sized_type_specifier_repeat1] = STATE(21), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(133), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(135), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(137), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1261), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(141), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(143), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(145), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(147), - [sym_preproc_directive] = ACTIONS(149), - [anon_sym_typedef] = ACTIONS(151), - [anon_sym_extern] = ACTIONS(153), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(131), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(133), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(135), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1252), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(139), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(141), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(143), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(145), + [sym_preproc_directive] = ACTIONS(147), + [anon_sym_typedef] = ACTIONS(149), + [anon_sym_extern] = ACTIONS(151), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -13723,17 +13742,17 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_translation_unit_repeat1] = STATE(533), [aux_sym__declaration_specifiers_repeat1] = STATE(20), [aux_sym_sized_type_specifier_repeat1] = STATE(21), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(133), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(135), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(137), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1263), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(141), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(143), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(145), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(147), - [sym_preproc_directive] = ACTIONS(149), - [anon_sym_typedef] = ACTIONS(151), - [anon_sym_extern] = ACTIONS(153), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(131), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(133), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(135), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1254), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(139), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(141), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(143), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(145), + [sym_preproc_directive] = ACTIONS(147), + [anon_sym_typedef] = ACTIONS(149), + [anon_sym_extern] = ACTIONS(151), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -13753,64 +13772,64 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(39), }, [304] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(161), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(161), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(161), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(161), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(161), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(161), - [sym_preproc_directive] = ACTIONS(161), - [anon_sym_SEMI] = ACTIONS(159), - [anon_sym_typedef] = ACTIONS(161), - [anon_sym_extern] = ACTIONS(161), - [anon_sym_LBRACE] = ACTIONS(159), - [anon_sym_LPAREN2] = ACTIONS(159), - [anon_sym_STAR] = ACTIONS(159), - [anon_sym_static] = ACTIONS(161), - [anon_sym_auto] = ACTIONS(161), - [anon_sym_register] = ACTIONS(161), - [anon_sym_inline] = ACTIONS(161), - [anon_sym_const] = ACTIONS(161), - [anon_sym_restrict] = ACTIONS(161), - [anon_sym_volatile] = ACTIONS(161), - [anon_sym__Atomic] = ACTIONS(161), - [anon_sym_unsigned] = ACTIONS(161), - [anon_sym_long] = ACTIONS(161), - [anon_sym_short] = ACTIONS(161), - [sym_primitive_type] = ACTIONS(161), - [anon_sym_enum] = ACTIONS(161), - [anon_sym_struct] = ACTIONS(161), - [anon_sym_union] = ACTIONS(161), - [anon_sym_if] = ACTIONS(161), - [anon_sym_switch] = ACTIONS(161), - [anon_sym_case] = ACTIONS(161), - [anon_sym_default] = ACTIONS(161), - [anon_sym_while] = ACTIONS(161), - [anon_sym_do] = ACTIONS(161), - [anon_sym_for] = ACTIONS(161), - [anon_sym_return] = ACTIONS(161), - [anon_sym_break] = ACTIONS(161), - [anon_sym_continue] = ACTIONS(161), - [anon_sym_goto] = ACTIONS(161), - [anon_sym_AMP] = ACTIONS(159), - [anon_sym_BANG] = ACTIONS(159), - [anon_sym_TILDE] = ACTIONS(159), - [anon_sym_PLUS] = ACTIONS(161), - [anon_sym_DASH] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(159), - [anon_sym_PLUS_PLUS] = ACTIONS(159), - [anon_sym_sizeof] = ACTIONS(161), - [sym_number_literal] = ACTIONS(159), - [anon_sym_SQUOTE] = ACTIONS(159), - [anon_sym_DQUOTE] = ACTIONS(159), - [sym_true] = ACTIONS(161), - [sym_false] = ACTIONS(161), - [sym_null] = ACTIONS(161), - [sym_identifier] = ACTIONS(161), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(159), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(159), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(159), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(159), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(159), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(159), + [sym_preproc_directive] = ACTIONS(159), + [anon_sym_SEMI] = ACTIONS(157), + [anon_sym_typedef] = ACTIONS(159), + [anon_sym_extern] = ACTIONS(159), + [anon_sym_LBRACE] = ACTIONS(157), + [anon_sym_LPAREN2] = ACTIONS(157), + [anon_sym_STAR] = ACTIONS(157), + [anon_sym_static] = ACTIONS(159), + [anon_sym_auto] = ACTIONS(159), + [anon_sym_register] = ACTIONS(159), + [anon_sym_inline] = ACTIONS(159), + [anon_sym_const] = ACTIONS(159), + [anon_sym_restrict] = ACTIONS(159), + [anon_sym_volatile] = ACTIONS(159), + [anon_sym__Atomic] = ACTIONS(159), + [anon_sym_unsigned] = ACTIONS(159), + [anon_sym_long] = ACTIONS(159), + [anon_sym_short] = ACTIONS(159), + [sym_primitive_type] = ACTIONS(159), + [anon_sym_enum] = ACTIONS(159), + [anon_sym_struct] = ACTIONS(159), + [anon_sym_union] = ACTIONS(159), + [anon_sym_if] = ACTIONS(159), + [anon_sym_switch] = ACTIONS(159), + [anon_sym_case] = ACTIONS(159), + [anon_sym_default] = ACTIONS(159), + [anon_sym_while] = ACTIONS(159), + [anon_sym_do] = ACTIONS(159), + [anon_sym_for] = ACTIONS(159), + [anon_sym_return] = ACTIONS(159), + [anon_sym_break] = ACTIONS(159), + [anon_sym_continue] = ACTIONS(159), + [anon_sym_goto] = ACTIONS(159), + [anon_sym_AMP] = ACTIONS(157), + [anon_sym_BANG] = ACTIONS(157), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(159), + [anon_sym_DASH] = ACTIONS(159), + [anon_sym_DASH_DASH] = ACTIONS(157), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_sizeof] = ACTIONS(159), + [sym_number_literal] = ACTIONS(157), + [anon_sym_SQUOTE] = ACTIONS(157), + [anon_sym_DQUOTE] = ACTIONS(157), + [sym_true] = ACTIONS(159), + [sym_false] = ACTIONS(159), + [sym_null] = ACTIONS(159), + [sym_identifier] = ACTIONS(159), [sym_comment] = ACTIONS(39), }, [305] = { - [anon_sym_LF] = ACTIONS(1265), + [anon_sym_LF] = ACTIONS(1256), [sym_comment] = ACTIONS(49), }, [306] = { @@ -13818,9 +13837,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_pointer_type_declarator] = STATE(86), [sym_function_type_declarator] = STATE(87), [sym_array_type_declarator] = STATE(88), - [anon_sym_LPAREN2] = ACTIONS(165), - [anon_sym_STAR] = ACTIONS(167), - [sym_identifier] = ACTIONS(169), + [anon_sym_LPAREN2] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(165), + [sym_identifier] = ACTIONS(167), [sym_comment] = ACTIONS(39), }, [307] = { @@ -13840,7 +13859,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(1267), + [sym_primitive_type] = ACTIONS(1258), [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), @@ -13863,7 +13882,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__declaration_specifiers_repeat1] = STATE(96), [aux_sym_sized_type_specifier_repeat1] = STATE(97), [anon_sym_extern] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(1269), + [anon_sym_LBRACE] = ACTIONS(1260), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -13872,10 +13891,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_restrict] = ACTIONS(25), [anon_sym_volatile] = ACTIONS(25), [anon_sym__Atomic] = ACTIONS(25), - [anon_sym_unsigned] = ACTIONS(177), - [anon_sym_long] = ACTIONS(177), - [anon_sym_short] = ACTIONS(177), - [sym_primitive_type] = ACTIONS(179), + [anon_sym_unsigned] = ACTIONS(175), + [anon_sym_long] = ACTIONS(175), + [anon_sym_short] = ACTIONS(175), + [sym_primitive_type] = ACTIONS(177), [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), @@ -13883,78 +13902,78 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(39), }, [309] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(229), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(229), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(229), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(229), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(229), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(229), - [sym_preproc_directive] = ACTIONS(229), - [anon_sym_SEMI] = ACTIONS(227), - [anon_sym_typedef] = ACTIONS(229), - [anon_sym_extern] = ACTIONS(229), - [anon_sym_LBRACE] = ACTIONS(227), - [anon_sym_LPAREN2] = ACTIONS(227), - [anon_sym_STAR] = ACTIONS(227), - [anon_sym_static] = ACTIONS(229), - [anon_sym_auto] = ACTIONS(229), - [anon_sym_register] = ACTIONS(229), - [anon_sym_inline] = ACTIONS(229), - [anon_sym_const] = ACTIONS(229), - [anon_sym_restrict] = ACTIONS(229), - [anon_sym_volatile] = ACTIONS(229), - [anon_sym__Atomic] = ACTIONS(229), - [anon_sym_unsigned] = ACTIONS(229), - [anon_sym_long] = ACTIONS(229), - [anon_sym_short] = ACTIONS(229), - [sym_primitive_type] = ACTIONS(229), - [anon_sym_enum] = ACTIONS(229), - [anon_sym_struct] = ACTIONS(229), - [anon_sym_union] = ACTIONS(229), - [anon_sym_if] = ACTIONS(229), - [anon_sym_switch] = ACTIONS(229), - [anon_sym_case] = ACTIONS(229), - [anon_sym_default] = ACTIONS(229), - [anon_sym_while] = ACTIONS(229), - [anon_sym_do] = ACTIONS(229), - [anon_sym_for] = ACTIONS(229), - [anon_sym_return] = ACTIONS(229), - [anon_sym_break] = ACTIONS(229), - [anon_sym_continue] = ACTIONS(229), - [anon_sym_goto] = ACTIONS(229), - [anon_sym_AMP] = ACTIONS(227), - [anon_sym_BANG] = ACTIONS(227), - [anon_sym_TILDE] = ACTIONS(227), - [anon_sym_PLUS] = ACTIONS(229), - [anon_sym_DASH] = ACTIONS(229), - [anon_sym_DASH_DASH] = ACTIONS(227), - [anon_sym_PLUS_PLUS] = ACTIONS(227), - [anon_sym_sizeof] = ACTIONS(229), - [sym_number_literal] = ACTIONS(227), - [anon_sym_SQUOTE] = ACTIONS(227), - [anon_sym_DQUOTE] = ACTIONS(227), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [sym_null] = ACTIONS(229), - [sym_identifier] = ACTIONS(229), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(227), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(227), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(227), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(227), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(227), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(227), + [sym_preproc_directive] = ACTIONS(227), + [anon_sym_SEMI] = ACTIONS(225), + [anon_sym_typedef] = ACTIONS(227), + [anon_sym_extern] = ACTIONS(227), + [anon_sym_LBRACE] = ACTIONS(225), + [anon_sym_LPAREN2] = ACTIONS(225), + [anon_sym_STAR] = ACTIONS(225), + [anon_sym_static] = ACTIONS(227), + [anon_sym_auto] = ACTIONS(227), + [anon_sym_register] = ACTIONS(227), + [anon_sym_inline] = ACTIONS(227), + [anon_sym_const] = ACTIONS(227), + [anon_sym_restrict] = ACTIONS(227), + [anon_sym_volatile] = ACTIONS(227), + [anon_sym__Atomic] = ACTIONS(227), + [anon_sym_unsigned] = ACTIONS(227), + [anon_sym_long] = ACTIONS(227), + [anon_sym_short] = ACTIONS(227), + [sym_primitive_type] = ACTIONS(227), + [anon_sym_enum] = ACTIONS(227), + [anon_sym_struct] = ACTIONS(227), + [anon_sym_union] = ACTIONS(227), + [anon_sym_if] = ACTIONS(227), + [anon_sym_switch] = ACTIONS(227), + [anon_sym_case] = ACTIONS(227), + [anon_sym_default] = ACTIONS(227), + [anon_sym_while] = ACTIONS(227), + [anon_sym_do] = ACTIONS(227), + [anon_sym_for] = ACTIONS(227), + [anon_sym_return] = ACTIONS(227), + [anon_sym_break] = ACTIONS(227), + [anon_sym_continue] = ACTIONS(227), + [anon_sym_goto] = ACTIONS(227), + [anon_sym_AMP] = ACTIONS(225), + [anon_sym_BANG] = ACTIONS(225), + [anon_sym_TILDE] = ACTIONS(225), + [anon_sym_PLUS] = ACTIONS(227), + [anon_sym_DASH] = ACTIONS(227), + [anon_sym_DASH_DASH] = ACTIONS(225), + [anon_sym_PLUS_PLUS] = ACTIONS(225), + [anon_sym_sizeof] = ACTIONS(227), + [sym_number_literal] = ACTIONS(225), + [anon_sym_SQUOTE] = ACTIONS(225), + [anon_sym_DQUOTE] = ACTIONS(225), + [sym_true] = ACTIONS(227), + [sym_false] = ACTIONS(227), + [sym_null] = ACTIONS(227), + [sym_identifier] = ACTIONS(227), [sym_comment] = ACTIONS(39), }, [310] = { [sym_compound_statement] = STATE(542), [sym_parameter_list] = STATE(131), [aux_sym_declaration_repeat1] = STATE(543), - [anon_sym_COMMA] = ACTIONS(237), - [anon_sym_SEMI] = ACTIONS(1271), - [anon_sym_LBRACE] = ACTIONS(1273), - [anon_sym_LPAREN2] = ACTIONS(243), - [anon_sym_LBRACK] = ACTIONS(245), - [anon_sym_EQ] = ACTIONS(247), + [anon_sym_COMMA] = ACTIONS(235), + [anon_sym_SEMI] = ACTIONS(1262), + [anon_sym_LBRACE] = ACTIONS(1264), + [anon_sym_LPAREN2] = ACTIONS(241), + [anon_sym_LBRACK] = ACTIONS(243), + [anon_sym_EQ] = ACTIONS(245), [sym_comment] = ACTIONS(39), }, [311] = { [aux_sym_declaration_repeat1] = STATE(543), - [anon_sym_COMMA] = ACTIONS(237), - [anon_sym_SEMI] = ACTIONS(1271), + [anon_sym_COMMA] = ACTIONS(235), + [anon_sym_SEMI] = ACTIONS(1262), [sym_comment] = ACTIONS(39), }, [312] = { @@ -13981,35 +14000,35 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_translation_unit_repeat1] = STATE(312), [aux_sym__declaration_specifiers_repeat1] = STATE(20), [aux_sym_sized_type_specifier_repeat1] = STATE(21), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1275), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1278), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1281), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(747), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1284), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1287), - [sym_preproc_directive] = ACTIONS(1290), - [anon_sym_typedef] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1296), - [anon_sym_static] = ACTIONS(279), - [anon_sym_auto] = ACTIONS(279), - [anon_sym_register] = ACTIONS(279), - [anon_sym_inline] = ACTIONS(279), - [anon_sym_const] = ACTIONS(282), - [anon_sym_restrict] = ACTIONS(282), - [anon_sym_volatile] = ACTIONS(282), - [anon_sym__Atomic] = ACTIONS(282), - [anon_sym_unsigned] = ACTIONS(285), - [anon_sym_long] = ACTIONS(285), - [anon_sym_short] = ACTIONS(285), - [sym_primitive_type] = ACTIONS(288), - [anon_sym_enum] = ACTIONS(291), - [anon_sym_struct] = ACTIONS(294), - [anon_sym_union] = ACTIONS(297), - [sym_identifier] = ACTIONS(300), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1266), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1269), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1272), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(738), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1275), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1278), + [sym_preproc_directive] = ACTIONS(1281), + [anon_sym_typedef] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1287), + [anon_sym_static] = ACTIONS(277), + [anon_sym_auto] = ACTIONS(277), + [anon_sym_register] = ACTIONS(277), + [anon_sym_inline] = ACTIONS(277), + [anon_sym_const] = ACTIONS(280), + [anon_sym_restrict] = ACTIONS(280), + [anon_sym_volatile] = ACTIONS(280), + [anon_sym__Atomic] = ACTIONS(280), + [anon_sym_unsigned] = ACTIONS(283), + [anon_sym_long] = ACTIONS(283), + [anon_sym_short] = ACTIONS(283), + [sym_primitive_type] = ACTIONS(286), + [anon_sym_enum] = ACTIONS(289), + [anon_sym_struct] = ACTIONS(292), + [anon_sym_union] = ACTIONS(295), + [sym_identifier] = ACTIONS(298), [sym_comment] = ACTIONS(39), }, [313] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1299), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1290), [sym_comment] = ACTIONS(39), }, [314] = { @@ -14038,17 +14057,17 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_translation_unit_repeat1] = STATE(169), [aux_sym__declaration_specifiers_repeat1] = STATE(20), [aux_sym_sized_type_specifier_repeat1] = STATE(21), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(133), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(135), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(137), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1301), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(141), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(143), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(145), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(147), - [sym_preproc_directive] = ACTIONS(149), - [anon_sym_typedef] = ACTIONS(151), - [anon_sym_extern] = ACTIONS(153), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(131), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(133), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(135), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1292), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(139), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(141), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(143), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(145), + [sym_preproc_directive] = ACTIONS(147), + [anon_sym_typedef] = ACTIONS(149), + [anon_sym_extern] = ACTIONS(151), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -14068,69 +14087,69 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(39), }, [315] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(418), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(418), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(418), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(418), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(418), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(418), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(418), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(418), - [sym_preproc_directive] = ACTIONS(418), - [anon_sym_SEMI] = ACTIONS(416), - [anon_sym_typedef] = ACTIONS(418), - [anon_sym_extern] = ACTIONS(418), - [anon_sym_LBRACE] = ACTIONS(416), - [anon_sym_LPAREN2] = ACTIONS(416), - [anon_sym_STAR] = ACTIONS(416), - [anon_sym_static] = ACTIONS(418), - [anon_sym_auto] = ACTIONS(418), - [anon_sym_register] = ACTIONS(418), - [anon_sym_inline] = ACTIONS(418), - [anon_sym_const] = ACTIONS(418), - [anon_sym_restrict] = ACTIONS(418), - [anon_sym_volatile] = ACTIONS(418), - [anon_sym__Atomic] = ACTIONS(418), - [anon_sym_unsigned] = ACTIONS(418), - [anon_sym_long] = ACTIONS(418), - [anon_sym_short] = ACTIONS(418), - [sym_primitive_type] = ACTIONS(418), - [anon_sym_enum] = ACTIONS(418), - [anon_sym_struct] = ACTIONS(418), - [anon_sym_union] = ACTIONS(418), - [anon_sym_if] = ACTIONS(418), - [anon_sym_switch] = ACTIONS(418), - [anon_sym_case] = ACTIONS(418), - [anon_sym_default] = ACTIONS(418), - [anon_sym_while] = ACTIONS(418), - [anon_sym_do] = ACTIONS(418), - [anon_sym_for] = ACTIONS(418), - [anon_sym_return] = ACTIONS(418), - [anon_sym_break] = ACTIONS(418), - [anon_sym_continue] = ACTIONS(418), - [anon_sym_goto] = ACTIONS(418), - [anon_sym_AMP] = ACTIONS(416), - [anon_sym_BANG] = ACTIONS(416), - [anon_sym_TILDE] = ACTIONS(416), - [anon_sym_PLUS] = ACTIONS(418), - [anon_sym_DASH] = ACTIONS(418), - [anon_sym_DASH_DASH] = ACTIONS(416), - [anon_sym_PLUS_PLUS] = ACTIONS(416), - [anon_sym_sizeof] = ACTIONS(418), - [sym_number_literal] = ACTIONS(416), - [anon_sym_SQUOTE] = ACTIONS(416), - [anon_sym_DQUOTE] = ACTIONS(416), - [sym_true] = ACTIONS(418), - [sym_false] = ACTIONS(418), - [sym_null] = ACTIONS(418), - [sym_identifier] = ACTIONS(418), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(414), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(414), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(414), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(414), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(414), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(414), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(414), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(414), + [sym_preproc_directive] = ACTIONS(414), + [anon_sym_SEMI] = ACTIONS(412), + [anon_sym_typedef] = ACTIONS(414), + [anon_sym_extern] = ACTIONS(414), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_LPAREN2] = ACTIONS(412), + [anon_sym_STAR] = ACTIONS(412), + [anon_sym_static] = ACTIONS(414), + [anon_sym_auto] = ACTIONS(414), + [anon_sym_register] = ACTIONS(414), + [anon_sym_inline] = ACTIONS(414), + [anon_sym_const] = ACTIONS(414), + [anon_sym_restrict] = ACTIONS(414), + [anon_sym_volatile] = ACTIONS(414), + [anon_sym__Atomic] = ACTIONS(414), + [anon_sym_unsigned] = ACTIONS(414), + [anon_sym_long] = ACTIONS(414), + [anon_sym_short] = ACTIONS(414), + [sym_primitive_type] = ACTIONS(414), + [anon_sym_enum] = ACTIONS(414), + [anon_sym_struct] = ACTIONS(414), + [anon_sym_union] = ACTIONS(414), + [anon_sym_if] = ACTIONS(414), + [anon_sym_switch] = ACTIONS(414), + [anon_sym_case] = ACTIONS(414), + [anon_sym_default] = ACTIONS(414), + [anon_sym_while] = ACTIONS(414), + [anon_sym_do] = ACTIONS(414), + [anon_sym_for] = ACTIONS(414), + [anon_sym_return] = ACTIONS(414), + [anon_sym_break] = ACTIONS(414), + [anon_sym_continue] = ACTIONS(414), + [anon_sym_goto] = ACTIONS(414), + [anon_sym_AMP] = ACTIONS(412), + [anon_sym_BANG] = ACTIONS(412), + [anon_sym_TILDE] = ACTIONS(412), + [anon_sym_PLUS] = ACTIONS(414), + [anon_sym_DASH] = ACTIONS(414), + [anon_sym_DASH_DASH] = ACTIONS(412), + [anon_sym_PLUS_PLUS] = ACTIONS(412), + [anon_sym_sizeof] = ACTIONS(414), + [sym_number_literal] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(412), + [anon_sym_DQUOTE] = ACTIONS(412), + [sym_true] = ACTIONS(414), + [sym_false] = ACTIONS(414), + [sym_null] = ACTIONS(414), + [sym_identifier] = ACTIONS(414), [sym_comment] = ACTIONS(39), }, [316] = { [sym_parameter_list] = STATE(180), - [anon_sym_SEMI] = ACTIONS(1303), - [anon_sym_LPAREN2] = ACTIONS(243), - [anon_sym_LBRACK] = ACTIONS(428), + [anon_sym_SEMI] = ACTIONS(1294), + [anon_sym_LPAREN2] = ACTIONS(241), + [anon_sym_LBRACK] = ACTIONS(424), [sym_comment] = ACTIONS(39), }, [317] = { @@ -14138,9 +14157,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_pointer_type_declarator] = STATE(86), [sym_function_type_declarator] = STATE(87), [sym_array_type_declarator] = STATE(88), - [anon_sym_LPAREN2] = ACTIONS(165), - [anon_sym_STAR] = ACTIONS(167), - [sym_identifier] = ACTIONS(169), + [anon_sym_LPAREN2] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(165), + [sym_identifier] = ACTIONS(167), [sym_comment] = ACTIONS(39), }, [318] = { @@ -14175,7 +14194,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_directive] = ACTIONS(17), [anon_sym_typedef] = ACTIONS(19), [anon_sym_extern] = ACTIONS(21), - [anon_sym_RBRACE] = ACTIONS(1305), + [anon_sym_RBRACE] = ACTIONS(1296), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -14195,33 +14214,33 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(39), }, [319] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(448), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(448), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(448), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(448), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(448), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(448), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(448), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(448), - [sym_preproc_directive] = ACTIONS(448), - [anon_sym_typedef] = ACTIONS(448), - [anon_sym_extern] = ACTIONS(448), - [anon_sym_static] = ACTIONS(448), - [anon_sym_auto] = ACTIONS(448), - [anon_sym_register] = ACTIONS(448), - [anon_sym_inline] = ACTIONS(448), - [anon_sym_const] = ACTIONS(448), - [anon_sym_restrict] = ACTIONS(448), - [anon_sym_volatile] = ACTIONS(448), - [anon_sym__Atomic] = ACTIONS(448), - [anon_sym_unsigned] = ACTIONS(448), - [anon_sym_long] = ACTIONS(448), - [anon_sym_short] = ACTIONS(448), - [sym_primitive_type] = ACTIONS(448), - [anon_sym_enum] = ACTIONS(448), - [anon_sym_struct] = ACTIONS(448), - [anon_sym_union] = ACTIONS(448), - [sym_identifier] = ACTIONS(448), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(444), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(444), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(444), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(444), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(444), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(444), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(444), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(444), + [sym_preproc_directive] = ACTIONS(444), + [anon_sym_typedef] = ACTIONS(444), + [anon_sym_extern] = ACTIONS(444), + [anon_sym_static] = ACTIONS(444), + [anon_sym_auto] = ACTIONS(444), + [anon_sym_register] = ACTIONS(444), + [anon_sym_inline] = ACTIONS(444), + [anon_sym_const] = ACTIONS(444), + [anon_sym_restrict] = ACTIONS(444), + [anon_sym_volatile] = ACTIONS(444), + [anon_sym__Atomic] = ACTIONS(444), + [anon_sym_unsigned] = ACTIONS(444), + [anon_sym_long] = ACTIONS(444), + [anon_sym_short] = ACTIONS(444), + [sym_primitive_type] = ACTIONS(444), + [anon_sym_enum] = ACTIONS(444), + [anon_sym_struct] = ACTIONS(444), + [anon_sym_union] = ACTIONS(444), + [sym_identifier] = ACTIONS(444), [sym_comment] = ACTIONS(39), }, [320] = { @@ -14232,67 +14251,67 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_init_declarator] = STATE(167), [anon_sym_LPAREN2] = ACTIONS(92), [anon_sym_STAR] = ACTIONS(94), - [sym_identifier] = ACTIONS(396), + [sym_identifier] = ACTIONS(392), [sym_comment] = ACTIONS(39), }, [321] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(540), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(540), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(540), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(540), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(540), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(540), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(540), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(540), - [sym_preproc_directive] = ACTIONS(540), - [anon_sym_SEMI] = ACTIONS(538), - [anon_sym_typedef] = ACTIONS(540), - [anon_sym_extern] = ACTIONS(540), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_LPAREN2] = ACTIONS(538), - [anon_sym_STAR] = ACTIONS(538), - [anon_sym_static] = ACTIONS(540), - [anon_sym_auto] = ACTIONS(540), - [anon_sym_register] = ACTIONS(540), - [anon_sym_inline] = ACTIONS(540), - [anon_sym_const] = ACTIONS(540), - [anon_sym_restrict] = ACTIONS(540), - [anon_sym_volatile] = ACTIONS(540), - [anon_sym__Atomic] = ACTIONS(540), - [anon_sym_unsigned] = ACTIONS(540), - [anon_sym_long] = ACTIONS(540), - [anon_sym_short] = ACTIONS(540), - [sym_primitive_type] = ACTIONS(540), - [anon_sym_enum] = ACTIONS(540), - [anon_sym_struct] = ACTIONS(540), - [anon_sym_union] = ACTIONS(540), - [anon_sym_if] = ACTIONS(540), - [anon_sym_else] = ACTIONS(540), - [anon_sym_switch] = ACTIONS(540), - [anon_sym_case] = ACTIONS(540), - [anon_sym_default] = ACTIONS(540), - [anon_sym_while] = ACTIONS(540), - [anon_sym_do] = ACTIONS(540), - [anon_sym_for] = ACTIONS(540), - [anon_sym_return] = ACTIONS(540), - [anon_sym_break] = ACTIONS(540), - [anon_sym_continue] = ACTIONS(540), - [anon_sym_goto] = ACTIONS(540), - [anon_sym_AMP] = ACTIONS(538), - [anon_sym_BANG] = ACTIONS(538), - [anon_sym_TILDE] = ACTIONS(538), - [anon_sym_PLUS] = ACTIONS(540), - [anon_sym_DASH] = ACTIONS(540), - [anon_sym_DASH_DASH] = ACTIONS(538), - [anon_sym_PLUS_PLUS] = ACTIONS(538), - [anon_sym_sizeof] = ACTIONS(540), - [sym_number_literal] = ACTIONS(538), - [anon_sym_SQUOTE] = ACTIONS(538), - [anon_sym_DQUOTE] = ACTIONS(538), - [sym_true] = ACTIONS(540), - [sym_false] = ACTIONS(540), - [sym_null] = ACTIONS(540), - [sym_identifier] = ACTIONS(540), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(536), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(536), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(536), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(536), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(536), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(536), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(536), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(536), + [sym_preproc_directive] = ACTIONS(536), + [anon_sym_SEMI] = ACTIONS(534), + [anon_sym_typedef] = ACTIONS(536), + [anon_sym_extern] = ACTIONS(536), + [anon_sym_LBRACE] = ACTIONS(534), + [anon_sym_LPAREN2] = ACTIONS(534), + [anon_sym_STAR] = ACTIONS(534), + [anon_sym_static] = ACTIONS(536), + [anon_sym_auto] = ACTIONS(536), + [anon_sym_register] = ACTIONS(536), + [anon_sym_inline] = ACTIONS(536), + [anon_sym_const] = ACTIONS(536), + [anon_sym_restrict] = ACTIONS(536), + [anon_sym_volatile] = ACTIONS(536), + [anon_sym__Atomic] = ACTIONS(536), + [anon_sym_unsigned] = ACTIONS(536), + [anon_sym_long] = ACTIONS(536), + [anon_sym_short] = ACTIONS(536), + [sym_primitive_type] = ACTIONS(536), + [anon_sym_enum] = ACTIONS(536), + [anon_sym_struct] = ACTIONS(536), + [anon_sym_union] = ACTIONS(536), + [anon_sym_if] = ACTIONS(536), + [anon_sym_else] = ACTIONS(536), + [anon_sym_switch] = ACTIONS(536), + [anon_sym_case] = ACTIONS(536), + [anon_sym_default] = ACTIONS(536), + [anon_sym_while] = ACTIONS(536), + [anon_sym_do] = ACTIONS(536), + [anon_sym_for] = ACTIONS(536), + [anon_sym_return] = ACTIONS(536), + [anon_sym_break] = ACTIONS(536), + [anon_sym_continue] = ACTIONS(536), + [anon_sym_goto] = ACTIONS(536), + [anon_sym_AMP] = ACTIONS(534), + [anon_sym_BANG] = ACTIONS(534), + [anon_sym_TILDE] = ACTIONS(534), + [anon_sym_PLUS] = ACTIONS(536), + [anon_sym_DASH] = ACTIONS(536), + [anon_sym_DASH_DASH] = ACTIONS(534), + [anon_sym_PLUS_PLUS] = ACTIONS(534), + [anon_sym_sizeof] = ACTIONS(536), + [sym_number_literal] = ACTIONS(534), + [anon_sym_SQUOTE] = ACTIONS(534), + [anon_sym_DQUOTE] = ACTIONS(534), + [sym_true] = ACTIONS(536), + [sym_false] = ACTIONS(536), + [sym_null] = ACTIONS(536), + [sym_identifier] = ACTIONS(536), [sym_comment] = ACTIONS(39), }, [322] = { @@ -14351,19 +14370,19 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(550), [aux_sym__declaration_specifiers_repeat1] = STATE(20), [aux_sym_sized_type_specifier_repeat1] = STATE(21), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(542), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(538), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(9), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(544), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(546), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(548), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(540), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(542), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(544), [sym_preproc_directive] = ACTIONS(17), - [anon_sym_SEMI] = ACTIONS(550), + [anon_sym_SEMI] = ACTIONS(546), [anon_sym_typedef] = ACTIONS(19), [anon_sym_extern] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(241), - [anon_sym_RBRACE] = ACTIONS(1307), - [anon_sym_LPAREN2] = ACTIONS(554), - [anon_sym_STAR] = ACTIONS(556), + [anon_sym_LBRACE] = ACTIONS(239), + [anon_sym_RBRACE] = ACTIONS(1298), + [anon_sym_LPAREN2] = ACTIONS(550), + [anon_sym_STAR] = ACTIONS(552), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -14379,155 +14398,155 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), - [anon_sym_if] = ACTIONS(558), - [anon_sym_switch] = ACTIONS(560), - [anon_sym_case] = ACTIONS(562), - [anon_sym_default] = ACTIONS(564), - [anon_sym_while] = ACTIONS(566), - [anon_sym_do] = ACTIONS(568), - [anon_sym_for] = ACTIONS(570), - [anon_sym_return] = ACTIONS(572), - [anon_sym_break] = ACTIONS(574), - [anon_sym_continue] = ACTIONS(576), - [anon_sym_goto] = ACTIONS(578), - [anon_sym_AMP] = ACTIONS(556), - [anon_sym_BANG] = ACTIONS(580), - [anon_sym_TILDE] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_DASH_DASH] = ACTIONS(586), - [anon_sym_PLUS_PLUS] = ACTIONS(586), - [anon_sym_sizeof] = ACTIONS(588), - [sym_number_literal] = ACTIONS(590), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(594), - [sym_false] = ACTIONS(594), - [sym_null] = ACTIONS(594), - [sym_identifier] = ACTIONS(596), + [anon_sym_if] = ACTIONS(554), + [anon_sym_switch] = ACTIONS(556), + [anon_sym_case] = ACTIONS(558), + [anon_sym_default] = ACTIONS(560), + [anon_sym_while] = ACTIONS(562), + [anon_sym_do] = ACTIONS(564), + [anon_sym_for] = ACTIONS(566), + [anon_sym_return] = ACTIONS(568), + [anon_sym_break] = ACTIONS(570), + [anon_sym_continue] = ACTIONS(572), + [anon_sym_goto] = ACTIONS(574), + [anon_sym_AMP] = ACTIONS(552), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_TILDE] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(580), + [anon_sym_DASH] = ACTIONS(580), + [anon_sym_DASH_DASH] = ACTIONS(582), + [anon_sym_PLUS_PLUS] = ACTIONS(582), + [anon_sym_sizeof] = ACTIONS(584), + [sym_number_literal] = ACTIONS(586), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(590), + [sym_false] = ACTIONS(590), + [sym_null] = ACTIONS(590), + [sym_identifier] = ACTIONS(592), [sym_comment] = ACTIONS(39), }, [323] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(640), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(640), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(640), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(640), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(640), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(640), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(640), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(640), - [sym_preproc_directive] = ACTIONS(640), - [anon_sym_typedef] = ACTIONS(640), - [anon_sym_extern] = ACTIONS(640), - [anon_sym_static] = ACTIONS(640), - [anon_sym_auto] = ACTIONS(640), - [anon_sym_register] = ACTIONS(640), - [anon_sym_inline] = ACTIONS(640), - [anon_sym_const] = ACTIONS(640), - [anon_sym_restrict] = ACTIONS(640), - [anon_sym_volatile] = ACTIONS(640), - [anon_sym__Atomic] = ACTIONS(640), - [anon_sym_unsigned] = ACTIONS(640), - [anon_sym_long] = ACTIONS(640), - [anon_sym_short] = ACTIONS(640), - [sym_primitive_type] = ACTIONS(640), - [anon_sym_enum] = ACTIONS(640), - [anon_sym_struct] = ACTIONS(640), - [anon_sym_union] = ACTIONS(640), - [sym_identifier] = ACTIONS(640), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(636), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(636), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(636), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(636), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(636), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(636), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(636), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(636), + [sym_preproc_directive] = ACTIONS(636), + [anon_sym_typedef] = ACTIONS(636), + [anon_sym_extern] = ACTIONS(636), + [anon_sym_static] = ACTIONS(636), + [anon_sym_auto] = ACTIONS(636), + [anon_sym_register] = ACTIONS(636), + [anon_sym_inline] = ACTIONS(636), + [anon_sym_const] = ACTIONS(636), + [anon_sym_restrict] = ACTIONS(636), + [anon_sym_volatile] = ACTIONS(636), + [anon_sym__Atomic] = ACTIONS(636), + [anon_sym_unsigned] = ACTIONS(636), + [anon_sym_long] = ACTIONS(636), + [anon_sym_short] = ACTIONS(636), + [sym_primitive_type] = ACTIONS(636), + [anon_sym_enum] = ACTIONS(636), + [anon_sym_struct] = ACTIONS(636), + [anon_sym_union] = ACTIONS(636), + [sym_identifier] = ACTIONS(636), [sym_comment] = ACTIONS(39), }, [324] = { [aux_sym_declaration_repeat1] = STATE(279), - [anon_sym_COMMA] = ACTIONS(237), - [anon_sym_SEMI] = ACTIONS(1309), + [anon_sym_COMMA] = ACTIONS(235), + [anon_sym_SEMI] = ACTIONS(1300), [sym_comment] = ACTIONS(39), }, [325] = { - [ts_builtin_sym_end] = ACTIONS(1311), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1313), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1313), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1313), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1313), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1313), - [sym_preproc_directive] = ACTIONS(1313), - [anon_sym_typedef] = ACTIONS(1313), - [anon_sym_extern] = ACTIONS(1313), - [anon_sym_RBRACE] = ACTIONS(1311), - [anon_sym_static] = ACTIONS(1313), - [anon_sym_auto] = ACTIONS(1313), - [anon_sym_register] = ACTIONS(1313), - [anon_sym_inline] = ACTIONS(1313), - [anon_sym_const] = ACTIONS(1313), - [anon_sym_restrict] = ACTIONS(1313), - [anon_sym_volatile] = ACTIONS(1313), - [anon_sym__Atomic] = ACTIONS(1313), - [anon_sym_unsigned] = ACTIONS(1313), - [anon_sym_long] = ACTIONS(1313), - [anon_sym_short] = ACTIONS(1313), - [sym_primitive_type] = ACTIONS(1313), - [anon_sym_enum] = ACTIONS(1313), - [anon_sym_struct] = ACTIONS(1313), - [anon_sym_union] = ACTIONS(1313), - [sym_identifier] = ACTIONS(1313), + [ts_builtin_sym_end] = ACTIONS(1302), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1304), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1304), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1304), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1304), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1304), + [sym_preproc_directive] = ACTIONS(1304), + [anon_sym_typedef] = ACTIONS(1304), + [anon_sym_extern] = ACTIONS(1304), + [anon_sym_RBRACE] = ACTIONS(1302), + [anon_sym_static] = ACTIONS(1304), + [anon_sym_auto] = ACTIONS(1304), + [anon_sym_register] = ACTIONS(1304), + [anon_sym_inline] = ACTIONS(1304), + [anon_sym_const] = ACTIONS(1304), + [anon_sym_restrict] = ACTIONS(1304), + [anon_sym_volatile] = ACTIONS(1304), + [anon_sym__Atomic] = ACTIONS(1304), + [anon_sym_unsigned] = ACTIONS(1304), + [anon_sym_long] = ACTIONS(1304), + [anon_sym_short] = ACTIONS(1304), + [sym_primitive_type] = ACTIONS(1304), + [anon_sym_enum] = ACTIONS(1304), + [anon_sym_struct] = ACTIONS(1304), + [anon_sym_union] = ACTIONS(1304), + [sym_identifier] = ACTIONS(1304), [sym_comment] = ACTIONS(39), }, [326] = { - [ts_builtin_sym_end] = ACTIONS(1315), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1317), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1317), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1317), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1317), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1317), - [sym_preproc_directive] = ACTIONS(1317), - [anon_sym_typedef] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1317), - [anon_sym_RBRACE] = ACTIONS(1315), - [anon_sym_static] = ACTIONS(1317), - [anon_sym_auto] = ACTIONS(1317), - [anon_sym_register] = ACTIONS(1317), - [anon_sym_inline] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), - [anon_sym_restrict] = ACTIONS(1317), - [anon_sym_volatile] = ACTIONS(1317), - [anon_sym__Atomic] = ACTIONS(1317), - [anon_sym_unsigned] = ACTIONS(1317), - [anon_sym_long] = ACTIONS(1317), - [anon_sym_short] = ACTIONS(1317), - [sym_primitive_type] = ACTIONS(1317), - [anon_sym_enum] = ACTIONS(1317), - [anon_sym_struct] = ACTIONS(1317), - [anon_sym_union] = ACTIONS(1317), - [sym_identifier] = ACTIONS(1317), + [ts_builtin_sym_end] = ACTIONS(1306), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1308), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1308), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1308), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1308), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1308), + [sym_preproc_directive] = ACTIONS(1308), + [anon_sym_typedef] = ACTIONS(1308), + [anon_sym_extern] = ACTIONS(1308), + [anon_sym_RBRACE] = ACTIONS(1306), + [anon_sym_static] = ACTIONS(1308), + [anon_sym_auto] = ACTIONS(1308), + [anon_sym_register] = ACTIONS(1308), + [anon_sym_inline] = ACTIONS(1308), + [anon_sym_const] = ACTIONS(1308), + [anon_sym_restrict] = ACTIONS(1308), + [anon_sym_volatile] = ACTIONS(1308), + [anon_sym__Atomic] = ACTIONS(1308), + [anon_sym_unsigned] = ACTIONS(1308), + [anon_sym_long] = ACTIONS(1308), + [anon_sym_short] = ACTIONS(1308), + [sym_primitive_type] = ACTIONS(1308), + [anon_sym_enum] = ACTIONS(1308), + [anon_sym_struct] = ACTIONS(1308), + [anon_sym_union] = ACTIONS(1308), + [sym_identifier] = ACTIONS(1308), [sym_comment] = ACTIONS(39), }, [327] = { - [ts_builtin_sym_end] = ACTIONS(1319), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1321), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1321), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1321), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1321), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1321), - [sym_preproc_directive] = ACTIONS(1321), - [anon_sym_typedef] = ACTIONS(1321), - [anon_sym_extern] = ACTIONS(1321), - [anon_sym_RBRACE] = ACTIONS(1319), - [anon_sym_static] = ACTIONS(1321), - [anon_sym_auto] = ACTIONS(1321), - [anon_sym_register] = ACTIONS(1321), - [anon_sym_inline] = ACTIONS(1321), - [anon_sym_const] = ACTIONS(1321), - [anon_sym_restrict] = ACTIONS(1321), - [anon_sym_volatile] = ACTIONS(1321), - [anon_sym__Atomic] = ACTIONS(1321), - [anon_sym_unsigned] = ACTIONS(1321), - [anon_sym_long] = ACTIONS(1321), - [anon_sym_short] = ACTIONS(1321), - [sym_primitive_type] = ACTIONS(1321), - [anon_sym_enum] = ACTIONS(1321), - [anon_sym_struct] = ACTIONS(1321), - [anon_sym_union] = ACTIONS(1321), - [sym_identifier] = ACTIONS(1321), + [ts_builtin_sym_end] = ACTIONS(1310), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1312), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1312), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1312), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1312), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1312), + [sym_preproc_directive] = ACTIONS(1312), + [anon_sym_typedef] = ACTIONS(1312), + [anon_sym_extern] = ACTIONS(1312), + [anon_sym_RBRACE] = ACTIONS(1310), + [anon_sym_static] = ACTIONS(1312), + [anon_sym_auto] = ACTIONS(1312), + [anon_sym_register] = ACTIONS(1312), + [anon_sym_inline] = ACTIONS(1312), + [anon_sym_const] = ACTIONS(1312), + [anon_sym_restrict] = ACTIONS(1312), + [anon_sym_volatile] = ACTIONS(1312), + [anon_sym__Atomic] = ACTIONS(1312), + [anon_sym_unsigned] = ACTIONS(1312), + [anon_sym_long] = ACTIONS(1312), + [anon_sym_short] = ACTIONS(1312), + [sym_primitive_type] = ACTIONS(1312), + [anon_sym_enum] = ACTIONS(1312), + [anon_sym_struct] = ACTIONS(1312), + [anon_sym_union] = ACTIONS(1312), + [sym_identifier] = ACTIONS(1312), [sym_comment] = ACTIONS(39), }, [328] = { @@ -14537,35 +14556,35 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_array_type_declarator] = STATE(88), [sym_type_qualifier] = STATE(219), [aux_sym_type_definition_repeat1] = STATE(219), - [anon_sym_LPAREN2] = ACTIONS(165), - [anon_sym_STAR] = ACTIONS(420), + [anon_sym_LPAREN2] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(416), [anon_sym_const] = ACTIONS(25), [anon_sym_restrict] = ACTIONS(25), [anon_sym_volatile] = ACTIONS(25), [anon_sym__Atomic] = ACTIONS(25), - [sym_identifier] = ACTIONS(422), + [sym_identifier] = ACTIONS(418), [sym_comment] = ACTIONS(39), }, [329] = { - [anon_sym_RPAREN] = ACTIONS(1323), - [anon_sym_SEMI] = ACTIONS(1323), - [anon_sym_LPAREN2] = ACTIONS(1323), - [anon_sym_LBRACK] = ACTIONS(1323), + [anon_sym_RPAREN] = ACTIONS(1314), + [anon_sym_SEMI] = ACTIONS(1314), + [anon_sym_LPAREN2] = ACTIONS(1314), + [anon_sym_LBRACK] = ACTIONS(1314), [sym_comment] = ACTIONS(39), }, [330] = { [sym_parameter_list] = STATE(180), - [anon_sym_RPAREN] = ACTIONS(1325), - [anon_sym_SEMI] = ACTIONS(1325), - [anon_sym_LPAREN2] = ACTIONS(243), - [anon_sym_LBRACK] = ACTIONS(428), + [anon_sym_RPAREN] = ACTIONS(1316), + [anon_sym_SEMI] = ACTIONS(1316), + [anon_sym_LPAREN2] = ACTIONS(241), + [anon_sym_LBRACK] = ACTIONS(424), [sym_comment] = ACTIONS(39), }, [331] = { - [anon_sym_RPAREN] = ACTIONS(1327), - [anon_sym_SEMI] = ACTIONS(1327), - [anon_sym_LPAREN2] = ACTIONS(1327), - [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_RPAREN] = ACTIONS(1318), + [anon_sym_SEMI] = ACTIONS(1318), + [anon_sym_LPAREN2] = ACTIONS(1318), + [anon_sym_LBRACK] = ACTIONS(1318), [sym_comment] = ACTIONS(39), }, [332] = { @@ -14589,153 +14608,153 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(553), [sym_concatenated_string] = STATE(553), [sym_string_literal] = STATE(272), - [anon_sym_LPAREN2] = ACTIONS(606), - [anon_sym_STAR] = ACTIONS(608), - [anon_sym_RBRACK] = ACTIONS(1329), - [anon_sym_AMP] = ACTIONS(608), - [anon_sym_BANG] = ACTIONS(616), - [anon_sym_TILDE] = ACTIONS(618), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_DASH_DASH] = ACTIONS(622), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_sizeof] = ACTIONS(624), - [sym_number_literal] = ACTIONS(1331), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1333), - [sym_false] = ACTIONS(1333), - [sym_null] = ACTIONS(1333), - [sym_identifier] = ACTIONS(1333), + [anon_sym_LPAREN2] = ACTIONS(602), + [anon_sym_STAR] = ACTIONS(604), + [anon_sym_RBRACK] = ACTIONS(1320), + [anon_sym_AMP] = ACTIONS(604), + [anon_sym_BANG] = ACTIONS(612), + [anon_sym_TILDE] = ACTIONS(614), + [anon_sym_PLUS] = ACTIONS(616), + [anon_sym_DASH] = ACTIONS(616), + [anon_sym_DASH_DASH] = ACTIONS(618), + [anon_sym_PLUS_PLUS] = ACTIONS(618), + [anon_sym_sizeof] = ACTIONS(620), + [sym_number_literal] = ACTIONS(1322), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(1324), + [sym_false] = ACTIONS(1324), + [sym_null] = ACTIONS(1324), + [sym_identifier] = ACTIONS(1324), [sym_comment] = ACTIONS(39), }, [333] = { [sym_argument_list] = STATE(465), - [anon_sym_LPAREN2] = ACTIONS(1096), - [anon_sym_STAR] = ACTIONS(1166), - [anon_sym_LBRACK] = ACTIONS(1100), - [anon_sym_RBRACK] = ACTIONS(1329), - [anon_sym_EQ] = ACTIONS(1168), - [anon_sym_QMARK] = ACTIONS(1170), - [anon_sym_STAR_EQ] = ACTIONS(1172), - [anon_sym_SLASH_EQ] = ACTIONS(1172), - [anon_sym_PERCENT_EQ] = ACTIONS(1172), - [anon_sym_PLUS_EQ] = ACTIONS(1172), - [anon_sym_DASH_EQ] = ACTIONS(1172), - [anon_sym_LT_LT_EQ] = ACTIONS(1172), - [anon_sym_GT_GT_EQ] = ACTIONS(1172), - [anon_sym_AMP_EQ] = ACTIONS(1172), - [anon_sym_CARET_EQ] = ACTIONS(1172), - [anon_sym_PIPE_EQ] = ACTIONS(1172), - [anon_sym_AMP] = ACTIONS(1174), - [anon_sym_PIPE_PIPE] = ACTIONS(1176), - [anon_sym_AMP_AMP] = ACTIONS(1178), - [anon_sym_PIPE] = ACTIONS(1180), - [anon_sym_CARET] = ACTIONS(1182), - [anon_sym_EQ_EQ] = ACTIONS(1184), - [anon_sym_BANG_EQ] = ACTIONS(1184), - [anon_sym_LT] = ACTIONS(1186), - [anon_sym_GT] = ACTIONS(1186), - [anon_sym_LT_EQ] = ACTIONS(1188), - [anon_sym_GT_EQ] = ACTIONS(1188), - [anon_sym_LT_LT] = ACTIONS(1190), - [anon_sym_GT_GT] = ACTIONS(1190), - [anon_sym_PLUS] = ACTIONS(1192), - [anon_sym_DASH] = ACTIONS(1192), - [anon_sym_SLASH] = ACTIONS(1166), - [anon_sym_PERCENT] = ACTIONS(1166), - [anon_sym_DASH_DASH] = ACTIONS(1128), - [anon_sym_PLUS_PLUS] = ACTIONS(1128), - [anon_sym_DOT] = ACTIONS(1130), - [anon_sym_DASH_GT] = ACTIONS(1130), + [anon_sym_LPAREN2] = ACTIONS(1089), + [anon_sym_STAR] = ACTIONS(1159), + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_RBRACK] = ACTIONS(1320), + [anon_sym_EQ] = ACTIONS(1161), + [anon_sym_QMARK] = ACTIONS(1163), + [anon_sym_STAR_EQ] = ACTIONS(1165), + [anon_sym_SLASH_EQ] = ACTIONS(1165), + [anon_sym_PERCENT_EQ] = ACTIONS(1165), + [anon_sym_PLUS_EQ] = ACTIONS(1165), + [anon_sym_DASH_EQ] = ACTIONS(1165), + [anon_sym_LT_LT_EQ] = ACTIONS(1165), + [anon_sym_GT_GT_EQ] = ACTIONS(1165), + [anon_sym_AMP_EQ] = ACTIONS(1165), + [anon_sym_CARET_EQ] = ACTIONS(1165), + [anon_sym_PIPE_EQ] = ACTIONS(1165), + [anon_sym_AMP] = ACTIONS(1167), + [anon_sym_PIPE_PIPE] = ACTIONS(1169), + [anon_sym_AMP_AMP] = ACTIONS(1171), + [anon_sym_PIPE] = ACTIONS(1173), + [anon_sym_CARET] = ACTIONS(1175), + [anon_sym_EQ_EQ] = ACTIONS(1177), + [anon_sym_BANG_EQ] = ACTIONS(1177), + [anon_sym_LT] = ACTIONS(1179), + [anon_sym_GT] = ACTIONS(1179), + [anon_sym_LT_EQ] = ACTIONS(1181), + [anon_sym_GT_EQ] = ACTIONS(1181), + [anon_sym_LT_LT] = ACTIONS(1183), + [anon_sym_GT_GT] = ACTIONS(1183), + [anon_sym_PLUS] = ACTIONS(1185), + [anon_sym_DASH] = ACTIONS(1185), + [anon_sym_SLASH] = ACTIONS(1159), + [anon_sym_PERCENT] = ACTIONS(1159), + [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_PLUS_PLUS] = ACTIONS(1121), + [anon_sym_DOT] = ACTIONS(1123), + [anon_sym_DASH_GT] = ACTIONS(1123), [sym_comment] = ACTIONS(39), }, [334] = { - [ts_builtin_sym_end] = ACTIONS(1335), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1337), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1337), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1337), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1337), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1337), - [sym_preproc_directive] = ACTIONS(1337), - [anon_sym_SEMI] = ACTIONS(1335), - [anon_sym_typedef] = ACTIONS(1337), - [anon_sym_extern] = ACTIONS(1337), - [anon_sym_LBRACE] = ACTIONS(1335), - [anon_sym_RBRACE] = ACTIONS(1335), - [anon_sym_LPAREN2] = ACTIONS(1335), - [anon_sym_STAR] = ACTIONS(1335), - [anon_sym_static] = ACTIONS(1337), - [anon_sym_auto] = ACTIONS(1337), - [anon_sym_register] = ACTIONS(1337), - [anon_sym_inline] = ACTIONS(1337), - [anon_sym_const] = ACTIONS(1337), - [anon_sym_restrict] = ACTIONS(1337), - [anon_sym_volatile] = ACTIONS(1337), - [anon_sym__Atomic] = ACTIONS(1337), - [anon_sym_unsigned] = ACTIONS(1337), - [anon_sym_long] = ACTIONS(1337), - [anon_sym_short] = ACTIONS(1337), - [sym_primitive_type] = 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(1335), - [anon_sym_SQUOTE] = ACTIONS(1335), - [anon_sym_DQUOTE] = ACTIONS(1335), - [sym_true] = ACTIONS(1337), - [sym_false] = ACTIONS(1337), - [sym_null] = ACTIONS(1337), - [sym_identifier] = ACTIONS(1337), + [ts_builtin_sym_end] = ACTIONS(1326), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1328), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1328), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1328), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1328), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1328), + [sym_preproc_directive] = ACTIONS(1328), + [anon_sym_SEMI] = ACTIONS(1326), + [anon_sym_typedef] = ACTIONS(1328), + [anon_sym_extern] = ACTIONS(1328), + [anon_sym_LBRACE] = ACTIONS(1326), + [anon_sym_RBRACE] = ACTIONS(1326), + [anon_sym_LPAREN2] = ACTIONS(1326), + [anon_sym_STAR] = ACTIONS(1326), + [anon_sym_static] = ACTIONS(1328), + [anon_sym_auto] = ACTIONS(1328), + [anon_sym_register] = ACTIONS(1328), + [anon_sym_inline] = ACTIONS(1328), + [anon_sym_const] = ACTIONS(1328), + [anon_sym_restrict] = ACTIONS(1328), + [anon_sym_volatile] = ACTIONS(1328), + [anon_sym__Atomic] = ACTIONS(1328), + [anon_sym_unsigned] = ACTIONS(1328), + [anon_sym_long] = ACTIONS(1328), + [anon_sym_short] = ACTIONS(1328), + [sym_primitive_type] = ACTIONS(1328), + [anon_sym_enum] = ACTIONS(1328), + [anon_sym_struct] = ACTIONS(1328), + [anon_sym_union] = ACTIONS(1328), + [anon_sym_if] = ACTIONS(1328), + [anon_sym_else] = ACTIONS(1328), + [anon_sym_switch] = ACTIONS(1328), + [anon_sym_case] = ACTIONS(1328), + [anon_sym_default] = ACTIONS(1328), + [anon_sym_while] = ACTIONS(1328), + [anon_sym_do] = ACTIONS(1328), + [anon_sym_for] = ACTIONS(1328), + [anon_sym_return] = ACTIONS(1328), + [anon_sym_break] = ACTIONS(1328), + [anon_sym_continue] = ACTIONS(1328), + [anon_sym_goto] = ACTIONS(1328), + [anon_sym_AMP] = ACTIONS(1326), + [anon_sym_BANG] = ACTIONS(1326), + [anon_sym_TILDE] = ACTIONS(1326), + [anon_sym_PLUS] = ACTIONS(1328), + [anon_sym_DASH] = ACTIONS(1328), + [anon_sym_DASH_DASH] = ACTIONS(1326), + [anon_sym_PLUS_PLUS] = ACTIONS(1326), + [anon_sym_sizeof] = ACTIONS(1328), + [sym_number_literal] = ACTIONS(1326), + [anon_sym_SQUOTE] = ACTIONS(1326), + [anon_sym_DQUOTE] = ACTIONS(1326), + [sym_true] = ACTIONS(1328), + [sym_false] = ACTIONS(1328), + [sym_null] = ACTIONS(1328), + [sym_identifier] = ACTIONS(1328), [sym_comment] = ACTIONS(39), }, [335] = { - [ts_builtin_sym_end] = ACTIONS(1339), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1341), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1341), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1341), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1341), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1341), - [sym_preproc_directive] = ACTIONS(1341), - [anon_sym_typedef] = ACTIONS(1341), - [anon_sym_extern] = ACTIONS(1341), - [anon_sym_RBRACE] = ACTIONS(1339), - [anon_sym_static] = ACTIONS(1341), - [anon_sym_auto] = ACTIONS(1341), - [anon_sym_register] = ACTIONS(1341), - [anon_sym_inline] = ACTIONS(1341), - [anon_sym_const] = ACTIONS(1341), - [anon_sym_restrict] = ACTIONS(1341), - [anon_sym_volatile] = ACTIONS(1341), - [anon_sym__Atomic] = ACTIONS(1341), - [anon_sym_unsigned] = ACTIONS(1341), - [anon_sym_long] = ACTIONS(1341), - [anon_sym_short] = ACTIONS(1341), - [sym_primitive_type] = ACTIONS(1341), - [anon_sym_enum] = ACTIONS(1341), - [anon_sym_struct] = ACTIONS(1341), - [anon_sym_union] = ACTIONS(1341), - [sym_identifier] = ACTIONS(1341), + [ts_builtin_sym_end] = ACTIONS(1330), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1332), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1332), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1332), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1332), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1332), + [sym_preproc_directive] = ACTIONS(1332), + [anon_sym_typedef] = ACTIONS(1332), + [anon_sym_extern] = ACTIONS(1332), + [anon_sym_RBRACE] = ACTIONS(1330), + [anon_sym_static] = ACTIONS(1332), + [anon_sym_auto] = ACTIONS(1332), + [anon_sym_register] = ACTIONS(1332), + [anon_sym_inline] = ACTIONS(1332), + [anon_sym_const] = ACTIONS(1332), + [anon_sym_restrict] = ACTIONS(1332), + [anon_sym_volatile] = ACTIONS(1332), + [anon_sym__Atomic] = ACTIONS(1332), + [anon_sym_unsigned] = ACTIONS(1332), + [anon_sym_long] = ACTIONS(1332), + [anon_sym_short] = ACTIONS(1332), + [sym_primitive_type] = ACTIONS(1332), + [anon_sym_enum] = ACTIONS(1332), + [anon_sym_struct] = ACTIONS(1332), + [anon_sym_union] = ACTIONS(1332), + [sym_identifier] = ACTIONS(1332), [sym_comment] = ACTIONS(39), }, [336] = { @@ -14762,49 +14781,49 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_translation_unit_repeat1] = STATE(336), [aux_sym__declaration_specifiers_repeat1] = STATE(20), [aux_sym_sized_type_specifier_repeat1] = STATE(21), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(255), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(258), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(261), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(264), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(267), - [sym_preproc_directive] = ACTIONS(270), - [anon_sym_typedef] = ACTIONS(273), - [anon_sym_extern] = ACTIONS(276), - [anon_sym_RBRACE] = ACTIONS(253), - [anon_sym_static] = ACTIONS(279), - [anon_sym_auto] = ACTIONS(279), - [anon_sym_register] = ACTIONS(279), - [anon_sym_inline] = ACTIONS(279), - [anon_sym_const] = ACTIONS(282), - [anon_sym_restrict] = ACTIONS(282), - [anon_sym_volatile] = ACTIONS(282), - [anon_sym__Atomic] = ACTIONS(282), - [anon_sym_unsigned] = ACTIONS(285), - [anon_sym_long] = ACTIONS(285), - [anon_sym_short] = ACTIONS(285), - [sym_primitive_type] = ACTIONS(288), - [anon_sym_enum] = ACTIONS(291), - [anon_sym_struct] = ACTIONS(294), - [anon_sym_union] = ACTIONS(297), - [sym_identifier] = ACTIONS(300), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(253), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(256), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(259), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(262), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(265), + [sym_preproc_directive] = ACTIONS(268), + [anon_sym_typedef] = ACTIONS(271), + [anon_sym_extern] = ACTIONS(274), + [anon_sym_RBRACE] = ACTIONS(251), + [anon_sym_static] = ACTIONS(277), + [anon_sym_auto] = ACTIONS(277), + [anon_sym_register] = ACTIONS(277), + [anon_sym_inline] = ACTIONS(277), + [anon_sym_const] = ACTIONS(280), + [anon_sym_restrict] = ACTIONS(280), + [anon_sym_volatile] = ACTIONS(280), + [anon_sym__Atomic] = ACTIONS(280), + [anon_sym_unsigned] = ACTIONS(283), + [anon_sym_long] = ACTIONS(283), + [anon_sym_short] = ACTIONS(283), + [sym_primitive_type] = ACTIONS(286), + [anon_sym_enum] = ACTIONS(289), + [anon_sym_struct] = ACTIONS(292), + [anon_sym_union] = ACTIONS(295), + [sym_identifier] = ACTIONS(298), [sym_comment] = ACTIONS(39), }, [337] = { [sym_storage_class_specifier] = STATE(337), [sym_type_qualifier] = STATE(337), [aux_sym__declaration_specifiers_repeat1] = STATE(337), - [anon_sym_extern] = ACTIONS(303), - [anon_sym_LPAREN2] = ACTIONS(646), - [anon_sym_STAR] = ACTIONS(646), - [anon_sym_static] = ACTIONS(303), - [anon_sym_auto] = ACTIONS(303), - [anon_sym_register] = ACTIONS(303), - [anon_sym_inline] = ACTIONS(303), - [anon_sym_const] = ACTIONS(306), - [anon_sym_restrict] = ACTIONS(306), - [anon_sym_volatile] = ACTIONS(306), - [anon_sym__Atomic] = ACTIONS(306), - [sym_identifier] = ACTIONS(309), + [anon_sym_extern] = ACTIONS(301), + [anon_sym_LPAREN2] = ACTIONS(642), + [anon_sym_STAR] = ACTIONS(642), + [anon_sym_static] = ACTIONS(301), + [anon_sym_auto] = ACTIONS(301), + [anon_sym_register] = ACTIONS(301), + [anon_sym_inline] = ACTIONS(301), + [anon_sym_const] = ACTIONS(304), + [anon_sym_restrict] = ACTIONS(304), + [anon_sym_volatile] = ACTIONS(304), + [anon_sym__Atomic] = ACTIONS(304), + [sym_identifier] = ACTIONS(307), [sym_comment] = ACTIONS(39), }, [338] = { @@ -14812,8 +14831,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_type_qualifier] = STATE(337), [aux_sym__declaration_specifiers_repeat1] = STATE(337), [anon_sym_extern] = ACTIONS(23), - [anon_sym_LPAREN2] = ACTIONS(648), - [anon_sym_STAR] = ACTIONS(648), + [anon_sym_LPAREN2] = ACTIONS(644), + [anon_sym_STAR] = ACTIONS(644), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -14822,7 +14841,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_restrict] = ACTIONS(25), [anon_sym_volatile] = ACTIONS(25), [anon_sym__Atomic] = ACTIONS(25), - [sym_identifier] = ACTIONS(650), + [sym_identifier] = ACTIONS(646), [sym_comment] = ACTIONS(39), }, [339] = { @@ -14857,34 +14876,34 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_macro_type_specifier] = STATE(116), [aux_sym_type_definition_repeat1] = STATE(118), [aux_sym_sized_type_specifier_repeat1] = STATE(119), - [anon_sym_LPAREN2] = ACTIONS(970), - [anon_sym_STAR] = ACTIONS(972), + [anon_sym_LPAREN2] = ACTIONS(961), + [anon_sym_STAR] = ACTIONS(963), [anon_sym_const] = ACTIONS(25), [anon_sym_restrict] = ACTIONS(25), [anon_sym_volatile] = ACTIONS(25), [anon_sym__Atomic] = ACTIONS(25), - [anon_sym_unsigned] = ACTIONS(223), - [anon_sym_long] = ACTIONS(223), - [anon_sym_short] = ACTIONS(223), - [sym_primitive_type] = ACTIONS(225), + [anon_sym_unsigned] = ACTIONS(221), + [anon_sym_long] = ACTIONS(221), + [anon_sym_short] = ACTIONS(221), + [sym_primitive_type] = ACTIONS(223), [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), - [anon_sym_AMP] = ACTIONS(972), - [anon_sym_BANG] = ACTIONS(974), - [anon_sym_TILDE] = ACTIONS(976), - [anon_sym_PLUS] = ACTIONS(978), - [anon_sym_DASH] = ACTIONS(978), - [anon_sym_DASH_DASH] = ACTIONS(980), - [anon_sym_PLUS_PLUS] = ACTIONS(980), - [anon_sym_sizeof] = ACTIONS(982), - [sym_number_literal] = ACTIONS(984), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(986), - [sym_false] = ACTIONS(986), - [sym_null] = ACTIONS(986), - [sym_identifier] = ACTIONS(988), + [anon_sym_AMP] = ACTIONS(963), + [anon_sym_BANG] = ACTIONS(965), + [anon_sym_TILDE] = ACTIONS(967), + [anon_sym_PLUS] = ACTIONS(969), + [anon_sym_DASH] = ACTIONS(969), + [anon_sym_DASH_DASH] = ACTIONS(971), + [anon_sym_PLUS_PLUS] = ACTIONS(971), + [anon_sym_sizeof] = ACTIONS(973), + [sym_number_literal] = ACTIONS(975), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(977), + [sym_false] = ACTIONS(977), + [sym_null] = ACTIONS(977), + [sym_identifier] = ACTIONS(979), [sym_comment] = ACTIONS(39), }, [340] = { @@ -14908,23 +14927,23 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(410), [sym_concatenated_string] = STATE(410), [sym_string_literal] = STATE(346), - [anon_sym_LPAREN2] = ACTIONS(807), - [anon_sym_STAR] = ACTIONS(809), - [anon_sym_AMP] = ACTIONS(809), - [anon_sym_BANG] = ACTIONS(811), - [anon_sym_TILDE] = ACTIONS(813), - [anon_sym_PLUS] = ACTIONS(815), - [anon_sym_DASH] = ACTIONS(815), - [anon_sym_DASH_DASH] = ACTIONS(817), - [anon_sym_PLUS_PLUS] = ACTIONS(817), - [anon_sym_sizeof] = ACTIONS(819), - [sym_number_literal] = ACTIONS(990), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(992), - [sym_false] = ACTIONS(992), - [sym_null] = ACTIONS(992), - [sym_identifier] = ACTIONS(992), + [anon_sym_LPAREN2] = ACTIONS(798), + [anon_sym_STAR] = ACTIONS(800), + [anon_sym_AMP] = ACTIONS(800), + [anon_sym_BANG] = ACTIONS(802), + [anon_sym_TILDE] = ACTIONS(804), + [anon_sym_PLUS] = ACTIONS(806), + [anon_sym_DASH] = ACTIONS(806), + [anon_sym_DASH_DASH] = ACTIONS(808), + [anon_sym_PLUS_PLUS] = ACTIONS(808), + [anon_sym_sizeof] = ACTIONS(810), + [sym_number_literal] = ACTIONS(981), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(983), + [sym_false] = ACTIONS(983), + [sym_null] = ACTIONS(983), + [sym_identifier] = ACTIONS(983), [sym_comment] = ACTIONS(39), }, [341] = { @@ -14948,23 +14967,23 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(439), [sym_concatenated_string] = STATE(439), [sym_string_literal] = STATE(346), - [anon_sym_LPAREN2] = ACTIONS(807), - [anon_sym_STAR] = ACTIONS(809), - [anon_sym_AMP] = ACTIONS(809), - [anon_sym_BANG] = ACTIONS(811), - [anon_sym_TILDE] = ACTIONS(813), - [anon_sym_PLUS] = ACTIONS(815), - [anon_sym_DASH] = ACTIONS(815), - [anon_sym_DASH_DASH] = ACTIONS(817), - [anon_sym_PLUS_PLUS] = ACTIONS(817), - [anon_sym_sizeof] = ACTIONS(819), - [sym_number_literal] = ACTIONS(1046), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1048), - [sym_false] = ACTIONS(1048), - [sym_null] = ACTIONS(1048), - [sym_identifier] = ACTIONS(1048), + [anon_sym_LPAREN2] = ACTIONS(798), + [anon_sym_STAR] = ACTIONS(800), + [anon_sym_AMP] = ACTIONS(800), + [anon_sym_BANG] = ACTIONS(802), + [anon_sym_TILDE] = ACTIONS(804), + [anon_sym_PLUS] = ACTIONS(806), + [anon_sym_DASH] = ACTIONS(806), + [anon_sym_DASH_DASH] = ACTIONS(808), + [anon_sym_PLUS_PLUS] = ACTIONS(808), + [anon_sym_sizeof] = ACTIONS(810), + [sym_number_literal] = ACTIONS(1037), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(1039), + [sym_false] = ACTIONS(1039), + [sym_null] = ACTIONS(1039), + [sym_identifier] = ACTIONS(1039), [sym_comment] = ACTIONS(39), }, [342] = { @@ -14988,23 +15007,23 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(440), [sym_concatenated_string] = STATE(440), [sym_string_literal] = STATE(346), - [anon_sym_LPAREN2] = ACTIONS(807), - [anon_sym_STAR] = ACTIONS(809), - [anon_sym_AMP] = ACTIONS(809), - [anon_sym_BANG] = ACTIONS(811), - [anon_sym_TILDE] = ACTIONS(813), - [anon_sym_PLUS] = ACTIONS(815), - [anon_sym_DASH] = ACTIONS(815), - [anon_sym_DASH_DASH] = ACTIONS(817), - [anon_sym_PLUS_PLUS] = ACTIONS(817), - [anon_sym_sizeof] = ACTIONS(819), - [sym_number_literal] = ACTIONS(1050), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1052), - [sym_false] = ACTIONS(1052), - [sym_null] = ACTIONS(1052), - [sym_identifier] = ACTIONS(1052), + [anon_sym_LPAREN2] = ACTIONS(798), + [anon_sym_STAR] = ACTIONS(800), + [anon_sym_AMP] = ACTIONS(800), + [anon_sym_BANG] = ACTIONS(802), + [anon_sym_TILDE] = ACTIONS(804), + [anon_sym_PLUS] = ACTIONS(806), + [anon_sym_DASH] = ACTIONS(806), + [anon_sym_DASH_DASH] = ACTIONS(808), + [anon_sym_PLUS_PLUS] = ACTIONS(808), + [anon_sym_sizeof] = ACTIONS(810), + [sym_number_literal] = ACTIONS(1041), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(1043), + [sym_false] = ACTIONS(1043), + [sym_null] = ACTIONS(1043), + [sym_identifier] = ACTIONS(1043), [sym_comment] = ACTIONS(39), }, [343] = { @@ -15028,23 +15047,23 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(441), [sym_concatenated_string] = STATE(441), [sym_string_literal] = STATE(346), - [anon_sym_LPAREN2] = ACTIONS(807), - [anon_sym_STAR] = ACTIONS(809), - [anon_sym_AMP] = ACTIONS(809), - [anon_sym_BANG] = ACTIONS(811), - [anon_sym_TILDE] = ACTIONS(813), - [anon_sym_PLUS] = ACTIONS(815), - [anon_sym_DASH] = ACTIONS(815), - [anon_sym_DASH_DASH] = ACTIONS(817), - [anon_sym_PLUS_PLUS] = ACTIONS(817), - [anon_sym_sizeof] = ACTIONS(819), - [sym_number_literal] = ACTIONS(1054), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1056), - [sym_false] = ACTIONS(1056), - [sym_null] = ACTIONS(1056), - [sym_identifier] = ACTIONS(1056), + [anon_sym_LPAREN2] = ACTIONS(798), + [anon_sym_STAR] = ACTIONS(800), + [anon_sym_AMP] = ACTIONS(800), + [anon_sym_BANG] = ACTIONS(802), + [anon_sym_TILDE] = ACTIONS(804), + [anon_sym_PLUS] = ACTIONS(806), + [anon_sym_DASH] = ACTIONS(806), + [anon_sym_DASH_DASH] = ACTIONS(808), + [anon_sym_PLUS_PLUS] = ACTIONS(808), + [anon_sym_sizeof] = ACTIONS(810), + [sym_number_literal] = ACTIONS(1045), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(1047), + [sym_false] = ACTIONS(1047), + [sym_null] = ACTIONS(1047), + [sym_identifier] = ACTIONS(1047), [sym_comment] = ACTIONS(39), }, [344] = { @@ -15068,188 +15087,188 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(556), [sym_concatenated_string] = STATE(556), [sym_string_literal] = STATE(346), - [anon_sym_LPAREN2] = ACTIONS(1343), - [anon_sym_STAR] = ACTIONS(809), - [anon_sym_AMP] = ACTIONS(809), - [anon_sym_BANG] = ACTIONS(811), - [anon_sym_TILDE] = ACTIONS(813), - [anon_sym_PLUS] = ACTIONS(815), - [anon_sym_DASH] = ACTIONS(815), - [anon_sym_DASH_DASH] = ACTIONS(817), - [anon_sym_PLUS_PLUS] = ACTIONS(817), - [anon_sym_sizeof] = ACTIONS(819), - [sym_number_literal] = ACTIONS(1345), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1347), - [sym_false] = ACTIONS(1347), - [sym_null] = ACTIONS(1347), - [sym_identifier] = ACTIONS(1347), + [anon_sym_LPAREN2] = ACTIONS(1334), + [anon_sym_STAR] = ACTIONS(800), + [anon_sym_AMP] = ACTIONS(800), + [anon_sym_BANG] = ACTIONS(802), + [anon_sym_TILDE] = ACTIONS(804), + [anon_sym_PLUS] = ACTIONS(806), + [anon_sym_DASH] = ACTIONS(806), + [anon_sym_DASH_DASH] = ACTIONS(808), + [anon_sym_PLUS_PLUS] = ACTIONS(808), + [anon_sym_sizeof] = ACTIONS(810), + [sym_number_literal] = ACTIONS(1336), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(1338), + [sym_false] = ACTIONS(1338), + [sym_null] = ACTIONS(1338), + [sym_identifier] = ACTIONS(1338), [sym_comment] = ACTIONS(39), }, [345] = { [sym_argument_list] = STATE(465), - [anon_sym_COMMA] = ACTIONS(1349), - [anon_sym_RBRACE] = ACTIONS(1349), - [anon_sym_LPAREN2] = ACTIONS(1096), - [anon_sym_STAR] = ACTIONS(1351), - [anon_sym_LBRACK] = ACTIONS(1100), - [anon_sym_EQ] = ACTIONS(1353), - [anon_sym_QMARK] = ACTIONS(1355), - [anon_sym_STAR_EQ] = ACTIONS(1357), - [anon_sym_SLASH_EQ] = ACTIONS(1357), - [anon_sym_PERCENT_EQ] = ACTIONS(1357), - [anon_sym_PLUS_EQ] = ACTIONS(1357), - [anon_sym_DASH_EQ] = ACTIONS(1357), - [anon_sym_LT_LT_EQ] = ACTIONS(1357), - [anon_sym_GT_GT_EQ] = ACTIONS(1357), - [anon_sym_AMP_EQ] = ACTIONS(1357), - [anon_sym_CARET_EQ] = ACTIONS(1357), - [anon_sym_PIPE_EQ] = ACTIONS(1357), - [anon_sym_AMP] = ACTIONS(1359), - [anon_sym_PIPE_PIPE] = ACTIONS(1361), - [anon_sym_AMP_AMP] = ACTIONS(1363), - [anon_sym_PIPE] = ACTIONS(1365), - [anon_sym_CARET] = ACTIONS(1367), - [anon_sym_EQ_EQ] = ACTIONS(1369), - [anon_sym_BANG_EQ] = ACTIONS(1369), - [anon_sym_LT] = ACTIONS(1371), - [anon_sym_GT] = ACTIONS(1371), - [anon_sym_LT_EQ] = ACTIONS(1373), - [anon_sym_GT_EQ] = ACTIONS(1373), - [anon_sym_LT_LT] = ACTIONS(1375), - [anon_sym_GT_GT] = ACTIONS(1375), - [anon_sym_PLUS] = ACTIONS(1377), - [anon_sym_DASH] = ACTIONS(1377), - [anon_sym_SLASH] = ACTIONS(1351), - [anon_sym_PERCENT] = ACTIONS(1351), - [anon_sym_DASH_DASH] = ACTIONS(1128), - [anon_sym_PLUS_PLUS] = ACTIONS(1128), - [anon_sym_DOT] = ACTIONS(1130), - [anon_sym_DASH_GT] = ACTIONS(1130), + [anon_sym_COMMA] = ACTIONS(1340), + [anon_sym_RBRACE] = ACTIONS(1340), + [anon_sym_LPAREN2] = ACTIONS(1089), + [anon_sym_STAR] = ACTIONS(1342), + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(1344), + [anon_sym_QMARK] = ACTIONS(1346), + [anon_sym_STAR_EQ] = ACTIONS(1348), + [anon_sym_SLASH_EQ] = ACTIONS(1348), + [anon_sym_PERCENT_EQ] = ACTIONS(1348), + [anon_sym_PLUS_EQ] = ACTIONS(1348), + [anon_sym_DASH_EQ] = ACTIONS(1348), + [anon_sym_LT_LT_EQ] = ACTIONS(1348), + [anon_sym_GT_GT_EQ] = ACTIONS(1348), + [anon_sym_AMP_EQ] = ACTIONS(1348), + [anon_sym_CARET_EQ] = ACTIONS(1348), + [anon_sym_PIPE_EQ] = ACTIONS(1348), + [anon_sym_AMP] = ACTIONS(1350), + [anon_sym_PIPE_PIPE] = ACTIONS(1352), + [anon_sym_AMP_AMP] = ACTIONS(1354), + [anon_sym_PIPE] = ACTIONS(1356), + [anon_sym_CARET] = ACTIONS(1358), + [anon_sym_EQ_EQ] = ACTIONS(1360), + [anon_sym_BANG_EQ] = ACTIONS(1360), + [anon_sym_LT] = ACTIONS(1362), + [anon_sym_GT] = ACTIONS(1362), + [anon_sym_LT_EQ] = ACTIONS(1364), + [anon_sym_GT_EQ] = ACTIONS(1364), + [anon_sym_LT_LT] = ACTIONS(1366), + [anon_sym_GT_GT] = ACTIONS(1366), + [anon_sym_PLUS] = ACTIONS(1368), + [anon_sym_DASH] = ACTIONS(1368), + [anon_sym_SLASH] = ACTIONS(1342), + [anon_sym_PERCENT] = ACTIONS(1342), + [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_PLUS_PLUS] = ACTIONS(1121), + [anon_sym_DOT] = ACTIONS(1123), + [anon_sym_DASH_GT] = ACTIONS(1123), [sym_comment] = ACTIONS(39), }, [346] = { [sym_string_literal] = STATE(569), [aux_sym_concatenated_string_repeat1] = STATE(569), - [anon_sym_COMMA] = ACTIONS(1066), - [anon_sym_RBRACE] = ACTIONS(1066), - [anon_sym_LPAREN2] = ACTIONS(1066), - [anon_sym_STAR] = ACTIONS(1078), - [anon_sym_LBRACK] = ACTIONS(1066), - [anon_sym_EQ] = ACTIONS(1078), - [anon_sym_QMARK] = ACTIONS(1066), - [anon_sym_STAR_EQ] = ACTIONS(1066), - [anon_sym_SLASH_EQ] = ACTIONS(1066), - [anon_sym_PERCENT_EQ] = ACTIONS(1066), - [anon_sym_PLUS_EQ] = ACTIONS(1066), - [anon_sym_DASH_EQ] = ACTIONS(1066), - [anon_sym_LT_LT_EQ] = ACTIONS(1066), - [anon_sym_GT_GT_EQ] = ACTIONS(1066), - [anon_sym_AMP_EQ] = ACTIONS(1066), - [anon_sym_CARET_EQ] = ACTIONS(1066), - [anon_sym_PIPE_EQ] = ACTIONS(1066), - [anon_sym_AMP] = ACTIONS(1078), - [anon_sym_PIPE_PIPE] = ACTIONS(1066), - [anon_sym_AMP_AMP] = ACTIONS(1066), - [anon_sym_PIPE] = ACTIONS(1078), - [anon_sym_CARET] = ACTIONS(1078), - [anon_sym_EQ_EQ] = ACTIONS(1066), - [anon_sym_BANG_EQ] = ACTIONS(1066), - [anon_sym_LT] = ACTIONS(1078), - [anon_sym_GT] = ACTIONS(1078), - [anon_sym_LT_EQ] = ACTIONS(1066), - [anon_sym_GT_EQ] = ACTIONS(1066), - [anon_sym_LT_LT] = ACTIONS(1078), - [anon_sym_GT_GT] = ACTIONS(1078), - [anon_sym_PLUS] = ACTIONS(1078), - [anon_sym_DASH] = ACTIONS(1078), - [anon_sym_SLASH] = ACTIONS(1078), - [anon_sym_PERCENT] = ACTIONS(1078), - [anon_sym_DASH_DASH] = ACTIONS(1066), - [anon_sym_PLUS_PLUS] = ACTIONS(1066), - [anon_sym_DOT] = ACTIONS(1066), - [anon_sym_DASH_GT] = ACTIONS(1066), + [anon_sym_COMMA] = ACTIONS(1059), + [anon_sym_RBRACE] = ACTIONS(1059), + [anon_sym_LPAREN2] = ACTIONS(1059), + [anon_sym_STAR] = ACTIONS(1071), + [anon_sym_LBRACK] = ACTIONS(1059), + [anon_sym_EQ] = ACTIONS(1071), + [anon_sym_QMARK] = ACTIONS(1059), + [anon_sym_STAR_EQ] = ACTIONS(1059), + [anon_sym_SLASH_EQ] = ACTIONS(1059), + [anon_sym_PERCENT_EQ] = ACTIONS(1059), + [anon_sym_PLUS_EQ] = ACTIONS(1059), + [anon_sym_DASH_EQ] = ACTIONS(1059), + [anon_sym_LT_LT_EQ] = ACTIONS(1059), + [anon_sym_GT_GT_EQ] = ACTIONS(1059), + [anon_sym_AMP_EQ] = ACTIONS(1059), + [anon_sym_CARET_EQ] = ACTIONS(1059), + [anon_sym_PIPE_EQ] = ACTIONS(1059), + [anon_sym_AMP] = ACTIONS(1071), + [anon_sym_PIPE_PIPE] = ACTIONS(1059), + [anon_sym_AMP_AMP] = ACTIONS(1059), + [anon_sym_PIPE] = ACTIONS(1071), + [anon_sym_CARET] = ACTIONS(1071), + [anon_sym_EQ_EQ] = ACTIONS(1059), + [anon_sym_BANG_EQ] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(1071), + [anon_sym_GT] = ACTIONS(1071), + [anon_sym_LT_EQ] = ACTIONS(1059), + [anon_sym_GT_EQ] = ACTIONS(1059), + [anon_sym_LT_LT] = ACTIONS(1071), + [anon_sym_GT_GT] = ACTIONS(1071), + [anon_sym_PLUS] = ACTIONS(1071), + [anon_sym_DASH] = ACTIONS(1071), + [anon_sym_SLASH] = ACTIONS(1071), + [anon_sym_PERCENT] = ACTIONS(1071), + [anon_sym_DASH_DASH] = ACTIONS(1059), + [anon_sym_PLUS_PLUS] = ACTIONS(1059), + [anon_sym_DOT] = ACTIONS(1059), + [anon_sym_DASH_GT] = ACTIONS(1059), [anon_sym_DQUOTE] = ACTIONS(41), [sym_comment] = ACTIONS(39), }, [347] = { - [anon_sym_COMMA] = ACTIONS(1379), - [anon_sym_RPAREN] = ACTIONS(1379), - [anon_sym_SEMI] = ACTIONS(1379), - [anon_sym_extern] = ACTIONS(1381), - [anon_sym_LPAREN2] = ACTIONS(1379), - [anon_sym_STAR] = ACTIONS(1379), - [anon_sym_LBRACK] = ACTIONS(1379), - [anon_sym_RBRACK] = ACTIONS(1379), - [anon_sym_static] = ACTIONS(1381), - [anon_sym_auto] = ACTIONS(1381), - [anon_sym_register] = ACTIONS(1381), - [anon_sym_inline] = ACTIONS(1381), - [anon_sym_const] = ACTIONS(1381), - [anon_sym_restrict] = ACTIONS(1381), - [anon_sym_volatile] = ACTIONS(1381), - [anon_sym__Atomic] = ACTIONS(1381), - [anon_sym_COLON] = ACTIONS(1379), - [anon_sym_AMP] = ACTIONS(1379), - [anon_sym_BANG] = ACTIONS(1379), - [anon_sym_TILDE] = ACTIONS(1379), - [anon_sym_PLUS] = ACTIONS(1381), - [anon_sym_DASH] = ACTIONS(1381), - [anon_sym_DASH_DASH] = ACTIONS(1379), - [anon_sym_PLUS_PLUS] = ACTIONS(1379), - [anon_sym_sizeof] = ACTIONS(1381), - [sym_number_literal] = ACTIONS(1379), - [anon_sym_SQUOTE] = ACTIONS(1379), - [anon_sym_DQUOTE] = ACTIONS(1379), - [sym_true] = ACTIONS(1381), - [sym_false] = ACTIONS(1381), - [sym_null] = ACTIONS(1381), - [sym_identifier] = ACTIONS(1381), + [anon_sym_COMMA] = ACTIONS(1370), + [anon_sym_RPAREN] = ACTIONS(1370), + [anon_sym_SEMI] = ACTIONS(1370), + [anon_sym_extern] = ACTIONS(1372), + [anon_sym_LPAREN2] = ACTIONS(1370), + [anon_sym_STAR] = ACTIONS(1370), + [anon_sym_LBRACK] = ACTIONS(1370), + [anon_sym_RBRACK] = ACTIONS(1370), + [anon_sym_static] = ACTIONS(1372), + [anon_sym_auto] = ACTIONS(1372), + [anon_sym_register] = ACTIONS(1372), + [anon_sym_inline] = ACTIONS(1372), + [anon_sym_const] = ACTIONS(1372), + [anon_sym_restrict] = ACTIONS(1372), + [anon_sym_volatile] = ACTIONS(1372), + [anon_sym__Atomic] = ACTIONS(1372), + [anon_sym_COLON] = ACTIONS(1370), + [anon_sym_AMP] = ACTIONS(1370), + [anon_sym_BANG] = ACTIONS(1370), + [anon_sym_TILDE] = ACTIONS(1370), + [anon_sym_PLUS] = ACTIONS(1372), + [anon_sym_DASH] = ACTIONS(1372), + [anon_sym_DASH_DASH] = ACTIONS(1370), + [anon_sym_PLUS_PLUS] = ACTIONS(1370), + [anon_sym_sizeof] = ACTIONS(1372), + [sym_number_literal] = ACTIONS(1370), + [anon_sym_SQUOTE] = ACTIONS(1370), + [anon_sym_DQUOTE] = ACTIONS(1370), + [sym_true] = ACTIONS(1372), + [sym_false] = ACTIONS(1372), + [sym_null] = ACTIONS(1372), + [sym_identifier] = ACTIONS(1372), [sym_comment] = ACTIONS(39), }, [348] = { - [anon_sym_COMMA] = ACTIONS(1383), - [anon_sym_RBRACE] = ACTIONS(1383), + [anon_sym_COMMA] = ACTIONS(1374), + [anon_sym_RBRACE] = ACTIONS(1374), [sym_comment] = ACTIONS(39), }, [349] = { [sym_enumerator] = STATE(348), - [anon_sym_RBRACE] = ACTIONS(1385), - [sym_identifier] = ACTIONS(185), + [anon_sym_RBRACE] = ACTIONS(1376), + [sym_identifier] = ACTIONS(183), [sym_comment] = ACTIONS(39), }, [350] = { [aux_sym_enumerator_list_repeat1] = STATE(350), - [anon_sym_COMMA] = ACTIONS(1387), - [anon_sym_RBRACE] = ACTIONS(1383), + [anon_sym_COMMA] = ACTIONS(1378), + [anon_sym_RBRACE] = ACTIONS(1374), [sym_comment] = ACTIONS(39), }, [351] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1390), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1392), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1392), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1392), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1392), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1392), - [anon_sym_extern] = ACTIONS(1390), - [anon_sym_RBRACE] = ACTIONS(1392), - [anon_sym_static] = ACTIONS(1390), - [anon_sym_auto] = ACTIONS(1390), - [anon_sym_register] = ACTIONS(1390), - [anon_sym_inline] = ACTIONS(1390), - [anon_sym_const] = ACTIONS(1390), - [anon_sym_restrict] = ACTIONS(1390), - [anon_sym_volatile] = ACTIONS(1390), - [anon_sym__Atomic] = ACTIONS(1390), - [anon_sym_unsigned] = ACTIONS(1390), - [anon_sym_long] = ACTIONS(1390), - [anon_sym_short] = ACTIONS(1390), - [sym_primitive_type] = ACTIONS(1390), - [anon_sym_enum] = ACTIONS(1390), - [anon_sym_struct] = ACTIONS(1390), - [anon_sym_union] = ACTIONS(1390), - [sym_identifier] = ACTIONS(1390), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1381), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1383), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1383), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1383), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1383), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1383), + [anon_sym_extern] = ACTIONS(1381), + [anon_sym_RBRACE] = ACTIONS(1383), + [anon_sym_static] = ACTIONS(1381), + [anon_sym_auto] = ACTIONS(1381), + [anon_sym_register] = ACTIONS(1381), + [anon_sym_inline] = ACTIONS(1381), + [anon_sym_const] = ACTIONS(1381), + [anon_sym_restrict] = ACTIONS(1381), + [anon_sym_volatile] = ACTIONS(1381), + [anon_sym__Atomic] = ACTIONS(1381), + [anon_sym_unsigned] = ACTIONS(1381), + [anon_sym_long] = ACTIONS(1381), + [anon_sym_short] = ACTIONS(1381), + [sym_primitive_type] = ACTIONS(1381), + [anon_sym_enum] = ACTIONS(1381), + [anon_sym_struct] = ACTIONS(1381), + [anon_sym_union] = ACTIONS(1381), + [sym_identifier] = ACTIONS(1381), [sym_comment] = ACTIONS(39), }, [352] = { @@ -15269,10 +15288,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(572), [aux_sym__declaration_specifiers_repeat1] = STATE(112), [aux_sym_sized_type_specifier_repeat1] = STATE(113), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(195), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1394), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(197), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(199), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(193), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1385), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(195), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(197), [anon_sym_extern] = ACTIONS(23), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), @@ -15282,10 +15301,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_restrict] = ACTIONS(25), [anon_sym_volatile] = ACTIONS(25), [anon_sym__Atomic] = ACTIONS(25), - [anon_sym_unsigned] = ACTIONS(203), - [anon_sym_long] = ACTIONS(203), - [anon_sym_short] = ACTIONS(203), - [sym_primitive_type] = ACTIONS(205), + [anon_sym_unsigned] = ACTIONS(201), + [anon_sym_long] = ACTIONS(201), + [anon_sym_short] = ACTIONS(201), + [sym_primitive_type] = ACTIONS(203), [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), @@ -15293,15 +15312,15 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(39), }, [353] = { - [sym_preproc_arg] = ACTIONS(1396), + [sym_preproc_arg] = ACTIONS(1387), [sym_comment] = ACTIONS(49), }, [354] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1398), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1389), [sym_comment] = ACTIONS(39), }, [355] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1400), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1391), [sym_comment] = ACTIONS(39), }, [356] = { @@ -15323,12 +15342,12 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(579), [aux_sym__declaration_specifiers_repeat1] = STATE(112), [aux_sym_sized_type_specifier_repeat1] = STATE(113), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(195), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1402), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(197), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(199), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(831), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(833), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(193), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1393), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(195), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(197), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(822), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(824), [anon_sym_extern] = ACTIONS(23), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), @@ -15338,10 +15357,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_restrict] = ACTIONS(25), [anon_sym_volatile] = ACTIONS(25), [anon_sym__Atomic] = ACTIONS(25), - [anon_sym_unsigned] = ACTIONS(203), - [anon_sym_long] = ACTIONS(203), - [anon_sym_short] = ACTIONS(203), - [sym_primitive_type] = ACTIONS(205), + [anon_sym_unsigned] = ACTIONS(201), + [anon_sym_long] = ACTIONS(201), + [anon_sym_short] = ACTIONS(201), + [sym_primitive_type] = ACTIONS(203), [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), @@ -15349,38 +15368,38 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(39), }, [357] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1404), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1406), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1406), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1406), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1406), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1406), - [anon_sym_extern] = ACTIONS(1404), - [anon_sym_RBRACE] = ACTIONS(1406), - [anon_sym_static] = ACTIONS(1404), - [anon_sym_auto] = ACTIONS(1404), - [anon_sym_register] = ACTIONS(1404), - [anon_sym_inline] = ACTIONS(1404), - [anon_sym_const] = ACTIONS(1404), - [anon_sym_restrict] = ACTIONS(1404), - [anon_sym_volatile] = ACTIONS(1404), - [anon_sym__Atomic] = ACTIONS(1404), - [anon_sym_unsigned] = ACTIONS(1404), - [anon_sym_long] = ACTIONS(1404), - [anon_sym_short] = ACTIONS(1404), - [sym_primitive_type] = ACTIONS(1404), - [anon_sym_enum] = ACTIONS(1404), - [anon_sym_struct] = ACTIONS(1404), - [anon_sym_union] = ACTIONS(1404), - [sym_identifier] = ACTIONS(1404), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1395), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1397), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1397), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1397), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1397), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1395), + [anon_sym_RBRACE] = ACTIONS(1397), + [anon_sym_static] = ACTIONS(1395), + [anon_sym_auto] = ACTIONS(1395), + [anon_sym_register] = ACTIONS(1395), + [anon_sym_inline] = ACTIONS(1395), + [anon_sym_const] = ACTIONS(1395), + [anon_sym_restrict] = ACTIONS(1395), + [anon_sym_volatile] = ACTIONS(1395), + [anon_sym__Atomic] = ACTIONS(1395), + [anon_sym_unsigned] = ACTIONS(1395), + [anon_sym_long] = ACTIONS(1395), + [anon_sym_short] = ACTIONS(1395), + [sym_primitive_type] = ACTIONS(1395), + [anon_sym_enum] = ACTIONS(1395), + [anon_sym_struct] = ACTIONS(1395), + [anon_sym_union] = ACTIONS(1395), + [sym_identifier] = ACTIONS(1395), [sym_comment] = ACTIONS(39), }, [358] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1408), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1399), [sym_comment] = ACTIONS(39), }, [359] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1410), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1401), [sym_comment] = ACTIONS(39), }, [360] = { @@ -15402,12 +15421,12 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(579), [aux_sym__declaration_specifiers_repeat1] = STATE(112), [aux_sym_sized_type_specifier_repeat1] = STATE(113), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(195), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1412), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(197), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(199), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(831), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(833), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(193), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1403), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(195), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(197), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(822), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(824), [anon_sym_extern] = ACTIONS(23), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), @@ -15417,10 +15436,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_restrict] = ACTIONS(25), [anon_sym_volatile] = ACTIONS(25), [anon_sym__Atomic] = ACTIONS(25), - [anon_sym_unsigned] = ACTIONS(203), - [anon_sym_long] = ACTIONS(203), - [anon_sym_short] = ACTIONS(203), - [sym_primitive_type] = ACTIONS(205), + [anon_sym_unsigned] = ACTIONS(201), + [anon_sym_long] = ACTIONS(201), + [anon_sym_short] = ACTIONS(201), + [sym_primitive_type] = ACTIONS(203), [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), @@ -15428,38 +15447,38 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(39), }, [361] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1414), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1416), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1416), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1416), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1416), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1416), - [anon_sym_extern] = ACTIONS(1414), - [anon_sym_RBRACE] = ACTIONS(1416), - [anon_sym_static] = ACTIONS(1414), - [anon_sym_auto] = ACTIONS(1414), - [anon_sym_register] = ACTIONS(1414), - [anon_sym_inline] = ACTIONS(1414), - [anon_sym_const] = ACTIONS(1414), - [anon_sym_restrict] = ACTIONS(1414), - [anon_sym_volatile] = ACTIONS(1414), - [anon_sym__Atomic] = ACTIONS(1414), - [anon_sym_unsigned] = ACTIONS(1414), - [anon_sym_long] = ACTIONS(1414), - [anon_sym_short] = ACTIONS(1414), - [sym_primitive_type] = ACTIONS(1414), - [anon_sym_enum] = ACTIONS(1414), - [anon_sym_struct] = ACTIONS(1414), - [anon_sym_union] = ACTIONS(1414), - [sym_identifier] = ACTIONS(1414), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1405), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1407), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1407), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1407), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1407), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1407), + [anon_sym_extern] = ACTIONS(1405), + [anon_sym_RBRACE] = ACTIONS(1407), + [anon_sym_static] = ACTIONS(1405), + [anon_sym_auto] = ACTIONS(1405), + [anon_sym_register] = ACTIONS(1405), + [anon_sym_inline] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1405), + [anon_sym_restrict] = ACTIONS(1405), + [anon_sym_volatile] = ACTIONS(1405), + [anon_sym__Atomic] = ACTIONS(1405), + [anon_sym_unsigned] = ACTIONS(1405), + [anon_sym_long] = ACTIONS(1405), + [anon_sym_short] = ACTIONS(1405), + [sym_primitive_type] = ACTIONS(1405), + [anon_sym_enum] = ACTIONS(1405), + [anon_sym_struct] = ACTIONS(1405), + [anon_sym_union] = ACTIONS(1405), + [sym_identifier] = ACTIONS(1405), [sym_comment] = ACTIONS(39), }, [362] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1418), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1409), [sym_comment] = ACTIONS(39), }, [363] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1420), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1411), [sym_comment] = ACTIONS(39), }, [364] = { @@ -15481,12 +15500,12 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(579), [aux_sym__declaration_specifiers_repeat1] = STATE(112), [aux_sym_sized_type_specifier_repeat1] = STATE(113), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(195), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1422), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(197), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(199), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(831), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(833), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(193), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1413), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(195), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(197), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(822), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(824), [anon_sym_extern] = ACTIONS(23), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), @@ -15496,10 +15515,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_restrict] = ACTIONS(25), [anon_sym_volatile] = ACTIONS(25), [anon_sym__Atomic] = ACTIONS(25), - [anon_sym_unsigned] = ACTIONS(203), - [anon_sym_long] = ACTIONS(203), - [anon_sym_short] = ACTIONS(203), - [sym_primitive_type] = ACTIONS(205), + [anon_sym_unsigned] = ACTIONS(201), + [anon_sym_long] = ACTIONS(201), + [anon_sym_short] = ACTIONS(201), + [sym_primitive_type] = ACTIONS(203), [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), @@ -15513,30 +15532,30 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_array_field_declarator] = STATE(202), [sym_type_qualifier] = STATE(590), [aux_sym_type_definition_repeat1] = STATE(590), - [anon_sym_LPAREN2] = ACTIONS(490), - [anon_sym_STAR] = ACTIONS(843), + [anon_sym_LPAREN2] = ACTIONS(486), + [anon_sym_STAR] = ACTIONS(834), [anon_sym_const] = ACTIONS(25), [anon_sym_restrict] = ACTIONS(25), [anon_sym_volatile] = ACTIONS(25), [anon_sym__Atomic] = ACTIONS(25), - [sym_identifier] = ACTIONS(845), + [sym_identifier] = ACTIONS(836), [sym_comment] = ACTIONS(39), }, [366] = { [sym_parameter_list] = STATE(381), - [anon_sym_RPAREN] = ACTIONS(1424), - [anon_sym_LPAREN2] = ACTIONS(243), - [anon_sym_LBRACK] = ACTIONS(871), + [anon_sym_RPAREN] = ACTIONS(1415), + [anon_sym_LPAREN2] = ACTIONS(241), + [anon_sym_LBRACK] = ACTIONS(862), [sym_comment] = ACTIONS(39), }, [367] = { [sym_parameter_list] = STATE(381), - [anon_sym_COMMA] = ACTIONS(1426), - [anon_sym_RPAREN] = ACTIONS(1426), - [anon_sym_SEMI] = ACTIONS(1426), - [anon_sym_LPAREN2] = ACTIONS(243), - [anon_sym_LBRACK] = ACTIONS(871), - [anon_sym_COLON] = ACTIONS(1426), + [anon_sym_COMMA] = ACTIONS(1417), + [anon_sym_RPAREN] = ACTIONS(1417), + [anon_sym_SEMI] = ACTIONS(1417), + [anon_sym_LPAREN2] = ACTIONS(241), + [anon_sym_LBRACK] = ACTIONS(862), + [anon_sym_COLON] = ACTIONS(1417), [sym_comment] = ACTIONS(39), }, [368] = { @@ -15546,13 +15565,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_array_field_declarator] = STATE(202), [sym_type_qualifier] = STATE(219), [aux_sym_type_definition_repeat1] = STATE(219), - [anon_sym_LPAREN2] = ACTIONS(490), - [anon_sym_STAR] = ACTIONS(492), + [anon_sym_LPAREN2] = ACTIONS(486), + [anon_sym_STAR] = ACTIONS(488), [anon_sym_const] = ACTIONS(25), [anon_sym_restrict] = ACTIONS(25), [anon_sym_volatile] = ACTIONS(25), [anon_sym__Atomic] = ACTIONS(25), - [sym_identifier] = ACTIONS(845), + [sym_identifier] = ACTIONS(836), [sym_comment] = ACTIONS(39), }, [369] = { @@ -15587,34 +15606,34 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_macro_type_specifier] = STATE(116), [aux_sym_type_definition_repeat1] = STATE(118), [aux_sym_sized_type_specifier_repeat1] = STATE(119), - [anon_sym_LPAREN2] = ACTIONS(970), - [anon_sym_STAR] = ACTIONS(972), + [anon_sym_LPAREN2] = ACTIONS(961), + [anon_sym_STAR] = ACTIONS(963), [anon_sym_const] = ACTIONS(25), [anon_sym_restrict] = ACTIONS(25), [anon_sym_volatile] = ACTIONS(25), [anon_sym__Atomic] = ACTIONS(25), - [anon_sym_unsigned] = ACTIONS(223), - [anon_sym_long] = ACTIONS(223), - [anon_sym_short] = ACTIONS(223), - [sym_primitive_type] = ACTIONS(225), + [anon_sym_unsigned] = ACTIONS(221), + [anon_sym_long] = ACTIONS(221), + [anon_sym_short] = ACTIONS(221), + [sym_primitive_type] = ACTIONS(223), [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), - [anon_sym_AMP] = ACTIONS(972), - [anon_sym_BANG] = ACTIONS(974), - [anon_sym_TILDE] = ACTIONS(976), - [anon_sym_PLUS] = ACTIONS(978), - [anon_sym_DASH] = ACTIONS(978), - [anon_sym_DASH_DASH] = ACTIONS(980), - [anon_sym_PLUS_PLUS] = ACTIONS(980), - [anon_sym_sizeof] = ACTIONS(982), - [sym_number_literal] = ACTIONS(984), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(986), - [sym_false] = ACTIONS(986), - [sym_null] = ACTIONS(986), - [sym_identifier] = ACTIONS(988), + [anon_sym_AMP] = ACTIONS(963), + [anon_sym_BANG] = ACTIONS(965), + [anon_sym_TILDE] = ACTIONS(967), + [anon_sym_PLUS] = ACTIONS(969), + [anon_sym_DASH] = ACTIONS(969), + [anon_sym_DASH_DASH] = ACTIONS(971), + [anon_sym_PLUS_PLUS] = ACTIONS(971), + [anon_sym_sizeof] = ACTIONS(973), + [sym_number_literal] = ACTIONS(975), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(977), + [sym_false] = ACTIONS(977), + [sym_null] = ACTIONS(977), + [sym_identifier] = ACTIONS(979), [sym_comment] = ACTIONS(39), }, [370] = { @@ -15638,23 +15657,23 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(410), [sym_concatenated_string] = STATE(410), [sym_string_literal] = STATE(376), - [anon_sym_LPAREN2] = ACTIONS(847), - [anon_sym_STAR] = ACTIONS(849), - [anon_sym_AMP] = ACTIONS(849), - [anon_sym_BANG] = ACTIONS(851), - [anon_sym_TILDE] = ACTIONS(853), - [anon_sym_PLUS] = ACTIONS(855), - [anon_sym_DASH] = ACTIONS(855), - [anon_sym_DASH_DASH] = ACTIONS(857), - [anon_sym_PLUS_PLUS] = ACTIONS(857), - [anon_sym_sizeof] = ACTIONS(859), - [sym_number_literal] = ACTIONS(990), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(992), - [sym_false] = ACTIONS(992), - [sym_null] = ACTIONS(992), - [sym_identifier] = ACTIONS(992), + [anon_sym_LPAREN2] = ACTIONS(838), + [anon_sym_STAR] = ACTIONS(840), + [anon_sym_AMP] = ACTIONS(840), + [anon_sym_BANG] = ACTIONS(842), + [anon_sym_TILDE] = ACTIONS(844), + [anon_sym_PLUS] = ACTIONS(846), + [anon_sym_DASH] = ACTIONS(846), + [anon_sym_DASH_DASH] = ACTIONS(848), + [anon_sym_PLUS_PLUS] = ACTIONS(848), + [anon_sym_sizeof] = ACTIONS(850), + [sym_number_literal] = ACTIONS(981), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(983), + [sym_false] = ACTIONS(983), + [sym_null] = ACTIONS(983), + [sym_identifier] = ACTIONS(983), [sym_comment] = ACTIONS(39), }, [371] = { @@ -15678,23 +15697,23 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(439), [sym_concatenated_string] = STATE(439), [sym_string_literal] = STATE(376), - [anon_sym_LPAREN2] = ACTIONS(847), - [anon_sym_STAR] = ACTIONS(849), - [anon_sym_AMP] = ACTIONS(849), - [anon_sym_BANG] = ACTIONS(851), - [anon_sym_TILDE] = ACTIONS(853), - [anon_sym_PLUS] = ACTIONS(855), - [anon_sym_DASH] = ACTIONS(855), - [anon_sym_DASH_DASH] = ACTIONS(857), - [anon_sym_PLUS_PLUS] = ACTIONS(857), - [anon_sym_sizeof] = ACTIONS(859), - [sym_number_literal] = ACTIONS(1046), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1048), - [sym_false] = ACTIONS(1048), - [sym_null] = ACTIONS(1048), - [sym_identifier] = ACTIONS(1048), + [anon_sym_LPAREN2] = ACTIONS(838), + [anon_sym_STAR] = ACTIONS(840), + [anon_sym_AMP] = ACTIONS(840), + [anon_sym_BANG] = ACTIONS(842), + [anon_sym_TILDE] = ACTIONS(844), + [anon_sym_PLUS] = ACTIONS(846), + [anon_sym_DASH] = ACTIONS(846), + [anon_sym_DASH_DASH] = ACTIONS(848), + [anon_sym_PLUS_PLUS] = ACTIONS(848), + [anon_sym_sizeof] = ACTIONS(850), + [sym_number_literal] = ACTIONS(1037), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(1039), + [sym_false] = ACTIONS(1039), + [sym_null] = ACTIONS(1039), + [sym_identifier] = ACTIONS(1039), [sym_comment] = ACTIONS(39), }, [372] = { @@ -15718,23 +15737,23 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(440), [sym_concatenated_string] = STATE(440), [sym_string_literal] = STATE(376), - [anon_sym_LPAREN2] = ACTIONS(847), - [anon_sym_STAR] = ACTIONS(849), - [anon_sym_AMP] = ACTIONS(849), - [anon_sym_BANG] = ACTIONS(851), - [anon_sym_TILDE] = ACTIONS(853), - [anon_sym_PLUS] = ACTIONS(855), - [anon_sym_DASH] = ACTIONS(855), - [anon_sym_DASH_DASH] = ACTIONS(857), - [anon_sym_PLUS_PLUS] = ACTIONS(857), - [anon_sym_sizeof] = ACTIONS(859), - [sym_number_literal] = ACTIONS(1050), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1052), - [sym_false] = ACTIONS(1052), - [sym_null] = ACTIONS(1052), - [sym_identifier] = ACTIONS(1052), + [anon_sym_LPAREN2] = ACTIONS(838), + [anon_sym_STAR] = ACTIONS(840), + [anon_sym_AMP] = ACTIONS(840), + [anon_sym_BANG] = ACTIONS(842), + [anon_sym_TILDE] = ACTIONS(844), + [anon_sym_PLUS] = ACTIONS(846), + [anon_sym_DASH] = ACTIONS(846), + [anon_sym_DASH_DASH] = ACTIONS(848), + [anon_sym_PLUS_PLUS] = ACTIONS(848), + [anon_sym_sizeof] = ACTIONS(850), + [sym_number_literal] = ACTIONS(1041), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(1043), + [sym_false] = ACTIONS(1043), + [sym_null] = ACTIONS(1043), + [sym_identifier] = ACTIONS(1043), [sym_comment] = ACTIONS(39), }, [373] = { @@ -15758,23 +15777,23 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(441), [sym_concatenated_string] = STATE(441), [sym_string_literal] = STATE(376), - [anon_sym_LPAREN2] = ACTIONS(847), - [anon_sym_STAR] = ACTIONS(849), - [anon_sym_AMP] = ACTIONS(849), - [anon_sym_BANG] = ACTIONS(851), - [anon_sym_TILDE] = ACTIONS(853), - [anon_sym_PLUS] = ACTIONS(855), - [anon_sym_DASH] = ACTIONS(855), - [anon_sym_DASH_DASH] = ACTIONS(857), - [anon_sym_PLUS_PLUS] = ACTIONS(857), - [anon_sym_sizeof] = ACTIONS(859), - [sym_number_literal] = ACTIONS(1054), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1056), - [sym_false] = ACTIONS(1056), - [sym_null] = ACTIONS(1056), - [sym_identifier] = ACTIONS(1056), + [anon_sym_LPAREN2] = ACTIONS(838), + [anon_sym_STAR] = ACTIONS(840), + [anon_sym_AMP] = ACTIONS(840), + [anon_sym_BANG] = ACTIONS(842), + [anon_sym_TILDE] = ACTIONS(844), + [anon_sym_PLUS] = ACTIONS(846), + [anon_sym_DASH] = ACTIONS(846), + [anon_sym_DASH_DASH] = ACTIONS(848), + [anon_sym_PLUS_PLUS] = ACTIONS(848), + [anon_sym_sizeof] = ACTIONS(850), + [sym_number_literal] = ACTIONS(1045), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(1047), + [sym_false] = ACTIONS(1047), + [sym_null] = ACTIONS(1047), + [sym_identifier] = ACTIONS(1047), [sym_comment] = ACTIONS(39), }, [374] = { @@ -15798,106 +15817,106 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(595), [sym_concatenated_string] = STATE(595), [sym_string_literal] = STATE(376), - [anon_sym_LPAREN2] = ACTIONS(1428), - [anon_sym_STAR] = ACTIONS(849), - [anon_sym_AMP] = ACTIONS(849), - [anon_sym_BANG] = ACTIONS(851), - [anon_sym_TILDE] = ACTIONS(853), - [anon_sym_PLUS] = ACTIONS(855), - [anon_sym_DASH] = ACTIONS(855), - [anon_sym_DASH_DASH] = ACTIONS(857), - [anon_sym_PLUS_PLUS] = ACTIONS(857), - [anon_sym_sizeof] = ACTIONS(859), - [sym_number_literal] = ACTIONS(1430), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1432), - [sym_false] = ACTIONS(1432), - [sym_null] = ACTIONS(1432), - [sym_identifier] = ACTIONS(1432), + [anon_sym_LPAREN2] = ACTIONS(1419), + [anon_sym_STAR] = ACTIONS(840), + [anon_sym_AMP] = ACTIONS(840), + [anon_sym_BANG] = ACTIONS(842), + [anon_sym_TILDE] = ACTIONS(844), + [anon_sym_PLUS] = ACTIONS(846), + [anon_sym_DASH] = ACTIONS(846), + [anon_sym_DASH_DASH] = ACTIONS(848), + [anon_sym_PLUS_PLUS] = ACTIONS(848), + [anon_sym_sizeof] = ACTIONS(850), + [sym_number_literal] = ACTIONS(1421), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(1423), + [sym_false] = ACTIONS(1423), + [sym_null] = ACTIONS(1423), + [sym_identifier] = ACTIONS(1423), [sym_comment] = ACTIONS(39), }, [375] = { [sym_argument_list] = STATE(465), - [anon_sym_SEMI] = ACTIONS(1434), - [anon_sym_LPAREN2] = ACTIONS(1096), - [anon_sym_STAR] = ACTIONS(1436), - [anon_sym_LBRACK] = ACTIONS(1100), - [anon_sym_EQ] = ACTIONS(1438), - [anon_sym_QMARK] = ACTIONS(1440), - [anon_sym_STAR_EQ] = ACTIONS(1442), - [anon_sym_SLASH_EQ] = ACTIONS(1442), - [anon_sym_PERCENT_EQ] = ACTIONS(1442), - [anon_sym_PLUS_EQ] = ACTIONS(1442), - [anon_sym_DASH_EQ] = ACTIONS(1442), - [anon_sym_LT_LT_EQ] = ACTIONS(1442), - [anon_sym_GT_GT_EQ] = ACTIONS(1442), - [anon_sym_AMP_EQ] = ACTIONS(1442), - [anon_sym_CARET_EQ] = ACTIONS(1442), - [anon_sym_PIPE_EQ] = ACTIONS(1442), - [anon_sym_AMP] = ACTIONS(1444), - [anon_sym_PIPE_PIPE] = ACTIONS(1446), - [anon_sym_AMP_AMP] = ACTIONS(1448), - [anon_sym_PIPE] = ACTIONS(1450), - [anon_sym_CARET] = ACTIONS(1452), - [anon_sym_EQ_EQ] = ACTIONS(1454), - [anon_sym_BANG_EQ] = ACTIONS(1454), - [anon_sym_LT] = ACTIONS(1456), - [anon_sym_GT] = ACTIONS(1456), - [anon_sym_LT_EQ] = ACTIONS(1458), - [anon_sym_GT_EQ] = ACTIONS(1458), - [anon_sym_LT_LT] = ACTIONS(1460), - [anon_sym_GT_GT] = ACTIONS(1460), - [anon_sym_PLUS] = ACTIONS(1462), - [anon_sym_DASH] = ACTIONS(1462), - [anon_sym_SLASH] = ACTIONS(1436), - [anon_sym_PERCENT] = ACTIONS(1436), - [anon_sym_DASH_DASH] = ACTIONS(1128), - [anon_sym_PLUS_PLUS] = ACTIONS(1128), - [anon_sym_DOT] = ACTIONS(1130), - [anon_sym_DASH_GT] = ACTIONS(1130), + [anon_sym_SEMI] = ACTIONS(1425), + [anon_sym_LPAREN2] = ACTIONS(1089), + [anon_sym_STAR] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(1429), + [anon_sym_QMARK] = ACTIONS(1431), + [anon_sym_STAR_EQ] = ACTIONS(1433), + [anon_sym_SLASH_EQ] = ACTIONS(1433), + [anon_sym_PERCENT_EQ] = ACTIONS(1433), + [anon_sym_PLUS_EQ] = ACTIONS(1433), + [anon_sym_DASH_EQ] = ACTIONS(1433), + [anon_sym_LT_LT_EQ] = ACTIONS(1433), + [anon_sym_GT_GT_EQ] = ACTIONS(1433), + [anon_sym_AMP_EQ] = ACTIONS(1433), + [anon_sym_CARET_EQ] = ACTIONS(1433), + [anon_sym_PIPE_EQ] = ACTIONS(1433), + [anon_sym_AMP] = ACTIONS(1435), + [anon_sym_PIPE_PIPE] = ACTIONS(1437), + [anon_sym_AMP_AMP] = ACTIONS(1439), + [anon_sym_PIPE] = ACTIONS(1441), + [anon_sym_CARET] = ACTIONS(1443), + [anon_sym_EQ_EQ] = ACTIONS(1445), + [anon_sym_BANG_EQ] = ACTIONS(1445), + [anon_sym_LT] = ACTIONS(1447), + [anon_sym_GT] = ACTIONS(1447), + [anon_sym_LT_EQ] = ACTIONS(1449), + [anon_sym_GT_EQ] = ACTIONS(1449), + [anon_sym_LT_LT] = ACTIONS(1451), + [anon_sym_GT_GT] = ACTIONS(1451), + [anon_sym_PLUS] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1453), + [anon_sym_SLASH] = ACTIONS(1427), + [anon_sym_PERCENT] = ACTIONS(1427), + [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_PLUS_PLUS] = ACTIONS(1121), + [anon_sym_DOT] = ACTIONS(1123), + [anon_sym_DASH_GT] = ACTIONS(1123), [sym_comment] = ACTIONS(39), }, [376] = { [sym_string_literal] = STATE(609), [aux_sym_concatenated_string_repeat1] = STATE(609), - [anon_sym_SEMI] = ACTIONS(1066), - [anon_sym_LPAREN2] = ACTIONS(1066), - [anon_sym_STAR] = ACTIONS(1078), - [anon_sym_LBRACK] = ACTIONS(1066), - [anon_sym_EQ] = ACTIONS(1078), - [anon_sym_QMARK] = ACTIONS(1066), - [anon_sym_STAR_EQ] = ACTIONS(1066), - [anon_sym_SLASH_EQ] = ACTIONS(1066), - [anon_sym_PERCENT_EQ] = ACTIONS(1066), - [anon_sym_PLUS_EQ] = ACTIONS(1066), - [anon_sym_DASH_EQ] = ACTIONS(1066), - [anon_sym_LT_LT_EQ] = ACTIONS(1066), - [anon_sym_GT_GT_EQ] = ACTIONS(1066), - [anon_sym_AMP_EQ] = ACTIONS(1066), - [anon_sym_CARET_EQ] = ACTIONS(1066), - [anon_sym_PIPE_EQ] = ACTIONS(1066), - [anon_sym_AMP] = ACTIONS(1078), - [anon_sym_PIPE_PIPE] = ACTIONS(1066), - [anon_sym_AMP_AMP] = ACTIONS(1066), - [anon_sym_PIPE] = ACTIONS(1078), - [anon_sym_CARET] = ACTIONS(1078), - [anon_sym_EQ_EQ] = ACTIONS(1066), - [anon_sym_BANG_EQ] = ACTIONS(1066), - [anon_sym_LT] = ACTIONS(1078), - [anon_sym_GT] = ACTIONS(1078), - [anon_sym_LT_EQ] = ACTIONS(1066), - [anon_sym_GT_EQ] = ACTIONS(1066), - [anon_sym_LT_LT] = ACTIONS(1078), - [anon_sym_GT_GT] = ACTIONS(1078), - [anon_sym_PLUS] = ACTIONS(1078), - [anon_sym_DASH] = ACTIONS(1078), - [anon_sym_SLASH] = ACTIONS(1078), - [anon_sym_PERCENT] = ACTIONS(1078), - [anon_sym_DASH_DASH] = ACTIONS(1066), - [anon_sym_PLUS_PLUS] = ACTIONS(1066), - [anon_sym_DOT] = ACTIONS(1066), - [anon_sym_DASH_GT] = ACTIONS(1066), + [anon_sym_SEMI] = ACTIONS(1059), + [anon_sym_LPAREN2] = ACTIONS(1059), + [anon_sym_STAR] = ACTIONS(1071), + [anon_sym_LBRACK] = ACTIONS(1059), + [anon_sym_EQ] = ACTIONS(1071), + [anon_sym_QMARK] = ACTIONS(1059), + [anon_sym_STAR_EQ] = ACTIONS(1059), + [anon_sym_SLASH_EQ] = ACTIONS(1059), + [anon_sym_PERCENT_EQ] = ACTIONS(1059), + [anon_sym_PLUS_EQ] = ACTIONS(1059), + [anon_sym_DASH_EQ] = ACTIONS(1059), + [anon_sym_LT_LT_EQ] = ACTIONS(1059), + [anon_sym_GT_GT_EQ] = ACTIONS(1059), + [anon_sym_AMP_EQ] = ACTIONS(1059), + [anon_sym_CARET_EQ] = ACTIONS(1059), + [anon_sym_PIPE_EQ] = ACTIONS(1059), + [anon_sym_AMP] = ACTIONS(1071), + [anon_sym_PIPE_PIPE] = ACTIONS(1059), + [anon_sym_AMP_AMP] = ACTIONS(1059), + [anon_sym_PIPE] = ACTIONS(1071), + [anon_sym_CARET] = ACTIONS(1071), + [anon_sym_EQ_EQ] = ACTIONS(1059), + [anon_sym_BANG_EQ] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(1071), + [anon_sym_GT] = ACTIONS(1071), + [anon_sym_LT_EQ] = ACTIONS(1059), + [anon_sym_GT_EQ] = ACTIONS(1059), + [anon_sym_LT_LT] = ACTIONS(1071), + [anon_sym_GT_GT] = ACTIONS(1071), + [anon_sym_PLUS] = ACTIONS(1071), + [anon_sym_DASH] = ACTIONS(1071), + [anon_sym_SLASH] = ACTIONS(1071), + [anon_sym_PERCENT] = ACTIONS(1071), + [anon_sym_DASH_DASH] = ACTIONS(1059), + [anon_sym_PLUS_PLUS] = ACTIONS(1059), + [anon_sym_DOT] = ACTIONS(1059), + [anon_sym_DASH_GT] = ACTIONS(1059), [anon_sym_DQUOTE] = ACTIONS(41), [sym_comment] = ACTIONS(39), }, @@ -15906,36 +15925,36 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_pointer_field_declarator] = STATE(200), [sym_function_field_declarator] = STATE(201), [sym_array_field_declarator] = STATE(202), - [anon_sym_LPAREN2] = ACTIONS(490), - [anon_sym_STAR] = ACTIONS(492), - [sym_identifier] = ACTIONS(496), + [anon_sym_LPAREN2] = ACTIONS(486), + [anon_sym_STAR] = ACTIONS(488), + [sym_identifier] = ACTIONS(492), [sym_comment] = ACTIONS(39), }, [378] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1464), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1466), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1466), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1466), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1466), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1466), - [anon_sym_extern] = ACTIONS(1464), - [anon_sym_RBRACE] = ACTIONS(1466), - [anon_sym_static] = ACTIONS(1464), - [anon_sym_auto] = ACTIONS(1464), - [anon_sym_register] = ACTIONS(1464), - [anon_sym_inline] = ACTIONS(1464), - [anon_sym_const] = ACTIONS(1464), - [anon_sym_restrict] = ACTIONS(1464), - [anon_sym_volatile] = ACTIONS(1464), - [anon_sym__Atomic] = ACTIONS(1464), - [anon_sym_unsigned] = ACTIONS(1464), - [anon_sym_long] = ACTIONS(1464), - [anon_sym_short] = ACTIONS(1464), - [sym_primitive_type] = ACTIONS(1464), - [anon_sym_enum] = ACTIONS(1464), - [anon_sym_struct] = ACTIONS(1464), - [anon_sym_union] = ACTIONS(1464), - [sym_identifier] = ACTIONS(1464), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1455), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1457), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1457), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1457), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1457), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1457), + [anon_sym_extern] = ACTIONS(1455), + [anon_sym_RBRACE] = ACTIONS(1457), + [anon_sym_static] = ACTIONS(1455), + [anon_sym_auto] = ACTIONS(1455), + [anon_sym_register] = ACTIONS(1455), + [anon_sym_inline] = ACTIONS(1455), + [anon_sym_const] = ACTIONS(1455), + [anon_sym_restrict] = ACTIONS(1455), + [anon_sym_volatile] = ACTIONS(1455), + [anon_sym__Atomic] = ACTIONS(1455), + [anon_sym_unsigned] = ACTIONS(1455), + [anon_sym_long] = ACTIONS(1455), + [anon_sym_short] = ACTIONS(1455), + [sym_primitive_type] = ACTIONS(1455), + [anon_sym_enum] = ACTIONS(1455), + [anon_sym_struct] = ACTIONS(1455), + [anon_sym_union] = ACTIONS(1455), + [sym_identifier] = ACTIONS(1455), [sym_comment] = ACTIONS(39), }, [379] = { @@ -15971,9 +15990,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__declaration_specifiers_repeat1] = STATE(273), [aux_sym_sized_type_specifier_repeat1] = STATE(274), [anon_sym_extern] = ACTIONS(23), - [anon_sym_LPAREN2] = ACTIONS(606), - [anon_sym_STAR] = ACTIONS(608), - [anon_sym_RBRACK] = ACTIONS(1468), + [anon_sym_LPAREN2] = ACTIONS(602), + [anon_sym_STAR] = ACTIONS(604), + [anon_sym_RBRACK] = ACTIONS(1459), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -15982,28 +16001,28 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_restrict] = ACTIONS(25), [anon_sym_volatile] = ACTIONS(25), [anon_sym__Atomic] = ACTIONS(25), - [anon_sym_unsigned] = ACTIONS(612), - [anon_sym_long] = ACTIONS(612), - [anon_sym_short] = ACTIONS(612), - [sym_primitive_type] = ACTIONS(614), + [anon_sym_unsigned] = ACTIONS(608), + [anon_sym_long] = ACTIONS(608), + [anon_sym_short] = ACTIONS(608), + [sym_primitive_type] = ACTIONS(610), [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), - [anon_sym_AMP] = ACTIONS(608), - [anon_sym_BANG] = ACTIONS(616), - [anon_sym_TILDE] = ACTIONS(618), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_DASH_DASH] = ACTIONS(622), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_sizeof] = ACTIONS(624), - [sym_number_literal] = ACTIONS(1470), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1472), - [sym_false] = ACTIONS(1472), - [sym_null] = ACTIONS(1472), - [sym_identifier] = ACTIONS(630), + [anon_sym_AMP] = ACTIONS(604), + [anon_sym_BANG] = ACTIONS(612), + [anon_sym_TILDE] = ACTIONS(614), + [anon_sym_PLUS] = ACTIONS(616), + [anon_sym_DASH] = ACTIONS(616), + [anon_sym_DASH_DASH] = ACTIONS(618), + [anon_sym_PLUS_PLUS] = ACTIONS(618), + [anon_sym_sizeof] = ACTIONS(620), + [sym_number_literal] = ACTIONS(1461), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(1463), + [sym_false] = ACTIONS(1463), + [sym_null] = ACTIONS(1463), + [sym_identifier] = ACTIONS(626), [sym_comment] = ACTIONS(39), }, [380] = { @@ -16027,69 +16046,69 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(614), [sym_concatenated_string] = STATE(614), [sym_string_literal] = STATE(376), - [anon_sym_LPAREN2] = ACTIONS(847), - [anon_sym_STAR] = ACTIONS(849), - [anon_sym_AMP] = ACTIONS(849), - [anon_sym_BANG] = ACTIONS(851), - [anon_sym_TILDE] = ACTIONS(853), - [anon_sym_PLUS] = ACTIONS(855), - [anon_sym_DASH] = ACTIONS(855), - [anon_sym_DASH_DASH] = ACTIONS(857), - [anon_sym_PLUS_PLUS] = ACTIONS(857), - [anon_sym_sizeof] = ACTIONS(859), - [sym_number_literal] = ACTIONS(1474), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1476), - [sym_false] = ACTIONS(1476), - [sym_null] = ACTIONS(1476), - [sym_identifier] = ACTIONS(1476), + [anon_sym_LPAREN2] = ACTIONS(838), + [anon_sym_STAR] = ACTIONS(840), + [anon_sym_AMP] = ACTIONS(840), + [anon_sym_BANG] = ACTIONS(842), + [anon_sym_TILDE] = ACTIONS(844), + [anon_sym_PLUS] = ACTIONS(846), + [anon_sym_DASH] = ACTIONS(846), + [anon_sym_DASH_DASH] = ACTIONS(848), + [anon_sym_PLUS_PLUS] = ACTIONS(848), + [anon_sym_sizeof] = ACTIONS(850), + [sym_number_literal] = ACTIONS(1465), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(1467), + [sym_false] = ACTIONS(1467), + [sym_null] = ACTIONS(1467), + [sym_identifier] = ACTIONS(1467), [sym_comment] = ACTIONS(39), }, [381] = { - [anon_sym_COMMA] = ACTIONS(1478), - [anon_sym_RPAREN] = ACTIONS(1478), - [anon_sym_SEMI] = ACTIONS(1478), - [anon_sym_LPAREN2] = ACTIONS(1478), - [anon_sym_LBRACK] = ACTIONS(1478), - [anon_sym_COLON] = ACTIONS(1478), + [anon_sym_COMMA] = ACTIONS(1469), + [anon_sym_RPAREN] = ACTIONS(1469), + [anon_sym_SEMI] = ACTIONS(1469), + [anon_sym_LPAREN2] = ACTIONS(1469), + [anon_sym_LBRACK] = ACTIONS(1469), + [anon_sym_COLON] = ACTIONS(1469), [sym_comment] = ACTIONS(39), }, [382] = { [aux_sym_field_declaration_repeat1] = STATE(616), - [anon_sym_COMMA] = ACTIONS(867), - [anon_sym_SEMI] = ACTIONS(1434), - [anon_sym_COLON] = ACTIONS(1480), + [anon_sym_COMMA] = ACTIONS(858), + [anon_sym_SEMI] = ACTIONS(1425), + [anon_sym_COLON] = ACTIONS(1471), [sym_comment] = ACTIONS(39), }, [383] = { [sym_storage_class_specifier] = STATE(383), [sym_type_qualifier] = STATE(383), [aux_sym__declaration_specifiers_repeat1] = STATE(383), - [anon_sym_SEMI] = ACTIONS(646), - [anon_sym_extern] = ACTIONS(303), - [anon_sym_LPAREN2] = ACTIONS(646), - [anon_sym_STAR] = ACTIONS(646), - [anon_sym_static] = ACTIONS(303), - [anon_sym_auto] = ACTIONS(303), - [anon_sym_register] = ACTIONS(303), - [anon_sym_inline] = ACTIONS(303), - [anon_sym_const] = ACTIONS(306), - [anon_sym_restrict] = ACTIONS(306), - [anon_sym_volatile] = ACTIONS(306), - [anon_sym__Atomic] = ACTIONS(306), - [anon_sym_COLON] = ACTIONS(646), - [sym_identifier] = ACTIONS(309), + [anon_sym_SEMI] = ACTIONS(642), + [anon_sym_extern] = ACTIONS(301), + [anon_sym_LPAREN2] = ACTIONS(642), + [anon_sym_STAR] = ACTIONS(642), + [anon_sym_static] = ACTIONS(301), + [anon_sym_auto] = ACTIONS(301), + [anon_sym_register] = ACTIONS(301), + [anon_sym_inline] = ACTIONS(301), + [anon_sym_const] = ACTIONS(304), + [anon_sym_restrict] = ACTIONS(304), + [anon_sym_volatile] = ACTIONS(304), + [anon_sym__Atomic] = ACTIONS(304), + [anon_sym_COLON] = ACTIONS(642), + [sym_identifier] = ACTIONS(307), [sym_comment] = ACTIONS(39), }, [384] = { [sym_storage_class_specifier] = STATE(383), [sym_type_qualifier] = STATE(383), [aux_sym__declaration_specifiers_repeat1] = STATE(383), - [anon_sym_SEMI] = ACTIONS(648), + [anon_sym_SEMI] = ACTIONS(644), [anon_sym_extern] = ACTIONS(23), - [anon_sym_LPAREN2] = ACTIONS(648), - [anon_sym_STAR] = ACTIONS(648), + [anon_sym_LPAREN2] = ACTIONS(644), + [anon_sym_STAR] = ACTIONS(644), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -16098,23 +16117,23 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_restrict] = ACTIONS(25), [anon_sym_volatile] = ACTIONS(25), [anon_sym__Atomic] = ACTIONS(25), - [anon_sym_COLON] = ACTIONS(648), - [sym_identifier] = ACTIONS(650), + [anon_sym_COLON] = ACTIONS(644), + [sym_identifier] = ACTIONS(646), [sym_comment] = ACTIONS(39), }, [385] = { [sym_parameter_list] = STATE(392), - [anon_sym_RPAREN] = ACTIONS(1482), - [anon_sym_LPAREN2] = ACTIONS(243), - [anon_sym_LBRACK] = ACTIONS(935), + [anon_sym_RPAREN] = ACTIONS(1473), + [anon_sym_LPAREN2] = ACTIONS(241), + [anon_sym_LBRACK] = ACTIONS(926), [sym_comment] = ACTIONS(39), }, [386] = { [sym_parameter_list] = STATE(392), - [anon_sym_COMMA] = ACTIONS(1484), - [anon_sym_RPAREN] = ACTIONS(1484), - [anon_sym_LPAREN2] = ACTIONS(243), - [anon_sym_LBRACK] = ACTIONS(935), + [anon_sym_COMMA] = ACTIONS(1475), + [anon_sym_RPAREN] = ACTIONS(1475), + [anon_sym_LPAREN2] = ACTIONS(241), + [anon_sym_LBRACK] = ACTIONS(926), [sym_comment] = ACTIONS(39), }, [387] = { @@ -16125,21 +16144,21 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_type_qualifier] = STATE(619), [sym_parameter_list] = STATE(212), [aux_sym_type_definition_repeat1] = STATE(619), - [anon_sym_RPAREN] = ACTIONS(1484), - [anon_sym_LPAREN2] = ACTIONS(514), - [anon_sym_STAR] = ACTIONS(516), - [anon_sym_LBRACK] = ACTIONS(518), - [anon_sym_const] = ACTIONS(925), - [anon_sym_restrict] = ACTIONS(925), - [anon_sym_volatile] = ACTIONS(925), - [anon_sym__Atomic] = ACTIONS(925), + [anon_sym_RPAREN] = ACTIONS(1475), + [anon_sym_LPAREN2] = ACTIONS(510), + [anon_sym_STAR] = ACTIONS(512), + [anon_sym_LBRACK] = ACTIONS(514), + [anon_sym_const] = ACTIONS(916), + [anon_sym_restrict] = ACTIONS(916), + [anon_sym_volatile] = ACTIONS(916), + [anon_sym__Atomic] = ACTIONS(916), [sym_comment] = ACTIONS(39), }, [388] = { - [anon_sym_COMMA] = ACTIONS(1486), - [anon_sym_RPAREN] = ACTIONS(1486), - [anon_sym_LPAREN2] = ACTIONS(1486), - [anon_sym_LBRACK] = ACTIONS(1486), + [anon_sym_COMMA] = ACTIONS(1477), + [anon_sym_RPAREN] = ACTIONS(1477), + [anon_sym_LPAREN2] = ACTIONS(1477), + [anon_sym_LBRACK] = ACTIONS(1477), [sym_comment] = ACTIONS(39), }, [389] = { @@ -16163,65 +16182,65 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(621), [sym_concatenated_string] = STATE(621), [sym_string_literal] = STATE(272), - [anon_sym_LPAREN2] = ACTIONS(606), - [anon_sym_STAR] = ACTIONS(608), - [anon_sym_RBRACK] = ACTIONS(1488), - [anon_sym_AMP] = ACTIONS(608), - [anon_sym_BANG] = ACTIONS(616), - [anon_sym_TILDE] = ACTIONS(618), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_DASH_DASH] = ACTIONS(622), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_sizeof] = ACTIONS(624), - [sym_number_literal] = ACTIONS(1490), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1492), - [sym_false] = ACTIONS(1492), - [sym_null] = ACTIONS(1492), - [sym_identifier] = ACTIONS(1492), + [anon_sym_LPAREN2] = ACTIONS(602), + [anon_sym_STAR] = ACTIONS(604), + [anon_sym_RBRACK] = ACTIONS(1479), + [anon_sym_AMP] = ACTIONS(604), + [anon_sym_BANG] = ACTIONS(612), + [anon_sym_TILDE] = ACTIONS(614), + [anon_sym_PLUS] = ACTIONS(616), + [anon_sym_DASH] = ACTIONS(616), + [anon_sym_DASH_DASH] = ACTIONS(618), + [anon_sym_PLUS_PLUS] = ACTIONS(618), + [anon_sym_sizeof] = ACTIONS(620), + [sym_number_literal] = ACTIONS(1481), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_null] = ACTIONS(1483), + [sym_identifier] = ACTIONS(1483), [sym_comment] = ACTIONS(39), }, [390] = { [sym_argument_list] = STATE(465), - [anon_sym_LPAREN2] = ACTIONS(1096), - [anon_sym_STAR] = ACTIONS(1166), - [anon_sym_LBRACK] = ACTIONS(1100), - [anon_sym_RBRACK] = ACTIONS(1488), - [anon_sym_EQ] = ACTIONS(1168), - [anon_sym_QMARK] = ACTIONS(1170), - [anon_sym_STAR_EQ] = ACTIONS(1172), - [anon_sym_SLASH_EQ] = ACTIONS(1172), - [anon_sym_PERCENT_EQ] = ACTIONS(1172), - [anon_sym_PLUS_EQ] = ACTIONS(1172), - [anon_sym_DASH_EQ] = ACTIONS(1172), - [anon_sym_LT_LT_EQ] = ACTIONS(1172), - [anon_sym_GT_GT_EQ] = ACTIONS(1172), - [anon_sym_AMP_EQ] = ACTIONS(1172), - [anon_sym_CARET_EQ] = ACTIONS(1172), - [anon_sym_PIPE_EQ] = ACTIONS(1172), - [anon_sym_AMP] = ACTIONS(1174), - [anon_sym_PIPE_PIPE] = ACTIONS(1176), - [anon_sym_AMP_AMP] = ACTIONS(1178), - [anon_sym_PIPE] = ACTIONS(1180), - [anon_sym_CARET] = ACTIONS(1182), - [anon_sym_EQ_EQ] = ACTIONS(1184), - [anon_sym_BANG_EQ] = ACTIONS(1184), - [anon_sym_LT] = ACTIONS(1186), - [anon_sym_GT] = ACTIONS(1186), - [anon_sym_LT_EQ] = ACTIONS(1188), - [anon_sym_GT_EQ] = ACTIONS(1188), - [anon_sym_LT_LT] = ACTIONS(1190), - [anon_sym_GT_GT] = ACTIONS(1190), - [anon_sym_PLUS] = ACTIONS(1192), - [anon_sym_DASH] = ACTIONS(1192), - [anon_sym_SLASH] = ACTIONS(1166), - [anon_sym_PERCENT] = ACTIONS(1166), - [anon_sym_DASH_DASH] = ACTIONS(1128), - [anon_sym_PLUS_PLUS] = ACTIONS(1128), - [anon_sym_DOT] = ACTIONS(1130), - [anon_sym_DASH_GT] = ACTIONS(1130), + [anon_sym_LPAREN2] = ACTIONS(1089), + [anon_sym_STAR] = ACTIONS(1159), + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_RBRACK] = ACTIONS(1479), + [anon_sym_EQ] = ACTIONS(1161), + [anon_sym_QMARK] = ACTIONS(1163), + [anon_sym_STAR_EQ] = ACTIONS(1165), + [anon_sym_SLASH_EQ] = ACTIONS(1165), + [anon_sym_PERCENT_EQ] = ACTIONS(1165), + [anon_sym_PLUS_EQ] = ACTIONS(1165), + [anon_sym_DASH_EQ] = ACTIONS(1165), + [anon_sym_LT_LT_EQ] = ACTIONS(1165), + [anon_sym_GT_GT_EQ] = ACTIONS(1165), + [anon_sym_AMP_EQ] = ACTIONS(1165), + [anon_sym_CARET_EQ] = ACTIONS(1165), + [anon_sym_PIPE_EQ] = ACTIONS(1165), + [anon_sym_AMP] = ACTIONS(1167), + [anon_sym_PIPE_PIPE] = ACTIONS(1169), + [anon_sym_AMP_AMP] = ACTIONS(1171), + [anon_sym_PIPE] = ACTIONS(1173), + [anon_sym_CARET] = ACTIONS(1175), + [anon_sym_EQ_EQ] = ACTIONS(1177), + [anon_sym_BANG_EQ] = ACTIONS(1177), + [anon_sym_LT] = ACTIONS(1179), + [anon_sym_GT] = ACTIONS(1179), + [anon_sym_LT_EQ] = ACTIONS(1181), + [anon_sym_GT_EQ] = ACTIONS(1181), + [anon_sym_LT_LT] = ACTIONS(1183), + [anon_sym_GT_GT] = ACTIONS(1183), + [anon_sym_PLUS] = ACTIONS(1185), + [anon_sym_DASH] = ACTIONS(1185), + [anon_sym_SLASH] = ACTIONS(1159), + [anon_sym_PERCENT] = ACTIONS(1159), + [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_PLUS_PLUS] = ACTIONS(1121), + [anon_sym_DOT] = ACTIONS(1123), + [anon_sym_DASH_GT] = ACTIONS(1123), [sym_comment] = ACTIONS(39), }, [391] = { @@ -16257,9 +16276,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__declaration_specifiers_repeat1] = STATE(273), [aux_sym_sized_type_specifier_repeat1] = STATE(274), [anon_sym_extern] = ACTIONS(23), - [anon_sym_LPAREN2] = ACTIONS(606), - [anon_sym_STAR] = ACTIONS(608), - [anon_sym_RBRACK] = ACTIONS(1488), + [anon_sym_LPAREN2] = ACTIONS(602), + [anon_sym_STAR] = ACTIONS(604), + [anon_sym_RBRACK] = ACTIONS(1479), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -16268,42 +16287,42 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_restrict] = ACTIONS(25), [anon_sym_volatile] = ACTIONS(25), [anon_sym__Atomic] = ACTIONS(25), - [anon_sym_unsigned] = ACTIONS(612), - [anon_sym_long] = ACTIONS(612), - [anon_sym_short] = ACTIONS(612), - [sym_primitive_type] = ACTIONS(614), + [anon_sym_unsigned] = ACTIONS(608), + [anon_sym_long] = ACTIONS(608), + [anon_sym_short] = ACTIONS(608), + [sym_primitive_type] = ACTIONS(610), [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), - [anon_sym_AMP] = ACTIONS(608), - [anon_sym_BANG] = ACTIONS(616), - [anon_sym_TILDE] = ACTIONS(618), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_DASH_DASH] = ACTIONS(622), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_sizeof] = ACTIONS(624), - [sym_number_literal] = ACTIONS(1490), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1492), - [sym_false] = ACTIONS(1492), - [sym_null] = ACTIONS(1492), - [sym_identifier] = ACTIONS(630), + [anon_sym_AMP] = ACTIONS(604), + [anon_sym_BANG] = ACTIONS(612), + [anon_sym_TILDE] = ACTIONS(614), + [anon_sym_PLUS] = ACTIONS(616), + [anon_sym_DASH] = ACTIONS(616), + [anon_sym_DASH_DASH] = ACTIONS(618), + [anon_sym_PLUS_PLUS] = ACTIONS(618), + [anon_sym_sizeof] = ACTIONS(620), + [sym_number_literal] = ACTIONS(1481), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_null] = ACTIONS(1483), + [sym_identifier] = ACTIONS(626), [sym_comment] = ACTIONS(39), }, [392] = { - [anon_sym_COMMA] = ACTIONS(1494), - [anon_sym_RPAREN] = ACTIONS(1494), - [anon_sym_LPAREN2] = ACTIONS(1494), - [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_COMMA] = ACTIONS(1485), + [anon_sym_RPAREN] = ACTIONS(1485), + [anon_sym_LPAREN2] = ACTIONS(1485), + [anon_sym_LBRACK] = ACTIONS(1485), [sym_comment] = ACTIONS(39), }, [393] = { [sym_parameter_list] = STATE(392), - [anon_sym_RPAREN] = ACTIONS(1496), - [anon_sym_LPAREN2] = ACTIONS(243), - [anon_sym_LBRACK] = ACTIONS(935), + [anon_sym_RPAREN] = ACTIONS(1487), + [anon_sym_LPAREN2] = ACTIONS(241), + [anon_sym_LBRACK] = ACTIONS(926), [sym_comment] = ACTIONS(39), }, [394] = { @@ -16314,19 +16333,19 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_type_qualifier] = STATE(219), [aux_sym_type_definition_repeat1] = STATE(219), [anon_sym_LPAREN2] = ACTIONS(92), - [anon_sym_STAR] = ACTIONS(534), + [anon_sym_STAR] = ACTIONS(530), [anon_sym_const] = ACTIONS(25), [anon_sym_restrict] = ACTIONS(25), [anon_sym_volatile] = ACTIONS(25), [anon_sym__Atomic] = ACTIONS(25), - [sym_identifier] = ACTIONS(532), + [sym_identifier] = ACTIONS(528), [sym_comment] = ACTIONS(39), }, [395] = { [aux_sym_string_literal_repeat1] = STATE(624), - [anon_sym_DQUOTE] = ACTIONS(1498), - [aux_sym_SLASH_LBRACK_CARET_BSLASH_BSLASH_DQUOTE_BSLASHn_RBRACK_SLASH] = ACTIONS(1500), - [sym_escape_sequence] = ACTIONS(1502), + [anon_sym_DQUOTE] = ACTIONS(1489), + [aux_sym_SLASH_LBRACK_CARET_BSLASH_BSLASH_DQUOTE_BSLASHn_RBRACK_SLASH] = ACTIONS(1491), + [sym_escape_sequence] = ACTIONS(1491), [sym_comment] = ACTIONS(49), }, [396] = { @@ -16387,21 +16406,21 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(651), [aux_sym__declaration_specifiers_repeat1] = STATE(20), [aux_sym_sized_type_specifier_repeat1] = STATE(21), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(133), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(135), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1504), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1506), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1508), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1510), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1512), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1514), - [sym_preproc_directive] = ACTIONS(149), - [anon_sym_SEMI] = ACTIONS(1516), - [anon_sym_typedef] = ACTIONS(151), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(131), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(133), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1493), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1495), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1497), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1499), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1501), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1503), + [sym_preproc_directive] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(1505), + [anon_sym_typedef] = ACTIONS(149), [anon_sym_extern] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(734), - [anon_sym_LPAREN2] = ACTIONS(554), - [anon_sym_STAR] = ACTIONS(556), + [anon_sym_LBRACE] = ACTIONS(725), + [anon_sym_LPAREN2] = ACTIONS(550), + [anon_sym_STAR] = ACTIONS(552), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -16417,32 +16436,32 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), - [anon_sym_if] = ACTIONS(1518), - [anon_sym_switch] = ACTIONS(1520), - [anon_sym_case] = ACTIONS(1522), - [anon_sym_default] = ACTIONS(1524), - [anon_sym_while] = ACTIONS(1526), - [anon_sym_do] = ACTIONS(1528), - [anon_sym_for] = ACTIONS(1530), - [anon_sym_return] = ACTIONS(1532), - [anon_sym_break] = ACTIONS(1534), - [anon_sym_continue] = ACTIONS(1536), - [anon_sym_goto] = ACTIONS(1538), - [anon_sym_AMP] = ACTIONS(556), - [anon_sym_BANG] = ACTIONS(580), - [anon_sym_TILDE] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_DASH_DASH] = ACTIONS(586), - [anon_sym_PLUS_PLUS] = ACTIONS(586), - [anon_sym_sizeof] = ACTIONS(588), - [sym_number_literal] = ACTIONS(1540), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1542), - [sym_false] = ACTIONS(1542), - [sym_null] = ACTIONS(1542), - [sym_identifier] = ACTIONS(1544), + [anon_sym_if] = ACTIONS(1507), + [anon_sym_switch] = ACTIONS(1509), + [anon_sym_case] = ACTIONS(1511), + [anon_sym_default] = ACTIONS(1513), + [anon_sym_while] = ACTIONS(1515), + [anon_sym_do] = ACTIONS(1517), + [anon_sym_for] = ACTIONS(1519), + [anon_sym_return] = ACTIONS(1521), + [anon_sym_break] = ACTIONS(1523), + [anon_sym_continue] = ACTIONS(1525), + [anon_sym_goto] = ACTIONS(1527), + [anon_sym_AMP] = ACTIONS(552), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_TILDE] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(580), + [anon_sym_DASH] = ACTIONS(580), + [anon_sym_DASH_DASH] = ACTIONS(582), + [anon_sym_PLUS_PLUS] = ACTIONS(582), + [anon_sym_sizeof] = ACTIONS(584), + [sym_number_literal] = ACTIONS(1529), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_null] = ACTIONS(1531), + [sym_identifier] = ACTIONS(1533), [sym_comment] = ACTIONS(39), }, [397] = { @@ -16503,21 +16522,21 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(655), [aux_sym__declaration_specifiers_repeat1] = STATE(20), [aux_sym_sized_type_specifier_repeat1] = STATE(21), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(133), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(135), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1504), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1546), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1508), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1510), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1512), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1514), - [sym_preproc_directive] = ACTIONS(149), - [anon_sym_SEMI] = ACTIONS(1516), - [anon_sym_typedef] = ACTIONS(151), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(131), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(133), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1493), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1535), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1497), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1499), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1501), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1503), + [sym_preproc_directive] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(1505), + [anon_sym_typedef] = ACTIONS(149), [anon_sym_extern] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(734), - [anon_sym_LPAREN2] = ACTIONS(554), - [anon_sym_STAR] = ACTIONS(556), + [anon_sym_LBRACE] = ACTIONS(725), + [anon_sym_LPAREN2] = ACTIONS(550), + [anon_sym_STAR] = ACTIONS(552), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -16533,32 +16552,32 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), - [anon_sym_if] = ACTIONS(1518), - [anon_sym_switch] = ACTIONS(1520), - [anon_sym_case] = ACTIONS(1522), - [anon_sym_default] = ACTIONS(1524), - [anon_sym_while] = ACTIONS(1526), - [anon_sym_do] = ACTIONS(1528), - [anon_sym_for] = ACTIONS(1530), - [anon_sym_return] = ACTIONS(1532), - [anon_sym_break] = ACTIONS(1534), - [anon_sym_continue] = ACTIONS(1536), - [anon_sym_goto] = ACTIONS(1538), - [anon_sym_AMP] = ACTIONS(556), - [anon_sym_BANG] = ACTIONS(580), - [anon_sym_TILDE] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_DASH_DASH] = ACTIONS(586), - [anon_sym_PLUS_PLUS] = ACTIONS(586), - [anon_sym_sizeof] = ACTIONS(588), - [sym_number_literal] = ACTIONS(1540), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1542), - [sym_false] = ACTIONS(1542), - [sym_null] = ACTIONS(1542), - [sym_identifier] = ACTIONS(1544), + [anon_sym_if] = ACTIONS(1507), + [anon_sym_switch] = ACTIONS(1509), + [anon_sym_case] = ACTIONS(1511), + [anon_sym_default] = ACTIONS(1513), + [anon_sym_while] = ACTIONS(1515), + [anon_sym_do] = ACTIONS(1517), + [anon_sym_for] = ACTIONS(1519), + [anon_sym_return] = ACTIONS(1521), + [anon_sym_break] = ACTIONS(1523), + [anon_sym_continue] = ACTIONS(1525), + [anon_sym_goto] = ACTIONS(1527), + [anon_sym_AMP] = ACTIONS(552), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_TILDE] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(580), + [anon_sym_DASH] = ACTIONS(580), + [anon_sym_DASH_DASH] = ACTIONS(582), + [anon_sym_PLUS_PLUS] = ACTIONS(582), + [anon_sym_sizeof] = ACTIONS(584), + [sym_number_literal] = ACTIONS(1529), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_null] = ACTIONS(1531), + [sym_identifier] = ACTIONS(1533), [sym_comment] = ACTIONS(39), }, [398] = { @@ -16619,21 +16638,21 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(659), [aux_sym__declaration_specifiers_repeat1] = STATE(20), [aux_sym_sized_type_specifier_repeat1] = STATE(21), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(133), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(135), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1504), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1548), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1508), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1510), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1512), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1514), - [sym_preproc_directive] = ACTIONS(149), - [anon_sym_SEMI] = ACTIONS(1516), - [anon_sym_typedef] = ACTIONS(151), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(131), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(133), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1493), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1537), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1497), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1499), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1501), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1503), + [sym_preproc_directive] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(1505), + [anon_sym_typedef] = ACTIONS(149), [anon_sym_extern] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(734), - [anon_sym_LPAREN2] = ACTIONS(554), - [anon_sym_STAR] = ACTIONS(556), + [anon_sym_LBRACE] = ACTIONS(725), + [anon_sym_LPAREN2] = ACTIONS(550), + [anon_sym_STAR] = ACTIONS(552), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -16649,32 +16668,32 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), - [anon_sym_if] = ACTIONS(1518), - [anon_sym_switch] = ACTIONS(1520), - [anon_sym_case] = ACTIONS(1522), - [anon_sym_default] = ACTIONS(1524), - [anon_sym_while] = ACTIONS(1526), - [anon_sym_do] = ACTIONS(1528), - [anon_sym_for] = ACTIONS(1530), - [anon_sym_return] = ACTIONS(1532), - [anon_sym_break] = ACTIONS(1534), - [anon_sym_continue] = ACTIONS(1536), - [anon_sym_goto] = ACTIONS(1538), - [anon_sym_AMP] = ACTIONS(556), - [anon_sym_BANG] = ACTIONS(580), - [anon_sym_TILDE] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_DASH_DASH] = ACTIONS(586), - [anon_sym_PLUS_PLUS] = ACTIONS(586), - [anon_sym_sizeof] = ACTIONS(588), - [sym_number_literal] = ACTIONS(1540), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1542), - [sym_false] = ACTIONS(1542), - [sym_null] = ACTIONS(1542), - [sym_identifier] = ACTIONS(1544), + [anon_sym_if] = ACTIONS(1507), + [anon_sym_switch] = ACTIONS(1509), + [anon_sym_case] = ACTIONS(1511), + [anon_sym_default] = ACTIONS(1513), + [anon_sym_while] = ACTIONS(1515), + [anon_sym_do] = ACTIONS(1517), + [anon_sym_for] = ACTIONS(1519), + [anon_sym_return] = ACTIONS(1521), + [anon_sym_break] = ACTIONS(1523), + [anon_sym_continue] = ACTIONS(1525), + [anon_sym_goto] = ACTIONS(1527), + [anon_sym_AMP] = ACTIONS(552), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_TILDE] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(580), + [anon_sym_DASH] = ACTIONS(580), + [anon_sym_DASH_DASH] = ACTIONS(582), + [anon_sym_PLUS_PLUS] = ACTIONS(582), + [anon_sym_sizeof] = ACTIONS(584), + [sym_number_literal] = ACTIONS(1529), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_null] = ACTIONS(1531), + [sym_identifier] = ACTIONS(1533), [sym_comment] = ACTIONS(39), }, [399] = { @@ -16709,34 +16728,34 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_macro_type_specifier] = STATE(116), [aux_sym_type_definition_repeat1] = STATE(118), [aux_sym_sized_type_specifier_repeat1] = STATE(119), - [anon_sym_LPAREN2] = ACTIONS(970), - [anon_sym_STAR] = ACTIONS(972), + [anon_sym_LPAREN2] = ACTIONS(961), + [anon_sym_STAR] = ACTIONS(963), [anon_sym_const] = ACTIONS(25), [anon_sym_restrict] = ACTIONS(25), [anon_sym_volatile] = ACTIONS(25), [anon_sym__Atomic] = ACTIONS(25), - [anon_sym_unsigned] = ACTIONS(223), - [anon_sym_long] = ACTIONS(223), - [anon_sym_short] = ACTIONS(223), - [sym_primitive_type] = ACTIONS(225), + [anon_sym_unsigned] = ACTIONS(221), + [anon_sym_long] = ACTIONS(221), + [anon_sym_short] = ACTIONS(221), + [sym_primitive_type] = ACTIONS(223), [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), - [anon_sym_AMP] = ACTIONS(972), - [anon_sym_BANG] = ACTIONS(974), - [anon_sym_TILDE] = ACTIONS(976), - [anon_sym_PLUS] = ACTIONS(978), - [anon_sym_DASH] = ACTIONS(978), - [anon_sym_DASH_DASH] = ACTIONS(980), - [anon_sym_PLUS_PLUS] = ACTIONS(980), - [anon_sym_sizeof] = ACTIONS(982), - [sym_number_literal] = ACTIONS(984), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(986), - [sym_false] = ACTIONS(986), - [sym_null] = ACTIONS(986), - [sym_identifier] = ACTIONS(988), + [anon_sym_AMP] = ACTIONS(963), + [anon_sym_BANG] = ACTIONS(965), + [anon_sym_TILDE] = ACTIONS(967), + [anon_sym_PLUS] = ACTIONS(969), + [anon_sym_DASH] = ACTIONS(969), + [anon_sym_DASH_DASH] = ACTIONS(971), + [anon_sym_PLUS_PLUS] = ACTIONS(971), + [anon_sym_sizeof] = ACTIONS(973), + [sym_number_literal] = ACTIONS(975), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(977), + [sym_false] = ACTIONS(977), + [sym_null] = ACTIONS(977), + [sym_identifier] = ACTIONS(979), [sym_comment] = ACTIONS(39), }, [400] = { @@ -16760,23 +16779,23 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(410), [sym_concatenated_string] = STATE(410), [sym_string_literal] = STATE(409), - [anon_sym_LPAREN2] = ACTIONS(970), - [anon_sym_STAR] = ACTIONS(972), - [anon_sym_AMP] = ACTIONS(972), - [anon_sym_BANG] = ACTIONS(974), - [anon_sym_TILDE] = ACTIONS(976), - [anon_sym_PLUS] = ACTIONS(978), - [anon_sym_DASH] = ACTIONS(978), - [anon_sym_DASH_DASH] = ACTIONS(980), - [anon_sym_PLUS_PLUS] = ACTIONS(980), - [anon_sym_sizeof] = ACTIONS(982), - [sym_number_literal] = ACTIONS(990), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(992), - [sym_false] = ACTIONS(992), - [sym_null] = ACTIONS(992), - [sym_identifier] = ACTIONS(992), + [anon_sym_LPAREN2] = ACTIONS(961), + [anon_sym_STAR] = ACTIONS(963), + [anon_sym_AMP] = ACTIONS(963), + [anon_sym_BANG] = ACTIONS(965), + [anon_sym_TILDE] = ACTIONS(967), + [anon_sym_PLUS] = ACTIONS(969), + [anon_sym_DASH] = ACTIONS(969), + [anon_sym_DASH_DASH] = ACTIONS(971), + [anon_sym_PLUS_PLUS] = ACTIONS(971), + [anon_sym_sizeof] = ACTIONS(973), + [sym_number_literal] = ACTIONS(981), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(983), + [sym_false] = ACTIONS(983), + [sym_null] = ACTIONS(983), + [sym_identifier] = ACTIONS(983), [sym_comment] = ACTIONS(39), }, [401] = { @@ -16800,23 +16819,23 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(439), [sym_concatenated_string] = STATE(439), [sym_string_literal] = STATE(409), - [anon_sym_LPAREN2] = ACTIONS(970), - [anon_sym_STAR] = ACTIONS(972), - [anon_sym_AMP] = ACTIONS(972), - [anon_sym_BANG] = ACTIONS(974), - [anon_sym_TILDE] = ACTIONS(976), - [anon_sym_PLUS] = ACTIONS(978), - [anon_sym_DASH] = ACTIONS(978), - [anon_sym_DASH_DASH] = ACTIONS(980), - [anon_sym_PLUS_PLUS] = ACTIONS(980), - [anon_sym_sizeof] = ACTIONS(982), - [sym_number_literal] = ACTIONS(1046), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1048), - [sym_false] = ACTIONS(1048), - [sym_null] = ACTIONS(1048), - [sym_identifier] = ACTIONS(1048), + [anon_sym_LPAREN2] = ACTIONS(961), + [anon_sym_STAR] = ACTIONS(963), + [anon_sym_AMP] = ACTIONS(963), + [anon_sym_BANG] = ACTIONS(965), + [anon_sym_TILDE] = ACTIONS(967), + [anon_sym_PLUS] = ACTIONS(969), + [anon_sym_DASH] = ACTIONS(969), + [anon_sym_DASH_DASH] = ACTIONS(971), + [anon_sym_PLUS_PLUS] = ACTIONS(971), + [anon_sym_sizeof] = ACTIONS(973), + [sym_number_literal] = ACTIONS(1037), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(1039), + [sym_false] = ACTIONS(1039), + [sym_null] = ACTIONS(1039), + [sym_identifier] = ACTIONS(1039), [sym_comment] = ACTIONS(39), }, [402] = { @@ -16840,23 +16859,23 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(440), [sym_concatenated_string] = STATE(440), [sym_string_literal] = STATE(409), - [anon_sym_LPAREN2] = ACTIONS(970), - [anon_sym_STAR] = ACTIONS(972), - [anon_sym_AMP] = ACTIONS(972), - [anon_sym_BANG] = ACTIONS(974), - [anon_sym_TILDE] = ACTIONS(976), - [anon_sym_PLUS] = ACTIONS(978), - [anon_sym_DASH] = ACTIONS(978), - [anon_sym_DASH_DASH] = ACTIONS(980), - [anon_sym_PLUS_PLUS] = ACTIONS(980), - [anon_sym_sizeof] = ACTIONS(982), - [sym_number_literal] = ACTIONS(1050), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1052), - [sym_false] = ACTIONS(1052), - [sym_null] = ACTIONS(1052), - [sym_identifier] = ACTIONS(1052), + [anon_sym_LPAREN2] = ACTIONS(961), + [anon_sym_STAR] = ACTIONS(963), + [anon_sym_AMP] = ACTIONS(963), + [anon_sym_BANG] = ACTIONS(965), + [anon_sym_TILDE] = ACTIONS(967), + [anon_sym_PLUS] = ACTIONS(969), + [anon_sym_DASH] = ACTIONS(969), + [anon_sym_DASH_DASH] = ACTIONS(971), + [anon_sym_PLUS_PLUS] = ACTIONS(971), + [anon_sym_sizeof] = ACTIONS(973), + [sym_number_literal] = ACTIONS(1041), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(1043), + [sym_false] = ACTIONS(1043), + [sym_null] = ACTIONS(1043), + [sym_identifier] = ACTIONS(1043), [sym_comment] = ACTIONS(39), }, [403] = { @@ -16880,23 +16899,23 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(441), [sym_concatenated_string] = STATE(441), [sym_string_literal] = STATE(409), - [anon_sym_LPAREN2] = ACTIONS(970), - [anon_sym_STAR] = ACTIONS(972), - [anon_sym_AMP] = ACTIONS(972), - [anon_sym_BANG] = ACTIONS(974), - [anon_sym_TILDE] = ACTIONS(976), - [anon_sym_PLUS] = ACTIONS(978), - [anon_sym_DASH] = ACTIONS(978), - [anon_sym_DASH_DASH] = ACTIONS(980), - [anon_sym_PLUS_PLUS] = ACTIONS(980), - [anon_sym_sizeof] = ACTIONS(982), - [sym_number_literal] = ACTIONS(1054), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1056), - [sym_false] = ACTIONS(1056), - [sym_null] = ACTIONS(1056), - [sym_identifier] = ACTIONS(1056), + [anon_sym_LPAREN2] = ACTIONS(961), + [anon_sym_STAR] = ACTIONS(963), + [anon_sym_AMP] = ACTIONS(963), + [anon_sym_BANG] = ACTIONS(965), + [anon_sym_TILDE] = ACTIONS(967), + [anon_sym_PLUS] = ACTIONS(969), + [anon_sym_DASH] = ACTIONS(969), + [anon_sym_DASH_DASH] = ACTIONS(971), + [anon_sym_PLUS_PLUS] = ACTIONS(971), + [anon_sym_sizeof] = ACTIONS(973), + [sym_number_literal] = ACTIONS(1045), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(1047), + [sym_false] = ACTIONS(1047), + [sym_null] = ACTIONS(1047), + [sym_identifier] = ACTIONS(1047), [sym_comment] = ACTIONS(39), }, [404] = { @@ -16920,204 +16939,204 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(662), [sym_concatenated_string] = STATE(662), [sym_string_literal] = STATE(409), - [anon_sym_LPAREN2] = ACTIONS(1550), - [anon_sym_STAR] = ACTIONS(972), - [anon_sym_AMP] = ACTIONS(972), - [anon_sym_BANG] = ACTIONS(974), - [anon_sym_TILDE] = ACTIONS(976), - [anon_sym_PLUS] = ACTIONS(978), - [anon_sym_DASH] = ACTIONS(978), - [anon_sym_DASH_DASH] = ACTIONS(980), - [anon_sym_PLUS_PLUS] = ACTIONS(980), - [anon_sym_sizeof] = ACTIONS(982), - [sym_number_literal] = ACTIONS(1552), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1554), - [sym_false] = ACTIONS(1554), - [sym_null] = ACTIONS(1554), - [sym_identifier] = ACTIONS(1554), + [anon_sym_LPAREN2] = ACTIONS(1539), + [anon_sym_STAR] = ACTIONS(963), + [anon_sym_AMP] = ACTIONS(963), + [anon_sym_BANG] = ACTIONS(965), + [anon_sym_TILDE] = ACTIONS(967), + [anon_sym_PLUS] = ACTIONS(969), + [anon_sym_DASH] = ACTIONS(969), + [anon_sym_DASH_DASH] = ACTIONS(971), + [anon_sym_PLUS_PLUS] = ACTIONS(971), + [anon_sym_sizeof] = ACTIONS(973), + [sym_number_literal] = ACTIONS(1541), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(1543), + [sym_false] = ACTIONS(1543), + [sym_null] = ACTIONS(1543), + [sym_identifier] = ACTIONS(1543), [sym_comment] = ACTIONS(39), }, [405] = { - [anon_sym_COMMA] = ACTIONS(1066), - [anon_sym_RPAREN] = ACTIONS(1068), - [anon_sym_LPAREN2] = ACTIONS(1071), - [anon_sym_STAR] = ACTIONS(1075), - [anon_sym_LBRACK] = ACTIONS(1068), - [anon_sym_EQ] = ACTIONS(1078), - [anon_sym_QMARK] = ACTIONS(1066), - [anon_sym_STAR_EQ] = ACTIONS(1066), - [anon_sym_SLASH_EQ] = ACTIONS(1066), - [anon_sym_PERCENT_EQ] = ACTIONS(1066), - [anon_sym_PLUS_EQ] = ACTIONS(1066), - [anon_sym_DASH_EQ] = ACTIONS(1066), - [anon_sym_LT_LT_EQ] = ACTIONS(1066), - [anon_sym_GT_GT_EQ] = ACTIONS(1066), - [anon_sym_AMP_EQ] = ACTIONS(1066), - [anon_sym_CARET_EQ] = ACTIONS(1066), - [anon_sym_PIPE_EQ] = ACTIONS(1066), - [anon_sym_AMP] = ACTIONS(1078), - [anon_sym_PIPE_PIPE] = ACTIONS(1066), - [anon_sym_AMP_AMP] = ACTIONS(1066), - [anon_sym_PIPE] = ACTIONS(1078), - [anon_sym_CARET] = ACTIONS(1078), - [anon_sym_EQ_EQ] = ACTIONS(1066), - [anon_sym_BANG_EQ] = ACTIONS(1066), - [anon_sym_LT] = ACTIONS(1078), - [anon_sym_GT] = ACTIONS(1078), - [anon_sym_LT_EQ] = ACTIONS(1066), - [anon_sym_GT_EQ] = ACTIONS(1066), - [anon_sym_LT_LT] = ACTIONS(1078), - [anon_sym_GT_GT] = ACTIONS(1078), - [anon_sym_PLUS] = ACTIONS(1078), - [anon_sym_DASH] = ACTIONS(1078), - [anon_sym_SLASH] = ACTIONS(1078), - [anon_sym_PERCENT] = ACTIONS(1078), - [anon_sym_DASH_DASH] = ACTIONS(1066), - [anon_sym_PLUS_PLUS] = ACTIONS(1066), - [anon_sym_DOT] = ACTIONS(1066), - [anon_sym_DASH_GT] = ACTIONS(1066), + [anon_sym_COMMA] = ACTIONS(1059), + [anon_sym_RPAREN] = ACTIONS(1061), + [anon_sym_LPAREN2] = ACTIONS(1064), + [anon_sym_STAR] = ACTIONS(1068), + [anon_sym_LBRACK] = ACTIONS(1061), + [anon_sym_EQ] = ACTIONS(1071), + [anon_sym_QMARK] = ACTIONS(1059), + [anon_sym_STAR_EQ] = ACTIONS(1059), + [anon_sym_SLASH_EQ] = ACTIONS(1059), + [anon_sym_PERCENT_EQ] = ACTIONS(1059), + [anon_sym_PLUS_EQ] = ACTIONS(1059), + [anon_sym_DASH_EQ] = ACTIONS(1059), + [anon_sym_LT_LT_EQ] = ACTIONS(1059), + [anon_sym_GT_GT_EQ] = ACTIONS(1059), + [anon_sym_AMP_EQ] = ACTIONS(1059), + [anon_sym_CARET_EQ] = ACTIONS(1059), + [anon_sym_PIPE_EQ] = ACTIONS(1059), + [anon_sym_AMP] = ACTIONS(1071), + [anon_sym_PIPE_PIPE] = ACTIONS(1059), + [anon_sym_AMP_AMP] = ACTIONS(1059), + [anon_sym_PIPE] = ACTIONS(1071), + [anon_sym_CARET] = ACTIONS(1071), + [anon_sym_EQ_EQ] = ACTIONS(1059), + [anon_sym_BANG_EQ] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(1071), + [anon_sym_GT] = ACTIONS(1071), + [anon_sym_LT_EQ] = ACTIONS(1059), + [anon_sym_GT_EQ] = ACTIONS(1059), + [anon_sym_LT_LT] = ACTIONS(1071), + [anon_sym_GT_GT] = ACTIONS(1071), + [anon_sym_PLUS] = ACTIONS(1071), + [anon_sym_DASH] = ACTIONS(1071), + [anon_sym_SLASH] = ACTIONS(1071), + [anon_sym_PERCENT] = ACTIONS(1071), + [anon_sym_DASH_DASH] = ACTIONS(1059), + [anon_sym_PLUS_PLUS] = ACTIONS(1059), + [anon_sym_DOT] = ACTIONS(1059), + [anon_sym_DASH_GT] = ACTIONS(1059), [sym_comment] = ACTIONS(39), }, [406] = { [sym_argument_list] = STATE(465), - [anon_sym_COMMA] = ACTIONS(1556), - [anon_sym_RPAREN] = ACTIONS(1558), - [anon_sym_LPAREN2] = ACTIONS(1096), - [anon_sym_STAR] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1100), - [anon_sym_EQ] = ACTIONS(1562), - [anon_sym_QMARK] = ACTIONS(1564), - [anon_sym_STAR_EQ] = ACTIONS(1566), - [anon_sym_SLASH_EQ] = ACTIONS(1566), - [anon_sym_PERCENT_EQ] = ACTIONS(1566), - [anon_sym_PLUS_EQ] = ACTIONS(1566), - [anon_sym_DASH_EQ] = ACTIONS(1566), - [anon_sym_LT_LT_EQ] = ACTIONS(1566), - [anon_sym_GT_GT_EQ] = ACTIONS(1566), - [anon_sym_AMP_EQ] = ACTIONS(1566), - [anon_sym_CARET_EQ] = ACTIONS(1566), - [anon_sym_PIPE_EQ] = ACTIONS(1566), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_PIPE_PIPE] = ACTIONS(1570), - [anon_sym_AMP_AMP] = ACTIONS(1572), - [anon_sym_PIPE] = ACTIONS(1574), - [anon_sym_CARET] = ACTIONS(1576), - [anon_sym_EQ_EQ] = ACTIONS(1578), - [anon_sym_BANG_EQ] = ACTIONS(1578), - [anon_sym_LT] = ACTIONS(1580), - [anon_sym_GT] = ACTIONS(1580), - [anon_sym_LT_EQ] = ACTIONS(1582), - [anon_sym_GT_EQ] = ACTIONS(1582), - [anon_sym_LT_LT] = ACTIONS(1584), - [anon_sym_GT_GT] = ACTIONS(1584), - [anon_sym_PLUS] = ACTIONS(1586), - [anon_sym_DASH] = ACTIONS(1586), - [anon_sym_SLASH] = ACTIONS(1560), - [anon_sym_PERCENT] = ACTIONS(1560), - [anon_sym_DASH_DASH] = ACTIONS(1128), - [anon_sym_PLUS_PLUS] = ACTIONS(1128), - [anon_sym_DOT] = ACTIONS(1130), - [anon_sym_DASH_GT] = ACTIONS(1130), + [anon_sym_COMMA] = ACTIONS(1545), + [anon_sym_RPAREN] = ACTIONS(1547), + [anon_sym_LPAREN2] = ACTIONS(1089), + [anon_sym_STAR] = ACTIONS(1549), + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(1551), + [anon_sym_QMARK] = ACTIONS(1553), + [anon_sym_STAR_EQ] = ACTIONS(1555), + [anon_sym_SLASH_EQ] = ACTIONS(1555), + [anon_sym_PERCENT_EQ] = ACTIONS(1555), + [anon_sym_PLUS_EQ] = ACTIONS(1555), + [anon_sym_DASH_EQ] = ACTIONS(1555), + [anon_sym_LT_LT_EQ] = ACTIONS(1555), + [anon_sym_GT_GT_EQ] = ACTIONS(1555), + [anon_sym_AMP_EQ] = ACTIONS(1555), + [anon_sym_CARET_EQ] = ACTIONS(1555), + [anon_sym_PIPE_EQ] = ACTIONS(1555), + [anon_sym_AMP] = ACTIONS(1557), + [anon_sym_PIPE_PIPE] = ACTIONS(1559), + [anon_sym_AMP_AMP] = ACTIONS(1561), + [anon_sym_PIPE] = ACTIONS(1563), + [anon_sym_CARET] = ACTIONS(1565), + [anon_sym_EQ_EQ] = ACTIONS(1567), + [anon_sym_BANG_EQ] = ACTIONS(1567), + [anon_sym_LT] = ACTIONS(1569), + [anon_sym_GT] = ACTIONS(1569), + [anon_sym_LT_EQ] = ACTIONS(1571), + [anon_sym_GT_EQ] = ACTIONS(1571), + [anon_sym_LT_LT] = ACTIONS(1573), + [anon_sym_GT_GT] = ACTIONS(1573), + [anon_sym_PLUS] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(1575), + [anon_sym_SLASH] = ACTIONS(1549), + [anon_sym_PERCENT] = ACTIONS(1549), + [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_PLUS_PLUS] = ACTIONS(1121), + [anon_sym_DOT] = ACTIONS(1123), + [anon_sym_DASH_GT] = ACTIONS(1123), [sym_comment] = ACTIONS(39), }, [407] = { - [anon_sym_RPAREN] = ACTIONS(1558), + [anon_sym_RPAREN] = ACTIONS(1547), [sym_comment] = ACTIONS(39), }, [408] = { - [anon_sym_RPAREN] = ACTIONS(1588), + [anon_sym_RPAREN] = ACTIONS(1577), [sym_comment] = ACTIONS(39), }, [409] = { [sym_string_literal] = STATE(678), [aux_sym_concatenated_string_repeat1] = STATE(678), - [anon_sym_COMMA] = ACTIONS(1066), - [anon_sym_RPAREN] = ACTIONS(1066), - [anon_sym_LPAREN2] = ACTIONS(1066), - [anon_sym_STAR] = ACTIONS(1078), - [anon_sym_LBRACK] = ACTIONS(1066), - [anon_sym_EQ] = ACTIONS(1078), - [anon_sym_QMARK] = ACTIONS(1066), - [anon_sym_STAR_EQ] = ACTIONS(1066), - [anon_sym_SLASH_EQ] = ACTIONS(1066), - [anon_sym_PERCENT_EQ] = ACTIONS(1066), - [anon_sym_PLUS_EQ] = ACTIONS(1066), - [anon_sym_DASH_EQ] = ACTIONS(1066), - [anon_sym_LT_LT_EQ] = ACTIONS(1066), - [anon_sym_GT_GT_EQ] = ACTIONS(1066), - [anon_sym_AMP_EQ] = ACTIONS(1066), - [anon_sym_CARET_EQ] = ACTIONS(1066), - [anon_sym_PIPE_EQ] = ACTIONS(1066), - [anon_sym_AMP] = ACTIONS(1078), - [anon_sym_PIPE_PIPE] = ACTIONS(1066), - [anon_sym_AMP_AMP] = ACTIONS(1066), - [anon_sym_PIPE] = ACTIONS(1078), - [anon_sym_CARET] = ACTIONS(1078), - [anon_sym_EQ_EQ] = ACTIONS(1066), - [anon_sym_BANG_EQ] = ACTIONS(1066), - [anon_sym_LT] = ACTIONS(1078), - [anon_sym_GT] = ACTIONS(1078), - [anon_sym_LT_EQ] = ACTIONS(1066), - [anon_sym_GT_EQ] = ACTIONS(1066), - [anon_sym_LT_LT] = ACTIONS(1078), - [anon_sym_GT_GT] = ACTIONS(1078), - [anon_sym_PLUS] = ACTIONS(1078), - [anon_sym_DASH] = ACTIONS(1078), - [anon_sym_SLASH] = ACTIONS(1078), - [anon_sym_PERCENT] = ACTIONS(1078), - [anon_sym_DASH_DASH] = ACTIONS(1066), - [anon_sym_PLUS_PLUS] = ACTIONS(1066), - [anon_sym_DOT] = ACTIONS(1066), - [anon_sym_DASH_GT] = ACTIONS(1066), + [anon_sym_COMMA] = ACTIONS(1059), + [anon_sym_RPAREN] = ACTIONS(1059), + [anon_sym_LPAREN2] = ACTIONS(1059), + [anon_sym_STAR] = ACTIONS(1071), + [anon_sym_LBRACK] = ACTIONS(1059), + [anon_sym_EQ] = ACTIONS(1071), + [anon_sym_QMARK] = ACTIONS(1059), + [anon_sym_STAR_EQ] = ACTIONS(1059), + [anon_sym_SLASH_EQ] = ACTIONS(1059), + [anon_sym_PERCENT_EQ] = ACTIONS(1059), + [anon_sym_PLUS_EQ] = ACTIONS(1059), + [anon_sym_DASH_EQ] = ACTIONS(1059), + [anon_sym_LT_LT_EQ] = ACTIONS(1059), + [anon_sym_GT_GT_EQ] = ACTIONS(1059), + [anon_sym_AMP_EQ] = ACTIONS(1059), + [anon_sym_CARET_EQ] = ACTIONS(1059), + [anon_sym_PIPE_EQ] = ACTIONS(1059), + [anon_sym_AMP] = ACTIONS(1071), + [anon_sym_PIPE_PIPE] = ACTIONS(1059), + [anon_sym_AMP_AMP] = ACTIONS(1059), + [anon_sym_PIPE] = ACTIONS(1071), + [anon_sym_CARET] = ACTIONS(1071), + [anon_sym_EQ_EQ] = ACTIONS(1059), + [anon_sym_BANG_EQ] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(1071), + [anon_sym_GT] = ACTIONS(1071), + [anon_sym_LT_EQ] = ACTIONS(1059), + [anon_sym_GT_EQ] = ACTIONS(1059), + [anon_sym_LT_LT] = ACTIONS(1071), + [anon_sym_GT_GT] = ACTIONS(1071), + [anon_sym_PLUS] = ACTIONS(1071), + [anon_sym_DASH] = ACTIONS(1071), + [anon_sym_SLASH] = ACTIONS(1071), + [anon_sym_PERCENT] = ACTIONS(1071), + [anon_sym_DASH_DASH] = ACTIONS(1059), + [anon_sym_PLUS_PLUS] = ACTIONS(1059), + [anon_sym_DOT] = ACTIONS(1059), + [anon_sym_DASH_GT] = ACTIONS(1059), [anon_sym_DQUOTE] = ACTIONS(41), [sym_comment] = ACTIONS(39), }, [410] = { [sym_argument_list] = STATE(465), - [anon_sym_COMMA] = ACTIONS(1590), - [anon_sym_RPAREN] = ACTIONS(1590), - [anon_sym_SEMI] = ACTIONS(1590), - [anon_sym_RBRACE] = ACTIONS(1590), - [anon_sym_LPAREN2] = ACTIONS(1096), - [anon_sym_STAR] = ACTIONS(1592), - [anon_sym_LBRACK] = ACTIONS(1100), - [anon_sym_RBRACK] = ACTIONS(1590), - [anon_sym_EQ] = ACTIONS(1592), - [anon_sym_COLON] = ACTIONS(1590), - [anon_sym_QMARK] = ACTIONS(1590), - [anon_sym_STAR_EQ] = ACTIONS(1590), - [anon_sym_SLASH_EQ] = ACTIONS(1590), - [anon_sym_PERCENT_EQ] = ACTIONS(1590), - [anon_sym_PLUS_EQ] = ACTIONS(1590), - [anon_sym_DASH_EQ] = ACTIONS(1590), - [anon_sym_LT_LT_EQ] = ACTIONS(1590), - [anon_sym_GT_GT_EQ] = ACTIONS(1590), - [anon_sym_AMP_EQ] = ACTIONS(1590), - [anon_sym_CARET_EQ] = ACTIONS(1590), - [anon_sym_PIPE_EQ] = ACTIONS(1590), - [anon_sym_AMP] = ACTIONS(1592), - [anon_sym_PIPE_PIPE] = ACTIONS(1590), - [anon_sym_AMP_AMP] = ACTIONS(1590), - [anon_sym_PIPE] = ACTIONS(1592), - [anon_sym_CARET] = ACTIONS(1592), - [anon_sym_EQ_EQ] = ACTIONS(1590), - [anon_sym_BANG_EQ] = ACTIONS(1590), - [anon_sym_LT] = ACTIONS(1592), - [anon_sym_GT] = ACTIONS(1592), - [anon_sym_LT_EQ] = ACTIONS(1590), - [anon_sym_GT_EQ] = ACTIONS(1590), - [anon_sym_LT_LT] = ACTIONS(1592), - [anon_sym_GT_GT] = ACTIONS(1592), - [anon_sym_PLUS] = ACTIONS(1592), - [anon_sym_DASH] = ACTIONS(1592), - [anon_sym_SLASH] = ACTIONS(1592), - [anon_sym_PERCENT] = ACTIONS(1592), - [anon_sym_DASH_DASH] = ACTIONS(1590), - [anon_sym_PLUS_PLUS] = ACTIONS(1590), - [anon_sym_DOT] = ACTIONS(1130), - [anon_sym_DASH_GT] = ACTIONS(1130), + [anon_sym_COMMA] = ACTIONS(1579), + [anon_sym_RPAREN] = ACTIONS(1579), + [anon_sym_SEMI] = ACTIONS(1579), + [anon_sym_RBRACE] = ACTIONS(1579), + [anon_sym_LPAREN2] = ACTIONS(1089), + [anon_sym_STAR] = ACTIONS(1581), + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_RBRACK] = ACTIONS(1579), + [anon_sym_EQ] = ACTIONS(1581), + [anon_sym_COLON] = ACTIONS(1579), + [anon_sym_QMARK] = ACTIONS(1579), + [anon_sym_STAR_EQ] = ACTIONS(1579), + [anon_sym_SLASH_EQ] = ACTIONS(1579), + [anon_sym_PERCENT_EQ] = ACTIONS(1579), + [anon_sym_PLUS_EQ] = ACTIONS(1579), + [anon_sym_DASH_EQ] = ACTIONS(1579), + [anon_sym_LT_LT_EQ] = ACTIONS(1579), + [anon_sym_GT_GT_EQ] = ACTIONS(1579), + [anon_sym_AMP_EQ] = ACTIONS(1579), + [anon_sym_CARET_EQ] = ACTIONS(1579), + [anon_sym_PIPE_EQ] = ACTIONS(1579), + [anon_sym_AMP] = ACTIONS(1581), + [anon_sym_PIPE_PIPE] = ACTIONS(1579), + [anon_sym_AMP_AMP] = ACTIONS(1579), + [anon_sym_PIPE] = ACTIONS(1581), + [anon_sym_CARET] = ACTIONS(1581), + [anon_sym_EQ_EQ] = ACTIONS(1579), + [anon_sym_BANG_EQ] = ACTIONS(1579), + [anon_sym_LT] = ACTIONS(1581), + [anon_sym_GT] = ACTIONS(1581), + [anon_sym_LT_EQ] = ACTIONS(1579), + [anon_sym_GT_EQ] = ACTIONS(1579), + [anon_sym_LT_LT] = ACTIONS(1581), + [anon_sym_GT_GT] = ACTIONS(1581), + [anon_sym_PLUS] = ACTIONS(1581), + [anon_sym_DASH] = ACTIONS(1581), + [anon_sym_SLASH] = ACTIONS(1581), + [anon_sym_PERCENT] = ACTIONS(1581), + [anon_sym_DASH_DASH] = ACTIONS(1579), + [anon_sym_PLUS_PLUS] = ACTIONS(1579), + [anon_sym_DOT] = ACTIONS(1123), + [anon_sym_DASH_GT] = ACTIONS(1123), [sym_comment] = ACTIONS(39), }, [411] = { @@ -17142,23 +17161,23 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(679), [sym_concatenated_string] = STATE(679), [sym_string_literal] = STATE(409), - [anon_sym_LPAREN2] = ACTIONS(970), - [anon_sym_STAR] = ACTIONS(972), - [anon_sym_AMP] = ACTIONS(972), - [anon_sym_BANG] = ACTIONS(974), - [anon_sym_TILDE] = ACTIONS(976), - [anon_sym_PLUS] = ACTIONS(978), - [anon_sym_DASH] = ACTIONS(978), - [anon_sym_DASH_DASH] = ACTIONS(980), - [anon_sym_PLUS_PLUS] = ACTIONS(980), - [anon_sym_sizeof] = ACTIONS(982), - [sym_number_literal] = ACTIONS(1594), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1596), - [sym_false] = ACTIONS(1596), - [sym_null] = ACTIONS(1596), - [sym_identifier] = ACTIONS(1596), + [anon_sym_LPAREN2] = ACTIONS(961), + [anon_sym_STAR] = ACTIONS(963), + [anon_sym_AMP] = ACTIONS(963), + [anon_sym_BANG] = ACTIONS(965), + [anon_sym_TILDE] = ACTIONS(967), + [anon_sym_PLUS] = ACTIONS(969), + [anon_sym_DASH] = ACTIONS(969), + [anon_sym_DASH_DASH] = ACTIONS(971), + [anon_sym_PLUS_PLUS] = ACTIONS(971), + [anon_sym_sizeof] = ACTIONS(973), + [sym_number_literal] = ACTIONS(1583), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(1585), + [sym_false] = ACTIONS(1585), + [sym_null] = ACTIONS(1585), + [sym_identifier] = ACTIONS(1585), [sym_comment] = ACTIONS(39), }, [412] = { @@ -17196,36 +17215,36 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(251), [sym_concatenated_string] = STATE(251), [sym_string_literal] = STATE(253), - [anon_sym_SEMI] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(241), - [anon_sym_LPAREN2] = ACTIONS(554), - [anon_sym_STAR] = ACTIONS(556), - [anon_sym_if] = ACTIONS(1598), - [anon_sym_switch] = ACTIONS(1600), - [anon_sym_case] = ACTIONS(1602), - [anon_sym_default] = ACTIONS(1604), - [anon_sym_while] = ACTIONS(1606), - [anon_sym_do] = ACTIONS(568), - [anon_sym_for] = ACTIONS(1608), - [anon_sym_return] = ACTIONS(572), - [anon_sym_break] = ACTIONS(574), - [anon_sym_continue] = ACTIONS(576), - [anon_sym_goto] = ACTIONS(578), - [anon_sym_AMP] = ACTIONS(556), - [anon_sym_BANG] = ACTIONS(580), - [anon_sym_TILDE] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_DASH_DASH] = ACTIONS(586), - [anon_sym_PLUS_PLUS] = ACTIONS(586), - [anon_sym_sizeof] = ACTIONS(588), - [sym_number_literal] = ACTIONS(590), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(594), - [sym_false] = ACTIONS(594), - [sym_null] = ACTIONS(594), - [sym_identifier] = ACTIONS(1610), + [anon_sym_SEMI] = ACTIONS(546), + [anon_sym_LBRACE] = ACTIONS(239), + [anon_sym_LPAREN2] = ACTIONS(550), + [anon_sym_STAR] = ACTIONS(552), + [anon_sym_if] = ACTIONS(1587), + [anon_sym_switch] = ACTIONS(1589), + [anon_sym_case] = ACTIONS(1591), + [anon_sym_default] = ACTIONS(1593), + [anon_sym_while] = ACTIONS(1595), + [anon_sym_do] = ACTIONS(564), + [anon_sym_for] = ACTIONS(1597), + [anon_sym_return] = ACTIONS(568), + [anon_sym_break] = ACTIONS(570), + [anon_sym_continue] = ACTIONS(572), + [anon_sym_goto] = ACTIONS(574), + [anon_sym_AMP] = ACTIONS(552), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_TILDE] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(580), + [anon_sym_DASH] = ACTIONS(580), + [anon_sym_DASH_DASH] = ACTIONS(582), + [anon_sym_PLUS_PLUS] = ACTIONS(582), + [anon_sym_sizeof] = ACTIONS(584), + [sym_number_literal] = ACTIONS(586), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(590), + [sym_false] = ACTIONS(590), + [sym_null] = ACTIONS(590), + [sym_identifier] = ACTIONS(1599), [sym_comment] = ACTIONS(39), }, [413] = { @@ -17263,36 +17282,36 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(251), [sym_concatenated_string] = STATE(251), [sym_string_literal] = STATE(253), - [anon_sym_SEMI] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(241), - [anon_sym_LPAREN2] = ACTIONS(554), - [anon_sym_STAR] = ACTIONS(556), - [anon_sym_if] = ACTIONS(558), - [anon_sym_switch] = ACTIONS(560), - [anon_sym_case] = ACTIONS(562), - [anon_sym_default] = ACTIONS(564), - [anon_sym_while] = ACTIONS(566), - [anon_sym_do] = ACTIONS(568), - [anon_sym_for] = ACTIONS(570), - [anon_sym_return] = ACTIONS(572), - [anon_sym_break] = ACTIONS(574), - [anon_sym_continue] = ACTIONS(576), - [anon_sym_goto] = ACTIONS(578), - [anon_sym_AMP] = ACTIONS(556), - [anon_sym_BANG] = ACTIONS(580), - [anon_sym_TILDE] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_DASH_DASH] = ACTIONS(586), - [anon_sym_PLUS_PLUS] = ACTIONS(586), - [anon_sym_sizeof] = ACTIONS(588), - [sym_number_literal] = ACTIONS(590), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(594), - [sym_false] = ACTIONS(594), - [sym_null] = ACTIONS(594), - [sym_identifier] = ACTIONS(1612), + [anon_sym_SEMI] = ACTIONS(546), + [anon_sym_LBRACE] = ACTIONS(239), + [anon_sym_LPAREN2] = ACTIONS(550), + [anon_sym_STAR] = ACTIONS(552), + [anon_sym_if] = ACTIONS(554), + [anon_sym_switch] = ACTIONS(556), + [anon_sym_case] = ACTIONS(558), + [anon_sym_default] = ACTIONS(560), + [anon_sym_while] = ACTIONS(562), + [anon_sym_do] = ACTIONS(564), + [anon_sym_for] = ACTIONS(566), + [anon_sym_return] = ACTIONS(568), + [anon_sym_break] = ACTIONS(570), + [anon_sym_continue] = ACTIONS(572), + [anon_sym_goto] = ACTIONS(574), + [anon_sym_AMP] = ACTIONS(552), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_TILDE] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(580), + [anon_sym_DASH] = ACTIONS(580), + [anon_sym_DASH_DASH] = ACTIONS(582), + [anon_sym_PLUS_PLUS] = ACTIONS(582), + [anon_sym_sizeof] = ACTIONS(584), + [sym_number_literal] = ACTIONS(586), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(590), + [sym_false] = ACTIONS(590), + [sym_null] = ACTIONS(590), + [sym_identifier] = ACTIONS(1601), [sym_comment] = ACTIONS(39), }, [414] = { @@ -17327,34 +17346,34 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_macro_type_specifier] = STATE(116), [aux_sym_type_definition_repeat1] = STATE(118), [aux_sym_sized_type_specifier_repeat1] = STATE(119), - [anon_sym_LPAREN2] = ACTIONS(970), - [anon_sym_STAR] = ACTIONS(972), + [anon_sym_LPAREN2] = ACTIONS(961), + [anon_sym_STAR] = ACTIONS(963), [anon_sym_const] = ACTIONS(25), [anon_sym_restrict] = ACTIONS(25), [anon_sym_volatile] = ACTIONS(25), [anon_sym__Atomic] = ACTIONS(25), - [anon_sym_unsigned] = ACTIONS(223), - [anon_sym_long] = ACTIONS(223), - [anon_sym_short] = ACTIONS(223), - [sym_primitive_type] = ACTIONS(225), + [anon_sym_unsigned] = ACTIONS(221), + [anon_sym_long] = ACTIONS(221), + [anon_sym_short] = ACTIONS(221), + [sym_primitive_type] = ACTIONS(223), [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), - [anon_sym_AMP] = ACTIONS(972), - [anon_sym_BANG] = ACTIONS(974), - [anon_sym_TILDE] = ACTIONS(976), - [anon_sym_PLUS] = ACTIONS(978), - [anon_sym_DASH] = ACTIONS(978), - [anon_sym_DASH_DASH] = ACTIONS(980), - [anon_sym_PLUS_PLUS] = ACTIONS(980), - [anon_sym_sizeof] = ACTIONS(982), - [sym_number_literal] = ACTIONS(984), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(986), - [sym_false] = ACTIONS(986), - [sym_null] = ACTIONS(986), - [sym_identifier] = ACTIONS(988), + [anon_sym_AMP] = ACTIONS(963), + [anon_sym_BANG] = ACTIONS(965), + [anon_sym_TILDE] = ACTIONS(967), + [anon_sym_PLUS] = ACTIONS(969), + [anon_sym_DASH] = ACTIONS(969), + [anon_sym_DASH_DASH] = ACTIONS(971), + [anon_sym_PLUS_PLUS] = ACTIONS(971), + [anon_sym_sizeof] = ACTIONS(973), + [sym_number_literal] = ACTIONS(975), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(977), + [sym_false] = ACTIONS(977), + [sym_null] = ACTIONS(977), + [sym_identifier] = ACTIONS(979), [sym_comment] = ACTIONS(39), }, [415] = { @@ -17378,23 +17397,23 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(410), [sym_concatenated_string] = STATE(410), [sym_string_literal] = STATE(421), - [anon_sym_LPAREN2] = ACTIONS(996), - [anon_sym_STAR] = ACTIONS(998), - [anon_sym_AMP] = ACTIONS(998), - [anon_sym_BANG] = ACTIONS(1000), - [anon_sym_TILDE] = ACTIONS(1002), - [anon_sym_PLUS] = ACTIONS(1004), - [anon_sym_DASH] = ACTIONS(1004), - [anon_sym_DASH_DASH] = ACTIONS(1006), - [anon_sym_PLUS_PLUS] = ACTIONS(1006), - [anon_sym_sizeof] = ACTIONS(1008), - [sym_number_literal] = ACTIONS(990), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(992), - [sym_false] = ACTIONS(992), - [sym_null] = ACTIONS(992), - [sym_identifier] = ACTIONS(992), + [anon_sym_LPAREN2] = ACTIONS(987), + [anon_sym_STAR] = ACTIONS(989), + [anon_sym_AMP] = ACTIONS(989), + [anon_sym_BANG] = ACTIONS(991), + [anon_sym_TILDE] = ACTIONS(993), + [anon_sym_PLUS] = ACTIONS(995), + [anon_sym_DASH] = ACTIONS(995), + [anon_sym_DASH_DASH] = ACTIONS(997), + [anon_sym_PLUS_PLUS] = ACTIONS(997), + [anon_sym_sizeof] = ACTIONS(999), + [sym_number_literal] = ACTIONS(981), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(983), + [sym_false] = ACTIONS(983), + [sym_null] = ACTIONS(983), + [sym_identifier] = ACTIONS(983), [sym_comment] = ACTIONS(39), }, [416] = { @@ -17418,23 +17437,23 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(439), [sym_concatenated_string] = STATE(439), [sym_string_literal] = STATE(421), - [anon_sym_LPAREN2] = ACTIONS(996), - [anon_sym_STAR] = ACTIONS(998), - [anon_sym_AMP] = ACTIONS(998), - [anon_sym_BANG] = ACTIONS(1000), - [anon_sym_TILDE] = ACTIONS(1002), - [anon_sym_PLUS] = ACTIONS(1004), - [anon_sym_DASH] = ACTIONS(1004), - [anon_sym_DASH_DASH] = ACTIONS(1006), - [anon_sym_PLUS_PLUS] = ACTIONS(1006), - [anon_sym_sizeof] = ACTIONS(1008), - [sym_number_literal] = ACTIONS(1046), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1048), - [sym_false] = ACTIONS(1048), - [sym_null] = ACTIONS(1048), - [sym_identifier] = ACTIONS(1048), + [anon_sym_LPAREN2] = ACTIONS(987), + [anon_sym_STAR] = ACTIONS(989), + [anon_sym_AMP] = ACTIONS(989), + [anon_sym_BANG] = ACTIONS(991), + [anon_sym_TILDE] = ACTIONS(993), + [anon_sym_PLUS] = ACTIONS(995), + [anon_sym_DASH] = ACTIONS(995), + [anon_sym_DASH_DASH] = ACTIONS(997), + [anon_sym_PLUS_PLUS] = ACTIONS(997), + [anon_sym_sizeof] = ACTIONS(999), + [sym_number_literal] = ACTIONS(1037), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(1039), + [sym_false] = ACTIONS(1039), + [sym_null] = ACTIONS(1039), + [sym_identifier] = ACTIONS(1039), [sym_comment] = ACTIONS(39), }, [417] = { @@ -17458,23 +17477,23 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(440), [sym_concatenated_string] = STATE(440), [sym_string_literal] = STATE(421), - [anon_sym_LPAREN2] = ACTIONS(996), - [anon_sym_STAR] = ACTIONS(998), - [anon_sym_AMP] = ACTIONS(998), - [anon_sym_BANG] = ACTIONS(1000), - [anon_sym_TILDE] = ACTIONS(1002), - [anon_sym_PLUS] = ACTIONS(1004), - [anon_sym_DASH] = ACTIONS(1004), - [anon_sym_DASH_DASH] = ACTIONS(1006), - [anon_sym_PLUS_PLUS] = ACTIONS(1006), - [anon_sym_sizeof] = ACTIONS(1008), - [sym_number_literal] = ACTIONS(1050), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1052), - [sym_false] = ACTIONS(1052), - [sym_null] = ACTIONS(1052), - [sym_identifier] = ACTIONS(1052), + [anon_sym_LPAREN2] = ACTIONS(987), + [anon_sym_STAR] = ACTIONS(989), + [anon_sym_AMP] = ACTIONS(989), + [anon_sym_BANG] = ACTIONS(991), + [anon_sym_TILDE] = ACTIONS(993), + [anon_sym_PLUS] = ACTIONS(995), + [anon_sym_DASH] = ACTIONS(995), + [anon_sym_DASH_DASH] = ACTIONS(997), + [anon_sym_PLUS_PLUS] = ACTIONS(997), + [anon_sym_sizeof] = ACTIONS(999), + [sym_number_literal] = ACTIONS(1041), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(1043), + [sym_false] = ACTIONS(1043), + [sym_null] = ACTIONS(1043), + [sym_identifier] = ACTIONS(1043), [sym_comment] = ACTIONS(39), }, [418] = { @@ -17498,23 +17517,23 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(441), [sym_concatenated_string] = STATE(441), [sym_string_literal] = STATE(421), - [anon_sym_LPAREN2] = ACTIONS(996), - [anon_sym_STAR] = ACTIONS(998), - [anon_sym_AMP] = ACTIONS(998), - [anon_sym_BANG] = ACTIONS(1000), - [anon_sym_TILDE] = ACTIONS(1002), - [anon_sym_PLUS] = ACTIONS(1004), - [anon_sym_DASH] = ACTIONS(1004), - [anon_sym_DASH_DASH] = ACTIONS(1006), - [anon_sym_PLUS_PLUS] = ACTIONS(1006), - [anon_sym_sizeof] = ACTIONS(1008), - [sym_number_literal] = ACTIONS(1054), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1056), - [sym_false] = ACTIONS(1056), - [sym_null] = ACTIONS(1056), - [sym_identifier] = ACTIONS(1056), + [anon_sym_LPAREN2] = ACTIONS(987), + [anon_sym_STAR] = ACTIONS(989), + [anon_sym_AMP] = ACTIONS(989), + [anon_sym_BANG] = ACTIONS(991), + [anon_sym_TILDE] = ACTIONS(993), + [anon_sym_PLUS] = ACTIONS(995), + [anon_sym_DASH] = ACTIONS(995), + [anon_sym_DASH_DASH] = ACTIONS(997), + [anon_sym_PLUS_PLUS] = ACTIONS(997), + [anon_sym_sizeof] = ACTIONS(999), + [sym_number_literal] = ACTIONS(1045), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(1047), + [sym_false] = ACTIONS(1047), + [sym_null] = ACTIONS(1047), + [sym_identifier] = ACTIONS(1047), [sym_comment] = ACTIONS(39), }, [419] = { @@ -17538,106 +17557,106 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(693), [sym_concatenated_string] = STATE(693), [sym_string_literal] = STATE(421), - [anon_sym_LPAREN2] = ACTIONS(1614), - [anon_sym_STAR] = ACTIONS(998), - [anon_sym_AMP] = ACTIONS(998), - [anon_sym_BANG] = ACTIONS(1000), - [anon_sym_TILDE] = ACTIONS(1002), - [anon_sym_PLUS] = ACTIONS(1004), - [anon_sym_DASH] = ACTIONS(1004), - [anon_sym_DASH_DASH] = ACTIONS(1006), - [anon_sym_PLUS_PLUS] = ACTIONS(1006), - [anon_sym_sizeof] = ACTIONS(1008), - [sym_number_literal] = ACTIONS(1616), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1618), - [sym_false] = ACTIONS(1618), - [sym_null] = ACTIONS(1618), - [sym_identifier] = ACTIONS(1618), + [anon_sym_LPAREN2] = ACTIONS(1603), + [anon_sym_STAR] = ACTIONS(989), + [anon_sym_AMP] = ACTIONS(989), + [anon_sym_BANG] = ACTIONS(991), + [anon_sym_TILDE] = ACTIONS(993), + [anon_sym_PLUS] = ACTIONS(995), + [anon_sym_DASH] = ACTIONS(995), + [anon_sym_DASH_DASH] = ACTIONS(997), + [anon_sym_PLUS_PLUS] = ACTIONS(997), + [anon_sym_sizeof] = ACTIONS(999), + [sym_number_literal] = ACTIONS(1605), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(1607), + [sym_false] = ACTIONS(1607), + [sym_null] = ACTIONS(1607), + [sym_identifier] = ACTIONS(1607), [sym_comment] = ACTIONS(39), }, [420] = { [sym_argument_list] = STATE(465), - [anon_sym_LPAREN2] = ACTIONS(1096), - [anon_sym_STAR] = ACTIONS(1620), - [anon_sym_LBRACK] = ACTIONS(1100), - [anon_sym_EQ] = ACTIONS(1622), - [anon_sym_COLON] = ACTIONS(1624), - [anon_sym_QMARK] = ACTIONS(1626), - [anon_sym_STAR_EQ] = ACTIONS(1628), - [anon_sym_SLASH_EQ] = ACTIONS(1628), - [anon_sym_PERCENT_EQ] = ACTIONS(1628), - [anon_sym_PLUS_EQ] = ACTIONS(1628), - [anon_sym_DASH_EQ] = ACTIONS(1628), - [anon_sym_LT_LT_EQ] = ACTIONS(1628), - [anon_sym_GT_GT_EQ] = ACTIONS(1628), - [anon_sym_AMP_EQ] = ACTIONS(1628), - [anon_sym_CARET_EQ] = ACTIONS(1628), - [anon_sym_PIPE_EQ] = ACTIONS(1628), - [anon_sym_AMP] = ACTIONS(1630), - [anon_sym_PIPE_PIPE] = ACTIONS(1632), - [anon_sym_AMP_AMP] = ACTIONS(1634), - [anon_sym_PIPE] = ACTIONS(1636), - [anon_sym_CARET] = ACTIONS(1638), - [anon_sym_EQ_EQ] = ACTIONS(1640), - [anon_sym_BANG_EQ] = ACTIONS(1640), - [anon_sym_LT] = ACTIONS(1642), - [anon_sym_GT] = ACTIONS(1642), - [anon_sym_LT_EQ] = ACTIONS(1644), - [anon_sym_GT_EQ] = ACTIONS(1644), - [anon_sym_LT_LT] = ACTIONS(1646), - [anon_sym_GT_GT] = ACTIONS(1646), - [anon_sym_PLUS] = ACTIONS(1648), - [anon_sym_DASH] = ACTIONS(1648), - [anon_sym_SLASH] = ACTIONS(1620), - [anon_sym_PERCENT] = ACTIONS(1620), - [anon_sym_DASH_DASH] = ACTIONS(1128), - [anon_sym_PLUS_PLUS] = ACTIONS(1128), - [anon_sym_DOT] = ACTIONS(1130), - [anon_sym_DASH_GT] = ACTIONS(1130), + [anon_sym_LPAREN2] = ACTIONS(1089), + [anon_sym_STAR] = ACTIONS(1609), + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(1611), + [anon_sym_COLON] = ACTIONS(1613), + [anon_sym_QMARK] = ACTIONS(1615), + [anon_sym_STAR_EQ] = ACTIONS(1617), + [anon_sym_SLASH_EQ] = ACTIONS(1617), + [anon_sym_PERCENT_EQ] = ACTIONS(1617), + [anon_sym_PLUS_EQ] = ACTIONS(1617), + [anon_sym_DASH_EQ] = ACTIONS(1617), + [anon_sym_LT_LT_EQ] = ACTIONS(1617), + [anon_sym_GT_GT_EQ] = ACTIONS(1617), + [anon_sym_AMP_EQ] = ACTIONS(1617), + [anon_sym_CARET_EQ] = ACTIONS(1617), + [anon_sym_PIPE_EQ] = ACTIONS(1617), + [anon_sym_AMP] = ACTIONS(1619), + [anon_sym_PIPE_PIPE] = ACTIONS(1621), + [anon_sym_AMP_AMP] = ACTIONS(1623), + [anon_sym_PIPE] = ACTIONS(1625), + [anon_sym_CARET] = ACTIONS(1627), + [anon_sym_EQ_EQ] = ACTIONS(1629), + [anon_sym_BANG_EQ] = ACTIONS(1629), + [anon_sym_LT] = ACTIONS(1631), + [anon_sym_GT] = ACTIONS(1631), + [anon_sym_LT_EQ] = ACTIONS(1633), + [anon_sym_GT_EQ] = ACTIONS(1633), + [anon_sym_LT_LT] = ACTIONS(1635), + [anon_sym_GT_GT] = ACTIONS(1635), + [anon_sym_PLUS] = ACTIONS(1637), + [anon_sym_DASH] = ACTIONS(1637), + [anon_sym_SLASH] = ACTIONS(1609), + [anon_sym_PERCENT] = ACTIONS(1609), + [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_PLUS_PLUS] = ACTIONS(1121), + [anon_sym_DOT] = ACTIONS(1123), + [anon_sym_DASH_GT] = ACTIONS(1123), [sym_comment] = ACTIONS(39), }, [421] = { [sym_string_literal] = STATE(707), [aux_sym_concatenated_string_repeat1] = STATE(707), - [anon_sym_LPAREN2] = ACTIONS(1066), - [anon_sym_STAR] = ACTIONS(1078), - [anon_sym_LBRACK] = ACTIONS(1066), - [anon_sym_EQ] = ACTIONS(1078), - [anon_sym_COLON] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1066), - [anon_sym_STAR_EQ] = ACTIONS(1066), - [anon_sym_SLASH_EQ] = ACTIONS(1066), - [anon_sym_PERCENT_EQ] = ACTIONS(1066), - [anon_sym_PLUS_EQ] = ACTIONS(1066), - [anon_sym_DASH_EQ] = ACTIONS(1066), - [anon_sym_LT_LT_EQ] = ACTIONS(1066), - [anon_sym_GT_GT_EQ] = ACTIONS(1066), - [anon_sym_AMP_EQ] = ACTIONS(1066), - [anon_sym_CARET_EQ] = ACTIONS(1066), - [anon_sym_PIPE_EQ] = ACTIONS(1066), - [anon_sym_AMP] = ACTIONS(1078), - [anon_sym_PIPE_PIPE] = ACTIONS(1066), - [anon_sym_AMP_AMP] = ACTIONS(1066), - [anon_sym_PIPE] = ACTIONS(1078), - [anon_sym_CARET] = ACTIONS(1078), - [anon_sym_EQ_EQ] = ACTIONS(1066), - [anon_sym_BANG_EQ] = ACTIONS(1066), - [anon_sym_LT] = ACTIONS(1078), - [anon_sym_GT] = ACTIONS(1078), - [anon_sym_LT_EQ] = ACTIONS(1066), - [anon_sym_GT_EQ] = ACTIONS(1066), - [anon_sym_LT_LT] = ACTIONS(1078), - [anon_sym_GT_GT] = ACTIONS(1078), - [anon_sym_PLUS] = ACTIONS(1078), - [anon_sym_DASH] = ACTIONS(1078), - [anon_sym_SLASH] = ACTIONS(1078), - [anon_sym_PERCENT] = ACTIONS(1078), - [anon_sym_DASH_DASH] = ACTIONS(1066), - [anon_sym_PLUS_PLUS] = ACTIONS(1066), - [anon_sym_DOT] = ACTIONS(1066), - [anon_sym_DASH_GT] = ACTIONS(1066), + [anon_sym_LPAREN2] = ACTIONS(1059), + [anon_sym_STAR] = ACTIONS(1071), + [anon_sym_LBRACK] = ACTIONS(1059), + [anon_sym_EQ] = ACTIONS(1071), + [anon_sym_COLON] = ACTIONS(1059), + [anon_sym_QMARK] = ACTIONS(1059), + [anon_sym_STAR_EQ] = ACTIONS(1059), + [anon_sym_SLASH_EQ] = ACTIONS(1059), + [anon_sym_PERCENT_EQ] = ACTIONS(1059), + [anon_sym_PLUS_EQ] = ACTIONS(1059), + [anon_sym_DASH_EQ] = ACTIONS(1059), + [anon_sym_LT_LT_EQ] = ACTIONS(1059), + [anon_sym_GT_GT_EQ] = ACTIONS(1059), + [anon_sym_AMP_EQ] = ACTIONS(1059), + [anon_sym_CARET_EQ] = ACTIONS(1059), + [anon_sym_PIPE_EQ] = ACTIONS(1059), + [anon_sym_AMP] = ACTIONS(1071), + [anon_sym_PIPE_PIPE] = ACTIONS(1059), + [anon_sym_AMP_AMP] = ACTIONS(1059), + [anon_sym_PIPE] = ACTIONS(1071), + [anon_sym_CARET] = ACTIONS(1071), + [anon_sym_EQ_EQ] = ACTIONS(1059), + [anon_sym_BANG_EQ] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(1071), + [anon_sym_GT] = ACTIONS(1071), + [anon_sym_LT_EQ] = ACTIONS(1059), + [anon_sym_GT_EQ] = ACTIONS(1059), + [anon_sym_LT_LT] = ACTIONS(1071), + [anon_sym_GT_GT] = ACTIONS(1071), + [anon_sym_PLUS] = ACTIONS(1071), + [anon_sym_DASH] = ACTIONS(1071), + [anon_sym_SLASH] = ACTIONS(1071), + [anon_sym_PERCENT] = ACTIONS(1071), + [anon_sym_DASH_DASH] = ACTIONS(1059), + [anon_sym_PLUS_PLUS] = ACTIONS(1059), + [anon_sym_DOT] = ACTIONS(1059), + [anon_sym_DASH_GT] = ACTIONS(1059), [anon_sym_DQUOTE] = ACTIONS(41), [sym_comment] = ACTIONS(39), }, @@ -17689,12 +17708,12 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_macro_type_specifier] = STATE(95), [aux_sym__declaration_specifiers_repeat1] = STATE(96), [aux_sym_sized_type_specifier_repeat1] = STATE(97), - [anon_sym_SEMI] = ACTIONS(550), + [anon_sym_SEMI] = ACTIONS(546), [anon_sym_typedef] = ACTIONS(19), [anon_sym_extern] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(241), - [anon_sym_LPAREN2] = ACTIONS(554), - [anon_sym_STAR] = ACTIONS(556), + [anon_sym_LBRACE] = ACTIONS(239), + [anon_sym_LPAREN2] = ACTIONS(550), + [anon_sym_STAR] = ACTIONS(552), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -17703,39 +17722,39 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_restrict] = ACTIONS(25), [anon_sym_volatile] = ACTIONS(25), [anon_sym__Atomic] = ACTIONS(25), - [anon_sym_unsigned] = ACTIONS(177), - [anon_sym_long] = ACTIONS(177), - [anon_sym_short] = ACTIONS(177), - [sym_primitive_type] = ACTIONS(179), + [anon_sym_unsigned] = ACTIONS(175), + [anon_sym_long] = ACTIONS(175), + [anon_sym_short] = ACTIONS(175), + [sym_primitive_type] = ACTIONS(177), [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), - [anon_sym_if] = ACTIONS(558), - [anon_sym_switch] = ACTIONS(560), - [anon_sym_case] = ACTIONS(562), - [anon_sym_default] = ACTIONS(564), - [anon_sym_while] = ACTIONS(566), - [anon_sym_do] = ACTIONS(568), - [anon_sym_for] = ACTIONS(570), - [anon_sym_return] = ACTIONS(572), - [anon_sym_break] = ACTIONS(574), - [anon_sym_continue] = ACTIONS(576), - [anon_sym_goto] = ACTIONS(578), - [anon_sym_AMP] = ACTIONS(556), - [anon_sym_BANG] = ACTIONS(580), - [anon_sym_TILDE] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_DASH_DASH] = ACTIONS(586), - [anon_sym_PLUS_PLUS] = ACTIONS(586), - [anon_sym_sizeof] = ACTIONS(588), - [sym_number_literal] = ACTIONS(590), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(594), - [sym_false] = ACTIONS(594), - [sym_null] = ACTIONS(594), - [sym_identifier] = ACTIONS(1650), + [anon_sym_if] = ACTIONS(554), + [anon_sym_switch] = ACTIONS(556), + [anon_sym_case] = ACTIONS(558), + [anon_sym_default] = ACTIONS(560), + [anon_sym_while] = ACTIONS(562), + [anon_sym_do] = ACTIONS(564), + [anon_sym_for] = ACTIONS(566), + [anon_sym_return] = ACTIONS(568), + [anon_sym_break] = ACTIONS(570), + [anon_sym_continue] = ACTIONS(572), + [anon_sym_goto] = ACTIONS(574), + [anon_sym_AMP] = ACTIONS(552), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_TILDE] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(580), + [anon_sym_DASH] = ACTIONS(580), + [anon_sym_DASH_DASH] = ACTIONS(582), + [anon_sym_PLUS_PLUS] = ACTIONS(582), + [anon_sym_sizeof] = ACTIONS(584), + [sym_number_literal] = ACTIONS(586), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(590), + [sym_false] = ACTIONS(590), + [sym_null] = ACTIONS(590), + [sym_identifier] = ACTIONS(1639), [sym_comment] = ACTIONS(39), }, [423] = { @@ -17773,46 +17792,46 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(251), [sym_concatenated_string] = STATE(251), [sym_string_literal] = STATE(253), - [anon_sym_SEMI] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(241), - [anon_sym_LPAREN2] = ACTIONS(554), - [anon_sym_STAR] = ACTIONS(556), - [anon_sym_if] = ACTIONS(558), - [anon_sym_switch] = ACTIONS(560), - [anon_sym_case] = ACTIONS(562), - [anon_sym_default] = ACTIONS(564), - [anon_sym_while] = ACTIONS(566), - [anon_sym_do] = ACTIONS(568), - [anon_sym_for] = ACTIONS(570), - [anon_sym_return] = ACTIONS(572), - [anon_sym_break] = ACTIONS(574), - [anon_sym_continue] = ACTIONS(576), - [anon_sym_goto] = ACTIONS(578), - [anon_sym_AMP] = ACTIONS(556), - [anon_sym_BANG] = ACTIONS(580), - [anon_sym_TILDE] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_DASH_DASH] = ACTIONS(586), - [anon_sym_PLUS_PLUS] = ACTIONS(586), - [anon_sym_sizeof] = ACTIONS(588), - [sym_number_literal] = ACTIONS(590), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(594), - [sym_false] = ACTIONS(594), - [sym_null] = ACTIONS(594), - [sym_identifier] = ACTIONS(1612), + [anon_sym_SEMI] = ACTIONS(546), + [anon_sym_LBRACE] = ACTIONS(239), + [anon_sym_LPAREN2] = ACTIONS(550), + [anon_sym_STAR] = ACTIONS(552), + [anon_sym_if] = ACTIONS(554), + [anon_sym_switch] = ACTIONS(556), + [anon_sym_case] = ACTIONS(558), + [anon_sym_default] = ACTIONS(560), + [anon_sym_while] = ACTIONS(562), + [anon_sym_do] = ACTIONS(564), + [anon_sym_for] = ACTIONS(566), + [anon_sym_return] = ACTIONS(568), + [anon_sym_break] = ACTIONS(570), + [anon_sym_continue] = ACTIONS(572), + [anon_sym_goto] = ACTIONS(574), + [anon_sym_AMP] = ACTIONS(552), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_TILDE] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(580), + [anon_sym_DASH] = ACTIONS(580), + [anon_sym_DASH_DASH] = ACTIONS(582), + [anon_sym_PLUS_PLUS] = ACTIONS(582), + [anon_sym_sizeof] = ACTIONS(584), + [sym_number_literal] = ACTIONS(586), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(590), + [sym_false] = ACTIONS(590), + [sym_null] = ACTIONS(590), + [sym_identifier] = ACTIONS(1601), [sym_comment] = ACTIONS(39), }, [424] = { [sym_parenthesized_expression] = STATE(712), - [anon_sym_LPAREN2] = ACTIONS(994), + [anon_sym_LPAREN2] = ACTIONS(985), [sym_comment] = ACTIONS(39), }, [425] = { [sym_parenthesized_expression] = STATE(713), - [anon_sym_LPAREN2] = ACTIONS(994), + [anon_sym_LPAREN2] = ACTIONS(985), [sym_comment] = ACTIONS(39), }, [426] = { @@ -17836,32 +17855,32 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(714), [sym_concatenated_string] = STATE(714), [sym_string_literal] = STATE(421), - [anon_sym_LPAREN2] = ACTIONS(996), - [anon_sym_STAR] = ACTIONS(998), - [anon_sym_AMP] = ACTIONS(998), - [anon_sym_BANG] = ACTIONS(1000), - [anon_sym_TILDE] = ACTIONS(1002), - [anon_sym_PLUS] = ACTIONS(1004), - [anon_sym_DASH] = ACTIONS(1004), - [anon_sym_DASH_DASH] = ACTIONS(1006), - [anon_sym_PLUS_PLUS] = ACTIONS(1006), - [anon_sym_sizeof] = ACTIONS(1008), - [sym_number_literal] = ACTIONS(1652), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1654), - [sym_false] = ACTIONS(1654), - [sym_null] = ACTIONS(1654), - [sym_identifier] = ACTIONS(1654), + [anon_sym_LPAREN2] = ACTIONS(987), + [anon_sym_STAR] = ACTIONS(989), + [anon_sym_AMP] = ACTIONS(989), + [anon_sym_BANG] = ACTIONS(991), + [anon_sym_TILDE] = ACTIONS(993), + [anon_sym_PLUS] = ACTIONS(995), + [anon_sym_DASH] = ACTIONS(995), + [anon_sym_DASH_DASH] = ACTIONS(997), + [anon_sym_PLUS_PLUS] = ACTIONS(997), + [anon_sym_sizeof] = ACTIONS(999), + [sym_number_literal] = ACTIONS(1641), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(1643), + [sym_false] = ACTIONS(1643), + [sym_null] = ACTIONS(1643), + [sym_identifier] = ACTIONS(1643), [sym_comment] = ACTIONS(39), }, [427] = { - [anon_sym_COLON] = ACTIONS(1656), + [anon_sym_COLON] = ACTIONS(1645), [sym_comment] = ACTIONS(39), }, [428] = { [sym_parenthesized_expression] = STATE(716), - [anon_sym_LPAREN2] = ACTIONS(994), + [anon_sym_LPAREN2] = ACTIONS(985), [sym_comment] = ACTIONS(39), }, [429] = { @@ -17899,86 +17918,86 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(251), [sym_concatenated_string] = STATE(251), [sym_string_literal] = STATE(253), - [anon_sym_SEMI] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(241), - [anon_sym_LPAREN2] = ACTIONS(554), - [anon_sym_STAR] = ACTIONS(556), - [anon_sym_if] = ACTIONS(1016), - [anon_sym_switch] = ACTIONS(1018), - [anon_sym_case] = ACTIONS(1020), - [anon_sym_default] = ACTIONS(1022), - [anon_sym_while] = ACTIONS(1024), - [anon_sym_do] = ACTIONS(1026), - [anon_sym_for] = ACTIONS(1028), - [anon_sym_return] = ACTIONS(572), - [anon_sym_break] = ACTIONS(574), - [anon_sym_continue] = ACTIONS(576), - [anon_sym_goto] = ACTIONS(578), - [anon_sym_AMP] = ACTIONS(556), - [anon_sym_BANG] = ACTIONS(580), - [anon_sym_TILDE] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_DASH_DASH] = ACTIONS(586), - [anon_sym_PLUS_PLUS] = ACTIONS(586), - [anon_sym_sizeof] = ACTIONS(588), - [sym_number_literal] = ACTIONS(590), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(594), - [sym_false] = ACTIONS(594), - [sym_null] = ACTIONS(594), - [sym_identifier] = ACTIONS(1030), + [anon_sym_SEMI] = ACTIONS(546), + [anon_sym_LBRACE] = ACTIONS(239), + [anon_sym_LPAREN2] = ACTIONS(550), + [anon_sym_STAR] = ACTIONS(552), + [anon_sym_if] = ACTIONS(1007), + [anon_sym_switch] = ACTIONS(1009), + [anon_sym_case] = ACTIONS(1011), + [anon_sym_default] = ACTIONS(1013), + [anon_sym_while] = ACTIONS(1015), + [anon_sym_do] = ACTIONS(1017), + [anon_sym_for] = ACTIONS(1019), + [anon_sym_return] = ACTIONS(568), + [anon_sym_break] = ACTIONS(570), + [anon_sym_continue] = ACTIONS(572), + [anon_sym_goto] = ACTIONS(574), + [anon_sym_AMP] = ACTIONS(552), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_TILDE] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(580), + [anon_sym_DASH] = ACTIONS(580), + [anon_sym_DASH_DASH] = ACTIONS(582), + [anon_sym_PLUS_PLUS] = ACTIONS(582), + [anon_sym_sizeof] = ACTIONS(584), + [sym_number_literal] = ACTIONS(586), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(590), + [sym_false] = ACTIONS(590), + [sym_null] = ACTIONS(590), + [sym_identifier] = ACTIONS(1021), [sym_comment] = ACTIONS(39), }, [430] = { - [anon_sym_LPAREN2] = ACTIONS(1658), + [anon_sym_LPAREN2] = ACTIONS(1647), [sym_comment] = ACTIONS(39), }, [431] = { - [anon_sym_COMMA] = ACTIONS(1066), - [anon_sym_SEMI] = ACTIONS(1066), - [anon_sym_LPAREN2] = ACTIONS(1066), - [anon_sym_STAR] = ACTIONS(1078), - [anon_sym_LBRACK] = ACTIONS(1066), - [anon_sym_EQ] = ACTIONS(1078), - [anon_sym_COLON] = ACTIONS(1660), - [anon_sym_QMARK] = ACTIONS(1066), - [anon_sym_STAR_EQ] = ACTIONS(1066), - [anon_sym_SLASH_EQ] = ACTIONS(1066), - [anon_sym_PERCENT_EQ] = ACTIONS(1066), - [anon_sym_PLUS_EQ] = ACTIONS(1066), - [anon_sym_DASH_EQ] = ACTIONS(1066), - [anon_sym_LT_LT_EQ] = ACTIONS(1066), - [anon_sym_GT_GT_EQ] = ACTIONS(1066), - [anon_sym_AMP_EQ] = ACTIONS(1066), - [anon_sym_CARET_EQ] = ACTIONS(1066), - [anon_sym_PIPE_EQ] = ACTIONS(1066), - [anon_sym_AMP] = ACTIONS(1078), - [anon_sym_PIPE_PIPE] = ACTIONS(1066), - [anon_sym_AMP_AMP] = ACTIONS(1066), - [anon_sym_PIPE] = ACTIONS(1078), - [anon_sym_CARET] = ACTIONS(1078), - [anon_sym_EQ_EQ] = ACTIONS(1066), - [anon_sym_BANG_EQ] = ACTIONS(1066), - [anon_sym_LT] = ACTIONS(1078), - [anon_sym_GT] = ACTIONS(1078), - [anon_sym_LT_EQ] = ACTIONS(1066), - [anon_sym_GT_EQ] = ACTIONS(1066), - [anon_sym_LT_LT] = ACTIONS(1078), - [anon_sym_GT_GT] = ACTIONS(1078), - [anon_sym_PLUS] = ACTIONS(1078), - [anon_sym_DASH] = ACTIONS(1078), - [anon_sym_SLASH] = ACTIONS(1078), - [anon_sym_PERCENT] = ACTIONS(1078), - [anon_sym_DASH_DASH] = ACTIONS(1066), - [anon_sym_PLUS_PLUS] = ACTIONS(1066), - [anon_sym_DOT] = ACTIONS(1066), - [anon_sym_DASH_GT] = ACTIONS(1066), + [anon_sym_COMMA] = ACTIONS(1059), + [anon_sym_SEMI] = ACTIONS(1059), + [anon_sym_LPAREN2] = ACTIONS(1059), + [anon_sym_STAR] = ACTIONS(1071), + [anon_sym_LBRACK] = ACTIONS(1059), + [anon_sym_EQ] = ACTIONS(1071), + [anon_sym_COLON] = ACTIONS(1649), + [anon_sym_QMARK] = ACTIONS(1059), + [anon_sym_STAR_EQ] = ACTIONS(1059), + [anon_sym_SLASH_EQ] = ACTIONS(1059), + [anon_sym_PERCENT_EQ] = ACTIONS(1059), + [anon_sym_PLUS_EQ] = ACTIONS(1059), + [anon_sym_DASH_EQ] = ACTIONS(1059), + [anon_sym_LT_LT_EQ] = ACTIONS(1059), + [anon_sym_GT_GT_EQ] = ACTIONS(1059), + [anon_sym_AMP_EQ] = ACTIONS(1059), + [anon_sym_CARET_EQ] = ACTIONS(1059), + [anon_sym_PIPE_EQ] = ACTIONS(1059), + [anon_sym_AMP] = ACTIONS(1071), + [anon_sym_PIPE_PIPE] = ACTIONS(1059), + [anon_sym_AMP_AMP] = ACTIONS(1059), + [anon_sym_PIPE] = ACTIONS(1071), + [anon_sym_CARET] = ACTIONS(1071), + [anon_sym_EQ_EQ] = ACTIONS(1059), + [anon_sym_BANG_EQ] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(1071), + [anon_sym_GT] = ACTIONS(1071), + [anon_sym_LT_EQ] = ACTIONS(1059), + [anon_sym_GT_EQ] = ACTIONS(1059), + [anon_sym_LT_LT] = ACTIONS(1071), + [anon_sym_GT_GT] = ACTIONS(1071), + [anon_sym_PLUS] = ACTIONS(1071), + [anon_sym_DASH] = ACTIONS(1071), + [anon_sym_SLASH] = ACTIONS(1071), + [anon_sym_PERCENT] = ACTIONS(1071), + [anon_sym_DASH_DASH] = ACTIONS(1059), + [anon_sym_PLUS_PLUS] = ACTIONS(1059), + [anon_sym_DOT] = ACTIONS(1059), + [anon_sym_DASH_GT] = ACTIONS(1059), [sym_comment] = ACTIONS(39), }, [432] = { - [anon_sym_while] = ACTIONS(1662), + [anon_sym_while] = ACTIONS(1651), [sym_comment] = ACTIONS(39), }, [433] = { @@ -18014,10 +18033,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_macro_type_specifier] = STATE(95), [aux_sym__declaration_specifiers_repeat1] = STATE(96), [aux_sym_sized_type_specifier_repeat1] = STATE(97), - [anon_sym_SEMI] = ACTIONS(1664), + [anon_sym_SEMI] = ACTIONS(1653), [anon_sym_extern] = ACTIONS(23), - [anon_sym_LPAREN2] = ACTIONS(847), - [anon_sym_STAR] = ACTIONS(849), + [anon_sym_LPAREN2] = ACTIONS(838), + [anon_sym_STAR] = ACTIONS(840), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -18026,385 +18045,385 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_restrict] = ACTIONS(25), [anon_sym_volatile] = ACTIONS(25), [anon_sym__Atomic] = ACTIONS(25), - [anon_sym_unsigned] = ACTIONS(177), - [anon_sym_long] = ACTIONS(177), - [anon_sym_short] = ACTIONS(177), - [sym_primitive_type] = ACTIONS(179), + [anon_sym_unsigned] = ACTIONS(175), + [anon_sym_long] = ACTIONS(175), + [anon_sym_short] = ACTIONS(175), + [sym_primitive_type] = ACTIONS(177), [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), - [anon_sym_AMP] = ACTIONS(849), - [anon_sym_BANG] = ACTIONS(851), - [anon_sym_TILDE] = ACTIONS(853), - [anon_sym_PLUS] = ACTIONS(855), - [anon_sym_DASH] = ACTIONS(855), - [anon_sym_DASH_DASH] = ACTIONS(857), - [anon_sym_PLUS_PLUS] = ACTIONS(857), - [anon_sym_sizeof] = ACTIONS(859), - [sym_number_literal] = ACTIONS(1666), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1668), - [sym_false] = ACTIONS(1668), - [sym_null] = ACTIONS(1668), - [sym_identifier] = ACTIONS(1670), + [anon_sym_AMP] = ACTIONS(840), + [anon_sym_BANG] = ACTIONS(842), + [anon_sym_TILDE] = ACTIONS(844), + [anon_sym_PLUS] = ACTIONS(846), + [anon_sym_DASH] = ACTIONS(846), + [anon_sym_DASH_DASH] = ACTIONS(848), + [anon_sym_PLUS_PLUS] = ACTIONS(848), + [anon_sym_sizeof] = ACTIONS(850), + [sym_number_literal] = ACTIONS(1655), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(1657), + [sym_false] = ACTIONS(1657), + [sym_null] = ACTIONS(1657), + [sym_identifier] = ACTIONS(1659), [sym_comment] = ACTIONS(39), }, [434] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1672), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1672), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1672), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1672), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1672), - [sym_preproc_directive] = ACTIONS(1672), - [anon_sym_SEMI] = ACTIONS(1674), - [anon_sym_typedef] = ACTIONS(1672), - [anon_sym_extern] = ACTIONS(1672), - [anon_sym_LBRACE] = ACTIONS(1674), - [anon_sym_RBRACE] = ACTIONS(1674), - [anon_sym_LPAREN2] = ACTIONS(1674), - [anon_sym_STAR] = ACTIONS(1674), - [anon_sym_static] = ACTIONS(1672), - [anon_sym_auto] = ACTIONS(1672), - [anon_sym_register] = ACTIONS(1672), - [anon_sym_inline] = ACTIONS(1672), - [anon_sym_const] = ACTIONS(1672), - [anon_sym_restrict] = ACTIONS(1672), - [anon_sym_volatile] = ACTIONS(1672), - [anon_sym__Atomic] = ACTIONS(1672), - [anon_sym_unsigned] = ACTIONS(1672), - [anon_sym_long] = ACTIONS(1672), - [anon_sym_short] = ACTIONS(1672), - [sym_primitive_type] = ACTIONS(1672), - [anon_sym_enum] = ACTIONS(1672), - [anon_sym_struct] = ACTIONS(1672), - [anon_sym_union] = ACTIONS(1672), - [anon_sym_if] = ACTIONS(1672), - [anon_sym_else] = ACTIONS(1672), - [anon_sym_switch] = ACTIONS(1672), - [anon_sym_case] = ACTIONS(1672), - [anon_sym_default] = ACTIONS(1672), - [anon_sym_while] = ACTIONS(1672), - [anon_sym_do] = ACTIONS(1672), - [anon_sym_for] = ACTIONS(1672), - [anon_sym_return] = ACTIONS(1672), - [anon_sym_break] = ACTIONS(1672), - [anon_sym_continue] = ACTIONS(1672), - [anon_sym_goto] = ACTIONS(1672), - [anon_sym_AMP] = ACTIONS(1674), - [anon_sym_BANG] = ACTIONS(1674), - [anon_sym_TILDE] = ACTIONS(1674), - [anon_sym_PLUS] = ACTIONS(1672), - [anon_sym_DASH] = ACTIONS(1672), - [anon_sym_DASH_DASH] = ACTIONS(1674), - [anon_sym_PLUS_PLUS] = ACTIONS(1674), - [anon_sym_sizeof] = ACTIONS(1672), - [sym_number_literal] = ACTIONS(1674), - [anon_sym_SQUOTE] = ACTIONS(1674), - [anon_sym_DQUOTE] = ACTIONS(1674), - [sym_true] = ACTIONS(1672), - [sym_false] = ACTIONS(1672), - [sym_null] = ACTIONS(1672), - [sym_identifier] = ACTIONS(1672), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1661), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1661), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1661), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1661), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1661), + [sym_preproc_directive] = ACTIONS(1661), + [anon_sym_SEMI] = ACTIONS(1663), + [anon_sym_typedef] = ACTIONS(1661), + [anon_sym_extern] = ACTIONS(1661), + [anon_sym_LBRACE] = ACTIONS(1663), + [anon_sym_RBRACE] = ACTIONS(1663), + [anon_sym_LPAREN2] = ACTIONS(1663), + [anon_sym_STAR] = ACTIONS(1663), + [anon_sym_static] = ACTIONS(1661), + [anon_sym_auto] = ACTIONS(1661), + [anon_sym_register] = ACTIONS(1661), + [anon_sym_inline] = ACTIONS(1661), + [anon_sym_const] = ACTIONS(1661), + [anon_sym_restrict] = ACTIONS(1661), + [anon_sym_volatile] = ACTIONS(1661), + [anon_sym__Atomic] = ACTIONS(1661), + [anon_sym_unsigned] = ACTIONS(1661), + [anon_sym_long] = ACTIONS(1661), + [anon_sym_short] = ACTIONS(1661), + [sym_primitive_type] = ACTIONS(1661), + [anon_sym_enum] = ACTIONS(1661), + [anon_sym_struct] = ACTIONS(1661), + [anon_sym_union] = ACTIONS(1661), + [anon_sym_if] = ACTIONS(1661), + [anon_sym_else] = ACTIONS(1661), + [anon_sym_switch] = ACTIONS(1661), + [anon_sym_case] = ACTIONS(1661), + [anon_sym_default] = ACTIONS(1661), + [anon_sym_while] = ACTIONS(1661), + [anon_sym_do] = ACTIONS(1661), + [anon_sym_for] = ACTIONS(1661), + [anon_sym_return] = ACTIONS(1661), + [anon_sym_break] = ACTIONS(1661), + [anon_sym_continue] = ACTIONS(1661), + [anon_sym_goto] = ACTIONS(1661), + [anon_sym_AMP] = ACTIONS(1663), + [anon_sym_BANG] = ACTIONS(1663), + [anon_sym_TILDE] = ACTIONS(1663), + [anon_sym_PLUS] = ACTIONS(1661), + [anon_sym_DASH] = ACTIONS(1661), + [anon_sym_DASH_DASH] = ACTIONS(1663), + [anon_sym_PLUS_PLUS] = ACTIONS(1663), + [anon_sym_sizeof] = ACTIONS(1661), + [sym_number_literal] = ACTIONS(1663), + [anon_sym_SQUOTE] = ACTIONS(1663), + [anon_sym_DQUOTE] = ACTIONS(1663), + [sym_true] = ACTIONS(1661), + [sym_false] = ACTIONS(1661), + [sym_null] = ACTIONS(1661), + [sym_identifier] = ACTIONS(1661), [sym_comment] = ACTIONS(39), }, [435] = { [sym_argument_list] = STATE(465), - [anon_sym_SEMI] = ACTIONS(1676), - [anon_sym_LPAREN2] = ACTIONS(1096), - [anon_sym_STAR] = ACTIONS(1436), - [anon_sym_LBRACK] = ACTIONS(1100), - [anon_sym_EQ] = ACTIONS(1438), - [anon_sym_QMARK] = ACTIONS(1440), - [anon_sym_STAR_EQ] = ACTIONS(1442), - [anon_sym_SLASH_EQ] = ACTIONS(1442), - [anon_sym_PERCENT_EQ] = ACTIONS(1442), - [anon_sym_PLUS_EQ] = ACTIONS(1442), - [anon_sym_DASH_EQ] = ACTIONS(1442), - [anon_sym_LT_LT_EQ] = ACTIONS(1442), - [anon_sym_GT_GT_EQ] = ACTIONS(1442), - [anon_sym_AMP_EQ] = ACTIONS(1442), - [anon_sym_CARET_EQ] = ACTIONS(1442), - [anon_sym_PIPE_EQ] = ACTIONS(1442), - [anon_sym_AMP] = ACTIONS(1444), - [anon_sym_PIPE_PIPE] = ACTIONS(1446), - [anon_sym_AMP_AMP] = ACTIONS(1448), - [anon_sym_PIPE] = ACTIONS(1450), - [anon_sym_CARET] = ACTIONS(1452), - [anon_sym_EQ_EQ] = ACTIONS(1454), - [anon_sym_BANG_EQ] = ACTIONS(1454), - [anon_sym_LT] = ACTIONS(1456), - [anon_sym_GT] = ACTIONS(1456), - [anon_sym_LT_EQ] = ACTIONS(1458), - [anon_sym_GT_EQ] = ACTIONS(1458), - [anon_sym_LT_LT] = ACTIONS(1460), - [anon_sym_GT_GT] = ACTIONS(1460), - [anon_sym_PLUS] = ACTIONS(1462), - [anon_sym_DASH] = ACTIONS(1462), - [anon_sym_SLASH] = ACTIONS(1436), - [anon_sym_PERCENT] = ACTIONS(1436), - [anon_sym_DASH_DASH] = ACTIONS(1128), - [anon_sym_PLUS_PLUS] = ACTIONS(1128), - [anon_sym_DOT] = ACTIONS(1130), - [anon_sym_DASH_GT] = ACTIONS(1130), + [anon_sym_SEMI] = ACTIONS(1665), + [anon_sym_LPAREN2] = ACTIONS(1089), + [anon_sym_STAR] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(1429), + [anon_sym_QMARK] = ACTIONS(1431), + [anon_sym_STAR_EQ] = ACTIONS(1433), + [anon_sym_SLASH_EQ] = ACTIONS(1433), + [anon_sym_PERCENT_EQ] = ACTIONS(1433), + [anon_sym_PLUS_EQ] = ACTIONS(1433), + [anon_sym_DASH_EQ] = ACTIONS(1433), + [anon_sym_LT_LT_EQ] = ACTIONS(1433), + [anon_sym_GT_GT_EQ] = ACTIONS(1433), + [anon_sym_AMP_EQ] = ACTIONS(1433), + [anon_sym_CARET_EQ] = ACTIONS(1433), + [anon_sym_PIPE_EQ] = ACTIONS(1433), + [anon_sym_AMP] = ACTIONS(1435), + [anon_sym_PIPE_PIPE] = ACTIONS(1437), + [anon_sym_AMP_AMP] = ACTIONS(1439), + [anon_sym_PIPE] = ACTIONS(1441), + [anon_sym_CARET] = ACTIONS(1443), + [anon_sym_EQ_EQ] = ACTIONS(1445), + [anon_sym_BANG_EQ] = ACTIONS(1445), + [anon_sym_LT] = ACTIONS(1447), + [anon_sym_GT] = ACTIONS(1447), + [anon_sym_LT_EQ] = ACTIONS(1449), + [anon_sym_GT_EQ] = ACTIONS(1449), + [anon_sym_LT_LT] = ACTIONS(1451), + [anon_sym_GT_GT] = ACTIONS(1451), + [anon_sym_PLUS] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1453), + [anon_sym_SLASH] = ACTIONS(1427), + [anon_sym_PERCENT] = ACTIONS(1427), + [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_PLUS_PLUS] = ACTIONS(1121), + [anon_sym_DOT] = ACTIONS(1123), + [anon_sym_DASH_GT] = ACTIONS(1123), [sym_comment] = ACTIONS(39), }, [436] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1678), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1678), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1678), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1678), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1678), - [sym_preproc_directive] = ACTIONS(1678), - [anon_sym_SEMI] = ACTIONS(1680), - [anon_sym_typedef] = ACTIONS(1678), - [anon_sym_extern] = ACTIONS(1678), - [anon_sym_LBRACE] = ACTIONS(1680), - [anon_sym_RBRACE] = ACTIONS(1680), - [anon_sym_LPAREN2] = ACTIONS(1680), - [anon_sym_STAR] = ACTIONS(1680), - [anon_sym_static] = ACTIONS(1678), - [anon_sym_auto] = ACTIONS(1678), - [anon_sym_register] = ACTIONS(1678), - [anon_sym_inline] = ACTIONS(1678), - [anon_sym_const] = ACTIONS(1678), - [anon_sym_restrict] = ACTIONS(1678), - [anon_sym_volatile] = ACTIONS(1678), - [anon_sym__Atomic] = ACTIONS(1678), - [anon_sym_unsigned] = ACTIONS(1678), - [anon_sym_long] = ACTIONS(1678), - [anon_sym_short] = ACTIONS(1678), - [sym_primitive_type] = ACTIONS(1678), - [anon_sym_enum] = ACTIONS(1678), - [anon_sym_struct] = ACTIONS(1678), - [anon_sym_union] = ACTIONS(1678), - [anon_sym_if] = ACTIONS(1678), - [anon_sym_else] = ACTIONS(1678), - [anon_sym_switch] = ACTIONS(1678), - [anon_sym_case] = ACTIONS(1678), - [anon_sym_default] = ACTIONS(1678), - [anon_sym_while] = ACTIONS(1678), - [anon_sym_do] = ACTIONS(1678), - [anon_sym_for] = ACTIONS(1678), - [anon_sym_return] = ACTIONS(1678), - [anon_sym_break] = ACTIONS(1678), - [anon_sym_continue] = ACTIONS(1678), - [anon_sym_goto] = ACTIONS(1678), - [anon_sym_AMP] = ACTIONS(1680), - [anon_sym_BANG] = ACTIONS(1680), - [anon_sym_TILDE] = ACTIONS(1680), - [anon_sym_PLUS] = ACTIONS(1678), - [anon_sym_DASH] = ACTIONS(1678), - [anon_sym_DASH_DASH] = ACTIONS(1680), - [anon_sym_PLUS_PLUS] = ACTIONS(1680), - [anon_sym_sizeof] = ACTIONS(1678), - [sym_number_literal] = ACTIONS(1680), - [anon_sym_SQUOTE] = ACTIONS(1680), - [anon_sym_DQUOTE] = ACTIONS(1680), - [sym_true] = ACTIONS(1678), - [sym_false] = ACTIONS(1678), - [sym_null] = ACTIONS(1678), - [sym_identifier] = ACTIONS(1678), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1667), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1667), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1667), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1667), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1667), + [sym_preproc_directive] = ACTIONS(1667), + [anon_sym_SEMI] = ACTIONS(1669), + [anon_sym_typedef] = ACTIONS(1667), + [anon_sym_extern] = ACTIONS(1667), + [anon_sym_LBRACE] = ACTIONS(1669), + [anon_sym_RBRACE] = ACTIONS(1669), + [anon_sym_LPAREN2] = ACTIONS(1669), + [anon_sym_STAR] = ACTIONS(1669), + [anon_sym_static] = ACTIONS(1667), + [anon_sym_auto] = ACTIONS(1667), + [anon_sym_register] = ACTIONS(1667), + [anon_sym_inline] = ACTIONS(1667), + [anon_sym_const] = ACTIONS(1667), + [anon_sym_restrict] = ACTIONS(1667), + [anon_sym_volatile] = ACTIONS(1667), + [anon_sym__Atomic] = ACTIONS(1667), + [anon_sym_unsigned] = ACTIONS(1667), + [anon_sym_long] = ACTIONS(1667), + [anon_sym_short] = ACTIONS(1667), + [sym_primitive_type] = ACTIONS(1667), + [anon_sym_enum] = ACTIONS(1667), + [anon_sym_struct] = ACTIONS(1667), + [anon_sym_union] = ACTIONS(1667), + [anon_sym_if] = ACTIONS(1667), + [anon_sym_else] = ACTIONS(1667), + [anon_sym_switch] = ACTIONS(1667), + [anon_sym_case] = ACTIONS(1667), + [anon_sym_default] = ACTIONS(1667), + [anon_sym_while] = ACTIONS(1667), + [anon_sym_do] = ACTIONS(1667), + [anon_sym_for] = ACTIONS(1667), + [anon_sym_return] = ACTIONS(1667), + [anon_sym_break] = ACTIONS(1667), + [anon_sym_continue] = ACTIONS(1667), + [anon_sym_goto] = ACTIONS(1667), + [anon_sym_AMP] = ACTIONS(1669), + [anon_sym_BANG] = ACTIONS(1669), + [anon_sym_TILDE] = ACTIONS(1669), + [anon_sym_PLUS] = ACTIONS(1667), + [anon_sym_DASH] = ACTIONS(1667), + [anon_sym_DASH_DASH] = ACTIONS(1669), + [anon_sym_PLUS_PLUS] = ACTIONS(1669), + [anon_sym_sizeof] = ACTIONS(1667), + [sym_number_literal] = ACTIONS(1669), + [anon_sym_SQUOTE] = ACTIONS(1669), + [anon_sym_DQUOTE] = ACTIONS(1669), + [sym_true] = ACTIONS(1667), + [sym_false] = ACTIONS(1667), + [sym_null] = ACTIONS(1667), + [sym_identifier] = ACTIONS(1667), [sym_comment] = ACTIONS(39), }, [437] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1682), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1682), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1682), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1682), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1682), - [sym_preproc_directive] = ACTIONS(1682), - [anon_sym_SEMI] = ACTIONS(1684), - [anon_sym_typedef] = ACTIONS(1682), - [anon_sym_extern] = ACTIONS(1682), - [anon_sym_LBRACE] = ACTIONS(1684), - [anon_sym_RBRACE] = ACTIONS(1684), - [anon_sym_LPAREN2] = ACTIONS(1684), - [anon_sym_STAR] = ACTIONS(1684), - [anon_sym_static] = ACTIONS(1682), - [anon_sym_auto] = ACTIONS(1682), - [anon_sym_register] = ACTIONS(1682), - [anon_sym_inline] = ACTIONS(1682), - [anon_sym_const] = ACTIONS(1682), - [anon_sym_restrict] = ACTIONS(1682), - [anon_sym_volatile] = ACTIONS(1682), - [anon_sym__Atomic] = ACTIONS(1682), - [anon_sym_unsigned] = ACTIONS(1682), - [anon_sym_long] = ACTIONS(1682), - [anon_sym_short] = ACTIONS(1682), - [sym_primitive_type] = ACTIONS(1682), - [anon_sym_enum] = ACTIONS(1682), - [anon_sym_struct] = ACTIONS(1682), - [anon_sym_union] = ACTIONS(1682), - [anon_sym_if] = ACTIONS(1682), - [anon_sym_else] = ACTIONS(1682), - [anon_sym_switch] = ACTIONS(1682), - [anon_sym_case] = ACTIONS(1682), - [anon_sym_default] = ACTIONS(1682), - [anon_sym_while] = ACTIONS(1682), - [anon_sym_do] = ACTIONS(1682), - [anon_sym_for] = ACTIONS(1682), - [anon_sym_return] = ACTIONS(1682), - [anon_sym_break] = ACTIONS(1682), - [anon_sym_continue] = ACTIONS(1682), - [anon_sym_goto] = ACTIONS(1682), - [anon_sym_AMP] = ACTIONS(1684), - [anon_sym_BANG] = ACTIONS(1684), - [anon_sym_TILDE] = ACTIONS(1684), - [anon_sym_PLUS] = ACTIONS(1682), - [anon_sym_DASH] = ACTIONS(1682), - [anon_sym_DASH_DASH] = ACTIONS(1684), - [anon_sym_PLUS_PLUS] = ACTIONS(1684), - [anon_sym_sizeof] = ACTIONS(1682), - [sym_number_literal] = ACTIONS(1684), - [anon_sym_SQUOTE] = ACTIONS(1684), - [anon_sym_DQUOTE] = ACTIONS(1684), - [sym_true] = ACTIONS(1682), - [sym_false] = ACTIONS(1682), - [sym_null] = ACTIONS(1682), - [sym_identifier] = ACTIONS(1682), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1671), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1671), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1671), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1671), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1671), + [sym_preproc_directive] = ACTIONS(1671), + [anon_sym_SEMI] = ACTIONS(1673), + [anon_sym_typedef] = ACTIONS(1671), + [anon_sym_extern] = ACTIONS(1671), + [anon_sym_LBRACE] = ACTIONS(1673), + [anon_sym_RBRACE] = ACTIONS(1673), + [anon_sym_LPAREN2] = ACTIONS(1673), + [anon_sym_STAR] = ACTIONS(1673), + [anon_sym_static] = ACTIONS(1671), + [anon_sym_auto] = ACTIONS(1671), + [anon_sym_register] = ACTIONS(1671), + [anon_sym_inline] = ACTIONS(1671), + [anon_sym_const] = ACTIONS(1671), + [anon_sym_restrict] = ACTIONS(1671), + [anon_sym_volatile] = ACTIONS(1671), + [anon_sym__Atomic] = ACTIONS(1671), + [anon_sym_unsigned] = ACTIONS(1671), + [anon_sym_long] = ACTIONS(1671), + [anon_sym_short] = ACTIONS(1671), + [sym_primitive_type] = ACTIONS(1671), + [anon_sym_enum] = ACTIONS(1671), + [anon_sym_struct] = ACTIONS(1671), + [anon_sym_union] = ACTIONS(1671), + [anon_sym_if] = ACTIONS(1671), + [anon_sym_else] = ACTIONS(1671), + [anon_sym_switch] = ACTIONS(1671), + [anon_sym_case] = ACTIONS(1671), + [anon_sym_default] = ACTIONS(1671), + [anon_sym_while] = ACTIONS(1671), + [anon_sym_do] = ACTIONS(1671), + [anon_sym_for] = ACTIONS(1671), + [anon_sym_return] = ACTIONS(1671), + [anon_sym_break] = ACTIONS(1671), + [anon_sym_continue] = ACTIONS(1671), + [anon_sym_goto] = ACTIONS(1671), + [anon_sym_AMP] = ACTIONS(1673), + [anon_sym_BANG] = ACTIONS(1673), + [anon_sym_TILDE] = ACTIONS(1673), + [anon_sym_PLUS] = ACTIONS(1671), + [anon_sym_DASH] = ACTIONS(1671), + [anon_sym_DASH_DASH] = ACTIONS(1673), + [anon_sym_PLUS_PLUS] = ACTIONS(1673), + [anon_sym_sizeof] = ACTIONS(1671), + [sym_number_literal] = ACTIONS(1673), + [anon_sym_SQUOTE] = ACTIONS(1673), + [anon_sym_DQUOTE] = ACTIONS(1673), + [sym_true] = ACTIONS(1671), + [sym_false] = ACTIONS(1671), + [sym_null] = ACTIONS(1671), + [sym_identifier] = ACTIONS(1671), [sym_comment] = ACTIONS(39), }, [438] = { - [anon_sym_SEMI] = ACTIONS(1686), + [anon_sym_SEMI] = ACTIONS(1675), [sym_comment] = ACTIONS(39), }, [439] = { [sym_argument_list] = STATE(465), - [anon_sym_COMMA] = ACTIONS(1688), - [anon_sym_RPAREN] = ACTIONS(1688), - [anon_sym_SEMI] = ACTIONS(1688), - [anon_sym_RBRACE] = ACTIONS(1688), - [anon_sym_LPAREN2] = ACTIONS(1096), - [anon_sym_STAR] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(1100), - [anon_sym_RBRACK] = ACTIONS(1688), - [anon_sym_EQ] = ACTIONS(1690), - [anon_sym_COLON] = ACTIONS(1688), - [anon_sym_QMARK] = ACTIONS(1688), - [anon_sym_STAR_EQ] = ACTIONS(1688), - [anon_sym_SLASH_EQ] = ACTIONS(1688), - [anon_sym_PERCENT_EQ] = ACTIONS(1688), - [anon_sym_PLUS_EQ] = ACTIONS(1688), - [anon_sym_DASH_EQ] = ACTIONS(1688), - [anon_sym_LT_LT_EQ] = ACTIONS(1688), - [anon_sym_GT_GT_EQ] = ACTIONS(1688), - [anon_sym_AMP_EQ] = ACTIONS(1688), - [anon_sym_CARET_EQ] = ACTIONS(1688), - [anon_sym_PIPE_EQ] = ACTIONS(1688), - [anon_sym_AMP] = ACTIONS(1690), - [anon_sym_PIPE_PIPE] = ACTIONS(1688), - [anon_sym_AMP_AMP] = ACTIONS(1688), - [anon_sym_PIPE] = ACTIONS(1690), - [anon_sym_CARET] = ACTIONS(1690), - [anon_sym_EQ_EQ] = ACTIONS(1688), - [anon_sym_BANG_EQ] = ACTIONS(1688), - [anon_sym_LT] = ACTIONS(1690), - [anon_sym_GT] = ACTIONS(1690), - [anon_sym_LT_EQ] = ACTIONS(1688), - [anon_sym_GT_EQ] = ACTIONS(1688), - [anon_sym_LT_LT] = ACTIONS(1690), - [anon_sym_GT_GT] = ACTIONS(1690), - [anon_sym_PLUS] = ACTIONS(1690), - [anon_sym_DASH] = ACTIONS(1690), - [anon_sym_SLASH] = ACTIONS(1690), - [anon_sym_PERCENT] = ACTIONS(1690), - [anon_sym_DASH_DASH] = ACTIONS(1688), - [anon_sym_PLUS_PLUS] = ACTIONS(1688), - [anon_sym_DOT] = ACTIONS(1130), - [anon_sym_DASH_GT] = ACTIONS(1130), + [anon_sym_COMMA] = ACTIONS(1677), + [anon_sym_RPAREN] = ACTIONS(1677), + [anon_sym_SEMI] = ACTIONS(1677), + [anon_sym_RBRACE] = ACTIONS(1677), + [anon_sym_LPAREN2] = ACTIONS(1089), + [anon_sym_STAR] = ACTIONS(1679), + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_RBRACK] = ACTIONS(1677), + [anon_sym_EQ] = ACTIONS(1679), + [anon_sym_COLON] = ACTIONS(1677), + [anon_sym_QMARK] = ACTIONS(1677), + [anon_sym_STAR_EQ] = ACTIONS(1677), + [anon_sym_SLASH_EQ] = ACTIONS(1677), + [anon_sym_PERCENT_EQ] = ACTIONS(1677), + [anon_sym_PLUS_EQ] = ACTIONS(1677), + [anon_sym_DASH_EQ] = ACTIONS(1677), + [anon_sym_LT_LT_EQ] = ACTIONS(1677), + [anon_sym_GT_GT_EQ] = ACTIONS(1677), + [anon_sym_AMP_EQ] = ACTIONS(1677), + [anon_sym_CARET_EQ] = ACTIONS(1677), + [anon_sym_PIPE_EQ] = ACTIONS(1677), + [anon_sym_AMP] = ACTIONS(1679), + [anon_sym_PIPE_PIPE] = ACTIONS(1677), + [anon_sym_AMP_AMP] = ACTIONS(1677), + [anon_sym_PIPE] = ACTIONS(1679), + [anon_sym_CARET] = ACTIONS(1679), + [anon_sym_EQ_EQ] = ACTIONS(1677), + [anon_sym_BANG_EQ] = ACTIONS(1677), + [anon_sym_LT] = ACTIONS(1679), + [anon_sym_GT] = ACTIONS(1679), + [anon_sym_LT_EQ] = ACTIONS(1677), + [anon_sym_GT_EQ] = ACTIONS(1677), + [anon_sym_LT_LT] = ACTIONS(1679), + [anon_sym_GT_GT] = ACTIONS(1679), + [anon_sym_PLUS] = ACTIONS(1679), + [anon_sym_DASH] = ACTIONS(1679), + [anon_sym_SLASH] = ACTIONS(1679), + [anon_sym_PERCENT] = ACTIONS(1679), + [anon_sym_DASH_DASH] = ACTIONS(1677), + [anon_sym_PLUS_PLUS] = ACTIONS(1677), + [anon_sym_DOT] = ACTIONS(1123), + [anon_sym_DASH_GT] = ACTIONS(1123), [sym_comment] = ACTIONS(39), }, [440] = { [sym_argument_list] = STATE(465), - [anon_sym_COMMA] = ACTIONS(1692), - [anon_sym_RPAREN] = ACTIONS(1692), - [anon_sym_SEMI] = ACTIONS(1692), - [anon_sym_RBRACE] = ACTIONS(1692), - [anon_sym_LPAREN2] = ACTIONS(1096), - [anon_sym_STAR] = ACTIONS(1694), - [anon_sym_LBRACK] = ACTIONS(1100), - [anon_sym_RBRACK] = ACTIONS(1692), - [anon_sym_EQ] = ACTIONS(1694), - [anon_sym_COLON] = ACTIONS(1692), - [anon_sym_QMARK] = ACTIONS(1692), - [anon_sym_STAR_EQ] = ACTIONS(1692), - [anon_sym_SLASH_EQ] = ACTIONS(1692), - [anon_sym_PERCENT_EQ] = ACTIONS(1692), - [anon_sym_PLUS_EQ] = ACTIONS(1692), - [anon_sym_DASH_EQ] = ACTIONS(1692), - [anon_sym_LT_LT_EQ] = ACTIONS(1692), - [anon_sym_GT_GT_EQ] = ACTIONS(1692), - [anon_sym_AMP_EQ] = ACTIONS(1692), - [anon_sym_CARET_EQ] = ACTIONS(1692), - [anon_sym_PIPE_EQ] = ACTIONS(1692), - [anon_sym_AMP] = ACTIONS(1694), - [anon_sym_PIPE_PIPE] = ACTIONS(1692), - [anon_sym_AMP_AMP] = ACTIONS(1692), - [anon_sym_PIPE] = ACTIONS(1694), - [anon_sym_CARET] = ACTIONS(1694), - [anon_sym_EQ_EQ] = ACTIONS(1692), - [anon_sym_BANG_EQ] = ACTIONS(1692), - [anon_sym_LT] = ACTIONS(1694), - [anon_sym_GT] = ACTIONS(1694), - [anon_sym_LT_EQ] = ACTIONS(1692), - [anon_sym_GT_EQ] = ACTIONS(1692), - [anon_sym_LT_LT] = ACTIONS(1694), - [anon_sym_GT_GT] = ACTIONS(1694), - [anon_sym_PLUS] = ACTIONS(1694), - [anon_sym_DASH] = ACTIONS(1694), - [anon_sym_SLASH] = ACTIONS(1694), - [anon_sym_PERCENT] = ACTIONS(1694), - [anon_sym_DASH_DASH] = ACTIONS(1692), - [anon_sym_PLUS_PLUS] = ACTIONS(1692), - [anon_sym_DOT] = ACTIONS(1130), - [anon_sym_DASH_GT] = ACTIONS(1130), + [anon_sym_COMMA] = ACTIONS(1681), + [anon_sym_RPAREN] = ACTIONS(1681), + [anon_sym_SEMI] = ACTIONS(1681), + [anon_sym_RBRACE] = ACTIONS(1681), + [anon_sym_LPAREN2] = ACTIONS(1089), + [anon_sym_STAR] = ACTIONS(1683), + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_RBRACK] = ACTIONS(1681), + [anon_sym_EQ] = ACTIONS(1683), + [anon_sym_COLON] = ACTIONS(1681), + [anon_sym_QMARK] = ACTIONS(1681), + [anon_sym_STAR_EQ] = ACTIONS(1681), + [anon_sym_SLASH_EQ] = ACTIONS(1681), + [anon_sym_PERCENT_EQ] = ACTIONS(1681), + [anon_sym_PLUS_EQ] = ACTIONS(1681), + [anon_sym_DASH_EQ] = ACTIONS(1681), + [anon_sym_LT_LT_EQ] = ACTIONS(1681), + [anon_sym_GT_GT_EQ] = ACTIONS(1681), + [anon_sym_AMP_EQ] = ACTIONS(1681), + [anon_sym_CARET_EQ] = ACTIONS(1681), + [anon_sym_PIPE_EQ] = ACTIONS(1681), + [anon_sym_AMP] = ACTIONS(1683), + [anon_sym_PIPE_PIPE] = ACTIONS(1681), + [anon_sym_AMP_AMP] = ACTIONS(1681), + [anon_sym_PIPE] = ACTIONS(1683), + [anon_sym_CARET] = ACTIONS(1683), + [anon_sym_EQ_EQ] = ACTIONS(1681), + [anon_sym_BANG_EQ] = ACTIONS(1681), + [anon_sym_LT] = ACTIONS(1683), + [anon_sym_GT] = ACTIONS(1683), + [anon_sym_LT_EQ] = ACTIONS(1681), + [anon_sym_GT_EQ] = ACTIONS(1681), + [anon_sym_LT_LT] = ACTIONS(1683), + [anon_sym_GT_GT] = ACTIONS(1683), + [anon_sym_PLUS] = ACTIONS(1683), + [anon_sym_DASH] = ACTIONS(1683), + [anon_sym_SLASH] = ACTIONS(1683), + [anon_sym_PERCENT] = ACTIONS(1683), + [anon_sym_DASH_DASH] = ACTIONS(1681), + [anon_sym_PLUS_PLUS] = ACTIONS(1681), + [anon_sym_DOT] = ACTIONS(1123), + [anon_sym_DASH_GT] = ACTIONS(1123), [sym_comment] = ACTIONS(39), }, [441] = { [sym_argument_list] = STATE(465), - [anon_sym_COMMA] = ACTIONS(1696), - [anon_sym_RPAREN] = ACTIONS(1696), - [anon_sym_SEMI] = ACTIONS(1696), - [anon_sym_RBRACE] = ACTIONS(1696), - [anon_sym_LPAREN2] = ACTIONS(1096), - [anon_sym_STAR] = ACTIONS(1698), - [anon_sym_LBRACK] = ACTIONS(1100), - [anon_sym_RBRACK] = ACTIONS(1696), - [anon_sym_EQ] = ACTIONS(1698), - [anon_sym_COLON] = ACTIONS(1696), - [anon_sym_QMARK] = ACTIONS(1696), - [anon_sym_STAR_EQ] = ACTIONS(1696), - [anon_sym_SLASH_EQ] = ACTIONS(1696), - [anon_sym_PERCENT_EQ] = ACTIONS(1696), - [anon_sym_PLUS_EQ] = ACTIONS(1696), - [anon_sym_DASH_EQ] = ACTIONS(1696), - [anon_sym_LT_LT_EQ] = ACTIONS(1696), - [anon_sym_GT_GT_EQ] = ACTIONS(1696), - [anon_sym_AMP_EQ] = ACTIONS(1696), - [anon_sym_CARET_EQ] = ACTIONS(1696), - [anon_sym_PIPE_EQ] = ACTIONS(1696), - [anon_sym_AMP] = ACTIONS(1698), - [anon_sym_PIPE_PIPE] = ACTIONS(1696), - [anon_sym_AMP_AMP] = ACTIONS(1696), - [anon_sym_PIPE] = ACTIONS(1698), - [anon_sym_CARET] = ACTIONS(1698), - [anon_sym_EQ_EQ] = ACTIONS(1696), - [anon_sym_BANG_EQ] = ACTIONS(1696), - [anon_sym_LT] = ACTIONS(1698), - [anon_sym_GT] = ACTIONS(1698), - [anon_sym_LT_EQ] = ACTIONS(1696), - [anon_sym_GT_EQ] = ACTIONS(1696), - [anon_sym_LT_LT] = ACTIONS(1698), - [anon_sym_GT_GT] = ACTIONS(1698), - [anon_sym_PLUS] = ACTIONS(1698), - [anon_sym_DASH] = ACTIONS(1698), - [anon_sym_SLASH] = ACTIONS(1698), - [anon_sym_PERCENT] = ACTIONS(1698), - [anon_sym_DASH_DASH] = ACTIONS(1128), - [anon_sym_PLUS_PLUS] = ACTIONS(1128), - [anon_sym_DOT] = ACTIONS(1130), - [anon_sym_DASH_GT] = ACTIONS(1130), + [anon_sym_COMMA] = ACTIONS(1685), + [anon_sym_RPAREN] = ACTIONS(1685), + [anon_sym_SEMI] = ACTIONS(1685), + [anon_sym_RBRACE] = ACTIONS(1685), + [anon_sym_LPAREN2] = ACTIONS(1089), + [anon_sym_STAR] = ACTIONS(1687), + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_RBRACK] = ACTIONS(1685), + [anon_sym_EQ] = ACTIONS(1687), + [anon_sym_COLON] = ACTIONS(1685), + [anon_sym_QMARK] = ACTIONS(1685), + [anon_sym_STAR_EQ] = ACTIONS(1685), + [anon_sym_SLASH_EQ] = ACTIONS(1685), + [anon_sym_PERCENT_EQ] = ACTIONS(1685), + [anon_sym_PLUS_EQ] = ACTIONS(1685), + [anon_sym_DASH_EQ] = ACTIONS(1685), + [anon_sym_LT_LT_EQ] = ACTIONS(1685), + [anon_sym_GT_GT_EQ] = ACTIONS(1685), + [anon_sym_AMP_EQ] = ACTIONS(1685), + [anon_sym_CARET_EQ] = ACTIONS(1685), + [anon_sym_PIPE_EQ] = ACTIONS(1685), + [anon_sym_AMP] = ACTIONS(1687), + [anon_sym_PIPE_PIPE] = ACTIONS(1685), + [anon_sym_AMP_AMP] = ACTIONS(1685), + [anon_sym_PIPE] = ACTIONS(1687), + [anon_sym_CARET] = ACTIONS(1687), + [anon_sym_EQ_EQ] = ACTIONS(1685), + [anon_sym_BANG_EQ] = ACTIONS(1685), + [anon_sym_LT] = ACTIONS(1687), + [anon_sym_GT] = ACTIONS(1687), + [anon_sym_LT_EQ] = ACTIONS(1685), + [anon_sym_GT_EQ] = ACTIONS(1685), + [anon_sym_LT_LT] = ACTIONS(1687), + [anon_sym_GT_GT] = ACTIONS(1687), + [anon_sym_PLUS] = ACTIONS(1687), + [anon_sym_DASH] = ACTIONS(1687), + [anon_sym_SLASH] = ACTIONS(1687), + [anon_sym_PERCENT] = ACTIONS(1687), + [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_PLUS_PLUS] = ACTIONS(1121), + [anon_sym_DOT] = ACTIONS(1123), + [anon_sym_DASH_GT] = ACTIONS(1123), [sym_comment] = ACTIONS(39), }, [442] = { @@ -18439,80 +18458,80 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_macro_type_specifier] = STATE(116), [aux_sym_type_definition_repeat1] = STATE(118), [aux_sym_sized_type_specifier_repeat1] = STATE(119), - [anon_sym_LPAREN2] = ACTIONS(970), - [anon_sym_STAR] = ACTIONS(972), + [anon_sym_LPAREN2] = ACTIONS(961), + [anon_sym_STAR] = ACTIONS(963), [anon_sym_const] = ACTIONS(25), [anon_sym_restrict] = ACTIONS(25), [anon_sym_volatile] = ACTIONS(25), [anon_sym__Atomic] = ACTIONS(25), - [anon_sym_unsigned] = ACTIONS(223), - [anon_sym_long] = ACTIONS(223), - [anon_sym_short] = ACTIONS(223), - [sym_primitive_type] = ACTIONS(225), + [anon_sym_unsigned] = ACTIONS(221), + [anon_sym_long] = ACTIONS(221), + [anon_sym_short] = ACTIONS(221), + [sym_primitive_type] = ACTIONS(223), [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), - [anon_sym_AMP] = ACTIONS(972), - [anon_sym_BANG] = ACTIONS(974), - [anon_sym_TILDE] = ACTIONS(976), - [anon_sym_PLUS] = ACTIONS(978), - [anon_sym_DASH] = ACTIONS(978), - [anon_sym_DASH_DASH] = ACTIONS(980), - [anon_sym_PLUS_PLUS] = ACTIONS(980), - [anon_sym_sizeof] = ACTIONS(982), - [sym_number_literal] = ACTIONS(984), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(986), - [sym_false] = ACTIONS(986), - [sym_null] = ACTIONS(986), - [sym_identifier] = ACTIONS(988), + [anon_sym_AMP] = ACTIONS(963), + [anon_sym_BANG] = ACTIONS(965), + [anon_sym_TILDE] = ACTIONS(967), + [anon_sym_PLUS] = ACTIONS(969), + [anon_sym_DASH] = ACTIONS(969), + [anon_sym_DASH_DASH] = ACTIONS(971), + [anon_sym_PLUS_PLUS] = ACTIONS(971), + [anon_sym_sizeof] = ACTIONS(973), + [sym_number_literal] = ACTIONS(975), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(977), + [sym_false] = ACTIONS(977), + [sym_null] = ACTIONS(977), + [sym_identifier] = ACTIONS(979), [sym_comment] = ACTIONS(39), }, [443] = { [sym_argument_list] = STATE(465), - [anon_sym_COMMA] = ACTIONS(1700), - [anon_sym_SEMI] = ACTIONS(1700), - [anon_sym_LPAREN2] = ACTIONS(1096), - [anon_sym_STAR] = ACTIONS(1098), - [anon_sym_LBRACK] = ACTIONS(1100), - [anon_sym_EQ] = ACTIONS(1702), - [anon_sym_QMARK] = ACTIONS(1700), - [anon_sym_STAR_EQ] = ACTIONS(1700), - [anon_sym_SLASH_EQ] = ACTIONS(1700), - [anon_sym_PERCENT_EQ] = ACTIONS(1700), - [anon_sym_PLUS_EQ] = ACTIONS(1700), - [anon_sym_DASH_EQ] = ACTIONS(1700), - [anon_sym_LT_LT_EQ] = ACTIONS(1700), - [anon_sym_GT_GT_EQ] = ACTIONS(1700), - [anon_sym_AMP_EQ] = ACTIONS(1700), - [anon_sym_CARET_EQ] = ACTIONS(1700), - [anon_sym_PIPE_EQ] = ACTIONS(1700), - [anon_sym_AMP] = ACTIONS(1702), - [anon_sym_PIPE_PIPE] = ACTIONS(1700), - [anon_sym_AMP_AMP] = ACTIONS(1700), - [anon_sym_PIPE] = ACTIONS(1702), - [anon_sym_CARET] = ACTIONS(1702), - [anon_sym_EQ_EQ] = ACTIONS(1700), - [anon_sym_BANG_EQ] = ACTIONS(1700), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(1702), - [anon_sym_LT_EQ] = ACTIONS(1700), - [anon_sym_GT_EQ] = ACTIONS(1700), - [anon_sym_LT_LT] = ACTIONS(1124), - [anon_sym_GT_GT] = ACTIONS(1124), - [anon_sym_PLUS] = ACTIONS(1126), - [anon_sym_DASH] = ACTIONS(1126), - [anon_sym_SLASH] = ACTIONS(1098), - [anon_sym_PERCENT] = ACTIONS(1098), - [anon_sym_DASH_DASH] = ACTIONS(1128), - [anon_sym_PLUS_PLUS] = ACTIONS(1128), - [anon_sym_DOT] = ACTIONS(1130), - [anon_sym_DASH_GT] = ACTIONS(1130), + [anon_sym_COMMA] = ACTIONS(1689), + [anon_sym_SEMI] = ACTIONS(1689), + [anon_sym_LPAREN2] = ACTIONS(1089), + [anon_sym_STAR] = ACTIONS(1091), + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(1691), + [anon_sym_QMARK] = ACTIONS(1689), + [anon_sym_STAR_EQ] = ACTIONS(1689), + [anon_sym_SLASH_EQ] = ACTIONS(1689), + [anon_sym_PERCENT_EQ] = ACTIONS(1689), + [anon_sym_PLUS_EQ] = ACTIONS(1689), + [anon_sym_DASH_EQ] = ACTIONS(1689), + [anon_sym_LT_LT_EQ] = ACTIONS(1689), + [anon_sym_GT_GT_EQ] = ACTIONS(1689), + [anon_sym_AMP_EQ] = ACTIONS(1689), + [anon_sym_CARET_EQ] = ACTIONS(1689), + [anon_sym_PIPE_EQ] = ACTIONS(1689), + [anon_sym_AMP] = ACTIONS(1691), + [anon_sym_PIPE_PIPE] = ACTIONS(1689), + [anon_sym_AMP_AMP] = ACTIONS(1689), + [anon_sym_PIPE] = ACTIONS(1691), + [anon_sym_CARET] = ACTIONS(1691), + [anon_sym_EQ_EQ] = ACTIONS(1689), + [anon_sym_BANG_EQ] = ACTIONS(1689), + [anon_sym_LT] = ACTIONS(1691), + [anon_sym_GT] = ACTIONS(1691), + [anon_sym_LT_EQ] = ACTIONS(1689), + [anon_sym_GT_EQ] = ACTIONS(1689), + [anon_sym_LT_LT] = ACTIONS(1117), + [anon_sym_GT_GT] = ACTIONS(1117), + [anon_sym_PLUS] = ACTIONS(1119), + [anon_sym_DASH] = ACTIONS(1119), + [anon_sym_SLASH] = ACTIONS(1091), + [anon_sym_PERCENT] = ACTIONS(1091), + [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_PLUS_PLUS] = ACTIONS(1121), + [anon_sym_DOT] = ACTIONS(1123), + [anon_sym_DASH_GT] = ACTIONS(1123), [sym_comment] = ACTIONS(39), }, [444] = { - [anon_sym_SQUOTE] = ACTIONS(1704), + [anon_sym_SQUOTE] = ACTIONS(1693), [sym_comment] = ACTIONS(39), }, [445] = { @@ -18550,46 +18569,46 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(251), [sym_concatenated_string] = STATE(251), [sym_string_literal] = STATE(253), - [anon_sym_SEMI] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(241), - [anon_sym_LPAREN2] = ACTIONS(554), - [anon_sym_STAR] = ACTIONS(556), - [anon_sym_if] = ACTIONS(558), - [anon_sym_switch] = ACTIONS(560), - [anon_sym_case] = ACTIONS(562), - [anon_sym_default] = ACTIONS(564), - [anon_sym_while] = ACTIONS(566), - [anon_sym_do] = ACTIONS(568), - [anon_sym_for] = ACTIONS(570), - [anon_sym_return] = ACTIONS(572), - [anon_sym_break] = ACTIONS(574), - [anon_sym_continue] = ACTIONS(576), - [anon_sym_goto] = ACTIONS(578), - [anon_sym_AMP] = ACTIONS(556), - [anon_sym_BANG] = ACTIONS(580), - [anon_sym_TILDE] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_DASH_DASH] = ACTIONS(586), - [anon_sym_PLUS_PLUS] = ACTIONS(586), - [anon_sym_sizeof] = ACTIONS(588), - [sym_number_literal] = ACTIONS(590), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(594), - [sym_false] = ACTIONS(594), - [sym_null] = ACTIONS(594), - [sym_identifier] = ACTIONS(1612), + [anon_sym_SEMI] = ACTIONS(546), + [anon_sym_LBRACE] = ACTIONS(239), + [anon_sym_LPAREN2] = ACTIONS(550), + [anon_sym_STAR] = ACTIONS(552), + [anon_sym_if] = ACTIONS(554), + [anon_sym_switch] = ACTIONS(556), + [anon_sym_case] = ACTIONS(558), + [anon_sym_default] = ACTIONS(560), + [anon_sym_while] = ACTIONS(562), + [anon_sym_do] = ACTIONS(564), + [anon_sym_for] = ACTIONS(566), + [anon_sym_return] = ACTIONS(568), + [anon_sym_break] = ACTIONS(570), + [anon_sym_continue] = ACTIONS(572), + [anon_sym_goto] = ACTIONS(574), + [anon_sym_AMP] = ACTIONS(552), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_TILDE] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(580), + [anon_sym_DASH] = ACTIONS(580), + [anon_sym_DASH_DASH] = ACTIONS(582), + [anon_sym_PLUS_PLUS] = ACTIONS(582), + [anon_sym_sizeof] = ACTIONS(584), + [sym_number_literal] = ACTIONS(586), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(590), + [sym_false] = ACTIONS(590), + [sym_null] = ACTIONS(590), + [sym_identifier] = ACTIONS(1601), [sym_comment] = ACTIONS(39), }, [446] = { [sym_parameter_list] = STATE(131), [aux_sym_declaration_repeat1] = STATE(132), - [anon_sym_COMMA] = ACTIONS(237), - [anon_sym_SEMI] = ACTIONS(239), - [anon_sym_LPAREN2] = ACTIONS(243), - [anon_sym_LBRACK] = ACTIONS(245), - [anon_sym_EQ] = ACTIONS(247), + [anon_sym_COMMA] = ACTIONS(235), + [anon_sym_SEMI] = ACTIONS(237), + [anon_sym_LPAREN2] = ACTIONS(241), + [anon_sym_LBRACK] = ACTIONS(243), + [anon_sym_EQ] = ACTIONS(245), [sym_comment] = ACTIONS(39), }, [447] = { @@ -18614,81 +18633,81 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(729), [sym_concatenated_string] = STATE(729), [sym_string_literal] = STATE(253), - [anon_sym_LPAREN2] = ACTIONS(554), - [anon_sym_STAR] = ACTIONS(556), - [anon_sym_AMP] = ACTIONS(556), - [anon_sym_BANG] = ACTIONS(580), - [anon_sym_TILDE] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_DASH_DASH] = ACTIONS(586), - [anon_sym_PLUS_PLUS] = ACTIONS(586), - [anon_sym_sizeof] = ACTIONS(588), - [sym_number_literal] = ACTIONS(1706), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1708), - [sym_false] = ACTIONS(1708), - [sym_null] = ACTIONS(1708), - [sym_identifier] = ACTIONS(1708), + [anon_sym_LPAREN2] = ACTIONS(550), + [anon_sym_STAR] = ACTIONS(552), + [anon_sym_AMP] = ACTIONS(552), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_TILDE] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(580), + [anon_sym_DASH] = ACTIONS(580), + [anon_sym_DASH_DASH] = ACTIONS(582), + [anon_sym_PLUS_PLUS] = ACTIONS(582), + [anon_sym_sizeof] = ACTIONS(584), + [sym_number_literal] = ACTIONS(1695), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(1697), + [sym_false] = ACTIONS(1697), + [sym_null] = ACTIONS(1697), + [sym_identifier] = ACTIONS(1697), [sym_comment] = ACTIONS(39), }, [448] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1710), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1710), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1710), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1710), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1710), - [sym_preproc_directive] = ACTIONS(1710), - [anon_sym_SEMI] = ACTIONS(1712), - [anon_sym_typedef] = ACTIONS(1710), - [anon_sym_extern] = ACTIONS(1710), - [anon_sym_LBRACE] = ACTIONS(1712), - [anon_sym_RBRACE] = ACTIONS(1712), - [anon_sym_LPAREN2] = ACTIONS(1712), - [anon_sym_STAR] = ACTIONS(1712), - [anon_sym_static] = ACTIONS(1710), - [anon_sym_auto] = ACTIONS(1710), - [anon_sym_register] = ACTIONS(1710), - [anon_sym_inline] = ACTIONS(1710), - [anon_sym_const] = ACTIONS(1710), - [anon_sym_restrict] = ACTIONS(1710), - [anon_sym_volatile] = ACTIONS(1710), - [anon_sym__Atomic] = ACTIONS(1710), - [anon_sym_unsigned] = ACTIONS(1710), - [anon_sym_long] = ACTIONS(1710), - [anon_sym_short] = ACTIONS(1710), - [sym_primitive_type] = ACTIONS(1710), - [anon_sym_enum] = ACTIONS(1710), - [anon_sym_struct] = ACTIONS(1710), - [anon_sym_union] = ACTIONS(1710), - [anon_sym_if] = ACTIONS(1710), - [anon_sym_else] = ACTIONS(1710), - [anon_sym_switch] = ACTIONS(1710), - [anon_sym_case] = ACTIONS(1710), - [anon_sym_default] = ACTIONS(1710), - [anon_sym_while] = ACTIONS(1710), - [anon_sym_do] = ACTIONS(1710), - [anon_sym_for] = ACTIONS(1710), - [anon_sym_return] = ACTIONS(1710), - [anon_sym_break] = ACTIONS(1710), - [anon_sym_continue] = ACTIONS(1710), - [anon_sym_goto] = ACTIONS(1710), - [anon_sym_AMP] = ACTIONS(1712), - [anon_sym_BANG] = ACTIONS(1712), - [anon_sym_TILDE] = ACTIONS(1712), - [anon_sym_PLUS] = ACTIONS(1710), - [anon_sym_DASH] = ACTIONS(1710), - [anon_sym_DASH_DASH] = ACTIONS(1712), - [anon_sym_PLUS_PLUS] = ACTIONS(1712), - [anon_sym_sizeof] = ACTIONS(1710), - [sym_number_literal] = ACTIONS(1712), - [anon_sym_SQUOTE] = ACTIONS(1712), - [anon_sym_DQUOTE] = ACTIONS(1712), - [sym_true] = ACTIONS(1710), - [sym_false] = ACTIONS(1710), - [sym_null] = ACTIONS(1710), - [sym_identifier] = ACTIONS(1710), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1699), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1699), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1699), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1699), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1699), + [sym_preproc_directive] = ACTIONS(1699), + [anon_sym_SEMI] = ACTIONS(1701), + [anon_sym_typedef] = ACTIONS(1699), + [anon_sym_extern] = ACTIONS(1699), + [anon_sym_LBRACE] = ACTIONS(1701), + [anon_sym_RBRACE] = ACTIONS(1701), + [anon_sym_LPAREN2] = ACTIONS(1701), + [anon_sym_STAR] = ACTIONS(1701), + [anon_sym_static] = ACTIONS(1699), + [anon_sym_auto] = ACTIONS(1699), + [anon_sym_register] = ACTIONS(1699), + [anon_sym_inline] = ACTIONS(1699), + [anon_sym_const] = ACTIONS(1699), + [anon_sym_restrict] = ACTIONS(1699), + [anon_sym_volatile] = ACTIONS(1699), + [anon_sym__Atomic] = ACTIONS(1699), + [anon_sym_unsigned] = ACTIONS(1699), + [anon_sym_long] = ACTIONS(1699), + [anon_sym_short] = ACTIONS(1699), + [sym_primitive_type] = ACTIONS(1699), + [anon_sym_enum] = ACTIONS(1699), + [anon_sym_struct] = ACTIONS(1699), + [anon_sym_union] = ACTIONS(1699), + [anon_sym_if] = ACTIONS(1699), + [anon_sym_else] = ACTIONS(1699), + [anon_sym_switch] = ACTIONS(1699), + [anon_sym_case] = ACTIONS(1699), + [anon_sym_default] = ACTIONS(1699), + [anon_sym_while] = ACTIONS(1699), + [anon_sym_do] = ACTIONS(1699), + [anon_sym_for] = ACTIONS(1699), + [anon_sym_return] = ACTIONS(1699), + [anon_sym_break] = ACTIONS(1699), + [anon_sym_continue] = ACTIONS(1699), + [anon_sym_goto] = ACTIONS(1699), + [anon_sym_AMP] = ACTIONS(1701), + [anon_sym_BANG] = ACTIONS(1701), + [anon_sym_TILDE] = ACTIONS(1701), + [anon_sym_PLUS] = ACTIONS(1699), + [anon_sym_DASH] = ACTIONS(1699), + [anon_sym_DASH_DASH] = ACTIONS(1701), + [anon_sym_PLUS_PLUS] = ACTIONS(1701), + [anon_sym_sizeof] = ACTIONS(1699), + [sym_number_literal] = ACTIONS(1701), + [anon_sym_SQUOTE] = ACTIONS(1701), + [anon_sym_DQUOTE] = ACTIONS(1701), + [sym_true] = ACTIONS(1699), + [sym_false] = ACTIONS(1699), + [sym_null] = ACTIONS(1699), + [sym_identifier] = ACTIONS(1699), [sym_comment] = ACTIONS(39), }, [449] = { @@ -18712,24 +18731,24 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(732), [sym_concatenated_string] = STATE(732), [sym_string_literal] = STATE(409), - [anon_sym_RPAREN] = ACTIONS(1714), - [anon_sym_LPAREN2] = ACTIONS(970), - [anon_sym_STAR] = ACTIONS(972), - [anon_sym_AMP] = ACTIONS(972), - [anon_sym_BANG] = ACTIONS(974), - [anon_sym_TILDE] = ACTIONS(976), - [anon_sym_PLUS] = ACTIONS(978), - [anon_sym_DASH] = ACTIONS(978), - [anon_sym_DASH_DASH] = ACTIONS(980), - [anon_sym_PLUS_PLUS] = ACTIONS(980), - [anon_sym_sizeof] = ACTIONS(982), - [sym_number_literal] = ACTIONS(1716), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1718), - [sym_false] = ACTIONS(1718), - [sym_null] = ACTIONS(1718), - [sym_identifier] = ACTIONS(1718), + [anon_sym_RPAREN] = ACTIONS(1703), + [anon_sym_LPAREN2] = ACTIONS(961), + [anon_sym_STAR] = ACTIONS(963), + [anon_sym_AMP] = ACTIONS(963), + [anon_sym_BANG] = ACTIONS(965), + [anon_sym_TILDE] = ACTIONS(967), + [anon_sym_PLUS] = ACTIONS(969), + [anon_sym_DASH] = ACTIONS(969), + [anon_sym_DASH_DASH] = ACTIONS(971), + [anon_sym_PLUS_PLUS] = ACTIONS(971), + [anon_sym_sizeof] = ACTIONS(973), + [sym_number_literal] = ACTIONS(1705), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(1707), + [sym_false] = ACTIONS(1707), + [sym_null] = ACTIONS(1707), + [sym_identifier] = ACTIONS(1707), [sym_comment] = ACTIONS(39), }, [450] = { @@ -18753,23 +18772,23 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(733), [sym_concatenated_string] = STATE(733), [sym_string_literal] = STATE(253), - [anon_sym_LPAREN2] = ACTIONS(554), - [anon_sym_STAR] = ACTIONS(556), - [anon_sym_AMP] = ACTIONS(556), - [anon_sym_BANG] = ACTIONS(580), - [anon_sym_TILDE] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_DASH_DASH] = ACTIONS(586), - [anon_sym_PLUS_PLUS] = ACTIONS(586), - [anon_sym_sizeof] = ACTIONS(588), - [sym_number_literal] = ACTIONS(1720), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1722), - [sym_false] = ACTIONS(1722), - [sym_null] = ACTIONS(1722), - [sym_identifier] = ACTIONS(1722), + [anon_sym_LPAREN2] = ACTIONS(550), + [anon_sym_STAR] = ACTIONS(552), + [anon_sym_AMP] = ACTIONS(552), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_TILDE] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(580), + [anon_sym_DASH] = ACTIONS(580), + [anon_sym_DASH_DASH] = ACTIONS(582), + [anon_sym_PLUS_PLUS] = ACTIONS(582), + [anon_sym_sizeof] = ACTIONS(584), + [sym_number_literal] = ACTIONS(1709), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(1711), + [sym_false] = ACTIONS(1711), + [sym_null] = ACTIONS(1711), + [sym_identifier] = ACTIONS(1711), [sym_comment] = ACTIONS(39), }, [451] = { @@ -18793,23 +18812,23 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(734), [sym_concatenated_string] = STATE(734), [sym_string_literal] = STATE(272), - [anon_sym_LPAREN2] = ACTIONS(606), - [anon_sym_STAR] = ACTIONS(608), - [anon_sym_AMP] = ACTIONS(608), - [anon_sym_BANG] = ACTIONS(616), - [anon_sym_TILDE] = ACTIONS(618), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_DASH_DASH] = ACTIONS(622), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_sizeof] = ACTIONS(624), - [sym_number_literal] = ACTIONS(1724), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1726), - [sym_false] = ACTIONS(1726), - [sym_null] = ACTIONS(1726), - [sym_identifier] = ACTIONS(1726), + [anon_sym_LPAREN2] = ACTIONS(602), + [anon_sym_STAR] = ACTIONS(604), + [anon_sym_AMP] = ACTIONS(604), + [anon_sym_BANG] = ACTIONS(612), + [anon_sym_TILDE] = ACTIONS(614), + [anon_sym_PLUS] = ACTIONS(616), + [anon_sym_DASH] = ACTIONS(616), + [anon_sym_DASH_DASH] = ACTIONS(618), + [anon_sym_PLUS_PLUS] = ACTIONS(618), + [anon_sym_sizeof] = ACTIONS(620), + [sym_number_literal] = ACTIONS(1713), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(1715), + [sym_false] = ACTIONS(1715), + [sym_null] = ACTIONS(1715), + [sym_identifier] = ACTIONS(1715), [sym_comment] = ACTIONS(39), }, [452] = { @@ -18833,23 +18852,23 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(735), [sym_concatenated_string] = STATE(735), [sym_string_literal] = STATE(253), - [anon_sym_LPAREN2] = ACTIONS(554), - [anon_sym_STAR] = ACTIONS(556), - [anon_sym_AMP] = ACTIONS(556), - [anon_sym_BANG] = ACTIONS(580), - [anon_sym_TILDE] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_DASH_DASH] = ACTIONS(586), - [anon_sym_PLUS_PLUS] = ACTIONS(586), - [anon_sym_sizeof] = ACTIONS(588), - [sym_number_literal] = ACTIONS(1728), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1730), - [sym_false] = ACTIONS(1730), - [sym_null] = ACTIONS(1730), - [sym_identifier] = ACTIONS(1730), + [anon_sym_LPAREN2] = ACTIONS(550), + [anon_sym_STAR] = ACTIONS(552), + [anon_sym_AMP] = ACTIONS(552), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_TILDE] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(580), + [anon_sym_DASH] = ACTIONS(580), + [anon_sym_DASH_DASH] = ACTIONS(582), + [anon_sym_PLUS_PLUS] = ACTIONS(582), + [anon_sym_sizeof] = ACTIONS(584), + [sym_number_literal] = ACTIONS(1717), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(1719), + [sym_false] = ACTIONS(1719), + [sym_null] = ACTIONS(1719), + [sym_identifier] = ACTIONS(1719), [sym_comment] = ACTIONS(39), }, [453] = { @@ -18873,23 +18892,23 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(736), [sym_concatenated_string] = STATE(736), [sym_string_literal] = STATE(421), - [anon_sym_LPAREN2] = ACTIONS(996), - [anon_sym_STAR] = ACTIONS(998), - [anon_sym_AMP] = ACTIONS(998), - [anon_sym_BANG] = ACTIONS(1000), - [anon_sym_TILDE] = ACTIONS(1002), - [anon_sym_PLUS] = ACTIONS(1004), - [anon_sym_DASH] = ACTIONS(1004), - [anon_sym_DASH_DASH] = ACTIONS(1006), - [anon_sym_PLUS_PLUS] = ACTIONS(1006), - [anon_sym_sizeof] = ACTIONS(1008), - [sym_number_literal] = ACTIONS(1732), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1734), - [sym_false] = ACTIONS(1734), - [sym_null] = ACTIONS(1734), - [sym_identifier] = ACTIONS(1734), + [anon_sym_LPAREN2] = ACTIONS(987), + [anon_sym_STAR] = ACTIONS(989), + [anon_sym_AMP] = ACTIONS(989), + [anon_sym_BANG] = ACTIONS(991), + [anon_sym_TILDE] = ACTIONS(993), + [anon_sym_PLUS] = ACTIONS(995), + [anon_sym_DASH] = ACTIONS(995), + [anon_sym_DASH_DASH] = ACTIONS(997), + [anon_sym_PLUS_PLUS] = ACTIONS(997), + [anon_sym_sizeof] = ACTIONS(999), + [sym_number_literal] = ACTIONS(1721), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(1723), + [sym_false] = ACTIONS(1723), + [sym_null] = ACTIONS(1723), + [sym_identifier] = ACTIONS(1723), [sym_comment] = ACTIONS(39), }, [454] = { @@ -18913,23 +18932,23 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(737), [sym_concatenated_string] = STATE(737), [sym_string_literal] = STATE(253), - [anon_sym_LPAREN2] = ACTIONS(554), - [anon_sym_STAR] = ACTIONS(556), - [anon_sym_AMP] = ACTIONS(556), - [anon_sym_BANG] = ACTIONS(580), - [anon_sym_TILDE] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_DASH_DASH] = ACTIONS(586), - [anon_sym_PLUS_PLUS] = ACTIONS(586), - [anon_sym_sizeof] = ACTIONS(588), - [sym_number_literal] = ACTIONS(1736), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1738), - [sym_false] = ACTIONS(1738), - [sym_null] = ACTIONS(1738), - [sym_identifier] = ACTIONS(1738), + [anon_sym_LPAREN2] = ACTIONS(550), + [anon_sym_STAR] = ACTIONS(552), + [anon_sym_AMP] = ACTIONS(552), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_TILDE] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(580), + [anon_sym_DASH] = ACTIONS(580), + [anon_sym_DASH_DASH] = ACTIONS(582), + [anon_sym_PLUS_PLUS] = ACTIONS(582), + [anon_sym_sizeof] = ACTIONS(584), + [sym_number_literal] = ACTIONS(1725), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(1727), + [sym_false] = ACTIONS(1727), + [sym_null] = ACTIONS(1727), + [sym_identifier] = ACTIONS(1727), [sym_comment] = ACTIONS(39), }, [455] = { @@ -18953,23 +18972,23 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(738), [sym_concatenated_string] = STATE(738), [sym_string_literal] = STATE(253), - [anon_sym_LPAREN2] = ACTIONS(554), - [anon_sym_STAR] = ACTIONS(556), - [anon_sym_AMP] = ACTIONS(556), - [anon_sym_BANG] = ACTIONS(580), - [anon_sym_TILDE] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_DASH_DASH] = ACTIONS(586), - [anon_sym_PLUS_PLUS] = ACTIONS(586), - [anon_sym_sizeof] = ACTIONS(588), - [sym_number_literal] = ACTIONS(1740), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1742), - [sym_false] = ACTIONS(1742), - [sym_null] = ACTIONS(1742), - [sym_identifier] = ACTIONS(1742), + [anon_sym_LPAREN2] = ACTIONS(550), + [anon_sym_STAR] = ACTIONS(552), + [anon_sym_AMP] = ACTIONS(552), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_TILDE] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(580), + [anon_sym_DASH] = ACTIONS(580), + [anon_sym_DASH_DASH] = ACTIONS(582), + [anon_sym_PLUS_PLUS] = ACTIONS(582), + [anon_sym_sizeof] = ACTIONS(584), + [sym_number_literal] = ACTIONS(1729), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(1731), + [sym_false] = ACTIONS(1731), + [sym_null] = ACTIONS(1731), + [sym_identifier] = ACTIONS(1731), [sym_comment] = ACTIONS(39), }, [456] = { @@ -18993,23 +19012,23 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(739), [sym_concatenated_string] = STATE(739), [sym_string_literal] = STATE(253), - [anon_sym_LPAREN2] = ACTIONS(554), - [anon_sym_STAR] = ACTIONS(556), - [anon_sym_AMP] = ACTIONS(556), - [anon_sym_BANG] = ACTIONS(580), - [anon_sym_TILDE] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_DASH_DASH] = ACTIONS(586), - [anon_sym_PLUS_PLUS] = ACTIONS(586), - [anon_sym_sizeof] = ACTIONS(588), - [sym_number_literal] = ACTIONS(1744), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1746), - [sym_false] = ACTIONS(1746), - [sym_null] = ACTIONS(1746), - [sym_identifier] = ACTIONS(1746), + [anon_sym_LPAREN2] = ACTIONS(550), + [anon_sym_STAR] = ACTIONS(552), + [anon_sym_AMP] = ACTIONS(552), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_TILDE] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(580), + [anon_sym_DASH] = ACTIONS(580), + [anon_sym_DASH_DASH] = ACTIONS(582), + [anon_sym_PLUS_PLUS] = ACTIONS(582), + [anon_sym_sizeof] = ACTIONS(584), + [sym_number_literal] = ACTIONS(1733), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(1735), + [sym_false] = ACTIONS(1735), + [sym_null] = ACTIONS(1735), + [sym_identifier] = ACTIONS(1735), [sym_comment] = ACTIONS(39), }, [457] = { @@ -19033,23 +19052,23 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(740), [sym_concatenated_string] = STATE(740), [sym_string_literal] = STATE(253), - [anon_sym_LPAREN2] = ACTIONS(554), - [anon_sym_STAR] = ACTIONS(556), - [anon_sym_AMP] = ACTIONS(556), - [anon_sym_BANG] = ACTIONS(580), - [anon_sym_TILDE] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_DASH_DASH] = ACTIONS(586), - [anon_sym_PLUS_PLUS] = ACTIONS(586), - [anon_sym_sizeof] = ACTIONS(588), - [sym_number_literal] = ACTIONS(1748), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1750), - [sym_false] = ACTIONS(1750), - [sym_null] = ACTIONS(1750), - [sym_identifier] = ACTIONS(1750), + [anon_sym_LPAREN2] = ACTIONS(550), + [anon_sym_STAR] = ACTIONS(552), + [anon_sym_AMP] = ACTIONS(552), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_TILDE] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(580), + [anon_sym_DASH] = ACTIONS(580), + [anon_sym_DASH_DASH] = ACTIONS(582), + [anon_sym_PLUS_PLUS] = ACTIONS(582), + [anon_sym_sizeof] = ACTIONS(584), + [sym_number_literal] = ACTIONS(1737), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(1739), + [sym_false] = ACTIONS(1739), + [sym_null] = ACTIONS(1739), + [sym_identifier] = ACTIONS(1739), [sym_comment] = ACTIONS(39), }, [458] = { @@ -19073,23 +19092,23 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(741), [sym_concatenated_string] = STATE(741), [sym_string_literal] = STATE(253), - [anon_sym_LPAREN2] = ACTIONS(554), - [anon_sym_STAR] = ACTIONS(556), - [anon_sym_AMP] = ACTIONS(556), - [anon_sym_BANG] = ACTIONS(580), - [anon_sym_TILDE] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_DASH_DASH] = ACTIONS(586), - [anon_sym_PLUS_PLUS] = ACTIONS(586), - [anon_sym_sizeof] = ACTIONS(588), - [sym_number_literal] = ACTIONS(1752), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1754), - [sym_false] = ACTIONS(1754), - [sym_null] = ACTIONS(1754), - [sym_identifier] = ACTIONS(1754), + [anon_sym_LPAREN2] = ACTIONS(550), + [anon_sym_STAR] = ACTIONS(552), + [anon_sym_AMP] = ACTIONS(552), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_TILDE] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(580), + [anon_sym_DASH] = ACTIONS(580), + [anon_sym_DASH_DASH] = ACTIONS(582), + [anon_sym_PLUS_PLUS] = ACTIONS(582), + [anon_sym_sizeof] = ACTIONS(584), + [sym_number_literal] = ACTIONS(1741), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(1743), + [sym_false] = ACTIONS(1743), + [sym_null] = ACTIONS(1743), + [sym_identifier] = ACTIONS(1743), [sym_comment] = ACTIONS(39), }, [459] = { @@ -19113,23 +19132,23 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(742), [sym_concatenated_string] = STATE(742), [sym_string_literal] = STATE(253), - [anon_sym_LPAREN2] = ACTIONS(554), - [anon_sym_STAR] = ACTIONS(556), - [anon_sym_AMP] = ACTIONS(556), - [anon_sym_BANG] = ACTIONS(580), - [anon_sym_TILDE] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_DASH_DASH] = ACTIONS(586), - [anon_sym_PLUS_PLUS] = ACTIONS(586), - [anon_sym_sizeof] = ACTIONS(588), - [sym_number_literal] = ACTIONS(1756), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1758), - [sym_false] = ACTIONS(1758), - [sym_null] = ACTIONS(1758), - [sym_identifier] = ACTIONS(1758), + [anon_sym_LPAREN2] = ACTIONS(550), + [anon_sym_STAR] = ACTIONS(552), + [anon_sym_AMP] = ACTIONS(552), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_TILDE] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(580), + [anon_sym_DASH] = ACTIONS(580), + [anon_sym_DASH_DASH] = ACTIONS(582), + [anon_sym_PLUS_PLUS] = ACTIONS(582), + [anon_sym_sizeof] = ACTIONS(584), + [sym_number_literal] = ACTIONS(1745), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(1747), + [sym_false] = ACTIONS(1747), + [sym_null] = ACTIONS(1747), + [sym_identifier] = ACTIONS(1747), [sym_comment] = ACTIONS(39), }, [460] = { @@ -19153,23 +19172,23 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(743), [sym_concatenated_string] = STATE(743), [sym_string_literal] = STATE(253), - [anon_sym_LPAREN2] = ACTIONS(554), - [anon_sym_STAR] = ACTIONS(556), - [anon_sym_AMP] = ACTIONS(556), - [anon_sym_BANG] = ACTIONS(580), - [anon_sym_TILDE] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_DASH_DASH] = ACTIONS(586), - [anon_sym_PLUS_PLUS] = ACTIONS(586), - [anon_sym_sizeof] = ACTIONS(588), - [sym_number_literal] = ACTIONS(1760), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1762), - [sym_false] = ACTIONS(1762), - [sym_null] = ACTIONS(1762), - [sym_identifier] = ACTIONS(1762), + [anon_sym_LPAREN2] = ACTIONS(550), + [anon_sym_STAR] = ACTIONS(552), + [anon_sym_AMP] = ACTIONS(552), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_TILDE] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(580), + [anon_sym_DASH] = ACTIONS(580), + [anon_sym_DASH_DASH] = ACTIONS(582), + [anon_sym_PLUS_PLUS] = ACTIONS(582), + [anon_sym_sizeof] = ACTIONS(584), + [sym_number_literal] = ACTIONS(1749), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(1751), + [sym_false] = ACTIONS(1751), + [sym_null] = ACTIONS(1751), + [sym_identifier] = ACTIONS(1751), [sym_comment] = ACTIONS(39), }, [461] = { @@ -19193,23 +19212,23 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(744), [sym_concatenated_string] = STATE(744), [sym_string_literal] = STATE(253), - [anon_sym_LPAREN2] = ACTIONS(554), - [anon_sym_STAR] = ACTIONS(556), - [anon_sym_AMP] = ACTIONS(556), - [anon_sym_BANG] = ACTIONS(580), - [anon_sym_TILDE] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_DASH_DASH] = ACTIONS(586), - [anon_sym_PLUS_PLUS] = ACTIONS(586), - [anon_sym_sizeof] = ACTIONS(588), - [sym_number_literal] = ACTIONS(1764), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1766), - [sym_false] = ACTIONS(1766), - [sym_null] = ACTIONS(1766), - [sym_identifier] = ACTIONS(1766), + [anon_sym_LPAREN2] = ACTIONS(550), + [anon_sym_STAR] = ACTIONS(552), + [anon_sym_AMP] = ACTIONS(552), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_TILDE] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(580), + [anon_sym_DASH] = ACTIONS(580), + [anon_sym_DASH_DASH] = ACTIONS(582), + [anon_sym_PLUS_PLUS] = ACTIONS(582), + [anon_sym_sizeof] = ACTIONS(584), + [sym_number_literal] = ACTIONS(1753), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(1755), + [sym_false] = ACTIONS(1755), + [sym_null] = ACTIONS(1755), + [sym_identifier] = ACTIONS(1755), [sym_comment] = ACTIONS(39), }, [462] = { @@ -19233,220 +19252,220 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(745), [sym_concatenated_string] = STATE(745), [sym_string_literal] = STATE(253), - [anon_sym_LPAREN2] = ACTIONS(554), - [anon_sym_STAR] = ACTIONS(556), - [anon_sym_AMP] = ACTIONS(556), - [anon_sym_BANG] = ACTIONS(580), - [anon_sym_TILDE] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_DASH_DASH] = ACTIONS(586), - [anon_sym_PLUS_PLUS] = ACTIONS(586), - [anon_sym_sizeof] = ACTIONS(588), - [sym_number_literal] = ACTIONS(1768), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1770), - [sym_false] = ACTIONS(1770), - [sym_null] = ACTIONS(1770), - [sym_identifier] = ACTIONS(1770), + [anon_sym_LPAREN2] = ACTIONS(550), + [anon_sym_STAR] = ACTIONS(552), + [anon_sym_AMP] = ACTIONS(552), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_TILDE] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(580), + [anon_sym_DASH] = ACTIONS(580), + [anon_sym_DASH_DASH] = ACTIONS(582), + [anon_sym_PLUS_PLUS] = ACTIONS(582), + [anon_sym_sizeof] = ACTIONS(584), + [sym_number_literal] = ACTIONS(1757), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(1759), + [sym_false] = ACTIONS(1759), + [sym_null] = ACTIONS(1759), + [sym_identifier] = ACTIONS(1759), [sym_comment] = ACTIONS(39), }, [463] = { - [anon_sym_COMMA] = ACTIONS(1696), - [anon_sym_RPAREN] = ACTIONS(1696), - [anon_sym_SEMI] = ACTIONS(1696), - [anon_sym_RBRACE] = ACTIONS(1696), - [anon_sym_LPAREN2] = ACTIONS(1696), - [anon_sym_STAR] = ACTIONS(1698), - [anon_sym_LBRACK] = ACTIONS(1696), - [anon_sym_RBRACK] = ACTIONS(1696), - [anon_sym_EQ] = ACTIONS(1698), - [anon_sym_COLON] = ACTIONS(1696), - [anon_sym_QMARK] = ACTIONS(1696), - [anon_sym_STAR_EQ] = ACTIONS(1696), - [anon_sym_SLASH_EQ] = ACTIONS(1696), - [anon_sym_PERCENT_EQ] = ACTIONS(1696), - [anon_sym_PLUS_EQ] = ACTIONS(1696), - [anon_sym_DASH_EQ] = ACTIONS(1696), - [anon_sym_LT_LT_EQ] = ACTIONS(1696), - [anon_sym_GT_GT_EQ] = ACTIONS(1696), - [anon_sym_AMP_EQ] = ACTIONS(1696), - [anon_sym_CARET_EQ] = ACTIONS(1696), - [anon_sym_PIPE_EQ] = ACTIONS(1696), - [anon_sym_AMP] = ACTIONS(1698), - [anon_sym_PIPE_PIPE] = ACTIONS(1696), - [anon_sym_AMP_AMP] = ACTIONS(1696), - [anon_sym_PIPE] = ACTIONS(1698), - [anon_sym_CARET] = ACTIONS(1698), - [anon_sym_EQ_EQ] = ACTIONS(1696), - [anon_sym_BANG_EQ] = ACTIONS(1696), - [anon_sym_LT] = ACTIONS(1698), - [anon_sym_GT] = ACTIONS(1698), - [anon_sym_LT_EQ] = ACTIONS(1696), - [anon_sym_GT_EQ] = ACTIONS(1696), - [anon_sym_LT_LT] = ACTIONS(1698), - [anon_sym_GT_GT] = ACTIONS(1698), - [anon_sym_PLUS] = ACTIONS(1698), - [anon_sym_DASH] = ACTIONS(1698), - [anon_sym_SLASH] = ACTIONS(1698), - [anon_sym_PERCENT] = ACTIONS(1698), - [anon_sym_DASH_DASH] = ACTIONS(1696), - [anon_sym_PLUS_PLUS] = ACTIONS(1696), - [anon_sym_DOT] = ACTIONS(1696), - [anon_sym_DASH_GT] = ACTIONS(1696), + [anon_sym_COMMA] = ACTIONS(1685), + [anon_sym_RPAREN] = ACTIONS(1685), + [anon_sym_SEMI] = ACTIONS(1685), + [anon_sym_RBRACE] = ACTIONS(1685), + [anon_sym_LPAREN2] = ACTIONS(1685), + [anon_sym_STAR] = ACTIONS(1687), + [anon_sym_LBRACK] = ACTIONS(1685), + [anon_sym_RBRACK] = ACTIONS(1685), + [anon_sym_EQ] = ACTIONS(1687), + [anon_sym_COLON] = ACTIONS(1685), + [anon_sym_QMARK] = ACTIONS(1685), + [anon_sym_STAR_EQ] = ACTIONS(1685), + [anon_sym_SLASH_EQ] = ACTIONS(1685), + [anon_sym_PERCENT_EQ] = ACTIONS(1685), + [anon_sym_PLUS_EQ] = ACTIONS(1685), + [anon_sym_DASH_EQ] = ACTIONS(1685), + [anon_sym_LT_LT_EQ] = ACTIONS(1685), + [anon_sym_GT_GT_EQ] = ACTIONS(1685), + [anon_sym_AMP_EQ] = ACTIONS(1685), + [anon_sym_CARET_EQ] = ACTIONS(1685), + [anon_sym_PIPE_EQ] = ACTIONS(1685), + [anon_sym_AMP] = ACTIONS(1687), + [anon_sym_PIPE_PIPE] = ACTIONS(1685), + [anon_sym_AMP_AMP] = ACTIONS(1685), + [anon_sym_PIPE] = ACTIONS(1687), + [anon_sym_CARET] = ACTIONS(1687), + [anon_sym_EQ_EQ] = ACTIONS(1685), + [anon_sym_BANG_EQ] = ACTIONS(1685), + [anon_sym_LT] = ACTIONS(1687), + [anon_sym_GT] = ACTIONS(1687), + [anon_sym_LT_EQ] = ACTIONS(1685), + [anon_sym_GT_EQ] = ACTIONS(1685), + [anon_sym_LT_LT] = ACTIONS(1687), + [anon_sym_GT_GT] = ACTIONS(1687), + [anon_sym_PLUS] = ACTIONS(1687), + [anon_sym_DASH] = ACTIONS(1687), + [anon_sym_SLASH] = ACTIONS(1687), + [anon_sym_PERCENT] = ACTIONS(1687), + [anon_sym_DASH_DASH] = ACTIONS(1685), + [anon_sym_PLUS_PLUS] = ACTIONS(1685), + [anon_sym_DOT] = ACTIONS(1685), + [anon_sym_DASH_GT] = ACTIONS(1685), [sym_comment] = ACTIONS(39), }, [464] = { - [sym_identifier] = ACTIONS(1772), + [sym_identifier] = ACTIONS(1761), [sym_comment] = ACTIONS(39), }, [465] = { - [anon_sym_COMMA] = ACTIONS(1774), - [anon_sym_RPAREN] = ACTIONS(1774), - [anon_sym_SEMI] = ACTIONS(1774), - [anon_sym_RBRACE] = ACTIONS(1774), - [anon_sym_LPAREN2] = ACTIONS(1774), - [anon_sym_STAR] = ACTIONS(1776), - [anon_sym_LBRACK] = ACTIONS(1774), - [anon_sym_RBRACK] = ACTIONS(1774), - [anon_sym_EQ] = ACTIONS(1776), - [anon_sym_COLON] = ACTIONS(1774), - [anon_sym_QMARK] = ACTIONS(1774), - [anon_sym_STAR_EQ] = ACTIONS(1774), - [anon_sym_SLASH_EQ] = ACTIONS(1774), - [anon_sym_PERCENT_EQ] = ACTIONS(1774), - [anon_sym_PLUS_EQ] = ACTIONS(1774), - [anon_sym_DASH_EQ] = ACTIONS(1774), - [anon_sym_LT_LT_EQ] = ACTIONS(1774), - [anon_sym_GT_GT_EQ] = ACTIONS(1774), - [anon_sym_AMP_EQ] = ACTIONS(1774), - [anon_sym_CARET_EQ] = ACTIONS(1774), - [anon_sym_PIPE_EQ] = ACTIONS(1774), - [anon_sym_AMP] = ACTIONS(1776), - [anon_sym_PIPE_PIPE] = ACTIONS(1774), - [anon_sym_AMP_AMP] = ACTIONS(1774), - [anon_sym_PIPE] = ACTIONS(1776), - [anon_sym_CARET] = ACTIONS(1776), - [anon_sym_EQ_EQ] = ACTIONS(1774), - [anon_sym_BANG_EQ] = ACTIONS(1774), - [anon_sym_LT] = ACTIONS(1776), - [anon_sym_GT] = ACTIONS(1776), - [anon_sym_LT_EQ] = ACTIONS(1774), - [anon_sym_GT_EQ] = ACTIONS(1774), - [anon_sym_LT_LT] = ACTIONS(1776), - [anon_sym_GT_GT] = ACTIONS(1776), - [anon_sym_PLUS] = ACTIONS(1776), - [anon_sym_DASH] = ACTIONS(1776), - [anon_sym_SLASH] = ACTIONS(1776), - [anon_sym_PERCENT] = ACTIONS(1776), - [anon_sym_DASH_DASH] = ACTIONS(1774), - [anon_sym_PLUS_PLUS] = ACTIONS(1774), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_DASH_GT] = ACTIONS(1774), + [anon_sym_COMMA] = ACTIONS(1763), + [anon_sym_RPAREN] = ACTIONS(1763), + [anon_sym_SEMI] = ACTIONS(1763), + [anon_sym_RBRACE] = ACTIONS(1763), + [anon_sym_LPAREN2] = ACTIONS(1763), + [anon_sym_STAR] = ACTIONS(1765), + [anon_sym_LBRACK] = ACTIONS(1763), + [anon_sym_RBRACK] = ACTIONS(1763), + [anon_sym_EQ] = ACTIONS(1765), + [anon_sym_COLON] = ACTIONS(1763), + [anon_sym_QMARK] = ACTIONS(1763), + [anon_sym_STAR_EQ] = ACTIONS(1763), + [anon_sym_SLASH_EQ] = ACTIONS(1763), + [anon_sym_PERCENT_EQ] = ACTIONS(1763), + [anon_sym_PLUS_EQ] = ACTIONS(1763), + [anon_sym_DASH_EQ] = ACTIONS(1763), + [anon_sym_LT_LT_EQ] = ACTIONS(1763), + [anon_sym_GT_GT_EQ] = ACTIONS(1763), + [anon_sym_AMP_EQ] = ACTIONS(1763), + [anon_sym_CARET_EQ] = ACTIONS(1763), + [anon_sym_PIPE_EQ] = ACTIONS(1763), + [anon_sym_AMP] = ACTIONS(1765), + [anon_sym_PIPE_PIPE] = ACTIONS(1763), + [anon_sym_AMP_AMP] = ACTIONS(1763), + [anon_sym_PIPE] = ACTIONS(1765), + [anon_sym_CARET] = ACTIONS(1765), + [anon_sym_EQ_EQ] = ACTIONS(1763), + [anon_sym_BANG_EQ] = ACTIONS(1763), + [anon_sym_LT] = ACTIONS(1765), + [anon_sym_GT] = ACTIONS(1765), + [anon_sym_LT_EQ] = ACTIONS(1763), + [anon_sym_GT_EQ] = ACTIONS(1763), + [anon_sym_LT_LT] = ACTIONS(1765), + [anon_sym_GT_GT] = ACTIONS(1765), + [anon_sym_PLUS] = ACTIONS(1765), + [anon_sym_DASH] = ACTIONS(1765), + [anon_sym_SLASH] = ACTIONS(1765), + [anon_sym_PERCENT] = ACTIONS(1765), + [anon_sym_DASH_DASH] = ACTIONS(1763), + [anon_sym_PLUS_PLUS] = ACTIONS(1763), + [anon_sym_DOT] = ACTIONS(1763), + [anon_sym_DASH_GT] = ACTIONS(1763), [sym_comment] = ACTIONS(39), }, [466] = { [sym_string_literal] = STATE(747), [aux_sym_concatenated_string_repeat1] = STATE(747), - [anon_sym_COMMA] = ACTIONS(1778), - [anon_sym_SEMI] = ACTIONS(1778), - [anon_sym_LPAREN2] = ACTIONS(1778), - [anon_sym_STAR] = ACTIONS(1780), - [anon_sym_LBRACK] = ACTIONS(1778), - [anon_sym_EQ] = ACTIONS(1780), - [anon_sym_QMARK] = ACTIONS(1778), - [anon_sym_STAR_EQ] = ACTIONS(1778), - [anon_sym_SLASH_EQ] = ACTIONS(1778), - [anon_sym_PERCENT_EQ] = ACTIONS(1778), - [anon_sym_PLUS_EQ] = ACTIONS(1778), - [anon_sym_DASH_EQ] = ACTIONS(1778), - [anon_sym_LT_LT_EQ] = ACTIONS(1778), - [anon_sym_GT_GT_EQ] = ACTIONS(1778), - [anon_sym_AMP_EQ] = ACTIONS(1778), - [anon_sym_CARET_EQ] = ACTIONS(1778), - [anon_sym_PIPE_EQ] = ACTIONS(1778), - [anon_sym_AMP] = ACTIONS(1780), - [anon_sym_PIPE_PIPE] = ACTIONS(1778), - [anon_sym_AMP_AMP] = ACTIONS(1778), - [anon_sym_PIPE] = ACTIONS(1780), - [anon_sym_CARET] = ACTIONS(1780), - [anon_sym_EQ_EQ] = ACTIONS(1778), - [anon_sym_BANG_EQ] = ACTIONS(1778), - [anon_sym_LT] = ACTIONS(1780), - [anon_sym_GT] = ACTIONS(1780), - [anon_sym_LT_EQ] = ACTIONS(1778), - [anon_sym_GT_EQ] = ACTIONS(1778), - [anon_sym_LT_LT] = ACTIONS(1780), - [anon_sym_GT_GT] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(1780), - [anon_sym_DASH] = ACTIONS(1780), - [anon_sym_SLASH] = ACTIONS(1780), - [anon_sym_PERCENT] = ACTIONS(1780), - [anon_sym_DASH_DASH] = ACTIONS(1778), - [anon_sym_PLUS_PLUS] = ACTIONS(1778), - [anon_sym_DOT] = ACTIONS(1778), - [anon_sym_DASH_GT] = ACTIONS(1778), + [anon_sym_COMMA] = ACTIONS(1767), + [anon_sym_SEMI] = ACTIONS(1767), + [anon_sym_LPAREN2] = ACTIONS(1767), + [anon_sym_STAR] = ACTIONS(1769), + [anon_sym_LBRACK] = ACTIONS(1767), + [anon_sym_EQ] = ACTIONS(1769), + [anon_sym_QMARK] = ACTIONS(1767), + [anon_sym_STAR_EQ] = ACTIONS(1767), + [anon_sym_SLASH_EQ] = ACTIONS(1767), + [anon_sym_PERCENT_EQ] = ACTIONS(1767), + [anon_sym_PLUS_EQ] = ACTIONS(1767), + [anon_sym_DASH_EQ] = ACTIONS(1767), + [anon_sym_LT_LT_EQ] = ACTIONS(1767), + [anon_sym_GT_GT_EQ] = ACTIONS(1767), + [anon_sym_AMP_EQ] = ACTIONS(1767), + [anon_sym_CARET_EQ] = ACTIONS(1767), + [anon_sym_PIPE_EQ] = ACTIONS(1767), + [anon_sym_AMP] = ACTIONS(1769), + [anon_sym_PIPE_PIPE] = ACTIONS(1767), + [anon_sym_AMP_AMP] = ACTIONS(1767), + [anon_sym_PIPE] = ACTIONS(1769), + [anon_sym_CARET] = ACTIONS(1769), + [anon_sym_EQ_EQ] = ACTIONS(1767), + [anon_sym_BANG_EQ] = ACTIONS(1767), + [anon_sym_LT] = ACTIONS(1769), + [anon_sym_GT] = ACTIONS(1769), + [anon_sym_LT_EQ] = ACTIONS(1767), + [anon_sym_GT_EQ] = ACTIONS(1767), + [anon_sym_LT_LT] = ACTIONS(1769), + [anon_sym_GT_GT] = ACTIONS(1769), + [anon_sym_PLUS] = ACTIONS(1769), + [anon_sym_DASH] = ACTIONS(1769), + [anon_sym_SLASH] = ACTIONS(1769), + [anon_sym_PERCENT] = ACTIONS(1769), + [anon_sym_DASH_DASH] = ACTIONS(1767), + [anon_sym_PLUS_PLUS] = ACTIONS(1767), + [anon_sym_DOT] = ACTIONS(1767), + [anon_sym_DASH_GT] = ACTIONS(1767), [anon_sym_DQUOTE] = ACTIONS(41), [sym_comment] = ACTIONS(39), }, [467] = { - [ts_builtin_sym_end] = ACTIONS(1782), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1784), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1784), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1784), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1784), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1784), - [sym_preproc_directive] = ACTIONS(1784), - [anon_sym_SEMI] = ACTIONS(1782), - [anon_sym_typedef] = ACTIONS(1784), - [anon_sym_extern] = ACTIONS(1784), - [anon_sym_LBRACE] = ACTIONS(1782), - [anon_sym_RBRACE] = ACTIONS(1782), - [anon_sym_LPAREN2] = ACTIONS(1782), - [anon_sym_STAR] = ACTIONS(1782), - [anon_sym_static] = ACTIONS(1784), - [anon_sym_auto] = ACTIONS(1784), - [anon_sym_register] = ACTIONS(1784), - [anon_sym_inline] = ACTIONS(1784), - [anon_sym_const] = ACTIONS(1784), - [anon_sym_restrict] = ACTIONS(1784), - [anon_sym_volatile] = ACTIONS(1784), - [anon_sym__Atomic] = ACTIONS(1784), - [anon_sym_unsigned] = ACTIONS(1784), - [anon_sym_long] = ACTIONS(1784), - [anon_sym_short] = ACTIONS(1784), - [sym_primitive_type] = ACTIONS(1784), - [anon_sym_enum] = ACTIONS(1784), - [anon_sym_struct] = ACTIONS(1784), - [anon_sym_union] = ACTIONS(1784), - [anon_sym_if] = ACTIONS(1784), - [anon_sym_else] = ACTIONS(1784), - [anon_sym_switch] = ACTIONS(1784), - [anon_sym_case] = ACTIONS(1784), - [anon_sym_default] = ACTIONS(1784), - [anon_sym_while] = ACTIONS(1784), - [anon_sym_do] = ACTIONS(1784), - [anon_sym_for] = ACTIONS(1784), - [anon_sym_return] = ACTIONS(1784), - [anon_sym_break] = ACTIONS(1784), - [anon_sym_continue] = ACTIONS(1784), - [anon_sym_goto] = ACTIONS(1784), - [anon_sym_AMP] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(1782), - [anon_sym_TILDE] = ACTIONS(1782), - [anon_sym_PLUS] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1784), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_sizeof] = ACTIONS(1784), - [sym_number_literal] = ACTIONS(1782), - [anon_sym_SQUOTE] = ACTIONS(1782), - [anon_sym_DQUOTE] = ACTIONS(1782), - [sym_true] = ACTIONS(1784), - [sym_false] = ACTIONS(1784), - [sym_null] = ACTIONS(1784), - [sym_identifier] = ACTIONS(1784), + [ts_builtin_sym_end] = ACTIONS(1771), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1773), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1773), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1773), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1773), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1773), + [sym_preproc_directive] = ACTIONS(1773), + [anon_sym_SEMI] = ACTIONS(1771), + [anon_sym_typedef] = ACTIONS(1773), + [anon_sym_extern] = ACTIONS(1773), + [anon_sym_LBRACE] = ACTIONS(1771), + [anon_sym_RBRACE] = ACTIONS(1771), + [anon_sym_LPAREN2] = ACTIONS(1771), + [anon_sym_STAR] = ACTIONS(1771), + [anon_sym_static] = ACTIONS(1773), + [anon_sym_auto] = ACTIONS(1773), + [anon_sym_register] = ACTIONS(1773), + [anon_sym_inline] = ACTIONS(1773), + [anon_sym_const] = ACTIONS(1773), + [anon_sym_restrict] = ACTIONS(1773), + [anon_sym_volatile] = ACTIONS(1773), + [anon_sym__Atomic] = ACTIONS(1773), + [anon_sym_unsigned] = ACTIONS(1773), + [anon_sym_long] = ACTIONS(1773), + [anon_sym_short] = ACTIONS(1773), + [sym_primitive_type] = ACTIONS(1773), + [anon_sym_enum] = ACTIONS(1773), + [anon_sym_struct] = ACTIONS(1773), + [anon_sym_union] = ACTIONS(1773), + [anon_sym_if] = ACTIONS(1773), + [anon_sym_else] = ACTIONS(1773), + [anon_sym_switch] = ACTIONS(1773), + [anon_sym_case] = ACTIONS(1773), + [anon_sym_default] = ACTIONS(1773), + [anon_sym_while] = ACTIONS(1773), + [anon_sym_do] = ACTIONS(1773), + [anon_sym_for] = ACTIONS(1773), + [anon_sym_return] = ACTIONS(1773), + [anon_sym_break] = ACTIONS(1773), + [anon_sym_continue] = ACTIONS(1773), + [anon_sym_goto] = ACTIONS(1773), + [anon_sym_AMP] = ACTIONS(1771), + [anon_sym_BANG] = ACTIONS(1771), + [anon_sym_TILDE] = ACTIONS(1771), + [anon_sym_PLUS] = ACTIONS(1773), + [anon_sym_DASH] = ACTIONS(1773), + [anon_sym_DASH_DASH] = ACTIONS(1771), + [anon_sym_PLUS_PLUS] = ACTIONS(1771), + [anon_sym_sizeof] = ACTIONS(1773), + [sym_number_literal] = ACTIONS(1771), + [anon_sym_SQUOTE] = ACTIONS(1771), + [anon_sym_DQUOTE] = ACTIONS(1771), + [sym_true] = ACTIONS(1773), + [sym_false] = ACTIONS(1773), + [sym_null] = ACTIONS(1773), + [sym_identifier] = ACTIONS(1773), [sym_comment] = ACTIONS(39), }, [468] = { @@ -19505,60 +19524,60 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(468), [aux_sym__declaration_specifiers_repeat1] = STATE(20), [aux_sym_sized_type_specifier_repeat1] = STATE(21), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1786), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1789), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1792), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1795), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1798), - [sym_preproc_directive] = ACTIONS(1801), - [anon_sym_SEMI] = ACTIONS(1804), - [anon_sym_typedef] = ACTIONS(1807), - [anon_sym_extern] = ACTIONS(1810), - [anon_sym_LBRACE] = ACTIONS(1813), - [anon_sym_RBRACE] = ACTIONS(1816), - [anon_sym_LPAREN2] = ACTIONS(1818), - [anon_sym_STAR] = ACTIONS(1821), - [anon_sym_static] = ACTIONS(1810), - [anon_sym_auto] = ACTIONS(1810), - [anon_sym_register] = ACTIONS(1810), - [anon_sym_inline] = ACTIONS(1810), - [anon_sym_const] = ACTIONS(1824), - [anon_sym_restrict] = ACTIONS(1824), - [anon_sym_volatile] = ACTIONS(1824), - [anon_sym__Atomic] = ACTIONS(1824), - [anon_sym_unsigned] = ACTIONS(1827), - [anon_sym_long] = ACTIONS(1827), - [anon_sym_short] = ACTIONS(1827), - [sym_primitive_type] = ACTIONS(1830), - [anon_sym_enum] = ACTIONS(1833), - [anon_sym_struct] = ACTIONS(1836), - [anon_sym_union] = ACTIONS(1839), - [anon_sym_if] = ACTIONS(1842), - [anon_sym_switch] = ACTIONS(1845), - [anon_sym_case] = ACTIONS(1848), - [anon_sym_default] = ACTIONS(1851), - [anon_sym_while] = ACTIONS(1854), - [anon_sym_do] = ACTIONS(1857), - [anon_sym_for] = ACTIONS(1860), - [anon_sym_return] = ACTIONS(1863), - [anon_sym_break] = ACTIONS(1866), - [anon_sym_continue] = ACTIONS(1869), - [anon_sym_goto] = ACTIONS(1872), - [anon_sym_AMP] = ACTIONS(1821), - [anon_sym_BANG] = ACTIONS(1875), - [anon_sym_TILDE] = ACTIONS(1878), - [anon_sym_PLUS] = ACTIONS(1881), - [anon_sym_DASH] = ACTIONS(1881), - [anon_sym_DASH_DASH] = ACTIONS(1884), - [anon_sym_PLUS_PLUS] = ACTIONS(1884), - [anon_sym_sizeof] = ACTIONS(1887), - [sym_number_literal] = ACTIONS(1890), - [anon_sym_SQUOTE] = ACTIONS(1893), - [anon_sym_DQUOTE] = ACTIONS(1896), - [sym_true] = ACTIONS(1899), - [sym_false] = ACTIONS(1899), - [sym_null] = ACTIONS(1899), - [sym_identifier] = ACTIONS(1902), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1775), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1778), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1781), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1784), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1787), + [sym_preproc_directive] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(1793), + [anon_sym_typedef] = ACTIONS(1796), + [anon_sym_extern] = ACTIONS(1799), + [anon_sym_LBRACE] = ACTIONS(1802), + [anon_sym_RBRACE] = ACTIONS(1805), + [anon_sym_LPAREN2] = ACTIONS(1807), + [anon_sym_STAR] = ACTIONS(1810), + [anon_sym_static] = ACTIONS(1799), + [anon_sym_auto] = ACTIONS(1799), + [anon_sym_register] = ACTIONS(1799), + [anon_sym_inline] = ACTIONS(1799), + [anon_sym_const] = ACTIONS(1813), + [anon_sym_restrict] = ACTIONS(1813), + [anon_sym_volatile] = ACTIONS(1813), + [anon_sym__Atomic] = ACTIONS(1813), + [anon_sym_unsigned] = ACTIONS(1816), + [anon_sym_long] = ACTIONS(1816), + [anon_sym_short] = ACTIONS(1816), + [sym_primitive_type] = ACTIONS(1819), + [anon_sym_enum] = ACTIONS(1822), + [anon_sym_struct] = ACTIONS(1825), + [anon_sym_union] = ACTIONS(1828), + [anon_sym_if] = ACTIONS(1831), + [anon_sym_switch] = ACTIONS(1834), + [anon_sym_case] = ACTIONS(1837), + [anon_sym_default] = ACTIONS(1840), + [anon_sym_while] = ACTIONS(1843), + [anon_sym_do] = ACTIONS(1846), + [anon_sym_for] = ACTIONS(1849), + [anon_sym_return] = ACTIONS(1852), + [anon_sym_break] = ACTIONS(1855), + [anon_sym_continue] = ACTIONS(1858), + [anon_sym_goto] = ACTIONS(1861), + [anon_sym_AMP] = ACTIONS(1810), + [anon_sym_BANG] = ACTIONS(1864), + [anon_sym_TILDE] = ACTIONS(1867), + [anon_sym_PLUS] = ACTIONS(1870), + [anon_sym_DASH] = ACTIONS(1870), + [anon_sym_DASH_DASH] = ACTIONS(1873), + [anon_sym_PLUS_PLUS] = ACTIONS(1873), + [anon_sym_sizeof] = ACTIONS(1876), + [sym_number_literal] = ACTIONS(1879), + [anon_sym_SQUOTE] = ACTIONS(1882), + [anon_sym_DQUOTE] = ACTIONS(1885), + [sym_true] = ACTIONS(1888), + [sym_false] = ACTIONS(1888), + [sym_null] = ACTIONS(1888), + [sym_identifier] = ACTIONS(1891), [sym_comment] = ACTIONS(39), }, [469] = { @@ -19574,7 +19593,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_macro_type_specifier] = STATE(258), [aux_sym__declaration_specifiers_repeat1] = STATE(259), [aux_sym_sized_type_specifier_repeat1] = STATE(260), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1905), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1894), [anon_sym_extern] = ACTIONS(23), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), @@ -19584,10 +19603,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_restrict] = ACTIONS(25), [anon_sym_volatile] = ACTIONS(25), [anon_sym__Atomic] = ACTIONS(25), - [anon_sym_unsigned] = ACTIONS(602), - [anon_sym_long] = ACTIONS(602), - [anon_sym_short] = ACTIONS(602), - [sym_primitive_type] = ACTIONS(604), + [anon_sym_unsigned] = ACTIONS(598), + [anon_sym_long] = ACTIONS(598), + [anon_sym_short] = ACTIONS(598), + [sym_primitive_type] = ACTIONS(600), [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), @@ -19595,20 +19614,20 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(39), }, [470] = { - [anon_sym_COMMA] = ACTIONS(1907), - [anon_sym_RPAREN] = ACTIONS(1907), - [anon_sym_SEMI] = ACTIONS(1907), - [anon_sym_LBRACE] = ACTIONS(1907), - [anon_sym_LPAREN2] = ACTIONS(1907), - [anon_sym_LBRACK] = ACTIONS(1907), - [anon_sym_EQ] = ACTIONS(1907), - [anon_sym_COLON] = ACTIONS(1907), + [anon_sym_COMMA] = ACTIONS(1896), + [anon_sym_RPAREN] = ACTIONS(1896), + [anon_sym_SEMI] = ACTIONS(1896), + [anon_sym_LBRACE] = ACTIONS(1896), + [anon_sym_LPAREN2] = ACTIONS(1896), + [anon_sym_LBRACK] = ACTIONS(1896), + [anon_sym_EQ] = ACTIONS(1896), + [anon_sym_COLON] = ACTIONS(1896), [sym_comment] = ACTIONS(39), }, [471] = { [aux_sym_parameter_list_repeat1] = STATE(750), - [anon_sym_COMMA] = ACTIONS(1134), - [anon_sym_RPAREN] = ACTIONS(1909), + [anon_sym_COMMA] = ACTIONS(1127), + [anon_sym_RPAREN] = ACTIONS(1898), [sym_comment] = ACTIONS(39), }, [472] = { @@ -19633,12 +19652,12 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_macro_type_specifier] = STATE(258), [aux_sym__declaration_specifiers_repeat1] = STATE(259), [aux_sym_sized_type_specifier_repeat1] = STATE(260), - [anon_sym_DOT_DOT_DOT] = ACTIONS(598), - [anon_sym_RPAREN] = ACTIONS(600), + [anon_sym_DOT_DOT_DOT] = ACTIONS(594), + [anon_sym_RPAREN] = ACTIONS(596), [anon_sym_extern] = ACTIONS(23), - [anon_sym_LPAREN2] = ACTIONS(1142), - [anon_sym_STAR] = ACTIONS(1911), - [anon_sym_LBRACK] = ACTIONS(518), + [anon_sym_LPAREN2] = ACTIONS(1135), + [anon_sym_STAR] = ACTIONS(1900), + [anon_sym_LBRACK] = ACTIONS(514), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -19647,14 +19666,14 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_restrict] = ACTIONS(25), [anon_sym_volatile] = ACTIONS(25), [anon_sym__Atomic] = ACTIONS(25), - [anon_sym_unsigned] = ACTIONS(602), - [anon_sym_long] = ACTIONS(602), - [anon_sym_short] = ACTIONS(602), - [sym_primitive_type] = ACTIONS(604), + [anon_sym_unsigned] = ACTIONS(598), + [anon_sym_long] = ACTIONS(598), + [anon_sym_short] = ACTIONS(598), + [sym_primitive_type] = ACTIONS(600), [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), - [sym_identifier] = ACTIONS(1913), + [sym_identifier] = ACTIONS(1902), [sym_comment] = ACTIONS(39), }, [473] = { @@ -19669,44 +19688,44 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_type_qualifier] = STATE(753), [sym_parameter_list] = STATE(212), [aux_sym_type_definition_repeat1] = STATE(753), - [anon_sym_COMMA] = ACTIONS(923), - [anon_sym_RPAREN] = ACTIONS(923), - [anon_sym_LPAREN2] = ACTIONS(1142), - [anon_sym_STAR] = ACTIONS(1144), - [anon_sym_LBRACK] = ACTIONS(518), + [anon_sym_COMMA] = ACTIONS(914), + [anon_sym_RPAREN] = ACTIONS(914), + [anon_sym_LPAREN2] = ACTIONS(1135), + [anon_sym_STAR] = ACTIONS(1137), + [anon_sym_LBRACK] = ACTIONS(514), [anon_sym_const] = ACTIONS(25), [anon_sym_restrict] = ACTIONS(25), [anon_sym_volatile] = ACTIONS(25), [anon_sym__Atomic] = ACTIONS(25), - [sym_identifier] = ACTIONS(235), + [sym_identifier] = ACTIONS(233), [sym_comment] = ACTIONS(39), }, [474] = { [sym_parameter_list] = STATE(131), - [anon_sym_COMMA] = ACTIONS(1915), - [anon_sym_RPAREN] = ACTIONS(1915), - [anon_sym_LPAREN2] = ACTIONS(243), - [anon_sym_LBRACK] = ACTIONS(245), + [anon_sym_COMMA] = ACTIONS(1904), + [anon_sym_RPAREN] = ACTIONS(1904), + [anon_sym_LPAREN2] = ACTIONS(241), + [anon_sym_LBRACK] = ACTIONS(243), [sym_comment] = ACTIONS(39), }, [475] = { [sym_parameter_list] = STATE(392), - [anon_sym_COMMA] = ACTIONS(1915), - [anon_sym_RPAREN] = ACTIONS(1915), - [anon_sym_LPAREN2] = ACTIONS(243), - [anon_sym_LBRACK] = ACTIONS(935), + [anon_sym_COMMA] = ACTIONS(1904), + [anon_sym_RPAREN] = ACTIONS(1904), + [anon_sym_LPAREN2] = ACTIONS(241), + [anon_sym_LBRACK] = ACTIONS(926), [sym_comment] = ACTIONS(39), }, [476] = { [sym_storage_class_specifier] = STATE(754), [sym_type_qualifier] = STATE(754), [aux_sym__declaration_specifiers_repeat1] = STATE(754), - [anon_sym_COMMA] = ACTIONS(249), - [anon_sym_RPAREN] = ACTIONS(249), + [anon_sym_COMMA] = ACTIONS(247), + [anon_sym_RPAREN] = ACTIONS(247), [anon_sym_extern] = ACTIONS(23), - [anon_sym_LPAREN2] = ACTIONS(249), - [anon_sym_STAR] = ACTIONS(249), - [anon_sym_LBRACK] = ACTIONS(249), + [anon_sym_LPAREN2] = ACTIONS(247), + [anon_sym_STAR] = ACTIONS(247), + [anon_sym_LBRACK] = ACTIONS(247), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -19715,19 +19734,19 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_restrict] = ACTIONS(25), [anon_sym_volatile] = ACTIONS(25), [anon_sym__Atomic] = ACTIONS(25), - [sym_identifier] = ACTIONS(251), + [sym_identifier] = ACTIONS(249), [sym_comment] = ACTIONS(39), }, [477] = { [sym_storage_class_specifier] = STATE(755), [sym_type_qualifier] = STATE(755), [aux_sym__declaration_specifiers_repeat1] = STATE(755), - [anon_sym_COMMA] = ACTIONS(249), - [anon_sym_RPAREN] = ACTIONS(249), + [anon_sym_COMMA] = ACTIONS(247), + [anon_sym_RPAREN] = ACTIONS(247), [anon_sym_extern] = ACTIONS(23), - [anon_sym_LPAREN2] = ACTIONS(249), - [anon_sym_STAR] = ACTIONS(249), - [anon_sym_LBRACK] = ACTIONS(249), + [anon_sym_LPAREN2] = ACTIONS(247), + [anon_sym_STAR] = ACTIONS(247), + [anon_sym_LBRACK] = ACTIONS(247), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -19736,34 +19755,34 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_restrict] = ACTIONS(25), [anon_sym_volatile] = ACTIONS(25), [anon_sym__Atomic] = ACTIONS(25), - [sym_identifier] = ACTIONS(251), + [sym_identifier] = ACTIONS(249), [sym_comment] = ACTIONS(39), }, [478] = { [aux_sym_sized_type_specifier_repeat1] = STATE(478), - [anon_sym_COMMA] = ACTIONS(319), - [anon_sym_RPAREN] = ACTIONS(319), - [anon_sym_extern] = ACTIONS(321), - [anon_sym_LPAREN2] = ACTIONS(319), - [anon_sym_STAR] = ACTIONS(319), - [anon_sym_LBRACK] = ACTIONS(319), - [anon_sym_static] = ACTIONS(321), - [anon_sym_auto] = ACTIONS(321), - [anon_sym_register] = ACTIONS(321), - [anon_sym_inline] = ACTIONS(321), - [anon_sym_const] = ACTIONS(321), - [anon_sym_restrict] = ACTIONS(321), - [anon_sym_volatile] = ACTIONS(321), - [anon_sym__Atomic] = ACTIONS(321), - [anon_sym_unsigned] = ACTIONS(1917), - [anon_sym_long] = ACTIONS(1917), - [anon_sym_short] = ACTIONS(1917), - [sym_primitive_type] = ACTIONS(321), - [sym_identifier] = ACTIONS(321), + [anon_sym_COMMA] = ACTIONS(317), + [anon_sym_RPAREN] = ACTIONS(317), + [anon_sym_extern] = ACTIONS(319), + [anon_sym_LPAREN2] = ACTIONS(317), + [anon_sym_STAR] = ACTIONS(317), + [anon_sym_LBRACK] = ACTIONS(317), + [anon_sym_static] = ACTIONS(319), + [anon_sym_auto] = ACTIONS(319), + [anon_sym_register] = ACTIONS(319), + [anon_sym_inline] = ACTIONS(319), + [anon_sym_const] = ACTIONS(319), + [anon_sym_restrict] = ACTIONS(319), + [anon_sym_volatile] = ACTIONS(319), + [anon_sym__Atomic] = ACTIONS(319), + [anon_sym_unsigned] = ACTIONS(1906), + [anon_sym_long] = ACTIONS(1906), + [anon_sym_short] = ACTIONS(1906), + [sym_primitive_type] = ACTIONS(319), + [sym_identifier] = ACTIONS(319), [sym_comment] = ACTIONS(39), }, [479] = { - [anon_sym_RPAREN] = ACTIONS(1920), + [anon_sym_RPAREN] = ACTIONS(1909), [sym_comment] = ACTIONS(39), }, [480] = { @@ -19798,126 +19817,126 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_macro_type_specifier] = STATE(116), [aux_sym_type_definition_repeat1] = STATE(118), [aux_sym_sized_type_specifier_repeat1] = STATE(119), - [anon_sym_LPAREN2] = ACTIONS(970), - [anon_sym_STAR] = ACTIONS(972), + [anon_sym_LPAREN2] = ACTIONS(961), + [anon_sym_STAR] = ACTIONS(963), [anon_sym_const] = ACTIONS(25), [anon_sym_restrict] = ACTIONS(25), [anon_sym_volatile] = ACTIONS(25), [anon_sym__Atomic] = ACTIONS(25), - [anon_sym_unsigned] = ACTIONS(223), - [anon_sym_long] = ACTIONS(223), - [anon_sym_short] = ACTIONS(223), - [sym_primitive_type] = ACTIONS(225), + [anon_sym_unsigned] = ACTIONS(221), + [anon_sym_long] = ACTIONS(221), + [anon_sym_short] = ACTIONS(221), + [sym_primitive_type] = ACTIONS(223), [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), - [anon_sym_AMP] = ACTIONS(972), - [anon_sym_BANG] = ACTIONS(974), - [anon_sym_TILDE] = ACTIONS(976), - [anon_sym_PLUS] = ACTIONS(978), - [anon_sym_DASH] = ACTIONS(978), - [anon_sym_DASH_DASH] = ACTIONS(980), - [anon_sym_PLUS_PLUS] = ACTIONS(980), - [anon_sym_sizeof] = ACTIONS(982), - [sym_number_literal] = ACTIONS(984), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(986), - [sym_false] = ACTIONS(986), - [sym_null] = ACTIONS(986), - [sym_identifier] = ACTIONS(988), + [anon_sym_AMP] = ACTIONS(963), + [anon_sym_BANG] = ACTIONS(965), + [anon_sym_TILDE] = ACTIONS(967), + [anon_sym_PLUS] = ACTIONS(969), + [anon_sym_DASH] = ACTIONS(969), + [anon_sym_DASH_DASH] = ACTIONS(971), + [anon_sym_PLUS_PLUS] = ACTIONS(971), + [anon_sym_sizeof] = ACTIONS(973), + [sym_number_literal] = ACTIONS(975), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(977), + [sym_false] = ACTIONS(977), + [sym_null] = ACTIONS(977), + [sym_identifier] = ACTIONS(979), [sym_comment] = ACTIONS(39), }, [481] = { [sym_argument_list] = STATE(465), - [anon_sym_LPAREN2] = ACTIONS(1096), - [anon_sym_STAR] = ACTIONS(1166), - [anon_sym_LBRACK] = ACTIONS(1100), - [anon_sym_RBRACK] = ACTIONS(1700), - [anon_sym_EQ] = ACTIONS(1702), - [anon_sym_QMARK] = ACTIONS(1700), - [anon_sym_STAR_EQ] = ACTIONS(1700), - [anon_sym_SLASH_EQ] = ACTIONS(1700), - [anon_sym_PERCENT_EQ] = ACTIONS(1700), - [anon_sym_PLUS_EQ] = ACTIONS(1700), - [anon_sym_DASH_EQ] = ACTIONS(1700), - [anon_sym_LT_LT_EQ] = ACTIONS(1700), - [anon_sym_GT_GT_EQ] = ACTIONS(1700), - [anon_sym_AMP_EQ] = ACTIONS(1700), - [anon_sym_CARET_EQ] = ACTIONS(1700), - [anon_sym_PIPE_EQ] = ACTIONS(1700), - [anon_sym_AMP] = ACTIONS(1702), - [anon_sym_PIPE_PIPE] = ACTIONS(1700), - [anon_sym_AMP_AMP] = ACTIONS(1700), - [anon_sym_PIPE] = ACTIONS(1702), - [anon_sym_CARET] = ACTIONS(1702), - [anon_sym_EQ_EQ] = ACTIONS(1700), - [anon_sym_BANG_EQ] = ACTIONS(1700), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(1702), - [anon_sym_LT_EQ] = ACTIONS(1700), - [anon_sym_GT_EQ] = ACTIONS(1700), - [anon_sym_LT_LT] = ACTIONS(1190), - [anon_sym_GT_GT] = ACTIONS(1190), - [anon_sym_PLUS] = ACTIONS(1192), - [anon_sym_DASH] = ACTIONS(1192), - [anon_sym_SLASH] = ACTIONS(1166), - [anon_sym_PERCENT] = ACTIONS(1166), - [anon_sym_DASH_DASH] = ACTIONS(1128), - [anon_sym_PLUS_PLUS] = ACTIONS(1128), - [anon_sym_DOT] = ACTIONS(1130), - [anon_sym_DASH_GT] = ACTIONS(1130), + [anon_sym_LPAREN2] = ACTIONS(1089), + [anon_sym_STAR] = ACTIONS(1159), + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_RBRACK] = ACTIONS(1689), + [anon_sym_EQ] = ACTIONS(1691), + [anon_sym_QMARK] = ACTIONS(1689), + [anon_sym_STAR_EQ] = ACTIONS(1689), + [anon_sym_SLASH_EQ] = ACTIONS(1689), + [anon_sym_PERCENT_EQ] = ACTIONS(1689), + [anon_sym_PLUS_EQ] = ACTIONS(1689), + [anon_sym_DASH_EQ] = ACTIONS(1689), + [anon_sym_LT_LT_EQ] = ACTIONS(1689), + [anon_sym_GT_GT_EQ] = ACTIONS(1689), + [anon_sym_AMP_EQ] = ACTIONS(1689), + [anon_sym_CARET_EQ] = ACTIONS(1689), + [anon_sym_PIPE_EQ] = ACTIONS(1689), + [anon_sym_AMP] = ACTIONS(1691), + [anon_sym_PIPE_PIPE] = ACTIONS(1689), + [anon_sym_AMP_AMP] = ACTIONS(1689), + [anon_sym_PIPE] = ACTIONS(1691), + [anon_sym_CARET] = ACTIONS(1691), + [anon_sym_EQ_EQ] = ACTIONS(1689), + [anon_sym_BANG_EQ] = ACTIONS(1689), + [anon_sym_LT] = ACTIONS(1691), + [anon_sym_GT] = ACTIONS(1691), + [anon_sym_LT_EQ] = ACTIONS(1689), + [anon_sym_GT_EQ] = ACTIONS(1689), + [anon_sym_LT_LT] = ACTIONS(1183), + [anon_sym_GT_GT] = ACTIONS(1183), + [anon_sym_PLUS] = ACTIONS(1185), + [anon_sym_DASH] = ACTIONS(1185), + [anon_sym_SLASH] = ACTIONS(1159), + [anon_sym_PERCENT] = ACTIONS(1159), + [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_PLUS_PLUS] = ACTIONS(1121), + [anon_sym_DOT] = ACTIONS(1123), + [anon_sym_DASH_GT] = ACTIONS(1123), [sym_comment] = ACTIONS(39), }, [482] = { - [anon_sym_COMMA] = ACTIONS(1922), - [anon_sym_RPAREN] = ACTIONS(1922), - [anon_sym_SEMI] = ACTIONS(1922), - [anon_sym_LBRACE] = ACTIONS(1922), - [anon_sym_LPAREN2] = ACTIONS(1922), - [anon_sym_LBRACK] = ACTIONS(1922), - [anon_sym_EQ] = ACTIONS(1922), + [anon_sym_COMMA] = ACTIONS(1911), + [anon_sym_RPAREN] = ACTIONS(1911), + [anon_sym_SEMI] = ACTIONS(1911), + [anon_sym_LBRACE] = ACTIONS(1911), + [anon_sym_LPAREN2] = ACTIONS(1911), + [anon_sym_LBRACK] = ACTIONS(1911), + [anon_sym_EQ] = ACTIONS(1911), [sym_comment] = ACTIONS(39), }, [483] = { [sym_argument_list] = STATE(465), - [anon_sym_LPAREN2] = ACTIONS(1096), - [anon_sym_STAR] = ACTIONS(1166), - [anon_sym_LBRACK] = ACTIONS(1100), - [anon_sym_RBRACK] = ACTIONS(1924), - [anon_sym_EQ] = ACTIONS(1168), - [anon_sym_QMARK] = ACTIONS(1170), - [anon_sym_STAR_EQ] = ACTIONS(1172), - [anon_sym_SLASH_EQ] = ACTIONS(1172), - [anon_sym_PERCENT_EQ] = ACTIONS(1172), - [anon_sym_PLUS_EQ] = ACTIONS(1172), - [anon_sym_DASH_EQ] = ACTIONS(1172), - [anon_sym_LT_LT_EQ] = ACTIONS(1172), - [anon_sym_GT_GT_EQ] = ACTIONS(1172), - [anon_sym_AMP_EQ] = ACTIONS(1172), - [anon_sym_CARET_EQ] = ACTIONS(1172), - [anon_sym_PIPE_EQ] = ACTIONS(1172), - [anon_sym_AMP] = ACTIONS(1174), - [anon_sym_PIPE_PIPE] = ACTIONS(1176), - [anon_sym_AMP_AMP] = ACTIONS(1178), - [anon_sym_PIPE] = ACTIONS(1180), - [anon_sym_CARET] = ACTIONS(1182), - [anon_sym_EQ_EQ] = ACTIONS(1184), - [anon_sym_BANG_EQ] = ACTIONS(1184), - [anon_sym_LT] = ACTIONS(1186), - [anon_sym_GT] = ACTIONS(1186), - [anon_sym_LT_EQ] = ACTIONS(1188), - [anon_sym_GT_EQ] = ACTIONS(1188), - [anon_sym_LT_LT] = ACTIONS(1190), - [anon_sym_GT_GT] = ACTIONS(1190), - [anon_sym_PLUS] = ACTIONS(1192), - [anon_sym_DASH] = ACTIONS(1192), - [anon_sym_SLASH] = ACTIONS(1166), - [anon_sym_PERCENT] = ACTIONS(1166), - [anon_sym_DASH_DASH] = ACTIONS(1128), - [anon_sym_PLUS_PLUS] = ACTIONS(1128), - [anon_sym_DOT] = ACTIONS(1130), - [anon_sym_DASH_GT] = ACTIONS(1130), + [anon_sym_LPAREN2] = ACTIONS(1089), + [anon_sym_STAR] = ACTIONS(1159), + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_RBRACK] = ACTIONS(1913), + [anon_sym_EQ] = ACTIONS(1161), + [anon_sym_QMARK] = ACTIONS(1163), + [anon_sym_STAR_EQ] = ACTIONS(1165), + [anon_sym_SLASH_EQ] = ACTIONS(1165), + [anon_sym_PERCENT_EQ] = ACTIONS(1165), + [anon_sym_PLUS_EQ] = ACTIONS(1165), + [anon_sym_DASH_EQ] = ACTIONS(1165), + [anon_sym_LT_LT_EQ] = ACTIONS(1165), + [anon_sym_GT_GT_EQ] = ACTIONS(1165), + [anon_sym_AMP_EQ] = ACTIONS(1165), + [anon_sym_CARET_EQ] = ACTIONS(1165), + [anon_sym_PIPE_EQ] = ACTIONS(1165), + [anon_sym_AMP] = ACTIONS(1167), + [anon_sym_PIPE_PIPE] = ACTIONS(1169), + [anon_sym_AMP_AMP] = ACTIONS(1171), + [anon_sym_PIPE] = ACTIONS(1173), + [anon_sym_CARET] = ACTIONS(1175), + [anon_sym_EQ_EQ] = ACTIONS(1177), + [anon_sym_BANG_EQ] = ACTIONS(1177), + [anon_sym_LT] = ACTIONS(1179), + [anon_sym_GT] = ACTIONS(1179), + [anon_sym_LT_EQ] = ACTIONS(1181), + [anon_sym_GT_EQ] = ACTIONS(1181), + [anon_sym_LT_LT] = ACTIONS(1183), + [anon_sym_GT_GT] = ACTIONS(1183), + [anon_sym_PLUS] = ACTIONS(1185), + [anon_sym_DASH] = ACTIONS(1185), + [anon_sym_SLASH] = ACTIONS(1159), + [anon_sym_PERCENT] = ACTIONS(1159), + [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_PLUS_PLUS] = ACTIONS(1121), + [anon_sym_DOT] = ACTIONS(1123), + [anon_sym_DASH_GT] = ACTIONS(1123), [sym_comment] = ACTIONS(39), }, [484] = { @@ -19925,9 +19944,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_type_qualifier] = STATE(759), [aux_sym__declaration_specifiers_repeat1] = STATE(759), [anon_sym_extern] = ACTIONS(23), - [anon_sym_LPAREN2] = ACTIONS(249), - [anon_sym_STAR] = ACTIONS(249), - [anon_sym_RBRACK] = ACTIONS(249), + [anon_sym_LPAREN2] = ACTIONS(247), + [anon_sym_STAR] = ACTIONS(247), + [anon_sym_RBRACK] = ACTIONS(247), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -19936,21 +19955,21 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_restrict] = ACTIONS(25), [anon_sym_volatile] = ACTIONS(25), [anon_sym__Atomic] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(249), - [anon_sym_BANG] = ACTIONS(249), - [anon_sym_TILDE] = ACTIONS(249), - [anon_sym_PLUS] = ACTIONS(251), - [anon_sym_DASH] = ACTIONS(251), - [anon_sym_DASH_DASH] = ACTIONS(249), - [anon_sym_PLUS_PLUS] = ACTIONS(249), - [anon_sym_sizeof] = ACTIONS(251), - [sym_number_literal] = ACTIONS(249), - [anon_sym_SQUOTE] = ACTIONS(249), - [anon_sym_DQUOTE] = ACTIONS(249), - [sym_true] = ACTIONS(251), - [sym_false] = ACTIONS(251), - [sym_null] = ACTIONS(251), - [sym_identifier] = ACTIONS(251), + [anon_sym_AMP] = ACTIONS(247), + [anon_sym_BANG] = ACTIONS(247), + [anon_sym_TILDE] = ACTIONS(247), + [anon_sym_PLUS] = ACTIONS(249), + [anon_sym_DASH] = ACTIONS(249), + [anon_sym_DASH_DASH] = ACTIONS(247), + [anon_sym_PLUS_PLUS] = ACTIONS(247), + [anon_sym_sizeof] = ACTIONS(249), + [sym_number_literal] = ACTIONS(247), + [anon_sym_SQUOTE] = ACTIONS(247), + [anon_sym_DQUOTE] = ACTIONS(247), + [sym_true] = ACTIONS(249), + [sym_false] = ACTIONS(249), + [sym_null] = ACTIONS(249), + [sym_identifier] = ACTIONS(249), [sym_comment] = ACTIONS(39), }, [485] = { @@ -19974,23 +19993,23 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(733), [sym_concatenated_string] = STATE(733), [sym_string_literal] = STATE(272), - [anon_sym_LPAREN2] = ACTIONS(606), - [anon_sym_STAR] = ACTIONS(608), - [anon_sym_AMP] = ACTIONS(608), - [anon_sym_BANG] = ACTIONS(616), - [anon_sym_TILDE] = ACTIONS(618), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_DASH_DASH] = ACTIONS(622), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_sizeof] = ACTIONS(624), - [sym_number_literal] = ACTIONS(1720), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1722), - [sym_false] = ACTIONS(1722), - [sym_null] = ACTIONS(1722), - [sym_identifier] = ACTIONS(1722), + [anon_sym_LPAREN2] = ACTIONS(602), + [anon_sym_STAR] = ACTIONS(604), + [anon_sym_AMP] = ACTIONS(604), + [anon_sym_BANG] = ACTIONS(612), + [anon_sym_TILDE] = ACTIONS(614), + [anon_sym_PLUS] = ACTIONS(616), + [anon_sym_DASH] = ACTIONS(616), + [anon_sym_DASH_DASH] = ACTIONS(618), + [anon_sym_PLUS_PLUS] = ACTIONS(618), + [anon_sym_sizeof] = ACTIONS(620), + [sym_number_literal] = ACTIONS(1709), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(1711), + [sym_false] = ACTIONS(1711), + [sym_null] = ACTIONS(1711), + [sym_identifier] = ACTIONS(1711), [sym_comment] = ACTIONS(39), }, [486] = { @@ -20014,23 +20033,23 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(760), [sym_concatenated_string] = STATE(760), [sym_string_literal] = STATE(272), - [anon_sym_LPAREN2] = ACTIONS(606), - [anon_sym_STAR] = ACTIONS(608), - [anon_sym_AMP] = ACTIONS(608), - [anon_sym_BANG] = ACTIONS(616), - [anon_sym_TILDE] = ACTIONS(618), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_DASH_DASH] = ACTIONS(622), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_sizeof] = ACTIONS(624), - [sym_number_literal] = ACTIONS(1926), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1928), - [sym_false] = ACTIONS(1928), - [sym_null] = ACTIONS(1928), - [sym_identifier] = ACTIONS(1928), + [anon_sym_LPAREN2] = ACTIONS(602), + [anon_sym_STAR] = ACTIONS(604), + [anon_sym_AMP] = ACTIONS(604), + [anon_sym_BANG] = ACTIONS(612), + [anon_sym_TILDE] = ACTIONS(614), + [anon_sym_PLUS] = ACTIONS(616), + [anon_sym_DASH] = ACTIONS(616), + [anon_sym_DASH_DASH] = ACTIONS(618), + [anon_sym_PLUS_PLUS] = ACTIONS(618), + [anon_sym_sizeof] = ACTIONS(620), + [sym_number_literal] = ACTIONS(1915), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(1917), + [sym_false] = ACTIONS(1917), + [sym_null] = ACTIONS(1917), + [sym_identifier] = ACTIONS(1917), [sym_comment] = ACTIONS(39), }, [487] = { @@ -20054,23 +20073,23 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(761), [sym_concatenated_string] = STATE(761), [sym_string_literal] = STATE(421), - [anon_sym_LPAREN2] = ACTIONS(996), - [anon_sym_STAR] = ACTIONS(998), - [anon_sym_AMP] = ACTIONS(998), - [anon_sym_BANG] = ACTIONS(1000), - [anon_sym_TILDE] = ACTIONS(1002), - [anon_sym_PLUS] = ACTIONS(1004), - [anon_sym_DASH] = ACTIONS(1004), - [anon_sym_DASH_DASH] = ACTIONS(1006), - [anon_sym_PLUS_PLUS] = ACTIONS(1006), - [anon_sym_sizeof] = ACTIONS(1008), - [sym_number_literal] = ACTIONS(1930), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1932), - [sym_false] = ACTIONS(1932), - [sym_null] = ACTIONS(1932), - [sym_identifier] = ACTIONS(1932), + [anon_sym_LPAREN2] = ACTIONS(987), + [anon_sym_STAR] = ACTIONS(989), + [anon_sym_AMP] = ACTIONS(989), + [anon_sym_BANG] = ACTIONS(991), + [anon_sym_TILDE] = ACTIONS(993), + [anon_sym_PLUS] = ACTIONS(995), + [anon_sym_DASH] = ACTIONS(995), + [anon_sym_DASH_DASH] = ACTIONS(997), + [anon_sym_PLUS_PLUS] = ACTIONS(997), + [anon_sym_sizeof] = ACTIONS(999), + [sym_number_literal] = ACTIONS(1919), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(1921), + [sym_false] = ACTIONS(1921), + [sym_null] = ACTIONS(1921), + [sym_identifier] = ACTIONS(1921), [sym_comment] = ACTIONS(39), }, [488] = { @@ -20094,23 +20113,23 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(762), [sym_concatenated_string] = STATE(762), [sym_string_literal] = STATE(272), - [anon_sym_LPAREN2] = ACTIONS(606), - [anon_sym_STAR] = ACTIONS(608), - [anon_sym_AMP] = ACTIONS(608), - [anon_sym_BANG] = ACTIONS(616), - [anon_sym_TILDE] = ACTIONS(618), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_DASH_DASH] = ACTIONS(622), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_sizeof] = ACTIONS(624), - [sym_number_literal] = ACTIONS(1934), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1936), - [sym_false] = ACTIONS(1936), - [sym_null] = ACTIONS(1936), - [sym_identifier] = ACTIONS(1936), + [anon_sym_LPAREN2] = ACTIONS(602), + [anon_sym_STAR] = ACTIONS(604), + [anon_sym_AMP] = ACTIONS(604), + [anon_sym_BANG] = ACTIONS(612), + [anon_sym_TILDE] = ACTIONS(614), + [anon_sym_PLUS] = ACTIONS(616), + [anon_sym_DASH] = ACTIONS(616), + [anon_sym_DASH_DASH] = ACTIONS(618), + [anon_sym_PLUS_PLUS] = ACTIONS(618), + [anon_sym_sizeof] = ACTIONS(620), + [sym_number_literal] = ACTIONS(1923), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(1925), + [sym_false] = ACTIONS(1925), + [sym_null] = ACTIONS(1925), + [sym_identifier] = ACTIONS(1925), [sym_comment] = ACTIONS(39), }, [489] = { @@ -20134,23 +20153,23 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(763), [sym_concatenated_string] = STATE(763), [sym_string_literal] = STATE(272), - [anon_sym_LPAREN2] = ACTIONS(606), - [anon_sym_STAR] = ACTIONS(608), - [anon_sym_AMP] = ACTIONS(608), - [anon_sym_BANG] = ACTIONS(616), - [anon_sym_TILDE] = ACTIONS(618), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_DASH_DASH] = ACTIONS(622), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_sizeof] = ACTIONS(624), - [sym_number_literal] = ACTIONS(1938), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1940), - [sym_false] = ACTIONS(1940), - [sym_null] = ACTIONS(1940), - [sym_identifier] = ACTIONS(1940), + [anon_sym_LPAREN2] = ACTIONS(602), + [anon_sym_STAR] = ACTIONS(604), + [anon_sym_AMP] = ACTIONS(604), + [anon_sym_BANG] = ACTIONS(612), + [anon_sym_TILDE] = ACTIONS(614), + [anon_sym_PLUS] = ACTIONS(616), + [anon_sym_DASH] = ACTIONS(616), + [anon_sym_DASH_DASH] = ACTIONS(618), + [anon_sym_PLUS_PLUS] = ACTIONS(618), + [anon_sym_sizeof] = ACTIONS(620), + [sym_number_literal] = ACTIONS(1927), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(1929), + [sym_false] = ACTIONS(1929), + [sym_null] = ACTIONS(1929), + [sym_identifier] = ACTIONS(1929), [sym_comment] = ACTIONS(39), }, [490] = { @@ -20174,23 +20193,23 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(764), [sym_concatenated_string] = STATE(764), [sym_string_literal] = STATE(272), - [anon_sym_LPAREN2] = ACTIONS(606), - [anon_sym_STAR] = ACTIONS(608), - [anon_sym_AMP] = ACTIONS(608), - [anon_sym_BANG] = ACTIONS(616), - [anon_sym_TILDE] = ACTIONS(618), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_DASH_DASH] = ACTIONS(622), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_sizeof] = ACTIONS(624), - [sym_number_literal] = ACTIONS(1942), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1944), - [sym_false] = ACTIONS(1944), - [sym_null] = ACTIONS(1944), - [sym_identifier] = ACTIONS(1944), + [anon_sym_LPAREN2] = ACTIONS(602), + [anon_sym_STAR] = ACTIONS(604), + [anon_sym_AMP] = ACTIONS(604), + [anon_sym_BANG] = ACTIONS(612), + [anon_sym_TILDE] = ACTIONS(614), + [anon_sym_PLUS] = ACTIONS(616), + [anon_sym_DASH] = ACTIONS(616), + [anon_sym_DASH_DASH] = ACTIONS(618), + [anon_sym_PLUS_PLUS] = ACTIONS(618), + [anon_sym_sizeof] = ACTIONS(620), + [sym_number_literal] = ACTIONS(1931), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(1933), + [sym_false] = ACTIONS(1933), + [sym_null] = ACTIONS(1933), + [sym_identifier] = ACTIONS(1933), [sym_comment] = ACTIONS(39), }, [491] = { @@ -20214,23 +20233,23 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(765), [sym_concatenated_string] = STATE(765), [sym_string_literal] = STATE(272), - [anon_sym_LPAREN2] = ACTIONS(606), - [anon_sym_STAR] = ACTIONS(608), - [anon_sym_AMP] = ACTIONS(608), - [anon_sym_BANG] = ACTIONS(616), - [anon_sym_TILDE] = ACTIONS(618), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_DASH_DASH] = ACTIONS(622), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_sizeof] = ACTIONS(624), - [sym_number_literal] = ACTIONS(1946), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1948), - [sym_false] = ACTIONS(1948), - [sym_null] = ACTIONS(1948), - [sym_identifier] = ACTIONS(1948), + [anon_sym_LPAREN2] = ACTIONS(602), + [anon_sym_STAR] = ACTIONS(604), + [anon_sym_AMP] = ACTIONS(604), + [anon_sym_BANG] = ACTIONS(612), + [anon_sym_TILDE] = ACTIONS(614), + [anon_sym_PLUS] = ACTIONS(616), + [anon_sym_DASH] = ACTIONS(616), + [anon_sym_DASH_DASH] = ACTIONS(618), + [anon_sym_PLUS_PLUS] = ACTIONS(618), + [anon_sym_sizeof] = ACTIONS(620), + [sym_number_literal] = ACTIONS(1935), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(1937), + [sym_false] = ACTIONS(1937), + [sym_null] = ACTIONS(1937), + [sym_identifier] = ACTIONS(1937), [sym_comment] = ACTIONS(39), }, [492] = { @@ -20254,23 +20273,23 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(766), [sym_concatenated_string] = STATE(766), [sym_string_literal] = STATE(272), - [anon_sym_LPAREN2] = ACTIONS(606), - [anon_sym_STAR] = ACTIONS(608), - [anon_sym_AMP] = ACTIONS(608), - [anon_sym_BANG] = ACTIONS(616), - [anon_sym_TILDE] = ACTIONS(618), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_DASH_DASH] = ACTIONS(622), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_sizeof] = ACTIONS(624), - [sym_number_literal] = ACTIONS(1950), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1952), - [sym_false] = ACTIONS(1952), - [sym_null] = ACTIONS(1952), - [sym_identifier] = ACTIONS(1952), + [anon_sym_LPAREN2] = ACTIONS(602), + [anon_sym_STAR] = ACTIONS(604), + [anon_sym_AMP] = ACTIONS(604), + [anon_sym_BANG] = ACTIONS(612), + [anon_sym_TILDE] = ACTIONS(614), + [anon_sym_PLUS] = ACTIONS(616), + [anon_sym_DASH] = ACTIONS(616), + [anon_sym_DASH_DASH] = ACTIONS(618), + [anon_sym_PLUS_PLUS] = ACTIONS(618), + [anon_sym_sizeof] = ACTIONS(620), + [sym_number_literal] = ACTIONS(1939), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(1941), + [sym_false] = ACTIONS(1941), + [sym_null] = ACTIONS(1941), + [sym_identifier] = ACTIONS(1941), [sym_comment] = ACTIONS(39), }, [493] = { @@ -20294,23 +20313,23 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(767), [sym_concatenated_string] = STATE(767), [sym_string_literal] = STATE(272), - [anon_sym_LPAREN2] = ACTIONS(606), - [anon_sym_STAR] = ACTIONS(608), - [anon_sym_AMP] = ACTIONS(608), - [anon_sym_BANG] = ACTIONS(616), - [anon_sym_TILDE] = ACTIONS(618), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_DASH_DASH] = ACTIONS(622), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_sizeof] = ACTIONS(624), - [sym_number_literal] = ACTIONS(1954), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1956), - [sym_false] = ACTIONS(1956), - [sym_null] = ACTIONS(1956), - [sym_identifier] = ACTIONS(1956), + [anon_sym_LPAREN2] = ACTIONS(602), + [anon_sym_STAR] = ACTIONS(604), + [anon_sym_AMP] = ACTIONS(604), + [anon_sym_BANG] = ACTIONS(612), + [anon_sym_TILDE] = ACTIONS(614), + [anon_sym_PLUS] = ACTIONS(616), + [anon_sym_DASH] = ACTIONS(616), + [anon_sym_DASH_DASH] = ACTIONS(618), + [anon_sym_PLUS_PLUS] = ACTIONS(618), + [anon_sym_sizeof] = ACTIONS(620), + [sym_number_literal] = ACTIONS(1943), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(1945), + [sym_false] = ACTIONS(1945), + [sym_null] = ACTIONS(1945), + [sym_identifier] = ACTIONS(1945), [sym_comment] = ACTIONS(39), }, [494] = { @@ -20334,23 +20353,23 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(768), [sym_concatenated_string] = STATE(768), [sym_string_literal] = STATE(272), - [anon_sym_LPAREN2] = ACTIONS(606), - [anon_sym_STAR] = ACTIONS(608), - [anon_sym_AMP] = ACTIONS(608), - [anon_sym_BANG] = ACTIONS(616), - [anon_sym_TILDE] = ACTIONS(618), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_DASH_DASH] = ACTIONS(622), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_sizeof] = ACTIONS(624), - [sym_number_literal] = ACTIONS(1958), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1960), - [sym_false] = ACTIONS(1960), - [sym_null] = ACTIONS(1960), - [sym_identifier] = ACTIONS(1960), + [anon_sym_LPAREN2] = ACTIONS(602), + [anon_sym_STAR] = ACTIONS(604), + [anon_sym_AMP] = ACTIONS(604), + [anon_sym_BANG] = ACTIONS(612), + [anon_sym_TILDE] = ACTIONS(614), + [anon_sym_PLUS] = ACTIONS(616), + [anon_sym_DASH] = ACTIONS(616), + [anon_sym_DASH_DASH] = ACTIONS(618), + [anon_sym_PLUS_PLUS] = ACTIONS(618), + [anon_sym_sizeof] = ACTIONS(620), + [sym_number_literal] = ACTIONS(1947), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(1949), + [sym_false] = ACTIONS(1949), + [sym_null] = ACTIONS(1949), + [sym_identifier] = ACTIONS(1949), [sym_comment] = ACTIONS(39), }, [495] = { @@ -20374,23 +20393,23 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(769), [sym_concatenated_string] = STATE(769), [sym_string_literal] = STATE(272), - [anon_sym_LPAREN2] = ACTIONS(606), - [anon_sym_STAR] = ACTIONS(608), - [anon_sym_AMP] = ACTIONS(608), - [anon_sym_BANG] = ACTIONS(616), - [anon_sym_TILDE] = ACTIONS(618), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_DASH_DASH] = ACTIONS(622), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_sizeof] = ACTIONS(624), - [sym_number_literal] = ACTIONS(1962), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1964), - [sym_false] = ACTIONS(1964), - [sym_null] = ACTIONS(1964), - [sym_identifier] = ACTIONS(1964), + [anon_sym_LPAREN2] = ACTIONS(602), + [anon_sym_STAR] = ACTIONS(604), + [anon_sym_AMP] = ACTIONS(604), + [anon_sym_BANG] = ACTIONS(612), + [anon_sym_TILDE] = ACTIONS(614), + [anon_sym_PLUS] = ACTIONS(616), + [anon_sym_DASH] = ACTIONS(616), + [anon_sym_DASH_DASH] = ACTIONS(618), + [anon_sym_PLUS_PLUS] = ACTIONS(618), + [anon_sym_sizeof] = ACTIONS(620), + [sym_number_literal] = ACTIONS(1951), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(1953), + [sym_false] = ACTIONS(1953), + [sym_null] = ACTIONS(1953), + [sym_identifier] = ACTIONS(1953), [sym_comment] = ACTIONS(39), }, [496] = { @@ -20414,65 +20433,65 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(770), [sym_concatenated_string] = STATE(770), [sym_string_literal] = STATE(272), - [anon_sym_LPAREN2] = ACTIONS(606), - [anon_sym_STAR] = ACTIONS(608), - [anon_sym_AMP] = ACTIONS(608), - [anon_sym_BANG] = ACTIONS(616), - [anon_sym_TILDE] = ACTIONS(618), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_DASH_DASH] = ACTIONS(622), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_sizeof] = ACTIONS(624), - [sym_number_literal] = ACTIONS(1966), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1968), - [sym_false] = ACTIONS(1968), - [sym_null] = ACTIONS(1968), - [sym_identifier] = ACTIONS(1968), + [anon_sym_LPAREN2] = ACTIONS(602), + [anon_sym_STAR] = ACTIONS(604), + [anon_sym_AMP] = ACTIONS(604), + [anon_sym_BANG] = ACTIONS(612), + [anon_sym_TILDE] = ACTIONS(614), + [anon_sym_PLUS] = ACTIONS(616), + [anon_sym_DASH] = ACTIONS(616), + [anon_sym_DASH_DASH] = ACTIONS(618), + [anon_sym_PLUS_PLUS] = ACTIONS(618), + [anon_sym_sizeof] = ACTIONS(620), + [sym_number_literal] = ACTIONS(1955), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(1957), + [sym_false] = ACTIONS(1957), + [sym_null] = ACTIONS(1957), + [sym_identifier] = ACTIONS(1957), [sym_comment] = ACTIONS(39), }, [497] = { [sym_string_literal] = STATE(771), [aux_sym_concatenated_string_repeat1] = STATE(771), - [anon_sym_LPAREN2] = ACTIONS(1778), - [anon_sym_STAR] = ACTIONS(1780), - [anon_sym_LBRACK] = ACTIONS(1778), - [anon_sym_RBRACK] = ACTIONS(1778), - [anon_sym_EQ] = ACTIONS(1780), - [anon_sym_QMARK] = ACTIONS(1778), - [anon_sym_STAR_EQ] = ACTIONS(1778), - [anon_sym_SLASH_EQ] = ACTIONS(1778), - [anon_sym_PERCENT_EQ] = ACTIONS(1778), - [anon_sym_PLUS_EQ] = ACTIONS(1778), - [anon_sym_DASH_EQ] = ACTIONS(1778), - [anon_sym_LT_LT_EQ] = ACTIONS(1778), - [anon_sym_GT_GT_EQ] = ACTIONS(1778), - [anon_sym_AMP_EQ] = ACTIONS(1778), - [anon_sym_CARET_EQ] = ACTIONS(1778), - [anon_sym_PIPE_EQ] = ACTIONS(1778), - [anon_sym_AMP] = ACTIONS(1780), - [anon_sym_PIPE_PIPE] = ACTIONS(1778), - [anon_sym_AMP_AMP] = ACTIONS(1778), - [anon_sym_PIPE] = ACTIONS(1780), - [anon_sym_CARET] = ACTIONS(1780), - [anon_sym_EQ_EQ] = ACTIONS(1778), - [anon_sym_BANG_EQ] = ACTIONS(1778), - [anon_sym_LT] = ACTIONS(1780), - [anon_sym_GT] = ACTIONS(1780), - [anon_sym_LT_EQ] = ACTIONS(1778), - [anon_sym_GT_EQ] = ACTIONS(1778), - [anon_sym_LT_LT] = ACTIONS(1780), - [anon_sym_GT_GT] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(1780), - [anon_sym_DASH] = ACTIONS(1780), - [anon_sym_SLASH] = ACTIONS(1780), - [anon_sym_PERCENT] = ACTIONS(1780), - [anon_sym_DASH_DASH] = ACTIONS(1778), - [anon_sym_PLUS_PLUS] = ACTIONS(1778), - [anon_sym_DOT] = ACTIONS(1778), - [anon_sym_DASH_GT] = ACTIONS(1778), + [anon_sym_LPAREN2] = ACTIONS(1767), + [anon_sym_STAR] = ACTIONS(1769), + [anon_sym_LBRACK] = ACTIONS(1767), + [anon_sym_RBRACK] = ACTIONS(1767), + [anon_sym_EQ] = ACTIONS(1769), + [anon_sym_QMARK] = ACTIONS(1767), + [anon_sym_STAR_EQ] = ACTIONS(1767), + [anon_sym_SLASH_EQ] = ACTIONS(1767), + [anon_sym_PERCENT_EQ] = ACTIONS(1767), + [anon_sym_PLUS_EQ] = ACTIONS(1767), + [anon_sym_DASH_EQ] = ACTIONS(1767), + [anon_sym_LT_LT_EQ] = ACTIONS(1767), + [anon_sym_GT_GT_EQ] = ACTIONS(1767), + [anon_sym_AMP_EQ] = ACTIONS(1767), + [anon_sym_CARET_EQ] = ACTIONS(1767), + [anon_sym_PIPE_EQ] = ACTIONS(1767), + [anon_sym_AMP] = ACTIONS(1769), + [anon_sym_PIPE_PIPE] = ACTIONS(1767), + [anon_sym_AMP_AMP] = ACTIONS(1767), + [anon_sym_PIPE] = ACTIONS(1769), + [anon_sym_CARET] = ACTIONS(1769), + [anon_sym_EQ_EQ] = ACTIONS(1767), + [anon_sym_BANG_EQ] = ACTIONS(1767), + [anon_sym_LT] = ACTIONS(1769), + [anon_sym_GT] = ACTIONS(1769), + [anon_sym_LT_EQ] = ACTIONS(1767), + [anon_sym_GT_EQ] = ACTIONS(1767), + [anon_sym_LT_LT] = ACTIONS(1769), + [anon_sym_GT_GT] = ACTIONS(1769), + [anon_sym_PLUS] = ACTIONS(1769), + [anon_sym_DASH] = ACTIONS(1769), + [anon_sym_SLASH] = ACTIONS(1769), + [anon_sym_PERCENT] = ACTIONS(1769), + [anon_sym_DASH_DASH] = ACTIONS(1767), + [anon_sym_PLUS_PLUS] = ACTIONS(1767), + [anon_sym_DOT] = ACTIONS(1767), + [anon_sym_DASH_GT] = ACTIONS(1767), [anon_sym_DQUOTE] = ACTIONS(41), [sym_comment] = ACTIONS(39), }, @@ -20481,9 +20500,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_type_qualifier] = STATE(772), [aux_sym__declaration_specifiers_repeat1] = STATE(772), [anon_sym_extern] = ACTIONS(23), - [anon_sym_LPAREN2] = ACTIONS(249), - [anon_sym_STAR] = ACTIONS(249), - [anon_sym_RBRACK] = ACTIONS(249), + [anon_sym_LPAREN2] = ACTIONS(247), + [anon_sym_STAR] = ACTIONS(247), + [anon_sym_RBRACK] = ACTIONS(247), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -20492,105 +20511,105 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_restrict] = ACTIONS(25), [anon_sym_volatile] = ACTIONS(25), [anon_sym__Atomic] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(249), - [anon_sym_BANG] = ACTIONS(249), - [anon_sym_TILDE] = ACTIONS(249), - [anon_sym_PLUS] = ACTIONS(251), - [anon_sym_DASH] = ACTIONS(251), - [anon_sym_DASH_DASH] = ACTIONS(249), - [anon_sym_PLUS_PLUS] = ACTIONS(249), - [anon_sym_sizeof] = ACTIONS(251), - [sym_number_literal] = ACTIONS(249), - [anon_sym_SQUOTE] = ACTIONS(249), - [anon_sym_DQUOTE] = ACTIONS(249), - [sym_true] = ACTIONS(251), - [sym_false] = ACTIONS(251), - [sym_null] = ACTIONS(251), - [sym_identifier] = ACTIONS(251), + [anon_sym_AMP] = ACTIONS(247), + [anon_sym_BANG] = ACTIONS(247), + [anon_sym_TILDE] = ACTIONS(247), + [anon_sym_PLUS] = ACTIONS(249), + [anon_sym_DASH] = ACTIONS(249), + [anon_sym_DASH_DASH] = ACTIONS(247), + [anon_sym_PLUS_PLUS] = ACTIONS(247), + [anon_sym_sizeof] = ACTIONS(249), + [sym_number_literal] = ACTIONS(247), + [anon_sym_SQUOTE] = ACTIONS(247), + [anon_sym_DQUOTE] = ACTIONS(247), + [sym_true] = ACTIONS(249), + [sym_false] = ACTIONS(249), + [sym_null] = ACTIONS(249), + [sym_identifier] = ACTIONS(249), [sym_comment] = ACTIONS(39), }, [499] = { [aux_sym_sized_type_specifier_repeat1] = STATE(499), - [anon_sym_extern] = ACTIONS(321), - [anon_sym_LPAREN2] = ACTIONS(319), - [anon_sym_STAR] = ACTIONS(319), - [anon_sym_RBRACK] = ACTIONS(319), - [anon_sym_static] = ACTIONS(321), - [anon_sym_auto] = ACTIONS(321), - [anon_sym_register] = ACTIONS(321), - [anon_sym_inline] = ACTIONS(321), - [anon_sym_const] = ACTIONS(321), - [anon_sym_restrict] = ACTIONS(321), - [anon_sym_volatile] = ACTIONS(321), - [anon_sym__Atomic] = ACTIONS(321), - [anon_sym_unsigned] = ACTIONS(1970), - [anon_sym_long] = ACTIONS(1970), - [anon_sym_short] = ACTIONS(1970), - [sym_primitive_type] = ACTIONS(321), - [anon_sym_AMP] = ACTIONS(319), - [anon_sym_BANG] = ACTIONS(319), - [anon_sym_TILDE] = ACTIONS(319), - [anon_sym_PLUS] = ACTIONS(321), - [anon_sym_DASH] = ACTIONS(321), - [anon_sym_DASH_DASH] = ACTIONS(319), - [anon_sym_PLUS_PLUS] = ACTIONS(319), - [anon_sym_sizeof] = ACTIONS(321), - [sym_number_literal] = ACTIONS(319), - [anon_sym_SQUOTE] = ACTIONS(319), - [anon_sym_DQUOTE] = ACTIONS(319), - [sym_true] = ACTIONS(321), - [sym_false] = ACTIONS(321), - [sym_null] = ACTIONS(321), - [sym_identifier] = ACTIONS(321), + [anon_sym_extern] = ACTIONS(319), + [anon_sym_LPAREN2] = ACTIONS(317), + [anon_sym_STAR] = ACTIONS(317), + [anon_sym_RBRACK] = ACTIONS(317), + [anon_sym_static] = ACTIONS(319), + [anon_sym_auto] = ACTIONS(319), + [anon_sym_register] = ACTIONS(319), + [anon_sym_inline] = ACTIONS(319), + [anon_sym_const] = ACTIONS(319), + [anon_sym_restrict] = ACTIONS(319), + [anon_sym_volatile] = ACTIONS(319), + [anon_sym__Atomic] = ACTIONS(319), + [anon_sym_unsigned] = ACTIONS(1959), + [anon_sym_long] = ACTIONS(1959), + [anon_sym_short] = ACTIONS(1959), + [sym_primitive_type] = ACTIONS(319), + [anon_sym_AMP] = ACTIONS(317), + [anon_sym_BANG] = ACTIONS(317), + [anon_sym_TILDE] = ACTIONS(317), + [anon_sym_PLUS] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(319), + [anon_sym_DASH_DASH] = ACTIONS(317), + [anon_sym_PLUS_PLUS] = ACTIONS(317), + [anon_sym_sizeof] = ACTIONS(319), + [sym_number_literal] = ACTIONS(317), + [anon_sym_SQUOTE] = ACTIONS(317), + [anon_sym_DQUOTE] = ACTIONS(317), + [sym_true] = ACTIONS(319), + [sym_false] = ACTIONS(319), + [sym_null] = ACTIONS(319), + [sym_identifier] = ACTIONS(319), [sym_comment] = ACTIONS(39), }, [500] = { - [anon_sym_RBRACE] = ACTIONS(1973), + [anon_sym_RBRACE] = ACTIONS(1962), [sym_comment] = ACTIONS(39), }, [501] = { - [anon_sym_COMMA] = ACTIONS(1975), - [anon_sym_RPAREN] = ACTIONS(1975), - [anon_sym_SEMI] = ACTIONS(1975), - [anon_sym_RBRACE] = ACTIONS(1975), - [anon_sym_LPAREN2] = ACTIONS(1975), - [anon_sym_STAR] = ACTIONS(1977), - [anon_sym_LBRACK] = ACTIONS(1975), - [anon_sym_RBRACK] = ACTIONS(1975), - [anon_sym_EQ] = ACTIONS(1977), - [anon_sym_COLON] = ACTIONS(1975), - [anon_sym_QMARK] = ACTIONS(1975), - [anon_sym_STAR_EQ] = ACTIONS(1975), - [anon_sym_SLASH_EQ] = ACTIONS(1975), - [anon_sym_PERCENT_EQ] = ACTIONS(1975), - [anon_sym_PLUS_EQ] = ACTIONS(1975), - [anon_sym_DASH_EQ] = ACTIONS(1975), - [anon_sym_LT_LT_EQ] = ACTIONS(1975), - [anon_sym_GT_GT_EQ] = ACTIONS(1975), - [anon_sym_AMP_EQ] = ACTIONS(1975), - [anon_sym_CARET_EQ] = ACTIONS(1975), - [anon_sym_PIPE_EQ] = ACTIONS(1975), - [anon_sym_AMP] = ACTIONS(1977), - [anon_sym_PIPE_PIPE] = ACTIONS(1975), - [anon_sym_AMP_AMP] = ACTIONS(1975), - [anon_sym_PIPE] = ACTIONS(1977), - [anon_sym_CARET] = ACTIONS(1977), - [anon_sym_EQ_EQ] = ACTIONS(1975), - [anon_sym_BANG_EQ] = ACTIONS(1975), - [anon_sym_LT] = ACTIONS(1977), - [anon_sym_GT] = ACTIONS(1977), - [anon_sym_LT_EQ] = ACTIONS(1975), - [anon_sym_GT_EQ] = ACTIONS(1975), - [anon_sym_LT_LT] = ACTIONS(1977), - [anon_sym_GT_GT] = ACTIONS(1977), - [anon_sym_PLUS] = ACTIONS(1977), - [anon_sym_DASH] = ACTIONS(1977), - [anon_sym_SLASH] = ACTIONS(1977), - [anon_sym_PERCENT] = ACTIONS(1977), - [anon_sym_DASH_DASH] = ACTIONS(1975), - [anon_sym_PLUS_PLUS] = ACTIONS(1975), - [anon_sym_DOT] = ACTIONS(1975), - [anon_sym_DASH_GT] = ACTIONS(1975), + [anon_sym_COMMA] = ACTIONS(1964), + [anon_sym_RPAREN] = ACTIONS(1964), + [anon_sym_SEMI] = ACTIONS(1964), + [anon_sym_RBRACE] = ACTIONS(1964), + [anon_sym_LPAREN2] = ACTIONS(1964), + [anon_sym_STAR] = ACTIONS(1966), + [anon_sym_LBRACK] = ACTIONS(1964), + [anon_sym_RBRACK] = ACTIONS(1964), + [anon_sym_EQ] = ACTIONS(1966), + [anon_sym_COLON] = ACTIONS(1964), + [anon_sym_QMARK] = ACTIONS(1964), + [anon_sym_STAR_EQ] = ACTIONS(1964), + [anon_sym_SLASH_EQ] = ACTIONS(1964), + [anon_sym_PERCENT_EQ] = ACTIONS(1964), + [anon_sym_PLUS_EQ] = ACTIONS(1964), + [anon_sym_DASH_EQ] = ACTIONS(1964), + [anon_sym_LT_LT_EQ] = ACTIONS(1964), + [anon_sym_GT_GT_EQ] = ACTIONS(1964), + [anon_sym_AMP_EQ] = ACTIONS(1964), + [anon_sym_CARET_EQ] = ACTIONS(1964), + [anon_sym_PIPE_EQ] = ACTIONS(1964), + [anon_sym_AMP] = ACTIONS(1966), + [anon_sym_PIPE_PIPE] = ACTIONS(1964), + [anon_sym_AMP_AMP] = ACTIONS(1964), + [anon_sym_PIPE] = ACTIONS(1966), + [anon_sym_CARET] = ACTIONS(1966), + [anon_sym_EQ_EQ] = ACTIONS(1964), + [anon_sym_BANG_EQ] = ACTIONS(1964), + [anon_sym_LT] = ACTIONS(1966), + [anon_sym_GT] = ACTIONS(1966), + [anon_sym_LT_EQ] = ACTIONS(1964), + [anon_sym_GT_EQ] = ACTIONS(1964), + [anon_sym_LT_LT] = ACTIONS(1966), + [anon_sym_GT_GT] = ACTIONS(1966), + [anon_sym_PLUS] = ACTIONS(1966), + [anon_sym_DASH] = ACTIONS(1966), + [anon_sym_SLASH] = ACTIONS(1966), + [anon_sym_PERCENT] = ACTIONS(1966), + [anon_sym_DASH_DASH] = ACTIONS(1964), + [anon_sym_PLUS_PLUS] = ACTIONS(1964), + [anon_sym_DOT] = ACTIONS(1964), + [anon_sym_DASH_GT] = ACTIONS(1964), [sym_comment] = ACTIONS(39), }, [502] = { @@ -20614,546 +20633,546 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(774), [sym_concatenated_string] = STATE(774), [sym_string_literal] = STATE(272), - [anon_sym_LPAREN2] = ACTIONS(606), - [anon_sym_STAR] = ACTIONS(608), - [anon_sym_AMP] = ACTIONS(608), - [anon_sym_BANG] = ACTIONS(616), - [anon_sym_TILDE] = ACTIONS(618), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_DASH_DASH] = ACTIONS(622), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_sizeof] = ACTIONS(624), - [sym_number_literal] = ACTIONS(1979), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1981), - [sym_false] = ACTIONS(1981), - [sym_null] = ACTIONS(1981), - [sym_identifier] = ACTIONS(1981), + [anon_sym_LPAREN2] = ACTIONS(602), + [anon_sym_STAR] = ACTIONS(604), + [anon_sym_AMP] = ACTIONS(604), + [anon_sym_BANG] = ACTIONS(612), + [anon_sym_TILDE] = ACTIONS(614), + [anon_sym_PLUS] = ACTIONS(616), + [anon_sym_DASH] = ACTIONS(616), + [anon_sym_DASH_DASH] = ACTIONS(618), + [anon_sym_PLUS_PLUS] = ACTIONS(618), + [anon_sym_sizeof] = ACTIONS(620), + [sym_number_literal] = ACTIONS(1968), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(1970), + [sym_false] = ACTIONS(1970), + [sym_null] = ACTIONS(1970), + [sym_identifier] = ACTIONS(1970), [sym_comment] = ACTIONS(39), }, [503] = { - [sym_identifier] = ACTIONS(1983), + [sym_identifier] = ACTIONS(1972), [sym_comment] = ACTIONS(39), }, [504] = { [sym_argument_list] = STATE(465), [aux_sym_initializer_list_repeat1] = STATE(777), - [anon_sym_COMMA] = ACTIONS(1985), - [anon_sym_RBRACE] = ACTIONS(1973), - [anon_sym_LPAREN2] = ACTIONS(1096), - [anon_sym_STAR] = ACTIONS(1351), - [anon_sym_LBRACK] = ACTIONS(1100), - [anon_sym_EQ] = ACTIONS(1353), - [anon_sym_QMARK] = ACTIONS(1355), - [anon_sym_STAR_EQ] = ACTIONS(1357), - [anon_sym_SLASH_EQ] = ACTIONS(1357), - [anon_sym_PERCENT_EQ] = ACTIONS(1357), - [anon_sym_PLUS_EQ] = ACTIONS(1357), - [anon_sym_DASH_EQ] = ACTIONS(1357), - [anon_sym_LT_LT_EQ] = ACTIONS(1357), - [anon_sym_GT_GT_EQ] = ACTIONS(1357), - [anon_sym_AMP_EQ] = ACTIONS(1357), - [anon_sym_CARET_EQ] = ACTIONS(1357), - [anon_sym_PIPE_EQ] = ACTIONS(1357), - [anon_sym_AMP] = ACTIONS(1359), - [anon_sym_PIPE_PIPE] = ACTIONS(1361), - [anon_sym_AMP_AMP] = ACTIONS(1363), - [anon_sym_PIPE] = ACTIONS(1365), - [anon_sym_CARET] = ACTIONS(1367), - [anon_sym_EQ_EQ] = ACTIONS(1369), - [anon_sym_BANG_EQ] = ACTIONS(1369), - [anon_sym_LT] = ACTIONS(1371), - [anon_sym_GT] = ACTIONS(1371), - [anon_sym_LT_EQ] = ACTIONS(1373), - [anon_sym_GT_EQ] = ACTIONS(1373), - [anon_sym_LT_LT] = ACTIONS(1375), - [anon_sym_GT_GT] = ACTIONS(1375), - [anon_sym_PLUS] = ACTIONS(1377), - [anon_sym_DASH] = ACTIONS(1377), - [anon_sym_SLASH] = ACTIONS(1351), - [anon_sym_PERCENT] = ACTIONS(1351), - [anon_sym_DASH_DASH] = ACTIONS(1128), - [anon_sym_PLUS_PLUS] = ACTIONS(1128), - [anon_sym_DOT] = ACTIONS(1130), - [anon_sym_DASH_GT] = ACTIONS(1130), + [anon_sym_COMMA] = ACTIONS(1974), + [anon_sym_RBRACE] = ACTIONS(1962), + [anon_sym_LPAREN2] = ACTIONS(1089), + [anon_sym_STAR] = ACTIONS(1342), + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(1344), + [anon_sym_QMARK] = ACTIONS(1346), + [anon_sym_STAR_EQ] = ACTIONS(1348), + [anon_sym_SLASH_EQ] = ACTIONS(1348), + [anon_sym_PERCENT_EQ] = ACTIONS(1348), + [anon_sym_PLUS_EQ] = ACTIONS(1348), + [anon_sym_DASH_EQ] = ACTIONS(1348), + [anon_sym_LT_LT_EQ] = ACTIONS(1348), + [anon_sym_GT_GT_EQ] = ACTIONS(1348), + [anon_sym_AMP_EQ] = ACTIONS(1348), + [anon_sym_CARET_EQ] = ACTIONS(1348), + [anon_sym_PIPE_EQ] = ACTIONS(1348), + [anon_sym_AMP] = ACTIONS(1350), + [anon_sym_PIPE_PIPE] = ACTIONS(1352), + [anon_sym_AMP_AMP] = ACTIONS(1354), + [anon_sym_PIPE] = ACTIONS(1356), + [anon_sym_CARET] = ACTIONS(1358), + [anon_sym_EQ_EQ] = ACTIONS(1360), + [anon_sym_BANG_EQ] = ACTIONS(1360), + [anon_sym_LT] = ACTIONS(1362), + [anon_sym_GT] = ACTIONS(1362), + [anon_sym_LT_EQ] = ACTIONS(1364), + [anon_sym_GT_EQ] = ACTIONS(1364), + [anon_sym_LT_LT] = ACTIONS(1366), + [anon_sym_GT_GT] = ACTIONS(1366), + [anon_sym_PLUS] = ACTIONS(1368), + [anon_sym_DASH] = ACTIONS(1368), + [anon_sym_SLASH] = ACTIONS(1342), + [anon_sym_PERCENT] = ACTIONS(1342), + [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_PLUS_PLUS] = ACTIONS(1121), + [anon_sym_DOT] = ACTIONS(1123), + [anon_sym_DASH_GT] = ACTIONS(1123), [sym_comment] = ACTIONS(39), }, [505] = { [aux_sym_initializer_list_repeat1] = STATE(777), - [anon_sym_COMMA] = ACTIONS(1985), - [anon_sym_RBRACE] = ACTIONS(1973), + [anon_sym_COMMA] = ACTIONS(1974), + [anon_sym_RBRACE] = ACTIONS(1962), [sym_comment] = ACTIONS(39), }, [506] = { [sym_subscript_designator] = STATE(779), [sym_field_designator] = STATE(779), [aux_sym_initializer_pair_repeat1] = STATE(779), - [anon_sym_LBRACK] = ACTIONS(1202), - [anon_sym_EQ] = ACTIONS(1987), - [anon_sym_DOT] = ACTIONS(1204), + [anon_sym_LBRACK] = ACTIONS(1195), + [anon_sym_EQ] = ACTIONS(1976), + [anon_sym_DOT] = ACTIONS(1197), [sym_comment] = ACTIONS(39), }, [507] = { - [anon_sym_COMMA] = ACTIONS(1989), - [anon_sym_RPAREN] = ACTIONS(1989), + [anon_sym_COMMA] = ACTIONS(1978), + [anon_sym_RPAREN] = ACTIONS(1978), [sym_comment] = ACTIONS(39), }, [508] = { - [anon_sym_LF] = ACTIONS(1991), - [sym_preproc_arg] = ACTIONS(1991), + [anon_sym_LF] = ACTIONS(1980), + [sym_preproc_arg] = ACTIONS(1980), [sym_comment] = ACTIONS(49), }, [509] = { [aux_sym_preproc_params_repeat1] = STATE(509), - [anon_sym_COMMA] = ACTIONS(1993), - [anon_sym_RPAREN] = ACTIONS(1989), + [anon_sym_COMMA] = ACTIONS(1982), + [anon_sym_RPAREN] = ACTIONS(1978), [sym_comment] = ACTIONS(39), }, [510] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(654), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(654), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(654), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(654), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(654), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(654), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(654), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(654), - [sym_preproc_directive] = ACTIONS(654), - [anon_sym_SEMI] = ACTIONS(652), - [anon_sym_typedef] = ACTIONS(654), - [anon_sym_extern] = ACTIONS(654), - [anon_sym_LBRACE] = ACTIONS(652), - [anon_sym_LPAREN2] = ACTIONS(652), - [anon_sym_STAR] = ACTIONS(652), - [anon_sym_static] = ACTIONS(654), - [anon_sym_auto] = ACTIONS(654), - [anon_sym_register] = ACTIONS(654), - [anon_sym_inline] = ACTIONS(654), - [anon_sym_const] = ACTIONS(654), - [anon_sym_restrict] = ACTIONS(654), - [anon_sym_volatile] = ACTIONS(654), - [anon_sym__Atomic] = ACTIONS(654), - [anon_sym_unsigned] = ACTIONS(654), - [anon_sym_long] = ACTIONS(654), - [anon_sym_short] = ACTIONS(654), - [sym_primitive_type] = ACTIONS(654), - [anon_sym_enum] = ACTIONS(654), - [anon_sym_struct] = ACTIONS(654), - [anon_sym_union] = ACTIONS(654), - [anon_sym_if] = ACTIONS(654), - [anon_sym_switch] = ACTIONS(654), - [anon_sym_case] = ACTIONS(654), - [anon_sym_default] = ACTIONS(654), - [anon_sym_while] = ACTIONS(654), - [anon_sym_do] = ACTIONS(654), - [anon_sym_for] = ACTIONS(654), - [anon_sym_return] = ACTIONS(654), - [anon_sym_break] = ACTIONS(654), - [anon_sym_continue] = ACTIONS(654), - [anon_sym_goto] = ACTIONS(654), - [anon_sym_AMP] = ACTIONS(652), - [anon_sym_BANG] = ACTIONS(652), - [anon_sym_TILDE] = ACTIONS(652), - [anon_sym_PLUS] = ACTIONS(654), - [anon_sym_DASH] = ACTIONS(654), - [anon_sym_DASH_DASH] = ACTIONS(652), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_sizeof] = ACTIONS(654), - [sym_number_literal] = ACTIONS(652), - [anon_sym_SQUOTE] = ACTIONS(652), - [anon_sym_DQUOTE] = ACTIONS(652), - [sym_true] = ACTIONS(654), - [sym_false] = ACTIONS(654), - [sym_null] = ACTIONS(654), - [sym_identifier] = ACTIONS(654), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(650), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(650), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(650), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(650), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(650), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(650), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(650), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(650), + [sym_preproc_directive] = ACTIONS(650), + [anon_sym_SEMI] = ACTIONS(648), + [anon_sym_typedef] = ACTIONS(650), + [anon_sym_extern] = ACTIONS(650), + [anon_sym_LBRACE] = ACTIONS(648), + [anon_sym_LPAREN2] = ACTIONS(648), + [anon_sym_STAR] = ACTIONS(648), + [anon_sym_static] = ACTIONS(650), + [anon_sym_auto] = ACTIONS(650), + [anon_sym_register] = ACTIONS(650), + [anon_sym_inline] = ACTIONS(650), + [anon_sym_const] = ACTIONS(650), + [anon_sym_restrict] = ACTIONS(650), + [anon_sym_volatile] = ACTIONS(650), + [anon_sym__Atomic] = ACTIONS(650), + [anon_sym_unsigned] = ACTIONS(650), + [anon_sym_long] = ACTIONS(650), + [anon_sym_short] = ACTIONS(650), + [sym_primitive_type] = ACTIONS(650), + [anon_sym_enum] = ACTIONS(650), + [anon_sym_struct] = ACTIONS(650), + [anon_sym_union] = ACTIONS(650), + [anon_sym_if] = ACTIONS(650), + [anon_sym_switch] = ACTIONS(650), + [anon_sym_case] = ACTIONS(650), + [anon_sym_default] = ACTIONS(650), + [anon_sym_while] = ACTIONS(650), + [anon_sym_do] = ACTIONS(650), + [anon_sym_for] = ACTIONS(650), + [anon_sym_return] = ACTIONS(650), + [anon_sym_break] = ACTIONS(650), + [anon_sym_continue] = ACTIONS(650), + [anon_sym_goto] = ACTIONS(650), + [anon_sym_AMP] = ACTIONS(648), + [anon_sym_BANG] = ACTIONS(648), + [anon_sym_TILDE] = ACTIONS(648), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_DASH] = ACTIONS(650), + [anon_sym_DASH_DASH] = ACTIONS(648), + [anon_sym_PLUS_PLUS] = ACTIONS(648), + [anon_sym_sizeof] = ACTIONS(650), + [sym_number_literal] = ACTIONS(648), + [anon_sym_SQUOTE] = ACTIONS(648), + [anon_sym_DQUOTE] = ACTIONS(648), + [sym_true] = ACTIONS(650), + [sym_false] = ACTIONS(650), + [sym_null] = ACTIONS(650), + [sym_identifier] = ACTIONS(650), [sym_comment] = ACTIONS(39), }, [511] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(672), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(672), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(672), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(672), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(672), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(672), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(672), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(672), - [sym_preproc_directive] = ACTIONS(672), - [anon_sym_SEMI] = ACTIONS(670), - [anon_sym_typedef] = ACTIONS(672), - [anon_sym_extern] = ACTIONS(672), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_LPAREN2] = ACTIONS(670), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_static] = ACTIONS(672), - [anon_sym_auto] = ACTIONS(672), - [anon_sym_register] = ACTIONS(672), - [anon_sym_inline] = ACTIONS(672), - [anon_sym_const] = ACTIONS(672), - [anon_sym_restrict] = ACTIONS(672), - [anon_sym_volatile] = ACTIONS(672), - [anon_sym__Atomic] = ACTIONS(672), - [anon_sym_unsigned] = ACTIONS(672), - [anon_sym_long] = ACTIONS(672), - [anon_sym_short] = ACTIONS(672), - [sym_primitive_type] = ACTIONS(672), - [anon_sym_enum] = ACTIONS(672), - [anon_sym_struct] = ACTIONS(672), - [anon_sym_union] = ACTIONS(672), - [anon_sym_if] = ACTIONS(672), - [anon_sym_switch] = ACTIONS(672), - [anon_sym_case] = ACTIONS(672), - [anon_sym_default] = ACTIONS(672), - [anon_sym_while] = ACTIONS(672), - [anon_sym_do] = ACTIONS(672), - [anon_sym_for] = ACTIONS(672), - [anon_sym_return] = ACTIONS(672), - [anon_sym_break] = ACTIONS(672), - [anon_sym_continue] = ACTIONS(672), - [anon_sym_goto] = ACTIONS(672), - [anon_sym_AMP] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(670), - [anon_sym_TILDE] = ACTIONS(670), - [anon_sym_PLUS] = ACTIONS(672), - [anon_sym_DASH] = ACTIONS(672), - [anon_sym_DASH_DASH] = ACTIONS(670), - [anon_sym_PLUS_PLUS] = ACTIONS(670), - [anon_sym_sizeof] = ACTIONS(672), - [sym_number_literal] = ACTIONS(670), - [anon_sym_SQUOTE] = ACTIONS(670), - [anon_sym_DQUOTE] = ACTIONS(670), - [sym_true] = ACTIONS(672), - [sym_false] = ACTIONS(672), - [sym_null] = ACTIONS(672), - [sym_identifier] = ACTIONS(672), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(665), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(665), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(665), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(665), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(665), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(665), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(665), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(665), + [sym_preproc_directive] = ACTIONS(665), + [anon_sym_SEMI] = ACTIONS(663), + [anon_sym_typedef] = ACTIONS(665), + [anon_sym_extern] = ACTIONS(665), + [anon_sym_LBRACE] = ACTIONS(663), + [anon_sym_LPAREN2] = ACTIONS(663), + [anon_sym_STAR] = ACTIONS(663), + [anon_sym_static] = ACTIONS(665), + [anon_sym_auto] = ACTIONS(665), + [anon_sym_register] = ACTIONS(665), + [anon_sym_inline] = ACTIONS(665), + [anon_sym_const] = ACTIONS(665), + [anon_sym_restrict] = ACTIONS(665), + [anon_sym_volatile] = ACTIONS(665), + [anon_sym__Atomic] = ACTIONS(665), + [anon_sym_unsigned] = ACTIONS(665), + [anon_sym_long] = ACTIONS(665), + [anon_sym_short] = ACTIONS(665), + [sym_primitive_type] = ACTIONS(665), + [anon_sym_enum] = ACTIONS(665), + [anon_sym_struct] = ACTIONS(665), + [anon_sym_union] = ACTIONS(665), + [anon_sym_if] = ACTIONS(665), + [anon_sym_switch] = ACTIONS(665), + [anon_sym_case] = ACTIONS(665), + [anon_sym_default] = ACTIONS(665), + [anon_sym_while] = ACTIONS(665), + [anon_sym_do] = ACTIONS(665), + [anon_sym_for] = ACTIONS(665), + [anon_sym_return] = ACTIONS(665), + [anon_sym_break] = ACTIONS(665), + [anon_sym_continue] = ACTIONS(665), + [anon_sym_goto] = ACTIONS(665), + [anon_sym_AMP] = ACTIONS(663), + [anon_sym_BANG] = ACTIONS(663), + [anon_sym_TILDE] = ACTIONS(663), + [anon_sym_PLUS] = ACTIONS(665), + [anon_sym_DASH] = ACTIONS(665), + [anon_sym_DASH_DASH] = ACTIONS(663), + [anon_sym_PLUS_PLUS] = ACTIONS(663), + [anon_sym_sizeof] = ACTIONS(665), + [sym_number_literal] = ACTIONS(663), + [anon_sym_SQUOTE] = ACTIONS(663), + [anon_sym_DQUOTE] = ACTIONS(663), + [sym_true] = ACTIONS(665), + [sym_false] = ACTIONS(665), + [sym_null] = ACTIONS(665), + [sym_identifier] = ACTIONS(665), [sym_comment] = ACTIONS(39), }, [512] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(676), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(676), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(676), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(676), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(676), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(676), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(676), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(676), - [sym_preproc_directive] = ACTIONS(676), - [anon_sym_SEMI] = ACTIONS(674), - [anon_sym_typedef] = ACTIONS(676), - [anon_sym_extern] = ACTIONS(676), - [anon_sym_LBRACE] = ACTIONS(674), - [anon_sym_LPAREN2] = ACTIONS(674), - [anon_sym_STAR] = ACTIONS(674), - [anon_sym_static] = ACTIONS(676), - [anon_sym_auto] = ACTIONS(676), - [anon_sym_register] = ACTIONS(676), - [anon_sym_inline] = ACTIONS(676), - [anon_sym_const] = ACTIONS(676), - [anon_sym_restrict] = ACTIONS(676), - [anon_sym_volatile] = ACTIONS(676), - [anon_sym__Atomic] = ACTIONS(676), - [anon_sym_unsigned] = ACTIONS(676), - [anon_sym_long] = ACTIONS(676), - [anon_sym_short] = ACTIONS(676), - [sym_primitive_type] = ACTIONS(676), - [anon_sym_enum] = ACTIONS(676), - [anon_sym_struct] = ACTIONS(676), - [anon_sym_union] = ACTIONS(676), - [anon_sym_if] = ACTIONS(676), - [anon_sym_switch] = ACTIONS(676), - [anon_sym_case] = ACTIONS(676), - [anon_sym_default] = ACTIONS(676), - [anon_sym_while] = ACTIONS(676), - [anon_sym_do] = ACTIONS(676), - [anon_sym_for] = ACTIONS(676), - [anon_sym_return] = ACTIONS(676), - [anon_sym_break] = ACTIONS(676), - [anon_sym_continue] = ACTIONS(676), - [anon_sym_goto] = ACTIONS(676), - [anon_sym_AMP] = ACTIONS(674), - [anon_sym_BANG] = ACTIONS(674), - [anon_sym_TILDE] = ACTIONS(674), - [anon_sym_PLUS] = ACTIONS(676), - [anon_sym_DASH] = ACTIONS(676), - [anon_sym_DASH_DASH] = ACTIONS(674), - [anon_sym_PLUS_PLUS] = ACTIONS(674), - [anon_sym_sizeof] = ACTIONS(676), - [sym_number_literal] = ACTIONS(674), - [anon_sym_SQUOTE] = ACTIONS(674), - [anon_sym_DQUOTE] = ACTIONS(674), - [sym_true] = ACTIONS(676), - [sym_false] = ACTIONS(676), - [sym_null] = ACTIONS(676), - [sym_identifier] = ACTIONS(676), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(669), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(669), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(669), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(669), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(669), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(669), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(669), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(669), + [sym_preproc_directive] = ACTIONS(669), + [anon_sym_SEMI] = ACTIONS(667), + [anon_sym_typedef] = ACTIONS(669), + [anon_sym_extern] = ACTIONS(669), + [anon_sym_LBRACE] = ACTIONS(667), + [anon_sym_LPAREN2] = ACTIONS(667), + [anon_sym_STAR] = ACTIONS(667), + [anon_sym_static] = ACTIONS(669), + [anon_sym_auto] = ACTIONS(669), + [anon_sym_register] = ACTIONS(669), + [anon_sym_inline] = ACTIONS(669), + [anon_sym_const] = ACTIONS(669), + [anon_sym_restrict] = ACTIONS(669), + [anon_sym_volatile] = ACTIONS(669), + [anon_sym__Atomic] = ACTIONS(669), + [anon_sym_unsigned] = ACTIONS(669), + [anon_sym_long] = ACTIONS(669), + [anon_sym_short] = ACTIONS(669), + [sym_primitive_type] = ACTIONS(669), + [anon_sym_enum] = ACTIONS(669), + [anon_sym_struct] = ACTIONS(669), + [anon_sym_union] = ACTIONS(669), + [anon_sym_if] = ACTIONS(669), + [anon_sym_switch] = ACTIONS(669), + [anon_sym_case] = ACTIONS(669), + [anon_sym_default] = ACTIONS(669), + [anon_sym_while] = ACTIONS(669), + [anon_sym_do] = ACTIONS(669), + [anon_sym_for] = ACTIONS(669), + [anon_sym_return] = ACTIONS(669), + [anon_sym_break] = ACTIONS(669), + [anon_sym_continue] = ACTIONS(669), + [anon_sym_goto] = ACTIONS(669), + [anon_sym_AMP] = ACTIONS(667), + [anon_sym_BANG] = ACTIONS(667), + [anon_sym_TILDE] = ACTIONS(667), + [anon_sym_PLUS] = ACTIONS(669), + [anon_sym_DASH] = ACTIONS(669), + [anon_sym_DASH_DASH] = ACTIONS(667), + [anon_sym_PLUS_PLUS] = ACTIONS(667), + [anon_sym_sizeof] = ACTIONS(669), + [sym_number_literal] = ACTIONS(667), + [anon_sym_SQUOTE] = ACTIONS(667), + [anon_sym_DQUOTE] = ACTIONS(667), + [sym_true] = ACTIONS(669), + [sym_false] = ACTIONS(669), + [sym_null] = ACTIONS(669), + [sym_identifier] = ACTIONS(669), [sym_comment] = ACTIONS(39), }, [513] = { - [anon_sym_LF] = ACTIONS(1996), + [anon_sym_LF] = ACTIONS(1985), [sym_comment] = ACTIONS(49), }, [514] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(730), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(730), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(730), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(730), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(730), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(730), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(730), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(730), - [sym_preproc_directive] = ACTIONS(730), - [anon_sym_typedef] = ACTIONS(730), - [anon_sym_extern] = ACTIONS(730), - [anon_sym_static] = ACTIONS(730), - [anon_sym_auto] = ACTIONS(730), - [anon_sym_register] = ACTIONS(730), - [anon_sym_inline] = ACTIONS(730), - [anon_sym_const] = ACTIONS(730), - [anon_sym_restrict] = ACTIONS(730), - [anon_sym_volatile] = ACTIONS(730), - [anon_sym__Atomic] = ACTIONS(730), - [anon_sym_unsigned] = ACTIONS(730), - [anon_sym_long] = ACTIONS(730), - [anon_sym_short] = ACTIONS(730), - [sym_primitive_type] = ACTIONS(730), - [anon_sym_enum] = ACTIONS(730), - [anon_sym_struct] = ACTIONS(730), - [anon_sym_union] = ACTIONS(730), - [sym_identifier] = ACTIONS(730), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(721), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(721), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(721), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(721), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(721), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(721), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(721), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(721), + [sym_preproc_directive] = ACTIONS(721), + [anon_sym_typedef] = ACTIONS(721), + [anon_sym_extern] = ACTIONS(721), + [anon_sym_static] = ACTIONS(721), + [anon_sym_auto] = ACTIONS(721), + [anon_sym_register] = ACTIONS(721), + [anon_sym_inline] = ACTIONS(721), + [anon_sym_const] = ACTIONS(721), + [anon_sym_restrict] = ACTIONS(721), + [anon_sym_volatile] = ACTIONS(721), + [anon_sym__Atomic] = ACTIONS(721), + [anon_sym_unsigned] = ACTIONS(721), + [anon_sym_long] = ACTIONS(721), + [anon_sym_short] = ACTIONS(721), + [sym_primitive_type] = ACTIONS(721), + [anon_sym_enum] = ACTIONS(721), + [anon_sym_struct] = ACTIONS(721), + [anon_sym_union] = ACTIONS(721), + [sym_identifier] = ACTIONS(721), [sym_comment] = ACTIONS(39), }, [515] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1998), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1987), [sym_comment] = ACTIONS(39), }, [516] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(766), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(766), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(766), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(766), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(766), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(766), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(766), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(766), - [sym_preproc_directive] = ACTIONS(766), - [anon_sym_typedef] = ACTIONS(766), - [anon_sym_extern] = ACTIONS(766), - [anon_sym_static] = ACTIONS(766), - [anon_sym_auto] = ACTIONS(766), - [anon_sym_register] = ACTIONS(766), - [anon_sym_inline] = ACTIONS(766), - [anon_sym_const] = ACTIONS(766), - [anon_sym_restrict] = ACTIONS(766), - [anon_sym_volatile] = ACTIONS(766), - [anon_sym__Atomic] = ACTIONS(766), - [anon_sym_unsigned] = ACTIONS(766), - [anon_sym_long] = ACTIONS(766), - [anon_sym_short] = ACTIONS(766), - [sym_primitive_type] = ACTIONS(766), - [anon_sym_enum] = ACTIONS(766), - [anon_sym_struct] = ACTIONS(766), - [anon_sym_union] = ACTIONS(766), - [sym_identifier] = ACTIONS(766), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(757), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(757), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(757), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(757), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(757), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(757), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(757), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(757), + [sym_preproc_directive] = ACTIONS(757), + [anon_sym_typedef] = ACTIONS(757), + [anon_sym_extern] = ACTIONS(757), + [anon_sym_static] = ACTIONS(757), + [anon_sym_auto] = ACTIONS(757), + [anon_sym_register] = ACTIONS(757), + [anon_sym_inline] = ACTIONS(757), + [anon_sym_const] = ACTIONS(757), + [anon_sym_restrict] = ACTIONS(757), + [anon_sym_volatile] = ACTIONS(757), + [anon_sym__Atomic] = ACTIONS(757), + [anon_sym_unsigned] = ACTIONS(757), + [anon_sym_long] = ACTIONS(757), + [anon_sym_short] = ACTIONS(757), + [sym_primitive_type] = ACTIONS(757), + [anon_sym_enum] = ACTIONS(757), + [anon_sym_struct] = ACTIONS(757), + [anon_sym_union] = ACTIONS(757), + [sym_identifier] = ACTIONS(757), [sym_comment] = ACTIONS(39), }, [517] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2000), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1989), [sym_comment] = ACTIONS(39), }, [518] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(772), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(772), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(772), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(772), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(772), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(772), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(772), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(772), - [sym_preproc_directive] = ACTIONS(772), - [anon_sym_typedef] = ACTIONS(772), - [anon_sym_extern] = ACTIONS(772), - [anon_sym_static] = ACTIONS(772), - [anon_sym_auto] = ACTIONS(772), - [anon_sym_register] = ACTIONS(772), - [anon_sym_inline] = ACTIONS(772), - [anon_sym_const] = ACTIONS(772), - [anon_sym_restrict] = ACTIONS(772), - [anon_sym_volatile] = ACTIONS(772), - [anon_sym__Atomic] = ACTIONS(772), - [anon_sym_unsigned] = ACTIONS(772), - [anon_sym_long] = ACTIONS(772), - [anon_sym_short] = ACTIONS(772), - [sym_primitive_type] = ACTIONS(772), - [anon_sym_enum] = ACTIONS(772), - [anon_sym_struct] = ACTIONS(772), - [anon_sym_union] = ACTIONS(772), - [sym_identifier] = ACTIONS(772), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(763), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(763), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(763), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(763), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(763), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(763), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(763), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(763), + [sym_preproc_directive] = ACTIONS(763), + [anon_sym_typedef] = ACTIONS(763), + [anon_sym_extern] = ACTIONS(763), + [anon_sym_static] = ACTIONS(763), + [anon_sym_auto] = ACTIONS(763), + [anon_sym_register] = ACTIONS(763), + [anon_sym_inline] = ACTIONS(763), + [anon_sym_const] = ACTIONS(763), + [anon_sym_restrict] = ACTIONS(763), + [anon_sym_volatile] = ACTIONS(763), + [anon_sym__Atomic] = ACTIONS(763), + [anon_sym_unsigned] = ACTIONS(763), + [anon_sym_long] = ACTIONS(763), + [anon_sym_short] = ACTIONS(763), + [sym_primitive_type] = ACTIONS(763), + [anon_sym_enum] = ACTIONS(763), + [anon_sym_struct] = ACTIONS(763), + [anon_sym_union] = ACTIONS(763), + [sym_identifier] = ACTIONS(763), [sym_comment] = ACTIONS(39), }, [519] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2002), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1991), [sym_comment] = ACTIONS(39), }, [520] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(328), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(328), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(328), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(328), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(328), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(328), - [sym_preproc_directive] = ACTIONS(328), - [anon_sym_SEMI] = ACTIONS(326), - [anon_sym_typedef] = ACTIONS(328), - [anon_sym_extern] = ACTIONS(328), - [anon_sym_LBRACE] = ACTIONS(326), - [anon_sym_LPAREN2] = ACTIONS(326), - [anon_sym_STAR] = ACTIONS(326), - [anon_sym_static] = ACTIONS(328), - [anon_sym_auto] = ACTIONS(328), - [anon_sym_register] = ACTIONS(328), - [anon_sym_inline] = ACTIONS(328), - [anon_sym_const] = ACTIONS(328), - [anon_sym_restrict] = ACTIONS(328), - [anon_sym_volatile] = ACTIONS(328), - [anon_sym__Atomic] = ACTIONS(328), - [anon_sym_unsigned] = ACTIONS(328), - [anon_sym_long] = ACTIONS(328), - [anon_sym_short] = ACTIONS(328), - [sym_primitive_type] = ACTIONS(328), - [anon_sym_enum] = ACTIONS(328), - [anon_sym_struct] = ACTIONS(328), - [anon_sym_union] = ACTIONS(328), - [anon_sym_if] = ACTIONS(328), - [anon_sym_switch] = ACTIONS(328), - [anon_sym_case] = ACTIONS(328), - [anon_sym_default] = ACTIONS(328), - [anon_sym_while] = ACTIONS(328), - [anon_sym_do] = ACTIONS(328), - [anon_sym_for] = ACTIONS(328), - [anon_sym_return] = ACTIONS(328), - [anon_sym_break] = ACTIONS(328), - [anon_sym_continue] = ACTIONS(328), - [anon_sym_goto] = ACTIONS(328), - [anon_sym_AMP] = ACTIONS(326), - [anon_sym_BANG] = ACTIONS(326), - [anon_sym_TILDE] = ACTIONS(326), - [anon_sym_PLUS] = ACTIONS(328), - [anon_sym_DASH] = ACTIONS(328), - [anon_sym_DASH_DASH] = ACTIONS(326), - [anon_sym_PLUS_PLUS] = ACTIONS(326), - [anon_sym_sizeof] = ACTIONS(328), - [sym_number_literal] = ACTIONS(326), - [anon_sym_SQUOTE] = ACTIONS(326), - [anon_sym_DQUOTE] = ACTIONS(326), - [sym_true] = ACTIONS(328), - [sym_false] = ACTIONS(328), - [sym_null] = ACTIONS(328), - [sym_identifier] = ACTIONS(328), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(326), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(326), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(326), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(326), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(326), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(326), + [sym_preproc_directive] = ACTIONS(326), + [anon_sym_SEMI] = ACTIONS(324), + [anon_sym_typedef] = ACTIONS(326), + [anon_sym_extern] = ACTIONS(326), + [anon_sym_LBRACE] = ACTIONS(324), + [anon_sym_LPAREN2] = ACTIONS(324), + [anon_sym_STAR] = ACTIONS(324), + [anon_sym_static] = ACTIONS(326), + [anon_sym_auto] = ACTIONS(326), + [anon_sym_register] = ACTIONS(326), + [anon_sym_inline] = ACTIONS(326), + [anon_sym_const] = ACTIONS(326), + [anon_sym_restrict] = ACTIONS(326), + [anon_sym_volatile] = ACTIONS(326), + [anon_sym__Atomic] = ACTIONS(326), + [anon_sym_unsigned] = ACTIONS(326), + [anon_sym_long] = ACTIONS(326), + [anon_sym_short] = ACTIONS(326), + [sym_primitive_type] = ACTIONS(326), + [anon_sym_enum] = ACTIONS(326), + [anon_sym_struct] = ACTIONS(326), + [anon_sym_union] = ACTIONS(326), + [anon_sym_if] = ACTIONS(326), + [anon_sym_switch] = ACTIONS(326), + [anon_sym_case] = ACTIONS(326), + [anon_sym_default] = ACTIONS(326), + [anon_sym_while] = ACTIONS(326), + [anon_sym_do] = ACTIONS(326), + [anon_sym_for] = ACTIONS(326), + [anon_sym_return] = ACTIONS(326), + [anon_sym_break] = ACTIONS(326), + [anon_sym_continue] = ACTIONS(326), + [anon_sym_goto] = ACTIONS(326), + [anon_sym_AMP] = ACTIONS(324), + [anon_sym_BANG] = ACTIONS(324), + [anon_sym_TILDE] = ACTIONS(324), + [anon_sym_PLUS] = ACTIONS(326), + [anon_sym_DASH] = ACTIONS(326), + [anon_sym_DASH_DASH] = ACTIONS(324), + [anon_sym_PLUS_PLUS] = ACTIONS(324), + [anon_sym_sizeof] = ACTIONS(326), + [sym_number_literal] = ACTIONS(324), + [anon_sym_SQUOTE] = ACTIONS(324), + [anon_sym_DQUOTE] = ACTIONS(324), + [sym_true] = ACTIONS(326), + [sym_false] = ACTIONS(326), + [sym_null] = ACTIONS(326), + [sym_identifier] = ACTIONS(326), [sym_comment] = ACTIONS(39), }, [521] = { [aux_sym_string_literal_repeat1] = STATE(136), - [anon_sym_DQUOTE] = ACTIONS(2004), - [aux_sym_SLASH_LBRACK_CARET_BSLASH_BSLASH_DQUOTE_BSLASHn_RBRACK_SLASH] = ACTIONS(332), - [sym_escape_sequence] = ACTIONS(334), + [anon_sym_DQUOTE] = ACTIONS(1993), + [aux_sym_SLASH_LBRACK_CARET_BSLASH_BSLASH_DQUOTE_BSLASHn_RBRACK_SLASH] = ACTIONS(330), + [sym_escape_sequence] = ACTIONS(330), [sym_comment] = ACTIONS(49), }, [522] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(338), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(338), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(338), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(338), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(338), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(338), - [sym_preproc_directive] = ACTIONS(338), - [anon_sym_SEMI] = ACTIONS(336), - [anon_sym_typedef] = ACTIONS(338), - [anon_sym_extern] = ACTIONS(338), - [anon_sym_LBRACE] = ACTIONS(336), - [anon_sym_LPAREN2] = ACTIONS(336), - [anon_sym_STAR] = ACTIONS(336), - [anon_sym_static] = ACTIONS(338), - [anon_sym_auto] = ACTIONS(338), - [anon_sym_register] = ACTIONS(338), - [anon_sym_inline] = ACTIONS(338), - [anon_sym_const] = ACTIONS(338), - [anon_sym_restrict] = ACTIONS(338), - [anon_sym_volatile] = ACTIONS(338), - [anon_sym__Atomic] = ACTIONS(338), - [anon_sym_unsigned] = ACTIONS(338), - [anon_sym_long] = ACTIONS(338), - [anon_sym_short] = ACTIONS(338), - [sym_primitive_type] = ACTIONS(338), - [anon_sym_enum] = ACTIONS(338), - [anon_sym_struct] = ACTIONS(338), - [anon_sym_union] = ACTIONS(338), - [anon_sym_if] = ACTIONS(338), - [anon_sym_switch] = ACTIONS(338), - [anon_sym_case] = ACTIONS(338), - [anon_sym_default] = ACTIONS(338), - [anon_sym_while] = ACTIONS(338), - [anon_sym_do] = ACTIONS(338), - [anon_sym_for] = ACTIONS(338), - [anon_sym_return] = ACTIONS(338), - [anon_sym_break] = ACTIONS(338), - [anon_sym_continue] = ACTIONS(338), - [anon_sym_goto] = ACTIONS(338), - [anon_sym_AMP] = ACTIONS(336), - [anon_sym_BANG] = ACTIONS(336), - [anon_sym_TILDE] = ACTIONS(336), - [anon_sym_PLUS] = ACTIONS(338), - [anon_sym_DASH] = ACTIONS(338), - [anon_sym_DASH_DASH] = ACTIONS(336), - [anon_sym_PLUS_PLUS] = ACTIONS(336), - [anon_sym_sizeof] = ACTIONS(338), - [sym_number_literal] = ACTIONS(336), - [anon_sym_SQUOTE] = ACTIONS(336), - [anon_sym_DQUOTE] = ACTIONS(336), - [sym_true] = ACTIONS(338), - [sym_false] = ACTIONS(338), - [sym_null] = ACTIONS(338), - [sym_identifier] = ACTIONS(338), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(334), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(334), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(334), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(334), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(334), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(334), + [sym_preproc_directive] = ACTIONS(334), + [anon_sym_SEMI] = ACTIONS(332), + [anon_sym_typedef] = ACTIONS(334), + [anon_sym_extern] = ACTIONS(334), + [anon_sym_LBRACE] = ACTIONS(332), + [anon_sym_LPAREN2] = ACTIONS(332), + [anon_sym_STAR] = ACTIONS(332), + [anon_sym_static] = ACTIONS(334), + [anon_sym_auto] = ACTIONS(334), + [anon_sym_register] = ACTIONS(334), + [anon_sym_inline] = ACTIONS(334), + [anon_sym_const] = ACTIONS(334), + [anon_sym_restrict] = ACTIONS(334), + [anon_sym_volatile] = ACTIONS(334), + [anon_sym__Atomic] = ACTIONS(334), + [anon_sym_unsigned] = ACTIONS(334), + [anon_sym_long] = ACTIONS(334), + [anon_sym_short] = ACTIONS(334), + [sym_primitive_type] = ACTIONS(334), + [anon_sym_enum] = ACTIONS(334), + [anon_sym_struct] = ACTIONS(334), + [anon_sym_union] = ACTIONS(334), + [anon_sym_if] = ACTIONS(334), + [anon_sym_switch] = ACTIONS(334), + [anon_sym_case] = ACTIONS(334), + [anon_sym_default] = ACTIONS(334), + [anon_sym_while] = ACTIONS(334), + [anon_sym_do] = ACTIONS(334), + [anon_sym_for] = ACTIONS(334), + [anon_sym_return] = ACTIONS(334), + [anon_sym_break] = ACTIONS(334), + [anon_sym_continue] = ACTIONS(334), + [anon_sym_goto] = ACTIONS(334), + [anon_sym_AMP] = ACTIONS(332), + [anon_sym_BANG] = ACTIONS(332), + [anon_sym_TILDE] = ACTIONS(332), + [anon_sym_PLUS] = ACTIONS(334), + [anon_sym_DASH] = ACTIONS(334), + [anon_sym_DASH_DASH] = ACTIONS(332), + [anon_sym_PLUS_PLUS] = ACTIONS(332), + [anon_sym_sizeof] = ACTIONS(334), + [sym_number_literal] = ACTIONS(332), + [anon_sym_SQUOTE] = ACTIONS(332), + [anon_sym_DQUOTE] = ACTIONS(332), + [sym_true] = ACTIONS(334), + [sym_false] = ACTIONS(334), + [sym_null] = ACTIONS(334), + [sym_identifier] = ACTIONS(334), [sym_comment] = ACTIONS(39), }, [523] = { - [anon_sym_LF] = ACTIONS(2006), + [anon_sym_LF] = ACTIONS(1995), [sym_comment] = ACTIONS(49), }, [524] = { - [anon_sym_LF] = ACTIONS(2008), - [sym_preproc_arg] = ACTIONS(2010), + [anon_sym_LF] = ACTIONS(1997), + [sym_preproc_arg] = ACTIONS(1999), [sym_comment] = ACTIONS(49), }, [525] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(360), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(360), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(360), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(360), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(360), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(360), - [sym_preproc_directive] = ACTIONS(360), - [anon_sym_typedef] = ACTIONS(360), - [anon_sym_extern] = ACTIONS(360), - [anon_sym_static] = ACTIONS(360), - [anon_sym_auto] = ACTIONS(360), - [anon_sym_register] = ACTIONS(360), - [anon_sym_inline] = ACTIONS(360), - [anon_sym_const] = ACTIONS(360), - [anon_sym_restrict] = ACTIONS(360), - [anon_sym_volatile] = ACTIONS(360), - [anon_sym__Atomic] = ACTIONS(360), - [anon_sym_unsigned] = ACTIONS(360), - [anon_sym_long] = ACTIONS(360), - [anon_sym_short] = ACTIONS(360), - [sym_primitive_type] = ACTIONS(360), - [anon_sym_enum] = ACTIONS(360), - [anon_sym_struct] = ACTIONS(360), - [anon_sym_union] = ACTIONS(360), - [sym_identifier] = ACTIONS(360), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(356), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(356), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(356), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(356), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(356), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(356), + [sym_preproc_directive] = ACTIONS(356), + [anon_sym_typedef] = ACTIONS(356), + [anon_sym_extern] = ACTIONS(356), + [anon_sym_static] = ACTIONS(356), + [anon_sym_auto] = ACTIONS(356), + [anon_sym_register] = ACTIONS(356), + [anon_sym_inline] = ACTIONS(356), + [anon_sym_const] = ACTIONS(356), + [anon_sym_restrict] = ACTIONS(356), + [anon_sym_volatile] = ACTIONS(356), + [anon_sym__Atomic] = ACTIONS(356), + [anon_sym_unsigned] = ACTIONS(356), + [anon_sym_long] = ACTIONS(356), + [anon_sym_short] = ACTIONS(356), + [sym_primitive_type] = ACTIONS(356), + [anon_sym_enum] = ACTIONS(356), + [anon_sym_struct] = ACTIONS(356), + [anon_sym_union] = ACTIONS(356), + [sym_identifier] = ACTIONS(356), [sym_comment] = ACTIONS(39), }, [526] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2012), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2001), [sym_comment] = ACTIONS(39), }, [527] = { @@ -21182,17 +21201,17 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_translation_unit_repeat1] = STATE(169), [aux_sym__declaration_specifiers_repeat1] = STATE(20), [aux_sym_sized_type_specifier_repeat1] = STATE(21), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(133), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(135), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(137), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2014), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(141), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(143), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(145), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(147), - [sym_preproc_directive] = ACTIONS(149), - [anon_sym_typedef] = ACTIONS(151), - [anon_sym_extern] = ACTIONS(153), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(131), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(133), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(135), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2003), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(139), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(141), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(143), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(145), + [sym_preproc_directive] = ACTIONS(147), + [anon_sym_typedef] = ACTIONS(149), + [anon_sym_extern] = ACTIONS(151), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -21212,35 +21231,35 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(39), }, [528] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(402), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(402), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(402), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(402), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(402), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(402), - [sym_preproc_directive] = ACTIONS(402), - [anon_sym_typedef] = ACTIONS(402), - [anon_sym_extern] = ACTIONS(402), - [anon_sym_static] = ACTIONS(402), - [anon_sym_auto] = ACTIONS(402), - [anon_sym_register] = ACTIONS(402), - [anon_sym_inline] = ACTIONS(402), - [anon_sym_const] = ACTIONS(402), - [anon_sym_restrict] = ACTIONS(402), - [anon_sym_volatile] = ACTIONS(402), - [anon_sym__Atomic] = ACTIONS(402), - [anon_sym_unsigned] = ACTIONS(402), - [anon_sym_long] = ACTIONS(402), - [anon_sym_short] = ACTIONS(402), - [sym_primitive_type] = ACTIONS(402), - [anon_sym_enum] = ACTIONS(402), - [anon_sym_struct] = ACTIONS(402), - [anon_sym_union] = ACTIONS(402), - [sym_identifier] = ACTIONS(402), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(398), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(398), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(398), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(398), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(398), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(398), + [sym_preproc_directive] = ACTIONS(398), + [anon_sym_typedef] = ACTIONS(398), + [anon_sym_extern] = ACTIONS(398), + [anon_sym_static] = ACTIONS(398), + [anon_sym_auto] = ACTIONS(398), + [anon_sym_register] = ACTIONS(398), + [anon_sym_inline] = ACTIONS(398), + [anon_sym_const] = ACTIONS(398), + [anon_sym_restrict] = ACTIONS(398), + [anon_sym_volatile] = ACTIONS(398), + [anon_sym__Atomic] = ACTIONS(398), + [anon_sym_unsigned] = ACTIONS(398), + [anon_sym_long] = ACTIONS(398), + [anon_sym_short] = ACTIONS(398), + [sym_primitive_type] = ACTIONS(398), + [anon_sym_enum] = ACTIONS(398), + [anon_sym_struct] = ACTIONS(398), + [anon_sym_union] = ACTIONS(398), + [sym_identifier] = ACTIONS(398), [sym_comment] = ACTIONS(39), }, [529] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2016), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2005), [sym_comment] = ACTIONS(39), }, [530] = { @@ -21269,17 +21288,17 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_translation_unit_repeat1] = STATE(169), [aux_sym__declaration_specifiers_repeat1] = STATE(20), [aux_sym_sized_type_specifier_repeat1] = STATE(21), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(133), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(135), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(137), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2018), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(141), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(143), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(145), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(147), - [sym_preproc_directive] = ACTIONS(149), - [anon_sym_typedef] = ACTIONS(151), - [anon_sym_extern] = ACTIONS(153), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(131), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(133), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(135), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2007), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(139), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(141), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(143), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(145), + [sym_preproc_directive] = ACTIONS(147), + [anon_sym_typedef] = ACTIONS(149), + [anon_sym_extern] = ACTIONS(151), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -21299,35 +21318,35 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(39), }, [531] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(410), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(410), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(410), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(410), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(410), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(410), - [sym_preproc_directive] = ACTIONS(410), - [anon_sym_typedef] = ACTIONS(410), - [anon_sym_extern] = ACTIONS(410), - [anon_sym_static] = ACTIONS(410), - [anon_sym_auto] = ACTIONS(410), - [anon_sym_register] = ACTIONS(410), - [anon_sym_inline] = ACTIONS(410), - [anon_sym_const] = ACTIONS(410), - [anon_sym_restrict] = ACTIONS(410), - [anon_sym_volatile] = ACTIONS(410), - [anon_sym__Atomic] = ACTIONS(410), - [anon_sym_unsigned] = ACTIONS(410), - [anon_sym_long] = ACTIONS(410), - [anon_sym_short] = ACTIONS(410), - [sym_primitive_type] = ACTIONS(410), - [anon_sym_enum] = ACTIONS(410), - [anon_sym_struct] = ACTIONS(410), - [anon_sym_union] = ACTIONS(410), - [sym_identifier] = ACTIONS(410), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(406), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(406), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(406), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(406), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(406), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(406), + [sym_preproc_directive] = ACTIONS(406), + [anon_sym_typedef] = ACTIONS(406), + [anon_sym_extern] = ACTIONS(406), + [anon_sym_static] = ACTIONS(406), + [anon_sym_auto] = ACTIONS(406), + [anon_sym_register] = ACTIONS(406), + [anon_sym_inline] = ACTIONS(406), + [anon_sym_const] = ACTIONS(406), + [anon_sym_restrict] = ACTIONS(406), + [anon_sym_volatile] = ACTIONS(406), + [anon_sym__Atomic] = ACTIONS(406), + [anon_sym_unsigned] = ACTIONS(406), + [anon_sym_long] = ACTIONS(406), + [anon_sym_short] = ACTIONS(406), + [sym_primitive_type] = ACTIONS(406), + [anon_sym_enum] = ACTIONS(406), + [anon_sym_struct] = ACTIONS(406), + [anon_sym_union] = ACTIONS(406), + [sym_identifier] = ACTIONS(406), [sym_comment] = ACTIONS(39), }, [532] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2020), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2009), [sym_comment] = ACTIONS(39), }, [533] = { @@ -21356,17 +21375,17 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_translation_unit_repeat1] = STATE(169), [aux_sym__declaration_specifiers_repeat1] = STATE(20), [aux_sym_sized_type_specifier_repeat1] = STATE(21), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(133), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(135), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(137), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2022), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(141), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(143), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(145), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(147), - [sym_preproc_directive] = ACTIONS(149), - [anon_sym_typedef] = ACTIONS(151), - [anon_sym_extern] = ACTIONS(153), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(131), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(133), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(135), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2011), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(139), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(141), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(143), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(145), + [sym_preproc_directive] = ACTIONS(147), + [anon_sym_typedef] = ACTIONS(149), + [anon_sym_extern] = ACTIONS(151), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -21386,67 +21405,67 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(39), }, [534] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(418), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(418), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(418), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(418), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(418), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(418), - [sym_preproc_directive] = ACTIONS(418), - [anon_sym_SEMI] = ACTIONS(416), - [anon_sym_typedef] = ACTIONS(418), - [anon_sym_extern] = ACTIONS(418), - [anon_sym_LBRACE] = ACTIONS(416), - [anon_sym_LPAREN2] = ACTIONS(416), - [anon_sym_STAR] = ACTIONS(416), - [anon_sym_static] = ACTIONS(418), - [anon_sym_auto] = ACTIONS(418), - [anon_sym_register] = ACTIONS(418), - [anon_sym_inline] = ACTIONS(418), - [anon_sym_const] = ACTIONS(418), - [anon_sym_restrict] = ACTIONS(418), - [anon_sym_volatile] = ACTIONS(418), - [anon_sym__Atomic] = ACTIONS(418), - [anon_sym_unsigned] = ACTIONS(418), - [anon_sym_long] = ACTIONS(418), - [anon_sym_short] = ACTIONS(418), - [sym_primitive_type] = ACTIONS(418), - [anon_sym_enum] = ACTIONS(418), - [anon_sym_struct] = ACTIONS(418), - [anon_sym_union] = ACTIONS(418), - [anon_sym_if] = ACTIONS(418), - [anon_sym_switch] = ACTIONS(418), - [anon_sym_case] = ACTIONS(418), - [anon_sym_default] = ACTIONS(418), - [anon_sym_while] = ACTIONS(418), - [anon_sym_do] = ACTIONS(418), - [anon_sym_for] = ACTIONS(418), - [anon_sym_return] = ACTIONS(418), - [anon_sym_break] = ACTIONS(418), - [anon_sym_continue] = ACTIONS(418), - [anon_sym_goto] = ACTIONS(418), - [anon_sym_AMP] = ACTIONS(416), - [anon_sym_BANG] = ACTIONS(416), - [anon_sym_TILDE] = ACTIONS(416), - [anon_sym_PLUS] = ACTIONS(418), - [anon_sym_DASH] = ACTIONS(418), - [anon_sym_DASH_DASH] = ACTIONS(416), - [anon_sym_PLUS_PLUS] = ACTIONS(416), - [anon_sym_sizeof] = ACTIONS(418), - [sym_number_literal] = ACTIONS(416), - [anon_sym_SQUOTE] = ACTIONS(416), - [anon_sym_DQUOTE] = ACTIONS(416), - [sym_true] = ACTIONS(418), - [sym_false] = ACTIONS(418), - [sym_null] = ACTIONS(418), - [sym_identifier] = ACTIONS(418), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(414), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(414), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(414), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(414), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(414), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(414), + [sym_preproc_directive] = ACTIONS(414), + [anon_sym_SEMI] = ACTIONS(412), + [anon_sym_typedef] = ACTIONS(414), + [anon_sym_extern] = ACTIONS(414), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_LPAREN2] = ACTIONS(412), + [anon_sym_STAR] = ACTIONS(412), + [anon_sym_static] = ACTIONS(414), + [anon_sym_auto] = ACTIONS(414), + [anon_sym_register] = ACTIONS(414), + [anon_sym_inline] = ACTIONS(414), + [anon_sym_const] = ACTIONS(414), + [anon_sym_restrict] = ACTIONS(414), + [anon_sym_volatile] = ACTIONS(414), + [anon_sym__Atomic] = ACTIONS(414), + [anon_sym_unsigned] = ACTIONS(414), + [anon_sym_long] = ACTIONS(414), + [anon_sym_short] = ACTIONS(414), + [sym_primitive_type] = ACTIONS(414), + [anon_sym_enum] = ACTIONS(414), + [anon_sym_struct] = ACTIONS(414), + [anon_sym_union] = ACTIONS(414), + [anon_sym_if] = ACTIONS(414), + [anon_sym_switch] = ACTIONS(414), + [anon_sym_case] = ACTIONS(414), + [anon_sym_default] = ACTIONS(414), + [anon_sym_while] = ACTIONS(414), + [anon_sym_do] = ACTIONS(414), + [anon_sym_for] = ACTIONS(414), + [anon_sym_return] = ACTIONS(414), + [anon_sym_break] = ACTIONS(414), + [anon_sym_continue] = ACTIONS(414), + [anon_sym_goto] = ACTIONS(414), + [anon_sym_AMP] = ACTIONS(412), + [anon_sym_BANG] = ACTIONS(412), + [anon_sym_TILDE] = ACTIONS(412), + [anon_sym_PLUS] = ACTIONS(414), + [anon_sym_DASH] = ACTIONS(414), + [anon_sym_DASH_DASH] = ACTIONS(412), + [anon_sym_PLUS_PLUS] = ACTIONS(412), + [anon_sym_sizeof] = ACTIONS(414), + [sym_number_literal] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(412), + [anon_sym_DQUOTE] = ACTIONS(412), + [sym_true] = ACTIONS(414), + [sym_false] = ACTIONS(414), + [sym_null] = ACTIONS(414), + [sym_identifier] = ACTIONS(414), [sym_comment] = ACTIONS(39), }, [535] = { [sym_parameter_list] = STATE(180), - [anon_sym_SEMI] = ACTIONS(2024), - [anon_sym_LPAREN2] = ACTIONS(243), - [anon_sym_LBRACK] = ACTIONS(428), + [anon_sym_SEMI] = ACTIONS(2013), + [anon_sym_LPAREN2] = ACTIONS(241), + [anon_sym_LBRACK] = ACTIONS(424), [sym_comment] = ACTIONS(39), }, [536] = { @@ -21454,9 +21473,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_pointer_type_declarator] = STATE(86), [sym_function_type_declarator] = STATE(87), [sym_array_type_declarator] = STATE(88), - [anon_sym_LPAREN2] = ACTIONS(165), - [anon_sym_STAR] = ACTIONS(167), - [sym_identifier] = ACTIONS(169), + [anon_sym_LPAREN2] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(165), + [sym_identifier] = ACTIONS(167), [sym_comment] = ACTIONS(39), }, [537] = { @@ -21491,7 +21510,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_directive] = ACTIONS(17), [anon_sym_typedef] = ACTIONS(19), [anon_sym_extern] = ACTIONS(21), - [anon_sym_RBRACE] = ACTIONS(2026), + [anon_sym_RBRACE] = ACTIONS(2015), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -21511,31 +21530,31 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(39), }, [538] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(448), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(448), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(448), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(448), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(448), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(448), - [sym_preproc_directive] = ACTIONS(448), - [anon_sym_typedef] = ACTIONS(448), - [anon_sym_extern] = ACTIONS(448), - [anon_sym_static] = ACTIONS(448), - [anon_sym_auto] = ACTIONS(448), - [anon_sym_register] = ACTIONS(448), - [anon_sym_inline] = ACTIONS(448), - [anon_sym_const] = ACTIONS(448), - [anon_sym_restrict] = ACTIONS(448), - [anon_sym_volatile] = ACTIONS(448), - [anon_sym__Atomic] = ACTIONS(448), - [anon_sym_unsigned] = ACTIONS(448), - [anon_sym_long] = ACTIONS(448), - [anon_sym_short] = ACTIONS(448), - [sym_primitive_type] = ACTIONS(448), - [anon_sym_enum] = ACTIONS(448), - [anon_sym_struct] = ACTIONS(448), - [anon_sym_union] = ACTIONS(448), - [sym_identifier] = ACTIONS(448), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(444), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(444), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(444), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(444), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(444), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(444), + [sym_preproc_directive] = ACTIONS(444), + [anon_sym_typedef] = ACTIONS(444), + [anon_sym_extern] = ACTIONS(444), + [anon_sym_static] = ACTIONS(444), + [anon_sym_auto] = ACTIONS(444), + [anon_sym_register] = ACTIONS(444), + [anon_sym_inline] = ACTIONS(444), + [anon_sym_const] = ACTIONS(444), + [anon_sym_restrict] = ACTIONS(444), + [anon_sym_volatile] = ACTIONS(444), + [anon_sym__Atomic] = ACTIONS(444), + [anon_sym_unsigned] = ACTIONS(444), + [anon_sym_long] = ACTIONS(444), + [anon_sym_short] = ACTIONS(444), + [sym_primitive_type] = ACTIONS(444), + [anon_sym_enum] = ACTIONS(444), + [anon_sym_struct] = ACTIONS(444), + [anon_sym_union] = ACTIONS(444), + [sym_identifier] = ACTIONS(444), [sym_comment] = ACTIONS(39), }, [539] = { @@ -21546,65 +21565,65 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_init_declarator] = STATE(311), [anon_sym_LPAREN2] = ACTIONS(92), [anon_sym_STAR] = ACTIONS(94), - [sym_identifier] = ACTIONS(716), + [sym_identifier] = ACTIONS(707), [sym_comment] = ACTIONS(39), }, [540] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(540), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(540), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(540), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(540), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(540), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(540), - [sym_preproc_directive] = ACTIONS(540), - [anon_sym_SEMI] = ACTIONS(538), - [anon_sym_typedef] = ACTIONS(540), - [anon_sym_extern] = ACTIONS(540), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_LPAREN2] = ACTIONS(538), - [anon_sym_STAR] = ACTIONS(538), - [anon_sym_static] = ACTIONS(540), - [anon_sym_auto] = ACTIONS(540), - [anon_sym_register] = ACTIONS(540), - [anon_sym_inline] = ACTIONS(540), - [anon_sym_const] = ACTIONS(540), - [anon_sym_restrict] = ACTIONS(540), - [anon_sym_volatile] = ACTIONS(540), - [anon_sym__Atomic] = ACTIONS(540), - [anon_sym_unsigned] = ACTIONS(540), - [anon_sym_long] = ACTIONS(540), - [anon_sym_short] = ACTIONS(540), - [sym_primitive_type] = ACTIONS(540), - [anon_sym_enum] = ACTIONS(540), - [anon_sym_struct] = ACTIONS(540), - [anon_sym_union] = ACTIONS(540), - [anon_sym_if] = ACTIONS(540), - [anon_sym_else] = ACTIONS(540), - [anon_sym_switch] = ACTIONS(540), - [anon_sym_case] = ACTIONS(540), - [anon_sym_default] = ACTIONS(540), - [anon_sym_while] = ACTIONS(540), - [anon_sym_do] = ACTIONS(540), - [anon_sym_for] = ACTIONS(540), - [anon_sym_return] = ACTIONS(540), - [anon_sym_break] = ACTIONS(540), - [anon_sym_continue] = ACTIONS(540), - [anon_sym_goto] = ACTIONS(540), - [anon_sym_AMP] = ACTIONS(538), - [anon_sym_BANG] = ACTIONS(538), - [anon_sym_TILDE] = ACTIONS(538), - [anon_sym_PLUS] = ACTIONS(540), - [anon_sym_DASH] = ACTIONS(540), - [anon_sym_DASH_DASH] = ACTIONS(538), - [anon_sym_PLUS_PLUS] = ACTIONS(538), - [anon_sym_sizeof] = ACTIONS(540), - [sym_number_literal] = ACTIONS(538), - [anon_sym_SQUOTE] = ACTIONS(538), - [anon_sym_DQUOTE] = ACTIONS(538), - [sym_true] = ACTIONS(540), - [sym_false] = ACTIONS(540), - [sym_null] = ACTIONS(540), - [sym_identifier] = ACTIONS(540), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(536), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(536), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(536), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(536), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(536), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(536), + [sym_preproc_directive] = ACTIONS(536), + [anon_sym_SEMI] = ACTIONS(534), + [anon_sym_typedef] = ACTIONS(536), + [anon_sym_extern] = ACTIONS(536), + [anon_sym_LBRACE] = ACTIONS(534), + [anon_sym_LPAREN2] = ACTIONS(534), + [anon_sym_STAR] = ACTIONS(534), + [anon_sym_static] = ACTIONS(536), + [anon_sym_auto] = ACTIONS(536), + [anon_sym_register] = ACTIONS(536), + [anon_sym_inline] = ACTIONS(536), + [anon_sym_const] = ACTIONS(536), + [anon_sym_restrict] = ACTIONS(536), + [anon_sym_volatile] = ACTIONS(536), + [anon_sym__Atomic] = ACTIONS(536), + [anon_sym_unsigned] = ACTIONS(536), + [anon_sym_long] = ACTIONS(536), + [anon_sym_short] = ACTIONS(536), + [sym_primitive_type] = ACTIONS(536), + [anon_sym_enum] = ACTIONS(536), + [anon_sym_struct] = ACTIONS(536), + [anon_sym_union] = ACTIONS(536), + [anon_sym_if] = ACTIONS(536), + [anon_sym_else] = ACTIONS(536), + [anon_sym_switch] = ACTIONS(536), + [anon_sym_case] = ACTIONS(536), + [anon_sym_default] = ACTIONS(536), + [anon_sym_while] = ACTIONS(536), + [anon_sym_do] = ACTIONS(536), + [anon_sym_for] = ACTIONS(536), + [anon_sym_return] = ACTIONS(536), + [anon_sym_break] = ACTIONS(536), + [anon_sym_continue] = ACTIONS(536), + [anon_sym_goto] = ACTIONS(536), + [anon_sym_AMP] = ACTIONS(534), + [anon_sym_BANG] = ACTIONS(534), + [anon_sym_TILDE] = ACTIONS(534), + [anon_sym_PLUS] = ACTIONS(536), + [anon_sym_DASH] = ACTIONS(536), + [anon_sym_DASH_DASH] = ACTIONS(534), + [anon_sym_PLUS_PLUS] = ACTIONS(534), + [anon_sym_sizeof] = ACTIONS(536), + [sym_number_literal] = ACTIONS(534), + [anon_sym_SQUOTE] = ACTIONS(534), + [anon_sym_DQUOTE] = ACTIONS(534), + [sym_true] = ACTIONS(536), + [sym_false] = ACTIONS(536), + [sym_null] = ACTIONS(536), + [sym_identifier] = ACTIONS(536), [sym_comment] = ACTIONS(39), }, [541] = { @@ -21663,19 +21682,19 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(799), [aux_sym__declaration_specifiers_repeat1] = STATE(20), [aux_sym_sized_type_specifier_repeat1] = STATE(21), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(542), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(538), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(9), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(544), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(546), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(548), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(540), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(542), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(544), [sym_preproc_directive] = ACTIONS(17), - [anon_sym_SEMI] = ACTIONS(550), + [anon_sym_SEMI] = ACTIONS(546), [anon_sym_typedef] = ACTIONS(19), [anon_sym_extern] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(241), - [anon_sym_RBRACE] = ACTIONS(2028), - [anon_sym_LPAREN2] = ACTIONS(554), - [anon_sym_STAR] = ACTIONS(556), + [anon_sym_LBRACE] = ACTIONS(239), + [anon_sym_RBRACE] = ACTIONS(2017), + [anon_sym_LPAREN2] = ACTIONS(550), + [anon_sym_STAR] = ACTIONS(552), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -21691,167 +21710,167 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), - [anon_sym_if] = ACTIONS(558), - [anon_sym_switch] = ACTIONS(560), - [anon_sym_case] = ACTIONS(562), - [anon_sym_default] = ACTIONS(564), - [anon_sym_while] = ACTIONS(566), - [anon_sym_do] = ACTIONS(568), - [anon_sym_for] = ACTIONS(570), - [anon_sym_return] = ACTIONS(572), - [anon_sym_break] = ACTIONS(574), - [anon_sym_continue] = ACTIONS(576), - [anon_sym_goto] = ACTIONS(578), - [anon_sym_AMP] = ACTIONS(556), - [anon_sym_BANG] = ACTIONS(580), - [anon_sym_TILDE] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_DASH_DASH] = ACTIONS(586), - [anon_sym_PLUS_PLUS] = ACTIONS(586), - [anon_sym_sizeof] = ACTIONS(588), - [sym_number_literal] = ACTIONS(590), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(594), - [sym_false] = ACTIONS(594), - [sym_null] = ACTIONS(594), - [sym_identifier] = ACTIONS(596), + [anon_sym_if] = ACTIONS(554), + [anon_sym_switch] = ACTIONS(556), + [anon_sym_case] = ACTIONS(558), + [anon_sym_default] = ACTIONS(560), + [anon_sym_while] = ACTIONS(562), + [anon_sym_do] = ACTIONS(564), + [anon_sym_for] = ACTIONS(566), + [anon_sym_return] = ACTIONS(568), + [anon_sym_break] = ACTIONS(570), + [anon_sym_continue] = ACTIONS(572), + [anon_sym_goto] = ACTIONS(574), + [anon_sym_AMP] = ACTIONS(552), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_TILDE] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(580), + [anon_sym_DASH] = ACTIONS(580), + [anon_sym_DASH_DASH] = ACTIONS(582), + [anon_sym_PLUS_PLUS] = ACTIONS(582), + [anon_sym_sizeof] = ACTIONS(584), + [sym_number_literal] = ACTIONS(586), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(590), + [sym_false] = ACTIONS(590), + [sym_null] = ACTIONS(590), + [sym_identifier] = ACTIONS(592), [sym_comment] = ACTIONS(39), }, [542] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(640), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(640), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(640), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(640), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(640), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(640), - [sym_preproc_directive] = ACTIONS(640), - [anon_sym_typedef] = ACTIONS(640), - [anon_sym_extern] = ACTIONS(640), - [anon_sym_static] = ACTIONS(640), - [anon_sym_auto] = ACTIONS(640), - [anon_sym_register] = ACTIONS(640), - [anon_sym_inline] = ACTIONS(640), - [anon_sym_const] = ACTIONS(640), - [anon_sym_restrict] = ACTIONS(640), - [anon_sym_volatile] = ACTIONS(640), - [anon_sym__Atomic] = ACTIONS(640), - [anon_sym_unsigned] = ACTIONS(640), - [anon_sym_long] = ACTIONS(640), - [anon_sym_short] = ACTIONS(640), - [sym_primitive_type] = ACTIONS(640), - [anon_sym_enum] = ACTIONS(640), - [anon_sym_struct] = ACTIONS(640), - [anon_sym_union] = ACTIONS(640), - [sym_identifier] = ACTIONS(640), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(636), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(636), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(636), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(636), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(636), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(636), + [sym_preproc_directive] = ACTIONS(636), + [anon_sym_typedef] = ACTIONS(636), + [anon_sym_extern] = ACTIONS(636), + [anon_sym_static] = ACTIONS(636), + [anon_sym_auto] = ACTIONS(636), + [anon_sym_register] = ACTIONS(636), + [anon_sym_inline] = ACTIONS(636), + [anon_sym_const] = ACTIONS(636), + [anon_sym_restrict] = ACTIONS(636), + [anon_sym_volatile] = ACTIONS(636), + [anon_sym__Atomic] = ACTIONS(636), + [anon_sym_unsigned] = ACTIONS(636), + [anon_sym_long] = ACTIONS(636), + [anon_sym_short] = ACTIONS(636), + [sym_primitive_type] = ACTIONS(636), + [anon_sym_enum] = ACTIONS(636), + [anon_sym_struct] = ACTIONS(636), + [anon_sym_union] = ACTIONS(636), + [sym_identifier] = ACTIONS(636), [sym_comment] = ACTIONS(39), }, [543] = { [aux_sym_declaration_repeat1] = STATE(279), - [anon_sym_COMMA] = ACTIONS(237), - [anon_sym_SEMI] = ACTIONS(2030), + [anon_sym_COMMA] = ACTIONS(235), + [anon_sym_SEMI] = ACTIONS(2019), [sym_comment] = ACTIONS(39), }, [544] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2032), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2021), [sym_comment] = ACTIONS(39), }, [545] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(782), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(782), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(782), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(782), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(782), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(782), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(782), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(782), - [sym_preproc_directive] = ACTIONS(782), - [anon_sym_SEMI] = ACTIONS(780), - [anon_sym_typedef] = ACTIONS(782), - [anon_sym_extern] = ACTIONS(782), - [anon_sym_LBRACE] = ACTIONS(780), - [anon_sym_LPAREN2] = ACTIONS(780), - [anon_sym_STAR] = ACTIONS(780), - [anon_sym_static] = ACTIONS(782), - [anon_sym_auto] = ACTIONS(782), - [anon_sym_register] = ACTIONS(782), - [anon_sym_inline] = ACTIONS(782), - [anon_sym_const] = ACTIONS(782), - [anon_sym_restrict] = ACTIONS(782), - [anon_sym_volatile] = ACTIONS(782), - [anon_sym__Atomic] = ACTIONS(782), - [anon_sym_unsigned] = ACTIONS(782), - [anon_sym_long] = ACTIONS(782), - [anon_sym_short] = ACTIONS(782), - [sym_primitive_type] = ACTIONS(782), - [anon_sym_enum] = ACTIONS(782), - [anon_sym_struct] = ACTIONS(782), - [anon_sym_union] = ACTIONS(782), - [anon_sym_if] = ACTIONS(782), - [anon_sym_else] = ACTIONS(782), - [anon_sym_switch] = ACTIONS(782), - [anon_sym_case] = ACTIONS(782), - [anon_sym_default] = ACTIONS(782), - [anon_sym_while] = ACTIONS(782), - [anon_sym_do] = ACTIONS(782), - [anon_sym_for] = ACTIONS(782), - [anon_sym_return] = ACTIONS(782), - [anon_sym_break] = ACTIONS(782), - [anon_sym_continue] = ACTIONS(782), - [anon_sym_goto] = ACTIONS(782), - [anon_sym_AMP] = ACTIONS(780), - [anon_sym_BANG] = ACTIONS(780), - [anon_sym_TILDE] = ACTIONS(780), - [anon_sym_PLUS] = ACTIONS(782), - [anon_sym_DASH] = ACTIONS(782), - [anon_sym_DASH_DASH] = ACTIONS(780), - [anon_sym_PLUS_PLUS] = ACTIONS(780), - [anon_sym_sizeof] = ACTIONS(782), - [sym_number_literal] = ACTIONS(780), - [anon_sym_SQUOTE] = ACTIONS(780), - [anon_sym_DQUOTE] = ACTIONS(780), - [sym_true] = ACTIONS(782), - [sym_false] = ACTIONS(782), - [sym_null] = ACTIONS(782), - [sym_identifier] = ACTIONS(782), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(773), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(773), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(773), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(773), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(773), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(773), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(773), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(773), + [sym_preproc_directive] = ACTIONS(773), + [anon_sym_SEMI] = ACTIONS(771), + [anon_sym_typedef] = ACTIONS(773), + [anon_sym_extern] = ACTIONS(773), + [anon_sym_LBRACE] = ACTIONS(771), + [anon_sym_LPAREN2] = ACTIONS(771), + [anon_sym_STAR] = ACTIONS(771), + [anon_sym_static] = ACTIONS(773), + [anon_sym_auto] = ACTIONS(773), + [anon_sym_register] = ACTIONS(773), + [anon_sym_inline] = ACTIONS(773), + [anon_sym_const] = ACTIONS(773), + [anon_sym_restrict] = ACTIONS(773), + [anon_sym_volatile] = ACTIONS(773), + [anon_sym__Atomic] = ACTIONS(773), + [anon_sym_unsigned] = ACTIONS(773), + [anon_sym_long] = ACTIONS(773), + [anon_sym_short] = ACTIONS(773), + [sym_primitive_type] = ACTIONS(773), + [anon_sym_enum] = ACTIONS(773), + [anon_sym_struct] = ACTIONS(773), + [anon_sym_union] = ACTIONS(773), + [anon_sym_if] = ACTIONS(773), + [anon_sym_else] = ACTIONS(773), + [anon_sym_switch] = ACTIONS(773), + [anon_sym_case] = ACTIONS(773), + [anon_sym_default] = ACTIONS(773), + [anon_sym_while] = ACTIONS(773), + [anon_sym_do] = ACTIONS(773), + [anon_sym_for] = ACTIONS(773), + [anon_sym_return] = ACTIONS(773), + [anon_sym_break] = ACTIONS(773), + [anon_sym_continue] = ACTIONS(773), + [anon_sym_goto] = ACTIONS(773), + [anon_sym_AMP] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(771), + [anon_sym_TILDE] = ACTIONS(771), + [anon_sym_PLUS] = ACTIONS(773), + [anon_sym_DASH] = ACTIONS(773), + [anon_sym_DASH_DASH] = ACTIONS(771), + [anon_sym_PLUS_PLUS] = ACTIONS(771), + [anon_sym_sizeof] = ACTIONS(773), + [sym_number_literal] = ACTIONS(771), + [anon_sym_SQUOTE] = ACTIONS(771), + [anon_sym_DQUOTE] = ACTIONS(771), + [sym_true] = ACTIONS(773), + [sym_false] = ACTIONS(773), + [sym_null] = ACTIONS(773), + [sym_identifier] = ACTIONS(773), [sym_comment] = ACTIONS(39), }, [546] = { [sym_parameter_list] = STATE(180), - [anon_sym_SEMI] = ACTIONS(2034), - [anon_sym_LPAREN2] = ACTIONS(243), - [anon_sym_LBRACK] = ACTIONS(428), + [anon_sym_SEMI] = ACTIONS(2023), + [anon_sym_LPAREN2] = ACTIONS(241), + [anon_sym_LBRACK] = ACTIONS(424), [sym_comment] = ACTIONS(39), }, [547] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(796), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(796), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(796), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(796), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(796), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(796), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(796), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(796), - [sym_preproc_directive] = ACTIONS(796), - [anon_sym_typedef] = ACTIONS(796), - [anon_sym_extern] = ACTIONS(796), - [anon_sym_static] = ACTIONS(796), - [anon_sym_auto] = ACTIONS(796), - [anon_sym_register] = ACTIONS(796), - [anon_sym_inline] = ACTIONS(796), - [anon_sym_const] = ACTIONS(796), - [anon_sym_restrict] = ACTIONS(796), - [anon_sym_volatile] = ACTIONS(796), - [anon_sym__Atomic] = ACTIONS(796), - [anon_sym_unsigned] = ACTIONS(796), - [anon_sym_long] = ACTIONS(796), - [anon_sym_short] = ACTIONS(796), - [sym_primitive_type] = ACTIONS(796), - [anon_sym_enum] = ACTIONS(796), - [anon_sym_struct] = ACTIONS(796), - [anon_sym_union] = ACTIONS(796), - [sym_identifier] = ACTIONS(796), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(787), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(787), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(787), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(787), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(787), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(787), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(787), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(787), + [sym_preproc_directive] = ACTIONS(787), + [anon_sym_typedef] = ACTIONS(787), + [anon_sym_extern] = ACTIONS(787), + [anon_sym_static] = ACTIONS(787), + [anon_sym_auto] = ACTIONS(787), + [anon_sym_register] = ACTIONS(787), + [anon_sym_inline] = ACTIONS(787), + [anon_sym_const] = ACTIONS(787), + [anon_sym_restrict] = ACTIONS(787), + [anon_sym_volatile] = ACTIONS(787), + [anon_sym__Atomic] = ACTIONS(787), + [anon_sym_unsigned] = ACTIONS(787), + [anon_sym_long] = ACTIONS(787), + [anon_sym_short] = ACTIONS(787), + [sym_primitive_type] = ACTIONS(787), + [anon_sym_enum] = ACTIONS(787), + [anon_sym_struct] = ACTIONS(787), + [anon_sym_union] = ACTIONS(787), + [sym_identifier] = ACTIONS(787), [sym_comment] = ACTIONS(39), }, [548] = { @@ -21886,7 +21905,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_directive] = ACTIONS(17), [anon_sym_typedef] = ACTIONS(19), [anon_sym_extern] = ACTIONS(21), - [anon_sym_RBRACE] = ACTIONS(2036), + [anon_sym_RBRACE] = ACTIONS(2025), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -21906,63 +21925,63 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(39), }, [549] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(968), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(968), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(968), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(968), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(968), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(968), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(968), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(968), - [sym_preproc_directive] = ACTIONS(968), - [anon_sym_SEMI] = ACTIONS(966), - [anon_sym_typedef] = ACTIONS(968), - [anon_sym_extern] = ACTIONS(968), - [anon_sym_LBRACE] = ACTIONS(966), - [anon_sym_LPAREN2] = ACTIONS(966), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_static] = ACTIONS(968), - [anon_sym_auto] = ACTIONS(968), - [anon_sym_register] = ACTIONS(968), - [anon_sym_inline] = ACTIONS(968), - [anon_sym_const] = ACTIONS(968), - [anon_sym_restrict] = ACTIONS(968), - [anon_sym_volatile] = ACTIONS(968), - [anon_sym__Atomic] = ACTIONS(968), - [anon_sym_unsigned] = ACTIONS(968), - [anon_sym_long] = ACTIONS(968), - [anon_sym_short] = ACTIONS(968), - [sym_primitive_type] = ACTIONS(968), - [anon_sym_enum] = ACTIONS(968), - [anon_sym_struct] = ACTIONS(968), - [anon_sym_union] = ACTIONS(968), - [anon_sym_if] = ACTIONS(968), - [anon_sym_else] = ACTIONS(968), - [anon_sym_switch] = ACTIONS(968), - [anon_sym_case] = ACTIONS(968), - [anon_sym_default] = ACTIONS(968), - [anon_sym_while] = ACTIONS(968), - [anon_sym_do] = ACTIONS(968), - [anon_sym_for] = ACTIONS(968), - [anon_sym_return] = ACTIONS(968), - [anon_sym_break] = ACTIONS(968), - [anon_sym_continue] = ACTIONS(968), - [anon_sym_goto] = ACTIONS(968), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_BANG] = ACTIONS(966), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_DASH_DASH] = ACTIONS(966), - [anon_sym_PLUS_PLUS] = ACTIONS(966), - [anon_sym_sizeof] = ACTIONS(968), - [sym_number_literal] = ACTIONS(966), - [anon_sym_SQUOTE] = ACTIONS(966), - [anon_sym_DQUOTE] = ACTIONS(966), - [sym_true] = ACTIONS(968), - [sym_false] = ACTIONS(968), - [sym_null] = ACTIONS(968), - [sym_identifier] = ACTIONS(968), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(959), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(959), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(959), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(959), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(959), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(959), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(959), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(959), + [sym_preproc_directive] = ACTIONS(959), + [anon_sym_SEMI] = ACTIONS(957), + [anon_sym_typedef] = ACTIONS(959), + [anon_sym_extern] = ACTIONS(959), + [anon_sym_LBRACE] = ACTIONS(957), + [anon_sym_LPAREN2] = ACTIONS(957), + [anon_sym_STAR] = ACTIONS(957), + [anon_sym_static] = ACTIONS(959), + [anon_sym_auto] = ACTIONS(959), + [anon_sym_register] = ACTIONS(959), + [anon_sym_inline] = ACTIONS(959), + [anon_sym_const] = ACTIONS(959), + [anon_sym_restrict] = ACTIONS(959), + [anon_sym_volatile] = ACTIONS(959), + [anon_sym__Atomic] = ACTIONS(959), + [anon_sym_unsigned] = ACTIONS(959), + [anon_sym_long] = ACTIONS(959), + [anon_sym_short] = ACTIONS(959), + [sym_primitive_type] = ACTIONS(959), + [anon_sym_enum] = ACTIONS(959), + [anon_sym_struct] = ACTIONS(959), + [anon_sym_union] = ACTIONS(959), + [anon_sym_if] = ACTIONS(959), + [anon_sym_else] = ACTIONS(959), + [anon_sym_switch] = ACTIONS(959), + [anon_sym_case] = ACTIONS(959), + [anon_sym_default] = ACTIONS(959), + [anon_sym_while] = ACTIONS(959), + [anon_sym_do] = ACTIONS(959), + [anon_sym_for] = ACTIONS(959), + [anon_sym_return] = ACTIONS(959), + [anon_sym_break] = ACTIONS(959), + [anon_sym_continue] = ACTIONS(959), + [anon_sym_goto] = ACTIONS(959), + [anon_sym_AMP] = ACTIONS(957), + [anon_sym_BANG] = ACTIONS(957), + [anon_sym_TILDE] = ACTIONS(957), + [anon_sym_PLUS] = ACTIONS(959), + [anon_sym_DASH] = ACTIONS(959), + [anon_sym_DASH_DASH] = ACTIONS(957), + [anon_sym_PLUS_PLUS] = ACTIONS(957), + [anon_sym_sizeof] = ACTIONS(959), + [sym_number_literal] = ACTIONS(957), + [anon_sym_SQUOTE] = ACTIONS(957), + [anon_sym_DQUOTE] = ACTIONS(957), + [sym_true] = ACTIONS(959), + [sym_false] = ACTIONS(959), + [sym_null] = ACTIONS(959), + [sym_identifier] = ACTIONS(959), [sym_comment] = ACTIONS(39), }, [550] = { @@ -22021,19 +22040,19 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(468), [aux_sym__declaration_specifiers_repeat1] = STATE(20), [aux_sym_sized_type_specifier_repeat1] = STATE(21), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(542), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(538), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(9), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(544), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(546), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(548), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(540), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(542), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(544), [sym_preproc_directive] = ACTIONS(17), - [anon_sym_SEMI] = ACTIONS(550), + [anon_sym_SEMI] = ACTIONS(546), [anon_sym_typedef] = ACTIONS(19), [anon_sym_extern] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(241), - [anon_sym_RBRACE] = ACTIONS(2038), - [anon_sym_LPAREN2] = ACTIONS(554), - [anon_sym_STAR] = ACTIONS(556), + [anon_sym_LBRACE] = ACTIONS(239), + [anon_sym_RBRACE] = ACTIONS(2027), + [anon_sym_LPAREN2] = ACTIONS(550), + [anon_sym_STAR] = ACTIONS(552), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -22049,144 +22068,144 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), - [anon_sym_if] = ACTIONS(558), - [anon_sym_switch] = ACTIONS(560), - [anon_sym_case] = ACTIONS(562), - [anon_sym_default] = ACTIONS(564), - [anon_sym_while] = ACTIONS(566), - [anon_sym_do] = ACTIONS(568), - [anon_sym_for] = ACTIONS(570), - [anon_sym_return] = ACTIONS(572), - [anon_sym_break] = ACTIONS(574), - [anon_sym_continue] = ACTIONS(576), - [anon_sym_goto] = ACTIONS(578), - [anon_sym_AMP] = ACTIONS(556), - [anon_sym_BANG] = ACTIONS(580), - [anon_sym_TILDE] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_DASH_DASH] = ACTIONS(586), - [anon_sym_PLUS_PLUS] = ACTIONS(586), - [anon_sym_sizeof] = ACTIONS(588), - [sym_number_literal] = ACTIONS(590), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(594), - [sym_false] = ACTIONS(594), - [sym_null] = ACTIONS(594), - [sym_identifier] = ACTIONS(596), + [anon_sym_if] = ACTIONS(554), + [anon_sym_switch] = ACTIONS(556), + [anon_sym_case] = ACTIONS(558), + [anon_sym_default] = ACTIONS(560), + [anon_sym_while] = ACTIONS(562), + [anon_sym_do] = ACTIONS(564), + [anon_sym_for] = ACTIONS(566), + [anon_sym_return] = ACTIONS(568), + [anon_sym_break] = ACTIONS(570), + [anon_sym_continue] = ACTIONS(572), + [anon_sym_goto] = ACTIONS(574), + [anon_sym_AMP] = ACTIONS(552), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_TILDE] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(580), + [anon_sym_DASH] = ACTIONS(580), + [anon_sym_DASH_DASH] = ACTIONS(582), + [anon_sym_PLUS_PLUS] = ACTIONS(582), + [anon_sym_sizeof] = ACTIONS(584), + [sym_number_literal] = ACTIONS(586), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(590), + [sym_false] = ACTIONS(590), + [sym_null] = ACTIONS(590), + [sym_identifier] = ACTIONS(592), [sym_comment] = ACTIONS(39), }, [551] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1214), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1214), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1214), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1214), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1214), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1214), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1214), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1214), - [sym_preproc_directive] = ACTIONS(1214), - [anon_sym_SEMI] = ACTIONS(1212), - [anon_sym_typedef] = ACTIONS(1214), - [anon_sym_extern] = ACTIONS(1214), - [anon_sym_LBRACE] = ACTIONS(1212), - [anon_sym_LPAREN2] = ACTIONS(1212), - [anon_sym_STAR] = ACTIONS(1212), - [anon_sym_static] = ACTIONS(1214), - [anon_sym_auto] = ACTIONS(1214), - [anon_sym_register] = ACTIONS(1214), - [anon_sym_inline] = ACTIONS(1214), - [anon_sym_const] = ACTIONS(1214), - [anon_sym_restrict] = ACTIONS(1214), - [anon_sym_volatile] = ACTIONS(1214), - [anon_sym__Atomic] = ACTIONS(1214), - [anon_sym_unsigned] = ACTIONS(1214), - [anon_sym_long] = ACTIONS(1214), - [anon_sym_short] = ACTIONS(1214), - [sym_primitive_type] = ACTIONS(1214), - [anon_sym_enum] = ACTIONS(1214), - [anon_sym_struct] = ACTIONS(1214), - [anon_sym_union] = ACTIONS(1214), - [anon_sym_if] = ACTIONS(1214), - [anon_sym_else] = ACTIONS(1214), - [anon_sym_switch] = ACTIONS(1214), - [anon_sym_case] = ACTIONS(1214), - [anon_sym_default] = ACTIONS(1214), - [anon_sym_while] = ACTIONS(1214), - [anon_sym_do] = ACTIONS(1214), - [anon_sym_for] = ACTIONS(1214), - [anon_sym_return] = ACTIONS(1214), - [anon_sym_break] = ACTIONS(1214), - [anon_sym_continue] = ACTIONS(1214), - [anon_sym_goto] = ACTIONS(1214), - [anon_sym_AMP] = ACTIONS(1212), - [anon_sym_BANG] = ACTIONS(1212), - [anon_sym_TILDE] = ACTIONS(1212), - [anon_sym_PLUS] = ACTIONS(1214), - [anon_sym_DASH] = ACTIONS(1214), - [anon_sym_DASH_DASH] = ACTIONS(1212), - [anon_sym_PLUS_PLUS] = ACTIONS(1212), - [anon_sym_sizeof] = ACTIONS(1214), - [sym_number_literal] = ACTIONS(1212), - [anon_sym_SQUOTE] = ACTIONS(1212), - [anon_sym_DQUOTE] = ACTIONS(1212), - [sym_true] = ACTIONS(1214), - [sym_false] = ACTIONS(1214), - [sym_null] = ACTIONS(1214), - [sym_identifier] = ACTIONS(1214), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1207), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1207), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1207), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1207), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1207), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1207), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1207), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1207), + [sym_preproc_directive] = ACTIONS(1207), + [anon_sym_SEMI] = ACTIONS(1205), + [anon_sym_typedef] = ACTIONS(1207), + [anon_sym_extern] = ACTIONS(1207), + [anon_sym_LBRACE] = ACTIONS(1205), + [anon_sym_LPAREN2] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1205), + [anon_sym_static] = ACTIONS(1207), + [anon_sym_auto] = ACTIONS(1207), + [anon_sym_register] = ACTIONS(1207), + [anon_sym_inline] = ACTIONS(1207), + [anon_sym_const] = ACTIONS(1207), + [anon_sym_restrict] = ACTIONS(1207), + [anon_sym_volatile] = ACTIONS(1207), + [anon_sym__Atomic] = ACTIONS(1207), + [anon_sym_unsigned] = ACTIONS(1207), + [anon_sym_long] = ACTIONS(1207), + [anon_sym_short] = ACTIONS(1207), + [sym_primitive_type] = ACTIONS(1207), + [anon_sym_enum] = ACTIONS(1207), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_union] = ACTIONS(1207), + [anon_sym_if] = ACTIONS(1207), + [anon_sym_else] = ACTIONS(1207), + [anon_sym_switch] = ACTIONS(1207), + [anon_sym_case] = ACTIONS(1207), + [anon_sym_default] = ACTIONS(1207), + [anon_sym_while] = ACTIONS(1207), + [anon_sym_do] = ACTIONS(1207), + [anon_sym_for] = ACTIONS(1207), + [anon_sym_return] = ACTIONS(1207), + [anon_sym_break] = ACTIONS(1207), + [anon_sym_continue] = ACTIONS(1207), + [anon_sym_goto] = ACTIONS(1207), + [anon_sym_AMP] = ACTIONS(1205), + [anon_sym_BANG] = ACTIONS(1205), + [anon_sym_TILDE] = ACTIONS(1205), + [anon_sym_PLUS] = ACTIONS(1207), + [anon_sym_DASH] = ACTIONS(1207), + [anon_sym_DASH_DASH] = ACTIONS(1205), + [anon_sym_PLUS_PLUS] = ACTIONS(1205), + [anon_sym_sizeof] = ACTIONS(1207), + [sym_number_literal] = ACTIONS(1205), + [anon_sym_SQUOTE] = ACTIONS(1205), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_true] = ACTIONS(1207), + [sym_false] = ACTIONS(1207), + [sym_null] = ACTIONS(1207), + [sym_identifier] = ACTIONS(1207), [sym_comment] = ACTIONS(39), }, [552] = { - [anon_sym_RPAREN] = ACTIONS(2040), - [anon_sym_SEMI] = ACTIONS(2040), - [anon_sym_LPAREN2] = ACTIONS(2040), - [anon_sym_LBRACK] = ACTIONS(2040), + [anon_sym_RPAREN] = ACTIONS(2029), + [anon_sym_SEMI] = ACTIONS(2029), + [anon_sym_LPAREN2] = ACTIONS(2029), + [anon_sym_LBRACK] = ACTIONS(2029), [sym_comment] = ACTIONS(39), }, [553] = { [sym_argument_list] = STATE(465), - [anon_sym_LPAREN2] = ACTIONS(1096), - [anon_sym_STAR] = ACTIONS(1166), - [anon_sym_LBRACK] = ACTIONS(1100), - [anon_sym_RBRACK] = ACTIONS(2042), - [anon_sym_EQ] = ACTIONS(1168), - [anon_sym_QMARK] = ACTIONS(1170), - [anon_sym_STAR_EQ] = ACTIONS(1172), - [anon_sym_SLASH_EQ] = ACTIONS(1172), - [anon_sym_PERCENT_EQ] = ACTIONS(1172), - [anon_sym_PLUS_EQ] = ACTIONS(1172), - [anon_sym_DASH_EQ] = ACTIONS(1172), - [anon_sym_LT_LT_EQ] = ACTIONS(1172), - [anon_sym_GT_GT_EQ] = ACTIONS(1172), - [anon_sym_AMP_EQ] = ACTIONS(1172), - [anon_sym_CARET_EQ] = ACTIONS(1172), - [anon_sym_PIPE_EQ] = ACTIONS(1172), - [anon_sym_AMP] = ACTIONS(1174), - [anon_sym_PIPE_PIPE] = ACTIONS(1176), - [anon_sym_AMP_AMP] = ACTIONS(1178), - [anon_sym_PIPE] = ACTIONS(1180), - [anon_sym_CARET] = ACTIONS(1182), - [anon_sym_EQ_EQ] = ACTIONS(1184), - [anon_sym_BANG_EQ] = ACTIONS(1184), - [anon_sym_LT] = ACTIONS(1186), - [anon_sym_GT] = ACTIONS(1186), - [anon_sym_LT_EQ] = ACTIONS(1188), - [anon_sym_GT_EQ] = ACTIONS(1188), - [anon_sym_LT_LT] = ACTIONS(1190), - [anon_sym_GT_GT] = ACTIONS(1190), - [anon_sym_PLUS] = ACTIONS(1192), - [anon_sym_DASH] = ACTIONS(1192), - [anon_sym_SLASH] = ACTIONS(1166), - [anon_sym_PERCENT] = ACTIONS(1166), - [anon_sym_DASH_DASH] = ACTIONS(1128), - [anon_sym_PLUS_PLUS] = ACTIONS(1128), - [anon_sym_DOT] = ACTIONS(1130), - [anon_sym_DASH_GT] = ACTIONS(1130), + [anon_sym_LPAREN2] = ACTIONS(1089), + [anon_sym_STAR] = ACTIONS(1159), + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_RBRACK] = ACTIONS(2031), + [anon_sym_EQ] = ACTIONS(1161), + [anon_sym_QMARK] = ACTIONS(1163), + [anon_sym_STAR_EQ] = ACTIONS(1165), + [anon_sym_SLASH_EQ] = ACTIONS(1165), + [anon_sym_PERCENT_EQ] = ACTIONS(1165), + [anon_sym_PLUS_EQ] = ACTIONS(1165), + [anon_sym_DASH_EQ] = ACTIONS(1165), + [anon_sym_LT_LT_EQ] = ACTIONS(1165), + [anon_sym_GT_GT_EQ] = ACTIONS(1165), + [anon_sym_AMP_EQ] = ACTIONS(1165), + [anon_sym_CARET_EQ] = ACTIONS(1165), + [anon_sym_PIPE_EQ] = ACTIONS(1165), + [anon_sym_AMP] = ACTIONS(1167), + [anon_sym_PIPE_PIPE] = ACTIONS(1169), + [anon_sym_AMP_AMP] = ACTIONS(1171), + [anon_sym_PIPE] = ACTIONS(1173), + [anon_sym_CARET] = ACTIONS(1175), + [anon_sym_EQ_EQ] = ACTIONS(1177), + [anon_sym_BANG_EQ] = ACTIONS(1177), + [anon_sym_LT] = ACTIONS(1179), + [anon_sym_GT] = ACTIONS(1179), + [anon_sym_LT_EQ] = ACTIONS(1181), + [anon_sym_GT_EQ] = ACTIONS(1181), + [anon_sym_LT_LT] = ACTIONS(1183), + [anon_sym_GT_GT] = ACTIONS(1183), + [anon_sym_PLUS] = ACTIONS(1185), + [anon_sym_DASH] = ACTIONS(1185), + [anon_sym_SLASH] = ACTIONS(1159), + [anon_sym_PERCENT] = ACTIONS(1159), + [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_PLUS_PLUS] = ACTIONS(1121), + [anon_sym_DOT] = ACTIONS(1123), + [anon_sym_DASH_GT] = ACTIONS(1123), [sym_comment] = ACTIONS(39), }, [554] = { - [anon_sym_RPAREN] = ACTIONS(2044), + [anon_sym_RPAREN] = ACTIONS(2033), [sym_comment] = ACTIONS(39), }, [555] = { @@ -22221,76 +22240,76 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_macro_type_specifier] = STATE(116), [aux_sym_type_definition_repeat1] = STATE(118), [aux_sym_sized_type_specifier_repeat1] = STATE(119), - [anon_sym_LPAREN2] = ACTIONS(970), - [anon_sym_STAR] = ACTIONS(972), + [anon_sym_LPAREN2] = ACTIONS(961), + [anon_sym_STAR] = ACTIONS(963), [anon_sym_const] = ACTIONS(25), [anon_sym_restrict] = ACTIONS(25), [anon_sym_volatile] = ACTIONS(25), [anon_sym__Atomic] = ACTIONS(25), - [anon_sym_unsigned] = ACTIONS(223), - [anon_sym_long] = ACTIONS(223), - [anon_sym_short] = ACTIONS(223), - [sym_primitive_type] = ACTIONS(225), + [anon_sym_unsigned] = ACTIONS(221), + [anon_sym_long] = ACTIONS(221), + [anon_sym_short] = ACTIONS(221), + [sym_primitive_type] = ACTIONS(223), [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), - [anon_sym_AMP] = ACTIONS(972), - [anon_sym_BANG] = ACTIONS(974), - [anon_sym_TILDE] = ACTIONS(976), - [anon_sym_PLUS] = ACTIONS(978), - [anon_sym_DASH] = ACTIONS(978), - [anon_sym_DASH_DASH] = ACTIONS(980), - [anon_sym_PLUS_PLUS] = ACTIONS(980), - [anon_sym_sizeof] = ACTIONS(982), - [sym_number_literal] = ACTIONS(984), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(986), - [sym_false] = ACTIONS(986), - [sym_null] = ACTIONS(986), - [sym_identifier] = ACTIONS(988), + [anon_sym_AMP] = ACTIONS(963), + [anon_sym_BANG] = ACTIONS(965), + [anon_sym_TILDE] = ACTIONS(967), + [anon_sym_PLUS] = ACTIONS(969), + [anon_sym_DASH] = ACTIONS(969), + [anon_sym_DASH_DASH] = ACTIONS(971), + [anon_sym_PLUS_PLUS] = ACTIONS(971), + [anon_sym_sizeof] = ACTIONS(973), + [sym_number_literal] = ACTIONS(975), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(977), + [sym_false] = ACTIONS(977), + [sym_null] = ACTIONS(977), + [sym_identifier] = ACTIONS(979), [sym_comment] = ACTIONS(39), }, [556] = { [sym_argument_list] = STATE(465), - [anon_sym_COMMA] = ACTIONS(1700), - [anon_sym_RBRACE] = ACTIONS(1700), - [anon_sym_LPAREN2] = ACTIONS(1096), - [anon_sym_STAR] = ACTIONS(1351), - [anon_sym_LBRACK] = ACTIONS(1100), - [anon_sym_EQ] = ACTIONS(1702), - [anon_sym_QMARK] = ACTIONS(1700), - [anon_sym_STAR_EQ] = ACTIONS(1700), - [anon_sym_SLASH_EQ] = ACTIONS(1700), - [anon_sym_PERCENT_EQ] = ACTIONS(1700), - [anon_sym_PLUS_EQ] = ACTIONS(1700), - [anon_sym_DASH_EQ] = ACTIONS(1700), - [anon_sym_LT_LT_EQ] = ACTIONS(1700), - [anon_sym_GT_GT_EQ] = ACTIONS(1700), - [anon_sym_AMP_EQ] = ACTIONS(1700), - [anon_sym_CARET_EQ] = ACTIONS(1700), - [anon_sym_PIPE_EQ] = ACTIONS(1700), - [anon_sym_AMP] = ACTIONS(1702), - [anon_sym_PIPE_PIPE] = ACTIONS(1700), - [anon_sym_AMP_AMP] = ACTIONS(1700), - [anon_sym_PIPE] = ACTIONS(1702), - [anon_sym_CARET] = ACTIONS(1702), - [anon_sym_EQ_EQ] = ACTIONS(1700), - [anon_sym_BANG_EQ] = ACTIONS(1700), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(1702), - [anon_sym_LT_EQ] = ACTIONS(1700), - [anon_sym_GT_EQ] = ACTIONS(1700), - [anon_sym_LT_LT] = ACTIONS(1375), - [anon_sym_GT_GT] = ACTIONS(1375), - [anon_sym_PLUS] = ACTIONS(1377), - [anon_sym_DASH] = ACTIONS(1377), - [anon_sym_SLASH] = ACTIONS(1351), - [anon_sym_PERCENT] = ACTIONS(1351), - [anon_sym_DASH_DASH] = ACTIONS(1128), - [anon_sym_PLUS_PLUS] = ACTIONS(1128), - [anon_sym_DOT] = ACTIONS(1130), - [anon_sym_DASH_GT] = ACTIONS(1130), + [anon_sym_COMMA] = ACTIONS(1689), + [anon_sym_RBRACE] = ACTIONS(1689), + [anon_sym_LPAREN2] = ACTIONS(1089), + [anon_sym_STAR] = ACTIONS(1342), + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(1691), + [anon_sym_QMARK] = ACTIONS(1689), + [anon_sym_STAR_EQ] = ACTIONS(1689), + [anon_sym_SLASH_EQ] = ACTIONS(1689), + [anon_sym_PERCENT_EQ] = ACTIONS(1689), + [anon_sym_PLUS_EQ] = ACTIONS(1689), + [anon_sym_DASH_EQ] = ACTIONS(1689), + [anon_sym_LT_LT_EQ] = ACTIONS(1689), + [anon_sym_GT_GT_EQ] = ACTIONS(1689), + [anon_sym_AMP_EQ] = ACTIONS(1689), + [anon_sym_CARET_EQ] = ACTIONS(1689), + [anon_sym_PIPE_EQ] = ACTIONS(1689), + [anon_sym_AMP] = ACTIONS(1691), + [anon_sym_PIPE_PIPE] = ACTIONS(1689), + [anon_sym_AMP_AMP] = ACTIONS(1689), + [anon_sym_PIPE] = ACTIONS(1691), + [anon_sym_CARET] = ACTIONS(1691), + [anon_sym_EQ_EQ] = ACTIONS(1689), + [anon_sym_BANG_EQ] = ACTIONS(1689), + [anon_sym_LT] = ACTIONS(1691), + [anon_sym_GT] = ACTIONS(1691), + [anon_sym_LT_EQ] = ACTIONS(1689), + [anon_sym_GT_EQ] = ACTIONS(1689), + [anon_sym_LT_LT] = ACTIONS(1366), + [anon_sym_GT_GT] = ACTIONS(1366), + [anon_sym_PLUS] = ACTIONS(1368), + [anon_sym_DASH] = ACTIONS(1368), + [anon_sym_SLASH] = ACTIONS(1342), + [anon_sym_PERCENT] = ACTIONS(1342), + [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_PLUS_PLUS] = ACTIONS(1121), + [anon_sym_DOT] = ACTIONS(1123), + [anon_sym_DASH_GT] = ACTIONS(1123), [sym_comment] = ACTIONS(39), }, [557] = { @@ -22314,23 +22333,23 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(733), [sym_concatenated_string] = STATE(733), [sym_string_literal] = STATE(346), - [anon_sym_LPAREN2] = ACTIONS(807), - [anon_sym_STAR] = ACTIONS(809), - [anon_sym_AMP] = ACTIONS(809), - [anon_sym_BANG] = ACTIONS(811), - [anon_sym_TILDE] = ACTIONS(813), - [anon_sym_PLUS] = ACTIONS(815), - [anon_sym_DASH] = ACTIONS(815), - [anon_sym_DASH_DASH] = ACTIONS(817), - [anon_sym_PLUS_PLUS] = ACTIONS(817), - [anon_sym_sizeof] = ACTIONS(819), - [sym_number_literal] = ACTIONS(1720), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1722), - [sym_false] = ACTIONS(1722), - [sym_null] = ACTIONS(1722), - [sym_identifier] = ACTIONS(1722), + [anon_sym_LPAREN2] = ACTIONS(798), + [anon_sym_STAR] = ACTIONS(800), + [anon_sym_AMP] = ACTIONS(800), + [anon_sym_BANG] = ACTIONS(802), + [anon_sym_TILDE] = ACTIONS(804), + [anon_sym_PLUS] = ACTIONS(806), + [anon_sym_DASH] = ACTIONS(806), + [anon_sym_DASH_DASH] = ACTIONS(808), + [anon_sym_PLUS_PLUS] = ACTIONS(808), + [anon_sym_sizeof] = ACTIONS(810), + [sym_number_literal] = ACTIONS(1709), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(1711), + [sym_false] = ACTIONS(1711), + [sym_null] = ACTIONS(1711), + [sym_identifier] = ACTIONS(1711), [sym_comment] = ACTIONS(39), }, [558] = { @@ -22354,23 +22373,23 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(807), [sym_concatenated_string] = STATE(807), [sym_string_literal] = STATE(346), - [anon_sym_LPAREN2] = ACTIONS(807), - [anon_sym_STAR] = ACTIONS(809), - [anon_sym_AMP] = ACTIONS(809), - [anon_sym_BANG] = ACTIONS(811), - [anon_sym_TILDE] = ACTIONS(813), - [anon_sym_PLUS] = ACTIONS(815), - [anon_sym_DASH] = ACTIONS(815), - [anon_sym_DASH_DASH] = ACTIONS(817), - [anon_sym_PLUS_PLUS] = ACTIONS(817), - [anon_sym_sizeof] = ACTIONS(819), - [sym_number_literal] = ACTIONS(2046), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2048), - [sym_false] = ACTIONS(2048), - [sym_null] = ACTIONS(2048), - [sym_identifier] = ACTIONS(2048), + [anon_sym_LPAREN2] = ACTIONS(798), + [anon_sym_STAR] = ACTIONS(800), + [anon_sym_AMP] = ACTIONS(800), + [anon_sym_BANG] = ACTIONS(802), + [anon_sym_TILDE] = ACTIONS(804), + [anon_sym_PLUS] = ACTIONS(806), + [anon_sym_DASH] = ACTIONS(806), + [anon_sym_DASH_DASH] = ACTIONS(808), + [anon_sym_PLUS_PLUS] = ACTIONS(808), + [anon_sym_sizeof] = ACTIONS(810), + [sym_number_literal] = ACTIONS(2035), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(2037), + [sym_false] = ACTIONS(2037), + [sym_null] = ACTIONS(2037), + [sym_identifier] = ACTIONS(2037), [sym_comment] = ACTIONS(39), }, [559] = { @@ -22394,23 +22413,23 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(808), [sym_concatenated_string] = STATE(808), [sym_string_literal] = STATE(421), - [anon_sym_LPAREN2] = ACTIONS(996), - [anon_sym_STAR] = ACTIONS(998), - [anon_sym_AMP] = ACTIONS(998), - [anon_sym_BANG] = ACTIONS(1000), - [anon_sym_TILDE] = ACTIONS(1002), - [anon_sym_PLUS] = ACTIONS(1004), - [anon_sym_DASH] = ACTIONS(1004), - [anon_sym_DASH_DASH] = ACTIONS(1006), - [anon_sym_PLUS_PLUS] = ACTIONS(1006), - [anon_sym_sizeof] = ACTIONS(1008), - [sym_number_literal] = ACTIONS(2050), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2052), - [sym_false] = ACTIONS(2052), - [sym_null] = ACTIONS(2052), - [sym_identifier] = ACTIONS(2052), + [anon_sym_LPAREN2] = ACTIONS(987), + [anon_sym_STAR] = ACTIONS(989), + [anon_sym_AMP] = ACTIONS(989), + [anon_sym_BANG] = ACTIONS(991), + [anon_sym_TILDE] = ACTIONS(993), + [anon_sym_PLUS] = ACTIONS(995), + [anon_sym_DASH] = ACTIONS(995), + [anon_sym_DASH_DASH] = ACTIONS(997), + [anon_sym_PLUS_PLUS] = ACTIONS(997), + [anon_sym_sizeof] = ACTIONS(999), + [sym_number_literal] = ACTIONS(2039), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(2041), + [sym_false] = ACTIONS(2041), + [sym_null] = ACTIONS(2041), + [sym_identifier] = ACTIONS(2041), [sym_comment] = ACTIONS(39), }, [560] = { @@ -22434,23 +22453,23 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(809), [sym_concatenated_string] = STATE(809), [sym_string_literal] = STATE(346), - [anon_sym_LPAREN2] = ACTIONS(807), - [anon_sym_STAR] = ACTIONS(809), - [anon_sym_AMP] = ACTIONS(809), - [anon_sym_BANG] = ACTIONS(811), - [anon_sym_TILDE] = ACTIONS(813), - [anon_sym_PLUS] = ACTIONS(815), - [anon_sym_DASH] = ACTIONS(815), - [anon_sym_DASH_DASH] = ACTIONS(817), - [anon_sym_PLUS_PLUS] = ACTIONS(817), - [anon_sym_sizeof] = ACTIONS(819), - [sym_number_literal] = ACTIONS(2054), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2056), - [sym_false] = ACTIONS(2056), - [sym_null] = ACTIONS(2056), - [sym_identifier] = ACTIONS(2056), + [anon_sym_LPAREN2] = ACTIONS(798), + [anon_sym_STAR] = ACTIONS(800), + [anon_sym_AMP] = ACTIONS(800), + [anon_sym_BANG] = ACTIONS(802), + [anon_sym_TILDE] = ACTIONS(804), + [anon_sym_PLUS] = ACTIONS(806), + [anon_sym_DASH] = ACTIONS(806), + [anon_sym_DASH_DASH] = ACTIONS(808), + [anon_sym_PLUS_PLUS] = ACTIONS(808), + [anon_sym_sizeof] = ACTIONS(810), + [sym_number_literal] = ACTIONS(2043), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(2045), + [sym_false] = ACTIONS(2045), + [sym_null] = ACTIONS(2045), + [sym_identifier] = ACTIONS(2045), [sym_comment] = ACTIONS(39), }, [561] = { @@ -22474,23 +22493,23 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(810), [sym_concatenated_string] = STATE(810), [sym_string_literal] = STATE(346), - [anon_sym_LPAREN2] = ACTIONS(807), - [anon_sym_STAR] = ACTIONS(809), - [anon_sym_AMP] = ACTIONS(809), - [anon_sym_BANG] = ACTIONS(811), - [anon_sym_TILDE] = ACTIONS(813), - [anon_sym_PLUS] = ACTIONS(815), - [anon_sym_DASH] = ACTIONS(815), - [anon_sym_DASH_DASH] = ACTIONS(817), - [anon_sym_PLUS_PLUS] = ACTIONS(817), - [anon_sym_sizeof] = ACTIONS(819), - [sym_number_literal] = ACTIONS(2058), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2060), - [sym_false] = ACTIONS(2060), - [sym_null] = ACTIONS(2060), - [sym_identifier] = ACTIONS(2060), + [anon_sym_LPAREN2] = ACTIONS(798), + [anon_sym_STAR] = ACTIONS(800), + [anon_sym_AMP] = ACTIONS(800), + [anon_sym_BANG] = ACTIONS(802), + [anon_sym_TILDE] = ACTIONS(804), + [anon_sym_PLUS] = ACTIONS(806), + [anon_sym_DASH] = ACTIONS(806), + [anon_sym_DASH_DASH] = ACTIONS(808), + [anon_sym_PLUS_PLUS] = ACTIONS(808), + [anon_sym_sizeof] = ACTIONS(810), + [sym_number_literal] = ACTIONS(2047), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(2049), + [sym_false] = ACTIONS(2049), + [sym_null] = ACTIONS(2049), + [sym_identifier] = ACTIONS(2049), [sym_comment] = ACTIONS(39), }, [562] = { @@ -22514,23 +22533,23 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(811), [sym_concatenated_string] = STATE(811), [sym_string_literal] = STATE(346), - [anon_sym_LPAREN2] = ACTIONS(807), - [anon_sym_STAR] = ACTIONS(809), - [anon_sym_AMP] = ACTIONS(809), - [anon_sym_BANG] = ACTIONS(811), - [anon_sym_TILDE] = ACTIONS(813), - [anon_sym_PLUS] = ACTIONS(815), - [anon_sym_DASH] = ACTIONS(815), - [anon_sym_DASH_DASH] = ACTIONS(817), - [anon_sym_PLUS_PLUS] = ACTIONS(817), - [anon_sym_sizeof] = ACTIONS(819), - [sym_number_literal] = ACTIONS(2062), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2064), - [sym_false] = ACTIONS(2064), - [sym_null] = ACTIONS(2064), - [sym_identifier] = ACTIONS(2064), + [anon_sym_LPAREN2] = ACTIONS(798), + [anon_sym_STAR] = ACTIONS(800), + [anon_sym_AMP] = ACTIONS(800), + [anon_sym_BANG] = ACTIONS(802), + [anon_sym_TILDE] = ACTIONS(804), + [anon_sym_PLUS] = ACTIONS(806), + [anon_sym_DASH] = ACTIONS(806), + [anon_sym_DASH_DASH] = ACTIONS(808), + [anon_sym_PLUS_PLUS] = ACTIONS(808), + [anon_sym_sizeof] = ACTIONS(810), + [sym_number_literal] = ACTIONS(2051), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(2053), + [sym_false] = ACTIONS(2053), + [sym_null] = ACTIONS(2053), + [sym_identifier] = ACTIONS(2053), [sym_comment] = ACTIONS(39), }, [563] = { @@ -22554,23 +22573,23 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(812), [sym_concatenated_string] = STATE(812), [sym_string_literal] = STATE(346), - [anon_sym_LPAREN2] = ACTIONS(807), - [anon_sym_STAR] = ACTIONS(809), - [anon_sym_AMP] = ACTIONS(809), - [anon_sym_BANG] = ACTIONS(811), - [anon_sym_TILDE] = ACTIONS(813), - [anon_sym_PLUS] = ACTIONS(815), - [anon_sym_DASH] = ACTIONS(815), - [anon_sym_DASH_DASH] = ACTIONS(817), - [anon_sym_PLUS_PLUS] = ACTIONS(817), - [anon_sym_sizeof] = ACTIONS(819), - [sym_number_literal] = ACTIONS(2066), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2068), - [sym_false] = ACTIONS(2068), - [sym_null] = ACTIONS(2068), - [sym_identifier] = ACTIONS(2068), + [anon_sym_LPAREN2] = ACTIONS(798), + [anon_sym_STAR] = ACTIONS(800), + [anon_sym_AMP] = ACTIONS(800), + [anon_sym_BANG] = ACTIONS(802), + [anon_sym_TILDE] = ACTIONS(804), + [anon_sym_PLUS] = ACTIONS(806), + [anon_sym_DASH] = ACTIONS(806), + [anon_sym_DASH_DASH] = ACTIONS(808), + [anon_sym_PLUS_PLUS] = ACTIONS(808), + [anon_sym_sizeof] = ACTIONS(810), + [sym_number_literal] = ACTIONS(2055), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(2057), + [sym_false] = ACTIONS(2057), + [sym_null] = ACTIONS(2057), + [sym_identifier] = ACTIONS(2057), [sym_comment] = ACTIONS(39), }, [564] = { @@ -22594,23 +22613,23 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(813), [sym_concatenated_string] = STATE(813), [sym_string_literal] = STATE(346), - [anon_sym_LPAREN2] = ACTIONS(807), - [anon_sym_STAR] = ACTIONS(809), - [anon_sym_AMP] = ACTIONS(809), - [anon_sym_BANG] = ACTIONS(811), - [anon_sym_TILDE] = ACTIONS(813), - [anon_sym_PLUS] = ACTIONS(815), - [anon_sym_DASH] = ACTIONS(815), - [anon_sym_DASH_DASH] = ACTIONS(817), - [anon_sym_PLUS_PLUS] = ACTIONS(817), - [anon_sym_sizeof] = ACTIONS(819), - [sym_number_literal] = ACTIONS(2070), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2072), - [sym_false] = ACTIONS(2072), - [sym_null] = ACTIONS(2072), - [sym_identifier] = ACTIONS(2072), + [anon_sym_LPAREN2] = ACTIONS(798), + [anon_sym_STAR] = ACTIONS(800), + [anon_sym_AMP] = ACTIONS(800), + [anon_sym_BANG] = ACTIONS(802), + [anon_sym_TILDE] = ACTIONS(804), + [anon_sym_PLUS] = ACTIONS(806), + [anon_sym_DASH] = ACTIONS(806), + [anon_sym_DASH_DASH] = ACTIONS(808), + [anon_sym_PLUS_PLUS] = ACTIONS(808), + [anon_sym_sizeof] = ACTIONS(810), + [sym_number_literal] = ACTIONS(2059), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(2061), + [sym_false] = ACTIONS(2061), + [sym_null] = ACTIONS(2061), + [sym_identifier] = ACTIONS(2061), [sym_comment] = ACTIONS(39), }, [565] = { @@ -22634,23 +22653,23 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(814), [sym_concatenated_string] = STATE(814), [sym_string_literal] = STATE(346), - [anon_sym_LPAREN2] = ACTIONS(807), - [anon_sym_STAR] = ACTIONS(809), - [anon_sym_AMP] = ACTIONS(809), - [anon_sym_BANG] = ACTIONS(811), - [anon_sym_TILDE] = ACTIONS(813), - [anon_sym_PLUS] = ACTIONS(815), - [anon_sym_DASH] = ACTIONS(815), - [anon_sym_DASH_DASH] = ACTIONS(817), - [anon_sym_PLUS_PLUS] = ACTIONS(817), - [anon_sym_sizeof] = ACTIONS(819), - [sym_number_literal] = ACTIONS(2074), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2076), - [sym_false] = ACTIONS(2076), - [sym_null] = ACTIONS(2076), - [sym_identifier] = ACTIONS(2076), + [anon_sym_LPAREN2] = ACTIONS(798), + [anon_sym_STAR] = ACTIONS(800), + [anon_sym_AMP] = ACTIONS(800), + [anon_sym_BANG] = ACTIONS(802), + [anon_sym_TILDE] = ACTIONS(804), + [anon_sym_PLUS] = ACTIONS(806), + [anon_sym_DASH] = ACTIONS(806), + [anon_sym_DASH_DASH] = ACTIONS(808), + [anon_sym_PLUS_PLUS] = ACTIONS(808), + [anon_sym_sizeof] = ACTIONS(810), + [sym_number_literal] = ACTIONS(2063), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(2065), + [sym_false] = ACTIONS(2065), + [sym_null] = ACTIONS(2065), + [sym_identifier] = ACTIONS(2065), [sym_comment] = ACTIONS(39), }, [566] = { @@ -22674,23 +22693,23 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(815), [sym_concatenated_string] = STATE(815), [sym_string_literal] = STATE(346), - [anon_sym_LPAREN2] = ACTIONS(807), - [anon_sym_STAR] = ACTIONS(809), - [anon_sym_AMP] = ACTIONS(809), - [anon_sym_BANG] = ACTIONS(811), - [anon_sym_TILDE] = ACTIONS(813), - [anon_sym_PLUS] = ACTIONS(815), - [anon_sym_DASH] = ACTIONS(815), - [anon_sym_DASH_DASH] = ACTIONS(817), - [anon_sym_PLUS_PLUS] = ACTIONS(817), - [anon_sym_sizeof] = ACTIONS(819), - [sym_number_literal] = ACTIONS(2078), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2080), - [sym_false] = ACTIONS(2080), - [sym_null] = ACTIONS(2080), - [sym_identifier] = ACTIONS(2080), + [anon_sym_LPAREN2] = ACTIONS(798), + [anon_sym_STAR] = ACTIONS(800), + [anon_sym_AMP] = ACTIONS(800), + [anon_sym_BANG] = ACTIONS(802), + [anon_sym_TILDE] = ACTIONS(804), + [anon_sym_PLUS] = ACTIONS(806), + [anon_sym_DASH] = ACTIONS(806), + [anon_sym_DASH_DASH] = ACTIONS(808), + [anon_sym_PLUS_PLUS] = ACTIONS(808), + [anon_sym_sizeof] = ACTIONS(810), + [sym_number_literal] = ACTIONS(2067), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(2069), + [sym_false] = ACTIONS(2069), + [sym_null] = ACTIONS(2069), + [sym_identifier] = ACTIONS(2069), [sym_comment] = ACTIONS(39), }, [567] = { @@ -22714,23 +22733,23 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(816), [sym_concatenated_string] = STATE(816), [sym_string_literal] = STATE(346), - [anon_sym_LPAREN2] = ACTIONS(807), - [anon_sym_STAR] = ACTIONS(809), - [anon_sym_AMP] = ACTIONS(809), - [anon_sym_BANG] = ACTIONS(811), - [anon_sym_TILDE] = ACTIONS(813), - [anon_sym_PLUS] = ACTIONS(815), - [anon_sym_DASH] = ACTIONS(815), - [anon_sym_DASH_DASH] = ACTIONS(817), - [anon_sym_PLUS_PLUS] = ACTIONS(817), - [anon_sym_sizeof] = ACTIONS(819), - [sym_number_literal] = ACTIONS(2082), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2084), - [sym_false] = ACTIONS(2084), - [sym_null] = ACTIONS(2084), - [sym_identifier] = ACTIONS(2084), + [anon_sym_LPAREN2] = ACTIONS(798), + [anon_sym_STAR] = ACTIONS(800), + [anon_sym_AMP] = ACTIONS(800), + [anon_sym_BANG] = ACTIONS(802), + [anon_sym_TILDE] = ACTIONS(804), + [anon_sym_PLUS] = ACTIONS(806), + [anon_sym_DASH] = ACTIONS(806), + [anon_sym_DASH_DASH] = ACTIONS(808), + [anon_sym_PLUS_PLUS] = ACTIONS(808), + [anon_sym_sizeof] = ACTIONS(810), + [sym_number_literal] = ACTIONS(2071), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(2073), + [sym_false] = ACTIONS(2073), + [sym_null] = ACTIONS(2073), + [sym_identifier] = ACTIONS(2073), [sym_comment] = ACTIONS(39), }, [568] = { @@ -22754,107 +22773,107 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(817), [sym_concatenated_string] = STATE(817), [sym_string_literal] = STATE(346), - [anon_sym_LPAREN2] = ACTIONS(807), - [anon_sym_STAR] = ACTIONS(809), - [anon_sym_AMP] = ACTIONS(809), - [anon_sym_BANG] = ACTIONS(811), - [anon_sym_TILDE] = ACTIONS(813), - [anon_sym_PLUS] = ACTIONS(815), - [anon_sym_DASH] = ACTIONS(815), - [anon_sym_DASH_DASH] = ACTIONS(817), - [anon_sym_PLUS_PLUS] = ACTIONS(817), - [anon_sym_sizeof] = ACTIONS(819), - [sym_number_literal] = ACTIONS(2086), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2088), - [sym_false] = ACTIONS(2088), - [sym_null] = ACTIONS(2088), - [sym_identifier] = ACTIONS(2088), + [anon_sym_LPAREN2] = ACTIONS(798), + [anon_sym_STAR] = ACTIONS(800), + [anon_sym_AMP] = ACTIONS(800), + [anon_sym_BANG] = ACTIONS(802), + [anon_sym_TILDE] = ACTIONS(804), + [anon_sym_PLUS] = ACTIONS(806), + [anon_sym_DASH] = ACTIONS(806), + [anon_sym_DASH_DASH] = ACTIONS(808), + [anon_sym_PLUS_PLUS] = ACTIONS(808), + [anon_sym_sizeof] = ACTIONS(810), + [sym_number_literal] = ACTIONS(2075), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(2077), + [sym_false] = ACTIONS(2077), + [sym_null] = ACTIONS(2077), + [sym_identifier] = ACTIONS(2077), [sym_comment] = ACTIONS(39), }, [569] = { [sym_string_literal] = STATE(818), [aux_sym_concatenated_string_repeat1] = STATE(818), - [anon_sym_COMMA] = ACTIONS(1778), - [anon_sym_RBRACE] = ACTIONS(1778), - [anon_sym_LPAREN2] = ACTIONS(1778), - [anon_sym_STAR] = ACTIONS(1780), - [anon_sym_LBRACK] = ACTIONS(1778), - [anon_sym_EQ] = ACTIONS(1780), - [anon_sym_QMARK] = ACTIONS(1778), - [anon_sym_STAR_EQ] = ACTIONS(1778), - [anon_sym_SLASH_EQ] = ACTIONS(1778), - [anon_sym_PERCENT_EQ] = ACTIONS(1778), - [anon_sym_PLUS_EQ] = ACTIONS(1778), - [anon_sym_DASH_EQ] = ACTIONS(1778), - [anon_sym_LT_LT_EQ] = ACTIONS(1778), - [anon_sym_GT_GT_EQ] = ACTIONS(1778), - [anon_sym_AMP_EQ] = ACTIONS(1778), - [anon_sym_CARET_EQ] = ACTIONS(1778), - [anon_sym_PIPE_EQ] = ACTIONS(1778), - [anon_sym_AMP] = ACTIONS(1780), - [anon_sym_PIPE_PIPE] = ACTIONS(1778), - [anon_sym_AMP_AMP] = ACTIONS(1778), - [anon_sym_PIPE] = ACTIONS(1780), - [anon_sym_CARET] = ACTIONS(1780), - [anon_sym_EQ_EQ] = ACTIONS(1778), - [anon_sym_BANG_EQ] = ACTIONS(1778), - [anon_sym_LT] = ACTIONS(1780), - [anon_sym_GT] = ACTIONS(1780), - [anon_sym_LT_EQ] = ACTIONS(1778), - [anon_sym_GT_EQ] = ACTIONS(1778), - [anon_sym_LT_LT] = ACTIONS(1780), - [anon_sym_GT_GT] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(1780), - [anon_sym_DASH] = ACTIONS(1780), - [anon_sym_SLASH] = ACTIONS(1780), - [anon_sym_PERCENT] = ACTIONS(1780), - [anon_sym_DASH_DASH] = ACTIONS(1778), - [anon_sym_PLUS_PLUS] = ACTIONS(1778), - [anon_sym_DOT] = ACTIONS(1778), - [anon_sym_DASH_GT] = ACTIONS(1778), + [anon_sym_COMMA] = ACTIONS(1767), + [anon_sym_RBRACE] = ACTIONS(1767), + [anon_sym_LPAREN2] = ACTIONS(1767), + [anon_sym_STAR] = ACTIONS(1769), + [anon_sym_LBRACK] = ACTIONS(1767), + [anon_sym_EQ] = ACTIONS(1769), + [anon_sym_QMARK] = ACTIONS(1767), + [anon_sym_STAR_EQ] = ACTIONS(1767), + [anon_sym_SLASH_EQ] = ACTIONS(1767), + [anon_sym_PERCENT_EQ] = ACTIONS(1767), + [anon_sym_PLUS_EQ] = ACTIONS(1767), + [anon_sym_DASH_EQ] = ACTIONS(1767), + [anon_sym_LT_LT_EQ] = ACTIONS(1767), + [anon_sym_GT_GT_EQ] = ACTIONS(1767), + [anon_sym_AMP_EQ] = ACTIONS(1767), + [anon_sym_CARET_EQ] = ACTIONS(1767), + [anon_sym_PIPE_EQ] = ACTIONS(1767), + [anon_sym_AMP] = ACTIONS(1769), + [anon_sym_PIPE_PIPE] = ACTIONS(1767), + [anon_sym_AMP_AMP] = ACTIONS(1767), + [anon_sym_PIPE] = ACTIONS(1769), + [anon_sym_CARET] = ACTIONS(1769), + [anon_sym_EQ_EQ] = ACTIONS(1767), + [anon_sym_BANG_EQ] = ACTIONS(1767), + [anon_sym_LT] = ACTIONS(1769), + [anon_sym_GT] = ACTIONS(1769), + [anon_sym_LT_EQ] = ACTIONS(1767), + [anon_sym_GT_EQ] = ACTIONS(1767), + [anon_sym_LT_LT] = ACTIONS(1769), + [anon_sym_GT_GT] = ACTIONS(1769), + [anon_sym_PLUS] = ACTIONS(1769), + [anon_sym_DASH] = ACTIONS(1769), + [anon_sym_SLASH] = ACTIONS(1769), + [anon_sym_PERCENT] = ACTIONS(1769), + [anon_sym_DASH_DASH] = ACTIONS(1767), + [anon_sym_PLUS_PLUS] = ACTIONS(1767), + [anon_sym_DOT] = ACTIONS(1767), + [anon_sym_DASH_GT] = ACTIONS(1767), [anon_sym_DQUOTE] = ACTIONS(41), [sym_comment] = ACTIONS(39), }, [570] = { - [anon_sym_COMMA] = ACTIONS(2090), - [anon_sym_RPAREN] = ACTIONS(2090), - [anon_sym_SEMI] = ACTIONS(2090), - [anon_sym_extern] = ACTIONS(2092), - [anon_sym_LPAREN2] = ACTIONS(2090), - [anon_sym_STAR] = ACTIONS(2090), - [anon_sym_LBRACK] = ACTIONS(2090), - [anon_sym_RBRACK] = ACTIONS(2090), - [anon_sym_static] = ACTIONS(2092), - [anon_sym_auto] = ACTIONS(2092), - [anon_sym_register] = ACTIONS(2092), - [anon_sym_inline] = ACTIONS(2092), - [anon_sym_const] = ACTIONS(2092), - [anon_sym_restrict] = ACTIONS(2092), - [anon_sym_volatile] = ACTIONS(2092), - [anon_sym__Atomic] = ACTIONS(2092), - [anon_sym_COLON] = ACTIONS(2090), - [anon_sym_AMP] = ACTIONS(2090), - [anon_sym_BANG] = ACTIONS(2090), - [anon_sym_TILDE] = ACTIONS(2090), - [anon_sym_PLUS] = ACTIONS(2092), - [anon_sym_DASH] = ACTIONS(2092), - [anon_sym_DASH_DASH] = ACTIONS(2090), - [anon_sym_PLUS_PLUS] = ACTIONS(2090), - [anon_sym_sizeof] = ACTIONS(2092), - [sym_number_literal] = ACTIONS(2090), - [anon_sym_SQUOTE] = ACTIONS(2090), - [anon_sym_DQUOTE] = ACTIONS(2090), - [sym_true] = ACTIONS(2092), - [sym_false] = ACTIONS(2092), - [sym_null] = ACTIONS(2092), - [sym_identifier] = ACTIONS(2092), + [anon_sym_COMMA] = ACTIONS(2079), + [anon_sym_RPAREN] = ACTIONS(2079), + [anon_sym_SEMI] = ACTIONS(2079), + [anon_sym_extern] = ACTIONS(2081), + [anon_sym_LPAREN2] = ACTIONS(2079), + [anon_sym_STAR] = ACTIONS(2079), + [anon_sym_LBRACK] = ACTIONS(2079), + [anon_sym_RBRACK] = ACTIONS(2079), + [anon_sym_static] = ACTIONS(2081), + [anon_sym_auto] = ACTIONS(2081), + [anon_sym_register] = ACTIONS(2081), + [anon_sym_inline] = ACTIONS(2081), + [anon_sym_const] = ACTIONS(2081), + [anon_sym_restrict] = ACTIONS(2081), + [anon_sym_volatile] = ACTIONS(2081), + [anon_sym__Atomic] = ACTIONS(2081), + [anon_sym_COLON] = ACTIONS(2079), + [anon_sym_AMP] = ACTIONS(2079), + [anon_sym_BANG] = ACTIONS(2079), + [anon_sym_TILDE] = ACTIONS(2079), + [anon_sym_PLUS] = ACTIONS(2081), + [anon_sym_DASH] = ACTIONS(2081), + [anon_sym_DASH_DASH] = ACTIONS(2079), + [anon_sym_PLUS_PLUS] = ACTIONS(2079), + [anon_sym_sizeof] = ACTIONS(2081), + [sym_number_literal] = ACTIONS(2079), + [anon_sym_SQUOTE] = ACTIONS(2079), + [anon_sym_DQUOTE] = ACTIONS(2079), + [sym_true] = ACTIONS(2081), + [sym_false] = ACTIONS(2081), + [sym_null] = ACTIONS(2081), + [sym_identifier] = ACTIONS(2081), [sym_comment] = ACTIONS(39), }, [571] = { [sym_enumerator] = STATE(348), - [sym_identifier] = ACTIONS(185), + [sym_identifier] = ACTIONS(183), [sym_comment] = ACTIONS(39), }, [572] = { @@ -22874,10 +22893,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(819), [aux_sym__declaration_specifiers_repeat1] = STATE(112), [aux_sym_sized_type_specifier_repeat1] = STATE(113), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(195), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2094), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(197), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(199), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(193), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2083), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(195), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(197), [anon_sym_extern] = ACTIONS(23), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), @@ -22887,10 +22906,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_restrict] = ACTIONS(25), [anon_sym_volatile] = ACTIONS(25), [anon_sym__Atomic] = ACTIONS(25), - [anon_sym_unsigned] = ACTIONS(203), - [anon_sym_long] = ACTIONS(203), - [anon_sym_short] = ACTIONS(203), - [sym_primitive_type] = ACTIONS(205), + [anon_sym_unsigned] = ACTIONS(201), + [anon_sym_long] = ACTIONS(201), + [anon_sym_short] = ACTIONS(201), + [sym_primitive_type] = ACTIONS(203), [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), @@ -22916,12 +22935,12 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(822), [aux_sym__declaration_specifiers_repeat1] = STATE(112), [aux_sym_sized_type_specifier_repeat1] = STATE(113), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(195), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2096), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(197), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(199), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(831), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(833), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(193), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2085), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(195), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(197), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(822), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(824), [anon_sym_extern] = ACTIONS(23), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), @@ -22931,10 +22950,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_restrict] = ACTIONS(25), [anon_sym_volatile] = ACTIONS(25), [anon_sym__Atomic] = ACTIONS(25), - [anon_sym_unsigned] = ACTIONS(203), - [anon_sym_long] = ACTIONS(203), - [anon_sym_short] = ACTIONS(203), - [sym_primitive_type] = ACTIONS(205), + [anon_sym_unsigned] = ACTIONS(201), + [anon_sym_long] = ACTIONS(201), + [anon_sym_short] = ACTIONS(201), + [sym_primitive_type] = ACTIONS(203), [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), @@ -22942,92 +22961,92 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(39), }, [574] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2098), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2100), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2100), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2100), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2100), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2100), - [anon_sym_extern] = ACTIONS(2098), - [anon_sym_RBRACE] = ACTIONS(2100), - [anon_sym_static] = ACTIONS(2098), - [anon_sym_auto] = ACTIONS(2098), - [anon_sym_register] = ACTIONS(2098), - [anon_sym_inline] = ACTIONS(2098), - [anon_sym_const] = ACTIONS(2098), - [anon_sym_restrict] = ACTIONS(2098), - [anon_sym_volatile] = ACTIONS(2098), - [anon_sym__Atomic] = ACTIONS(2098), - [anon_sym_unsigned] = ACTIONS(2098), - [anon_sym_long] = ACTIONS(2098), - [anon_sym_short] = ACTIONS(2098), - [sym_primitive_type] = ACTIONS(2098), - [anon_sym_enum] = ACTIONS(2098), - [anon_sym_struct] = ACTIONS(2098), - [anon_sym_union] = ACTIONS(2098), - [sym_identifier] = ACTIONS(2098), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2087), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2089), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2089), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2089), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2089), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2089), + [anon_sym_extern] = ACTIONS(2087), + [anon_sym_RBRACE] = ACTIONS(2089), + [anon_sym_static] = ACTIONS(2087), + [anon_sym_auto] = ACTIONS(2087), + [anon_sym_register] = ACTIONS(2087), + [anon_sym_inline] = ACTIONS(2087), + [anon_sym_const] = ACTIONS(2087), + [anon_sym_restrict] = ACTIONS(2087), + [anon_sym_volatile] = ACTIONS(2087), + [anon_sym__Atomic] = ACTIONS(2087), + [anon_sym_unsigned] = ACTIONS(2087), + [anon_sym_long] = ACTIONS(2087), + [anon_sym_short] = ACTIONS(2087), + [sym_primitive_type] = ACTIONS(2087), + [anon_sym_enum] = ACTIONS(2087), + [anon_sym_struct] = ACTIONS(2087), + [anon_sym_union] = ACTIONS(2087), + [sym_identifier] = ACTIONS(2087), [sym_comment] = ACTIONS(39), }, [575] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2102), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2104), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2104), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2104), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2104), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2104), - [anon_sym_extern] = ACTIONS(2102), - [anon_sym_RBRACE] = ACTIONS(2104), - [anon_sym_static] = ACTIONS(2102), - [anon_sym_auto] = ACTIONS(2102), - [anon_sym_register] = ACTIONS(2102), - [anon_sym_inline] = ACTIONS(2102), - [anon_sym_const] = ACTIONS(2102), - [anon_sym_restrict] = ACTIONS(2102), - [anon_sym_volatile] = ACTIONS(2102), - [anon_sym__Atomic] = ACTIONS(2102), - [anon_sym_unsigned] = ACTIONS(2102), - [anon_sym_long] = ACTIONS(2102), - [anon_sym_short] = ACTIONS(2102), - [sym_primitive_type] = ACTIONS(2102), - [anon_sym_enum] = ACTIONS(2102), - [anon_sym_struct] = ACTIONS(2102), - [anon_sym_union] = ACTIONS(2102), - [sym_identifier] = ACTIONS(2102), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2091), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2093), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2093), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2093), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2093), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2093), + [anon_sym_extern] = ACTIONS(2091), + [anon_sym_RBRACE] = ACTIONS(2093), + [anon_sym_static] = ACTIONS(2091), + [anon_sym_auto] = ACTIONS(2091), + [anon_sym_register] = ACTIONS(2091), + [anon_sym_inline] = ACTIONS(2091), + [anon_sym_const] = ACTIONS(2091), + [anon_sym_restrict] = ACTIONS(2091), + [anon_sym_volatile] = ACTIONS(2091), + [anon_sym__Atomic] = ACTIONS(2091), + [anon_sym_unsigned] = ACTIONS(2091), + [anon_sym_long] = ACTIONS(2091), + [anon_sym_short] = ACTIONS(2091), + [sym_primitive_type] = ACTIONS(2091), + [anon_sym_enum] = ACTIONS(2091), + [anon_sym_struct] = ACTIONS(2091), + [anon_sym_union] = ACTIONS(2091), + [sym_identifier] = ACTIONS(2091), [sym_comment] = ACTIONS(39), }, [576] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2106), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2108), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2108), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2108), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2108), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2108), - [anon_sym_extern] = ACTIONS(2106), - [anon_sym_RBRACE] = ACTIONS(2108), - [anon_sym_static] = ACTIONS(2106), - [anon_sym_auto] = ACTIONS(2106), - [anon_sym_register] = ACTIONS(2106), - [anon_sym_inline] = ACTIONS(2106), - [anon_sym_const] = ACTIONS(2106), - [anon_sym_restrict] = ACTIONS(2106), - [anon_sym_volatile] = ACTIONS(2106), - [anon_sym__Atomic] = ACTIONS(2106), - [anon_sym_unsigned] = ACTIONS(2106), - [anon_sym_long] = ACTIONS(2106), - [anon_sym_short] = ACTIONS(2106), - [sym_primitive_type] = ACTIONS(2106), - [anon_sym_enum] = ACTIONS(2106), - [anon_sym_struct] = ACTIONS(2106), - [anon_sym_union] = ACTIONS(2106), - [sym_identifier] = ACTIONS(2106), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2095), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2097), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2097), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2097), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2097), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2097), + [anon_sym_extern] = ACTIONS(2095), + [anon_sym_RBRACE] = ACTIONS(2097), + [anon_sym_static] = ACTIONS(2095), + [anon_sym_auto] = ACTIONS(2095), + [anon_sym_register] = ACTIONS(2095), + [anon_sym_inline] = ACTIONS(2095), + [anon_sym_const] = ACTIONS(2095), + [anon_sym_restrict] = ACTIONS(2095), + [anon_sym_volatile] = ACTIONS(2095), + [anon_sym__Atomic] = ACTIONS(2095), + [anon_sym_unsigned] = ACTIONS(2095), + [anon_sym_long] = ACTIONS(2095), + [anon_sym_short] = ACTIONS(2095), + [sym_primitive_type] = ACTIONS(2095), + [anon_sym_enum] = ACTIONS(2095), + [anon_sym_struct] = ACTIONS(2095), + [anon_sym_union] = ACTIONS(2095), + [sym_identifier] = ACTIONS(2095), [sym_comment] = ACTIONS(39), }, [577] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2110), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2099), [sym_comment] = ACTIONS(39), }, [578] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2112), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2101), [sym_comment] = ACTIONS(39), }, [579] = { @@ -23047,207 +23066,207 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(579), [aux_sym__declaration_specifiers_repeat1] = STATE(112), [aux_sym_sized_type_specifier_repeat1] = STATE(113), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(885), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(897), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(888), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(891), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(897), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(897), - [anon_sym_extern] = ACTIONS(894), - [anon_sym_static] = ACTIONS(894), - [anon_sym_auto] = ACTIONS(894), - [anon_sym_register] = ACTIONS(894), - [anon_sym_inline] = ACTIONS(894), - [anon_sym_const] = ACTIONS(899), - [anon_sym_restrict] = ACTIONS(899), - [anon_sym_volatile] = ACTIONS(899), - [anon_sym__Atomic] = ACTIONS(899), - [anon_sym_unsigned] = ACTIONS(902), - [anon_sym_long] = ACTIONS(902), - [anon_sym_short] = ACTIONS(902), - [sym_primitive_type] = ACTIONS(905), - [anon_sym_enum] = ACTIONS(908), - [anon_sym_struct] = ACTIONS(911), - [anon_sym_union] = ACTIONS(914), - [sym_identifier] = ACTIONS(917), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(876), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(888), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(879), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(882), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(888), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(888), + [anon_sym_extern] = ACTIONS(885), + [anon_sym_static] = ACTIONS(885), + [anon_sym_auto] = ACTIONS(885), + [anon_sym_register] = ACTIONS(885), + [anon_sym_inline] = ACTIONS(885), + [anon_sym_const] = ACTIONS(890), + [anon_sym_restrict] = ACTIONS(890), + [anon_sym_volatile] = ACTIONS(890), + [anon_sym__Atomic] = ACTIONS(890), + [anon_sym_unsigned] = ACTIONS(893), + [anon_sym_long] = ACTIONS(893), + [anon_sym_short] = ACTIONS(893), + [sym_primitive_type] = ACTIONS(896), + [anon_sym_enum] = ACTIONS(899), + [anon_sym_struct] = ACTIONS(902), + [anon_sym_union] = ACTIONS(905), + [sym_identifier] = ACTIONS(908), [sym_comment] = ACTIONS(39), }, [580] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2114), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2116), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2116), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2116), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2116), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2116), - [anon_sym_extern] = ACTIONS(2114), - [anon_sym_RBRACE] = ACTIONS(2116), - [anon_sym_static] = ACTIONS(2114), - [anon_sym_auto] = ACTIONS(2114), - [anon_sym_register] = ACTIONS(2114), - [anon_sym_inline] = ACTIONS(2114), - [anon_sym_const] = ACTIONS(2114), - [anon_sym_restrict] = ACTIONS(2114), - [anon_sym_volatile] = ACTIONS(2114), - [anon_sym__Atomic] = ACTIONS(2114), - [anon_sym_unsigned] = ACTIONS(2114), - [anon_sym_long] = ACTIONS(2114), - [anon_sym_short] = ACTIONS(2114), - [sym_primitive_type] = ACTIONS(2114), - [anon_sym_enum] = ACTIONS(2114), - [anon_sym_struct] = ACTIONS(2114), - [anon_sym_union] = ACTIONS(2114), - [sym_identifier] = ACTIONS(2114), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2103), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2105), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2105), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2105), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2105), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2105), + [anon_sym_extern] = ACTIONS(2103), + [anon_sym_RBRACE] = ACTIONS(2105), + [anon_sym_static] = ACTIONS(2103), + [anon_sym_auto] = ACTIONS(2103), + [anon_sym_register] = ACTIONS(2103), + [anon_sym_inline] = ACTIONS(2103), + [anon_sym_const] = ACTIONS(2103), + [anon_sym_restrict] = ACTIONS(2103), + [anon_sym_volatile] = ACTIONS(2103), + [anon_sym__Atomic] = ACTIONS(2103), + [anon_sym_unsigned] = ACTIONS(2103), + [anon_sym_long] = ACTIONS(2103), + [anon_sym_short] = ACTIONS(2103), + [sym_primitive_type] = ACTIONS(2103), + [anon_sym_enum] = ACTIONS(2103), + [anon_sym_struct] = ACTIONS(2103), + [anon_sym_union] = ACTIONS(2103), + [sym_identifier] = ACTIONS(2103), [sym_comment] = ACTIONS(39), }, [581] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2118), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2120), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2120), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2120), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2120), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2120), - [anon_sym_extern] = ACTIONS(2118), - [anon_sym_RBRACE] = ACTIONS(2120), - [anon_sym_static] = ACTIONS(2118), - [anon_sym_auto] = ACTIONS(2118), - [anon_sym_register] = ACTIONS(2118), - [anon_sym_inline] = ACTIONS(2118), - [anon_sym_const] = ACTIONS(2118), - [anon_sym_restrict] = ACTIONS(2118), - [anon_sym_volatile] = ACTIONS(2118), - [anon_sym__Atomic] = ACTIONS(2118), - [anon_sym_unsigned] = ACTIONS(2118), - [anon_sym_long] = ACTIONS(2118), - [anon_sym_short] = ACTIONS(2118), - [sym_primitive_type] = ACTIONS(2118), - [anon_sym_enum] = ACTIONS(2118), - [anon_sym_struct] = ACTIONS(2118), - [anon_sym_union] = ACTIONS(2118), - [sym_identifier] = ACTIONS(2118), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2107), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2109), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2109), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2109), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2109), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2109), + [anon_sym_extern] = ACTIONS(2107), + [anon_sym_RBRACE] = ACTIONS(2109), + [anon_sym_static] = ACTIONS(2107), + [anon_sym_auto] = ACTIONS(2107), + [anon_sym_register] = ACTIONS(2107), + [anon_sym_inline] = ACTIONS(2107), + [anon_sym_const] = ACTIONS(2107), + [anon_sym_restrict] = ACTIONS(2107), + [anon_sym_volatile] = ACTIONS(2107), + [anon_sym__Atomic] = ACTIONS(2107), + [anon_sym_unsigned] = ACTIONS(2107), + [anon_sym_long] = ACTIONS(2107), + [anon_sym_short] = ACTIONS(2107), + [sym_primitive_type] = ACTIONS(2107), + [anon_sym_enum] = ACTIONS(2107), + [anon_sym_struct] = ACTIONS(2107), + [anon_sym_union] = ACTIONS(2107), + [sym_identifier] = ACTIONS(2107), [sym_comment] = ACTIONS(39), }, [582] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2122), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2124), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2124), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2124), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2124), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2124), - [anon_sym_extern] = ACTIONS(2122), - [anon_sym_RBRACE] = ACTIONS(2124), - [anon_sym_static] = ACTIONS(2122), - [anon_sym_auto] = ACTIONS(2122), - [anon_sym_register] = ACTIONS(2122), - [anon_sym_inline] = ACTIONS(2122), - [anon_sym_const] = ACTIONS(2122), - [anon_sym_restrict] = ACTIONS(2122), - [anon_sym_volatile] = ACTIONS(2122), - [anon_sym__Atomic] = ACTIONS(2122), - [anon_sym_unsigned] = ACTIONS(2122), - [anon_sym_long] = ACTIONS(2122), - [anon_sym_short] = ACTIONS(2122), - [sym_primitive_type] = ACTIONS(2122), - [anon_sym_enum] = ACTIONS(2122), - [anon_sym_struct] = ACTIONS(2122), - [anon_sym_union] = ACTIONS(2122), - [sym_identifier] = ACTIONS(2122), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2111), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2113), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2113), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2113), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2113), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2113), + [anon_sym_extern] = ACTIONS(2111), + [anon_sym_RBRACE] = ACTIONS(2113), + [anon_sym_static] = ACTIONS(2111), + [anon_sym_auto] = ACTIONS(2111), + [anon_sym_register] = ACTIONS(2111), + [anon_sym_inline] = ACTIONS(2111), + [anon_sym_const] = ACTIONS(2111), + [anon_sym_restrict] = ACTIONS(2111), + [anon_sym_volatile] = ACTIONS(2111), + [anon_sym__Atomic] = ACTIONS(2111), + [anon_sym_unsigned] = ACTIONS(2111), + [anon_sym_long] = ACTIONS(2111), + [anon_sym_short] = ACTIONS(2111), + [sym_primitive_type] = ACTIONS(2111), + [anon_sym_enum] = ACTIONS(2111), + [anon_sym_struct] = ACTIONS(2111), + [anon_sym_union] = ACTIONS(2111), + [sym_identifier] = ACTIONS(2111), [sym_comment] = ACTIONS(39), }, [583] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2126), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2115), [sym_comment] = ACTIONS(39), }, [584] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2128), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2117), [sym_comment] = ACTIONS(39), }, [585] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2130), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2132), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2132), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2132), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2132), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2132), - [anon_sym_extern] = ACTIONS(2130), - [anon_sym_RBRACE] = ACTIONS(2132), - [anon_sym_static] = ACTIONS(2130), - [anon_sym_auto] = ACTIONS(2130), - [anon_sym_register] = ACTIONS(2130), - [anon_sym_inline] = ACTIONS(2130), - [anon_sym_const] = ACTIONS(2130), - [anon_sym_restrict] = ACTIONS(2130), - [anon_sym_volatile] = ACTIONS(2130), - [anon_sym__Atomic] = ACTIONS(2130), - [anon_sym_unsigned] = ACTIONS(2130), - [anon_sym_long] = ACTIONS(2130), - [anon_sym_short] = ACTIONS(2130), - [sym_primitive_type] = ACTIONS(2130), - [anon_sym_enum] = ACTIONS(2130), - [anon_sym_struct] = ACTIONS(2130), - [anon_sym_union] = ACTIONS(2130), - [sym_identifier] = ACTIONS(2130), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2119), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2121), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2121), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2121), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2121), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2121), + [anon_sym_extern] = ACTIONS(2119), + [anon_sym_RBRACE] = ACTIONS(2121), + [anon_sym_static] = ACTIONS(2119), + [anon_sym_auto] = ACTIONS(2119), + [anon_sym_register] = ACTIONS(2119), + [anon_sym_inline] = ACTIONS(2119), + [anon_sym_const] = ACTIONS(2119), + [anon_sym_restrict] = ACTIONS(2119), + [anon_sym_volatile] = ACTIONS(2119), + [anon_sym__Atomic] = ACTIONS(2119), + [anon_sym_unsigned] = ACTIONS(2119), + [anon_sym_long] = ACTIONS(2119), + [anon_sym_short] = ACTIONS(2119), + [sym_primitive_type] = ACTIONS(2119), + [anon_sym_enum] = ACTIONS(2119), + [anon_sym_struct] = ACTIONS(2119), + [anon_sym_union] = ACTIONS(2119), + [sym_identifier] = ACTIONS(2119), [sym_comment] = ACTIONS(39), }, [586] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2134), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2136), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2136), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2136), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2136), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2136), - [anon_sym_extern] = ACTIONS(2134), - [anon_sym_RBRACE] = ACTIONS(2136), - [anon_sym_static] = ACTIONS(2134), - [anon_sym_auto] = ACTIONS(2134), - [anon_sym_register] = ACTIONS(2134), - [anon_sym_inline] = ACTIONS(2134), - [anon_sym_const] = ACTIONS(2134), - [anon_sym_restrict] = ACTIONS(2134), - [anon_sym_volatile] = ACTIONS(2134), - [anon_sym__Atomic] = ACTIONS(2134), - [anon_sym_unsigned] = ACTIONS(2134), - [anon_sym_long] = ACTIONS(2134), - [anon_sym_short] = ACTIONS(2134), - [sym_primitive_type] = ACTIONS(2134), - [anon_sym_enum] = ACTIONS(2134), - [anon_sym_struct] = ACTIONS(2134), - [anon_sym_union] = ACTIONS(2134), - [sym_identifier] = ACTIONS(2134), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2123), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2125), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2125), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2125), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2125), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2125), + [anon_sym_extern] = ACTIONS(2123), + [anon_sym_RBRACE] = ACTIONS(2125), + [anon_sym_static] = ACTIONS(2123), + [anon_sym_auto] = ACTIONS(2123), + [anon_sym_register] = ACTIONS(2123), + [anon_sym_inline] = ACTIONS(2123), + [anon_sym_const] = ACTIONS(2123), + [anon_sym_restrict] = ACTIONS(2123), + [anon_sym_volatile] = ACTIONS(2123), + [anon_sym__Atomic] = ACTIONS(2123), + [anon_sym_unsigned] = ACTIONS(2123), + [anon_sym_long] = ACTIONS(2123), + [anon_sym_short] = ACTIONS(2123), + [sym_primitive_type] = ACTIONS(2123), + [anon_sym_enum] = ACTIONS(2123), + [anon_sym_struct] = ACTIONS(2123), + [anon_sym_union] = ACTIONS(2123), + [sym_identifier] = ACTIONS(2123), [sym_comment] = ACTIONS(39), }, [587] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2138), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2140), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2140), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2140), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2140), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2140), - [anon_sym_extern] = ACTIONS(2138), - [anon_sym_RBRACE] = ACTIONS(2140), - [anon_sym_static] = ACTIONS(2138), - [anon_sym_auto] = ACTIONS(2138), - [anon_sym_register] = ACTIONS(2138), - [anon_sym_inline] = ACTIONS(2138), - [anon_sym_const] = ACTIONS(2138), - [anon_sym_restrict] = ACTIONS(2138), - [anon_sym_volatile] = ACTIONS(2138), - [anon_sym__Atomic] = ACTIONS(2138), - [anon_sym_unsigned] = ACTIONS(2138), - [anon_sym_long] = ACTIONS(2138), - [anon_sym_short] = ACTIONS(2138), - [sym_primitive_type] = ACTIONS(2138), - [anon_sym_enum] = ACTIONS(2138), - [anon_sym_struct] = ACTIONS(2138), - [anon_sym_union] = ACTIONS(2138), - [sym_identifier] = ACTIONS(2138), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2127), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2129), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2129), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2129), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2129), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2129), + [anon_sym_extern] = ACTIONS(2127), + [anon_sym_RBRACE] = ACTIONS(2129), + [anon_sym_static] = ACTIONS(2127), + [anon_sym_auto] = ACTIONS(2127), + [anon_sym_register] = ACTIONS(2127), + [anon_sym_inline] = ACTIONS(2127), + [anon_sym_const] = ACTIONS(2127), + [anon_sym_restrict] = ACTIONS(2127), + [anon_sym_volatile] = ACTIONS(2127), + [anon_sym__Atomic] = ACTIONS(2127), + [anon_sym_unsigned] = ACTIONS(2127), + [anon_sym_long] = ACTIONS(2127), + [anon_sym_short] = ACTIONS(2127), + [sym_primitive_type] = ACTIONS(2127), + [anon_sym_enum] = ACTIONS(2127), + [anon_sym_struct] = ACTIONS(2127), + [anon_sym_union] = ACTIONS(2127), + [sym_identifier] = ACTIONS(2127), [sym_comment] = ACTIONS(39), }, [588] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2142), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2131), [sym_comment] = ACTIONS(39), }, [589] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2144), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2133), [sym_comment] = ACTIONS(39), }, [590] = { @@ -23257,36 +23276,36 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_array_field_declarator] = STATE(202), [sym_type_qualifier] = STATE(219), [aux_sym_type_definition_repeat1] = STATE(219), - [anon_sym_LPAREN2] = ACTIONS(490), - [anon_sym_STAR] = ACTIONS(843), + [anon_sym_LPAREN2] = ACTIONS(486), + [anon_sym_STAR] = ACTIONS(834), [anon_sym_const] = ACTIONS(25), [anon_sym_restrict] = ACTIONS(25), [anon_sym_volatile] = ACTIONS(25), [anon_sym__Atomic] = ACTIONS(25), - [sym_identifier] = ACTIONS(845), + [sym_identifier] = ACTIONS(836), [sym_comment] = ACTIONS(39), }, [591] = { - [anon_sym_COMMA] = ACTIONS(2146), - [anon_sym_RPAREN] = ACTIONS(2146), - [anon_sym_SEMI] = ACTIONS(2146), - [anon_sym_LPAREN2] = ACTIONS(2146), - [anon_sym_LBRACK] = ACTIONS(2146), - [anon_sym_COLON] = ACTIONS(2146), + [anon_sym_COMMA] = ACTIONS(2135), + [anon_sym_RPAREN] = ACTIONS(2135), + [anon_sym_SEMI] = ACTIONS(2135), + [anon_sym_LPAREN2] = ACTIONS(2135), + [anon_sym_LBRACK] = ACTIONS(2135), + [anon_sym_COLON] = ACTIONS(2135), [sym_comment] = ACTIONS(39), }, [592] = { [sym_parameter_list] = STATE(381), - [anon_sym_COMMA] = ACTIONS(2148), - [anon_sym_RPAREN] = ACTIONS(2148), - [anon_sym_SEMI] = ACTIONS(2148), - [anon_sym_LPAREN2] = ACTIONS(243), - [anon_sym_LBRACK] = ACTIONS(871), - [anon_sym_COLON] = ACTIONS(2148), + [anon_sym_COMMA] = ACTIONS(2137), + [anon_sym_RPAREN] = ACTIONS(2137), + [anon_sym_SEMI] = ACTIONS(2137), + [anon_sym_LPAREN2] = ACTIONS(241), + [anon_sym_LBRACK] = ACTIONS(862), + [anon_sym_COLON] = ACTIONS(2137), [sym_comment] = ACTIONS(39), }, [593] = { - [anon_sym_RPAREN] = ACTIONS(2150), + [anon_sym_RPAREN] = ACTIONS(2139), [sym_comment] = ACTIONS(39), }, [594] = { @@ -23321,102 +23340,102 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_macro_type_specifier] = STATE(116), [aux_sym_type_definition_repeat1] = STATE(118), [aux_sym_sized_type_specifier_repeat1] = STATE(119), - [anon_sym_LPAREN2] = ACTIONS(970), - [anon_sym_STAR] = ACTIONS(972), + [anon_sym_LPAREN2] = ACTIONS(961), + [anon_sym_STAR] = ACTIONS(963), [anon_sym_const] = ACTIONS(25), [anon_sym_restrict] = ACTIONS(25), [anon_sym_volatile] = ACTIONS(25), [anon_sym__Atomic] = ACTIONS(25), - [anon_sym_unsigned] = ACTIONS(223), - [anon_sym_long] = ACTIONS(223), - [anon_sym_short] = ACTIONS(223), - [sym_primitive_type] = ACTIONS(225), + [anon_sym_unsigned] = ACTIONS(221), + [anon_sym_long] = ACTIONS(221), + [anon_sym_short] = ACTIONS(221), + [sym_primitive_type] = ACTIONS(223), [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), - [anon_sym_AMP] = ACTIONS(972), - [anon_sym_BANG] = ACTIONS(974), - [anon_sym_TILDE] = ACTIONS(976), - [anon_sym_PLUS] = ACTIONS(978), - [anon_sym_DASH] = ACTIONS(978), - [anon_sym_DASH_DASH] = ACTIONS(980), - [anon_sym_PLUS_PLUS] = ACTIONS(980), - [anon_sym_sizeof] = ACTIONS(982), - [sym_number_literal] = ACTIONS(984), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(986), - [sym_false] = ACTIONS(986), - [sym_null] = ACTIONS(986), - [sym_identifier] = ACTIONS(988), + [anon_sym_AMP] = ACTIONS(963), + [anon_sym_BANG] = ACTIONS(965), + [anon_sym_TILDE] = ACTIONS(967), + [anon_sym_PLUS] = ACTIONS(969), + [anon_sym_DASH] = ACTIONS(969), + [anon_sym_DASH_DASH] = ACTIONS(971), + [anon_sym_PLUS_PLUS] = ACTIONS(971), + [anon_sym_sizeof] = ACTIONS(973), + [sym_number_literal] = ACTIONS(975), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(977), + [sym_false] = ACTIONS(977), + [sym_null] = ACTIONS(977), + [sym_identifier] = ACTIONS(979), [sym_comment] = ACTIONS(39), }, [595] = { [sym_argument_list] = STATE(465), - [anon_sym_SEMI] = ACTIONS(1700), - [anon_sym_LPAREN2] = ACTIONS(1096), - [anon_sym_STAR] = ACTIONS(1436), - [anon_sym_LBRACK] = ACTIONS(1100), - [anon_sym_EQ] = ACTIONS(1702), - [anon_sym_QMARK] = ACTIONS(1700), - [anon_sym_STAR_EQ] = ACTIONS(1700), - [anon_sym_SLASH_EQ] = ACTIONS(1700), - [anon_sym_PERCENT_EQ] = ACTIONS(1700), - [anon_sym_PLUS_EQ] = ACTIONS(1700), - [anon_sym_DASH_EQ] = ACTIONS(1700), - [anon_sym_LT_LT_EQ] = ACTIONS(1700), - [anon_sym_GT_GT_EQ] = ACTIONS(1700), - [anon_sym_AMP_EQ] = ACTIONS(1700), - [anon_sym_CARET_EQ] = ACTIONS(1700), - [anon_sym_PIPE_EQ] = ACTIONS(1700), - [anon_sym_AMP] = ACTIONS(1702), - [anon_sym_PIPE_PIPE] = ACTIONS(1700), - [anon_sym_AMP_AMP] = ACTIONS(1700), - [anon_sym_PIPE] = ACTIONS(1702), - [anon_sym_CARET] = ACTIONS(1702), - [anon_sym_EQ_EQ] = ACTIONS(1700), - [anon_sym_BANG_EQ] = ACTIONS(1700), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(1702), - [anon_sym_LT_EQ] = ACTIONS(1700), - [anon_sym_GT_EQ] = ACTIONS(1700), - [anon_sym_LT_LT] = ACTIONS(1460), - [anon_sym_GT_GT] = ACTIONS(1460), - [anon_sym_PLUS] = ACTIONS(1462), - [anon_sym_DASH] = ACTIONS(1462), - [anon_sym_SLASH] = ACTIONS(1436), - [anon_sym_PERCENT] = ACTIONS(1436), - [anon_sym_DASH_DASH] = ACTIONS(1128), - [anon_sym_PLUS_PLUS] = ACTIONS(1128), - [anon_sym_DOT] = ACTIONS(1130), - [anon_sym_DASH_GT] = ACTIONS(1130), + [anon_sym_SEMI] = ACTIONS(1689), + [anon_sym_LPAREN2] = ACTIONS(1089), + [anon_sym_STAR] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(1691), + [anon_sym_QMARK] = ACTIONS(1689), + [anon_sym_STAR_EQ] = ACTIONS(1689), + [anon_sym_SLASH_EQ] = ACTIONS(1689), + [anon_sym_PERCENT_EQ] = ACTIONS(1689), + [anon_sym_PLUS_EQ] = ACTIONS(1689), + [anon_sym_DASH_EQ] = ACTIONS(1689), + [anon_sym_LT_LT_EQ] = ACTIONS(1689), + [anon_sym_GT_GT_EQ] = ACTIONS(1689), + [anon_sym_AMP_EQ] = ACTIONS(1689), + [anon_sym_CARET_EQ] = ACTIONS(1689), + [anon_sym_PIPE_EQ] = ACTIONS(1689), + [anon_sym_AMP] = ACTIONS(1691), + [anon_sym_PIPE_PIPE] = ACTIONS(1689), + [anon_sym_AMP_AMP] = ACTIONS(1689), + [anon_sym_PIPE] = ACTIONS(1691), + [anon_sym_CARET] = ACTIONS(1691), + [anon_sym_EQ_EQ] = ACTIONS(1689), + [anon_sym_BANG_EQ] = ACTIONS(1689), + [anon_sym_LT] = ACTIONS(1691), + [anon_sym_GT] = ACTIONS(1691), + [anon_sym_LT_EQ] = ACTIONS(1689), + [anon_sym_GT_EQ] = ACTIONS(1689), + [anon_sym_LT_LT] = ACTIONS(1451), + [anon_sym_GT_GT] = ACTIONS(1451), + [anon_sym_PLUS] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1453), + [anon_sym_SLASH] = ACTIONS(1427), + [anon_sym_PERCENT] = ACTIONS(1427), + [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_PLUS_PLUS] = ACTIONS(1121), + [anon_sym_DOT] = ACTIONS(1123), + [anon_sym_DASH_GT] = ACTIONS(1123), [sym_comment] = ACTIONS(39), }, [596] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2152), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2154), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2154), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2154), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2154), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2154), - [anon_sym_extern] = ACTIONS(2152), - [anon_sym_RBRACE] = ACTIONS(2154), - [anon_sym_static] = ACTIONS(2152), - [anon_sym_auto] = ACTIONS(2152), - [anon_sym_register] = ACTIONS(2152), - [anon_sym_inline] = ACTIONS(2152), - [anon_sym_const] = ACTIONS(2152), - [anon_sym_restrict] = ACTIONS(2152), - [anon_sym_volatile] = ACTIONS(2152), - [anon_sym__Atomic] = ACTIONS(2152), - [anon_sym_unsigned] = ACTIONS(2152), - [anon_sym_long] = ACTIONS(2152), - [anon_sym_short] = ACTIONS(2152), - [sym_primitive_type] = ACTIONS(2152), - [anon_sym_enum] = ACTIONS(2152), - [anon_sym_struct] = ACTIONS(2152), - [anon_sym_union] = ACTIONS(2152), - [sym_identifier] = ACTIONS(2152), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2141), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2143), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2143), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2143), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2143), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2143), + [anon_sym_extern] = ACTIONS(2141), + [anon_sym_RBRACE] = ACTIONS(2143), + [anon_sym_static] = ACTIONS(2141), + [anon_sym_auto] = ACTIONS(2141), + [anon_sym_register] = ACTIONS(2141), + [anon_sym_inline] = ACTIONS(2141), + [anon_sym_const] = ACTIONS(2141), + [anon_sym_restrict] = ACTIONS(2141), + [anon_sym_volatile] = ACTIONS(2141), + [anon_sym__Atomic] = ACTIONS(2141), + [anon_sym_unsigned] = ACTIONS(2141), + [anon_sym_long] = ACTIONS(2141), + [anon_sym_short] = ACTIONS(2141), + [sym_primitive_type] = ACTIONS(2141), + [anon_sym_enum] = ACTIONS(2141), + [anon_sym_struct] = ACTIONS(2141), + [anon_sym_union] = ACTIONS(2141), + [sym_identifier] = ACTIONS(2141), [sym_comment] = ACTIONS(39), }, [597] = { @@ -23440,23 +23459,23 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(733), [sym_concatenated_string] = STATE(733), [sym_string_literal] = STATE(376), - [anon_sym_LPAREN2] = ACTIONS(847), - [anon_sym_STAR] = ACTIONS(849), - [anon_sym_AMP] = ACTIONS(849), - [anon_sym_BANG] = ACTIONS(851), - [anon_sym_TILDE] = ACTIONS(853), - [anon_sym_PLUS] = ACTIONS(855), - [anon_sym_DASH] = ACTIONS(855), - [anon_sym_DASH_DASH] = ACTIONS(857), - [anon_sym_PLUS_PLUS] = ACTIONS(857), - [anon_sym_sizeof] = ACTIONS(859), - [sym_number_literal] = ACTIONS(1720), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1722), - [sym_false] = ACTIONS(1722), - [sym_null] = ACTIONS(1722), - [sym_identifier] = ACTIONS(1722), + [anon_sym_LPAREN2] = ACTIONS(838), + [anon_sym_STAR] = ACTIONS(840), + [anon_sym_AMP] = ACTIONS(840), + [anon_sym_BANG] = ACTIONS(842), + [anon_sym_TILDE] = ACTIONS(844), + [anon_sym_PLUS] = ACTIONS(846), + [anon_sym_DASH] = ACTIONS(846), + [anon_sym_DASH_DASH] = ACTIONS(848), + [anon_sym_PLUS_PLUS] = ACTIONS(848), + [anon_sym_sizeof] = ACTIONS(850), + [sym_number_literal] = ACTIONS(1709), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(1711), + [sym_false] = ACTIONS(1711), + [sym_null] = ACTIONS(1711), + [sym_identifier] = ACTIONS(1711), [sym_comment] = ACTIONS(39), }, [598] = { @@ -23480,23 +23499,23 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(831), [sym_concatenated_string] = STATE(831), [sym_string_literal] = STATE(376), - [anon_sym_LPAREN2] = ACTIONS(847), - [anon_sym_STAR] = ACTIONS(849), - [anon_sym_AMP] = ACTIONS(849), - [anon_sym_BANG] = ACTIONS(851), - [anon_sym_TILDE] = ACTIONS(853), - [anon_sym_PLUS] = ACTIONS(855), - [anon_sym_DASH] = ACTIONS(855), - [anon_sym_DASH_DASH] = ACTIONS(857), - [anon_sym_PLUS_PLUS] = ACTIONS(857), - [anon_sym_sizeof] = ACTIONS(859), - [sym_number_literal] = ACTIONS(2156), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2158), - [sym_false] = ACTIONS(2158), - [sym_null] = ACTIONS(2158), - [sym_identifier] = ACTIONS(2158), + [anon_sym_LPAREN2] = ACTIONS(838), + [anon_sym_STAR] = ACTIONS(840), + [anon_sym_AMP] = ACTIONS(840), + [anon_sym_BANG] = ACTIONS(842), + [anon_sym_TILDE] = ACTIONS(844), + [anon_sym_PLUS] = ACTIONS(846), + [anon_sym_DASH] = ACTIONS(846), + [anon_sym_DASH_DASH] = ACTIONS(848), + [anon_sym_PLUS_PLUS] = ACTIONS(848), + [anon_sym_sizeof] = ACTIONS(850), + [sym_number_literal] = ACTIONS(2145), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(2147), + [sym_false] = ACTIONS(2147), + [sym_null] = ACTIONS(2147), + [sym_identifier] = ACTIONS(2147), [sym_comment] = ACTIONS(39), }, [599] = { @@ -23520,23 +23539,23 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(832), [sym_concatenated_string] = STATE(832), [sym_string_literal] = STATE(421), - [anon_sym_LPAREN2] = ACTIONS(996), - [anon_sym_STAR] = ACTIONS(998), - [anon_sym_AMP] = ACTIONS(998), - [anon_sym_BANG] = ACTIONS(1000), - [anon_sym_TILDE] = ACTIONS(1002), - [anon_sym_PLUS] = ACTIONS(1004), - [anon_sym_DASH] = ACTIONS(1004), - [anon_sym_DASH_DASH] = ACTIONS(1006), - [anon_sym_PLUS_PLUS] = ACTIONS(1006), - [anon_sym_sizeof] = ACTIONS(1008), - [sym_number_literal] = ACTIONS(2160), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2162), - [sym_false] = ACTIONS(2162), - [sym_null] = ACTIONS(2162), - [sym_identifier] = ACTIONS(2162), + [anon_sym_LPAREN2] = ACTIONS(987), + [anon_sym_STAR] = ACTIONS(989), + [anon_sym_AMP] = ACTIONS(989), + [anon_sym_BANG] = ACTIONS(991), + [anon_sym_TILDE] = ACTIONS(993), + [anon_sym_PLUS] = ACTIONS(995), + [anon_sym_DASH] = ACTIONS(995), + [anon_sym_DASH_DASH] = ACTIONS(997), + [anon_sym_PLUS_PLUS] = ACTIONS(997), + [anon_sym_sizeof] = ACTIONS(999), + [sym_number_literal] = ACTIONS(2149), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(2151), + [sym_false] = ACTIONS(2151), + [sym_null] = ACTIONS(2151), + [sym_identifier] = ACTIONS(2151), [sym_comment] = ACTIONS(39), }, [600] = { @@ -23560,23 +23579,23 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(833), [sym_concatenated_string] = STATE(833), [sym_string_literal] = STATE(376), - [anon_sym_LPAREN2] = ACTIONS(847), - [anon_sym_STAR] = ACTIONS(849), - [anon_sym_AMP] = ACTIONS(849), - [anon_sym_BANG] = ACTIONS(851), - [anon_sym_TILDE] = ACTIONS(853), - [anon_sym_PLUS] = ACTIONS(855), - [anon_sym_DASH] = ACTIONS(855), - [anon_sym_DASH_DASH] = ACTIONS(857), - [anon_sym_PLUS_PLUS] = ACTIONS(857), - [anon_sym_sizeof] = ACTIONS(859), - [sym_number_literal] = ACTIONS(2164), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2166), - [sym_false] = ACTIONS(2166), - [sym_null] = ACTIONS(2166), - [sym_identifier] = ACTIONS(2166), + [anon_sym_LPAREN2] = ACTIONS(838), + [anon_sym_STAR] = ACTIONS(840), + [anon_sym_AMP] = ACTIONS(840), + [anon_sym_BANG] = ACTIONS(842), + [anon_sym_TILDE] = ACTIONS(844), + [anon_sym_PLUS] = ACTIONS(846), + [anon_sym_DASH] = ACTIONS(846), + [anon_sym_DASH_DASH] = ACTIONS(848), + [anon_sym_PLUS_PLUS] = ACTIONS(848), + [anon_sym_sizeof] = ACTIONS(850), + [sym_number_literal] = ACTIONS(2153), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(2155), + [sym_false] = ACTIONS(2155), + [sym_null] = ACTIONS(2155), + [sym_identifier] = ACTIONS(2155), [sym_comment] = ACTIONS(39), }, [601] = { @@ -23600,23 +23619,23 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(834), [sym_concatenated_string] = STATE(834), [sym_string_literal] = STATE(376), - [anon_sym_LPAREN2] = ACTIONS(847), - [anon_sym_STAR] = ACTIONS(849), - [anon_sym_AMP] = ACTIONS(849), - [anon_sym_BANG] = ACTIONS(851), - [anon_sym_TILDE] = ACTIONS(853), - [anon_sym_PLUS] = ACTIONS(855), - [anon_sym_DASH] = ACTIONS(855), - [anon_sym_DASH_DASH] = ACTIONS(857), - [anon_sym_PLUS_PLUS] = ACTIONS(857), - [anon_sym_sizeof] = ACTIONS(859), - [sym_number_literal] = ACTIONS(2168), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2170), - [sym_false] = ACTIONS(2170), - [sym_null] = ACTIONS(2170), - [sym_identifier] = ACTIONS(2170), + [anon_sym_LPAREN2] = ACTIONS(838), + [anon_sym_STAR] = ACTIONS(840), + [anon_sym_AMP] = ACTIONS(840), + [anon_sym_BANG] = ACTIONS(842), + [anon_sym_TILDE] = ACTIONS(844), + [anon_sym_PLUS] = ACTIONS(846), + [anon_sym_DASH] = ACTIONS(846), + [anon_sym_DASH_DASH] = ACTIONS(848), + [anon_sym_PLUS_PLUS] = ACTIONS(848), + [anon_sym_sizeof] = ACTIONS(850), + [sym_number_literal] = ACTIONS(2157), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(2159), + [sym_false] = ACTIONS(2159), + [sym_null] = ACTIONS(2159), + [sym_identifier] = ACTIONS(2159), [sym_comment] = ACTIONS(39), }, [602] = { @@ -23640,23 +23659,23 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(835), [sym_concatenated_string] = STATE(835), [sym_string_literal] = STATE(376), - [anon_sym_LPAREN2] = ACTIONS(847), - [anon_sym_STAR] = ACTIONS(849), - [anon_sym_AMP] = ACTIONS(849), - [anon_sym_BANG] = ACTIONS(851), - [anon_sym_TILDE] = ACTIONS(853), - [anon_sym_PLUS] = ACTIONS(855), - [anon_sym_DASH] = ACTIONS(855), - [anon_sym_DASH_DASH] = ACTIONS(857), - [anon_sym_PLUS_PLUS] = ACTIONS(857), - [anon_sym_sizeof] = ACTIONS(859), - [sym_number_literal] = ACTIONS(2172), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2174), - [sym_false] = ACTIONS(2174), - [sym_null] = ACTIONS(2174), - [sym_identifier] = ACTIONS(2174), + [anon_sym_LPAREN2] = ACTIONS(838), + [anon_sym_STAR] = ACTIONS(840), + [anon_sym_AMP] = ACTIONS(840), + [anon_sym_BANG] = ACTIONS(842), + [anon_sym_TILDE] = ACTIONS(844), + [anon_sym_PLUS] = ACTIONS(846), + [anon_sym_DASH] = ACTIONS(846), + [anon_sym_DASH_DASH] = ACTIONS(848), + [anon_sym_PLUS_PLUS] = ACTIONS(848), + [anon_sym_sizeof] = ACTIONS(850), + [sym_number_literal] = ACTIONS(2161), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(2163), + [sym_false] = ACTIONS(2163), + [sym_null] = ACTIONS(2163), + [sym_identifier] = ACTIONS(2163), [sym_comment] = ACTIONS(39), }, [603] = { @@ -23680,23 +23699,23 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(836), [sym_concatenated_string] = STATE(836), [sym_string_literal] = STATE(376), - [anon_sym_LPAREN2] = ACTIONS(847), - [anon_sym_STAR] = ACTIONS(849), - [anon_sym_AMP] = ACTIONS(849), - [anon_sym_BANG] = ACTIONS(851), - [anon_sym_TILDE] = ACTIONS(853), - [anon_sym_PLUS] = ACTIONS(855), - [anon_sym_DASH] = ACTIONS(855), - [anon_sym_DASH_DASH] = ACTIONS(857), - [anon_sym_PLUS_PLUS] = ACTIONS(857), - [anon_sym_sizeof] = ACTIONS(859), - [sym_number_literal] = ACTIONS(2176), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2178), - [sym_false] = ACTIONS(2178), - [sym_null] = ACTIONS(2178), - [sym_identifier] = ACTIONS(2178), + [anon_sym_LPAREN2] = ACTIONS(838), + [anon_sym_STAR] = ACTIONS(840), + [anon_sym_AMP] = ACTIONS(840), + [anon_sym_BANG] = ACTIONS(842), + [anon_sym_TILDE] = ACTIONS(844), + [anon_sym_PLUS] = ACTIONS(846), + [anon_sym_DASH] = ACTIONS(846), + [anon_sym_DASH_DASH] = ACTIONS(848), + [anon_sym_PLUS_PLUS] = ACTIONS(848), + [anon_sym_sizeof] = ACTIONS(850), + [sym_number_literal] = ACTIONS(2165), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(2167), + [sym_false] = ACTIONS(2167), + [sym_null] = ACTIONS(2167), + [sym_identifier] = ACTIONS(2167), [sym_comment] = ACTIONS(39), }, [604] = { @@ -23720,23 +23739,23 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(837), [sym_concatenated_string] = STATE(837), [sym_string_literal] = STATE(376), - [anon_sym_LPAREN2] = ACTIONS(847), - [anon_sym_STAR] = ACTIONS(849), - [anon_sym_AMP] = ACTIONS(849), - [anon_sym_BANG] = ACTIONS(851), - [anon_sym_TILDE] = ACTIONS(853), - [anon_sym_PLUS] = ACTIONS(855), - [anon_sym_DASH] = ACTIONS(855), - [anon_sym_DASH_DASH] = ACTIONS(857), - [anon_sym_PLUS_PLUS] = ACTIONS(857), - [anon_sym_sizeof] = ACTIONS(859), - [sym_number_literal] = ACTIONS(2180), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2182), - [sym_false] = ACTIONS(2182), - [sym_null] = ACTIONS(2182), - [sym_identifier] = ACTIONS(2182), + [anon_sym_LPAREN2] = ACTIONS(838), + [anon_sym_STAR] = ACTIONS(840), + [anon_sym_AMP] = ACTIONS(840), + [anon_sym_BANG] = ACTIONS(842), + [anon_sym_TILDE] = ACTIONS(844), + [anon_sym_PLUS] = ACTIONS(846), + [anon_sym_DASH] = ACTIONS(846), + [anon_sym_DASH_DASH] = ACTIONS(848), + [anon_sym_PLUS_PLUS] = ACTIONS(848), + [anon_sym_sizeof] = ACTIONS(850), + [sym_number_literal] = ACTIONS(2169), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(2171), + [sym_false] = ACTIONS(2171), + [sym_null] = ACTIONS(2171), + [sym_identifier] = ACTIONS(2171), [sym_comment] = ACTIONS(39), }, [605] = { @@ -23760,23 +23779,23 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(838), [sym_concatenated_string] = STATE(838), [sym_string_literal] = STATE(376), - [anon_sym_LPAREN2] = ACTIONS(847), - [anon_sym_STAR] = ACTIONS(849), - [anon_sym_AMP] = ACTIONS(849), - [anon_sym_BANG] = ACTIONS(851), - [anon_sym_TILDE] = ACTIONS(853), - [anon_sym_PLUS] = ACTIONS(855), - [anon_sym_DASH] = ACTIONS(855), - [anon_sym_DASH_DASH] = ACTIONS(857), - [anon_sym_PLUS_PLUS] = ACTIONS(857), - [anon_sym_sizeof] = ACTIONS(859), - [sym_number_literal] = ACTIONS(2184), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2186), - [sym_false] = ACTIONS(2186), - [sym_null] = ACTIONS(2186), - [sym_identifier] = ACTIONS(2186), + [anon_sym_LPAREN2] = ACTIONS(838), + [anon_sym_STAR] = ACTIONS(840), + [anon_sym_AMP] = ACTIONS(840), + [anon_sym_BANG] = ACTIONS(842), + [anon_sym_TILDE] = ACTIONS(844), + [anon_sym_PLUS] = ACTIONS(846), + [anon_sym_DASH] = ACTIONS(846), + [anon_sym_DASH_DASH] = ACTIONS(848), + [anon_sym_PLUS_PLUS] = ACTIONS(848), + [anon_sym_sizeof] = ACTIONS(850), + [sym_number_literal] = ACTIONS(2173), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(2175), + [sym_false] = ACTIONS(2175), + [sym_null] = ACTIONS(2175), + [sym_identifier] = ACTIONS(2175), [sym_comment] = ACTIONS(39), }, [606] = { @@ -23800,23 +23819,23 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(839), [sym_concatenated_string] = STATE(839), [sym_string_literal] = STATE(376), - [anon_sym_LPAREN2] = ACTIONS(847), - [anon_sym_STAR] = ACTIONS(849), - [anon_sym_AMP] = ACTIONS(849), - [anon_sym_BANG] = ACTIONS(851), - [anon_sym_TILDE] = ACTIONS(853), - [anon_sym_PLUS] = ACTIONS(855), - [anon_sym_DASH] = ACTIONS(855), - [anon_sym_DASH_DASH] = ACTIONS(857), - [anon_sym_PLUS_PLUS] = ACTIONS(857), - [anon_sym_sizeof] = ACTIONS(859), - [sym_number_literal] = ACTIONS(2188), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2190), - [sym_false] = ACTIONS(2190), - [sym_null] = ACTIONS(2190), - [sym_identifier] = ACTIONS(2190), + [anon_sym_LPAREN2] = ACTIONS(838), + [anon_sym_STAR] = ACTIONS(840), + [anon_sym_AMP] = ACTIONS(840), + [anon_sym_BANG] = ACTIONS(842), + [anon_sym_TILDE] = ACTIONS(844), + [anon_sym_PLUS] = ACTIONS(846), + [anon_sym_DASH] = ACTIONS(846), + [anon_sym_DASH_DASH] = ACTIONS(848), + [anon_sym_PLUS_PLUS] = ACTIONS(848), + [anon_sym_sizeof] = ACTIONS(850), + [sym_number_literal] = ACTIONS(2177), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(2179), + [sym_false] = ACTIONS(2179), + [sym_null] = ACTIONS(2179), + [sym_identifier] = ACTIONS(2179), [sym_comment] = ACTIONS(39), }, [607] = { @@ -23840,23 +23859,23 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(840), [sym_concatenated_string] = STATE(840), [sym_string_literal] = STATE(376), - [anon_sym_LPAREN2] = ACTIONS(847), - [anon_sym_STAR] = ACTIONS(849), - [anon_sym_AMP] = ACTIONS(849), - [anon_sym_BANG] = ACTIONS(851), - [anon_sym_TILDE] = ACTIONS(853), - [anon_sym_PLUS] = ACTIONS(855), - [anon_sym_DASH] = ACTIONS(855), - [anon_sym_DASH_DASH] = ACTIONS(857), - [anon_sym_PLUS_PLUS] = ACTIONS(857), - [anon_sym_sizeof] = ACTIONS(859), - [sym_number_literal] = ACTIONS(2192), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2194), - [sym_false] = ACTIONS(2194), - [sym_null] = ACTIONS(2194), - [sym_identifier] = ACTIONS(2194), + [anon_sym_LPAREN2] = ACTIONS(838), + [anon_sym_STAR] = ACTIONS(840), + [anon_sym_AMP] = ACTIONS(840), + [anon_sym_BANG] = ACTIONS(842), + [anon_sym_TILDE] = ACTIONS(844), + [anon_sym_PLUS] = ACTIONS(846), + [anon_sym_DASH] = ACTIONS(846), + [anon_sym_DASH_DASH] = ACTIONS(848), + [anon_sym_PLUS_PLUS] = ACTIONS(848), + [anon_sym_sizeof] = ACTIONS(850), + [sym_number_literal] = ACTIONS(2181), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(2183), + [sym_false] = ACTIONS(2183), + [sym_null] = ACTIONS(2183), + [sym_identifier] = ACTIONS(2183), [sym_comment] = ACTIONS(39), }, [608] = { @@ -23880,84 +23899,84 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(841), [sym_concatenated_string] = STATE(841), [sym_string_literal] = STATE(376), - [anon_sym_LPAREN2] = ACTIONS(847), - [anon_sym_STAR] = ACTIONS(849), - [anon_sym_AMP] = ACTIONS(849), - [anon_sym_BANG] = ACTIONS(851), - [anon_sym_TILDE] = ACTIONS(853), - [anon_sym_PLUS] = ACTIONS(855), - [anon_sym_DASH] = ACTIONS(855), - [anon_sym_DASH_DASH] = ACTIONS(857), - [anon_sym_PLUS_PLUS] = ACTIONS(857), - [anon_sym_sizeof] = ACTIONS(859), - [sym_number_literal] = ACTIONS(2196), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2198), - [sym_false] = ACTIONS(2198), - [sym_null] = ACTIONS(2198), - [sym_identifier] = ACTIONS(2198), + [anon_sym_LPAREN2] = ACTIONS(838), + [anon_sym_STAR] = ACTIONS(840), + [anon_sym_AMP] = ACTIONS(840), + [anon_sym_BANG] = ACTIONS(842), + [anon_sym_TILDE] = ACTIONS(844), + [anon_sym_PLUS] = ACTIONS(846), + [anon_sym_DASH] = ACTIONS(846), + [anon_sym_DASH_DASH] = ACTIONS(848), + [anon_sym_PLUS_PLUS] = ACTIONS(848), + [anon_sym_sizeof] = ACTIONS(850), + [sym_number_literal] = ACTIONS(2185), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(2187), + [sym_false] = ACTIONS(2187), + [sym_null] = ACTIONS(2187), + [sym_identifier] = ACTIONS(2187), [sym_comment] = ACTIONS(39), }, [609] = { [sym_string_literal] = STATE(842), [aux_sym_concatenated_string_repeat1] = STATE(842), - [anon_sym_SEMI] = ACTIONS(1778), - [anon_sym_LPAREN2] = ACTIONS(1778), - [anon_sym_STAR] = ACTIONS(1780), - [anon_sym_LBRACK] = ACTIONS(1778), - [anon_sym_EQ] = ACTIONS(1780), - [anon_sym_QMARK] = ACTIONS(1778), - [anon_sym_STAR_EQ] = ACTIONS(1778), - [anon_sym_SLASH_EQ] = ACTIONS(1778), - [anon_sym_PERCENT_EQ] = ACTIONS(1778), - [anon_sym_PLUS_EQ] = ACTIONS(1778), - [anon_sym_DASH_EQ] = ACTIONS(1778), - [anon_sym_LT_LT_EQ] = ACTIONS(1778), - [anon_sym_GT_GT_EQ] = ACTIONS(1778), - [anon_sym_AMP_EQ] = ACTIONS(1778), - [anon_sym_CARET_EQ] = ACTIONS(1778), - [anon_sym_PIPE_EQ] = ACTIONS(1778), - [anon_sym_AMP] = ACTIONS(1780), - [anon_sym_PIPE_PIPE] = ACTIONS(1778), - [anon_sym_AMP_AMP] = ACTIONS(1778), - [anon_sym_PIPE] = ACTIONS(1780), - [anon_sym_CARET] = ACTIONS(1780), - [anon_sym_EQ_EQ] = ACTIONS(1778), - [anon_sym_BANG_EQ] = ACTIONS(1778), - [anon_sym_LT] = ACTIONS(1780), - [anon_sym_GT] = ACTIONS(1780), - [anon_sym_LT_EQ] = ACTIONS(1778), - [anon_sym_GT_EQ] = ACTIONS(1778), - [anon_sym_LT_LT] = ACTIONS(1780), - [anon_sym_GT_GT] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(1780), - [anon_sym_DASH] = ACTIONS(1780), - [anon_sym_SLASH] = ACTIONS(1780), - [anon_sym_PERCENT] = ACTIONS(1780), - [anon_sym_DASH_DASH] = ACTIONS(1778), - [anon_sym_PLUS_PLUS] = ACTIONS(1778), - [anon_sym_DOT] = ACTIONS(1778), - [anon_sym_DASH_GT] = ACTIONS(1778), + [anon_sym_SEMI] = ACTIONS(1767), + [anon_sym_LPAREN2] = ACTIONS(1767), + [anon_sym_STAR] = ACTIONS(1769), + [anon_sym_LBRACK] = ACTIONS(1767), + [anon_sym_EQ] = ACTIONS(1769), + [anon_sym_QMARK] = ACTIONS(1767), + [anon_sym_STAR_EQ] = ACTIONS(1767), + [anon_sym_SLASH_EQ] = ACTIONS(1767), + [anon_sym_PERCENT_EQ] = ACTIONS(1767), + [anon_sym_PLUS_EQ] = ACTIONS(1767), + [anon_sym_DASH_EQ] = ACTIONS(1767), + [anon_sym_LT_LT_EQ] = ACTIONS(1767), + [anon_sym_GT_GT_EQ] = ACTIONS(1767), + [anon_sym_AMP_EQ] = ACTIONS(1767), + [anon_sym_CARET_EQ] = ACTIONS(1767), + [anon_sym_PIPE_EQ] = ACTIONS(1767), + [anon_sym_AMP] = ACTIONS(1769), + [anon_sym_PIPE_PIPE] = ACTIONS(1767), + [anon_sym_AMP_AMP] = ACTIONS(1767), + [anon_sym_PIPE] = ACTIONS(1769), + [anon_sym_CARET] = ACTIONS(1769), + [anon_sym_EQ_EQ] = ACTIONS(1767), + [anon_sym_BANG_EQ] = ACTIONS(1767), + [anon_sym_LT] = ACTIONS(1769), + [anon_sym_GT] = ACTIONS(1769), + [anon_sym_LT_EQ] = ACTIONS(1767), + [anon_sym_GT_EQ] = ACTIONS(1767), + [anon_sym_LT_LT] = ACTIONS(1769), + [anon_sym_GT_GT] = ACTIONS(1769), + [anon_sym_PLUS] = ACTIONS(1769), + [anon_sym_DASH] = ACTIONS(1769), + [anon_sym_SLASH] = ACTIONS(1769), + [anon_sym_PERCENT] = ACTIONS(1769), + [anon_sym_DASH_DASH] = ACTIONS(1767), + [anon_sym_PLUS_PLUS] = ACTIONS(1767), + [anon_sym_DOT] = ACTIONS(1767), + [anon_sym_DASH_GT] = ACTIONS(1767), [anon_sym_DQUOTE] = ACTIONS(41), [sym_comment] = ACTIONS(39), }, [610] = { [sym_parameter_list] = STATE(381), - [anon_sym_COMMA] = ACTIONS(2200), - [anon_sym_SEMI] = ACTIONS(2200), - [anon_sym_LPAREN2] = ACTIONS(243), - [anon_sym_LBRACK] = ACTIONS(871), - [anon_sym_COLON] = ACTIONS(2200), + [anon_sym_COMMA] = ACTIONS(2189), + [anon_sym_SEMI] = ACTIONS(2189), + [anon_sym_LPAREN2] = ACTIONS(241), + [anon_sym_LBRACK] = ACTIONS(862), + [anon_sym_COLON] = ACTIONS(2189), [sym_comment] = ACTIONS(39), }, [611] = { - [anon_sym_COMMA] = ACTIONS(2202), - [anon_sym_RPAREN] = ACTIONS(2202), - [anon_sym_SEMI] = ACTIONS(2202), - [anon_sym_LPAREN2] = ACTIONS(2202), - [anon_sym_LBRACK] = ACTIONS(2202), - [anon_sym_COLON] = ACTIONS(2202), + [anon_sym_COMMA] = ACTIONS(2191), + [anon_sym_RPAREN] = ACTIONS(2191), + [anon_sym_SEMI] = ACTIONS(2191), + [anon_sym_LPAREN2] = ACTIONS(2191), + [anon_sym_LBRACK] = ACTIONS(2191), + [anon_sym_COLON] = ACTIONS(2191), [sym_comment] = ACTIONS(39), }, [612] = { @@ -23981,106 +24000,106 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(844), [sym_concatenated_string] = STATE(844), [sym_string_literal] = STATE(272), - [anon_sym_LPAREN2] = ACTIONS(606), - [anon_sym_STAR] = ACTIONS(608), - [anon_sym_RBRACK] = ACTIONS(2204), - [anon_sym_AMP] = ACTIONS(608), - [anon_sym_BANG] = ACTIONS(616), - [anon_sym_TILDE] = ACTIONS(618), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_DASH_DASH] = ACTIONS(622), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_sizeof] = ACTIONS(624), - [sym_number_literal] = ACTIONS(2206), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2208), - [sym_false] = ACTIONS(2208), - [sym_null] = ACTIONS(2208), - [sym_identifier] = ACTIONS(2208), + [anon_sym_LPAREN2] = ACTIONS(602), + [anon_sym_STAR] = ACTIONS(604), + [anon_sym_RBRACK] = ACTIONS(2193), + [anon_sym_AMP] = ACTIONS(604), + [anon_sym_BANG] = ACTIONS(612), + [anon_sym_TILDE] = ACTIONS(614), + [anon_sym_PLUS] = ACTIONS(616), + [anon_sym_DASH] = ACTIONS(616), + [anon_sym_DASH_DASH] = ACTIONS(618), + [anon_sym_PLUS_PLUS] = ACTIONS(618), + [anon_sym_sizeof] = ACTIONS(620), + [sym_number_literal] = ACTIONS(2195), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(2197), + [sym_false] = ACTIONS(2197), + [sym_null] = ACTIONS(2197), + [sym_identifier] = ACTIONS(2197), [sym_comment] = ACTIONS(39), }, [613] = { [sym_argument_list] = STATE(465), - [anon_sym_LPAREN2] = ACTIONS(1096), - [anon_sym_STAR] = ACTIONS(1166), - [anon_sym_LBRACK] = ACTIONS(1100), - [anon_sym_RBRACK] = ACTIONS(2204), - [anon_sym_EQ] = ACTIONS(1168), - [anon_sym_QMARK] = ACTIONS(1170), - [anon_sym_STAR_EQ] = ACTIONS(1172), - [anon_sym_SLASH_EQ] = ACTIONS(1172), - [anon_sym_PERCENT_EQ] = ACTIONS(1172), - [anon_sym_PLUS_EQ] = ACTIONS(1172), - [anon_sym_DASH_EQ] = ACTIONS(1172), - [anon_sym_LT_LT_EQ] = ACTIONS(1172), - [anon_sym_GT_GT_EQ] = ACTIONS(1172), - [anon_sym_AMP_EQ] = ACTIONS(1172), - [anon_sym_CARET_EQ] = ACTIONS(1172), - [anon_sym_PIPE_EQ] = ACTIONS(1172), - [anon_sym_AMP] = ACTIONS(1174), - [anon_sym_PIPE_PIPE] = ACTIONS(1176), - [anon_sym_AMP_AMP] = ACTIONS(1178), - [anon_sym_PIPE] = ACTIONS(1180), - [anon_sym_CARET] = ACTIONS(1182), - [anon_sym_EQ_EQ] = ACTIONS(1184), - [anon_sym_BANG_EQ] = ACTIONS(1184), - [anon_sym_LT] = ACTIONS(1186), - [anon_sym_GT] = ACTIONS(1186), - [anon_sym_LT_EQ] = ACTIONS(1188), - [anon_sym_GT_EQ] = ACTIONS(1188), - [anon_sym_LT_LT] = ACTIONS(1190), - [anon_sym_GT_GT] = ACTIONS(1190), - [anon_sym_PLUS] = ACTIONS(1192), - [anon_sym_DASH] = ACTIONS(1192), - [anon_sym_SLASH] = ACTIONS(1166), - [anon_sym_PERCENT] = ACTIONS(1166), - [anon_sym_DASH_DASH] = ACTIONS(1128), - [anon_sym_PLUS_PLUS] = ACTIONS(1128), - [anon_sym_DOT] = ACTIONS(1130), - [anon_sym_DASH_GT] = ACTIONS(1130), + [anon_sym_LPAREN2] = ACTIONS(1089), + [anon_sym_STAR] = ACTIONS(1159), + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_RBRACK] = ACTIONS(2193), + [anon_sym_EQ] = ACTIONS(1161), + [anon_sym_QMARK] = ACTIONS(1163), + [anon_sym_STAR_EQ] = ACTIONS(1165), + [anon_sym_SLASH_EQ] = ACTIONS(1165), + [anon_sym_PERCENT_EQ] = ACTIONS(1165), + [anon_sym_PLUS_EQ] = ACTIONS(1165), + [anon_sym_DASH_EQ] = ACTIONS(1165), + [anon_sym_LT_LT_EQ] = ACTIONS(1165), + [anon_sym_GT_GT_EQ] = ACTIONS(1165), + [anon_sym_AMP_EQ] = ACTIONS(1165), + [anon_sym_CARET_EQ] = ACTIONS(1165), + [anon_sym_PIPE_EQ] = ACTIONS(1165), + [anon_sym_AMP] = ACTIONS(1167), + [anon_sym_PIPE_PIPE] = ACTIONS(1169), + [anon_sym_AMP_AMP] = ACTIONS(1171), + [anon_sym_PIPE] = ACTIONS(1173), + [anon_sym_CARET] = ACTIONS(1175), + [anon_sym_EQ_EQ] = ACTIONS(1177), + [anon_sym_BANG_EQ] = ACTIONS(1177), + [anon_sym_LT] = ACTIONS(1179), + [anon_sym_GT] = ACTIONS(1179), + [anon_sym_LT_EQ] = ACTIONS(1181), + [anon_sym_GT_EQ] = ACTIONS(1181), + [anon_sym_LT_LT] = ACTIONS(1183), + [anon_sym_GT_GT] = ACTIONS(1183), + [anon_sym_PLUS] = ACTIONS(1185), + [anon_sym_DASH] = ACTIONS(1185), + [anon_sym_SLASH] = ACTIONS(1159), + [anon_sym_PERCENT] = ACTIONS(1159), + [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_PLUS_PLUS] = ACTIONS(1121), + [anon_sym_DOT] = ACTIONS(1123), + [anon_sym_DASH_GT] = ACTIONS(1123), [sym_comment] = ACTIONS(39), }, [614] = { [sym_argument_list] = STATE(465), - [anon_sym_SEMI] = ACTIONS(2210), - [anon_sym_LPAREN2] = ACTIONS(1096), - [anon_sym_STAR] = ACTIONS(1436), - [anon_sym_LBRACK] = ACTIONS(1100), - [anon_sym_EQ] = ACTIONS(1438), - [anon_sym_QMARK] = ACTIONS(1440), - [anon_sym_STAR_EQ] = ACTIONS(1442), - [anon_sym_SLASH_EQ] = ACTIONS(1442), - [anon_sym_PERCENT_EQ] = ACTIONS(1442), - [anon_sym_PLUS_EQ] = ACTIONS(1442), - [anon_sym_DASH_EQ] = ACTIONS(1442), - [anon_sym_LT_LT_EQ] = ACTIONS(1442), - [anon_sym_GT_GT_EQ] = ACTIONS(1442), - [anon_sym_AMP_EQ] = ACTIONS(1442), - [anon_sym_CARET_EQ] = ACTIONS(1442), - [anon_sym_PIPE_EQ] = ACTIONS(1442), - [anon_sym_AMP] = ACTIONS(1444), - [anon_sym_PIPE_PIPE] = ACTIONS(1446), - [anon_sym_AMP_AMP] = ACTIONS(1448), - [anon_sym_PIPE] = ACTIONS(1450), - [anon_sym_CARET] = ACTIONS(1452), - [anon_sym_EQ_EQ] = ACTIONS(1454), - [anon_sym_BANG_EQ] = ACTIONS(1454), - [anon_sym_LT] = ACTIONS(1456), - [anon_sym_GT] = ACTIONS(1456), - [anon_sym_LT_EQ] = ACTIONS(1458), - [anon_sym_GT_EQ] = ACTIONS(1458), - [anon_sym_LT_LT] = ACTIONS(1460), - [anon_sym_GT_GT] = ACTIONS(1460), - [anon_sym_PLUS] = ACTIONS(1462), - [anon_sym_DASH] = ACTIONS(1462), - [anon_sym_SLASH] = ACTIONS(1436), - [anon_sym_PERCENT] = ACTIONS(1436), - [anon_sym_DASH_DASH] = ACTIONS(1128), - [anon_sym_PLUS_PLUS] = ACTIONS(1128), - [anon_sym_DOT] = ACTIONS(1130), - [anon_sym_DASH_GT] = ACTIONS(1130), + [anon_sym_SEMI] = ACTIONS(2199), + [anon_sym_LPAREN2] = ACTIONS(1089), + [anon_sym_STAR] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(1429), + [anon_sym_QMARK] = ACTIONS(1431), + [anon_sym_STAR_EQ] = ACTIONS(1433), + [anon_sym_SLASH_EQ] = ACTIONS(1433), + [anon_sym_PERCENT_EQ] = ACTIONS(1433), + [anon_sym_PLUS_EQ] = ACTIONS(1433), + [anon_sym_DASH_EQ] = ACTIONS(1433), + [anon_sym_LT_LT_EQ] = ACTIONS(1433), + [anon_sym_GT_GT_EQ] = ACTIONS(1433), + [anon_sym_AMP_EQ] = ACTIONS(1433), + [anon_sym_CARET_EQ] = ACTIONS(1433), + [anon_sym_PIPE_EQ] = ACTIONS(1433), + [anon_sym_AMP] = ACTIONS(1435), + [anon_sym_PIPE_PIPE] = ACTIONS(1437), + [anon_sym_AMP_AMP] = ACTIONS(1439), + [anon_sym_PIPE] = ACTIONS(1441), + [anon_sym_CARET] = ACTIONS(1443), + [anon_sym_EQ_EQ] = ACTIONS(1445), + [anon_sym_BANG_EQ] = ACTIONS(1445), + [anon_sym_LT] = ACTIONS(1447), + [anon_sym_GT] = ACTIONS(1447), + [anon_sym_LT_EQ] = ACTIONS(1449), + [anon_sym_GT_EQ] = ACTIONS(1449), + [anon_sym_LT_LT] = ACTIONS(1451), + [anon_sym_GT_GT] = ACTIONS(1451), + [anon_sym_PLUS] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1453), + [anon_sym_SLASH] = ACTIONS(1427), + [anon_sym_PERCENT] = ACTIONS(1427), + [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_PLUS_PLUS] = ACTIONS(1121), + [anon_sym_DOT] = ACTIONS(1123), + [anon_sym_DASH_GT] = ACTIONS(1123), [sym_comment] = ACTIONS(39), }, [615] = { @@ -24104,106 +24123,106 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(846), [sym_concatenated_string] = STATE(846), [sym_string_literal] = STATE(376), - [anon_sym_LPAREN2] = ACTIONS(847), - [anon_sym_STAR] = ACTIONS(849), - [anon_sym_AMP] = ACTIONS(849), - [anon_sym_BANG] = ACTIONS(851), - [anon_sym_TILDE] = ACTIONS(853), - [anon_sym_PLUS] = ACTIONS(855), - [anon_sym_DASH] = ACTIONS(855), - [anon_sym_DASH_DASH] = ACTIONS(857), - [anon_sym_PLUS_PLUS] = ACTIONS(857), - [anon_sym_sizeof] = ACTIONS(859), - [sym_number_literal] = ACTIONS(2212), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2214), - [sym_false] = ACTIONS(2214), - [sym_null] = ACTIONS(2214), - [sym_identifier] = ACTIONS(2214), + [anon_sym_LPAREN2] = ACTIONS(838), + [anon_sym_STAR] = ACTIONS(840), + [anon_sym_AMP] = ACTIONS(840), + [anon_sym_BANG] = ACTIONS(842), + [anon_sym_TILDE] = ACTIONS(844), + [anon_sym_PLUS] = ACTIONS(846), + [anon_sym_DASH] = ACTIONS(846), + [anon_sym_DASH_DASH] = ACTIONS(848), + [anon_sym_PLUS_PLUS] = ACTIONS(848), + [anon_sym_sizeof] = ACTIONS(850), + [sym_number_literal] = ACTIONS(2201), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(2203), + [sym_false] = ACTIONS(2203), + [sym_null] = ACTIONS(2203), + [sym_identifier] = ACTIONS(2203), [sym_comment] = ACTIONS(39), }, [616] = { [aux_sym_field_declaration_repeat1] = STATE(616), - [anon_sym_COMMA] = ACTIONS(2216), - [anon_sym_SEMI] = ACTIONS(2200), - [anon_sym_COLON] = ACTIONS(2200), + [anon_sym_COMMA] = ACTIONS(2205), + [anon_sym_SEMI] = ACTIONS(2189), + [anon_sym_COLON] = ACTIONS(2189), [sym_comment] = ACTIONS(39), }, [617] = { - [anon_sym_COMMA] = ACTIONS(2219), - [anon_sym_RPAREN] = ACTIONS(2219), - [anon_sym_LPAREN2] = ACTIONS(2219), - [anon_sym_LBRACK] = ACTIONS(2219), + [anon_sym_COMMA] = ACTIONS(2208), + [anon_sym_RPAREN] = ACTIONS(2208), + [anon_sym_LPAREN2] = ACTIONS(2208), + [anon_sym_LBRACK] = ACTIONS(2208), [sym_comment] = ACTIONS(39), }, [618] = { [sym_parameter_list] = STATE(392), - [anon_sym_COMMA] = ACTIONS(2221), - [anon_sym_RPAREN] = ACTIONS(2221), - [anon_sym_LPAREN2] = ACTIONS(243), - [anon_sym_LBRACK] = ACTIONS(935), + [anon_sym_COMMA] = ACTIONS(2210), + [anon_sym_RPAREN] = ACTIONS(2210), + [anon_sym_LPAREN2] = ACTIONS(241), + [anon_sym_LBRACK] = ACTIONS(926), [sym_comment] = ACTIONS(39), }, [619] = { [sym_type_qualifier] = STATE(619), [aux_sym_type_definition_repeat1] = STATE(619), - [anon_sym_RPAREN] = ACTIONS(950), - [anon_sym_LPAREN2] = ACTIONS(950), - [anon_sym_STAR] = ACTIONS(950), - [anon_sym_LBRACK] = ACTIONS(950), - [anon_sym_const] = ACTIONS(2223), - [anon_sym_restrict] = ACTIONS(2223), - [anon_sym_volatile] = ACTIONS(2223), - [anon_sym__Atomic] = ACTIONS(2223), + [anon_sym_RPAREN] = ACTIONS(941), + [anon_sym_LPAREN2] = ACTIONS(941), + [anon_sym_STAR] = ACTIONS(941), + [anon_sym_LBRACK] = ACTIONS(941), + [anon_sym_const] = ACTIONS(2212), + [anon_sym_restrict] = ACTIONS(2212), + [anon_sym_volatile] = ACTIONS(2212), + [anon_sym__Atomic] = ACTIONS(2212), [sym_comment] = ACTIONS(39), }, [620] = { - [anon_sym_COMMA] = ACTIONS(2226), - [anon_sym_RPAREN] = ACTIONS(2226), - [anon_sym_LPAREN2] = ACTIONS(2226), - [anon_sym_LBRACK] = ACTIONS(2226), + [anon_sym_COMMA] = ACTIONS(2215), + [anon_sym_RPAREN] = ACTIONS(2215), + [anon_sym_LPAREN2] = ACTIONS(2215), + [anon_sym_LBRACK] = ACTIONS(2215), [sym_comment] = ACTIONS(39), }, [621] = { [sym_argument_list] = STATE(465), - [anon_sym_LPAREN2] = ACTIONS(1096), - [anon_sym_STAR] = ACTIONS(1166), - [anon_sym_LBRACK] = ACTIONS(1100), - [anon_sym_RBRACK] = ACTIONS(2228), - [anon_sym_EQ] = ACTIONS(1168), - [anon_sym_QMARK] = ACTIONS(1170), - [anon_sym_STAR_EQ] = ACTIONS(1172), - [anon_sym_SLASH_EQ] = ACTIONS(1172), - [anon_sym_PERCENT_EQ] = ACTIONS(1172), - [anon_sym_PLUS_EQ] = ACTIONS(1172), - [anon_sym_DASH_EQ] = ACTIONS(1172), - [anon_sym_LT_LT_EQ] = ACTIONS(1172), - [anon_sym_GT_GT_EQ] = ACTIONS(1172), - [anon_sym_AMP_EQ] = ACTIONS(1172), - [anon_sym_CARET_EQ] = ACTIONS(1172), - [anon_sym_PIPE_EQ] = ACTIONS(1172), - [anon_sym_AMP] = ACTIONS(1174), - [anon_sym_PIPE_PIPE] = ACTIONS(1176), - [anon_sym_AMP_AMP] = ACTIONS(1178), - [anon_sym_PIPE] = ACTIONS(1180), - [anon_sym_CARET] = ACTIONS(1182), - [anon_sym_EQ_EQ] = ACTIONS(1184), - [anon_sym_BANG_EQ] = ACTIONS(1184), - [anon_sym_LT] = ACTIONS(1186), - [anon_sym_GT] = ACTIONS(1186), - [anon_sym_LT_EQ] = ACTIONS(1188), - [anon_sym_GT_EQ] = ACTIONS(1188), - [anon_sym_LT_LT] = ACTIONS(1190), - [anon_sym_GT_GT] = ACTIONS(1190), - [anon_sym_PLUS] = ACTIONS(1192), - [anon_sym_DASH] = ACTIONS(1192), - [anon_sym_SLASH] = ACTIONS(1166), - [anon_sym_PERCENT] = ACTIONS(1166), - [anon_sym_DASH_DASH] = ACTIONS(1128), - [anon_sym_PLUS_PLUS] = ACTIONS(1128), - [anon_sym_DOT] = ACTIONS(1130), - [anon_sym_DASH_GT] = ACTIONS(1130), + [anon_sym_LPAREN2] = ACTIONS(1089), + [anon_sym_STAR] = ACTIONS(1159), + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_RBRACK] = ACTIONS(2217), + [anon_sym_EQ] = ACTIONS(1161), + [anon_sym_QMARK] = ACTIONS(1163), + [anon_sym_STAR_EQ] = ACTIONS(1165), + [anon_sym_SLASH_EQ] = ACTIONS(1165), + [anon_sym_PERCENT_EQ] = ACTIONS(1165), + [anon_sym_PLUS_EQ] = ACTIONS(1165), + [anon_sym_DASH_EQ] = ACTIONS(1165), + [anon_sym_LT_LT_EQ] = ACTIONS(1165), + [anon_sym_GT_GT_EQ] = ACTIONS(1165), + [anon_sym_AMP_EQ] = ACTIONS(1165), + [anon_sym_CARET_EQ] = ACTIONS(1165), + [anon_sym_PIPE_EQ] = ACTIONS(1165), + [anon_sym_AMP] = ACTIONS(1167), + [anon_sym_PIPE_PIPE] = ACTIONS(1169), + [anon_sym_AMP_AMP] = ACTIONS(1171), + [anon_sym_PIPE] = ACTIONS(1173), + [anon_sym_CARET] = ACTIONS(1175), + [anon_sym_EQ_EQ] = ACTIONS(1177), + [anon_sym_BANG_EQ] = ACTIONS(1177), + [anon_sym_LT] = ACTIONS(1179), + [anon_sym_GT] = ACTIONS(1179), + [anon_sym_LT_EQ] = ACTIONS(1181), + [anon_sym_GT_EQ] = ACTIONS(1181), + [anon_sym_LT_LT] = ACTIONS(1183), + [anon_sym_GT_GT] = ACTIONS(1183), + [anon_sym_PLUS] = ACTIONS(1185), + [anon_sym_DASH] = ACTIONS(1185), + [anon_sym_SLASH] = ACTIONS(1159), + [anon_sym_PERCENT] = ACTIONS(1159), + [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_PLUS_PLUS] = ACTIONS(1121), + [anon_sym_DOT] = ACTIONS(1123), + [anon_sym_DASH_GT] = ACTIONS(1123), [sym_comment] = ACTIONS(39), }, [622] = { @@ -24227,157 +24246,157 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(848), [sym_concatenated_string] = STATE(848), [sym_string_literal] = STATE(272), - [anon_sym_LPAREN2] = ACTIONS(606), - [anon_sym_STAR] = ACTIONS(608), - [anon_sym_RBRACK] = ACTIONS(2228), - [anon_sym_AMP] = ACTIONS(608), - [anon_sym_BANG] = ACTIONS(616), - [anon_sym_TILDE] = ACTIONS(618), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_DASH_DASH] = ACTIONS(622), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_sizeof] = ACTIONS(624), - [sym_number_literal] = ACTIONS(2230), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2232), - [sym_false] = ACTIONS(2232), - [sym_null] = ACTIONS(2232), - [sym_identifier] = ACTIONS(2232), + [anon_sym_LPAREN2] = ACTIONS(602), + [anon_sym_STAR] = ACTIONS(604), + [anon_sym_RBRACK] = ACTIONS(2217), + [anon_sym_AMP] = ACTIONS(604), + [anon_sym_BANG] = ACTIONS(612), + [anon_sym_TILDE] = ACTIONS(614), + [anon_sym_PLUS] = ACTIONS(616), + [anon_sym_DASH] = ACTIONS(616), + [anon_sym_DASH_DASH] = ACTIONS(618), + [anon_sym_PLUS_PLUS] = ACTIONS(618), + [anon_sym_sizeof] = ACTIONS(620), + [sym_number_literal] = ACTIONS(2219), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(2221), + [sym_false] = ACTIONS(2221), + [sym_null] = ACTIONS(2221), + [sym_identifier] = ACTIONS(2221), [sym_comment] = ACTIONS(39), }, [623] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(328), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(328), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(328), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(328), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(328), - [sym_preproc_directive] = ACTIONS(328), - [anon_sym_SEMI] = ACTIONS(326), - [anon_sym_typedef] = ACTIONS(328), - [anon_sym_extern] = ACTIONS(328), - [anon_sym_LBRACE] = ACTIONS(326), - [anon_sym_RBRACE] = ACTIONS(326), - [anon_sym_LPAREN2] = ACTIONS(326), - [anon_sym_STAR] = ACTIONS(326), - [anon_sym_static] = ACTIONS(328), - [anon_sym_auto] = ACTIONS(328), - [anon_sym_register] = ACTIONS(328), - [anon_sym_inline] = ACTIONS(328), - [anon_sym_const] = ACTIONS(328), - [anon_sym_restrict] = ACTIONS(328), - [anon_sym_volatile] = ACTIONS(328), - [anon_sym__Atomic] = ACTIONS(328), - [anon_sym_unsigned] = ACTIONS(328), - [anon_sym_long] = ACTIONS(328), - [anon_sym_short] = ACTIONS(328), - [sym_primitive_type] = ACTIONS(328), - [anon_sym_enum] = ACTIONS(328), - [anon_sym_struct] = ACTIONS(328), - [anon_sym_union] = ACTIONS(328), - [anon_sym_if] = ACTIONS(328), - [anon_sym_switch] = ACTIONS(328), - [anon_sym_case] = ACTIONS(328), - [anon_sym_default] = ACTIONS(328), - [anon_sym_while] = ACTIONS(328), - [anon_sym_do] = ACTIONS(328), - [anon_sym_for] = ACTIONS(328), - [anon_sym_return] = ACTIONS(328), - [anon_sym_break] = ACTIONS(328), - [anon_sym_continue] = ACTIONS(328), - [anon_sym_goto] = ACTIONS(328), - [anon_sym_AMP] = ACTIONS(326), - [anon_sym_BANG] = ACTIONS(326), - [anon_sym_TILDE] = ACTIONS(326), - [anon_sym_PLUS] = ACTIONS(328), - [anon_sym_DASH] = ACTIONS(328), - [anon_sym_DASH_DASH] = ACTIONS(326), - [anon_sym_PLUS_PLUS] = ACTIONS(326), - [anon_sym_sizeof] = ACTIONS(328), - [sym_number_literal] = ACTIONS(326), - [anon_sym_SQUOTE] = ACTIONS(326), - [anon_sym_DQUOTE] = ACTIONS(326), - [sym_true] = ACTIONS(328), - [sym_false] = ACTIONS(328), - [sym_null] = ACTIONS(328), - [sym_identifier] = ACTIONS(328), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(326), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(326), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(326), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(326), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(326), + [sym_preproc_directive] = ACTIONS(326), + [anon_sym_SEMI] = ACTIONS(324), + [anon_sym_typedef] = ACTIONS(326), + [anon_sym_extern] = ACTIONS(326), + [anon_sym_LBRACE] = ACTIONS(324), + [anon_sym_RBRACE] = ACTIONS(324), + [anon_sym_LPAREN2] = ACTIONS(324), + [anon_sym_STAR] = ACTIONS(324), + [anon_sym_static] = ACTIONS(326), + [anon_sym_auto] = ACTIONS(326), + [anon_sym_register] = ACTIONS(326), + [anon_sym_inline] = ACTIONS(326), + [anon_sym_const] = ACTIONS(326), + [anon_sym_restrict] = ACTIONS(326), + [anon_sym_volatile] = ACTIONS(326), + [anon_sym__Atomic] = ACTIONS(326), + [anon_sym_unsigned] = ACTIONS(326), + [anon_sym_long] = ACTIONS(326), + [anon_sym_short] = ACTIONS(326), + [sym_primitive_type] = ACTIONS(326), + [anon_sym_enum] = ACTIONS(326), + [anon_sym_struct] = ACTIONS(326), + [anon_sym_union] = ACTIONS(326), + [anon_sym_if] = ACTIONS(326), + [anon_sym_switch] = ACTIONS(326), + [anon_sym_case] = ACTIONS(326), + [anon_sym_default] = ACTIONS(326), + [anon_sym_while] = ACTIONS(326), + [anon_sym_do] = ACTIONS(326), + [anon_sym_for] = ACTIONS(326), + [anon_sym_return] = ACTIONS(326), + [anon_sym_break] = ACTIONS(326), + [anon_sym_continue] = ACTIONS(326), + [anon_sym_goto] = ACTIONS(326), + [anon_sym_AMP] = ACTIONS(324), + [anon_sym_BANG] = ACTIONS(324), + [anon_sym_TILDE] = ACTIONS(324), + [anon_sym_PLUS] = ACTIONS(326), + [anon_sym_DASH] = ACTIONS(326), + [anon_sym_DASH_DASH] = ACTIONS(324), + [anon_sym_PLUS_PLUS] = ACTIONS(324), + [anon_sym_sizeof] = ACTIONS(326), + [sym_number_literal] = ACTIONS(324), + [anon_sym_SQUOTE] = ACTIONS(324), + [anon_sym_DQUOTE] = ACTIONS(324), + [sym_true] = ACTIONS(326), + [sym_false] = ACTIONS(326), + [sym_null] = ACTIONS(326), + [sym_identifier] = ACTIONS(326), [sym_comment] = ACTIONS(39), }, [624] = { [aux_sym_string_literal_repeat1] = STATE(136), - [anon_sym_DQUOTE] = ACTIONS(2234), - [aux_sym_SLASH_LBRACK_CARET_BSLASH_BSLASH_DQUOTE_BSLASHn_RBRACK_SLASH] = ACTIONS(332), - [sym_escape_sequence] = ACTIONS(334), + [anon_sym_DQUOTE] = ACTIONS(2223), + [aux_sym_SLASH_LBRACK_CARET_BSLASH_BSLASH_DQUOTE_BSLASHn_RBRACK_SLASH] = ACTIONS(330), + [sym_escape_sequence] = ACTIONS(330), [sym_comment] = ACTIONS(49), }, [625] = { - [sym_preproc_arg] = ACTIONS(2236), + [sym_preproc_arg] = ACTIONS(2225), [sym_comment] = ACTIONS(49), }, [626] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2238), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2238), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2238), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2238), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2238), - [sym_preproc_directive] = ACTIONS(2238), - [anon_sym_SEMI] = ACTIONS(2240), - [anon_sym_typedef] = ACTIONS(2238), - [anon_sym_extern] = ACTIONS(2238), - [anon_sym_LBRACE] = ACTIONS(2240), - [anon_sym_RBRACE] = ACTIONS(2240), - [anon_sym_LPAREN2] = ACTIONS(2240), - [anon_sym_STAR] = ACTIONS(2240), - [anon_sym_static] = ACTIONS(2238), - [anon_sym_auto] = ACTIONS(2238), - [anon_sym_register] = ACTIONS(2238), - [anon_sym_inline] = ACTIONS(2238), - [anon_sym_const] = ACTIONS(2238), - [anon_sym_restrict] = ACTIONS(2238), - [anon_sym_volatile] = ACTIONS(2238), - [anon_sym__Atomic] = ACTIONS(2238), - [anon_sym_unsigned] = ACTIONS(2238), - [anon_sym_long] = ACTIONS(2238), - [anon_sym_short] = ACTIONS(2238), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_enum] = ACTIONS(2238), - [anon_sym_struct] = ACTIONS(2238), - [anon_sym_union] = ACTIONS(2238), - [anon_sym_if] = ACTIONS(2238), - [anon_sym_switch] = ACTIONS(2238), - [anon_sym_case] = ACTIONS(2238), - [anon_sym_default] = ACTIONS(2238), - [anon_sym_while] = ACTIONS(2238), - [anon_sym_do] = ACTIONS(2238), - [anon_sym_for] = ACTIONS(2238), - [anon_sym_return] = ACTIONS(2238), - [anon_sym_break] = ACTIONS(2238), - [anon_sym_continue] = ACTIONS(2238), - [anon_sym_goto] = ACTIONS(2238), - [anon_sym_AMP] = ACTIONS(2240), - [anon_sym_BANG] = ACTIONS(2240), - [anon_sym_TILDE] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2238), - [anon_sym_DASH] = ACTIONS(2238), - [anon_sym_DASH_DASH] = ACTIONS(2240), - [anon_sym_PLUS_PLUS] = ACTIONS(2240), - [anon_sym_sizeof] = ACTIONS(2238), - [sym_number_literal] = ACTIONS(2240), - [anon_sym_SQUOTE] = ACTIONS(2240), - [anon_sym_DQUOTE] = ACTIONS(2240), - [sym_true] = ACTIONS(2238), - [sym_false] = ACTIONS(2238), - [sym_null] = ACTIONS(2238), - [sym_identifier] = ACTIONS(2238), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2227), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2227), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2227), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2227), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2227), + [sym_preproc_directive] = ACTIONS(2227), + [anon_sym_SEMI] = ACTIONS(2229), + [anon_sym_typedef] = ACTIONS(2227), + [anon_sym_extern] = ACTIONS(2227), + [anon_sym_LBRACE] = ACTIONS(2229), + [anon_sym_RBRACE] = ACTIONS(2229), + [anon_sym_LPAREN2] = ACTIONS(2229), + [anon_sym_STAR] = ACTIONS(2229), + [anon_sym_static] = ACTIONS(2227), + [anon_sym_auto] = ACTIONS(2227), + [anon_sym_register] = ACTIONS(2227), + [anon_sym_inline] = ACTIONS(2227), + [anon_sym_const] = ACTIONS(2227), + [anon_sym_restrict] = ACTIONS(2227), + [anon_sym_volatile] = ACTIONS(2227), + [anon_sym__Atomic] = ACTIONS(2227), + [anon_sym_unsigned] = ACTIONS(2227), + [anon_sym_long] = ACTIONS(2227), + [anon_sym_short] = ACTIONS(2227), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_enum] = ACTIONS(2227), + [anon_sym_struct] = ACTIONS(2227), + [anon_sym_union] = ACTIONS(2227), + [anon_sym_if] = ACTIONS(2227), + [anon_sym_switch] = ACTIONS(2227), + [anon_sym_case] = ACTIONS(2227), + [anon_sym_default] = ACTIONS(2227), + [anon_sym_while] = ACTIONS(2227), + [anon_sym_do] = ACTIONS(2227), + [anon_sym_for] = ACTIONS(2227), + [anon_sym_return] = ACTIONS(2227), + [anon_sym_break] = ACTIONS(2227), + [anon_sym_continue] = ACTIONS(2227), + [anon_sym_goto] = ACTIONS(2227), + [anon_sym_AMP] = ACTIONS(2229), + [anon_sym_BANG] = ACTIONS(2229), + [anon_sym_TILDE] = ACTIONS(2229), + [anon_sym_PLUS] = ACTIONS(2227), + [anon_sym_DASH] = ACTIONS(2227), + [anon_sym_DASH_DASH] = ACTIONS(2229), + [anon_sym_PLUS_PLUS] = ACTIONS(2229), + [anon_sym_sizeof] = ACTIONS(2227), + [sym_number_literal] = ACTIONS(2229), + [anon_sym_SQUOTE] = ACTIONS(2229), + [anon_sym_DQUOTE] = ACTIONS(2229), + [sym_true] = ACTIONS(2227), + [sym_false] = ACTIONS(2227), + [sym_null] = ACTIONS(2227), + [sym_identifier] = ACTIONS(2227), [sym_comment] = ACTIONS(39), }, [627] = { - [sym_identifier] = ACTIONS(2242), + [sym_identifier] = ACTIONS(2231), [sym_comment] = ACTIONS(39), }, [628] = { - [sym_identifier] = ACTIONS(2244), + [sym_identifier] = ACTIONS(2233), [sym_comment] = ACTIONS(39), }, [629] = { @@ -24436,19 +24455,19 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(874), [aux_sym__declaration_specifiers_repeat1] = STATE(20), [aux_sym_sized_type_specifier_repeat1] = STATE(21), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(366), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(368), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2246), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2248), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2250), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2252), - [sym_preproc_directive] = ACTIONS(378), - [anon_sym_SEMI] = ACTIONS(2254), - [anon_sym_typedef] = ACTIONS(380), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(362), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(364), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2235), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2237), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2239), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2241), + [sym_preproc_directive] = ACTIONS(374), + [anon_sym_SEMI] = ACTIONS(2243), + [anon_sym_typedef] = ACTIONS(376), [anon_sym_extern] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(1273), - [anon_sym_LPAREN2] = ACTIONS(554), - [anon_sym_STAR] = ACTIONS(556), + [anon_sym_LBRACE] = ACTIONS(1264), + [anon_sym_LPAREN2] = ACTIONS(550), + [anon_sym_STAR] = ACTIONS(552), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -24464,106 +24483,106 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), - [anon_sym_if] = ACTIONS(2256), - [anon_sym_switch] = ACTIONS(2258), - [anon_sym_case] = ACTIONS(2260), - [anon_sym_default] = ACTIONS(2262), - [anon_sym_while] = ACTIONS(2264), - [anon_sym_do] = ACTIONS(2266), - [anon_sym_for] = ACTIONS(2268), - [anon_sym_return] = ACTIONS(2270), - [anon_sym_break] = ACTIONS(2272), - [anon_sym_continue] = ACTIONS(2274), - [anon_sym_goto] = ACTIONS(2276), - [anon_sym_AMP] = ACTIONS(556), - [anon_sym_BANG] = ACTIONS(580), - [anon_sym_TILDE] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_DASH_DASH] = ACTIONS(586), - [anon_sym_PLUS_PLUS] = ACTIONS(586), - [anon_sym_sizeof] = ACTIONS(588), - [sym_number_literal] = ACTIONS(2278), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2280), - [sym_false] = ACTIONS(2280), - [sym_null] = ACTIONS(2280), - [sym_identifier] = ACTIONS(2282), + [anon_sym_if] = ACTIONS(2245), + [anon_sym_switch] = ACTIONS(2247), + [anon_sym_case] = ACTIONS(2249), + [anon_sym_default] = ACTIONS(2251), + [anon_sym_while] = ACTIONS(2253), + [anon_sym_do] = ACTIONS(2255), + [anon_sym_for] = ACTIONS(2257), + [anon_sym_return] = ACTIONS(2259), + [anon_sym_break] = ACTIONS(2261), + [anon_sym_continue] = ACTIONS(2263), + [anon_sym_goto] = ACTIONS(2265), + [anon_sym_AMP] = ACTIONS(552), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_TILDE] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(580), + [anon_sym_DASH] = ACTIONS(580), + [anon_sym_DASH_DASH] = ACTIONS(582), + [anon_sym_PLUS_PLUS] = ACTIONS(582), + [anon_sym_sizeof] = ACTIONS(584), + [sym_number_literal] = ACTIONS(2267), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(2269), + [sym_false] = ACTIONS(2269), + [sym_null] = ACTIONS(2269), + [sym_identifier] = ACTIONS(2271), [sym_comment] = ACTIONS(39), }, [630] = { - [sym_preproc_arg] = ACTIONS(2284), + [sym_preproc_arg] = ACTIONS(2273), [sym_comment] = ACTIONS(49), }, [631] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(962), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(962), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(962), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(962), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(962), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(962), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(962), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(962), - [sym_preproc_directive] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(964), - [anon_sym_typedef] = ACTIONS(962), - [anon_sym_extern] = ACTIONS(962), - [anon_sym_LBRACE] = ACTIONS(964), - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_STAR] = ACTIONS(964), - [anon_sym_static] = ACTIONS(962), - [anon_sym_auto] = ACTIONS(962), - [anon_sym_register] = ACTIONS(962), - [anon_sym_inline] = ACTIONS(962), - [anon_sym_const] = ACTIONS(962), - [anon_sym_restrict] = ACTIONS(962), - [anon_sym_volatile] = ACTIONS(962), - [anon_sym__Atomic] = ACTIONS(962), - [anon_sym_unsigned] = ACTIONS(962), - [anon_sym_long] = ACTIONS(962), - [anon_sym_short] = ACTIONS(962), - [sym_primitive_type] = ACTIONS(962), - [anon_sym_enum] = ACTIONS(962), - [anon_sym_struct] = ACTIONS(962), - [anon_sym_union] = ACTIONS(962), - [anon_sym_if] = ACTIONS(962), - [anon_sym_else] = ACTIONS(962), - [anon_sym_switch] = ACTIONS(962), - [anon_sym_case] = ACTIONS(962), - [anon_sym_default] = ACTIONS(962), - [anon_sym_while] = ACTIONS(962), - [anon_sym_do] = ACTIONS(962), - [anon_sym_for] = ACTIONS(962), - [anon_sym_return] = ACTIONS(962), - [anon_sym_break] = ACTIONS(962), - [anon_sym_continue] = ACTIONS(962), - [anon_sym_goto] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(964), - [anon_sym_BANG] = ACTIONS(964), - [anon_sym_TILDE] = ACTIONS(964), - [anon_sym_PLUS] = ACTIONS(962), - [anon_sym_DASH] = ACTIONS(962), - [anon_sym_DASH_DASH] = ACTIONS(964), - [anon_sym_PLUS_PLUS] = ACTIONS(964), - [anon_sym_sizeof] = ACTIONS(962), - [sym_number_literal] = ACTIONS(964), - [anon_sym_SQUOTE] = ACTIONS(964), - [anon_sym_DQUOTE] = ACTIONS(964), - [sym_true] = ACTIONS(962), - [sym_false] = ACTIONS(962), - [sym_null] = ACTIONS(962), - [sym_identifier] = ACTIONS(962), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(953), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(953), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(953), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(953), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(953), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(953), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(953), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(953), + [sym_preproc_directive] = ACTIONS(953), + [anon_sym_SEMI] = ACTIONS(955), + [anon_sym_typedef] = ACTIONS(953), + [anon_sym_extern] = ACTIONS(953), + [anon_sym_LBRACE] = ACTIONS(955), + [anon_sym_LPAREN2] = ACTIONS(955), + [anon_sym_STAR] = ACTIONS(955), + [anon_sym_static] = ACTIONS(953), + [anon_sym_auto] = ACTIONS(953), + [anon_sym_register] = ACTIONS(953), + [anon_sym_inline] = ACTIONS(953), + [anon_sym_const] = ACTIONS(953), + [anon_sym_restrict] = ACTIONS(953), + [anon_sym_volatile] = ACTIONS(953), + [anon_sym__Atomic] = ACTIONS(953), + [anon_sym_unsigned] = ACTIONS(953), + [anon_sym_long] = ACTIONS(953), + [anon_sym_short] = ACTIONS(953), + [sym_primitive_type] = ACTIONS(953), + [anon_sym_enum] = ACTIONS(953), + [anon_sym_struct] = ACTIONS(953), + [anon_sym_union] = ACTIONS(953), + [anon_sym_if] = ACTIONS(953), + [anon_sym_else] = ACTIONS(953), + [anon_sym_switch] = ACTIONS(953), + [anon_sym_case] = ACTIONS(953), + [anon_sym_default] = ACTIONS(953), + [anon_sym_while] = ACTIONS(953), + [anon_sym_do] = ACTIONS(953), + [anon_sym_for] = ACTIONS(953), + [anon_sym_return] = ACTIONS(953), + [anon_sym_break] = ACTIONS(953), + [anon_sym_continue] = ACTIONS(953), + [anon_sym_goto] = ACTIONS(953), + [anon_sym_AMP] = ACTIONS(955), + [anon_sym_BANG] = ACTIONS(955), + [anon_sym_TILDE] = ACTIONS(955), + [anon_sym_PLUS] = ACTIONS(953), + [anon_sym_DASH] = ACTIONS(953), + [anon_sym_DASH_DASH] = ACTIONS(955), + [anon_sym_PLUS_PLUS] = ACTIONS(955), + [anon_sym_sizeof] = ACTIONS(953), + [sym_number_literal] = ACTIONS(955), + [anon_sym_SQUOTE] = ACTIONS(955), + [anon_sym_DQUOTE] = ACTIONS(955), + [sym_true] = ACTIONS(953), + [sym_false] = ACTIONS(953), + [sym_null] = ACTIONS(953), + [sym_identifier] = ACTIONS(953), [sym_comment] = ACTIONS(39), }, [632] = { [sym_parenthesized_expression] = STATE(876), - [anon_sym_LPAREN2] = ACTIONS(994), + [anon_sym_LPAREN2] = ACTIONS(985), [sym_comment] = ACTIONS(39), }, [633] = { [sym_parenthesized_expression] = STATE(877), - [anon_sym_LPAREN2] = ACTIONS(994), + [anon_sym_LPAREN2] = ACTIONS(985), [sym_comment] = ACTIONS(39), }, [634] = { @@ -24587,32 +24606,32 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(878), [sym_concatenated_string] = STATE(878), [sym_string_literal] = STATE(421), - [anon_sym_LPAREN2] = ACTIONS(996), - [anon_sym_STAR] = ACTIONS(998), - [anon_sym_AMP] = ACTIONS(998), - [anon_sym_BANG] = ACTIONS(1000), - [anon_sym_TILDE] = ACTIONS(1002), - [anon_sym_PLUS] = ACTIONS(1004), - [anon_sym_DASH] = ACTIONS(1004), - [anon_sym_DASH_DASH] = ACTIONS(1006), - [anon_sym_PLUS_PLUS] = ACTIONS(1006), - [anon_sym_sizeof] = ACTIONS(1008), - [sym_number_literal] = ACTIONS(2286), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2288), - [sym_false] = ACTIONS(2288), - [sym_null] = ACTIONS(2288), - [sym_identifier] = ACTIONS(2288), + [anon_sym_LPAREN2] = ACTIONS(987), + [anon_sym_STAR] = ACTIONS(989), + [anon_sym_AMP] = ACTIONS(989), + [anon_sym_BANG] = ACTIONS(991), + [anon_sym_TILDE] = ACTIONS(993), + [anon_sym_PLUS] = ACTIONS(995), + [anon_sym_DASH] = ACTIONS(995), + [anon_sym_DASH_DASH] = ACTIONS(997), + [anon_sym_PLUS_PLUS] = ACTIONS(997), + [anon_sym_sizeof] = ACTIONS(999), + [sym_number_literal] = ACTIONS(2275), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(2277), + [sym_false] = ACTIONS(2277), + [sym_null] = ACTIONS(2277), + [sym_identifier] = ACTIONS(2277), [sym_comment] = ACTIONS(39), }, [635] = { - [anon_sym_COLON] = ACTIONS(2290), + [anon_sym_COLON] = ACTIONS(2279), [sym_comment] = ACTIONS(39), }, [636] = { [sym_parenthesized_expression] = STATE(880), - [anon_sym_LPAREN2] = ACTIONS(994), + [anon_sym_LPAREN2] = ACTIONS(985), [sym_comment] = ACTIONS(39), }, [637] = { @@ -24650,40 +24669,40 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(251), [sym_concatenated_string] = STATE(251), [sym_string_literal] = STATE(253), - [anon_sym_SEMI] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(241), - [anon_sym_LPAREN2] = ACTIONS(554), - [anon_sym_STAR] = ACTIONS(556), - [anon_sym_if] = ACTIONS(1016), - [anon_sym_switch] = ACTIONS(1018), - [anon_sym_case] = ACTIONS(1020), - [anon_sym_default] = ACTIONS(1022), - [anon_sym_while] = ACTIONS(1024), - [anon_sym_do] = ACTIONS(1026), - [anon_sym_for] = ACTIONS(1028), - [anon_sym_return] = ACTIONS(572), - [anon_sym_break] = ACTIONS(574), - [anon_sym_continue] = ACTIONS(576), - [anon_sym_goto] = ACTIONS(578), - [anon_sym_AMP] = ACTIONS(556), - [anon_sym_BANG] = ACTIONS(580), - [anon_sym_TILDE] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_DASH_DASH] = ACTIONS(586), - [anon_sym_PLUS_PLUS] = ACTIONS(586), - [anon_sym_sizeof] = ACTIONS(588), - [sym_number_literal] = ACTIONS(590), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(594), - [sym_false] = ACTIONS(594), - [sym_null] = ACTIONS(594), - [sym_identifier] = ACTIONS(1030), + [anon_sym_SEMI] = ACTIONS(546), + [anon_sym_LBRACE] = ACTIONS(239), + [anon_sym_LPAREN2] = ACTIONS(550), + [anon_sym_STAR] = ACTIONS(552), + [anon_sym_if] = ACTIONS(1007), + [anon_sym_switch] = ACTIONS(1009), + [anon_sym_case] = ACTIONS(1011), + [anon_sym_default] = ACTIONS(1013), + [anon_sym_while] = ACTIONS(1015), + [anon_sym_do] = ACTIONS(1017), + [anon_sym_for] = ACTIONS(1019), + [anon_sym_return] = ACTIONS(568), + [anon_sym_break] = ACTIONS(570), + [anon_sym_continue] = ACTIONS(572), + [anon_sym_goto] = ACTIONS(574), + [anon_sym_AMP] = ACTIONS(552), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_TILDE] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(580), + [anon_sym_DASH] = ACTIONS(580), + [anon_sym_DASH_DASH] = ACTIONS(582), + [anon_sym_PLUS_PLUS] = ACTIONS(582), + [anon_sym_sizeof] = ACTIONS(584), + [sym_number_literal] = ACTIONS(586), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(590), + [sym_false] = ACTIONS(590), + [sym_null] = ACTIONS(590), + [sym_identifier] = ACTIONS(1021), [sym_comment] = ACTIONS(39), }, [638] = { - [anon_sym_LPAREN2] = ACTIONS(2292), + [anon_sym_LPAREN2] = ACTIONS(2281), [sym_comment] = ACTIONS(39), }, [639] = { @@ -24707,46 +24726,46 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(884), [sym_concatenated_string] = STATE(884), [sym_string_literal] = STATE(376), - [anon_sym_SEMI] = ACTIONS(2294), - [anon_sym_LPAREN2] = ACTIONS(847), - [anon_sym_STAR] = ACTIONS(849), - [anon_sym_AMP] = ACTIONS(849), - [anon_sym_BANG] = ACTIONS(851), - [anon_sym_TILDE] = ACTIONS(853), - [anon_sym_PLUS] = ACTIONS(855), - [anon_sym_DASH] = ACTIONS(855), - [anon_sym_DASH_DASH] = ACTIONS(857), - [anon_sym_PLUS_PLUS] = ACTIONS(857), - [anon_sym_sizeof] = ACTIONS(859), - [sym_number_literal] = ACTIONS(2296), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2298), - [sym_false] = ACTIONS(2298), - [sym_null] = ACTIONS(2298), - [sym_identifier] = ACTIONS(2298), + [anon_sym_SEMI] = ACTIONS(2283), + [anon_sym_LPAREN2] = ACTIONS(838), + [anon_sym_STAR] = ACTIONS(840), + [anon_sym_AMP] = ACTIONS(840), + [anon_sym_BANG] = ACTIONS(842), + [anon_sym_TILDE] = ACTIONS(844), + [anon_sym_PLUS] = ACTIONS(846), + [anon_sym_DASH] = ACTIONS(846), + [anon_sym_DASH_DASH] = ACTIONS(848), + [anon_sym_PLUS_PLUS] = ACTIONS(848), + [anon_sym_sizeof] = ACTIONS(850), + [sym_number_literal] = ACTIONS(2285), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(2287), + [sym_false] = ACTIONS(2287), + [sym_null] = ACTIONS(2287), + [sym_identifier] = ACTIONS(2287), [sym_comment] = ACTIONS(39), }, [640] = { - [anon_sym_SEMI] = ACTIONS(2300), + [anon_sym_SEMI] = ACTIONS(2289), [sym_comment] = ACTIONS(39), }, [641] = { - [anon_sym_SEMI] = ACTIONS(2302), + [anon_sym_SEMI] = ACTIONS(2291), [sym_comment] = ACTIONS(39), }, [642] = { - [sym_identifier] = ACTIONS(2304), + [sym_identifier] = ACTIONS(2293), [sym_comment] = ACTIONS(39), }, [643] = { - [anon_sym_COMMA] = ACTIONS(1066), - [anon_sym_SEMI] = ACTIONS(1068), + [anon_sym_COMMA] = ACTIONS(1059), + [anon_sym_SEMI] = ACTIONS(1061), [anon_sym_extern] = ACTIONS(83), - [anon_sym_LPAREN2] = ACTIONS(1071), - [anon_sym_STAR] = ACTIONS(1075), - [anon_sym_LBRACK] = ACTIONS(1066), - [anon_sym_EQ] = ACTIONS(1078), + [anon_sym_LPAREN2] = ACTIONS(1064), + [anon_sym_STAR] = ACTIONS(1068), + [anon_sym_LBRACK] = ACTIONS(1059), + [anon_sym_EQ] = ACTIONS(1071), [anon_sym_static] = ACTIONS(83), [anon_sym_auto] = ACTIONS(83), [anon_sym_register] = ACTIONS(83), @@ -24755,166 +24774,166 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_restrict] = ACTIONS(83), [anon_sym_volatile] = ACTIONS(83), [anon_sym__Atomic] = ACTIONS(83), - [anon_sym_COLON] = ACTIONS(2306), - [anon_sym_QMARK] = ACTIONS(1066), - [anon_sym_STAR_EQ] = ACTIONS(1066), - [anon_sym_SLASH_EQ] = ACTIONS(1066), - [anon_sym_PERCENT_EQ] = ACTIONS(1066), - [anon_sym_PLUS_EQ] = ACTIONS(1066), - [anon_sym_DASH_EQ] = ACTIONS(1066), - [anon_sym_LT_LT_EQ] = ACTIONS(1066), - [anon_sym_GT_GT_EQ] = ACTIONS(1066), - [anon_sym_AMP_EQ] = ACTIONS(1066), - [anon_sym_CARET_EQ] = ACTIONS(1066), - [anon_sym_PIPE_EQ] = ACTIONS(1066), - [anon_sym_AMP] = ACTIONS(1078), - [anon_sym_PIPE_PIPE] = ACTIONS(1066), - [anon_sym_AMP_AMP] = ACTIONS(1066), - [anon_sym_PIPE] = ACTIONS(1078), - [anon_sym_CARET] = ACTIONS(1078), - [anon_sym_EQ_EQ] = ACTIONS(1066), - [anon_sym_BANG_EQ] = ACTIONS(1066), - [anon_sym_LT] = ACTIONS(1078), - [anon_sym_GT] = ACTIONS(1078), - [anon_sym_LT_EQ] = ACTIONS(1066), - [anon_sym_GT_EQ] = ACTIONS(1066), - [anon_sym_LT_LT] = ACTIONS(1078), - [anon_sym_GT_GT] = ACTIONS(1078), - [anon_sym_PLUS] = ACTIONS(1078), - [anon_sym_DASH] = ACTIONS(1078), - [anon_sym_SLASH] = ACTIONS(1078), - [anon_sym_PERCENT] = ACTIONS(1078), - [anon_sym_DASH_DASH] = ACTIONS(1066), - [anon_sym_PLUS_PLUS] = ACTIONS(1066), - [anon_sym_DOT] = ACTIONS(1066), - [anon_sym_DASH_GT] = ACTIONS(1066), + [anon_sym_COLON] = ACTIONS(2295), + [anon_sym_QMARK] = ACTIONS(1059), + [anon_sym_STAR_EQ] = ACTIONS(1059), + [anon_sym_SLASH_EQ] = ACTIONS(1059), + [anon_sym_PERCENT_EQ] = ACTIONS(1059), + [anon_sym_PLUS_EQ] = ACTIONS(1059), + [anon_sym_DASH_EQ] = ACTIONS(1059), + [anon_sym_LT_LT_EQ] = ACTIONS(1059), + [anon_sym_GT_GT_EQ] = ACTIONS(1059), + [anon_sym_AMP_EQ] = ACTIONS(1059), + [anon_sym_CARET_EQ] = ACTIONS(1059), + [anon_sym_PIPE_EQ] = ACTIONS(1059), + [anon_sym_AMP] = ACTIONS(1071), + [anon_sym_PIPE_PIPE] = ACTIONS(1059), + [anon_sym_AMP_AMP] = ACTIONS(1059), + [anon_sym_PIPE] = ACTIONS(1071), + [anon_sym_CARET] = ACTIONS(1071), + [anon_sym_EQ_EQ] = ACTIONS(1059), + [anon_sym_BANG_EQ] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(1071), + [anon_sym_GT] = ACTIONS(1071), + [anon_sym_LT_EQ] = ACTIONS(1059), + [anon_sym_GT_EQ] = ACTIONS(1059), + [anon_sym_LT_LT] = ACTIONS(1071), + [anon_sym_GT_GT] = ACTIONS(1071), + [anon_sym_PLUS] = ACTIONS(1071), + [anon_sym_DASH] = ACTIONS(1071), + [anon_sym_SLASH] = ACTIONS(1071), + [anon_sym_PERCENT] = ACTIONS(1071), + [anon_sym_DASH_DASH] = ACTIONS(1059), + [anon_sym_PLUS_PLUS] = ACTIONS(1059), + [anon_sym_DOT] = ACTIONS(1059), + [anon_sym_DASH_GT] = ACTIONS(1059), [sym_identifier] = ACTIONS(83), [sym_comment] = ACTIONS(39), }, [644] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1082), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1082), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1082), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1082), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1082), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1082), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1082), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1082), - [sym_preproc_directive] = ACTIONS(1082), - [anon_sym_SEMI] = ACTIONS(1084), - [anon_sym_typedef] = ACTIONS(1082), - [anon_sym_extern] = ACTIONS(1082), - [anon_sym_LBRACE] = ACTIONS(1084), - [anon_sym_LPAREN2] = ACTIONS(1084), - [anon_sym_STAR] = ACTIONS(1084), - [anon_sym_static] = ACTIONS(1082), - [anon_sym_auto] = ACTIONS(1082), - [anon_sym_register] = ACTIONS(1082), - [anon_sym_inline] = ACTIONS(1082), - [anon_sym_const] = ACTIONS(1082), - [anon_sym_restrict] = ACTIONS(1082), - [anon_sym_volatile] = ACTIONS(1082), - [anon_sym__Atomic] = ACTIONS(1082), - [anon_sym_unsigned] = ACTIONS(1082), - [anon_sym_long] = ACTIONS(1082), - [anon_sym_short] = ACTIONS(1082), - [sym_primitive_type] = ACTIONS(1082), - [anon_sym_enum] = ACTIONS(1082), - [anon_sym_struct] = ACTIONS(1082), - [anon_sym_union] = ACTIONS(1082), - [anon_sym_if] = ACTIONS(1082), - [anon_sym_switch] = ACTIONS(1082), - [anon_sym_case] = ACTIONS(1082), - [anon_sym_default] = ACTIONS(1082), - [anon_sym_while] = ACTIONS(1082), - [anon_sym_do] = ACTIONS(1082), - [anon_sym_for] = ACTIONS(1082), - [anon_sym_return] = ACTIONS(1082), - [anon_sym_break] = ACTIONS(1082), - [anon_sym_continue] = ACTIONS(1082), - [anon_sym_goto] = ACTIONS(1082), - [anon_sym_AMP] = ACTIONS(1084), - [anon_sym_BANG] = ACTIONS(1084), - [anon_sym_TILDE] = ACTIONS(1084), - [anon_sym_PLUS] = ACTIONS(1082), - [anon_sym_DASH] = ACTIONS(1082), - [anon_sym_DASH_DASH] = ACTIONS(1084), - [anon_sym_PLUS_PLUS] = ACTIONS(1084), - [anon_sym_sizeof] = ACTIONS(1082), - [sym_number_literal] = ACTIONS(1084), - [anon_sym_SQUOTE] = ACTIONS(1084), - [anon_sym_DQUOTE] = ACTIONS(1084), - [sym_true] = ACTIONS(1082), - [sym_false] = ACTIONS(1082), - [sym_null] = ACTIONS(1082), - [sym_identifier] = ACTIONS(1082), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1075), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1075), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1075), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1075), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1075), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1075), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1075), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1075), + [sym_preproc_directive] = ACTIONS(1075), + [anon_sym_SEMI] = ACTIONS(1077), + [anon_sym_typedef] = ACTIONS(1075), + [anon_sym_extern] = ACTIONS(1075), + [anon_sym_LBRACE] = ACTIONS(1077), + [anon_sym_LPAREN2] = ACTIONS(1077), + [anon_sym_STAR] = ACTIONS(1077), + [anon_sym_static] = ACTIONS(1075), + [anon_sym_auto] = ACTIONS(1075), + [anon_sym_register] = ACTIONS(1075), + [anon_sym_inline] = ACTIONS(1075), + [anon_sym_const] = ACTIONS(1075), + [anon_sym_restrict] = ACTIONS(1075), + [anon_sym_volatile] = ACTIONS(1075), + [anon_sym__Atomic] = ACTIONS(1075), + [anon_sym_unsigned] = ACTIONS(1075), + [anon_sym_long] = ACTIONS(1075), + [anon_sym_short] = ACTIONS(1075), + [sym_primitive_type] = ACTIONS(1075), + [anon_sym_enum] = ACTIONS(1075), + [anon_sym_struct] = ACTIONS(1075), + [anon_sym_union] = ACTIONS(1075), + [anon_sym_if] = ACTIONS(1075), + [anon_sym_switch] = ACTIONS(1075), + [anon_sym_case] = ACTIONS(1075), + [anon_sym_default] = ACTIONS(1075), + [anon_sym_while] = ACTIONS(1075), + [anon_sym_do] = ACTIONS(1075), + [anon_sym_for] = ACTIONS(1075), + [anon_sym_return] = ACTIONS(1075), + [anon_sym_break] = ACTIONS(1075), + [anon_sym_continue] = ACTIONS(1075), + [anon_sym_goto] = ACTIONS(1075), + [anon_sym_AMP] = ACTIONS(1077), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_TILDE] = ACTIONS(1077), + [anon_sym_PLUS] = ACTIONS(1075), + [anon_sym_DASH] = ACTIONS(1075), + [anon_sym_DASH_DASH] = ACTIONS(1077), + [anon_sym_PLUS_PLUS] = ACTIONS(1077), + [anon_sym_sizeof] = ACTIONS(1075), + [sym_number_literal] = ACTIONS(1077), + [anon_sym_SQUOTE] = ACTIONS(1077), + [anon_sym_DQUOTE] = ACTIONS(1077), + [sym_true] = ACTIONS(1075), + [sym_false] = ACTIONS(1075), + [sym_null] = ACTIONS(1075), + [sym_identifier] = ACTIONS(1075), [sym_comment] = ACTIONS(39), }, [645] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1086), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1086), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1086), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1086), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1086), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1086), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1086), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1086), - [sym_preproc_directive] = ACTIONS(1086), - [anon_sym_SEMI] = ACTIONS(1088), - [anon_sym_typedef] = ACTIONS(1086), - [anon_sym_extern] = ACTIONS(1086), - [anon_sym_LBRACE] = ACTIONS(1088), - [anon_sym_LPAREN2] = ACTIONS(1088), - [anon_sym_STAR] = ACTIONS(1088), - [anon_sym_static] = ACTIONS(1086), - [anon_sym_auto] = ACTIONS(1086), - [anon_sym_register] = ACTIONS(1086), - [anon_sym_inline] = ACTIONS(1086), - [anon_sym_const] = ACTIONS(1086), - [anon_sym_restrict] = ACTIONS(1086), - [anon_sym_volatile] = ACTIONS(1086), - [anon_sym__Atomic] = ACTIONS(1086), - [anon_sym_unsigned] = ACTIONS(1086), - [anon_sym_long] = ACTIONS(1086), - [anon_sym_short] = ACTIONS(1086), - [sym_primitive_type] = ACTIONS(1086), - [anon_sym_enum] = ACTIONS(1086), - [anon_sym_struct] = ACTIONS(1086), - [anon_sym_union] = ACTIONS(1086), - [anon_sym_if] = ACTIONS(1086), - [anon_sym_switch] = ACTIONS(1086), - [anon_sym_case] = ACTIONS(1086), - [anon_sym_default] = ACTIONS(1086), - [anon_sym_while] = ACTIONS(1086), - [anon_sym_do] = ACTIONS(1086), - [anon_sym_for] = ACTIONS(1086), - [anon_sym_return] = ACTIONS(1086), - [anon_sym_break] = ACTIONS(1086), - [anon_sym_continue] = ACTIONS(1086), - [anon_sym_goto] = ACTIONS(1086), - [anon_sym_AMP] = ACTIONS(1088), - [anon_sym_BANG] = ACTIONS(1088), - [anon_sym_TILDE] = ACTIONS(1088), - [anon_sym_PLUS] = ACTIONS(1086), - [anon_sym_DASH] = ACTIONS(1086), - [anon_sym_DASH_DASH] = ACTIONS(1088), - [anon_sym_PLUS_PLUS] = ACTIONS(1088), - [anon_sym_sizeof] = ACTIONS(1086), - [sym_number_literal] = ACTIONS(1088), - [anon_sym_SQUOTE] = ACTIONS(1088), - [anon_sym_DQUOTE] = ACTIONS(1088), - [sym_true] = ACTIONS(1086), - [sym_false] = ACTIONS(1086), - [sym_null] = ACTIONS(1086), - [sym_identifier] = ACTIONS(1086), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1079), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1079), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1079), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1079), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1079), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1079), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1079), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1079), + [sym_preproc_directive] = ACTIONS(1079), + [anon_sym_SEMI] = ACTIONS(1081), + [anon_sym_typedef] = ACTIONS(1079), + [anon_sym_extern] = ACTIONS(1079), + [anon_sym_LBRACE] = ACTIONS(1081), + [anon_sym_LPAREN2] = ACTIONS(1081), + [anon_sym_STAR] = ACTIONS(1081), + [anon_sym_static] = ACTIONS(1079), + [anon_sym_auto] = ACTIONS(1079), + [anon_sym_register] = ACTIONS(1079), + [anon_sym_inline] = ACTIONS(1079), + [anon_sym_const] = ACTIONS(1079), + [anon_sym_restrict] = ACTIONS(1079), + [anon_sym_volatile] = ACTIONS(1079), + [anon_sym__Atomic] = ACTIONS(1079), + [anon_sym_unsigned] = ACTIONS(1079), + [anon_sym_long] = ACTIONS(1079), + [anon_sym_short] = ACTIONS(1079), + [sym_primitive_type] = ACTIONS(1079), + [anon_sym_enum] = ACTIONS(1079), + [anon_sym_struct] = ACTIONS(1079), + [anon_sym_union] = ACTIONS(1079), + [anon_sym_if] = ACTIONS(1079), + [anon_sym_switch] = ACTIONS(1079), + [anon_sym_case] = ACTIONS(1079), + [anon_sym_default] = ACTIONS(1079), + [anon_sym_while] = ACTIONS(1079), + [anon_sym_do] = ACTIONS(1079), + [anon_sym_for] = ACTIONS(1079), + [anon_sym_return] = ACTIONS(1079), + [anon_sym_break] = ACTIONS(1079), + [anon_sym_continue] = ACTIONS(1079), + [anon_sym_goto] = ACTIONS(1079), + [anon_sym_AMP] = ACTIONS(1081), + [anon_sym_BANG] = ACTIONS(1081), + [anon_sym_TILDE] = ACTIONS(1081), + [anon_sym_PLUS] = ACTIONS(1079), + [anon_sym_DASH] = ACTIONS(1079), + [anon_sym_DASH_DASH] = ACTIONS(1081), + [anon_sym_PLUS_PLUS] = ACTIONS(1081), + [anon_sym_sizeof] = ACTIONS(1079), + [sym_number_literal] = ACTIONS(1081), + [anon_sym_SQUOTE] = ACTIONS(1081), + [anon_sym_DQUOTE] = ACTIONS(1081), + [sym_true] = ACTIONS(1079), + [sym_false] = ACTIONS(1079), + [sym_null] = ACTIONS(1079), + [sym_identifier] = ACTIONS(1079), [sym_comment] = ACTIONS(39), }, [646] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2308), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2297), [sym_comment] = ACTIONS(39), }, [647] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2310), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2299), [sym_comment] = ACTIONS(39), }, [648] = { @@ -24923,56 +24942,56 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_function_declarator] = STATE(891), [sym_array_declarator] = STATE(891), [sym_init_declarator] = STATE(167), - [anon_sym_SEMI] = ACTIONS(394), + [anon_sym_SEMI] = ACTIONS(390), [anon_sym_LPAREN2] = ACTIONS(92), - [anon_sym_STAR] = ACTIONS(534), - [sym_identifier] = ACTIONS(2312), + [anon_sym_STAR] = ACTIONS(530), + [sym_identifier] = ACTIONS(2301), [sym_comment] = ACTIONS(39), }, [649] = { [sym_argument_list] = STATE(465), - [anon_sym_COMMA] = ACTIONS(1092), - [anon_sym_SEMI] = ACTIONS(2314), - [anon_sym_LPAREN2] = ACTIONS(1096), - [anon_sym_STAR] = ACTIONS(1098), - [anon_sym_LBRACK] = ACTIONS(1100), - [anon_sym_EQ] = ACTIONS(1102), - [anon_sym_QMARK] = ACTIONS(1104), - [anon_sym_STAR_EQ] = ACTIONS(1106), - [anon_sym_SLASH_EQ] = ACTIONS(1106), - [anon_sym_PERCENT_EQ] = ACTIONS(1106), - [anon_sym_PLUS_EQ] = ACTIONS(1106), - [anon_sym_DASH_EQ] = ACTIONS(1106), - [anon_sym_LT_LT_EQ] = ACTIONS(1106), - [anon_sym_GT_GT_EQ] = ACTIONS(1106), - [anon_sym_AMP_EQ] = ACTIONS(1106), - [anon_sym_CARET_EQ] = ACTIONS(1106), - [anon_sym_PIPE_EQ] = ACTIONS(1106), - [anon_sym_AMP] = ACTIONS(1108), - [anon_sym_PIPE_PIPE] = ACTIONS(1110), - [anon_sym_AMP_AMP] = ACTIONS(1112), - [anon_sym_PIPE] = ACTIONS(1114), - [anon_sym_CARET] = ACTIONS(1116), - [anon_sym_EQ_EQ] = ACTIONS(1118), - [anon_sym_BANG_EQ] = ACTIONS(1118), - [anon_sym_LT] = ACTIONS(1120), - [anon_sym_GT] = ACTIONS(1120), - [anon_sym_LT_EQ] = ACTIONS(1122), - [anon_sym_GT_EQ] = ACTIONS(1122), - [anon_sym_LT_LT] = ACTIONS(1124), - [anon_sym_GT_GT] = ACTIONS(1124), - [anon_sym_PLUS] = ACTIONS(1126), - [anon_sym_DASH] = ACTIONS(1126), - [anon_sym_SLASH] = ACTIONS(1098), - [anon_sym_PERCENT] = ACTIONS(1098), - [anon_sym_DASH_DASH] = ACTIONS(1128), - [anon_sym_PLUS_PLUS] = ACTIONS(1128), - [anon_sym_DOT] = ACTIONS(1130), - [anon_sym_DASH_GT] = ACTIONS(1130), + [anon_sym_COMMA] = ACTIONS(1085), + [anon_sym_SEMI] = ACTIONS(2303), + [anon_sym_LPAREN2] = ACTIONS(1089), + [anon_sym_STAR] = ACTIONS(1091), + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(1095), + [anon_sym_QMARK] = ACTIONS(1097), + [anon_sym_STAR_EQ] = ACTIONS(1099), + [anon_sym_SLASH_EQ] = ACTIONS(1099), + [anon_sym_PERCENT_EQ] = ACTIONS(1099), + [anon_sym_PLUS_EQ] = ACTIONS(1099), + [anon_sym_DASH_EQ] = ACTIONS(1099), + [anon_sym_LT_LT_EQ] = ACTIONS(1099), + [anon_sym_GT_GT_EQ] = ACTIONS(1099), + [anon_sym_AMP_EQ] = ACTIONS(1099), + [anon_sym_CARET_EQ] = ACTIONS(1099), + [anon_sym_PIPE_EQ] = ACTIONS(1099), + [anon_sym_AMP] = ACTIONS(1101), + [anon_sym_PIPE_PIPE] = ACTIONS(1103), + [anon_sym_AMP_AMP] = ACTIONS(1105), + [anon_sym_PIPE] = ACTIONS(1107), + [anon_sym_CARET] = ACTIONS(1109), + [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(1115), + [anon_sym_GT_EQ] = ACTIONS(1115), + [anon_sym_LT_LT] = ACTIONS(1117), + [anon_sym_GT_GT] = ACTIONS(1117), + [anon_sym_PLUS] = ACTIONS(1119), + [anon_sym_DASH] = ACTIONS(1119), + [anon_sym_SLASH] = ACTIONS(1091), + [anon_sym_PERCENT] = ACTIONS(1091), + [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_PLUS_PLUS] = ACTIONS(1121), + [anon_sym_DOT] = ACTIONS(1123), + [anon_sym_DASH_GT] = ACTIONS(1123), [sym_comment] = ACTIONS(39), }, [650] = { - [anon_sym_SEMI] = ACTIONS(2314), + [anon_sym_SEMI] = ACTIONS(2303), [sym_comment] = ACTIONS(39), }, [651] = { @@ -25033,21 +25052,21 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(896), [aux_sym__declaration_specifiers_repeat1] = STATE(20), [aux_sym_sized_type_specifier_repeat1] = STATE(21), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(133), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(135), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1504), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2316), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1508), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1510), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1512), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1514), - [sym_preproc_directive] = ACTIONS(149), - [anon_sym_SEMI] = ACTIONS(1516), - [anon_sym_typedef] = ACTIONS(151), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(131), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(133), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1493), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2305), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1497), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1499), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1501), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1503), + [sym_preproc_directive] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(1505), + [anon_sym_typedef] = ACTIONS(149), [anon_sym_extern] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(734), - [anon_sym_LPAREN2] = ACTIONS(554), - [anon_sym_STAR] = ACTIONS(556), + [anon_sym_LBRACE] = ACTIONS(725), + [anon_sym_LPAREN2] = ACTIONS(550), + [anon_sym_STAR] = ACTIONS(552), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -25063,97 +25082,97 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), - [anon_sym_if] = ACTIONS(1518), - [anon_sym_switch] = ACTIONS(1520), - [anon_sym_case] = ACTIONS(1522), - [anon_sym_default] = ACTIONS(1524), - [anon_sym_while] = ACTIONS(1526), - [anon_sym_do] = ACTIONS(1528), - [anon_sym_for] = ACTIONS(1530), - [anon_sym_return] = ACTIONS(1532), - [anon_sym_break] = ACTIONS(1534), - [anon_sym_continue] = ACTIONS(1536), - [anon_sym_goto] = ACTIONS(1538), - [anon_sym_AMP] = ACTIONS(556), - [anon_sym_BANG] = ACTIONS(580), - [anon_sym_TILDE] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_DASH_DASH] = ACTIONS(586), - [anon_sym_PLUS_PLUS] = ACTIONS(586), - [anon_sym_sizeof] = ACTIONS(588), - [sym_number_literal] = ACTIONS(1540), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1542), - [sym_false] = ACTIONS(1542), - [sym_null] = ACTIONS(1542), - [sym_identifier] = ACTIONS(1544), + [anon_sym_if] = ACTIONS(1507), + [anon_sym_switch] = ACTIONS(1509), + [anon_sym_case] = ACTIONS(1511), + [anon_sym_default] = ACTIONS(1513), + [anon_sym_while] = ACTIONS(1515), + [anon_sym_do] = ACTIONS(1517), + [anon_sym_for] = ACTIONS(1519), + [anon_sym_return] = ACTIONS(1521), + [anon_sym_break] = ACTIONS(1523), + [anon_sym_continue] = ACTIONS(1525), + [anon_sym_goto] = ACTIONS(1527), + [anon_sym_AMP] = ACTIONS(552), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_TILDE] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(580), + [anon_sym_DASH] = ACTIONS(580), + [anon_sym_DASH_DASH] = ACTIONS(582), + [anon_sym_PLUS_PLUS] = ACTIONS(582), + [anon_sym_sizeof] = ACTIONS(584), + [sym_number_literal] = ACTIONS(1529), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_null] = ACTIONS(1531), + [sym_identifier] = ACTIONS(1533), [sym_comment] = ACTIONS(39), }, [652] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2318), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2318), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2318), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2318), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2318), - [sym_preproc_directive] = ACTIONS(2318), - [anon_sym_SEMI] = ACTIONS(2320), - [anon_sym_typedef] = ACTIONS(2318), - [anon_sym_extern] = ACTIONS(2318), - [anon_sym_LBRACE] = ACTIONS(2320), - [anon_sym_RBRACE] = ACTIONS(2320), - [anon_sym_LPAREN2] = ACTIONS(2320), - [anon_sym_STAR] = ACTIONS(2320), - [anon_sym_static] = ACTIONS(2318), - [anon_sym_auto] = ACTIONS(2318), - [anon_sym_register] = ACTIONS(2318), - [anon_sym_inline] = ACTIONS(2318), - [anon_sym_const] = ACTIONS(2318), - [anon_sym_restrict] = ACTIONS(2318), - [anon_sym_volatile] = ACTIONS(2318), - [anon_sym__Atomic] = ACTIONS(2318), - [anon_sym_unsigned] = ACTIONS(2318), - [anon_sym_long] = ACTIONS(2318), - [anon_sym_short] = ACTIONS(2318), - [sym_primitive_type] = ACTIONS(2318), - [anon_sym_enum] = ACTIONS(2318), - [anon_sym_struct] = ACTIONS(2318), - [anon_sym_union] = ACTIONS(2318), - [anon_sym_if] = ACTIONS(2318), - [anon_sym_switch] = ACTIONS(2318), - [anon_sym_case] = ACTIONS(2318), - [anon_sym_default] = ACTIONS(2318), - [anon_sym_while] = ACTIONS(2318), - [anon_sym_do] = ACTIONS(2318), - [anon_sym_for] = ACTIONS(2318), - [anon_sym_return] = ACTIONS(2318), - [anon_sym_break] = ACTIONS(2318), - [anon_sym_continue] = ACTIONS(2318), - [anon_sym_goto] = ACTIONS(2318), - [anon_sym_AMP] = ACTIONS(2320), - [anon_sym_BANG] = ACTIONS(2320), - [anon_sym_TILDE] = ACTIONS(2320), - [anon_sym_PLUS] = ACTIONS(2318), - [anon_sym_DASH] = ACTIONS(2318), - [anon_sym_DASH_DASH] = ACTIONS(2320), - [anon_sym_PLUS_PLUS] = ACTIONS(2320), - [anon_sym_sizeof] = ACTIONS(2318), - [sym_number_literal] = ACTIONS(2320), - [anon_sym_SQUOTE] = ACTIONS(2320), - [anon_sym_DQUOTE] = ACTIONS(2320), - [sym_true] = ACTIONS(2318), - [sym_false] = ACTIONS(2318), - [sym_null] = ACTIONS(2318), - [sym_identifier] = ACTIONS(2318), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2307), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2307), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2307), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2307), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2307), + [sym_preproc_directive] = ACTIONS(2307), + [anon_sym_SEMI] = ACTIONS(2309), + [anon_sym_typedef] = ACTIONS(2307), + [anon_sym_extern] = ACTIONS(2307), + [anon_sym_LBRACE] = ACTIONS(2309), + [anon_sym_RBRACE] = ACTIONS(2309), + [anon_sym_LPAREN2] = ACTIONS(2309), + [anon_sym_STAR] = ACTIONS(2309), + [anon_sym_static] = ACTIONS(2307), + [anon_sym_auto] = ACTIONS(2307), + [anon_sym_register] = ACTIONS(2307), + [anon_sym_inline] = ACTIONS(2307), + [anon_sym_const] = ACTIONS(2307), + [anon_sym_restrict] = ACTIONS(2307), + [anon_sym_volatile] = ACTIONS(2307), + [anon_sym__Atomic] = ACTIONS(2307), + [anon_sym_unsigned] = ACTIONS(2307), + [anon_sym_long] = ACTIONS(2307), + [anon_sym_short] = ACTIONS(2307), + [sym_primitive_type] = ACTIONS(2307), + [anon_sym_enum] = ACTIONS(2307), + [anon_sym_struct] = ACTIONS(2307), + [anon_sym_union] = ACTIONS(2307), + [anon_sym_if] = ACTIONS(2307), + [anon_sym_switch] = ACTIONS(2307), + [anon_sym_case] = ACTIONS(2307), + [anon_sym_default] = ACTIONS(2307), + [anon_sym_while] = ACTIONS(2307), + [anon_sym_do] = ACTIONS(2307), + [anon_sym_for] = ACTIONS(2307), + [anon_sym_return] = ACTIONS(2307), + [anon_sym_break] = ACTIONS(2307), + [anon_sym_continue] = ACTIONS(2307), + [anon_sym_goto] = ACTIONS(2307), + [anon_sym_AMP] = ACTIONS(2309), + [anon_sym_BANG] = ACTIONS(2309), + [anon_sym_TILDE] = ACTIONS(2309), + [anon_sym_PLUS] = ACTIONS(2307), + [anon_sym_DASH] = ACTIONS(2307), + [anon_sym_DASH_DASH] = ACTIONS(2309), + [anon_sym_PLUS_PLUS] = ACTIONS(2309), + [anon_sym_sizeof] = ACTIONS(2307), + [sym_number_literal] = ACTIONS(2309), + [anon_sym_SQUOTE] = ACTIONS(2309), + [anon_sym_DQUOTE] = ACTIONS(2309), + [sym_true] = ACTIONS(2307), + [sym_false] = ACTIONS(2307), + [sym_null] = ACTIONS(2307), + [sym_identifier] = ACTIONS(2307), [sym_comment] = ACTIONS(39), }, [653] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2322), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2311), [sym_comment] = ACTIONS(39), }, [654] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2324), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2313), [sym_comment] = ACTIONS(39), }, [655] = { @@ -25214,21 +25233,21 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(896), [aux_sym__declaration_specifiers_repeat1] = STATE(20), [aux_sym_sized_type_specifier_repeat1] = STATE(21), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(133), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(135), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1504), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2326), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1508), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1510), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1512), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1514), - [sym_preproc_directive] = ACTIONS(149), - [anon_sym_SEMI] = ACTIONS(1516), - [anon_sym_typedef] = ACTIONS(151), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(131), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(133), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1493), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2315), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1497), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1499), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1501), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1503), + [sym_preproc_directive] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(1505), + [anon_sym_typedef] = ACTIONS(149), [anon_sym_extern] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(734), - [anon_sym_LPAREN2] = ACTIONS(554), - [anon_sym_STAR] = ACTIONS(556), + [anon_sym_LBRACE] = ACTIONS(725), + [anon_sym_LPAREN2] = ACTIONS(550), + [anon_sym_STAR] = ACTIONS(552), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -25244,97 +25263,97 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), - [anon_sym_if] = ACTIONS(1518), - [anon_sym_switch] = ACTIONS(1520), - [anon_sym_case] = ACTIONS(1522), - [anon_sym_default] = ACTIONS(1524), - [anon_sym_while] = ACTIONS(1526), - [anon_sym_do] = ACTIONS(1528), - [anon_sym_for] = ACTIONS(1530), - [anon_sym_return] = ACTIONS(1532), - [anon_sym_break] = ACTIONS(1534), - [anon_sym_continue] = ACTIONS(1536), - [anon_sym_goto] = ACTIONS(1538), - [anon_sym_AMP] = ACTIONS(556), - [anon_sym_BANG] = ACTIONS(580), - [anon_sym_TILDE] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_DASH_DASH] = ACTIONS(586), - [anon_sym_PLUS_PLUS] = ACTIONS(586), - [anon_sym_sizeof] = ACTIONS(588), - [sym_number_literal] = ACTIONS(1540), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1542), - [sym_false] = ACTIONS(1542), - [sym_null] = ACTIONS(1542), - [sym_identifier] = ACTIONS(1544), + [anon_sym_if] = ACTIONS(1507), + [anon_sym_switch] = ACTIONS(1509), + [anon_sym_case] = ACTIONS(1511), + [anon_sym_default] = ACTIONS(1513), + [anon_sym_while] = ACTIONS(1515), + [anon_sym_do] = ACTIONS(1517), + [anon_sym_for] = ACTIONS(1519), + [anon_sym_return] = ACTIONS(1521), + [anon_sym_break] = ACTIONS(1523), + [anon_sym_continue] = ACTIONS(1525), + [anon_sym_goto] = ACTIONS(1527), + [anon_sym_AMP] = ACTIONS(552), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_TILDE] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(580), + [anon_sym_DASH] = ACTIONS(580), + [anon_sym_DASH_DASH] = ACTIONS(582), + [anon_sym_PLUS_PLUS] = ACTIONS(582), + [anon_sym_sizeof] = ACTIONS(584), + [sym_number_literal] = ACTIONS(1529), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_null] = ACTIONS(1531), + [sym_identifier] = ACTIONS(1533), [sym_comment] = ACTIONS(39), }, [656] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2328), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2328), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2328), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2328), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2328), - [sym_preproc_directive] = ACTIONS(2328), - [anon_sym_SEMI] = ACTIONS(2330), - [anon_sym_typedef] = ACTIONS(2328), - [anon_sym_extern] = ACTIONS(2328), - [anon_sym_LBRACE] = ACTIONS(2330), - [anon_sym_RBRACE] = ACTIONS(2330), - [anon_sym_LPAREN2] = ACTIONS(2330), - [anon_sym_STAR] = ACTIONS(2330), - [anon_sym_static] = ACTIONS(2328), - [anon_sym_auto] = ACTIONS(2328), - [anon_sym_register] = ACTIONS(2328), - [anon_sym_inline] = ACTIONS(2328), - [anon_sym_const] = ACTIONS(2328), - [anon_sym_restrict] = ACTIONS(2328), - [anon_sym_volatile] = ACTIONS(2328), - [anon_sym__Atomic] = ACTIONS(2328), - [anon_sym_unsigned] = ACTIONS(2328), - [anon_sym_long] = ACTIONS(2328), - [anon_sym_short] = ACTIONS(2328), - [sym_primitive_type] = ACTIONS(2328), - [anon_sym_enum] = ACTIONS(2328), - [anon_sym_struct] = ACTIONS(2328), - [anon_sym_union] = ACTIONS(2328), - [anon_sym_if] = ACTIONS(2328), - [anon_sym_switch] = ACTIONS(2328), - [anon_sym_case] = ACTIONS(2328), - [anon_sym_default] = ACTIONS(2328), - [anon_sym_while] = ACTIONS(2328), - [anon_sym_do] = ACTIONS(2328), - [anon_sym_for] = ACTIONS(2328), - [anon_sym_return] = ACTIONS(2328), - [anon_sym_break] = ACTIONS(2328), - [anon_sym_continue] = ACTIONS(2328), - [anon_sym_goto] = ACTIONS(2328), - [anon_sym_AMP] = ACTIONS(2330), - [anon_sym_BANG] = ACTIONS(2330), - [anon_sym_TILDE] = ACTIONS(2330), - [anon_sym_PLUS] = ACTIONS(2328), - [anon_sym_DASH] = ACTIONS(2328), - [anon_sym_DASH_DASH] = ACTIONS(2330), - [anon_sym_PLUS_PLUS] = ACTIONS(2330), - [anon_sym_sizeof] = ACTIONS(2328), - [sym_number_literal] = ACTIONS(2330), - [anon_sym_SQUOTE] = ACTIONS(2330), - [anon_sym_DQUOTE] = ACTIONS(2330), - [sym_true] = ACTIONS(2328), - [sym_false] = ACTIONS(2328), - [sym_null] = ACTIONS(2328), - [sym_identifier] = ACTIONS(2328), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2317), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2317), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2317), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2317), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2317), + [sym_preproc_directive] = ACTIONS(2317), + [anon_sym_SEMI] = ACTIONS(2319), + [anon_sym_typedef] = ACTIONS(2317), + [anon_sym_extern] = ACTIONS(2317), + [anon_sym_LBRACE] = ACTIONS(2319), + [anon_sym_RBRACE] = ACTIONS(2319), + [anon_sym_LPAREN2] = ACTIONS(2319), + [anon_sym_STAR] = ACTIONS(2319), + [anon_sym_static] = ACTIONS(2317), + [anon_sym_auto] = ACTIONS(2317), + [anon_sym_register] = ACTIONS(2317), + [anon_sym_inline] = ACTIONS(2317), + [anon_sym_const] = ACTIONS(2317), + [anon_sym_restrict] = ACTIONS(2317), + [anon_sym_volatile] = ACTIONS(2317), + [anon_sym__Atomic] = ACTIONS(2317), + [anon_sym_unsigned] = ACTIONS(2317), + [anon_sym_long] = ACTIONS(2317), + [anon_sym_short] = ACTIONS(2317), + [sym_primitive_type] = ACTIONS(2317), + [anon_sym_enum] = ACTIONS(2317), + [anon_sym_struct] = ACTIONS(2317), + [anon_sym_union] = ACTIONS(2317), + [anon_sym_if] = ACTIONS(2317), + [anon_sym_switch] = ACTIONS(2317), + [anon_sym_case] = ACTIONS(2317), + [anon_sym_default] = ACTIONS(2317), + [anon_sym_while] = ACTIONS(2317), + [anon_sym_do] = ACTIONS(2317), + [anon_sym_for] = ACTIONS(2317), + [anon_sym_return] = ACTIONS(2317), + [anon_sym_break] = ACTIONS(2317), + [anon_sym_continue] = ACTIONS(2317), + [anon_sym_goto] = ACTIONS(2317), + [anon_sym_AMP] = ACTIONS(2319), + [anon_sym_BANG] = ACTIONS(2319), + [anon_sym_TILDE] = ACTIONS(2319), + [anon_sym_PLUS] = ACTIONS(2317), + [anon_sym_DASH] = ACTIONS(2317), + [anon_sym_DASH_DASH] = ACTIONS(2319), + [anon_sym_PLUS_PLUS] = ACTIONS(2319), + [anon_sym_sizeof] = ACTIONS(2317), + [sym_number_literal] = ACTIONS(2319), + [anon_sym_SQUOTE] = ACTIONS(2319), + [anon_sym_DQUOTE] = ACTIONS(2319), + [sym_true] = ACTIONS(2317), + [sym_false] = ACTIONS(2317), + [sym_null] = ACTIONS(2317), + [sym_identifier] = ACTIONS(2317), [sym_comment] = ACTIONS(39), }, [657] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2332), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2321), [sym_comment] = ACTIONS(39), }, [658] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2334), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2323), [sym_comment] = ACTIONS(39), }, [659] = { @@ -25395,21 +25414,21 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(896), [aux_sym__declaration_specifiers_repeat1] = STATE(20), [aux_sym_sized_type_specifier_repeat1] = STATE(21), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(133), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(135), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1504), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2336), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1508), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1510), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1512), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1514), - [sym_preproc_directive] = ACTIONS(149), - [anon_sym_SEMI] = ACTIONS(1516), - [anon_sym_typedef] = ACTIONS(151), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(131), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(133), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1493), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2325), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1497), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1499), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1501), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1503), + [sym_preproc_directive] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(1505), + [anon_sym_typedef] = ACTIONS(149), [anon_sym_extern] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(734), - [anon_sym_LPAREN2] = ACTIONS(554), - [anon_sym_STAR] = ACTIONS(556), + [anon_sym_LBRACE] = ACTIONS(725), + [anon_sym_LPAREN2] = ACTIONS(550), + [anon_sym_STAR] = ACTIONS(552), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -25425,36 +25444,36 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), - [anon_sym_if] = ACTIONS(1518), - [anon_sym_switch] = ACTIONS(1520), - [anon_sym_case] = ACTIONS(1522), - [anon_sym_default] = ACTIONS(1524), - [anon_sym_while] = ACTIONS(1526), - [anon_sym_do] = ACTIONS(1528), - [anon_sym_for] = ACTIONS(1530), - [anon_sym_return] = ACTIONS(1532), - [anon_sym_break] = ACTIONS(1534), - [anon_sym_continue] = ACTIONS(1536), - [anon_sym_goto] = ACTIONS(1538), - [anon_sym_AMP] = ACTIONS(556), - [anon_sym_BANG] = ACTIONS(580), - [anon_sym_TILDE] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_DASH_DASH] = ACTIONS(586), - [anon_sym_PLUS_PLUS] = ACTIONS(586), - [anon_sym_sizeof] = ACTIONS(588), - [sym_number_literal] = ACTIONS(1540), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1542), - [sym_false] = ACTIONS(1542), - [sym_null] = ACTIONS(1542), - [sym_identifier] = ACTIONS(1544), + [anon_sym_if] = ACTIONS(1507), + [anon_sym_switch] = ACTIONS(1509), + [anon_sym_case] = ACTIONS(1511), + [anon_sym_default] = ACTIONS(1513), + [anon_sym_while] = ACTIONS(1515), + [anon_sym_do] = ACTIONS(1517), + [anon_sym_for] = ACTIONS(1519), + [anon_sym_return] = ACTIONS(1521), + [anon_sym_break] = ACTIONS(1523), + [anon_sym_continue] = ACTIONS(1525), + [anon_sym_goto] = ACTIONS(1527), + [anon_sym_AMP] = ACTIONS(552), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_TILDE] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(580), + [anon_sym_DASH] = ACTIONS(580), + [anon_sym_DASH_DASH] = ACTIONS(582), + [anon_sym_PLUS_PLUS] = ACTIONS(582), + [anon_sym_sizeof] = ACTIONS(584), + [sym_number_literal] = ACTIONS(1529), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_null] = ACTIONS(1531), + [sym_identifier] = ACTIONS(1533), [sym_comment] = ACTIONS(39), }, [660] = { - [anon_sym_RPAREN] = ACTIONS(2338), + [anon_sym_RPAREN] = ACTIONS(2327), [sym_comment] = ACTIONS(39), }, [661] = { @@ -25489,76 +25508,76 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_macro_type_specifier] = STATE(116), [aux_sym_type_definition_repeat1] = STATE(118), [aux_sym_sized_type_specifier_repeat1] = STATE(119), - [anon_sym_LPAREN2] = ACTIONS(970), - [anon_sym_STAR] = ACTIONS(972), + [anon_sym_LPAREN2] = ACTIONS(961), + [anon_sym_STAR] = ACTIONS(963), [anon_sym_const] = ACTIONS(25), [anon_sym_restrict] = ACTIONS(25), [anon_sym_volatile] = ACTIONS(25), [anon_sym__Atomic] = ACTIONS(25), - [anon_sym_unsigned] = ACTIONS(223), - [anon_sym_long] = ACTIONS(223), - [anon_sym_short] = ACTIONS(223), - [sym_primitive_type] = ACTIONS(225), + [anon_sym_unsigned] = ACTIONS(221), + [anon_sym_long] = ACTIONS(221), + [anon_sym_short] = ACTIONS(221), + [sym_primitive_type] = ACTIONS(223), [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), - [anon_sym_AMP] = ACTIONS(972), - [anon_sym_BANG] = ACTIONS(974), - [anon_sym_TILDE] = ACTIONS(976), - [anon_sym_PLUS] = ACTIONS(978), - [anon_sym_DASH] = ACTIONS(978), - [anon_sym_DASH_DASH] = ACTIONS(980), - [anon_sym_PLUS_PLUS] = ACTIONS(980), - [anon_sym_sizeof] = ACTIONS(982), - [sym_number_literal] = ACTIONS(984), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(986), - [sym_false] = ACTIONS(986), - [sym_null] = ACTIONS(986), - [sym_identifier] = ACTIONS(988), + [anon_sym_AMP] = ACTIONS(963), + [anon_sym_BANG] = ACTIONS(965), + [anon_sym_TILDE] = ACTIONS(967), + [anon_sym_PLUS] = ACTIONS(969), + [anon_sym_DASH] = ACTIONS(969), + [anon_sym_DASH_DASH] = ACTIONS(971), + [anon_sym_PLUS_PLUS] = ACTIONS(971), + [anon_sym_sizeof] = ACTIONS(973), + [sym_number_literal] = ACTIONS(975), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(977), + [sym_false] = ACTIONS(977), + [sym_null] = ACTIONS(977), + [sym_identifier] = ACTIONS(979), [sym_comment] = ACTIONS(39), }, [662] = { [sym_argument_list] = STATE(465), - [anon_sym_COMMA] = ACTIONS(1700), - [anon_sym_RPAREN] = ACTIONS(1700), - [anon_sym_LPAREN2] = ACTIONS(1096), - [anon_sym_STAR] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1100), - [anon_sym_EQ] = ACTIONS(1702), - [anon_sym_QMARK] = ACTIONS(1700), - [anon_sym_STAR_EQ] = ACTIONS(1700), - [anon_sym_SLASH_EQ] = ACTIONS(1700), - [anon_sym_PERCENT_EQ] = ACTIONS(1700), - [anon_sym_PLUS_EQ] = ACTIONS(1700), - [anon_sym_DASH_EQ] = ACTIONS(1700), - [anon_sym_LT_LT_EQ] = ACTIONS(1700), - [anon_sym_GT_GT_EQ] = ACTIONS(1700), - [anon_sym_AMP_EQ] = ACTIONS(1700), - [anon_sym_CARET_EQ] = ACTIONS(1700), - [anon_sym_PIPE_EQ] = ACTIONS(1700), - [anon_sym_AMP] = ACTIONS(1702), - [anon_sym_PIPE_PIPE] = ACTIONS(1700), - [anon_sym_AMP_AMP] = ACTIONS(1700), - [anon_sym_PIPE] = ACTIONS(1702), - [anon_sym_CARET] = ACTIONS(1702), - [anon_sym_EQ_EQ] = ACTIONS(1700), - [anon_sym_BANG_EQ] = ACTIONS(1700), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(1702), - [anon_sym_LT_EQ] = ACTIONS(1700), - [anon_sym_GT_EQ] = ACTIONS(1700), - [anon_sym_LT_LT] = ACTIONS(1584), - [anon_sym_GT_GT] = ACTIONS(1584), - [anon_sym_PLUS] = ACTIONS(1586), - [anon_sym_DASH] = ACTIONS(1586), - [anon_sym_SLASH] = ACTIONS(1560), - [anon_sym_PERCENT] = ACTIONS(1560), - [anon_sym_DASH_DASH] = ACTIONS(1128), - [anon_sym_PLUS_PLUS] = ACTIONS(1128), - [anon_sym_DOT] = ACTIONS(1130), - [anon_sym_DASH_GT] = ACTIONS(1130), + [anon_sym_COMMA] = ACTIONS(1689), + [anon_sym_RPAREN] = ACTIONS(1689), + [anon_sym_LPAREN2] = ACTIONS(1089), + [anon_sym_STAR] = ACTIONS(1549), + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(1691), + [anon_sym_QMARK] = ACTIONS(1689), + [anon_sym_STAR_EQ] = ACTIONS(1689), + [anon_sym_SLASH_EQ] = ACTIONS(1689), + [anon_sym_PERCENT_EQ] = ACTIONS(1689), + [anon_sym_PLUS_EQ] = ACTIONS(1689), + [anon_sym_DASH_EQ] = ACTIONS(1689), + [anon_sym_LT_LT_EQ] = ACTIONS(1689), + [anon_sym_GT_GT_EQ] = ACTIONS(1689), + [anon_sym_AMP_EQ] = ACTIONS(1689), + [anon_sym_CARET_EQ] = ACTIONS(1689), + [anon_sym_PIPE_EQ] = ACTIONS(1689), + [anon_sym_AMP] = ACTIONS(1691), + [anon_sym_PIPE_PIPE] = ACTIONS(1689), + [anon_sym_AMP_AMP] = ACTIONS(1689), + [anon_sym_PIPE] = ACTIONS(1691), + [anon_sym_CARET] = ACTIONS(1691), + [anon_sym_EQ_EQ] = ACTIONS(1689), + [anon_sym_BANG_EQ] = ACTIONS(1689), + [anon_sym_LT] = ACTIONS(1691), + [anon_sym_GT] = ACTIONS(1691), + [anon_sym_LT_EQ] = ACTIONS(1689), + [anon_sym_GT_EQ] = ACTIONS(1689), + [anon_sym_LT_LT] = ACTIONS(1573), + [anon_sym_GT_GT] = ACTIONS(1573), + [anon_sym_PLUS] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(1575), + [anon_sym_SLASH] = ACTIONS(1549), + [anon_sym_PERCENT] = ACTIONS(1549), + [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_PLUS_PLUS] = ACTIONS(1121), + [anon_sym_DOT] = ACTIONS(1123), + [anon_sym_DASH_GT] = ACTIONS(1123), [sym_comment] = ACTIONS(39), }, [663] = { @@ -25583,70 +25602,70 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(909), [sym_concatenated_string] = STATE(909), [sym_string_literal] = STATE(409), - [anon_sym_LPAREN2] = ACTIONS(970), - [anon_sym_STAR] = ACTIONS(972), - [anon_sym_AMP] = ACTIONS(972), - [anon_sym_BANG] = ACTIONS(974), - [anon_sym_TILDE] = ACTIONS(976), - [anon_sym_PLUS] = ACTIONS(978), - [anon_sym_DASH] = ACTIONS(978), - [anon_sym_DASH_DASH] = ACTIONS(980), - [anon_sym_PLUS_PLUS] = ACTIONS(980), - [anon_sym_sizeof] = ACTIONS(982), - [sym_number_literal] = ACTIONS(2340), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2342), - [sym_false] = ACTIONS(2342), - [sym_null] = ACTIONS(2342), - [sym_identifier] = ACTIONS(2342), + [anon_sym_LPAREN2] = ACTIONS(961), + [anon_sym_STAR] = ACTIONS(963), + [anon_sym_AMP] = ACTIONS(963), + [anon_sym_BANG] = ACTIONS(965), + [anon_sym_TILDE] = ACTIONS(967), + [anon_sym_PLUS] = ACTIONS(969), + [anon_sym_DASH] = ACTIONS(969), + [anon_sym_DASH_DASH] = ACTIONS(971), + [anon_sym_PLUS_PLUS] = ACTIONS(971), + [anon_sym_sizeof] = ACTIONS(973), + [sym_number_literal] = ACTIONS(2329), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(2331), + [sym_false] = ACTIONS(2331), + [sym_null] = ACTIONS(2331), + [sym_identifier] = ACTIONS(2331), [sym_comment] = ACTIONS(39), }, [664] = { - [anon_sym_COMMA] = ACTIONS(2344), - [anon_sym_RPAREN] = ACTIONS(2344), - [anon_sym_SEMI] = ACTIONS(2344), - [anon_sym_RBRACE] = ACTIONS(2344), - [anon_sym_LPAREN2] = ACTIONS(2344), - [anon_sym_STAR] = ACTIONS(2346), - [anon_sym_LBRACK] = ACTIONS(2344), - [anon_sym_RBRACK] = ACTIONS(2344), - [anon_sym_EQ] = ACTIONS(2346), - [anon_sym_COLON] = ACTIONS(2344), - [anon_sym_else] = ACTIONS(2344), - [anon_sym_while] = ACTIONS(2344), - [anon_sym_QMARK] = ACTIONS(2344), - [anon_sym_STAR_EQ] = ACTIONS(2344), - [anon_sym_SLASH_EQ] = ACTIONS(2344), - [anon_sym_PERCENT_EQ] = ACTIONS(2344), - [anon_sym_PLUS_EQ] = ACTIONS(2344), - [anon_sym_DASH_EQ] = ACTIONS(2344), - [anon_sym_LT_LT_EQ] = ACTIONS(2344), - [anon_sym_GT_GT_EQ] = ACTIONS(2344), - [anon_sym_AMP_EQ] = ACTIONS(2344), - [anon_sym_CARET_EQ] = ACTIONS(2344), - [anon_sym_PIPE_EQ] = ACTIONS(2344), - [anon_sym_AMP] = ACTIONS(2346), - [anon_sym_PIPE_PIPE] = ACTIONS(2344), - [anon_sym_AMP_AMP] = ACTIONS(2344), - [anon_sym_PIPE] = ACTIONS(2346), - [anon_sym_CARET] = ACTIONS(2346), - [anon_sym_EQ_EQ] = ACTIONS(2344), - [anon_sym_BANG_EQ] = ACTIONS(2344), - [anon_sym_LT] = ACTIONS(2346), - [anon_sym_GT] = ACTIONS(2346), - [anon_sym_LT_EQ] = ACTIONS(2344), - [anon_sym_GT_EQ] = ACTIONS(2344), - [anon_sym_LT_LT] = ACTIONS(2346), - [anon_sym_GT_GT] = ACTIONS(2346), - [anon_sym_PLUS] = ACTIONS(2346), - [anon_sym_DASH] = ACTIONS(2346), - [anon_sym_SLASH] = ACTIONS(2346), - [anon_sym_PERCENT] = ACTIONS(2346), - [anon_sym_DASH_DASH] = ACTIONS(2344), - [anon_sym_PLUS_PLUS] = ACTIONS(2344), - [anon_sym_DOT] = ACTIONS(2344), - [anon_sym_DASH_GT] = ACTIONS(2344), + [anon_sym_COMMA] = ACTIONS(2333), + [anon_sym_RPAREN] = ACTIONS(2333), + [anon_sym_SEMI] = ACTIONS(2333), + [anon_sym_RBRACE] = ACTIONS(2333), + [anon_sym_LPAREN2] = ACTIONS(2333), + [anon_sym_STAR] = ACTIONS(2335), + [anon_sym_LBRACK] = ACTIONS(2333), + [anon_sym_RBRACK] = ACTIONS(2333), + [anon_sym_EQ] = ACTIONS(2335), + [anon_sym_COLON] = ACTIONS(2333), + [anon_sym_else] = ACTIONS(2333), + [anon_sym_while] = ACTIONS(2333), + [anon_sym_QMARK] = ACTIONS(2333), + [anon_sym_STAR_EQ] = ACTIONS(2333), + [anon_sym_SLASH_EQ] = ACTIONS(2333), + [anon_sym_PERCENT_EQ] = ACTIONS(2333), + [anon_sym_PLUS_EQ] = ACTIONS(2333), + [anon_sym_DASH_EQ] = ACTIONS(2333), + [anon_sym_LT_LT_EQ] = ACTIONS(2333), + [anon_sym_GT_GT_EQ] = ACTIONS(2333), + [anon_sym_AMP_EQ] = ACTIONS(2333), + [anon_sym_CARET_EQ] = ACTIONS(2333), + [anon_sym_PIPE_EQ] = ACTIONS(2333), + [anon_sym_AMP] = ACTIONS(2335), + [anon_sym_PIPE_PIPE] = ACTIONS(2333), + [anon_sym_AMP_AMP] = ACTIONS(2333), + [anon_sym_PIPE] = ACTIONS(2335), + [anon_sym_CARET] = ACTIONS(2335), + [anon_sym_EQ_EQ] = ACTIONS(2333), + [anon_sym_BANG_EQ] = ACTIONS(2333), + [anon_sym_LT] = ACTIONS(2335), + [anon_sym_GT] = ACTIONS(2335), + [anon_sym_LT_EQ] = ACTIONS(2333), + [anon_sym_GT_EQ] = ACTIONS(2333), + [anon_sym_LT_LT] = ACTIONS(2335), + [anon_sym_GT_GT] = ACTIONS(2335), + [anon_sym_PLUS] = ACTIONS(2335), + [anon_sym_DASH] = ACTIONS(2335), + [anon_sym_SLASH] = ACTIONS(2335), + [anon_sym_PERCENT] = ACTIONS(2335), + [anon_sym_DASH_DASH] = ACTIONS(2333), + [anon_sym_PLUS_PLUS] = ACTIONS(2333), + [anon_sym_DOT] = ACTIONS(2333), + [anon_sym_DASH_GT] = ACTIONS(2333), [sym_comment] = ACTIONS(39), }, [665] = { @@ -25670,23 +25689,23 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(733), [sym_concatenated_string] = STATE(733), [sym_string_literal] = STATE(409), - [anon_sym_LPAREN2] = ACTIONS(970), - [anon_sym_STAR] = ACTIONS(972), - [anon_sym_AMP] = ACTIONS(972), - [anon_sym_BANG] = ACTIONS(974), - [anon_sym_TILDE] = ACTIONS(976), - [anon_sym_PLUS] = ACTIONS(978), - [anon_sym_DASH] = ACTIONS(978), - [anon_sym_DASH_DASH] = ACTIONS(980), - [anon_sym_PLUS_PLUS] = ACTIONS(980), - [anon_sym_sizeof] = ACTIONS(982), - [sym_number_literal] = ACTIONS(1720), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1722), - [sym_false] = ACTIONS(1722), - [sym_null] = ACTIONS(1722), - [sym_identifier] = ACTIONS(1722), + [anon_sym_LPAREN2] = ACTIONS(961), + [anon_sym_STAR] = ACTIONS(963), + [anon_sym_AMP] = ACTIONS(963), + [anon_sym_BANG] = ACTIONS(965), + [anon_sym_TILDE] = ACTIONS(967), + [anon_sym_PLUS] = ACTIONS(969), + [anon_sym_DASH] = ACTIONS(969), + [anon_sym_DASH_DASH] = ACTIONS(971), + [anon_sym_PLUS_PLUS] = ACTIONS(971), + [anon_sym_sizeof] = ACTIONS(973), + [sym_number_literal] = ACTIONS(1709), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(1711), + [sym_false] = ACTIONS(1711), + [sym_null] = ACTIONS(1711), + [sym_identifier] = ACTIONS(1711), [sym_comment] = ACTIONS(39), }, [666] = { @@ -25710,23 +25729,23 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(910), [sym_concatenated_string] = STATE(910), [sym_string_literal] = STATE(409), - [anon_sym_LPAREN2] = ACTIONS(970), - [anon_sym_STAR] = ACTIONS(972), - [anon_sym_AMP] = ACTIONS(972), - [anon_sym_BANG] = ACTIONS(974), - [anon_sym_TILDE] = ACTIONS(976), - [anon_sym_PLUS] = ACTIONS(978), - [anon_sym_DASH] = ACTIONS(978), - [anon_sym_DASH_DASH] = ACTIONS(980), - [anon_sym_PLUS_PLUS] = ACTIONS(980), - [anon_sym_sizeof] = ACTIONS(982), - [sym_number_literal] = ACTIONS(2348), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2350), - [sym_false] = ACTIONS(2350), - [sym_null] = ACTIONS(2350), - [sym_identifier] = ACTIONS(2350), + [anon_sym_LPAREN2] = ACTIONS(961), + [anon_sym_STAR] = ACTIONS(963), + [anon_sym_AMP] = ACTIONS(963), + [anon_sym_BANG] = ACTIONS(965), + [anon_sym_TILDE] = ACTIONS(967), + [anon_sym_PLUS] = ACTIONS(969), + [anon_sym_DASH] = ACTIONS(969), + [anon_sym_DASH_DASH] = ACTIONS(971), + [anon_sym_PLUS_PLUS] = ACTIONS(971), + [anon_sym_sizeof] = ACTIONS(973), + [sym_number_literal] = ACTIONS(2337), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(2339), + [sym_false] = ACTIONS(2339), + [sym_null] = ACTIONS(2339), + [sym_identifier] = ACTIONS(2339), [sym_comment] = ACTIONS(39), }, [667] = { @@ -25750,23 +25769,23 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(911), [sym_concatenated_string] = STATE(911), [sym_string_literal] = STATE(421), - [anon_sym_LPAREN2] = ACTIONS(996), - [anon_sym_STAR] = ACTIONS(998), - [anon_sym_AMP] = ACTIONS(998), - [anon_sym_BANG] = ACTIONS(1000), - [anon_sym_TILDE] = ACTIONS(1002), - [anon_sym_PLUS] = ACTIONS(1004), - [anon_sym_DASH] = ACTIONS(1004), - [anon_sym_DASH_DASH] = ACTIONS(1006), - [anon_sym_PLUS_PLUS] = ACTIONS(1006), - [anon_sym_sizeof] = ACTIONS(1008), - [sym_number_literal] = ACTIONS(2352), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2354), - [sym_false] = ACTIONS(2354), - [sym_null] = ACTIONS(2354), - [sym_identifier] = ACTIONS(2354), + [anon_sym_LPAREN2] = ACTIONS(987), + [anon_sym_STAR] = ACTIONS(989), + [anon_sym_AMP] = ACTIONS(989), + [anon_sym_BANG] = ACTIONS(991), + [anon_sym_TILDE] = ACTIONS(993), + [anon_sym_PLUS] = ACTIONS(995), + [anon_sym_DASH] = ACTIONS(995), + [anon_sym_DASH_DASH] = ACTIONS(997), + [anon_sym_PLUS_PLUS] = ACTIONS(997), + [anon_sym_sizeof] = ACTIONS(999), + [sym_number_literal] = ACTIONS(2341), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(2343), + [sym_false] = ACTIONS(2343), + [sym_null] = ACTIONS(2343), + [sym_identifier] = ACTIONS(2343), [sym_comment] = ACTIONS(39), }, [668] = { @@ -25790,23 +25809,23 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(912), [sym_concatenated_string] = STATE(912), [sym_string_literal] = STATE(409), - [anon_sym_LPAREN2] = ACTIONS(970), - [anon_sym_STAR] = ACTIONS(972), - [anon_sym_AMP] = ACTIONS(972), - [anon_sym_BANG] = ACTIONS(974), - [anon_sym_TILDE] = ACTIONS(976), - [anon_sym_PLUS] = ACTIONS(978), - [anon_sym_DASH] = ACTIONS(978), - [anon_sym_DASH_DASH] = ACTIONS(980), - [anon_sym_PLUS_PLUS] = ACTIONS(980), - [anon_sym_sizeof] = ACTIONS(982), - [sym_number_literal] = ACTIONS(2356), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2358), - [sym_false] = ACTIONS(2358), - [sym_null] = ACTIONS(2358), - [sym_identifier] = ACTIONS(2358), + [anon_sym_LPAREN2] = ACTIONS(961), + [anon_sym_STAR] = ACTIONS(963), + [anon_sym_AMP] = ACTIONS(963), + [anon_sym_BANG] = ACTIONS(965), + [anon_sym_TILDE] = ACTIONS(967), + [anon_sym_PLUS] = ACTIONS(969), + [anon_sym_DASH] = ACTIONS(969), + [anon_sym_DASH_DASH] = ACTIONS(971), + [anon_sym_PLUS_PLUS] = ACTIONS(971), + [anon_sym_sizeof] = ACTIONS(973), + [sym_number_literal] = ACTIONS(2345), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(2347), + [sym_false] = ACTIONS(2347), + [sym_null] = ACTIONS(2347), + [sym_identifier] = ACTIONS(2347), [sym_comment] = ACTIONS(39), }, [669] = { @@ -25830,23 +25849,23 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(913), [sym_concatenated_string] = STATE(913), [sym_string_literal] = STATE(409), - [anon_sym_LPAREN2] = ACTIONS(970), - [anon_sym_STAR] = ACTIONS(972), - [anon_sym_AMP] = ACTIONS(972), - [anon_sym_BANG] = ACTIONS(974), - [anon_sym_TILDE] = ACTIONS(976), - [anon_sym_PLUS] = ACTIONS(978), - [anon_sym_DASH] = ACTIONS(978), - [anon_sym_DASH_DASH] = ACTIONS(980), - [anon_sym_PLUS_PLUS] = ACTIONS(980), - [anon_sym_sizeof] = ACTIONS(982), - [sym_number_literal] = ACTIONS(2360), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2362), - [sym_false] = ACTIONS(2362), - [sym_null] = ACTIONS(2362), - [sym_identifier] = ACTIONS(2362), + [anon_sym_LPAREN2] = ACTIONS(961), + [anon_sym_STAR] = ACTIONS(963), + [anon_sym_AMP] = ACTIONS(963), + [anon_sym_BANG] = ACTIONS(965), + [anon_sym_TILDE] = ACTIONS(967), + [anon_sym_PLUS] = ACTIONS(969), + [anon_sym_DASH] = ACTIONS(969), + [anon_sym_DASH_DASH] = ACTIONS(971), + [anon_sym_PLUS_PLUS] = ACTIONS(971), + [anon_sym_sizeof] = ACTIONS(973), + [sym_number_literal] = ACTIONS(2349), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(2351), + [sym_false] = ACTIONS(2351), + [sym_null] = ACTIONS(2351), + [sym_identifier] = ACTIONS(2351), [sym_comment] = ACTIONS(39), }, [670] = { @@ -25870,23 +25889,23 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(914), [sym_concatenated_string] = STATE(914), [sym_string_literal] = STATE(409), - [anon_sym_LPAREN2] = ACTIONS(970), - [anon_sym_STAR] = ACTIONS(972), - [anon_sym_AMP] = ACTIONS(972), - [anon_sym_BANG] = ACTIONS(974), - [anon_sym_TILDE] = ACTIONS(976), - [anon_sym_PLUS] = ACTIONS(978), - [anon_sym_DASH] = ACTIONS(978), - [anon_sym_DASH_DASH] = ACTIONS(980), - [anon_sym_PLUS_PLUS] = ACTIONS(980), - [anon_sym_sizeof] = ACTIONS(982), - [sym_number_literal] = ACTIONS(2364), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2366), - [sym_false] = ACTIONS(2366), - [sym_null] = ACTIONS(2366), - [sym_identifier] = ACTIONS(2366), + [anon_sym_LPAREN2] = ACTIONS(961), + [anon_sym_STAR] = ACTIONS(963), + [anon_sym_AMP] = ACTIONS(963), + [anon_sym_BANG] = ACTIONS(965), + [anon_sym_TILDE] = ACTIONS(967), + [anon_sym_PLUS] = ACTIONS(969), + [anon_sym_DASH] = ACTIONS(969), + [anon_sym_DASH_DASH] = ACTIONS(971), + [anon_sym_PLUS_PLUS] = ACTIONS(971), + [anon_sym_sizeof] = ACTIONS(973), + [sym_number_literal] = ACTIONS(2353), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(2355), + [sym_false] = ACTIONS(2355), + [sym_null] = ACTIONS(2355), + [sym_identifier] = ACTIONS(2355), [sym_comment] = ACTIONS(39), }, [671] = { @@ -25910,23 +25929,23 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(915), [sym_concatenated_string] = STATE(915), [sym_string_literal] = STATE(409), - [anon_sym_LPAREN2] = ACTIONS(970), - [anon_sym_STAR] = ACTIONS(972), - [anon_sym_AMP] = ACTIONS(972), - [anon_sym_BANG] = ACTIONS(974), - [anon_sym_TILDE] = ACTIONS(976), - [anon_sym_PLUS] = ACTIONS(978), - [anon_sym_DASH] = ACTIONS(978), - [anon_sym_DASH_DASH] = ACTIONS(980), - [anon_sym_PLUS_PLUS] = ACTIONS(980), - [anon_sym_sizeof] = ACTIONS(982), - [sym_number_literal] = ACTIONS(2368), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2370), - [sym_false] = ACTIONS(2370), - [sym_null] = ACTIONS(2370), - [sym_identifier] = ACTIONS(2370), + [anon_sym_LPAREN2] = ACTIONS(961), + [anon_sym_STAR] = ACTIONS(963), + [anon_sym_AMP] = ACTIONS(963), + [anon_sym_BANG] = ACTIONS(965), + [anon_sym_TILDE] = ACTIONS(967), + [anon_sym_PLUS] = ACTIONS(969), + [anon_sym_DASH] = ACTIONS(969), + [anon_sym_DASH_DASH] = ACTIONS(971), + [anon_sym_PLUS_PLUS] = ACTIONS(971), + [anon_sym_sizeof] = ACTIONS(973), + [sym_number_literal] = ACTIONS(2357), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(2359), + [sym_false] = ACTIONS(2359), + [sym_null] = ACTIONS(2359), + [sym_identifier] = ACTIONS(2359), [sym_comment] = ACTIONS(39), }, [672] = { @@ -25950,23 +25969,23 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(916), [sym_concatenated_string] = STATE(916), [sym_string_literal] = STATE(409), - [anon_sym_LPAREN2] = ACTIONS(970), - [anon_sym_STAR] = ACTIONS(972), - [anon_sym_AMP] = ACTIONS(972), - [anon_sym_BANG] = ACTIONS(974), - [anon_sym_TILDE] = ACTIONS(976), - [anon_sym_PLUS] = ACTIONS(978), - [anon_sym_DASH] = ACTIONS(978), - [anon_sym_DASH_DASH] = ACTIONS(980), - [anon_sym_PLUS_PLUS] = ACTIONS(980), - [anon_sym_sizeof] = ACTIONS(982), - [sym_number_literal] = ACTIONS(2372), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2374), - [sym_false] = ACTIONS(2374), - [sym_null] = ACTIONS(2374), - [sym_identifier] = ACTIONS(2374), + [anon_sym_LPAREN2] = ACTIONS(961), + [anon_sym_STAR] = ACTIONS(963), + [anon_sym_AMP] = ACTIONS(963), + [anon_sym_BANG] = ACTIONS(965), + [anon_sym_TILDE] = ACTIONS(967), + [anon_sym_PLUS] = ACTIONS(969), + [anon_sym_DASH] = ACTIONS(969), + [anon_sym_DASH_DASH] = ACTIONS(971), + [anon_sym_PLUS_PLUS] = ACTIONS(971), + [anon_sym_sizeof] = ACTIONS(973), + [sym_number_literal] = ACTIONS(2361), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(2363), + [sym_false] = ACTIONS(2363), + [sym_null] = ACTIONS(2363), + [sym_identifier] = ACTIONS(2363), [sym_comment] = ACTIONS(39), }, [673] = { @@ -25990,23 +26009,23 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(917), [sym_concatenated_string] = STATE(917), [sym_string_literal] = STATE(409), - [anon_sym_LPAREN2] = ACTIONS(970), - [anon_sym_STAR] = ACTIONS(972), - [anon_sym_AMP] = ACTIONS(972), - [anon_sym_BANG] = ACTIONS(974), - [anon_sym_TILDE] = ACTIONS(976), - [anon_sym_PLUS] = ACTIONS(978), - [anon_sym_DASH] = ACTIONS(978), - [anon_sym_DASH_DASH] = ACTIONS(980), - [anon_sym_PLUS_PLUS] = ACTIONS(980), - [anon_sym_sizeof] = ACTIONS(982), - [sym_number_literal] = ACTIONS(2376), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2378), - [sym_false] = ACTIONS(2378), - [sym_null] = ACTIONS(2378), - [sym_identifier] = ACTIONS(2378), + [anon_sym_LPAREN2] = ACTIONS(961), + [anon_sym_STAR] = ACTIONS(963), + [anon_sym_AMP] = ACTIONS(963), + [anon_sym_BANG] = ACTIONS(965), + [anon_sym_TILDE] = ACTIONS(967), + [anon_sym_PLUS] = ACTIONS(969), + [anon_sym_DASH] = ACTIONS(969), + [anon_sym_DASH_DASH] = ACTIONS(971), + [anon_sym_PLUS_PLUS] = ACTIONS(971), + [anon_sym_sizeof] = ACTIONS(973), + [sym_number_literal] = ACTIONS(2365), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(2367), + [sym_false] = ACTIONS(2367), + [sym_null] = ACTIONS(2367), + [sym_identifier] = ACTIONS(2367), [sym_comment] = ACTIONS(39), }, [674] = { @@ -26030,23 +26049,23 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(918), [sym_concatenated_string] = STATE(918), [sym_string_literal] = STATE(409), - [anon_sym_LPAREN2] = ACTIONS(970), - [anon_sym_STAR] = ACTIONS(972), - [anon_sym_AMP] = ACTIONS(972), - [anon_sym_BANG] = ACTIONS(974), - [anon_sym_TILDE] = ACTIONS(976), - [anon_sym_PLUS] = ACTIONS(978), - [anon_sym_DASH] = ACTIONS(978), - [anon_sym_DASH_DASH] = ACTIONS(980), - [anon_sym_PLUS_PLUS] = ACTIONS(980), - [anon_sym_sizeof] = ACTIONS(982), - [sym_number_literal] = ACTIONS(2380), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2382), - [sym_false] = ACTIONS(2382), - [sym_null] = ACTIONS(2382), - [sym_identifier] = ACTIONS(2382), + [anon_sym_LPAREN2] = ACTIONS(961), + [anon_sym_STAR] = ACTIONS(963), + [anon_sym_AMP] = ACTIONS(963), + [anon_sym_BANG] = ACTIONS(965), + [anon_sym_TILDE] = ACTIONS(967), + [anon_sym_PLUS] = ACTIONS(969), + [anon_sym_DASH] = ACTIONS(969), + [anon_sym_DASH_DASH] = ACTIONS(971), + [anon_sym_PLUS_PLUS] = ACTIONS(971), + [anon_sym_sizeof] = ACTIONS(973), + [sym_number_literal] = ACTIONS(2369), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(2371), + [sym_false] = ACTIONS(2371), + [sym_null] = ACTIONS(2371), + [sym_identifier] = ACTIONS(2371), [sym_comment] = ACTIONS(39), }, [675] = { @@ -26070,23 +26089,23 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(919), [sym_concatenated_string] = STATE(919), [sym_string_literal] = STATE(409), - [anon_sym_LPAREN2] = ACTIONS(970), - [anon_sym_STAR] = ACTIONS(972), - [anon_sym_AMP] = ACTIONS(972), - [anon_sym_BANG] = ACTIONS(974), - [anon_sym_TILDE] = ACTIONS(976), - [anon_sym_PLUS] = ACTIONS(978), - [anon_sym_DASH] = ACTIONS(978), - [anon_sym_DASH_DASH] = ACTIONS(980), - [anon_sym_PLUS_PLUS] = ACTIONS(980), - [anon_sym_sizeof] = ACTIONS(982), - [sym_number_literal] = ACTIONS(2384), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2386), - [sym_false] = ACTIONS(2386), - [sym_null] = ACTIONS(2386), - [sym_identifier] = ACTIONS(2386), + [anon_sym_LPAREN2] = ACTIONS(961), + [anon_sym_STAR] = ACTIONS(963), + [anon_sym_AMP] = ACTIONS(963), + [anon_sym_BANG] = ACTIONS(965), + [anon_sym_TILDE] = ACTIONS(967), + [anon_sym_PLUS] = ACTIONS(969), + [anon_sym_DASH] = ACTIONS(969), + [anon_sym_DASH_DASH] = ACTIONS(971), + [anon_sym_PLUS_PLUS] = ACTIONS(971), + [anon_sym_sizeof] = ACTIONS(973), + [sym_number_literal] = ACTIONS(2373), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(2375), + [sym_false] = ACTIONS(2375), + [sym_null] = ACTIONS(2375), + [sym_identifier] = ACTIONS(2375), [sym_comment] = ACTIONS(39), }, [676] = { @@ -26110,23 +26129,23 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(920), [sym_concatenated_string] = STATE(920), [sym_string_literal] = STATE(409), - [anon_sym_LPAREN2] = ACTIONS(970), - [anon_sym_STAR] = ACTIONS(972), - [anon_sym_AMP] = ACTIONS(972), - [anon_sym_BANG] = ACTIONS(974), - [anon_sym_TILDE] = ACTIONS(976), - [anon_sym_PLUS] = ACTIONS(978), - [anon_sym_DASH] = ACTIONS(978), - [anon_sym_DASH_DASH] = ACTIONS(980), - [anon_sym_PLUS_PLUS] = ACTIONS(980), - [anon_sym_sizeof] = ACTIONS(982), - [sym_number_literal] = ACTIONS(2388), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2390), - [sym_false] = ACTIONS(2390), - [sym_null] = ACTIONS(2390), - [sym_identifier] = ACTIONS(2390), + [anon_sym_LPAREN2] = ACTIONS(961), + [anon_sym_STAR] = ACTIONS(963), + [anon_sym_AMP] = ACTIONS(963), + [anon_sym_BANG] = ACTIONS(965), + [anon_sym_TILDE] = ACTIONS(967), + [anon_sym_PLUS] = ACTIONS(969), + [anon_sym_DASH] = ACTIONS(969), + [anon_sym_DASH_DASH] = ACTIONS(971), + [anon_sym_PLUS_PLUS] = ACTIONS(971), + [anon_sym_sizeof] = ACTIONS(973), + [sym_number_literal] = ACTIONS(2377), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(2379), + [sym_false] = ACTIONS(2379), + [sym_null] = ACTIONS(2379), + [sym_identifier] = ACTIONS(2379), [sym_comment] = ACTIONS(39), }, [677] = { @@ -26151,124 +26170,124 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(921), [sym_concatenated_string] = STATE(921), [sym_string_literal] = STATE(253), - [anon_sym_LBRACE] = ACTIONS(632), - [anon_sym_LPAREN2] = ACTIONS(554), - [anon_sym_STAR] = ACTIONS(556), - [anon_sym_AMP] = ACTIONS(556), - [anon_sym_BANG] = ACTIONS(580), - [anon_sym_TILDE] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_DASH_DASH] = ACTIONS(586), - [anon_sym_PLUS_PLUS] = ACTIONS(586), - [anon_sym_sizeof] = ACTIONS(588), - [sym_number_literal] = ACTIONS(2392), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2394), - [sym_false] = ACTIONS(2394), - [sym_null] = ACTIONS(2394), - [sym_identifier] = ACTIONS(2394), + [anon_sym_LBRACE] = ACTIONS(628), + [anon_sym_LPAREN2] = ACTIONS(550), + [anon_sym_STAR] = ACTIONS(552), + [anon_sym_AMP] = ACTIONS(552), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_TILDE] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(580), + [anon_sym_DASH] = ACTIONS(580), + [anon_sym_DASH_DASH] = ACTIONS(582), + [anon_sym_PLUS_PLUS] = ACTIONS(582), + [anon_sym_sizeof] = ACTIONS(584), + [sym_number_literal] = ACTIONS(2381), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(2383), + [sym_false] = ACTIONS(2383), + [sym_null] = ACTIONS(2383), + [sym_identifier] = ACTIONS(2383), [sym_comment] = ACTIONS(39), }, [678] = { [sym_string_literal] = STATE(923), [aux_sym_concatenated_string_repeat1] = STATE(923), - [anon_sym_COMMA] = ACTIONS(1778), - [anon_sym_RPAREN] = ACTIONS(1778), - [anon_sym_LPAREN2] = ACTIONS(1778), - [anon_sym_STAR] = ACTIONS(1780), - [anon_sym_LBRACK] = ACTIONS(1778), - [anon_sym_EQ] = ACTIONS(1780), - [anon_sym_QMARK] = ACTIONS(1778), - [anon_sym_STAR_EQ] = ACTIONS(1778), - [anon_sym_SLASH_EQ] = ACTIONS(1778), - [anon_sym_PERCENT_EQ] = ACTIONS(1778), - [anon_sym_PLUS_EQ] = ACTIONS(1778), - [anon_sym_DASH_EQ] = ACTIONS(1778), - [anon_sym_LT_LT_EQ] = ACTIONS(1778), - [anon_sym_GT_GT_EQ] = ACTIONS(1778), - [anon_sym_AMP_EQ] = ACTIONS(1778), - [anon_sym_CARET_EQ] = ACTIONS(1778), - [anon_sym_PIPE_EQ] = ACTIONS(1778), - [anon_sym_AMP] = ACTIONS(1780), - [anon_sym_PIPE_PIPE] = ACTIONS(1778), - [anon_sym_AMP_AMP] = ACTIONS(1778), - [anon_sym_PIPE] = ACTIONS(1780), - [anon_sym_CARET] = ACTIONS(1780), - [anon_sym_EQ_EQ] = ACTIONS(1778), - [anon_sym_BANG_EQ] = ACTIONS(1778), - [anon_sym_LT] = ACTIONS(1780), - [anon_sym_GT] = ACTIONS(1780), - [anon_sym_LT_EQ] = ACTIONS(1778), - [anon_sym_GT_EQ] = ACTIONS(1778), - [anon_sym_LT_LT] = ACTIONS(1780), - [anon_sym_GT_GT] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(1780), - [anon_sym_DASH] = ACTIONS(1780), - [anon_sym_SLASH] = ACTIONS(1780), - [anon_sym_PERCENT] = ACTIONS(1780), - [anon_sym_DASH_DASH] = ACTIONS(1778), - [anon_sym_PLUS_PLUS] = ACTIONS(1778), - [anon_sym_DOT] = ACTIONS(1778), - [anon_sym_DASH_GT] = ACTIONS(1778), + [anon_sym_COMMA] = ACTIONS(1767), + [anon_sym_RPAREN] = ACTIONS(1767), + [anon_sym_LPAREN2] = ACTIONS(1767), + [anon_sym_STAR] = ACTIONS(1769), + [anon_sym_LBRACK] = ACTIONS(1767), + [anon_sym_EQ] = ACTIONS(1769), + [anon_sym_QMARK] = ACTIONS(1767), + [anon_sym_STAR_EQ] = ACTIONS(1767), + [anon_sym_SLASH_EQ] = ACTIONS(1767), + [anon_sym_PERCENT_EQ] = ACTIONS(1767), + [anon_sym_PLUS_EQ] = ACTIONS(1767), + [anon_sym_DASH_EQ] = ACTIONS(1767), + [anon_sym_LT_LT_EQ] = ACTIONS(1767), + [anon_sym_GT_GT_EQ] = ACTIONS(1767), + [anon_sym_AMP_EQ] = ACTIONS(1767), + [anon_sym_CARET_EQ] = ACTIONS(1767), + [anon_sym_PIPE_EQ] = ACTIONS(1767), + [anon_sym_AMP] = ACTIONS(1769), + [anon_sym_PIPE_PIPE] = ACTIONS(1767), + [anon_sym_AMP_AMP] = ACTIONS(1767), + [anon_sym_PIPE] = ACTIONS(1769), + [anon_sym_CARET] = ACTIONS(1769), + [anon_sym_EQ_EQ] = ACTIONS(1767), + [anon_sym_BANG_EQ] = ACTIONS(1767), + [anon_sym_LT] = ACTIONS(1769), + [anon_sym_GT] = ACTIONS(1769), + [anon_sym_LT_EQ] = ACTIONS(1767), + [anon_sym_GT_EQ] = ACTIONS(1767), + [anon_sym_LT_LT] = ACTIONS(1769), + [anon_sym_GT_GT] = ACTIONS(1769), + [anon_sym_PLUS] = ACTIONS(1769), + [anon_sym_DASH] = ACTIONS(1769), + [anon_sym_SLASH] = ACTIONS(1769), + [anon_sym_PERCENT] = ACTIONS(1769), + [anon_sym_DASH_DASH] = ACTIONS(1767), + [anon_sym_PLUS_PLUS] = ACTIONS(1767), + [anon_sym_DOT] = ACTIONS(1767), + [anon_sym_DASH_GT] = ACTIONS(1767), [anon_sym_DQUOTE] = ACTIONS(41), [sym_comment] = ACTIONS(39), }, [679] = { [sym_argument_list] = STATE(465), - [anon_sym_COMMA] = ACTIONS(1556), - [anon_sym_RPAREN] = ACTIONS(2396), - [anon_sym_LPAREN2] = ACTIONS(1096), - [anon_sym_STAR] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1100), - [anon_sym_EQ] = ACTIONS(1562), - [anon_sym_QMARK] = ACTIONS(1564), - [anon_sym_STAR_EQ] = ACTIONS(1566), - [anon_sym_SLASH_EQ] = ACTIONS(1566), - [anon_sym_PERCENT_EQ] = ACTIONS(1566), - [anon_sym_PLUS_EQ] = ACTIONS(1566), - [anon_sym_DASH_EQ] = ACTIONS(1566), - [anon_sym_LT_LT_EQ] = ACTIONS(1566), - [anon_sym_GT_GT_EQ] = ACTIONS(1566), - [anon_sym_AMP_EQ] = ACTIONS(1566), - [anon_sym_CARET_EQ] = ACTIONS(1566), - [anon_sym_PIPE_EQ] = ACTIONS(1566), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_PIPE_PIPE] = ACTIONS(1570), - [anon_sym_AMP_AMP] = ACTIONS(1572), - [anon_sym_PIPE] = ACTIONS(1574), - [anon_sym_CARET] = ACTIONS(1576), - [anon_sym_EQ_EQ] = ACTIONS(1578), - [anon_sym_BANG_EQ] = ACTIONS(1578), - [anon_sym_LT] = ACTIONS(1580), - [anon_sym_GT] = ACTIONS(1580), - [anon_sym_LT_EQ] = ACTIONS(1582), - [anon_sym_GT_EQ] = ACTIONS(1582), - [anon_sym_LT_LT] = ACTIONS(1584), - [anon_sym_GT_GT] = ACTIONS(1584), - [anon_sym_PLUS] = ACTIONS(1586), - [anon_sym_DASH] = ACTIONS(1586), - [anon_sym_SLASH] = ACTIONS(1560), - [anon_sym_PERCENT] = ACTIONS(1560), - [anon_sym_DASH_DASH] = ACTIONS(1128), - [anon_sym_PLUS_PLUS] = ACTIONS(1128), - [anon_sym_DOT] = ACTIONS(1130), - [anon_sym_DASH_GT] = ACTIONS(1130), + [anon_sym_COMMA] = ACTIONS(1545), + [anon_sym_RPAREN] = ACTIONS(2385), + [anon_sym_LPAREN2] = ACTIONS(1089), + [anon_sym_STAR] = ACTIONS(1549), + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(1551), + [anon_sym_QMARK] = ACTIONS(1553), + [anon_sym_STAR_EQ] = ACTIONS(1555), + [anon_sym_SLASH_EQ] = ACTIONS(1555), + [anon_sym_PERCENT_EQ] = ACTIONS(1555), + [anon_sym_PLUS_EQ] = ACTIONS(1555), + [anon_sym_DASH_EQ] = ACTIONS(1555), + [anon_sym_LT_LT_EQ] = ACTIONS(1555), + [anon_sym_GT_GT_EQ] = ACTIONS(1555), + [anon_sym_AMP_EQ] = ACTIONS(1555), + [anon_sym_CARET_EQ] = ACTIONS(1555), + [anon_sym_PIPE_EQ] = ACTIONS(1555), + [anon_sym_AMP] = ACTIONS(1557), + [anon_sym_PIPE_PIPE] = ACTIONS(1559), + [anon_sym_AMP_AMP] = ACTIONS(1561), + [anon_sym_PIPE] = ACTIONS(1563), + [anon_sym_CARET] = ACTIONS(1565), + [anon_sym_EQ_EQ] = ACTIONS(1567), + [anon_sym_BANG_EQ] = ACTIONS(1567), + [anon_sym_LT] = ACTIONS(1569), + [anon_sym_GT] = ACTIONS(1569), + [anon_sym_LT_EQ] = ACTIONS(1571), + [anon_sym_GT_EQ] = ACTIONS(1571), + [anon_sym_LT_LT] = ACTIONS(1573), + [anon_sym_GT_GT] = ACTIONS(1573), + [anon_sym_PLUS] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(1575), + [anon_sym_SLASH] = ACTIONS(1549), + [anon_sym_PERCENT] = ACTIONS(1549), + [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_PLUS_PLUS] = ACTIONS(1121), + [anon_sym_DOT] = ACTIONS(1123), + [anon_sym_DASH_GT] = ACTIONS(1123), [sym_comment] = ACTIONS(39), }, [680] = { - [anon_sym_RPAREN] = ACTIONS(2396), + [anon_sym_RPAREN] = ACTIONS(2385), [sym_comment] = ACTIONS(39), }, [681] = { [sym_parenthesized_expression] = STATE(925), - [anon_sym_LPAREN2] = ACTIONS(994), + [anon_sym_LPAREN2] = ACTIONS(985), [sym_comment] = ACTIONS(39), }, [682] = { [sym_parenthesized_expression] = STATE(926), - [anon_sym_LPAREN2] = ACTIONS(994), + [anon_sym_LPAREN2] = ACTIONS(985), [sym_comment] = ACTIONS(39), }, [683] = { @@ -26292,240 +26311,240 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(927), [sym_concatenated_string] = STATE(927), [sym_string_literal] = STATE(421), - [anon_sym_LPAREN2] = ACTIONS(996), - [anon_sym_STAR] = ACTIONS(998), - [anon_sym_AMP] = ACTIONS(998), - [anon_sym_BANG] = ACTIONS(1000), - [anon_sym_TILDE] = ACTIONS(1002), - [anon_sym_PLUS] = ACTIONS(1004), - [anon_sym_DASH] = ACTIONS(1004), - [anon_sym_DASH_DASH] = ACTIONS(1006), - [anon_sym_PLUS_PLUS] = ACTIONS(1006), - [anon_sym_sizeof] = ACTIONS(1008), - [sym_number_literal] = ACTIONS(2398), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2400), - [sym_false] = ACTIONS(2400), - [sym_null] = ACTIONS(2400), - [sym_identifier] = ACTIONS(2400), + [anon_sym_LPAREN2] = ACTIONS(987), + [anon_sym_STAR] = ACTIONS(989), + [anon_sym_AMP] = ACTIONS(989), + [anon_sym_BANG] = ACTIONS(991), + [anon_sym_TILDE] = ACTIONS(993), + [anon_sym_PLUS] = ACTIONS(995), + [anon_sym_DASH] = ACTIONS(995), + [anon_sym_DASH_DASH] = ACTIONS(997), + [anon_sym_PLUS_PLUS] = ACTIONS(997), + [anon_sym_sizeof] = ACTIONS(999), + [sym_number_literal] = ACTIONS(2387), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(2389), + [sym_false] = ACTIONS(2389), + [sym_null] = ACTIONS(2389), + [sym_identifier] = ACTIONS(2389), [sym_comment] = ACTIONS(39), }, [684] = { - [anon_sym_COLON] = ACTIONS(2402), + [anon_sym_COLON] = ACTIONS(2391), [sym_comment] = ACTIONS(39), }, [685] = { [sym_parenthesized_expression] = STATE(929), - [anon_sym_LPAREN2] = ACTIONS(994), + [anon_sym_LPAREN2] = ACTIONS(985), [sym_comment] = ACTIONS(39), }, [686] = { - [anon_sym_LPAREN2] = ACTIONS(2404), + [anon_sym_LPAREN2] = ACTIONS(2393), [sym_comment] = ACTIONS(39), }, [687] = { - [anon_sym_COMMA] = ACTIONS(1066), - [anon_sym_SEMI] = ACTIONS(1066), - [anon_sym_LPAREN2] = ACTIONS(1066), - [anon_sym_STAR] = ACTIONS(1078), - [anon_sym_LBRACK] = ACTIONS(1066), - [anon_sym_EQ] = ACTIONS(1078), - [anon_sym_COLON] = ACTIONS(2406), - [anon_sym_QMARK] = ACTIONS(1066), - [anon_sym_STAR_EQ] = ACTIONS(1066), - [anon_sym_SLASH_EQ] = ACTIONS(1066), - [anon_sym_PERCENT_EQ] = ACTIONS(1066), - [anon_sym_PLUS_EQ] = ACTIONS(1066), - [anon_sym_DASH_EQ] = ACTIONS(1066), - [anon_sym_LT_LT_EQ] = ACTIONS(1066), - [anon_sym_GT_GT_EQ] = ACTIONS(1066), - [anon_sym_AMP_EQ] = ACTIONS(1066), - [anon_sym_CARET_EQ] = ACTIONS(1066), - [anon_sym_PIPE_EQ] = ACTIONS(1066), - [anon_sym_AMP] = ACTIONS(1078), - [anon_sym_PIPE_PIPE] = ACTIONS(1066), - [anon_sym_AMP_AMP] = ACTIONS(1066), - [anon_sym_PIPE] = ACTIONS(1078), - [anon_sym_CARET] = ACTIONS(1078), - [anon_sym_EQ_EQ] = ACTIONS(1066), - [anon_sym_BANG_EQ] = ACTIONS(1066), - [anon_sym_LT] = ACTIONS(1078), - [anon_sym_GT] = ACTIONS(1078), - [anon_sym_LT_EQ] = ACTIONS(1066), - [anon_sym_GT_EQ] = ACTIONS(1066), - [anon_sym_LT_LT] = ACTIONS(1078), - [anon_sym_GT_GT] = ACTIONS(1078), - [anon_sym_PLUS] = ACTIONS(1078), - [anon_sym_DASH] = ACTIONS(1078), - [anon_sym_SLASH] = ACTIONS(1078), - [anon_sym_PERCENT] = ACTIONS(1078), - [anon_sym_DASH_DASH] = ACTIONS(1066), - [anon_sym_PLUS_PLUS] = ACTIONS(1066), - [anon_sym_DOT] = ACTIONS(1066), - [anon_sym_DASH_GT] = ACTIONS(1066), + [anon_sym_COMMA] = ACTIONS(1059), + [anon_sym_SEMI] = ACTIONS(1059), + [anon_sym_LPAREN2] = ACTIONS(1059), + [anon_sym_STAR] = ACTIONS(1071), + [anon_sym_LBRACK] = ACTIONS(1059), + [anon_sym_EQ] = ACTIONS(1071), + [anon_sym_COLON] = ACTIONS(2395), + [anon_sym_QMARK] = ACTIONS(1059), + [anon_sym_STAR_EQ] = ACTIONS(1059), + [anon_sym_SLASH_EQ] = ACTIONS(1059), + [anon_sym_PERCENT_EQ] = ACTIONS(1059), + [anon_sym_PLUS_EQ] = ACTIONS(1059), + [anon_sym_DASH_EQ] = ACTIONS(1059), + [anon_sym_LT_LT_EQ] = ACTIONS(1059), + [anon_sym_GT_GT_EQ] = ACTIONS(1059), + [anon_sym_AMP_EQ] = ACTIONS(1059), + [anon_sym_CARET_EQ] = ACTIONS(1059), + [anon_sym_PIPE_EQ] = ACTIONS(1059), + [anon_sym_AMP] = ACTIONS(1071), + [anon_sym_PIPE_PIPE] = ACTIONS(1059), + [anon_sym_AMP_AMP] = ACTIONS(1059), + [anon_sym_PIPE] = ACTIONS(1071), + [anon_sym_CARET] = ACTIONS(1071), + [anon_sym_EQ_EQ] = ACTIONS(1059), + [anon_sym_BANG_EQ] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(1071), + [anon_sym_GT] = ACTIONS(1071), + [anon_sym_LT_EQ] = ACTIONS(1059), + [anon_sym_GT_EQ] = ACTIONS(1059), + [anon_sym_LT_LT] = ACTIONS(1071), + [anon_sym_GT_GT] = ACTIONS(1071), + [anon_sym_PLUS] = ACTIONS(1071), + [anon_sym_DASH] = ACTIONS(1071), + [anon_sym_SLASH] = ACTIONS(1071), + [anon_sym_PERCENT] = ACTIONS(1071), + [anon_sym_DASH_DASH] = ACTIONS(1059), + [anon_sym_PLUS_PLUS] = ACTIONS(1059), + [anon_sym_DOT] = ACTIONS(1059), + [anon_sym_DASH_GT] = ACTIONS(1059), [sym_comment] = ACTIONS(39), }, [688] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2408), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2408), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2408), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2408), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2408), - [sym_preproc_directive] = ACTIONS(2408), - [anon_sym_SEMI] = ACTIONS(2410), - [anon_sym_typedef] = ACTIONS(2408), - [anon_sym_extern] = ACTIONS(2408), - [anon_sym_LBRACE] = ACTIONS(2410), - [anon_sym_RBRACE] = ACTIONS(2410), - [anon_sym_LPAREN2] = ACTIONS(2410), - [anon_sym_STAR] = ACTIONS(2410), - [anon_sym_static] = ACTIONS(2408), - [anon_sym_auto] = ACTIONS(2408), - [anon_sym_register] = ACTIONS(2408), - [anon_sym_inline] = ACTIONS(2408), - [anon_sym_const] = ACTIONS(2408), - [anon_sym_restrict] = ACTIONS(2408), - [anon_sym_volatile] = ACTIONS(2408), - [anon_sym__Atomic] = ACTIONS(2408), - [anon_sym_unsigned] = ACTIONS(2408), - [anon_sym_long] = ACTIONS(2408), - [anon_sym_short] = ACTIONS(2408), - [sym_primitive_type] = ACTIONS(2408), - [anon_sym_enum] = ACTIONS(2408), - [anon_sym_struct] = ACTIONS(2408), - [anon_sym_union] = ACTIONS(2408), - [anon_sym_if] = ACTIONS(2408), - [anon_sym_else] = ACTIONS(2412), - [anon_sym_switch] = ACTIONS(2408), - [anon_sym_case] = ACTIONS(2408), - [anon_sym_default] = ACTIONS(2408), - [anon_sym_while] = ACTIONS(2408), - [anon_sym_do] = ACTIONS(2408), - [anon_sym_for] = ACTIONS(2408), - [anon_sym_return] = ACTIONS(2408), - [anon_sym_break] = ACTIONS(2408), - [anon_sym_continue] = ACTIONS(2408), - [anon_sym_goto] = ACTIONS(2408), - [anon_sym_AMP] = ACTIONS(2410), - [anon_sym_BANG] = ACTIONS(2410), - [anon_sym_TILDE] = ACTIONS(2410), - [anon_sym_PLUS] = ACTIONS(2408), - [anon_sym_DASH] = ACTIONS(2408), - [anon_sym_DASH_DASH] = ACTIONS(2410), - [anon_sym_PLUS_PLUS] = ACTIONS(2410), - [anon_sym_sizeof] = ACTIONS(2408), - [sym_number_literal] = ACTIONS(2410), - [anon_sym_SQUOTE] = ACTIONS(2410), - [anon_sym_DQUOTE] = ACTIONS(2410), - [sym_true] = ACTIONS(2408), - [sym_false] = ACTIONS(2408), - [sym_null] = ACTIONS(2408), - [sym_identifier] = ACTIONS(2408), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2397), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2397), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2397), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2397), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2397), + [sym_preproc_directive] = ACTIONS(2397), + [anon_sym_SEMI] = ACTIONS(2399), + [anon_sym_typedef] = ACTIONS(2397), + [anon_sym_extern] = ACTIONS(2397), + [anon_sym_LBRACE] = ACTIONS(2399), + [anon_sym_RBRACE] = ACTIONS(2399), + [anon_sym_LPAREN2] = ACTIONS(2399), + [anon_sym_STAR] = ACTIONS(2399), + [anon_sym_static] = ACTIONS(2397), + [anon_sym_auto] = ACTIONS(2397), + [anon_sym_register] = ACTIONS(2397), + [anon_sym_inline] = ACTIONS(2397), + [anon_sym_const] = ACTIONS(2397), + [anon_sym_restrict] = ACTIONS(2397), + [anon_sym_volatile] = ACTIONS(2397), + [anon_sym__Atomic] = ACTIONS(2397), + [anon_sym_unsigned] = ACTIONS(2397), + [anon_sym_long] = ACTIONS(2397), + [anon_sym_short] = ACTIONS(2397), + [sym_primitive_type] = ACTIONS(2397), + [anon_sym_enum] = ACTIONS(2397), + [anon_sym_struct] = ACTIONS(2397), + [anon_sym_union] = ACTIONS(2397), + [anon_sym_if] = ACTIONS(2397), + [anon_sym_else] = ACTIONS(2401), + [anon_sym_switch] = ACTIONS(2397), + [anon_sym_case] = ACTIONS(2397), + [anon_sym_default] = ACTIONS(2397), + [anon_sym_while] = ACTIONS(2397), + [anon_sym_do] = ACTIONS(2397), + [anon_sym_for] = ACTIONS(2397), + [anon_sym_return] = ACTIONS(2397), + [anon_sym_break] = ACTIONS(2397), + [anon_sym_continue] = ACTIONS(2397), + [anon_sym_goto] = ACTIONS(2397), + [anon_sym_AMP] = ACTIONS(2399), + [anon_sym_BANG] = ACTIONS(2399), + [anon_sym_TILDE] = ACTIONS(2399), + [anon_sym_PLUS] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2397), + [anon_sym_DASH_DASH] = ACTIONS(2399), + [anon_sym_PLUS_PLUS] = ACTIONS(2399), + [anon_sym_sizeof] = ACTIONS(2397), + [sym_number_literal] = ACTIONS(2399), + [anon_sym_SQUOTE] = ACTIONS(2399), + [anon_sym_DQUOTE] = ACTIONS(2399), + [sym_true] = ACTIONS(2397), + [sym_false] = ACTIONS(2397), + [sym_null] = ACTIONS(2397), + [sym_identifier] = ACTIONS(2397), [sym_comment] = ACTIONS(39), }, [689] = { - [anon_sym_COMMA] = ACTIONS(1066), - [anon_sym_SEMI] = ACTIONS(1066), - [anon_sym_LPAREN2] = ACTIONS(1066), - [anon_sym_STAR] = ACTIONS(1078), - [anon_sym_LBRACK] = ACTIONS(1066), - [anon_sym_EQ] = ACTIONS(1078), - [anon_sym_COLON] = ACTIONS(1080), - [anon_sym_QMARK] = ACTIONS(1066), - [anon_sym_STAR_EQ] = ACTIONS(1066), - [anon_sym_SLASH_EQ] = ACTIONS(1066), - [anon_sym_PERCENT_EQ] = ACTIONS(1066), - [anon_sym_PLUS_EQ] = ACTIONS(1066), - [anon_sym_DASH_EQ] = ACTIONS(1066), - [anon_sym_LT_LT_EQ] = ACTIONS(1066), - [anon_sym_GT_GT_EQ] = ACTIONS(1066), - [anon_sym_AMP_EQ] = ACTIONS(1066), - [anon_sym_CARET_EQ] = ACTIONS(1066), - [anon_sym_PIPE_EQ] = ACTIONS(1066), - [anon_sym_AMP] = ACTIONS(1078), - [anon_sym_PIPE_PIPE] = ACTIONS(1066), - [anon_sym_AMP_AMP] = ACTIONS(1066), - [anon_sym_PIPE] = ACTIONS(1078), - [anon_sym_CARET] = ACTIONS(1078), - [anon_sym_EQ_EQ] = ACTIONS(1066), - [anon_sym_BANG_EQ] = ACTIONS(1066), - [anon_sym_LT] = ACTIONS(1078), - [anon_sym_GT] = ACTIONS(1078), - [anon_sym_LT_EQ] = ACTIONS(1066), - [anon_sym_GT_EQ] = ACTIONS(1066), - [anon_sym_LT_LT] = ACTIONS(1078), - [anon_sym_GT_GT] = ACTIONS(1078), - [anon_sym_PLUS] = ACTIONS(1078), - [anon_sym_DASH] = ACTIONS(1078), - [anon_sym_SLASH] = ACTIONS(1078), - [anon_sym_PERCENT] = ACTIONS(1078), - [anon_sym_DASH_DASH] = ACTIONS(1066), - [anon_sym_PLUS_PLUS] = ACTIONS(1066), - [anon_sym_DOT] = ACTIONS(1066), - [anon_sym_DASH_GT] = ACTIONS(1066), + [anon_sym_COMMA] = ACTIONS(1059), + [anon_sym_SEMI] = ACTIONS(1059), + [anon_sym_LPAREN2] = ACTIONS(1059), + [anon_sym_STAR] = ACTIONS(1071), + [anon_sym_LBRACK] = ACTIONS(1059), + [anon_sym_EQ] = ACTIONS(1071), + [anon_sym_COLON] = ACTIONS(1073), + [anon_sym_QMARK] = ACTIONS(1059), + [anon_sym_STAR_EQ] = ACTIONS(1059), + [anon_sym_SLASH_EQ] = ACTIONS(1059), + [anon_sym_PERCENT_EQ] = ACTIONS(1059), + [anon_sym_PLUS_EQ] = ACTIONS(1059), + [anon_sym_DASH_EQ] = ACTIONS(1059), + [anon_sym_LT_LT_EQ] = ACTIONS(1059), + [anon_sym_GT_GT_EQ] = ACTIONS(1059), + [anon_sym_AMP_EQ] = ACTIONS(1059), + [anon_sym_CARET_EQ] = ACTIONS(1059), + [anon_sym_PIPE_EQ] = ACTIONS(1059), + [anon_sym_AMP] = ACTIONS(1071), + [anon_sym_PIPE_PIPE] = ACTIONS(1059), + [anon_sym_AMP_AMP] = ACTIONS(1059), + [anon_sym_PIPE] = ACTIONS(1071), + [anon_sym_CARET] = ACTIONS(1071), + [anon_sym_EQ_EQ] = ACTIONS(1059), + [anon_sym_BANG_EQ] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(1071), + [anon_sym_GT] = ACTIONS(1071), + [anon_sym_LT_EQ] = ACTIONS(1059), + [anon_sym_GT_EQ] = ACTIONS(1059), + [anon_sym_LT_LT] = ACTIONS(1071), + [anon_sym_GT_GT] = ACTIONS(1071), + [anon_sym_PLUS] = ACTIONS(1071), + [anon_sym_DASH] = ACTIONS(1071), + [anon_sym_SLASH] = ACTIONS(1071), + [anon_sym_PERCENT] = ACTIONS(1071), + [anon_sym_DASH_DASH] = ACTIONS(1059), + [anon_sym_PLUS_PLUS] = ACTIONS(1059), + [anon_sym_DOT] = ACTIONS(1059), + [anon_sym_DASH_GT] = ACTIONS(1059), [sym_comment] = ACTIONS(39), }, [690] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2414), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2414), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2414), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2414), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2414), - [sym_preproc_directive] = ACTIONS(2414), - [anon_sym_SEMI] = ACTIONS(2416), - [anon_sym_typedef] = ACTIONS(2414), - [anon_sym_extern] = ACTIONS(2414), - [anon_sym_LBRACE] = ACTIONS(2416), - [anon_sym_RBRACE] = ACTIONS(2416), - [anon_sym_LPAREN2] = ACTIONS(2416), - [anon_sym_STAR] = ACTIONS(2416), - [anon_sym_static] = ACTIONS(2414), - [anon_sym_auto] = ACTIONS(2414), - [anon_sym_register] = ACTIONS(2414), - [anon_sym_inline] = ACTIONS(2414), - [anon_sym_const] = ACTIONS(2414), - [anon_sym_restrict] = ACTIONS(2414), - [anon_sym_volatile] = ACTIONS(2414), - [anon_sym__Atomic] = ACTIONS(2414), - [anon_sym_unsigned] = ACTIONS(2414), - [anon_sym_long] = ACTIONS(2414), - [anon_sym_short] = ACTIONS(2414), - [sym_primitive_type] = ACTIONS(2414), - [anon_sym_enum] = ACTIONS(2414), - [anon_sym_struct] = ACTIONS(2414), - [anon_sym_union] = ACTIONS(2414), - [anon_sym_if] = ACTIONS(2414), - [anon_sym_else] = ACTIONS(2414), - [anon_sym_switch] = ACTIONS(2414), - [anon_sym_case] = ACTIONS(2414), - [anon_sym_default] = ACTIONS(2414), - [anon_sym_while] = ACTIONS(2414), - [anon_sym_do] = ACTIONS(2414), - [anon_sym_for] = ACTIONS(2414), - [anon_sym_return] = ACTIONS(2414), - [anon_sym_break] = ACTIONS(2414), - [anon_sym_continue] = ACTIONS(2414), - [anon_sym_goto] = ACTIONS(2414), - [anon_sym_AMP] = ACTIONS(2416), - [anon_sym_BANG] = ACTIONS(2416), - [anon_sym_TILDE] = ACTIONS(2416), - [anon_sym_PLUS] = ACTIONS(2414), - [anon_sym_DASH] = ACTIONS(2414), - [anon_sym_DASH_DASH] = ACTIONS(2416), - [anon_sym_PLUS_PLUS] = ACTIONS(2416), - [anon_sym_sizeof] = ACTIONS(2414), - [sym_number_literal] = ACTIONS(2416), - [anon_sym_SQUOTE] = ACTIONS(2416), - [anon_sym_DQUOTE] = ACTIONS(2416), - [sym_true] = ACTIONS(2414), - [sym_false] = ACTIONS(2414), - [sym_null] = ACTIONS(2414), - [sym_identifier] = ACTIONS(2414), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2403), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2403), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2403), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2403), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2403), + [sym_preproc_directive] = ACTIONS(2403), + [anon_sym_SEMI] = ACTIONS(2405), + [anon_sym_typedef] = ACTIONS(2403), + [anon_sym_extern] = ACTIONS(2403), + [anon_sym_LBRACE] = ACTIONS(2405), + [anon_sym_RBRACE] = ACTIONS(2405), + [anon_sym_LPAREN2] = ACTIONS(2405), + [anon_sym_STAR] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2403), + [anon_sym_auto] = ACTIONS(2403), + [anon_sym_register] = ACTIONS(2403), + [anon_sym_inline] = ACTIONS(2403), + [anon_sym_const] = ACTIONS(2403), + [anon_sym_restrict] = ACTIONS(2403), + [anon_sym_volatile] = ACTIONS(2403), + [anon_sym__Atomic] = ACTIONS(2403), + [anon_sym_unsigned] = ACTIONS(2403), + [anon_sym_long] = ACTIONS(2403), + [anon_sym_short] = ACTIONS(2403), + [sym_primitive_type] = ACTIONS(2403), + [anon_sym_enum] = ACTIONS(2403), + [anon_sym_struct] = ACTIONS(2403), + [anon_sym_union] = ACTIONS(2403), + [anon_sym_if] = ACTIONS(2403), + [anon_sym_else] = ACTIONS(2403), + [anon_sym_switch] = ACTIONS(2403), + [anon_sym_case] = ACTIONS(2403), + [anon_sym_default] = ACTIONS(2403), + [anon_sym_while] = ACTIONS(2403), + [anon_sym_do] = ACTIONS(2403), + [anon_sym_for] = ACTIONS(2403), + [anon_sym_return] = ACTIONS(2403), + [anon_sym_break] = ACTIONS(2403), + [anon_sym_continue] = ACTIONS(2403), + [anon_sym_goto] = ACTIONS(2403), + [anon_sym_AMP] = ACTIONS(2405), + [anon_sym_BANG] = ACTIONS(2405), + [anon_sym_TILDE] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2403), + [anon_sym_DASH] = ACTIONS(2403), + [anon_sym_DASH_DASH] = ACTIONS(2405), + [anon_sym_PLUS_PLUS] = ACTIONS(2405), + [anon_sym_sizeof] = ACTIONS(2403), + [sym_number_literal] = ACTIONS(2405), + [anon_sym_SQUOTE] = ACTIONS(2405), + [anon_sym_DQUOTE] = ACTIONS(2405), + [sym_true] = ACTIONS(2403), + [sym_false] = ACTIONS(2403), + [sym_null] = ACTIONS(2403), + [sym_identifier] = ACTIONS(2403), [sym_comment] = ACTIONS(39), }, [691] = { - [anon_sym_RPAREN] = ACTIONS(2418), + [anon_sym_RPAREN] = ACTIONS(2407), [sym_comment] = ACTIONS(39), }, [692] = { @@ -26560,75 +26579,75 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_macro_type_specifier] = STATE(116), [aux_sym_type_definition_repeat1] = STATE(118), [aux_sym_sized_type_specifier_repeat1] = STATE(119), - [anon_sym_LPAREN2] = ACTIONS(970), - [anon_sym_STAR] = ACTIONS(972), + [anon_sym_LPAREN2] = ACTIONS(961), + [anon_sym_STAR] = ACTIONS(963), [anon_sym_const] = ACTIONS(25), [anon_sym_restrict] = ACTIONS(25), [anon_sym_volatile] = ACTIONS(25), [anon_sym__Atomic] = ACTIONS(25), - [anon_sym_unsigned] = ACTIONS(223), - [anon_sym_long] = ACTIONS(223), - [anon_sym_short] = ACTIONS(223), - [sym_primitive_type] = ACTIONS(225), + [anon_sym_unsigned] = ACTIONS(221), + [anon_sym_long] = ACTIONS(221), + [anon_sym_short] = ACTIONS(221), + [sym_primitive_type] = ACTIONS(223), [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), - [anon_sym_AMP] = ACTIONS(972), - [anon_sym_BANG] = ACTIONS(974), - [anon_sym_TILDE] = ACTIONS(976), - [anon_sym_PLUS] = ACTIONS(978), - [anon_sym_DASH] = ACTIONS(978), - [anon_sym_DASH_DASH] = ACTIONS(980), - [anon_sym_PLUS_PLUS] = ACTIONS(980), - [anon_sym_sizeof] = ACTIONS(982), - [sym_number_literal] = ACTIONS(984), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(986), - [sym_false] = ACTIONS(986), - [sym_null] = ACTIONS(986), - [sym_identifier] = ACTIONS(988), + [anon_sym_AMP] = ACTIONS(963), + [anon_sym_BANG] = ACTIONS(965), + [anon_sym_TILDE] = ACTIONS(967), + [anon_sym_PLUS] = ACTIONS(969), + [anon_sym_DASH] = ACTIONS(969), + [anon_sym_DASH_DASH] = ACTIONS(971), + [anon_sym_PLUS_PLUS] = ACTIONS(971), + [anon_sym_sizeof] = ACTIONS(973), + [sym_number_literal] = ACTIONS(975), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(977), + [sym_false] = ACTIONS(977), + [sym_null] = ACTIONS(977), + [sym_identifier] = ACTIONS(979), [sym_comment] = ACTIONS(39), }, [693] = { [sym_argument_list] = STATE(465), - [anon_sym_LPAREN2] = ACTIONS(1096), - [anon_sym_STAR] = ACTIONS(1620), - [anon_sym_LBRACK] = ACTIONS(1100), - [anon_sym_EQ] = ACTIONS(1702), - [anon_sym_COLON] = ACTIONS(1700), - [anon_sym_QMARK] = ACTIONS(1700), - [anon_sym_STAR_EQ] = ACTIONS(1700), - [anon_sym_SLASH_EQ] = ACTIONS(1700), - [anon_sym_PERCENT_EQ] = ACTIONS(1700), - [anon_sym_PLUS_EQ] = ACTIONS(1700), - [anon_sym_DASH_EQ] = ACTIONS(1700), - [anon_sym_LT_LT_EQ] = ACTIONS(1700), - [anon_sym_GT_GT_EQ] = ACTIONS(1700), - [anon_sym_AMP_EQ] = ACTIONS(1700), - [anon_sym_CARET_EQ] = ACTIONS(1700), - [anon_sym_PIPE_EQ] = ACTIONS(1700), - [anon_sym_AMP] = ACTIONS(1702), - [anon_sym_PIPE_PIPE] = ACTIONS(1700), - [anon_sym_AMP_AMP] = ACTIONS(1700), - [anon_sym_PIPE] = ACTIONS(1702), - [anon_sym_CARET] = ACTIONS(1702), - [anon_sym_EQ_EQ] = ACTIONS(1700), - [anon_sym_BANG_EQ] = ACTIONS(1700), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(1702), - [anon_sym_LT_EQ] = ACTIONS(1700), - [anon_sym_GT_EQ] = ACTIONS(1700), - [anon_sym_LT_LT] = ACTIONS(1646), - [anon_sym_GT_GT] = ACTIONS(1646), - [anon_sym_PLUS] = ACTIONS(1648), - [anon_sym_DASH] = ACTIONS(1648), - [anon_sym_SLASH] = ACTIONS(1620), - [anon_sym_PERCENT] = ACTIONS(1620), - [anon_sym_DASH_DASH] = ACTIONS(1128), - [anon_sym_PLUS_PLUS] = ACTIONS(1128), - [anon_sym_DOT] = ACTIONS(1130), - [anon_sym_DASH_GT] = ACTIONS(1130), + [anon_sym_LPAREN2] = ACTIONS(1089), + [anon_sym_STAR] = ACTIONS(1609), + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(1691), + [anon_sym_COLON] = ACTIONS(1689), + [anon_sym_QMARK] = ACTIONS(1689), + [anon_sym_STAR_EQ] = ACTIONS(1689), + [anon_sym_SLASH_EQ] = ACTIONS(1689), + [anon_sym_PERCENT_EQ] = ACTIONS(1689), + [anon_sym_PLUS_EQ] = ACTIONS(1689), + [anon_sym_DASH_EQ] = ACTIONS(1689), + [anon_sym_LT_LT_EQ] = ACTIONS(1689), + [anon_sym_GT_GT_EQ] = ACTIONS(1689), + [anon_sym_AMP_EQ] = ACTIONS(1689), + [anon_sym_CARET_EQ] = ACTIONS(1689), + [anon_sym_PIPE_EQ] = ACTIONS(1689), + [anon_sym_AMP] = ACTIONS(1691), + [anon_sym_PIPE_PIPE] = ACTIONS(1689), + [anon_sym_AMP_AMP] = ACTIONS(1689), + [anon_sym_PIPE] = ACTIONS(1691), + [anon_sym_CARET] = ACTIONS(1691), + [anon_sym_EQ_EQ] = ACTIONS(1689), + [anon_sym_BANG_EQ] = ACTIONS(1689), + [anon_sym_LT] = ACTIONS(1691), + [anon_sym_GT] = ACTIONS(1691), + [anon_sym_LT_EQ] = ACTIONS(1689), + [anon_sym_GT_EQ] = ACTIONS(1689), + [anon_sym_LT_LT] = ACTIONS(1635), + [anon_sym_GT_GT] = ACTIONS(1635), + [anon_sym_PLUS] = ACTIONS(1637), + [anon_sym_DASH] = ACTIONS(1637), + [anon_sym_SLASH] = ACTIONS(1609), + [anon_sym_PERCENT] = ACTIONS(1609), + [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_PLUS_PLUS] = ACTIONS(1121), + [anon_sym_DOT] = ACTIONS(1123), + [anon_sym_DASH_GT] = ACTIONS(1123), [sym_comment] = ACTIONS(39), }, [694] = { @@ -26652,23 +26671,23 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(733), [sym_concatenated_string] = STATE(733), [sym_string_literal] = STATE(421), - [anon_sym_LPAREN2] = ACTIONS(996), - [anon_sym_STAR] = ACTIONS(998), - [anon_sym_AMP] = ACTIONS(998), - [anon_sym_BANG] = ACTIONS(1000), - [anon_sym_TILDE] = ACTIONS(1002), - [anon_sym_PLUS] = ACTIONS(1004), - [anon_sym_DASH] = ACTIONS(1004), - [anon_sym_DASH_DASH] = ACTIONS(1006), - [anon_sym_PLUS_PLUS] = ACTIONS(1006), - [anon_sym_sizeof] = ACTIONS(1008), - [sym_number_literal] = ACTIONS(1720), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1722), - [sym_false] = ACTIONS(1722), - [sym_null] = ACTIONS(1722), - [sym_identifier] = ACTIONS(1722), + [anon_sym_LPAREN2] = ACTIONS(987), + [anon_sym_STAR] = ACTIONS(989), + [anon_sym_AMP] = ACTIONS(989), + [anon_sym_BANG] = ACTIONS(991), + [anon_sym_TILDE] = ACTIONS(993), + [anon_sym_PLUS] = ACTIONS(995), + [anon_sym_DASH] = ACTIONS(995), + [anon_sym_DASH_DASH] = ACTIONS(997), + [anon_sym_PLUS_PLUS] = ACTIONS(997), + [anon_sym_sizeof] = ACTIONS(999), + [sym_number_literal] = ACTIONS(1709), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(1711), + [sym_false] = ACTIONS(1711), + [sym_null] = ACTIONS(1711), + [sym_identifier] = ACTIONS(1711), [sym_comment] = ACTIONS(39), }, [695] = { @@ -26692,23 +26711,23 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(935), [sym_concatenated_string] = STATE(935), [sym_string_literal] = STATE(421), - [anon_sym_LPAREN2] = ACTIONS(996), - [anon_sym_STAR] = ACTIONS(998), - [anon_sym_AMP] = ACTIONS(998), - [anon_sym_BANG] = ACTIONS(1000), - [anon_sym_TILDE] = ACTIONS(1002), - [anon_sym_PLUS] = ACTIONS(1004), - [anon_sym_DASH] = ACTIONS(1004), - [anon_sym_DASH_DASH] = ACTIONS(1006), - [anon_sym_PLUS_PLUS] = ACTIONS(1006), - [anon_sym_sizeof] = ACTIONS(1008), - [sym_number_literal] = ACTIONS(2420), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2422), - [sym_false] = ACTIONS(2422), - [sym_null] = ACTIONS(2422), - [sym_identifier] = ACTIONS(2422), + [anon_sym_LPAREN2] = ACTIONS(987), + [anon_sym_STAR] = ACTIONS(989), + [anon_sym_AMP] = ACTIONS(989), + [anon_sym_BANG] = ACTIONS(991), + [anon_sym_TILDE] = ACTIONS(993), + [anon_sym_PLUS] = ACTIONS(995), + [anon_sym_DASH] = ACTIONS(995), + [anon_sym_DASH_DASH] = ACTIONS(997), + [anon_sym_PLUS_PLUS] = ACTIONS(997), + [anon_sym_sizeof] = ACTIONS(999), + [sym_number_literal] = ACTIONS(2409), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(2411), + [sym_false] = ACTIONS(2411), + [sym_null] = ACTIONS(2411), + [sym_identifier] = ACTIONS(2411), [sym_comment] = ACTIONS(39), }, [696] = { @@ -26759,12 +26778,12 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_macro_type_specifier] = STATE(95), [aux_sym__declaration_specifiers_repeat1] = STATE(96), [aux_sym_sized_type_specifier_repeat1] = STATE(97), - [anon_sym_SEMI] = ACTIONS(550), + [anon_sym_SEMI] = ACTIONS(546), [anon_sym_typedef] = ACTIONS(19), [anon_sym_extern] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(241), - [anon_sym_LPAREN2] = ACTIONS(554), - [anon_sym_STAR] = ACTIONS(556), + [anon_sym_LBRACE] = ACTIONS(239), + [anon_sym_LPAREN2] = ACTIONS(550), + [anon_sym_STAR] = ACTIONS(552), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -26773,39 +26792,39 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_restrict] = ACTIONS(25), [anon_sym_volatile] = ACTIONS(25), [anon_sym__Atomic] = ACTIONS(25), - [anon_sym_unsigned] = ACTIONS(177), - [anon_sym_long] = ACTIONS(177), - [anon_sym_short] = ACTIONS(177), - [sym_primitive_type] = ACTIONS(179), + [anon_sym_unsigned] = ACTIONS(175), + [anon_sym_long] = ACTIONS(175), + [anon_sym_short] = ACTIONS(175), + [sym_primitive_type] = ACTIONS(177), [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), - [anon_sym_if] = ACTIONS(558), - [anon_sym_switch] = ACTIONS(560), - [anon_sym_case] = ACTIONS(562), - [anon_sym_default] = ACTIONS(564), - [anon_sym_while] = ACTIONS(566), - [anon_sym_do] = ACTIONS(568), - [anon_sym_for] = ACTIONS(570), - [anon_sym_return] = ACTIONS(572), - [anon_sym_break] = ACTIONS(574), - [anon_sym_continue] = ACTIONS(576), - [anon_sym_goto] = ACTIONS(578), - [anon_sym_AMP] = ACTIONS(556), - [anon_sym_BANG] = ACTIONS(580), - [anon_sym_TILDE] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_DASH_DASH] = ACTIONS(586), - [anon_sym_PLUS_PLUS] = ACTIONS(586), - [anon_sym_sizeof] = ACTIONS(588), - [sym_number_literal] = ACTIONS(590), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(594), - [sym_false] = ACTIONS(594), - [sym_null] = ACTIONS(594), - [sym_identifier] = ACTIONS(1650), + [anon_sym_if] = ACTIONS(554), + [anon_sym_switch] = ACTIONS(556), + [anon_sym_case] = ACTIONS(558), + [anon_sym_default] = ACTIONS(560), + [anon_sym_while] = ACTIONS(562), + [anon_sym_do] = ACTIONS(564), + [anon_sym_for] = ACTIONS(566), + [anon_sym_return] = ACTIONS(568), + [anon_sym_break] = ACTIONS(570), + [anon_sym_continue] = ACTIONS(572), + [anon_sym_goto] = ACTIONS(574), + [anon_sym_AMP] = ACTIONS(552), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_TILDE] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(580), + [anon_sym_DASH] = ACTIONS(580), + [anon_sym_DASH_DASH] = ACTIONS(582), + [anon_sym_PLUS_PLUS] = ACTIONS(582), + [anon_sym_sizeof] = ACTIONS(584), + [sym_number_literal] = ACTIONS(586), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(590), + [sym_false] = ACTIONS(590), + [sym_null] = ACTIONS(590), + [sym_identifier] = ACTIONS(1639), [sym_comment] = ACTIONS(39), }, [697] = { @@ -26829,23 +26848,23 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(937), [sym_concatenated_string] = STATE(937), [sym_string_literal] = STATE(421), - [anon_sym_LPAREN2] = ACTIONS(996), - [anon_sym_STAR] = ACTIONS(998), - [anon_sym_AMP] = ACTIONS(998), - [anon_sym_BANG] = ACTIONS(1000), - [anon_sym_TILDE] = ACTIONS(1002), - [anon_sym_PLUS] = ACTIONS(1004), - [anon_sym_DASH] = ACTIONS(1004), - [anon_sym_DASH_DASH] = ACTIONS(1006), - [anon_sym_PLUS_PLUS] = ACTIONS(1006), - [anon_sym_sizeof] = ACTIONS(1008), - [sym_number_literal] = ACTIONS(2424), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2426), - [sym_false] = ACTIONS(2426), - [sym_null] = ACTIONS(2426), - [sym_identifier] = ACTIONS(2426), + [anon_sym_LPAREN2] = ACTIONS(987), + [anon_sym_STAR] = ACTIONS(989), + [anon_sym_AMP] = ACTIONS(989), + [anon_sym_BANG] = ACTIONS(991), + [anon_sym_TILDE] = ACTIONS(993), + [anon_sym_PLUS] = ACTIONS(995), + [anon_sym_DASH] = ACTIONS(995), + [anon_sym_DASH_DASH] = ACTIONS(997), + [anon_sym_PLUS_PLUS] = ACTIONS(997), + [anon_sym_sizeof] = ACTIONS(999), + [sym_number_literal] = ACTIONS(2413), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(2415), + [sym_false] = ACTIONS(2415), + [sym_null] = ACTIONS(2415), + [sym_identifier] = ACTIONS(2415), [sym_comment] = ACTIONS(39), }, [698] = { @@ -26869,23 +26888,23 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(938), [sym_concatenated_string] = STATE(938), [sym_string_literal] = STATE(421), - [anon_sym_LPAREN2] = ACTIONS(996), - [anon_sym_STAR] = ACTIONS(998), - [anon_sym_AMP] = ACTIONS(998), - [anon_sym_BANG] = ACTIONS(1000), - [anon_sym_TILDE] = ACTIONS(1002), - [anon_sym_PLUS] = ACTIONS(1004), - [anon_sym_DASH] = ACTIONS(1004), - [anon_sym_DASH_DASH] = ACTIONS(1006), - [anon_sym_PLUS_PLUS] = ACTIONS(1006), - [anon_sym_sizeof] = ACTIONS(1008), - [sym_number_literal] = ACTIONS(2428), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2430), - [sym_false] = ACTIONS(2430), - [sym_null] = ACTIONS(2430), - [sym_identifier] = ACTIONS(2430), + [anon_sym_LPAREN2] = ACTIONS(987), + [anon_sym_STAR] = ACTIONS(989), + [anon_sym_AMP] = ACTIONS(989), + [anon_sym_BANG] = ACTIONS(991), + [anon_sym_TILDE] = ACTIONS(993), + [anon_sym_PLUS] = ACTIONS(995), + [anon_sym_DASH] = ACTIONS(995), + [anon_sym_DASH_DASH] = ACTIONS(997), + [anon_sym_PLUS_PLUS] = ACTIONS(997), + [anon_sym_sizeof] = ACTIONS(999), + [sym_number_literal] = ACTIONS(2417), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(2419), + [sym_false] = ACTIONS(2419), + [sym_null] = ACTIONS(2419), + [sym_identifier] = ACTIONS(2419), [sym_comment] = ACTIONS(39), }, [699] = { @@ -26909,23 +26928,23 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(939), [sym_concatenated_string] = STATE(939), [sym_string_literal] = STATE(421), - [anon_sym_LPAREN2] = ACTIONS(996), - [anon_sym_STAR] = ACTIONS(998), - [anon_sym_AMP] = ACTIONS(998), - [anon_sym_BANG] = ACTIONS(1000), - [anon_sym_TILDE] = ACTIONS(1002), - [anon_sym_PLUS] = ACTIONS(1004), - [anon_sym_DASH] = ACTIONS(1004), - [anon_sym_DASH_DASH] = ACTIONS(1006), - [anon_sym_PLUS_PLUS] = ACTIONS(1006), - [anon_sym_sizeof] = ACTIONS(1008), - [sym_number_literal] = ACTIONS(2432), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2434), - [sym_false] = ACTIONS(2434), - [sym_null] = ACTIONS(2434), - [sym_identifier] = ACTIONS(2434), + [anon_sym_LPAREN2] = ACTIONS(987), + [anon_sym_STAR] = ACTIONS(989), + [anon_sym_AMP] = ACTIONS(989), + [anon_sym_BANG] = ACTIONS(991), + [anon_sym_TILDE] = ACTIONS(993), + [anon_sym_PLUS] = ACTIONS(995), + [anon_sym_DASH] = ACTIONS(995), + [anon_sym_DASH_DASH] = ACTIONS(997), + [anon_sym_PLUS_PLUS] = ACTIONS(997), + [anon_sym_sizeof] = ACTIONS(999), + [sym_number_literal] = ACTIONS(2421), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(2423), + [sym_false] = ACTIONS(2423), + [sym_null] = ACTIONS(2423), + [sym_identifier] = ACTIONS(2423), [sym_comment] = ACTIONS(39), }, [700] = { @@ -26949,23 +26968,23 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(940), [sym_concatenated_string] = STATE(940), [sym_string_literal] = STATE(421), - [anon_sym_LPAREN2] = ACTIONS(996), - [anon_sym_STAR] = ACTIONS(998), - [anon_sym_AMP] = ACTIONS(998), - [anon_sym_BANG] = ACTIONS(1000), - [anon_sym_TILDE] = ACTIONS(1002), - [anon_sym_PLUS] = ACTIONS(1004), - [anon_sym_DASH] = ACTIONS(1004), - [anon_sym_DASH_DASH] = ACTIONS(1006), - [anon_sym_PLUS_PLUS] = ACTIONS(1006), - [anon_sym_sizeof] = ACTIONS(1008), - [sym_number_literal] = ACTIONS(2436), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2438), - [sym_false] = ACTIONS(2438), - [sym_null] = ACTIONS(2438), - [sym_identifier] = ACTIONS(2438), + [anon_sym_LPAREN2] = ACTIONS(987), + [anon_sym_STAR] = ACTIONS(989), + [anon_sym_AMP] = ACTIONS(989), + [anon_sym_BANG] = ACTIONS(991), + [anon_sym_TILDE] = ACTIONS(993), + [anon_sym_PLUS] = ACTIONS(995), + [anon_sym_DASH] = ACTIONS(995), + [anon_sym_DASH_DASH] = ACTIONS(997), + [anon_sym_PLUS_PLUS] = ACTIONS(997), + [anon_sym_sizeof] = ACTIONS(999), + [sym_number_literal] = ACTIONS(2425), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(2427), + [sym_false] = ACTIONS(2427), + [sym_null] = ACTIONS(2427), + [sym_identifier] = ACTIONS(2427), [sym_comment] = ACTIONS(39), }, [701] = { @@ -26989,23 +27008,23 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(941), [sym_concatenated_string] = STATE(941), [sym_string_literal] = STATE(421), - [anon_sym_LPAREN2] = ACTIONS(996), - [anon_sym_STAR] = ACTIONS(998), - [anon_sym_AMP] = ACTIONS(998), - [anon_sym_BANG] = ACTIONS(1000), - [anon_sym_TILDE] = ACTIONS(1002), - [anon_sym_PLUS] = ACTIONS(1004), - [anon_sym_DASH] = ACTIONS(1004), - [anon_sym_DASH_DASH] = ACTIONS(1006), - [anon_sym_PLUS_PLUS] = ACTIONS(1006), - [anon_sym_sizeof] = ACTIONS(1008), - [sym_number_literal] = ACTIONS(2440), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2442), - [sym_false] = ACTIONS(2442), - [sym_null] = ACTIONS(2442), - [sym_identifier] = ACTIONS(2442), + [anon_sym_LPAREN2] = ACTIONS(987), + [anon_sym_STAR] = ACTIONS(989), + [anon_sym_AMP] = ACTIONS(989), + [anon_sym_BANG] = ACTIONS(991), + [anon_sym_TILDE] = ACTIONS(993), + [anon_sym_PLUS] = ACTIONS(995), + [anon_sym_DASH] = ACTIONS(995), + [anon_sym_DASH_DASH] = ACTIONS(997), + [anon_sym_PLUS_PLUS] = ACTIONS(997), + [anon_sym_sizeof] = ACTIONS(999), + [sym_number_literal] = ACTIONS(2429), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(2431), + [sym_false] = ACTIONS(2431), + [sym_null] = ACTIONS(2431), + [sym_identifier] = ACTIONS(2431), [sym_comment] = ACTIONS(39), }, [702] = { @@ -27029,23 +27048,23 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(942), [sym_concatenated_string] = STATE(942), [sym_string_literal] = STATE(421), - [anon_sym_LPAREN2] = ACTIONS(996), - [anon_sym_STAR] = ACTIONS(998), - [anon_sym_AMP] = ACTIONS(998), - [anon_sym_BANG] = ACTIONS(1000), - [anon_sym_TILDE] = ACTIONS(1002), - [anon_sym_PLUS] = ACTIONS(1004), - [anon_sym_DASH] = ACTIONS(1004), - [anon_sym_DASH_DASH] = ACTIONS(1006), - [anon_sym_PLUS_PLUS] = ACTIONS(1006), - [anon_sym_sizeof] = ACTIONS(1008), - [sym_number_literal] = ACTIONS(2444), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2446), - [sym_false] = ACTIONS(2446), - [sym_null] = ACTIONS(2446), - [sym_identifier] = ACTIONS(2446), + [anon_sym_LPAREN2] = ACTIONS(987), + [anon_sym_STAR] = ACTIONS(989), + [anon_sym_AMP] = ACTIONS(989), + [anon_sym_BANG] = ACTIONS(991), + [anon_sym_TILDE] = ACTIONS(993), + [anon_sym_PLUS] = ACTIONS(995), + [anon_sym_DASH] = ACTIONS(995), + [anon_sym_DASH_DASH] = ACTIONS(997), + [anon_sym_PLUS_PLUS] = ACTIONS(997), + [anon_sym_sizeof] = ACTIONS(999), + [sym_number_literal] = ACTIONS(2433), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(2435), + [sym_false] = ACTIONS(2435), + [sym_null] = ACTIONS(2435), + [sym_identifier] = ACTIONS(2435), [sym_comment] = ACTIONS(39), }, [703] = { @@ -27069,23 +27088,23 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(943), [sym_concatenated_string] = STATE(943), [sym_string_literal] = STATE(421), - [anon_sym_LPAREN2] = ACTIONS(996), - [anon_sym_STAR] = ACTIONS(998), - [anon_sym_AMP] = ACTIONS(998), - [anon_sym_BANG] = ACTIONS(1000), - [anon_sym_TILDE] = ACTIONS(1002), - [anon_sym_PLUS] = ACTIONS(1004), - [anon_sym_DASH] = ACTIONS(1004), - [anon_sym_DASH_DASH] = ACTIONS(1006), - [anon_sym_PLUS_PLUS] = ACTIONS(1006), - [anon_sym_sizeof] = ACTIONS(1008), - [sym_number_literal] = ACTIONS(2448), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2450), - [sym_false] = ACTIONS(2450), - [sym_null] = ACTIONS(2450), - [sym_identifier] = ACTIONS(2450), + [anon_sym_LPAREN2] = ACTIONS(987), + [anon_sym_STAR] = ACTIONS(989), + [anon_sym_AMP] = ACTIONS(989), + [anon_sym_BANG] = ACTIONS(991), + [anon_sym_TILDE] = ACTIONS(993), + [anon_sym_PLUS] = ACTIONS(995), + [anon_sym_DASH] = ACTIONS(995), + [anon_sym_DASH_DASH] = ACTIONS(997), + [anon_sym_PLUS_PLUS] = ACTIONS(997), + [anon_sym_sizeof] = ACTIONS(999), + [sym_number_literal] = ACTIONS(2437), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(2439), + [sym_false] = ACTIONS(2439), + [sym_null] = ACTIONS(2439), + [sym_identifier] = ACTIONS(2439), [sym_comment] = ACTIONS(39), }, [704] = { @@ -27109,23 +27128,23 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(944), [sym_concatenated_string] = STATE(944), [sym_string_literal] = STATE(421), - [anon_sym_LPAREN2] = ACTIONS(996), - [anon_sym_STAR] = ACTIONS(998), - [anon_sym_AMP] = ACTIONS(998), - [anon_sym_BANG] = ACTIONS(1000), - [anon_sym_TILDE] = ACTIONS(1002), - [anon_sym_PLUS] = ACTIONS(1004), - [anon_sym_DASH] = ACTIONS(1004), - [anon_sym_DASH_DASH] = ACTIONS(1006), - [anon_sym_PLUS_PLUS] = ACTIONS(1006), - [anon_sym_sizeof] = ACTIONS(1008), - [sym_number_literal] = ACTIONS(2452), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2454), - [sym_false] = ACTIONS(2454), - [sym_null] = ACTIONS(2454), - [sym_identifier] = ACTIONS(2454), + [anon_sym_LPAREN2] = ACTIONS(987), + [anon_sym_STAR] = ACTIONS(989), + [anon_sym_AMP] = ACTIONS(989), + [anon_sym_BANG] = ACTIONS(991), + [anon_sym_TILDE] = ACTIONS(993), + [anon_sym_PLUS] = ACTIONS(995), + [anon_sym_DASH] = ACTIONS(995), + [anon_sym_DASH_DASH] = ACTIONS(997), + [anon_sym_PLUS_PLUS] = ACTIONS(997), + [anon_sym_sizeof] = ACTIONS(999), + [sym_number_literal] = ACTIONS(2441), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(2443), + [sym_false] = ACTIONS(2443), + [sym_null] = ACTIONS(2443), + [sym_identifier] = ACTIONS(2443), [sym_comment] = ACTIONS(39), }, [705] = { @@ -27149,23 +27168,23 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(945), [sym_concatenated_string] = STATE(945), [sym_string_literal] = STATE(421), - [anon_sym_LPAREN2] = ACTIONS(996), - [anon_sym_STAR] = ACTIONS(998), - [anon_sym_AMP] = ACTIONS(998), - [anon_sym_BANG] = ACTIONS(1000), - [anon_sym_TILDE] = ACTIONS(1002), - [anon_sym_PLUS] = ACTIONS(1004), - [anon_sym_DASH] = ACTIONS(1004), - [anon_sym_DASH_DASH] = ACTIONS(1006), - [anon_sym_PLUS_PLUS] = ACTIONS(1006), - [anon_sym_sizeof] = ACTIONS(1008), - [sym_number_literal] = ACTIONS(2456), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2458), - [sym_false] = ACTIONS(2458), - [sym_null] = ACTIONS(2458), - [sym_identifier] = ACTIONS(2458), + [anon_sym_LPAREN2] = ACTIONS(987), + [anon_sym_STAR] = ACTIONS(989), + [anon_sym_AMP] = ACTIONS(989), + [anon_sym_BANG] = ACTIONS(991), + [anon_sym_TILDE] = ACTIONS(993), + [anon_sym_PLUS] = ACTIONS(995), + [anon_sym_DASH] = ACTIONS(995), + [anon_sym_DASH_DASH] = ACTIONS(997), + [anon_sym_PLUS_PLUS] = ACTIONS(997), + [anon_sym_sizeof] = ACTIONS(999), + [sym_number_literal] = ACTIONS(2445), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(2447), + [sym_false] = ACTIONS(2447), + [sym_null] = ACTIONS(2447), + [sym_identifier] = ACTIONS(2447), [sym_comment] = ACTIONS(39), }, [706] = { @@ -27189,76 +27208,76 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(946), [sym_concatenated_string] = STATE(946), [sym_string_literal] = STATE(421), - [anon_sym_LPAREN2] = ACTIONS(996), - [anon_sym_STAR] = ACTIONS(998), - [anon_sym_AMP] = ACTIONS(998), - [anon_sym_BANG] = ACTIONS(1000), - [anon_sym_TILDE] = ACTIONS(1002), - [anon_sym_PLUS] = ACTIONS(1004), - [anon_sym_DASH] = ACTIONS(1004), - [anon_sym_DASH_DASH] = ACTIONS(1006), - [anon_sym_PLUS_PLUS] = ACTIONS(1006), - [anon_sym_sizeof] = ACTIONS(1008), - [sym_number_literal] = ACTIONS(2460), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2462), - [sym_false] = ACTIONS(2462), - [sym_null] = ACTIONS(2462), - [sym_identifier] = ACTIONS(2462), + [anon_sym_LPAREN2] = ACTIONS(987), + [anon_sym_STAR] = ACTIONS(989), + [anon_sym_AMP] = ACTIONS(989), + [anon_sym_BANG] = ACTIONS(991), + [anon_sym_TILDE] = ACTIONS(993), + [anon_sym_PLUS] = ACTIONS(995), + [anon_sym_DASH] = ACTIONS(995), + [anon_sym_DASH_DASH] = ACTIONS(997), + [anon_sym_PLUS_PLUS] = ACTIONS(997), + [anon_sym_sizeof] = ACTIONS(999), + [sym_number_literal] = ACTIONS(2449), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(2451), + [sym_false] = ACTIONS(2451), + [sym_null] = ACTIONS(2451), + [sym_identifier] = ACTIONS(2451), [sym_comment] = ACTIONS(39), }, [707] = { [sym_string_literal] = STATE(947), [aux_sym_concatenated_string_repeat1] = STATE(947), - [anon_sym_LPAREN2] = ACTIONS(1778), - [anon_sym_STAR] = ACTIONS(1780), - [anon_sym_LBRACK] = ACTIONS(1778), - [anon_sym_EQ] = ACTIONS(1780), - [anon_sym_COLON] = ACTIONS(1778), - [anon_sym_QMARK] = ACTIONS(1778), - [anon_sym_STAR_EQ] = ACTIONS(1778), - [anon_sym_SLASH_EQ] = ACTIONS(1778), - [anon_sym_PERCENT_EQ] = ACTIONS(1778), - [anon_sym_PLUS_EQ] = ACTIONS(1778), - [anon_sym_DASH_EQ] = ACTIONS(1778), - [anon_sym_LT_LT_EQ] = ACTIONS(1778), - [anon_sym_GT_GT_EQ] = ACTIONS(1778), - [anon_sym_AMP_EQ] = ACTIONS(1778), - [anon_sym_CARET_EQ] = ACTIONS(1778), - [anon_sym_PIPE_EQ] = ACTIONS(1778), - [anon_sym_AMP] = ACTIONS(1780), - [anon_sym_PIPE_PIPE] = ACTIONS(1778), - [anon_sym_AMP_AMP] = ACTIONS(1778), - [anon_sym_PIPE] = ACTIONS(1780), - [anon_sym_CARET] = ACTIONS(1780), - [anon_sym_EQ_EQ] = ACTIONS(1778), - [anon_sym_BANG_EQ] = ACTIONS(1778), - [anon_sym_LT] = ACTIONS(1780), - [anon_sym_GT] = ACTIONS(1780), - [anon_sym_LT_EQ] = ACTIONS(1778), - [anon_sym_GT_EQ] = ACTIONS(1778), - [anon_sym_LT_LT] = ACTIONS(1780), - [anon_sym_GT_GT] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(1780), - [anon_sym_DASH] = ACTIONS(1780), - [anon_sym_SLASH] = ACTIONS(1780), - [anon_sym_PERCENT] = ACTIONS(1780), - [anon_sym_DASH_DASH] = ACTIONS(1778), - [anon_sym_PLUS_PLUS] = ACTIONS(1778), - [anon_sym_DOT] = ACTIONS(1778), - [anon_sym_DASH_GT] = ACTIONS(1778), + [anon_sym_LPAREN2] = ACTIONS(1767), + [anon_sym_STAR] = ACTIONS(1769), + [anon_sym_LBRACK] = ACTIONS(1767), + [anon_sym_EQ] = ACTIONS(1769), + [anon_sym_COLON] = ACTIONS(1767), + [anon_sym_QMARK] = ACTIONS(1767), + [anon_sym_STAR_EQ] = ACTIONS(1767), + [anon_sym_SLASH_EQ] = ACTIONS(1767), + [anon_sym_PERCENT_EQ] = ACTIONS(1767), + [anon_sym_PLUS_EQ] = ACTIONS(1767), + [anon_sym_DASH_EQ] = ACTIONS(1767), + [anon_sym_LT_LT_EQ] = ACTIONS(1767), + [anon_sym_GT_GT_EQ] = ACTIONS(1767), + [anon_sym_AMP_EQ] = ACTIONS(1767), + [anon_sym_CARET_EQ] = ACTIONS(1767), + [anon_sym_PIPE_EQ] = ACTIONS(1767), + [anon_sym_AMP] = ACTIONS(1769), + [anon_sym_PIPE_PIPE] = ACTIONS(1767), + [anon_sym_AMP_AMP] = ACTIONS(1767), + [anon_sym_PIPE] = ACTIONS(1769), + [anon_sym_CARET] = ACTIONS(1769), + [anon_sym_EQ_EQ] = ACTIONS(1767), + [anon_sym_BANG_EQ] = ACTIONS(1767), + [anon_sym_LT] = ACTIONS(1769), + [anon_sym_GT] = ACTIONS(1769), + [anon_sym_LT_EQ] = ACTIONS(1767), + [anon_sym_GT_EQ] = ACTIONS(1767), + [anon_sym_LT_LT] = ACTIONS(1769), + [anon_sym_GT_GT] = ACTIONS(1769), + [anon_sym_PLUS] = ACTIONS(1769), + [anon_sym_DASH] = ACTIONS(1769), + [anon_sym_SLASH] = ACTIONS(1769), + [anon_sym_PERCENT] = ACTIONS(1769), + [anon_sym_DASH_DASH] = ACTIONS(1767), + [anon_sym_PLUS_PLUS] = ACTIONS(1767), + [anon_sym_DOT] = ACTIONS(1767), + [anon_sym_DASH_GT] = ACTIONS(1767), [anon_sym_DQUOTE] = ACTIONS(41), [sym_comment] = ACTIONS(39), }, [708] = { - [anon_sym_COMMA] = ACTIONS(1066), - [anon_sym_SEMI] = ACTIONS(1066), + [anon_sym_COMMA] = ACTIONS(1059), + [anon_sym_SEMI] = ACTIONS(1059), [anon_sym_extern] = ACTIONS(83), - [anon_sym_LPAREN2] = ACTIONS(1071), - [anon_sym_STAR] = ACTIONS(1075), - [anon_sym_LBRACK] = ACTIONS(1066), - [anon_sym_EQ] = ACTIONS(1078), + [anon_sym_LPAREN2] = ACTIONS(1064), + [anon_sym_STAR] = ACTIONS(1068), + [anon_sym_LBRACK] = ACTIONS(1059), + [anon_sym_EQ] = ACTIONS(1071), [anon_sym_static] = ACTIONS(83), [anon_sym_auto] = ACTIONS(83), [anon_sym_register] = ACTIONS(83), @@ -27267,98 +27286,98 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_restrict] = ACTIONS(83), [anon_sym_volatile] = ACTIONS(83), [anon_sym__Atomic] = ACTIONS(83), - [anon_sym_COLON] = ACTIONS(1080), - [anon_sym_QMARK] = ACTIONS(1066), - [anon_sym_STAR_EQ] = ACTIONS(1066), - [anon_sym_SLASH_EQ] = ACTIONS(1066), - [anon_sym_PERCENT_EQ] = ACTIONS(1066), - [anon_sym_PLUS_EQ] = ACTIONS(1066), - [anon_sym_DASH_EQ] = ACTIONS(1066), - [anon_sym_LT_LT_EQ] = ACTIONS(1066), - [anon_sym_GT_GT_EQ] = ACTIONS(1066), - [anon_sym_AMP_EQ] = ACTIONS(1066), - [anon_sym_CARET_EQ] = ACTIONS(1066), - [anon_sym_PIPE_EQ] = ACTIONS(1066), - [anon_sym_AMP] = ACTIONS(1078), - [anon_sym_PIPE_PIPE] = ACTIONS(1066), - [anon_sym_AMP_AMP] = ACTIONS(1066), - [anon_sym_PIPE] = ACTIONS(1078), - [anon_sym_CARET] = ACTIONS(1078), - [anon_sym_EQ_EQ] = ACTIONS(1066), - [anon_sym_BANG_EQ] = ACTIONS(1066), - [anon_sym_LT] = ACTIONS(1078), - [anon_sym_GT] = ACTIONS(1078), - [anon_sym_LT_EQ] = ACTIONS(1066), - [anon_sym_GT_EQ] = ACTIONS(1066), - [anon_sym_LT_LT] = ACTIONS(1078), - [anon_sym_GT_GT] = ACTIONS(1078), - [anon_sym_PLUS] = ACTIONS(1078), - [anon_sym_DASH] = ACTIONS(1078), - [anon_sym_SLASH] = ACTIONS(1078), - [anon_sym_PERCENT] = ACTIONS(1078), - [anon_sym_DASH_DASH] = ACTIONS(1066), - [anon_sym_PLUS_PLUS] = ACTIONS(1066), - [anon_sym_DOT] = ACTIONS(1066), - [anon_sym_DASH_GT] = ACTIONS(1066), + [anon_sym_COLON] = ACTIONS(1073), + [anon_sym_QMARK] = ACTIONS(1059), + [anon_sym_STAR_EQ] = ACTIONS(1059), + [anon_sym_SLASH_EQ] = ACTIONS(1059), + [anon_sym_PERCENT_EQ] = ACTIONS(1059), + [anon_sym_PLUS_EQ] = ACTIONS(1059), + [anon_sym_DASH_EQ] = ACTIONS(1059), + [anon_sym_LT_LT_EQ] = ACTIONS(1059), + [anon_sym_GT_GT_EQ] = ACTIONS(1059), + [anon_sym_AMP_EQ] = ACTIONS(1059), + [anon_sym_CARET_EQ] = ACTIONS(1059), + [anon_sym_PIPE_EQ] = ACTIONS(1059), + [anon_sym_AMP] = ACTIONS(1071), + [anon_sym_PIPE_PIPE] = ACTIONS(1059), + [anon_sym_AMP_AMP] = ACTIONS(1059), + [anon_sym_PIPE] = ACTIONS(1071), + [anon_sym_CARET] = ACTIONS(1071), + [anon_sym_EQ_EQ] = ACTIONS(1059), + [anon_sym_BANG_EQ] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(1071), + [anon_sym_GT] = ACTIONS(1071), + [anon_sym_LT_EQ] = ACTIONS(1059), + [anon_sym_GT_EQ] = ACTIONS(1059), + [anon_sym_LT_LT] = ACTIONS(1071), + [anon_sym_GT_GT] = ACTIONS(1071), + [anon_sym_PLUS] = ACTIONS(1071), + [anon_sym_DASH] = ACTIONS(1071), + [anon_sym_SLASH] = ACTIONS(1071), + [anon_sym_PERCENT] = ACTIONS(1071), + [anon_sym_DASH_DASH] = ACTIONS(1059), + [anon_sym_PLUS_PLUS] = ACTIONS(1059), + [anon_sym_DOT] = ACTIONS(1059), + [anon_sym_DASH_GT] = ACTIONS(1059), [sym_identifier] = ACTIONS(83), [sym_comment] = ACTIONS(39), }, [709] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2464), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2464), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2464), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2464), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2464), - [sym_preproc_directive] = ACTIONS(2464), - [anon_sym_SEMI] = ACTIONS(2466), - [anon_sym_typedef] = ACTIONS(2464), - [anon_sym_extern] = ACTIONS(2464), - [anon_sym_LBRACE] = ACTIONS(2466), - [anon_sym_RBRACE] = ACTIONS(2466), - [anon_sym_LPAREN2] = ACTIONS(2466), - [anon_sym_STAR] = ACTIONS(2466), - [anon_sym_static] = ACTIONS(2464), - [anon_sym_auto] = ACTIONS(2464), - [anon_sym_register] = ACTIONS(2464), - [anon_sym_inline] = ACTIONS(2464), - [anon_sym_const] = ACTIONS(2464), - [anon_sym_restrict] = ACTIONS(2464), - [anon_sym_volatile] = ACTIONS(2464), - [anon_sym__Atomic] = ACTIONS(2464), - [anon_sym_unsigned] = ACTIONS(2464), - [anon_sym_long] = ACTIONS(2464), - [anon_sym_short] = ACTIONS(2464), - [sym_primitive_type] = ACTIONS(2464), - [anon_sym_enum] = ACTIONS(2464), - [anon_sym_struct] = ACTIONS(2464), - [anon_sym_union] = ACTIONS(2464), - [anon_sym_if] = ACTIONS(2464), - [anon_sym_else] = ACTIONS(2464), - [anon_sym_switch] = ACTIONS(2464), - [anon_sym_case] = ACTIONS(2464), - [anon_sym_default] = ACTIONS(2464), - [anon_sym_while] = ACTIONS(2464), - [anon_sym_do] = ACTIONS(2464), - [anon_sym_for] = ACTIONS(2464), - [anon_sym_return] = ACTIONS(2464), - [anon_sym_break] = ACTIONS(2464), - [anon_sym_continue] = ACTIONS(2464), - [anon_sym_goto] = ACTIONS(2464), - [anon_sym_AMP] = ACTIONS(2466), - [anon_sym_BANG] = ACTIONS(2466), - [anon_sym_TILDE] = ACTIONS(2466), - [anon_sym_PLUS] = ACTIONS(2464), - [anon_sym_DASH] = ACTIONS(2464), - [anon_sym_DASH_DASH] = ACTIONS(2466), - [anon_sym_PLUS_PLUS] = ACTIONS(2466), - [anon_sym_sizeof] = ACTIONS(2464), - [sym_number_literal] = ACTIONS(2466), - [anon_sym_SQUOTE] = ACTIONS(2466), - [anon_sym_DQUOTE] = ACTIONS(2466), - [sym_true] = ACTIONS(2464), - [sym_false] = ACTIONS(2464), - [sym_null] = ACTIONS(2464), - [sym_identifier] = ACTIONS(2464), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2453), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2453), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2453), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2453), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2453), + [sym_preproc_directive] = ACTIONS(2453), + [anon_sym_SEMI] = ACTIONS(2455), + [anon_sym_typedef] = ACTIONS(2453), + [anon_sym_extern] = ACTIONS(2453), + [anon_sym_LBRACE] = ACTIONS(2455), + [anon_sym_RBRACE] = ACTIONS(2455), + [anon_sym_LPAREN2] = ACTIONS(2455), + [anon_sym_STAR] = ACTIONS(2455), + [anon_sym_static] = ACTIONS(2453), + [anon_sym_auto] = ACTIONS(2453), + [anon_sym_register] = ACTIONS(2453), + [anon_sym_inline] = ACTIONS(2453), + [anon_sym_const] = ACTIONS(2453), + [anon_sym_restrict] = ACTIONS(2453), + [anon_sym_volatile] = ACTIONS(2453), + [anon_sym__Atomic] = ACTIONS(2453), + [anon_sym_unsigned] = ACTIONS(2453), + [anon_sym_long] = ACTIONS(2453), + [anon_sym_short] = ACTIONS(2453), + [sym_primitive_type] = ACTIONS(2453), + [anon_sym_enum] = ACTIONS(2453), + [anon_sym_struct] = ACTIONS(2453), + [anon_sym_union] = ACTIONS(2453), + [anon_sym_if] = ACTIONS(2453), + [anon_sym_else] = ACTIONS(2453), + [anon_sym_switch] = ACTIONS(2453), + [anon_sym_case] = ACTIONS(2453), + [anon_sym_default] = ACTIONS(2453), + [anon_sym_while] = ACTIONS(2453), + [anon_sym_do] = ACTIONS(2453), + [anon_sym_for] = ACTIONS(2453), + [anon_sym_return] = ACTIONS(2453), + [anon_sym_break] = ACTIONS(2453), + [anon_sym_continue] = ACTIONS(2453), + [anon_sym_goto] = ACTIONS(2453), + [anon_sym_AMP] = ACTIONS(2455), + [anon_sym_BANG] = ACTIONS(2455), + [anon_sym_TILDE] = ACTIONS(2455), + [anon_sym_PLUS] = ACTIONS(2453), + [anon_sym_DASH] = ACTIONS(2453), + [anon_sym_DASH_DASH] = ACTIONS(2455), + [anon_sym_PLUS_PLUS] = ACTIONS(2455), + [anon_sym_sizeof] = ACTIONS(2453), + [sym_number_literal] = ACTIONS(2455), + [anon_sym_SQUOTE] = ACTIONS(2455), + [anon_sym_DQUOTE] = ACTIONS(2455), + [sym_true] = ACTIONS(2453), + [sym_false] = ACTIONS(2453), + [sym_null] = ACTIONS(2453), + [sym_identifier] = ACTIONS(2453), [sym_comment] = ACTIONS(39), }, [710] = { @@ -27368,66 +27387,66 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_array_declarator] = STATE(446), [sym_init_declarator] = STATE(47), [anon_sym_LPAREN2] = ACTIONS(92), - [anon_sym_STAR] = ACTIONS(534), - [sym_identifier] = ACTIONS(1090), + [anon_sym_STAR] = ACTIONS(530), + [sym_identifier] = ACTIONS(1083), [sym_comment] = ACTIONS(39), }, [711] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2468), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2468), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2468), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2468), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2468), - [sym_preproc_directive] = ACTIONS(2468), - [anon_sym_SEMI] = ACTIONS(2470), - [anon_sym_typedef] = ACTIONS(2468), - [anon_sym_extern] = ACTIONS(2468), - [anon_sym_LBRACE] = ACTIONS(2470), - [anon_sym_RBRACE] = ACTIONS(2470), - [anon_sym_LPAREN2] = ACTIONS(2470), - [anon_sym_STAR] = ACTIONS(2470), - [anon_sym_static] = ACTIONS(2468), - [anon_sym_auto] = ACTIONS(2468), - [anon_sym_register] = ACTIONS(2468), - [anon_sym_inline] = ACTIONS(2468), - [anon_sym_const] = ACTIONS(2468), - [anon_sym_restrict] = ACTIONS(2468), - [anon_sym_volatile] = ACTIONS(2468), - [anon_sym__Atomic] = ACTIONS(2468), - [anon_sym_unsigned] = ACTIONS(2468), - [anon_sym_long] = ACTIONS(2468), - [anon_sym_short] = ACTIONS(2468), - [sym_primitive_type] = ACTIONS(2468), - [anon_sym_enum] = ACTIONS(2468), - [anon_sym_struct] = ACTIONS(2468), - [anon_sym_union] = ACTIONS(2468), - [anon_sym_if] = ACTIONS(2468), - [anon_sym_else] = ACTIONS(2468), - [anon_sym_switch] = ACTIONS(2468), - [anon_sym_case] = ACTIONS(2468), - [anon_sym_default] = ACTIONS(2468), - [anon_sym_while] = ACTIONS(2468), - [anon_sym_do] = ACTIONS(2468), - [anon_sym_for] = ACTIONS(2468), - [anon_sym_return] = ACTIONS(2468), - [anon_sym_break] = ACTIONS(2468), - [anon_sym_continue] = ACTIONS(2468), - [anon_sym_goto] = ACTIONS(2468), - [anon_sym_AMP] = ACTIONS(2470), - [anon_sym_BANG] = ACTIONS(2470), - [anon_sym_TILDE] = ACTIONS(2470), - [anon_sym_PLUS] = ACTIONS(2468), - [anon_sym_DASH] = ACTIONS(2468), - [anon_sym_DASH_DASH] = ACTIONS(2470), - [anon_sym_PLUS_PLUS] = ACTIONS(2470), - [anon_sym_sizeof] = ACTIONS(2468), - [sym_number_literal] = ACTIONS(2470), - [anon_sym_SQUOTE] = ACTIONS(2470), - [anon_sym_DQUOTE] = ACTIONS(2470), - [sym_true] = ACTIONS(2468), - [sym_false] = ACTIONS(2468), - [sym_null] = ACTIONS(2468), - [sym_identifier] = ACTIONS(2468), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2457), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2457), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2457), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2457), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2457), + [sym_preproc_directive] = ACTIONS(2457), + [anon_sym_SEMI] = ACTIONS(2459), + [anon_sym_typedef] = ACTIONS(2457), + [anon_sym_extern] = ACTIONS(2457), + [anon_sym_LBRACE] = ACTIONS(2459), + [anon_sym_RBRACE] = ACTIONS(2459), + [anon_sym_LPAREN2] = ACTIONS(2459), + [anon_sym_STAR] = ACTIONS(2459), + [anon_sym_static] = ACTIONS(2457), + [anon_sym_auto] = ACTIONS(2457), + [anon_sym_register] = ACTIONS(2457), + [anon_sym_inline] = ACTIONS(2457), + [anon_sym_const] = ACTIONS(2457), + [anon_sym_restrict] = ACTIONS(2457), + [anon_sym_volatile] = ACTIONS(2457), + [anon_sym__Atomic] = ACTIONS(2457), + [anon_sym_unsigned] = ACTIONS(2457), + [anon_sym_long] = ACTIONS(2457), + [anon_sym_short] = ACTIONS(2457), + [sym_primitive_type] = ACTIONS(2457), + [anon_sym_enum] = ACTIONS(2457), + [anon_sym_struct] = ACTIONS(2457), + [anon_sym_union] = ACTIONS(2457), + [anon_sym_if] = ACTIONS(2457), + [anon_sym_else] = ACTIONS(2457), + [anon_sym_switch] = ACTIONS(2457), + [anon_sym_case] = ACTIONS(2457), + [anon_sym_default] = ACTIONS(2457), + [anon_sym_while] = ACTIONS(2457), + [anon_sym_do] = ACTIONS(2457), + [anon_sym_for] = ACTIONS(2457), + [anon_sym_return] = ACTIONS(2457), + [anon_sym_break] = ACTIONS(2457), + [anon_sym_continue] = ACTIONS(2457), + [anon_sym_goto] = ACTIONS(2457), + [anon_sym_AMP] = ACTIONS(2459), + [anon_sym_BANG] = ACTIONS(2459), + [anon_sym_TILDE] = ACTIONS(2459), + [anon_sym_PLUS] = ACTIONS(2457), + [anon_sym_DASH] = ACTIONS(2457), + [anon_sym_DASH_DASH] = ACTIONS(2459), + [anon_sym_PLUS_PLUS] = ACTIONS(2459), + [anon_sym_sizeof] = ACTIONS(2457), + [sym_number_literal] = ACTIONS(2459), + [anon_sym_SQUOTE] = ACTIONS(2459), + [anon_sym_DQUOTE] = ACTIONS(2459), + [sym_true] = ACTIONS(2457), + [sym_false] = ACTIONS(2457), + [sym_null] = ACTIONS(2457), + [sym_identifier] = ACTIONS(2457), [sym_comment] = ACTIONS(39), }, [712] = { @@ -27465,36 +27484,36 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(251), [sym_concatenated_string] = STATE(251), [sym_string_literal] = STATE(253), - [anon_sym_SEMI] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(241), - [anon_sym_LPAREN2] = ACTIONS(554), - [anon_sym_STAR] = ACTIONS(556), - [anon_sym_if] = ACTIONS(2472), - [anon_sym_switch] = ACTIONS(2474), - [anon_sym_case] = ACTIONS(2476), - [anon_sym_default] = ACTIONS(2478), - [anon_sym_while] = ACTIONS(2480), - [anon_sym_do] = ACTIONS(1026), - [anon_sym_for] = ACTIONS(2482), - [anon_sym_return] = ACTIONS(572), - [anon_sym_break] = ACTIONS(574), - [anon_sym_continue] = ACTIONS(576), - [anon_sym_goto] = ACTIONS(578), - [anon_sym_AMP] = ACTIONS(556), - [anon_sym_BANG] = ACTIONS(580), - [anon_sym_TILDE] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_DASH_DASH] = ACTIONS(586), - [anon_sym_PLUS_PLUS] = ACTIONS(586), - [anon_sym_sizeof] = ACTIONS(588), - [sym_number_literal] = ACTIONS(590), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(594), - [sym_false] = ACTIONS(594), - [sym_null] = ACTIONS(594), - [sym_identifier] = ACTIONS(2484), + [anon_sym_SEMI] = ACTIONS(546), + [anon_sym_LBRACE] = ACTIONS(239), + [anon_sym_LPAREN2] = ACTIONS(550), + [anon_sym_STAR] = ACTIONS(552), + [anon_sym_if] = ACTIONS(2461), + [anon_sym_switch] = ACTIONS(2463), + [anon_sym_case] = ACTIONS(2465), + [anon_sym_default] = ACTIONS(2467), + [anon_sym_while] = ACTIONS(2469), + [anon_sym_do] = ACTIONS(1017), + [anon_sym_for] = ACTIONS(2471), + [anon_sym_return] = ACTIONS(568), + [anon_sym_break] = ACTIONS(570), + [anon_sym_continue] = ACTIONS(572), + [anon_sym_goto] = ACTIONS(574), + [anon_sym_AMP] = ACTIONS(552), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_TILDE] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(580), + [anon_sym_DASH] = ACTIONS(580), + [anon_sym_DASH_DASH] = ACTIONS(582), + [anon_sym_PLUS_PLUS] = ACTIONS(582), + [anon_sym_sizeof] = ACTIONS(584), + [sym_number_literal] = ACTIONS(586), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(590), + [sym_false] = ACTIONS(590), + [sym_null] = ACTIONS(590), + [sym_identifier] = ACTIONS(2473), [sym_comment] = ACTIONS(39), }, [713] = { @@ -27532,77 +27551,77 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(251), [sym_concatenated_string] = STATE(251), [sym_string_literal] = STATE(253), - [anon_sym_SEMI] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(241), - [anon_sym_LPAREN2] = ACTIONS(554), - [anon_sym_STAR] = ACTIONS(556), - [anon_sym_if] = ACTIONS(1016), - [anon_sym_switch] = ACTIONS(1018), - [anon_sym_case] = ACTIONS(1020), - [anon_sym_default] = ACTIONS(1022), - [anon_sym_while] = ACTIONS(1024), - [anon_sym_do] = ACTIONS(1026), - [anon_sym_for] = ACTIONS(1028), - [anon_sym_return] = ACTIONS(572), - [anon_sym_break] = ACTIONS(574), - [anon_sym_continue] = ACTIONS(576), - [anon_sym_goto] = ACTIONS(578), - [anon_sym_AMP] = ACTIONS(556), - [anon_sym_BANG] = ACTIONS(580), - [anon_sym_TILDE] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_DASH_DASH] = ACTIONS(586), - [anon_sym_PLUS_PLUS] = ACTIONS(586), - [anon_sym_sizeof] = ACTIONS(588), - [sym_number_literal] = ACTIONS(590), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(594), - [sym_false] = ACTIONS(594), - [sym_null] = ACTIONS(594), - [sym_identifier] = ACTIONS(1030), + [anon_sym_SEMI] = ACTIONS(546), + [anon_sym_LBRACE] = ACTIONS(239), + [anon_sym_LPAREN2] = ACTIONS(550), + [anon_sym_STAR] = ACTIONS(552), + [anon_sym_if] = ACTIONS(1007), + [anon_sym_switch] = ACTIONS(1009), + [anon_sym_case] = ACTIONS(1011), + [anon_sym_default] = ACTIONS(1013), + [anon_sym_while] = ACTIONS(1015), + [anon_sym_do] = ACTIONS(1017), + [anon_sym_for] = ACTIONS(1019), + [anon_sym_return] = ACTIONS(568), + [anon_sym_break] = ACTIONS(570), + [anon_sym_continue] = ACTIONS(572), + [anon_sym_goto] = ACTIONS(574), + [anon_sym_AMP] = ACTIONS(552), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_TILDE] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(580), + [anon_sym_DASH] = ACTIONS(580), + [anon_sym_DASH_DASH] = ACTIONS(582), + [anon_sym_PLUS_PLUS] = ACTIONS(582), + [anon_sym_sizeof] = ACTIONS(584), + [sym_number_literal] = ACTIONS(586), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(590), + [sym_false] = ACTIONS(590), + [sym_null] = ACTIONS(590), + [sym_identifier] = ACTIONS(1021), [sym_comment] = ACTIONS(39), }, [714] = { [sym_argument_list] = STATE(465), - [anon_sym_LPAREN2] = ACTIONS(1096), - [anon_sym_STAR] = ACTIONS(1620), - [anon_sym_LBRACK] = ACTIONS(1100), - [anon_sym_EQ] = ACTIONS(1622), - [anon_sym_COLON] = ACTIONS(2486), - [anon_sym_QMARK] = ACTIONS(1626), - [anon_sym_STAR_EQ] = ACTIONS(1628), - [anon_sym_SLASH_EQ] = ACTIONS(1628), - [anon_sym_PERCENT_EQ] = ACTIONS(1628), - [anon_sym_PLUS_EQ] = ACTIONS(1628), - [anon_sym_DASH_EQ] = ACTIONS(1628), - [anon_sym_LT_LT_EQ] = ACTIONS(1628), - [anon_sym_GT_GT_EQ] = ACTIONS(1628), - [anon_sym_AMP_EQ] = ACTIONS(1628), - [anon_sym_CARET_EQ] = ACTIONS(1628), - [anon_sym_PIPE_EQ] = ACTIONS(1628), - [anon_sym_AMP] = ACTIONS(1630), - [anon_sym_PIPE_PIPE] = ACTIONS(1632), - [anon_sym_AMP_AMP] = ACTIONS(1634), - [anon_sym_PIPE] = ACTIONS(1636), - [anon_sym_CARET] = ACTIONS(1638), - [anon_sym_EQ_EQ] = ACTIONS(1640), - [anon_sym_BANG_EQ] = ACTIONS(1640), - [anon_sym_LT] = ACTIONS(1642), - [anon_sym_GT] = ACTIONS(1642), - [anon_sym_LT_EQ] = ACTIONS(1644), - [anon_sym_GT_EQ] = ACTIONS(1644), - [anon_sym_LT_LT] = ACTIONS(1646), - [anon_sym_GT_GT] = ACTIONS(1646), - [anon_sym_PLUS] = ACTIONS(1648), - [anon_sym_DASH] = ACTIONS(1648), - [anon_sym_SLASH] = ACTIONS(1620), - [anon_sym_PERCENT] = ACTIONS(1620), - [anon_sym_DASH_DASH] = ACTIONS(1128), - [anon_sym_PLUS_PLUS] = ACTIONS(1128), - [anon_sym_DOT] = ACTIONS(1130), - [anon_sym_DASH_GT] = ACTIONS(1130), + [anon_sym_LPAREN2] = ACTIONS(1089), + [anon_sym_STAR] = ACTIONS(1609), + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(1611), + [anon_sym_COLON] = ACTIONS(2475), + [anon_sym_QMARK] = ACTIONS(1615), + [anon_sym_STAR_EQ] = ACTIONS(1617), + [anon_sym_SLASH_EQ] = ACTIONS(1617), + [anon_sym_PERCENT_EQ] = ACTIONS(1617), + [anon_sym_PLUS_EQ] = ACTIONS(1617), + [anon_sym_DASH_EQ] = ACTIONS(1617), + [anon_sym_LT_LT_EQ] = ACTIONS(1617), + [anon_sym_GT_GT_EQ] = ACTIONS(1617), + [anon_sym_AMP_EQ] = ACTIONS(1617), + [anon_sym_CARET_EQ] = ACTIONS(1617), + [anon_sym_PIPE_EQ] = ACTIONS(1617), + [anon_sym_AMP] = ACTIONS(1619), + [anon_sym_PIPE_PIPE] = ACTIONS(1621), + [anon_sym_AMP_AMP] = ACTIONS(1623), + [anon_sym_PIPE] = ACTIONS(1625), + [anon_sym_CARET] = ACTIONS(1627), + [anon_sym_EQ_EQ] = ACTIONS(1629), + [anon_sym_BANG_EQ] = ACTIONS(1629), + [anon_sym_LT] = ACTIONS(1631), + [anon_sym_GT] = ACTIONS(1631), + [anon_sym_LT_EQ] = ACTIONS(1633), + [anon_sym_GT_EQ] = ACTIONS(1633), + [anon_sym_LT_LT] = ACTIONS(1635), + [anon_sym_GT_GT] = ACTIONS(1635), + [anon_sym_PLUS] = ACTIONS(1637), + [anon_sym_DASH] = ACTIONS(1637), + [anon_sym_SLASH] = ACTIONS(1609), + [anon_sym_PERCENT] = ACTIONS(1609), + [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_PLUS_PLUS] = ACTIONS(1121), + [anon_sym_DOT] = ACTIONS(1123), + [anon_sym_DASH_GT] = ACTIONS(1123), [sym_comment] = ACTIONS(39), }, [715] = { @@ -27653,12 +27672,12 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_macro_type_specifier] = STATE(95), [aux_sym__declaration_specifiers_repeat1] = STATE(96), [aux_sym_sized_type_specifier_repeat1] = STATE(97), - [anon_sym_SEMI] = ACTIONS(550), + [anon_sym_SEMI] = ACTIONS(546), [anon_sym_typedef] = ACTIONS(19), [anon_sym_extern] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(241), - [anon_sym_LPAREN2] = ACTIONS(554), - [anon_sym_STAR] = ACTIONS(556), + [anon_sym_LBRACE] = ACTIONS(239), + [anon_sym_LPAREN2] = ACTIONS(550), + [anon_sym_STAR] = ACTIONS(552), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -27667,39 +27686,39 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_restrict] = ACTIONS(25), [anon_sym_volatile] = ACTIONS(25), [anon_sym__Atomic] = ACTIONS(25), - [anon_sym_unsigned] = ACTIONS(177), - [anon_sym_long] = ACTIONS(177), - [anon_sym_short] = ACTIONS(177), - [sym_primitive_type] = ACTIONS(179), + [anon_sym_unsigned] = ACTIONS(175), + [anon_sym_long] = ACTIONS(175), + [anon_sym_short] = ACTIONS(175), + [sym_primitive_type] = ACTIONS(177), [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), - [anon_sym_if] = ACTIONS(1016), - [anon_sym_switch] = ACTIONS(1018), - [anon_sym_case] = ACTIONS(1020), - [anon_sym_default] = ACTIONS(1022), - [anon_sym_while] = ACTIONS(1024), - [anon_sym_do] = ACTIONS(1026), - [anon_sym_for] = ACTIONS(1028), - [anon_sym_return] = ACTIONS(572), - [anon_sym_break] = ACTIONS(574), - [anon_sym_continue] = ACTIONS(576), - [anon_sym_goto] = ACTIONS(578), - [anon_sym_AMP] = ACTIONS(556), - [anon_sym_BANG] = ACTIONS(580), - [anon_sym_TILDE] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_DASH_DASH] = ACTIONS(586), - [anon_sym_PLUS_PLUS] = ACTIONS(586), - [anon_sym_sizeof] = ACTIONS(588), - [sym_number_literal] = ACTIONS(590), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(594), - [sym_false] = ACTIONS(594), - [sym_null] = ACTIONS(594), - [sym_identifier] = ACTIONS(2488), + [anon_sym_if] = ACTIONS(1007), + [anon_sym_switch] = ACTIONS(1009), + [anon_sym_case] = ACTIONS(1011), + [anon_sym_default] = ACTIONS(1013), + [anon_sym_while] = ACTIONS(1015), + [anon_sym_do] = ACTIONS(1017), + [anon_sym_for] = ACTIONS(1019), + [anon_sym_return] = ACTIONS(568), + [anon_sym_break] = ACTIONS(570), + [anon_sym_continue] = ACTIONS(572), + [anon_sym_goto] = ACTIONS(574), + [anon_sym_AMP] = ACTIONS(552), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_TILDE] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(580), + [anon_sym_DASH] = ACTIONS(580), + [anon_sym_DASH_DASH] = ACTIONS(582), + [anon_sym_PLUS_PLUS] = ACTIONS(582), + [anon_sym_sizeof] = ACTIONS(584), + [sym_number_literal] = ACTIONS(586), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(590), + [sym_false] = ACTIONS(590), + [sym_null] = ACTIONS(590), + [sym_identifier] = ACTIONS(2477), [sym_comment] = ACTIONS(39), }, [716] = { @@ -27737,40 +27756,40 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(251), [sym_concatenated_string] = STATE(251), [sym_string_literal] = STATE(253), - [anon_sym_SEMI] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(241), - [anon_sym_LPAREN2] = ACTIONS(554), - [anon_sym_STAR] = ACTIONS(556), - [anon_sym_if] = ACTIONS(1016), - [anon_sym_switch] = ACTIONS(1018), - [anon_sym_case] = ACTIONS(1020), - [anon_sym_default] = ACTIONS(1022), - [anon_sym_while] = ACTIONS(1024), - [anon_sym_do] = ACTIONS(1026), - [anon_sym_for] = ACTIONS(1028), - [anon_sym_return] = ACTIONS(572), - [anon_sym_break] = ACTIONS(574), - [anon_sym_continue] = ACTIONS(576), - [anon_sym_goto] = ACTIONS(578), - [anon_sym_AMP] = ACTIONS(556), - [anon_sym_BANG] = ACTIONS(580), - [anon_sym_TILDE] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_DASH_DASH] = ACTIONS(586), - [anon_sym_PLUS_PLUS] = ACTIONS(586), - [anon_sym_sizeof] = ACTIONS(588), - [sym_number_literal] = ACTIONS(590), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(594), - [sym_false] = ACTIONS(594), - [sym_null] = ACTIONS(594), - [sym_identifier] = ACTIONS(1030), + [anon_sym_SEMI] = ACTIONS(546), + [anon_sym_LBRACE] = ACTIONS(239), + [anon_sym_LPAREN2] = ACTIONS(550), + [anon_sym_STAR] = ACTIONS(552), + [anon_sym_if] = ACTIONS(1007), + [anon_sym_switch] = ACTIONS(1009), + [anon_sym_case] = ACTIONS(1011), + [anon_sym_default] = ACTIONS(1013), + [anon_sym_while] = ACTIONS(1015), + [anon_sym_do] = ACTIONS(1017), + [anon_sym_for] = ACTIONS(1019), + [anon_sym_return] = ACTIONS(568), + [anon_sym_break] = ACTIONS(570), + [anon_sym_continue] = ACTIONS(572), + [anon_sym_goto] = ACTIONS(574), + [anon_sym_AMP] = ACTIONS(552), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_TILDE] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(580), + [anon_sym_DASH] = ACTIONS(580), + [anon_sym_DASH_DASH] = ACTIONS(582), + [anon_sym_PLUS_PLUS] = ACTIONS(582), + [anon_sym_sizeof] = ACTIONS(584), + [sym_number_literal] = ACTIONS(586), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(590), + [sym_false] = ACTIONS(590), + [sym_null] = ACTIONS(590), + [sym_identifier] = ACTIONS(1021), [sym_comment] = ACTIONS(39), }, [717] = { - [anon_sym_while] = ACTIONS(2490), + [anon_sym_while] = ACTIONS(2479), [sym_comment] = ACTIONS(39), }, [718] = { @@ -27806,10 +27825,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_macro_type_specifier] = STATE(95), [aux_sym__declaration_specifiers_repeat1] = STATE(96), [aux_sym_sized_type_specifier_repeat1] = STATE(97), - [anon_sym_SEMI] = ACTIONS(2492), + [anon_sym_SEMI] = ACTIONS(2481), [anon_sym_extern] = ACTIONS(23), - [anon_sym_LPAREN2] = ACTIONS(847), - [anon_sym_STAR] = ACTIONS(849), + [anon_sym_LPAREN2] = ACTIONS(838), + [anon_sym_STAR] = ACTIONS(840), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -27818,28 +27837,28 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_restrict] = ACTIONS(25), [anon_sym_volatile] = ACTIONS(25), [anon_sym__Atomic] = ACTIONS(25), - [anon_sym_unsigned] = ACTIONS(177), - [anon_sym_long] = ACTIONS(177), - [anon_sym_short] = ACTIONS(177), - [sym_primitive_type] = ACTIONS(179), + [anon_sym_unsigned] = ACTIONS(175), + [anon_sym_long] = ACTIONS(175), + [anon_sym_short] = ACTIONS(175), + [sym_primitive_type] = ACTIONS(177), [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), - [anon_sym_AMP] = ACTIONS(849), - [anon_sym_BANG] = ACTIONS(851), - [anon_sym_TILDE] = ACTIONS(853), - [anon_sym_PLUS] = ACTIONS(855), - [anon_sym_DASH] = ACTIONS(855), - [anon_sym_DASH_DASH] = ACTIONS(857), - [anon_sym_PLUS_PLUS] = ACTIONS(857), - [anon_sym_sizeof] = ACTIONS(859), - [sym_number_literal] = ACTIONS(2494), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2496), - [sym_false] = ACTIONS(2496), - [sym_null] = ACTIONS(2496), - [sym_identifier] = ACTIONS(1670), + [anon_sym_AMP] = ACTIONS(840), + [anon_sym_BANG] = ACTIONS(842), + [anon_sym_TILDE] = ACTIONS(844), + [anon_sym_PLUS] = ACTIONS(846), + [anon_sym_DASH] = ACTIONS(846), + [anon_sym_DASH_DASH] = ACTIONS(848), + [anon_sym_PLUS_PLUS] = ACTIONS(848), + [anon_sym_sizeof] = ACTIONS(850), + [sym_number_literal] = ACTIONS(2483), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(2485), + [sym_false] = ACTIONS(2485), + [sym_null] = ACTIONS(2485), + [sym_identifier] = ACTIONS(1659), [sym_comment] = ACTIONS(39), }, [719] = { @@ -27877,41 +27896,41 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(251), [sym_concatenated_string] = STATE(251), [sym_string_literal] = STATE(253), - [anon_sym_SEMI] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(241), - [anon_sym_LPAREN2] = ACTIONS(554), - [anon_sym_STAR] = ACTIONS(556), - [anon_sym_if] = ACTIONS(1016), - [anon_sym_switch] = ACTIONS(1018), - [anon_sym_case] = ACTIONS(1020), - [anon_sym_default] = ACTIONS(1022), - [anon_sym_while] = ACTIONS(1024), - [anon_sym_do] = ACTIONS(1026), - [anon_sym_for] = ACTIONS(1028), - [anon_sym_return] = ACTIONS(572), - [anon_sym_break] = ACTIONS(574), - [anon_sym_continue] = ACTIONS(576), - [anon_sym_goto] = ACTIONS(578), - [anon_sym_AMP] = ACTIONS(556), - [anon_sym_BANG] = ACTIONS(580), - [anon_sym_TILDE] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_DASH_DASH] = ACTIONS(586), - [anon_sym_PLUS_PLUS] = ACTIONS(586), - [anon_sym_sizeof] = ACTIONS(588), - [sym_number_literal] = ACTIONS(590), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(594), - [sym_false] = ACTIONS(594), - [sym_null] = ACTIONS(594), - [sym_identifier] = ACTIONS(1030), + [anon_sym_SEMI] = ACTIONS(546), + [anon_sym_LBRACE] = ACTIONS(239), + [anon_sym_LPAREN2] = ACTIONS(550), + [anon_sym_STAR] = ACTIONS(552), + [anon_sym_if] = ACTIONS(1007), + [anon_sym_switch] = ACTIONS(1009), + [anon_sym_case] = ACTIONS(1011), + [anon_sym_default] = ACTIONS(1013), + [anon_sym_while] = ACTIONS(1015), + [anon_sym_do] = ACTIONS(1017), + [anon_sym_for] = ACTIONS(1019), + [anon_sym_return] = ACTIONS(568), + [anon_sym_break] = ACTIONS(570), + [anon_sym_continue] = ACTIONS(572), + [anon_sym_goto] = ACTIONS(574), + [anon_sym_AMP] = ACTIONS(552), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_TILDE] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(580), + [anon_sym_DASH] = ACTIONS(580), + [anon_sym_DASH_DASH] = ACTIONS(582), + [anon_sym_PLUS_PLUS] = ACTIONS(582), + [anon_sym_sizeof] = ACTIONS(584), + [sym_number_literal] = ACTIONS(586), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(590), + [sym_false] = ACTIONS(590), + [sym_null] = ACTIONS(590), + [sym_identifier] = ACTIONS(1021), [sym_comment] = ACTIONS(39), }, [720] = { [sym_parenthesized_expression] = STATE(961), - [anon_sym_LPAREN2] = ACTIONS(994), + [anon_sym_LPAREN2] = ACTIONS(985), [sym_comment] = ACTIONS(39), }, [721] = { @@ -27935,33 +27954,33 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(963), [sym_concatenated_string] = STATE(963), [sym_string_literal] = STATE(376), - [anon_sym_SEMI] = ACTIONS(2498), - [anon_sym_LPAREN2] = ACTIONS(847), - [anon_sym_STAR] = ACTIONS(849), - [anon_sym_AMP] = ACTIONS(849), - [anon_sym_BANG] = ACTIONS(851), - [anon_sym_TILDE] = ACTIONS(853), - [anon_sym_PLUS] = ACTIONS(855), - [anon_sym_DASH] = ACTIONS(855), - [anon_sym_DASH_DASH] = ACTIONS(857), - [anon_sym_PLUS_PLUS] = ACTIONS(857), - [anon_sym_sizeof] = ACTIONS(859), - [sym_number_literal] = ACTIONS(2500), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2502), - [sym_false] = ACTIONS(2502), - [sym_null] = ACTIONS(2502), - [sym_identifier] = ACTIONS(2502), + [anon_sym_SEMI] = ACTIONS(2487), + [anon_sym_LPAREN2] = ACTIONS(838), + [anon_sym_STAR] = ACTIONS(840), + [anon_sym_AMP] = ACTIONS(840), + [anon_sym_BANG] = ACTIONS(842), + [anon_sym_TILDE] = ACTIONS(844), + [anon_sym_PLUS] = ACTIONS(846), + [anon_sym_DASH] = ACTIONS(846), + [anon_sym_DASH_DASH] = ACTIONS(848), + [anon_sym_PLUS_PLUS] = ACTIONS(848), + [anon_sym_sizeof] = ACTIONS(850), + [sym_number_literal] = ACTIONS(2489), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(2491), + [sym_false] = ACTIONS(2491), + [sym_null] = ACTIONS(2491), + [sym_identifier] = ACTIONS(2491), [sym_comment] = ACTIONS(39), }, [722] = { - [anon_sym_SEMI] = ACTIONS(1066), + [anon_sym_SEMI] = ACTIONS(1059), [anon_sym_extern] = ACTIONS(83), - [anon_sym_LPAREN2] = ACTIONS(1071), - [anon_sym_STAR] = ACTIONS(1075), - [anon_sym_LBRACK] = ACTIONS(1066), - [anon_sym_EQ] = ACTIONS(1078), + [anon_sym_LPAREN2] = ACTIONS(1064), + [anon_sym_STAR] = ACTIONS(1068), + [anon_sym_LBRACK] = ACTIONS(1059), + [anon_sym_EQ] = ACTIONS(1071), [anon_sym_static] = ACTIONS(83), [anon_sym_auto] = ACTIONS(83), [anon_sym_register] = ACTIONS(83), @@ -27970,1097 +27989,1097 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_restrict] = ACTIONS(83), [anon_sym_volatile] = ACTIONS(83), [anon_sym__Atomic] = ACTIONS(83), - [anon_sym_QMARK] = ACTIONS(1066), - [anon_sym_STAR_EQ] = ACTIONS(1066), - [anon_sym_SLASH_EQ] = ACTIONS(1066), - [anon_sym_PERCENT_EQ] = ACTIONS(1066), - [anon_sym_PLUS_EQ] = ACTIONS(1066), - [anon_sym_DASH_EQ] = ACTIONS(1066), - [anon_sym_LT_LT_EQ] = ACTIONS(1066), - [anon_sym_GT_GT_EQ] = ACTIONS(1066), - [anon_sym_AMP_EQ] = ACTIONS(1066), - [anon_sym_CARET_EQ] = ACTIONS(1066), - [anon_sym_PIPE_EQ] = ACTIONS(1066), - [anon_sym_AMP] = ACTIONS(1078), - [anon_sym_PIPE_PIPE] = ACTIONS(1066), - [anon_sym_AMP_AMP] = ACTIONS(1066), - [anon_sym_PIPE] = ACTIONS(1078), - [anon_sym_CARET] = ACTIONS(1078), - [anon_sym_EQ_EQ] = ACTIONS(1066), - [anon_sym_BANG_EQ] = ACTIONS(1066), - [anon_sym_LT] = ACTIONS(1078), - [anon_sym_GT] = ACTIONS(1078), - [anon_sym_LT_EQ] = ACTIONS(1066), - [anon_sym_GT_EQ] = ACTIONS(1066), - [anon_sym_LT_LT] = ACTIONS(1078), - [anon_sym_GT_GT] = ACTIONS(1078), - [anon_sym_PLUS] = ACTIONS(1078), - [anon_sym_DASH] = ACTIONS(1078), - [anon_sym_SLASH] = ACTIONS(1078), - [anon_sym_PERCENT] = ACTIONS(1078), - [anon_sym_DASH_DASH] = ACTIONS(1066), - [anon_sym_PLUS_PLUS] = ACTIONS(1066), - [anon_sym_DOT] = ACTIONS(1066), - [anon_sym_DASH_GT] = ACTIONS(1066), + [anon_sym_QMARK] = ACTIONS(1059), + [anon_sym_STAR_EQ] = ACTIONS(1059), + [anon_sym_SLASH_EQ] = ACTIONS(1059), + [anon_sym_PERCENT_EQ] = ACTIONS(1059), + [anon_sym_PLUS_EQ] = ACTIONS(1059), + [anon_sym_DASH_EQ] = ACTIONS(1059), + [anon_sym_LT_LT_EQ] = ACTIONS(1059), + [anon_sym_GT_GT_EQ] = ACTIONS(1059), + [anon_sym_AMP_EQ] = ACTIONS(1059), + [anon_sym_CARET_EQ] = ACTIONS(1059), + [anon_sym_PIPE_EQ] = ACTIONS(1059), + [anon_sym_AMP] = ACTIONS(1071), + [anon_sym_PIPE_PIPE] = ACTIONS(1059), + [anon_sym_AMP_AMP] = ACTIONS(1059), + [anon_sym_PIPE] = ACTIONS(1071), + [anon_sym_CARET] = ACTIONS(1071), + [anon_sym_EQ_EQ] = ACTIONS(1059), + [anon_sym_BANG_EQ] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(1071), + [anon_sym_GT] = ACTIONS(1071), + [anon_sym_LT_EQ] = ACTIONS(1059), + [anon_sym_GT_EQ] = ACTIONS(1059), + [anon_sym_LT_LT] = ACTIONS(1071), + [anon_sym_GT_GT] = ACTIONS(1071), + [anon_sym_PLUS] = ACTIONS(1071), + [anon_sym_DASH] = ACTIONS(1071), + [anon_sym_SLASH] = ACTIONS(1071), + [anon_sym_PERCENT] = ACTIONS(1071), + [anon_sym_DASH_DASH] = ACTIONS(1059), + [anon_sym_PLUS_PLUS] = ACTIONS(1059), + [anon_sym_DOT] = ACTIONS(1059), + [anon_sym_DASH_GT] = ACTIONS(1059), [sym_identifier] = ACTIONS(83), [sym_comment] = ACTIONS(39), }, [723] = { [sym_argument_list] = STATE(465), - [anon_sym_SEMI] = ACTIONS(2504), - [anon_sym_LPAREN2] = ACTIONS(1096), - [anon_sym_STAR] = ACTIONS(1436), - [anon_sym_LBRACK] = ACTIONS(1100), - [anon_sym_EQ] = ACTIONS(1438), - [anon_sym_QMARK] = ACTIONS(1440), - [anon_sym_STAR_EQ] = ACTIONS(1442), - [anon_sym_SLASH_EQ] = ACTIONS(1442), - [anon_sym_PERCENT_EQ] = ACTIONS(1442), - [anon_sym_PLUS_EQ] = ACTIONS(1442), - [anon_sym_DASH_EQ] = ACTIONS(1442), - [anon_sym_LT_LT_EQ] = ACTIONS(1442), - [anon_sym_GT_GT_EQ] = ACTIONS(1442), - [anon_sym_AMP_EQ] = ACTIONS(1442), - [anon_sym_CARET_EQ] = ACTIONS(1442), - [anon_sym_PIPE_EQ] = ACTIONS(1442), - [anon_sym_AMP] = ACTIONS(1444), - [anon_sym_PIPE_PIPE] = ACTIONS(1446), - [anon_sym_AMP_AMP] = ACTIONS(1448), - [anon_sym_PIPE] = ACTIONS(1450), - [anon_sym_CARET] = ACTIONS(1452), - [anon_sym_EQ_EQ] = ACTIONS(1454), - [anon_sym_BANG_EQ] = ACTIONS(1454), - [anon_sym_LT] = ACTIONS(1456), - [anon_sym_GT] = ACTIONS(1456), - [anon_sym_LT_EQ] = ACTIONS(1458), - [anon_sym_GT_EQ] = ACTIONS(1458), - [anon_sym_LT_LT] = ACTIONS(1460), - [anon_sym_GT_GT] = ACTIONS(1460), - [anon_sym_PLUS] = ACTIONS(1462), - [anon_sym_DASH] = ACTIONS(1462), - [anon_sym_SLASH] = ACTIONS(1436), - [anon_sym_PERCENT] = ACTIONS(1436), - [anon_sym_DASH_DASH] = ACTIONS(1128), - [anon_sym_PLUS_PLUS] = ACTIONS(1128), - [anon_sym_DOT] = ACTIONS(1130), - [anon_sym_DASH_GT] = ACTIONS(1130), + [anon_sym_SEMI] = ACTIONS(2493), + [anon_sym_LPAREN2] = ACTIONS(1089), + [anon_sym_STAR] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(1429), + [anon_sym_QMARK] = ACTIONS(1431), + [anon_sym_STAR_EQ] = ACTIONS(1433), + [anon_sym_SLASH_EQ] = ACTIONS(1433), + [anon_sym_PERCENT_EQ] = ACTIONS(1433), + [anon_sym_PLUS_EQ] = ACTIONS(1433), + [anon_sym_DASH_EQ] = ACTIONS(1433), + [anon_sym_LT_LT_EQ] = ACTIONS(1433), + [anon_sym_GT_GT_EQ] = ACTIONS(1433), + [anon_sym_AMP_EQ] = ACTIONS(1433), + [anon_sym_CARET_EQ] = ACTIONS(1433), + [anon_sym_PIPE_EQ] = ACTIONS(1433), + [anon_sym_AMP] = ACTIONS(1435), + [anon_sym_PIPE_PIPE] = ACTIONS(1437), + [anon_sym_AMP_AMP] = ACTIONS(1439), + [anon_sym_PIPE] = ACTIONS(1441), + [anon_sym_CARET] = ACTIONS(1443), + [anon_sym_EQ_EQ] = ACTIONS(1445), + [anon_sym_BANG_EQ] = ACTIONS(1445), + [anon_sym_LT] = ACTIONS(1447), + [anon_sym_GT] = ACTIONS(1447), + [anon_sym_LT_EQ] = ACTIONS(1449), + [anon_sym_GT_EQ] = ACTIONS(1449), + [anon_sym_LT_LT] = ACTIONS(1451), + [anon_sym_GT_GT] = ACTIONS(1451), + [anon_sym_PLUS] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1453), + [anon_sym_SLASH] = ACTIONS(1427), + [anon_sym_PERCENT] = ACTIONS(1427), + [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_PLUS_PLUS] = ACTIONS(1121), + [anon_sym_DOT] = ACTIONS(1123), + [anon_sym_DASH_GT] = ACTIONS(1123), [sym_comment] = ACTIONS(39), }, [724] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2506), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2506), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2506), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2506), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2506), - [sym_preproc_directive] = ACTIONS(2506), - [anon_sym_SEMI] = ACTIONS(2508), - [anon_sym_typedef] = ACTIONS(2506), - [anon_sym_extern] = ACTIONS(2506), - [anon_sym_LBRACE] = ACTIONS(2508), - [anon_sym_RBRACE] = ACTIONS(2508), - [anon_sym_LPAREN2] = ACTIONS(2508), - [anon_sym_STAR] = ACTIONS(2508), - [anon_sym_static] = ACTIONS(2506), - [anon_sym_auto] = ACTIONS(2506), - [anon_sym_register] = ACTIONS(2506), - [anon_sym_inline] = ACTIONS(2506), - [anon_sym_const] = ACTIONS(2506), - [anon_sym_restrict] = ACTIONS(2506), - [anon_sym_volatile] = ACTIONS(2506), - [anon_sym__Atomic] = ACTIONS(2506), - [anon_sym_unsigned] = ACTIONS(2506), - [anon_sym_long] = ACTIONS(2506), - [anon_sym_short] = ACTIONS(2506), - [sym_primitive_type] = ACTIONS(2506), - [anon_sym_enum] = ACTIONS(2506), - [anon_sym_struct] = ACTIONS(2506), - [anon_sym_union] = ACTIONS(2506), - [anon_sym_if] = ACTIONS(2506), - [anon_sym_else] = ACTIONS(2506), - [anon_sym_switch] = ACTIONS(2506), - [anon_sym_case] = ACTIONS(2506), - [anon_sym_default] = ACTIONS(2506), - [anon_sym_while] = ACTIONS(2506), - [anon_sym_do] = ACTIONS(2506), - [anon_sym_for] = ACTIONS(2506), - [anon_sym_return] = ACTIONS(2506), - [anon_sym_break] = ACTIONS(2506), - [anon_sym_continue] = ACTIONS(2506), - [anon_sym_goto] = ACTIONS(2506), - [anon_sym_AMP] = ACTIONS(2508), - [anon_sym_BANG] = ACTIONS(2508), - [anon_sym_TILDE] = ACTIONS(2508), - [anon_sym_PLUS] = ACTIONS(2506), - [anon_sym_DASH] = ACTIONS(2506), - [anon_sym_DASH_DASH] = ACTIONS(2508), - [anon_sym_PLUS_PLUS] = ACTIONS(2508), - [anon_sym_sizeof] = ACTIONS(2506), - [sym_number_literal] = ACTIONS(2508), - [anon_sym_SQUOTE] = ACTIONS(2508), - [anon_sym_DQUOTE] = ACTIONS(2508), - [sym_true] = ACTIONS(2506), - [sym_false] = ACTIONS(2506), - [sym_null] = ACTIONS(2506), - [sym_identifier] = ACTIONS(2506), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2495), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2495), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2495), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2495), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2495), + [sym_preproc_directive] = ACTIONS(2495), + [anon_sym_SEMI] = ACTIONS(2497), + [anon_sym_typedef] = ACTIONS(2495), + [anon_sym_extern] = ACTIONS(2495), + [anon_sym_LBRACE] = ACTIONS(2497), + [anon_sym_RBRACE] = ACTIONS(2497), + [anon_sym_LPAREN2] = ACTIONS(2497), + [anon_sym_STAR] = ACTIONS(2497), + [anon_sym_static] = ACTIONS(2495), + [anon_sym_auto] = ACTIONS(2495), + [anon_sym_register] = ACTIONS(2495), + [anon_sym_inline] = ACTIONS(2495), + [anon_sym_const] = ACTIONS(2495), + [anon_sym_restrict] = ACTIONS(2495), + [anon_sym_volatile] = ACTIONS(2495), + [anon_sym__Atomic] = ACTIONS(2495), + [anon_sym_unsigned] = ACTIONS(2495), + [anon_sym_long] = ACTIONS(2495), + [anon_sym_short] = ACTIONS(2495), + [sym_primitive_type] = ACTIONS(2495), + [anon_sym_enum] = ACTIONS(2495), + [anon_sym_struct] = ACTIONS(2495), + [anon_sym_union] = ACTIONS(2495), + [anon_sym_if] = ACTIONS(2495), + [anon_sym_else] = ACTIONS(2495), + [anon_sym_switch] = ACTIONS(2495), + [anon_sym_case] = ACTIONS(2495), + [anon_sym_default] = ACTIONS(2495), + [anon_sym_while] = ACTIONS(2495), + [anon_sym_do] = ACTIONS(2495), + [anon_sym_for] = ACTIONS(2495), + [anon_sym_return] = ACTIONS(2495), + [anon_sym_break] = ACTIONS(2495), + [anon_sym_continue] = ACTIONS(2495), + [anon_sym_goto] = ACTIONS(2495), + [anon_sym_AMP] = ACTIONS(2497), + [anon_sym_BANG] = ACTIONS(2497), + [anon_sym_TILDE] = ACTIONS(2497), + [anon_sym_PLUS] = ACTIONS(2495), + [anon_sym_DASH] = ACTIONS(2495), + [anon_sym_DASH_DASH] = ACTIONS(2497), + [anon_sym_PLUS_PLUS] = ACTIONS(2497), + [anon_sym_sizeof] = ACTIONS(2495), + [sym_number_literal] = ACTIONS(2497), + [anon_sym_SQUOTE] = ACTIONS(2497), + [anon_sym_DQUOTE] = ACTIONS(2497), + [sym_true] = ACTIONS(2495), + [sym_false] = ACTIONS(2495), + [sym_null] = ACTIONS(2495), + [sym_identifier] = ACTIONS(2495), [sym_comment] = ACTIONS(39), }, [725] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2510), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2510), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2510), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2510), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2510), - [sym_preproc_directive] = ACTIONS(2510), - [anon_sym_SEMI] = ACTIONS(2512), - [anon_sym_typedef] = ACTIONS(2510), - [anon_sym_extern] = ACTIONS(2510), - [anon_sym_LBRACE] = ACTIONS(2512), - [anon_sym_RBRACE] = ACTIONS(2512), - [anon_sym_LPAREN2] = ACTIONS(2512), - [anon_sym_STAR] = ACTIONS(2512), - [anon_sym_static] = ACTIONS(2510), - [anon_sym_auto] = ACTIONS(2510), - [anon_sym_register] = ACTIONS(2510), - [anon_sym_inline] = ACTIONS(2510), - [anon_sym_const] = ACTIONS(2510), - [anon_sym_restrict] = ACTIONS(2510), - [anon_sym_volatile] = ACTIONS(2510), - [anon_sym__Atomic] = ACTIONS(2510), - [anon_sym_unsigned] = ACTIONS(2510), - [anon_sym_long] = ACTIONS(2510), - [anon_sym_short] = ACTIONS(2510), - [sym_primitive_type] = ACTIONS(2510), - [anon_sym_enum] = ACTIONS(2510), - [anon_sym_struct] = ACTIONS(2510), - [anon_sym_union] = ACTIONS(2510), - [anon_sym_if] = ACTIONS(2510), - [anon_sym_else] = ACTIONS(2510), - [anon_sym_switch] = ACTIONS(2510), - [anon_sym_case] = ACTIONS(2510), - [anon_sym_default] = ACTIONS(2510), - [anon_sym_while] = ACTIONS(2510), - [anon_sym_do] = ACTIONS(2510), - [anon_sym_for] = ACTIONS(2510), - [anon_sym_return] = ACTIONS(2510), - [anon_sym_break] = ACTIONS(2510), - [anon_sym_continue] = ACTIONS(2510), - [anon_sym_goto] = ACTIONS(2510), - [anon_sym_AMP] = ACTIONS(2512), - [anon_sym_BANG] = ACTIONS(2512), - [anon_sym_TILDE] = ACTIONS(2512), - [anon_sym_PLUS] = ACTIONS(2510), - [anon_sym_DASH] = ACTIONS(2510), - [anon_sym_DASH_DASH] = ACTIONS(2512), - [anon_sym_PLUS_PLUS] = ACTIONS(2512), - [anon_sym_sizeof] = ACTIONS(2510), - [sym_number_literal] = ACTIONS(2512), - [anon_sym_SQUOTE] = ACTIONS(2512), - [anon_sym_DQUOTE] = ACTIONS(2512), - [sym_true] = ACTIONS(2510), - [sym_false] = ACTIONS(2510), - [sym_null] = ACTIONS(2510), - [sym_identifier] = ACTIONS(2510), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2499), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2499), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2499), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2499), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2499), + [sym_preproc_directive] = ACTIONS(2499), + [anon_sym_SEMI] = ACTIONS(2501), + [anon_sym_typedef] = ACTIONS(2499), + [anon_sym_extern] = ACTIONS(2499), + [anon_sym_LBRACE] = ACTIONS(2501), + [anon_sym_RBRACE] = ACTIONS(2501), + [anon_sym_LPAREN2] = ACTIONS(2501), + [anon_sym_STAR] = ACTIONS(2501), + [anon_sym_static] = ACTIONS(2499), + [anon_sym_auto] = ACTIONS(2499), + [anon_sym_register] = ACTIONS(2499), + [anon_sym_inline] = ACTIONS(2499), + [anon_sym_const] = ACTIONS(2499), + [anon_sym_restrict] = ACTIONS(2499), + [anon_sym_volatile] = ACTIONS(2499), + [anon_sym__Atomic] = ACTIONS(2499), + [anon_sym_unsigned] = ACTIONS(2499), + [anon_sym_long] = ACTIONS(2499), + [anon_sym_short] = ACTIONS(2499), + [sym_primitive_type] = ACTIONS(2499), + [anon_sym_enum] = ACTIONS(2499), + [anon_sym_struct] = ACTIONS(2499), + [anon_sym_union] = ACTIONS(2499), + [anon_sym_if] = ACTIONS(2499), + [anon_sym_else] = ACTIONS(2499), + [anon_sym_switch] = ACTIONS(2499), + [anon_sym_case] = ACTIONS(2499), + [anon_sym_default] = ACTIONS(2499), + [anon_sym_while] = ACTIONS(2499), + [anon_sym_do] = ACTIONS(2499), + [anon_sym_for] = ACTIONS(2499), + [anon_sym_return] = ACTIONS(2499), + [anon_sym_break] = ACTIONS(2499), + [anon_sym_continue] = ACTIONS(2499), + [anon_sym_goto] = ACTIONS(2499), + [anon_sym_AMP] = ACTIONS(2501), + [anon_sym_BANG] = ACTIONS(2501), + [anon_sym_TILDE] = ACTIONS(2501), + [anon_sym_PLUS] = ACTIONS(2499), + [anon_sym_DASH] = ACTIONS(2499), + [anon_sym_DASH_DASH] = ACTIONS(2501), + [anon_sym_PLUS_PLUS] = ACTIONS(2501), + [anon_sym_sizeof] = ACTIONS(2499), + [sym_number_literal] = ACTIONS(2501), + [anon_sym_SQUOTE] = ACTIONS(2501), + [anon_sym_DQUOTE] = ACTIONS(2501), + [sym_true] = ACTIONS(2499), + [sym_false] = ACTIONS(2499), + [sym_null] = ACTIONS(2499), + [sym_identifier] = ACTIONS(2499), [sym_comment] = ACTIONS(39), }, [726] = { - [anon_sym_RPAREN] = ACTIONS(2514), + [anon_sym_RPAREN] = ACTIONS(2503), [sym_comment] = ACTIONS(39), }, [727] = { - [anon_sym_COMMA] = ACTIONS(2516), - [anon_sym_RPAREN] = ACTIONS(2516), - [anon_sym_SEMI] = ACTIONS(2516), - [anon_sym_RBRACE] = ACTIONS(2516), - [anon_sym_LPAREN2] = ACTIONS(2516), - [anon_sym_STAR] = ACTIONS(2518), - [anon_sym_LBRACK] = ACTIONS(2516), - [anon_sym_RBRACK] = ACTIONS(2516), - [anon_sym_EQ] = ACTIONS(2518), - [anon_sym_COLON] = ACTIONS(2516), - [anon_sym_QMARK] = ACTIONS(2516), - [anon_sym_STAR_EQ] = ACTIONS(2516), - [anon_sym_SLASH_EQ] = ACTIONS(2516), - [anon_sym_PERCENT_EQ] = ACTIONS(2516), - [anon_sym_PLUS_EQ] = ACTIONS(2516), - [anon_sym_DASH_EQ] = ACTIONS(2516), - [anon_sym_LT_LT_EQ] = ACTIONS(2516), - [anon_sym_GT_GT_EQ] = ACTIONS(2516), - [anon_sym_AMP_EQ] = ACTIONS(2516), - [anon_sym_CARET_EQ] = ACTIONS(2516), - [anon_sym_PIPE_EQ] = ACTIONS(2516), - [anon_sym_AMP] = ACTIONS(2518), - [anon_sym_PIPE_PIPE] = ACTIONS(2516), - [anon_sym_AMP_AMP] = ACTIONS(2516), - [anon_sym_PIPE] = ACTIONS(2518), - [anon_sym_CARET] = ACTIONS(2518), - [anon_sym_EQ_EQ] = ACTIONS(2516), - [anon_sym_BANG_EQ] = ACTIONS(2516), - [anon_sym_LT] = ACTIONS(2518), - [anon_sym_GT] = ACTIONS(2518), - [anon_sym_LT_EQ] = ACTIONS(2516), - [anon_sym_GT_EQ] = ACTIONS(2516), - [anon_sym_LT_LT] = ACTIONS(2518), - [anon_sym_GT_GT] = ACTIONS(2518), - [anon_sym_PLUS] = ACTIONS(2518), - [anon_sym_DASH] = ACTIONS(2518), - [anon_sym_SLASH] = ACTIONS(2518), - [anon_sym_PERCENT] = ACTIONS(2518), - [anon_sym_DASH_DASH] = ACTIONS(2516), - [anon_sym_PLUS_PLUS] = ACTIONS(2516), - [anon_sym_DOT] = ACTIONS(2516), - [anon_sym_DASH_GT] = ACTIONS(2516), + [anon_sym_COMMA] = ACTIONS(2505), + [anon_sym_RPAREN] = ACTIONS(2505), + [anon_sym_SEMI] = ACTIONS(2505), + [anon_sym_RBRACE] = ACTIONS(2505), + [anon_sym_LPAREN2] = ACTIONS(2505), + [anon_sym_STAR] = ACTIONS(2507), + [anon_sym_LBRACK] = ACTIONS(2505), + [anon_sym_RBRACK] = ACTIONS(2505), + [anon_sym_EQ] = ACTIONS(2507), + [anon_sym_COLON] = ACTIONS(2505), + [anon_sym_QMARK] = ACTIONS(2505), + [anon_sym_STAR_EQ] = ACTIONS(2505), + [anon_sym_SLASH_EQ] = ACTIONS(2505), + [anon_sym_PERCENT_EQ] = ACTIONS(2505), + [anon_sym_PLUS_EQ] = ACTIONS(2505), + [anon_sym_DASH_EQ] = ACTIONS(2505), + [anon_sym_LT_LT_EQ] = ACTIONS(2505), + [anon_sym_GT_GT_EQ] = ACTIONS(2505), + [anon_sym_AMP_EQ] = ACTIONS(2505), + [anon_sym_CARET_EQ] = ACTIONS(2505), + [anon_sym_PIPE_EQ] = ACTIONS(2505), + [anon_sym_AMP] = ACTIONS(2507), + [anon_sym_PIPE_PIPE] = ACTIONS(2505), + [anon_sym_AMP_AMP] = ACTIONS(2505), + [anon_sym_PIPE] = ACTIONS(2507), + [anon_sym_CARET] = ACTIONS(2507), + [anon_sym_EQ_EQ] = ACTIONS(2505), + [anon_sym_BANG_EQ] = ACTIONS(2505), + [anon_sym_LT] = ACTIONS(2507), + [anon_sym_GT] = ACTIONS(2507), + [anon_sym_LT_EQ] = ACTIONS(2505), + [anon_sym_GT_EQ] = ACTIONS(2505), + [anon_sym_LT_LT] = ACTIONS(2507), + [anon_sym_GT_GT] = ACTIONS(2507), + [anon_sym_PLUS] = ACTIONS(2507), + [anon_sym_DASH] = ACTIONS(2507), + [anon_sym_SLASH] = ACTIONS(2507), + [anon_sym_PERCENT] = ACTIONS(2507), + [anon_sym_DASH_DASH] = ACTIONS(2505), + [anon_sym_PLUS_PLUS] = ACTIONS(2505), + [anon_sym_DOT] = ACTIONS(2505), + [anon_sym_DASH_GT] = ACTIONS(2505), [sym_comment] = ACTIONS(39), }, [728] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2520), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2520), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2520), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2520), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2520), - [sym_preproc_directive] = ACTIONS(2520), - [anon_sym_SEMI] = ACTIONS(2522), - [anon_sym_typedef] = ACTIONS(2520), - [anon_sym_extern] = ACTIONS(2520), - [anon_sym_LBRACE] = ACTIONS(2522), - [anon_sym_RBRACE] = ACTIONS(2522), - [anon_sym_LPAREN2] = ACTIONS(2522), - [anon_sym_STAR] = ACTIONS(2522), - [anon_sym_static] = ACTIONS(2520), - [anon_sym_auto] = ACTIONS(2520), - [anon_sym_register] = ACTIONS(2520), - [anon_sym_inline] = ACTIONS(2520), - [anon_sym_const] = ACTIONS(2520), - [anon_sym_restrict] = ACTIONS(2520), - [anon_sym_volatile] = ACTIONS(2520), - [anon_sym__Atomic] = ACTIONS(2520), - [anon_sym_unsigned] = ACTIONS(2520), - [anon_sym_long] = ACTIONS(2520), - [anon_sym_short] = ACTIONS(2520), - [sym_primitive_type] = ACTIONS(2520), - [anon_sym_enum] = ACTIONS(2520), - [anon_sym_struct] = ACTIONS(2520), - [anon_sym_union] = ACTIONS(2520), - [anon_sym_if] = ACTIONS(2520), - [anon_sym_else] = ACTIONS(2520), - [anon_sym_switch] = ACTIONS(2520), - [anon_sym_case] = ACTIONS(2520), - [anon_sym_default] = ACTIONS(2520), - [anon_sym_while] = ACTIONS(2520), - [anon_sym_do] = ACTIONS(2520), - [anon_sym_for] = ACTIONS(2520), - [anon_sym_return] = ACTIONS(2520), - [anon_sym_break] = ACTIONS(2520), - [anon_sym_continue] = ACTIONS(2520), - [anon_sym_goto] = ACTIONS(2520), - [anon_sym_AMP] = ACTIONS(2522), - [anon_sym_BANG] = ACTIONS(2522), - [anon_sym_TILDE] = ACTIONS(2522), - [anon_sym_PLUS] = ACTIONS(2520), - [anon_sym_DASH] = ACTIONS(2520), - [anon_sym_DASH_DASH] = ACTIONS(2522), - [anon_sym_PLUS_PLUS] = ACTIONS(2522), - [anon_sym_sizeof] = ACTIONS(2520), - [sym_number_literal] = ACTIONS(2522), - [anon_sym_SQUOTE] = ACTIONS(2522), - [anon_sym_DQUOTE] = ACTIONS(2522), - [sym_true] = ACTIONS(2520), - [sym_false] = ACTIONS(2520), - [sym_null] = ACTIONS(2520), - [sym_identifier] = ACTIONS(2520), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2509), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2509), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2509), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2509), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2509), + [sym_preproc_directive] = ACTIONS(2509), + [anon_sym_SEMI] = ACTIONS(2511), + [anon_sym_typedef] = ACTIONS(2509), + [anon_sym_extern] = ACTIONS(2509), + [anon_sym_LBRACE] = ACTIONS(2511), + [anon_sym_RBRACE] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(2511), + [anon_sym_static] = ACTIONS(2509), + [anon_sym_auto] = ACTIONS(2509), + [anon_sym_register] = ACTIONS(2509), + [anon_sym_inline] = ACTIONS(2509), + [anon_sym_const] = ACTIONS(2509), + [anon_sym_restrict] = ACTIONS(2509), + [anon_sym_volatile] = ACTIONS(2509), + [anon_sym__Atomic] = ACTIONS(2509), + [anon_sym_unsigned] = ACTIONS(2509), + [anon_sym_long] = ACTIONS(2509), + [anon_sym_short] = ACTIONS(2509), + [sym_primitive_type] = ACTIONS(2509), + [anon_sym_enum] = ACTIONS(2509), + [anon_sym_struct] = ACTIONS(2509), + [anon_sym_union] = ACTIONS(2509), + [anon_sym_if] = ACTIONS(2509), + [anon_sym_else] = ACTIONS(2509), + [anon_sym_switch] = ACTIONS(2509), + [anon_sym_case] = ACTIONS(2509), + [anon_sym_default] = ACTIONS(2509), + [anon_sym_while] = ACTIONS(2509), + [anon_sym_do] = ACTIONS(2509), + [anon_sym_for] = ACTIONS(2509), + [anon_sym_return] = ACTIONS(2509), + [anon_sym_break] = ACTIONS(2509), + [anon_sym_continue] = ACTIONS(2509), + [anon_sym_goto] = ACTIONS(2509), + [anon_sym_AMP] = ACTIONS(2511), + [anon_sym_BANG] = ACTIONS(2511), + [anon_sym_TILDE] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2509), + [anon_sym_DASH] = ACTIONS(2509), + [anon_sym_DASH_DASH] = ACTIONS(2511), + [anon_sym_PLUS_PLUS] = ACTIONS(2511), + [anon_sym_sizeof] = ACTIONS(2509), + [sym_number_literal] = ACTIONS(2511), + [anon_sym_SQUOTE] = ACTIONS(2511), + [anon_sym_DQUOTE] = ACTIONS(2511), + [sym_true] = ACTIONS(2509), + [sym_false] = ACTIONS(2509), + [sym_null] = ACTIONS(2509), + [sym_identifier] = ACTIONS(2509), [sym_comment] = ACTIONS(39), }, [729] = { [sym_argument_list] = STATE(465), - [anon_sym_COMMA] = ACTIONS(1092), - [anon_sym_SEMI] = ACTIONS(2524), - [anon_sym_LPAREN2] = ACTIONS(1096), - [anon_sym_STAR] = ACTIONS(1098), - [anon_sym_LBRACK] = ACTIONS(1100), - [anon_sym_EQ] = ACTIONS(1102), - [anon_sym_QMARK] = ACTIONS(1104), - [anon_sym_STAR_EQ] = ACTIONS(1106), - [anon_sym_SLASH_EQ] = ACTIONS(1106), - [anon_sym_PERCENT_EQ] = ACTIONS(1106), - [anon_sym_PLUS_EQ] = ACTIONS(1106), - [anon_sym_DASH_EQ] = ACTIONS(1106), - [anon_sym_LT_LT_EQ] = ACTIONS(1106), - [anon_sym_GT_GT_EQ] = ACTIONS(1106), - [anon_sym_AMP_EQ] = ACTIONS(1106), - [anon_sym_CARET_EQ] = ACTIONS(1106), - [anon_sym_PIPE_EQ] = ACTIONS(1106), - [anon_sym_AMP] = ACTIONS(1108), - [anon_sym_PIPE_PIPE] = ACTIONS(1110), - [anon_sym_AMP_AMP] = ACTIONS(1112), - [anon_sym_PIPE] = ACTIONS(1114), - [anon_sym_CARET] = ACTIONS(1116), - [anon_sym_EQ_EQ] = ACTIONS(1118), - [anon_sym_BANG_EQ] = ACTIONS(1118), - [anon_sym_LT] = ACTIONS(1120), - [anon_sym_GT] = ACTIONS(1120), - [anon_sym_LT_EQ] = ACTIONS(1122), - [anon_sym_GT_EQ] = ACTIONS(1122), - [anon_sym_LT_LT] = ACTIONS(1124), - [anon_sym_GT_GT] = ACTIONS(1124), - [anon_sym_PLUS] = ACTIONS(1126), - [anon_sym_DASH] = ACTIONS(1126), - [anon_sym_SLASH] = ACTIONS(1098), - [anon_sym_PERCENT] = ACTIONS(1098), - [anon_sym_DASH_DASH] = ACTIONS(1128), - [anon_sym_PLUS_PLUS] = ACTIONS(1128), - [anon_sym_DOT] = ACTIONS(1130), - [anon_sym_DASH_GT] = ACTIONS(1130), + [anon_sym_COMMA] = ACTIONS(1085), + [anon_sym_SEMI] = ACTIONS(2513), + [anon_sym_LPAREN2] = ACTIONS(1089), + [anon_sym_STAR] = ACTIONS(1091), + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(1095), + [anon_sym_QMARK] = ACTIONS(1097), + [anon_sym_STAR_EQ] = ACTIONS(1099), + [anon_sym_SLASH_EQ] = ACTIONS(1099), + [anon_sym_PERCENT_EQ] = ACTIONS(1099), + [anon_sym_PLUS_EQ] = ACTIONS(1099), + [anon_sym_DASH_EQ] = ACTIONS(1099), + [anon_sym_LT_LT_EQ] = ACTIONS(1099), + [anon_sym_GT_GT_EQ] = ACTIONS(1099), + [anon_sym_AMP_EQ] = ACTIONS(1099), + [anon_sym_CARET_EQ] = ACTIONS(1099), + [anon_sym_PIPE_EQ] = ACTIONS(1099), + [anon_sym_AMP] = ACTIONS(1101), + [anon_sym_PIPE_PIPE] = ACTIONS(1103), + [anon_sym_AMP_AMP] = ACTIONS(1105), + [anon_sym_PIPE] = ACTIONS(1107), + [anon_sym_CARET] = ACTIONS(1109), + [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(1115), + [anon_sym_GT_EQ] = ACTIONS(1115), + [anon_sym_LT_LT] = ACTIONS(1117), + [anon_sym_GT_GT] = ACTIONS(1117), + [anon_sym_PLUS] = ACTIONS(1119), + [anon_sym_DASH] = ACTIONS(1119), + [anon_sym_SLASH] = ACTIONS(1091), + [anon_sym_PERCENT] = ACTIONS(1091), + [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_PLUS_PLUS] = ACTIONS(1121), + [anon_sym_DOT] = ACTIONS(1123), + [anon_sym_DASH_GT] = ACTIONS(1123), [sym_comment] = ACTIONS(39), }, [730] = { - [anon_sym_RPAREN] = ACTIONS(2524), - [anon_sym_SEMI] = ACTIONS(2524), + [anon_sym_RPAREN] = ACTIONS(2513), + [anon_sym_SEMI] = ACTIONS(2513), [sym_comment] = ACTIONS(39), }, [731] = { - [anon_sym_COMMA] = ACTIONS(2526), - [anon_sym_RPAREN] = ACTIONS(2526), - [anon_sym_SEMI] = ACTIONS(2526), - [anon_sym_RBRACE] = ACTIONS(2526), - [anon_sym_LPAREN2] = ACTIONS(2526), - [anon_sym_STAR] = ACTIONS(2528), - [anon_sym_LBRACK] = ACTIONS(2526), - [anon_sym_RBRACK] = ACTIONS(2526), - [anon_sym_EQ] = ACTIONS(2528), - [anon_sym_COLON] = ACTIONS(2526), - [anon_sym_QMARK] = ACTIONS(2526), - [anon_sym_STAR_EQ] = ACTIONS(2526), - [anon_sym_SLASH_EQ] = ACTIONS(2526), - [anon_sym_PERCENT_EQ] = ACTIONS(2526), - [anon_sym_PLUS_EQ] = ACTIONS(2526), - [anon_sym_DASH_EQ] = ACTIONS(2526), - [anon_sym_LT_LT_EQ] = ACTIONS(2526), - [anon_sym_GT_GT_EQ] = ACTIONS(2526), - [anon_sym_AMP_EQ] = ACTIONS(2526), - [anon_sym_CARET_EQ] = ACTIONS(2526), - [anon_sym_PIPE_EQ] = ACTIONS(2526), - [anon_sym_AMP] = ACTIONS(2528), - [anon_sym_PIPE_PIPE] = ACTIONS(2526), - [anon_sym_AMP_AMP] = ACTIONS(2526), - [anon_sym_PIPE] = ACTIONS(2528), - [anon_sym_CARET] = ACTIONS(2528), - [anon_sym_EQ_EQ] = ACTIONS(2526), - [anon_sym_BANG_EQ] = ACTIONS(2526), - [anon_sym_LT] = ACTIONS(2528), - [anon_sym_GT] = ACTIONS(2528), - [anon_sym_LT_EQ] = ACTIONS(2526), - [anon_sym_GT_EQ] = ACTIONS(2526), - [anon_sym_LT_LT] = ACTIONS(2528), - [anon_sym_GT_GT] = ACTIONS(2528), - [anon_sym_PLUS] = ACTIONS(2528), - [anon_sym_DASH] = ACTIONS(2528), - [anon_sym_SLASH] = ACTIONS(2528), - [anon_sym_PERCENT] = ACTIONS(2528), - [anon_sym_DASH_DASH] = ACTIONS(2526), - [anon_sym_PLUS_PLUS] = ACTIONS(2526), - [anon_sym_DOT] = ACTIONS(2526), - [anon_sym_DASH_GT] = ACTIONS(2526), + [anon_sym_COMMA] = ACTIONS(2515), + [anon_sym_RPAREN] = ACTIONS(2515), + [anon_sym_SEMI] = ACTIONS(2515), + [anon_sym_RBRACE] = ACTIONS(2515), + [anon_sym_LPAREN2] = ACTIONS(2515), + [anon_sym_STAR] = ACTIONS(2517), + [anon_sym_LBRACK] = ACTIONS(2515), + [anon_sym_RBRACK] = ACTIONS(2515), + [anon_sym_EQ] = ACTIONS(2517), + [anon_sym_COLON] = ACTIONS(2515), + [anon_sym_QMARK] = ACTIONS(2515), + [anon_sym_STAR_EQ] = ACTIONS(2515), + [anon_sym_SLASH_EQ] = ACTIONS(2515), + [anon_sym_PERCENT_EQ] = ACTIONS(2515), + [anon_sym_PLUS_EQ] = ACTIONS(2515), + [anon_sym_DASH_EQ] = ACTIONS(2515), + [anon_sym_LT_LT_EQ] = ACTIONS(2515), + [anon_sym_GT_GT_EQ] = ACTIONS(2515), + [anon_sym_AMP_EQ] = ACTIONS(2515), + [anon_sym_CARET_EQ] = ACTIONS(2515), + [anon_sym_PIPE_EQ] = ACTIONS(2515), + [anon_sym_AMP] = ACTIONS(2517), + [anon_sym_PIPE_PIPE] = ACTIONS(2515), + [anon_sym_AMP_AMP] = ACTIONS(2515), + [anon_sym_PIPE] = ACTIONS(2517), + [anon_sym_CARET] = ACTIONS(2517), + [anon_sym_EQ_EQ] = ACTIONS(2515), + [anon_sym_BANG_EQ] = ACTIONS(2515), + [anon_sym_LT] = ACTIONS(2517), + [anon_sym_GT] = ACTIONS(2517), + [anon_sym_LT_EQ] = ACTIONS(2515), + [anon_sym_GT_EQ] = ACTIONS(2515), + [anon_sym_LT_LT] = ACTIONS(2517), + [anon_sym_GT_GT] = ACTIONS(2517), + [anon_sym_PLUS] = ACTIONS(2517), + [anon_sym_DASH] = ACTIONS(2517), + [anon_sym_SLASH] = ACTIONS(2517), + [anon_sym_PERCENT] = ACTIONS(2517), + [anon_sym_DASH_DASH] = ACTIONS(2515), + [anon_sym_PLUS_PLUS] = ACTIONS(2515), + [anon_sym_DOT] = ACTIONS(2515), + [anon_sym_DASH_GT] = ACTIONS(2515), [sym_comment] = ACTIONS(39), }, [732] = { [sym_argument_list] = STATE(465), [aux_sym_for_statement_repeat1] = STATE(968), - [anon_sym_COMMA] = ACTIONS(2530), - [anon_sym_RPAREN] = ACTIONS(2532), - [anon_sym_LPAREN2] = ACTIONS(1096), - [anon_sym_STAR] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1100), - [anon_sym_EQ] = ACTIONS(1562), - [anon_sym_QMARK] = ACTIONS(1564), - [anon_sym_STAR_EQ] = ACTIONS(1566), - [anon_sym_SLASH_EQ] = ACTIONS(1566), - [anon_sym_PERCENT_EQ] = ACTIONS(1566), - [anon_sym_PLUS_EQ] = ACTIONS(1566), - [anon_sym_DASH_EQ] = ACTIONS(1566), - [anon_sym_LT_LT_EQ] = ACTIONS(1566), - [anon_sym_GT_GT_EQ] = ACTIONS(1566), - [anon_sym_AMP_EQ] = ACTIONS(1566), - [anon_sym_CARET_EQ] = ACTIONS(1566), - [anon_sym_PIPE_EQ] = ACTIONS(1566), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_PIPE_PIPE] = ACTIONS(1570), - [anon_sym_AMP_AMP] = ACTIONS(1572), - [anon_sym_PIPE] = ACTIONS(1574), - [anon_sym_CARET] = ACTIONS(1576), - [anon_sym_EQ_EQ] = ACTIONS(1578), - [anon_sym_BANG_EQ] = ACTIONS(1578), - [anon_sym_LT] = ACTIONS(1580), - [anon_sym_GT] = ACTIONS(1580), - [anon_sym_LT_EQ] = ACTIONS(1582), - [anon_sym_GT_EQ] = ACTIONS(1582), - [anon_sym_LT_LT] = ACTIONS(1584), - [anon_sym_GT_GT] = ACTIONS(1584), - [anon_sym_PLUS] = ACTIONS(1586), - [anon_sym_DASH] = ACTIONS(1586), - [anon_sym_SLASH] = ACTIONS(1560), - [anon_sym_PERCENT] = ACTIONS(1560), - [anon_sym_DASH_DASH] = ACTIONS(1128), - [anon_sym_PLUS_PLUS] = ACTIONS(1128), - [anon_sym_DOT] = ACTIONS(1130), - [anon_sym_DASH_GT] = ACTIONS(1130), + [anon_sym_COMMA] = ACTIONS(2519), + [anon_sym_RPAREN] = ACTIONS(2521), + [anon_sym_LPAREN2] = ACTIONS(1089), + [anon_sym_STAR] = ACTIONS(1549), + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(1551), + [anon_sym_QMARK] = ACTIONS(1553), + [anon_sym_STAR_EQ] = ACTIONS(1555), + [anon_sym_SLASH_EQ] = ACTIONS(1555), + [anon_sym_PERCENT_EQ] = ACTIONS(1555), + [anon_sym_PLUS_EQ] = ACTIONS(1555), + [anon_sym_DASH_EQ] = ACTIONS(1555), + [anon_sym_LT_LT_EQ] = ACTIONS(1555), + [anon_sym_GT_GT_EQ] = ACTIONS(1555), + [anon_sym_AMP_EQ] = ACTIONS(1555), + [anon_sym_CARET_EQ] = ACTIONS(1555), + [anon_sym_PIPE_EQ] = ACTIONS(1555), + [anon_sym_AMP] = ACTIONS(1557), + [anon_sym_PIPE_PIPE] = ACTIONS(1559), + [anon_sym_AMP_AMP] = ACTIONS(1561), + [anon_sym_PIPE] = ACTIONS(1563), + [anon_sym_CARET] = ACTIONS(1565), + [anon_sym_EQ_EQ] = ACTIONS(1567), + [anon_sym_BANG_EQ] = ACTIONS(1567), + [anon_sym_LT] = ACTIONS(1569), + [anon_sym_GT] = ACTIONS(1569), + [anon_sym_LT_EQ] = ACTIONS(1571), + [anon_sym_GT_EQ] = ACTIONS(1571), + [anon_sym_LT_LT] = ACTIONS(1573), + [anon_sym_GT_GT] = ACTIONS(1573), + [anon_sym_PLUS] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(1575), + [anon_sym_SLASH] = ACTIONS(1549), + [anon_sym_PERCENT] = ACTIONS(1549), + [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_PLUS_PLUS] = ACTIONS(1121), + [anon_sym_DOT] = ACTIONS(1123), + [anon_sym_DASH_GT] = ACTIONS(1123), [sym_comment] = ACTIONS(39), }, [733] = { [sym_argument_list] = STATE(465), - [anon_sym_COMMA] = ACTIONS(2534), - [anon_sym_RPAREN] = ACTIONS(2534), - [anon_sym_SEMI] = ACTIONS(2534), - [anon_sym_RBRACE] = ACTIONS(2534), - [anon_sym_LPAREN2] = ACTIONS(1096), - [anon_sym_STAR] = ACTIONS(2536), - [anon_sym_LBRACK] = ACTIONS(1100), - [anon_sym_RBRACK] = ACTIONS(2534), - [anon_sym_EQ] = ACTIONS(2536), - [anon_sym_COLON] = ACTIONS(2534), - [anon_sym_QMARK] = ACTIONS(2534), - [anon_sym_STAR_EQ] = ACTIONS(2534), - [anon_sym_SLASH_EQ] = ACTIONS(2534), - [anon_sym_PERCENT_EQ] = ACTIONS(2534), - [anon_sym_PLUS_EQ] = ACTIONS(2534), - [anon_sym_DASH_EQ] = ACTIONS(2534), - [anon_sym_LT_LT_EQ] = ACTIONS(2534), - [anon_sym_GT_GT_EQ] = ACTIONS(2534), - [anon_sym_AMP_EQ] = ACTIONS(2534), - [anon_sym_CARET_EQ] = ACTIONS(2534), - [anon_sym_PIPE_EQ] = ACTIONS(2534), - [anon_sym_AMP] = ACTIONS(2536), - [anon_sym_PIPE_PIPE] = ACTIONS(2534), - [anon_sym_AMP_AMP] = ACTIONS(2534), - [anon_sym_PIPE] = ACTIONS(2536), - [anon_sym_CARET] = ACTIONS(2536), - [anon_sym_EQ_EQ] = ACTIONS(2534), - [anon_sym_BANG_EQ] = ACTIONS(2534), - [anon_sym_LT] = ACTIONS(2536), - [anon_sym_GT] = ACTIONS(2536), - [anon_sym_LT_EQ] = ACTIONS(2534), - [anon_sym_GT_EQ] = ACTIONS(2534), - [anon_sym_LT_LT] = ACTIONS(2536), - [anon_sym_GT_GT] = ACTIONS(2536), - [anon_sym_PLUS] = ACTIONS(2536), - [anon_sym_DASH] = ACTIONS(2536), - [anon_sym_SLASH] = ACTIONS(2536), - [anon_sym_PERCENT] = ACTIONS(2536), - [anon_sym_DASH_DASH] = ACTIONS(1128), - [anon_sym_PLUS_PLUS] = ACTIONS(1128), - [anon_sym_DOT] = ACTIONS(1130), - [anon_sym_DASH_GT] = ACTIONS(1130), + [anon_sym_COMMA] = ACTIONS(2523), + [anon_sym_RPAREN] = ACTIONS(2523), + [anon_sym_SEMI] = ACTIONS(2523), + [anon_sym_RBRACE] = ACTIONS(2523), + [anon_sym_LPAREN2] = ACTIONS(1089), + [anon_sym_STAR] = ACTIONS(2525), + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_RBRACK] = ACTIONS(2523), + [anon_sym_EQ] = ACTIONS(2525), + [anon_sym_COLON] = ACTIONS(2523), + [anon_sym_QMARK] = ACTIONS(2523), + [anon_sym_STAR_EQ] = ACTIONS(2523), + [anon_sym_SLASH_EQ] = ACTIONS(2523), + [anon_sym_PERCENT_EQ] = ACTIONS(2523), + [anon_sym_PLUS_EQ] = ACTIONS(2523), + [anon_sym_DASH_EQ] = ACTIONS(2523), + [anon_sym_LT_LT_EQ] = ACTIONS(2523), + [anon_sym_GT_GT_EQ] = ACTIONS(2523), + [anon_sym_AMP_EQ] = ACTIONS(2523), + [anon_sym_CARET_EQ] = ACTIONS(2523), + [anon_sym_PIPE_EQ] = ACTIONS(2523), + [anon_sym_AMP] = ACTIONS(2525), + [anon_sym_PIPE_PIPE] = ACTIONS(2523), + [anon_sym_AMP_AMP] = ACTIONS(2523), + [anon_sym_PIPE] = ACTIONS(2525), + [anon_sym_CARET] = ACTIONS(2525), + [anon_sym_EQ_EQ] = ACTIONS(2523), + [anon_sym_BANG_EQ] = ACTIONS(2523), + [anon_sym_LT] = ACTIONS(2525), + [anon_sym_GT] = ACTIONS(2525), + [anon_sym_LT_EQ] = ACTIONS(2523), + [anon_sym_GT_EQ] = ACTIONS(2523), + [anon_sym_LT_LT] = ACTIONS(2525), + [anon_sym_GT_GT] = ACTIONS(2525), + [anon_sym_PLUS] = ACTIONS(2525), + [anon_sym_DASH] = ACTIONS(2525), + [anon_sym_SLASH] = ACTIONS(2525), + [anon_sym_PERCENT] = ACTIONS(2525), + [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_PLUS_PLUS] = ACTIONS(1121), + [anon_sym_DOT] = ACTIONS(1123), + [anon_sym_DASH_GT] = ACTIONS(1123), [sym_comment] = ACTIONS(39), }, [734] = { [sym_argument_list] = STATE(465), - [anon_sym_LPAREN2] = ACTIONS(1096), - [anon_sym_STAR] = ACTIONS(1166), - [anon_sym_LBRACK] = ACTIONS(1100), - [anon_sym_RBRACK] = ACTIONS(2538), - [anon_sym_EQ] = ACTIONS(1168), - [anon_sym_QMARK] = ACTIONS(1170), - [anon_sym_STAR_EQ] = ACTIONS(1172), - [anon_sym_SLASH_EQ] = ACTIONS(1172), - [anon_sym_PERCENT_EQ] = ACTIONS(1172), - [anon_sym_PLUS_EQ] = ACTIONS(1172), - [anon_sym_DASH_EQ] = ACTIONS(1172), - [anon_sym_LT_LT_EQ] = ACTIONS(1172), - [anon_sym_GT_GT_EQ] = ACTIONS(1172), - [anon_sym_AMP_EQ] = ACTIONS(1172), - [anon_sym_CARET_EQ] = ACTIONS(1172), - [anon_sym_PIPE_EQ] = ACTIONS(1172), - [anon_sym_AMP] = ACTIONS(1174), - [anon_sym_PIPE_PIPE] = ACTIONS(1176), - [anon_sym_AMP_AMP] = ACTIONS(1178), - [anon_sym_PIPE] = ACTIONS(1180), - [anon_sym_CARET] = ACTIONS(1182), - [anon_sym_EQ_EQ] = ACTIONS(1184), - [anon_sym_BANG_EQ] = ACTIONS(1184), - [anon_sym_LT] = ACTIONS(1186), - [anon_sym_GT] = ACTIONS(1186), - [anon_sym_LT_EQ] = ACTIONS(1188), - [anon_sym_GT_EQ] = ACTIONS(1188), - [anon_sym_LT_LT] = ACTIONS(1190), - [anon_sym_GT_GT] = ACTIONS(1190), - [anon_sym_PLUS] = ACTIONS(1192), - [anon_sym_DASH] = ACTIONS(1192), - [anon_sym_SLASH] = ACTIONS(1166), - [anon_sym_PERCENT] = ACTIONS(1166), - [anon_sym_DASH_DASH] = ACTIONS(1128), - [anon_sym_PLUS_PLUS] = ACTIONS(1128), - [anon_sym_DOT] = ACTIONS(1130), - [anon_sym_DASH_GT] = ACTIONS(1130), + [anon_sym_LPAREN2] = ACTIONS(1089), + [anon_sym_STAR] = ACTIONS(1159), + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_RBRACK] = ACTIONS(2527), + [anon_sym_EQ] = ACTIONS(1161), + [anon_sym_QMARK] = ACTIONS(1163), + [anon_sym_STAR_EQ] = ACTIONS(1165), + [anon_sym_SLASH_EQ] = ACTIONS(1165), + [anon_sym_PERCENT_EQ] = ACTIONS(1165), + [anon_sym_PLUS_EQ] = ACTIONS(1165), + [anon_sym_DASH_EQ] = ACTIONS(1165), + [anon_sym_LT_LT_EQ] = ACTIONS(1165), + [anon_sym_GT_GT_EQ] = ACTIONS(1165), + [anon_sym_AMP_EQ] = ACTIONS(1165), + [anon_sym_CARET_EQ] = ACTIONS(1165), + [anon_sym_PIPE_EQ] = ACTIONS(1165), + [anon_sym_AMP] = ACTIONS(1167), + [anon_sym_PIPE_PIPE] = ACTIONS(1169), + [anon_sym_AMP_AMP] = ACTIONS(1171), + [anon_sym_PIPE] = ACTIONS(1173), + [anon_sym_CARET] = ACTIONS(1175), + [anon_sym_EQ_EQ] = ACTIONS(1177), + [anon_sym_BANG_EQ] = ACTIONS(1177), + [anon_sym_LT] = ACTIONS(1179), + [anon_sym_GT] = ACTIONS(1179), + [anon_sym_LT_EQ] = ACTIONS(1181), + [anon_sym_GT_EQ] = ACTIONS(1181), + [anon_sym_LT_LT] = ACTIONS(1183), + [anon_sym_GT_GT] = ACTIONS(1183), + [anon_sym_PLUS] = ACTIONS(1185), + [anon_sym_DASH] = ACTIONS(1185), + [anon_sym_SLASH] = ACTIONS(1159), + [anon_sym_PERCENT] = ACTIONS(1159), + [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_PLUS_PLUS] = ACTIONS(1121), + [anon_sym_DOT] = ACTIONS(1123), + [anon_sym_DASH_GT] = ACTIONS(1123), [sym_comment] = ACTIONS(39), }, [735] = { [sym_argument_list] = STATE(465), - [anon_sym_COMMA] = ACTIONS(2540), - [anon_sym_SEMI] = ACTIONS(2540), - [anon_sym_LPAREN2] = ACTIONS(1096), - [anon_sym_STAR] = ACTIONS(1098), - [anon_sym_LBRACK] = ACTIONS(1100), - [anon_sym_EQ] = ACTIONS(1102), - [anon_sym_QMARK] = ACTIONS(2540), - [anon_sym_STAR_EQ] = ACTIONS(1106), - [anon_sym_SLASH_EQ] = ACTIONS(1106), - [anon_sym_PERCENT_EQ] = ACTIONS(1106), - [anon_sym_PLUS_EQ] = ACTIONS(1106), - [anon_sym_DASH_EQ] = ACTIONS(1106), - [anon_sym_LT_LT_EQ] = ACTIONS(1106), - [anon_sym_GT_GT_EQ] = ACTIONS(1106), - [anon_sym_AMP_EQ] = ACTIONS(1106), - [anon_sym_CARET_EQ] = ACTIONS(1106), - [anon_sym_PIPE_EQ] = ACTIONS(1106), - [anon_sym_AMP] = ACTIONS(1108), - [anon_sym_PIPE_PIPE] = ACTIONS(1110), - [anon_sym_AMP_AMP] = ACTIONS(1112), - [anon_sym_PIPE] = ACTIONS(1114), - [anon_sym_CARET] = ACTIONS(1116), - [anon_sym_EQ_EQ] = ACTIONS(1118), - [anon_sym_BANG_EQ] = ACTIONS(1118), - [anon_sym_LT] = ACTIONS(1120), - [anon_sym_GT] = ACTIONS(1120), - [anon_sym_LT_EQ] = ACTIONS(1122), - [anon_sym_GT_EQ] = ACTIONS(1122), - [anon_sym_LT_LT] = ACTIONS(1124), - [anon_sym_GT_GT] = ACTIONS(1124), - [anon_sym_PLUS] = ACTIONS(1126), - [anon_sym_DASH] = ACTIONS(1126), - [anon_sym_SLASH] = ACTIONS(1098), - [anon_sym_PERCENT] = ACTIONS(1098), - [anon_sym_DASH_DASH] = ACTIONS(1128), - [anon_sym_PLUS_PLUS] = ACTIONS(1128), - [anon_sym_DOT] = ACTIONS(1130), - [anon_sym_DASH_GT] = ACTIONS(1130), + [anon_sym_COMMA] = ACTIONS(2529), + [anon_sym_SEMI] = ACTIONS(2529), + [anon_sym_LPAREN2] = ACTIONS(1089), + [anon_sym_STAR] = ACTIONS(1091), + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(1095), + [anon_sym_QMARK] = ACTIONS(2529), + [anon_sym_STAR_EQ] = ACTIONS(1099), + [anon_sym_SLASH_EQ] = ACTIONS(1099), + [anon_sym_PERCENT_EQ] = ACTIONS(1099), + [anon_sym_PLUS_EQ] = ACTIONS(1099), + [anon_sym_DASH_EQ] = ACTIONS(1099), + [anon_sym_LT_LT_EQ] = ACTIONS(1099), + [anon_sym_GT_GT_EQ] = ACTIONS(1099), + [anon_sym_AMP_EQ] = ACTIONS(1099), + [anon_sym_CARET_EQ] = ACTIONS(1099), + [anon_sym_PIPE_EQ] = ACTIONS(1099), + [anon_sym_AMP] = ACTIONS(1101), + [anon_sym_PIPE_PIPE] = ACTIONS(1103), + [anon_sym_AMP_AMP] = ACTIONS(1105), + [anon_sym_PIPE] = ACTIONS(1107), + [anon_sym_CARET] = ACTIONS(1109), + [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(1115), + [anon_sym_GT_EQ] = ACTIONS(1115), + [anon_sym_LT_LT] = ACTIONS(1117), + [anon_sym_GT_GT] = ACTIONS(1117), + [anon_sym_PLUS] = ACTIONS(1119), + [anon_sym_DASH] = ACTIONS(1119), + [anon_sym_SLASH] = ACTIONS(1091), + [anon_sym_PERCENT] = ACTIONS(1091), + [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_PLUS_PLUS] = ACTIONS(1121), + [anon_sym_DOT] = ACTIONS(1123), + [anon_sym_DASH_GT] = ACTIONS(1123), [sym_comment] = ACTIONS(39), }, [736] = { [sym_argument_list] = STATE(465), - [anon_sym_LPAREN2] = ACTIONS(1096), - [anon_sym_STAR] = ACTIONS(1620), - [anon_sym_LBRACK] = ACTIONS(1100), - [anon_sym_EQ] = ACTIONS(1622), - [anon_sym_COLON] = ACTIONS(2542), - [anon_sym_QMARK] = ACTIONS(1626), - [anon_sym_STAR_EQ] = ACTIONS(1628), - [anon_sym_SLASH_EQ] = ACTIONS(1628), - [anon_sym_PERCENT_EQ] = ACTIONS(1628), - [anon_sym_PLUS_EQ] = ACTIONS(1628), - [anon_sym_DASH_EQ] = ACTIONS(1628), - [anon_sym_LT_LT_EQ] = ACTIONS(1628), - [anon_sym_GT_GT_EQ] = ACTIONS(1628), - [anon_sym_AMP_EQ] = ACTIONS(1628), - [anon_sym_CARET_EQ] = ACTIONS(1628), - [anon_sym_PIPE_EQ] = ACTIONS(1628), - [anon_sym_AMP] = ACTIONS(1630), - [anon_sym_PIPE_PIPE] = ACTIONS(1632), - [anon_sym_AMP_AMP] = ACTIONS(1634), - [anon_sym_PIPE] = ACTIONS(1636), - [anon_sym_CARET] = ACTIONS(1638), - [anon_sym_EQ_EQ] = ACTIONS(1640), - [anon_sym_BANG_EQ] = ACTIONS(1640), - [anon_sym_LT] = ACTIONS(1642), - [anon_sym_GT] = ACTIONS(1642), - [anon_sym_LT_EQ] = ACTIONS(1644), - [anon_sym_GT_EQ] = ACTIONS(1644), - [anon_sym_LT_LT] = ACTIONS(1646), - [anon_sym_GT_GT] = ACTIONS(1646), - [anon_sym_PLUS] = ACTIONS(1648), - [anon_sym_DASH] = ACTIONS(1648), - [anon_sym_SLASH] = ACTIONS(1620), - [anon_sym_PERCENT] = ACTIONS(1620), - [anon_sym_DASH_DASH] = ACTIONS(1128), - [anon_sym_PLUS_PLUS] = ACTIONS(1128), - [anon_sym_DOT] = ACTIONS(1130), - [anon_sym_DASH_GT] = ACTIONS(1130), + [anon_sym_LPAREN2] = ACTIONS(1089), + [anon_sym_STAR] = ACTIONS(1609), + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(1611), + [anon_sym_COLON] = ACTIONS(2531), + [anon_sym_QMARK] = ACTIONS(1615), + [anon_sym_STAR_EQ] = ACTIONS(1617), + [anon_sym_SLASH_EQ] = ACTIONS(1617), + [anon_sym_PERCENT_EQ] = ACTIONS(1617), + [anon_sym_PLUS_EQ] = ACTIONS(1617), + [anon_sym_DASH_EQ] = ACTIONS(1617), + [anon_sym_LT_LT_EQ] = ACTIONS(1617), + [anon_sym_GT_GT_EQ] = ACTIONS(1617), + [anon_sym_AMP_EQ] = ACTIONS(1617), + [anon_sym_CARET_EQ] = ACTIONS(1617), + [anon_sym_PIPE_EQ] = ACTIONS(1617), + [anon_sym_AMP] = ACTIONS(1619), + [anon_sym_PIPE_PIPE] = ACTIONS(1621), + [anon_sym_AMP_AMP] = ACTIONS(1623), + [anon_sym_PIPE] = ACTIONS(1625), + [anon_sym_CARET] = ACTIONS(1627), + [anon_sym_EQ_EQ] = ACTIONS(1629), + [anon_sym_BANG_EQ] = ACTIONS(1629), + [anon_sym_LT] = ACTIONS(1631), + [anon_sym_GT] = ACTIONS(1631), + [anon_sym_LT_EQ] = ACTIONS(1633), + [anon_sym_GT_EQ] = ACTIONS(1633), + [anon_sym_LT_LT] = ACTIONS(1635), + [anon_sym_GT_GT] = ACTIONS(1635), + [anon_sym_PLUS] = ACTIONS(1637), + [anon_sym_DASH] = ACTIONS(1637), + [anon_sym_SLASH] = ACTIONS(1609), + [anon_sym_PERCENT] = ACTIONS(1609), + [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_PLUS_PLUS] = ACTIONS(1121), + [anon_sym_DOT] = ACTIONS(1123), + [anon_sym_DASH_GT] = ACTIONS(1123), [sym_comment] = ACTIONS(39), }, [737] = { [sym_argument_list] = STATE(465), - [anon_sym_COMMA] = ACTIONS(2544), - [anon_sym_SEMI] = ACTIONS(2544), - [anon_sym_LPAREN2] = ACTIONS(1096), - [anon_sym_STAR] = ACTIONS(1098), - [anon_sym_LBRACK] = ACTIONS(1100), - [anon_sym_EQ] = ACTIONS(2546), - [anon_sym_QMARK] = ACTIONS(2544), - [anon_sym_STAR_EQ] = ACTIONS(2544), - [anon_sym_SLASH_EQ] = ACTIONS(2544), - [anon_sym_PERCENT_EQ] = ACTIONS(2544), - [anon_sym_PLUS_EQ] = ACTIONS(2544), - [anon_sym_DASH_EQ] = ACTIONS(2544), - [anon_sym_LT_LT_EQ] = ACTIONS(2544), - [anon_sym_GT_GT_EQ] = ACTIONS(2544), - [anon_sym_AMP_EQ] = ACTIONS(2544), - [anon_sym_CARET_EQ] = ACTIONS(2544), - [anon_sym_PIPE_EQ] = ACTIONS(2544), - [anon_sym_AMP] = ACTIONS(2546), - [anon_sym_PIPE_PIPE] = ACTIONS(2544), - [anon_sym_AMP_AMP] = ACTIONS(2544), - [anon_sym_PIPE] = ACTIONS(2546), - [anon_sym_CARET] = ACTIONS(2546), - [anon_sym_EQ_EQ] = ACTIONS(1118), - [anon_sym_BANG_EQ] = ACTIONS(1118), - [anon_sym_LT] = ACTIONS(1120), - [anon_sym_GT] = ACTIONS(1120), - [anon_sym_LT_EQ] = ACTIONS(1122), - [anon_sym_GT_EQ] = ACTIONS(1122), - [anon_sym_LT_LT] = ACTIONS(1124), - [anon_sym_GT_GT] = ACTIONS(1124), - [anon_sym_PLUS] = ACTIONS(1126), - [anon_sym_DASH] = ACTIONS(1126), - [anon_sym_SLASH] = ACTIONS(1098), - [anon_sym_PERCENT] = ACTIONS(1098), - [anon_sym_DASH_DASH] = ACTIONS(1128), - [anon_sym_PLUS_PLUS] = ACTIONS(1128), - [anon_sym_DOT] = ACTIONS(1130), - [anon_sym_DASH_GT] = ACTIONS(1130), + [anon_sym_COMMA] = ACTIONS(2533), + [anon_sym_SEMI] = ACTIONS(2533), + [anon_sym_LPAREN2] = ACTIONS(1089), + [anon_sym_STAR] = ACTIONS(1091), + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(2535), + [anon_sym_QMARK] = ACTIONS(2533), + [anon_sym_STAR_EQ] = ACTIONS(2533), + [anon_sym_SLASH_EQ] = ACTIONS(2533), + [anon_sym_PERCENT_EQ] = ACTIONS(2533), + [anon_sym_PLUS_EQ] = ACTIONS(2533), + [anon_sym_DASH_EQ] = ACTIONS(2533), + [anon_sym_LT_LT_EQ] = ACTIONS(2533), + [anon_sym_GT_GT_EQ] = ACTIONS(2533), + [anon_sym_AMP_EQ] = ACTIONS(2533), + [anon_sym_CARET_EQ] = ACTIONS(2533), + [anon_sym_PIPE_EQ] = ACTIONS(2533), + [anon_sym_AMP] = ACTIONS(2535), + [anon_sym_PIPE_PIPE] = ACTIONS(2533), + [anon_sym_AMP_AMP] = ACTIONS(2533), + [anon_sym_PIPE] = ACTIONS(2535), + [anon_sym_CARET] = ACTIONS(2535), + [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(1115), + [anon_sym_GT_EQ] = ACTIONS(1115), + [anon_sym_LT_LT] = ACTIONS(1117), + [anon_sym_GT_GT] = ACTIONS(1117), + [anon_sym_PLUS] = ACTIONS(1119), + [anon_sym_DASH] = ACTIONS(1119), + [anon_sym_SLASH] = ACTIONS(1091), + [anon_sym_PERCENT] = ACTIONS(1091), + [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_PLUS_PLUS] = ACTIONS(1121), + [anon_sym_DOT] = ACTIONS(1123), + [anon_sym_DASH_GT] = ACTIONS(1123), [sym_comment] = ACTIONS(39), }, [738] = { [sym_argument_list] = STATE(465), - [anon_sym_COMMA] = ACTIONS(2548), - [anon_sym_SEMI] = ACTIONS(2548), - [anon_sym_LPAREN2] = ACTIONS(1096), - [anon_sym_STAR] = ACTIONS(1098), - [anon_sym_LBRACK] = ACTIONS(1100), - [anon_sym_EQ] = ACTIONS(2550), - [anon_sym_QMARK] = ACTIONS(2548), - [anon_sym_STAR_EQ] = ACTIONS(2548), - [anon_sym_SLASH_EQ] = ACTIONS(2548), - [anon_sym_PERCENT_EQ] = ACTIONS(2548), - [anon_sym_PLUS_EQ] = ACTIONS(2548), - [anon_sym_DASH_EQ] = ACTIONS(2548), - [anon_sym_LT_LT_EQ] = ACTIONS(2548), - [anon_sym_GT_GT_EQ] = ACTIONS(2548), - [anon_sym_AMP_EQ] = ACTIONS(2548), - [anon_sym_CARET_EQ] = ACTIONS(2548), - [anon_sym_PIPE_EQ] = ACTIONS(2548), - [anon_sym_AMP] = ACTIONS(1108), - [anon_sym_PIPE_PIPE] = ACTIONS(2548), - [anon_sym_AMP_AMP] = ACTIONS(1112), - [anon_sym_PIPE] = ACTIONS(1114), - [anon_sym_CARET] = ACTIONS(1116), - [anon_sym_EQ_EQ] = ACTIONS(1118), - [anon_sym_BANG_EQ] = ACTIONS(1118), - [anon_sym_LT] = ACTIONS(1120), - [anon_sym_GT] = ACTIONS(1120), - [anon_sym_LT_EQ] = ACTIONS(1122), - [anon_sym_GT_EQ] = ACTIONS(1122), - [anon_sym_LT_LT] = ACTIONS(1124), - [anon_sym_GT_GT] = ACTIONS(1124), - [anon_sym_PLUS] = ACTIONS(1126), - [anon_sym_DASH] = ACTIONS(1126), - [anon_sym_SLASH] = ACTIONS(1098), - [anon_sym_PERCENT] = ACTIONS(1098), - [anon_sym_DASH_DASH] = ACTIONS(1128), - [anon_sym_PLUS_PLUS] = ACTIONS(1128), - [anon_sym_DOT] = ACTIONS(1130), - [anon_sym_DASH_GT] = ACTIONS(1130), + [anon_sym_COMMA] = ACTIONS(2537), + [anon_sym_SEMI] = ACTIONS(2537), + [anon_sym_LPAREN2] = ACTIONS(1089), + [anon_sym_STAR] = ACTIONS(1091), + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(2539), + [anon_sym_QMARK] = ACTIONS(2537), + [anon_sym_STAR_EQ] = ACTIONS(2537), + [anon_sym_SLASH_EQ] = ACTIONS(2537), + [anon_sym_PERCENT_EQ] = ACTIONS(2537), + [anon_sym_PLUS_EQ] = ACTIONS(2537), + [anon_sym_DASH_EQ] = ACTIONS(2537), + [anon_sym_LT_LT_EQ] = ACTIONS(2537), + [anon_sym_GT_GT_EQ] = ACTIONS(2537), + [anon_sym_AMP_EQ] = ACTIONS(2537), + [anon_sym_CARET_EQ] = ACTIONS(2537), + [anon_sym_PIPE_EQ] = ACTIONS(2537), + [anon_sym_AMP] = ACTIONS(1101), + [anon_sym_PIPE_PIPE] = ACTIONS(2537), + [anon_sym_AMP_AMP] = ACTIONS(1105), + [anon_sym_PIPE] = ACTIONS(1107), + [anon_sym_CARET] = ACTIONS(1109), + [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(1115), + [anon_sym_GT_EQ] = ACTIONS(1115), + [anon_sym_LT_LT] = ACTIONS(1117), + [anon_sym_GT_GT] = ACTIONS(1117), + [anon_sym_PLUS] = ACTIONS(1119), + [anon_sym_DASH] = ACTIONS(1119), + [anon_sym_SLASH] = ACTIONS(1091), + [anon_sym_PERCENT] = ACTIONS(1091), + [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_PLUS_PLUS] = ACTIONS(1121), + [anon_sym_DOT] = ACTIONS(1123), + [anon_sym_DASH_GT] = ACTIONS(1123), [sym_comment] = ACTIONS(39), }, [739] = { [sym_argument_list] = STATE(465), - [anon_sym_COMMA] = ACTIONS(2548), - [anon_sym_SEMI] = ACTIONS(2548), - [anon_sym_LPAREN2] = ACTIONS(1096), - [anon_sym_STAR] = ACTIONS(1098), - [anon_sym_LBRACK] = ACTIONS(1100), - [anon_sym_EQ] = ACTIONS(2550), - [anon_sym_QMARK] = ACTIONS(2548), - [anon_sym_STAR_EQ] = ACTIONS(2548), - [anon_sym_SLASH_EQ] = ACTIONS(2548), - [anon_sym_PERCENT_EQ] = ACTIONS(2548), - [anon_sym_PLUS_EQ] = ACTIONS(2548), - [anon_sym_DASH_EQ] = ACTIONS(2548), - [anon_sym_LT_LT_EQ] = ACTIONS(2548), - [anon_sym_GT_GT_EQ] = ACTIONS(2548), - [anon_sym_AMP_EQ] = ACTIONS(2548), - [anon_sym_CARET_EQ] = ACTIONS(2548), - [anon_sym_PIPE_EQ] = ACTIONS(2548), - [anon_sym_AMP] = ACTIONS(1108), - [anon_sym_PIPE_PIPE] = ACTIONS(2548), - [anon_sym_AMP_AMP] = ACTIONS(2548), - [anon_sym_PIPE] = ACTIONS(1114), - [anon_sym_CARET] = ACTIONS(1116), - [anon_sym_EQ_EQ] = ACTIONS(1118), - [anon_sym_BANG_EQ] = ACTIONS(1118), - [anon_sym_LT] = ACTIONS(1120), - [anon_sym_GT] = ACTIONS(1120), - [anon_sym_LT_EQ] = ACTIONS(1122), - [anon_sym_GT_EQ] = ACTIONS(1122), - [anon_sym_LT_LT] = ACTIONS(1124), - [anon_sym_GT_GT] = ACTIONS(1124), - [anon_sym_PLUS] = ACTIONS(1126), - [anon_sym_DASH] = ACTIONS(1126), - [anon_sym_SLASH] = ACTIONS(1098), - [anon_sym_PERCENT] = ACTIONS(1098), - [anon_sym_DASH_DASH] = ACTIONS(1128), - [anon_sym_PLUS_PLUS] = ACTIONS(1128), - [anon_sym_DOT] = ACTIONS(1130), - [anon_sym_DASH_GT] = ACTIONS(1130), + [anon_sym_COMMA] = ACTIONS(2537), + [anon_sym_SEMI] = ACTIONS(2537), + [anon_sym_LPAREN2] = ACTIONS(1089), + [anon_sym_STAR] = ACTIONS(1091), + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(2539), + [anon_sym_QMARK] = ACTIONS(2537), + [anon_sym_STAR_EQ] = ACTIONS(2537), + [anon_sym_SLASH_EQ] = ACTIONS(2537), + [anon_sym_PERCENT_EQ] = ACTIONS(2537), + [anon_sym_PLUS_EQ] = ACTIONS(2537), + [anon_sym_DASH_EQ] = ACTIONS(2537), + [anon_sym_LT_LT_EQ] = ACTIONS(2537), + [anon_sym_GT_GT_EQ] = ACTIONS(2537), + [anon_sym_AMP_EQ] = ACTIONS(2537), + [anon_sym_CARET_EQ] = ACTIONS(2537), + [anon_sym_PIPE_EQ] = ACTIONS(2537), + [anon_sym_AMP] = ACTIONS(1101), + [anon_sym_PIPE_PIPE] = ACTIONS(2537), + [anon_sym_AMP_AMP] = ACTIONS(2537), + [anon_sym_PIPE] = ACTIONS(1107), + [anon_sym_CARET] = ACTIONS(1109), + [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(1115), + [anon_sym_GT_EQ] = ACTIONS(1115), + [anon_sym_LT_LT] = ACTIONS(1117), + [anon_sym_GT_GT] = ACTIONS(1117), + [anon_sym_PLUS] = ACTIONS(1119), + [anon_sym_DASH] = ACTIONS(1119), + [anon_sym_SLASH] = ACTIONS(1091), + [anon_sym_PERCENT] = ACTIONS(1091), + [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_PLUS_PLUS] = ACTIONS(1121), + [anon_sym_DOT] = ACTIONS(1123), + [anon_sym_DASH_GT] = ACTIONS(1123), [sym_comment] = ACTIONS(39), }, [740] = { [sym_argument_list] = STATE(465), - [anon_sym_COMMA] = ACTIONS(2544), - [anon_sym_SEMI] = ACTIONS(2544), - [anon_sym_LPAREN2] = ACTIONS(1096), - [anon_sym_STAR] = ACTIONS(1098), - [anon_sym_LBRACK] = ACTIONS(1100), - [anon_sym_EQ] = ACTIONS(2546), - [anon_sym_QMARK] = ACTIONS(2544), - [anon_sym_STAR_EQ] = ACTIONS(2544), - [anon_sym_SLASH_EQ] = ACTIONS(2544), - [anon_sym_PERCENT_EQ] = ACTIONS(2544), - [anon_sym_PLUS_EQ] = ACTIONS(2544), - [anon_sym_DASH_EQ] = ACTIONS(2544), - [anon_sym_LT_LT_EQ] = ACTIONS(2544), - [anon_sym_GT_GT_EQ] = ACTIONS(2544), - [anon_sym_AMP_EQ] = ACTIONS(2544), - [anon_sym_CARET_EQ] = ACTIONS(2544), - [anon_sym_PIPE_EQ] = ACTIONS(2544), - [anon_sym_AMP] = ACTIONS(1108), - [anon_sym_PIPE_PIPE] = ACTIONS(2544), - [anon_sym_AMP_AMP] = ACTIONS(2544), - [anon_sym_PIPE] = ACTIONS(2546), - [anon_sym_CARET] = ACTIONS(1116), - [anon_sym_EQ_EQ] = ACTIONS(1118), - [anon_sym_BANG_EQ] = ACTIONS(1118), - [anon_sym_LT] = ACTIONS(1120), - [anon_sym_GT] = ACTIONS(1120), - [anon_sym_LT_EQ] = ACTIONS(1122), - [anon_sym_GT_EQ] = ACTIONS(1122), - [anon_sym_LT_LT] = ACTIONS(1124), - [anon_sym_GT_GT] = ACTIONS(1124), - [anon_sym_PLUS] = ACTIONS(1126), - [anon_sym_DASH] = ACTIONS(1126), - [anon_sym_SLASH] = ACTIONS(1098), - [anon_sym_PERCENT] = ACTIONS(1098), - [anon_sym_DASH_DASH] = ACTIONS(1128), - [anon_sym_PLUS_PLUS] = ACTIONS(1128), - [anon_sym_DOT] = ACTIONS(1130), - [anon_sym_DASH_GT] = ACTIONS(1130), + [anon_sym_COMMA] = ACTIONS(2533), + [anon_sym_SEMI] = ACTIONS(2533), + [anon_sym_LPAREN2] = ACTIONS(1089), + [anon_sym_STAR] = ACTIONS(1091), + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(2535), + [anon_sym_QMARK] = ACTIONS(2533), + [anon_sym_STAR_EQ] = ACTIONS(2533), + [anon_sym_SLASH_EQ] = ACTIONS(2533), + [anon_sym_PERCENT_EQ] = ACTIONS(2533), + [anon_sym_PLUS_EQ] = ACTIONS(2533), + [anon_sym_DASH_EQ] = ACTIONS(2533), + [anon_sym_LT_LT_EQ] = ACTIONS(2533), + [anon_sym_GT_GT_EQ] = ACTIONS(2533), + [anon_sym_AMP_EQ] = ACTIONS(2533), + [anon_sym_CARET_EQ] = ACTIONS(2533), + [anon_sym_PIPE_EQ] = ACTIONS(2533), + [anon_sym_AMP] = ACTIONS(1101), + [anon_sym_PIPE_PIPE] = ACTIONS(2533), + [anon_sym_AMP_AMP] = ACTIONS(2533), + [anon_sym_PIPE] = ACTIONS(2535), + [anon_sym_CARET] = ACTIONS(1109), + [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(1115), + [anon_sym_GT_EQ] = ACTIONS(1115), + [anon_sym_LT_LT] = ACTIONS(1117), + [anon_sym_GT_GT] = ACTIONS(1117), + [anon_sym_PLUS] = ACTIONS(1119), + [anon_sym_DASH] = ACTIONS(1119), + [anon_sym_SLASH] = ACTIONS(1091), + [anon_sym_PERCENT] = ACTIONS(1091), + [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_PLUS_PLUS] = ACTIONS(1121), + [anon_sym_DOT] = ACTIONS(1123), + [anon_sym_DASH_GT] = ACTIONS(1123), [sym_comment] = ACTIONS(39), }, [741] = { [sym_argument_list] = STATE(465), - [anon_sym_COMMA] = ACTIONS(2544), - [anon_sym_SEMI] = ACTIONS(2544), - [anon_sym_LPAREN2] = ACTIONS(1096), - [anon_sym_STAR] = ACTIONS(1098), - [anon_sym_LBRACK] = ACTIONS(1100), - [anon_sym_EQ] = ACTIONS(2546), - [anon_sym_QMARK] = ACTIONS(2544), - [anon_sym_STAR_EQ] = ACTIONS(2544), - [anon_sym_SLASH_EQ] = ACTIONS(2544), - [anon_sym_PERCENT_EQ] = ACTIONS(2544), - [anon_sym_PLUS_EQ] = ACTIONS(2544), - [anon_sym_DASH_EQ] = ACTIONS(2544), - [anon_sym_LT_LT_EQ] = ACTIONS(2544), - [anon_sym_GT_GT_EQ] = ACTIONS(2544), - [anon_sym_AMP_EQ] = ACTIONS(2544), - [anon_sym_CARET_EQ] = ACTIONS(2544), - [anon_sym_PIPE_EQ] = ACTIONS(2544), - [anon_sym_AMP] = ACTIONS(1108), - [anon_sym_PIPE_PIPE] = ACTIONS(2544), - [anon_sym_AMP_AMP] = ACTIONS(2544), - [anon_sym_PIPE] = ACTIONS(2546), - [anon_sym_CARET] = ACTIONS(2546), - [anon_sym_EQ_EQ] = ACTIONS(1118), - [anon_sym_BANG_EQ] = ACTIONS(1118), - [anon_sym_LT] = ACTIONS(1120), - [anon_sym_GT] = ACTIONS(1120), - [anon_sym_LT_EQ] = ACTIONS(1122), - [anon_sym_GT_EQ] = ACTIONS(1122), - [anon_sym_LT_LT] = ACTIONS(1124), - [anon_sym_GT_GT] = ACTIONS(1124), - [anon_sym_PLUS] = ACTIONS(1126), - [anon_sym_DASH] = ACTIONS(1126), - [anon_sym_SLASH] = ACTIONS(1098), - [anon_sym_PERCENT] = ACTIONS(1098), - [anon_sym_DASH_DASH] = ACTIONS(1128), - [anon_sym_PLUS_PLUS] = ACTIONS(1128), - [anon_sym_DOT] = ACTIONS(1130), - [anon_sym_DASH_GT] = ACTIONS(1130), + [anon_sym_COMMA] = ACTIONS(2533), + [anon_sym_SEMI] = ACTIONS(2533), + [anon_sym_LPAREN2] = ACTIONS(1089), + [anon_sym_STAR] = ACTIONS(1091), + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(2535), + [anon_sym_QMARK] = ACTIONS(2533), + [anon_sym_STAR_EQ] = ACTIONS(2533), + [anon_sym_SLASH_EQ] = ACTIONS(2533), + [anon_sym_PERCENT_EQ] = ACTIONS(2533), + [anon_sym_PLUS_EQ] = ACTIONS(2533), + [anon_sym_DASH_EQ] = ACTIONS(2533), + [anon_sym_LT_LT_EQ] = ACTIONS(2533), + [anon_sym_GT_GT_EQ] = ACTIONS(2533), + [anon_sym_AMP_EQ] = ACTIONS(2533), + [anon_sym_CARET_EQ] = ACTIONS(2533), + [anon_sym_PIPE_EQ] = ACTIONS(2533), + [anon_sym_AMP] = ACTIONS(1101), + [anon_sym_PIPE_PIPE] = ACTIONS(2533), + [anon_sym_AMP_AMP] = ACTIONS(2533), + [anon_sym_PIPE] = ACTIONS(2535), + [anon_sym_CARET] = ACTIONS(2535), + [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(1115), + [anon_sym_GT_EQ] = ACTIONS(1115), + [anon_sym_LT_LT] = ACTIONS(1117), + [anon_sym_GT_GT] = ACTIONS(1117), + [anon_sym_PLUS] = ACTIONS(1119), + [anon_sym_DASH] = ACTIONS(1119), + [anon_sym_SLASH] = ACTIONS(1091), + [anon_sym_PERCENT] = ACTIONS(1091), + [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_PLUS_PLUS] = ACTIONS(1121), + [anon_sym_DOT] = ACTIONS(1123), + [anon_sym_DASH_GT] = ACTIONS(1123), [sym_comment] = ACTIONS(39), }, [742] = { [sym_argument_list] = STATE(465), - [anon_sym_COMMA] = ACTIONS(2552), - [anon_sym_SEMI] = ACTIONS(2552), - [anon_sym_LPAREN2] = ACTIONS(1096), - [anon_sym_STAR] = ACTIONS(1098), - [anon_sym_LBRACK] = ACTIONS(1100), - [anon_sym_EQ] = ACTIONS(2554), - [anon_sym_QMARK] = ACTIONS(2552), - [anon_sym_STAR_EQ] = ACTIONS(2552), - [anon_sym_SLASH_EQ] = ACTIONS(2552), - [anon_sym_PERCENT_EQ] = ACTIONS(2552), - [anon_sym_PLUS_EQ] = ACTIONS(2552), - [anon_sym_DASH_EQ] = ACTIONS(2552), - [anon_sym_LT_LT_EQ] = ACTIONS(2552), - [anon_sym_GT_GT_EQ] = ACTIONS(2552), - [anon_sym_AMP_EQ] = ACTIONS(2552), - [anon_sym_CARET_EQ] = ACTIONS(2552), - [anon_sym_PIPE_EQ] = ACTIONS(2552), - [anon_sym_AMP] = ACTIONS(2554), - [anon_sym_PIPE_PIPE] = ACTIONS(2552), - [anon_sym_AMP_AMP] = ACTIONS(2552), - [anon_sym_PIPE] = ACTIONS(2554), - [anon_sym_CARET] = ACTIONS(2554), - [anon_sym_EQ_EQ] = ACTIONS(2552), - [anon_sym_BANG_EQ] = ACTIONS(2552), - [anon_sym_LT] = ACTIONS(1120), - [anon_sym_GT] = ACTIONS(1120), - [anon_sym_LT_EQ] = ACTIONS(1122), - [anon_sym_GT_EQ] = ACTIONS(1122), - [anon_sym_LT_LT] = ACTIONS(1124), - [anon_sym_GT_GT] = ACTIONS(1124), - [anon_sym_PLUS] = ACTIONS(1126), - [anon_sym_DASH] = ACTIONS(1126), - [anon_sym_SLASH] = ACTIONS(1098), - [anon_sym_PERCENT] = ACTIONS(1098), - [anon_sym_DASH_DASH] = ACTIONS(1128), - [anon_sym_PLUS_PLUS] = ACTIONS(1128), - [anon_sym_DOT] = ACTIONS(1130), - [anon_sym_DASH_GT] = ACTIONS(1130), + [anon_sym_COMMA] = ACTIONS(2541), + [anon_sym_SEMI] = ACTIONS(2541), + [anon_sym_LPAREN2] = ACTIONS(1089), + [anon_sym_STAR] = ACTIONS(1091), + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(2543), + [anon_sym_QMARK] = ACTIONS(2541), + [anon_sym_STAR_EQ] = ACTIONS(2541), + [anon_sym_SLASH_EQ] = ACTIONS(2541), + [anon_sym_PERCENT_EQ] = ACTIONS(2541), + [anon_sym_PLUS_EQ] = ACTIONS(2541), + [anon_sym_DASH_EQ] = ACTIONS(2541), + [anon_sym_LT_LT_EQ] = ACTIONS(2541), + [anon_sym_GT_GT_EQ] = ACTIONS(2541), + [anon_sym_AMP_EQ] = ACTIONS(2541), + [anon_sym_CARET_EQ] = ACTIONS(2541), + [anon_sym_PIPE_EQ] = ACTIONS(2541), + [anon_sym_AMP] = ACTIONS(2543), + [anon_sym_PIPE_PIPE] = ACTIONS(2541), + [anon_sym_AMP_AMP] = ACTIONS(2541), + [anon_sym_PIPE] = ACTIONS(2543), + [anon_sym_CARET] = ACTIONS(2543), + [anon_sym_EQ_EQ] = ACTIONS(2541), + [anon_sym_BANG_EQ] = ACTIONS(2541), + [anon_sym_LT] = ACTIONS(1113), + [anon_sym_GT] = ACTIONS(1113), + [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(1119), + [anon_sym_DASH] = ACTIONS(1119), + [anon_sym_SLASH] = ACTIONS(1091), + [anon_sym_PERCENT] = ACTIONS(1091), + [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_PLUS_PLUS] = ACTIONS(1121), + [anon_sym_DOT] = ACTIONS(1123), + [anon_sym_DASH_GT] = ACTIONS(1123), [sym_comment] = ACTIONS(39), }, [743] = { [sym_argument_list] = STATE(465), - [anon_sym_COMMA] = ACTIONS(2556), - [anon_sym_SEMI] = ACTIONS(2556), - [anon_sym_LPAREN2] = ACTIONS(1096), - [anon_sym_STAR] = ACTIONS(1098), - [anon_sym_LBRACK] = ACTIONS(1100), - [anon_sym_EQ] = ACTIONS(2558), - [anon_sym_QMARK] = ACTIONS(2556), - [anon_sym_STAR_EQ] = ACTIONS(2556), - [anon_sym_SLASH_EQ] = ACTIONS(2556), - [anon_sym_PERCENT_EQ] = ACTIONS(2556), - [anon_sym_PLUS_EQ] = ACTIONS(2556), - [anon_sym_DASH_EQ] = ACTIONS(2556), - [anon_sym_LT_LT_EQ] = ACTIONS(2556), - [anon_sym_GT_GT_EQ] = ACTIONS(2556), - [anon_sym_AMP_EQ] = ACTIONS(2556), - [anon_sym_CARET_EQ] = ACTIONS(2556), - [anon_sym_PIPE_EQ] = ACTIONS(2556), - [anon_sym_AMP] = ACTIONS(2558), - [anon_sym_PIPE_PIPE] = ACTIONS(2556), - [anon_sym_AMP_AMP] = ACTIONS(2556), - [anon_sym_PIPE] = ACTIONS(2558), - [anon_sym_CARET] = ACTIONS(2558), - [anon_sym_EQ_EQ] = ACTIONS(2556), - [anon_sym_BANG_EQ] = ACTIONS(2556), - [anon_sym_LT] = ACTIONS(2558), - [anon_sym_GT] = ACTIONS(2558), - [anon_sym_LT_EQ] = ACTIONS(2556), - [anon_sym_GT_EQ] = ACTIONS(2556), - [anon_sym_LT_LT] = ACTIONS(1124), - [anon_sym_GT_GT] = ACTIONS(1124), - [anon_sym_PLUS] = ACTIONS(1126), - [anon_sym_DASH] = ACTIONS(1126), - [anon_sym_SLASH] = ACTIONS(1098), - [anon_sym_PERCENT] = ACTIONS(1098), - [anon_sym_DASH_DASH] = ACTIONS(1128), - [anon_sym_PLUS_PLUS] = ACTIONS(1128), - [anon_sym_DOT] = ACTIONS(1130), - [anon_sym_DASH_GT] = ACTIONS(1130), + [anon_sym_COMMA] = ACTIONS(2545), + [anon_sym_SEMI] = ACTIONS(2545), + [anon_sym_LPAREN2] = ACTIONS(1089), + [anon_sym_STAR] = ACTIONS(1091), + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(2547), + [anon_sym_QMARK] = ACTIONS(2545), + [anon_sym_STAR_EQ] = ACTIONS(2545), + [anon_sym_SLASH_EQ] = ACTIONS(2545), + [anon_sym_PERCENT_EQ] = ACTIONS(2545), + [anon_sym_PLUS_EQ] = ACTIONS(2545), + [anon_sym_DASH_EQ] = ACTIONS(2545), + [anon_sym_LT_LT_EQ] = ACTIONS(2545), + [anon_sym_GT_GT_EQ] = ACTIONS(2545), + [anon_sym_AMP_EQ] = ACTIONS(2545), + [anon_sym_CARET_EQ] = ACTIONS(2545), + [anon_sym_PIPE_EQ] = ACTIONS(2545), + [anon_sym_AMP] = ACTIONS(2547), + [anon_sym_PIPE_PIPE] = ACTIONS(2545), + [anon_sym_AMP_AMP] = ACTIONS(2545), + [anon_sym_PIPE] = ACTIONS(2547), + [anon_sym_CARET] = ACTIONS(2547), + [anon_sym_EQ_EQ] = ACTIONS(2545), + [anon_sym_BANG_EQ] = ACTIONS(2545), + [anon_sym_LT] = ACTIONS(2547), + [anon_sym_GT] = ACTIONS(2547), + [anon_sym_LT_EQ] = ACTIONS(2545), + [anon_sym_GT_EQ] = ACTIONS(2545), + [anon_sym_LT_LT] = ACTIONS(1117), + [anon_sym_GT_GT] = ACTIONS(1117), + [anon_sym_PLUS] = ACTIONS(1119), + [anon_sym_DASH] = ACTIONS(1119), + [anon_sym_SLASH] = ACTIONS(1091), + [anon_sym_PERCENT] = ACTIONS(1091), + [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_PLUS_PLUS] = ACTIONS(1121), + [anon_sym_DOT] = ACTIONS(1123), + [anon_sym_DASH_GT] = ACTIONS(1123), [sym_comment] = ACTIONS(39), }, [744] = { [sym_argument_list] = STATE(465), - [anon_sym_COMMA] = ACTIONS(2560), - [anon_sym_SEMI] = ACTIONS(2560), - [anon_sym_LPAREN2] = ACTIONS(1096), - [anon_sym_STAR] = ACTIONS(1098), - [anon_sym_LBRACK] = ACTIONS(1100), - [anon_sym_EQ] = ACTIONS(2562), - [anon_sym_QMARK] = ACTIONS(2560), - [anon_sym_STAR_EQ] = ACTIONS(2560), - [anon_sym_SLASH_EQ] = ACTIONS(2560), - [anon_sym_PERCENT_EQ] = ACTIONS(2560), - [anon_sym_PLUS_EQ] = ACTIONS(2560), - [anon_sym_DASH_EQ] = ACTIONS(2560), - [anon_sym_LT_LT_EQ] = ACTIONS(2560), - [anon_sym_GT_GT_EQ] = ACTIONS(2560), - [anon_sym_AMP_EQ] = ACTIONS(2560), - [anon_sym_CARET_EQ] = ACTIONS(2560), - [anon_sym_PIPE_EQ] = ACTIONS(2560), - [anon_sym_AMP] = ACTIONS(2562), - [anon_sym_PIPE_PIPE] = ACTIONS(2560), - [anon_sym_AMP_AMP] = ACTIONS(2560), - [anon_sym_PIPE] = ACTIONS(2562), - [anon_sym_CARET] = ACTIONS(2562), - [anon_sym_EQ_EQ] = ACTIONS(2560), - [anon_sym_BANG_EQ] = ACTIONS(2560), - [anon_sym_LT] = ACTIONS(2562), - [anon_sym_GT] = ACTIONS(2562), - [anon_sym_LT_EQ] = ACTIONS(2560), - [anon_sym_GT_EQ] = ACTIONS(2560), - [anon_sym_LT_LT] = ACTIONS(2562), - [anon_sym_GT_GT] = ACTIONS(2562), - [anon_sym_PLUS] = ACTIONS(1126), - [anon_sym_DASH] = ACTIONS(1126), - [anon_sym_SLASH] = ACTIONS(1098), - [anon_sym_PERCENT] = ACTIONS(1098), - [anon_sym_DASH_DASH] = ACTIONS(1128), - [anon_sym_PLUS_PLUS] = ACTIONS(1128), - [anon_sym_DOT] = ACTIONS(1130), - [anon_sym_DASH_GT] = ACTIONS(1130), + [anon_sym_COMMA] = ACTIONS(2549), + [anon_sym_SEMI] = ACTIONS(2549), + [anon_sym_LPAREN2] = ACTIONS(1089), + [anon_sym_STAR] = ACTIONS(1091), + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(2551), + [anon_sym_QMARK] = ACTIONS(2549), + [anon_sym_STAR_EQ] = ACTIONS(2549), + [anon_sym_SLASH_EQ] = ACTIONS(2549), + [anon_sym_PERCENT_EQ] = ACTIONS(2549), + [anon_sym_PLUS_EQ] = ACTIONS(2549), + [anon_sym_DASH_EQ] = ACTIONS(2549), + [anon_sym_LT_LT_EQ] = ACTIONS(2549), + [anon_sym_GT_GT_EQ] = ACTIONS(2549), + [anon_sym_AMP_EQ] = ACTIONS(2549), + [anon_sym_CARET_EQ] = ACTIONS(2549), + [anon_sym_PIPE_EQ] = ACTIONS(2549), + [anon_sym_AMP] = ACTIONS(2551), + [anon_sym_PIPE_PIPE] = ACTIONS(2549), + [anon_sym_AMP_AMP] = ACTIONS(2549), + [anon_sym_PIPE] = ACTIONS(2551), + [anon_sym_CARET] = ACTIONS(2551), + [anon_sym_EQ_EQ] = ACTIONS(2549), + [anon_sym_BANG_EQ] = ACTIONS(2549), + [anon_sym_LT] = ACTIONS(2551), + [anon_sym_GT] = ACTIONS(2551), + [anon_sym_LT_EQ] = ACTIONS(2549), + [anon_sym_GT_EQ] = ACTIONS(2549), + [anon_sym_LT_LT] = ACTIONS(2551), + [anon_sym_GT_GT] = ACTIONS(2551), + [anon_sym_PLUS] = ACTIONS(1119), + [anon_sym_DASH] = ACTIONS(1119), + [anon_sym_SLASH] = ACTIONS(1091), + [anon_sym_PERCENT] = ACTIONS(1091), + [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_PLUS_PLUS] = ACTIONS(1121), + [anon_sym_DOT] = ACTIONS(1123), + [anon_sym_DASH_GT] = ACTIONS(1123), [sym_comment] = ACTIONS(39), }, [745] = { [sym_argument_list] = STATE(465), - [anon_sym_COMMA] = ACTIONS(2534), - [anon_sym_SEMI] = ACTIONS(2534), - [anon_sym_LPAREN2] = ACTIONS(1096), - [anon_sym_STAR] = ACTIONS(1098), - [anon_sym_LBRACK] = ACTIONS(1100), - [anon_sym_EQ] = ACTIONS(2536), - [anon_sym_QMARK] = ACTIONS(2534), - [anon_sym_STAR_EQ] = ACTIONS(2534), - [anon_sym_SLASH_EQ] = ACTIONS(2534), - [anon_sym_PERCENT_EQ] = ACTIONS(2534), - [anon_sym_PLUS_EQ] = ACTIONS(2534), - [anon_sym_DASH_EQ] = ACTIONS(2534), - [anon_sym_LT_LT_EQ] = ACTIONS(2534), - [anon_sym_GT_GT_EQ] = ACTIONS(2534), - [anon_sym_AMP_EQ] = ACTIONS(2534), - [anon_sym_CARET_EQ] = ACTIONS(2534), - [anon_sym_PIPE_EQ] = ACTIONS(2534), - [anon_sym_AMP] = ACTIONS(2536), - [anon_sym_PIPE_PIPE] = ACTIONS(2534), - [anon_sym_AMP_AMP] = ACTIONS(2534), - [anon_sym_PIPE] = ACTIONS(2536), - [anon_sym_CARET] = ACTIONS(2536), - [anon_sym_EQ_EQ] = ACTIONS(2534), - [anon_sym_BANG_EQ] = ACTIONS(2534), - [anon_sym_LT] = ACTIONS(2536), - [anon_sym_GT] = ACTIONS(2536), - [anon_sym_LT_EQ] = ACTIONS(2534), - [anon_sym_GT_EQ] = ACTIONS(2534), - [anon_sym_LT_LT] = ACTIONS(2536), - [anon_sym_GT_GT] = ACTIONS(2536), - [anon_sym_PLUS] = ACTIONS(2536), - [anon_sym_DASH] = ACTIONS(2536), - [anon_sym_SLASH] = ACTIONS(1098), - [anon_sym_PERCENT] = ACTIONS(1098), - [anon_sym_DASH_DASH] = ACTIONS(1128), - [anon_sym_PLUS_PLUS] = ACTIONS(1128), - [anon_sym_DOT] = ACTIONS(1130), - [anon_sym_DASH_GT] = ACTIONS(1130), + [anon_sym_COMMA] = ACTIONS(2523), + [anon_sym_SEMI] = ACTIONS(2523), + [anon_sym_LPAREN2] = ACTIONS(1089), + [anon_sym_STAR] = ACTIONS(1091), + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(2525), + [anon_sym_QMARK] = ACTIONS(2523), + [anon_sym_STAR_EQ] = ACTIONS(2523), + [anon_sym_SLASH_EQ] = ACTIONS(2523), + [anon_sym_PERCENT_EQ] = ACTIONS(2523), + [anon_sym_PLUS_EQ] = ACTIONS(2523), + [anon_sym_DASH_EQ] = ACTIONS(2523), + [anon_sym_LT_LT_EQ] = ACTIONS(2523), + [anon_sym_GT_GT_EQ] = ACTIONS(2523), + [anon_sym_AMP_EQ] = ACTIONS(2523), + [anon_sym_CARET_EQ] = ACTIONS(2523), + [anon_sym_PIPE_EQ] = ACTIONS(2523), + [anon_sym_AMP] = ACTIONS(2525), + [anon_sym_PIPE_PIPE] = ACTIONS(2523), + [anon_sym_AMP_AMP] = ACTIONS(2523), + [anon_sym_PIPE] = ACTIONS(2525), + [anon_sym_CARET] = ACTIONS(2525), + [anon_sym_EQ_EQ] = ACTIONS(2523), + [anon_sym_BANG_EQ] = ACTIONS(2523), + [anon_sym_LT] = ACTIONS(2525), + [anon_sym_GT] = ACTIONS(2525), + [anon_sym_LT_EQ] = ACTIONS(2523), + [anon_sym_GT_EQ] = ACTIONS(2523), + [anon_sym_LT_LT] = ACTIONS(2525), + [anon_sym_GT_GT] = ACTIONS(2525), + [anon_sym_PLUS] = ACTIONS(2525), + [anon_sym_DASH] = ACTIONS(2525), + [anon_sym_SLASH] = ACTIONS(1091), + [anon_sym_PERCENT] = ACTIONS(1091), + [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_PLUS_PLUS] = ACTIONS(1121), + [anon_sym_DOT] = ACTIONS(1123), + [anon_sym_DASH_GT] = ACTIONS(1123), [sym_comment] = ACTIONS(39), }, [746] = { - [anon_sym_COMMA] = ACTIONS(2564), - [anon_sym_RPAREN] = ACTIONS(2564), - [anon_sym_SEMI] = ACTIONS(2564), - [anon_sym_RBRACE] = ACTIONS(2564), - [anon_sym_LPAREN2] = ACTIONS(2564), - [anon_sym_STAR] = ACTIONS(2566), - [anon_sym_LBRACK] = ACTIONS(2564), - [anon_sym_RBRACK] = ACTIONS(2564), - [anon_sym_EQ] = ACTIONS(2566), - [anon_sym_COLON] = ACTIONS(2564), - [anon_sym_QMARK] = ACTIONS(2564), - [anon_sym_STAR_EQ] = ACTIONS(2564), - [anon_sym_SLASH_EQ] = ACTIONS(2564), - [anon_sym_PERCENT_EQ] = ACTIONS(2564), - [anon_sym_PLUS_EQ] = ACTIONS(2564), - [anon_sym_DASH_EQ] = ACTIONS(2564), - [anon_sym_LT_LT_EQ] = ACTIONS(2564), - [anon_sym_GT_GT_EQ] = ACTIONS(2564), - [anon_sym_AMP_EQ] = ACTIONS(2564), - [anon_sym_CARET_EQ] = ACTIONS(2564), - [anon_sym_PIPE_EQ] = ACTIONS(2564), - [anon_sym_AMP] = ACTIONS(2566), - [anon_sym_PIPE_PIPE] = ACTIONS(2564), - [anon_sym_AMP_AMP] = ACTIONS(2564), - [anon_sym_PIPE] = ACTIONS(2566), - [anon_sym_CARET] = ACTIONS(2566), - [anon_sym_EQ_EQ] = ACTIONS(2564), - [anon_sym_BANG_EQ] = ACTIONS(2564), - [anon_sym_LT] = ACTIONS(2566), - [anon_sym_GT] = ACTIONS(2566), - [anon_sym_LT_EQ] = ACTIONS(2564), - [anon_sym_GT_EQ] = ACTIONS(2564), - [anon_sym_LT_LT] = ACTIONS(2566), - [anon_sym_GT_GT] = ACTIONS(2566), - [anon_sym_PLUS] = ACTIONS(2566), - [anon_sym_DASH] = ACTIONS(2566), - [anon_sym_SLASH] = ACTIONS(2566), - [anon_sym_PERCENT] = ACTIONS(2566), - [anon_sym_DASH_DASH] = ACTIONS(2564), - [anon_sym_PLUS_PLUS] = ACTIONS(2564), - [anon_sym_DOT] = ACTIONS(2564), - [anon_sym_DASH_GT] = ACTIONS(2564), + [anon_sym_COMMA] = ACTIONS(2553), + [anon_sym_RPAREN] = ACTIONS(2553), + [anon_sym_SEMI] = ACTIONS(2553), + [anon_sym_RBRACE] = ACTIONS(2553), + [anon_sym_LPAREN2] = ACTIONS(2553), + [anon_sym_STAR] = ACTIONS(2555), + [anon_sym_LBRACK] = ACTIONS(2553), + [anon_sym_RBRACK] = ACTIONS(2553), + [anon_sym_EQ] = ACTIONS(2555), + [anon_sym_COLON] = ACTIONS(2553), + [anon_sym_QMARK] = ACTIONS(2553), + [anon_sym_STAR_EQ] = ACTIONS(2553), + [anon_sym_SLASH_EQ] = ACTIONS(2553), + [anon_sym_PERCENT_EQ] = ACTIONS(2553), + [anon_sym_PLUS_EQ] = ACTIONS(2553), + [anon_sym_DASH_EQ] = ACTIONS(2553), + [anon_sym_LT_LT_EQ] = ACTIONS(2553), + [anon_sym_GT_GT_EQ] = ACTIONS(2553), + [anon_sym_AMP_EQ] = ACTIONS(2553), + [anon_sym_CARET_EQ] = ACTIONS(2553), + [anon_sym_PIPE_EQ] = ACTIONS(2553), + [anon_sym_AMP] = ACTIONS(2555), + [anon_sym_PIPE_PIPE] = ACTIONS(2553), + [anon_sym_AMP_AMP] = ACTIONS(2553), + [anon_sym_PIPE] = ACTIONS(2555), + [anon_sym_CARET] = ACTIONS(2555), + [anon_sym_EQ_EQ] = ACTIONS(2553), + [anon_sym_BANG_EQ] = ACTIONS(2553), + [anon_sym_LT] = ACTIONS(2555), + [anon_sym_GT] = ACTIONS(2555), + [anon_sym_LT_EQ] = ACTIONS(2553), + [anon_sym_GT_EQ] = ACTIONS(2553), + [anon_sym_LT_LT] = ACTIONS(2555), + [anon_sym_GT_GT] = ACTIONS(2555), + [anon_sym_PLUS] = ACTIONS(2555), + [anon_sym_DASH] = ACTIONS(2555), + [anon_sym_SLASH] = ACTIONS(2555), + [anon_sym_PERCENT] = ACTIONS(2555), + [anon_sym_DASH_DASH] = ACTIONS(2553), + [anon_sym_PLUS_PLUS] = ACTIONS(2553), + [anon_sym_DOT] = ACTIONS(2553), + [anon_sym_DASH_GT] = ACTIONS(2553), [sym_comment] = ACTIONS(39), }, [747] = { [sym_string_literal] = STATE(747), [aux_sym_concatenated_string_repeat1] = STATE(747), - [anon_sym_COMMA] = ACTIONS(2568), - [anon_sym_SEMI] = ACTIONS(2568), - [anon_sym_LPAREN2] = ACTIONS(2568), - [anon_sym_STAR] = ACTIONS(2570), - [anon_sym_LBRACK] = ACTIONS(2568), - [anon_sym_EQ] = ACTIONS(2570), - [anon_sym_QMARK] = ACTIONS(2568), - [anon_sym_STAR_EQ] = ACTIONS(2568), - [anon_sym_SLASH_EQ] = ACTIONS(2568), - [anon_sym_PERCENT_EQ] = ACTIONS(2568), - [anon_sym_PLUS_EQ] = ACTIONS(2568), - [anon_sym_DASH_EQ] = ACTIONS(2568), - [anon_sym_LT_LT_EQ] = ACTIONS(2568), - [anon_sym_GT_GT_EQ] = ACTIONS(2568), - [anon_sym_AMP_EQ] = ACTIONS(2568), - [anon_sym_CARET_EQ] = ACTIONS(2568), - [anon_sym_PIPE_EQ] = ACTIONS(2568), - [anon_sym_AMP] = ACTIONS(2570), - [anon_sym_PIPE_PIPE] = ACTIONS(2568), - [anon_sym_AMP_AMP] = ACTIONS(2568), - [anon_sym_PIPE] = ACTIONS(2570), - [anon_sym_CARET] = ACTIONS(2570), - [anon_sym_EQ_EQ] = ACTIONS(2568), - [anon_sym_BANG_EQ] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_GT] = ACTIONS(2570), - [anon_sym_LT_EQ] = ACTIONS(2568), - [anon_sym_GT_EQ] = ACTIONS(2568), - [anon_sym_LT_LT] = ACTIONS(2570), - [anon_sym_GT_GT] = ACTIONS(2570), - [anon_sym_PLUS] = ACTIONS(2570), - [anon_sym_DASH] = ACTIONS(2570), - [anon_sym_SLASH] = ACTIONS(2570), - [anon_sym_PERCENT] = ACTIONS(2570), - [anon_sym_DASH_DASH] = ACTIONS(2568), - [anon_sym_PLUS_PLUS] = ACTIONS(2568), - [anon_sym_DOT] = ACTIONS(2568), - [anon_sym_DASH_GT] = ACTIONS(2568), - [anon_sym_DQUOTE] = ACTIONS(2572), + [anon_sym_COMMA] = ACTIONS(2557), + [anon_sym_SEMI] = ACTIONS(2557), + [anon_sym_LPAREN2] = ACTIONS(2557), + [anon_sym_STAR] = ACTIONS(2559), + [anon_sym_LBRACK] = ACTIONS(2557), + [anon_sym_EQ] = ACTIONS(2559), + [anon_sym_QMARK] = ACTIONS(2557), + [anon_sym_STAR_EQ] = ACTIONS(2557), + [anon_sym_SLASH_EQ] = ACTIONS(2557), + [anon_sym_PERCENT_EQ] = ACTIONS(2557), + [anon_sym_PLUS_EQ] = ACTIONS(2557), + [anon_sym_DASH_EQ] = ACTIONS(2557), + [anon_sym_LT_LT_EQ] = ACTIONS(2557), + [anon_sym_GT_GT_EQ] = ACTIONS(2557), + [anon_sym_AMP_EQ] = ACTIONS(2557), + [anon_sym_CARET_EQ] = ACTIONS(2557), + [anon_sym_PIPE_EQ] = ACTIONS(2557), + [anon_sym_AMP] = ACTIONS(2559), + [anon_sym_PIPE_PIPE] = ACTIONS(2557), + [anon_sym_AMP_AMP] = ACTIONS(2557), + [anon_sym_PIPE] = ACTIONS(2559), + [anon_sym_CARET] = ACTIONS(2559), + [anon_sym_EQ_EQ] = ACTIONS(2557), + [anon_sym_BANG_EQ] = ACTIONS(2557), + [anon_sym_LT] = ACTIONS(2559), + [anon_sym_GT] = ACTIONS(2559), + [anon_sym_LT_EQ] = ACTIONS(2557), + [anon_sym_GT_EQ] = ACTIONS(2557), + [anon_sym_LT_LT] = ACTIONS(2559), + [anon_sym_GT_GT] = ACTIONS(2559), + [anon_sym_PLUS] = ACTIONS(2559), + [anon_sym_DASH] = ACTIONS(2559), + [anon_sym_SLASH] = ACTIONS(2559), + [anon_sym_PERCENT] = ACTIONS(2559), + [anon_sym_DASH_DASH] = ACTIONS(2557), + [anon_sym_PLUS_PLUS] = ACTIONS(2557), + [anon_sym_DOT] = ACTIONS(2557), + [anon_sym_DASH_GT] = ACTIONS(2557), + [anon_sym_DQUOTE] = ACTIONS(2561), [sym_comment] = ACTIONS(39), }, [748] = { - [anon_sym_COMMA] = ACTIONS(2575), - [anon_sym_RPAREN] = ACTIONS(2575), + [anon_sym_COMMA] = ACTIONS(2564), + [anon_sym_RPAREN] = ACTIONS(2564), [sym_comment] = ACTIONS(39), }, [749] = { - [anon_sym_COMMA] = ACTIONS(2577), - [anon_sym_RPAREN] = ACTIONS(2577), - [anon_sym_SEMI] = ACTIONS(2577), - [anon_sym_LBRACE] = ACTIONS(2577), - [anon_sym_LPAREN2] = ACTIONS(2577), - [anon_sym_LBRACK] = ACTIONS(2577), - [anon_sym_EQ] = ACTIONS(2577), - [anon_sym_COLON] = ACTIONS(2577), + [anon_sym_COMMA] = ACTIONS(2566), + [anon_sym_RPAREN] = ACTIONS(2566), + [anon_sym_SEMI] = ACTIONS(2566), + [anon_sym_LBRACE] = ACTIONS(2566), + [anon_sym_LPAREN2] = ACTIONS(2566), + [anon_sym_LBRACK] = ACTIONS(2566), + [anon_sym_EQ] = ACTIONS(2566), + [anon_sym_COLON] = ACTIONS(2566), [sym_comment] = ACTIONS(39), }, [750] = { [aux_sym_parameter_list_repeat1] = STATE(750), - [anon_sym_COMMA] = ACTIONS(2579), - [anon_sym_RPAREN] = ACTIONS(2575), + [anon_sym_COMMA] = ACTIONS(2568), + [anon_sym_RPAREN] = ACTIONS(2564), [sym_comment] = ACTIONS(39), }, [751] = { @@ -29075,24 +29094,24 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_type_qualifier] = STATE(971), [sym_parameter_list] = STATE(212), [aux_sym_type_definition_repeat1] = STATE(971), - [anon_sym_RPAREN] = ACTIONS(923), - [anon_sym_LPAREN2] = ACTIONS(1142), - [anon_sym_STAR] = ACTIONS(1911), - [anon_sym_LBRACK] = ACTIONS(518), + [anon_sym_RPAREN] = ACTIONS(914), + [anon_sym_LPAREN2] = ACTIONS(1135), + [anon_sym_STAR] = ACTIONS(1900), + [anon_sym_LBRACK] = ACTIONS(514), [anon_sym_const] = ACTIONS(25), [anon_sym_restrict] = ACTIONS(25), [anon_sym_volatile] = ACTIONS(25), [anon_sym__Atomic] = ACTIONS(25), - [sym_identifier] = ACTIONS(235), + [sym_identifier] = ACTIONS(233), [sym_comment] = ACTIONS(39), }, [752] = { [anon_sym_COMMA] = ACTIONS(81), - [anon_sym_RPAREN] = ACTIONS(2582), + [anon_sym_RPAREN] = ACTIONS(2571), [anon_sym_extern] = ACTIONS(83), - [anon_sym_LPAREN2] = ACTIONS(2585), + [anon_sym_LPAREN2] = ACTIONS(2574), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_LBRACK] = ACTIONS(2582), + [anon_sym_LBRACK] = ACTIONS(2571), [anon_sym_static] = ACTIONS(83), [anon_sym_auto] = ACTIONS(83), [anon_sym_register] = ACTIONS(83), @@ -29116,49 +29135,49 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_type_qualifier] = STATE(972), [sym_parameter_list] = STATE(212), [aux_sym_type_definition_repeat1] = STATE(972), - [anon_sym_COMMA] = ACTIONS(1484), - [anon_sym_RPAREN] = ACTIONS(1484), - [anon_sym_LPAREN2] = ACTIONS(1142), - [anon_sym_STAR] = ACTIONS(1144), - [anon_sym_LBRACK] = ACTIONS(518), + [anon_sym_COMMA] = ACTIONS(1475), + [anon_sym_RPAREN] = ACTIONS(1475), + [anon_sym_LPAREN2] = ACTIONS(1135), + [anon_sym_STAR] = ACTIONS(1137), + [anon_sym_LBRACK] = ACTIONS(514), [anon_sym_const] = ACTIONS(25), [anon_sym_restrict] = ACTIONS(25), [anon_sym_volatile] = ACTIONS(25), [anon_sym__Atomic] = ACTIONS(25), - [sym_identifier] = ACTIONS(532), + [sym_identifier] = ACTIONS(528), [sym_comment] = ACTIONS(39), }, [754] = { [sym_storage_class_specifier] = STATE(754), [sym_type_qualifier] = STATE(754), [aux_sym__declaration_specifiers_repeat1] = STATE(754), - [anon_sym_COMMA] = ACTIONS(646), - [anon_sym_RPAREN] = ACTIONS(646), - [anon_sym_extern] = ACTIONS(303), - [anon_sym_LPAREN2] = ACTIONS(646), - [anon_sym_STAR] = ACTIONS(646), - [anon_sym_LBRACK] = ACTIONS(646), - [anon_sym_static] = ACTIONS(303), - [anon_sym_auto] = ACTIONS(303), - [anon_sym_register] = ACTIONS(303), - [anon_sym_inline] = ACTIONS(303), - [anon_sym_const] = ACTIONS(306), - [anon_sym_restrict] = ACTIONS(306), - [anon_sym_volatile] = ACTIONS(306), - [anon_sym__Atomic] = ACTIONS(306), - [sym_identifier] = ACTIONS(309), + [anon_sym_COMMA] = ACTIONS(642), + [anon_sym_RPAREN] = ACTIONS(642), + [anon_sym_extern] = ACTIONS(301), + [anon_sym_LPAREN2] = ACTIONS(642), + [anon_sym_STAR] = ACTIONS(642), + [anon_sym_LBRACK] = ACTIONS(642), + [anon_sym_static] = ACTIONS(301), + [anon_sym_auto] = ACTIONS(301), + [anon_sym_register] = ACTIONS(301), + [anon_sym_inline] = ACTIONS(301), + [anon_sym_const] = ACTIONS(304), + [anon_sym_restrict] = ACTIONS(304), + [anon_sym_volatile] = ACTIONS(304), + [anon_sym__Atomic] = ACTIONS(304), + [sym_identifier] = ACTIONS(307), [sym_comment] = ACTIONS(39), }, [755] = { [sym_storage_class_specifier] = STATE(754), [sym_type_qualifier] = STATE(754), [aux_sym__declaration_specifiers_repeat1] = STATE(754), - [anon_sym_COMMA] = ACTIONS(648), - [anon_sym_RPAREN] = ACTIONS(648), + [anon_sym_COMMA] = ACTIONS(644), + [anon_sym_RPAREN] = ACTIONS(644), [anon_sym_extern] = ACTIONS(23), - [anon_sym_LPAREN2] = ACTIONS(648), - [anon_sym_STAR] = ACTIONS(648), - [anon_sym_LBRACK] = ACTIONS(648), + [anon_sym_LPAREN2] = ACTIONS(644), + [anon_sym_STAR] = ACTIONS(644), + [anon_sym_LBRACK] = ACTIONS(644), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -29167,7 +29186,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_restrict] = ACTIONS(25), [anon_sym_volatile] = ACTIONS(25), [anon_sym__Atomic] = ACTIONS(25), - [sym_identifier] = ACTIONS(650), + [sym_identifier] = ACTIONS(646), [sym_comment] = ACTIONS(39), }, [756] = { @@ -29192,565 +29211,565 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(921), [sym_concatenated_string] = STATE(921), [sym_string_literal] = STATE(272), - [anon_sym_LBRACE] = ACTIONS(632), - [anon_sym_LPAREN2] = ACTIONS(606), - [anon_sym_STAR] = ACTIONS(608), - [anon_sym_AMP] = ACTIONS(608), - [anon_sym_BANG] = ACTIONS(616), - [anon_sym_TILDE] = ACTIONS(618), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_DASH_DASH] = ACTIONS(622), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_sizeof] = ACTIONS(624), - [sym_number_literal] = ACTIONS(2392), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2394), - [sym_false] = ACTIONS(2394), - [sym_null] = ACTIONS(2394), - [sym_identifier] = ACTIONS(2394), + [anon_sym_LBRACE] = ACTIONS(628), + [anon_sym_LPAREN2] = ACTIONS(602), + [anon_sym_STAR] = ACTIONS(604), + [anon_sym_AMP] = ACTIONS(604), + [anon_sym_BANG] = ACTIONS(612), + [anon_sym_TILDE] = ACTIONS(614), + [anon_sym_PLUS] = ACTIONS(616), + [anon_sym_DASH] = ACTIONS(616), + [anon_sym_DASH_DASH] = ACTIONS(618), + [anon_sym_PLUS_PLUS] = ACTIONS(618), + [anon_sym_sizeof] = ACTIONS(620), + [sym_number_literal] = ACTIONS(2381), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(2383), + [sym_false] = ACTIONS(2383), + [sym_null] = ACTIONS(2383), + [sym_identifier] = ACTIONS(2383), [sym_comment] = ACTIONS(39), }, [757] = { - [anon_sym_RPAREN] = ACTIONS(2589), + [anon_sym_RPAREN] = ACTIONS(2578), [sym_comment] = ACTIONS(39), }, [758] = { - [anon_sym_COMMA] = ACTIONS(2591), - [anon_sym_RPAREN] = ACTIONS(2591), - [anon_sym_SEMI] = ACTIONS(2591), - [anon_sym_LBRACE] = ACTIONS(2591), - [anon_sym_LPAREN2] = ACTIONS(2591), - [anon_sym_LBRACK] = ACTIONS(2591), - [anon_sym_EQ] = ACTIONS(2591), + [anon_sym_COMMA] = ACTIONS(2580), + [anon_sym_RPAREN] = ACTIONS(2580), + [anon_sym_SEMI] = ACTIONS(2580), + [anon_sym_LBRACE] = ACTIONS(2580), + [anon_sym_LPAREN2] = ACTIONS(2580), + [anon_sym_LBRACK] = ACTIONS(2580), + [anon_sym_EQ] = ACTIONS(2580), [sym_comment] = ACTIONS(39), }, [759] = { [sym_storage_class_specifier] = STATE(759), [sym_type_qualifier] = STATE(759), [aux_sym__declaration_specifiers_repeat1] = STATE(759), - [anon_sym_extern] = ACTIONS(303), - [anon_sym_LPAREN2] = ACTIONS(646), - [anon_sym_STAR] = ACTIONS(646), - [anon_sym_RBRACK] = ACTIONS(646), - [anon_sym_static] = ACTIONS(303), - [anon_sym_auto] = ACTIONS(303), - [anon_sym_register] = ACTIONS(303), - [anon_sym_inline] = ACTIONS(303), - [anon_sym_const] = ACTIONS(306), - [anon_sym_restrict] = ACTIONS(306), - [anon_sym_volatile] = ACTIONS(306), - [anon_sym__Atomic] = ACTIONS(306), - [anon_sym_AMP] = ACTIONS(646), - [anon_sym_BANG] = ACTIONS(646), - [anon_sym_TILDE] = ACTIONS(646), - [anon_sym_PLUS] = ACTIONS(309), - [anon_sym_DASH] = ACTIONS(309), - [anon_sym_DASH_DASH] = ACTIONS(646), - [anon_sym_PLUS_PLUS] = ACTIONS(646), - [anon_sym_sizeof] = ACTIONS(309), - [sym_number_literal] = ACTIONS(646), - [anon_sym_SQUOTE] = ACTIONS(646), - [anon_sym_DQUOTE] = ACTIONS(646), - [sym_true] = ACTIONS(309), - [sym_false] = ACTIONS(309), - [sym_null] = ACTIONS(309), - [sym_identifier] = ACTIONS(309), + [anon_sym_extern] = ACTIONS(301), + [anon_sym_LPAREN2] = ACTIONS(642), + [anon_sym_STAR] = ACTIONS(642), + [anon_sym_RBRACK] = ACTIONS(642), + [anon_sym_static] = ACTIONS(301), + [anon_sym_auto] = ACTIONS(301), + [anon_sym_register] = ACTIONS(301), + [anon_sym_inline] = ACTIONS(301), + [anon_sym_const] = ACTIONS(304), + [anon_sym_restrict] = ACTIONS(304), + [anon_sym_volatile] = ACTIONS(304), + [anon_sym__Atomic] = ACTIONS(304), + [anon_sym_AMP] = ACTIONS(642), + [anon_sym_BANG] = ACTIONS(642), + [anon_sym_TILDE] = ACTIONS(642), + [anon_sym_PLUS] = ACTIONS(307), + [anon_sym_DASH] = ACTIONS(307), + [anon_sym_DASH_DASH] = ACTIONS(642), + [anon_sym_PLUS_PLUS] = ACTIONS(642), + [anon_sym_sizeof] = ACTIONS(307), + [sym_number_literal] = ACTIONS(642), + [anon_sym_SQUOTE] = ACTIONS(642), + [anon_sym_DQUOTE] = ACTIONS(642), + [sym_true] = ACTIONS(307), + [sym_false] = ACTIONS(307), + [sym_null] = ACTIONS(307), + [sym_identifier] = ACTIONS(307), [sym_comment] = ACTIONS(39), }, [760] = { [sym_argument_list] = STATE(465), - [anon_sym_LPAREN2] = ACTIONS(1096), - [anon_sym_STAR] = ACTIONS(1166), - [anon_sym_LBRACK] = ACTIONS(1100), - [anon_sym_RBRACK] = ACTIONS(2540), - [anon_sym_EQ] = ACTIONS(1168), - [anon_sym_QMARK] = ACTIONS(2540), - [anon_sym_STAR_EQ] = ACTIONS(1172), - [anon_sym_SLASH_EQ] = ACTIONS(1172), - [anon_sym_PERCENT_EQ] = ACTIONS(1172), - [anon_sym_PLUS_EQ] = ACTIONS(1172), - [anon_sym_DASH_EQ] = ACTIONS(1172), - [anon_sym_LT_LT_EQ] = ACTIONS(1172), - [anon_sym_GT_GT_EQ] = ACTIONS(1172), - [anon_sym_AMP_EQ] = ACTIONS(1172), - [anon_sym_CARET_EQ] = ACTIONS(1172), - [anon_sym_PIPE_EQ] = ACTIONS(1172), - [anon_sym_AMP] = ACTIONS(1174), - [anon_sym_PIPE_PIPE] = ACTIONS(1176), - [anon_sym_AMP_AMP] = ACTIONS(1178), - [anon_sym_PIPE] = ACTIONS(1180), - [anon_sym_CARET] = ACTIONS(1182), - [anon_sym_EQ_EQ] = ACTIONS(1184), - [anon_sym_BANG_EQ] = ACTIONS(1184), - [anon_sym_LT] = ACTIONS(1186), - [anon_sym_GT] = ACTIONS(1186), - [anon_sym_LT_EQ] = ACTIONS(1188), - [anon_sym_GT_EQ] = ACTIONS(1188), - [anon_sym_LT_LT] = ACTIONS(1190), - [anon_sym_GT_GT] = ACTIONS(1190), - [anon_sym_PLUS] = ACTIONS(1192), - [anon_sym_DASH] = ACTIONS(1192), - [anon_sym_SLASH] = ACTIONS(1166), - [anon_sym_PERCENT] = ACTIONS(1166), - [anon_sym_DASH_DASH] = ACTIONS(1128), - [anon_sym_PLUS_PLUS] = ACTIONS(1128), - [anon_sym_DOT] = ACTIONS(1130), - [anon_sym_DASH_GT] = ACTIONS(1130), + [anon_sym_LPAREN2] = ACTIONS(1089), + [anon_sym_STAR] = ACTIONS(1159), + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_RBRACK] = ACTIONS(2529), + [anon_sym_EQ] = ACTIONS(1161), + [anon_sym_QMARK] = ACTIONS(2529), + [anon_sym_STAR_EQ] = ACTIONS(1165), + [anon_sym_SLASH_EQ] = ACTIONS(1165), + [anon_sym_PERCENT_EQ] = ACTIONS(1165), + [anon_sym_PLUS_EQ] = ACTIONS(1165), + [anon_sym_DASH_EQ] = ACTIONS(1165), + [anon_sym_LT_LT_EQ] = ACTIONS(1165), + [anon_sym_GT_GT_EQ] = ACTIONS(1165), + [anon_sym_AMP_EQ] = ACTIONS(1165), + [anon_sym_CARET_EQ] = ACTIONS(1165), + [anon_sym_PIPE_EQ] = ACTIONS(1165), + [anon_sym_AMP] = ACTIONS(1167), + [anon_sym_PIPE_PIPE] = ACTIONS(1169), + [anon_sym_AMP_AMP] = ACTIONS(1171), + [anon_sym_PIPE] = ACTIONS(1173), + [anon_sym_CARET] = ACTIONS(1175), + [anon_sym_EQ_EQ] = ACTIONS(1177), + [anon_sym_BANG_EQ] = ACTIONS(1177), + [anon_sym_LT] = ACTIONS(1179), + [anon_sym_GT] = ACTIONS(1179), + [anon_sym_LT_EQ] = ACTIONS(1181), + [anon_sym_GT_EQ] = ACTIONS(1181), + [anon_sym_LT_LT] = ACTIONS(1183), + [anon_sym_GT_GT] = ACTIONS(1183), + [anon_sym_PLUS] = ACTIONS(1185), + [anon_sym_DASH] = ACTIONS(1185), + [anon_sym_SLASH] = ACTIONS(1159), + [anon_sym_PERCENT] = ACTIONS(1159), + [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_PLUS_PLUS] = ACTIONS(1121), + [anon_sym_DOT] = ACTIONS(1123), + [anon_sym_DASH_GT] = ACTIONS(1123), [sym_comment] = ACTIONS(39), }, [761] = { [sym_argument_list] = STATE(465), - [anon_sym_LPAREN2] = ACTIONS(1096), - [anon_sym_STAR] = ACTIONS(1620), - [anon_sym_LBRACK] = ACTIONS(1100), - [anon_sym_EQ] = ACTIONS(1622), - [anon_sym_COLON] = ACTIONS(2593), - [anon_sym_QMARK] = ACTIONS(1626), - [anon_sym_STAR_EQ] = ACTIONS(1628), - [anon_sym_SLASH_EQ] = ACTIONS(1628), - [anon_sym_PERCENT_EQ] = ACTIONS(1628), - [anon_sym_PLUS_EQ] = ACTIONS(1628), - [anon_sym_DASH_EQ] = ACTIONS(1628), - [anon_sym_LT_LT_EQ] = ACTIONS(1628), - [anon_sym_GT_GT_EQ] = ACTIONS(1628), - [anon_sym_AMP_EQ] = ACTIONS(1628), - [anon_sym_CARET_EQ] = ACTIONS(1628), - [anon_sym_PIPE_EQ] = ACTIONS(1628), - [anon_sym_AMP] = ACTIONS(1630), - [anon_sym_PIPE_PIPE] = ACTIONS(1632), - [anon_sym_AMP_AMP] = ACTIONS(1634), - [anon_sym_PIPE] = ACTIONS(1636), - [anon_sym_CARET] = ACTIONS(1638), - [anon_sym_EQ_EQ] = ACTIONS(1640), - [anon_sym_BANG_EQ] = ACTIONS(1640), - [anon_sym_LT] = ACTIONS(1642), - [anon_sym_GT] = ACTIONS(1642), - [anon_sym_LT_EQ] = ACTIONS(1644), - [anon_sym_GT_EQ] = ACTIONS(1644), - [anon_sym_LT_LT] = ACTIONS(1646), - [anon_sym_GT_GT] = ACTIONS(1646), - [anon_sym_PLUS] = ACTIONS(1648), - [anon_sym_DASH] = ACTIONS(1648), - [anon_sym_SLASH] = ACTIONS(1620), - [anon_sym_PERCENT] = ACTIONS(1620), - [anon_sym_DASH_DASH] = ACTIONS(1128), - [anon_sym_PLUS_PLUS] = ACTIONS(1128), - [anon_sym_DOT] = ACTIONS(1130), - [anon_sym_DASH_GT] = ACTIONS(1130), + [anon_sym_LPAREN2] = ACTIONS(1089), + [anon_sym_STAR] = ACTIONS(1609), + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(1611), + [anon_sym_COLON] = ACTIONS(2582), + [anon_sym_QMARK] = ACTIONS(1615), + [anon_sym_STAR_EQ] = ACTIONS(1617), + [anon_sym_SLASH_EQ] = ACTIONS(1617), + [anon_sym_PERCENT_EQ] = ACTIONS(1617), + [anon_sym_PLUS_EQ] = ACTIONS(1617), + [anon_sym_DASH_EQ] = ACTIONS(1617), + [anon_sym_LT_LT_EQ] = ACTIONS(1617), + [anon_sym_GT_GT_EQ] = ACTIONS(1617), + [anon_sym_AMP_EQ] = ACTIONS(1617), + [anon_sym_CARET_EQ] = ACTIONS(1617), + [anon_sym_PIPE_EQ] = ACTIONS(1617), + [anon_sym_AMP] = ACTIONS(1619), + [anon_sym_PIPE_PIPE] = ACTIONS(1621), + [anon_sym_AMP_AMP] = ACTIONS(1623), + [anon_sym_PIPE] = ACTIONS(1625), + [anon_sym_CARET] = ACTIONS(1627), + [anon_sym_EQ_EQ] = ACTIONS(1629), + [anon_sym_BANG_EQ] = ACTIONS(1629), + [anon_sym_LT] = ACTIONS(1631), + [anon_sym_GT] = ACTIONS(1631), + [anon_sym_LT_EQ] = ACTIONS(1633), + [anon_sym_GT_EQ] = ACTIONS(1633), + [anon_sym_LT_LT] = ACTIONS(1635), + [anon_sym_GT_GT] = ACTIONS(1635), + [anon_sym_PLUS] = ACTIONS(1637), + [anon_sym_DASH] = ACTIONS(1637), + [anon_sym_SLASH] = ACTIONS(1609), + [anon_sym_PERCENT] = ACTIONS(1609), + [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_PLUS_PLUS] = ACTIONS(1121), + [anon_sym_DOT] = ACTIONS(1123), + [anon_sym_DASH_GT] = ACTIONS(1123), [sym_comment] = ACTIONS(39), }, [762] = { [sym_argument_list] = STATE(465), - [anon_sym_LPAREN2] = ACTIONS(1096), - [anon_sym_STAR] = ACTIONS(1166), - [anon_sym_LBRACK] = ACTIONS(1100), - [anon_sym_RBRACK] = ACTIONS(2544), - [anon_sym_EQ] = ACTIONS(2546), - [anon_sym_QMARK] = ACTIONS(2544), - [anon_sym_STAR_EQ] = ACTIONS(2544), - [anon_sym_SLASH_EQ] = ACTIONS(2544), - [anon_sym_PERCENT_EQ] = ACTIONS(2544), - [anon_sym_PLUS_EQ] = ACTIONS(2544), - [anon_sym_DASH_EQ] = ACTIONS(2544), - [anon_sym_LT_LT_EQ] = ACTIONS(2544), - [anon_sym_GT_GT_EQ] = ACTIONS(2544), - [anon_sym_AMP_EQ] = ACTIONS(2544), - [anon_sym_CARET_EQ] = ACTIONS(2544), - [anon_sym_PIPE_EQ] = ACTIONS(2544), - [anon_sym_AMP] = ACTIONS(2546), - [anon_sym_PIPE_PIPE] = ACTIONS(2544), - [anon_sym_AMP_AMP] = ACTIONS(2544), - [anon_sym_PIPE] = ACTIONS(2546), - [anon_sym_CARET] = ACTIONS(2546), - [anon_sym_EQ_EQ] = ACTIONS(1184), - [anon_sym_BANG_EQ] = ACTIONS(1184), - [anon_sym_LT] = ACTIONS(1186), - [anon_sym_GT] = ACTIONS(1186), - [anon_sym_LT_EQ] = ACTIONS(1188), - [anon_sym_GT_EQ] = ACTIONS(1188), - [anon_sym_LT_LT] = ACTIONS(1190), - [anon_sym_GT_GT] = ACTIONS(1190), - [anon_sym_PLUS] = ACTIONS(1192), - [anon_sym_DASH] = ACTIONS(1192), - [anon_sym_SLASH] = ACTIONS(1166), - [anon_sym_PERCENT] = ACTIONS(1166), - [anon_sym_DASH_DASH] = ACTIONS(1128), - [anon_sym_PLUS_PLUS] = ACTIONS(1128), - [anon_sym_DOT] = ACTIONS(1130), - [anon_sym_DASH_GT] = ACTIONS(1130), + [anon_sym_LPAREN2] = ACTIONS(1089), + [anon_sym_STAR] = ACTIONS(1159), + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_RBRACK] = ACTIONS(2533), + [anon_sym_EQ] = ACTIONS(2535), + [anon_sym_QMARK] = ACTIONS(2533), + [anon_sym_STAR_EQ] = ACTIONS(2533), + [anon_sym_SLASH_EQ] = ACTIONS(2533), + [anon_sym_PERCENT_EQ] = ACTIONS(2533), + [anon_sym_PLUS_EQ] = ACTIONS(2533), + [anon_sym_DASH_EQ] = ACTIONS(2533), + [anon_sym_LT_LT_EQ] = ACTIONS(2533), + [anon_sym_GT_GT_EQ] = ACTIONS(2533), + [anon_sym_AMP_EQ] = ACTIONS(2533), + [anon_sym_CARET_EQ] = ACTIONS(2533), + [anon_sym_PIPE_EQ] = ACTIONS(2533), + [anon_sym_AMP] = ACTIONS(2535), + [anon_sym_PIPE_PIPE] = ACTIONS(2533), + [anon_sym_AMP_AMP] = ACTIONS(2533), + [anon_sym_PIPE] = ACTIONS(2535), + [anon_sym_CARET] = ACTIONS(2535), + [anon_sym_EQ_EQ] = ACTIONS(1177), + [anon_sym_BANG_EQ] = ACTIONS(1177), + [anon_sym_LT] = ACTIONS(1179), + [anon_sym_GT] = ACTIONS(1179), + [anon_sym_LT_EQ] = ACTIONS(1181), + [anon_sym_GT_EQ] = ACTIONS(1181), + [anon_sym_LT_LT] = ACTIONS(1183), + [anon_sym_GT_GT] = ACTIONS(1183), + [anon_sym_PLUS] = ACTIONS(1185), + [anon_sym_DASH] = ACTIONS(1185), + [anon_sym_SLASH] = ACTIONS(1159), + [anon_sym_PERCENT] = ACTIONS(1159), + [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_PLUS_PLUS] = ACTIONS(1121), + [anon_sym_DOT] = ACTIONS(1123), + [anon_sym_DASH_GT] = ACTIONS(1123), [sym_comment] = ACTIONS(39), }, [763] = { [sym_argument_list] = STATE(465), - [anon_sym_LPAREN2] = ACTIONS(1096), - [anon_sym_STAR] = ACTIONS(1166), - [anon_sym_LBRACK] = ACTIONS(1100), - [anon_sym_RBRACK] = ACTIONS(2548), - [anon_sym_EQ] = ACTIONS(2550), - [anon_sym_QMARK] = ACTIONS(2548), - [anon_sym_STAR_EQ] = ACTIONS(2548), - [anon_sym_SLASH_EQ] = ACTIONS(2548), - [anon_sym_PERCENT_EQ] = ACTIONS(2548), - [anon_sym_PLUS_EQ] = ACTIONS(2548), - [anon_sym_DASH_EQ] = ACTIONS(2548), - [anon_sym_LT_LT_EQ] = ACTIONS(2548), - [anon_sym_GT_GT_EQ] = ACTIONS(2548), - [anon_sym_AMP_EQ] = ACTIONS(2548), - [anon_sym_CARET_EQ] = ACTIONS(2548), - [anon_sym_PIPE_EQ] = ACTIONS(2548), - [anon_sym_AMP] = ACTIONS(1174), - [anon_sym_PIPE_PIPE] = ACTIONS(2548), - [anon_sym_AMP_AMP] = ACTIONS(1178), - [anon_sym_PIPE] = ACTIONS(1180), - [anon_sym_CARET] = ACTIONS(1182), - [anon_sym_EQ_EQ] = ACTIONS(1184), - [anon_sym_BANG_EQ] = ACTIONS(1184), - [anon_sym_LT] = ACTIONS(1186), - [anon_sym_GT] = ACTIONS(1186), - [anon_sym_LT_EQ] = ACTIONS(1188), - [anon_sym_GT_EQ] = ACTIONS(1188), - [anon_sym_LT_LT] = ACTIONS(1190), - [anon_sym_GT_GT] = ACTIONS(1190), - [anon_sym_PLUS] = ACTIONS(1192), - [anon_sym_DASH] = ACTIONS(1192), - [anon_sym_SLASH] = ACTIONS(1166), - [anon_sym_PERCENT] = ACTIONS(1166), - [anon_sym_DASH_DASH] = ACTIONS(1128), - [anon_sym_PLUS_PLUS] = ACTIONS(1128), - [anon_sym_DOT] = ACTIONS(1130), - [anon_sym_DASH_GT] = ACTIONS(1130), + [anon_sym_LPAREN2] = ACTIONS(1089), + [anon_sym_STAR] = ACTIONS(1159), + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_RBRACK] = ACTIONS(2537), + [anon_sym_EQ] = ACTIONS(2539), + [anon_sym_QMARK] = ACTIONS(2537), + [anon_sym_STAR_EQ] = ACTIONS(2537), + [anon_sym_SLASH_EQ] = ACTIONS(2537), + [anon_sym_PERCENT_EQ] = ACTIONS(2537), + [anon_sym_PLUS_EQ] = ACTIONS(2537), + [anon_sym_DASH_EQ] = ACTIONS(2537), + [anon_sym_LT_LT_EQ] = ACTIONS(2537), + [anon_sym_GT_GT_EQ] = ACTIONS(2537), + [anon_sym_AMP_EQ] = ACTIONS(2537), + [anon_sym_CARET_EQ] = ACTIONS(2537), + [anon_sym_PIPE_EQ] = ACTIONS(2537), + [anon_sym_AMP] = ACTIONS(1167), + [anon_sym_PIPE_PIPE] = ACTIONS(2537), + [anon_sym_AMP_AMP] = ACTIONS(1171), + [anon_sym_PIPE] = ACTIONS(1173), + [anon_sym_CARET] = ACTIONS(1175), + [anon_sym_EQ_EQ] = ACTIONS(1177), + [anon_sym_BANG_EQ] = ACTIONS(1177), + [anon_sym_LT] = ACTIONS(1179), + [anon_sym_GT] = ACTIONS(1179), + [anon_sym_LT_EQ] = ACTIONS(1181), + [anon_sym_GT_EQ] = ACTIONS(1181), + [anon_sym_LT_LT] = ACTIONS(1183), + [anon_sym_GT_GT] = ACTIONS(1183), + [anon_sym_PLUS] = ACTIONS(1185), + [anon_sym_DASH] = ACTIONS(1185), + [anon_sym_SLASH] = ACTIONS(1159), + [anon_sym_PERCENT] = ACTIONS(1159), + [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_PLUS_PLUS] = ACTIONS(1121), + [anon_sym_DOT] = ACTIONS(1123), + [anon_sym_DASH_GT] = ACTIONS(1123), [sym_comment] = ACTIONS(39), }, [764] = { [sym_argument_list] = STATE(465), - [anon_sym_LPAREN2] = ACTIONS(1096), - [anon_sym_STAR] = ACTIONS(1166), - [anon_sym_LBRACK] = ACTIONS(1100), - [anon_sym_RBRACK] = ACTIONS(2548), - [anon_sym_EQ] = ACTIONS(2550), - [anon_sym_QMARK] = ACTIONS(2548), - [anon_sym_STAR_EQ] = ACTIONS(2548), - [anon_sym_SLASH_EQ] = ACTIONS(2548), - [anon_sym_PERCENT_EQ] = ACTIONS(2548), - [anon_sym_PLUS_EQ] = ACTIONS(2548), - [anon_sym_DASH_EQ] = ACTIONS(2548), - [anon_sym_LT_LT_EQ] = ACTIONS(2548), - [anon_sym_GT_GT_EQ] = ACTIONS(2548), - [anon_sym_AMP_EQ] = ACTIONS(2548), - [anon_sym_CARET_EQ] = ACTIONS(2548), - [anon_sym_PIPE_EQ] = ACTIONS(2548), - [anon_sym_AMP] = ACTIONS(1174), - [anon_sym_PIPE_PIPE] = ACTIONS(2548), - [anon_sym_AMP_AMP] = ACTIONS(2548), - [anon_sym_PIPE] = ACTIONS(1180), - [anon_sym_CARET] = ACTIONS(1182), - [anon_sym_EQ_EQ] = ACTIONS(1184), - [anon_sym_BANG_EQ] = ACTIONS(1184), - [anon_sym_LT] = ACTIONS(1186), - [anon_sym_GT] = ACTIONS(1186), - [anon_sym_LT_EQ] = ACTIONS(1188), - [anon_sym_GT_EQ] = ACTIONS(1188), - [anon_sym_LT_LT] = ACTIONS(1190), - [anon_sym_GT_GT] = ACTIONS(1190), - [anon_sym_PLUS] = ACTIONS(1192), - [anon_sym_DASH] = ACTIONS(1192), - [anon_sym_SLASH] = ACTIONS(1166), - [anon_sym_PERCENT] = ACTIONS(1166), - [anon_sym_DASH_DASH] = ACTIONS(1128), - [anon_sym_PLUS_PLUS] = ACTIONS(1128), - [anon_sym_DOT] = ACTIONS(1130), - [anon_sym_DASH_GT] = ACTIONS(1130), + [anon_sym_LPAREN2] = ACTIONS(1089), + [anon_sym_STAR] = ACTIONS(1159), + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_RBRACK] = ACTIONS(2537), + [anon_sym_EQ] = ACTIONS(2539), + [anon_sym_QMARK] = ACTIONS(2537), + [anon_sym_STAR_EQ] = ACTIONS(2537), + [anon_sym_SLASH_EQ] = ACTIONS(2537), + [anon_sym_PERCENT_EQ] = ACTIONS(2537), + [anon_sym_PLUS_EQ] = ACTIONS(2537), + [anon_sym_DASH_EQ] = ACTIONS(2537), + [anon_sym_LT_LT_EQ] = ACTIONS(2537), + [anon_sym_GT_GT_EQ] = ACTIONS(2537), + [anon_sym_AMP_EQ] = ACTIONS(2537), + [anon_sym_CARET_EQ] = ACTIONS(2537), + [anon_sym_PIPE_EQ] = ACTIONS(2537), + [anon_sym_AMP] = ACTIONS(1167), + [anon_sym_PIPE_PIPE] = ACTIONS(2537), + [anon_sym_AMP_AMP] = ACTIONS(2537), + [anon_sym_PIPE] = ACTIONS(1173), + [anon_sym_CARET] = ACTIONS(1175), + [anon_sym_EQ_EQ] = ACTIONS(1177), + [anon_sym_BANG_EQ] = ACTIONS(1177), + [anon_sym_LT] = ACTIONS(1179), + [anon_sym_GT] = ACTIONS(1179), + [anon_sym_LT_EQ] = ACTIONS(1181), + [anon_sym_GT_EQ] = ACTIONS(1181), + [anon_sym_LT_LT] = ACTIONS(1183), + [anon_sym_GT_GT] = ACTIONS(1183), + [anon_sym_PLUS] = ACTIONS(1185), + [anon_sym_DASH] = ACTIONS(1185), + [anon_sym_SLASH] = ACTIONS(1159), + [anon_sym_PERCENT] = ACTIONS(1159), + [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_PLUS_PLUS] = ACTIONS(1121), + [anon_sym_DOT] = ACTIONS(1123), + [anon_sym_DASH_GT] = ACTIONS(1123), [sym_comment] = ACTIONS(39), }, [765] = { [sym_argument_list] = STATE(465), - [anon_sym_LPAREN2] = ACTIONS(1096), - [anon_sym_STAR] = ACTIONS(1166), - [anon_sym_LBRACK] = ACTIONS(1100), - [anon_sym_RBRACK] = ACTIONS(2544), - [anon_sym_EQ] = ACTIONS(2546), - [anon_sym_QMARK] = ACTIONS(2544), - [anon_sym_STAR_EQ] = ACTIONS(2544), - [anon_sym_SLASH_EQ] = ACTIONS(2544), - [anon_sym_PERCENT_EQ] = ACTIONS(2544), - [anon_sym_PLUS_EQ] = ACTIONS(2544), - [anon_sym_DASH_EQ] = ACTIONS(2544), - [anon_sym_LT_LT_EQ] = ACTIONS(2544), - [anon_sym_GT_GT_EQ] = ACTIONS(2544), - [anon_sym_AMP_EQ] = ACTIONS(2544), - [anon_sym_CARET_EQ] = ACTIONS(2544), - [anon_sym_PIPE_EQ] = ACTIONS(2544), - [anon_sym_AMP] = ACTIONS(1174), - [anon_sym_PIPE_PIPE] = ACTIONS(2544), - [anon_sym_AMP_AMP] = ACTIONS(2544), - [anon_sym_PIPE] = ACTIONS(2546), - [anon_sym_CARET] = ACTIONS(1182), - [anon_sym_EQ_EQ] = ACTIONS(1184), - [anon_sym_BANG_EQ] = ACTIONS(1184), - [anon_sym_LT] = ACTIONS(1186), - [anon_sym_GT] = ACTIONS(1186), - [anon_sym_LT_EQ] = ACTIONS(1188), - [anon_sym_GT_EQ] = ACTIONS(1188), - [anon_sym_LT_LT] = ACTIONS(1190), - [anon_sym_GT_GT] = ACTIONS(1190), - [anon_sym_PLUS] = ACTIONS(1192), - [anon_sym_DASH] = ACTIONS(1192), - [anon_sym_SLASH] = ACTIONS(1166), - [anon_sym_PERCENT] = ACTIONS(1166), - [anon_sym_DASH_DASH] = ACTIONS(1128), - [anon_sym_PLUS_PLUS] = ACTIONS(1128), - [anon_sym_DOT] = ACTIONS(1130), - [anon_sym_DASH_GT] = ACTIONS(1130), + [anon_sym_LPAREN2] = ACTIONS(1089), + [anon_sym_STAR] = ACTIONS(1159), + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_RBRACK] = ACTIONS(2533), + [anon_sym_EQ] = ACTIONS(2535), + [anon_sym_QMARK] = ACTIONS(2533), + [anon_sym_STAR_EQ] = ACTIONS(2533), + [anon_sym_SLASH_EQ] = ACTIONS(2533), + [anon_sym_PERCENT_EQ] = ACTIONS(2533), + [anon_sym_PLUS_EQ] = ACTIONS(2533), + [anon_sym_DASH_EQ] = ACTIONS(2533), + [anon_sym_LT_LT_EQ] = ACTIONS(2533), + [anon_sym_GT_GT_EQ] = ACTIONS(2533), + [anon_sym_AMP_EQ] = ACTIONS(2533), + [anon_sym_CARET_EQ] = ACTIONS(2533), + [anon_sym_PIPE_EQ] = ACTIONS(2533), + [anon_sym_AMP] = ACTIONS(1167), + [anon_sym_PIPE_PIPE] = ACTIONS(2533), + [anon_sym_AMP_AMP] = ACTIONS(2533), + [anon_sym_PIPE] = ACTIONS(2535), + [anon_sym_CARET] = ACTIONS(1175), + [anon_sym_EQ_EQ] = ACTIONS(1177), + [anon_sym_BANG_EQ] = ACTIONS(1177), + [anon_sym_LT] = ACTIONS(1179), + [anon_sym_GT] = ACTIONS(1179), + [anon_sym_LT_EQ] = ACTIONS(1181), + [anon_sym_GT_EQ] = ACTIONS(1181), + [anon_sym_LT_LT] = ACTIONS(1183), + [anon_sym_GT_GT] = ACTIONS(1183), + [anon_sym_PLUS] = ACTIONS(1185), + [anon_sym_DASH] = ACTIONS(1185), + [anon_sym_SLASH] = ACTIONS(1159), + [anon_sym_PERCENT] = ACTIONS(1159), + [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_PLUS_PLUS] = ACTIONS(1121), + [anon_sym_DOT] = ACTIONS(1123), + [anon_sym_DASH_GT] = ACTIONS(1123), [sym_comment] = ACTIONS(39), }, [766] = { [sym_argument_list] = STATE(465), - [anon_sym_LPAREN2] = ACTIONS(1096), - [anon_sym_STAR] = ACTIONS(1166), - [anon_sym_LBRACK] = ACTIONS(1100), - [anon_sym_RBRACK] = ACTIONS(2544), - [anon_sym_EQ] = ACTIONS(2546), - [anon_sym_QMARK] = ACTIONS(2544), - [anon_sym_STAR_EQ] = ACTIONS(2544), - [anon_sym_SLASH_EQ] = ACTIONS(2544), - [anon_sym_PERCENT_EQ] = ACTIONS(2544), - [anon_sym_PLUS_EQ] = ACTIONS(2544), - [anon_sym_DASH_EQ] = ACTIONS(2544), - [anon_sym_LT_LT_EQ] = ACTIONS(2544), - [anon_sym_GT_GT_EQ] = ACTIONS(2544), - [anon_sym_AMP_EQ] = ACTIONS(2544), - [anon_sym_CARET_EQ] = ACTIONS(2544), - [anon_sym_PIPE_EQ] = ACTIONS(2544), - [anon_sym_AMP] = ACTIONS(1174), - [anon_sym_PIPE_PIPE] = ACTIONS(2544), - [anon_sym_AMP_AMP] = ACTIONS(2544), - [anon_sym_PIPE] = ACTIONS(2546), - [anon_sym_CARET] = ACTIONS(2546), - [anon_sym_EQ_EQ] = ACTIONS(1184), - [anon_sym_BANG_EQ] = ACTIONS(1184), - [anon_sym_LT] = ACTIONS(1186), - [anon_sym_GT] = ACTIONS(1186), - [anon_sym_LT_EQ] = ACTIONS(1188), - [anon_sym_GT_EQ] = ACTIONS(1188), - [anon_sym_LT_LT] = ACTIONS(1190), - [anon_sym_GT_GT] = ACTIONS(1190), - [anon_sym_PLUS] = ACTIONS(1192), - [anon_sym_DASH] = ACTIONS(1192), - [anon_sym_SLASH] = ACTIONS(1166), - [anon_sym_PERCENT] = ACTIONS(1166), - [anon_sym_DASH_DASH] = ACTIONS(1128), - [anon_sym_PLUS_PLUS] = ACTIONS(1128), - [anon_sym_DOT] = ACTIONS(1130), - [anon_sym_DASH_GT] = ACTIONS(1130), + [anon_sym_LPAREN2] = ACTIONS(1089), + [anon_sym_STAR] = ACTIONS(1159), + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_RBRACK] = ACTIONS(2533), + [anon_sym_EQ] = ACTIONS(2535), + [anon_sym_QMARK] = ACTIONS(2533), + [anon_sym_STAR_EQ] = ACTIONS(2533), + [anon_sym_SLASH_EQ] = ACTIONS(2533), + [anon_sym_PERCENT_EQ] = ACTIONS(2533), + [anon_sym_PLUS_EQ] = ACTIONS(2533), + [anon_sym_DASH_EQ] = ACTIONS(2533), + [anon_sym_LT_LT_EQ] = ACTIONS(2533), + [anon_sym_GT_GT_EQ] = ACTIONS(2533), + [anon_sym_AMP_EQ] = ACTIONS(2533), + [anon_sym_CARET_EQ] = ACTIONS(2533), + [anon_sym_PIPE_EQ] = ACTIONS(2533), + [anon_sym_AMP] = ACTIONS(1167), + [anon_sym_PIPE_PIPE] = ACTIONS(2533), + [anon_sym_AMP_AMP] = ACTIONS(2533), + [anon_sym_PIPE] = ACTIONS(2535), + [anon_sym_CARET] = ACTIONS(2535), + [anon_sym_EQ_EQ] = ACTIONS(1177), + [anon_sym_BANG_EQ] = ACTIONS(1177), + [anon_sym_LT] = ACTIONS(1179), + [anon_sym_GT] = ACTIONS(1179), + [anon_sym_LT_EQ] = ACTIONS(1181), + [anon_sym_GT_EQ] = ACTIONS(1181), + [anon_sym_LT_LT] = ACTIONS(1183), + [anon_sym_GT_GT] = ACTIONS(1183), + [anon_sym_PLUS] = ACTIONS(1185), + [anon_sym_DASH] = ACTIONS(1185), + [anon_sym_SLASH] = ACTIONS(1159), + [anon_sym_PERCENT] = ACTIONS(1159), + [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_PLUS_PLUS] = ACTIONS(1121), + [anon_sym_DOT] = ACTIONS(1123), + [anon_sym_DASH_GT] = ACTIONS(1123), [sym_comment] = ACTIONS(39), }, [767] = { [sym_argument_list] = STATE(465), - [anon_sym_LPAREN2] = ACTIONS(1096), - [anon_sym_STAR] = ACTIONS(1166), - [anon_sym_LBRACK] = ACTIONS(1100), - [anon_sym_RBRACK] = ACTIONS(2552), - [anon_sym_EQ] = ACTIONS(2554), - [anon_sym_QMARK] = ACTIONS(2552), - [anon_sym_STAR_EQ] = ACTIONS(2552), - [anon_sym_SLASH_EQ] = ACTIONS(2552), - [anon_sym_PERCENT_EQ] = ACTIONS(2552), - [anon_sym_PLUS_EQ] = ACTIONS(2552), - [anon_sym_DASH_EQ] = ACTIONS(2552), - [anon_sym_LT_LT_EQ] = ACTIONS(2552), - [anon_sym_GT_GT_EQ] = ACTIONS(2552), - [anon_sym_AMP_EQ] = ACTIONS(2552), - [anon_sym_CARET_EQ] = ACTIONS(2552), - [anon_sym_PIPE_EQ] = ACTIONS(2552), - [anon_sym_AMP] = ACTIONS(2554), - [anon_sym_PIPE_PIPE] = ACTIONS(2552), - [anon_sym_AMP_AMP] = ACTIONS(2552), - [anon_sym_PIPE] = ACTIONS(2554), - [anon_sym_CARET] = ACTIONS(2554), - [anon_sym_EQ_EQ] = ACTIONS(2552), - [anon_sym_BANG_EQ] = ACTIONS(2552), - [anon_sym_LT] = ACTIONS(1186), - [anon_sym_GT] = ACTIONS(1186), - [anon_sym_LT_EQ] = ACTIONS(1188), - [anon_sym_GT_EQ] = ACTIONS(1188), - [anon_sym_LT_LT] = ACTIONS(1190), - [anon_sym_GT_GT] = ACTIONS(1190), - [anon_sym_PLUS] = ACTIONS(1192), - [anon_sym_DASH] = ACTIONS(1192), - [anon_sym_SLASH] = ACTIONS(1166), - [anon_sym_PERCENT] = ACTIONS(1166), - [anon_sym_DASH_DASH] = ACTIONS(1128), - [anon_sym_PLUS_PLUS] = ACTIONS(1128), - [anon_sym_DOT] = ACTIONS(1130), - [anon_sym_DASH_GT] = ACTIONS(1130), + [anon_sym_LPAREN2] = ACTIONS(1089), + [anon_sym_STAR] = ACTIONS(1159), + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_RBRACK] = ACTIONS(2541), + [anon_sym_EQ] = ACTIONS(2543), + [anon_sym_QMARK] = ACTIONS(2541), + [anon_sym_STAR_EQ] = ACTIONS(2541), + [anon_sym_SLASH_EQ] = ACTIONS(2541), + [anon_sym_PERCENT_EQ] = ACTIONS(2541), + [anon_sym_PLUS_EQ] = ACTIONS(2541), + [anon_sym_DASH_EQ] = ACTIONS(2541), + [anon_sym_LT_LT_EQ] = ACTIONS(2541), + [anon_sym_GT_GT_EQ] = ACTIONS(2541), + [anon_sym_AMP_EQ] = ACTIONS(2541), + [anon_sym_CARET_EQ] = ACTIONS(2541), + [anon_sym_PIPE_EQ] = ACTIONS(2541), + [anon_sym_AMP] = ACTIONS(2543), + [anon_sym_PIPE_PIPE] = ACTIONS(2541), + [anon_sym_AMP_AMP] = ACTIONS(2541), + [anon_sym_PIPE] = ACTIONS(2543), + [anon_sym_CARET] = ACTIONS(2543), + [anon_sym_EQ_EQ] = ACTIONS(2541), + [anon_sym_BANG_EQ] = ACTIONS(2541), + [anon_sym_LT] = ACTIONS(1179), + [anon_sym_GT] = ACTIONS(1179), + [anon_sym_LT_EQ] = ACTIONS(1181), + [anon_sym_GT_EQ] = ACTIONS(1181), + [anon_sym_LT_LT] = ACTIONS(1183), + [anon_sym_GT_GT] = ACTIONS(1183), + [anon_sym_PLUS] = ACTIONS(1185), + [anon_sym_DASH] = ACTIONS(1185), + [anon_sym_SLASH] = ACTIONS(1159), + [anon_sym_PERCENT] = ACTIONS(1159), + [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_PLUS_PLUS] = ACTIONS(1121), + [anon_sym_DOT] = ACTIONS(1123), + [anon_sym_DASH_GT] = ACTIONS(1123), [sym_comment] = ACTIONS(39), }, [768] = { [sym_argument_list] = STATE(465), - [anon_sym_LPAREN2] = ACTIONS(1096), - [anon_sym_STAR] = ACTIONS(1166), - [anon_sym_LBRACK] = ACTIONS(1100), - [anon_sym_RBRACK] = ACTIONS(2556), - [anon_sym_EQ] = ACTIONS(2558), - [anon_sym_QMARK] = ACTIONS(2556), - [anon_sym_STAR_EQ] = ACTIONS(2556), - [anon_sym_SLASH_EQ] = ACTIONS(2556), - [anon_sym_PERCENT_EQ] = ACTIONS(2556), - [anon_sym_PLUS_EQ] = ACTIONS(2556), - [anon_sym_DASH_EQ] = ACTIONS(2556), - [anon_sym_LT_LT_EQ] = ACTIONS(2556), - [anon_sym_GT_GT_EQ] = ACTIONS(2556), - [anon_sym_AMP_EQ] = ACTIONS(2556), - [anon_sym_CARET_EQ] = ACTIONS(2556), - [anon_sym_PIPE_EQ] = ACTIONS(2556), - [anon_sym_AMP] = ACTIONS(2558), - [anon_sym_PIPE_PIPE] = ACTIONS(2556), - [anon_sym_AMP_AMP] = ACTIONS(2556), - [anon_sym_PIPE] = ACTIONS(2558), - [anon_sym_CARET] = ACTIONS(2558), - [anon_sym_EQ_EQ] = ACTIONS(2556), - [anon_sym_BANG_EQ] = ACTIONS(2556), - [anon_sym_LT] = ACTIONS(2558), - [anon_sym_GT] = ACTIONS(2558), - [anon_sym_LT_EQ] = ACTIONS(2556), - [anon_sym_GT_EQ] = ACTIONS(2556), - [anon_sym_LT_LT] = ACTIONS(1190), - [anon_sym_GT_GT] = ACTIONS(1190), - [anon_sym_PLUS] = ACTIONS(1192), - [anon_sym_DASH] = ACTIONS(1192), - [anon_sym_SLASH] = ACTIONS(1166), - [anon_sym_PERCENT] = ACTIONS(1166), - [anon_sym_DASH_DASH] = ACTIONS(1128), - [anon_sym_PLUS_PLUS] = ACTIONS(1128), - [anon_sym_DOT] = ACTIONS(1130), - [anon_sym_DASH_GT] = ACTIONS(1130), + [anon_sym_LPAREN2] = ACTIONS(1089), + [anon_sym_STAR] = ACTIONS(1159), + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_RBRACK] = ACTIONS(2545), + [anon_sym_EQ] = ACTIONS(2547), + [anon_sym_QMARK] = ACTIONS(2545), + [anon_sym_STAR_EQ] = ACTIONS(2545), + [anon_sym_SLASH_EQ] = ACTIONS(2545), + [anon_sym_PERCENT_EQ] = ACTIONS(2545), + [anon_sym_PLUS_EQ] = ACTIONS(2545), + [anon_sym_DASH_EQ] = ACTIONS(2545), + [anon_sym_LT_LT_EQ] = ACTIONS(2545), + [anon_sym_GT_GT_EQ] = ACTIONS(2545), + [anon_sym_AMP_EQ] = ACTIONS(2545), + [anon_sym_CARET_EQ] = ACTIONS(2545), + [anon_sym_PIPE_EQ] = ACTIONS(2545), + [anon_sym_AMP] = ACTIONS(2547), + [anon_sym_PIPE_PIPE] = ACTIONS(2545), + [anon_sym_AMP_AMP] = ACTIONS(2545), + [anon_sym_PIPE] = ACTIONS(2547), + [anon_sym_CARET] = ACTIONS(2547), + [anon_sym_EQ_EQ] = ACTIONS(2545), + [anon_sym_BANG_EQ] = ACTIONS(2545), + [anon_sym_LT] = ACTIONS(2547), + [anon_sym_GT] = ACTIONS(2547), + [anon_sym_LT_EQ] = ACTIONS(2545), + [anon_sym_GT_EQ] = ACTIONS(2545), + [anon_sym_LT_LT] = ACTIONS(1183), + [anon_sym_GT_GT] = ACTIONS(1183), + [anon_sym_PLUS] = ACTIONS(1185), + [anon_sym_DASH] = ACTIONS(1185), + [anon_sym_SLASH] = ACTIONS(1159), + [anon_sym_PERCENT] = ACTIONS(1159), + [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_PLUS_PLUS] = ACTIONS(1121), + [anon_sym_DOT] = ACTIONS(1123), + [anon_sym_DASH_GT] = ACTIONS(1123), [sym_comment] = ACTIONS(39), }, [769] = { [sym_argument_list] = STATE(465), - [anon_sym_LPAREN2] = ACTIONS(1096), - [anon_sym_STAR] = ACTIONS(1166), - [anon_sym_LBRACK] = ACTIONS(1100), - [anon_sym_RBRACK] = ACTIONS(2560), - [anon_sym_EQ] = ACTIONS(2562), - [anon_sym_QMARK] = ACTIONS(2560), - [anon_sym_STAR_EQ] = ACTIONS(2560), - [anon_sym_SLASH_EQ] = ACTIONS(2560), - [anon_sym_PERCENT_EQ] = ACTIONS(2560), - [anon_sym_PLUS_EQ] = ACTIONS(2560), - [anon_sym_DASH_EQ] = ACTIONS(2560), - [anon_sym_LT_LT_EQ] = ACTIONS(2560), - [anon_sym_GT_GT_EQ] = ACTIONS(2560), - [anon_sym_AMP_EQ] = ACTIONS(2560), - [anon_sym_CARET_EQ] = ACTIONS(2560), - [anon_sym_PIPE_EQ] = ACTIONS(2560), - [anon_sym_AMP] = ACTIONS(2562), - [anon_sym_PIPE_PIPE] = ACTIONS(2560), - [anon_sym_AMP_AMP] = ACTIONS(2560), - [anon_sym_PIPE] = ACTIONS(2562), - [anon_sym_CARET] = ACTIONS(2562), - [anon_sym_EQ_EQ] = ACTIONS(2560), - [anon_sym_BANG_EQ] = ACTIONS(2560), - [anon_sym_LT] = ACTIONS(2562), - [anon_sym_GT] = ACTIONS(2562), - [anon_sym_LT_EQ] = ACTIONS(2560), - [anon_sym_GT_EQ] = ACTIONS(2560), - [anon_sym_LT_LT] = ACTIONS(2562), - [anon_sym_GT_GT] = ACTIONS(2562), - [anon_sym_PLUS] = ACTIONS(1192), - [anon_sym_DASH] = ACTIONS(1192), - [anon_sym_SLASH] = ACTIONS(1166), - [anon_sym_PERCENT] = ACTIONS(1166), - [anon_sym_DASH_DASH] = ACTIONS(1128), - [anon_sym_PLUS_PLUS] = ACTIONS(1128), - [anon_sym_DOT] = ACTIONS(1130), - [anon_sym_DASH_GT] = ACTIONS(1130), + [anon_sym_LPAREN2] = ACTIONS(1089), + [anon_sym_STAR] = ACTIONS(1159), + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_RBRACK] = ACTIONS(2549), + [anon_sym_EQ] = ACTIONS(2551), + [anon_sym_QMARK] = ACTIONS(2549), + [anon_sym_STAR_EQ] = ACTIONS(2549), + [anon_sym_SLASH_EQ] = ACTIONS(2549), + [anon_sym_PERCENT_EQ] = ACTIONS(2549), + [anon_sym_PLUS_EQ] = ACTIONS(2549), + [anon_sym_DASH_EQ] = ACTIONS(2549), + [anon_sym_LT_LT_EQ] = ACTIONS(2549), + [anon_sym_GT_GT_EQ] = ACTIONS(2549), + [anon_sym_AMP_EQ] = ACTIONS(2549), + [anon_sym_CARET_EQ] = ACTIONS(2549), + [anon_sym_PIPE_EQ] = ACTIONS(2549), + [anon_sym_AMP] = ACTIONS(2551), + [anon_sym_PIPE_PIPE] = ACTIONS(2549), + [anon_sym_AMP_AMP] = ACTIONS(2549), + [anon_sym_PIPE] = ACTIONS(2551), + [anon_sym_CARET] = ACTIONS(2551), + [anon_sym_EQ_EQ] = ACTIONS(2549), + [anon_sym_BANG_EQ] = ACTIONS(2549), + [anon_sym_LT] = ACTIONS(2551), + [anon_sym_GT] = ACTIONS(2551), + [anon_sym_LT_EQ] = ACTIONS(2549), + [anon_sym_GT_EQ] = ACTIONS(2549), + [anon_sym_LT_LT] = ACTIONS(2551), + [anon_sym_GT_GT] = ACTIONS(2551), + [anon_sym_PLUS] = ACTIONS(1185), + [anon_sym_DASH] = ACTIONS(1185), + [anon_sym_SLASH] = ACTIONS(1159), + [anon_sym_PERCENT] = ACTIONS(1159), + [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_PLUS_PLUS] = ACTIONS(1121), + [anon_sym_DOT] = ACTIONS(1123), + [anon_sym_DASH_GT] = ACTIONS(1123), [sym_comment] = ACTIONS(39), }, [770] = { [sym_argument_list] = STATE(465), - [anon_sym_LPAREN2] = ACTIONS(1096), - [anon_sym_STAR] = ACTIONS(1166), - [anon_sym_LBRACK] = ACTIONS(1100), - [anon_sym_RBRACK] = ACTIONS(2534), - [anon_sym_EQ] = ACTIONS(2536), - [anon_sym_QMARK] = ACTIONS(2534), - [anon_sym_STAR_EQ] = ACTIONS(2534), - [anon_sym_SLASH_EQ] = ACTIONS(2534), - [anon_sym_PERCENT_EQ] = ACTIONS(2534), - [anon_sym_PLUS_EQ] = ACTIONS(2534), - [anon_sym_DASH_EQ] = ACTIONS(2534), - [anon_sym_LT_LT_EQ] = ACTIONS(2534), - [anon_sym_GT_GT_EQ] = ACTIONS(2534), - [anon_sym_AMP_EQ] = ACTIONS(2534), - [anon_sym_CARET_EQ] = ACTIONS(2534), - [anon_sym_PIPE_EQ] = ACTIONS(2534), - [anon_sym_AMP] = ACTIONS(2536), - [anon_sym_PIPE_PIPE] = ACTIONS(2534), - [anon_sym_AMP_AMP] = ACTIONS(2534), - [anon_sym_PIPE] = ACTIONS(2536), - [anon_sym_CARET] = ACTIONS(2536), - [anon_sym_EQ_EQ] = ACTIONS(2534), - [anon_sym_BANG_EQ] = ACTIONS(2534), - [anon_sym_LT] = ACTIONS(2536), - [anon_sym_GT] = ACTIONS(2536), - [anon_sym_LT_EQ] = ACTIONS(2534), - [anon_sym_GT_EQ] = ACTIONS(2534), - [anon_sym_LT_LT] = ACTIONS(2536), - [anon_sym_GT_GT] = ACTIONS(2536), - [anon_sym_PLUS] = ACTIONS(2536), - [anon_sym_DASH] = ACTIONS(2536), - [anon_sym_SLASH] = ACTIONS(1166), - [anon_sym_PERCENT] = ACTIONS(1166), - [anon_sym_DASH_DASH] = ACTIONS(1128), - [anon_sym_PLUS_PLUS] = ACTIONS(1128), - [anon_sym_DOT] = ACTIONS(1130), - [anon_sym_DASH_GT] = ACTIONS(1130), + [anon_sym_LPAREN2] = ACTIONS(1089), + [anon_sym_STAR] = ACTIONS(1159), + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_RBRACK] = ACTIONS(2523), + [anon_sym_EQ] = ACTIONS(2525), + [anon_sym_QMARK] = ACTIONS(2523), + [anon_sym_STAR_EQ] = ACTIONS(2523), + [anon_sym_SLASH_EQ] = ACTIONS(2523), + [anon_sym_PERCENT_EQ] = ACTIONS(2523), + [anon_sym_PLUS_EQ] = ACTIONS(2523), + [anon_sym_DASH_EQ] = ACTIONS(2523), + [anon_sym_LT_LT_EQ] = ACTIONS(2523), + [anon_sym_GT_GT_EQ] = ACTIONS(2523), + [anon_sym_AMP_EQ] = ACTIONS(2523), + [anon_sym_CARET_EQ] = ACTIONS(2523), + [anon_sym_PIPE_EQ] = ACTIONS(2523), + [anon_sym_AMP] = ACTIONS(2525), + [anon_sym_PIPE_PIPE] = ACTIONS(2523), + [anon_sym_AMP_AMP] = ACTIONS(2523), + [anon_sym_PIPE] = ACTIONS(2525), + [anon_sym_CARET] = ACTIONS(2525), + [anon_sym_EQ_EQ] = ACTIONS(2523), + [anon_sym_BANG_EQ] = ACTIONS(2523), + [anon_sym_LT] = ACTIONS(2525), + [anon_sym_GT] = ACTIONS(2525), + [anon_sym_LT_EQ] = ACTIONS(2523), + [anon_sym_GT_EQ] = ACTIONS(2523), + [anon_sym_LT_LT] = ACTIONS(2525), + [anon_sym_GT_GT] = ACTIONS(2525), + [anon_sym_PLUS] = ACTIONS(2525), + [anon_sym_DASH] = ACTIONS(2525), + [anon_sym_SLASH] = ACTIONS(1159), + [anon_sym_PERCENT] = ACTIONS(1159), + [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_PLUS_PLUS] = ACTIONS(1121), + [anon_sym_DOT] = ACTIONS(1123), + [anon_sym_DASH_GT] = ACTIONS(1123), [sym_comment] = ACTIONS(39), }, [771] = { [sym_string_literal] = STATE(771), [aux_sym_concatenated_string_repeat1] = STATE(771), - [anon_sym_LPAREN2] = ACTIONS(2568), - [anon_sym_STAR] = ACTIONS(2570), - [anon_sym_LBRACK] = ACTIONS(2568), - [anon_sym_RBRACK] = ACTIONS(2568), - [anon_sym_EQ] = ACTIONS(2570), - [anon_sym_QMARK] = ACTIONS(2568), - [anon_sym_STAR_EQ] = ACTIONS(2568), - [anon_sym_SLASH_EQ] = ACTIONS(2568), - [anon_sym_PERCENT_EQ] = ACTIONS(2568), - [anon_sym_PLUS_EQ] = ACTIONS(2568), - [anon_sym_DASH_EQ] = ACTIONS(2568), - [anon_sym_LT_LT_EQ] = ACTIONS(2568), - [anon_sym_GT_GT_EQ] = ACTIONS(2568), - [anon_sym_AMP_EQ] = ACTIONS(2568), - [anon_sym_CARET_EQ] = ACTIONS(2568), - [anon_sym_PIPE_EQ] = ACTIONS(2568), - [anon_sym_AMP] = ACTIONS(2570), - [anon_sym_PIPE_PIPE] = ACTIONS(2568), - [anon_sym_AMP_AMP] = ACTIONS(2568), - [anon_sym_PIPE] = ACTIONS(2570), - [anon_sym_CARET] = ACTIONS(2570), - [anon_sym_EQ_EQ] = ACTIONS(2568), - [anon_sym_BANG_EQ] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_GT] = ACTIONS(2570), - [anon_sym_LT_EQ] = ACTIONS(2568), - [anon_sym_GT_EQ] = ACTIONS(2568), - [anon_sym_LT_LT] = ACTIONS(2570), - [anon_sym_GT_GT] = ACTIONS(2570), - [anon_sym_PLUS] = ACTIONS(2570), - [anon_sym_DASH] = ACTIONS(2570), - [anon_sym_SLASH] = ACTIONS(2570), - [anon_sym_PERCENT] = ACTIONS(2570), - [anon_sym_DASH_DASH] = ACTIONS(2568), - [anon_sym_PLUS_PLUS] = ACTIONS(2568), - [anon_sym_DOT] = ACTIONS(2568), - [anon_sym_DASH_GT] = ACTIONS(2568), - [anon_sym_DQUOTE] = ACTIONS(2572), + [anon_sym_LPAREN2] = ACTIONS(2557), + [anon_sym_STAR] = ACTIONS(2559), + [anon_sym_LBRACK] = ACTIONS(2557), + [anon_sym_RBRACK] = ACTIONS(2557), + [anon_sym_EQ] = ACTIONS(2559), + [anon_sym_QMARK] = ACTIONS(2557), + [anon_sym_STAR_EQ] = ACTIONS(2557), + [anon_sym_SLASH_EQ] = ACTIONS(2557), + [anon_sym_PERCENT_EQ] = ACTIONS(2557), + [anon_sym_PLUS_EQ] = ACTIONS(2557), + [anon_sym_DASH_EQ] = ACTIONS(2557), + [anon_sym_LT_LT_EQ] = ACTIONS(2557), + [anon_sym_GT_GT_EQ] = ACTIONS(2557), + [anon_sym_AMP_EQ] = ACTIONS(2557), + [anon_sym_CARET_EQ] = ACTIONS(2557), + [anon_sym_PIPE_EQ] = ACTIONS(2557), + [anon_sym_AMP] = ACTIONS(2559), + [anon_sym_PIPE_PIPE] = ACTIONS(2557), + [anon_sym_AMP_AMP] = ACTIONS(2557), + [anon_sym_PIPE] = ACTIONS(2559), + [anon_sym_CARET] = ACTIONS(2559), + [anon_sym_EQ_EQ] = ACTIONS(2557), + [anon_sym_BANG_EQ] = ACTIONS(2557), + [anon_sym_LT] = ACTIONS(2559), + [anon_sym_GT] = ACTIONS(2559), + [anon_sym_LT_EQ] = ACTIONS(2557), + [anon_sym_GT_EQ] = ACTIONS(2557), + [anon_sym_LT_LT] = ACTIONS(2559), + [anon_sym_GT_GT] = ACTIONS(2559), + [anon_sym_PLUS] = ACTIONS(2559), + [anon_sym_DASH] = ACTIONS(2559), + [anon_sym_SLASH] = ACTIONS(2559), + [anon_sym_PERCENT] = ACTIONS(2559), + [anon_sym_DASH_DASH] = ACTIONS(2557), + [anon_sym_PLUS_PLUS] = ACTIONS(2557), + [anon_sym_DOT] = ACTIONS(2557), + [anon_sym_DASH_GT] = ACTIONS(2557), + [anon_sym_DQUOTE] = ACTIONS(2561), [sym_comment] = ACTIONS(39), }, [772] = { @@ -29758,9 +29777,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_type_qualifier] = STATE(759), [aux_sym__declaration_specifiers_repeat1] = STATE(759), [anon_sym_extern] = ACTIONS(23), - [anon_sym_LPAREN2] = ACTIONS(648), - [anon_sym_STAR] = ACTIONS(648), - [anon_sym_RBRACK] = ACTIONS(648), + [anon_sym_LPAREN2] = ACTIONS(644), + [anon_sym_STAR] = ACTIONS(644), + [anon_sym_RBRACK] = ACTIONS(644), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -29769,113 +29788,113 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_restrict] = ACTIONS(25), [anon_sym_volatile] = ACTIONS(25), [anon_sym__Atomic] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(648), - [anon_sym_BANG] = ACTIONS(648), - [anon_sym_TILDE] = ACTIONS(648), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_DASH_DASH] = ACTIONS(648), - [anon_sym_PLUS_PLUS] = ACTIONS(648), - [anon_sym_sizeof] = ACTIONS(650), - [sym_number_literal] = ACTIONS(648), - [anon_sym_SQUOTE] = ACTIONS(648), - [anon_sym_DQUOTE] = ACTIONS(648), - [sym_true] = ACTIONS(650), - [sym_false] = ACTIONS(650), - [sym_null] = ACTIONS(650), - [sym_identifier] = ACTIONS(650), + [anon_sym_AMP] = ACTIONS(644), + [anon_sym_BANG] = ACTIONS(644), + [anon_sym_TILDE] = ACTIONS(644), + [anon_sym_PLUS] = ACTIONS(646), + [anon_sym_DASH] = ACTIONS(646), + [anon_sym_DASH_DASH] = ACTIONS(644), + [anon_sym_PLUS_PLUS] = ACTIONS(644), + [anon_sym_sizeof] = ACTIONS(646), + [sym_number_literal] = ACTIONS(644), + [anon_sym_SQUOTE] = ACTIONS(644), + [anon_sym_DQUOTE] = ACTIONS(644), + [sym_true] = ACTIONS(646), + [sym_false] = ACTIONS(646), + [sym_null] = ACTIONS(646), + [sym_identifier] = ACTIONS(646), [sym_comment] = ACTIONS(39), }, [773] = { - [anon_sym_COMMA] = ACTIONS(2595), - [anon_sym_RPAREN] = ACTIONS(2595), - [anon_sym_SEMI] = ACTIONS(2595), - [anon_sym_RBRACE] = ACTIONS(2595), - [anon_sym_LPAREN2] = ACTIONS(2595), - [anon_sym_STAR] = ACTIONS(2597), - [anon_sym_LBRACK] = ACTIONS(2595), - [anon_sym_RBRACK] = ACTIONS(2595), - [anon_sym_EQ] = ACTIONS(2597), - [anon_sym_COLON] = ACTIONS(2595), - [anon_sym_QMARK] = ACTIONS(2595), - [anon_sym_STAR_EQ] = ACTIONS(2595), - [anon_sym_SLASH_EQ] = ACTIONS(2595), - [anon_sym_PERCENT_EQ] = ACTIONS(2595), - [anon_sym_PLUS_EQ] = ACTIONS(2595), - [anon_sym_DASH_EQ] = ACTIONS(2595), - [anon_sym_LT_LT_EQ] = ACTIONS(2595), - [anon_sym_GT_GT_EQ] = ACTIONS(2595), - [anon_sym_AMP_EQ] = ACTIONS(2595), - [anon_sym_CARET_EQ] = ACTIONS(2595), - [anon_sym_PIPE_EQ] = ACTIONS(2595), - [anon_sym_AMP] = ACTIONS(2597), - [anon_sym_PIPE_PIPE] = ACTIONS(2595), - [anon_sym_AMP_AMP] = ACTIONS(2595), - [anon_sym_PIPE] = ACTIONS(2597), - [anon_sym_CARET] = ACTIONS(2597), - [anon_sym_EQ_EQ] = ACTIONS(2595), - [anon_sym_BANG_EQ] = ACTIONS(2595), - [anon_sym_LT] = ACTIONS(2597), - [anon_sym_GT] = ACTIONS(2597), - [anon_sym_LT_EQ] = ACTIONS(2595), - [anon_sym_GT_EQ] = ACTIONS(2595), - [anon_sym_LT_LT] = ACTIONS(2597), - [anon_sym_GT_GT] = ACTIONS(2597), - [anon_sym_PLUS] = ACTIONS(2597), - [anon_sym_DASH] = ACTIONS(2597), - [anon_sym_SLASH] = ACTIONS(2597), - [anon_sym_PERCENT] = ACTIONS(2597), - [anon_sym_DASH_DASH] = ACTIONS(2595), - [anon_sym_PLUS_PLUS] = ACTIONS(2595), - [anon_sym_DOT] = ACTIONS(2595), - [anon_sym_DASH_GT] = ACTIONS(2595), + [anon_sym_COMMA] = ACTIONS(2584), + [anon_sym_RPAREN] = ACTIONS(2584), + [anon_sym_SEMI] = ACTIONS(2584), + [anon_sym_RBRACE] = ACTIONS(2584), + [anon_sym_LPAREN2] = ACTIONS(2584), + [anon_sym_STAR] = ACTIONS(2586), + [anon_sym_LBRACK] = ACTIONS(2584), + [anon_sym_RBRACK] = ACTIONS(2584), + [anon_sym_EQ] = ACTIONS(2586), + [anon_sym_COLON] = ACTIONS(2584), + [anon_sym_QMARK] = ACTIONS(2584), + [anon_sym_STAR_EQ] = ACTIONS(2584), + [anon_sym_SLASH_EQ] = ACTIONS(2584), + [anon_sym_PERCENT_EQ] = ACTIONS(2584), + [anon_sym_PLUS_EQ] = ACTIONS(2584), + [anon_sym_DASH_EQ] = ACTIONS(2584), + [anon_sym_LT_LT_EQ] = ACTIONS(2584), + [anon_sym_GT_GT_EQ] = ACTIONS(2584), + [anon_sym_AMP_EQ] = ACTIONS(2584), + [anon_sym_CARET_EQ] = ACTIONS(2584), + [anon_sym_PIPE_EQ] = ACTIONS(2584), + [anon_sym_AMP] = ACTIONS(2586), + [anon_sym_PIPE_PIPE] = ACTIONS(2584), + [anon_sym_AMP_AMP] = ACTIONS(2584), + [anon_sym_PIPE] = ACTIONS(2586), + [anon_sym_CARET] = ACTIONS(2586), + [anon_sym_EQ_EQ] = ACTIONS(2584), + [anon_sym_BANG_EQ] = ACTIONS(2584), + [anon_sym_LT] = ACTIONS(2586), + [anon_sym_GT] = ACTIONS(2586), + [anon_sym_LT_EQ] = ACTIONS(2584), + [anon_sym_GT_EQ] = ACTIONS(2584), + [anon_sym_LT_LT] = ACTIONS(2586), + [anon_sym_GT_GT] = ACTIONS(2586), + [anon_sym_PLUS] = ACTIONS(2586), + [anon_sym_DASH] = ACTIONS(2586), + [anon_sym_SLASH] = ACTIONS(2586), + [anon_sym_PERCENT] = ACTIONS(2586), + [anon_sym_DASH_DASH] = ACTIONS(2584), + [anon_sym_PLUS_PLUS] = ACTIONS(2584), + [anon_sym_DOT] = ACTIONS(2584), + [anon_sym_DASH_GT] = ACTIONS(2584), [sym_comment] = ACTIONS(39), }, [774] = { [sym_argument_list] = STATE(465), - [anon_sym_LPAREN2] = ACTIONS(1096), - [anon_sym_STAR] = ACTIONS(1166), - [anon_sym_LBRACK] = ACTIONS(1100), - [anon_sym_RBRACK] = ACTIONS(2599), - [anon_sym_EQ] = ACTIONS(1168), - [anon_sym_QMARK] = ACTIONS(1170), - [anon_sym_STAR_EQ] = ACTIONS(1172), - [anon_sym_SLASH_EQ] = ACTIONS(1172), - [anon_sym_PERCENT_EQ] = ACTIONS(1172), - [anon_sym_PLUS_EQ] = ACTIONS(1172), - [anon_sym_DASH_EQ] = ACTIONS(1172), - [anon_sym_LT_LT_EQ] = ACTIONS(1172), - [anon_sym_GT_GT_EQ] = ACTIONS(1172), - [anon_sym_AMP_EQ] = ACTIONS(1172), - [anon_sym_CARET_EQ] = ACTIONS(1172), - [anon_sym_PIPE_EQ] = ACTIONS(1172), - [anon_sym_AMP] = ACTIONS(1174), - [anon_sym_PIPE_PIPE] = ACTIONS(1176), - [anon_sym_AMP_AMP] = ACTIONS(1178), - [anon_sym_PIPE] = ACTIONS(1180), - [anon_sym_CARET] = ACTIONS(1182), - [anon_sym_EQ_EQ] = ACTIONS(1184), - [anon_sym_BANG_EQ] = ACTIONS(1184), - [anon_sym_LT] = ACTIONS(1186), - [anon_sym_GT] = ACTIONS(1186), - [anon_sym_LT_EQ] = ACTIONS(1188), - [anon_sym_GT_EQ] = ACTIONS(1188), - [anon_sym_LT_LT] = ACTIONS(1190), - [anon_sym_GT_GT] = ACTIONS(1190), - [anon_sym_PLUS] = ACTIONS(1192), - [anon_sym_DASH] = ACTIONS(1192), - [anon_sym_SLASH] = ACTIONS(1166), - [anon_sym_PERCENT] = ACTIONS(1166), - [anon_sym_DASH_DASH] = ACTIONS(1128), - [anon_sym_PLUS_PLUS] = ACTIONS(1128), - [anon_sym_DOT] = ACTIONS(1130), - [anon_sym_DASH_GT] = ACTIONS(1130), + [anon_sym_LPAREN2] = ACTIONS(1089), + [anon_sym_STAR] = ACTIONS(1159), + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_RBRACK] = ACTIONS(2588), + [anon_sym_EQ] = ACTIONS(1161), + [anon_sym_QMARK] = ACTIONS(1163), + [anon_sym_STAR_EQ] = ACTIONS(1165), + [anon_sym_SLASH_EQ] = ACTIONS(1165), + [anon_sym_PERCENT_EQ] = ACTIONS(1165), + [anon_sym_PLUS_EQ] = ACTIONS(1165), + [anon_sym_DASH_EQ] = ACTIONS(1165), + [anon_sym_LT_LT_EQ] = ACTIONS(1165), + [anon_sym_GT_GT_EQ] = ACTIONS(1165), + [anon_sym_AMP_EQ] = ACTIONS(1165), + [anon_sym_CARET_EQ] = ACTIONS(1165), + [anon_sym_PIPE_EQ] = ACTIONS(1165), + [anon_sym_AMP] = ACTIONS(1167), + [anon_sym_PIPE_PIPE] = ACTIONS(1169), + [anon_sym_AMP_AMP] = ACTIONS(1171), + [anon_sym_PIPE] = ACTIONS(1173), + [anon_sym_CARET] = ACTIONS(1175), + [anon_sym_EQ_EQ] = ACTIONS(1177), + [anon_sym_BANG_EQ] = ACTIONS(1177), + [anon_sym_LT] = ACTIONS(1179), + [anon_sym_GT] = ACTIONS(1179), + [anon_sym_LT_EQ] = ACTIONS(1181), + [anon_sym_GT_EQ] = ACTIONS(1181), + [anon_sym_LT_LT] = ACTIONS(1183), + [anon_sym_GT_GT] = ACTIONS(1183), + [anon_sym_PLUS] = ACTIONS(1185), + [anon_sym_DASH] = ACTIONS(1185), + [anon_sym_SLASH] = ACTIONS(1159), + [anon_sym_PERCENT] = ACTIONS(1159), + [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_PLUS_PLUS] = ACTIONS(1121), + [anon_sym_DOT] = ACTIONS(1123), + [anon_sym_DASH_GT] = ACTIONS(1123), [sym_comment] = ACTIONS(39), }, [775] = { - [anon_sym_LBRACK] = ACTIONS(2601), - [anon_sym_EQ] = ACTIONS(2601), - [anon_sym_DOT] = ACTIONS(2601), + [anon_sym_LBRACK] = ACTIONS(2590), + [anon_sym_EQ] = ACTIONS(2590), + [anon_sym_DOT] = ACTIONS(2590), [sym_comment] = ACTIONS(39), }, [776] = { @@ -29904,33 +29923,33 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_concatenated_string] = STATE(977), [sym_string_literal] = STATE(346), [aux_sym_initializer_pair_repeat1] = STATE(506), - [anon_sym_LBRACE] = ACTIONS(632), - [anon_sym_RBRACE] = ACTIONS(2603), - [anon_sym_LPAREN2] = ACTIONS(807), - [anon_sym_STAR] = ACTIONS(809), - [anon_sym_LBRACK] = ACTIONS(1202), - [anon_sym_AMP] = ACTIONS(809), - [anon_sym_BANG] = ACTIONS(811), - [anon_sym_TILDE] = ACTIONS(813), - [anon_sym_PLUS] = ACTIONS(815), - [anon_sym_DASH] = ACTIONS(815), - [anon_sym_DASH_DASH] = ACTIONS(817), - [anon_sym_PLUS_PLUS] = ACTIONS(817), - [anon_sym_sizeof] = ACTIONS(819), - [anon_sym_DOT] = ACTIONS(1204), - [sym_number_literal] = ACTIONS(2605), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2607), - [sym_false] = ACTIONS(2607), - [sym_null] = ACTIONS(2607), - [sym_identifier] = ACTIONS(2607), + [anon_sym_LBRACE] = ACTIONS(628), + [anon_sym_RBRACE] = ACTIONS(2592), + [anon_sym_LPAREN2] = ACTIONS(798), + [anon_sym_STAR] = ACTIONS(800), + [anon_sym_LBRACK] = ACTIONS(1195), + [anon_sym_AMP] = ACTIONS(800), + [anon_sym_BANG] = ACTIONS(802), + [anon_sym_TILDE] = ACTIONS(804), + [anon_sym_PLUS] = ACTIONS(806), + [anon_sym_DASH] = ACTIONS(806), + [anon_sym_DASH_DASH] = ACTIONS(808), + [anon_sym_PLUS_PLUS] = ACTIONS(808), + [anon_sym_sizeof] = ACTIONS(810), + [anon_sym_DOT] = ACTIONS(1197), + [sym_number_literal] = ACTIONS(2594), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(2596), + [sym_false] = ACTIONS(2596), + [sym_null] = ACTIONS(2596), + [sym_identifier] = ACTIONS(2596), [sym_comment] = ACTIONS(39), }, [777] = { [aux_sym_initializer_list_repeat1] = STATE(980), - [anon_sym_COMMA] = ACTIONS(2609), - [anon_sym_RBRACE] = ACTIONS(2603), + [anon_sym_COMMA] = ACTIONS(2598), + [anon_sym_RBRACE] = ACTIONS(2592), [sym_comment] = ACTIONS(39), }, [778] = { @@ -29955,546 +29974,546 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(981), [sym_concatenated_string] = STATE(981), [sym_string_literal] = STATE(346), - [anon_sym_LBRACE] = ACTIONS(632), - [anon_sym_LPAREN2] = ACTIONS(807), - [anon_sym_STAR] = ACTIONS(809), - [anon_sym_AMP] = ACTIONS(809), - [anon_sym_BANG] = ACTIONS(811), - [anon_sym_TILDE] = ACTIONS(813), - [anon_sym_PLUS] = ACTIONS(815), - [anon_sym_DASH] = ACTIONS(815), - [anon_sym_DASH_DASH] = ACTIONS(817), - [anon_sym_PLUS_PLUS] = ACTIONS(817), - [anon_sym_sizeof] = ACTIONS(819), - [sym_number_literal] = ACTIONS(2611), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2613), - [sym_false] = ACTIONS(2613), - [sym_null] = ACTIONS(2613), - [sym_identifier] = ACTIONS(2613), + [anon_sym_LBRACE] = ACTIONS(628), + [anon_sym_LPAREN2] = ACTIONS(798), + [anon_sym_STAR] = ACTIONS(800), + [anon_sym_AMP] = ACTIONS(800), + [anon_sym_BANG] = ACTIONS(802), + [anon_sym_TILDE] = ACTIONS(804), + [anon_sym_PLUS] = ACTIONS(806), + [anon_sym_DASH] = ACTIONS(806), + [anon_sym_DASH_DASH] = ACTIONS(808), + [anon_sym_PLUS_PLUS] = ACTIONS(808), + [anon_sym_sizeof] = ACTIONS(810), + [sym_number_literal] = ACTIONS(2600), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(2602), + [sym_false] = ACTIONS(2602), + [sym_null] = ACTIONS(2602), + [sym_identifier] = ACTIONS(2602), [sym_comment] = ACTIONS(39), }, [779] = { [sym_subscript_designator] = STATE(779), [sym_field_designator] = STATE(779), [aux_sym_initializer_pair_repeat1] = STATE(779), - [anon_sym_LBRACK] = ACTIONS(2615), - [anon_sym_EQ] = ACTIONS(2618), - [anon_sym_DOT] = ACTIONS(2620), + [anon_sym_LBRACK] = ACTIONS(2604), + [anon_sym_EQ] = ACTIONS(2607), + [anon_sym_DOT] = ACTIONS(2609), [sym_comment] = ACTIONS(39), }, [780] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1227), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1227), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1227), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1227), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1227), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1227), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1227), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1227), - [sym_preproc_directive] = ACTIONS(1227), - [anon_sym_SEMI] = ACTIONS(1225), - [anon_sym_typedef] = ACTIONS(1227), - [anon_sym_extern] = ACTIONS(1227), - [anon_sym_LBRACE] = ACTIONS(1225), - [anon_sym_LPAREN2] = ACTIONS(1225), - [anon_sym_STAR] = ACTIONS(1225), - [anon_sym_static] = ACTIONS(1227), - [anon_sym_auto] = ACTIONS(1227), - [anon_sym_register] = ACTIONS(1227), - [anon_sym_inline] = ACTIONS(1227), - [anon_sym_const] = ACTIONS(1227), - [anon_sym_restrict] = ACTIONS(1227), - [anon_sym_volatile] = ACTIONS(1227), - [anon_sym__Atomic] = ACTIONS(1227), - [anon_sym_unsigned] = ACTIONS(1227), - [anon_sym_long] = ACTIONS(1227), - [anon_sym_short] = ACTIONS(1227), - [sym_primitive_type] = ACTIONS(1227), - [anon_sym_enum] = ACTIONS(1227), - [anon_sym_struct] = ACTIONS(1227), - [anon_sym_union] = ACTIONS(1227), - [anon_sym_if] = ACTIONS(1227), - [anon_sym_switch] = ACTIONS(1227), - [anon_sym_case] = ACTIONS(1227), - [anon_sym_default] = ACTIONS(1227), - [anon_sym_while] = ACTIONS(1227), - [anon_sym_do] = ACTIONS(1227), - [anon_sym_for] = ACTIONS(1227), - [anon_sym_return] = ACTIONS(1227), - [anon_sym_break] = ACTIONS(1227), - [anon_sym_continue] = ACTIONS(1227), - [anon_sym_goto] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(1225), - [anon_sym_BANG] = ACTIONS(1225), - [anon_sym_TILDE] = ACTIONS(1225), - [anon_sym_PLUS] = ACTIONS(1227), - [anon_sym_DASH] = ACTIONS(1227), - [anon_sym_DASH_DASH] = ACTIONS(1225), - [anon_sym_PLUS_PLUS] = ACTIONS(1225), - [anon_sym_sizeof] = ACTIONS(1227), - [sym_number_literal] = ACTIONS(1225), - [anon_sym_SQUOTE] = ACTIONS(1225), - [anon_sym_DQUOTE] = ACTIONS(1225), - [sym_true] = ACTIONS(1227), - [sym_false] = ACTIONS(1227), - [sym_null] = ACTIONS(1227), - [sym_identifier] = ACTIONS(1227), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1220), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1220), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1220), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1220), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1220), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1220), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1220), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1220), + [sym_preproc_directive] = ACTIONS(1220), + [anon_sym_SEMI] = ACTIONS(1218), + [anon_sym_typedef] = ACTIONS(1220), + [anon_sym_extern] = ACTIONS(1220), + [anon_sym_LBRACE] = ACTIONS(1218), + [anon_sym_LPAREN2] = ACTIONS(1218), + [anon_sym_STAR] = ACTIONS(1218), + [anon_sym_static] = ACTIONS(1220), + [anon_sym_auto] = ACTIONS(1220), + [anon_sym_register] = ACTIONS(1220), + [anon_sym_inline] = ACTIONS(1220), + [anon_sym_const] = ACTIONS(1220), + [anon_sym_restrict] = ACTIONS(1220), + [anon_sym_volatile] = ACTIONS(1220), + [anon_sym__Atomic] = ACTIONS(1220), + [anon_sym_unsigned] = ACTIONS(1220), + [anon_sym_long] = ACTIONS(1220), + [anon_sym_short] = ACTIONS(1220), + [sym_primitive_type] = ACTIONS(1220), + [anon_sym_enum] = ACTIONS(1220), + [anon_sym_struct] = ACTIONS(1220), + [anon_sym_union] = ACTIONS(1220), + [anon_sym_if] = ACTIONS(1220), + [anon_sym_switch] = ACTIONS(1220), + [anon_sym_case] = ACTIONS(1220), + [anon_sym_default] = ACTIONS(1220), + [anon_sym_while] = ACTIONS(1220), + [anon_sym_do] = ACTIONS(1220), + [anon_sym_for] = ACTIONS(1220), + [anon_sym_return] = ACTIONS(1220), + [anon_sym_break] = ACTIONS(1220), + [anon_sym_continue] = ACTIONS(1220), + [anon_sym_goto] = ACTIONS(1220), + [anon_sym_AMP] = ACTIONS(1218), + [anon_sym_BANG] = ACTIONS(1218), + [anon_sym_TILDE] = ACTIONS(1218), + [anon_sym_PLUS] = ACTIONS(1220), + [anon_sym_DASH] = ACTIONS(1220), + [anon_sym_DASH_DASH] = ACTIONS(1218), + [anon_sym_PLUS_PLUS] = ACTIONS(1218), + [anon_sym_sizeof] = ACTIONS(1220), + [sym_number_literal] = ACTIONS(1218), + [anon_sym_SQUOTE] = ACTIONS(1218), + [anon_sym_DQUOTE] = ACTIONS(1218), + [sym_true] = ACTIONS(1220), + [sym_false] = ACTIONS(1220), + [sym_null] = ACTIONS(1220), + [sym_identifier] = ACTIONS(1220), [sym_comment] = ACTIONS(39), }, [781] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1313), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1313), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1313), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1313), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1313), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1313), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1313), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1313), - [sym_preproc_directive] = ACTIONS(1313), - [anon_sym_typedef] = ACTIONS(1313), - [anon_sym_extern] = ACTIONS(1313), - [anon_sym_static] = ACTIONS(1313), - [anon_sym_auto] = ACTIONS(1313), - [anon_sym_register] = ACTIONS(1313), - [anon_sym_inline] = ACTIONS(1313), - [anon_sym_const] = ACTIONS(1313), - [anon_sym_restrict] = ACTIONS(1313), - [anon_sym_volatile] = ACTIONS(1313), - [anon_sym__Atomic] = ACTIONS(1313), - [anon_sym_unsigned] = ACTIONS(1313), - [anon_sym_long] = ACTIONS(1313), - [anon_sym_short] = ACTIONS(1313), - [sym_primitive_type] = ACTIONS(1313), - [anon_sym_enum] = ACTIONS(1313), - [anon_sym_struct] = ACTIONS(1313), - [anon_sym_union] = ACTIONS(1313), - [sym_identifier] = ACTIONS(1313), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1304), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1304), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1304), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1304), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1304), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1304), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1304), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1304), + [sym_preproc_directive] = ACTIONS(1304), + [anon_sym_typedef] = ACTIONS(1304), + [anon_sym_extern] = ACTIONS(1304), + [anon_sym_static] = ACTIONS(1304), + [anon_sym_auto] = ACTIONS(1304), + [anon_sym_register] = ACTIONS(1304), + [anon_sym_inline] = ACTIONS(1304), + [anon_sym_const] = ACTIONS(1304), + [anon_sym_restrict] = ACTIONS(1304), + [anon_sym_volatile] = ACTIONS(1304), + [anon_sym__Atomic] = ACTIONS(1304), + [anon_sym_unsigned] = ACTIONS(1304), + [anon_sym_long] = ACTIONS(1304), + [anon_sym_short] = ACTIONS(1304), + [sym_primitive_type] = ACTIONS(1304), + [anon_sym_enum] = ACTIONS(1304), + [anon_sym_struct] = ACTIONS(1304), + [anon_sym_union] = ACTIONS(1304), + [sym_identifier] = ACTIONS(1304), [sym_comment] = ACTIONS(39), }, [782] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1317), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1317), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1317), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1317), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1317), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1317), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1317), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1317), - [sym_preproc_directive] = ACTIONS(1317), - [anon_sym_typedef] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1317), - [anon_sym_static] = ACTIONS(1317), - [anon_sym_auto] = ACTIONS(1317), - [anon_sym_register] = ACTIONS(1317), - [anon_sym_inline] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), - [anon_sym_restrict] = ACTIONS(1317), - [anon_sym_volatile] = ACTIONS(1317), - [anon_sym__Atomic] = ACTIONS(1317), - [anon_sym_unsigned] = ACTIONS(1317), - [anon_sym_long] = ACTIONS(1317), - [anon_sym_short] = ACTIONS(1317), - [sym_primitive_type] = ACTIONS(1317), - [anon_sym_enum] = ACTIONS(1317), - [anon_sym_struct] = ACTIONS(1317), - [anon_sym_union] = ACTIONS(1317), - [sym_identifier] = ACTIONS(1317), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1308), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1308), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1308), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1308), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1308), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1308), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1308), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1308), + [sym_preproc_directive] = ACTIONS(1308), + [anon_sym_typedef] = ACTIONS(1308), + [anon_sym_extern] = ACTIONS(1308), + [anon_sym_static] = ACTIONS(1308), + [anon_sym_auto] = ACTIONS(1308), + [anon_sym_register] = ACTIONS(1308), + [anon_sym_inline] = ACTIONS(1308), + [anon_sym_const] = ACTIONS(1308), + [anon_sym_restrict] = ACTIONS(1308), + [anon_sym_volatile] = ACTIONS(1308), + [anon_sym__Atomic] = ACTIONS(1308), + [anon_sym_unsigned] = ACTIONS(1308), + [anon_sym_long] = ACTIONS(1308), + [anon_sym_short] = ACTIONS(1308), + [sym_primitive_type] = ACTIONS(1308), + [anon_sym_enum] = ACTIONS(1308), + [anon_sym_struct] = ACTIONS(1308), + [anon_sym_union] = ACTIONS(1308), + [sym_identifier] = ACTIONS(1308), [sym_comment] = ACTIONS(39), }, [783] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1321), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1321), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1321), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1321), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1321), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1321), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1321), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1321), - [sym_preproc_directive] = ACTIONS(1321), - [anon_sym_typedef] = ACTIONS(1321), - [anon_sym_extern] = ACTIONS(1321), - [anon_sym_static] = ACTIONS(1321), - [anon_sym_auto] = ACTIONS(1321), - [anon_sym_register] = ACTIONS(1321), - [anon_sym_inline] = ACTIONS(1321), - [anon_sym_const] = ACTIONS(1321), - [anon_sym_restrict] = ACTIONS(1321), - [anon_sym_volatile] = ACTIONS(1321), - [anon_sym__Atomic] = ACTIONS(1321), - [anon_sym_unsigned] = ACTIONS(1321), - [anon_sym_long] = ACTIONS(1321), - [anon_sym_short] = ACTIONS(1321), - [sym_primitive_type] = ACTIONS(1321), - [anon_sym_enum] = ACTIONS(1321), - [anon_sym_struct] = ACTIONS(1321), - [anon_sym_union] = ACTIONS(1321), - [sym_identifier] = ACTIONS(1321), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1312), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1312), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1312), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1312), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1312), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1312), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1312), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1312), + [sym_preproc_directive] = ACTIONS(1312), + [anon_sym_typedef] = ACTIONS(1312), + [anon_sym_extern] = ACTIONS(1312), + [anon_sym_static] = ACTIONS(1312), + [anon_sym_auto] = ACTIONS(1312), + [anon_sym_register] = ACTIONS(1312), + [anon_sym_inline] = ACTIONS(1312), + [anon_sym_const] = ACTIONS(1312), + [anon_sym_restrict] = ACTIONS(1312), + [anon_sym_volatile] = ACTIONS(1312), + [anon_sym__Atomic] = ACTIONS(1312), + [anon_sym_unsigned] = ACTIONS(1312), + [anon_sym_long] = ACTIONS(1312), + [anon_sym_short] = ACTIONS(1312), + [sym_primitive_type] = ACTIONS(1312), + [anon_sym_enum] = ACTIONS(1312), + [anon_sym_struct] = ACTIONS(1312), + [anon_sym_union] = ACTIONS(1312), + [sym_identifier] = ACTIONS(1312), [sym_comment] = ACTIONS(39), }, [784] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(654), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(654), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(654), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(654), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(654), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(654), - [sym_preproc_directive] = ACTIONS(654), - [anon_sym_SEMI] = ACTIONS(652), - [anon_sym_typedef] = ACTIONS(654), - [anon_sym_extern] = ACTIONS(654), - [anon_sym_LBRACE] = ACTIONS(652), - [anon_sym_LPAREN2] = ACTIONS(652), - [anon_sym_STAR] = ACTIONS(652), - [anon_sym_static] = ACTIONS(654), - [anon_sym_auto] = ACTIONS(654), - [anon_sym_register] = ACTIONS(654), - [anon_sym_inline] = ACTIONS(654), - [anon_sym_const] = ACTIONS(654), - [anon_sym_restrict] = ACTIONS(654), - [anon_sym_volatile] = ACTIONS(654), - [anon_sym__Atomic] = ACTIONS(654), - [anon_sym_unsigned] = ACTIONS(654), - [anon_sym_long] = ACTIONS(654), - [anon_sym_short] = ACTIONS(654), - [sym_primitive_type] = ACTIONS(654), - [anon_sym_enum] = ACTIONS(654), - [anon_sym_struct] = ACTIONS(654), - [anon_sym_union] = ACTIONS(654), - [anon_sym_if] = ACTIONS(654), - [anon_sym_switch] = ACTIONS(654), - [anon_sym_case] = ACTIONS(654), - [anon_sym_default] = ACTIONS(654), - [anon_sym_while] = ACTIONS(654), - [anon_sym_do] = ACTIONS(654), - [anon_sym_for] = ACTIONS(654), - [anon_sym_return] = ACTIONS(654), - [anon_sym_break] = ACTIONS(654), - [anon_sym_continue] = ACTIONS(654), - [anon_sym_goto] = ACTIONS(654), - [anon_sym_AMP] = ACTIONS(652), - [anon_sym_BANG] = ACTIONS(652), - [anon_sym_TILDE] = ACTIONS(652), - [anon_sym_PLUS] = ACTIONS(654), - [anon_sym_DASH] = ACTIONS(654), - [anon_sym_DASH_DASH] = ACTIONS(652), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_sizeof] = ACTIONS(654), - [sym_number_literal] = ACTIONS(652), - [anon_sym_SQUOTE] = ACTIONS(652), - [anon_sym_DQUOTE] = ACTIONS(652), - [sym_true] = ACTIONS(654), - [sym_false] = ACTIONS(654), - [sym_null] = ACTIONS(654), - [sym_identifier] = ACTIONS(654), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(650), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(650), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(650), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(650), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(650), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(650), + [sym_preproc_directive] = ACTIONS(650), + [anon_sym_SEMI] = ACTIONS(648), + [anon_sym_typedef] = ACTIONS(650), + [anon_sym_extern] = ACTIONS(650), + [anon_sym_LBRACE] = ACTIONS(648), + [anon_sym_LPAREN2] = ACTIONS(648), + [anon_sym_STAR] = ACTIONS(648), + [anon_sym_static] = ACTIONS(650), + [anon_sym_auto] = ACTIONS(650), + [anon_sym_register] = ACTIONS(650), + [anon_sym_inline] = ACTIONS(650), + [anon_sym_const] = ACTIONS(650), + [anon_sym_restrict] = ACTIONS(650), + [anon_sym_volatile] = ACTIONS(650), + [anon_sym__Atomic] = ACTIONS(650), + [anon_sym_unsigned] = ACTIONS(650), + [anon_sym_long] = ACTIONS(650), + [anon_sym_short] = ACTIONS(650), + [sym_primitive_type] = ACTIONS(650), + [anon_sym_enum] = ACTIONS(650), + [anon_sym_struct] = ACTIONS(650), + [anon_sym_union] = ACTIONS(650), + [anon_sym_if] = ACTIONS(650), + [anon_sym_switch] = ACTIONS(650), + [anon_sym_case] = ACTIONS(650), + [anon_sym_default] = ACTIONS(650), + [anon_sym_while] = ACTIONS(650), + [anon_sym_do] = ACTIONS(650), + [anon_sym_for] = ACTIONS(650), + [anon_sym_return] = ACTIONS(650), + [anon_sym_break] = ACTIONS(650), + [anon_sym_continue] = ACTIONS(650), + [anon_sym_goto] = ACTIONS(650), + [anon_sym_AMP] = ACTIONS(648), + [anon_sym_BANG] = ACTIONS(648), + [anon_sym_TILDE] = ACTIONS(648), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_DASH] = ACTIONS(650), + [anon_sym_DASH_DASH] = ACTIONS(648), + [anon_sym_PLUS_PLUS] = ACTIONS(648), + [anon_sym_sizeof] = ACTIONS(650), + [sym_number_literal] = ACTIONS(648), + [anon_sym_SQUOTE] = ACTIONS(648), + [anon_sym_DQUOTE] = ACTIONS(648), + [sym_true] = ACTIONS(650), + [sym_false] = ACTIONS(650), + [sym_null] = ACTIONS(650), + [sym_identifier] = ACTIONS(650), [sym_comment] = ACTIONS(39), }, [785] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(672), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(672), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(672), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(672), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(672), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(672), - [sym_preproc_directive] = ACTIONS(672), - [anon_sym_SEMI] = ACTIONS(670), - [anon_sym_typedef] = ACTIONS(672), - [anon_sym_extern] = ACTIONS(672), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_LPAREN2] = ACTIONS(670), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_static] = ACTIONS(672), - [anon_sym_auto] = ACTIONS(672), - [anon_sym_register] = ACTIONS(672), - [anon_sym_inline] = ACTIONS(672), - [anon_sym_const] = ACTIONS(672), - [anon_sym_restrict] = ACTIONS(672), - [anon_sym_volatile] = ACTIONS(672), - [anon_sym__Atomic] = ACTIONS(672), - [anon_sym_unsigned] = ACTIONS(672), - [anon_sym_long] = ACTIONS(672), - [anon_sym_short] = ACTIONS(672), - [sym_primitive_type] = ACTIONS(672), - [anon_sym_enum] = ACTIONS(672), - [anon_sym_struct] = ACTIONS(672), - [anon_sym_union] = ACTIONS(672), - [anon_sym_if] = ACTIONS(672), - [anon_sym_switch] = ACTIONS(672), - [anon_sym_case] = ACTIONS(672), - [anon_sym_default] = ACTIONS(672), - [anon_sym_while] = ACTIONS(672), - [anon_sym_do] = ACTIONS(672), - [anon_sym_for] = ACTIONS(672), - [anon_sym_return] = ACTIONS(672), - [anon_sym_break] = ACTIONS(672), - [anon_sym_continue] = ACTIONS(672), - [anon_sym_goto] = ACTIONS(672), - [anon_sym_AMP] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(670), - [anon_sym_TILDE] = ACTIONS(670), - [anon_sym_PLUS] = ACTIONS(672), - [anon_sym_DASH] = ACTIONS(672), - [anon_sym_DASH_DASH] = ACTIONS(670), - [anon_sym_PLUS_PLUS] = ACTIONS(670), - [anon_sym_sizeof] = ACTIONS(672), - [sym_number_literal] = ACTIONS(670), - [anon_sym_SQUOTE] = ACTIONS(670), - [anon_sym_DQUOTE] = ACTIONS(670), - [sym_true] = ACTIONS(672), - [sym_false] = ACTIONS(672), - [sym_null] = ACTIONS(672), - [sym_identifier] = ACTIONS(672), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(665), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(665), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(665), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(665), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(665), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(665), + [sym_preproc_directive] = ACTIONS(665), + [anon_sym_SEMI] = ACTIONS(663), + [anon_sym_typedef] = ACTIONS(665), + [anon_sym_extern] = ACTIONS(665), + [anon_sym_LBRACE] = ACTIONS(663), + [anon_sym_LPAREN2] = ACTIONS(663), + [anon_sym_STAR] = ACTIONS(663), + [anon_sym_static] = ACTIONS(665), + [anon_sym_auto] = ACTIONS(665), + [anon_sym_register] = ACTIONS(665), + [anon_sym_inline] = ACTIONS(665), + [anon_sym_const] = ACTIONS(665), + [anon_sym_restrict] = ACTIONS(665), + [anon_sym_volatile] = ACTIONS(665), + [anon_sym__Atomic] = ACTIONS(665), + [anon_sym_unsigned] = ACTIONS(665), + [anon_sym_long] = ACTIONS(665), + [anon_sym_short] = ACTIONS(665), + [sym_primitive_type] = ACTIONS(665), + [anon_sym_enum] = ACTIONS(665), + [anon_sym_struct] = ACTIONS(665), + [anon_sym_union] = ACTIONS(665), + [anon_sym_if] = ACTIONS(665), + [anon_sym_switch] = ACTIONS(665), + [anon_sym_case] = ACTIONS(665), + [anon_sym_default] = ACTIONS(665), + [anon_sym_while] = ACTIONS(665), + [anon_sym_do] = ACTIONS(665), + [anon_sym_for] = ACTIONS(665), + [anon_sym_return] = ACTIONS(665), + [anon_sym_break] = ACTIONS(665), + [anon_sym_continue] = ACTIONS(665), + [anon_sym_goto] = ACTIONS(665), + [anon_sym_AMP] = ACTIONS(663), + [anon_sym_BANG] = ACTIONS(663), + [anon_sym_TILDE] = ACTIONS(663), + [anon_sym_PLUS] = ACTIONS(665), + [anon_sym_DASH] = ACTIONS(665), + [anon_sym_DASH_DASH] = ACTIONS(663), + [anon_sym_PLUS_PLUS] = ACTIONS(663), + [anon_sym_sizeof] = ACTIONS(665), + [sym_number_literal] = ACTIONS(663), + [anon_sym_SQUOTE] = ACTIONS(663), + [anon_sym_DQUOTE] = ACTIONS(663), + [sym_true] = ACTIONS(665), + [sym_false] = ACTIONS(665), + [sym_null] = ACTIONS(665), + [sym_identifier] = ACTIONS(665), [sym_comment] = ACTIONS(39), }, [786] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(676), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(676), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(676), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(676), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(676), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(676), - [sym_preproc_directive] = ACTIONS(676), - [anon_sym_SEMI] = ACTIONS(674), - [anon_sym_typedef] = ACTIONS(676), - [anon_sym_extern] = ACTIONS(676), - [anon_sym_LBRACE] = ACTIONS(674), - [anon_sym_LPAREN2] = ACTIONS(674), - [anon_sym_STAR] = ACTIONS(674), - [anon_sym_static] = ACTIONS(676), - [anon_sym_auto] = ACTIONS(676), - [anon_sym_register] = ACTIONS(676), - [anon_sym_inline] = ACTIONS(676), - [anon_sym_const] = ACTIONS(676), - [anon_sym_restrict] = ACTIONS(676), - [anon_sym_volatile] = ACTIONS(676), - [anon_sym__Atomic] = ACTIONS(676), - [anon_sym_unsigned] = ACTIONS(676), - [anon_sym_long] = ACTIONS(676), - [anon_sym_short] = ACTIONS(676), - [sym_primitive_type] = ACTIONS(676), - [anon_sym_enum] = ACTIONS(676), - [anon_sym_struct] = ACTIONS(676), - [anon_sym_union] = ACTIONS(676), - [anon_sym_if] = ACTIONS(676), - [anon_sym_switch] = ACTIONS(676), - [anon_sym_case] = ACTIONS(676), - [anon_sym_default] = ACTIONS(676), - [anon_sym_while] = ACTIONS(676), - [anon_sym_do] = ACTIONS(676), - [anon_sym_for] = ACTIONS(676), - [anon_sym_return] = ACTIONS(676), - [anon_sym_break] = ACTIONS(676), - [anon_sym_continue] = ACTIONS(676), - [anon_sym_goto] = ACTIONS(676), - [anon_sym_AMP] = ACTIONS(674), - [anon_sym_BANG] = ACTIONS(674), - [anon_sym_TILDE] = ACTIONS(674), - [anon_sym_PLUS] = ACTIONS(676), - [anon_sym_DASH] = ACTIONS(676), - [anon_sym_DASH_DASH] = ACTIONS(674), - [anon_sym_PLUS_PLUS] = ACTIONS(674), - [anon_sym_sizeof] = ACTIONS(676), - [sym_number_literal] = ACTIONS(674), - [anon_sym_SQUOTE] = ACTIONS(674), - [anon_sym_DQUOTE] = ACTIONS(674), - [sym_true] = ACTIONS(676), - [sym_false] = ACTIONS(676), - [sym_null] = ACTIONS(676), - [sym_identifier] = ACTIONS(676), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(669), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(669), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(669), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(669), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(669), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(669), + [sym_preproc_directive] = ACTIONS(669), + [anon_sym_SEMI] = ACTIONS(667), + [anon_sym_typedef] = ACTIONS(669), + [anon_sym_extern] = ACTIONS(669), + [anon_sym_LBRACE] = ACTIONS(667), + [anon_sym_LPAREN2] = ACTIONS(667), + [anon_sym_STAR] = ACTIONS(667), + [anon_sym_static] = ACTIONS(669), + [anon_sym_auto] = ACTIONS(669), + [anon_sym_register] = ACTIONS(669), + [anon_sym_inline] = ACTIONS(669), + [anon_sym_const] = ACTIONS(669), + [anon_sym_restrict] = ACTIONS(669), + [anon_sym_volatile] = ACTIONS(669), + [anon_sym__Atomic] = ACTIONS(669), + [anon_sym_unsigned] = ACTIONS(669), + [anon_sym_long] = ACTIONS(669), + [anon_sym_short] = ACTIONS(669), + [sym_primitive_type] = ACTIONS(669), + [anon_sym_enum] = ACTIONS(669), + [anon_sym_struct] = ACTIONS(669), + [anon_sym_union] = ACTIONS(669), + [anon_sym_if] = ACTIONS(669), + [anon_sym_switch] = ACTIONS(669), + [anon_sym_case] = ACTIONS(669), + [anon_sym_default] = ACTIONS(669), + [anon_sym_while] = ACTIONS(669), + [anon_sym_do] = ACTIONS(669), + [anon_sym_for] = ACTIONS(669), + [anon_sym_return] = ACTIONS(669), + [anon_sym_break] = ACTIONS(669), + [anon_sym_continue] = ACTIONS(669), + [anon_sym_goto] = ACTIONS(669), + [anon_sym_AMP] = ACTIONS(667), + [anon_sym_BANG] = ACTIONS(667), + [anon_sym_TILDE] = ACTIONS(667), + [anon_sym_PLUS] = ACTIONS(669), + [anon_sym_DASH] = ACTIONS(669), + [anon_sym_DASH_DASH] = ACTIONS(667), + [anon_sym_PLUS_PLUS] = ACTIONS(667), + [anon_sym_sizeof] = ACTIONS(669), + [sym_number_literal] = ACTIONS(667), + [anon_sym_SQUOTE] = ACTIONS(667), + [anon_sym_DQUOTE] = ACTIONS(667), + [sym_true] = ACTIONS(669), + [sym_false] = ACTIONS(669), + [sym_null] = ACTIONS(669), + [sym_identifier] = ACTIONS(669), [sym_comment] = ACTIONS(39), }, [787] = { - [anon_sym_LF] = ACTIONS(2623), + [anon_sym_LF] = ACTIONS(2612), [sym_comment] = ACTIONS(49), }, [788] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(730), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(730), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(730), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(730), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(730), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(730), - [sym_preproc_directive] = ACTIONS(730), - [anon_sym_typedef] = ACTIONS(730), - [anon_sym_extern] = ACTIONS(730), - [anon_sym_static] = ACTIONS(730), - [anon_sym_auto] = ACTIONS(730), - [anon_sym_register] = ACTIONS(730), - [anon_sym_inline] = ACTIONS(730), - [anon_sym_const] = ACTIONS(730), - [anon_sym_restrict] = ACTIONS(730), - [anon_sym_volatile] = ACTIONS(730), - [anon_sym__Atomic] = ACTIONS(730), - [anon_sym_unsigned] = ACTIONS(730), - [anon_sym_long] = ACTIONS(730), - [anon_sym_short] = ACTIONS(730), - [sym_primitive_type] = ACTIONS(730), - [anon_sym_enum] = ACTIONS(730), - [anon_sym_struct] = ACTIONS(730), - [anon_sym_union] = ACTIONS(730), - [sym_identifier] = ACTIONS(730), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(721), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(721), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(721), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(721), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(721), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(721), + [sym_preproc_directive] = ACTIONS(721), + [anon_sym_typedef] = ACTIONS(721), + [anon_sym_extern] = ACTIONS(721), + [anon_sym_static] = ACTIONS(721), + [anon_sym_auto] = ACTIONS(721), + [anon_sym_register] = ACTIONS(721), + [anon_sym_inline] = ACTIONS(721), + [anon_sym_const] = ACTIONS(721), + [anon_sym_restrict] = ACTIONS(721), + [anon_sym_volatile] = ACTIONS(721), + [anon_sym__Atomic] = ACTIONS(721), + [anon_sym_unsigned] = ACTIONS(721), + [anon_sym_long] = ACTIONS(721), + [anon_sym_short] = ACTIONS(721), + [sym_primitive_type] = ACTIONS(721), + [anon_sym_enum] = ACTIONS(721), + [anon_sym_struct] = ACTIONS(721), + [anon_sym_union] = ACTIONS(721), + [sym_identifier] = ACTIONS(721), [sym_comment] = ACTIONS(39), }, [789] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2625), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2614), [sym_comment] = ACTIONS(39), }, [790] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(766), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(766), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(766), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(766), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(766), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(766), - [sym_preproc_directive] = ACTIONS(766), - [anon_sym_typedef] = ACTIONS(766), - [anon_sym_extern] = ACTIONS(766), - [anon_sym_static] = ACTIONS(766), - [anon_sym_auto] = ACTIONS(766), - [anon_sym_register] = ACTIONS(766), - [anon_sym_inline] = ACTIONS(766), - [anon_sym_const] = ACTIONS(766), - [anon_sym_restrict] = ACTIONS(766), - [anon_sym_volatile] = ACTIONS(766), - [anon_sym__Atomic] = ACTIONS(766), - [anon_sym_unsigned] = ACTIONS(766), - [anon_sym_long] = ACTIONS(766), - [anon_sym_short] = ACTIONS(766), - [sym_primitive_type] = ACTIONS(766), - [anon_sym_enum] = ACTIONS(766), - [anon_sym_struct] = ACTIONS(766), - [anon_sym_union] = ACTIONS(766), - [sym_identifier] = ACTIONS(766), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(757), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(757), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(757), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(757), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(757), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(757), + [sym_preproc_directive] = ACTIONS(757), + [anon_sym_typedef] = ACTIONS(757), + [anon_sym_extern] = ACTIONS(757), + [anon_sym_static] = ACTIONS(757), + [anon_sym_auto] = ACTIONS(757), + [anon_sym_register] = ACTIONS(757), + [anon_sym_inline] = ACTIONS(757), + [anon_sym_const] = ACTIONS(757), + [anon_sym_restrict] = ACTIONS(757), + [anon_sym_volatile] = ACTIONS(757), + [anon_sym__Atomic] = ACTIONS(757), + [anon_sym_unsigned] = ACTIONS(757), + [anon_sym_long] = ACTIONS(757), + [anon_sym_short] = ACTIONS(757), + [sym_primitive_type] = ACTIONS(757), + [anon_sym_enum] = ACTIONS(757), + [anon_sym_struct] = ACTIONS(757), + [anon_sym_union] = ACTIONS(757), + [sym_identifier] = ACTIONS(757), [sym_comment] = ACTIONS(39), }, [791] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2627), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2616), [sym_comment] = ACTIONS(39), }, [792] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(772), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(772), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(772), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(772), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(772), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(772), - [sym_preproc_directive] = ACTIONS(772), - [anon_sym_typedef] = ACTIONS(772), - [anon_sym_extern] = ACTIONS(772), - [anon_sym_static] = ACTIONS(772), - [anon_sym_auto] = ACTIONS(772), - [anon_sym_register] = ACTIONS(772), - [anon_sym_inline] = ACTIONS(772), - [anon_sym_const] = ACTIONS(772), - [anon_sym_restrict] = ACTIONS(772), - [anon_sym_volatile] = ACTIONS(772), - [anon_sym__Atomic] = ACTIONS(772), - [anon_sym_unsigned] = ACTIONS(772), - [anon_sym_long] = ACTIONS(772), - [anon_sym_short] = ACTIONS(772), - [sym_primitive_type] = ACTIONS(772), - [anon_sym_enum] = ACTIONS(772), - [anon_sym_struct] = ACTIONS(772), - [anon_sym_union] = ACTIONS(772), - [sym_identifier] = ACTIONS(772), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(763), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(763), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(763), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(763), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(763), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(763), + [sym_preproc_directive] = ACTIONS(763), + [anon_sym_typedef] = ACTIONS(763), + [anon_sym_extern] = ACTIONS(763), + [anon_sym_static] = ACTIONS(763), + [anon_sym_auto] = ACTIONS(763), + [anon_sym_register] = ACTIONS(763), + [anon_sym_inline] = ACTIONS(763), + [anon_sym_const] = ACTIONS(763), + [anon_sym_restrict] = ACTIONS(763), + [anon_sym_volatile] = ACTIONS(763), + [anon_sym__Atomic] = ACTIONS(763), + [anon_sym_unsigned] = ACTIONS(763), + [anon_sym_long] = ACTIONS(763), + [anon_sym_short] = ACTIONS(763), + [sym_primitive_type] = ACTIONS(763), + [anon_sym_enum] = ACTIONS(763), + [anon_sym_struct] = ACTIONS(763), + [anon_sym_union] = ACTIONS(763), + [sym_identifier] = ACTIONS(763), [sym_comment] = ACTIONS(39), }, [793] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2629), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2618), [sym_comment] = ACTIONS(39), }, [794] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(782), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(782), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(782), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(782), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(782), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(782), - [sym_preproc_directive] = ACTIONS(782), - [anon_sym_SEMI] = ACTIONS(780), - [anon_sym_typedef] = ACTIONS(782), - [anon_sym_extern] = ACTIONS(782), - [anon_sym_LBRACE] = ACTIONS(780), - [anon_sym_LPAREN2] = ACTIONS(780), - [anon_sym_STAR] = ACTIONS(780), - [anon_sym_static] = ACTIONS(782), - [anon_sym_auto] = ACTIONS(782), - [anon_sym_register] = ACTIONS(782), - [anon_sym_inline] = ACTIONS(782), - [anon_sym_const] = ACTIONS(782), - [anon_sym_restrict] = ACTIONS(782), - [anon_sym_volatile] = ACTIONS(782), - [anon_sym__Atomic] = ACTIONS(782), - [anon_sym_unsigned] = ACTIONS(782), - [anon_sym_long] = ACTIONS(782), - [anon_sym_short] = ACTIONS(782), - [sym_primitive_type] = ACTIONS(782), - [anon_sym_enum] = ACTIONS(782), - [anon_sym_struct] = ACTIONS(782), - [anon_sym_union] = ACTIONS(782), - [anon_sym_if] = ACTIONS(782), - [anon_sym_else] = ACTIONS(782), - [anon_sym_switch] = ACTIONS(782), - [anon_sym_case] = ACTIONS(782), - [anon_sym_default] = ACTIONS(782), - [anon_sym_while] = ACTIONS(782), - [anon_sym_do] = ACTIONS(782), - [anon_sym_for] = ACTIONS(782), - [anon_sym_return] = ACTIONS(782), - [anon_sym_break] = ACTIONS(782), - [anon_sym_continue] = ACTIONS(782), - [anon_sym_goto] = ACTIONS(782), - [anon_sym_AMP] = ACTIONS(780), - [anon_sym_BANG] = ACTIONS(780), - [anon_sym_TILDE] = ACTIONS(780), - [anon_sym_PLUS] = ACTIONS(782), - [anon_sym_DASH] = ACTIONS(782), - [anon_sym_DASH_DASH] = ACTIONS(780), - [anon_sym_PLUS_PLUS] = ACTIONS(780), - [anon_sym_sizeof] = ACTIONS(782), - [sym_number_literal] = ACTIONS(780), - [anon_sym_SQUOTE] = ACTIONS(780), - [anon_sym_DQUOTE] = ACTIONS(780), - [sym_true] = ACTIONS(782), - [sym_false] = ACTIONS(782), - [sym_null] = ACTIONS(782), - [sym_identifier] = ACTIONS(782), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(773), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(773), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(773), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(773), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(773), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(773), + [sym_preproc_directive] = ACTIONS(773), + [anon_sym_SEMI] = ACTIONS(771), + [anon_sym_typedef] = ACTIONS(773), + [anon_sym_extern] = ACTIONS(773), + [anon_sym_LBRACE] = ACTIONS(771), + [anon_sym_LPAREN2] = ACTIONS(771), + [anon_sym_STAR] = ACTIONS(771), + [anon_sym_static] = ACTIONS(773), + [anon_sym_auto] = ACTIONS(773), + [anon_sym_register] = ACTIONS(773), + [anon_sym_inline] = ACTIONS(773), + [anon_sym_const] = ACTIONS(773), + [anon_sym_restrict] = ACTIONS(773), + [anon_sym_volatile] = ACTIONS(773), + [anon_sym__Atomic] = ACTIONS(773), + [anon_sym_unsigned] = ACTIONS(773), + [anon_sym_long] = ACTIONS(773), + [anon_sym_short] = ACTIONS(773), + [sym_primitive_type] = ACTIONS(773), + [anon_sym_enum] = ACTIONS(773), + [anon_sym_struct] = ACTIONS(773), + [anon_sym_union] = ACTIONS(773), + [anon_sym_if] = ACTIONS(773), + [anon_sym_else] = ACTIONS(773), + [anon_sym_switch] = ACTIONS(773), + [anon_sym_case] = ACTIONS(773), + [anon_sym_default] = ACTIONS(773), + [anon_sym_while] = ACTIONS(773), + [anon_sym_do] = ACTIONS(773), + [anon_sym_for] = ACTIONS(773), + [anon_sym_return] = ACTIONS(773), + [anon_sym_break] = ACTIONS(773), + [anon_sym_continue] = ACTIONS(773), + [anon_sym_goto] = ACTIONS(773), + [anon_sym_AMP] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(771), + [anon_sym_TILDE] = ACTIONS(771), + [anon_sym_PLUS] = ACTIONS(773), + [anon_sym_DASH] = ACTIONS(773), + [anon_sym_DASH_DASH] = ACTIONS(771), + [anon_sym_PLUS_PLUS] = ACTIONS(771), + [anon_sym_sizeof] = ACTIONS(773), + [sym_number_literal] = ACTIONS(771), + [anon_sym_SQUOTE] = ACTIONS(771), + [anon_sym_DQUOTE] = ACTIONS(771), + [sym_true] = ACTIONS(773), + [sym_false] = ACTIONS(773), + [sym_null] = ACTIONS(773), + [sym_identifier] = ACTIONS(773), [sym_comment] = ACTIONS(39), }, [795] = { [sym_parameter_list] = STATE(180), - [anon_sym_SEMI] = ACTIONS(2631), - [anon_sym_LPAREN2] = ACTIONS(243), - [anon_sym_LBRACK] = ACTIONS(428), + [anon_sym_SEMI] = ACTIONS(2620), + [anon_sym_LPAREN2] = ACTIONS(241), + [anon_sym_LBRACK] = ACTIONS(424), [sym_comment] = ACTIONS(39), }, [796] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(796), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(796), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(796), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(796), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(796), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(796), - [sym_preproc_directive] = ACTIONS(796), - [anon_sym_typedef] = ACTIONS(796), - [anon_sym_extern] = ACTIONS(796), - [anon_sym_static] = ACTIONS(796), - [anon_sym_auto] = ACTIONS(796), - [anon_sym_register] = ACTIONS(796), - [anon_sym_inline] = ACTIONS(796), - [anon_sym_const] = ACTIONS(796), - [anon_sym_restrict] = ACTIONS(796), - [anon_sym_volatile] = ACTIONS(796), - [anon_sym__Atomic] = ACTIONS(796), - [anon_sym_unsigned] = ACTIONS(796), - [anon_sym_long] = ACTIONS(796), - [anon_sym_short] = ACTIONS(796), - [sym_primitive_type] = ACTIONS(796), - [anon_sym_enum] = ACTIONS(796), - [anon_sym_struct] = ACTIONS(796), - [anon_sym_union] = ACTIONS(796), - [sym_identifier] = ACTIONS(796), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(787), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(787), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(787), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(787), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(787), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(787), + [sym_preproc_directive] = ACTIONS(787), + [anon_sym_typedef] = ACTIONS(787), + [anon_sym_extern] = ACTIONS(787), + [anon_sym_static] = ACTIONS(787), + [anon_sym_auto] = ACTIONS(787), + [anon_sym_register] = ACTIONS(787), + [anon_sym_inline] = ACTIONS(787), + [anon_sym_const] = ACTIONS(787), + [anon_sym_restrict] = ACTIONS(787), + [anon_sym_volatile] = ACTIONS(787), + [anon_sym__Atomic] = ACTIONS(787), + [anon_sym_unsigned] = ACTIONS(787), + [anon_sym_long] = ACTIONS(787), + [anon_sym_short] = ACTIONS(787), + [sym_primitive_type] = ACTIONS(787), + [anon_sym_enum] = ACTIONS(787), + [anon_sym_struct] = ACTIONS(787), + [anon_sym_union] = ACTIONS(787), + [sym_identifier] = ACTIONS(787), [sym_comment] = ACTIONS(39), }, [797] = { @@ -30529,7 +30548,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_directive] = ACTIONS(17), [anon_sym_typedef] = ACTIONS(19), [anon_sym_extern] = ACTIONS(21), - [anon_sym_RBRACE] = ACTIONS(2633), + [anon_sym_RBRACE] = ACTIONS(2622), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -30549,61 +30568,61 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(39), }, [798] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(968), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(968), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(968), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(968), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(968), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(968), - [sym_preproc_directive] = ACTIONS(968), - [anon_sym_SEMI] = ACTIONS(966), - [anon_sym_typedef] = ACTIONS(968), - [anon_sym_extern] = ACTIONS(968), - [anon_sym_LBRACE] = ACTIONS(966), - [anon_sym_LPAREN2] = ACTIONS(966), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_static] = ACTIONS(968), - [anon_sym_auto] = ACTIONS(968), - [anon_sym_register] = ACTIONS(968), - [anon_sym_inline] = ACTIONS(968), - [anon_sym_const] = ACTIONS(968), - [anon_sym_restrict] = ACTIONS(968), - [anon_sym_volatile] = ACTIONS(968), - [anon_sym__Atomic] = ACTIONS(968), - [anon_sym_unsigned] = ACTIONS(968), - [anon_sym_long] = ACTIONS(968), - [anon_sym_short] = ACTIONS(968), - [sym_primitive_type] = ACTIONS(968), - [anon_sym_enum] = ACTIONS(968), - [anon_sym_struct] = ACTIONS(968), - [anon_sym_union] = ACTIONS(968), - [anon_sym_if] = ACTIONS(968), - [anon_sym_else] = ACTIONS(968), - [anon_sym_switch] = ACTIONS(968), - [anon_sym_case] = ACTIONS(968), - [anon_sym_default] = ACTIONS(968), - [anon_sym_while] = ACTIONS(968), - [anon_sym_do] = ACTIONS(968), - [anon_sym_for] = ACTIONS(968), - [anon_sym_return] = ACTIONS(968), - [anon_sym_break] = ACTIONS(968), - [anon_sym_continue] = ACTIONS(968), - [anon_sym_goto] = ACTIONS(968), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_BANG] = ACTIONS(966), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_DASH_DASH] = ACTIONS(966), - [anon_sym_PLUS_PLUS] = ACTIONS(966), - [anon_sym_sizeof] = ACTIONS(968), - [sym_number_literal] = ACTIONS(966), - [anon_sym_SQUOTE] = ACTIONS(966), - [anon_sym_DQUOTE] = ACTIONS(966), - [sym_true] = ACTIONS(968), - [sym_false] = ACTIONS(968), - [sym_null] = ACTIONS(968), - [sym_identifier] = ACTIONS(968), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(959), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(959), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(959), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(959), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(959), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(959), + [sym_preproc_directive] = ACTIONS(959), + [anon_sym_SEMI] = ACTIONS(957), + [anon_sym_typedef] = ACTIONS(959), + [anon_sym_extern] = ACTIONS(959), + [anon_sym_LBRACE] = ACTIONS(957), + [anon_sym_LPAREN2] = ACTIONS(957), + [anon_sym_STAR] = ACTIONS(957), + [anon_sym_static] = ACTIONS(959), + [anon_sym_auto] = ACTIONS(959), + [anon_sym_register] = ACTIONS(959), + [anon_sym_inline] = ACTIONS(959), + [anon_sym_const] = ACTIONS(959), + [anon_sym_restrict] = ACTIONS(959), + [anon_sym_volatile] = ACTIONS(959), + [anon_sym__Atomic] = ACTIONS(959), + [anon_sym_unsigned] = ACTIONS(959), + [anon_sym_long] = ACTIONS(959), + [anon_sym_short] = ACTIONS(959), + [sym_primitive_type] = ACTIONS(959), + [anon_sym_enum] = ACTIONS(959), + [anon_sym_struct] = ACTIONS(959), + [anon_sym_union] = ACTIONS(959), + [anon_sym_if] = ACTIONS(959), + [anon_sym_else] = ACTIONS(959), + [anon_sym_switch] = ACTIONS(959), + [anon_sym_case] = ACTIONS(959), + [anon_sym_default] = ACTIONS(959), + [anon_sym_while] = ACTIONS(959), + [anon_sym_do] = ACTIONS(959), + [anon_sym_for] = ACTIONS(959), + [anon_sym_return] = ACTIONS(959), + [anon_sym_break] = ACTIONS(959), + [anon_sym_continue] = ACTIONS(959), + [anon_sym_goto] = ACTIONS(959), + [anon_sym_AMP] = ACTIONS(957), + [anon_sym_BANG] = ACTIONS(957), + [anon_sym_TILDE] = ACTIONS(957), + [anon_sym_PLUS] = ACTIONS(959), + [anon_sym_DASH] = ACTIONS(959), + [anon_sym_DASH_DASH] = ACTIONS(957), + [anon_sym_PLUS_PLUS] = ACTIONS(957), + [anon_sym_sizeof] = ACTIONS(959), + [sym_number_literal] = ACTIONS(957), + [anon_sym_SQUOTE] = ACTIONS(957), + [anon_sym_DQUOTE] = ACTIONS(957), + [sym_true] = ACTIONS(959), + [sym_false] = ACTIONS(959), + [sym_null] = ACTIONS(959), + [sym_identifier] = ACTIONS(959), [sym_comment] = ACTIONS(39), }, [799] = { @@ -30662,19 +30681,19 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(468), [aux_sym__declaration_specifiers_repeat1] = STATE(20), [aux_sym_sized_type_specifier_repeat1] = STATE(21), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(542), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(538), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(9), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(544), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(546), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(548), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(540), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(542), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(544), [sym_preproc_directive] = ACTIONS(17), - [anon_sym_SEMI] = ACTIONS(550), + [anon_sym_SEMI] = ACTIONS(546), [anon_sym_typedef] = ACTIONS(19), [anon_sym_extern] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(241), - [anon_sym_RBRACE] = ACTIONS(2635), - [anon_sym_LPAREN2] = ACTIONS(554), - [anon_sym_STAR] = ACTIONS(556), + [anon_sym_LBRACE] = ACTIONS(239), + [anon_sym_RBRACE] = ACTIONS(2624), + [anon_sym_LPAREN2] = ACTIONS(550), + [anon_sym_STAR] = ACTIONS(552), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -30690,247 +30709,247 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), - [anon_sym_if] = ACTIONS(558), - [anon_sym_switch] = ACTIONS(560), - [anon_sym_case] = ACTIONS(562), - [anon_sym_default] = ACTIONS(564), - [anon_sym_while] = ACTIONS(566), - [anon_sym_do] = ACTIONS(568), - [anon_sym_for] = ACTIONS(570), - [anon_sym_return] = ACTIONS(572), - [anon_sym_break] = ACTIONS(574), - [anon_sym_continue] = ACTIONS(576), - [anon_sym_goto] = ACTIONS(578), - [anon_sym_AMP] = ACTIONS(556), - [anon_sym_BANG] = ACTIONS(580), - [anon_sym_TILDE] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_DASH_DASH] = ACTIONS(586), - [anon_sym_PLUS_PLUS] = ACTIONS(586), - [anon_sym_sizeof] = ACTIONS(588), - [sym_number_literal] = ACTIONS(590), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(594), - [sym_false] = ACTIONS(594), - [sym_null] = ACTIONS(594), - [sym_identifier] = ACTIONS(596), + [anon_sym_if] = ACTIONS(554), + [anon_sym_switch] = ACTIONS(556), + [anon_sym_case] = ACTIONS(558), + [anon_sym_default] = ACTIONS(560), + [anon_sym_while] = ACTIONS(562), + [anon_sym_do] = ACTIONS(564), + [anon_sym_for] = ACTIONS(566), + [anon_sym_return] = ACTIONS(568), + [anon_sym_break] = ACTIONS(570), + [anon_sym_continue] = ACTIONS(572), + [anon_sym_goto] = ACTIONS(574), + [anon_sym_AMP] = ACTIONS(552), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_TILDE] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(580), + [anon_sym_DASH] = ACTIONS(580), + [anon_sym_DASH_DASH] = ACTIONS(582), + [anon_sym_PLUS_PLUS] = ACTIONS(582), + [anon_sym_sizeof] = ACTIONS(584), + [sym_number_literal] = ACTIONS(586), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(590), + [sym_false] = ACTIONS(590), + [sym_null] = ACTIONS(590), + [sym_identifier] = ACTIONS(592), [sym_comment] = ACTIONS(39), }, [800] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1214), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1214), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1214), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1214), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1214), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1214), - [sym_preproc_directive] = ACTIONS(1214), - [anon_sym_SEMI] = ACTIONS(1212), - [anon_sym_typedef] = ACTIONS(1214), - [anon_sym_extern] = ACTIONS(1214), - [anon_sym_LBRACE] = ACTIONS(1212), - [anon_sym_LPAREN2] = ACTIONS(1212), - [anon_sym_STAR] = ACTIONS(1212), - [anon_sym_static] = ACTIONS(1214), - [anon_sym_auto] = ACTIONS(1214), - [anon_sym_register] = ACTIONS(1214), - [anon_sym_inline] = ACTIONS(1214), - [anon_sym_const] = ACTIONS(1214), - [anon_sym_restrict] = ACTIONS(1214), - [anon_sym_volatile] = ACTIONS(1214), - [anon_sym__Atomic] = ACTIONS(1214), - [anon_sym_unsigned] = ACTIONS(1214), - [anon_sym_long] = ACTIONS(1214), - [anon_sym_short] = ACTIONS(1214), - [sym_primitive_type] = ACTIONS(1214), - [anon_sym_enum] = ACTIONS(1214), - [anon_sym_struct] = ACTIONS(1214), - [anon_sym_union] = ACTIONS(1214), - [anon_sym_if] = ACTIONS(1214), - [anon_sym_else] = ACTIONS(1214), - [anon_sym_switch] = ACTIONS(1214), - [anon_sym_case] = ACTIONS(1214), - [anon_sym_default] = ACTIONS(1214), - [anon_sym_while] = ACTIONS(1214), - [anon_sym_do] = ACTIONS(1214), - [anon_sym_for] = ACTIONS(1214), - [anon_sym_return] = ACTIONS(1214), - [anon_sym_break] = ACTIONS(1214), - [anon_sym_continue] = ACTIONS(1214), - [anon_sym_goto] = ACTIONS(1214), - [anon_sym_AMP] = ACTIONS(1212), - [anon_sym_BANG] = ACTIONS(1212), - [anon_sym_TILDE] = ACTIONS(1212), - [anon_sym_PLUS] = ACTIONS(1214), - [anon_sym_DASH] = ACTIONS(1214), - [anon_sym_DASH_DASH] = ACTIONS(1212), - [anon_sym_PLUS_PLUS] = ACTIONS(1212), - [anon_sym_sizeof] = ACTIONS(1214), - [sym_number_literal] = ACTIONS(1212), - [anon_sym_SQUOTE] = ACTIONS(1212), - [anon_sym_DQUOTE] = ACTIONS(1212), - [sym_true] = ACTIONS(1214), - [sym_false] = ACTIONS(1214), - [sym_null] = ACTIONS(1214), - [sym_identifier] = ACTIONS(1214), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1207), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1207), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1207), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1207), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1207), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1207), + [sym_preproc_directive] = ACTIONS(1207), + [anon_sym_SEMI] = ACTIONS(1205), + [anon_sym_typedef] = ACTIONS(1207), + [anon_sym_extern] = ACTIONS(1207), + [anon_sym_LBRACE] = ACTIONS(1205), + [anon_sym_LPAREN2] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1205), + [anon_sym_static] = ACTIONS(1207), + [anon_sym_auto] = ACTIONS(1207), + [anon_sym_register] = ACTIONS(1207), + [anon_sym_inline] = ACTIONS(1207), + [anon_sym_const] = ACTIONS(1207), + [anon_sym_restrict] = ACTIONS(1207), + [anon_sym_volatile] = ACTIONS(1207), + [anon_sym__Atomic] = ACTIONS(1207), + [anon_sym_unsigned] = ACTIONS(1207), + [anon_sym_long] = ACTIONS(1207), + [anon_sym_short] = ACTIONS(1207), + [sym_primitive_type] = ACTIONS(1207), + [anon_sym_enum] = ACTIONS(1207), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_union] = ACTIONS(1207), + [anon_sym_if] = ACTIONS(1207), + [anon_sym_else] = ACTIONS(1207), + [anon_sym_switch] = ACTIONS(1207), + [anon_sym_case] = ACTIONS(1207), + [anon_sym_default] = ACTIONS(1207), + [anon_sym_while] = ACTIONS(1207), + [anon_sym_do] = ACTIONS(1207), + [anon_sym_for] = ACTIONS(1207), + [anon_sym_return] = ACTIONS(1207), + [anon_sym_break] = ACTIONS(1207), + [anon_sym_continue] = ACTIONS(1207), + [anon_sym_goto] = ACTIONS(1207), + [anon_sym_AMP] = ACTIONS(1205), + [anon_sym_BANG] = ACTIONS(1205), + [anon_sym_TILDE] = ACTIONS(1205), + [anon_sym_PLUS] = ACTIONS(1207), + [anon_sym_DASH] = ACTIONS(1207), + [anon_sym_DASH_DASH] = ACTIONS(1205), + [anon_sym_PLUS_PLUS] = ACTIONS(1205), + [anon_sym_sizeof] = ACTIONS(1207), + [sym_number_literal] = ACTIONS(1205), + [anon_sym_SQUOTE] = ACTIONS(1205), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_true] = ACTIONS(1207), + [sym_false] = ACTIONS(1207), + [sym_null] = ACTIONS(1207), + [sym_identifier] = ACTIONS(1207), [sym_comment] = ACTIONS(39), }, [801] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1337), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1337), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1337), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1337), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1337), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1337), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1337), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1337), - [sym_preproc_directive] = ACTIONS(1337), - [anon_sym_SEMI] = ACTIONS(1335), - [anon_sym_typedef] = ACTIONS(1337), - [anon_sym_extern] = ACTIONS(1337), - [anon_sym_LBRACE] = ACTIONS(1335), - [anon_sym_LPAREN2] = ACTIONS(1335), - [anon_sym_STAR] = ACTIONS(1335), - [anon_sym_static] = ACTIONS(1337), - [anon_sym_auto] = ACTIONS(1337), - [anon_sym_register] = ACTIONS(1337), - [anon_sym_inline] = ACTIONS(1337), - [anon_sym_const] = ACTIONS(1337), - [anon_sym_restrict] = ACTIONS(1337), - [anon_sym_volatile] = ACTIONS(1337), - [anon_sym__Atomic] = ACTIONS(1337), - [anon_sym_unsigned] = ACTIONS(1337), - [anon_sym_long] = ACTIONS(1337), - [anon_sym_short] = ACTIONS(1337), - [sym_primitive_type] = 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(1335), - [anon_sym_SQUOTE] = ACTIONS(1335), - [anon_sym_DQUOTE] = ACTIONS(1335), - [sym_true] = ACTIONS(1337), - [sym_false] = ACTIONS(1337), - [sym_null] = ACTIONS(1337), - [sym_identifier] = ACTIONS(1337), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1328), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1328), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1328), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1328), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1328), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1328), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1328), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1328), + [sym_preproc_directive] = ACTIONS(1328), + [anon_sym_SEMI] = ACTIONS(1326), + [anon_sym_typedef] = ACTIONS(1328), + [anon_sym_extern] = ACTIONS(1328), + [anon_sym_LBRACE] = ACTIONS(1326), + [anon_sym_LPAREN2] = ACTIONS(1326), + [anon_sym_STAR] = ACTIONS(1326), + [anon_sym_static] = ACTIONS(1328), + [anon_sym_auto] = ACTIONS(1328), + [anon_sym_register] = ACTIONS(1328), + [anon_sym_inline] = ACTIONS(1328), + [anon_sym_const] = ACTIONS(1328), + [anon_sym_restrict] = ACTIONS(1328), + [anon_sym_volatile] = ACTIONS(1328), + [anon_sym__Atomic] = ACTIONS(1328), + [anon_sym_unsigned] = ACTIONS(1328), + [anon_sym_long] = ACTIONS(1328), + [anon_sym_short] = ACTIONS(1328), + [sym_primitive_type] = ACTIONS(1328), + [anon_sym_enum] = ACTIONS(1328), + [anon_sym_struct] = ACTIONS(1328), + [anon_sym_union] = ACTIONS(1328), + [anon_sym_if] = ACTIONS(1328), + [anon_sym_else] = ACTIONS(1328), + [anon_sym_switch] = ACTIONS(1328), + [anon_sym_case] = ACTIONS(1328), + [anon_sym_default] = ACTIONS(1328), + [anon_sym_while] = ACTIONS(1328), + [anon_sym_do] = ACTIONS(1328), + [anon_sym_for] = ACTIONS(1328), + [anon_sym_return] = ACTIONS(1328), + [anon_sym_break] = ACTIONS(1328), + [anon_sym_continue] = ACTIONS(1328), + [anon_sym_goto] = ACTIONS(1328), + [anon_sym_AMP] = ACTIONS(1326), + [anon_sym_BANG] = ACTIONS(1326), + [anon_sym_TILDE] = ACTIONS(1326), + [anon_sym_PLUS] = ACTIONS(1328), + [anon_sym_DASH] = ACTIONS(1328), + [anon_sym_DASH_DASH] = ACTIONS(1326), + [anon_sym_PLUS_PLUS] = ACTIONS(1326), + [anon_sym_sizeof] = ACTIONS(1328), + [sym_number_literal] = ACTIONS(1326), + [anon_sym_SQUOTE] = ACTIONS(1326), + [anon_sym_DQUOTE] = ACTIONS(1326), + [sym_true] = ACTIONS(1328), + [sym_false] = ACTIONS(1328), + [sym_null] = ACTIONS(1328), + [sym_identifier] = ACTIONS(1328), [sym_comment] = ACTIONS(39), }, [802] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1341), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1341), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1341), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1341), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1341), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1341), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1341), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1341), - [sym_preproc_directive] = ACTIONS(1341), - [anon_sym_typedef] = ACTIONS(1341), - [anon_sym_extern] = ACTIONS(1341), - [anon_sym_static] = ACTIONS(1341), - [anon_sym_auto] = ACTIONS(1341), - [anon_sym_register] = ACTIONS(1341), - [anon_sym_inline] = ACTIONS(1341), - [anon_sym_const] = ACTIONS(1341), - [anon_sym_restrict] = ACTIONS(1341), - [anon_sym_volatile] = ACTIONS(1341), - [anon_sym__Atomic] = ACTIONS(1341), - [anon_sym_unsigned] = ACTIONS(1341), - [anon_sym_long] = ACTIONS(1341), - [anon_sym_short] = ACTIONS(1341), - [sym_primitive_type] = ACTIONS(1341), - [anon_sym_enum] = ACTIONS(1341), - [anon_sym_struct] = ACTIONS(1341), - [anon_sym_union] = ACTIONS(1341), - [sym_identifier] = ACTIONS(1341), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1332), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1332), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1332), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1332), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1332), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1332), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1332), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1332), + [sym_preproc_directive] = ACTIONS(1332), + [anon_sym_typedef] = ACTIONS(1332), + [anon_sym_extern] = ACTIONS(1332), + [anon_sym_static] = ACTIONS(1332), + [anon_sym_auto] = ACTIONS(1332), + [anon_sym_register] = ACTIONS(1332), + [anon_sym_inline] = ACTIONS(1332), + [anon_sym_const] = ACTIONS(1332), + [anon_sym_restrict] = ACTIONS(1332), + [anon_sym_volatile] = ACTIONS(1332), + [anon_sym__Atomic] = ACTIONS(1332), + [anon_sym_unsigned] = ACTIONS(1332), + [anon_sym_long] = ACTIONS(1332), + [anon_sym_short] = ACTIONS(1332), + [sym_primitive_type] = ACTIONS(1332), + [anon_sym_enum] = ACTIONS(1332), + [anon_sym_struct] = ACTIONS(1332), + [anon_sym_union] = ACTIONS(1332), + [sym_identifier] = ACTIONS(1332), [sym_comment] = ACTIONS(39), }, [803] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1784), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1784), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1784), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1784), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1784), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1784), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1784), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1784), - [sym_preproc_directive] = ACTIONS(1784), - [anon_sym_SEMI] = ACTIONS(1782), - [anon_sym_typedef] = ACTIONS(1784), - [anon_sym_extern] = ACTIONS(1784), - [anon_sym_LBRACE] = ACTIONS(1782), - [anon_sym_LPAREN2] = ACTIONS(1782), - [anon_sym_STAR] = ACTIONS(1782), - [anon_sym_static] = ACTIONS(1784), - [anon_sym_auto] = ACTIONS(1784), - [anon_sym_register] = ACTIONS(1784), - [anon_sym_inline] = ACTIONS(1784), - [anon_sym_const] = ACTIONS(1784), - [anon_sym_restrict] = ACTIONS(1784), - [anon_sym_volatile] = ACTIONS(1784), - [anon_sym__Atomic] = ACTIONS(1784), - [anon_sym_unsigned] = ACTIONS(1784), - [anon_sym_long] = ACTIONS(1784), - [anon_sym_short] = ACTIONS(1784), - [sym_primitive_type] = ACTIONS(1784), - [anon_sym_enum] = ACTIONS(1784), - [anon_sym_struct] = ACTIONS(1784), - [anon_sym_union] = ACTIONS(1784), - [anon_sym_if] = ACTIONS(1784), - [anon_sym_else] = ACTIONS(1784), - [anon_sym_switch] = ACTIONS(1784), - [anon_sym_case] = ACTIONS(1784), - [anon_sym_default] = ACTIONS(1784), - [anon_sym_while] = ACTIONS(1784), - [anon_sym_do] = ACTIONS(1784), - [anon_sym_for] = ACTIONS(1784), - [anon_sym_return] = ACTIONS(1784), - [anon_sym_break] = ACTIONS(1784), - [anon_sym_continue] = ACTIONS(1784), - [anon_sym_goto] = ACTIONS(1784), - [anon_sym_AMP] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(1782), - [anon_sym_TILDE] = ACTIONS(1782), - [anon_sym_PLUS] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1784), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_sizeof] = ACTIONS(1784), - [sym_number_literal] = ACTIONS(1782), - [anon_sym_SQUOTE] = ACTIONS(1782), - [anon_sym_DQUOTE] = ACTIONS(1782), - [sym_true] = ACTIONS(1784), - [sym_false] = ACTIONS(1784), - [sym_null] = ACTIONS(1784), - [sym_identifier] = ACTIONS(1784), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1773), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1773), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1773), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1773), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1773), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1773), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1773), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1773), + [sym_preproc_directive] = ACTIONS(1773), + [anon_sym_SEMI] = ACTIONS(1771), + [anon_sym_typedef] = ACTIONS(1773), + [anon_sym_extern] = ACTIONS(1773), + [anon_sym_LBRACE] = ACTIONS(1771), + [anon_sym_LPAREN2] = ACTIONS(1771), + [anon_sym_STAR] = ACTIONS(1771), + [anon_sym_static] = ACTIONS(1773), + [anon_sym_auto] = ACTIONS(1773), + [anon_sym_register] = ACTIONS(1773), + [anon_sym_inline] = ACTIONS(1773), + [anon_sym_const] = ACTIONS(1773), + [anon_sym_restrict] = ACTIONS(1773), + [anon_sym_volatile] = ACTIONS(1773), + [anon_sym__Atomic] = ACTIONS(1773), + [anon_sym_unsigned] = ACTIONS(1773), + [anon_sym_long] = ACTIONS(1773), + [anon_sym_short] = ACTIONS(1773), + [sym_primitive_type] = ACTIONS(1773), + [anon_sym_enum] = ACTIONS(1773), + [anon_sym_struct] = ACTIONS(1773), + [anon_sym_union] = ACTIONS(1773), + [anon_sym_if] = ACTIONS(1773), + [anon_sym_else] = ACTIONS(1773), + [anon_sym_switch] = ACTIONS(1773), + [anon_sym_case] = ACTIONS(1773), + [anon_sym_default] = ACTIONS(1773), + [anon_sym_while] = ACTIONS(1773), + [anon_sym_do] = ACTIONS(1773), + [anon_sym_for] = ACTIONS(1773), + [anon_sym_return] = ACTIONS(1773), + [anon_sym_break] = ACTIONS(1773), + [anon_sym_continue] = ACTIONS(1773), + [anon_sym_goto] = ACTIONS(1773), + [anon_sym_AMP] = ACTIONS(1771), + [anon_sym_BANG] = ACTIONS(1771), + [anon_sym_TILDE] = ACTIONS(1771), + [anon_sym_PLUS] = ACTIONS(1773), + [anon_sym_DASH] = ACTIONS(1773), + [anon_sym_DASH_DASH] = ACTIONS(1771), + [anon_sym_PLUS_PLUS] = ACTIONS(1771), + [anon_sym_sizeof] = ACTIONS(1773), + [sym_number_literal] = ACTIONS(1771), + [anon_sym_SQUOTE] = ACTIONS(1771), + [anon_sym_DQUOTE] = ACTIONS(1771), + [sym_true] = ACTIONS(1773), + [sym_false] = ACTIONS(1773), + [sym_null] = ACTIONS(1773), + [sym_identifier] = ACTIONS(1773), [sym_comment] = ACTIONS(39), }, [804] = { - [anon_sym_RPAREN] = ACTIONS(2637), - [anon_sym_SEMI] = ACTIONS(2637), - [anon_sym_LPAREN2] = ACTIONS(2637), - [anon_sym_LBRACK] = ACTIONS(2637), + [anon_sym_RPAREN] = ACTIONS(2626), + [anon_sym_SEMI] = ACTIONS(2626), + [anon_sym_LPAREN2] = ACTIONS(2626), + [anon_sym_LBRACK] = ACTIONS(2626), [sym_comment] = ACTIONS(39), }, [805] = { @@ -30955,533 +30974,533 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(921), [sym_concatenated_string] = STATE(921), [sym_string_literal] = STATE(346), - [anon_sym_LBRACE] = ACTIONS(632), - [anon_sym_LPAREN2] = ACTIONS(807), - [anon_sym_STAR] = ACTIONS(809), - [anon_sym_AMP] = ACTIONS(809), - [anon_sym_BANG] = ACTIONS(811), - [anon_sym_TILDE] = ACTIONS(813), - [anon_sym_PLUS] = ACTIONS(815), - [anon_sym_DASH] = ACTIONS(815), - [anon_sym_DASH_DASH] = ACTIONS(817), - [anon_sym_PLUS_PLUS] = ACTIONS(817), - [anon_sym_sizeof] = ACTIONS(819), - [sym_number_literal] = ACTIONS(2392), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2394), - [sym_false] = ACTIONS(2394), - [sym_null] = ACTIONS(2394), - [sym_identifier] = ACTIONS(2394), + [anon_sym_LBRACE] = ACTIONS(628), + [anon_sym_LPAREN2] = ACTIONS(798), + [anon_sym_STAR] = ACTIONS(800), + [anon_sym_AMP] = ACTIONS(800), + [anon_sym_BANG] = ACTIONS(802), + [anon_sym_TILDE] = ACTIONS(804), + [anon_sym_PLUS] = ACTIONS(806), + [anon_sym_DASH] = ACTIONS(806), + [anon_sym_DASH_DASH] = ACTIONS(808), + [anon_sym_PLUS_PLUS] = ACTIONS(808), + [anon_sym_sizeof] = ACTIONS(810), + [sym_number_literal] = ACTIONS(2381), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(2383), + [sym_false] = ACTIONS(2383), + [sym_null] = ACTIONS(2383), + [sym_identifier] = ACTIONS(2383), [sym_comment] = ACTIONS(39), }, [806] = { - [anon_sym_RPAREN] = ACTIONS(2639), + [anon_sym_RPAREN] = ACTIONS(2628), [sym_comment] = ACTIONS(39), }, [807] = { [sym_argument_list] = STATE(465), - [anon_sym_COMMA] = ACTIONS(2540), - [anon_sym_RBRACE] = ACTIONS(2540), - [anon_sym_LPAREN2] = ACTIONS(1096), - [anon_sym_STAR] = ACTIONS(1351), - [anon_sym_LBRACK] = ACTIONS(1100), - [anon_sym_EQ] = ACTIONS(1353), - [anon_sym_QMARK] = ACTIONS(2540), - [anon_sym_STAR_EQ] = ACTIONS(1357), - [anon_sym_SLASH_EQ] = ACTIONS(1357), - [anon_sym_PERCENT_EQ] = ACTIONS(1357), - [anon_sym_PLUS_EQ] = ACTIONS(1357), - [anon_sym_DASH_EQ] = ACTIONS(1357), - [anon_sym_LT_LT_EQ] = ACTIONS(1357), - [anon_sym_GT_GT_EQ] = ACTIONS(1357), - [anon_sym_AMP_EQ] = ACTIONS(1357), - [anon_sym_CARET_EQ] = ACTIONS(1357), - [anon_sym_PIPE_EQ] = ACTIONS(1357), - [anon_sym_AMP] = ACTIONS(1359), - [anon_sym_PIPE_PIPE] = ACTIONS(1361), - [anon_sym_AMP_AMP] = ACTIONS(1363), - [anon_sym_PIPE] = ACTIONS(1365), - [anon_sym_CARET] = ACTIONS(1367), - [anon_sym_EQ_EQ] = ACTIONS(1369), - [anon_sym_BANG_EQ] = ACTIONS(1369), - [anon_sym_LT] = ACTIONS(1371), - [anon_sym_GT] = ACTIONS(1371), - [anon_sym_LT_EQ] = ACTIONS(1373), - [anon_sym_GT_EQ] = ACTIONS(1373), - [anon_sym_LT_LT] = ACTIONS(1375), - [anon_sym_GT_GT] = ACTIONS(1375), - [anon_sym_PLUS] = ACTIONS(1377), - [anon_sym_DASH] = ACTIONS(1377), - [anon_sym_SLASH] = ACTIONS(1351), - [anon_sym_PERCENT] = ACTIONS(1351), - [anon_sym_DASH_DASH] = ACTIONS(1128), - [anon_sym_PLUS_PLUS] = ACTIONS(1128), - [anon_sym_DOT] = ACTIONS(1130), - [anon_sym_DASH_GT] = ACTIONS(1130), + [anon_sym_COMMA] = ACTIONS(2529), + [anon_sym_RBRACE] = ACTIONS(2529), + [anon_sym_LPAREN2] = ACTIONS(1089), + [anon_sym_STAR] = ACTIONS(1342), + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(1344), + [anon_sym_QMARK] = ACTIONS(2529), + [anon_sym_STAR_EQ] = ACTIONS(1348), + [anon_sym_SLASH_EQ] = ACTIONS(1348), + [anon_sym_PERCENT_EQ] = ACTIONS(1348), + [anon_sym_PLUS_EQ] = ACTIONS(1348), + [anon_sym_DASH_EQ] = ACTIONS(1348), + [anon_sym_LT_LT_EQ] = ACTIONS(1348), + [anon_sym_GT_GT_EQ] = ACTIONS(1348), + [anon_sym_AMP_EQ] = ACTIONS(1348), + [anon_sym_CARET_EQ] = ACTIONS(1348), + [anon_sym_PIPE_EQ] = ACTIONS(1348), + [anon_sym_AMP] = ACTIONS(1350), + [anon_sym_PIPE_PIPE] = ACTIONS(1352), + [anon_sym_AMP_AMP] = ACTIONS(1354), + [anon_sym_PIPE] = ACTIONS(1356), + [anon_sym_CARET] = ACTIONS(1358), + [anon_sym_EQ_EQ] = ACTIONS(1360), + [anon_sym_BANG_EQ] = ACTIONS(1360), + [anon_sym_LT] = ACTIONS(1362), + [anon_sym_GT] = ACTIONS(1362), + [anon_sym_LT_EQ] = ACTIONS(1364), + [anon_sym_GT_EQ] = ACTIONS(1364), + [anon_sym_LT_LT] = ACTIONS(1366), + [anon_sym_GT_GT] = ACTIONS(1366), + [anon_sym_PLUS] = ACTIONS(1368), + [anon_sym_DASH] = ACTIONS(1368), + [anon_sym_SLASH] = ACTIONS(1342), + [anon_sym_PERCENT] = ACTIONS(1342), + [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_PLUS_PLUS] = ACTIONS(1121), + [anon_sym_DOT] = ACTIONS(1123), + [anon_sym_DASH_GT] = ACTIONS(1123), [sym_comment] = ACTIONS(39), }, [808] = { [sym_argument_list] = STATE(465), - [anon_sym_LPAREN2] = ACTIONS(1096), - [anon_sym_STAR] = ACTIONS(1620), - [anon_sym_LBRACK] = ACTIONS(1100), - [anon_sym_EQ] = ACTIONS(1622), - [anon_sym_COLON] = ACTIONS(2641), - [anon_sym_QMARK] = ACTIONS(1626), - [anon_sym_STAR_EQ] = ACTIONS(1628), - [anon_sym_SLASH_EQ] = ACTIONS(1628), - [anon_sym_PERCENT_EQ] = ACTIONS(1628), - [anon_sym_PLUS_EQ] = ACTIONS(1628), - [anon_sym_DASH_EQ] = ACTIONS(1628), - [anon_sym_LT_LT_EQ] = ACTIONS(1628), - [anon_sym_GT_GT_EQ] = ACTIONS(1628), - [anon_sym_AMP_EQ] = ACTIONS(1628), - [anon_sym_CARET_EQ] = ACTIONS(1628), - [anon_sym_PIPE_EQ] = ACTIONS(1628), - [anon_sym_AMP] = ACTIONS(1630), - [anon_sym_PIPE_PIPE] = ACTIONS(1632), - [anon_sym_AMP_AMP] = ACTIONS(1634), - [anon_sym_PIPE] = ACTIONS(1636), - [anon_sym_CARET] = ACTIONS(1638), - [anon_sym_EQ_EQ] = ACTIONS(1640), - [anon_sym_BANG_EQ] = ACTIONS(1640), - [anon_sym_LT] = ACTIONS(1642), - [anon_sym_GT] = ACTIONS(1642), - [anon_sym_LT_EQ] = ACTIONS(1644), - [anon_sym_GT_EQ] = ACTIONS(1644), - [anon_sym_LT_LT] = ACTIONS(1646), - [anon_sym_GT_GT] = ACTIONS(1646), - [anon_sym_PLUS] = ACTIONS(1648), - [anon_sym_DASH] = ACTIONS(1648), - [anon_sym_SLASH] = ACTIONS(1620), - [anon_sym_PERCENT] = ACTIONS(1620), - [anon_sym_DASH_DASH] = ACTIONS(1128), - [anon_sym_PLUS_PLUS] = ACTIONS(1128), - [anon_sym_DOT] = ACTIONS(1130), - [anon_sym_DASH_GT] = ACTIONS(1130), + [anon_sym_LPAREN2] = ACTIONS(1089), + [anon_sym_STAR] = ACTIONS(1609), + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(1611), + [anon_sym_COLON] = ACTIONS(2630), + [anon_sym_QMARK] = ACTIONS(1615), + [anon_sym_STAR_EQ] = ACTIONS(1617), + [anon_sym_SLASH_EQ] = ACTIONS(1617), + [anon_sym_PERCENT_EQ] = ACTIONS(1617), + [anon_sym_PLUS_EQ] = ACTIONS(1617), + [anon_sym_DASH_EQ] = ACTIONS(1617), + [anon_sym_LT_LT_EQ] = ACTIONS(1617), + [anon_sym_GT_GT_EQ] = ACTIONS(1617), + [anon_sym_AMP_EQ] = ACTIONS(1617), + [anon_sym_CARET_EQ] = ACTIONS(1617), + [anon_sym_PIPE_EQ] = ACTIONS(1617), + [anon_sym_AMP] = ACTIONS(1619), + [anon_sym_PIPE_PIPE] = ACTIONS(1621), + [anon_sym_AMP_AMP] = ACTIONS(1623), + [anon_sym_PIPE] = ACTIONS(1625), + [anon_sym_CARET] = ACTIONS(1627), + [anon_sym_EQ_EQ] = ACTIONS(1629), + [anon_sym_BANG_EQ] = ACTIONS(1629), + [anon_sym_LT] = ACTIONS(1631), + [anon_sym_GT] = ACTIONS(1631), + [anon_sym_LT_EQ] = ACTIONS(1633), + [anon_sym_GT_EQ] = ACTIONS(1633), + [anon_sym_LT_LT] = ACTIONS(1635), + [anon_sym_GT_GT] = ACTIONS(1635), + [anon_sym_PLUS] = ACTIONS(1637), + [anon_sym_DASH] = ACTIONS(1637), + [anon_sym_SLASH] = ACTIONS(1609), + [anon_sym_PERCENT] = ACTIONS(1609), + [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_PLUS_PLUS] = ACTIONS(1121), + [anon_sym_DOT] = ACTIONS(1123), + [anon_sym_DASH_GT] = ACTIONS(1123), [sym_comment] = ACTIONS(39), }, [809] = { [sym_argument_list] = STATE(465), - [anon_sym_COMMA] = ACTIONS(2544), - [anon_sym_RBRACE] = ACTIONS(2544), - [anon_sym_LPAREN2] = ACTIONS(1096), - [anon_sym_STAR] = ACTIONS(1351), - [anon_sym_LBRACK] = ACTIONS(1100), - [anon_sym_EQ] = ACTIONS(2546), - [anon_sym_QMARK] = ACTIONS(2544), - [anon_sym_STAR_EQ] = ACTIONS(2544), - [anon_sym_SLASH_EQ] = ACTIONS(2544), - [anon_sym_PERCENT_EQ] = ACTIONS(2544), - [anon_sym_PLUS_EQ] = ACTIONS(2544), - [anon_sym_DASH_EQ] = ACTIONS(2544), - [anon_sym_LT_LT_EQ] = ACTIONS(2544), - [anon_sym_GT_GT_EQ] = ACTIONS(2544), - [anon_sym_AMP_EQ] = ACTIONS(2544), - [anon_sym_CARET_EQ] = ACTIONS(2544), - [anon_sym_PIPE_EQ] = ACTIONS(2544), - [anon_sym_AMP] = ACTIONS(2546), - [anon_sym_PIPE_PIPE] = ACTIONS(2544), - [anon_sym_AMP_AMP] = ACTIONS(2544), - [anon_sym_PIPE] = ACTIONS(2546), - [anon_sym_CARET] = ACTIONS(2546), - [anon_sym_EQ_EQ] = ACTIONS(1369), - [anon_sym_BANG_EQ] = ACTIONS(1369), - [anon_sym_LT] = ACTIONS(1371), - [anon_sym_GT] = ACTIONS(1371), - [anon_sym_LT_EQ] = ACTIONS(1373), - [anon_sym_GT_EQ] = ACTIONS(1373), - [anon_sym_LT_LT] = ACTIONS(1375), - [anon_sym_GT_GT] = ACTIONS(1375), - [anon_sym_PLUS] = ACTIONS(1377), - [anon_sym_DASH] = ACTIONS(1377), - [anon_sym_SLASH] = ACTIONS(1351), - [anon_sym_PERCENT] = ACTIONS(1351), - [anon_sym_DASH_DASH] = ACTIONS(1128), - [anon_sym_PLUS_PLUS] = ACTIONS(1128), - [anon_sym_DOT] = ACTIONS(1130), - [anon_sym_DASH_GT] = ACTIONS(1130), + [anon_sym_COMMA] = ACTIONS(2533), + [anon_sym_RBRACE] = ACTIONS(2533), + [anon_sym_LPAREN2] = ACTIONS(1089), + [anon_sym_STAR] = ACTIONS(1342), + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(2535), + [anon_sym_QMARK] = ACTIONS(2533), + [anon_sym_STAR_EQ] = ACTIONS(2533), + [anon_sym_SLASH_EQ] = ACTIONS(2533), + [anon_sym_PERCENT_EQ] = ACTIONS(2533), + [anon_sym_PLUS_EQ] = ACTIONS(2533), + [anon_sym_DASH_EQ] = ACTIONS(2533), + [anon_sym_LT_LT_EQ] = ACTIONS(2533), + [anon_sym_GT_GT_EQ] = ACTIONS(2533), + [anon_sym_AMP_EQ] = ACTIONS(2533), + [anon_sym_CARET_EQ] = ACTIONS(2533), + [anon_sym_PIPE_EQ] = ACTIONS(2533), + [anon_sym_AMP] = ACTIONS(2535), + [anon_sym_PIPE_PIPE] = ACTIONS(2533), + [anon_sym_AMP_AMP] = ACTIONS(2533), + [anon_sym_PIPE] = ACTIONS(2535), + [anon_sym_CARET] = ACTIONS(2535), + [anon_sym_EQ_EQ] = ACTIONS(1360), + [anon_sym_BANG_EQ] = ACTIONS(1360), + [anon_sym_LT] = ACTIONS(1362), + [anon_sym_GT] = ACTIONS(1362), + [anon_sym_LT_EQ] = ACTIONS(1364), + [anon_sym_GT_EQ] = ACTIONS(1364), + [anon_sym_LT_LT] = ACTIONS(1366), + [anon_sym_GT_GT] = ACTIONS(1366), + [anon_sym_PLUS] = ACTIONS(1368), + [anon_sym_DASH] = ACTIONS(1368), + [anon_sym_SLASH] = ACTIONS(1342), + [anon_sym_PERCENT] = ACTIONS(1342), + [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_PLUS_PLUS] = ACTIONS(1121), + [anon_sym_DOT] = ACTIONS(1123), + [anon_sym_DASH_GT] = ACTIONS(1123), [sym_comment] = ACTIONS(39), }, [810] = { [sym_argument_list] = STATE(465), - [anon_sym_COMMA] = ACTIONS(2548), - [anon_sym_RBRACE] = ACTIONS(2548), - [anon_sym_LPAREN2] = ACTIONS(1096), - [anon_sym_STAR] = ACTIONS(1351), - [anon_sym_LBRACK] = ACTIONS(1100), - [anon_sym_EQ] = ACTIONS(2550), - [anon_sym_QMARK] = ACTIONS(2548), - [anon_sym_STAR_EQ] = ACTIONS(2548), - [anon_sym_SLASH_EQ] = ACTIONS(2548), - [anon_sym_PERCENT_EQ] = ACTIONS(2548), - [anon_sym_PLUS_EQ] = ACTIONS(2548), - [anon_sym_DASH_EQ] = ACTIONS(2548), - [anon_sym_LT_LT_EQ] = ACTIONS(2548), - [anon_sym_GT_GT_EQ] = ACTIONS(2548), - [anon_sym_AMP_EQ] = ACTIONS(2548), - [anon_sym_CARET_EQ] = ACTIONS(2548), - [anon_sym_PIPE_EQ] = ACTIONS(2548), - [anon_sym_AMP] = ACTIONS(1359), - [anon_sym_PIPE_PIPE] = ACTIONS(2548), - [anon_sym_AMP_AMP] = ACTIONS(1363), - [anon_sym_PIPE] = ACTIONS(1365), - [anon_sym_CARET] = ACTIONS(1367), - [anon_sym_EQ_EQ] = ACTIONS(1369), - [anon_sym_BANG_EQ] = ACTIONS(1369), - [anon_sym_LT] = ACTIONS(1371), - [anon_sym_GT] = ACTIONS(1371), - [anon_sym_LT_EQ] = ACTIONS(1373), - [anon_sym_GT_EQ] = ACTIONS(1373), - [anon_sym_LT_LT] = ACTIONS(1375), - [anon_sym_GT_GT] = ACTIONS(1375), - [anon_sym_PLUS] = ACTIONS(1377), - [anon_sym_DASH] = ACTIONS(1377), - [anon_sym_SLASH] = ACTIONS(1351), - [anon_sym_PERCENT] = ACTIONS(1351), - [anon_sym_DASH_DASH] = ACTIONS(1128), - [anon_sym_PLUS_PLUS] = ACTIONS(1128), - [anon_sym_DOT] = ACTIONS(1130), - [anon_sym_DASH_GT] = ACTIONS(1130), + [anon_sym_COMMA] = ACTIONS(2537), + [anon_sym_RBRACE] = ACTIONS(2537), + [anon_sym_LPAREN2] = ACTIONS(1089), + [anon_sym_STAR] = ACTIONS(1342), + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(2539), + [anon_sym_QMARK] = ACTIONS(2537), + [anon_sym_STAR_EQ] = ACTIONS(2537), + [anon_sym_SLASH_EQ] = ACTIONS(2537), + [anon_sym_PERCENT_EQ] = ACTIONS(2537), + [anon_sym_PLUS_EQ] = ACTIONS(2537), + [anon_sym_DASH_EQ] = ACTIONS(2537), + [anon_sym_LT_LT_EQ] = ACTIONS(2537), + [anon_sym_GT_GT_EQ] = ACTIONS(2537), + [anon_sym_AMP_EQ] = ACTIONS(2537), + [anon_sym_CARET_EQ] = ACTIONS(2537), + [anon_sym_PIPE_EQ] = ACTIONS(2537), + [anon_sym_AMP] = ACTIONS(1350), + [anon_sym_PIPE_PIPE] = ACTIONS(2537), + [anon_sym_AMP_AMP] = ACTIONS(1354), + [anon_sym_PIPE] = ACTIONS(1356), + [anon_sym_CARET] = ACTIONS(1358), + [anon_sym_EQ_EQ] = ACTIONS(1360), + [anon_sym_BANG_EQ] = ACTIONS(1360), + [anon_sym_LT] = ACTIONS(1362), + [anon_sym_GT] = ACTIONS(1362), + [anon_sym_LT_EQ] = ACTIONS(1364), + [anon_sym_GT_EQ] = ACTIONS(1364), + [anon_sym_LT_LT] = ACTIONS(1366), + [anon_sym_GT_GT] = ACTIONS(1366), + [anon_sym_PLUS] = ACTIONS(1368), + [anon_sym_DASH] = ACTIONS(1368), + [anon_sym_SLASH] = ACTIONS(1342), + [anon_sym_PERCENT] = ACTIONS(1342), + [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_PLUS_PLUS] = ACTIONS(1121), + [anon_sym_DOT] = ACTIONS(1123), + [anon_sym_DASH_GT] = ACTIONS(1123), [sym_comment] = ACTIONS(39), }, [811] = { [sym_argument_list] = STATE(465), - [anon_sym_COMMA] = ACTIONS(2548), - [anon_sym_RBRACE] = ACTIONS(2548), - [anon_sym_LPAREN2] = ACTIONS(1096), - [anon_sym_STAR] = ACTIONS(1351), - [anon_sym_LBRACK] = ACTIONS(1100), - [anon_sym_EQ] = ACTIONS(2550), - [anon_sym_QMARK] = ACTIONS(2548), - [anon_sym_STAR_EQ] = ACTIONS(2548), - [anon_sym_SLASH_EQ] = ACTIONS(2548), - [anon_sym_PERCENT_EQ] = ACTIONS(2548), - [anon_sym_PLUS_EQ] = ACTIONS(2548), - [anon_sym_DASH_EQ] = ACTIONS(2548), - [anon_sym_LT_LT_EQ] = ACTIONS(2548), - [anon_sym_GT_GT_EQ] = ACTIONS(2548), - [anon_sym_AMP_EQ] = ACTIONS(2548), - [anon_sym_CARET_EQ] = ACTIONS(2548), - [anon_sym_PIPE_EQ] = ACTIONS(2548), - [anon_sym_AMP] = ACTIONS(1359), - [anon_sym_PIPE_PIPE] = ACTIONS(2548), - [anon_sym_AMP_AMP] = ACTIONS(2548), - [anon_sym_PIPE] = ACTIONS(1365), - [anon_sym_CARET] = ACTIONS(1367), - [anon_sym_EQ_EQ] = ACTIONS(1369), - [anon_sym_BANG_EQ] = ACTIONS(1369), - [anon_sym_LT] = ACTIONS(1371), - [anon_sym_GT] = ACTIONS(1371), - [anon_sym_LT_EQ] = ACTIONS(1373), - [anon_sym_GT_EQ] = ACTIONS(1373), - [anon_sym_LT_LT] = ACTIONS(1375), - [anon_sym_GT_GT] = ACTIONS(1375), - [anon_sym_PLUS] = ACTIONS(1377), - [anon_sym_DASH] = ACTIONS(1377), - [anon_sym_SLASH] = ACTIONS(1351), - [anon_sym_PERCENT] = ACTIONS(1351), - [anon_sym_DASH_DASH] = ACTIONS(1128), - [anon_sym_PLUS_PLUS] = ACTIONS(1128), - [anon_sym_DOT] = ACTIONS(1130), - [anon_sym_DASH_GT] = ACTIONS(1130), + [anon_sym_COMMA] = ACTIONS(2537), + [anon_sym_RBRACE] = ACTIONS(2537), + [anon_sym_LPAREN2] = ACTIONS(1089), + [anon_sym_STAR] = ACTIONS(1342), + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(2539), + [anon_sym_QMARK] = ACTIONS(2537), + [anon_sym_STAR_EQ] = ACTIONS(2537), + [anon_sym_SLASH_EQ] = ACTIONS(2537), + [anon_sym_PERCENT_EQ] = ACTIONS(2537), + [anon_sym_PLUS_EQ] = ACTIONS(2537), + [anon_sym_DASH_EQ] = ACTIONS(2537), + [anon_sym_LT_LT_EQ] = ACTIONS(2537), + [anon_sym_GT_GT_EQ] = ACTIONS(2537), + [anon_sym_AMP_EQ] = ACTIONS(2537), + [anon_sym_CARET_EQ] = ACTIONS(2537), + [anon_sym_PIPE_EQ] = ACTIONS(2537), + [anon_sym_AMP] = ACTIONS(1350), + [anon_sym_PIPE_PIPE] = ACTIONS(2537), + [anon_sym_AMP_AMP] = ACTIONS(2537), + [anon_sym_PIPE] = ACTIONS(1356), + [anon_sym_CARET] = ACTIONS(1358), + [anon_sym_EQ_EQ] = ACTIONS(1360), + [anon_sym_BANG_EQ] = ACTIONS(1360), + [anon_sym_LT] = ACTIONS(1362), + [anon_sym_GT] = ACTIONS(1362), + [anon_sym_LT_EQ] = ACTIONS(1364), + [anon_sym_GT_EQ] = ACTIONS(1364), + [anon_sym_LT_LT] = ACTIONS(1366), + [anon_sym_GT_GT] = ACTIONS(1366), + [anon_sym_PLUS] = ACTIONS(1368), + [anon_sym_DASH] = ACTIONS(1368), + [anon_sym_SLASH] = ACTIONS(1342), + [anon_sym_PERCENT] = ACTIONS(1342), + [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_PLUS_PLUS] = ACTIONS(1121), + [anon_sym_DOT] = ACTIONS(1123), + [anon_sym_DASH_GT] = ACTIONS(1123), [sym_comment] = ACTIONS(39), }, [812] = { [sym_argument_list] = STATE(465), - [anon_sym_COMMA] = ACTIONS(2544), - [anon_sym_RBRACE] = ACTIONS(2544), - [anon_sym_LPAREN2] = ACTIONS(1096), - [anon_sym_STAR] = ACTIONS(1351), - [anon_sym_LBRACK] = ACTIONS(1100), - [anon_sym_EQ] = ACTIONS(2546), - [anon_sym_QMARK] = ACTIONS(2544), - [anon_sym_STAR_EQ] = ACTIONS(2544), - [anon_sym_SLASH_EQ] = ACTIONS(2544), - [anon_sym_PERCENT_EQ] = ACTIONS(2544), - [anon_sym_PLUS_EQ] = ACTIONS(2544), - [anon_sym_DASH_EQ] = ACTIONS(2544), - [anon_sym_LT_LT_EQ] = ACTIONS(2544), - [anon_sym_GT_GT_EQ] = ACTIONS(2544), - [anon_sym_AMP_EQ] = ACTIONS(2544), - [anon_sym_CARET_EQ] = ACTIONS(2544), - [anon_sym_PIPE_EQ] = ACTIONS(2544), - [anon_sym_AMP] = ACTIONS(1359), - [anon_sym_PIPE_PIPE] = ACTIONS(2544), - [anon_sym_AMP_AMP] = ACTIONS(2544), - [anon_sym_PIPE] = ACTIONS(2546), - [anon_sym_CARET] = ACTIONS(1367), - [anon_sym_EQ_EQ] = ACTIONS(1369), - [anon_sym_BANG_EQ] = ACTIONS(1369), - [anon_sym_LT] = ACTIONS(1371), - [anon_sym_GT] = ACTIONS(1371), - [anon_sym_LT_EQ] = ACTIONS(1373), - [anon_sym_GT_EQ] = ACTIONS(1373), - [anon_sym_LT_LT] = ACTIONS(1375), - [anon_sym_GT_GT] = ACTIONS(1375), - [anon_sym_PLUS] = ACTIONS(1377), - [anon_sym_DASH] = ACTIONS(1377), - [anon_sym_SLASH] = ACTIONS(1351), - [anon_sym_PERCENT] = ACTIONS(1351), - [anon_sym_DASH_DASH] = ACTIONS(1128), - [anon_sym_PLUS_PLUS] = ACTIONS(1128), - [anon_sym_DOT] = ACTIONS(1130), - [anon_sym_DASH_GT] = ACTIONS(1130), + [anon_sym_COMMA] = ACTIONS(2533), + [anon_sym_RBRACE] = ACTIONS(2533), + [anon_sym_LPAREN2] = ACTIONS(1089), + [anon_sym_STAR] = ACTIONS(1342), + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(2535), + [anon_sym_QMARK] = ACTIONS(2533), + [anon_sym_STAR_EQ] = ACTIONS(2533), + [anon_sym_SLASH_EQ] = ACTIONS(2533), + [anon_sym_PERCENT_EQ] = ACTIONS(2533), + [anon_sym_PLUS_EQ] = ACTIONS(2533), + [anon_sym_DASH_EQ] = ACTIONS(2533), + [anon_sym_LT_LT_EQ] = ACTIONS(2533), + [anon_sym_GT_GT_EQ] = ACTIONS(2533), + [anon_sym_AMP_EQ] = ACTIONS(2533), + [anon_sym_CARET_EQ] = ACTIONS(2533), + [anon_sym_PIPE_EQ] = ACTIONS(2533), + [anon_sym_AMP] = ACTIONS(1350), + [anon_sym_PIPE_PIPE] = ACTIONS(2533), + [anon_sym_AMP_AMP] = ACTIONS(2533), + [anon_sym_PIPE] = ACTIONS(2535), + [anon_sym_CARET] = ACTIONS(1358), + [anon_sym_EQ_EQ] = ACTIONS(1360), + [anon_sym_BANG_EQ] = ACTIONS(1360), + [anon_sym_LT] = ACTIONS(1362), + [anon_sym_GT] = ACTIONS(1362), + [anon_sym_LT_EQ] = ACTIONS(1364), + [anon_sym_GT_EQ] = ACTIONS(1364), + [anon_sym_LT_LT] = ACTIONS(1366), + [anon_sym_GT_GT] = ACTIONS(1366), + [anon_sym_PLUS] = ACTIONS(1368), + [anon_sym_DASH] = ACTIONS(1368), + [anon_sym_SLASH] = ACTIONS(1342), + [anon_sym_PERCENT] = ACTIONS(1342), + [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_PLUS_PLUS] = ACTIONS(1121), + [anon_sym_DOT] = ACTIONS(1123), + [anon_sym_DASH_GT] = ACTIONS(1123), [sym_comment] = ACTIONS(39), }, [813] = { [sym_argument_list] = STATE(465), - [anon_sym_COMMA] = ACTIONS(2544), - [anon_sym_RBRACE] = ACTIONS(2544), - [anon_sym_LPAREN2] = ACTIONS(1096), - [anon_sym_STAR] = ACTIONS(1351), - [anon_sym_LBRACK] = ACTIONS(1100), - [anon_sym_EQ] = ACTIONS(2546), - [anon_sym_QMARK] = ACTIONS(2544), - [anon_sym_STAR_EQ] = ACTIONS(2544), - [anon_sym_SLASH_EQ] = ACTIONS(2544), - [anon_sym_PERCENT_EQ] = ACTIONS(2544), - [anon_sym_PLUS_EQ] = ACTIONS(2544), - [anon_sym_DASH_EQ] = ACTIONS(2544), - [anon_sym_LT_LT_EQ] = ACTIONS(2544), - [anon_sym_GT_GT_EQ] = ACTIONS(2544), - [anon_sym_AMP_EQ] = ACTIONS(2544), - [anon_sym_CARET_EQ] = ACTIONS(2544), - [anon_sym_PIPE_EQ] = ACTIONS(2544), - [anon_sym_AMP] = ACTIONS(1359), - [anon_sym_PIPE_PIPE] = ACTIONS(2544), - [anon_sym_AMP_AMP] = ACTIONS(2544), - [anon_sym_PIPE] = ACTIONS(2546), - [anon_sym_CARET] = ACTIONS(2546), - [anon_sym_EQ_EQ] = ACTIONS(1369), - [anon_sym_BANG_EQ] = ACTIONS(1369), - [anon_sym_LT] = ACTIONS(1371), - [anon_sym_GT] = ACTIONS(1371), - [anon_sym_LT_EQ] = ACTIONS(1373), - [anon_sym_GT_EQ] = ACTIONS(1373), - [anon_sym_LT_LT] = ACTIONS(1375), - [anon_sym_GT_GT] = ACTIONS(1375), - [anon_sym_PLUS] = ACTIONS(1377), - [anon_sym_DASH] = ACTIONS(1377), - [anon_sym_SLASH] = ACTIONS(1351), - [anon_sym_PERCENT] = ACTIONS(1351), - [anon_sym_DASH_DASH] = ACTIONS(1128), - [anon_sym_PLUS_PLUS] = ACTIONS(1128), - [anon_sym_DOT] = ACTIONS(1130), - [anon_sym_DASH_GT] = ACTIONS(1130), + [anon_sym_COMMA] = ACTIONS(2533), + [anon_sym_RBRACE] = ACTIONS(2533), + [anon_sym_LPAREN2] = ACTIONS(1089), + [anon_sym_STAR] = ACTIONS(1342), + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(2535), + [anon_sym_QMARK] = ACTIONS(2533), + [anon_sym_STAR_EQ] = ACTIONS(2533), + [anon_sym_SLASH_EQ] = ACTIONS(2533), + [anon_sym_PERCENT_EQ] = ACTIONS(2533), + [anon_sym_PLUS_EQ] = ACTIONS(2533), + [anon_sym_DASH_EQ] = ACTIONS(2533), + [anon_sym_LT_LT_EQ] = ACTIONS(2533), + [anon_sym_GT_GT_EQ] = ACTIONS(2533), + [anon_sym_AMP_EQ] = ACTIONS(2533), + [anon_sym_CARET_EQ] = ACTIONS(2533), + [anon_sym_PIPE_EQ] = ACTIONS(2533), + [anon_sym_AMP] = ACTIONS(1350), + [anon_sym_PIPE_PIPE] = ACTIONS(2533), + [anon_sym_AMP_AMP] = ACTIONS(2533), + [anon_sym_PIPE] = ACTIONS(2535), + [anon_sym_CARET] = ACTIONS(2535), + [anon_sym_EQ_EQ] = ACTIONS(1360), + [anon_sym_BANG_EQ] = ACTIONS(1360), + [anon_sym_LT] = ACTIONS(1362), + [anon_sym_GT] = ACTIONS(1362), + [anon_sym_LT_EQ] = ACTIONS(1364), + [anon_sym_GT_EQ] = ACTIONS(1364), + [anon_sym_LT_LT] = ACTIONS(1366), + [anon_sym_GT_GT] = ACTIONS(1366), + [anon_sym_PLUS] = ACTIONS(1368), + [anon_sym_DASH] = ACTIONS(1368), + [anon_sym_SLASH] = ACTIONS(1342), + [anon_sym_PERCENT] = ACTIONS(1342), + [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_PLUS_PLUS] = ACTIONS(1121), + [anon_sym_DOT] = ACTIONS(1123), + [anon_sym_DASH_GT] = ACTIONS(1123), [sym_comment] = ACTIONS(39), }, [814] = { [sym_argument_list] = STATE(465), - [anon_sym_COMMA] = ACTIONS(2552), - [anon_sym_RBRACE] = ACTIONS(2552), - [anon_sym_LPAREN2] = ACTIONS(1096), - [anon_sym_STAR] = ACTIONS(1351), - [anon_sym_LBRACK] = ACTIONS(1100), - [anon_sym_EQ] = ACTIONS(2554), - [anon_sym_QMARK] = ACTIONS(2552), - [anon_sym_STAR_EQ] = ACTIONS(2552), - [anon_sym_SLASH_EQ] = ACTIONS(2552), - [anon_sym_PERCENT_EQ] = ACTIONS(2552), - [anon_sym_PLUS_EQ] = ACTIONS(2552), - [anon_sym_DASH_EQ] = ACTIONS(2552), - [anon_sym_LT_LT_EQ] = ACTIONS(2552), - [anon_sym_GT_GT_EQ] = ACTIONS(2552), - [anon_sym_AMP_EQ] = ACTIONS(2552), - [anon_sym_CARET_EQ] = ACTIONS(2552), - [anon_sym_PIPE_EQ] = ACTIONS(2552), - [anon_sym_AMP] = ACTIONS(2554), - [anon_sym_PIPE_PIPE] = ACTIONS(2552), - [anon_sym_AMP_AMP] = ACTIONS(2552), - [anon_sym_PIPE] = ACTIONS(2554), - [anon_sym_CARET] = ACTIONS(2554), - [anon_sym_EQ_EQ] = ACTIONS(2552), - [anon_sym_BANG_EQ] = ACTIONS(2552), - [anon_sym_LT] = ACTIONS(1371), - [anon_sym_GT] = ACTIONS(1371), - [anon_sym_LT_EQ] = ACTIONS(1373), - [anon_sym_GT_EQ] = ACTIONS(1373), - [anon_sym_LT_LT] = ACTIONS(1375), - [anon_sym_GT_GT] = ACTIONS(1375), - [anon_sym_PLUS] = ACTIONS(1377), - [anon_sym_DASH] = ACTIONS(1377), - [anon_sym_SLASH] = ACTIONS(1351), - [anon_sym_PERCENT] = ACTIONS(1351), - [anon_sym_DASH_DASH] = ACTIONS(1128), - [anon_sym_PLUS_PLUS] = ACTIONS(1128), - [anon_sym_DOT] = ACTIONS(1130), - [anon_sym_DASH_GT] = ACTIONS(1130), + [anon_sym_COMMA] = ACTIONS(2541), + [anon_sym_RBRACE] = ACTIONS(2541), + [anon_sym_LPAREN2] = ACTIONS(1089), + [anon_sym_STAR] = ACTIONS(1342), + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(2543), + [anon_sym_QMARK] = ACTIONS(2541), + [anon_sym_STAR_EQ] = ACTIONS(2541), + [anon_sym_SLASH_EQ] = ACTIONS(2541), + [anon_sym_PERCENT_EQ] = ACTIONS(2541), + [anon_sym_PLUS_EQ] = ACTIONS(2541), + [anon_sym_DASH_EQ] = ACTIONS(2541), + [anon_sym_LT_LT_EQ] = ACTIONS(2541), + [anon_sym_GT_GT_EQ] = ACTIONS(2541), + [anon_sym_AMP_EQ] = ACTIONS(2541), + [anon_sym_CARET_EQ] = ACTIONS(2541), + [anon_sym_PIPE_EQ] = ACTIONS(2541), + [anon_sym_AMP] = ACTIONS(2543), + [anon_sym_PIPE_PIPE] = ACTIONS(2541), + [anon_sym_AMP_AMP] = ACTIONS(2541), + [anon_sym_PIPE] = ACTIONS(2543), + [anon_sym_CARET] = ACTIONS(2543), + [anon_sym_EQ_EQ] = ACTIONS(2541), + [anon_sym_BANG_EQ] = ACTIONS(2541), + [anon_sym_LT] = ACTIONS(1362), + [anon_sym_GT] = ACTIONS(1362), + [anon_sym_LT_EQ] = ACTIONS(1364), + [anon_sym_GT_EQ] = ACTIONS(1364), + [anon_sym_LT_LT] = ACTIONS(1366), + [anon_sym_GT_GT] = ACTIONS(1366), + [anon_sym_PLUS] = ACTIONS(1368), + [anon_sym_DASH] = ACTIONS(1368), + [anon_sym_SLASH] = ACTIONS(1342), + [anon_sym_PERCENT] = ACTIONS(1342), + [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_PLUS_PLUS] = ACTIONS(1121), + [anon_sym_DOT] = ACTIONS(1123), + [anon_sym_DASH_GT] = ACTIONS(1123), [sym_comment] = ACTIONS(39), }, [815] = { [sym_argument_list] = STATE(465), - [anon_sym_COMMA] = ACTIONS(2556), - [anon_sym_RBRACE] = ACTIONS(2556), - [anon_sym_LPAREN2] = ACTIONS(1096), - [anon_sym_STAR] = ACTIONS(1351), - [anon_sym_LBRACK] = ACTIONS(1100), - [anon_sym_EQ] = ACTIONS(2558), - [anon_sym_QMARK] = ACTIONS(2556), - [anon_sym_STAR_EQ] = ACTIONS(2556), - [anon_sym_SLASH_EQ] = ACTIONS(2556), - [anon_sym_PERCENT_EQ] = ACTIONS(2556), - [anon_sym_PLUS_EQ] = ACTIONS(2556), - [anon_sym_DASH_EQ] = ACTIONS(2556), - [anon_sym_LT_LT_EQ] = ACTIONS(2556), - [anon_sym_GT_GT_EQ] = ACTIONS(2556), - [anon_sym_AMP_EQ] = ACTIONS(2556), - [anon_sym_CARET_EQ] = ACTIONS(2556), - [anon_sym_PIPE_EQ] = ACTIONS(2556), - [anon_sym_AMP] = ACTIONS(2558), - [anon_sym_PIPE_PIPE] = ACTIONS(2556), - [anon_sym_AMP_AMP] = ACTIONS(2556), - [anon_sym_PIPE] = ACTIONS(2558), - [anon_sym_CARET] = ACTIONS(2558), - [anon_sym_EQ_EQ] = ACTIONS(2556), - [anon_sym_BANG_EQ] = ACTIONS(2556), - [anon_sym_LT] = ACTIONS(2558), - [anon_sym_GT] = ACTIONS(2558), - [anon_sym_LT_EQ] = ACTIONS(2556), - [anon_sym_GT_EQ] = ACTIONS(2556), - [anon_sym_LT_LT] = ACTIONS(1375), - [anon_sym_GT_GT] = ACTIONS(1375), - [anon_sym_PLUS] = ACTIONS(1377), - [anon_sym_DASH] = ACTIONS(1377), - [anon_sym_SLASH] = ACTIONS(1351), - [anon_sym_PERCENT] = ACTIONS(1351), - [anon_sym_DASH_DASH] = ACTIONS(1128), - [anon_sym_PLUS_PLUS] = ACTIONS(1128), - [anon_sym_DOT] = ACTIONS(1130), - [anon_sym_DASH_GT] = ACTIONS(1130), + [anon_sym_COMMA] = ACTIONS(2545), + [anon_sym_RBRACE] = ACTIONS(2545), + [anon_sym_LPAREN2] = ACTIONS(1089), + [anon_sym_STAR] = ACTIONS(1342), + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(2547), + [anon_sym_QMARK] = ACTIONS(2545), + [anon_sym_STAR_EQ] = ACTIONS(2545), + [anon_sym_SLASH_EQ] = ACTIONS(2545), + [anon_sym_PERCENT_EQ] = ACTIONS(2545), + [anon_sym_PLUS_EQ] = ACTIONS(2545), + [anon_sym_DASH_EQ] = ACTIONS(2545), + [anon_sym_LT_LT_EQ] = ACTIONS(2545), + [anon_sym_GT_GT_EQ] = ACTIONS(2545), + [anon_sym_AMP_EQ] = ACTIONS(2545), + [anon_sym_CARET_EQ] = ACTIONS(2545), + [anon_sym_PIPE_EQ] = ACTIONS(2545), + [anon_sym_AMP] = ACTIONS(2547), + [anon_sym_PIPE_PIPE] = ACTIONS(2545), + [anon_sym_AMP_AMP] = ACTIONS(2545), + [anon_sym_PIPE] = ACTIONS(2547), + [anon_sym_CARET] = ACTIONS(2547), + [anon_sym_EQ_EQ] = ACTIONS(2545), + [anon_sym_BANG_EQ] = ACTIONS(2545), + [anon_sym_LT] = ACTIONS(2547), + [anon_sym_GT] = ACTIONS(2547), + [anon_sym_LT_EQ] = ACTIONS(2545), + [anon_sym_GT_EQ] = ACTIONS(2545), + [anon_sym_LT_LT] = ACTIONS(1366), + [anon_sym_GT_GT] = ACTIONS(1366), + [anon_sym_PLUS] = ACTIONS(1368), + [anon_sym_DASH] = ACTIONS(1368), + [anon_sym_SLASH] = ACTIONS(1342), + [anon_sym_PERCENT] = ACTIONS(1342), + [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_PLUS_PLUS] = ACTIONS(1121), + [anon_sym_DOT] = ACTIONS(1123), + [anon_sym_DASH_GT] = ACTIONS(1123), [sym_comment] = ACTIONS(39), }, [816] = { [sym_argument_list] = STATE(465), - [anon_sym_COMMA] = ACTIONS(2560), - [anon_sym_RBRACE] = ACTIONS(2560), - [anon_sym_LPAREN2] = ACTIONS(1096), - [anon_sym_STAR] = ACTIONS(1351), - [anon_sym_LBRACK] = ACTIONS(1100), - [anon_sym_EQ] = ACTIONS(2562), - [anon_sym_QMARK] = ACTIONS(2560), - [anon_sym_STAR_EQ] = ACTIONS(2560), - [anon_sym_SLASH_EQ] = ACTIONS(2560), - [anon_sym_PERCENT_EQ] = ACTIONS(2560), - [anon_sym_PLUS_EQ] = ACTIONS(2560), - [anon_sym_DASH_EQ] = ACTIONS(2560), - [anon_sym_LT_LT_EQ] = ACTIONS(2560), - [anon_sym_GT_GT_EQ] = ACTIONS(2560), - [anon_sym_AMP_EQ] = ACTIONS(2560), - [anon_sym_CARET_EQ] = ACTIONS(2560), - [anon_sym_PIPE_EQ] = ACTIONS(2560), - [anon_sym_AMP] = ACTIONS(2562), - [anon_sym_PIPE_PIPE] = ACTIONS(2560), - [anon_sym_AMP_AMP] = ACTIONS(2560), - [anon_sym_PIPE] = ACTIONS(2562), - [anon_sym_CARET] = ACTIONS(2562), - [anon_sym_EQ_EQ] = ACTIONS(2560), - [anon_sym_BANG_EQ] = ACTIONS(2560), - [anon_sym_LT] = ACTIONS(2562), - [anon_sym_GT] = ACTIONS(2562), - [anon_sym_LT_EQ] = ACTIONS(2560), - [anon_sym_GT_EQ] = ACTIONS(2560), - [anon_sym_LT_LT] = ACTIONS(2562), - [anon_sym_GT_GT] = ACTIONS(2562), - [anon_sym_PLUS] = ACTIONS(1377), - [anon_sym_DASH] = ACTIONS(1377), - [anon_sym_SLASH] = ACTIONS(1351), - [anon_sym_PERCENT] = ACTIONS(1351), - [anon_sym_DASH_DASH] = ACTIONS(1128), - [anon_sym_PLUS_PLUS] = ACTIONS(1128), - [anon_sym_DOT] = ACTIONS(1130), - [anon_sym_DASH_GT] = ACTIONS(1130), + [anon_sym_COMMA] = ACTIONS(2549), + [anon_sym_RBRACE] = ACTIONS(2549), + [anon_sym_LPAREN2] = ACTIONS(1089), + [anon_sym_STAR] = ACTIONS(1342), + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(2551), + [anon_sym_QMARK] = ACTIONS(2549), + [anon_sym_STAR_EQ] = ACTIONS(2549), + [anon_sym_SLASH_EQ] = ACTIONS(2549), + [anon_sym_PERCENT_EQ] = ACTIONS(2549), + [anon_sym_PLUS_EQ] = ACTIONS(2549), + [anon_sym_DASH_EQ] = ACTIONS(2549), + [anon_sym_LT_LT_EQ] = ACTIONS(2549), + [anon_sym_GT_GT_EQ] = ACTIONS(2549), + [anon_sym_AMP_EQ] = ACTIONS(2549), + [anon_sym_CARET_EQ] = ACTIONS(2549), + [anon_sym_PIPE_EQ] = ACTIONS(2549), + [anon_sym_AMP] = ACTIONS(2551), + [anon_sym_PIPE_PIPE] = ACTIONS(2549), + [anon_sym_AMP_AMP] = ACTIONS(2549), + [anon_sym_PIPE] = ACTIONS(2551), + [anon_sym_CARET] = ACTIONS(2551), + [anon_sym_EQ_EQ] = ACTIONS(2549), + [anon_sym_BANG_EQ] = ACTIONS(2549), + [anon_sym_LT] = ACTIONS(2551), + [anon_sym_GT] = ACTIONS(2551), + [anon_sym_LT_EQ] = ACTIONS(2549), + [anon_sym_GT_EQ] = ACTIONS(2549), + [anon_sym_LT_LT] = ACTIONS(2551), + [anon_sym_GT_GT] = ACTIONS(2551), + [anon_sym_PLUS] = ACTIONS(1368), + [anon_sym_DASH] = ACTIONS(1368), + [anon_sym_SLASH] = ACTIONS(1342), + [anon_sym_PERCENT] = ACTIONS(1342), + [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_PLUS_PLUS] = ACTIONS(1121), + [anon_sym_DOT] = ACTIONS(1123), + [anon_sym_DASH_GT] = ACTIONS(1123), [sym_comment] = ACTIONS(39), }, [817] = { [sym_argument_list] = STATE(465), - [anon_sym_COMMA] = ACTIONS(2534), - [anon_sym_RBRACE] = ACTIONS(2534), - [anon_sym_LPAREN2] = ACTIONS(1096), - [anon_sym_STAR] = ACTIONS(1351), - [anon_sym_LBRACK] = ACTIONS(1100), - [anon_sym_EQ] = ACTIONS(2536), - [anon_sym_QMARK] = ACTIONS(2534), - [anon_sym_STAR_EQ] = ACTIONS(2534), - [anon_sym_SLASH_EQ] = ACTIONS(2534), - [anon_sym_PERCENT_EQ] = ACTIONS(2534), - [anon_sym_PLUS_EQ] = ACTIONS(2534), - [anon_sym_DASH_EQ] = ACTIONS(2534), - [anon_sym_LT_LT_EQ] = ACTIONS(2534), - [anon_sym_GT_GT_EQ] = ACTIONS(2534), - [anon_sym_AMP_EQ] = ACTIONS(2534), - [anon_sym_CARET_EQ] = ACTIONS(2534), - [anon_sym_PIPE_EQ] = ACTIONS(2534), - [anon_sym_AMP] = ACTIONS(2536), - [anon_sym_PIPE_PIPE] = ACTIONS(2534), - [anon_sym_AMP_AMP] = ACTIONS(2534), - [anon_sym_PIPE] = ACTIONS(2536), - [anon_sym_CARET] = ACTIONS(2536), - [anon_sym_EQ_EQ] = ACTIONS(2534), - [anon_sym_BANG_EQ] = ACTIONS(2534), - [anon_sym_LT] = ACTIONS(2536), - [anon_sym_GT] = ACTIONS(2536), - [anon_sym_LT_EQ] = ACTIONS(2534), - [anon_sym_GT_EQ] = ACTIONS(2534), - [anon_sym_LT_LT] = ACTIONS(2536), - [anon_sym_GT_GT] = ACTIONS(2536), - [anon_sym_PLUS] = ACTIONS(2536), - [anon_sym_DASH] = ACTIONS(2536), - [anon_sym_SLASH] = ACTIONS(1351), - [anon_sym_PERCENT] = ACTIONS(1351), - [anon_sym_DASH_DASH] = ACTIONS(1128), - [anon_sym_PLUS_PLUS] = ACTIONS(1128), - [anon_sym_DOT] = ACTIONS(1130), - [anon_sym_DASH_GT] = ACTIONS(1130), + [anon_sym_COMMA] = ACTIONS(2523), + [anon_sym_RBRACE] = ACTIONS(2523), + [anon_sym_LPAREN2] = ACTIONS(1089), + [anon_sym_STAR] = ACTIONS(1342), + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(2525), + [anon_sym_QMARK] = ACTIONS(2523), + [anon_sym_STAR_EQ] = ACTIONS(2523), + [anon_sym_SLASH_EQ] = ACTIONS(2523), + [anon_sym_PERCENT_EQ] = ACTIONS(2523), + [anon_sym_PLUS_EQ] = ACTIONS(2523), + [anon_sym_DASH_EQ] = ACTIONS(2523), + [anon_sym_LT_LT_EQ] = ACTIONS(2523), + [anon_sym_GT_GT_EQ] = ACTIONS(2523), + [anon_sym_AMP_EQ] = ACTIONS(2523), + [anon_sym_CARET_EQ] = ACTIONS(2523), + [anon_sym_PIPE_EQ] = ACTIONS(2523), + [anon_sym_AMP] = ACTIONS(2525), + [anon_sym_PIPE_PIPE] = ACTIONS(2523), + [anon_sym_AMP_AMP] = ACTIONS(2523), + [anon_sym_PIPE] = ACTIONS(2525), + [anon_sym_CARET] = ACTIONS(2525), + [anon_sym_EQ_EQ] = ACTIONS(2523), + [anon_sym_BANG_EQ] = ACTIONS(2523), + [anon_sym_LT] = ACTIONS(2525), + [anon_sym_GT] = ACTIONS(2525), + [anon_sym_LT_EQ] = ACTIONS(2523), + [anon_sym_GT_EQ] = ACTIONS(2523), + [anon_sym_LT_LT] = ACTIONS(2525), + [anon_sym_GT_GT] = ACTIONS(2525), + [anon_sym_PLUS] = ACTIONS(2525), + [anon_sym_DASH] = ACTIONS(2525), + [anon_sym_SLASH] = ACTIONS(1342), + [anon_sym_PERCENT] = ACTIONS(1342), + [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_PLUS_PLUS] = ACTIONS(1121), + [anon_sym_DOT] = ACTIONS(1123), + [anon_sym_DASH_GT] = ACTIONS(1123), [sym_comment] = ACTIONS(39), }, [818] = { [sym_string_literal] = STATE(818), [aux_sym_concatenated_string_repeat1] = STATE(818), - [anon_sym_COMMA] = ACTIONS(2568), - [anon_sym_RBRACE] = ACTIONS(2568), - [anon_sym_LPAREN2] = ACTIONS(2568), - [anon_sym_STAR] = ACTIONS(2570), - [anon_sym_LBRACK] = ACTIONS(2568), - [anon_sym_EQ] = ACTIONS(2570), - [anon_sym_QMARK] = ACTIONS(2568), - [anon_sym_STAR_EQ] = ACTIONS(2568), - [anon_sym_SLASH_EQ] = ACTIONS(2568), - [anon_sym_PERCENT_EQ] = ACTIONS(2568), - [anon_sym_PLUS_EQ] = ACTIONS(2568), - [anon_sym_DASH_EQ] = ACTIONS(2568), - [anon_sym_LT_LT_EQ] = ACTIONS(2568), - [anon_sym_GT_GT_EQ] = ACTIONS(2568), - [anon_sym_AMP_EQ] = ACTIONS(2568), - [anon_sym_CARET_EQ] = ACTIONS(2568), - [anon_sym_PIPE_EQ] = ACTIONS(2568), - [anon_sym_AMP] = ACTIONS(2570), - [anon_sym_PIPE_PIPE] = ACTIONS(2568), - [anon_sym_AMP_AMP] = ACTIONS(2568), - [anon_sym_PIPE] = ACTIONS(2570), - [anon_sym_CARET] = ACTIONS(2570), - [anon_sym_EQ_EQ] = ACTIONS(2568), - [anon_sym_BANG_EQ] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_GT] = ACTIONS(2570), - [anon_sym_LT_EQ] = ACTIONS(2568), - [anon_sym_GT_EQ] = ACTIONS(2568), - [anon_sym_LT_LT] = ACTIONS(2570), - [anon_sym_GT_GT] = ACTIONS(2570), - [anon_sym_PLUS] = ACTIONS(2570), - [anon_sym_DASH] = ACTIONS(2570), - [anon_sym_SLASH] = ACTIONS(2570), - [anon_sym_PERCENT] = ACTIONS(2570), - [anon_sym_DASH_DASH] = ACTIONS(2568), - [anon_sym_PLUS_PLUS] = ACTIONS(2568), - [anon_sym_DOT] = ACTIONS(2568), - [anon_sym_DASH_GT] = ACTIONS(2568), - [anon_sym_DQUOTE] = ACTIONS(2572), + [anon_sym_COMMA] = ACTIONS(2557), + [anon_sym_RBRACE] = ACTIONS(2557), + [anon_sym_LPAREN2] = ACTIONS(2557), + [anon_sym_STAR] = ACTIONS(2559), + [anon_sym_LBRACK] = ACTIONS(2557), + [anon_sym_EQ] = ACTIONS(2559), + [anon_sym_QMARK] = ACTIONS(2557), + [anon_sym_STAR_EQ] = ACTIONS(2557), + [anon_sym_SLASH_EQ] = ACTIONS(2557), + [anon_sym_PERCENT_EQ] = ACTIONS(2557), + [anon_sym_PLUS_EQ] = ACTIONS(2557), + [anon_sym_DASH_EQ] = ACTIONS(2557), + [anon_sym_LT_LT_EQ] = ACTIONS(2557), + [anon_sym_GT_GT_EQ] = ACTIONS(2557), + [anon_sym_AMP_EQ] = ACTIONS(2557), + [anon_sym_CARET_EQ] = ACTIONS(2557), + [anon_sym_PIPE_EQ] = ACTIONS(2557), + [anon_sym_AMP] = ACTIONS(2559), + [anon_sym_PIPE_PIPE] = ACTIONS(2557), + [anon_sym_AMP_AMP] = ACTIONS(2557), + [anon_sym_PIPE] = ACTIONS(2559), + [anon_sym_CARET] = ACTIONS(2559), + [anon_sym_EQ_EQ] = ACTIONS(2557), + [anon_sym_BANG_EQ] = ACTIONS(2557), + [anon_sym_LT] = ACTIONS(2559), + [anon_sym_GT] = ACTIONS(2559), + [anon_sym_LT_EQ] = ACTIONS(2557), + [anon_sym_GT_EQ] = ACTIONS(2557), + [anon_sym_LT_LT] = ACTIONS(2559), + [anon_sym_GT_GT] = ACTIONS(2559), + [anon_sym_PLUS] = ACTIONS(2559), + [anon_sym_DASH] = ACTIONS(2559), + [anon_sym_SLASH] = ACTIONS(2559), + [anon_sym_PERCENT] = ACTIONS(2559), + [anon_sym_DASH_DASH] = ACTIONS(2557), + [anon_sym_PLUS_PLUS] = ACTIONS(2557), + [anon_sym_DOT] = ACTIONS(2557), + [anon_sym_DASH_GT] = ACTIONS(2557), + [anon_sym_DQUOTE] = ACTIONS(2561), [sym_comment] = ACTIONS(39), }, [819] = { @@ -31501,35 +31520,35 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(819), [aux_sym__declaration_specifiers_repeat1] = STATE(112), [aux_sym_sized_type_specifier_repeat1] = STATE(113), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(885), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(897), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(888), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(891), - [anon_sym_extern] = ACTIONS(894), - [anon_sym_static] = ACTIONS(894), - [anon_sym_auto] = ACTIONS(894), - [anon_sym_register] = ACTIONS(894), - [anon_sym_inline] = ACTIONS(894), - [anon_sym_const] = ACTIONS(899), - [anon_sym_restrict] = ACTIONS(899), - [anon_sym_volatile] = ACTIONS(899), - [anon_sym__Atomic] = ACTIONS(899), - [anon_sym_unsigned] = ACTIONS(902), - [anon_sym_long] = ACTIONS(902), - [anon_sym_short] = ACTIONS(902), - [sym_primitive_type] = ACTIONS(905), - [anon_sym_enum] = ACTIONS(908), - [anon_sym_struct] = ACTIONS(911), - [anon_sym_union] = ACTIONS(914), - [sym_identifier] = ACTIONS(917), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(876), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(888), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(879), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(882), + [anon_sym_extern] = ACTIONS(885), + [anon_sym_static] = ACTIONS(885), + [anon_sym_auto] = ACTIONS(885), + [anon_sym_register] = ACTIONS(885), + [anon_sym_inline] = ACTIONS(885), + [anon_sym_const] = ACTIONS(890), + [anon_sym_restrict] = ACTIONS(890), + [anon_sym_volatile] = ACTIONS(890), + [anon_sym__Atomic] = ACTIONS(890), + [anon_sym_unsigned] = ACTIONS(893), + [anon_sym_long] = ACTIONS(893), + [anon_sym_short] = ACTIONS(893), + [sym_primitive_type] = ACTIONS(896), + [anon_sym_enum] = ACTIONS(899), + [anon_sym_struct] = ACTIONS(902), + [anon_sym_union] = ACTIONS(905), + [sym_identifier] = ACTIONS(908), [sym_comment] = ACTIONS(39), }, [820] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2643), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2632), [sym_comment] = ACTIONS(39), }, [821] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2645), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2634), [sym_comment] = ACTIONS(39), }, [822] = { @@ -31551,12 +31570,12 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(579), [aux_sym__declaration_specifiers_repeat1] = STATE(112), [aux_sym_sized_type_specifier_repeat1] = STATE(113), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(195), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2647), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(197), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(199), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(831), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(833), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(193), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2636), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(195), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(197), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(822), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(824), [anon_sym_extern] = ACTIONS(23), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), @@ -31566,10 +31585,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_restrict] = ACTIONS(25), [anon_sym_volatile] = ACTIONS(25), [anon_sym__Atomic] = ACTIONS(25), - [anon_sym_unsigned] = ACTIONS(203), - [anon_sym_long] = ACTIONS(203), - [anon_sym_short] = ACTIONS(203), - [sym_primitive_type] = ACTIONS(205), + [anon_sym_unsigned] = ACTIONS(201), + [anon_sym_long] = ACTIONS(201), + [anon_sym_short] = ACTIONS(201), + [sym_primitive_type] = ACTIONS(203), [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), @@ -31577,165 +31596,165 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(39), }, [823] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2649), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2651), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2651), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2651), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2651), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2651), - [anon_sym_extern] = ACTIONS(2649), - [anon_sym_RBRACE] = ACTIONS(2651), - [anon_sym_static] = ACTIONS(2649), - [anon_sym_auto] = ACTIONS(2649), - [anon_sym_register] = ACTIONS(2649), - [anon_sym_inline] = ACTIONS(2649), - [anon_sym_const] = ACTIONS(2649), - [anon_sym_restrict] = ACTIONS(2649), - [anon_sym_volatile] = ACTIONS(2649), - [anon_sym__Atomic] = ACTIONS(2649), - [anon_sym_unsigned] = ACTIONS(2649), - [anon_sym_long] = ACTIONS(2649), - [anon_sym_short] = ACTIONS(2649), - [sym_primitive_type] = ACTIONS(2649), - [anon_sym_enum] = ACTIONS(2649), - [anon_sym_struct] = ACTIONS(2649), - [anon_sym_union] = ACTIONS(2649), - [sym_identifier] = ACTIONS(2649), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2638), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2640), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2640), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2640), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2640), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2640), + [anon_sym_extern] = ACTIONS(2638), + [anon_sym_RBRACE] = ACTIONS(2640), + [anon_sym_static] = ACTIONS(2638), + [anon_sym_auto] = ACTIONS(2638), + [anon_sym_register] = ACTIONS(2638), + [anon_sym_inline] = ACTIONS(2638), + [anon_sym_const] = ACTIONS(2638), + [anon_sym_restrict] = ACTIONS(2638), + [anon_sym_volatile] = ACTIONS(2638), + [anon_sym__Atomic] = ACTIONS(2638), + [anon_sym_unsigned] = ACTIONS(2638), + [anon_sym_long] = ACTIONS(2638), + [anon_sym_short] = ACTIONS(2638), + [sym_primitive_type] = ACTIONS(2638), + [anon_sym_enum] = ACTIONS(2638), + [anon_sym_struct] = ACTIONS(2638), + [anon_sym_union] = ACTIONS(2638), + [sym_identifier] = ACTIONS(2638), [sym_comment] = ACTIONS(39), }, [824] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2653), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2655), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2655), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2655), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2655), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2655), - [anon_sym_extern] = ACTIONS(2653), - [anon_sym_RBRACE] = ACTIONS(2655), - [anon_sym_static] = ACTIONS(2653), - [anon_sym_auto] = ACTIONS(2653), - [anon_sym_register] = ACTIONS(2653), - [anon_sym_inline] = ACTIONS(2653), - [anon_sym_const] = ACTIONS(2653), - [anon_sym_restrict] = ACTIONS(2653), - [anon_sym_volatile] = ACTIONS(2653), - [anon_sym__Atomic] = ACTIONS(2653), - [anon_sym_unsigned] = ACTIONS(2653), - [anon_sym_long] = ACTIONS(2653), - [anon_sym_short] = ACTIONS(2653), - [sym_primitive_type] = ACTIONS(2653), - [anon_sym_enum] = ACTIONS(2653), - [anon_sym_struct] = ACTIONS(2653), - [anon_sym_union] = ACTIONS(2653), - [sym_identifier] = ACTIONS(2653), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2642), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2644), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2644), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2644), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2644), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2644), + [anon_sym_extern] = ACTIONS(2642), + [anon_sym_RBRACE] = ACTIONS(2644), + [anon_sym_static] = ACTIONS(2642), + [anon_sym_auto] = ACTIONS(2642), + [anon_sym_register] = ACTIONS(2642), + [anon_sym_inline] = ACTIONS(2642), + [anon_sym_const] = ACTIONS(2642), + [anon_sym_restrict] = ACTIONS(2642), + [anon_sym_volatile] = ACTIONS(2642), + [anon_sym__Atomic] = ACTIONS(2642), + [anon_sym_unsigned] = ACTIONS(2642), + [anon_sym_long] = ACTIONS(2642), + [anon_sym_short] = ACTIONS(2642), + [sym_primitive_type] = ACTIONS(2642), + [anon_sym_enum] = ACTIONS(2642), + [anon_sym_struct] = ACTIONS(2642), + [anon_sym_union] = ACTIONS(2642), + [sym_identifier] = ACTIONS(2642), [sym_comment] = ACTIONS(39), }, [825] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2657), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2659), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2659), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2659), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2659), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2659), - [anon_sym_extern] = ACTIONS(2657), - [anon_sym_RBRACE] = ACTIONS(2659), - [anon_sym_static] = ACTIONS(2657), - [anon_sym_auto] = ACTIONS(2657), - [anon_sym_register] = ACTIONS(2657), - [anon_sym_inline] = ACTIONS(2657), - [anon_sym_const] = ACTIONS(2657), - [anon_sym_restrict] = ACTIONS(2657), - [anon_sym_volatile] = ACTIONS(2657), - [anon_sym__Atomic] = ACTIONS(2657), - [anon_sym_unsigned] = ACTIONS(2657), - [anon_sym_long] = ACTIONS(2657), - [anon_sym_short] = ACTIONS(2657), - [sym_primitive_type] = ACTIONS(2657), - [anon_sym_enum] = ACTIONS(2657), - [anon_sym_struct] = ACTIONS(2657), - [anon_sym_union] = ACTIONS(2657), - [sym_identifier] = ACTIONS(2657), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2646), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2648), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2648), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2648), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2648), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2648), + [anon_sym_extern] = ACTIONS(2646), + [anon_sym_RBRACE] = ACTIONS(2648), + [anon_sym_static] = ACTIONS(2646), + [anon_sym_auto] = ACTIONS(2646), + [anon_sym_register] = ACTIONS(2646), + [anon_sym_inline] = ACTIONS(2646), + [anon_sym_const] = ACTIONS(2646), + [anon_sym_restrict] = ACTIONS(2646), + [anon_sym_volatile] = ACTIONS(2646), + [anon_sym__Atomic] = ACTIONS(2646), + [anon_sym_unsigned] = ACTIONS(2646), + [anon_sym_long] = ACTIONS(2646), + [anon_sym_short] = ACTIONS(2646), + [sym_primitive_type] = ACTIONS(2646), + [anon_sym_enum] = ACTIONS(2646), + [anon_sym_struct] = ACTIONS(2646), + [anon_sym_union] = ACTIONS(2646), + [sym_identifier] = ACTIONS(2646), [sym_comment] = ACTIONS(39), }, [826] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2661), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2663), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2663), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2663), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2663), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2663), - [anon_sym_extern] = ACTIONS(2661), - [anon_sym_RBRACE] = ACTIONS(2663), - [anon_sym_static] = ACTIONS(2661), - [anon_sym_auto] = ACTIONS(2661), - [anon_sym_register] = ACTIONS(2661), - [anon_sym_inline] = ACTIONS(2661), - [anon_sym_const] = ACTIONS(2661), - [anon_sym_restrict] = ACTIONS(2661), - [anon_sym_volatile] = ACTIONS(2661), - [anon_sym__Atomic] = ACTIONS(2661), - [anon_sym_unsigned] = ACTIONS(2661), - [anon_sym_long] = ACTIONS(2661), - [anon_sym_short] = ACTIONS(2661), - [sym_primitive_type] = ACTIONS(2661), - [anon_sym_enum] = ACTIONS(2661), - [anon_sym_struct] = ACTIONS(2661), - [anon_sym_union] = ACTIONS(2661), - [sym_identifier] = ACTIONS(2661), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2650), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2652), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2652), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2652), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2652), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2652), + [anon_sym_extern] = ACTIONS(2650), + [anon_sym_RBRACE] = ACTIONS(2652), + [anon_sym_static] = ACTIONS(2650), + [anon_sym_auto] = ACTIONS(2650), + [anon_sym_register] = ACTIONS(2650), + [anon_sym_inline] = ACTIONS(2650), + [anon_sym_const] = ACTIONS(2650), + [anon_sym_restrict] = ACTIONS(2650), + [anon_sym_volatile] = ACTIONS(2650), + [anon_sym__Atomic] = ACTIONS(2650), + [anon_sym_unsigned] = ACTIONS(2650), + [anon_sym_long] = ACTIONS(2650), + [anon_sym_short] = ACTIONS(2650), + [sym_primitive_type] = ACTIONS(2650), + [anon_sym_enum] = ACTIONS(2650), + [anon_sym_struct] = ACTIONS(2650), + [anon_sym_union] = ACTIONS(2650), + [sym_identifier] = ACTIONS(2650), [sym_comment] = ACTIONS(39), }, [827] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2665), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2667), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2667), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2667), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2667), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2667), - [anon_sym_extern] = ACTIONS(2665), - [anon_sym_RBRACE] = ACTIONS(2667), - [anon_sym_static] = ACTIONS(2665), - [anon_sym_auto] = ACTIONS(2665), - [anon_sym_register] = ACTIONS(2665), - [anon_sym_inline] = ACTIONS(2665), - [anon_sym_const] = ACTIONS(2665), - [anon_sym_restrict] = ACTIONS(2665), - [anon_sym_volatile] = ACTIONS(2665), - [anon_sym__Atomic] = ACTIONS(2665), - [anon_sym_unsigned] = ACTIONS(2665), - [anon_sym_long] = ACTIONS(2665), - [anon_sym_short] = ACTIONS(2665), - [sym_primitive_type] = ACTIONS(2665), - [anon_sym_enum] = ACTIONS(2665), - [anon_sym_struct] = ACTIONS(2665), - [anon_sym_union] = ACTIONS(2665), - [sym_identifier] = ACTIONS(2665), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2654), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2656), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2656), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2656), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2656), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2656), + [anon_sym_extern] = ACTIONS(2654), + [anon_sym_RBRACE] = ACTIONS(2656), + [anon_sym_static] = ACTIONS(2654), + [anon_sym_auto] = ACTIONS(2654), + [anon_sym_register] = ACTIONS(2654), + [anon_sym_inline] = ACTIONS(2654), + [anon_sym_const] = ACTIONS(2654), + [anon_sym_restrict] = ACTIONS(2654), + [anon_sym_volatile] = ACTIONS(2654), + [anon_sym__Atomic] = ACTIONS(2654), + [anon_sym_unsigned] = ACTIONS(2654), + [anon_sym_long] = ACTIONS(2654), + [anon_sym_short] = ACTIONS(2654), + [sym_primitive_type] = ACTIONS(2654), + [anon_sym_enum] = ACTIONS(2654), + [anon_sym_struct] = ACTIONS(2654), + [anon_sym_union] = ACTIONS(2654), + [sym_identifier] = ACTIONS(2654), [sym_comment] = ACTIONS(39), }, [828] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2669), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2671), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2671), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2671), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2671), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2671), - [anon_sym_extern] = ACTIONS(2669), - [anon_sym_RBRACE] = ACTIONS(2671), - [anon_sym_static] = ACTIONS(2669), - [anon_sym_auto] = ACTIONS(2669), - [anon_sym_register] = ACTIONS(2669), - [anon_sym_inline] = ACTIONS(2669), - [anon_sym_const] = ACTIONS(2669), - [anon_sym_restrict] = ACTIONS(2669), - [anon_sym_volatile] = ACTIONS(2669), - [anon_sym__Atomic] = ACTIONS(2669), - [anon_sym_unsigned] = ACTIONS(2669), - [anon_sym_long] = ACTIONS(2669), - [anon_sym_short] = ACTIONS(2669), - [sym_primitive_type] = ACTIONS(2669), - [anon_sym_enum] = ACTIONS(2669), - [anon_sym_struct] = ACTIONS(2669), - [anon_sym_union] = ACTIONS(2669), - [sym_identifier] = ACTIONS(2669), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2658), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2660), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2660), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2660), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2660), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2660), + [anon_sym_extern] = ACTIONS(2658), + [anon_sym_RBRACE] = ACTIONS(2660), + [anon_sym_static] = ACTIONS(2658), + [anon_sym_auto] = ACTIONS(2658), + [anon_sym_register] = ACTIONS(2658), + [anon_sym_inline] = ACTIONS(2658), + [anon_sym_const] = ACTIONS(2658), + [anon_sym_restrict] = ACTIONS(2658), + [anon_sym_volatile] = ACTIONS(2658), + [anon_sym__Atomic] = ACTIONS(2658), + [anon_sym_unsigned] = ACTIONS(2658), + [anon_sym_long] = ACTIONS(2658), + [anon_sym_short] = ACTIONS(2658), + [sym_primitive_type] = ACTIONS(2658), + [anon_sym_enum] = ACTIONS(2658), + [anon_sym_struct] = ACTIONS(2658), + [anon_sym_union] = ACTIONS(2658), + [sym_identifier] = ACTIONS(2658), [sym_comment] = ACTIONS(39), }, [829] = { @@ -31760,745 +31779,745 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(921), [sym_concatenated_string] = STATE(921), [sym_string_literal] = STATE(376), - [anon_sym_LBRACE] = ACTIONS(632), - [anon_sym_LPAREN2] = ACTIONS(847), - [anon_sym_STAR] = ACTIONS(849), - [anon_sym_AMP] = ACTIONS(849), - [anon_sym_BANG] = ACTIONS(851), - [anon_sym_TILDE] = ACTIONS(853), - [anon_sym_PLUS] = ACTIONS(855), - [anon_sym_DASH] = ACTIONS(855), - [anon_sym_DASH_DASH] = ACTIONS(857), - [anon_sym_PLUS_PLUS] = ACTIONS(857), - [anon_sym_sizeof] = ACTIONS(859), - [sym_number_literal] = ACTIONS(2392), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2394), - [sym_false] = ACTIONS(2394), - [sym_null] = ACTIONS(2394), - [sym_identifier] = ACTIONS(2394), + [anon_sym_LBRACE] = ACTIONS(628), + [anon_sym_LPAREN2] = ACTIONS(838), + [anon_sym_STAR] = ACTIONS(840), + [anon_sym_AMP] = ACTIONS(840), + [anon_sym_BANG] = ACTIONS(842), + [anon_sym_TILDE] = ACTIONS(844), + [anon_sym_PLUS] = ACTIONS(846), + [anon_sym_DASH] = ACTIONS(846), + [anon_sym_DASH_DASH] = ACTIONS(848), + [anon_sym_PLUS_PLUS] = ACTIONS(848), + [anon_sym_sizeof] = ACTIONS(850), + [sym_number_literal] = ACTIONS(2381), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(2383), + [sym_false] = ACTIONS(2383), + [sym_null] = ACTIONS(2383), + [sym_identifier] = ACTIONS(2383), [sym_comment] = ACTIONS(39), }, [830] = { - [anon_sym_RPAREN] = ACTIONS(2673), + [anon_sym_RPAREN] = ACTIONS(2662), [sym_comment] = ACTIONS(39), }, [831] = { [sym_argument_list] = STATE(465), - [anon_sym_SEMI] = ACTIONS(2540), - [anon_sym_LPAREN2] = ACTIONS(1096), - [anon_sym_STAR] = ACTIONS(1436), - [anon_sym_LBRACK] = ACTIONS(1100), - [anon_sym_EQ] = ACTIONS(1438), - [anon_sym_QMARK] = ACTIONS(2540), - [anon_sym_STAR_EQ] = ACTIONS(1442), - [anon_sym_SLASH_EQ] = ACTIONS(1442), - [anon_sym_PERCENT_EQ] = ACTIONS(1442), - [anon_sym_PLUS_EQ] = ACTIONS(1442), - [anon_sym_DASH_EQ] = ACTIONS(1442), - [anon_sym_LT_LT_EQ] = ACTIONS(1442), - [anon_sym_GT_GT_EQ] = ACTIONS(1442), - [anon_sym_AMP_EQ] = ACTIONS(1442), - [anon_sym_CARET_EQ] = ACTIONS(1442), - [anon_sym_PIPE_EQ] = ACTIONS(1442), - [anon_sym_AMP] = ACTIONS(1444), - [anon_sym_PIPE_PIPE] = ACTIONS(1446), - [anon_sym_AMP_AMP] = ACTIONS(1448), - [anon_sym_PIPE] = ACTIONS(1450), - [anon_sym_CARET] = ACTIONS(1452), - [anon_sym_EQ_EQ] = ACTIONS(1454), - [anon_sym_BANG_EQ] = ACTIONS(1454), - [anon_sym_LT] = ACTIONS(1456), - [anon_sym_GT] = ACTIONS(1456), - [anon_sym_LT_EQ] = ACTIONS(1458), - [anon_sym_GT_EQ] = ACTIONS(1458), - [anon_sym_LT_LT] = ACTIONS(1460), - [anon_sym_GT_GT] = ACTIONS(1460), - [anon_sym_PLUS] = ACTIONS(1462), - [anon_sym_DASH] = ACTIONS(1462), - [anon_sym_SLASH] = ACTIONS(1436), - [anon_sym_PERCENT] = ACTIONS(1436), - [anon_sym_DASH_DASH] = ACTIONS(1128), - [anon_sym_PLUS_PLUS] = ACTIONS(1128), - [anon_sym_DOT] = ACTIONS(1130), - [anon_sym_DASH_GT] = ACTIONS(1130), + [anon_sym_SEMI] = ACTIONS(2529), + [anon_sym_LPAREN2] = ACTIONS(1089), + [anon_sym_STAR] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(1429), + [anon_sym_QMARK] = ACTIONS(2529), + [anon_sym_STAR_EQ] = ACTIONS(1433), + [anon_sym_SLASH_EQ] = ACTIONS(1433), + [anon_sym_PERCENT_EQ] = ACTIONS(1433), + [anon_sym_PLUS_EQ] = ACTIONS(1433), + [anon_sym_DASH_EQ] = ACTIONS(1433), + [anon_sym_LT_LT_EQ] = ACTIONS(1433), + [anon_sym_GT_GT_EQ] = ACTIONS(1433), + [anon_sym_AMP_EQ] = ACTIONS(1433), + [anon_sym_CARET_EQ] = ACTIONS(1433), + [anon_sym_PIPE_EQ] = ACTIONS(1433), + [anon_sym_AMP] = ACTIONS(1435), + [anon_sym_PIPE_PIPE] = ACTIONS(1437), + [anon_sym_AMP_AMP] = ACTIONS(1439), + [anon_sym_PIPE] = ACTIONS(1441), + [anon_sym_CARET] = ACTIONS(1443), + [anon_sym_EQ_EQ] = ACTIONS(1445), + [anon_sym_BANG_EQ] = ACTIONS(1445), + [anon_sym_LT] = ACTIONS(1447), + [anon_sym_GT] = ACTIONS(1447), + [anon_sym_LT_EQ] = ACTIONS(1449), + [anon_sym_GT_EQ] = ACTIONS(1449), + [anon_sym_LT_LT] = ACTIONS(1451), + [anon_sym_GT_GT] = ACTIONS(1451), + [anon_sym_PLUS] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1453), + [anon_sym_SLASH] = ACTIONS(1427), + [anon_sym_PERCENT] = ACTIONS(1427), + [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_PLUS_PLUS] = ACTIONS(1121), + [anon_sym_DOT] = ACTIONS(1123), + [anon_sym_DASH_GT] = ACTIONS(1123), [sym_comment] = ACTIONS(39), }, [832] = { [sym_argument_list] = STATE(465), - [anon_sym_LPAREN2] = ACTIONS(1096), - [anon_sym_STAR] = ACTIONS(1620), - [anon_sym_LBRACK] = ACTIONS(1100), - [anon_sym_EQ] = ACTIONS(1622), - [anon_sym_COLON] = ACTIONS(2675), - [anon_sym_QMARK] = ACTIONS(1626), - [anon_sym_STAR_EQ] = ACTIONS(1628), - [anon_sym_SLASH_EQ] = ACTIONS(1628), - [anon_sym_PERCENT_EQ] = ACTIONS(1628), - [anon_sym_PLUS_EQ] = ACTIONS(1628), - [anon_sym_DASH_EQ] = ACTIONS(1628), - [anon_sym_LT_LT_EQ] = ACTIONS(1628), - [anon_sym_GT_GT_EQ] = ACTIONS(1628), - [anon_sym_AMP_EQ] = ACTIONS(1628), - [anon_sym_CARET_EQ] = ACTIONS(1628), - [anon_sym_PIPE_EQ] = ACTIONS(1628), - [anon_sym_AMP] = ACTIONS(1630), - [anon_sym_PIPE_PIPE] = ACTIONS(1632), - [anon_sym_AMP_AMP] = ACTIONS(1634), - [anon_sym_PIPE] = ACTIONS(1636), - [anon_sym_CARET] = ACTIONS(1638), - [anon_sym_EQ_EQ] = ACTIONS(1640), - [anon_sym_BANG_EQ] = ACTIONS(1640), - [anon_sym_LT] = ACTIONS(1642), - [anon_sym_GT] = ACTIONS(1642), - [anon_sym_LT_EQ] = ACTIONS(1644), - [anon_sym_GT_EQ] = ACTIONS(1644), - [anon_sym_LT_LT] = ACTIONS(1646), - [anon_sym_GT_GT] = ACTIONS(1646), - [anon_sym_PLUS] = ACTIONS(1648), - [anon_sym_DASH] = ACTIONS(1648), - [anon_sym_SLASH] = ACTIONS(1620), - [anon_sym_PERCENT] = ACTIONS(1620), - [anon_sym_DASH_DASH] = ACTIONS(1128), - [anon_sym_PLUS_PLUS] = ACTIONS(1128), - [anon_sym_DOT] = ACTIONS(1130), - [anon_sym_DASH_GT] = ACTIONS(1130), + [anon_sym_LPAREN2] = ACTIONS(1089), + [anon_sym_STAR] = ACTIONS(1609), + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(1611), + [anon_sym_COLON] = ACTIONS(2664), + [anon_sym_QMARK] = ACTIONS(1615), + [anon_sym_STAR_EQ] = ACTIONS(1617), + [anon_sym_SLASH_EQ] = ACTIONS(1617), + [anon_sym_PERCENT_EQ] = ACTIONS(1617), + [anon_sym_PLUS_EQ] = ACTIONS(1617), + [anon_sym_DASH_EQ] = ACTIONS(1617), + [anon_sym_LT_LT_EQ] = ACTIONS(1617), + [anon_sym_GT_GT_EQ] = ACTIONS(1617), + [anon_sym_AMP_EQ] = ACTIONS(1617), + [anon_sym_CARET_EQ] = ACTIONS(1617), + [anon_sym_PIPE_EQ] = ACTIONS(1617), + [anon_sym_AMP] = ACTIONS(1619), + [anon_sym_PIPE_PIPE] = ACTIONS(1621), + [anon_sym_AMP_AMP] = ACTIONS(1623), + [anon_sym_PIPE] = ACTIONS(1625), + [anon_sym_CARET] = ACTIONS(1627), + [anon_sym_EQ_EQ] = ACTIONS(1629), + [anon_sym_BANG_EQ] = ACTIONS(1629), + [anon_sym_LT] = ACTIONS(1631), + [anon_sym_GT] = ACTIONS(1631), + [anon_sym_LT_EQ] = ACTIONS(1633), + [anon_sym_GT_EQ] = ACTIONS(1633), + [anon_sym_LT_LT] = ACTIONS(1635), + [anon_sym_GT_GT] = ACTIONS(1635), + [anon_sym_PLUS] = ACTIONS(1637), + [anon_sym_DASH] = ACTIONS(1637), + [anon_sym_SLASH] = ACTIONS(1609), + [anon_sym_PERCENT] = ACTIONS(1609), + [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_PLUS_PLUS] = ACTIONS(1121), + [anon_sym_DOT] = ACTIONS(1123), + [anon_sym_DASH_GT] = ACTIONS(1123), [sym_comment] = ACTIONS(39), }, [833] = { [sym_argument_list] = STATE(465), - [anon_sym_SEMI] = ACTIONS(2544), - [anon_sym_LPAREN2] = ACTIONS(1096), - [anon_sym_STAR] = ACTIONS(1436), - [anon_sym_LBRACK] = ACTIONS(1100), - [anon_sym_EQ] = ACTIONS(2546), - [anon_sym_QMARK] = ACTIONS(2544), - [anon_sym_STAR_EQ] = ACTIONS(2544), - [anon_sym_SLASH_EQ] = ACTIONS(2544), - [anon_sym_PERCENT_EQ] = ACTIONS(2544), - [anon_sym_PLUS_EQ] = ACTIONS(2544), - [anon_sym_DASH_EQ] = ACTIONS(2544), - [anon_sym_LT_LT_EQ] = ACTIONS(2544), - [anon_sym_GT_GT_EQ] = ACTIONS(2544), - [anon_sym_AMP_EQ] = ACTIONS(2544), - [anon_sym_CARET_EQ] = ACTIONS(2544), - [anon_sym_PIPE_EQ] = ACTIONS(2544), - [anon_sym_AMP] = ACTIONS(2546), - [anon_sym_PIPE_PIPE] = ACTIONS(2544), - [anon_sym_AMP_AMP] = ACTIONS(2544), - [anon_sym_PIPE] = ACTIONS(2546), - [anon_sym_CARET] = ACTIONS(2546), - [anon_sym_EQ_EQ] = ACTIONS(1454), - [anon_sym_BANG_EQ] = ACTIONS(1454), - [anon_sym_LT] = ACTIONS(1456), - [anon_sym_GT] = ACTIONS(1456), - [anon_sym_LT_EQ] = ACTIONS(1458), - [anon_sym_GT_EQ] = ACTIONS(1458), - [anon_sym_LT_LT] = ACTIONS(1460), - [anon_sym_GT_GT] = ACTIONS(1460), - [anon_sym_PLUS] = ACTIONS(1462), - [anon_sym_DASH] = ACTIONS(1462), - [anon_sym_SLASH] = ACTIONS(1436), - [anon_sym_PERCENT] = ACTIONS(1436), - [anon_sym_DASH_DASH] = ACTIONS(1128), - [anon_sym_PLUS_PLUS] = ACTIONS(1128), - [anon_sym_DOT] = ACTIONS(1130), - [anon_sym_DASH_GT] = ACTIONS(1130), + [anon_sym_SEMI] = ACTIONS(2533), + [anon_sym_LPAREN2] = ACTIONS(1089), + [anon_sym_STAR] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(2535), + [anon_sym_QMARK] = ACTIONS(2533), + [anon_sym_STAR_EQ] = ACTIONS(2533), + [anon_sym_SLASH_EQ] = ACTIONS(2533), + [anon_sym_PERCENT_EQ] = ACTIONS(2533), + [anon_sym_PLUS_EQ] = ACTIONS(2533), + [anon_sym_DASH_EQ] = ACTIONS(2533), + [anon_sym_LT_LT_EQ] = ACTIONS(2533), + [anon_sym_GT_GT_EQ] = ACTIONS(2533), + [anon_sym_AMP_EQ] = ACTIONS(2533), + [anon_sym_CARET_EQ] = ACTIONS(2533), + [anon_sym_PIPE_EQ] = ACTIONS(2533), + [anon_sym_AMP] = ACTIONS(2535), + [anon_sym_PIPE_PIPE] = ACTIONS(2533), + [anon_sym_AMP_AMP] = ACTIONS(2533), + [anon_sym_PIPE] = ACTIONS(2535), + [anon_sym_CARET] = ACTIONS(2535), + [anon_sym_EQ_EQ] = ACTIONS(1445), + [anon_sym_BANG_EQ] = ACTIONS(1445), + [anon_sym_LT] = ACTIONS(1447), + [anon_sym_GT] = ACTIONS(1447), + [anon_sym_LT_EQ] = ACTIONS(1449), + [anon_sym_GT_EQ] = ACTIONS(1449), + [anon_sym_LT_LT] = ACTIONS(1451), + [anon_sym_GT_GT] = ACTIONS(1451), + [anon_sym_PLUS] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1453), + [anon_sym_SLASH] = ACTIONS(1427), + [anon_sym_PERCENT] = ACTIONS(1427), + [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_PLUS_PLUS] = ACTIONS(1121), + [anon_sym_DOT] = ACTIONS(1123), + [anon_sym_DASH_GT] = ACTIONS(1123), [sym_comment] = ACTIONS(39), }, [834] = { [sym_argument_list] = STATE(465), - [anon_sym_SEMI] = ACTIONS(2548), - [anon_sym_LPAREN2] = ACTIONS(1096), - [anon_sym_STAR] = ACTIONS(1436), - [anon_sym_LBRACK] = ACTIONS(1100), - [anon_sym_EQ] = ACTIONS(2550), - [anon_sym_QMARK] = ACTIONS(2548), - [anon_sym_STAR_EQ] = ACTIONS(2548), - [anon_sym_SLASH_EQ] = ACTIONS(2548), - [anon_sym_PERCENT_EQ] = ACTIONS(2548), - [anon_sym_PLUS_EQ] = ACTIONS(2548), - [anon_sym_DASH_EQ] = ACTIONS(2548), - [anon_sym_LT_LT_EQ] = ACTIONS(2548), - [anon_sym_GT_GT_EQ] = ACTIONS(2548), - [anon_sym_AMP_EQ] = ACTIONS(2548), - [anon_sym_CARET_EQ] = ACTIONS(2548), - [anon_sym_PIPE_EQ] = ACTIONS(2548), - [anon_sym_AMP] = ACTIONS(1444), - [anon_sym_PIPE_PIPE] = ACTIONS(2548), - [anon_sym_AMP_AMP] = ACTIONS(1448), - [anon_sym_PIPE] = ACTIONS(1450), - [anon_sym_CARET] = ACTIONS(1452), - [anon_sym_EQ_EQ] = ACTIONS(1454), - [anon_sym_BANG_EQ] = ACTIONS(1454), - [anon_sym_LT] = ACTIONS(1456), - [anon_sym_GT] = ACTIONS(1456), - [anon_sym_LT_EQ] = ACTIONS(1458), - [anon_sym_GT_EQ] = ACTIONS(1458), - [anon_sym_LT_LT] = ACTIONS(1460), - [anon_sym_GT_GT] = ACTIONS(1460), - [anon_sym_PLUS] = ACTIONS(1462), - [anon_sym_DASH] = ACTIONS(1462), - [anon_sym_SLASH] = ACTIONS(1436), - [anon_sym_PERCENT] = ACTIONS(1436), - [anon_sym_DASH_DASH] = ACTIONS(1128), - [anon_sym_PLUS_PLUS] = ACTIONS(1128), - [anon_sym_DOT] = ACTIONS(1130), - [anon_sym_DASH_GT] = ACTIONS(1130), + [anon_sym_SEMI] = ACTIONS(2537), + [anon_sym_LPAREN2] = ACTIONS(1089), + [anon_sym_STAR] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(2539), + [anon_sym_QMARK] = ACTIONS(2537), + [anon_sym_STAR_EQ] = ACTIONS(2537), + [anon_sym_SLASH_EQ] = ACTIONS(2537), + [anon_sym_PERCENT_EQ] = ACTIONS(2537), + [anon_sym_PLUS_EQ] = ACTIONS(2537), + [anon_sym_DASH_EQ] = ACTIONS(2537), + [anon_sym_LT_LT_EQ] = ACTIONS(2537), + [anon_sym_GT_GT_EQ] = ACTIONS(2537), + [anon_sym_AMP_EQ] = ACTIONS(2537), + [anon_sym_CARET_EQ] = ACTIONS(2537), + [anon_sym_PIPE_EQ] = ACTIONS(2537), + [anon_sym_AMP] = ACTIONS(1435), + [anon_sym_PIPE_PIPE] = ACTIONS(2537), + [anon_sym_AMP_AMP] = ACTIONS(1439), + [anon_sym_PIPE] = ACTIONS(1441), + [anon_sym_CARET] = ACTIONS(1443), + [anon_sym_EQ_EQ] = ACTIONS(1445), + [anon_sym_BANG_EQ] = ACTIONS(1445), + [anon_sym_LT] = ACTIONS(1447), + [anon_sym_GT] = ACTIONS(1447), + [anon_sym_LT_EQ] = ACTIONS(1449), + [anon_sym_GT_EQ] = ACTIONS(1449), + [anon_sym_LT_LT] = ACTIONS(1451), + [anon_sym_GT_GT] = ACTIONS(1451), + [anon_sym_PLUS] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1453), + [anon_sym_SLASH] = ACTIONS(1427), + [anon_sym_PERCENT] = ACTIONS(1427), + [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_PLUS_PLUS] = ACTIONS(1121), + [anon_sym_DOT] = ACTIONS(1123), + [anon_sym_DASH_GT] = ACTIONS(1123), [sym_comment] = ACTIONS(39), }, [835] = { [sym_argument_list] = STATE(465), - [anon_sym_SEMI] = ACTIONS(2548), - [anon_sym_LPAREN2] = ACTIONS(1096), - [anon_sym_STAR] = ACTIONS(1436), - [anon_sym_LBRACK] = ACTIONS(1100), - [anon_sym_EQ] = ACTIONS(2550), - [anon_sym_QMARK] = ACTIONS(2548), - [anon_sym_STAR_EQ] = ACTIONS(2548), - [anon_sym_SLASH_EQ] = ACTIONS(2548), - [anon_sym_PERCENT_EQ] = ACTIONS(2548), - [anon_sym_PLUS_EQ] = ACTIONS(2548), - [anon_sym_DASH_EQ] = ACTIONS(2548), - [anon_sym_LT_LT_EQ] = ACTIONS(2548), - [anon_sym_GT_GT_EQ] = ACTIONS(2548), - [anon_sym_AMP_EQ] = ACTIONS(2548), - [anon_sym_CARET_EQ] = ACTIONS(2548), - [anon_sym_PIPE_EQ] = ACTIONS(2548), - [anon_sym_AMP] = ACTIONS(1444), - [anon_sym_PIPE_PIPE] = ACTIONS(2548), - [anon_sym_AMP_AMP] = ACTIONS(2548), - [anon_sym_PIPE] = ACTIONS(1450), - [anon_sym_CARET] = ACTIONS(1452), - [anon_sym_EQ_EQ] = ACTIONS(1454), - [anon_sym_BANG_EQ] = ACTIONS(1454), - [anon_sym_LT] = ACTIONS(1456), - [anon_sym_GT] = ACTIONS(1456), - [anon_sym_LT_EQ] = ACTIONS(1458), - [anon_sym_GT_EQ] = ACTIONS(1458), - [anon_sym_LT_LT] = ACTIONS(1460), - [anon_sym_GT_GT] = ACTIONS(1460), - [anon_sym_PLUS] = ACTIONS(1462), - [anon_sym_DASH] = ACTIONS(1462), - [anon_sym_SLASH] = ACTIONS(1436), - [anon_sym_PERCENT] = ACTIONS(1436), - [anon_sym_DASH_DASH] = ACTIONS(1128), - [anon_sym_PLUS_PLUS] = ACTIONS(1128), - [anon_sym_DOT] = ACTIONS(1130), - [anon_sym_DASH_GT] = ACTIONS(1130), + [anon_sym_SEMI] = ACTIONS(2537), + [anon_sym_LPAREN2] = ACTIONS(1089), + [anon_sym_STAR] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(2539), + [anon_sym_QMARK] = ACTIONS(2537), + [anon_sym_STAR_EQ] = ACTIONS(2537), + [anon_sym_SLASH_EQ] = ACTIONS(2537), + [anon_sym_PERCENT_EQ] = ACTIONS(2537), + [anon_sym_PLUS_EQ] = ACTIONS(2537), + [anon_sym_DASH_EQ] = ACTIONS(2537), + [anon_sym_LT_LT_EQ] = ACTIONS(2537), + [anon_sym_GT_GT_EQ] = ACTIONS(2537), + [anon_sym_AMP_EQ] = ACTIONS(2537), + [anon_sym_CARET_EQ] = ACTIONS(2537), + [anon_sym_PIPE_EQ] = ACTIONS(2537), + [anon_sym_AMP] = ACTIONS(1435), + [anon_sym_PIPE_PIPE] = ACTIONS(2537), + [anon_sym_AMP_AMP] = ACTIONS(2537), + [anon_sym_PIPE] = ACTIONS(1441), + [anon_sym_CARET] = ACTIONS(1443), + [anon_sym_EQ_EQ] = ACTIONS(1445), + [anon_sym_BANG_EQ] = ACTIONS(1445), + [anon_sym_LT] = ACTIONS(1447), + [anon_sym_GT] = ACTIONS(1447), + [anon_sym_LT_EQ] = ACTIONS(1449), + [anon_sym_GT_EQ] = ACTIONS(1449), + [anon_sym_LT_LT] = ACTIONS(1451), + [anon_sym_GT_GT] = ACTIONS(1451), + [anon_sym_PLUS] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1453), + [anon_sym_SLASH] = ACTIONS(1427), + [anon_sym_PERCENT] = ACTIONS(1427), + [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_PLUS_PLUS] = ACTIONS(1121), + [anon_sym_DOT] = ACTIONS(1123), + [anon_sym_DASH_GT] = ACTIONS(1123), [sym_comment] = ACTIONS(39), }, [836] = { [sym_argument_list] = STATE(465), - [anon_sym_SEMI] = ACTIONS(2544), - [anon_sym_LPAREN2] = ACTIONS(1096), - [anon_sym_STAR] = ACTIONS(1436), - [anon_sym_LBRACK] = ACTIONS(1100), - [anon_sym_EQ] = ACTIONS(2546), - [anon_sym_QMARK] = ACTIONS(2544), - [anon_sym_STAR_EQ] = ACTIONS(2544), - [anon_sym_SLASH_EQ] = ACTIONS(2544), - [anon_sym_PERCENT_EQ] = ACTIONS(2544), - [anon_sym_PLUS_EQ] = ACTIONS(2544), - [anon_sym_DASH_EQ] = ACTIONS(2544), - [anon_sym_LT_LT_EQ] = ACTIONS(2544), - [anon_sym_GT_GT_EQ] = ACTIONS(2544), - [anon_sym_AMP_EQ] = ACTIONS(2544), - [anon_sym_CARET_EQ] = ACTIONS(2544), - [anon_sym_PIPE_EQ] = ACTIONS(2544), - [anon_sym_AMP] = ACTIONS(1444), - [anon_sym_PIPE_PIPE] = ACTIONS(2544), - [anon_sym_AMP_AMP] = ACTIONS(2544), - [anon_sym_PIPE] = ACTIONS(2546), - [anon_sym_CARET] = ACTIONS(1452), - [anon_sym_EQ_EQ] = ACTIONS(1454), - [anon_sym_BANG_EQ] = ACTIONS(1454), - [anon_sym_LT] = ACTIONS(1456), - [anon_sym_GT] = ACTIONS(1456), - [anon_sym_LT_EQ] = ACTIONS(1458), - [anon_sym_GT_EQ] = ACTIONS(1458), - [anon_sym_LT_LT] = ACTIONS(1460), - [anon_sym_GT_GT] = ACTIONS(1460), - [anon_sym_PLUS] = ACTIONS(1462), - [anon_sym_DASH] = ACTIONS(1462), - [anon_sym_SLASH] = ACTIONS(1436), - [anon_sym_PERCENT] = ACTIONS(1436), - [anon_sym_DASH_DASH] = ACTIONS(1128), - [anon_sym_PLUS_PLUS] = ACTIONS(1128), - [anon_sym_DOT] = ACTIONS(1130), - [anon_sym_DASH_GT] = ACTIONS(1130), + [anon_sym_SEMI] = ACTIONS(2533), + [anon_sym_LPAREN2] = ACTIONS(1089), + [anon_sym_STAR] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(2535), + [anon_sym_QMARK] = ACTIONS(2533), + [anon_sym_STAR_EQ] = ACTIONS(2533), + [anon_sym_SLASH_EQ] = ACTIONS(2533), + [anon_sym_PERCENT_EQ] = ACTIONS(2533), + [anon_sym_PLUS_EQ] = ACTIONS(2533), + [anon_sym_DASH_EQ] = ACTIONS(2533), + [anon_sym_LT_LT_EQ] = ACTIONS(2533), + [anon_sym_GT_GT_EQ] = ACTIONS(2533), + [anon_sym_AMP_EQ] = ACTIONS(2533), + [anon_sym_CARET_EQ] = ACTIONS(2533), + [anon_sym_PIPE_EQ] = ACTIONS(2533), + [anon_sym_AMP] = ACTIONS(1435), + [anon_sym_PIPE_PIPE] = ACTIONS(2533), + [anon_sym_AMP_AMP] = ACTIONS(2533), + [anon_sym_PIPE] = ACTIONS(2535), + [anon_sym_CARET] = ACTIONS(1443), + [anon_sym_EQ_EQ] = ACTIONS(1445), + [anon_sym_BANG_EQ] = ACTIONS(1445), + [anon_sym_LT] = ACTIONS(1447), + [anon_sym_GT] = ACTIONS(1447), + [anon_sym_LT_EQ] = ACTIONS(1449), + [anon_sym_GT_EQ] = ACTIONS(1449), + [anon_sym_LT_LT] = ACTIONS(1451), + [anon_sym_GT_GT] = ACTIONS(1451), + [anon_sym_PLUS] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1453), + [anon_sym_SLASH] = ACTIONS(1427), + [anon_sym_PERCENT] = ACTIONS(1427), + [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_PLUS_PLUS] = ACTIONS(1121), + [anon_sym_DOT] = ACTIONS(1123), + [anon_sym_DASH_GT] = ACTIONS(1123), [sym_comment] = ACTIONS(39), }, [837] = { [sym_argument_list] = STATE(465), - [anon_sym_SEMI] = ACTIONS(2544), - [anon_sym_LPAREN2] = ACTIONS(1096), - [anon_sym_STAR] = ACTIONS(1436), - [anon_sym_LBRACK] = ACTIONS(1100), - [anon_sym_EQ] = ACTIONS(2546), - [anon_sym_QMARK] = ACTIONS(2544), - [anon_sym_STAR_EQ] = ACTIONS(2544), - [anon_sym_SLASH_EQ] = ACTIONS(2544), - [anon_sym_PERCENT_EQ] = ACTIONS(2544), - [anon_sym_PLUS_EQ] = ACTIONS(2544), - [anon_sym_DASH_EQ] = ACTIONS(2544), - [anon_sym_LT_LT_EQ] = ACTIONS(2544), - [anon_sym_GT_GT_EQ] = ACTIONS(2544), - [anon_sym_AMP_EQ] = ACTIONS(2544), - [anon_sym_CARET_EQ] = ACTIONS(2544), - [anon_sym_PIPE_EQ] = ACTIONS(2544), - [anon_sym_AMP] = ACTIONS(1444), - [anon_sym_PIPE_PIPE] = ACTIONS(2544), - [anon_sym_AMP_AMP] = ACTIONS(2544), - [anon_sym_PIPE] = ACTIONS(2546), - [anon_sym_CARET] = ACTIONS(2546), - [anon_sym_EQ_EQ] = ACTIONS(1454), - [anon_sym_BANG_EQ] = ACTIONS(1454), - [anon_sym_LT] = ACTIONS(1456), - [anon_sym_GT] = ACTIONS(1456), - [anon_sym_LT_EQ] = ACTIONS(1458), - [anon_sym_GT_EQ] = ACTIONS(1458), - [anon_sym_LT_LT] = ACTIONS(1460), - [anon_sym_GT_GT] = ACTIONS(1460), - [anon_sym_PLUS] = ACTIONS(1462), - [anon_sym_DASH] = ACTIONS(1462), - [anon_sym_SLASH] = ACTIONS(1436), - [anon_sym_PERCENT] = ACTIONS(1436), - [anon_sym_DASH_DASH] = ACTIONS(1128), - [anon_sym_PLUS_PLUS] = ACTIONS(1128), - [anon_sym_DOT] = ACTIONS(1130), - [anon_sym_DASH_GT] = ACTIONS(1130), + [anon_sym_SEMI] = ACTIONS(2533), + [anon_sym_LPAREN2] = ACTIONS(1089), + [anon_sym_STAR] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(2535), + [anon_sym_QMARK] = ACTIONS(2533), + [anon_sym_STAR_EQ] = ACTIONS(2533), + [anon_sym_SLASH_EQ] = ACTIONS(2533), + [anon_sym_PERCENT_EQ] = ACTIONS(2533), + [anon_sym_PLUS_EQ] = ACTIONS(2533), + [anon_sym_DASH_EQ] = ACTIONS(2533), + [anon_sym_LT_LT_EQ] = ACTIONS(2533), + [anon_sym_GT_GT_EQ] = ACTIONS(2533), + [anon_sym_AMP_EQ] = ACTIONS(2533), + [anon_sym_CARET_EQ] = ACTIONS(2533), + [anon_sym_PIPE_EQ] = ACTIONS(2533), + [anon_sym_AMP] = ACTIONS(1435), + [anon_sym_PIPE_PIPE] = ACTIONS(2533), + [anon_sym_AMP_AMP] = ACTIONS(2533), + [anon_sym_PIPE] = ACTIONS(2535), + [anon_sym_CARET] = ACTIONS(2535), + [anon_sym_EQ_EQ] = ACTIONS(1445), + [anon_sym_BANG_EQ] = ACTIONS(1445), + [anon_sym_LT] = ACTIONS(1447), + [anon_sym_GT] = ACTIONS(1447), + [anon_sym_LT_EQ] = ACTIONS(1449), + [anon_sym_GT_EQ] = ACTIONS(1449), + [anon_sym_LT_LT] = ACTIONS(1451), + [anon_sym_GT_GT] = ACTIONS(1451), + [anon_sym_PLUS] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1453), + [anon_sym_SLASH] = ACTIONS(1427), + [anon_sym_PERCENT] = ACTIONS(1427), + [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_PLUS_PLUS] = ACTIONS(1121), + [anon_sym_DOT] = ACTIONS(1123), + [anon_sym_DASH_GT] = ACTIONS(1123), [sym_comment] = ACTIONS(39), }, [838] = { [sym_argument_list] = STATE(465), - [anon_sym_SEMI] = ACTIONS(2552), - [anon_sym_LPAREN2] = ACTIONS(1096), - [anon_sym_STAR] = ACTIONS(1436), - [anon_sym_LBRACK] = ACTIONS(1100), - [anon_sym_EQ] = ACTIONS(2554), - [anon_sym_QMARK] = ACTIONS(2552), - [anon_sym_STAR_EQ] = ACTIONS(2552), - [anon_sym_SLASH_EQ] = ACTIONS(2552), - [anon_sym_PERCENT_EQ] = ACTIONS(2552), - [anon_sym_PLUS_EQ] = ACTIONS(2552), - [anon_sym_DASH_EQ] = ACTIONS(2552), - [anon_sym_LT_LT_EQ] = ACTIONS(2552), - [anon_sym_GT_GT_EQ] = ACTIONS(2552), - [anon_sym_AMP_EQ] = ACTIONS(2552), - [anon_sym_CARET_EQ] = ACTIONS(2552), - [anon_sym_PIPE_EQ] = ACTIONS(2552), - [anon_sym_AMP] = ACTIONS(2554), - [anon_sym_PIPE_PIPE] = ACTIONS(2552), - [anon_sym_AMP_AMP] = ACTIONS(2552), - [anon_sym_PIPE] = ACTIONS(2554), - [anon_sym_CARET] = ACTIONS(2554), - [anon_sym_EQ_EQ] = ACTIONS(2552), - [anon_sym_BANG_EQ] = ACTIONS(2552), - [anon_sym_LT] = ACTIONS(1456), - [anon_sym_GT] = ACTIONS(1456), - [anon_sym_LT_EQ] = ACTIONS(1458), - [anon_sym_GT_EQ] = ACTIONS(1458), - [anon_sym_LT_LT] = ACTIONS(1460), - [anon_sym_GT_GT] = ACTIONS(1460), - [anon_sym_PLUS] = ACTIONS(1462), - [anon_sym_DASH] = ACTIONS(1462), - [anon_sym_SLASH] = ACTIONS(1436), - [anon_sym_PERCENT] = ACTIONS(1436), - [anon_sym_DASH_DASH] = ACTIONS(1128), - [anon_sym_PLUS_PLUS] = ACTIONS(1128), - [anon_sym_DOT] = ACTIONS(1130), - [anon_sym_DASH_GT] = ACTIONS(1130), + [anon_sym_SEMI] = ACTIONS(2541), + [anon_sym_LPAREN2] = ACTIONS(1089), + [anon_sym_STAR] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(2543), + [anon_sym_QMARK] = ACTIONS(2541), + [anon_sym_STAR_EQ] = ACTIONS(2541), + [anon_sym_SLASH_EQ] = ACTIONS(2541), + [anon_sym_PERCENT_EQ] = ACTIONS(2541), + [anon_sym_PLUS_EQ] = ACTIONS(2541), + [anon_sym_DASH_EQ] = ACTIONS(2541), + [anon_sym_LT_LT_EQ] = ACTIONS(2541), + [anon_sym_GT_GT_EQ] = ACTIONS(2541), + [anon_sym_AMP_EQ] = ACTIONS(2541), + [anon_sym_CARET_EQ] = ACTIONS(2541), + [anon_sym_PIPE_EQ] = ACTIONS(2541), + [anon_sym_AMP] = ACTIONS(2543), + [anon_sym_PIPE_PIPE] = ACTIONS(2541), + [anon_sym_AMP_AMP] = ACTIONS(2541), + [anon_sym_PIPE] = ACTIONS(2543), + [anon_sym_CARET] = ACTIONS(2543), + [anon_sym_EQ_EQ] = ACTIONS(2541), + [anon_sym_BANG_EQ] = ACTIONS(2541), + [anon_sym_LT] = ACTIONS(1447), + [anon_sym_GT] = ACTIONS(1447), + [anon_sym_LT_EQ] = ACTIONS(1449), + [anon_sym_GT_EQ] = ACTIONS(1449), + [anon_sym_LT_LT] = ACTIONS(1451), + [anon_sym_GT_GT] = ACTIONS(1451), + [anon_sym_PLUS] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1453), + [anon_sym_SLASH] = ACTIONS(1427), + [anon_sym_PERCENT] = ACTIONS(1427), + [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_PLUS_PLUS] = ACTIONS(1121), + [anon_sym_DOT] = ACTIONS(1123), + [anon_sym_DASH_GT] = ACTIONS(1123), [sym_comment] = ACTIONS(39), }, [839] = { [sym_argument_list] = STATE(465), - [anon_sym_SEMI] = ACTIONS(2556), - [anon_sym_LPAREN2] = ACTIONS(1096), - [anon_sym_STAR] = ACTIONS(1436), - [anon_sym_LBRACK] = ACTIONS(1100), - [anon_sym_EQ] = ACTIONS(2558), - [anon_sym_QMARK] = ACTIONS(2556), - [anon_sym_STAR_EQ] = ACTIONS(2556), - [anon_sym_SLASH_EQ] = ACTIONS(2556), - [anon_sym_PERCENT_EQ] = ACTIONS(2556), - [anon_sym_PLUS_EQ] = ACTIONS(2556), - [anon_sym_DASH_EQ] = ACTIONS(2556), - [anon_sym_LT_LT_EQ] = ACTIONS(2556), - [anon_sym_GT_GT_EQ] = ACTIONS(2556), - [anon_sym_AMP_EQ] = ACTIONS(2556), - [anon_sym_CARET_EQ] = ACTIONS(2556), - [anon_sym_PIPE_EQ] = ACTIONS(2556), - [anon_sym_AMP] = ACTIONS(2558), - [anon_sym_PIPE_PIPE] = ACTIONS(2556), - [anon_sym_AMP_AMP] = ACTIONS(2556), - [anon_sym_PIPE] = ACTIONS(2558), - [anon_sym_CARET] = ACTIONS(2558), - [anon_sym_EQ_EQ] = ACTIONS(2556), - [anon_sym_BANG_EQ] = ACTIONS(2556), - [anon_sym_LT] = ACTIONS(2558), - [anon_sym_GT] = ACTIONS(2558), - [anon_sym_LT_EQ] = ACTIONS(2556), - [anon_sym_GT_EQ] = ACTIONS(2556), - [anon_sym_LT_LT] = ACTIONS(1460), - [anon_sym_GT_GT] = ACTIONS(1460), - [anon_sym_PLUS] = ACTIONS(1462), - [anon_sym_DASH] = ACTIONS(1462), - [anon_sym_SLASH] = ACTIONS(1436), - [anon_sym_PERCENT] = ACTIONS(1436), - [anon_sym_DASH_DASH] = ACTIONS(1128), - [anon_sym_PLUS_PLUS] = ACTIONS(1128), - [anon_sym_DOT] = ACTIONS(1130), - [anon_sym_DASH_GT] = ACTIONS(1130), + [anon_sym_SEMI] = ACTIONS(2545), + [anon_sym_LPAREN2] = ACTIONS(1089), + [anon_sym_STAR] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(2547), + [anon_sym_QMARK] = ACTIONS(2545), + [anon_sym_STAR_EQ] = ACTIONS(2545), + [anon_sym_SLASH_EQ] = ACTIONS(2545), + [anon_sym_PERCENT_EQ] = ACTIONS(2545), + [anon_sym_PLUS_EQ] = ACTIONS(2545), + [anon_sym_DASH_EQ] = ACTIONS(2545), + [anon_sym_LT_LT_EQ] = ACTIONS(2545), + [anon_sym_GT_GT_EQ] = ACTIONS(2545), + [anon_sym_AMP_EQ] = ACTIONS(2545), + [anon_sym_CARET_EQ] = ACTIONS(2545), + [anon_sym_PIPE_EQ] = ACTIONS(2545), + [anon_sym_AMP] = ACTIONS(2547), + [anon_sym_PIPE_PIPE] = ACTIONS(2545), + [anon_sym_AMP_AMP] = ACTIONS(2545), + [anon_sym_PIPE] = ACTIONS(2547), + [anon_sym_CARET] = ACTIONS(2547), + [anon_sym_EQ_EQ] = ACTIONS(2545), + [anon_sym_BANG_EQ] = ACTIONS(2545), + [anon_sym_LT] = ACTIONS(2547), + [anon_sym_GT] = ACTIONS(2547), + [anon_sym_LT_EQ] = ACTIONS(2545), + [anon_sym_GT_EQ] = ACTIONS(2545), + [anon_sym_LT_LT] = ACTIONS(1451), + [anon_sym_GT_GT] = ACTIONS(1451), + [anon_sym_PLUS] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1453), + [anon_sym_SLASH] = ACTIONS(1427), + [anon_sym_PERCENT] = ACTIONS(1427), + [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_PLUS_PLUS] = ACTIONS(1121), + [anon_sym_DOT] = ACTIONS(1123), + [anon_sym_DASH_GT] = ACTIONS(1123), [sym_comment] = ACTIONS(39), }, [840] = { [sym_argument_list] = STATE(465), - [anon_sym_SEMI] = ACTIONS(2560), - [anon_sym_LPAREN2] = ACTIONS(1096), - [anon_sym_STAR] = ACTIONS(1436), - [anon_sym_LBRACK] = ACTIONS(1100), - [anon_sym_EQ] = ACTIONS(2562), - [anon_sym_QMARK] = ACTIONS(2560), - [anon_sym_STAR_EQ] = ACTIONS(2560), - [anon_sym_SLASH_EQ] = ACTIONS(2560), - [anon_sym_PERCENT_EQ] = ACTIONS(2560), - [anon_sym_PLUS_EQ] = ACTIONS(2560), - [anon_sym_DASH_EQ] = ACTIONS(2560), - [anon_sym_LT_LT_EQ] = ACTIONS(2560), - [anon_sym_GT_GT_EQ] = ACTIONS(2560), - [anon_sym_AMP_EQ] = ACTIONS(2560), - [anon_sym_CARET_EQ] = ACTIONS(2560), - [anon_sym_PIPE_EQ] = ACTIONS(2560), - [anon_sym_AMP] = ACTIONS(2562), - [anon_sym_PIPE_PIPE] = ACTIONS(2560), - [anon_sym_AMP_AMP] = ACTIONS(2560), - [anon_sym_PIPE] = ACTIONS(2562), - [anon_sym_CARET] = ACTIONS(2562), - [anon_sym_EQ_EQ] = ACTIONS(2560), - [anon_sym_BANG_EQ] = ACTIONS(2560), - [anon_sym_LT] = ACTIONS(2562), - [anon_sym_GT] = ACTIONS(2562), - [anon_sym_LT_EQ] = ACTIONS(2560), - [anon_sym_GT_EQ] = ACTIONS(2560), - [anon_sym_LT_LT] = ACTIONS(2562), - [anon_sym_GT_GT] = ACTIONS(2562), - [anon_sym_PLUS] = ACTIONS(1462), - [anon_sym_DASH] = ACTIONS(1462), - [anon_sym_SLASH] = ACTIONS(1436), - [anon_sym_PERCENT] = ACTIONS(1436), - [anon_sym_DASH_DASH] = ACTIONS(1128), - [anon_sym_PLUS_PLUS] = ACTIONS(1128), - [anon_sym_DOT] = ACTIONS(1130), - [anon_sym_DASH_GT] = ACTIONS(1130), + [anon_sym_SEMI] = ACTIONS(2549), + [anon_sym_LPAREN2] = ACTIONS(1089), + [anon_sym_STAR] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(2551), + [anon_sym_QMARK] = ACTIONS(2549), + [anon_sym_STAR_EQ] = ACTIONS(2549), + [anon_sym_SLASH_EQ] = ACTIONS(2549), + [anon_sym_PERCENT_EQ] = ACTIONS(2549), + [anon_sym_PLUS_EQ] = ACTIONS(2549), + [anon_sym_DASH_EQ] = ACTIONS(2549), + [anon_sym_LT_LT_EQ] = ACTIONS(2549), + [anon_sym_GT_GT_EQ] = ACTIONS(2549), + [anon_sym_AMP_EQ] = ACTIONS(2549), + [anon_sym_CARET_EQ] = ACTIONS(2549), + [anon_sym_PIPE_EQ] = ACTIONS(2549), + [anon_sym_AMP] = ACTIONS(2551), + [anon_sym_PIPE_PIPE] = ACTIONS(2549), + [anon_sym_AMP_AMP] = ACTIONS(2549), + [anon_sym_PIPE] = ACTIONS(2551), + [anon_sym_CARET] = ACTIONS(2551), + [anon_sym_EQ_EQ] = ACTIONS(2549), + [anon_sym_BANG_EQ] = ACTIONS(2549), + [anon_sym_LT] = ACTIONS(2551), + [anon_sym_GT] = ACTIONS(2551), + [anon_sym_LT_EQ] = ACTIONS(2549), + [anon_sym_GT_EQ] = ACTIONS(2549), + [anon_sym_LT_LT] = ACTIONS(2551), + [anon_sym_GT_GT] = ACTIONS(2551), + [anon_sym_PLUS] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1453), + [anon_sym_SLASH] = ACTIONS(1427), + [anon_sym_PERCENT] = ACTIONS(1427), + [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_PLUS_PLUS] = ACTIONS(1121), + [anon_sym_DOT] = ACTIONS(1123), + [anon_sym_DASH_GT] = ACTIONS(1123), [sym_comment] = ACTIONS(39), }, [841] = { [sym_argument_list] = STATE(465), - [anon_sym_SEMI] = ACTIONS(2534), - [anon_sym_LPAREN2] = ACTIONS(1096), - [anon_sym_STAR] = ACTIONS(1436), - [anon_sym_LBRACK] = ACTIONS(1100), - [anon_sym_EQ] = ACTIONS(2536), - [anon_sym_QMARK] = ACTIONS(2534), - [anon_sym_STAR_EQ] = ACTIONS(2534), - [anon_sym_SLASH_EQ] = ACTIONS(2534), - [anon_sym_PERCENT_EQ] = ACTIONS(2534), - [anon_sym_PLUS_EQ] = ACTIONS(2534), - [anon_sym_DASH_EQ] = ACTIONS(2534), - [anon_sym_LT_LT_EQ] = ACTIONS(2534), - [anon_sym_GT_GT_EQ] = ACTIONS(2534), - [anon_sym_AMP_EQ] = ACTIONS(2534), - [anon_sym_CARET_EQ] = ACTIONS(2534), - [anon_sym_PIPE_EQ] = ACTIONS(2534), - [anon_sym_AMP] = ACTIONS(2536), - [anon_sym_PIPE_PIPE] = ACTIONS(2534), - [anon_sym_AMP_AMP] = ACTIONS(2534), - [anon_sym_PIPE] = ACTIONS(2536), - [anon_sym_CARET] = ACTIONS(2536), - [anon_sym_EQ_EQ] = ACTIONS(2534), - [anon_sym_BANG_EQ] = ACTIONS(2534), - [anon_sym_LT] = ACTIONS(2536), - [anon_sym_GT] = ACTIONS(2536), - [anon_sym_LT_EQ] = ACTIONS(2534), - [anon_sym_GT_EQ] = ACTIONS(2534), - [anon_sym_LT_LT] = ACTIONS(2536), - [anon_sym_GT_GT] = ACTIONS(2536), - [anon_sym_PLUS] = ACTIONS(2536), - [anon_sym_DASH] = ACTIONS(2536), - [anon_sym_SLASH] = ACTIONS(1436), - [anon_sym_PERCENT] = ACTIONS(1436), - [anon_sym_DASH_DASH] = ACTIONS(1128), - [anon_sym_PLUS_PLUS] = ACTIONS(1128), - [anon_sym_DOT] = ACTIONS(1130), - [anon_sym_DASH_GT] = ACTIONS(1130), + [anon_sym_SEMI] = ACTIONS(2523), + [anon_sym_LPAREN2] = ACTIONS(1089), + [anon_sym_STAR] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(2525), + [anon_sym_QMARK] = ACTIONS(2523), + [anon_sym_STAR_EQ] = ACTIONS(2523), + [anon_sym_SLASH_EQ] = ACTIONS(2523), + [anon_sym_PERCENT_EQ] = ACTIONS(2523), + [anon_sym_PLUS_EQ] = ACTIONS(2523), + [anon_sym_DASH_EQ] = ACTIONS(2523), + [anon_sym_LT_LT_EQ] = ACTIONS(2523), + [anon_sym_GT_GT_EQ] = ACTIONS(2523), + [anon_sym_AMP_EQ] = ACTIONS(2523), + [anon_sym_CARET_EQ] = ACTIONS(2523), + [anon_sym_PIPE_EQ] = ACTIONS(2523), + [anon_sym_AMP] = ACTIONS(2525), + [anon_sym_PIPE_PIPE] = ACTIONS(2523), + [anon_sym_AMP_AMP] = ACTIONS(2523), + [anon_sym_PIPE] = ACTIONS(2525), + [anon_sym_CARET] = ACTIONS(2525), + [anon_sym_EQ_EQ] = ACTIONS(2523), + [anon_sym_BANG_EQ] = ACTIONS(2523), + [anon_sym_LT] = ACTIONS(2525), + [anon_sym_GT] = ACTIONS(2525), + [anon_sym_LT_EQ] = ACTIONS(2523), + [anon_sym_GT_EQ] = ACTIONS(2523), + [anon_sym_LT_LT] = ACTIONS(2525), + [anon_sym_GT_GT] = ACTIONS(2525), + [anon_sym_PLUS] = ACTIONS(2525), + [anon_sym_DASH] = ACTIONS(2525), + [anon_sym_SLASH] = ACTIONS(1427), + [anon_sym_PERCENT] = ACTIONS(1427), + [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_PLUS_PLUS] = ACTIONS(1121), + [anon_sym_DOT] = ACTIONS(1123), + [anon_sym_DASH_GT] = ACTIONS(1123), [sym_comment] = ACTIONS(39), }, [842] = { [sym_string_literal] = STATE(842), [aux_sym_concatenated_string_repeat1] = STATE(842), - [anon_sym_SEMI] = ACTIONS(2568), - [anon_sym_LPAREN2] = ACTIONS(2568), - [anon_sym_STAR] = ACTIONS(2570), - [anon_sym_LBRACK] = ACTIONS(2568), - [anon_sym_EQ] = ACTIONS(2570), - [anon_sym_QMARK] = ACTIONS(2568), - [anon_sym_STAR_EQ] = ACTIONS(2568), - [anon_sym_SLASH_EQ] = ACTIONS(2568), - [anon_sym_PERCENT_EQ] = ACTIONS(2568), - [anon_sym_PLUS_EQ] = ACTIONS(2568), - [anon_sym_DASH_EQ] = ACTIONS(2568), - [anon_sym_LT_LT_EQ] = ACTIONS(2568), - [anon_sym_GT_GT_EQ] = ACTIONS(2568), - [anon_sym_AMP_EQ] = ACTIONS(2568), - [anon_sym_CARET_EQ] = ACTIONS(2568), - [anon_sym_PIPE_EQ] = ACTIONS(2568), - [anon_sym_AMP] = ACTIONS(2570), - [anon_sym_PIPE_PIPE] = ACTIONS(2568), - [anon_sym_AMP_AMP] = ACTIONS(2568), - [anon_sym_PIPE] = ACTIONS(2570), - [anon_sym_CARET] = ACTIONS(2570), - [anon_sym_EQ_EQ] = ACTIONS(2568), - [anon_sym_BANG_EQ] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_GT] = ACTIONS(2570), - [anon_sym_LT_EQ] = ACTIONS(2568), - [anon_sym_GT_EQ] = ACTIONS(2568), - [anon_sym_LT_LT] = ACTIONS(2570), - [anon_sym_GT_GT] = ACTIONS(2570), - [anon_sym_PLUS] = ACTIONS(2570), - [anon_sym_DASH] = ACTIONS(2570), - [anon_sym_SLASH] = ACTIONS(2570), - [anon_sym_PERCENT] = ACTIONS(2570), - [anon_sym_DASH_DASH] = ACTIONS(2568), - [anon_sym_PLUS_PLUS] = ACTIONS(2568), - [anon_sym_DOT] = ACTIONS(2568), - [anon_sym_DASH_GT] = ACTIONS(2568), - [anon_sym_DQUOTE] = ACTIONS(2572), + [anon_sym_SEMI] = ACTIONS(2557), + [anon_sym_LPAREN2] = ACTIONS(2557), + [anon_sym_STAR] = ACTIONS(2559), + [anon_sym_LBRACK] = ACTIONS(2557), + [anon_sym_EQ] = ACTIONS(2559), + [anon_sym_QMARK] = ACTIONS(2557), + [anon_sym_STAR_EQ] = ACTIONS(2557), + [anon_sym_SLASH_EQ] = ACTIONS(2557), + [anon_sym_PERCENT_EQ] = ACTIONS(2557), + [anon_sym_PLUS_EQ] = ACTIONS(2557), + [anon_sym_DASH_EQ] = ACTIONS(2557), + [anon_sym_LT_LT_EQ] = ACTIONS(2557), + [anon_sym_GT_GT_EQ] = ACTIONS(2557), + [anon_sym_AMP_EQ] = ACTIONS(2557), + [anon_sym_CARET_EQ] = ACTIONS(2557), + [anon_sym_PIPE_EQ] = ACTIONS(2557), + [anon_sym_AMP] = ACTIONS(2559), + [anon_sym_PIPE_PIPE] = ACTIONS(2557), + [anon_sym_AMP_AMP] = ACTIONS(2557), + [anon_sym_PIPE] = ACTIONS(2559), + [anon_sym_CARET] = ACTIONS(2559), + [anon_sym_EQ_EQ] = ACTIONS(2557), + [anon_sym_BANG_EQ] = ACTIONS(2557), + [anon_sym_LT] = ACTIONS(2559), + [anon_sym_GT] = ACTIONS(2559), + [anon_sym_LT_EQ] = ACTIONS(2557), + [anon_sym_GT_EQ] = ACTIONS(2557), + [anon_sym_LT_LT] = ACTIONS(2559), + [anon_sym_GT_GT] = ACTIONS(2559), + [anon_sym_PLUS] = ACTIONS(2559), + [anon_sym_DASH] = ACTIONS(2559), + [anon_sym_SLASH] = ACTIONS(2559), + [anon_sym_PERCENT] = ACTIONS(2559), + [anon_sym_DASH_DASH] = ACTIONS(2557), + [anon_sym_PLUS_PLUS] = ACTIONS(2557), + [anon_sym_DOT] = ACTIONS(2557), + [anon_sym_DASH_GT] = ACTIONS(2557), + [anon_sym_DQUOTE] = ACTIONS(2561), [sym_comment] = ACTIONS(39), }, [843] = { - [anon_sym_COMMA] = ACTIONS(2677), - [anon_sym_RPAREN] = ACTIONS(2677), - [anon_sym_SEMI] = ACTIONS(2677), - [anon_sym_LPAREN2] = ACTIONS(2677), - [anon_sym_LBRACK] = ACTIONS(2677), - [anon_sym_COLON] = ACTIONS(2677), + [anon_sym_COMMA] = ACTIONS(2666), + [anon_sym_RPAREN] = ACTIONS(2666), + [anon_sym_SEMI] = ACTIONS(2666), + [anon_sym_LPAREN2] = ACTIONS(2666), + [anon_sym_LBRACK] = ACTIONS(2666), + [anon_sym_COLON] = ACTIONS(2666), [sym_comment] = ACTIONS(39), }, [844] = { [sym_argument_list] = STATE(465), - [anon_sym_LPAREN2] = ACTIONS(1096), - [anon_sym_STAR] = ACTIONS(1166), - [anon_sym_LBRACK] = ACTIONS(1100), - [anon_sym_RBRACK] = ACTIONS(2679), - [anon_sym_EQ] = ACTIONS(1168), - [anon_sym_QMARK] = ACTIONS(1170), - [anon_sym_STAR_EQ] = ACTIONS(1172), - [anon_sym_SLASH_EQ] = ACTIONS(1172), - [anon_sym_PERCENT_EQ] = ACTIONS(1172), - [anon_sym_PLUS_EQ] = ACTIONS(1172), - [anon_sym_DASH_EQ] = ACTIONS(1172), - [anon_sym_LT_LT_EQ] = ACTIONS(1172), - [anon_sym_GT_GT_EQ] = ACTIONS(1172), - [anon_sym_AMP_EQ] = ACTIONS(1172), - [anon_sym_CARET_EQ] = ACTIONS(1172), - [anon_sym_PIPE_EQ] = ACTIONS(1172), - [anon_sym_AMP] = ACTIONS(1174), - [anon_sym_PIPE_PIPE] = ACTIONS(1176), - [anon_sym_AMP_AMP] = ACTIONS(1178), - [anon_sym_PIPE] = ACTIONS(1180), - [anon_sym_CARET] = ACTIONS(1182), - [anon_sym_EQ_EQ] = ACTIONS(1184), - [anon_sym_BANG_EQ] = ACTIONS(1184), - [anon_sym_LT] = ACTIONS(1186), - [anon_sym_GT] = ACTIONS(1186), - [anon_sym_LT_EQ] = ACTIONS(1188), - [anon_sym_GT_EQ] = ACTIONS(1188), - [anon_sym_LT_LT] = ACTIONS(1190), - [anon_sym_GT_GT] = ACTIONS(1190), - [anon_sym_PLUS] = ACTIONS(1192), - [anon_sym_DASH] = ACTIONS(1192), - [anon_sym_SLASH] = ACTIONS(1166), - [anon_sym_PERCENT] = ACTIONS(1166), - [anon_sym_DASH_DASH] = ACTIONS(1128), - [anon_sym_PLUS_PLUS] = ACTIONS(1128), - [anon_sym_DOT] = ACTIONS(1130), - [anon_sym_DASH_GT] = ACTIONS(1130), + [anon_sym_LPAREN2] = ACTIONS(1089), + [anon_sym_STAR] = ACTIONS(1159), + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_RBRACK] = ACTIONS(2668), + [anon_sym_EQ] = ACTIONS(1161), + [anon_sym_QMARK] = ACTIONS(1163), + [anon_sym_STAR_EQ] = ACTIONS(1165), + [anon_sym_SLASH_EQ] = ACTIONS(1165), + [anon_sym_PERCENT_EQ] = ACTIONS(1165), + [anon_sym_PLUS_EQ] = ACTIONS(1165), + [anon_sym_DASH_EQ] = ACTIONS(1165), + [anon_sym_LT_LT_EQ] = ACTIONS(1165), + [anon_sym_GT_GT_EQ] = ACTIONS(1165), + [anon_sym_AMP_EQ] = ACTIONS(1165), + [anon_sym_CARET_EQ] = ACTIONS(1165), + [anon_sym_PIPE_EQ] = ACTIONS(1165), + [anon_sym_AMP] = ACTIONS(1167), + [anon_sym_PIPE_PIPE] = ACTIONS(1169), + [anon_sym_AMP_AMP] = ACTIONS(1171), + [anon_sym_PIPE] = ACTIONS(1173), + [anon_sym_CARET] = ACTIONS(1175), + [anon_sym_EQ_EQ] = ACTIONS(1177), + [anon_sym_BANG_EQ] = ACTIONS(1177), + [anon_sym_LT] = ACTIONS(1179), + [anon_sym_GT] = ACTIONS(1179), + [anon_sym_LT_EQ] = ACTIONS(1181), + [anon_sym_GT_EQ] = ACTIONS(1181), + [anon_sym_LT_LT] = ACTIONS(1183), + [anon_sym_GT_GT] = ACTIONS(1183), + [anon_sym_PLUS] = ACTIONS(1185), + [anon_sym_DASH] = ACTIONS(1185), + [anon_sym_SLASH] = ACTIONS(1159), + [anon_sym_PERCENT] = ACTIONS(1159), + [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_PLUS_PLUS] = ACTIONS(1121), + [anon_sym_DOT] = ACTIONS(1123), + [anon_sym_DASH_GT] = ACTIONS(1123), [sym_comment] = ACTIONS(39), }, [845] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2681), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2683), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2683), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2683), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2683), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2683), - [anon_sym_extern] = ACTIONS(2681), - [anon_sym_RBRACE] = ACTIONS(2683), - [anon_sym_static] = ACTIONS(2681), - [anon_sym_auto] = ACTIONS(2681), - [anon_sym_register] = ACTIONS(2681), - [anon_sym_inline] = ACTIONS(2681), - [anon_sym_const] = ACTIONS(2681), - [anon_sym_restrict] = ACTIONS(2681), - [anon_sym_volatile] = ACTIONS(2681), - [anon_sym__Atomic] = ACTIONS(2681), - [anon_sym_unsigned] = ACTIONS(2681), - [anon_sym_long] = ACTIONS(2681), - [anon_sym_short] = ACTIONS(2681), - [sym_primitive_type] = ACTIONS(2681), - [anon_sym_enum] = ACTIONS(2681), - [anon_sym_struct] = ACTIONS(2681), - [anon_sym_union] = ACTIONS(2681), - [sym_identifier] = ACTIONS(2681), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2670), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2672), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2672), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2672), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2672), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2672), + [anon_sym_extern] = ACTIONS(2670), + [anon_sym_RBRACE] = ACTIONS(2672), + [anon_sym_static] = ACTIONS(2670), + [anon_sym_auto] = ACTIONS(2670), + [anon_sym_register] = ACTIONS(2670), + [anon_sym_inline] = ACTIONS(2670), + [anon_sym_const] = ACTIONS(2670), + [anon_sym_restrict] = ACTIONS(2670), + [anon_sym_volatile] = ACTIONS(2670), + [anon_sym__Atomic] = ACTIONS(2670), + [anon_sym_unsigned] = ACTIONS(2670), + [anon_sym_long] = ACTIONS(2670), + [anon_sym_short] = ACTIONS(2670), + [sym_primitive_type] = ACTIONS(2670), + [anon_sym_enum] = ACTIONS(2670), + [anon_sym_struct] = ACTIONS(2670), + [anon_sym_union] = ACTIONS(2670), + [sym_identifier] = ACTIONS(2670), [sym_comment] = ACTIONS(39), }, [846] = { [sym_argument_list] = STATE(465), - [anon_sym_SEMI] = ACTIONS(2685), - [anon_sym_LPAREN2] = ACTIONS(1096), - [anon_sym_STAR] = ACTIONS(1436), - [anon_sym_LBRACK] = ACTIONS(1100), - [anon_sym_EQ] = ACTIONS(1438), - [anon_sym_QMARK] = ACTIONS(1440), - [anon_sym_STAR_EQ] = ACTIONS(1442), - [anon_sym_SLASH_EQ] = ACTIONS(1442), - [anon_sym_PERCENT_EQ] = ACTIONS(1442), - [anon_sym_PLUS_EQ] = ACTIONS(1442), - [anon_sym_DASH_EQ] = ACTIONS(1442), - [anon_sym_LT_LT_EQ] = ACTIONS(1442), - [anon_sym_GT_GT_EQ] = ACTIONS(1442), - [anon_sym_AMP_EQ] = ACTIONS(1442), - [anon_sym_CARET_EQ] = ACTIONS(1442), - [anon_sym_PIPE_EQ] = ACTIONS(1442), - [anon_sym_AMP] = ACTIONS(1444), - [anon_sym_PIPE_PIPE] = ACTIONS(1446), - [anon_sym_AMP_AMP] = ACTIONS(1448), - [anon_sym_PIPE] = ACTIONS(1450), - [anon_sym_CARET] = ACTIONS(1452), - [anon_sym_EQ_EQ] = ACTIONS(1454), - [anon_sym_BANG_EQ] = ACTIONS(1454), - [anon_sym_LT] = ACTIONS(1456), - [anon_sym_GT] = ACTIONS(1456), - [anon_sym_LT_EQ] = ACTIONS(1458), - [anon_sym_GT_EQ] = ACTIONS(1458), - [anon_sym_LT_LT] = ACTIONS(1460), - [anon_sym_GT_GT] = ACTIONS(1460), - [anon_sym_PLUS] = ACTIONS(1462), - [anon_sym_DASH] = ACTIONS(1462), - [anon_sym_SLASH] = ACTIONS(1436), - [anon_sym_PERCENT] = ACTIONS(1436), - [anon_sym_DASH_DASH] = ACTIONS(1128), - [anon_sym_PLUS_PLUS] = ACTIONS(1128), - [anon_sym_DOT] = ACTIONS(1130), - [anon_sym_DASH_GT] = ACTIONS(1130), + [anon_sym_SEMI] = ACTIONS(2674), + [anon_sym_LPAREN2] = ACTIONS(1089), + [anon_sym_STAR] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(1429), + [anon_sym_QMARK] = ACTIONS(1431), + [anon_sym_STAR_EQ] = ACTIONS(1433), + [anon_sym_SLASH_EQ] = ACTIONS(1433), + [anon_sym_PERCENT_EQ] = ACTIONS(1433), + [anon_sym_PLUS_EQ] = ACTIONS(1433), + [anon_sym_DASH_EQ] = ACTIONS(1433), + [anon_sym_LT_LT_EQ] = ACTIONS(1433), + [anon_sym_GT_GT_EQ] = ACTIONS(1433), + [anon_sym_AMP_EQ] = ACTIONS(1433), + [anon_sym_CARET_EQ] = ACTIONS(1433), + [anon_sym_PIPE_EQ] = ACTIONS(1433), + [anon_sym_AMP] = ACTIONS(1435), + [anon_sym_PIPE_PIPE] = ACTIONS(1437), + [anon_sym_AMP_AMP] = ACTIONS(1439), + [anon_sym_PIPE] = ACTIONS(1441), + [anon_sym_CARET] = ACTIONS(1443), + [anon_sym_EQ_EQ] = ACTIONS(1445), + [anon_sym_BANG_EQ] = ACTIONS(1445), + [anon_sym_LT] = ACTIONS(1447), + [anon_sym_GT] = ACTIONS(1447), + [anon_sym_LT_EQ] = ACTIONS(1449), + [anon_sym_GT_EQ] = ACTIONS(1449), + [anon_sym_LT_LT] = ACTIONS(1451), + [anon_sym_GT_GT] = ACTIONS(1451), + [anon_sym_PLUS] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1453), + [anon_sym_SLASH] = ACTIONS(1427), + [anon_sym_PERCENT] = ACTIONS(1427), + [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_PLUS_PLUS] = ACTIONS(1121), + [anon_sym_DOT] = ACTIONS(1123), + [anon_sym_DASH_GT] = ACTIONS(1123), [sym_comment] = ACTIONS(39), }, [847] = { - [anon_sym_COMMA] = ACTIONS(2687), - [anon_sym_RPAREN] = ACTIONS(2687), - [anon_sym_LPAREN2] = ACTIONS(2687), - [anon_sym_LBRACK] = ACTIONS(2687), + [anon_sym_COMMA] = ACTIONS(2676), + [anon_sym_RPAREN] = ACTIONS(2676), + [anon_sym_LPAREN2] = ACTIONS(2676), + [anon_sym_LBRACK] = ACTIONS(2676), [sym_comment] = ACTIONS(39), }, [848] = { [sym_argument_list] = STATE(465), - [anon_sym_LPAREN2] = ACTIONS(1096), - [anon_sym_STAR] = ACTIONS(1166), - [anon_sym_LBRACK] = ACTIONS(1100), - [anon_sym_RBRACK] = ACTIONS(2689), - [anon_sym_EQ] = ACTIONS(1168), - [anon_sym_QMARK] = ACTIONS(1170), - [anon_sym_STAR_EQ] = ACTIONS(1172), - [anon_sym_SLASH_EQ] = ACTIONS(1172), - [anon_sym_PERCENT_EQ] = ACTIONS(1172), - [anon_sym_PLUS_EQ] = ACTIONS(1172), - [anon_sym_DASH_EQ] = ACTIONS(1172), - [anon_sym_LT_LT_EQ] = ACTIONS(1172), - [anon_sym_GT_GT_EQ] = ACTIONS(1172), - [anon_sym_AMP_EQ] = ACTIONS(1172), - [anon_sym_CARET_EQ] = ACTIONS(1172), - [anon_sym_PIPE_EQ] = ACTIONS(1172), - [anon_sym_AMP] = ACTIONS(1174), - [anon_sym_PIPE_PIPE] = ACTIONS(1176), - [anon_sym_AMP_AMP] = ACTIONS(1178), - [anon_sym_PIPE] = ACTIONS(1180), - [anon_sym_CARET] = ACTIONS(1182), - [anon_sym_EQ_EQ] = ACTIONS(1184), - [anon_sym_BANG_EQ] = ACTIONS(1184), - [anon_sym_LT] = ACTIONS(1186), - [anon_sym_GT] = ACTIONS(1186), - [anon_sym_LT_EQ] = ACTIONS(1188), - [anon_sym_GT_EQ] = ACTIONS(1188), - [anon_sym_LT_LT] = ACTIONS(1190), - [anon_sym_GT_GT] = ACTIONS(1190), - [anon_sym_PLUS] = ACTIONS(1192), - [anon_sym_DASH] = ACTIONS(1192), - [anon_sym_SLASH] = ACTIONS(1166), - [anon_sym_PERCENT] = ACTIONS(1166), - [anon_sym_DASH_DASH] = ACTIONS(1128), - [anon_sym_PLUS_PLUS] = ACTIONS(1128), - [anon_sym_DOT] = ACTIONS(1130), - [anon_sym_DASH_GT] = ACTIONS(1130), + [anon_sym_LPAREN2] = ACTIONS(1089), + [anon_sym_STAR] = ACTIONS(1159), + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_RBRACK] = ACTIONS(2678), + [anon_sym_EQ] = ACTIONS(1161), + [anon_sym_QMARK] = ACTIONS(1163), + [anon_sym_STAR_EQ] = ACTIONS(1165), + [anon_sym_SLASH_EQ] = ACTIONS(1165), + [anon_sym_PERCENT_EQ] = ACTIONS(1165), + [anon_sym_PLUS_EQ] = ACTIONS(1165), + [anon_sym_DASH_EQ] = ACTIONS(1165), + [anon_sym_LT_LT_EQ] = ACTIONS(1165), + [anon_sym_GT_GT_EQ] = ACTIONS(1165), + [anon_sym_AMP_EQ] = ACTIONS(1165), + [anon_sym_CARET_EQ] = ACTIONS(1165), + [anon_sym_PIPE_EQ] = ACTIONS(1165), + [anon_sym_AMP] = ACTIONS(1167), + [anon_sym_PIPE_PIPE] = ACTIONS(1169), + [anon_sym_AMP_AMP] = ACTIONS(1171), + [anon_sym_PIPE] = ACTIONS(1173), + [anon_sym_CARET] = ACTIONS(1175), + [anon_sym_EQ_EQ] = ACTIONS(1177), + [anon_sym_BANG_EQ] = ACTIONS(1177), + [anon_sym_LT] = ACTIONS(1179), + [anon_sym_GT] = ACTIONS(1179), + [anon_sym_LT_EQ] = ACTIONS(1181), + [anon_sym_GT_EQ] = ACTIONS(1181), + [anon_sym_LT_LT] = ACTIONS(1183), + [anon_sym_GT_GT] = ACTIONS(1183), + [anon_sym_PLUS] = ACTIONS(1185), + [anon_sym_DASH] = ACTIONS(1185), + [anon_sym_SLASH] = ACTIONS(1159), + [anon_sym_PERCENT] = ACTIONS(1159), + [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_PLUS_PLUS] = ACTIONS(1121), + [anon_sym_DOT] = ACTIONS(1123), + [anon_sym_DASH_GT] = ACTIONS(1123), [sym_comment] = ACTIONS(39), }, [849] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(654), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(654), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(654), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(654), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(654), - [sym_preproc_directive] = ACTIONS(654), - [anon_sym_SEMI] = ACTIONS(652), - [anon_sym_typedef] = ACTIONS(654), - [anon_sym_extern] = ACTIONS(654), - [anon_sym_LBRACE] = ACTIONS(652), - [anon_sym_RBRACE] = ACTIONS(652), - [anon_sym_LPAREN2] = ACTIONS(652), - [anon_sym_STAR] = ACTIONS(652), - [anon_sym_static] = ACTIONS(654), - [anon_sym_auto] = ACTIONS(654), - [anon_sym_register] = ACTIONS(654), - [anon_sym_inline] = ACTIONS(654), - [anon_sym_const] = ACTIONS(654), - [anon_sym_restrict] = ACTIONS(654), - [anon_sym_volatile] = ACTIONS(654), - [anon_sym__Atomic] = ACTIONS(654), - [anon_sym_unsigned] = ACTIONS(654), - [anon_sym_long] = ACTIONS(654), - [anon_sym_short] = ACTIONS(654), - [sym_primitive_type] = ACTIONS(654), - [anon_sym_enum] = ACTIONS(654), - [anon_sym_struct] = ACTIONS(654), - [anon_sym_union] = ACTIONS(654), - [anon_sym_if] = ACTIONS(654), - [anon_sym_switch] = ACTIONS(654), - [anon_sym_case] = ACTIONS(654), - [anon_sym_default] = ACTIONS(654), - [anon_sym_while] = ACTIONS(654), - [anon_sym_do] = ACTIONS(654), - [anon_sym_for] = ACTIONS(654), - [anon_sym_return] = ACTIONS(654), - [anon_sym_break] = ACTIONS(654), - [anon_sym_continue] = ACTIONS(654), - [anon_sym_goto] = ACTIONS(654), - [anon_sym_AMP] = ACTIONS(652), - [anon_sym_BANG] = ACTIONS(652), - [anon_sym_TILDE] = ACTIONS(652), - [anon_sym_PLUS] = ACTIONS(654), - [anon_sym_DASH] = ACTIONS(654), - [anon_sym_DASH_DASH] = ACTIONS(652), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_sizeof] = ACTIONS(654), - [sym_number_literal] = ACTIONS(652), - [anon_sym_SQUOTE] = ACTIONS(652), - [anon_sym_DQUOTE] = ACTIONS(652), - [sym_true] = ACTIONS(654), - [sym_false] = ACTIONS(654), - [sym_null] = ACTIONS(654), - [sym_identifier] = ACTIONS(654), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(650), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(650), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(650), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(650), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(650), + [sym_preproc_directive] = ACTIONS(650), + [anon_sym_SEMI] = ACTIONS(648), + [anon_sym_typedef] = ACTIONS(650), + [anon_sym_extern] = ACTIONS(650), + [anon_sym_LBRACE] = ACTIONS(648), + [anon_sym_RBRACE] = ACTIONS(648), + [anon_sym_LPAREN2] = ACTIONS(648), + [anon_sym_STAR] = ACTIONS(648), + [anon_sym_static] = ACTIONS(650), + [anon_sym_auto] = ACTIONS(650), + [anon_sym_register] = ACTIONS(650), + [anon_sym_inline] = ACTIONS(650), + [anon_sym_const] = ACTIONS(650), + [anon_sym_restrict] = ACTIONS(650), + [anon_sym_volatile] = ACTIONS(650), + [anon_sym__Atomic] = ACTIONS(650), + [anon_sym_unsigned] = ACTIONS(650), + [anon_sym_long] = ACTIONS(650), + [anon_sym_short] = ACTIONS(650), + [sym_primitive_type] = ACTIONS(650), + [anon_sym_enum] = ACTIONS(650), + [anon_sym_struct] = ACTIONS(650), + [anon_sym_union] = ACTIONS(650), + [anon_sym_if] = ACTIONS(650), + [anon_sym_switch] = ACTIONS(650), + [anon_sym_case] = ACTIONS(650), + [anon_sym_default] = ACTIONS(650), + [anon_sym_while] = ACTIONS(650), + [anon_sym_do] = ACTIONS(650), + [anon_sym_for] = ACTIONS(650), + [anon_sym_return] = ACTIONS(650), + [anon_sym_break] = ACTIONS(650), + [anon_sym_continue] = ACTIONS(650), + [anon_sym_goto] = ACTIONS(650), + [anon_sym_AMP] = ACTIONS(648), + [anon_sym_BANG] = ACTIONS(648), + [anon_sym_TILDE] = ACTIONS(648), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_DASH] = ACTIONS(650), + [anon_sym_DASH_DASH] = ACTIONS(648), + [anon_sym_PLUS_PLUS] = ACTIONS(648), + [anon_sym_sizeof] = ACTIONS(650), + [sym_number_literal] = ACTIONS(648), + [anon_sym_SQUOTE] = ACTIONS(648), + [anon_sym_DQUOTE] = ACTIONS(648), + [sym_true] = ACTIONS(650), + [sym_false] = ACTIONS(650), + [sym_null] = ACTIONS(650), + [sym_identifier] = ACTIONS(650), [sym_comment] = ACTIONS(39), }, [850] = { @@ -32559,21 +32578,21 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(1002), [aux_sym__declaration_specifiers_repeat1] = STATE(20), [aux_sym_sized_type_specifier_repeat1] = STATE(21), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(133), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(135), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1504), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2691), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1508), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1510), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1512), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1514), - [sym_preproc_directive] = ACTIONS(149), - [anon_sym_SEMI] = ACTIONS(1516), - [anon_sym_typedef] = ACTIONS(151), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(131), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(133), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1493), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2680), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1497), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1499), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1501), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1503), + [sym_preproc_directive] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(1505), + [anon_sym_typedef] = ACTIONS(149), [anon_sym_extern] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(734), - [anon_sym_LPAREN2] = ACTIONS(554), - [anon_sym_STAR] = ACTIONS(556), + [anon_sym_LBRACE] = ACTIONS(725), + [anon_sym_LPAREN2] = ACTIONS(550), + [anon_sym_STAR] = ACTIONS(552), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -32589,32 +32608,32 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), - [anon_sym_if] = ACTIONS(1518), - [anon_sym_switch] = ACTIONS(1520), - [anon_sym_case] = ACTIONS(1522), - [anon_sym_default] = ACTIONS(1524), - [anon_sym_while] = ACTIONS(1526), - [anon_sym_do] = ACTIONS(1528), - [anon_sym_for] = ACTIONS(1530), - [anon_sym_return] = ACTIONS(1532), - [anon_sym_break] = ACTIONS(1534), - [anon_sym_continue] = ACTIONS(1536), - [anon_sym_goto] = ACTIONS(1538), - [anon_sym_AMP] = ACTIONS(556), - [anon_sym_BANG] = ACTIONS(580), - [anon_sym_TILDE] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_DASH_DASH] = ACTIONS(586), - [anon_sym_PLUS_PLUS] = ACTIONS(586), - [anon_sym_sizeof] = ACTIONS(588), - [sym_number_literal] = ACTIONS(1540), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1542), - [sym_false] = ACTIONS(1542), - [sym_null] = ACTIONS(1542), - [sym_identifier] = ACTIONS(1544), + [anon_sym_if] = ACTIONS(1507), + [anon_sym_switch] = ACTIONS(1509), + [anon_sym_case] = ACTIONS(1511), + [anon_sym_default] = ACTIONS(1513), + [anon_sym_while] = ACTIONS(1515), + [anon_sym_do] = ACTIONS(1517), + [anon_sym_for] = ACTIONS(1519), + [anon_sym_return] = ACTIONS(1521), + [anon_sym_break] = ACTIONS(1523), + [anon_sym_continue] = ACTIONS(1525), + [anon_sym_goto] = ACTIONS(1527), + [anon_sym_AMP] = ACTIONS(552), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_TILDE] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(580), + [anon_sym_DASH] = ACTIONS(580), + [anon_sym_DASH_DASH] = ACTIONS(582), + [anon_sym_PLUS_PLUS] = ACTIONS(582), + [anon_sym_sizeof] = ACTIONS(584), + [sym_number_literal] = ACTIONS(1529), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_null] = ACTIONS(1531), + [sym_identifier] = ACTIONS(1533), [sym_comment] = ACTIONS(39), }, [851] = { @@ -32675,21 +32694,21 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(1006), [aux_sym__declaration_specifiers_repeat1] = STATE(20), [aux_sym_sized_type_specifier_repeat1] = STATE(21), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(133), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(135), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1504), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2693), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1508), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1510), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1512), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1514), - [sym_preproc_directive] = ACTIONS(149), - [anon_sym_SEMI] = ACTIONS(1516), - [anon_sym_typedef] = ACTIONS(151), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(131), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(133), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1493), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2682), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1497), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1499), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1501), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1503), + [sym_preproc_directive] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(1505), + [anon_sym_typedef] = ACTIONS(149), [anon_sym_extern] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(734), - [anon_sym_LPAREN2] = ACTIONS(554), - [anon_sym_STAR] = ACTIONS(556), + [anon_sym_LBRACE] = ACTIONS(725), + [anon_sym_LPAREN2] = ACTIONS(550), + [anon_sym_STAR] = ACTIONS(552), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -32705,32 +32724,32 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), - [anon_sym_if] = ACTIONS(1518), - [anon_sym_switch] = ACTIONS(1520), - [anon_sym_case] = ACTIONS(1522), - [anon_sym_default] = ACTIONS(1524), - [anon_sym_while] = ACTIONS(1526), - [anon_sym_do] = ACTIONS(1528), - [anon_sym_for] = ACTIONS(1530), - [anon_sym_return] = ACTIONS(1532), - [anon_sym_break] = ACTIONS(1534), - [anon_sym_continue] = ACTIONS(1536), - [anon_sym_goto] = ACTIONS(1538), - [anon_sym_AMP] = ACTIONS(556), - [anon_sym_BANG] = ACTIONS(580), - [anon_sym_TILDE] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_DASH_DASH] = ACTIONS(586), - [anon_sym_PLUS_PLUS] = ACTIONS(586), - [anon_sym_sizeof] = ACTIONS(588), - [sym_number_literal] = ACTIONS(1540), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1542), - [sym_false] = ACTIONS(1542), - [sym_null] = ACTIONS(1542), - [sym_identifier] = ACTIONS(1544), + [anon_sym_if] = ACTIONS(1507), + [anon_sym_switch] = ACTIONS(1509), + [anon_sym_case] = ACTIONS(1511), + [anon_sym_default] = ACTIONS(1513), + [anon_sym_while] = ACTIONS(1515), + [anon_sym_do] = ACTIONS(1517), + [anon_sym_for] = ACTIONS(1519), + [anon_sym_return] = ACTIONS(1521), + [anon_sym_break] = ACTIONS(1523), + [anon_sym_continue] = ACTIONS(1525), + [anon_sym_goto] = ACTIONS(1527), + [anon_sym_AMP] = ACTIONS(552), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_TILDE] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(580), + [anon_sym_DASH] = ACTIONS(580), + [anon_sym_DASH_DASH] = ACTIONS(582), + [anon_sym_PLUS_PLUS] = ACTIONS(582), + [anon_sym_sizeof] = ACTIONS(584), + [sym_number_literal] = ACTIONS(1529), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_null] = ACTIONS(1531), + [sym_identifier] = ACTIONS(1533), [sym_comment] = ACTIONS(39), }, [852] = { @@ -32791,21 +32810,21 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(1010), [aux_sym__declaration_specifiers_repeat1] = STATE(20), [aux_sym_sized_type_specifier_repeat1] = STATE(21), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(133), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(135), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1504), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2695), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1508), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1510), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1512), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1514), - [sym_preproc_directive] = ACTIONS(149), - [anon_sym_SEMI] = ACTIONS(1516), - [anon_sym_typedef] = ACTIONS(151), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(131), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(133), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1493), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2684), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1497), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1499), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1501), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1503), + [sym_preproc_directive] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(1505), + [anon_sym_typedef] = ACTIONS(149), [anon_sym_extern] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(734), - [anon_sym_LPAREN2] = ACTIONS(554), - [anon_sym_STAR] = ACTIONS(556), + [anon_sym_LBRACE] = ACTIONS(725), + [anon_sym_LPAREN2] = ACTIONS(550), + [anon_sym_STAR] = ACTIONS(552), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -32821,112 +32840,112 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), - [anon_sym_if] = ACTIONS(1518), - [anon_sym_switch] = ACTIONS(1520), - [anon_sym_case] = ACTIONS(1522), - [anon_sym_default] = ACTIONS(1524), - [anon_sym_while] = ACTIONS(1526), - [anon_sym_do] = ACTIONS(1528), - [anon_sym_for] = ACTIONS(1530), - [anon_sym_return] = ACTIONS(1532), - [anon_sym_break] = ACTIONS(1534), - [anon_sym_continue] = ACTIONS(1536), - [anon_sym_goto] = ACTIONS(1538), - [anon_sym_AMP] = ACTIONS(556), - [anon_sym_BANG] = ACTIONS(580), - [anon_sym_TILDE] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_DASH_DASH] = ACTIONS(586), - [anon_sym_PLUS_PLUS] = ACTIONS(586), - [anon_sym_sizeof] = ACTIONS(588), - [sym_number_literal] = ACTIONS(1540), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1542), - [sym_false] = ACTIONS(1542), - [sym_null] = ACTIONS(1542), - [sym_identifier] = ACTIONS(1544), + [anon_sym_if] = ACTIONS(1507), + [anon_sym_switch] = ACTIONS(1509), + [anon_sym_case] = ACTIONS(1511), + [anon_sym_default] = ACTIONS(1513), + [anon_sym_while] = ACTIONS(1515), + [anon_sym_do] = ACTIONS(1517), + [anon_sym_for] = ACTIONS(1519), + [anon_sym_return] = ACTIONS(1521), + [anon_sym_break] = ACTIONS(1523), + [anon_sym_continue] = ACTIONS(1525), + [anon_sym_goto] = ACTIONS(1527), + [anon_sym_AMP] = ACTIONS(552), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_TILDE] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(580), + [anon_sym_DASH] = ACTIONS(580), + [anon_sym_DASH_DASH] = ACTIONS(582), + [anon_sym_PLUS_PLUS] = ACTIONS(582), + [anon_sym_sizeof] = ACTIONS(584), + [sym_number_literal] = ACTIONS(1529), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_null] = ACTIONS(1531), + [sym_identifier] = ACTIONS(1533), [sym_comment] = ACTIONS(39), }, [853] = { - [sym_preproc_arg] = ACTIONS(2697), + [sym_preproc_arg] = ACTIONS(2686), [sym_comment] = ACTIONS(49), }, [854] = { - [sym_identifier] = ACTIONS(2699), + [sym_identifier] = ACTIONS(2688), [sym_comment] = ACTIONS(39), }, [855] = { - [sym_identifier] = ACTIONS(2701), + [sym_identifier] = ACTIONS(2690), [sym_comment] = ACTIONS(39), }, [856] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(962), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(962), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(962), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(962), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(962), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(962), - [sym_preproc_directive] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(964), - [anon_sym_typedef] = ACTIONS(962), - [anon_sym_extern] = ACTIONS(962), - [anon_sym_LBRACE] = ACTIONS(964), - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_STAR] = ACTIONS(964), - [anon_sym_static] = ACTIONS(962), - [anon_sym_auto] = ACTIONS(962), - [anon_sym_register] = ACTIONS(962), - [anon_sym_inline] = ACTIONS(962), - [anon_sym_const] = ACTIONS(962), - [anon_sym_restrict] = ACTIONS(962), - [anon_sym_volatile] = ACTIONS(962), - [anon_sym__Atomic] = ACTIONS(962), - [anon_sym_unsigned] = ACTIONS(962), - [anon_sym_long] = ACTIONS(962), - [anon_sym_short] = ACTIONS(962), - [sym_primitive_type] = ACTIONS(962), - [anon_sym_enum] = ACTIONS(962), - [anon_sym_struct] = ACTIONS(962), - [anon_sym_union] = ACTIONS(962), - [anon_sym_if] = ACTIONS(962), - [anon_sym_else] = ACTIONS(962), - [anon_sym_switch] = ACTIONS(962), - [anon_sym_case] = ACTIONS(962), - [anon_sym_default] = ACTIONS(962), - [anon_sym_while] = ACTIONS(962), - [anon_sym_do] = ACTIONS(962), - [anon_sym_for] = ACTIONS(962), - [anon_sym_return] = ACTIONS(962), - [anon_sym_break] = ACTIONS(962), - [anon_sym_continue] = ACTIONS(962), - [anon_sym_goto] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(964), - [anon_sym_BANG] = ACTIONS(964), - [anon_sym_TILDE] = ACTIONS(964), - [anon_sym_PLUS] = ACTIONS(962), - [anon_sym_DASH] = ACTIONS(962), - [anon_sym_DASH_DASH] = ACTIONS(964), - [anon_sym_PLUS_PLUS] = ACTIONS(964), - [anon_sym_sizeof] = ACTIONS(962), - [sym_number_literal] = ACTIONS(964), - [anon_sym_SQUOTE] = ACTIONS(964), - [anon_sym_DQUOTE] = ACTIONS(964), - [sym_true] = ACTIONS(962), - [sym_false] = ACTIONS(962), - [sym_null] = ACTIONS(962), - [sym_identifier] = ACTIONS(962), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(953), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(953), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(953), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(953), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(953), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(953), + [sym_preproc_directive] = ACTIONS(953), + [anon_sym_SEMI] = ACTIONS(955), + [anon_sym_typedef] = ACTIONS(953), + [anon_sym_extern] = ACTIONS(953), + [anon_sym_LBRACE] = ACTIONS(955), + [anon_sym_LPAREN2] = ACTIONS(955), + [anon_sym_STAR] = ACTIONS(955), + [anon_sym_static] = ACTIONS(953), + [anon_sym_auto] = ACTIONS(953), + [anon_sym_register] = ACTIONS(953), + [anon_sym_inline] = ACTIONS(953), + [anon_sym_const] = ACTIONS(953), + [anon_sym_restrict] = ACTIONS(953), + [anon_sym_volatile] = ACTIONS(953), + [anon_sym__Atomic] = ACTIONS(953), + [anon_sym_unsigned] = ACTIONS(953), + [anon_sym_long] = ACTIONS(953), + [anon_sym_short] = ACTIONS(953), + [sym_primitive_type] = ACTIONS(953), + [anon_sym_enum] = ACTIONS(953), + [anon_sym_struct] = ACTIONS(953), + [anon_sym_union] = ACTIONS(953), + [anon_sym_if] = ACTIONS(953), + [anon_sym_else] = ACTIONS(953), + [anon_sym_switch] = ACTIONS(953), + [anon_sym_case] = ACTIONS(953), + [anon_sym_default] = ACTIONS(953), + [anon_sym_while] = ACTIONS(953), + [anon_sym_do] = ACTIONS(953), + [anon_sym_for] = ACTIONS(953), + [anon_sym_return] = ACTIONS(953), + [anon_sym_break] = ACTIONS(953), + [anon_sym_continue] = ACTIONS(953), + [anon_sym_goto] = ACTIONS(953), + [anon_sym_AMP] = ACTIONS(955), + [anon_sym_BANG] = ACTIONS(955), + [anon_sym_TILDE] = ACTIONS(955), + [anon_sym_PLUS] = ACTIONS(953), + [anon_sym_DASH] = ACTIONS(953), + [anon_sym_DASH_DASH] = ACTIONS(955), + [anon_sym_PLUS_PLUS] = ACTIONS(955), + [anon_sym_sizeof] = ACTIONS(953), + [sym_number_literal] = ACTIONS(955), + [anon_sym_SQUOTE] = ACTIONS(955), + [anon_sym_DQUOTE] = ACTIONS(955), + [sym_true] = ACTIONS(953), + [sym_false] = ACTIONS(953), + [sym_null] = ACTIONS(953), + [sym_identifier] = ACTIONS(953), [sym_comment] = ACTIONS(39), }, [857] = { [sym_parenthesized_expression] = STATE(1014), - [anon_sym_LPAREN2] = ACTIONS(994), + [anon_sym_LPAREN2] = ACTIONS(985), [sym_comment] = ACTIONS(39), }, [858] = { [sym_parenthesized_expression] = STATE(1015), - [anon_sym_LPAREN2] = ACTIONS(994), + [anon_sym_LPAREN2] = ACTIONS(985), [sym_comment] = ACTIONS(39), }, [859] = { @@ -32950,32 +32969,32 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(1016), [sym_concatenated_string] = STATE(1016), [sym_string_literal] = STATE(421), - [anon_sym_LPAREN2] = ACTIONS(996), - [anon_sym_STAR] = ACTIONS(998), - [anon_sym_AMP] = ACTIONS(998), - [anon_sym_BANG] = ACTIONS(1000), - [anon_sym_TILDE] = ACTIONS(1002), - [anon_sym_PLUS] = ACTIONS(1004), - [anon_sym_DASH] = ACTIONS(1004), - [anon_sym_DASH_DASH] = ACTIONS(1006), - [anon_sym_PLUS_PLUS] = ACTIONS(1006), - [anon_sym_sizeof] = ACTIONS(1008), - [sym_number_literal] = ACTIONS(2703), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2705), - [sym_false] = ACTIONS(2705), - [sym_null] = ACTIONS(2705), - [sym_identifier] = ACTIONS(2705), + [anon_sym_LPAREN2] = ACTIONS(987), + [anon_sym_STAR] = ACTIONS(989), + [anon_sym_AMP] = ACTIONS(989), + [anon_sym_BANG] = ACTIONS(991), + [anon_sym_TILDE] = ACTIONS(993), + [anon_sym_PLUS] = ACTIONS(995), + [anon_sym_DASH] = ACTIONS(995), + [anon_sym_DASH_DASH] = ACTIONS(997), + [anon_sym_PLUS_PLUS] = ACTIONS(997), + [anon_sym_sizeof] = ACTIONS(999), + [sym_number_literal] = ACTIONS(2692), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(2694), + [sym_false] = ACTIONS(2694), + [sym_null] = ACTIONS(2694), + [sym_identifier] = ACTIONS(2694), [sym_comment] = ACTIONS(39), }, [860] = { - [anon_sym_COLON] = ACTIONS(2707), + [anon_sym_COLON] = ACTIONS(2696), [sym_comment] = ACTIONS(39), }, [861] = { [sym_parenthesized_expression] = STATE(1018), - [anon_sym_LPAREN2] = ACTIONS(994), + [anon_sym_LPAREN2] = ACTIONS(985), [sym_comment] = ACTIONS(39), }, [862] = { @@ -33013,40 +33032,40 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(251), [sym_concatenated_string] = STATE(251), [sym_string_literal] = STATE(253), - [anon_sym_SEMI] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(241), - [anon_sym_LPAREN2] = ACTIONS(554), - [anon_sym_STAR] = ACTIONS(556), - [anon_sym_if] = ACTIONS(1016), - [anon_sym_switch] = ACTIONS(1018), - [anon_sym_case] = ACTIONS(1020), - [anon_sym_default] = ACTIONS(1022), - [anon_sym_while] = ACTIONS(1024), - [anon_sym_do] = ACTIONS(1026), - [anon_sym_for] = ACTIONS(1028), - [anon_sym_return] = ACTIONS(572), - [anon_sym_break] = ACTIONS(574), - [anon_sym_continue] = ACTIONS(576), - [anon_sym_goto] = ACTIONS(578), - [anon_sym_AMP] = ACTIONS(556), - [anon_sym_BANG] = ACTIONS(580), - [anon_sym_TILDE] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_DASH_DASH] = ACTIONS(586), - [anon_sym_PLUS_PLUS] = ACTIONS(586), - [anon_sym_sizeof] = ACTIONS(588), - [sym_number_literal] = ACTIONS(590), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(594), - [sym_false] = ACTIONS(594), - [sym_null] = ACTIONS(594), - [sym_identifier] = ACTIONS(1030), + [anon_sym_SEMI] = ACTIONS(546), + [anon_sym_LBRACE] = ACTIONS(239), + [anon_sym_LPAREN2] = ACTIONS(550), + [anon_sym_STAR] = ACTIONS(552), + [anon_sym_if] = ACTIONS(1007), + [anon_sym_switch] = ACTIONS(1009), + [anon_sym_case] = ACTIONS(1011), + [anon_sym_default] = ACTIONS(1013), + [anon_sym_while] = ACTIONS(1015), + [anon_sym_do] = ACTIONS(1017), + [anon_sym_for] = ACTIONS(1019), + [anon_sym_return] = ACTIONS(568), + [anon_sym_break] = ACTIONS(570), + [anon_sym_continue] = ACTIONS(572), + [anon_sym_goto] = ACTIONS(574), + [anon_sym_AMP] = ACTIONS(552), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_TILDE] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(580), + [anon_sym_DASH] = ACTIONS(580), + [anon_sym_DASH_DASH] = ACTIONS(582), + [anon_sym_PLUS_PLUS] = ACTIONS(582), + [anon_sym_sizeof] = ACTIONS(584), + [sym_number_literal] = ACTIONS(586), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(590), + [sym_false] = ACTIONS(590), + [sym_null] = ACTIONS(590), + [sym_identifier] = ACTIONS(1021), [sym_comment] = ACTIONS(39), }, [863] = { - [anon_sym_LPAREN2] = ACTIONS(2709), + [anon_sym_LPAREN2] = ACTIONS(2698), [sym_comment] = ACTIONS(39), }, [864] = { @@ -33070,46 +33089,46 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(1022), [sym_concatenated_string] = STATE(1022), [sym_string_literal] = STATE(376), - [anon_sym_SEMI] = ACTIONS(2711), - [anon_sym_LPAREN2] = ACTIONS(847), - [anon_sym_STAR] = ACTIONS(849), - [anon_sym_AMP] = ACTIONS(849), - [anon_sym_BANG] = ACTIONS(851), - [anon_sym_TILDE] = ACTIONS(853), - [anon_sym_PLUS] = ACTIONS(855), - [anon_sym_DASH] = ACTIONS(855), - [anon_sym_DASH_DASH] = ACTIONS(857), - [anon_sym_PLUS_PLUS] = ACTIONS(857), - [anon_sym_sizeof] = ACTIONS(859), - [sym_number_literal] = ACTIONS(2713), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2715), - [sym_false] = ACTIONS(2715), - [sym_null] = ACTIONS(2715), - [sym_identifier] = ACTIONS(2715), + [anon_sym_SEMI] = ACTIONS(2700), + [anon_sym_LPAREN2] = ACTIONS(838), + [anon_sym_STAR] = ACTIONS(840), + [anon_sym_AMP] = ACTIONS(840), + [anon_sym_BANG] = ACTIONS(842), + [anon_sym_TILDE] = ACTIONS(844), + [anon_sym_PLUS] = ACTIONS(846), + [anon_sym_DASH] = ACTIONS(846), + [anon_sym_DASH_DASH] = ACTIONS(848), + [anon_sym_PLUS_PLUS] = ACTIONS(848), + [anon_sym_sizeof] = ACTIONS(850), + [sym_number_literal] = ACTIONS(2702), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(2704), + [sym_false] = ACTIONS(2704), + [sym_null] = ACTIONS(2704), + [sym_identifier] = ACTIONS(2704), [sym_comment] = ACTIONS(39), }, [865] = { - [anon_sym_SEMI] = ACTIONS(2717), + [anon_sym_SEMI] = ACTIONS(2706), [sym_comment] = ACTIONS(39), }, [866] = { - [anon_sym_SEMI] = ACTIONS(2719), + [anon_sym_SEMI] = ACTIONS(2708), [sym_comment] = ACTIONS(39), }, [867] = { - [sym_identifier] = ACTIONS(2721), + [sym_identifier] = ACTIONS(2710), [sym_comment] = ACTIONS(39), }, [868] = { - [anon_sym_COMMA] = ACTIONS(1066), - [anon_sym_SEMI] = ACTIONS(1068), + [anon_sym_COMMA] = ACTIONS(1059), + [anon_sym_SEMI] = ACTIONS(1061), [anon_sym_extern] = ACTIONS(83), - [anon_sym_LPAREN2] = ACTIONS(1071), - [anon_sym_STAR] = ACTIONS(1075), - [anon_sym_LBRACK] = ACTIONS(1066), - [anon_sym_EQ] = ACTIONS(1078), + [anon_sym_LPAREN2] = ACTIONS(1064), + [anon_sym_STAR] = ACTIONS(1068), + [anon_sym_LBRACK] = ACTIONS(1059), + [anon_sym_EQ] = ACTIONS(1071), [anon_sym_static] = ACTIONS(83), [anon_sym_auto] = ACTIONS(83), [anon_sym_register] = ACTIONS(83), @@ -33118,154 +33137,154 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_restrict] = ACTIONS(83), [anon_sym_volatile] = ACTIONS(83), [anon_sym__Atomic] = ACTIONS(83), - [anon_sym_COLON] = ACTIONS(2723), - [anon_sym_QMARK] = ACTIONS(1066), - [anon_sym_STAR_EQ] = ACTIONS(1066), - [anon_sym_SLASH_EQ] = ACTIONS(1066), - [anon_sym_PERCENT_EQ] = ACTIONS(1066), - [anon_sym_PLUS_EQ] = ACTIONS(1066), - [anon_sym_DASH_EQ] = ACTIONS(1066), - [anon_sym_LT_LT_EQ] = ACTIONS(1066), - [anon_sym_GT_GT_EQ] = ACTIONS(1066), - [anon_sym_AMP_EQ] = ACTIONS(1066), - [anon_sym_CARET_EQ] = ACTIONS(1066), - [anon_sym_PIPE_EQ] = ACTIONS(1066), - [anon_sym_AMP] = ACTIONS(1078), - [anon_sym_PIPE_PIPE] = ACTIONS(1066), - [anon_sym_AMP_AMP] = ACTIONS(1066), - [anon_sym_PIPE] = ACTIONS(1078), - [anon_sym_CARET] = ACTIONS(1078), - [anon_sym_EQ_EQ] = ACTIONS(1066), - [anon_sym_BANG_EQ] = ACTIONS(1066), - [anon_sym_LT] = ACTIONS(1078), - [anon_sym_GT] = ACTIONS(1078), - [anon_sym_LT_EQ] = ACTIONS(1066), - [anon_sym_GT_EQ] = ACTIONS(1066), - [anon_sym_LT_LT] = ACTIONS(1078), - [anon_sym_GT_GT] = ACTIONS(1078), - [anon_sym_PLUS] = ACTIONS(1078), - [anon_sym_DASH] = ACTIONS(1078), - [anon_sym_SLASH] = ACTIONS(1078), - [anon_sym_PERCENT] = ACTIONS(1078), - [anon_sym_DASH_DASH] = ACTIONS(1066), - [anon_sym_PLUS_PLUS] = ACTIONS(1066), - [anon_sym_DOT] = ACTIONS(1066), - [anon_sym_DASH_GT] = ACTIONS(1066), + [anon_sym_COLON] = ACTIONS(2712), + [anon_sym_QMARK] = ACTIONS(1059), + [anon_sym_STAR_EQ] = ACTIONS(1059), + [anon_sym_SLASH_EQ] = ACTIONS(1059), + [anon_sym_PERCENT_EQ] = ACTIONS(1059), + [anon_sym_PLUS_EQ] = ACTIONS(1059), + [anon_sym_DASH_EQ] = ACTIONS(1059), + [anon_sym_LT_LT_EQ] = ACTIONS(1059), + [anon_sym_GT_GT_EQ] = ACTIONS(1059), + [anon_sym_AMP_EQ] = ACTIONS(1059), + [anon_sym_CARET_EQ] = ACTIONS(1059), + [anon_sym_PIPE_EQ] = ACTIONS(1059), + [anon_sym_AMP] = ACTIONS(1071), + [anon_sym_PIPE_PIPE] = ACTIONS(1059), + [anon_sym_AMP_AMP] = ACTIONS(1059), + [anon_sym_PIPE] = ACTIONS(1071), + [anon_sym_CARET] = ACTIONS(1071), + [anon_sym_EQ_EQ] = ACTIONS(1059), + [anon_sym_BANG_EQ] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(1071), + [anon_sym_GT] = ACTIONS(1071), + [anon_sym_LT_EQ] = ACTIONS(1059), + [anon_sym_GT_EQ] = ACTIONS(1059), + [anon_sym_LT_LT] = ACTIONS(1071), + [anon_sym_GT_GT] = ACTIONS(1071), + [anon_sym_PLUS] = ACTIONS(1071), + [anon_sym_DASH] = ACTIONS(1071), + [anon_sym_SLASH] = ACTIONS(1071), + [anon_sym_PERCENT] = ACTIONS(1071), + [anon_sym_DASH_DASH] = ACTIONS(1059), + [anon_sym_PLUS_PLUS] = ACTIONS(1059), + [anon_sym_DOT] = ACTIONS(1059), + [anon_sym_DASH_GT] = ACTIONS(1059), [sym_identifier] = ACTIONS(83), [sym_comment] = ACTIONS(39), }, [869] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1082), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1082), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1082), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1082), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1082), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1082), - [sym_preproc_directive] = ACTIONS(1082), - [anon_sym_SEMI] = ACTIONS(1084), - [anon_sym_typedef] = ACTIONS(1082), - [anon_sym_extern] = ACTIONS(1082), - [anon_sym_LBRACE] = ACTIONS(1084), - [anon_sym_LPAREN2] = ACTIONS(1084), - [anon_sym_STAR] = ACTIONS(1084), - [anon_sym_static] = ACTIONS(1082), - [anon_sym_auto] = ACTIONS(1082), - [anon_sym_register] = ACTIONS(1082), - [anon_sym_inline] = ACTIONS(1082), - [anon_sym_const] = ACTIONS(1082), - [anon_sym_restrict] = ACTIONS(1082), - [anon_sym_volatile] = ACTIONS(1082), - [anon_sym__Atomic] = ACTIONS(1082), - [anon_sym_unsigned] = ACTIONS(1082), - [anon_sym_long] = ACTIONS(1082), - [anon_sym_short] = ACTIONS(1082), - [sym_primitive_type] = ACTIONS(1082), - [anon_sym_enum] = ACTIONS(1082), - [anon_sym_struct] = ACTIONS(1082), - [anon_sym_union] = ACTIONS(1082), - [anon_sym_if] = ACTIONS(1082), - [anon_sym_switch] = ACTIONS(1082), - [anon_sym_case] = ACTIONS(1082), - [anon_sym_default] = ACTIONS(1082), - [anon_sym_while] = ACTIONS(1082), - [anon_sym_do] = ACTIONS(1082), - [anon_sym_for] = ACTIONS(1082), - [anon_sym_return] = ACTIONS(1082), - [anon_sym_break] = ACTIONS(1082), - [anon_sym_continue] = ACTIONS(1082), - [anon_sym_goto] = ACTIONS(1082), - [anon_sym_AMP] = ACTIONS(1084), - [anon_sym_BANG] = ACTIONS(1084), - [anon_sym_TILDE] = ACTIONS(1084), - [anon_sym_PLUS] = ACTIONS(1082), - [anon_sym_DASH] = ACTIONS(1082), - [anon_sym_DASH_DASH] = ACTIONS(1084), - [anon_sym_PLUS_PLUS] = ACTIONS(1084), - [anon_sym_sizeof] = ACTIONS(1082), - [sym_number_literal] = ACTIONS(1084), - [anon_sym_SQUOTE] = ACTIONS(1084), - [anon_sym_DQUOTE] = ACTIONS(1084), - [sym_true] = ACTIONS(1082), - [sym_false] = ACTIONS(1082), - [sym_null] = ACTIONS(1082), - [sym_identifier] = ACTIONS(1082), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1075), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1075), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1075), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1075), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1075), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1075), + [sym_preproc_directive] = ACTIONS(1075), + [anon_sym_SEMI] = ACTIONS(1077), + [anon_sym_typedef] = ACTIONS(1075), + [anon_sym_extern] = ACTIONS(1075), + [anon_sym_LBRACE] = ACTIONS(1077), + [anon_sym_LPAREN2] = ACTIONS(1077), + [anon_sym_STAR] = ACTIONS(1077), + [anon_sym_static] = ACTIONS(1075), + [anon_sym_auto] = ACTIONS(1075), + [anon_sym_register] = ACTIONS(1075), + [anon_sym_inline] = ACTIONS(1075), + [anon_sym_const] = ACTIONS(1075), + [anon_sym_restrict] = ACTIONS(1075), + [anon_sym_volatile] = ACTIONS(1075), + [anon_sym__Atomic] = ACTIONS(1075), + [anon_sym_unsigned] = ACTIONS(1075), + [anon_sym_long] = ACTIONS(1075), + [anon_sym_short] = ACTIONS(1075), + [sym_primitive_type] = ACTIONS(1075), + [anon_sym_enum] = ACTIONS(1075), + [anon_sym_struct] = ACTIONS(1075), + [anon_sym_union] = ACTIONS(1075), + [anon_sym_if] = ACTIONS(1075), + [anon_sym_switch] = ACTIONS(1075), + [anon_sym_case] = ACTIONS(1075), + [anon_sym_default] = ACTIONS(1075), + [anon_sym_while] = ACTIONS(1075), + [anon_sym_do] = ACTIONS(1075), + [anon_sym_for] = ACTIONS(1075), + [anon_sym_return] = ACTIONS(1075), + [anon_sym_break] = ACTIONS(1075), + [anon_sym_continue] = ACTIONS(1075), + [anon_sym_goto] = ACTIONS(1075), + [anon_sym_AMP] = ACTIONS(1077), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_TILDE] = ACTIONS(1077), + [anon_sym_PLUS] = ACTIONS(1075), + [anon_sym_DASH] = ACTIONS(1075), + [anon_sym_DASH_DASH] = ACTIONS(1077), + [anon_sym_PLUS_PLUS] = ACTIONS(1077), + [anon_sym_sizeof] = ACTIONS(1075), + [sym_number_literal] = ACTIONS(1077), + [anon_sym_SQUOTE] = ACTIONS(1077), + [anon_sym_DQUOTE] = ACTIONS(1077), + [sym_true] = ACTIONS(1075), + [sym_false] = ACTIONS(1075), + [sym_null] = ACTIONS(1075), + [sym_identifier] = ACTIONS(1075), [sym_comment] = ACTIONS(39), }, [870] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1086), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1086), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1086), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1086), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1086), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1086), - [sym_preproc_directive] = ACTIONS(1086), - [anon_sym_SEMI] = ACTIONS(1088), - [anon_sym_typedef] = ACTIONS(1086), - [anon_sym_extern] = ACTIONS(1086), - [anon_sym_LBRACE] = ACTIONS(1088), - [anon_sym_LPAREN2] = ACTIONS(1088), - [anon_sym_STAR] = ACTIONS(1088), - [anon_sym_static] = ACTIONS(1086), - [anon_sym_auto] = ACTIONS(1086), - [anon_sym_register] = ACTIONS(1086), - [anon_sym_inline] = ACTIONS(1086), - [anon_sym_const] = ACTIONS(1086), - [anon_sym_restrict] = ACTIONS(1086), - [anon_sym_volatile] = ACTIONS(1086), - [anon_sym__Atomic] = ACTIONS(1086), - [anon_sym_unsigned] = ACTIONS(1086), - [anon_sym_long] = ACTIONS(1086), - [anon_sym_short] = ACTIONS(1086), - [sym_primitive_type] = ACTIONS(1086), - [anon_sym_enum] = ACTIONS(1086), - [anon_sym_struct] = ACTIONS(1086), - [anon_sym_union] = ACTIONS(1086), - [anon_sym_if] = ACTIONS(1086), - [anon_sym_switch] = ACTIONS(1086), - [anon_sym_case] = ACTIONS(1086), - [anon_sym_default] = ACTIONS(1086), - [anon_sym_while] = ACTIONS(1086), - [anon_sym_do] = ACTIONS(1086), - [anon_sym_for] = ACTIONS(1086), - [anon_sym_return] = ACTIONS(1086), - [anon_sym_break] = ACTIONS(1086), - [anon_sym_continue] = ACTIONS(1086), - [anon_sym_goto] = ACTIONS(1086), - [anon_sym_AMP] = ACTIONS(1088), - [anon_sym_BANG] = ACTIONS(1088), - [anon_sym_TILDE] = ACTIONS(1088), - [anon_sym_PLUS] = ACTIONS(1086), - [anon_sym_DASH] = ACTIONS(1086), - [anon_sym_DASH_DASH] = ACTIONS(1088), - [anon_sym_PLUS_PLUS] = ACTIONS(1088), - [anon_sym_sizeof] = ACTIONS(1086), - [sym_number_literal] = ACTIONS(1088), - [anon_sym_SQUOTE] = ACTIONS(1088), - [anon_sym_DQUOTE] = ACTIONS(1088), - [sym_true] = ACTIONS(1086), - [sym_false] = ACTIONS(1086), - [sym_null] = ACTIONS(1086), - [sym_identifier] = ACTIONS(1086), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1079), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1079), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1079), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1079), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1079), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1079), + [sym_preproc_directive] = ACTIONS(1079), + [anon_sym_SEMI] = ACTIONS(1081), + [anon_sym_typedef] = ACTIONS(1079), + [anon_sym_extern] = ACTIONS(1079), + [anon_sym_LBRACE] = ACTIONS(1081), + [anon_sym_LPAREN2] = ACTIONS(1081), + [anon_sym_STAR] = ACTIONS(1081), + [anon_sym_static] = ACTIONS(1079), + [anon_sym_auto] = ACTIONS(1079), + [anon_sym_register] = ACTIONS(1079), + [anon_sym_inline] = ACTIONS(1079), + [anon_sym_const] = ACTIONS(1079), + [anon_sym_restrict] = ACTIONS(1079), + [anon_sym_volatile] = ACTIONS(1079), + [anon_sym__Atomic] = ACTIONS(1079), + [anon_sym_unsigned] = ACTIONS(1079), + [anon_sym_long] = ACTIONS(1079), + [anon_sym_short] = ACTIONS(1079), + [sym_primitive_type] = ACTIONS(1079), + [anon_sym_enum] = ACTIONS(1079), + [anon_sym_struct] = ACTIONS(1079), + [anon_sym_union] = ACTIONS(1079), + [anon_sym_if] = ACTIONS(1079), + [anon_sym_switch] = ACTIONS(1079), + [anon_sym_case] = ACTIONS(1079), + [anon_sym_default] = ACTIONS(1079), + [anon_sym_while] = ACTIONS(1079), + [anon_sym_do] = ACTIONS(1079), + [anon_sym_for] = ACTIONS(1079), + [anon_sym_return] = ACTIONS(1079), + [anon_sym_break] = ACTIONS(1079), + [anon_sym_continue] = ACTIONS(1079), + [anon_sym_goto] = ACTIONS(1079), + [anon_sym_AMP] = ACTIONS(1081), + [anon_sym_BANG] = ACTIONS(1081), + [anon_sym_TILDE] = ACTIONS(1081), + [anon_sym_PLUS] = ACTIONS(1079), + [anon_sym_DASH] = ACTIONS(1079), + [anon_sym_DASH_DASH] = ACTIONS(1081), + [anon_sym_PLUS_PLUS] = ACTIONS(1081), + [anon_sym_sizeof] = ACTIONS(1079), + [sym_number_literal] = ACTIONS(1081), + [anon_sym_SQUOTE] = ACTIONS(1081), + [anon_sym_DQUOTE] = ACTIONS(1081), + [sym_true] = ACTIONS(1079), + [sym_false] = ACTIONS(1079), + [sym_null] = ACTIONS(1079), + [sym_identifier] = ACTIONS(1079), [sym_comment] = ACTIONS(39), }, [871] = { @@ -33274,56 +33293,56 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_function_declarator] = STATE(1027), [sym_array_declarator] = STATE(1027), [sym_init_declarator] = STATE(311), - [anon_sym_SEMI] = ACTIONS(714), + [anon_sym_SEMI] = ACTIONS(705), [anon_sym_LPAREN2] = ACTIONS(92), - [anon_sym_STAR] = ACTIONS(534), - [sym_identifier] = ACTIONS(2725), + [anon_sym_STAR] = ACTIONS(530), + [sym_identifier] = ACTIONS(2714), [sym_comment] = ACTIONS(39), }, [872] = { [sym_argument_list] = STATE(465), - [anon_sym_COMMA] = ACTIONS(1092), - [anon_sym_SEMI] = ACTIONS(2727), - [anon_sym_LPAREN2] = ACTIONS(1096), - [anon_sym_STAR] = ACTIONS(1098), - [anon_sym_LBRACK] = ACTIONS(1100), - [anon_sym_EQ] = ACTIONS(1102), - [anon_sym_QMARK] = ACTIONS(1104), - [anon_sym_STAR_EQ] = ACTIONS(1106), - [anon_sym_SLASH_EQ] = ACTIONS(1106), - [anon_sym_PERCENT_EQ] = ACTIONS(1106), - [anon_sym_PLUS_EQ] = ACTIONS(1106), - [anon_sym_DASH_EQ] = ACTIONS(1106), - [anon_sym_LT_LT_EQ] = ACTIONS(1106), - [anon_sym_GT_GT_EQ] = ACTIONS(1106), - [anon_sym_AMP_EQ] = ACTIONS(1106), - [anon_sym_CARET_EQ] = ACTIONS(1106), - [anon_sym_PIPE_EQ] = ACTIONS(1106), - [anon_sym_AMP] = ACTIONS(1108), - [anon_sym_PIPE_PIPE] = ACTIONS(1110), - [anon_sym_AMP_AMP] = ACTIONS(1112), - [anon_sym_PIPE] = ACTIONS(1114), - [anon_sym_CARET] = ACTIONS(1116), - [anon_sym_EQ_EQ] = ACTIONS(1118), - [anon_sym_BANG_EQ] = ACTIONS(1118), - [anon_sym_LT] = ACTIONS(1120), - [anon_sym_GT] = ACTIONS(1120), - [anon_sym_LT_EQ] = ACTIONS(1122), - [anon_sym_GT_EQ] = ACTIONS(1122), - [anon_sym_LT_LT] = ACTIONS(1124), - [anon_sym_GT_GT] = ACTIONS(1124), - [anon_sym_PLUS] = ACTIONS(1126), - [anon_sym_DASH] = ACTIONS(1126), - [anon_sym_SLASH] = ACTIONS(1098), - [anon_sym_PERCENT] = ACTIONS(1098), - [anon_sym_DASH_DASH] = ACTIONS(1128), - [anon_sym_PLUS_PLUS] = ACTIONS(1128), - [anon_sym_DOT] = ACTIONS(1130), - [anon_sym_DASH_GT] = ACTIONS(1130), + [anon_sym_COMMA] = ACTIONS(1085), + [anon_sym_SEMI] = ACTIONS(2716), + [anon_sym_LPAREN2] = ACTIONS(1089), + [anon_sym_STAR] = ACTIONS(1091), + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(1095), + [anon_sym_QMARK] = ACTIONS(1097), + [anon_sym_STAR_EQ] = ACTIONS(1099), + [anon_sym_SLASH_EQ] = ACTIONS(1099), + [anon_sym_PERCENT_EQ] = ACTIONS(1099), + [anon_sym_PLUS_EQ] = ACTIONS(1099), + [anon_sym_DASH_EQ] = ACTIONS(1099), + [anon_sym_LT_LT_EQ] = ACTIONS(1099), + [anon_sym_GT_GT_EQ] = ACTIONS(1099), + [anon_sym_AMP_EQ] = ACTIONS(1099), + [anon_sym_CARET_EQ] = ACTIONS(1099), + [anon_sym_PIPE_EQ] = ACTIONS(1099), + [anon_sym_AMP] = ACTIONS(1101), + [anon_sym_PIPE_PIPE] = ACTIONS(1103), + [anon_sym_AMP_AMP] = ACTIONS(1105), + [anon_sym_PIPE] = ACTIONS(1107), + [anon_sym_CARET] = ACTIONS(1109), + [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(1115), + [anon_sym_GT_EQ] = ACTIONS(1115), + [anon_sym_LT_LT] = ACTIONS(1117), + [anon_sym_GT_GT] = ACTIONS(1117), + [anon_sym_PLUS] = ACTIONS(1119), + [anon_sym_DASH] = ACTIONS(1119), + [anon_sym_SLASH] = ACTIONS(1091), + [anon_sym_PERCENT] = ACTIONS(1091), + [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_PLUS_PLUS] = ACTIONS(1121), + [anon_sym_DOT] = ACTIONS(1123), + [anon_sym_DASH_GT] = ACTIONS(1123), [sym_comment] = ACTIONS(39), }, [873] = { - [anon_sym_SEMI] = ACTIONS(2727), + [anon_sym_SEMI] = ACTIONS(2716), [sym_comment] = ACTIONS(39), }, [874] = { @@ -33382,19 +33401,19 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(1029), [aux_sym__declaration_specifiers_repeat1] = STATE(20), [aux_sym_sized_type_specifier_repeat1] = STATE(21), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(366), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(368), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2246), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2729), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2250), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2252), - [sym_preproc_directive] = ACTIONS(378), - [anon_sym_SEMI] = ACTIONS(2254), - [anon_sym_typedef] = ACTIONS(380), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(362), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(364), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2235), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2718), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2239), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2241), + [sym_preproc_directive] = ACTIONS(374), + [anon_sym_SEMI] = ACTIONS(2243), + [anon_sym_typedef] = ACTIONS(376), [anon_sym_extern] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(1273), - [anon_sym_LPAREN2] = ACTIONS(554), - [anon_sym_STAR] = ACTIONS(556), + [anon_sym_LBRACE] = ACTIONS(1264), + [anon_sym_LPAREN2] = ACTIONS(550), + [anon_sym_STAR] = ACTIONS(552), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -33410,32 +33429,32 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), - [anon_sym_if] = ACTIONS(2256), - [anon_sym_switch] = ACTIONS(2258), - [anon_sym_case] = ACTIONS(2260), - [anon_sym_default] = ACTIONS(2262), - [anon_sym_while] = ACTIONS(2264), - [anon_sym_do] = ACTIONS(2266), - [anon_sym_for] = ACTIONS(2268), - [anon_sym_return] = ACTIONS(2270), - [anon_sym_break] = ACTIONS(2272), - [anon_sym_continue] = ACTIONS(2274), - [anon_sym_goto] = ACTIONS(2276), - [anon_sym_AMP] = ACTIONS(556), - [anon_sym_BANG] = ACTIONS(580), - [anon_sym_TILDE] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_DASH_DASH] = ACTIONS(586), - [anon_sym_PLUS_PLUS] = ACTIONS(586), - [anon_sym_sizeof] = ACTIONS(588), - [sym_number_literal] = ACTIONS(2278), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2280), - [sym_false] = ACTIONS(2280), - [sym_null] = ACTIONS(2280), - [sym_identifier] = ACTIONS(2282), + [anon_sym_if] = ACTIONS(2245), + [anon_sym_switch] = ACTIONS(2247), + [anon_sym_case] = ACTIONS(2249), + [anon_sym_default] = ACTIONS(2251), + [anon_sym_while] = ACTIONS(2253), + [anon_sym_do] = ACTIONS(2255), + [anon_sym_for] = ACTIONS(2257), + [anon_sym_return] = ACTIONS(2259), + [anon_sym_break] = ACTIONS(2261), + [anon_sym_continue] = ACTIONS(2263), + [anon_sym_goto] = ACTIONS(2265), + [anon_sym_AMP] = ACTIONS(552), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_TILDE] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(580), + [anon_sym_DASH] = ACTIONS(580), + [anon_sym_DASH_DASH] = ACTIONS(582), + [anon_sym_PLUS_PLUS] = ACTIONS(582), + [anon_sym_sizeof] = ACTIONS(584), + [sym_number_literal] = ACTIONS(2267), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(2269), + [sym_false] = ACTIONS(2269), + [sym_null] = ACTIONS(2269), + [sym_identifier] = ACTIONS(2271), [sym_comment] = ACTIONS(39), }, [875] = { @@ -33496,21 +33515,21 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(1032), [aux_sym__declaration_specifiers_repeat1] = STATE(20), [aux_sym_sized_type_specifier_repeat1] = STATE(21), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(133), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(135), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1504), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2731), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1508), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1510), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1512), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1514), - [sym_preproc_directive] = ACTIONS(149), - [anon_sym_SEMI] = ACTIONS(1516), - [anon_sym_typedef] = ACTIONS(151), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(131), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(133), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1493), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2720), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1497), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1499), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1501), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1503), + [sym_preproc_directive] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(1505), + [anon_sym_typedef] = ACTIONS(149), [anon_sym_extern] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(734), - [anon_sym_LPAREN2] = ACTIONS(554), - [anon_sym_STAR] = ACTIONS(556), + [anon_sym_LBRACE] = ACTIONS(725), + [anon_sym_LPAREN2] = ACTIONS(550), + [anon_sym_STAR] = ACTIONS(552), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -33526,32 +33545,32 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), - [anon_sym_if] = ACTIONS(1518), - [anon_sym_switch] = ACTIONS(1520), - [anon_sym_case] = ACTIONS(1522), - [anon_sym_default] = ACTIONS(1524), - [anon_sym_while] = ACTIONS(1526), - [anon_sym_do] = ACTIONS(1528), - [anon_sym_for] = ACTIONS(1530), - [anon_sym_return] = ACTIONS(1532), - [anon_sym_break] = ACTIONS(1534), - [anon_sym_continue] = ACTIONS(1536), - [anon_sym_goto] = ACTIONS(1538), - [anon_sym_AMP] = ACTIONS(556), - [anon_sym_BANG] = ACTIONS(580), - [anon_sym_TILDE] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_DASH_DASH] = ACTIONS(586), - [anon_sym_PLUS_PLUS] = ACTIONS(586), - [anon_sym_sizeof] = ACTIONS(588), - [sym_number_literal] = ACTIONS(1540), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1542), - [sym_false] = ACTIONS(1542), - [sym_null] = ACTIONS(1542), - [sym_identifier] = ACTIONS(1544), + [anon_sym_if] = ACTIONS(1507), + [anon_sym_switch] = ACTIONS(1509), + [anon_sym_case] = ACTIONS(1511), + [anon_sym_default] = ACTIONS(1513), + [anon_sym_while] = ACTIONS(1515), + [anon_sym_do] = ACTIONS(1517), + [anon_sym_for] = ACTIONS(1519), + [anon_sym_return] = ACTIONS(1521), + [anon_sym_break] = ACTIONS(1523), + [anon_sym_continue] = ACTIONS(1525), + [anon_sym_goto] = ACTIONS(1527), + [anon_sym_AMP] = ACTIONS(552), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_TILDE] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(580), + [anon_sym_DASH] = ACTIONS(580), + [anon_sym_DASH_DASH] = ACTIONS(582), + [anon_sym_PLUS_PLUS] = ACTIONS(582), + [anon_sym_sizeof] = ACTIONS(584), + [sym_number_literal] = ACTIONS(1529), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_null] = ACTIONS(1531), + [sym_identifier] = ACTIONS(1533), [sym_comment] = ACTIONS(39), }, [876] = { @@ -33589,36 +33608,36 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(649), [sym_concatenated_string] = STATE(649), [sym_string_literal] = STATE(253), - [anon_sym_SEMI] = ACTIONS(1516), - [anon_sym_LBRACE] = ACTIONS(734), - [anon_sym_LPAREN2] = ACTIONS(554), - [anon_sym_STAR] = ACTIONS(556), - [anon_sym_if] = ACTIONS(2733), - [anon_sym_switch] = ACTIONS(2735), - [anon_sym_case] = ACTIONS(2737), - [anon_sym_default] = ACTIONS(2739), - [anon_sym_while] = ACTIONS(2741), - [anon_sym_do] = ACTIONS(1528), - [anon_sym_for] = ACTIONS(2743), - [anon_sym_return] = ACTIONS(1532), - [anon_sym_break] = ACTIONS(1534), - [anon_sym_continue] = ACTIONS(1536), - [anon_sym_goto] = ACTIONS(1538), - [anon_sym_AMP] = ACTIONS(556), - [anon_sym_BANG] = ACTIONS(580), - [anon_sym_TILDE] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_DASH_DASH] = ACTIONS(586), - [anon_sym_PLUS_PLUS] = ACTIONS(586), - [anon_sym_sizeof] = ACTIONS(588), - [sym_number_literal] = ACTIONS(1540), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1542), - [sym_false] = ACTIONS(1542), - [sym_null] = ACTIONS(1542), - [sym_identifier] = ACTIONS(2745), + [anon_sym_SEMI] = ACTIONS(1505), + [anon_sym_LBRACE] = ACTIONS(725), + [anon_sym_LPAREN2] = ACTIONS(550), + [anon_sym_STAR] = ACTIONS(552), + [anon_sym_if] = ACTIONS(2722), + [anon_sym_switch] = ACTIONS(2724), + [anon_sym_case] = ACTIONS(2726), + [anon_sym_default] = ACTIONS(2728), + [anon_sym_while] = ACTIONS(2730), + [anon_sym_do] = ACTIONS(1517), + [anon_sym_for] = ACTIONS(2732), + [anon_sym_return] = ACTIONS(1521), + [anon_sym_break] = ACTIONS(1523), + [anon_sym_continue] = ACTIONS(1525), + [anon_sym_goto] = ACTIONS(1527), + [anon_sym_AMP] = ACTIONS(552), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_TILDE] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(580), + [anon_sym_DASH] = ACTIONS(580), + [anon_sym_DASH_DASH] = ACTIONS(582), + [anon_sym_PLUS_PLUS] = ACTIONS(582), + [anon_sym_sizeof] = ACTIONS(584), + [sym_number_literal] = ACTIONS(1529), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_null] = ACTIONS(1531), + [sym_identifier] = ACTIONS(2734), [sym_comment] = ACTIONS(39), }, [877] = { @@ -33656,77 +33675,77 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(649), [sym_concatenated_string] = STATE(649), [sym_string_literal] = STATE(253), - [anon_sym_SEMI] = ACTIONS(1516), - [anon_sym_LBRACE] = ACTIONS(734), - [anon_sym_LPAREN2] = ACTIONS(554), - [anon_sym_STAR] = ACTIONS(556), - [anon_sym_if] = ACTIONS(1518), - [anon_sym_switch] = ACTIONS(1520), - [anon_sym_case] = ACTIONS(1522), - [anon_sym_default] = ACTIONS(1524), - [anon_sym_while] = ACTIONS(1526), - [anon_sym_do] = ACTIONS(1528), - [anon_sym_for] = ACTIONS(1530), - [anon_sym_return] = ACTIONS(1532), - [anon_sym_break] = ACTIONS(1534), - [anon_sym_continue] = ACTIONS(1536), - [anon_sym_goto] = ACTIONS(1538), - [anon_sym_AMP] = ACTIONS(556), - [anon_sym_BANG] = ACTIONS(580), - [anon_sym_TILDE] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_DASH_DASH] = ACTIONS(586), - [anon_sym_PLUS_PLUS] = ACTIONS(586), - [anon_sym_sizeof] = ACTIONS(588), - [sym_number_literal] = ACTIONS(1540), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1542), - [sym_false] = ACTIONS(1542), - [sym_null] = ACTIONS(1542), - [sym_identifier] = ACTIONS(2747), + [anon_sym_SEMI] = ACTIONS(1505), + [anon_sym_LBRACE] = ACTIONS(725), + [anon_sym_LPAREN2] = ACTIONS(550), + [anon_sym_STAR] = ACTIONS(552), + [anon_sym_if] = ACTIONS(1507), + [anon_sym_switch] = ACTIONS(1509), + [anon_sym_case] = ACTIONS(1511), + [anon_sym_default] = ACTIONS(1513), + [anon_sym_while] = ACTIONS(1515), + [anon_sym_do] = ACTIONS(1517), + [anon_sym_for] = ACTIONS(1519), + [anon_sym_return] = ACTIONS(1521), + [anon_sym_break] = ACTIONS(1523), + [anon_sym_continue] = ACTIONS(1525), + [anon_sym_goto] = ACTIONS(1527), + [anon_sym_AMP] = ACTIONS(552), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_TILDE] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(580), + [anon_sym_DASH] = ACTIONS(580), + [anon_sym_DASH_DASH] = ACTIONS(582), + [anon_sym_PLUS_PLUS] = ACTIONS(582), + [anon_sym_sizeof] = ACTIONS(584), + [sym_number_literal] = ACTIONS(1529), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_null] = ACTIONS(1531), + [sym_identifier] = ACTIONS(2736), [sym_comment] = ACTIONS(39), }, [878] = { [sym_argument_list] = STATE(465), - [anon_sym_LPAREN2] = ACTIONS(1096), - [anon_sym_STAR] = ACTIONS(1620), - [anon_sym_LBRACK] = ACTIONS(1100), - [anon_sym_EQ] = ACTIONS(1622), - [anon_sym_COLON] = ACTIONS(2749), - [anon_sym_QMARK] = ACTIONS(1626), - [anon_sym_STAR_EQ] = ACTIONS(1628), - [anon_sym_SLASH_EQ] = ACTIONS(1628), - [anon_sym_PERCENT_EQ] = ACTIONS(1628), - [anon_sym_PLUS_EQ] = ACTIONS(1628), - [anon_sym_DASH_EQ] = ACTIONS(1628), - [anon_sym_LT_LT_EQ] = ACTIONS(1628), - [anon_sym_GT_GT_EQ] = ACTIONS(1628), - [anon_sym_AMP_EQ] = ACTIONS(1628), - [anon_sym_CARET_EQ] = ACTIONS(1628), - [anon_sym_PIPE_EQ] = ACTIONS(1628), - [anon_sym_AMP] = ACTIONS(1630), - [anon_sym_PIPE_PIPE] = ACTIONS(1632), - [anon_sym_AMP_AMP] = ACTIONS(1634), - [anon_sym_PIPE] = ACTIONS(1636), - [anon_sym_CARET] = ACTIONS(1638), - [anon_sym_EQ_EQ] = ACTIONS(1640), - [anon_sym_BANG_EQ] = ACTIONS(1640), - [anon_sym_LT] = ACTIONS(1642), - [anon_sym_GT] = ACTIONS(1642), - [anon_sym_LT_EQ] = ACTIONS(1644), - [anon_sym_GT_EQ] = ACTIONS(1644), - [anon_sym_LT_LT] = ACTIONS(1646), - [anon_sym_GT_GT] = ACTIONS(1646), - [anon_sym_PLUS] = ACTIONS(1648), - [anon_sym_DASH] = ACTIONS(1648), - [anon_sym_SLASH] = ACTIONS(1620), - [anon_sym_PERCENT] = ACTIONS(1620), - [anon_sym_DASH_DASH] = ACTIONS(1128), - [anon_sym_PLUS_PLUS] = ACTIONS(1128), - [anon_sym_DOT] = ACTIONS(1130), - [anon_sym_DASH_GT] = ACTIONS(1130), + [anon_sym_LPAREN2] = ACTIONS(1089), + [anon_sym_STAR] = ACTIONS(1609), + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(1611), + [anon_sym_COLON] = ACTIONS(2738), + [anon_sym_QMARK] = ACTIONS(1615), + [anon_sym_STAR_EQ] = ACTIONS(1617), + [anon_sym_SLASH_EQ] = ACTIONS(1617), + [anon_sym_PERCENT_EQ] = ACTIONS(1617), + [anon_sym_PLUS_EQ] = ACTIONS(1617), + [anon_sym_DASH_EQ] = ACTIONS(1617), + [anon_sym_LT_LT_EQ] = ACTIONS(1617), + [anon_sym_GT_GT_EQ] = ACTIONS(1617), + [anon_sym_AMP_EQ] = ACTIONS(1617), + [anon_sym_CARET_EQ] = ACTIONS(1617), + [anon_sym_PIPE_EQ] = ACTIONS(1617), + [anon_sym_AMP] = ACTIONS(1619), + [anon_sym_PIPE_PIPE] = ACTIONS(1621), + [anon_sym_AMP_AMP] = ACTIONS(1623), + [anon_sym_PIPE] = ACTIONS(1625), + [anon_sym_CARET] = ACTIONS(1627), + [anon_sym_EQ_EQ] = ACTIONS(1629), + [anon_sym_BANG_EQ] = ACTIONS(1629), + [anon_sym_LT] = ACTIONS(1631), + [anon_sym_GT] = ACTIONS(1631), + [anon_sym_LT_EQ] = ACTIONS(1633), + [anon_sym_GT_EQ] = ACTIONS(1633), + [anon_sym_LT_LT] = ACTIONS(1635), + [anon_sym_GT_GT] = ACTIONS(1635), + [anon_sym_PLUS] = ACTIONS(1637), + [anon_sym_DASH] = ACTIONS(1637), + [anon_sym_SLASH] = ACTIONS(1609), + [anon_sym_PERCENT] = ACTIONS(1609), + [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_PLUS_PLUS] = ACTIONS(1121), + [anon_sym_DOT] = ACTIONS(1123), + [anon_sym_DASH_GT] = ACTIONS(1123), [sym_comment] = ACTIONS(39), }, [879] = { @@ -33777,12 +33796,12 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_macro_type_specifier] = STATE(95), [aux_sym__declaration_specifiers_repeat1] = STATE(96), [aux_sym_sized_type_specifier_repeat1] = STATE(97), - [anon_sym_SEMI] = ACTIONS(1516), - [anon_sym_typedef] = ACTIONS(151), + [anon_sym_SEMI] = ACTIONS(1505), + [anon_sym_typedef] = ACTIONS(149), [anon_sym_extern] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(734), - [anon_sym_LPAREN2] = ACTIONS(554), - [anon_sym_STAR] = ACTIONS(556), + [anon_sym_LBRACE] = ACTIONS(725), + [anon_sym_LPAREN2] = ACTIONS(550), + [anon_sym_STAR] = ACTIONS(552), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -33791,39 +33810,39 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_restrict] = ACTIONS(25), [anon_sym_volatile] = ACTIONS(25), [anon_sym__Atomic] = ACTIONS(25), - [anon_sym_unsigned] = ACTIONS(177), - [anon_sym_long] = ACTIONS(177), - [anon_sym_short] = ACTIONS(177), - [sym_primitive_type] = ACTIONS(179), + [anon_sym_unsigned] = ACTIONS(175), + [anon_sym_long] = ACTIONS(175), + [anon_sym_short] = ACTIONS(175), + [sym_primitive_type] = ACTIONS(177), [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), - [anon_sym_if] = ACTIONS(1518), - [anon_sym_switch] = ACTIONS(1520), - [anon_sym_case] = ACTIONS(1522), - [anon_sym_default] = ACTIONS(1524), - [anon_sym_while] = ACTIONS(1526), - [anon_sym_do] = ACTIONS(1528), - [anon_sym_for] = ACTIONS(1530), - [anon_sym_return] = ACTIONS(1532), - [anon_sym_break] = ACTIONS(1534), - [anon_sym_continue] = ACTIONS(1536), - [anon_sym_goto] = ACTIONS(1538), - [anon_sym_AMP] = ACTIONS(556), - [anon_sym_BANG] = ACTIONS(580), - [anon_sym_TILDE] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_DASH_DASH] = ACTIONS(586), - [anon_sym_PLUS_PLUS] = ACTIONS(586), - [anon_sym_sizeof] = ACTIONS(588), - [sym_number_literal] = ACTIONS(1540), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1542), - [sym_false] = ACTIONS(1542), - [sym_null] = ACTIONS(1542), - [sym_identifier] = ACTIONS(2751), + [anon_sym_if] = ACTIONS(1507), + [anon_sym_switch] = ACTIONS(1509), + [anon_sym_case] = ACTIONS(1511), + [anon_sym_default] = ACTIONS(1513), + [anon_sym_while] = ACTIONS(1515), + [anon_sym_do] = ACTIONS(1517), + [anon_sym_for] = ACTIONS(1519), + [anon_sym_return] = ACTIONS(1521), + [anon_sym_break] = ACTIONS(1523), + [anon_sym_continue] = ACTIONS(1525), + [anon_sym_goto] = ACTIONS(1527), + [anon_sym_AMP] = ACTIONS(552), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_TILDE] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(580), + [anon_sym_DASH] = ACTIONS(580), + [anon_sym_DASH_DASH] = ACTIONS(582), + [anon_sym_PLUS_PLUS] = ACTIONS(582), + [anon_sym_sizeof] = ACTIONS(584), + [sym_number_literal] = ACTIONS(1529), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_null] = ACTIONS(1531), + [sym_identifier] = ACTIONS(2740), [sym_comment] = ACTIONS(39), }, [880] = { @@ -33861,40 +33880,40 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(649), [sym_concatenated_string] = STATE(649), [sym_string_literal] = STATE(253), - [anon_sym_SEMI] = ACTIONS(1516), - [anon_sym_LBRACE] = ACTIONS(734), - [anon_sym_LPAREN2] = ACTIONS(554), - [anon_sym_STAR] = ACTIONS(556), - [anon_sym_if] = ACTIONS(1518), - [anon_sym_switch] = ACTIONS(1520), - [anon_sym_case] = ACTIONS(1522), - [anon_sym_default] = ACTIONS(1524), - [anon_sym_while] = ACTIONS(1526), - [anon_sym_do] = ACTIONS(1528), - [anon_sym_for] = ACTIONS(1530), - [anon_sym_return] = ACTIONS(1532), - [anon_sym_break] = ACTIONS(1534), - [anon_sym_continue] = ACTIONS(1536), - [anon_sym_goto] = ACTIONS(1538), - [anon_sym_AMP] = ACTIONS(556), - [anon_sym_BANG] = ACTIONS(580), - [anon_sym_TILDE] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_DASH_DASH] = ACTIONS(586), - [anon_sym_PLUS_PLUS] = ACTIONS(586), - [anon_sym_sizeof] = ACTIONS(588), - [sym_number_literal] = ACTIONS(1540), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1542), - [sym_false] = ACTIONS(1542), - [sym_null] = ACTIONS(1542), - [sym_identifier] = ACTIONS(2747), + [anon_sym_SEMI] = ACTIONS(1505), + [anon_sym_LBRACE] = ACTIONS(725), + [anon_sym_LPAREN2] = ACTIONS(550), + [anon_sym_STAR] = ACTIONS(552), + [anon_sym_if] = ACTIONS(1507), + [anon_sym_switch] = ACTIONS(1509), + [anon_sym_case] = ACTIONS(1511), + [anon_sym_default] = ACTIONS(1513), + [anon_sym_while] = ACTIONS(1515), + [anon_sym_do] = ACTIONS(1517), + [anon_sym_for] = ACTIONS(1519), + [anon_sym_return] = ACTIONS(1521), + [anon_sym_break] = ACTIONS(1523), + [anon_sym_continue] = ACTIONS(1525), + [anon_sym_goto] = ACTIONS(1527), + [anon_sym_AMP] = ACTIONS(552), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_TILDE] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(580), + [anon_sym_DASH] = ACTIONS(580), + [anon_sym_DASH_DASH] = ACTIONS(582), + [anon_sym_PLUS_PLUS] = ACTIONS(582), + [anon_sym_sizeof] = ACTIONS(584), + [sym_number_literal] = ACTIONS(1529), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_null] = ACTIONS(1531), + [sym_identifier] = ACTIONS(2736), [sym_comment] = ACTIONS(39), }, [881] = { - [anon_sym_while] = ACTIONS(2753), + [anon_sym_while] = ACTIONS(2742), [sym_comment] = ACTIONS(39), }, [882] = { @@ -33930,10 +33949,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_macro_type_specifier] = STATE(95), [aux_sym__declaration_specifiers_repeat1] = STATE(96), [aux_sym_sized_type_specifier_repeat1] = STATE(97), - [anon_sym_SEMI] = ACTIONS(2755), + [anon_sym_SEMI] = ACTIONS(2744), [anon_sym_extern] = ACTIONS(23), - [anon_sym_LPAREN2] = ACTIONS(847), - [anon_sym_STAR] = ACTIONS(849), + [anon_sym_LPAREN2] = ACTIONS(838), + [anon_sym_STAR] = ACTIONS(840), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -33942,253 +33961,253 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_restrict] = ACTIONS(25), [anon_sym_volatile] = ACTIONS(25), [anon_sym__Atomic] = ACTIONS(25), - [anon_sym_unsigned] = ACTIONS(177), - [anon_sym_long] = ACTIONS(177), - [anon_sym_short] = ACTIONS(177), - [sym_primitive_type] = ACTIONS(179), + [anon_sym_unsigned] = ACTIONS(175), + [anon_sym_long] = ACTIONS(175), + [anon_sym_short] = ACTIONS(175), + [sym_primitive_type] = ACTIONS(177), [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), - [anon_sym_AMP] = ACTIONS(849), - [anon_sym_BANG] = ACTIONS(851), - [anon_sym_TILDE] = ACTIONS(853), - [anon_sym_PLUS] = ACTIONS(855), - [anon_sym_DASH] = ACTIONS(855), - [anon_sym_DASH_DASH] = ACTIONS(857), - [anon_sym_PLUS_PLUS] = ACTIONS(857), - [anon_sym_sizeof] = ACTIONS(859), - [sym_number_literal] = ACTIONS(2757), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2759), - [sym_false] = ACTIONS(2759), - [sym_null] = ACTIONS(2759), - [sym_identifier] = ACTIONS(1670), + [anon_sym_AMP] = ACTIONS(840), + [anon_sym_BANG] = ACTIONS(842), + [anon_sym_TILDE] = ACTIONS(844), + [anon_sym_PLUS] = ACTIONS(846), + [anon_sym_DASH] = ACTIONS(846), + [anon_sym_DASH_DASH] = ACTIONS(848), + [anon_sym_PLUS_PLUS] = ACTIONS(848), + [anon_sym_sizeof] = ACTIONS(850), + [sym_number_literal] = ACTIONS(2746), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(2748), + [sym_false] = ACTIONS(2748), + [sym_null] = ACTIONS(2748), + [sym_identifier] = ACTIONS(1659), [sym_comment] = ACTIONS(39), }, [883] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1672), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1672), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1672), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1672), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1672), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1672), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1672), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1672), - [sym_preproc_directive] = ACTIONS(1672), - [anon_sym_SEMI] = ACTIONS(1674), - [anon_sym_typedef] = ACTIONS(1672), - [anon_sym_extern] = ACTIONS(1672), - [anon_sym_LBRACE] = ACTIONS(1674), - [anon_sym_LPAREN2] = ACTIONS(1674), - [anon_sym_STAR] = ACTIONS(1674), - [anon_sym_static] = ACTIONS(1672), - [anon_sym_auto] = ACTIONS(1672), - [anon_sym_register] = ACTIONS(1672), - [anon_sym_inline] = ACTIONS(1672), - [anon_sym_const] = ACTIONS(1672), - [anon_sym_restrict] = ACTIONS(1672), - [anon_sym_volatile] = ACTIONS(1672), - [anon_sym__Atomic] = ACTIONS(1672), - [anon_sym_unsigned] = ACTIONS(1672), - [anon_sym_long] = ACTIONS(1672), - [anon_sym_short] = ACTIONS(1672), - [sym_primitive_type] = ACTIONS(1672), - [anon_sym_enum] = ACTIONS(1672), - [anon_sym_struct] = ACTIONS(1672), - [anon_sym_union] = ACTIONS(1672), - [anon_sym_if] = ACTIONS(1672), - [anon_sym_else] = ACTIONS(1672), - [anon_sym_switch] = ACTIONS(1672), - [anon_sym_case] = ACTIONS(1672), - [anon_sym_default] = ACTIONS(1672), - [anon_sym_while] = ACTIONS(1672), - [anon_sym_do] = ACTIONS(1672), - [anon_sym_for] = ACTIONS(1672), - [anon_sym_return] = ACTIONS(1672), - [anon_sym_break] = ACTIONS(1672), - [anon_sym_continue] = ACTIONS(1672), - [anon_sym_goto] = ACTIONS(1672), - [anon_sym_AMP] = ACTIONS(1674), - [anon_sym_BANG] = ACTIONS(1674), - [anon_sym_TILDE] = ACTIONS(1674), - [anon_sym_PLUS] = ACTIONS(1672), - [anon_sym_DASH] = ACTIONS(1672), - [anon_sym_DASH_DASH] = ACTIONS(1674), - [anon_sym_PLUS_PLUS] = ACTIONS(1674), - [anon_sym_sizeof] = ACTIONS(1672), - [sym_number_literal] = ACTIONS(1674), - [anon_sym_SQUOTE] = ACTIONS(1674), - [anon_sym_DQUOTE] = ACTIONS(1674), - [sym_true] = ACTIONS(1672), - [sym_false] = ACTIONS(1672), - [sym_null] = ACTIONS(1672), - [sym_identifier] = ACTIONS(1672), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1661), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1661), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1661), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1661), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1661), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1661), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1661), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1661), + [sym_preproc_directive] = ACTIONS(1661), + [anon_sym_SEMI] = ACTIONS(1663), + [anon_sym_typedef] = ACTIONS(1661), + [anon_sym_extern] = ACTIONS(1661), + [anon_sym_LBRACE] = ACTIONS(1663), + [anon_sym_LPAREN2] = ACTIONS(1663), + [anon_sym_STAR] = ACTIONS(1663), + [anon_sym_static] = ACTIONS(1661), + [anon_sym_auto] = ACTIONS(1661), + [anon_sym_register] = ACTIONS(1661), + [anon_sym_inline] = ACTIONS(1661), + [anon_sym_const] = ACTIONS(1661), + [anon_sym_restrict] = ACTIONS(1661), + [anon_sym_volatile] = ACTIONS(1661), + [anon_sym__Atomic] = ACTIONS(1661), + [anon_sym_unsigned] = ACTIONS(1661), + [anon_sym_long] = ACTIONS(1661), + [anon_sym_short] = ACTIONS(1661), + [sym_primitive_type] = ACTIONS(1661), + [anon_sym_enum] = ACTIONS(1661), + [anon_sym_struct] = ACTIONS(1661), + [anon_sym_union] = ACTIONS(1661), + [anon_sym_if] = ACTIONS(1661), + [anon_sym_else] = ACTIONS(1661), + [anon_sym_switch] = ACTIONS(1661), + [anon_sym_case] = ACTIONS(1661), + [anon_sym_default] = ACTIONS(1661), + [anon_sym_while] = ACTIONS(1661), + [anon_sym_do] = ACTIONS(1661), + [anon_sym_for] = ACTIONS(1661), + [anon_sym_return] = ACTIONS(1661), + [anon_sym_break] = ACTIONS(1661), + [anon_sym_continue] = ACTIONS(1661), + [anon_sym_goto] = ACTIONS(1661), + [anon_sym_AMP] = ACTIONS(1663), + [anon_sym_BANG] = ACTIONS(1663), + [anon_sym_TILDE] = ACTIONS(1663), + [anon_sym_PLUS] = ACTIONS(1661), + [anon_sym_DASH] = ACTIONS(1661), + [anon_sym_DASH_DASH] = ACTIONS(1663), + [anon_sym_PLUS_PLUS] = ACTIONS(1663), + [anon_sym_sizeof] = ACTIONS(1661), + [sym_number_literal] = ACTIONS(1663), + [anon_sym_SQUOTE] = ACTIONS(1663), + [anon_sym_DQUOTE] = ACTIONS(1663), + [sym_true] = ACTIONS(1661), + [sym_false] = ACTIONS(1661), + [sym_null] = ACTIONS(1661), + [sym_identifier] = ACTIONS(1661), [sym_comment] = ACTIONS(39), }, [884] = { [sym_argument_list] = STATE(465), - [anon_sym_SEMI] = ACTIONS(2761), - [anon_sym_LPAREN2] = ACTIONS(1096), - [anon_sym_STAR] = ACTIONS(1436), - [anon_sym_LBRACK] = ACTIONS(1100), - [anon_sym_EQ] = ACTIONS(1438), - [anon_sym_QMARK] = ACTIONS(1440), - [anon_sym_STAR_EQ] = ACTIONS(1442), - [anon_sym_SLASH_EQ] = ACTIONS(1442), - [anon_sym_PERCENT_EQ] = ACTIONS(1442), - [anon_sym_PLUS_EQ] = ACTIONS(1442), - [anon_sym_DASH_EQ] = ACTIONS(1442), - [anon_sym_LT_LT_EQ] = ACTIONS(1442), - [anon_sym_GT_GT_EQ] = ACTIONS(1442), - [anon_sym_AMP_EQ] = ACTIONS(1442), - [anon_sym_CARET_EQ] = ACTIONS(1442), - [anon_sym_PIPE_EQ] = ACTIONS(1442), - [anon_sym_AMP] = ACTIONS(1444), - [anon_sym_PIPE_PIPE] = ACTIONS(1446), - [anon_sym_AMP_AMP] = ACTIONS(1448), - [anon_sym_PIPE] = ACTIONS(1450), - [anon_sym_CARET] = ACTIONS(1452), - [anon_sym_EQ_EQ] = ACTIONS(1454), - [anon_sym_BANG_EQ] = ACTIONS(1454), - [anon_sym_LT] = ACTIONS(1456), - [anon_sym_GT] = ACTIONS(1456), - [anon_sym_LT_EQ] = ACTIONS(1458), - [anon_sym_GT_EQ] = ACTIONS(1458), - [anon_sym_LT_LT] = ACTIONS(1460), - [anon_sym_GT_GT] = ACTIONS(1460), - [anon_sym_PLUS] = ACTIONS(1462), - [anon_sym_DASH] = ACTIONS(1462), - [anon_sym_SLASH] = ACTIONS(1436), - [anon_sym_PERCENT] = ACTIONS(1436), - [anon_sym_DASH_DASH] = ACTIONS(1128), - [anon_sym_PLUS_PLUS] = ACTIONS(1128), - [anon_sym_DOT] = ACTIONS(1130), - [anon_sym_DASH_GT] = ACTIONS(1130), + [anon_sym_SEMI] = ACTIONS(2750), + [anon_sym_LPAREN2] = ACTIONS(1089), + [anon_sym_STAR] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(1429), + [anon_sym_QMARK] = ACTIONS(1431), + [anon_sym_STAR_EQ] = ACTIONS(1433), + [anon_sym_SLASH_EQ] = ACTIONS(1433), + [anon_sym_PERCENT_EQ] = ACTIONS(1433), + [anon_sym_PLUS_EQ] = ACTIONS(1433), + [anon_sym_DASH_EQ] = ACTIONS(1433), + [anon_sym_LT_LT_EQ] = ACTIONS(1433), + [anon_sym_GT_GT_EQ] = ACTIONS(1433), + [anon_sym_AMP_EQ] = ACTIONS(1433), + [anon_sym_CARET_EQ] = ACTIONS(1433), + [anon_sym_PIPE_EQ] = ACTIONS(1433), + [anon_sym_AMP] = ACTIONS(1435), + [anon_sym_PIPE_PIPE] = ACTIONS(1437), + [anon_sym_AMP_AMP] = ACTIONS(1439), + [anon_sym_PIPE] = ACTIONS(1441), + [anon_sym_CARET] = ACTIONS(1443), + [anon_sym_EQ_EQ] = ACTIONS(1445), + [anon_sym_BANG_EQ] = ACTIONS(1445), + [anon_sym_LT] = ACTIONS(1447), + [anon_sym_GT] = ACTIONS(1447), + [anon_sym_LT_EQ] = ACTIONS(1449), + [anon_sym_GT_EQ] = ACTIONS(1449), + [anon_sym_LT_LT] = ACTIONS(1451), + [anon_sym_GT_GT] = ACTIONS(1451), + [anon_sym_PLUS] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1453), + [anon_sym_SLASH] = ACTIONS(1427), + [anon_sym_PERCENT] = ACTIONS(1427), + [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_PLUS_PLUS] = ACTIONS(1121), + [anon_sym_DOT] = ACTIONS(1123), + [anon_sym_DASH_GT] = ACTIONS(1123), [sym_comment] = ACTIONS(39), }, [885] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1678), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1678), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1678), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1678), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1678), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1678), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1678), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1678), - [sym_preproc_directive] = ACTIONS(1678), - [anon_sym_SEMI] = ACTIONS(1680), - [anon_sym_typedef] = ACTIONS(1678), - [anon_sym_extern] = ACTIONS(1678), - [anon_sym_LBRACE] = ACTIONS(1680), - [anon_sym_LPAREN2] = ACTIONS(1680), - [anon_sym_STAR] = ACTIONS(1680), - [anon_sym_static] = ACTIONS(1678), - [anon_sym_auto] = ACTIONS(1678), - [anon_sym_register] = ACTIONS(1678), - [anon_sym_inline] = ACTIONS(1678), - [anon_sym_const] = ACTIONS(1678), - [anon_sym_restrict] = ACTIONS(1678), - [anon_sym_volatile] = ACTIONS(1678), - [anon_sym__Atomic] = ACTIONS(1678), - [anon_sym_unsigned] = ACTIONS(1678), - [anon_sym_long] = ACTIONS(1678), - [anon_sym_short] = ACTIONS(1678), - [sym_primitive_type] = ACTIONS(1678), - [anon_sym_enum] = ACTIONS(1678), - [anon_sym_struct] = ACTIONS(1678), - [anon_sym_union] = ACTIONS(1678), - [anon_sym_if] = ACTIONS(1678), - [anon_sym_else] = ACTIONS(1678), - [anon_sym_switch] = ACTIONS(1678), - [anon_sym_case] = ACTIONS(1678), - [anon_sym_default] = ACTIONS(1678), - [anon_sym_while] = ACTIONS(1678), - [anon_sym_do] = ACTIONS(1678), - [anon_sym_for] = ACTIONS(1678), - [anon_sym_return] = ACTIONS(1678), - [anon_sym_break] = ACTIONS(1678), - [anon_sym_continue] = ACTIONS(1678), - [anon_sym_goto] = ACTIONS(1678), - [anon_sym_AMP] = ACTIONS(1680), - [anon_sym_BANG] = ACTIONS(1680), - [anon_sym_TILDE] = ACTIONS(1680), - [anon_sym_PLUS] = ACTIONS(1678), - [anon_sym_DASH] = ACTIONS(1678), - [anon_sym_DASH_DASH] = ACTIONS(1680), - [anon_sym_PLUS_PLUS] = ACTIONS(1680), - [anon_sym_sizeof] = ACTIONS(1678), - [sym_number_literal] = ACTIONS(1680), - [anon_sym_SQUOTE] = ACTIONS(1680), - [anon_sym_DQUOTE] = ACTIONS(1680), - [sym_true] = ACTIONS(1678), - [sym_false] = ACTIONS(1678), - [sym_null] = ACTIONS(1678), - [sym_identifier] = ACTIONS(1678), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1667), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1667), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1667), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1667), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1667), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1667), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1667), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1667), + [sym_preproc_directive] = ACTIONS(1667), + [anon_sym_SEMI] = ACTIONS(1669), + [anon_sym_typedef] = ACTIONS(1667), + [anon_sym_extern] = ACTIONS(1667), + [anon_sym_LBRACE] = ACTIONS(1669), + [anon_sym_LPAREN2] = ACTIONS(1669), + [anon_sym_STAR] = ACTIONS(1669), + [anon_sym_static] = ACTIONS(1667), + [anon_sym_auto] = ACTIONS(1667), + [anon_sym_register] = ACTIONS(1667), + [anon_sym_inline] = ACTIONS(1667), + [anon_sym_const] = ACTIONS(1667), + [anon_sym_restrict] = ACTIONS(1667), + [anon_sym_volatile] = ACTIONS(1667), + [anon_sym__Atomic] = ACTIONS(1667), + [anon_sym_unsigned] = ACTIONS(1667), + [anon_sym_long] = ACTIONS(1667), + [anon_sym_short] = ACTIONS(1667), + [sym_primitive_type] = ACTIONS(1667), + [anon_sym_enum] = ACTIONS(1667), + [anon_sym_struct] = ACTIONS(1667), + [anon_sym_union] = ACTIONS(1667), + [anon_sym_if] = ACTIONS(1667), + [anon_sym_else] = ACTIONS(1667), + [anon_sym_switch] = ACTIONS(1667), + [anon_sym_case] = ACTIONS(1667), + [anon_sym_default] = ACTIONS(1667), + [anon_sym_while] = ACTIONS(1667), + [anon_sym_do] = ACTIONS(1667), + [anon_sym_for] = ACTIONS(1667), + [anon_sym_return] = ACTIONS(1667), + [anon_sym_break] = ACTIONS(1667), + [anon_sym_continue] = ACTIONS(1667), + [anon_sym_goto] = ACTIONS(1667), + [anon_sym_AMP] = ACTIONS(1669), + [anon_sym_BANG] = ACTIONS(1669), + [anon_sym_TILDE] = ACTIONS(1669), + [anon_sym_PLUS] = ACTIONS(1667), + [anon_sym_DASH] = ACTIONS(1667), + [anon_sym_DASH_DASH] = ACTIONS(1669), + [anon_sym_PLUS_PLUS] = ACTIONS(1669), + [anon_sym_sizeof] = ACTIONS(1667), + [sym_number_literal] = ACTIONS(1669), + [anon_sym_SQUOTE] = ACTIONS(1669), + [anon_sym_DQUOTE] = ACTIONS(1669), + [sym_true] = ACTIONS(1667), + [sym_false] = ACTIONS(1667), + [sym_null] = ACTIONS(1667), + [sym_identifier] = ACTIONS(1667), [sym_comment] = ACTIONS(39), }, [886] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1682), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1682), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1682), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1682), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1682), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1682), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1682), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1682), - [sym_preproc_directive] = ACTIONS(1682), - [anon_sym_SEMI] = ACTIONS(1684), - [anon_sym_typedef] = ACTIONS(1682), - [anon_sym_extern] = ACTIONS(1682), - [anon_sym_LBRACE] = ACTIONS(1684), - [anon_sym_LPAREN2] = ACTIONS(1684), - [anon_sym_STAR] = ACTIONS(1684), - [anon_sym_static] = ACTIONS(1682), - [anon_sym_auto] = ACTIONS(1682), - [anon_sym_register] = ACTIONS(1682), - [anon_sym_inline] = ACTIONS(1682), - [anon_sym_const] = ACTIONS(1682), - [anon_sym_restrict] = ACTIONS(1682), - [anon_sym_volatile] = ACTIONS(1682), - [anon_sym__Atomic] = ACTIONS(1682), - [anon_sym_unsigned] = ACTIONS(1682), - [anon_sym_long] = ACTIONS(1682), - [anon_sym_short] = ACTIONS(1682), - [sym_primitive_type] = ACTIONS(1682), - [anon_sym_enum] = ACTIONS(1682), - [anon_sym_struct] = ACTIONS(1682), - [anon_sym_union] = ACTIONS(1682), - [anon_sym_if] = ACTIONS(1682), - [anon_sym_else] = ACTIONS(1682), - [anon_sym_switch] = ACTIONS(1682), - [anon_sym_case] = ACTIONS(1682), - [anon_sym_default] = ACTIONS(1682), - [anon_sym_while] = ACTIONS(1682), - [anon_sym_do] = ACTIONS(1682), - [anon_sym_for] = ACTIONS(1682), - [anon_sym_return] = ACTIONS(1682), - [anon_sym_break] = ACTIONS(1682), - [anon_sym_continue] = ACTIONS(1682), - [anon_sym_goto] = ACTIONS(1682), - [anon_sym_AMP] = ACTIONS(1684), - [anon_sym_BANG] = ACTIONS(1684), - [anon_sym_TILDE] = ACTIONS(1684), - [anon_sym_PLUS] = ACTIONS(1682), - [anon_sym_DASH] = ACTIONS(1682), - [anon_sym_DASH_DASH] = ACTIONS(1684), - [anon_sym_PLUS_PLUS] = ACTIONS(1684), - [anon_sym_sizeof] = ACTIONS(1682), - [sym_number_literal] = ACTIONS(1684), - [anon_sym_SQUOTE] = ACTIONS(1684), - [anon_sym_DQUOTE] = ACTIONS(1684), - [sym_true] = ACTIONS(1682), - [sym_false] = ACTIONS(1682), - [sym_null] = ACTIONS(1682), - [sym_identifier] = ACTIONS(1682), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1671), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1671), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1671), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1671), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1671), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1671), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1671), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1671), + [sym_preproc_directive] = ACTIONS(1671), + [anon_sym_SEMI] = ACTIONS(1673), + [anon_sym_typedef] = ACTIONS(1671), + [anon_sym_extern] = ACTIONS(1671), + [anon_sym_LBRACE] = ACTIONS(1673), + [anon_sym_LPAREN2] = ACTIONS(1673), + [anon_sym_STAR] = ACTIONS(1673), + [anon_sym_static] = ACTIONS(1671), + [anon_sym_auto] = ACTIONS(1671), + [anon_sym_register] = ACTIONS(1671), + [anon_sym_inline] = ACTIONS(1671), + [anon_sym_const] = ACTIONS(1671), + [anon_sym_restrict] = ACTIONS(1671), + [anon_sym_volatile] = ACTIONS(1671), + [anon_sym__Atomic] = ACTIONS(1671), + [anon_sym_unsigned] = ACTIONS(1671), + [anon_sym_long] = ACTIONS(1671), + [anon_sym_short] = ACTIONS(1671), + [sym_primitive_type] = ACTIONS(1671), + [anon_sym_enum] = ACTIONS(1671), + [anon_sym_struct] = ACTIONS(1671), + [anon_sym_union] = ACTIONS(1671), + [anon_sym_if] = ACTIONS(1671), + [anon_sym_else] = ACTIONS(1671), + [anon_sym_switch] = ACTIONS(1671), + [anon_sym_case] = ACTIONS(1671), + [anon_sym_default] = ACTIONS(1671), + [anon_sym_while] = ACTIONS(1671), + [anon_sym_do] = ACTIONS(1671), + [anon_sym_for] = ACTIONS(1671), + [anon_sym_return] = ACTIONS(1671), + [anon_sym_break] = ACTIONS(1671), + [anon_sym_continue] = ACTIONS(1671), + [anon_sym_goto] = ACTIONS(1671), + [anon_sym_AMP] = ACTIONS(1673), + [anon_sym_BANG] = ACTIONS(1673), + [anon_sym_TILDE] = ACTIONS(1673), + [anon_sym_PLUS] = ACTIONS(1671), + [anon_sym_DASH] = ACTIONS(1671), + [anon_sym_DASH_DASH] = ACTIONS(1673), + [anon_sym_PLUS_PLUS] = ACTIONS(1673), + [anon_sym_sizeof] = ACTIONS(1671), + [sym_number_literal] = ACTIONS(1673), + [anon_sym_SQUOTE] = ACTIONS(1673), + [anon_sym_DQUOTE] = ACTIONS(1673), + [sym_true] = ACTIONS(1671), + [sym_false] = ACTIONS(1671), + [sym_null] = ACTIONS(1671), + [sym_identifier] = ACTIONS(1671), [sym_comment] = ACTIONS(39), }, [887] = { - [anon_sym_SEMI] = ACTIONS(2763), + [anon_sym_SEMI] = ACTIONS(2752), [sym_comment] = ACTIONS(39), }, [888] = { @@ -34226,285 +34245,285 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(649), [sym_concatenated_string] = STATE(649), [sym_string_literal] = STATE(253), - [anon_sym_SEMI] = ACTIONS(1516), - [anon_sym_LBRACE] = ACTIONS(734), - [anon_sym_LPAREN2] = ACTIONS(554), - [anon_sym_STAR] = ACTIONS(556), - [anon_sym_if] = ACTIONS(1518), - [anon_sym_switch] = ACTIONS(1520), - [anon_sym_case] = ACTIONS(1522), - [anon_sym_default] = ACTIONS(1524), - [anon_sym_while] = ACTIONS(1526), - [anon_sym_do] = ACTIONS(1528), - [anon_sym_for] = ACTIONS(1530), - [anon_sym_return] = ACTIONS(1532), - [anon_sym_break] = ACTIONS(1534), - [anon_sym_continue] = ACTIONS(1536), - [anon_sym_goto] = ACTIONS(1538), - [anon_sym_AMP] = ACTIONS(556), - [anon_sym_BANG] = ACTIONS(580), - [anon_sym_TILDE] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_DASH_DASH] = ACTIONS(586), - [anon_sym_PLUS_PLUS] = ACTIONS(586), - [anon_sym_sizeof] = ACTIONS(588), - [sym_number_literal] = ACTIONS(1540), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1542), - [sym_false] = ACTIONS(1542), - [sym_null] = ACTIONS(1542), - [sym_identifier] = ACTIONS(2747), + [anon_sym_SEMI] = ACTIONS(1505), + [anon_sym_LBRACE] = ACTIONS(725), + [anon_sym_LPAREN2] = ACTIONS(550), + [anon_sym_STAR] = ACTIONS(552), + [anon_sym_if] = ACTIONS(1507), + [anon_sym_switch] = ACTIONS(1509), + [anon_sym_case] = ACTIONS(1511), + [anon_sym_default] = ACTIONS(1513), + [anon_sym_while] = ACTIONS(1515), + [anon_sym_do] = ACTIONS(1517), + [anon_sym_for] = ACTIONS(1519), + [anon_sym_return] = ACTIONS(1521), + [anon_sym_break] = ACTIONS(1523), + [anon_sym_continue] = ACTIONS(1525), + [anon_sym_goto] = ACTIONS(1527), + [anon_sym_AMP] = ACTIONS(552), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_TILDE] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(580), + [anon_sym_DASH] = ACTIONS(580), + [anon_sym_DASH_DASH] = ACTIONS(582), + [anon_sym_PLUS_PLUS] = ACTIONS(582), + [anon_sym_sizeof] = ACTIONS(584), + [sym_number_literal] = ACTIONS(1529), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_null] = ACTIONS(1531), + [sym_identifier] = ACTIONS(2736), [sym_comment] = ACTIONS(39), }, [889] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2765), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2765), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2765), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2765), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2765), - [sym_preproc_directive] = ACTIONS(2765), - [anon_sym_SEMI] = ACTIONS(2767), - [anon_sym_typedef] = ACTIONS(2765), - [anon_sym_extern] = ACTIONS(2765), - [anon_sym_LBRACE] = ACTIONS(2767), - [anon_sym_RBRACE] = ACTIONS(2767), - [anon_sym_LPAREN2] = ACTIONS(2767), - [anon_sym_STAR] = ACTIONS(2767), - [anon_sym_static] = ACTIONS(2765), - [anon_sym_auto] = ACTIONS(2765), - [anon_sym_register] = ACTIONS(2765), - [anon_sym_inline] = ACTIONS(2765), - [anon_sym_const] = ACTIONS(2765), - [anon_sym_restrict] = ACTIONS(2765), - [anon_sym_volatile] = ACTIONS(2765), - [anon_sym__Atomic] = ACTIONS(2765), - [anon_sym_unsigned] = ACTIONS(2765), - [anon_sym_long] = ACTIONS(2765), - [anon_sym_short] = ACTIONS(2765), - [sym_primitive_type] = ACTIONS(2765), - [anon_sym_enum] = ACTIONS(2765), - [anon_sym_struct] = ACTIONS(2765), - [anon_sym_union] = ACTIONS(2765), - [anon_sym_if] = ACTIONS(2765), - [anon_sym_switch] = ACTIONS(2765), - [anon_sym_case] = ACTIONS(2765), - [anon_sym_default] = ACTIONS(2765), - [anon_sym_while] = ACTIONS(2765), - [anon_sym_do] = ACTIONS(2765), - [anon_sym_for] = ACTIONS(2765), - [anon_sym_return] = ACTIONS(2765), - [anon_sym_break] = ACTIONS(2765), - [anon_sym_continue] = ACTIONS(2765), - [anon_sym_goto] = ACTIONS(2765), - [anon_sym_AMP] = ACTIONS(2767), - [anon_sym_BANG] = ACTIONS(2767), - [anon_sym_TILDE] = ACTIONS(2767), - [anon_sym_PLUS] = ACTIONS(2765), - [anon_sym_DASH] = ACTIONS(2765), - [anon_sym_DASH_DASH] = ACTIONS(2767), - [anon_sym_PLUS_PLUS] = ACTIONS(2767), - [anon_sym_sizeof] = ACTIONS(2765), - [sym_number_literal] = ACTIONS(2767), - [anon_sym_SQUOTE] = ACTIONS(2767), - [anon_sym_DQUOTE] = ACTIONS(2767), - [sym_true] = ACTIONS(2765), - [sym_false] = ACTIONS(2765), - [sym_null] = ACTIONS(2765), - [sym_identifier] = ACTIONS(2765), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2754), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2754), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2754), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2754), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2754), + [sym_preproc_directive] = ACTIONS(2754), + [anon_sym_SEMI] = ACTIONS(2756), + [anon_sym_typedef] = ACTIONS(2754), + [anon_sym_extern] = ACTIONS(2754), + [anon_sym_LBRACE] = ACTIONS(2756), + [anon_sym_RBRACE] = ACTIONS(2756), + [anon_sym_LPAREN2] = ACTIONS(2756), + [anon_sym_STAR] = ACTIONS(2756), + [anon_sym_static] = ACTIONS(2754), + [anon_sym_auto] = ACTIONS(2754), + [anon_sym_register] = ACTIONS(2754), + [anon_sym_inline] = ACTIONS(2754), + [anon_sym_const] = ACTIONS(2754), + [anon_sym_restrict] = ACTIONS(2754), + [anon_sym_volatile] = ACTIONS(2754), + [anon_sym__Atomic] = ACTIONS(2754), + [anon_sym_unsigned] = ACTIONS(2754), + [anon_sym_long] = ACTIONS(2754), + [anon_sym_short] = ACTIONS(2754), + [sym_primitive_type] = ACTIONS(2754), + [anon_sym_enum] = ACTIONS(2754), + [anon_sym_struct] = ACTIONS(2754), + [anon_sym_union] = ACTIONS(2754), + [anon_sym_if] = ACTIONS(2754), + [anon_sym_switch] = ACTIONS(2754), + [anon_sym_case] = ACTIONS(2754), + [anon_sym_default] = ACTIONS(2754), + [anon_sym_while] = ACTIONS(2754), + [anon_sym_do] = ACTIONS(2754), + [anon_sym_for] = ACTIONS(2754), + [anon_sym_return] = ACTIONS(2754), + [anon_sym_break] = ACTIONS(2754), + [anon_sym_continue] = ACTIONS(2754), + [anon_sym_goto] = ACTIONS(2754), + [anon_sym_AMP] = ACTIONS(2756), + [anon_sym_BANG] = ACTIONS(2756), + [anon_sym_TILDE] = ACTIONS(2756), + [anon_sym_PLUS] = ACTIONS(2754), + [anon_sym_DASH] = ACTIONS(2754), + [anon_sym_DASH_DASH] = ACTIONS(2756), + [anon_sym_PLUS_PLUS] = ACTIONS(2756), + [anon_sym_sizeof] = ACTIONS(2754), + [sym_number_literal] = ACTIONS(2756), + [anon_sym_SQUOTE] = ACTIONS(2756), + [anon_sym_DQUOTE] = ACTIONS(2756), + [sym_true] = ACTIONS(2754), + [sym_false] = ACTIONS(2754), + [sym_null] = ACTIONS(2754), + [sym_identifier] = ACTIONS(2754), [sym_comment] = ACTIONS(39), }, [890] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2769), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2769), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2769), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2769), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2769), - [sym_preproc_directive] = ACTIONS(2769), - [anon_sym_SEMI] = ACTIONS(2771), - [anon_sym_typedef] = ACTIONS(2769), - [anon_sym_extern] = ACTIONS(2769), - [anon_sym_LBRACE] = ACTIONS(2771), - [anon_sym_RBRACE] = ACTIONS(2771), - [anon_sym_LPAREN2] = ACTIONS(2771), - [anon_sym_STAR] = ACTIONS(2771), - [anon_sym_static] = ACTIONS(2769), - [anon_sym_auto] = ACTIONS(2769), - [anon_sym_register] = ACTIONS(2769), - [anon_sym_inline] = ACTIONS(2769), - [anon_sym_const] = ACTIONS(2769), - [anon_sym_restrict] = ACTIONS(2769), - [anon_sym_volatile] = ACTIONS(2769), - [anon_sym__Atomic] = ACTIONS(2769), - [anon_sym_unsigned] = ACTIONS(2769), - [anon_sym_long] = ACTIONS(2769), - [anon_sym_short] = ACTIONS(2769), - [sym_primitive_type] = ACTIONS(2769), - [anon_sym_enum] = ACTIONS(2769), - [anon_sym_struct] = ACTIONS(2769), - [anon_sym_union] = ACTIONS(2769), - [anon_sym_if] = ACTIONS(2769), - [anon_sym_switch] = ACTIONS(2769), - [anon_sym_case] = ACTIONS(2769), - [anon_sym_default] = ACTIONS(2769), - [anon_sym_while] = ACTIONS(2769), - [anon_sym_do] = ACTIONS(2769), - [anon_sym_for] = ACTIONS(2769), - [anon_sym_return] = ACTIONS(2769), - [anon_sym_break] = ACTIONS(2769), - [anon_sym_continue] = ACTIONS(2769), - [anon_sym_goto] = ACTIONS(2769), - [anon_sym_AMP] = ACTIONS(2771), - [anon_sym_BANG] = ACTIONS(2771), - [anon_sym_TILDE] = ACTIONS(2771), - [anon_sym_PLUS] = ACTIONS(2769), - [anon_sym_DASH] = ACTIONS(2769), - [anon_sym_DASH_DASH] = ACTIONS(2771), - [anon_sym_PLUS_PLUS] = ACTIONS(2771), - [anon_sym_sizeof] = ACTIONS(2769), - [sym_number_literal] = ACTIONS(2771), - [anon_sym_SQUOTE] = ACTIONS(2771), - [anon_sym_DQUOTE] = ACTIONS(2771), - [sym_true] = ACTIONS(2769), - [sym_false] = ACTIONS(2769), - [sym_null] = ACTIONS(2769), - [sym_identifier] = ACTIONS(2769), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2758), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2758), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2758), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2758), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2758), + [sym_preproc_directive] = ACTIONS(2758), + [anon_sym_SEMI] = ACTIONS(2760), + [anon_sym_typedef] = ACTIONS(2758), + [anon_sym_extern] = ACTIONS(2758), + [anon_sym_LBRACE] = ACTIONS(2760), + [anon_sym_RBRACE] = ACTIONS(2760), + [anon_sym_LPAREN2] = ACTIONS(2760), + [anon_sym_STAR] = ACTIONS(2760), + [anon_sym_static] = ACTIONS(2758), + [anon_sym_auto] = ACTIONS(2758), + [anon_sym_register] = ACTIONS(2758), + [anon_sym_inline] = ACTIONS(2758), + [anon_sym_const] = ACTIONS(2758), + [anon_sym_restrict] = ACTIONS(2758), + [anon_sym_volatile] = ACTIONS(2758), + [anon_sym__Atomic] = ACTIONS(2758), + [anon_sym_unsigned] = ACTIONS(2758), + [anon_sym_long] = ACTIONS(2758), + [anon_sym_short] = ACTIONS(2758), + [sym_primitive_type] = ACTIONS(2758), + [anon_sym_enum] = ACTIONS(2758), + [anon_sym_struct] = ACTIONS(2758), + [anon_sym_union] = ACTIONS(2758), + [anon_sym_if] = ACTIONS(2758), + [anon_sym_switch] = ACTIONS(2758), + [anon_sym_case] = ACTIONS(2758), + [anon_sym_default] = ACTIONS(2758), + [anon_sym_while] = ACTIONS(2758), + [anon_sym_do] = ACTIONS(2758), + [anon_sym_for] = ACTIONS(2758), + [anon_sym_return] = ACTIONS(2758), + [anon_sym_break] = ACTIONS(2758), + [anon_sym_continue] = ACTIONS(2758), + [anon_sym_goto] = ACTIONS(2758), + [anon_sym_AMP] = ACTIONS(2760), + [anon_sym_BANG] = ACTIONS(2760), + [anon_sym_TILDE] = ACTIONS(2760), + [anon_sym_PLUS] = ACTIONS(2758), + [anon_sym_DASH] = ACTIONS(2758), + [anon_sym_DASH_DASH] = ACTIONS(2760), + [anon_sym_PLUS_PLUS] = ACTIONS(2760), + [anon_sym_sizeof] = ACTIONS(2758), + [sym_number_literal] = ACTIONS(2760), + [anon_sym_SQUOTE] = ACTIONS(2760), + [anon_sym_DQUOTE] = ACTIONS(2760), + [sym_true] = ACTIONS(2758), + [sym_false] = ACTIONS(2758), + [sym_null] = ACTIONS(2758), + [sym_identifier] = ACTIONS(2758), [sym_comment] = ACTIONS(39), }, [891] = { [sym_parameter_list] = STATE(131), [aux_sym_declaration_repeat1] = STATE(324), - [anon_sym_COMMA] = ACTIONS(237), - [anon_sym_SEMI] = ACTIONS(732), - [anon_sym_LPAREN2] = ACTIONS(243), - [anon_sym_LBRACK] = ACTIONS(245), - [anon_sym_EQ] = ACTIONS(247), + [anon_sym_COMMA] = ACTIONS(235), + [anon_sym_SEMI] = ACTIONS(723), + [anon_sym_LPAREN2] = ACTIONS(241), + [anon_sym_LBRACK] = ACTIONS(243), + [anon_sym_EQ] = ACTIONS(245), [sym_comment] = ACTIONS(39), }, [892] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1710), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1710), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1710), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1710), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1710), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1710), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1710), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1710), - [sym_preproc_directive] = ACTIONS(1710), - [anon_sym_SEMI] = ACTIONS(1712), - [anon_sym_typedef] = ACTIONS(1710), - [anon_sym_extern] = ACTIONS(1710), - [anon_sym_LBRACE] = ACTIONS(1712), - [anon_sym_LPAREN2] = ACTIONS(1712), - [anon_sym_STAR] = ACTIONS(1712), - [anon_sym_static] = ACTIONS(1710), - [anon_sym_auto] = ACTIONS(1710), - [anon_sym_register] = ACTIONS(1710), - [anon_sym_inline] = ACTIONS(1710), - [anon_sym_const] = ACTIONS(1710), - [anon_sym_restrict] = ACTIONS(1710), - [anon_sym_volatile] = ACTIONS(1710), - [anon_sym__Atomic] = ACTIONS(1710), - [anon_sym_unsigned] = ACTIONS(1710), - [anon_sym_long] = ACTIONS(1710), - [anon_sym_short] = ACTIONS(1710), - [sym_primitive_type] = ACTIONS(1710), - [anon_sym_enum] = ACTIONS(1710), - [anon_sym_struct] = ACTIONS(1710), - [anon_sym_union] = ACTIONS(1710), - [anon_sym_if] = ACTIONS(1710), - [anon_sym_else] = ACTIONS(1710), - [anon_sym_switch] = ACTIONS(1710), - [anon_sym_case] = ACTIONS(1710), - [anon_sym_default] = ACTIONS(1710), - [anon_sym_while] = ACTIONS(1710), - [anon_sym_do] = ACTIONS(1710), - [anon_sym_for] = ACTIONS(1710), - [anon_sym_return] = ACTIONS(1710), - [anon_sym_break] = ACTIONS(1710), - [anon_sym_continue] = ACTIONS(1710), - [anon_sym_goto] = ACTIONS(1710), - [anon_sym_AMP] = ACTIONS(1712), - [anon_sym_BANG] = ACTIONS(1712), - [anon_sym_TILDE] = ACTIONS(1712), - [anon_sym_PLUS] = ACTIONS(1710), - [anon_sym_DASH] = ACTIONS(1710), - [anon_sym_DASH_DASH] = ACTIONS(1712), - [anon_sym_PLUS_PLUS] = ACTIONS(1712), - [anon_sym_sizeof] = ACTIONS(1710), - [sym_number_literal] = ACTIONS(1712), - [anon_sym_SQUOTE] = ACTIONS(1712), - [anon_sym_DQUOTE] = ACTIONS(1712), - [sym_true] = ACTIONS(1710), - [sym_false] = ACTIONS(1710), - [sym_null] = ACTIONS(1710), - [sym_identifier] = ACTIONS(1710), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1699), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1699), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1699), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1699), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1699), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1699), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1699), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1699), + [sym_preproc_directive] = ACTIONS(1699), + [anon_sym_SEMI] = ACTIONS(1701), + [anon_sym_typedef] = ACTIONS(1699), + [anon_sym_extern] = ACTIONS(1699), + [anon_sym_LBRACE] = ACTIONS(1701), + [anon_sym_LPAREN2] = ACTIONS(1701), + [anon_sym_STAR] = ACTIONS(1701), + [anon_sym_static] = ACTIONS(1699), + [anon_sym_auto] = ACTIONS(1699), + [anon_sym_register] = ACTIONS(1699), + [anon_sym_inline] = ACTIONS(1699), + [anon_sym_const] = ACTIONS(1699), + [anon_sym_restrict] = ACTIONS(1699), + [anon_sym_volatile] = ACTIONS(1699), + [anon_sym__Atomic] = ACTIONS(1699), + [anon_sym_unsigned] = ACTIONS(1699), + [anon_sym_long] = ACTIONS(1699), + [anon_sym_short] = ACTIONS(1699), + [sym_primitive_type] = ACTIONS(1699), + [anon_sym_enum] = ACTIONS(1699), + [anon_sym_struct] = ACTIONS(1699), + [anon_sym_union] = ACTIONS(1699), + [anon_sym_if] = ACTIONS(1699), + [anon_sym_else] = ACTIONS(1699), + [anon_sym_switch] = ACTIONS(1699), + [anon_sym_case] = ACTIONS(1699), + [anon_sym_default] = ACTIONS(1699), + [anon_sym_while] = ACTIONS(1699), + [anon_sym_do] = ACTIONS(1699), + [anon_sym_for] = ACTIONS(1699), + [anon_sym_return] = ACTIONS(1699), + [anon_sym_break] = ACTIONS(1699), + [anon_sym_continue] = ACTIONS(1699), + [anon_sym_goto] = ACTIONS(1699), + [anon_sym_AMP] = ACTIONS(1701), + [anon_sym_BANG] = ACTIONS(1701), + [anon_sym_TILDE] = ACTIONS(1701), + [anon_sym_PLUS] = ACTIONS(1699), + [anon_sym_DASH] = ACTIONS(1699), + [anon_sym_DASH_DASH] = ACTIONS(1701), + [anon_sym_PLUS_PLUS] = ACTIONS(1701), + [anon_sym_sizeof] = ACTIONS(1699), + [sym_number_literal] = ACTIONS(1701), + [anon_sym_SQUOTE] = ACTIONS(1701), + [anon_sym_DQUOTE] = ACTIONS(1701), + [sym_true] = ACTIONS(1699), + [sym_false] = ACTIONS(1699), + [sym_null] = ACTIONS(1699), + [sym_identifier] = ACTIONS(1699), [sym_comment] = ACTIONS(39), }, [893] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2773), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2773), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2773), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2773), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2773), - [sym_preproc_directive] = ACTIONS(2773), - [anon_sym_SEMI] = ACTIONS(2775), - [anon_sym_typedef] = ACTIONS(2773), - [anon_sym_extern] = ACTIONS(2773), - [anon_sym_LBRACE] = ACTIONS(2775), - [anon_sym_RBRACE] = ACTIONS(2775), - [anon_sym_LPAREN2] = ACTIONS(2775), - [anon_sym_STAR] = ACTIONS(2775), - [anon_sym_static] = ACTIONS(2773), - [anon_sym_auto] = ACTIONS(2773), - [anon_sym_register] = ACTIONS(2773), - [anon_sym_inline] = ACTIONS(2773), - [anon_sym_const] = ACTIONS(2773), - [anon_sym_restrict] = ACTIONS(2773), - [anon_sym_volatile] = ACTIONS(2773), - [anon_sym__Atomic] = ACTIONS(2773), - [anon_sym_unsigned] = ACTIONS(2773), - [anon_sym_long] = ACTIONS(2773), - [anon_sym_short] = ACTIONS(2773), - [sym_primitive_type] = ACTIONS(2773), - [anon_sym_enum] = ACTIONS(2773), - [anon_sym_struct] = ACTIONS(2773), - [anon_sym_union] = ACTIONS(2773), - [anon_sym_if] = ACTIONS(2773), - [anon_sym_switch] = ACTIONS(2773), - [anon_sym_case] = ACTIONS(2773), - [anon_sym_default] = ACTIONS(2773), - [anon_sym_while] = ACTIONS(2773), - [anon_sym_do] = ACTIONS(2773), - [anon_sym_for] = ACTIONS(2773), - [anon_sym_return] = ACTIONS(2773), - [anon_sym_break] = ACTIONS(2773), - [anon_sym_continue] = ACTIONS(2773), - [anon_sym_goto] = ACTIONS(2773), - [anon_sym_AMP] = ACTIONS(2775), - [anon_sym_BANG] = ACTIONS(2775), - [anon_sym_TILDE] = ACTIONS(2775), - [anon_sym_PLUS] = ACTIONS(2773), - [anon_sym_DASH] = ACTIONS(2773), - [anon_sym_DASH_DASH] = ACTIONS(2775), - [anon_sym_PLUS_PLUS] = ACTIONS(2775), - [anon_sym_sizeof] = ACTIONS(2773), - [sym_number_literal] = ACTIONS(2775), - [anon_sym_SQUOTE] = ACTIONS(2775), - [anon_sym_DQUOTE] = ACTIONS(2775), - [sym_true] = ACTIONS(2773), - [sym_false] = ACTIONS(2773), - [sym_null] = ACTIONS(2773), - [sym_identifier] = ACTIONS(2773), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2762), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2762), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2762), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2762), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2762), + [sym_preproc_directive] = ACTIONS(2762), + [anon_sym_SEMI] = ACTIONS(2764), + [anon_sym_typedef] = ACTIONS(2762), + [anon_sym_extern] = ACTIONS(2762), + [anon_sym_LBRACE] = ACTIONS(2764), + [anon_sym_RBRACE] = ACTIONS(2764), + [anon_sym_LPAREN2] = ACTIONS(2764), + [anon_sym_STAR] = ACTIONS(2764), + [anon_sym_static] = ACTIONS(2762), + [anon_sym_auto] = ACTIONS(2762), + [anon_sym_register] = ACTIONS(2762), + [anon_sym_inline] = ACTIONS(2762), + [anon_sym_const] = ACTIONS(2762), + [anon_sym_restrict] = ACTIONS(2762), + [anon_sym_volatile] = ACTIONS(2762), + [anon_sym__Atomic] = ACTIONS(2762), + [anon_sym_unsigned] = ACTIONS(2762), + [anon_sym_long] = ACTIONS(2762), + [anon_sym_short] = ACTIONS(2762), + [sym_primitive_type] = ACTIONS(2762), + [anon_sym_enum] = ACTIONS(2762), + [anon_sym_struct] = ACTIONS(2762), + [anon_sym_union] = ACTIONS(2762), + [anon_sym_if] = ACTIONS(2762), + [anon_sym_switch] = ACTIONS(2762), + [anon_sym_case] = ACTIONS(2762), + [anon_sym_default] = ACTIONS(2762), + [anon_sym_while] = ACTIONS(2762), + [anon_sym_do] = ACTIONS(2762), + [anon_sym_for] = ACTIONS(2762), + [anon_sym_return] = ACTIONS(2762), + [anon_sym_break] = ACTIONS(2762), + [anon_sym_continue] = ACTIONS(2762), + [anon_sym_goto] = ACTIONS(2762), + [anon_sym_AMP] = ACTIONS(2764), + [anon_sym_BANG] = ACTIONS(2764), + [anon_sym_TILDE] = ACTIONS(2764), + [anon_sym_PLUS] = ACTIONS(2762), + [anon_sym_DASH] = ACTIONS(2762), + [anon_sym_DASH_DASH] = ACTIONS(2764), + [anon_sym_PLUS_PLUS] = ACTIONS(2764), + [anon_sym_sizeof] = ACTIONS(2762), + [sym_number_literal] = ACTIONS(2764), + [anon_sym_SQUOTE] = ACTIONS(2764), + [anon_sym_DQUOTE] = ACTIONS(2764), + [sym_true] = ACTIONS(2762), + [sym_false] = ACTIONS(2762), + [sym_null] = ACTIONS(2762), + [sym_identifier] = ACTIONS(2762), [sym_comment] = ACTIONS(39), }, [894] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2777), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2766), [sym_comment] = ACTIONS(39), }, [895] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2779), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2768), [sym_comment] = ACTIONS(39), }, [896] = { @@ -34563,420 +34582,420 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(896), [aux_sym__declaration_specifiers_repeat1] = STATE(20), [aux_sym_sized_type_specifier_repeat1] = STATE(21), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2781), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2784), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2787), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2790), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2792), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2795), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2790), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2790), - [sym_preproc_directive] = ACTIONS(2798), - [anon_sym_SEMI] = ACTIONS(2801), - [anon_sym_typedef] = ACTIONS(2804), - [anon_sym_extern] = ACTIONS(1810), - [anon_sym_LBRACE] = ACTIONS(2807), - [anon_sym_LPAREN2] = ACTIONS(1818), - [anon_sym_STAR] = ACTIONS(1821), - [anon_sym_static] = ACTIONS(1810), - [anon_sym_auto] = ACTIONS(1810), - [anon_sym_register] = ACTIONS(1810), - [anon_sym_inline] = ACTIONS(1810), - [anon_sym_const] = ACTIONS(1824), - [anon_sym_restrict] = ACTIONS(1824), - [anon_sym_volatile] = ACTIONS(1824), - [anon_sym__Atomic] = ACTIONS(1824), - [anon_sym_unsigned] = ACTIONS(1827), - [anon_sym_long] = ACTIONS(1827), - [anon_sym_short] = ACTIONS(1827), - [sym_primitive_type] = ACTIONS(1830), - [anon_sym_enum] = ACTIONS(1833), - [anon_sym_struct] = ACTIONS(1836), - [anon_sym_union] = ACTIONS(1839), - [anon_sym_if] = ACTIONS(2810), - [anon_sym_switch] = ACTIONS(2813), - [anon_sym_case] = ACTIONS(2816), - [anon_sym_default] = ACTIONS(2819), - [anon_sym_while] = ACTIONS(2822), - [anon_sym_do] = ACTIONS(2825), - [anon_sym_for] = ACTIONS(2828), - [anon_sym_return] = ACTIONS(2831), - [anon_sym_break] = ACTIONS(2834), - [anon_sym_continue] = ACTIONS(2837), - [anon_sym_goto] = ACTIONS(2840), - [anon_sym_AMP] = ACTIONS(1821), - [anon_sym_BANG] = ACTIONS(1875), - [anon_sym_TILDE] = ACTIONS(1878), - [anon_sym_PLUS] = ACTIONS(1881), - [anon_sym_DASH] = ACTIONS(1881), - [anon_sym_DASH_DASH] = ACTIONS(1884), - [anon_sym_PLUS_PLUS] = ACTIONS(1884), - [anon_sym_sizeof] = ACTIONS(1887), - [sym_number_literal] = ACTIONS(2843), - [anon_sym_SQUOTE] = ACTIONS(1893), - [anon_sym_DQUOTE] = ACTIONS(1896), - [sym_true] = ACTIONS(2846), - [sym_false] = ACTIONS(2846), - [sym_null] = ACTIONS(2846), - [sym_identifier] = ACTIONS(2849), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2770), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2773), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2776), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2779), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2781), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2784), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2779), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2779), + [sym_preproc_directive] = ACTIONS(2787), + [anon_sym_SEMI] = ACTIONS(2790), + [anon_sym_typedef] = ACTIONS(2793), + [anon_sym_extern] = ACTIONS(1799), + [anon_sym_LBRACE] = ACTIONS(2796), + [anon_sym_LPAREN2] = ACTIONS(1807), + [anon_sym_STAR] = ACTIONS(1810), + [anon_sym_static] = ACTIONS(1799), + [anon_sym_auto] = ACTIONS(1799), + [anon_sym_register] = ACTIONS(1799), + [anon_sym_inline] = ACTIONS(1799), + [anon_sym_const] = ACTIONS(1813), + [anon_sym_restrict] = ACTIONS(1813), + [anon_sym_volatile] = ACTIONS(1813), + [anon_sym__Atomic] = ACTIONS(1813), + [anon_sym_unsigned] = ACTIONS(1816), + [anon_sym_long] = ACTIONS(1816), + [anon_sym_short] = ACTIONS(1816), + [sym_primitive_type] = ACTIONS(1819), + [anon_sym_enum] = ACTIONS(1822), + [anon_sym_struct] = ACTIONS(1825), + [anon_sym_union] = ACTIONS(1828), + [anon_sym_if] = ACTIONS(2799), + [anon_sym_switch] = ACTIONS(2802), + [anon_sym_case] = ACTIONS(2805), + [anon_sym_default] = ACTIONS(2808), + [anon_sym_while] = ACTIONS(2811), + [anon_sym_do] = ACTIONS(2814), + [anon_sym_for] = ACTIONS(2817), + [anon_sym_return] = ACTIONS(2820), + [anon_sym_break] = ACTIONS(2823), + [anon_sym_continue] = ACTIONS(2826), + [anon_sym_goto] = ACTIONS(2829), + [anon_sym_AMP] = ACTIONS(1810), + [anon_sym_BANG] = ACTIONS(1864), + [anon_sym_TILDE] = ACTIONS(1867), + [anon_sym_PLUS] = ACTIONS(1870), + [anon_sym_DASH] = ACTIONS(1870), + [anon_sym_DASH_DASH] = ACTIONS(1873), + [anon_sym_PLUS_PLUS] = ACTIONS(1873), + [anon_sym_sizeof] = ACTIONS(1876), + [sym_number_literal] = ACTIONS(2832), + [anon_sym_SQUOTE] = ACTIONS(1882), + [anon_sym_DQUOTE] = ACTIONS(1885), + [sym_true] = ACTIONS(2835), + [sym_false] = ACTIONS(2835), + [sym_null] = ACTIONS(2835), + [sym_identifier] = ACTIONS(2838), [sym_comment] = ACTIONS(39), }, [897] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2852), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2852), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2852), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2852), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2852), - [sym_preproc_directive] = ACTIONS(2852), - [anon_sym_SEMI] = ACTIONS(2854), - [anon_sym_typedef] = ACTIONS(2852), - [anon_sym_extern] = ACTIONS(2852), - [anon_sym_LBRACE] = ACTIONS(2854), - [anon_sym_RBRACE] = ACTIONS(2854), - [anon_sym_LPAREN2] = ACTIONS(2854), - [anon_sym_STAR] = ACTIONS(2854), - [anon_sym_static] = ACTIONS(2852), - [anon_sym_auto] = ACTIONS(2852), - [anon_sym_register] = ACTIONS(2852), - [anon_sym_inline] = ACTIONS(2852), - [anon_sym_const] = ACTIONS(2852), - [anon_sym_restrict] = ACTIONS(2852), - [anon_sym_volatile] = ACTIONS(2852), - [anon_sym__Atomic] = ACTIONS(2852), - [anon_sym_unsigned] = ACTIONS(2852), - [anon_sym_long] = ACTIONS(2852), - [anon_sym_short] = ACTIONS(2852), - [sym_primitive_type] = ACTIONS(2852), - [anon_sym_enum] = ACTIONS(2852), - [anon_sym_struct] = ACTIONS(2852), - [anon_sym_union] = ACTIONS(2852), - [anon_sym_if] = ACTIONS(2852), - [anon_sym_switch] = ACTIONS(2852), - [anon_sym_case] = ACTIONS(2852), - [anon_sym_default] = ACTIONS(2852), - [anon_sym_while] = ACTIONS(2852), - [anon_sym_do] = ACTIONS(2852), - [anon_sym_for] = ACTIONS(2852), - [anon_sym_return] = ACTIONS(2852), - [anon_sym_break] = ACTIONS(2852), - [anon_sym_continue] = ACTIONS(2852), - [anon_sym_goto] = ACTIONS(2852), - [anon_sym_AMP] = ACTIONS(2854), - [anon_sym_BANG] = ACTIONS(2854), - [anon_sym_TILDE] = ACTIONS(2854), - [anon_sym_PLUS] = ACTIONS(2852), - [anon_sym_DASH] = ACTIONS(2852), - [anon_sym_DASH_DASH] = ACTIONS(2854), - [anon_sym_PLUS_PLUS] = ACTIONS(2854), - [anon_sym_sizeof] = ACTIONS(2852), - [sym_number_literal] = ACTIONS(2854), - [anon_sym_SQUOTE] = ACTIONS(2854), - [anon_sym_DQUOTE] = ACTIONS(2854), - [sym_true] = ACTIONS(2852), - [sym_false] = ACTIONS(2852), - [sym_null] = ACTIONS(2852), - [sym_identifier] = ACTIONS(2852), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2841), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2841), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2841), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2841), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2841), + [sym_preproc_directive] = ACTIONS(2841), + [anon_sym_SEMI] = ACTIONS(2843), + [anon_sym_typedef] = ACTIONS(2841), + [anon_sym_extern] = ACTIONS(2841), + [anon_sym_LBRACE] = ACTIONS(2843), + [anon_sym_RBRACE] = ACTIONS(2843), + [anon_sym_LPAREN2] = ACTIONS(2843), + [anon_sym_STAR] = ACTIONS(2843), + [anon_sym_static] = ACTIONS(2841), + [anon_sym_auto] = ACTIONS(2841), + [anon_sym_register] = ACTIONS(2841), + [anon_sym_inline] = ACTIONS(2841), + [anon_sym_const] = ACTIONS(2841), + [anon_sym_restrict] = ACTIONS(2841), + [anon_sym_volatile] = ACTIONS(2841), + [anon_sym__Atomic] = ACTIONS(2841), + [anon_sym_unsigned] = ACTIONS(2841), + [anon_sym_long] = ACTIONS(2841), + [anon_sym_short] = ACTIONS(2841), + [sym_primitive_type] = ACTIONS(2841), + [anon_sym_enum] = ACTIONS(2841), + [anon_sym_struct] = ACTIONS(2841), + [anon_sym_union] = ACTIONS(2841), + [anon_sym_if] = ACTIONS(2841), + [anon_sym_switch] = ACTIONS(2841), + [anon_sym_case] = ACTIONS(2841), + [anon_sym_default] = ACTIONS(2841), + [anon_sym_while] = ACTIONS(2841), + [anon_sym_do] = ACTIONS(2841), + [anon_sym_for] = ACTIONS(2841), + [anon_sym_return] = ACTIONS(2841), + [anon_sym_break] = ACTIONS(2841), + [anon_sym_continue] = ACTIONS(2841), + [anon_sym_goto] = ACTIONS(2841), + [anon_sym_AMP] = ACTIONS(2843), + [anon_sym_BANG] = ACTIONS(2843), + [anon_sym_TILDE] = ACTIONS(2843), + [anon_sym_PLUS] = ACTIONS(2841), + [anon_sym_DASH] = ACTIONS(2841), + [anon_sym_DASH_DASH] = ACTIONS(2843), + [anon_sym_PLUS_PLUS] = ACTIONS(2843), + [anon_sym_sizeof] = ACTIONS(2841), + [sym_number_literal] = ACTIONS(2843), + [anon_sym_SQUOTE] = ACTIONS(2843), + [anon_sym_DQUOTE] = ACTIONS(2843), + [sym_true] = ACTIONS(2841), + [sym_false] = ACTIONS(2841), + [sym_null] = ACTIONS(2841), + [sym_identifier] = ACTIONS(2841), [sym_comment] = ACTIONS(39), }, [898] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2856), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2856), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2856), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2856), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2856), - [sym_preproc_directive] = ACTIONS(2856), - [anon_sym_SEMI] = ACTIONS(2858), - [anon_sym_typedef] = ACTIONS(2856), - [anon_sym_extern] = ACTIONS(2856), - [anon_sym_LBRACE] = ACTIONS(2858), - [anon_sym_RBRACE] = ACTIONS(2858), - [anon_sym_LPAREN2] = ACTIONS(2858), - [anon_sym_STAR] = ACTIONS(2858), - [anon_sym_static] = ACTIONS(2856), - [anon_sym_auto] = ACTIONS(2856), - [anon_sym_register] = ACTIONS(2856), - [anon_sym_inline] = ACTIONS(2856), - [anon_sym_const] = ACTIONS(2856), - [anon_sym_restrict] = ACTIONS(2856), - [anon_sym_volatile] = ACTIONS(2856), - [anon_sym__Atomic] = ACTIONS(2856), - [anon_sym_unsigned] = ACTIONS(2856), - [anon_sym_long] = ACTIONS(2856), - [anon_sym_short] = ACTIONS(2856), - [sym_primitive_type] = ACTIONS(2856), - [anon_sym_enum] = ACTIONS(2856), - [anon_sym_struct] = ACTIONS(2856), - [anon_sym_union] = ACTIONS(2856), - [anon_sym_if] = ACTIONS(2856), - [anon_sym_switch] = ACTIONS(2856), - [anon_sym_case] = ACTIONS(2856), - [anon_sym_default] = ACTIONS(2856), - [anon_sym_while] = ACTIONS(2856), - [anon_sym_do] = ACTIONS(2856), - [anon_sym_for] = ACTIONS(2856), - [anon_sym_return] = ACTIONS(2856), - [anon_sym_break] = ACTIONS(2856), - [anon_sym_continue] = ACTIONS(2856), - [anon_sym_goto] = ACTIONS(2856), - [anon_sym_AMP] = ACTIONS(2858), - [anon_sym_BANG] = ACTIONS(2858), - [anon_sym_TILDE] = ACTIONS(2858), - [anon_sym_PLUS] = ACTIONS(2856), - [anon_sym_DASH] = ACTIONS(2856), - [anon_sym_DASH_DASH] = ACTIONS(2858), - [anon_sym_PLUS_PLUS] = ACTIONS(2858), - [anon_sym_sizeof] = ACTIONS(2856), - [sym_number_literal] = ACTIONS(2858), - [anon_sym_SQUOTE] = ACTIONS(2858), - [anon_sym_DQUOTE] = ACTIONS(2858), - [sym_true] = ACTIONS(2856), - [sym_false] = ACTIONS(2856), - [sym_null] = ACTIONS(2856), - [sym_identifier] = ACTIONS(2856), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2845), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2845), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2845), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2845), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2845), + [sym_preproc_directive] = ACTIONS(2845), + [anon_sym_SEMI] = ACTIONS(2847), + [anon_sym_typedef] = ACTIONS(2845), + [anon_sym_extern] = ACTIONS(2845), + [anon_sym_LBRACE] = ACTIONS(2847), + [anon_sym_RBRACE] = ACTIONS(2847), + [anon_sym_LPAREN2] = ACTIONS(2847), + [anon_sym_STAR] = ACTIONS(2847), + [anon_sym_static] = ACTIONS(2845), + [anon_sym_auto] = ACTIONS(2845), + [anon_sym_register] = ACTIONS(2845), + [anon_sym_inline] = ACTIONS(2845), + [anon_sym_const] = ACTIONS(2845), + [anon_sym_restrict] = ACTIONS(2845), + [anon_sym_volatile] = ACTIONS(2845), + [anon_sym__Atomic] = ACTIONS(2845), + [anon_sym_unsigned] = ACTIONS(2845), + [anon_sym_long] = ACTIONS(2845), + [anon_sym_short] = ACTIONS(2845), + [sym_primitive_type] = ACTIONS(2845), + [anon_sym_enum] = ACTIONS(2845), + [anon_sym_struct] = ACTIONS(2845), + [anon_sym_union] = ACTIONS(2845), + [anon_sym_if] = ACTIONS(2845), + [anon_sym_switch] = ACTIONS(2845), + [anon_sym_case] = ACTIONS(2845), + [anon_sym_default] = ACTIONS(2845), + [anon_sym_while] = ACTIONS(2845), + [anon_sym_do] = ACTIONS(2845), + [anon_sym_for] = ACTIONS(2845), + [anon_sym_return] = ACTIONS(2845), + [anon_sym_break] = ACTIONS(2845), + [anon_sym_continue] = ACTIONS(2845), + [anon_sym_goto] = ACTIONS(2845), + [anon_sym_AMP] = ACTIONS(2847), + [anon_sym_BANG] = ACTIONS(2847), + [anon_sym_TILDE] = ACTIONS(2847), + [anon_sym_PLUS] = ACTIONS(2845), + [anon_sym_DASH] = ACTIONS(2845), + [anon_sym_DASH_DASH] = ACTIONS(2847), + [anon_sym_PLUS_PLUS] = ACTIONS(2847), + [anon_sym_sizeof] = ACTIONS(2845), + [sym_number_literal] = ACTIONS(2847), + [anon_sym_SQUOTE] = ACTIONS(2847), + [anon_sym_DQUOTE] = ACTIONS(2847), + [sym_true] = ACTIONS(2845), + [sym_false] = ACTIONS(2845), + [sym_null] = ACTIONS(2845), + [sym_identifier] = ACTIONS(2845), [sym_comment] = ACTIONS(39), }, [899] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2860), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2860), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2860), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2860), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2860), - [sym_preproc_directive] = ACTIONS(2860), - [anon_sym_SEMI] = ACTIONS(2862), - [anon_sym_typedef] = ACTIONS(2860), - [anon_sym_extern] = ACTIONS(2860), - [anon_sym_LBRACE] = ACTIONS(2862), - [anon_sym_RBRACE] = ACTIONS(2862), - [anon_sym_LPAREN2] = ACTIONS(2862), - [anon_sym_STAR] = ACTIONS(2862), - [anon_sym_static] = ACTIONS(2860), - [anon_sym_auto] = ACTIONS(2860), - [anon_sym_register] = ACTIONS(2860), - [anon_sym_inline] = ACTIONS(2860), - [anon_sym_const] = ACTIONS(2860), - [anon_sym_restrict] = ACTIONS(2860), - [anon_sym_volatile] = ACTIONS(2860), - [anon_sym__Atomic] = ACTIONS(2860), - [anon_sym_unsigned] = ACTIONS(2860), - [anon_sym_long] = ACTIONS(2860), - [anon_sym_short] = ACTIONS(2860), - [sym_primitive_type] = ACTIONS(2860), - [anon_sym_enum] = ACTIONS(2860), - [anon_sym_struct] = ACTIONS(2860), - [anon_sym_union] = ACTIONS(2860), - [anon_sym_if] = ACTIONS(2860), - [anon_sym_switch] = ACTIONS(2860), - [anon_sym_case] = ACTIONS(2860), - [anon_sym_default] = ACTIONS(2860), - [anon_sym_while] = ACTIONS(2860), - [anon_sym_do] = ACTIONS(2860), - [anon_sym_for] = ACTIONS(2860), - [anon_sym_return] = ACTIONS(2860), - [anon_sym_break] = ACTIONS(2860), - [anon_sym_continue] = ACTIONS(2860), - [anon_sym_goto] = ACTIONS(2860), - [anon_sym_AMP] = ACTIONS(2862), - [anon_sym_BANG] = ACTIONS(2862), - [anon_sym_TILDE] = ACTIONS(2862), - [anon_sym_PLUS] = ACTIONS(2860), - [anon_sym_DASH] = ACTIONS(2860), - [anon_sym_DASH_DASH] = ACTIONS(2862), - [anon_sym_PLUS_PLUS] = ACTIONS(2862), - [anon_sym_sizeof] = ACTIONS(2860), - [sym_number_literal] = ACTIONS(2862), - [anon_sym_SQUOTE] = ACTIONS(2862), - [anon_sym_DQUOTE] = ACTIONS(2862), - [sym_true] = ACTIONS(2860), - [sym_false] = ACTIONS(2860), - [sym_null] = ACTIONS(2860), - [sym_identifier] = ACTIONS(2860), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2849), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2849), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2849), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2849), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2849), + [sym_preproc_directive] = ACTIONS(2849), + [anon_sym_SEMI] = ACTIONS(2851), + [anon_sym_typedef] = ACTIONS(2849), + [anon_sym_extern] = ACTIONS(2849), + [anon_sym_LBRACE] = ACTIONS(2851), + [anon_sym_RBRACE] = ACTIONS(2851), + [anon_sym_LPAREN2] = ACTIONS(2851), + [anon_sym_STAR] = ACTIONS(2851), + [anon_sym_static] = ACTIONS(2849), + [anon_sym_auto] = ACTIONS(2849), + [anon_sym_register] = ACTIONS(2849), + [anon_sym_inline] = ACTIONS(2849), + [anon_sym_const] = ACTIONS(2849), + [anon_sym_restrict] = ACTIONS(2849), + [anon_sym_volatile] = ACTIONS(2849), + [anon_sym__Atomic] = ACTIONS(2849), + [anon_sym_unsigned] = ACTIONS(2849), + [anon_sym_long] = ACTIONS(2849), + [anon_sym_short] = ACTIONS(2849), + [sym_primitive_type] = ACTIONS(2849), + [anon_sym_enum] = ACTIONS(2849), + [anon_sym_struct] = ACTIONS(2849), + [anon_sym_union] = ACTIONS(2849), + [anon_sym_if] = ACTIONS(2849), + [anon_sym_switch] = ACTIONS(2849), + [anon_sym_case] = ACTIONS(2849), + [anon_sym_default] = ACTIONS(2849), + [anon_sym_while] = ACTIONS(2849), + [anon_sym_do] = ACTIONS(2849), + [anon_sym_for] = ACTIONS(2849), + [anon_sym_return] = ACTIONS(2849), + [anon_sym_break] = ACTIONS(2849), + [anon_sym_continue] = ACTIONS(2849), + [anon_sym_goto] = ACTIONS(2849), + [anon_sym_AMP] = ACTIONS(2851), + [anon_sym_BANG] = ACTIONS(2851), + [anon_sym_TILDE] = ACTIONS(2851), + [anon_sym_PLUS] = ACTIONS(2849), + [anon_sym_DASH] = ACTIONS(2849), + [anon_sym_DASH_DASH] = ACTIONS(2851), + [anon_sym_PLUS_PLUS] = ACTIONS(2851), + [anon_sym_sizeof] = ACTIONS(2849), + [sym_number_literal] = ACTIONS(2851), + [anon_sym_SQUOTE] = ACTIONS(2851), + [anon_sym_DQUOTE] = ACTIONS(2851), + [sym_true] = ACTIONS(2849), + [sym_false] = ACTIONS(2849), + [sym_null] = ACTIONS(2849), + [sym_identifier] = ACTIONS(2849), [sym_comment] = ACTIONS(39), }, [900] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2864), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2853), [sym_comment] = ACTIONS(39), }, [901] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2866), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2855), [sym_comment] = ACTIONS(39), }, [902] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2868), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2868), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2868), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2868), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2868), - [sym_preproc_directive] = ACTIONS(2868), - [anon_sym_SEMI] = ACTIONS(2870), - [anon_sym_typedef] = ACTIONS(2868), - [anon_sym_extern] = ACTIONS(2868), - [anon_sym_LBRACE] = ACTIONS(2870), - [anon_sym_RBRACE] = ACTIONS(2870), - [anon_sym_LPAREN2] = ACTIONS(2870), - [anon_sym_STAR] = ACTIONS(2870), - [anon_sym_static] = ACTIONS(2868), - [anon_sym_auto] = ACTIONS(2868), - [anon_sym_register] = ACTIONS(2868), - [anon_sym_inline] = ACTIONS(2868), - [anon_sym_const] = ACTIONS(2868), - [anon_sym_restrict] = ACTIONS(2868), - [anon_sym_volatile] = ACTIONS(2868), - [anon_sym__Atomic] = ACTIONS(2868), - [anon_sym_unsigned] = ACTIONS(2868), - [anon_sym_long] = ACTIONS(2868), - [anon_sym_short] = ACTIONS(2868), - [sym_primitive_type] = ACTIONS(2868), - [anon_sym_enum] = ACTIONS(2868), - [anon_sym_struct] = ACTIONS(2868), - [anon_sym_union] = ACTIONS(2868), - [anon_sym_if] = ACTIONS(2868), - [anon_sym_switch] = ACTIONS(2868), - [anon_sym_case] = ACTIONS(2868), - [anon_sym_default] = ACTIONS(2868), - [anon_sym_while] = ACTIONS(2868), - [anon_sym_do] = ACTIONS(2868), - [anon_sym_for] = ACTIONS(2868), - [anon_sym_return] = ACTIONS(2868), - [anon_sym_break] = ACTIONS(2868), - [anon_sym_continue] = ACTIONS(2868), - [anon_sym_goto] = ACTIONS(2868), - [anon_sym_AMP] = ACTIONS(2870), - [anon_sym_BANG] = ACTIONS(2870), - [anon_sym_TILDE] = ACTIONS(2870), - [anon_sym_PLUS] = ACTIONS(2868), - [anon_sym_DASH] = ACTIONS(2868), - [anon_sym_DASH_DASH] = ACTIONS(2870), - [anon_sym_PLUS_PLUS] = ACTIONS(2870), - [anon_sym_sizeof] = ACTIONS(2868), - [sym_number_literal] = ACTIONS(2870), - [anon_sym_SQUOTE] = ACTIONS(2870), - [anon_sym_DQUOTE] = ACTIONS(2870), - [sym_true] = ACTIONS(2868), - [sym_false] = ACTIONS(2868), - [sym_null] = ACTIONS(2868), - [sym_identifier] = ACTIONS(2868), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2857), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2857), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2857), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2857), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2857), + [sym_preproc_directive] = ACTIONS(2857), + [anon_sym_SEMI] = ACTIONS(2859), + [anon_sym_typedef] = ACTIONS(2857), + [anon_sym_extern] = ACTIONS(2857), + [anon_sym_LBRACE] = ACTIONS(2859), + [anon_sym_RBRACE] = ACTIONS(2859), + [anon_sym_LPAREN2] = ACTIONS(2859), + [anon_sym_STAR] = ACTIONS(2859), + [anon_sym_static] = ACTIONS(2857), + [anon_sym_auto] = ACTIONS(2857), + [anon_sym_register] = ACTIONS(2857), + [anon_sym_inline] = ACTIONS(2857), + [anon_sym_const] = ACTIONS(2857), + [anon_sym_restrict] = ACTIONS(2857), + [anon_sym_volatile] = ACTIONS(2857), + [anon_sym__Atomic] = ACTIONS(2857), + [anon_sym_unsigned] = ACTIONS(2857), + [anon_sym_long] = ACTIONS(2857), + [anon_sym_short] = ACTIONS(2857), + [sym_primitive_type] = ACTIONS(2857), + [anon_sym_enum] = ACTIONS(2857), + [anon_sym_struct] = ACTIONS(2857), + [anon_sym_union] = ACTIONS(2857), + [anon_sym_if] = ACTIONS(2857), + [anon_sym_switch] = ACTIONS(2857), + [anon_sym_case] = ACTIONS(2857), + [anon_sym_default] = ACTIONS(2857), + [anon_sym_while] = ACTIONS(2857), + [anon_sym_do] = ACTIONS(2857), + [anon_sym_for] = ACTIONS(2857), + [anon_sym_return] = ACTIONS(2857), + [anon_sym_break] = ACTIONS(2857), + [anon_sym_continue] = ACTIONS(2857), + [anon_sym_goto] = ACTIONS(2857), + [anon_sym_AMP] = ACTIONS(2859), + [anon_sym_BANG] = ACTIONS(2859), + [anon_sym_TILDE] = ACTIONS(2859), + [anon_sym_PLUS] = ACTIONS(2857), + [anon_sym_DASH] = ACTIONS(2857), + [anon_sym_DASH_DASH] = ACTIONS(2859), + [anon_sym_PLUS_PLUS] = ACTIONS(2859), + [anon_sym_sizeof] = ACTIONS(2857), + [sym_number_literal] = ACTIONS(2859), + [anon_sym_SQUOTE] = ACTIONS(2859), + [anon_sym_DQUOTE] = ACTIONS(2859), + [sym_true] = ACTIONS(2857), + [sym_false] = ACTIONS(2857), + [sym_null] = ACTIONS(2857), + [sym_identifier] = ACTIONS(2857), [sym_comment] = ACTIONS(39), }, [903] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2872), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2872), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2872), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2872), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2872), - [sym_preproc_directive] = ACTIONS(2872), - [anon_sym_SEMI] = ACTIONS(2874), - [anon_sym_typedef] = ACTIONS(2872), - [anon_sym_extern] = ACTIONS(2872), - [anon_sym_LBRACE] = ACTIONS(2874), - [anon_sym_RBRACE] = ACTIONS(2874), - [anon_sym_LPAREN2] = ACTIONS(2874), - [anon_sym_STAR] = ACTIONS(2874), - [anon_sym_static] = ACTIONS(2872), - [anon_sym_auto] = ACTIONS(2872), - [anon_sym_register] = ACTIONS(2872), - [anon_sym_inline] = ACTIONS(2872), - [anon_sym_const] = ACTIONS(2872), - [anon_sym_restrict] = ACTIONS(2872), - [anon_sym_volatile] = ACTIONS(2872), - [anon_sym__Atomic] = ACTIONS(2872), - [anon_sym_unsigned] = ACTIONS(2872), - [anon_sym_long] = ACTIONS(2872), - [anon_sym_short] = ACTIONS(2872), - [sym_primitive_type] = ACTIONS(2872), - [anon_sym_enum] = ACTIONS(2872), - [anon_sym_struct] = ACTIONS(2872), - [anon_sym_union] = ACTIONS(2872), - [anon_sym_if] = ACTIONS(2872), - [anon_sym_switch] = ACTIONS(2872), - [anon_sym_case] = ACTIONS(2872), - [anon_sym_default] = ACTIONS(2872), - [anon_sym_while] = ACTIONS(2872), - [anon_sym_do] = ACTIONS(2872), - [anon_sym_for] = ACTIONS(2872), - [anon_sym_return] = ACTIONS(2872), - [anon_sym_break] = ACTIONS(2872), - [anon_sym_continue] = ACTIONS(2872), - [anon_sym_goto] = ACTIONS(2872), - [anon_sym_AMP] = ACTIONS(2874), - [anon_sym_BANG] = ACTIONS(2874), - [anon_sym_TILDE] = ACTIONS(2874), - [anon_sym_PLUS] = ACTIONS(2872), - [anon_sym_DASH] = ACTIONS(2872), - [anon_sym_DASH_DASH] = ACTIONS(2874), - [anon_sym_PLUS_PLUS] = ACTIONS(2874), - [anon_sym_sizeof] = ACTIONS(2872), - [sym_number_literal] = ACTIONS(2874), - [anon_sym_SQUOTE] = ACTIONS(2874), - [anon_sym_DQUOTE] = ACTIONS(2874), - [sym_true] = ACTIONS(2872), - [sym_false] = ACTIONS(2872), - [sym_null] = ACTIONS(2872), - [sym_identifier] = ACTIONS(2872), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2861), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2861), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2861), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2861), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2861), + [sym_preproc_directive] = ACTIONS(2861), + [anon_sym_SEMI] = ACTIONS(2863), + [anon_sym_typedef] = ACTIONS(2861), + [anon_sym_extern] = ACTIONS(2861), + [anon_sym_LBRACE] = ACTIONS(2863), + [anon_sym_RBRACE] = ACTIONS(2863), + [anon_sym_LPAREN2] = ACTIONS(2863), + [anon_sym_STAR] = ACTIONS(2863), + [anon_sym_static] = ACTIONS(2861), + [anon_sym_auto] = ACTIONS(2861), + [anon_sym_register] = ACTIONS(2861), + [anon_sym_inline] = ACTIONS(2861), + [anon_sym_const] = ACTIONS(2861), + [anon_sym_restrict] = ACTIONS(2861), + [anon_sym_volatile] = ACTIONS(2861), + [anon_sym__Atomic] = ACTIONS(2861), + [anon_sym_unsigned] = ACTIONS(2861), + [anon_sym_long] = ACTIONS(2861), + [anon_sym_short] = ACTIONS(2861), + [sym_primitive_type] = ACTIONS(2861), + [anon_sym_enum] = ACTIONS(2861), + [anon_sym_struct] = ACTIONS(2861), + [anon_sym_union] = ACTIONS(2861), + [anon_sym_if] = ACTIONS(2861), + [anon_sym_switch] = ACTIONS(2861), + [anon_sym_case] = ACTIONS(2861), + [anon_sym_default] = ACTIONS(2861), + [anon_sym_while] = ACTIONS(2861), + [anon_sym_do] = ACTIONS(2861), + [anon_sym_for] = ACTIONS(2861), + [anon_sym_return] = ACTIONS(2861), + [anon_sym_break] = ACTIONS(2861), + [anon_sym_continue] = ACTIONS(2861), + [anon_sym_goto] = ACTIONS(2861), + [anon_sym_AMP] = ACTIONS(2863), + [anon_sym_BANG] = ACTIONS(2863), + [anon_sym_TILDE] = ACTIONS(2863), + [anon_sym_PLUS] = ACTIONS(2861), + [anon_sym_DASH] = ACTIONS(2861), + [anon_sym_DASH_DASH] = ACTIONS(2863), + [anon_sym_PLUS_PLUS] = ACTIONS(2863), + [anon_sym_sizeof] = ACTIONS(2861), + [sym_number_literal] = ACTIONS(2863), + [anon_sym_SQUOTE] = ACTIONS(2863), + [anon_sym_DQUOTE] = ACTIONS(2863), + [sym_true] = ACTIONS(2861), + [sym_false] = ACTIONS(2861), + [sym_null] = ACTIONS(2861), + [sym_identifier] = ACTIONS(2861), [sym_comment] = ACTIONS(39), }, [904] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2876), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2876), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2876), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2876), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2876), - [sym_preproc_directive] = ACTIONS(2876), - [anon_sym_SEMI] = ACTIONS(2878), - [anon_sym_typedef] = ACTIONS(2876), - [anon_sym_extern] = ACTIONS(2876), - [anon_sym_LBRACE] = ACTIONS(2878), - [anon_sym_RBRACE] = ACTIONS(2878), - [anon_sym_LPAREN2] = ACTIONS(2878), - [anon_sym_STAR] = ACTIONS(2878), - [anon_sym_static] = ACTIONS(2876), - [anon_sym_auto] = ACTIONS(2876), - [anon_sym_register] = ACTIONS(2876), - [anon_sym_inline] = ACTIONS(2876), - [anon_sym_const] = ACTIONS(2876), - [anon_sym_restrict] = ACTIONS(2876), - [anon_sym_volatile] = ACTIONS(2876), - [anon_sym__Atomic] = ACTIONS(2876), - [anon_sym_unsigned] = ACTIONS(2876), - [anon_sym_long] = ACTIONS(2876), - [anon_sym_short] = ACTIONS(2876), - [sym_primitive_type] = ACTIONS(2876), - [anon_sym_enum] = ACTIONS(2876), - [anon_sym_struct] = ACTIONS(2876), - [anon_sym_union] = ACTIONS(2876), - [anon_sym_if] = ACTIONS(2876), - [anon_sym_switch] = ACTIONS(2876), - [anon_sym_case] = ACTIONS(2876), - [anon_sym_default] = ACTIONS(2876), - [anon_sym_while] = ACTIONS(2876), - [anon_sym_do] = ACTIONS(2876), - [anon_sym_for] = ACTIONS(2876), - [anon_sym_return] = ACTIONS(2876), - [anon_sym_break] = ACTIONS(2876), - [anon_sym_continue] = ACTIONS(2876), - [anon_sym_goto] = ACTIONS(2876), - [anon_sym_AMP] = ACTIONS(2878), - [anon_sym_BANG] = ACTIONS(2878), - [anon_sym_TILDE] = ACTIONS(2878), - [anon_sym_PLUS] = ACTIONS(2876), - [anon_sym_DASH] = ACTIONS(2876), - [anon_sym_DASH_DASH] = ACTIONS(2878), - [anon_sym_PLUS_PLUS] = ACTIONS(2878), - [anon_sym_sizeof] = ACTIONS(2876), - [sym_number_literal] = ACTIONS(2878), - [anon_sym_SQUOTE] = ACTIONS(2878), - [anon_sym_DQUOTE] = ACTIONS(2878), - [sym_true] = ACTIONS(2876), - [sym_false] = ACTIONS(2876), - [sym_null] = ACTIONS(2876), - [sym_identifier] = ACTIONS(2876), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2865), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2865), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2865), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2865), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2865), + [sym_preproc_directive] = ACTIONS(2865), + [anon_sym_SEMI] = ACTIONS(2867), + [anon_sym_typedef] = ACTIONS(2865), + [anon_sym_extern] = ACTIONS(2865), + [anon_sym_LBRACE] = ACTIONS(2867), + [anon_sym_RBRACE] = ACTIONS(2867), + [anon_sym_LPAREN2] = ACTIONS(2867), + [anon_sym_STAR] = ACTIONS(2867), + [anon_sym_static] = ACTIONS(2865), + [anon_sym_auto] = ACTIONS(2865), + [anon_sym_register] = ACTIONS(2865), + [anon_sym_inline] = ACTIONS(2865), + [anon_sym_const] = ACTIONS(2865), + [anon_sym_restrict] = ACTIONS(2865), + [anon_sym_volatile] = ACTIONS(2865), + [anon_sym__Atomic] = ACTIONS(2865), + [anon_sym_unsigned] = ACTIONS(2865), + [anon_sym_long] = ACTIONS(2865), + [anon_sym_short] = ACTIONS(2865), + [sym_primitive_type] = ACTIONS(2865), + [anon_sym_enum] = ACTIONS(2865), + [anon_sym_struct] = ACTIONS(2865), + [anon_sym_union] = ACTIONS(2865), + [anon_sym_if] = ACTIONS(2865), + [anon_sym_switch] = ACTIONS(2865), + [anon_sym_case] = ACTIONS(2865), + [anon_sym_default] = ACTIONS(2865), + [anon_sym_while] = ACTIONS(2865), + [anon_sym_do] = ACTIONS(2865), + [anon_sym_for] = ACTIONS(2865), + [anon_sym_return] = ACTIONS(2865), + [anon_sym_break] = ACTIONS(2865), + [anon_sym_continue] = ACTIONS(2865), + [anon_sym_goto] = ACTIONS(2865), + [anon_sym_AMP] = ACTIONS(2867), + [anon_sym_BANG] = ACTIONS(2867), + [anon_sym_TILDE] = ACTIONS(2867), + [anon_sym_PLUS] = ACTIONS(2865), + [anon_sym_DASH] = ACTIONS(2865), + [anon_sym_DASH_DASH] = ACTIONS(2867), + [anon_sym_PLUS_PLUS] = ACTIONS(2867), + [anon_sym_sizeof] = ACTIONS(2865), + [sym_number_literal] = ACTIONS(2867), + [anon_sym_SQUOTE] = ACTIONS(2867), + [anon_sym_DQUOTE] = ACTIONS(2867), + [sym_true] = ACTIONS(2865), + [sym_false] = ACTIONS(2865), + [sym_null] = ACTIONS(2865), + [sym_identifier] = ACTIONS(2865), [sym_comment] = ACTIONS(39), }, [905] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2880), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2869), [sym_comment] = ACTIONS(39), }, [906] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2882), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2871), [sym_comment] = ACTIONS(39), }, [907] = { @@ -35001,724 +35020,724 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(921), [sym_concatenated_string] = STATE(921), [sym_string_literal] = STATE(409), - [anon_sym_LBRACE] = ACTIONS(632), - [anon_sym_LPAREN2] = ACTIONS(970), - [anon_sym_STAR] = ACTIONS(972), - [anon_sym_AMP] = ACTIONS(972), - [anon_sym_BANG] = ACTIONS(974), - [anon_sym_TILDE] = ACTIONS(976), - [anon_sym_PLUS] = ACTIONS(978), - [anon_sym_DASH] = ACTIONS(978), - [anon_sym_DASH_DASH] = ACTIONS(980), - [anon_sym_PLUS_PLUS] = ACTIONS(980), - [anon_sym_sizeof] = ACTIONS(982), - [sym_number_literal] = ACTIONS(2392), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2394), - [sym_false] = ACTIONS(2394), - [sym_null] = ACTIONS(2394), - [sym_identifier] = ACTIONS(2394), + [anon_sym_LBRACE] = ACTIONS(628), + [anon_sym_LPAREN2] = ACTIONS(961), + [anon_sym_STAR] = ACTIONS(963), + [anon_sym_AMP] = ACTIONS(963), + [anon_sym_BANG] = ACTIONS(965), + [anon_sym_TILDE] = ACTIONS(967), + [anon_sym_PLUS] = ACTIONS(969), + [anon_sym_DASH] = ACTIONS(969), + [anon_sym_DASH_DASH] = ACTIONS(971), + [anon_sym_PLUS_PLUS] = ACTIONS(971), + [anon_sym_sizeof] = ACTIONS(973), + [sym_number_literal] = ACTIONS(2381), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(2383), + [sym_false] = ACTIONS(2383), + [sym_null] = ACTIONS(2383), + [sym_identifier] = ACTIONS(2383), [sym_comment] = ACTIONS(39), }, [908] = { - [anon_sym_RPAREN] = ACTIONS(2884), + [anon_sym_RPAREN] = ACTIONS(2873), [sym_comment] = ACTIONS(39), }, [909] = { [sym_argument_list] = STATE(465), - [anon_sym_COMMA] = ACTIONS(1556), - [anon_sym_RPAREN] = ACTIONS(2524), - [anon_sym_LPAREN2] = ACTIONS(1096), - [anon_sym_STAR] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1100), - [anon_sym_EQ] = ACTIONS(1562), - [anon_sym_QMARK] = ACTIONS(1564), - [anon_sym_STAR_EQ] = ACTIONS(1566), - [anon_sym_SLASH_EQ] = ACTIONS(1566), - [anon_sym_PERCENT_EQ] = ACTIONS(1566), - [anon_sym_PLUS_EQ] = ACTIONS(1566), - [anon_sym_DASH_EQ] = ACTIONS(1566), - [anon_sym_LT_LT_EQ] = ACTIONS(1566), - [anon_sym_GT_GT_EQ] = ACTIONS(1566), - [anon_sym_AMP_EQ] = ACTIONS(1566), - [anon_sym_CARET_EQ] = ACTIONS(1566), - [anon_sym_PIPE_EQ] = ACTIONS(1566), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_PIPE_PIPE] = ACTIONS(1570), - [anon_sym_AMP_AMP] = ACTIONS(1572), - [anon_sym_PIPE] = ACTIONS(1574), - [anon_sym_CARET] = ACTIONS(1576), - [anon_sym_EQ_EQ] = ACTIONS(1578), - [anon_sym_BANG_EQ] = ACTIONS(1578), - [anon_sym_LT] = ACTIONS(1580), - [anon_sym_GT] = ACTIONS(1580), - [anon_sym_LT_EQ] = ACTIONS(1582), - [anon_sym_GT_EQ] = ACTIONS(1582), - [anon_sym_LT_LT] = ACTIONS(1584), - [anon_sym_GT_GT] = ACTIONS(1584), - [anon_sym_PLUS] = ACTIONS(1586), - [anon_sym_DASH] = ACTIONS(1586), - [anon_sym_SLASH] = ACTIONS(1560), - [anon_sym_PERCENT] = ACTIONS(1560), - [anon_sym_DASH_DASH] = ACTIONS(1128), - [anon_sym_PLUS_PLUS] = ACTIONS(1128), - [anon_sym_DOT] = ACTIONS(1130), - [anon_sym_DASH_GT] = ACTIONS(1130), + [anon_sym_COMMA] = ACTIONS(1545), + [anon_sym_RPAREN] = ACTIONS(2513), + [anon_sym_LPAREN2] = ACTIONS(1089), + [anon_sym_STAR] = ACTIONS(1549), + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(1551), + [anon_sym_QMARK] = ACTIONS(1553), + [anon_sym_STAR_EQ] = ACTIONS(1555), + [anon_sym_SLASH_EQ] = ACTIONS(1555), + [anon_sym_PERCENT_EQ] = ACTIONS(1555), + [anon_sym_PLUS_EQ] = ACTIONS(1555), + [anon_sym_DASH_EQ] = ACTIONS(1555), + [anon_sym_LT_LT_EQ] = ACTIONS(1555), + [anon_sym_GT_GT_EQ] = ACTIONS(1555), + [anon_sym_AMP_EQ] = ACTIONS(1555), + [anon_sym_CARET_EQ] = ACTIONS(1555), + [anon_sym_PIPE_EQ] = ACTIONS(1555), + [anon_sym_AMP] = ACTIONS(1557), + [anon_sym_PIPE_PIPE] = ACTIONS(1559), + [anon_sym_AMP_AMP] = ACTIONS(1561), + [anon_sym_PIPE] = ACTIONS(1563), + [anon_sym_CARET] = ACTIONS(1565), + [anon_sym_EQ_EQ] = ACTIONS(1567), + [anon_sym_BANG_EQ] = ACTIONS(1567), + [anon_sym_LT] = ACTIONS(1569), + [anon_sym_GT] = ACTIONS(1569), + [anon_sym_LT_EQ] = ACTIONS(1571), + [anon_sym_GT_EQ] = ACTIONS(1571), + [anon_sym_LT_LT] = ACTIONS(1573), + [anon_sym_GT_GT] = ACTIONS(1573), + [anon_sym_PLUS] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(1575), + [anon_sym_SLASH] = ACTIONS(1549), + [anon_sym_PERCENT] = ACTIONS(1549), + [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_PLUS_PLUS] = ACTIONS(1121), + [anon_sym_DOT] = ACTIONS(1123), + [anon_sym_DASH_GT] = ACTIONS(1123), [sym_comment] = ACTIONS(39), }, [910] = { [sym_argument_list] = STATE(465), - [anon_sym_COMMA] = ACTIONS(2540), - [anon_sym_RPAREN] = ACTIONS(2540), - [anon_sym_LPAREN2] = ACTIONS(1096), - [anon_sym_STAR] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1100), - [anon_sym_EQ] = ACTIONS(1562), - [anon_sym_QMARK] = ACTIONS(2540), - [anon_sym_STAR_EQ] = ACTIONS(1566), - [anon_sym_SLASH_EQ] = ACTIONS(1566), - [anon_sym_PERCENT_EQ] = ACTIONS(1566), - [anon_sym_PLUS_EQ] = ACTIONS(1566), - [anon_sym_DASH_EQ] = ACTIONS(1566), - [anon_sym_LT_LT_EQ] = ACTIONS(1566), - [anon_sym_GT_GT_EQ] = ACTIONS(1566), - [anon_sym_AMP_EQ] = ACTIONS(1566), - [anon_sym_CARET_EQ] = ACTIONS(1566), - [anon_sym_PIPE_EQ] = ACTIONS(1566), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_PIPE_PIPE] = ACTIONS(1570), - [anon_sym_AMP_AMP] = ACTIONS(1572), - [anon_sym_PIPE] = ACTIONS(1574), - [anon_sym_CARET] = ACTIONS(1576), - [anon_sym_EQ_EQ] = ACTIONS(1578), - [anon_sym_BANG_EQ] = ACTIONS(1578), - [anon_sym_LT] = ACTIONS(1580), - [anon_sym_GT] = ACTIONS(1580), - [anon_sym_LT_EQ] = ACTIONS(1582), - [anon_sym_GT_EQ] = ACTIONS(1582), - [anon_sym_LT_LT] = ACTIONS(1584), - [anon_sym_GT_GT] = ACTIONS(1584), - [anon_sym_PLUS] = ACTIONS(1586), - [anon_sym_DASH] = ACTIONS(1586), - [anon_sym_SLASH] = ACTIONS(1560), - [anon_sym_PERCENT] = ACTIONS(1560), - [anon_sym_DASH_DASH] = ACTIONS(1128), - [anon_sym_PLUS_PLUS] = ACTIONS(1128), - [anon_sym_DOT] = ACTIONS(1130), - [anon_sym_DASH_GT] = ACTIONS(1130), + [anon_sym_COMMA] = ACTIONS(2529), + [anon_sym_RPAREN] = ACTIONS(2529), + [anon_sym_LPAREN2] = ACTIONS(1089), + [anon_sym_STAR] = ACTIONS(1549), + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(1551), + [anon_sym_QMARK] = ACTIONS(2529), + [anon_sym_STAR_EQ] = ACTIONS(1555), + [anon_sym_SLASH_EQ] = ACTIONS(1555), + [anon_sym_PERCENT_EQ] = ACTIONS(1555), + [anon_sym_PLUS_EQ] = ACTIONS(1555), + [anon_sym_DASH_EQ] = ACTIONS(1555), + [anon_sym_LT_LT_EQ] = ACTIONS(1555), + [anon_sym_GT_GT_EQ] = ACTIONS(1555), + [anon_sym_AMP_EQ] = ACTIONS(1555), + [anon_sym_CARET_EQ] = ACTIONS(1555), + [anon_sym_PIPE_EQ] = ACTIONS(1555), + [anon_sym_AMP] = ACTIONS(1557), + [anon_sym_PIPE_PIPE] = ACTIONS(1559), + [anon_sym_AMP_AMP] = ACTIONS(1561), + [anon_sym_PIPE] = ACTIONS(1563), + [anon_sym_CARET] = ACTIONS(1565), + [anon_sym_EQ_EQ] = ACTIONS(1567), + [anon_sym_BANG_EQ] = ACTIONS(1567), + [anon_sym_LT] = ACTIONS(1569), + [anon_sym_GT] = ACTIONS(1569), + [anon_sym_LT_EQ] = ACTIONS(1571), + [anon_sym_GT_EQ] = ACTIONS(1571), + [anon_sym_LT_LT] = ACTIONS(1573), + [anon_sym_GT_GT] = ACTIONS(1573), + [anon_sym_PLUS] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(1575), + [anon_sym_SLASH] = ACTIONS(1549), + [anon_sym_PERCENT] = ACTIONS(1549), + [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_PLUS_PLUS] = ACTIONS(1121), + [anon_sym_DOT] = ACTIONS(1123), + [anon_sym_DASH_GT] = ACTIONS(1123), [sym_comment] = ACTIONS(39), }, [911] = { [sym_argument_list] = STATE(465), - [anon_sym_LPAREN2] = ACTIONS(1096), - [anon_sym_STAR] = ACTIONS(1620), - [anon_sym_LBRACK] = ACTIONS(1100), - [anon_sym_EQ] = ACTIONS(1622), - [anon_sym_COLON] = ACTIONS(2886), - [anon_sym_QMARK] = ACTIONS(1626), - [anon_sym_STAR_EQ] = ACTIONS(1628), - [anon_sym_SLASH_EQ] = ACTIONS(1628), - [anon_sym_PERCENT_EQ] = ACTIONS(1628), - [anon_sym_PLUS_EQ] = ACTIONS(1628), - [anon_sym_DASH_EQ] = ACTIONS(1628), - [anon_sym_LT_LT_EQ] = ACTIONS(1628), - [anon_sym_GT_GT_EQ] = ACTIONS(1628), - [anon_sym_AMP_EQ] = ACTIONS(1628), - [anon_sym_CARET_EQ] = ACTIONS(1628), - [anon_sym_PIPE_EQ] = ACTIONS(1628), - [anon_sym_AMP] = ACTIONS(1630), - [anon_sym_PIPE_PIPE] = ACTIONS(1632), - [anon_sym_AMP_AMP] = ACTIONS(1634), - [anon_sym_PIPE] = ACTIONS(1636), - [anon_sym_CARET] = ACTIONS(1638), - [anon_sym_EQ_EQ] = ACTIONS(1640), - [anon_sym_BANG_EQ] = ACTIONS(1640), - [anon_sym_LT] = ACTIONS(1642), - [anon_sym_GT] = ACTIONS(1642), - [anon_sym_LT_EQ] = ACTIONS(1644), - [anon_sym_GT_EQ] = ACTIONS(1644), - [anon_sym_LT_LT] = ACTIONS(1646), - [anon_sym_GT_GT] = ACTIONS(1646), - [anon_sym_PLUS] = ACTIONS(1648), - [anon_sym_DASH] = ACTIONS(1648), - [anon_sym_SLASH] = ACTIONS(1620), - [anon_sym_PERCENT] = ACTIONS(1620), - [anon_sym_DASH_DASH] = ACTIONS(1128), - [anon_sym_PLUS_PLUS] = ACTIONS(1128), - [anon_sym_DOT] = ACTIONS(1130), - [anon_sym_DASH_GT] = ACTIONS(1130), + [anon_sym_LPAREN2] = ACTIONS(1089), + [anon_sym_STAR] = ACTIONS(1609), + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(1611), + [anon_sym_COLON] = ACTIONS(2875), + [anon_sym_QMARK] = ACTIONS(1615), + [anon_sym_STAR_EQ] = ACTIONS(1617), + [anon_sym_SLASH_EQ] = ACTIONS(1617), + [anon_sym_PERCENT_EQ] = ACTIONS(1617), + [anon_sym_PLUS_EQ] = ACTIONS(1617), + [anon_sym_DASH_EQ] = ACTIONS(1617), + [anon_sym_LT_LT_EQ] = ACTIONS(1617), + [anon_sym_GT_GT_EQ] = ACTIONS(1617), + [anon_sym_AMP_EQ] = ACTIONS(1617), + [anon_sym_CARET_EQ] = ACTIONS(1617), + [anon_sym_PIPE_EQ] = ACTIONS(1617), + [anon_sym_AMP] = ACTIONS(1619), + [anon_sym_PIPE_PIPE] = ACTIONS(1621), + [anon_sym_AMP_AMP] = ACTIONS(1623), + [anon_sym_PIPE] = ACTIONS(1625), + [anon_sym_CARET] = ACTIONS(1627), + [anon_sym_EQ_EQ] = ACTIONS(1629), + [anon_sym_BANG_EQ] = ACTIONS(1629), + [anon_sym_LT] = ACTIONS(1631), + [anon_sym_GT] = ACTIONS(1631), + [anon_sym_LT_EQ] = ACTIONS(1633), + [anon_sym_GT_EQ] = ACTIONS(1633), + [anon_sym_LT_LT] = ACTIONS(1635), + [anon_sym_GT_GT] = ACTIONS(1635), + [anon_sym_PLUS] = ACTIONS(1637), + [anon_sym_DASH] = ACTIONS(1637), + [anon_sym_SLASH] = ACTIONS(1609), + [anon_sym_PERCENT] = ACTIONS(1609), + [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_PLUS_PLUS] = ACTIONS(1121), + [anon_sym_DOT] = ACTIONS(1123), + [anon_sym_DASH_GT] = ACTIONS(1123), [sym_comment] = ACTIONS(39), }, [912] = { [sym_argument_list] = STATE(465), - [anon_sym_COMMA] = ACTIONS(2544), - [anon_sym_RPAREN] = ACTIONS(2544), - [anon_sym_LPAREN2] = ACTIONS(1096), - [anon_sym_STAR] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1100), - [anon_sym_EQ] = ACTIONS(2546), - [anon_sym_QMARK] = ACTIONS(2544), - [anon_sym_STAR_EQ] = ACTIONS(2544), - [anon_sym_SLASH_EQ] = ACTIONS(2544), - [anon_sym_PERCENT_EQ] = ACTIONS(2544), - [anon_sym_PLUS_EQ] = ACTIONS(2544), - [anon_sym_DASH_EQ] = ACTIONS(2544), - [anon_sym_LT_LT_EQ] = ACTIONS(2544), - [anon_sym_GT_GT_EQ] = ACTIONS(2544), - [anon_sym_AMP_EQ] = ACTIONS(2544), - [anon_sym_CARET_EQ] = ACTIONS(2544), - [anon_sym_PIPE_EQ] = ACTIONS(2544), - [anon_sym_AMP] = ACTIONS(2546), - [anon_sym_PIPE_PIPE] = ACTIONS(2544), - [anon_sym_AMP_AMP] = ACTIONS(2544), - [anon_sym_PIPE] = ACTIONS(2546), - [anon_sym_CARET] = ACTIONS(2546), - [anon_sym_EQ_EQ] = ACTIONS(1578), - [anon_sym_BANG_EQ] = ACTIONS(1578), - [anon_sym_LT] = ACTIONS(1580), - [anon_sym_GT] = ACTIONS(1580), - [anon_sym_LT_EQ] = ACTIONS(1582), - [anon_sym_GT_EQ] = ACTIONS(1582), - [anon_sym_LT_LT] = ACTIONS(1584), - [anon_sym_GT_GT] = ACTIONS(1584), - [anon_sym_PLUS] = ACTIONS(1586), - [anon_sym_DASH] = ACTIONS(1586), - [anon_sym_SLASH] = ACTIONS(1560), - [anon_sym_PERCENT] = ACTIONS(1560), - [anon_sym_DASH_DASH] = ACTIONS(1128), - [anon_sym_PLUS_PLUS] = ACTIONS(1128), - [anon_sym_DOT] = ACTIONS(1130), - [anon_sym_DASH_GT] = ACTIONS(1130), + [anon_sym_COMMA] = ACTIONS(2533), + [anon_sym_RPAREN] = ACTIONS(2533), + [anon_sym_LPAREN2] = ACTIONS(1089), + [anon_sym_STAR] = ACTIONS(1549), + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(2535), + [anon_sym_QMARK] = ACTIONS(2533), + [anon_sym_STAR_EQ] = ACTIONS(2533), + [anon_sym_SLASH_EQ] = ACTIONS(2533), + [anon_sym_PERCENT_EQ] = ACTIONS(2533), + [anon_sym_PLUS_EQ] = ACTIONS(2533), + [anon_sym_DASH_EQ] = ACTIONS(2533), + [anon_sym_LT_LT_EQ] = ACTIONS(2533), + [anon_sym_GT_GT_EQ] = ACTIONS(2533), + [anon_sym_AMP_EQ] = ACTIONS(2533), + [anon_sym_CARET_EQ] = ACTIONS(2533), + [anon_sym_PIPE_EQ] = ACTIONS(2533), + [anon_sym_AMP] = ACTIONS(2535), + [anon_sym_PIPE_PIPE] = ACTIONS(2533), + [anon_sym_AMP_AMP] = ACTIONS(2533), + [anon_sym_PIPE] = ACTIONS(2535), + [anon_sym_CARET] = ACTIONS(2535), + [anon_sym_EQ_EQ] = ACTIONS(1567), + [anon_sym_BANG_EQ] = ACTIONS(1567), + [anon_sym_LT] = ACTIONS(1569), + [anon_sym_GT] = ACTIONS(1569), + [anon_sym_LT_EQ] = ACTIONS(1571), + [anon_sym_GT_EQ] = ACTIONS(1571), + [anon_sym_LT_LT] = ACTIONS(1573), + [anon_sym_GT_GT] = ACTIONS(1573), + [anon_sym_PLUS] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(1575), + [anon_sym_SLASH] = ACTIONS(1549), + [anon_sym_PERCENT] = ACTIONS(1549), + [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_PLUS_PLUS] = ACTIONS(1121), + [anon_sym_DOT] = ACTIONS(1123), + [anon_sym_DASH_GT] = ACTIONS(1123), [sym_comment] = ACTIONS(39), }, [913] = { [sym_argument_list] = STATE(465), - [anon_sym_COMMA] = ACTIONS(2548), - [anon_sym_RPAREN] = ACTIONS(2548), - [anon_sym_LPAREN2] = ACTIONS(1096), - [anon_sym_STAR] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1100), - [anon_sym_EQ] = ACTIONS(2550), - [anon_sym_QMARK] = ACTIONS(2548), - [anon_sym_STAR_EQ] = ACTIONS(2548), - [anon_sym_SLASH_EQ] = ACTIONS(2548), - [anon_sym_PERCENT_EQ] = ACTIONS(2548), - [anon_sym_PLUS_EQ] = ACTIONS(2548), - [anon_sym_DASH_EQ] = ACTIONS(2548), - [anon_sym_LT_LT_EQ] = ACTIONS(2548), - [anon_sym_GT_GT_EQ] = ACTIONS(2548), - [anon_sym_AMP_EQ] = ACTIONS(2548), - [anon_sym_CARET_EQ] = ACTIONS(2548), - [anon_sym_PIPE_EQ] = ACTIONS(2548), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_PIPE_PIPE] = ACTIONS(2548), - [anon_sym_AMP_AMP] = ACTIONS(1572), - [anon_sym_PIPE] = ACTIONS(1574), - [anon_sym_CARET] = ACTIONS(1576), - [anon_sym_EQ_EQ] = ACTIONS(1578), - [anon_sym_BANG_EQ] = ACTIONS(1578), - [anon_sym_LT] = ACTIONS(1580), - [anon_sym_GT] = ACTIONS(1580), - [anon_sym_LT_EQ] = ACTIONS(1582), - [anon_sym_GT_EQ] = ACTIONS(1582), - [anon_sym_LT_LT] = ACTIONS(1584), - [anon_sym_GT_GT] = ACTIONS(1584), - [anon_sym_PLUS] = ACTIONS(1586), - [anon_sym_DASH] = ACTIONS(1586), - [anon_sym_SLASH] = ACTIONS(1560), - [anon_sym_PERCENT] = ACTIONS(1560), - [anon_sym_DASH_DASH] = ACTIONS(1128), - [anon_sym_PLUS_PLUS] = ACTIONS(1128), - [anon_sym_DOT] = ACTIONS(1130), - [anon_sym_DASH_GT] = ACTIONS(1130), + [anon_sym_COMMA] = ACTIONS(2537), + [anon_sym_RPAREN] = ACTIONS(2537), + [anon_sym_LPAREN2] = ACTIONS(1089), + [anon_sym_STAR] = ACTIONS(1549), + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(2539), + [anon_sym_QMARK] = ACTIONS(2537), + [anon_sym_STAR_EQ] = ACTIONS(2537), + [anon_sym_SLASH_EQ] = ACTIONS(2537), + [anon_sym_PERCENT_EQ] = ACTIONS(2537), + [anon_sym_PLUS_EQ] = ACTIONS(2537), + [anon_sym_DASH_EQ] = ACTIONS(2537), + [anon_sym_LT_LT_EQ] = ACTIONS(2537), + [anon_sym_GT_GT_EQ] = ACTIONS(2537), + [anon_sym_AMP_EQ] = ACTIONS(2537), + [anon_sym_CARET_EQ] = ACTIONS(2537), + [anon_sym_PIPE_EQ] = ACTIONS(2537), + [anon_sym_AMP] = ACTIONS(1557), + [anon_sym_PIPE_PIPE] = ACTIONS(2537), + [anon_sym_AMP_AMP] = ACTIONS(1561), + [anon_sym_PIPE] = ACTIONS(1563), + [anon_sym_CARET] = ACTIONS(1565), + [anon_sym_EQ_EQ] = ACTIONS(1567), + [anon_sym_BANG_EQ] = ACTIONS(1567), + [anon_sym_LT] = ACTIONS(1569), + [anon_sym_GT] = ACTIONS(1569), + [anon_sym_LT_EQ] = ACTIONS(1571), + [anon_sym_GT_EQ] = ACTIONS(1571), + [anon_sym_LT_LT] = ACTIONS(1573), + [anon_sym_GT_GT] = ACTIONS(1573), + [anon_sym_PLUS] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(1575), + [anon_sym_SLASH] = ACTIONS(1549), + [anon_sym_PERCENT] = ACTIONS(1549), + [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_PLUS_PLUS] = ACTIONS(1121), + [anon_sym_DOT] = ACTIONS(1123), + [anon_sym_DASH_GT] = ACTIONS(1123), [sym_comment] = ACTIONS(39), }, [914] = { [sym_argument_list] = STATE(465), - [anon_sym_COMMA] = ACTIONS(2548), - [anon_sym_RPAREN] = ACTIONS(2548), - [anon_sym_LPAREN2] = ACTIONS(1096), - [anon_sym_STAR] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1100), - [anon_sym_EQ] = ACTIONS(2550), - [anon_sym_QMARK] = ACTIONS(2548), - [anon_sym_STAR_EQ] = ACTIONS(2548), - [anon_sym_SLASH_EQ] = ACTIONS(2548), - [anon_sym_PERCENT_EQ] = ACTIONS(2548), - [anon_sym_PLUS_EQ] = ACTIONS(2548), - [anon_sym_DASH_EQ] = ACTIONS(2548), - [anon_sym_LT_LT_EQ] = ACTIONS(2548), - [anon_sym_GT_GT_EQ] = ACTIONS(2548), - [anon_sym_AMP_EQ] = ACTIONS(2548), - [anon_sym_CARET_EQ] = ACTIONS(2548), - [anon_sym_PIPE_EQ] = ACTIONS(2548), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_PIPE_PIPE] = ACTIONS(2548), - [anon_sym_AMP_AMP] = ACTIONS(2548), - [anon_sym_PIPE] = ACTIONS(1574), - [anon_sym_CARET] = ACTIONS(1576), - [anon_sym_EQ_EQ] = ACTIONS(1578), - [anon_sym_BANG_EQ] = ACTIONS(1578), - [anon_sym_LT] = ACTIONS(1580), - [anon_sym_GT] = ACTIONS(1580), - [anon_sym_LT_EQ] = ACTIONS(1582), - [anon_sym_GT_EQ] = ACTIONS(1582), - [anon_sym_LT_LT] = ACTIONS(1584), - [anon_sym_GT_GT] = ACTIONS(1584), - [anon_sym_PLUS] = ACTIONS(1586), - [anon_sym_DASH] = ACTIONS(1586), - [anon_sym_SLASH] = ACTIONS(1560), - [anon_sym_PERCENT] = ACTIONS(1560), - [anon_sym_DASH_DASH] = ACTIONS(1128), - [anon_sym_PLUS_PLUS] = ACTIONS(1128), - [anon_sym_DOT] = ACTIONS(1130), - [anon_sym_DASH_GT] = ACTIONS(1130), + [anon_sym_COMMA] = ACTIONS(2537), + [anon_sym_RPAREN] = ACTIONS(2537), + [anon_sym_LPAREN2] = ACTIONS(1089), + [anon_sym_STAR] = ACTIONS(1549), + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(2539), + [anon_sym_QMARK] = ACTIONS(2537), + [anon_sym_STAR_EQ] = ACTIONS(2537), + [anon_sym_SLASH_EQ] = ACTIONS(2537), + [anon_sym_PERCENT_EQ] = ACTIONS(2537), + [anon_sym_PLUS_EQ] = ACTIONS(2537), + [anon_sym_DASH_EQ] = ACTIONS(2537), + [anon_sym_LT_LT_EQ] = ACTIONS(2537), + [anon_sym_GT_GT_EQ] = ACTIONS(2537), + [anon_sym_AMP_EQ] = ACTIONS(2537), + [anon_sym_CARET_EQ] = ACTIONS(2537), + [anon_sym_PIPE_EQ] = ACTIONS(2537), + [anon_sym_AMP] = ACTIONS(1557), + [anon_sym_PIPE_PIPE] = ACTIONS(2537), + [anon_sym_AMP_AMP] = ACTIONS(2537), + [anon_sym_PIPE] = ACTIONS(1563), + [anon_sym_CARET] = ACTIONS(1565), + [anon_sym_EQ_EQ] = ACTIONS(1567), + [anon_sym_BANG_EQ] = ACTIONS(1567), + [anon_sym_LT] = ACTIONS(1569), + [anon_sym_GT] = ACTIONS(1569), + [anon_sym_LT_EQ] = ACTIONS(1571), + [anon_sym_GT_EQ] = ACTIONS(1571), + [anon_sym_LT_LT] = ACTIONS(1573), + [anon_sym_GT_GT] = ACTIONS(1573), + [anon_sym_PLUS] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(1575), + [anon_sym_SLASH] = ACTIONS(1549), + [anon_sym_PERCENT] = ACTIONS(1549), + [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_PLUS_PLUS] = ACTIONS(1121), + [anon_sym_DOT] = ACTIONS(1123), + [anon_sym_DASH_GT] = ACTIONS(1123), [sym_comment] = ACTIONS(39), }, [915] = { [sym_argument_list] = STATE(465), - [anon_sym_COMMA] = ACTIONS(2544), - [anon_sym_RPAREN] = ACTIONS(2544), - [anon_sym_LPAREN2] = ACTIONS(1096), - [anon_sym_STAR] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1100), - [anon_sym_EQ] = ACTIONS(2546), - [anon_sym_QMARK] = ACTIONS(2544), - [anon_sym_STAR_EQ] = ACTIONS(2544), - [anon_sym_SLASH_EQ] = ACTIONS(2544), - [anon_sym_PERCENT_EQ] = ACTIONS(2544), - [anon_sym_PLUS_EQ] = ACTIONS(2544), - [anon_sym_DASH_EQ] = ACTIONS(2544), - [anon_sym_LT_LT_EQ] = ACTIONS(2544), - [anon_sym_GT_GT_EQ] = ACTIONS(2544), - [anon_sym_AMP_EQ] = ACTIONS(2544), - [anon_sym_CARET_EQ] = ACTIONS(2544), - [anon_sym_PIPE_EQ] = ACTIONS(2544), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_PIPE_PIPE] = ACTIONS(2544), - [anon_sym_AMP_AMP] = ACTIONS(2544), - [anon_sym_PIPE] = ACTIONS(2546), - [anon_sym_CARET] = ACTIONS(1576), - [anon_sym_EQ_EQ] = ACTIONS(1578), - [anon_sym_BANG_EQ] = ACTIONS(1578), - [anon_sym_LT] = ACTIONS(1580), - [anon_sym_GT] = ACTIONS(1580), - [anon_sym_LT_EQ] = ACTIONS(1582), - [anon_sym_GT_EQ] = ACTIONS(1582), - [anon_sym_LT_LT] = ACTIONS(1584), - [anon_sym_GT_GT] = ACTIONS(1584), - [anon_sym_PLUS] = ACTIONS(1586), - [anon_sym_DASH] = ACTIONS(1586), - [anon_sym_SLASH] = ACTIONS(1560), - [anon_sym_PERCENT] = ACTIONS(1560), - [anon_sym_DASH_DASH] = ACTIONS(1128), - [anon_sym_PLUS_PLUS] = ACTIONS(1128), - [anon_sym_DOT] = ACTIONS(1130), - [anon_sym_DASH_GT] = ACTIONS(1130), + [anon_sym_COMMA] = ACTIONS(2533), + [anon_sym_RPAREN] = ACTIONS(2533), + [anon_sym_LPAREN2] = ACTIONS(1089), + [anon_sym_STAR] = ACTIONS(1549), + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(2535), + [anon_sym_QMARK] = ACTIONS(2533), + [anon_sym_STAR_EQ] = ACTIONS(2533), + [anon_sym_SLASH_EQ] = ACTIONS(2533), + [anon_sym_PERCENT_EQ] = ACTIONS(2533), + [anon_sym_PLUS_EQ] = ACTIONS(2533), + [anon_sym_DASH_EQ] = ACTIONS(2533), + [anon_sym_LT_LT_EQ] = ACTIONS(2533), + [anon_sym_GT_GT_EQ] = ACTIONS(2533), + [anon_sym_AMP_EQ] = ACTIONS(2533), + [anon_sym_CARET_EQ] = ACTIONS(2533), + [anon_sym_PIPE_EQ] = ACTIONS(2533), + [anon_sym_AMP] = ACTIONS(1557), + [anon_sym_PIPE_PIPE] = ACTIONS(2533), + [anon_sym_AMP_AMP] = ACTIONS(2533), + [anon_sym_PIPE] = ACTIONS(2535), + [anon_sym_CARET] = ACTIONS(1565), + [anon_sym_EQ_EQ] = ACTIONS(1567), + [anon_sym_BANG_EQ] = ACTIONS(1567), + [anon_sym_LT] = ACTIONS(1569), + [anon_sym_GT] = ACTIONS(1569), + [anon_sym_LT_EQ] = ACTIONS(1571), + [anon_sym_GT_EQ] = ACTIONS(1571), + [anon_sym_LT_LT] = ACTIONS(1573), + [anon_sym_GT_GT] = ACTIONS(1573), + [anon_sym_PLUS] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(1575), + [anon_sym_SLASH] = ACTIONS(1549), + [anon_sym_PERCENT] = ACTIONS(1549), + [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_PLUS_PLUS] = ACTIONS(1121), + [anon_sym_DOT] = ACTIONS(1123), + [anon_sym_DASH_GT] = ACTIONS(1123), [sym_comment] = ACTIONS(39), }, [916] = { [sym_argument_list] = STATE(465), - [anon_sym_COMMA] = ACTIONS(2544), - [anon_sym_RPAREN] = ACTIONS(2544), - [anon_sym_LPAREN2] = ACTIONS(1096), - [anon_sym_STAR] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1100), - [anon_sym_EQ] = ACTIONS(2546), - [anon_sym_QMARK] = ACTIONS(2544), - [anon_sym_STAR_EQ] = ACTIONS(2544), - [anon_sym_SLASH_EQ] = ACTIONS(2544), - [anon_sym_PERCENT_EQ] = ACTIONS(2544), - [anon_sym_PLUS_EQ] = ACTIONS(2544), - [anon_sym_DASH_EQ] = ACTIONS(2544), - [anon_sym_LT_LT_EQ] = ACTIONS(2544), - [anon_sym_GT_GT_EQ] = ACTIONS(2544), - [anon_sym_AMP_EQ] = ACTIONS(2544), - [anon_sym_CARET_EQ] = ACTIONS(2544), - [anon_sym_PIPE_EQ] = ACTIONS(2544), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_PIPE_PIPE] = ACTIONS(2544), - [anon_sym_AMP_AMP] = ACTIONS(2544), - [anon_sym_PIPE] = ACTIONS(2546), - [anon_sym_CARET] = ACTIONS(2546), - [anon_sym_EQ_EQ] = ACTIONS(1578), - [anon_sym_BANG_EQ] = ACTIONS(1578), - [anon_sym_LT] = ACTIONS(1580), - [anon_sym_GT] = ACTIONS(1580), - [anon_sym_LT_EQ] = ACTIONS(1582), - [anon_sym_GT_EQ] = ACTIONS(1582), - [anon_sym_LT_LT] = ACTIONS(1584), - [anon_sym_GT_GT] = ACTIONS(1584), - [anon_sym_PLUS] = ACTIONS(1586), - [anon_sym_DASH] = ACTIONS(1586), - [anon_sym_SLASH] = ACTIONS(1560), - [anon_sym_PERCENT] = ACTIONS(1560), - [anon_sym_DASH_DASH] = ACTIONS(1128), - [anon_sym_PLUS_PLUS] = ACTIONS(1128), - [anon_sym_DOT] = ACTIONS(1130), - [anon_sym_DASH_GT] = ACTIONS(1130), + [anon_sym_COMMA] = ACTIONS(2533), + [anon_sym_RPAREN] = ACTIONS(2533), + [anon_sym_LPAREN2] = ACTIONS(1089), + [anon_sym_STAR] = ACTIONS(1549), + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(2535), + [anon_sym_QMARK] = ACTIONS(2533), + [anon_sym_STAR_EQ] = ACTIONS(2533), + [anon_sym_SLASH_EQ] = ACTIONS(2533), + [anon_sym_PERCENT_EQ] = ACTIONS(2533), + [anon_sym_PLUS_EQ] = ACTIONS(2533), + [anon_sym_DASH_EQ] = ACTIONS(2533), + [anon_sym_LT_LT_EQ] = ACTIONS(2533), + [anon_sym_GT_GT_EQ] = ACTIONS(2533), + [anon_sym_AMP_EQ] = ACTIONS(2533), + [anon_sym_CARET_EQ] = ACTIONS(2533), + [anon_sym_PIPE_EQ] = ACTIONS(2533), + [anon_sym_AMP] = ACTIONS(1557), + [anon_sym_PIPE_PIPE] = ACTIONS(2533), + [anon_sym_AMP_AMP] = ACTIONS(2533), + [anon_sym_PIPE] = ACTIONS(2535), + [anon_sym_CARET] = ACTIONS(2535), + [anon_sym_EQ_EQ] = ACTIONS(1567), + [anon_sym_BANG_EQ] = ACTIONS(1567), + [anon_sym_LT] = ACTIONS(1569), + [anon_sym_GT] = ACTIONS(1569), + [anon_sym_LT_EQ] = ACTIONS(1571), + [anon_sym_GT_EQ] = ACTIONS(1571), + [anon_sym_LT_LT] = ACTIONS(1573), + [anon_sym_GT_GT] = ACTIONS(1573), + [anon_sym_PLUS] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(1575), + [anon_sym_SLASH] = ACTIONS(1549), + [anon_sym_PERCENT] = ACTIONS(1549), + [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_PLUS_PLUS] = ACTIONS(1121), + [anon_sym_DOT] = ACTIONS(1123), + [anon_sym_DASH_GT] = ACTIONS(1123), [sym_comment] = ACTIONS(39), }, [917] = { [sym_argument_list] = STATE(465), - [anon_sym_COMMA] = ACTIONS(2552), - [anon_sym_RPAREN] = ACTIONS(2552), - [anon_sym_LPAREN2] = ACTIONS(1096), - [anon_sym_STAR] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1100), - [anon_sym_EQ] = ACTIONS(2554), - [anon_sym_QMARK] = ACTIONS(2552), - [anon_sym_STAR_EQ] = ACTIONS(2552), - [anon_sym_SLASH_EQ] = ACTIONS(2552), - [anon_sym_PERCENT_EQ] = ACTIONS(2552), - [anon_sym_PLUS_EQ] = ACTIONS(2552), - [anon_sym_DASH_EQ] = ACTIONS(2552), - [anon_sym_LT_LT_EQ] = ACTIONS(2552), - [anon_sym_GT_GT_EQ] = ACTIONS(2552), - [anon_sym_AMP_EQ] = ACTIONS(2552), - [anon_sym_CARET_EQ] = ACTIONS(2552), - [anon_sym_PIPE_EQ] = ACTIONS(2552), - [anon_sym_AMP] = ACTIONS(2554), - [anon_sym_PIPE_PIPE] = ACTIONS(2552), - [anon_sym_AMP_AMP] = ACTIONS(2552), - [anon_sym_PIPE] = ACTIONS(2554), - [anon_sym_CARET] = ACTIONS(2554), - [anon_sym_EQ_EQ] = ACTIONS(2552), - [anon_sym_BANG_EQ] = ACTIONS(2552), - [anon_sym_LT] = ACTIONS(1580), - [anon_sym_GT] = ACTIONS(1580), - [anon_sym_LT_EQ] = ACTIONS(1582), - [anon_sym_GT_EQ] = ACTIONS(1582), - [anon_sym_LT_LT] = ACTIONS(1584), - [anon_sym_GT_GT] = ACTIONS(1584), - [anon_sym_PLUS] = ACTIONS(1586), - [anon_sym_DASH] = ACTIONS(1586), - [anon_sym_SLASH] = ACTIONS(1560), - [anon_sym_PERCENT] = ACTIONS(1560), - [anon_sym_DASH_DASH] = ACTIONS(1128), - [anon_sym_PLUS_PLUS] = ACTIONS(1128), - [anon_sym_DOT] = ACTIONS(1130), - [anon_sym_DASH_GT] = ACTIONS(1130), + [anon_sym_COMMA] = ACTIONS(2541), + [anon_sym_RPAREN] = ACTIONS(2541), + [anon_sym_LPAREN2] = ACTIONS(1089), + [anon_sym_STAR] = ACTIONS(1549), + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(2543), + [anon_sym_QMARK] = ACTIONS(2541), + [anon_sym_STAR_EQ] = ACTIONS(2541), + [anon_sym_SLASH_EQ] = ACTIONS(2541), + [anon_sym_PERCENT_EQ] = ACTIONS(2541), + [anon_sym_PLUS_EQ] = ACTIONS(2541), + [anon_sym_DASH_EQ] = ACTIONS(2541), + [anon_sym_LT_LT_EQ] = ACTIONS(2541), + [anon_sym_GT_GT_EQ] = ACTIONS(2541), + [anon_sym_AMP_EQ] = ACTIONS(2541), + [anon_sym_CARET_EQ] = ACTIONS(2541), + [anon_sym_PIPE_EQ] = ACTIONS(2541), + [anon_sym_AMP] = ACTIONS(2543), + [anon_sym_PIPE_PIPE] = ACTIONS(2541), + [anon_sym_AMP_AMP] = ACTIONS(2541), + [anon_sym_PIPE] = ACTIONS(2543), + [anon_sym_CARET] = ACTIONS(2543), + [anon_sym_EQ_EQ] = ACTIONS(2541), + [anon_sym_BANG_EQ] = ACTIONS(2541), + [anon_sym_LT] = ACTIONS(1569), + [anon_sym_GT] = ACTIONS(1569), + [anon_sym_LT_EQ] = ACTIONS(1571), + [anon_sym_GT_EQ] = ACTIONS(1571), + [anon_sym_LT_LT] = ACTIONS(1573), + [anon_sym_GT_GT] = ACTIONS(1573), + [anon_sym_PLUS] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(1575), + [anon_sym_SLASH] = ACTIONS(1549), + [anon_sym_PERCENT] = ACTIONS(1549), + [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_PLUS_PLUS] = ACTIONS(1121), + [anon_sym_DOT] = ACTIONS(1123), + [anon_sym_DASH_GT] = ACTIONS(1123), [sym_comment] = ACTIONS(39), }, [918] = { [sym_argument_list] = STATE(465), - [anon_sym_COMMA] = ACTIONS(2556), - [anon_sym_RPAREN] = ACTIONS(2556), - [anon_sym_LPAREN2] = ACTIONS(1096), - [anon_sym_STAR] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1100), - [anon_sym_EQ] = ACTIONS(2558), - [anon_sym_QMARK] = ACTIONS(2556), - [anon_sym_STAR_EQ] = ACTIONS(2556), - [anon_sym_SLASH_EQ] = ACTIONS(2556), - [anon_sym_PERCENT_EQ] = ACTIONS(2556), - [anon_sym_PLUS_EQ] = ACTIONS(2556), - [anon_sym_DASH_EQ] = ACTIONS(2556), - [anon_sym_LT_LT_EQ] = ACTIONS(2556), - [anon_sym_GT_GT_EQ] = ACTIONS(2556), - [anon_sym_AMP_EQ] = ACTIONS(2556), - [anon_sym_CARET_EQ] = ACTIONS(2556), - [anon_sym_PIPE_EQ] = ACTIONS(2556), - [anon_sym_AMP] = ACTIONS(2558), - [anon_sym_PIPE_PIPE] = ACTIONS(2556), - [anon_sym_AMP_AMP] = ACTIONS(2556), - [anon_sym_PIPE] = ACTIONS(2558), - [anon_sym_CARET] = ACTIONS(2558), - [anon_sym_EQ_EQ] = ACTIONS(2556), - [anon_sym_BANG_EQ] = ACTIONS(2556), - [anon_sym_LT] = ACTIONS(2558), - [anon_sym_GT] = ACTIONS(2558), - [anon_sym_LT_EQ] = ACTIONS(2556), - [anon_sym_GT_EQ] = ACTIONS(2556), - [anon_sym_LT_LT] = ACTIONS(1584), - [anon_sym_GT_GT] = ACTIONS(1584), - [anon_sym_PLUS] = ACTIONS(1586), - [anon_sym_DASH] = ACTIONS(1586), - [anon_sym_SLASH] = ACTIONS(1560), - [anon_sym_PERCENT] = ACTIONS(1560), - [anon_sym_DASH_DASH] = ACTIONS(1128), - [anon_sym_PLUS_PLUS] = ACTIONS(1128), - [anon_sym_DOT] = ACTIONS(1130), - [anon_sym_DASH_GT] = ACTIONS(1130), + [anon_sym_COMMA] = ACTIONS(2545), + [anon_sym_RPAREN] = ACTIONS(2545), + [anon_sym_LPAREN2] = ACTIONS(1089), + [anon_sym_STAR] = ACTIONS(1549), + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(2547), + [anon_sym_QMARK] = ACTIONS(2545), + [anon_sym_STAR_EQ] = ACTIONS(2545), + [anon_sym_SLASH_EQ] = ACTIONS(2545), + [anon_sym_PERCENT_EQ] = ACTIONS(2545), + [anon_sym_PLUS_EQ] = ACTIONS(2545), + [anon_sym_DASH_EQ] = ACTIONS(2545), + [anon_sym_LT_LT_EQ] = ACTIONS(2545), + [anon_sym_GT_GT_EQ] = ACTIONS(2545), + [anon_sym_AMP_EQ] = ACTIONS(2545), + [anon_sym_CARET_EQ] = ACTIONS(2545), + [anon_sym_PIPE_EQ] = ACTIONS(2545), + [anon_sym_AMP] = ACTIONS(2547), + [anon_sym_PIPE_PIPE] = ACTIONS(2545), + [anon_sym_AMP_AMP] = ACTIONS(2545), + [anon_sym_PIPE] = ACTIONS(2547), + [anon_sym_CARET] = ACTIONS(2547), + [anon_sym_EQ_EQ] = ACTIONS(2545), + [anon_sym_BANG_EQ] = ACTIONS(2545), + [anon_sym_LT] = ACTIONS(2547), + [anon_sym_GT] = ACTIONS(2547), + [anon_sym_LT_EQ] = ACTIONS(2545), + [anon_sym_GT_EQ] = ACTIONS(2545), + [anon_sym_LT_LT] = ACTIONS(1573), + [anon_sym_GT_GT] = ACTIONS(1573), + [anon_sym_PLUS] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(1575), + [anon_sym_SLASH] = ACTIONS(1549), + [anon_sym_PERCENT] = ACTIONS(1549), + [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_PLUS_PLUS] = ACTIONS(1121), + [anon_sym_DOT] = ACTIONS(1123), + [anon_sym_DASH_GT] = ACTIONS(1123), [sym_comment] = ACTIONS(39), }, [919] = { [sym_argument_list] = STATE(465), - [anon_sym_COMMA] = ACTIONS(2560), - [anon_sym_RPAREN] = ACTIONS(2560), - [anon_sym_LPAREN2] = ACTIONS(1096), - [anon_sym_STAR] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1100), - [anon_sym_EQ] = ACTIONS(2562), - [anon_sym_QMARK] = ACTIONS(2560), - [anon_sym_STAR_EQ] = ACTIONS(2560), - [anon_sym_SLASH_EQ] = ACTIONS(2560), - [anon_sym_PERCENT_EQ] = ACTIONS(2560), - [anon_sym_PLUS_EQ] = ACTIONS(2560), - [anon_sym_DASH_EQ] = ACTIONS(2560), - [anon_sym_LT_LT_EQ] = ACTIONS(2560), - [anon_sym_GT_GT_EQ] = ACTIONS(2560), - [anon_sym_AMP_EQ] = ACTIONS(2560), - [anon_sym_CARET_EQ] = ACTIONS(2560), - [anon_sym_PIPE_EQ] = ACTIONS(2560), - [anon_sym_AMP] = ACTIONS(2562), - [anon_sym_PIPE_PIPE] = ACTIONS(2560), - [anon_sym_AMP_AMP] = ACTIONS(2560), - [anon_sym_PIPE] = ACTIONS(2562), - [anon_sym_CARET] = ACTIONS(2562), - [anon_sym_EQ_EQ] = ACTIONS(2560), - [anon_sym_BANG_EQ] = ACTIONS(2560), - [anon_sym_LT] = ACTIONS(2562), - [anon_sym_GT] = ACTIONS(2562), - [anon_sym_LT_EQ] = ACTIONS(2560), - [anon_sym_GT_EQ] = ACTIONS(2560), - [anon_sym_LT_LT] = ACTIONS(2562), - [anon_sym_GT_GT] = ACTIONS(2562), - [anon_sym_PLUS] = ACTIONS(1586), - [anon_sym_DASH] = ACTIONS(1586), - [anon_sym_SLASH] = ACTIONS(1560), - [anon_sym_PERCENT] = ACTIONS(1560), - [anon_sym_DASH_DASH] = ACTIONS(1128), - [anon_sym_PLUS_PLUS] = ACTIONS(1128), - [anon_sym_DOT] = ACTIONS(1130), - [anon_sym_DASH_GT] = ACTIONS(1130), + [anon_sym_COMMA] = ACTIONS(2549), + [anon_sym_RPAREN] = ACTIONS(2549), + [anon_sym_LPAREN2] = ACTIONS(1089), + [anon_sym_STAR] = ACTIONS(1549), + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(2551), + [anon_sym_QMARK] = ACTIONS(2549), + [anon_sym_STAR_EQ] = ACTIONS(2549), + [anon_sym_SLASH_EQ] = ACTIONS(2549), + [anon_sym_PERCENT_EQ] = ACTIONS(2549), + [anon_sym_PLUS_EQ] = ACTIONS(2549), + [anon_sym_DASH_EQ] = ACTIONS(2549), + [anon_sym_LT_LT_EQ] = ACTIONS(2549), + [anon_sym_GT_GT_EQ] = ACTIONS(2549), + [anon_sym_AMP_EQ] = ACTIONS(2549), + [anon_sym_CARET_EQ] = ACTIONS(2549), + [anon_sym_PIPE_EQ] = ACTIONS(2549), + [anon_sym_AMP] = ACTIONS(2551), + [anon_sym_PIPE_PIPE] = ACTIONS(2549), + [anon_sym_AMP_AMP] = ACTIONS(2549), + [anon_sym_PIPE] = ACTIONS(2551), + [anon_sym_CARET] = ACTIONS(2551), + [anon_sym_EQ_EQ] = ACTIONS(2549), + [anon_sym_BANG_EQ] = ACTIONS(2549), + [anon_sym_LT] = ACTIONS(2551), + [anon_sym_GT] = ACTIONS(2551), + [anon_sym_LT_EQ] = ACTIONS(2549), + [anon_sym_GT_EQ] = ACTIONS(2549), + [anon_sym_LT_LT] = ACTIONS(2551), + [anon_sym_GT_GT] = ACTIONS(2551), + [anon_sym_PLUS] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(1575), + [anon_sym_SLASH] = ACTIONS(1549), + [anon_sym_PERCENT] = ACTIONS(1549), + [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_PLUS_PLUS] = ACTIONS(1121), + [anon_sym_DOT] = ACTIONS(1123), + [anon_sym_DASH_GT] = ACTIONS(1123), [sym_comment] = ACTIONS(39), }, [920] = { [sym_argument_list] = STATE(465), - [anon_sym_COMMA] = ACTIONS(2534), - [anon_sym_RPAREN] = ACTIONS(2534), - [anon_sym_LPAREN2] = ACTIONS(1096), - [anon_sym_STAR] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1100), - [anon_sym_EQ] = ACTIONS(2536), - [anon_sym_QMARK] = ACTIONS(2534), - [anon_sym_STAR_EQ] = ACTIONS(2534), - [anon_sym_SLASH_EQ] = ACTIONS(2534), - [anon_sym_PERCENT_EQ] = ACTIONS(2534), - [anon_sym_PLUS_EQ] = ACTIONS(2534), - [anon_sym_DASH_EQ] = ACTIONS(2534), - [anon_sym_LT_LT_EQ] = ACTIONS(2534), - [anon_sym_GT_GT_EQ] = ACTIONS(2534), - [anon_sym_AMP_EQ] = ACTIONS(2534), - [anon_sym_CARET_EQ] = ACTIONS(2534), - [anon_sym_PIPE_EQ] = ACTIONS(2534), - [anon_sym_AMP] = ACTIONS(2536), - [anon_sym_PIPE_PIPE] = ACTIONS(2534), - [anon_sym_AMP_AMP] = ACTIONS(2534), - [anon_sym_PIPE] = ACTIONS(2536), - [anon_sym_CARET] = ACTIONS(2536), - [anon_sym_EQ_EQ] = ACTIONS(2534), - [anon_sym_BANG_EQ] = ACTIONS(2534), - [anon_sym_LT] = ACTIONS(2536), - [anon_sym_GT] = ACTIONS(2536), - [anon_sym_LT_EQ] = ACTIONS(2534), - [anon_sym_GT_EQ] = ACTIONS(2534), - [anon_sym_LT_LT] = ACTIONS(2536), - [anon_sym_GT_GT] = ACTIONS(2536), - [anon_sym_PLUS] = ACTIONS(2536), - [anon_sym_DASH] = ACTIONS(2536), - [anon_sym_SLASH] = ACTIONS(1560), - [anon_sym_PERCENT] = ACTIONS(1560), - [anon_sym_DASH_DASH] = ACTIONS(1128), - [anon_sym_PLUS_PLUS] = ACTIONS(1128), - [anon_sym_DOT] = ACTIONS(1130), - [anon_sym_DASH_GT] = ACTIONS(1130), + [anon_sym_COMMA] = ACTIONS(2523), + [anon_sym_RPAREN] = ACTIONS(2523), + [anon_sym_LPAREN2] = ACTIONS(1089), + [anon_sym_STAR] = ACTIONS(1549), + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(2525), + [anon_sym_QMARK] = ACTIONS(2523), + [anon_sym_STAR_EQ] = ACTIONS(2523), + [anon_sym_SLASH_EQ] = ACTIONS(2523), + [anon_sym_PERCENT_EQ] = ACTIONS(2523), + [anon_sym_PLUS_EQ] = ACTIONS(2523), + [anon_sym_DASH_EQ] = ACTIONS(2523), + [anon_sym_LT_LT_EQ] = ACTIONS(2523), + [anon_sym_GT_GT_EQ] = ACTIONS(2523), + [anon_sym_AMP_EQ] = ACTIONS(2523), + [anon_sym_CARET_EQ] = ACTIONS(2523), + [anon_sym_PIPE_EQ] = ACTIONS(2523), + [anon_sym_AMP] = ACTIONS(2525), + [anon_sym_PIPE_PIPE] = ACTIONS(2523), + [anon_sym_AMP_AMP] = ACTIONS(2523), + [anon_sym_PIPE] = ACTIONS(2525), + [anon_sym_CARET] = ACTIONS(2525), + [anon_sym_EQ_EQ] = ACTIONS(2523), + [anon_sym_BANG_EQ] = ACTIONS(2523), + [anon_sym_LT] = ACTIONS(2525), + [anon_sym_GT] = ACTIONS(2525), + [anon_sym_LT_EQ] = ACTIONS(2523), + [anon_sym_GT_EQ] = ACTIONS(2523), + [anon_sym_LT_LT] = ACTIONS(2525), + [anon_sym_GT_GT] = ACTIONS(2525), + [anon_sym_PLUS] = ACTIONS(2525), + [anon_sym_DASH] = ACTIONS(2525), + [anon_sym_SLASH] = ACTIONS(1549), + [anon_sym_PERCENT] = ACTIONS(1549), + [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_PLUS_PLUS] = ACTIONS(1121), + [anon_sym_DOT] = ACTIONS(1123), + [anon_sym_DASH_GT] = ACTIONS(1123), [sym_comment] = ACTIONS(39), }, [921] = { [sym_argument_list] = STATE(465), - [anon_sym_COMMA] = ACTIONS(2888), - [anon_sym_RPAREN] = ACTIONS(2888), - [anon_sym_SEMI] = ACTIONS(2888), - [anon_sym_RBRACE] = ACTIONS(2888), - [anon_sym_LPAREN2] = ACTIONS(1096), - [anon_sym_STAR] = ACTIONS(2890), - [anon_sym_LBRACK] = ACTIONS(1100), - [anon_sym_RBRACK] = ACTIONS(2888), - [anon_sym_EQ] = ACTIONS(2890), - [anon_sym_COLON] = ACTIONS(2888), - [anon_sym_QMARK] = ACTIONS(2888), - [anon_sym_STAR_EQ] = ACTIONS(2888), - [anon_sym_SLASH_EQ] = ACTIONS(2888), - [anon_sym_PERCENT_EQ] = ACTIONS(2888), - [anon_sym_PLUS_EQ] = ACTIONS(2888), - [anon_sym_DASH_EQ] = ACTIONS(2888), - [anon_sym_LT_LT_EQ] = ACTIONS(2888), - [anon_sym_GT_GT_EQ] = ACTIONS(2888), - [anon_sym_AMP_EQ] = ACTIONS(2888), - [anon_sym_CARET_EQ] = ACTIONS(2888), - [anon_sym_PIPE_EQ] = ACTIONS(2888), - [anon_sym_AMP] = ACTIONS(2890), - [anon_sym_PIPE_PIPE] = ACTIONS(2888), - [anon_sym_AMP_AMP] = ACTIONS(2888), - [anon_sym_PIPE] = ACTIONS(2890), - [anon_sym_CARET] = ACTIONS(2890), - [anon_sym_EQ_EQ] = ACTIONS(2888), - [anon_sym_BANG_EQ] = ACTIONS(2888), - [anon_sym_LT] = ACTIONS(2890), - [anon_sym_GT] = ACTIONS(2890), - [anon_sym_LT_EQ] = ACTIONS(2888), - [anon_sym_GT_EQ] = ACTIONS(2888), - [anon_sym_LT_LT] = ACTIONS(2890), - [anon_sym_GT_GT] = ACTIONS(2890), - [anon_sym_PLUS] = ACTIONS(2890), - [anon_sym_DASH] = ACTIONS(2890), - [anon_sym_SLASH] = ACTIONS(2890), - [anon_sym_PERCENT] = ACTIONS(2890), - [anon_sym_DASH_DASH] = ACTIONS(1128), - [anon_sym_PLUS_PLUS] = ACTIONS(1128), - [anon_sym_DOT] = ACTIONS(1130), - [anon_sym_DASH_GT] = ACTIONS(1130), + [anon_sym_COMMA] = ACTIONS(2877), + [anon_sym_RPAREN] = ACTIONS(2877), + [anon_sym_SEMI] = ACTIONS(2877), + [anon_sym_RBRACE] = ACTIONS(2877), + [anon_sym_LPAREN2] = ACTIONS(1089), + [anon_sym_STAR] = ACTIONS(2879), + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_RBRACK] = ACTIONS(2877), + [anon_sym_EQ] = ACTIONS(2879), + [anon_sym_COLON] = ACTIONS(2877), + [anon_sym_QMARK] = ACTIONS(2877), + [anon_sym_STAR_EQ] = ACTIONS(2877), + [anon_sym_SLASH_EQ] = ACTIONS(2877), + [anon_sym_PERCENT_EQ] = ACTIONS(2877), + [anon_sym_PLUS_EQ] = ACTIONS(2877), + [anon_sym_DASH_EQ] = ACTIONS(2877), + [anon_sym_LT_LT_EQ] = ACTIONS(2877), + [anon_sym_GT_GT_EQ] = ACTIONS(2877), + [anon_sym_AMP_EQ] = ACTIONS(2877), + [anon_sym_CARET_EQ] = ACTIONS(2877), + [anon_sym_PIPE_EQ] = ACTIONS(2877), + [anon_sym_AMP] = ACTIONS(2879), + [anon_sym_PIPE_PIPE] = ACTIONS(2877), + [anon_sym_AMP_AMP] = ACTIONS(2877), + [anon_sym_PIPE] = ACTIONS(2879), + [anon_sym_CARET] = ACTIONS(2879), + [anon_sym_EQ_EQ] = ACTIONS(2877), + [anon_sym_BANG_EQ] = ACTIONS(2877), + [anon_sym_LT] = ACTIONS(2879), + [anon_sym_GT] = ACTIONS(2879), + [anon_sym_LT_EQ] = ACTIONS(2877), + [anon_sym_GT_EQ] = ACTIONS(2877), + [anon_sym_LT_LT] = ACTIONS(2879), + [anon_sym_GT_GT] = ACTIONS(2879), + [anon_sym_PLUS] = ACTIONS(2879), + [anon_sym_DASH] = ACTIONS(2879), + [anon_sym_SLASH] = ACTIONS(2879), + [anon_sym_PERCENT] = ACTIONS(2879), + [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_PLUS_PLUS] = ACTIONS(1121), + [anon_sym_DOT] = ACTIONS(1123), + [anon_sym_DASH_GT] = ACTIONS(1123), [sym_comment] = ACTIONS(39), }, [922] = { - [anon_sym_COMMA] = ACTIONS(2892), - [anon_sym_RPAREN] = ACTIONS(2892), - [anon_sym_SEMI] = ACTIONS(2892), - [anon_sym_RBRACE] = ACTIONS(2892), - [anon_sym_LPAREN2] = ACTIONS(2892), - [anon_sym_STAR] = ACTIONS(2894), - [anon_sym_LBRACK] = ACTIONS(2892), - [anon_sym_RBRACK] = ACTIONS(2892), - [anon_sym_EQ] = ACTIONS(2894), - [anon_sym_COLON] = ACTIONS(2892), - [anon_sym_QMARK] = ACTIONS(2892), - [anon_sym_STAR_EQ] = ACTIONS(2892), - [anon_sym_SLASH_EQ] = ACTIONS(2892), - [anon_sym_PERCENT_EQ] = ACTIONS(2892), - [anon_sym_PLUS_EQ] = ACTIONS(2892), - [anon_sym_DASH_EQ] = ACTIONS(2892), - [anon_sym_LT_LT_EQ] = ACTIONS(2892), - [anon_sym_GT_GT_EQ] = ACTIONS(2892), - [anon_sym_AMP_EQ] = ACTIONS(2892), - [anon_sym_CARET_EQ] = ACTIONS(2892), - [anon_sym_PIPE_EQ] = ACTIONS(2892), - [anon_sym_AMP] = ACTIONS(2894), - [anon_sym_PIPE_PIPE] = ACTIONS(2892), - [anon_sym_AMP_AMP] = ACTIONS(2892), - [anon_sym_PIPE] = ACTIONS(2894), - [anon_sym_CARET] = ACTIONS(2894), - [anon_sym_EQ_EQ] = ACTIONS(2892), - [anon_sym_BANG_EQ] = ACTIONS(2892), - [anon_sym_LT] = ACTIONS(2894), - [anon_sym_GT] = ACTIONS(2894), - [anon_sym_LT_EQ] = ACTIONS(2892), - [anon_sym_GT_EQ] = ACTIONS(2892), - [anon_sym_LT_LT] = ACTIONS(2894), - [anon_sym_GT_GT] = ACTIONS(2894), - [anon_sym_PLUS] = ACTIONS(2894), - [anon_sym_DASH] = ACTIONS(2894), - [anon_sym_SLASH] = ACTIONS(2894), - [anon_sym_PERCENT] = ACTIONS(2894), - [anon_sym_DASH_DASH] = ACTIONS(2892), - [anon_sym_PLUS_PLUS] = ACTIONS(2892), - [anon_sym_DOT] = ACTIONS(2892), - [anon_sym_DASH_GT] = ACTIONS(2892), + [anon_sym_COMMA] = ACTIONS(2881), + [anon_sym_RPAREN] = ACTIONS(2881), + [anon_sym_SEMI] = ACTIONS(2881), + [anon_sym_RBRACE] = ACTIONS(2881), + [anon_sym_LPAREN2] = ACTIONS(2881), + [anon_sym_STAR] = ACTIONS(2883), + [anon_sym_LBRACK] = ACTIONS(2881), + [anon_sym_RBRACK] = ACTIONS(2881), + [anon_sym_EQ] = ACTIONS(2883), + [anon_sym_COLON] = ACTIONS(2881), + [anon_sym_QMARK] = ACTIONS(2881), + [anon_sym_STAR_EQ] = ACTIONS(2881), + [anon_sym_SLASH_EQ] = ACTIONS(2881), + [anon_sym_PERCENT_EQ] = ACTIONS(2881), + [anon_sym_PLUS_EQ] = ACTIONS(2881), + [anon_sym_DASH_EQ] = ACTIONS(2881), + [anon_sym_LT_LT_EQ] = ACTIONS(2881), + [anon_sym_GT_GT_EQ] = ACTIONS(2881), + [anon_sym_AMP_EQ] = ACTIONS(2881), + [anon_sym_CARET_EQ] = ACTIONS(2881), + [anon_sym_PIPE_EQ] = ACTIONS(2881), + [anon_sym_AMP] = ACTIONS(2883), + [anon_sym_PIPE_PIPE] = ACTIONS(2881), + [anon_sym_AMP_AMP] = ACTIONS(2881), + [anon_sym_PIPE] = ACTIONS(2883), + [anon_sym_CARET] = ACTIONS(2883), + [anon_sym_EQ_EQ] = ACTIONS(2881), + [anon_sym_BANG_EQ] = ACTIONS(2881), + [anon_sym_LT] = ACTIONS(2883), + [anon_sym_GT] = ACTIONS(2883), + [anon_sym_LT_EQ] = ACTIONS(2881), + [anon_sym_GT_EQ] = ACTIONS(2881), + [anon_sym_LT_LT] = ACTIONS(2883), + [anon_sym_GT_GT] = ACTIONS(2883), + [anon_sym_PLUS] = ACTIONS(2883), + [anon_sym_DASH] = ACTIONS(2883), + [anon_sym_SLASH] = ACTIONS(2883), + [anon_sym_PERCENT] = ACTIONS(2883), + [anon_sym_DASH_DASH] = ACTIONS(2881), + [anon_sym_PLUS_PLUS] = ACTIONS(2881), + [anon_sym_DOT] = ACTIONS(2881), + [anon_sym_DASH_GT] = ACTIONS(2881), [sym_comment] = ACTIONS(39), }, [923] = { [sym_string_literal] = STATE(923), [aux_sym_concatenated_string_repeat1] = STATE(923), - [anon_sym_COMMA] = ACTIONS(2568), - [anon_sym_RPAREN] = ACTIONS(2568), - [anon_sym_LPAREN2] = ACTIONS(2568), - [anon_sym_STAR] = ACTIONS(2570), - [anon_sym_LBRACK] = ACTIONS(2568), - [anon_sym_EQ] = ACTIONS(2570), - [anon_sym_QMARK] = ACTIONS(2568), - [anon_sym_STAR_EQ] = ACTIONS(2568), - [anon_sym_SLASH_EQ] = ACTIONS(2568), - [anon_sym_PERCENT_EQ] = ACTIONS(2568), - [anon_sym_PLUS_EQ] = ACTIONS(2568), - [anon_sym_DASH_EQ] = ACTIONS(2568), - [anon_sym_LT_LT_EQ] = ACTIONS(2568), - [anon_sym_GT_GT_EQ] = ACTIONS(2568), - [anon_sym_AMP_EQ] = ACTIONS(2568), - [anon_sym_CARET_EQ] = ACTIONS(2568), - [anon_sym_PIPE_EQ] = ACTIONS(2568), - [anon_sym_AMP] = ACTIONS(2570), - [anon_sym_PIPE_PIPE] = ACTIONS(2568), - [anon_sym_AMP_AMP] = ACTIONS(2568), - [anon_sym_PIPE] = ACTIONS(2570), - [anon_sym_CARET] = ACTIONS(2570), - [anon_sym_EQ_EQ] = ACTIONS(2568), - [anon_sym_BANG_EQ] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_GT] = ACTIONS(2570), - [anon_sym_LT_EQ] = ACTIONS(2568), - [anon_sym_GT_EQ] = ACTIONS(2568), - [anon_sym_LT_LT] = ACTIONS(2570), - [anon_sym_GT_GT] = ACTIONS(2570), - [anon_sym_PLUS] = ACTIONS(2570), - [anon_sym_DASH] = ACTIONS(2570), - [anon_sym_SLASH] = ACTIONS(2570), - [anon_sym_PERCENT] = ACTIONS(2570), - [anon_sym_DASH_DASH] = ACTIONS(2568), - [anon_sym_PLUS_PLUS] = ACTIONS(2568), - [anon_sym_DOT] = ACTIONS(2568), - [anon_sym_DASH_GT] = ACTIONS(2568), - [anon_sym_DQUOTE] = ACTIONS(2572), + [anon_sym_COMMA] = ACTIONS(2557), + [anon_sym_RPAREN] = ACTIONS(2557), + [anon_sym_LPAREN2] = ACTIONS(2557), + [anon_sym_STAR] = ACTIONS(2559), + [anon_sym_LBRACK] = ACTIONS(2557), + [anon_sym_EQ] = ACTIONS(2559), + [anon_sym_QMARK] = ACTIONS(2557), + [anon_sym_STAR_EQ] = ACTIONS(2557), + [anon_sym_SLASH_EQ] = ACTIONS(2557), + [anon_sym_PERCENT_EQ] = ACTIONS(2557), + [anon_sym_PLUS_EQ] = ACTIONS(2557), + [anon_sym_DASH_EQ] = ACTIONS(2557), + [anon_sym_LT_LT_EQ] = ACTIONS(2557), + [anon_sym_GT_GT_EQ] = ACTIONS(2557), + [anon_sym_AMP_EQ] = ACTIONS(2557), + [anon_sym_CARET_EQ] = ACTIONS(2557), + [anon_sym_PIPE_EQ] = ACTIONS(2557), + [anon_sym_AMP] = ACTIONS(2559), + [anon_sym_PIPE_PIPE] = ACTIONS(2557), + [anon_sym_AMP_AMP] = ACTIONS(2557), + [anon_sym_PIPE] = ACTIONS(2559), + [anon_sym_CARET] = ACTIONS(2559), + [anon_sym_EQ_EQ] = ACTIONS(2557), + [anon_sym_BANG_EQ] = ACTIONS(2557), + [anon_sym_LT] = ACTIONS(2559), + [anon_sym_GT] = ACTIONS(2559), + [anon_sym_LT_EQ] = ACTIONS(2557), + [anon_sym_GT_EQ] = ACTIONS(2557), + [anon_sym_LT_LT] = ACTIONS(2559), + [anon_sym_GT_GT] = ACTIONS(2559), + [anon_sym_PLUS] = ACTIONS(2559), + [anon_sym_DASH] = ACTIONS(2559), + [anon_sym_SLASH] = ACTIONS(2559), + [anon_sym_PERCENT] = ACTIONS(2559), + [anon_sym_DASH_DASH] = ACTIONS(2557), + [anon_sym_PLUS_PLUS] = ACTIONS(2557), + [anon_sym_DOT] = ACTIONS(2557), + [anon_sym_DASH_GT] = ACTIONS(2557), + [anon_sym_DQUOTE] = ACTIONS(2561), [sym_comment] = ACTIONS(39), }, [924] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2346), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2346), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2346), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2346), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2346), - [sym_preproc_directive] = ACTIONS(2346), - [anon_sym_SEMI] = ACTIONS(2344), - [anon_sym_typedef] = ACTIONS(2346), - [anon_sym_extern] = ACTIONS(2346), - [anon_sym_LBRACE] = ACTIONS(2344), - [anon_sym_RBRACE] = ACTIONS(2344), - [anon_sym_LPAREN2] = ACTIONS(2344), - [anon_sym_STAR] = ACTIONS(2344), - [anon_sym_static] = ACTIONS(2346), - [anon_sym_auto] = ACTIONS(2346), - [anon_sym_register] = ACTIONS(2346), - [anon_sym_inline] = ACTIONS(2346), - [anon_sym_const] = ACTIONS(2346), - [anon_sym_restrict] = ACTIONS(2346), - [anon_sym_volatile] = ACTIONS(2346), - [anon_sym__Atomic] = ACTIONS(2346), - [anon_sym_unsigned] = ACTIONS(2346), - [anon_sym_long] = ACTIONS(2346), - [anon_sym_short] = ACTIONS(2346), - [sym_primitive_type] = ACTIONS(2346), - [anon_sym_enum] = ACTIONS(2346), - [anon_sym_struct] = ACTIONS(2346), - [anon_sym_union] = ACTIONS(2346), - [anon_sym_if] = ACTIONS(2346), - [anon_sym_else] = ACTIONS(2346), - [anon_sym_switch] = ACTIONS(2346), - [anon_sym_case] = ACTIONS(2346), - [anon_sym_default] = ACTIONS(2346), - [anon_sym_while] = ACTIONS(2346), - [anon_sym_do] = ACTIONS(2346), - [anon_sym_for] = ACTIONS(2346), - [anon_sym_return] = ACTIONS(2346), - [anon_sym_break] = ACTIONS(2346), - [anon_sym_continue] = ACTIONS(2346), - [anon_sym_goto] = ACTIONS(2346), - [anon_sym_AMP] = ACTIONS(2344), - [anon_sym_BANG] = ACTIONS(2344), - [anon_sym_TILDE] = ACTIONS(2344), - [anon_sym_PLUS] = ACTIONS(2346), - [anon_sym_DASH] = ACTIONS(2346), - [anon_sym_DASH_DASH] = ACTIONS(2344), - [anon_sym_PLUS_PLUS] = ACTIONS(2344), - [anon_sym_sizeof] = ACTIONS(2346), - [sym_number_literal] = ACTIONS(2344), - [anon_sym_SQUOTE] = ACTIONS(2344), - [anon_sym_DQUOTE] = ACTIONS(2344), - [sym_true] = ACTIONS(2346), - [sym_false] = ACTIONS(2346), - [sym_null] = ACTIONS(2346), - [sym_identifier] = ACTIONS(2346), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2335), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2335), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2335), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2335), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2335), + [sym_preproc_directive] = ACTIONS(2335), + [anon_sym_SEMI] = ACTIONS(2333), + [anon_sym_typedef] = ACTIONS(2335), + [anon_sym_extern] = ACTIONS(2335), + [anon_sym_LBRACE] = ACTIONS(2333), + [anon_sym_RBRACE] = ACTIONS(2333), + [anon_sym_LPAREN2] = ACTIONS(2333), + [anon_sym_STAR] = ACTIONS(2333), + [anon_sym_static] = ACTIONS(2335), + [anon_sym_auto] = ACTIONS(2335), + [anon_sym_register] = ACTIONS(2335), + [anon_sym_inline] = ACTIONS(2335), + [anon_sym_const] = ACTIONS(2335), + [anon_sym_restrict] = ACTIONS(2335), + [anon_sym_volatile] = ACTIONS(2335), + [anon_sym__Atomic] = ACTIONS(2335), + [anon_sym_unsigned] = ACTIONS(2335), + [anon_sym_long] = ACTIONS(2335), + [anon_sym_short] = ACTIONS(2335), + [sym_primitive_type] = ACTIONS(2335), + [anon_sym_enum] = ACTIONS(2335), + [anon_sym_struct] = ACTIONS(2335), + [anon_sym_union] = ACTIONS(2335), + [anon_sym_if] = ACTIONS(2335), + [anon_sym_else] = ACTIONS(2335), + [anon_sym_switch] = ACTIONS(2335), + [anon_sym_case] = ACTIONS(2335), + [anon_sym_default] = ACTIONS(2335), + [anon_sym_while] = ACTIONS(2335), + [anon_sym_do] = ACTIONS(2335), + [anon_sym_for] = ACTIONS(2335), + [anon_sym_return] = ACTIONS(2335), + [anon_sym_break] = ACTIONS(2335), + [anon_sym_continue] = ACTIONS(2335), + [anon_sym_goto] = ACTIONS(2335), + [anon_sym_AMP] = ACTIONS(2333), + [anon_sym_BANG] = ACTIONS(2333), + [anon_sym_TILDE] = ACTIONS(2333), + [anon_sym_PLUS] = ACTIONS(2335), + [anon_sym_DASH] = ACTIONS(2335), + [anon_sym_DASH_DASH] = ACTIONS(2333), + [anon_sym_PLUS_PLUS] = ACTIONS(2333), + [anon_sym_sizeof] = ACTIONS(2335), + [sym_number_literal] = ACTIONS(2333), + [anon_sym_SQUOTE] = ACTIONS(2333), + [anon_sym_DQUOTE] = ACTIONS(2333), + [sym_true] = ACTIONS(2335), + [sym_false] = ACTIONS(2335), + [sym_null] = ACTIONS(2335), + [sym_identifier] = ACTIONS(2335), [sym_comment] = ACTIONS(39), }, [925] = { @@ -35756,36 +35775,36 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(251), [sym_concatenated_string] = STATE(251), [sym_string_literal] = STATE(253), - [anon_sym_SEMI] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(241), - [anon_sym_LPAREN2] = ACTIONS(554), - [anon_sym_STAR] = ACTIONS(556), - [anon_sym_if] = ACTIONS(1598), - [anon_sym_switch] = ACTIONS(1600), - [anon_sym_case] = ACTIONS(1602), - [anon_sym_default] = ACTIONS(1604), - [anon_sym_while] = ACTIONS(1606), - [anon_sym_do] = ACTIONS(568), - [anon_sym_for] = ACTIONS(1608), - [anon_sym_return] = ACTIONS(572), - [anon_sym_break] = ACTIONS(574), - [anon_sym_continue] = ACTIONS(576), - [anon_sym_goto] = ACTIONS(578), - [anon_sym_AMP] = ACTIONS(556), - [anon_sym_BANG] = ACTIONS(580), - [anon_sym_TILDE] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_DASH_DASH] = ACTIONS(586), - [anon_sym_PLUS_PLUS] = ACTIONS(586), - [anon_sym_sizeof] = ACTIONS(588), - [sym_number_literal] = ACTIONS(590), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(594), - [sym_false] = ACTIONS(594), - [sym_null] = ACTIONS(594), - [sym_identifier] = ACTIONS(1610), + [anon_sym_SEMI] = ACTIONS(546), + [anon_sym_LBRACE] = ACTIONS(239), + [anon_sym_LPAREN2] = ACTIONS(550), + [anon_sym_STAR] = ACTIONS(552), + [anon_sym_if] = ACTIONS(1587), + [anon_sym_switch] = ACTIONS(1589), + [anon_sym_case] = ACTIONS(1591), + [anon_sym_default] = ACTIONS(1593), + [anon_sym_while] = ACTIONS(1595), + [anon_sym_do] = ACTIONS(564), + [anon_sym_for] = ACTIONS(1597), + [anon_sym_return] = ACTIONS(568), + [anon_sym_break] = ACTIONS(570), + [anon_sym_continue] = ACTIONS(572), + [anon_sym_goto] = ACTIONS(574), + [anon_sym_AMP] = ACTIONS(552), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_TILDE] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(580), + [anon_sym_DASH] = ACTIONS(580), + [anon_sym_DASH_DASH] = ACTIONS(582), + [anon_sym_PLUS_PLUS] = ACTIONS(582), + [anon_sym_sizeof] = ACTIONS(584), + [sym_number_literal] = ACTIONS(586), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(590), + [sym_false] = ACTIONS(590), + [sym_null] = ACTIONS(590), + [sym_identifier] = ACTIONS(1599), [sym_comment] = ACTIONS(39), }, [926] = { @@ -35823,77 +35842,77 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(251), [sym_concatenated_string] = STATE(251), [sym_string_literal] = STATE(253), - [anon_sym_SEMI] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(241), - [anon_sym_LPAREN2] = ACTIONS(554), - [anon_sym_STAR] = ACTIONS(556), - [anon_sym_if] = ACTIONS(1598), - [anon_sym_switch] = ACTIONS(1600), - [anon_sym_case] = ACTIONS(1602), - [anon_sym_default] = ACTIONS(1604), - [anon_sym_while] = ACTIONS(1606), - [anon_sym_do] = ACTIONS(568), - [anon_sym_for] = ACTIONS(1608), - [anon_sym_return] = ACTIONS(572), - [anon_sym_break] = ACTIONS(574), - [anon_sym_continue] = ACTIONS(576), - [anon_sym_goto] = ACTIONS(578), - [anon_sym_AMP] = ACTIONS(556), - [anon_sym_BANG] = ACTIONS(580), - [anon_sym_TILDE] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_DASH_DASH] = ACTIONS(586), - [anon_sym_PLUS_PLUS] = ACTIONS(586), - [anon_sym_sizeof] = ACTIONS(588), - [sym_number_literal] = ACTIONS(590), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(594), - [sym_false] = ACTIONS(594), - [sym_null] = ACTIONS(594), - [sym_identifier] = ACTIONS(1610), + [anon_sym_SEMI] = ACTIONS(546), + [anon_sym_LBRACE] = ACTIONS(239), + [anon_sym_LPAREN2] = ACTIONS(550), + [anon_sym_STAR] = ACTIONS(552), + [anon_sym_if] = ACTIONS(1587), + [anon_sym_switch] = ACTIONS(1589), + [anon_sym_case] = ACTIONS(1591), + [anon_sym_default] = ACTIONS(1593), + [anon_sym_while] = ACTIONS(1595), + [anon_sym_do] = ACTIONS(564), + [anon_sym_for] = ACTIONS(1597), + [anon_sym_return] = ACTIONS(568), + [anon_sym_break] = ACTIONS(570), + [anon_sym_continue] = ACTIONS(572), + [anon_sym_goto] = ACTIONS(574), + [anon_sym_AMP] = ACTIONS(552), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_TILDE] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(580), + [anon_sym_DASH] = ACTIONS(580), + [anon_sym_DASH_DASH] = ACTIONS(582), + [anon_sym_PLUS_PLUS] = ACTIONS(582), + [anon_sym_sizeof] = ACTIONS(584), + [sym_number_literal] = ACTIONS(586), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(590), + [sym_false] = ACTIONS(590), + [sym_null] = ACTIONS(590), + [sym_identifier] = ACTIONS(1599), [sym_comment] = ACTIONS(39), }, [927] = { [sym_argument_list] = STATE(465), - [anon_sym_LPAREN2] = ACTIONS(1096), - [anon_sym_STAR] = ACTIONS(1620), - [anon_sym_LBRACK] = ACTIONS(1100), - [anon_sym_EQ] = ACTIONS(1622), - [anon_sym_COLON] = ACTIONS(2896), - [anon_sym_QMARK] = ACTIONS(1626), - [anon_sym_STAR_EQ] = ACTIONS(1628), - [anon_sym_SLASH_EQ] = ACTIONS(1628), - [anon_sym_PERCENT_EQ] = ACTIONS(1628), - [anon_sym_PLUS_EQ] = ACTIONS(1628), - [anon_sym_DASH_EQ] = ACTIONS(1628), - [anon_sym_LT_LT_EQ] = ACTIONS(1628), - [anon_sym_GT_GT_EQ] = ACTIONS(1628), - [anon_sym_AMP_EQ] = ACTIONS(1628), - [anon_sym_CARET_EQ] = ACTIONS(1628), - [anon_sym_PIPE_EQ] = ACTIONS(1628), - [anon_sym_AMP] = ACTIONS(1630), - [anon_sym_PIPE_PIPE] = ACTIONS(1632), - [anon_sym_AMP_AMP] = ACTIONS(1634), - [anon_sym_PIPE] = ACTIONS(1636), - [anon_sym_CARET] = ACTIONS(1638), - [anon_sym_EQ_EQ] = ACTIONS(1640), - [anon_sym_BANG_EQ] = ACTIONS(1640), - [anon_sym_LT] = ACTIONS(1642), - [anon_sym_GT] = ACTIONS(1642), - [anon_sym_LT_EQ] = ACTIONS(1644), - [anon_sym_GT_EQ] = ACTIONS(1644), - [anon_sym_LT_LT] = ACTIONS(1646), - [anon_sym_GT_GT] = ACTIONS(1646), - [anon_sym_PLUS] = ACTIONS(1648), - [anon_sym_DASH] = ACTIONS(1648), - [anon_sym_SLASH] = ACTIONS(1620), - [anon_sym_PERCENT] = ACTIONS(1620), - [anon_sym_DASH_DASH] = ACTIONS(1128), - [anon_sym_PLUS_PLUS] = ACTIONS(1128), - [anon_sym_DOT] = ACTIONS(1130), - [anon_sym_DASH_GT] = ACTIONS(1130), + [anon_sym_LPAREN2] = ACTIONS(1089), + [anon_sym_STAR] = ACTIONS(1609), + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(1611), + [anon_sym_COLON] = ACTIONS(2885), + [anon_sym_QMARK] = ACTIONS(1615), + [anon_sym_STAR_EQ] = ACTIONS(1617), + [anon_sym_SLASH_EQ] = ACTIONS(1617), + [anon_sym_PERCENT_EQ] = ACTIONS(1617), + [anon_sym_PLUS_EQ] = ACTIONS(1617), + [anon_sym_DASH_EQ] = ACTIONS(1617), + [anon_sym_LT_LT_EQ] = ACTIONS(1617), + [anon_sym_GT_GT_EQ] = ACTIONS(1617), + [anon_sym_AMP_EQ] = ACTIONS(1617), + [anon_sym_CARET_EQ] = ACTIONS(1617), + [anon_sym_PIPE_EQ] = ACTIONS(1617), + [anon_sym_AMP] = ACTIONS(1619), + [anon_sym_PIPE_PIPE] = ACTIONS(1621), + [anon_sym_AMP_AMP] = ACTIONS(1623), + [anon_sym_PIPE] = ACTIONS(1625), + [anon_sym_CARET] = ACTIONS(1627), + [anon_sym_EQ_EQ] = ACTIONS(1629), + [anon_sym_BANG_EQ] = ACTIONS(1629), + [anon_sym_LT] = ACTIONS(1631), + [anon_sym_GT] = ACTIONS(1631), + [anon_sym_LT_EQ] = ACTIONS(1633), + [anon_sym_GT_EQ] = ACTIONS(1633), + [anon_sym_LT_LT] = ACTIONS(1635), + [anon_sym_GT_GT] = ACTIONS(1635), + [anon_sym_PLUS] = ACTIONS(1637), + [anon_sym_DASH] = ACTIONS(1637), + [anon_sym_SLASH] = ACTIONS(1609), + [anon_sym_PERCENT] = ACTIONS(1609), + [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_PLUS_PLUS] = ACTIONS(1121), + [anon_sym_DOT] = ACTIONS(1123), + [anon_sym_DASH_GT] = ACTIONS(1123), [sym_comment] = ACTIONS(39), }, [928] = { @@ -35944,12 +35963,12 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_macro_type_specifier] = STATE(95), [aux_sym__declaration_specifiers_repeat1] = STATE(96), [aux_sym_sized_type_specifier_repeat1] = STATE(97), - [anon_sym_SEMI] = ACTIONS(550), + [anon_sym_SEMI] = ACTIONS(546), [anon_sym_typedef] = ACTIONS(19), [anon_sym_extern] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(241), - [anon_sym_LPAREN2] = ACTIONS(554), - [anon_sym_STAR] = ACTIONS(556), + [anon_sym_LBRACE] = ACTIONS(239), + [anon_sym_LPAREN2] = ACTIONS(550), + [anon_sym_STAR] = ACTIONS(552), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -35958,39 +35977,39 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_restrict] = ACTIONS(25), [anon_sym_volatile] = ACTIONS(25), [anon_sym__Atomic] = ACTIONS(25), - [anon_sym_unsigned] = ACTIONS(177), - [anon_sym_long] = ACTIONS(177), - [anon_sym_short] = ACTIONS(177), - [sym_primitive_type] = ACTIONS(179), + [anon_sym_unsigned] = ACTIONS(175), + [anon_sym_long] = ACTIONS(175), + [anon_sym_short] = ACTIONS(175), + [sym_primitive_type] = ACTIONS(177), [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), - [anon_sym_if] = ACTIONS(1598), - [anon_sym_switch] = ACTIONS(1600), - [anon_sym_case] = ACTIONS(1602), - [anon_sym_default] = ACTIONS(1604), - [anon_sym_while] = ACTIONS(1606), - [anon_sym_do] = ACTIONS(568), - [anon_sym_for] = ACTIONS(1608), - [anon_sym_return] = ACTIONS(572), - [anon_sym_break] = ACTIONS(574), - [anon_sym_continue] = ACTIONS(576), - [anon_sym_goto] = ACTIONS(578), - [anon_sym_AMP] = ACTIONS(556), - [anon_sym_BANG] = ACTIONS(580), - [anon_sym_TILDE] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_DASH_DASH] = ACTIONS(586), - [anon_sym_PLUS_PLUS] = ACTIONS(586), - [anon_sym_sizeof] = ACTIONS(588), - [sym_number_literal] = ACTIONS(590), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(594), - [sym_false] = ACTIONS(594), - [sym_null] = ACTIONS(594), - [sym_identifier] = ACTIONS(2898), + [anon_sym_if] = ACTIONS(1587), + [anon_sym_switch] = ACTIONS(1589), + [anon_sym_case] = ACTIONS(1591), + [anon_sym_default] = ACTIONS(1593), + [anon_sym_while] = ACTIONS(1595), + [anon_sym_do] = ACTIONS(564), + [anon_sym_for] = ACTIONS(1597), + [anon_sym_return] = ACTIONS(568), + [anon_sym_break] = ACTIONS(570), + [anon_sym_continue] = ACTIONS(572), + [anon_sym_goto] = ACTIONS(574), + [anon_sym_AMP] = ACTIONS(552), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_TILDE] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(580), + [anon_sym_DASH] = ACTIONS(580), + [anon_sym_DASH_DASH] = ACTIONS(582), + [anon_sym_PLUS_PLUS] = ACTIONS(582), + [anon_sym_sizeof] = ACTIONS(584), + [sym_number_literal] = ACTIONS(586), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(590), + [sym_false] = ACTIONS(590), + [sym_null] = ACTIONS(590), + [sym_identifier] = ACTIONS(2887), [sym_comment] = ACTIONS(39), }, [929] = { @@ -36028,36 +36047,36 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(251), [sym_concatenated_string] = STATE(251), [sym_string_literal] = STATE(253), - [anon_sym_SEMI] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(241), - [anon_sym_LPAREN2] = ACTIONS(554), - [anon_sym_STAR] = ACTIONS(556), - [anon_sym_if] = ACTIONS(1598), - [anon_sym_switch] = ACTIONS(1600), - [anon_sym_case] = ACTIONS(1602), - [anon_sym_default] = ACTIONS(1604), - [anon_sym_while] = ACTIONS(1606), - [anon_sym_do] = ACTIONS(568), - [anon_sym_for] = ACTIONS(1608), - [anon_sym_return] = ACTIONS(572), - [anon_sym_break] = ACTIONS(574), - [anon_sym_continue] = ACTIONS(576), - [anon_sym_goto] = ACTIONS(578), - [anon_sym_AMP] = ACTIONS(556), - [anon_sym_BANG] = ACTIONS(580), - [anon_sym_TILDE] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_DASH_DASH] = ACTIONS(586), - [anon_sym_PLUS_PLUS] = ACTIONS(586), - [anon_sym_sizeof] = ACTIONS(588), - [sym_number_literal] = ACTIONS(590), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(594), - [sym_false] = ACTIONS(594), - [sym_null] = ACTIONS(594), - [sym_identifier] = ACTIONS(1610), + [anon_sym_SEMI] = ACTIONS(546), + [anon_sym_LBRACE] = ACTIONS(239), + [anon_sym_LPAREN2] = ACTIONS(550), + [anon_sym_STAR] = ACTIONS(552), + [anon_sym_if] = ACTIONS(1587), + [anon_sym_switch] = ACTIONS(1589), + [anon_sym_case] = ACTIONS(1591), + [anon_sym_default] = ACTIONS(1593), + [anon_sym_while] = ACTIONS(1595), + [anon_sym_do] = ACTIONS(564), + [anon_sym_for] = ACTIONS(1597), + [anon_sym_return] = ACTIONS(568), + [anon_sym_break] = ACTIONS(570), + [anon_sym_continue] = ACTIONS(572), + [anon_sym_goto] = ACTIONS(574), + [anon_sym_AMP] = ACTIONS(552), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_TILDE] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(580), + [anon_sym_DASH] = ACTIONS(580), + [anon_sym_DASH_DASH] = ACTIONS(582), + [anon_sym_PLUS_PLUS] = ACTIONS(582), + [anon_sym_sizeof] = ACTIONS(584), + [sym_number_literal] = ACTIONS(586), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(590), + [sym_false] = ACTIONS(590), + [sym_null] = ACTIONS(590), + [sym_identifier] = ACTIONS(1599), [sym_comment] = ACTIONS(39), }, [930] = { @@ -36093,10 +36112,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_macro_type_specifier] = STATE(95), [aux_sym__declaration_specifiers_repeat1] = STATE(96), [aux_sym_sized_type_specifier_repeat1] = STATE(97), - [anon_sym_SEMI] = ACTIONS(2900), + [anon_sym_SEMI] = ACTIONS(2889), [anon_sym_extern] = ACTIONS(23), - [anon_sym_LPAREN2] = ACTIONS(847), - [anon_sym_STAR] = ACTIONS(849), + [anon_sym_LPAREN2] = ACTIONS(838), + [anon_sym_STAR] = ACTIONS(840), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -36105,28 +36124,28 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_restrict] = ACTIONS(25), [anon_sym_volatile] = ACTIONS(25), [anon_sym__Atomic] = ACTIONS(25), - [anon_sym_unsigned] = ACTIONS(177), - [anon_sym_long] = ACTIONS(177), - [anon_sym_short] = ACTIONS(177), - [sym_primitive_type] = ACTIONS(179), + [anon_sym_unsigned] = ACTIONS(175), + [anon_sym_long] = ACTIONS(175), + [anon_sym_short] = ACTIONS(175), + [sym_primitive_type] = ACTIONS(177), [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), - [anon_sym_AMP] = ACTIONS(849), - [anon_sym_BANG] = ACTIONS(851), - [anon_sym_TILDE] = ACTIONS(853), - [anon_sym_PLUS] = ACTIONS(855), - [anon_sym_DASH] = ACTIONS(855), - [anon_sym_DASH_DASH] = ACTIONS(857), - [anon_sym_PLUS_PLUS] = ACTIONS(857), - [anon_sym_sizeof] = ACTIONS(859), - [sym_number_literal] = ACTIONS(2902), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2904), - [sym_false] = ACTIONS(2904), - [sym_null] = ACTIONS(2904), - [sym_identifier] = ACTIONS(1670), + [anon_sym_AMP] = ACTIONS(840), + [anon_sym_BANG] = ACTIONS(842), + [anon_sym_TILDE] = ACTIONS(844), + [anon_sym_PLUS] = ACTIONS(846), + [anon_sym_DASH] = ACTIONS(846), + [anon_sym_DASH_DASH] = ACTIONS(848), + [anon_sym_PLUS_PLUS] = ACTIONS(848), + [anon_sym_sizeof] = ACTIONS(850), + [sym_number_literal] = ACTIONS(2891), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(2893), + [sym_false] = ACTIONS(2893), + [sym_null] = ACTIONS(2893), + [sym_identifier] = ACTIONS(1659), [sym_comment] = ACTIONS(39), }, [931] = { @@ -36164,36 +36183,36 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(251), [sym_concatenated_string] = STATE(251), [sym_string_literal] = STATE(253), - [anon_sym_SEMI] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(241), - [anon_sym_LPAREN2] = ACTIONS(554), - [anon_sym_STAR] = ACTIONS(556), - [anon_sym_if] = ACTIONS(1598), - [anon_sym_switch] = ACTIONS(1600), - [anon_sym_case] = ACTIONS(1602), - [anon_sym_default] = ACTIONS(1604), - [anon_sym_while] = ACTIONS(1606), - [anon_sym_do] = ACTIONS(568), - [anon_sym_for] = ACTIONS(1608), - [anon_sym_return] = ACTIONS(572), - [anon_sym_break] = ACTIONS(574), - [anon_sym_continue] = ACTIONS(576), - [anon_sym_goto] = ACTIONS(578), - [anon_sym_AMP] = ACTIONS(556), - [anon_sym_BANG] = ACTIONS(580), - [anon_sym_TILDE] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_DASH_DASH] = ACTIONS(586), - [anon_sym_PLUS_PLUS] = ACTIONS(586), - [anon_sym_sizeof] = ACTIONS(588), - [sym_number_literal] = ACTIONS(590), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(594), - [sym_false] = ACTIONS(594), - [sym_null] = ACTIONS(594), - [sym_identifier] = ACTIONS(1610), + [anon_sym_SEMI] = ACTIONS(546), + [anon_sym_LBRACE] = ACTIONS(239), + [anon_sym_LPAREN2] = ACTIONS(550), + [anon_sym_STAR] = ACTIONS(552), + [anon_sym_if] = ACTIONS(1587), + [anon_sym_switch] = ACTIONS(1589), + [anon_sym_case] = ACTIONS(1591), + [anon_sym_default] = ACTIONS(1593), + [anon_sym_while] = ACTIONS(1595), + [anon_sym_do] = ACTIONS(564), + [anon_sym_for] = ACTIONS(1597), + [anon_sym_return] = ACTIONS(568), + [anon_sym_break] = ACTIONS(570), + [anon_sym_continue] = ACTIONS(572), + [anon_sym_goto] = ACTIONS(574), + [anon_sym_AMP] = ACTIONS(552), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_TILDE] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(580), + [anon_sym_DASH] = ACTIONS(580), + [anon_sym_DASH_DASH] = ACTIONS(582), + [anon_sym_PLUS_PLUS] = ACTIONS(582), + [anon_sym_sizeof] = ACTIONS(584), + [sym_number_literal] = ACTIONS(586), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(590), + [sym_false] = ACTIONS(590), + [sym_null] = ACTIONS(590), + [sym_identifier] = ACTIONS(1599), [sym_comment] = ACTIONS(39), }, [932] = { @@ -36231,36 +36250,36 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(251), [sym_concatenated_string] = STATE(251), [sym_string_literal] = STATE(253), - [anon_sym_SEMI] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(241), - [anon_sym_LPAREN2] = ACTIONS(554), - [anon_sym_STAR] = ACTIONS(556), - [anon_sym_if] = ACTIONS(558), - [anon_sym_switch] = ACTIONS(560), - [anon_sym_case] = ACTIONS(562), - [anon_sym_default] = ACTIONS(564), - [anon_sym_while] = ACTIONS(566), - [anon_sym_do] = ACTIONS(568), - [anon_sym_for] = ACTIONS(570), - [anon_sym_return] = ACTIONS(572), - [anon_sym_break] = ACTIONS(574), - [anon_sym_continue] = ACTIONS(576), - [anon_sym_goto] = ACTIONS(578), - [anon_sym_AMP] = ACTIONS(556), - [anon_sym_BANG] = ACTIONS(580), - [anon_sym_TILDE] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_DASH_DASH] = ACTIONS(586), - [anon_sym_PLUS_PLUS] = ACTIONS(586), - [anon_sym_sizeof] = ACTIONS(588), - [sym_number_literal] = ACTIONS(590), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(594), - [sym_false] = ACTIONS(594), - [sym_null] = ACTIONS(594), - [sym_identifier] = ACTIONS(1612), + [anon_sym_SEMI] = ACTIONS(546), + [anon_sym_LBRACE] = ACTIONS(239), + [anon_sym_LPAREN2] = ACTIONS(550), + [anon_sym_STAR] = ACTIONS(552), + [anon_sym_if] = ACTIONS(554), + [anon_sym_switch] = ACTIONS(556), + [anon_sym_case] = ACTIONS(558), + [anon_sym_default] = ACTIONS(560), + [anon_sym_while] = ACTIONS(562), + [anon_sym_do] = ACTIONS(564), + [anon_sym_for] = ACTIONS(566), + [anon_sym_return] = ACTIONS(568), + [anon_sym_break] = ACTIONS(570), + [anon_sym_continue] = ACTIONS(572), + [anon_sym_goto] = ACTIONS(574), + [anon_sym_AMP] = ACTIONS(552), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_TILDE] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(580), + [anon_sym_DASH] = ACTIONS(580), + [anon_sym_DASH_DASH] = ACTIONS(582), + [anon_sym_PLUS_PLUS] = ACTIONS(582), + [anon_sym_sizeof] = ACTIONS(584), + [sym_number_literal] = ACTIONS(586), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(590), + [sym_false] = ACTIONS(590), + [sym_null] = ACTIONS(590), + [sym_identifier] = ACTIONS(1601), [sym_comment] = ACTIONS(39), }, [933] = { @@ -36285,590 +36304,590 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(921), [sym_concatenated_string] = STATE(921), [sym_string_literal] = STATE(421), - [anon_sym_LBRACE] = ACTIONS(632), - [anon_sym_LPAREN2] = ACTIONS(996), - [anon_sym_STAR] = ACTIONS(998), - [anon_sym_AMP] = ACTIONS(998), - [anon_sym_BANG] = ACTIONS(1000), - [anon_sym_TILDE] = ACTIONS(1002), - [anon_sym_PLUS] = ACTIONS(1004), - [anon_sym_DASH] = ACTIONS(1004), - [anon_sym_DASH_DASH] = ACTIONS(1006), - [anon_sym_PLUS_PLUS] = ACTIONS(1006), - [anon_sym_sizeof] = ACTIONS(1008), - [sym_number_literal] = ACTIONS(2392), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2394), - [sym_false] = ACTIONS(2394), - [sym_null] = ACTIONS(2394), - [sym_identifier] = ACTIONS(2394), + [anon_sym_LBRACE] = ACTIONS(628), + [anon_sym_LPAREN2] = ACTIONS(987), + [anon_sym_STAR] = ACTIONS(989), + [anon_sym_AMP] = ACTIONS(989), + [anon_sym_BANG] = ACTIONS(991), + [anon_sym_TILDE] = ACTIONS(993), + [anon_sym_PLUS] = ACTIONS(995), + [anon_sym_DASH] = ACTIONS(995), + [anon_sym_DASH_DASH] = ACTIONS(997), + [anon_sym_PLUS_PLUS] = ACTIONS(997), + [anon_sym_sizeof] = ACTIONS(999), + [sym_number_literal] = ACTIONS(2381), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(2383), + [sym_false] = ACTIONS(2383), + [sym_null] = ACTIONS(2383), + [sym_identifier] = ACTIONS(2383), [sym_comment] = ACTIONS(39), }, [934] = { - [anon_sym_RPAREN] = ACTIONS(2906), + [anon_sym_RPAREN] = ACTIONS(2895), [sym_comment] = ACTIONS(39), }, [935] = { [sym_argument_list] = STATE(465), - [anon_sym_LPAREN2] = ACTIONS(1096), - [anon_sym_STAR] = ACTIONS(1620), - [anon_sym_LBRACK] = ACTIONS(1100), - [anon_sym_EQ] = ACTIONS(1622), - [anon_sym_COLON] = ACTIONS(2540), - [anon_sym_QMARK] = ACTIONS(2540), - [anon_sym_STAR_EQ] = ACTIONS(1628), - [anon_sym_SLASH_EQ] = ACTIONS(1628), - [anon_sym_PERCENT_EQ] = ACTIONS(1628), - [anon_sym_PLUS_EQ] = ACTIONS(1628), - [anon_sym_DASH_EQ] = ACTIONS(1628), - [anon_sym_LT_LT_EQ] = ACTIONS(1628), - [anon_sym_GT_GT_EQ] = ACTIONS(1628), - [anon_sym_AMP_EQ] = ACTIONS(1628), - [anon_sym_CARET_EQ] = ACTIONS(1628), - [anon_sym_PIPE_EQ] = ACTIONS(1628), - [anon_sym_AMP] = ACTIONS(1630), - [anon_sym_PIPE_PIPE] = ACTIONS(1632), - [anon_sym_AMP_AMP] = ACTIONS(1634), - [anon_sym_PIPE] = ACTIONS(1636), - [anon_sym_CARET] = ACTIONS(1638), - [anon_sym_EQ_EQ] = ACTIONS(1640), - [anon_sym_BANG_EQ] = ACTIONS(1640), - [anon_sym_LT] = ACTIONS(1642), - [anon_sym_GT] = ACTIONS(1642), - [anon_sym_LT_EQ] = ACTIONS(1644), - [anon_sym_GT_EQ] = ACTIONS(1644), - [anon_sym_LT_LT] = ACTIONS(1646), - [anon_sym_GT_GT] = ACTIONS(1646), - [anon_sym_PLUS] = ACTIONS(1648), - [anon_sym_DASH] = ACTIONS(1648), - [anon_sym_SLASH] = ACTIONS(1620), - [anon_sym_PERCENT] = ACTIONS(1620), - [anon_sym_DASH_DASH] = ACTIONS(1128), - [anon_sym_PLUS_PLUS] = ACTIONS(1128), - [anon_sym_DOT] = ACTIONS(1130), - [anon_sym_DASH_GT] = ACTIONS(1130), + [anon_sym_LPAREN2] = ACTIONS(1089), + [anon_sym_STAR] = ACTIONS(1609), + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(1611), + [anon_sym_COLON] = ACTIONS(2529), + [anon_sym_QMARK] = ACTIONS(2529), + [anon_sym_STAR_EQ] = ACTIONS(1617), + [anon_sym_SLASH_EQ] = ACTIONS(1617), + [anon_sym_PERCENT_EQ] = ACTIONS(1617), + [anon_sym_PLUS_EQ] = ACTIONS(1617), + [anon_sym_DASH_EQ] = ACTIONS(1617), + [anon_sym_LT_LT_EQ] = ACTIONS(1617), + [anon_sym_GT_GT_EQ] = ACTIONS(1617), + [anon_sym_AMP_EQ] = ACTIONS(1617), + [anon_sym_CARET_EQ] = ACTIONS(1617), + [anon_sym_PIPE_EQ] = ACTIONS(1617), + [anon_sym_AMP] = ACTIONS(1619), + [anon_sym_PIPE_PIPE] = ACTIONS(1621), + [anon_sym_AMP_AMP] = ACTIONS(1623), + [anon_sym_PIPE] = ACTIONS(1625), + [anon_sym_CARET] = ACTIONS(1627), + [anon_sym_EQ_EQ] = ACTIONS(1629), + [anon_sym_BANG_EQ] = ACTIONS(1629), + [anon_sym_LT] = ACTIONS(1631), + [anon_sym_GT] = ACTIONS(1631), + [anon_sym_LT_EQ] = ACTIONS(1633), + [anon_sym_GT_EQ] = ACTIONS(1633), + [anon_sym_LT_LT] = ACTIONS(1635), + [anon_sym_GT_GT] = ACTIONS(1635), + [anon_sym_PLUS] = ACTIONS(1637), + [anon_sym_DASH] = ACTIONS(1637), + [anon_sym_SLASH] = ACTIONS(1609), + [anon_sym_PERCENT] = ACTIONS(1609), + [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_PLUS_PLUS] = ACTIONS(1121), + [anon_sym_DOT] = ACTIONS(1123), + [anon_sym_DASH_GT] = ACTIONS(1123), [sym_comment] = ACTIONS(39), }, [936] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2908), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2908), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2908), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2908), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2908), - [sym_preproc_directive] = ACTIONS(2908), - [anon_sym_SEMI] = ACTIONS(2910), - [anon_sym_typedef] = ACTIONS(2908), - [anon_sym_extern] = ACTIONS(2908), - [anon_sym_LBRACE] = ACTIONS(2910), - [anon_sym_RBRACE] = ACTIONS(2910), - [anon_sym_LPAREN2] = ACTIONS(2910), - [anon_sym_STAR] = ACTIONS(2910), - [anon_sym_static] = ACTIONS(2908), - [anon_sym_auto] = ACTIONS(2908), - [anon_sym_register] = ACTIONS(2908), - [anon_sym_inline] = ACTIONS(2908), - [anon_sym_const] = ACTIONS(2908), - [anon_sym_restrict] = ACTIONS(2908), - [anon_sym_volatile] = ACTIONS(2908), - [anon_sym__Atomic] = ACTIONS(2908), - [anon_sym_unsigned] = ACTIONS(2908), - [anon_sym_long] = ACTIONS(2908), - [anon_sym_short] = ACTIONS(2908), - [sym_primitive_type] = ACTIONS(2908), - [anon_sym_enum] = ACTIONS(2908), - [anon_sym_struct] = ACTIONS(2908), - [anon_sym_union] = ACTIONS(2908), - [anon_sym_if] = ACTIONS(2908), - [anon_sym_else] = ACTIONS(2908), - [anon_sym_switch] = ACTIONS(2908), - [anon_sym_case] = ACTIONS(2908), - [anon_sym_default] = ACTIONS(2908), - [anon_sym_while] = ACTIONS(2908), - [anon_sym_do] = ACTIONS(2908), - [anon_sym_for] = ACTIONS(2908), - [anon_sym_return] = ACTIONS(2908), - [anon_sym_break] = ACTIONS(2908), - [anon_sym_continue] = ACTIONS(2908), - [anon_sym_goto] = ACTIONS(2908), - [anon_sym_AMP] = ACTIONS(2910), - [anon_sym_BANG] = ACTIONS(2910), - [anon_sym_TILDE] = ACTIONS(2910), - [anon_sym_PLUS] = ACTIONS(2908), - [anon_sym_DASH] = ACTIONS(2908), - [anon_sym_DASH_DASH] = ACTIONS(2910), - [anon_sym_PLUS_PLUS] = ACTIONS(2910), - [anon_sym_sizeof] = ACTIONS(2908), - [sym_number_literal] = ACTIONS(2910), - [anon_sym_SQUOTE] = ACTIONS(2910), - [anon_sym_DQUOTE] = ACTIONS(2910), - [sym_true] = ACTIONS(2908), - [sym_false] = ACTIONS(2908), - [sym_null] = ACTIONS(2908), - [sym_identifier] = ACTIONS(2908), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2897), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2897), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2897), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2897), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2897), + [sym_preproc_directive] = ACTIONS(2897), + [anon_sym_SEMI] = ACTIONS(2899), + [anon_sym_typedef] = ACTIONS(2897), + [anon_sym_extern] = ACTIONS(2897), + [anon_sym_LBRACE] = ACTIONS(2899), + [anon_sym_RBRACE] = ACTIONS(2899), + [anon_sym_LPAREN2] = ACTIONS(2899), + [anon_sym_STAR] = ACTIONS(2899), + [anon_sym_static] = ACTIONS(2897), + [anon_sym_auto] = ACTIONS(2897), + [anon_sym_register] = ACTIONS(2897), + [anon_sym_inline] = ACTIONS(2897), + [anon_sym_const] = ACTIONS(2897), + [anon_sym_restrict] = ACTIONS(2897), + [anon_sym_volatile] = ACTIONS(2897), + [anon_sym__Atomic] = ACTIONS(2897), + [anon_sym_unsigned] = ACTIONS(2897), + [anon_sym_long] = ACTIONS(2897), + [anon_sym_short] = ACTIONS(2897), + [sym_primitive_type] = ACTIONS(2897), + [anon_sym_enum] = ACTIONS(2897), + [anon_sym_struct] = ACTIONS(2897), + [anon_sym_union] = ACTIONS(2897), + [anon_sym_if] = ACTIONS(2897), + [anon_sym_else] = ACTIONS(2897), + [anon_sym_switch] = ACTIONS(2897), + [anon_sym_case] = ACTIONS(2897), + [anon_sym_default] = ACTIONS(2897), + [anon_sym_while] = ACTIONS(2897), + [anon_sym_do] = ACTIONS(2897), + [anon_sym_for] = ACTIONS(2897), + [anon_sym_return] = ACTIONS(2897), + [anon_sym_break] = ACTIONS(2897), + [anon_sym_continue] = ACTIONS(2897), + [anon_sym_goto] = ACTIONS(2897), + [anon_sym_AMP] = ACTIONS(2899), + [anon_sym_BANG] = ACTIONS(2899), + [anon_sym_TILDE] = ACTIONS(2899), + [anon_sym_PLUS] = ACTIONS(2897), + [anon_sym_DASH] = ACTIONS(2897), + [anon_sym_DASH_DASH] = ACTIONS(2899), + [anon_sym_PLUS_PLUS] = ACTIONS(2899), + [anon_sym_sizeof] = ACTIONS(2897), + [sym_number_literal] = ACTIONS(2899), + [anon_sym_SQUOTE] = ACTIONS(2899), + [anon_sym_DQUOTE] = ACTIONS(2899), + [sym_true] = ACTIONS(2897), + [sym_false] = ACTIONS(2897), + [sym_null] = ACTIONS(2897), + [sym_identifier] = ACTIONS(2897), [sym_comment] = ACTIONS(39), }, [937] = { [sym_argument_list] = STATE(465), - [anon_sym_LPAREN2] = ACTIONS(1096), - [anon_sym_STAR] = ACTIONS(1620), - [anon_sym_LBRACK] = ACTIONS(1100), - [anon_sym_EQ] = ACTIONS(1622), - [anon_sym_COLON] = ACTIONS(2912), - [anon_sym_QMARK] = ACTIONS(1626), - [anon_sym_STAR_EQ] = ACTIONS(1628), - [anon_sym_SLASH_EQ] = ACTIONS(1628), - [anon_sym_PERCENT_EQ] = ACTIONS(1628), - [anon_sym_PLUS_EQ] = ACTIONS(1628), - [anon_sym_DASH_EQ] = ACTIONS(1628), - [anon_sym_LT_LT_EQ] = ACTIONS(1628), - [anon_sym_GT_GT_EQ] = ACTIONS(1628), - [anon_sym_AMP_EQ] = ACTIONS(1628), - [anon_sym_CARET_EQ] = ACTIONS(1628), - [anon_sym_PIPE_EQ] = ACTIONS(1628), - [anon_sym_AMP] = ACTIONS(1630), - [anon_sym_PIPE_PIPE] = ACTIONS(1632), - [anon_sym_AMP_AMP] = ACTIONS(1634), - [anon_sym_PIPE] = ACTIONS(1636), - [anon_sym_CARET] = ACTIONS(1638), - [anon_sym_EQ_EQ] = ACTIONS(1640), - [anon_sym_BANG_EQ] = ACTIONS(1640), - [anon_sym_LT] = ACTIONS(1642), - [anon_sym_GT] = ACTIONS(1642), - [anon_sym_LT_EQ] = ACTIONS(1644), - [anon_sym_GT_EQ] = ACTIONS(1644), - [anon_sym_LT_LT] = ACTIONS(1646), - [anon_sym_GT_GT] = ACTIONS(1646), - [anon_sym_PLUS] = ACTIONS(1648), - [anon_sym_DASH] = ACTIONS(1648), - [anon_sym_SLASH] = ACTIONS(1620), - [anon_sym_PERCENT] = ACTIONS(1620), - [anon_sym_DASH_DASH] = ACTIONS(1128), - [anon_sym_PLUS_PLUS] = ACTIONS(1128), - [anon_sym_DOT] = ACTIONS(1130), - [anon_sym_DASH_GT] = ACTIONS(1130), + [anon_sym_LPAREN2] = ACTIONS(1089), + [anon_sym_STAR] = ACTIONS(1609), + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(1611), + [anon_sym_COLON] = ACTIONS(2901), + [anon_sym_QMARK] = ACTIONS(1615), + [anon_sym_STAR_EQ] = ACTIONS(1617), + [anon_sym_SLASH_EQ] = ACTIONS(1617), + [anon_sym_PERCENT_EQ] = ACTIONS(1617), + [anon_sym_PLUS_EQ] = ACTIONS(1617), + [anon_sym_DASH_EQ] = ACTIONS(1617), + [anon_sym_LT_LT_EQ] = ACTIONS(1617), + [anon_sym_GT_GT_EQ] = ACTIONS(1617), + [anon_sym_AMP_EQ] = ACTIONS(1617), + [anon_sym_CARET_EQ] = ACTIONS(1617), + [anon_sym_PIPE_EQ] = ACTIONS(1617), + [anon_sym_AMP] = ACTIONS(1619), + [anon_sym_PIPE_PIPE] = ACTIONS(1621), + [anon_sym_AMP_AMP] = ACTIONS(1623), + [anon_sym_PIPE] = ACTIONS(1625), + [anon_sym_CARET] = ACTIONS(1627), + [anon_sym_EQ_EQ] = ACTIONS(1629), + [anon_sym_BANG_EQ] = ACTIONS(1629), + [anon_sym_LT] = ACTIONS(1631), + [anon_sym_GT] = ACTIONS(1631), + [anon_sym_LT_EQ] = ACTIONS(1633), + [anon_sym_GT_EQ] = ACTIONS(1633), + [anon_sym_LT_LT] = ACTIONS(1635), + [anon_sym_GT_GT] = ACTIONS(1635), + [anon_sym_PLUS] = ACTIONS(1637), + [anon_sym_DASH] = ACTIONS(1637), + [anon_sym_SLASH] = ACTIONS(1609), + [anon_sym_PERCENT] = ACTIONS(1609), + [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_PLUS_PLUS] = ACTIONS(1121), + [anon_sym_DOT] = ACTIONS(1123), + [anon_sym_DASH_GT] = ACTIONS(1123), [sym_comment] = ACTIONS(39), }, [938] = { [sym_argument_list] = STATE(465), - [anon_sym_LPAREN2] = ACTIONS(1096), - [anon_sym_STAR] = ACTIONS(1620), - [anon_sym_LBRACK] = ACTIONS(1100), - [anon_sym_EQ] = ACTIONS(2546), - [anon_sym_COLON] = ACTIONS(2544), - [anon_sym_QMARK] = ACTIONS(2544), - [anon_sym_STAR_EQ] = ACTIONS(2544), - [anon_sym_SLASH_EQ] = ACTIONS(2544), - [anon_sym_PERCENT_EQ] = ACTIONS(2544), - [anon_sym_PLUS_EQ] = ACTIONS(2544), - [anon_sym_DASH_EQ] = ACTIONS(2544), - [anon_sym_LT_LT_EQ] = ACTIONS(2544), - [anon_sym_GT_GT_EQ] = ACTIONS(2544), - [anon_sym_AMP_EQ] = ACTIONS(2544), - [anon_sym_CARET_EQ] = ACTIONS(2544), - [anon_sym_PIPE_EQ] = ACTIONS(2544), - [anon_sym_AMP] = ACTIONS(2546), - [anon_sym_PIPE_PIPE] = ACTIONS(2544), - [anon_sym_AMP_AMP] = ACTIONS(2544), - [anon_sym_PIPE] = ACTIONS(2546), - [anon_sym_CARET] = ACTIONS(2546), - [anon_sym_EQ_EQ] = ACTIONS(1640), - [anon_sym_BANG_EQ] = ACTIONS(1640), - [anon_sym_LT] = ACTIONS(1642), - [anon_sym_GT] = ACTIONS(1642), - [anon_sym_LT_EQ] = ACTIONS(1644), - [anon_sym_GT_EQ] = ACTIONS(1644), - [anon_sym_LT_LT] = ACTIONS(1646), - [anon_sym_GT_GT] = ACTIONS(1646), - [anon_sym_PLUS] = ACTIONS(1648), - [anon_sym_DASH] = ACTIONS(1648), - [anon_sym_SLASH] = ACTIONS(1620), - [anon_sym_PERCENT] = ACTIONS(1620), - [anon_sym_DASH_DASH] = ACTIONS(1128), - [anon_sym_PLUS_PLUS] = ACTIONS(1128), - [anon_sym_DOT] = ACTIONS(1130), - [anon_sym_DASH_GT] = ACTIONS(1130), + [anon_sym_LPAREN2] = ACTIONS(1089), + [anon_sym_STAR] = ACTIONS(1609), + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(2535), + [anon_sym_COLON] = ACTIONS(2533), + [anon_sym_QMARK] = ACTIONS(2533), + [anon_sym_STAR_EQ] = ACTIONS(2533), + [anon_sym_SLASH_EQ] = ACTIONS(2533), + [anon_sym_PERCENT_EQ] = ACTIONS(2533), + [anon_sym_PLUS_EQ] = ACTIONS(2533), + [anon_sym_DASH_EQ] = ACTIONS(2533), + [anon_sym_LT_LT_EQ] = ACTIONS(2533), + [anon_sym_GT_GT_EQ] = ACTIONS(2533), + [anon_sym_AMP_EQ] = ACTIONS(2533), + [anon_sym_CARET_EQ] = ACTIONS(2533), + [anon_sym_PIPE_EQ] = ACTIONS(2533), + [anon_sym_AMP] = ACTIONS(2535), + [anon_sym_PIPE_PIPE] = ACTIONS(2533), + [anon_sym_AMP_AMP] = ACTIONS(2533), + [anon_sym_PIPE] = ACTIONS(2535), + [anon_sym_CARET] = ACTIONS(2535), + [anon_sym_EQ_EQ] = ACTIONS(1629), + [anon_sym_BANG_EQ] = ACTIONS(1629), + [anon_sym_LT] = ACTIONS(1631), + [anon_sym_GT] = ACTIONS(1631), + [anon_sym_LT_EQ] = ACTIONS(1633), + [anon_sym_GT_EQ] = ACTIONS(1633), + [anon_sym_LT_LT] = ACTIONS(1635), + [anon_sym_GT_GT] = ACTIONS(1635), + [anon_sym_PLUS] = ACTIONS(1637), + [anon_sym_DASH] = ACTIONS(1637), + [anon_sym_SLASH] = ACTIONS(1609), + [anon_sym_PERCENT] = ACTIONS(1609), + [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_PLUS_PLUS] = ACTIONS(1121), + [anon_sym_DOT] = ACTIONS(1123), + [anon_sym_DASH_GT] = ACTIONS(1123), [sym_comment] = ACTIONS(39), }, [939] = { [sym_argument_list] = STATE(465), - [anon_sym_LPAREN2] = ACTIONS(1096), - [anon_sym_STAR] = ACTIONS(1620), - [anon_sym_LBRACK] = ACTIONS(1100), - [anon_sym_EQ] = ACTIONS(2550), - [anon_sym_COLON] = ACTIONS(2548), - [anon_sym_QMARK] = ACTIONS(2548), - [anon_sym_STAR_EQ] = ACTIONS(2548), - [anon_sym_SLASH_EQ] = ACTIONS(2548), - [anon_sym_PERCENT_EQ] = ACTIONS(2548), - [anon_sym_PLUS_EQ] = ACTIONS(2548), - [anon_sym_DASH_EQ] = ACTIONS(2548), - [anon_sym_LT_LT_EQ] = ACTIONS(2548), - [anon_sym_GT_GT_EQ] = ACTIONS(2548), - [anon_sym_AMP_EQ] = ACTIONS(2548), - [anon_sym_CARET_EQ] = ACTIONS(2548), - [anon_sym_PIPE_EQ] = ACTIONS(2548), - [anon_sym_AMP] = ACTIONS(1630), - [anon_sym_PIPE_PIPE] = ACTIONS(2548), - [anon_sym_AMP_AMP] = ACTIONS(1634), - [anon_sym_PIPE] = ACTIONS(1636), - [anon_sym_CARET] = ACTIONS(1638), - [anon_sym_EQ_EQ] = ACTIONS(1640), - [anon_sym_BANG_EQ] = ACTIONS(1640), - [anon_sym_LT] = ACTIONS(1642), - [anon_sym_GT] = ACTIONS(1642), - [anon_sym_LT_EQ] = ACTIONS(1644), - [anon_sym_GT_EQ] = ACTIONS(1644), - [anon_sym_LT_LT] = ACTIONS(1646), - [anon_sym_GT_GT] = ACTIONS(1646), - [anon_sym_PLUS] = ACTIONS(1648), - [anon_sym_DASH] = ACTIONS(1648), - [anon_sym_SLASH] = ACTIONS(1620), - [anon_sym_PERCENT] = ACTIONS(1620), - [anon_sym_DASH_DASH] = ACTIONS(1128), - [anon_sym_PLUS_PLUS] = ACTIONS(1128), - [anon_sym_DOT] = ACTIONS(1130), - [anon_sym_DASH_GT] = ACTIONS(1130), + [anon_sym_LPAREN2] = ACTIONS(1089), + [anon_sym_STAR] = ACTIONS(1609), + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(2539), + [anon_sym_COLON] = ACTIONS(2537), + [anon_sym_QMARK] = ACTIONS(2537), + [anon_sym_STAR_EQ] = ACTIONS(2537), + [anon_sym_SLASH_EQ] = ACTIONS(2537), + [anon_sym_PERCENT_EQ] = ACTIONS(2537), + [anon_sym_PLUS_EQ] = ACTIONS(2537), + [anon_sym_DASH_EQ] = ACTIONS(2537), + [anon_sym_LT_LT_EQ] = ACTIONS(2537), + [anon_sym_GT_GT_EQ] = ACTIONS(2537), + [anon_sym_AMP_EQ] = ACTIONS(2537), + [anon_sym_CARET_EQ] = ACTIONS(2537), + [anon_sym_PIPE_EQ] = ACTIONS(2537), + [anon_sym_AMP] = ACTIONS(1619), + [anon_sym_PIPE_PIPE] = ACTIONS(2537), + [anon_sym_AMP_AMP] = ACTIONS(1623), + [anon_sym_PIPE] = ACTIONS(1625), + [anon_sym_CARET] = ACTIONS(1627), + [anon_sym_EQ_EQ] = ACTIONS(1629), + [anon_sym_BANG_EQ] = ACTIONS(1629), + [anon_sym_LT] = ACTIONS(1631), + [anon_sym_GT] = ACTIONS(1631), + [anon_sym_LT_EQ] = ACTIONS(1633), + [anon_sym_GT_EQ] = ACTIONS(1633), + [anon_sym_LT_LT] = ACTIONS(1635), + [anon_sym_GT_GT] = ACTIONS(1635), + [anon_sym_PLUS] = ACTIONS(1637), + [anon_sym_DASH] = ACTIONS(1637), + [anon_sym_SLASH] = ACTIONS(1609), + [anon_sym_PERCENT] = ACTIONS(1609), + [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_PLUS_PLUS] = ACTIONS(1121), + [anon_sym_DOT] = ACTIONS(1123), + [anon_sym_DASH_GT] = ACTIONS(1123), [sym_comment] = ACTIONS(39), }, [940] = { [sym_argument_list] = STATE(465), - [anon_sym_LPAREN2] = ACTIONS(1096), - [anon_sym_STAR] = ACTIONS(1620), - [anon_sym_LBRACK] = ACTIONS(1100), - [anon_sym_EQ] = ACTIONS(2550), - [anon_sym_COLON] = ACTIONS(2548), - [anon_sym_QMARK] = ACTIONS(2548), - [anon_sym_STAR_EQ] = ACTIONS(2548), - [anon_sym_SLASH_EQ] = ACTIONS(2548), - [anon_sym_PERCENT_EQ] = ACTIONS(2548), - [anon_sym_PLUS_EQ] = ACTIONS(2548), - [anon_sym_DASH_EQ] = ACTIONS(2548), - [anon_sym_LT_LT_EQ] = ACTIONS(2548), - [anon_sym_GT_GT_EQ] = ACTIONS(2548), - [anon_sym_AMP_EQ] = ACTIONS(2548), - [anon_sym_CARET_EQ] = ACTIONS(2548), - [anon_sym_PIPE_EQ] = ACTIONS(2548), - [anon_sym_AMP] = ACTIONS(1630), - [anon_sym_PIPE_PIPE] = ACTIONS(2548), - [anon_sym_AMP_AMP] = ACTIONS(2548), - [anon_sym_PIPE] = ACTIONS(1636), - [anon_sym_CARET] = ACTIONS(1638), - [anon_sym_EQ_EQ] = ACTIONS(1640), - [anon_sym_BANG_EQ] = ACTIONS(1640), - [anon_sym_LT] = ACTIONS(1642), - [anon_sym_GT] = ACTIONS(1642), - [anon_sym_LT_EQ] = ACTIONS(1644), - [anon_sym_GT_EQ] = ACTIONS(1644), - [anon_sym_LT_LT] = ACTIONS(1646), - [anon_sym_GT_GT] = ACTIONS(1646), - [anon_sym_PLUS] = ACTIONS(1648), - [anon_sym_DASH] = ACTIONS(1648), - [anon_sym_SLASH] = ACTIONS(1620), - [anon_sym_PERCENT] = ACTIONS(1620), - [anon_sym_DASH_DASH] = ACTIONS(1128), - [anon_sym_PLUS_PLUS] = ACTIONS(1128), - [anon_sym_DOT] = ACTIONS(1130), - [anon_sym_DASH_GT] = ACTIONS(1130), + [anon_sym_LPAREN2] = ACTIONS(1089), + [anon_sym_STAR] = ACTIONS(1609), + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(2539), + [anon_sym_COLON] = ACTIONS(2537), + [anon_sym_QMARK] = ACTIONS(2537), + [anon_sym_STAR_EQ] = ACTIONS(2537), + [anon_sym_SLASH_EQ] = ACTIONS(2537), + [anon_sym_PERCENT_EQ] = ACTIONS(2537), + [anon_sym_PLUS_EQ] = ACTIONS(2537), + [anon_sym_DASH_EQ] = ACTIONS(2537), + [anon_sym_LT_LT_EQ] = ACTIONS(2537), + [anon_sym_GT_GT_EQ] = ACTIONS(2537), + [anon_sym_AMP_EQ] = ACTIONS(2537), + [anon_sym_CARET_EQ] = ACTIONS(2537), + [anon_sym_PIPE_EQ] = ACTIONS(2537), + [anon_sym_AMP] = ACTIONS(1619), + [anon_sym_PIPE_PIPE] = ACTIONS(2537), + [anon_sym_AMP_AMP] = ACTIONS(2537), + [anon_sym_PIPE] = ACTIONS(1625), + [anon_sym_CARET] = ACTIONS(1627), + [anon_sym_EQ_EQ] = ACTIONS(1629), + [anon_sym_BANG_EQ] = ACTIONS(1629), + [anon_sym_LT] = ACTIONS(1631), + [anon_sym_GT] = ACTIONS(1631), + [anon_sym_LT_EQ] = ACTIONS(1633), + [anon_sym_GT_EQ] = ACTIONS(1633), + [anon_sym_LT_LT] = ACTIONS(1635), + [anon_sym_GT_GT] = ACTIONS(1635), + [anon_sym_PLUS] = ACTIONS(1637), + [anon_sym_DASH] = ACTIONS(1637), + [anon_sym_SLASH] = ACTIONS(1609), + [anon_sym_PERCENT] = ACTIONS(1609), + [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_PLUS_PLUS] = ACTIONS(1121), + [anon_sym_DOT] = ACTIONS(1123), + [anon_sym_DASH_GT] = ACTIONS(1123), [sym_comment] = ACTIONS(39), }, [941] = { [sym_argument_list] = STATE(465), - [anon_sym_LPAREN2] = ACTIONS(1096), - [anon_sym_STAR] = ACTIONS(1620), - [anon_sym_LBRACK] = ACTIONS(1100), - [anon_sym_EQ] = ACTIONS(2546), - [anon_sym_COLON] = ACTIONS(2544), - [anon_sym_QMARK] = ACTIONS(2544), - [anon_sym_STAR_EQ] = ACTIONS(2544), - [anon_sym_SLASH_EQ] = ACTIONS(2544), - [anon_sym_PERCENT_EQ] = ACTIONS(2544), - [anon_sym_PLUS_EQ] = ACTIONS(2544), - [anon_sym_DASH_EQ] = ACTIONS(2544), - [anon_sym_LT_LT_EQ] = ACTIONS(2544), - [anon_sym_GT_GT_EQ] = ACTIONS(2544), - [anon_sym_AMP_EQ] = ACTIONS(2544), - [anon_sym_CARET_EQ] = ACTIONS(2544), - [anon_sym_PIPE_EQ] = ACTIONS(2544), - [anon_sym_AMP] = ACTIONS(1630), - [anon_sym_PIPE_PIPE] = ACTIONS(2544), - [anon_sym_AMP_AMP] = ACTIONS(2544), - [anon_sym_PIPE] = ACTIONS(2546), - [anon_sym_CARET] = ACTIONS(1638), - [anon_sym_EQ_EQ] = ACTIONS(1640), - [anon_sym_BANG_EQ] = ACTIONS(1640), - [anon_sym_LT] = ACTIONS(1642), - [anon_sym_GT] = ACTIONS(1642), - [anon_sym_LT_EQ] = ACTIONS(1644), - [anon_sym_GT_EQ] = ACTIONS(1644), - [anon_sym_LT_LT] = ACTIONS(1646), - [anon_sym_GT_GT] = ACTIONS(1646), - [anon_sym_PLUS] = ACTIONS(1648), - [anon_sym_DASH] = ACTIONS(1648), - [anon_sym_SLASH] = ACTIONS(1620), - [anon_sym_PERCENT] = ACTIONS(1620), - [anon_sym_DASH_DASH] = ACTIONS(1128), - [anon_sym_PLUS_PLUS] = ACTIONS(1128), - [anon_sym_DOT] = ACTIONS(1130), - [anon_sym_DASH_GT] = ACTIONS(1130), + [anon_sym_LPAREN2] = ACTIONS(1089), + [anon_sym_STAR] = ACTIONS(1609), + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(2535), + [anon_sym_COLON] = ACTIONS(2533), + [anon_sym_QMARK] = ACTIONS(2533), + [anon_sym_STAR_EQ] = ACTIONS(2533), + [anon_sym_SLASH_EQ] = ACTIONS(2533), + [anon_sym_PERCENT_EQ] = ACTIONS(2533), + [anon_sym_PLUS_EQ] = ACTIONS(2533), + [anon_sym_DASH_EQ] = ACTIONS(2533), + [anon_sym_LT_LT_EQ] = ACTIONS(2533), + [anon_sym_GT_GT_EQ] = ACTIONS(2533), + [anon_sym_AMP_EQ] = ACTIONS(2533), + [anon_sym_CARET_EQ] = ACTIONS(2533), + [anon_sym_PIPE_EQ] = ACTIONS(2533), + [anon_sym_AMP] = ACTIONS(1619), + [anon_sym_PIPE_PIPE] = ACTIONS(2533), + [anon_sym_AMP_AMP] = ACTIONS(2533), + [anon_sym_PIPE] = ACTIONS(2535), + [anon_sym_CARET] = ACTIONS(1627), + [anon_sym_EQ_EQ] = ACTIONS(1629), + [anon_sym_BANG_EQ] = ACTIONS(1629), + [anon_sym_LT] = ACTIONS(1631), + [anon_sym_GT] = ACTIONS(1631), + [anon_sym_LT_EQ] = ACTIONS(1633), + [anon_sym_GT_EQ] = ACTIONS(1633), + [anon_sym_LT_LT] = ACTIONS(1635), + [anon_sym_GT_GT] = ACTIONS(1635), + [anon_sym_PLUS] = ACTIONS(1637), + [anon_sym_DASH] = ACTIONS(1637), + [anon_sym_SLASH] = ACTIONS(1609), + [anon_sym_PERCENT] = ACTIONS(1609), + [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_PLUS_PLUS] = ACTIONS(1121), + [anon_sym_DOT] = ACTIONS(1123), + [anon_sym_DASH_GT] = ACTIONS(1123), [sym_comment] = ACTIONS(39), }, [942] = { [sym_argument_list] = STATE(465), - [anon_sym_LPAREN2] = ACTIONS(1096), - [anon_sym_STAR] = ACTIONS(1620), - [anon_sym_LBRACK] = ACTIONS(1100), - [anon_sym_EQ] = ACTIONS(2546), - [anon_sym_COLON] = ACTIONS(2544), - [anon_sym_QMARK] = ACTIONS(2544), - [anon_sym_STAR_EQ] = ACTIONS(2544), - [anon_sym_SLASH_EQ] = ACTIONS(2544), - [anon_sym_PERCENT_EQ] = ACTIONS(2544), - [anon_sym_PLUS_EQ] = ACTIONS(2544), - [anon_sym_DASH_EQ] = ACTIONS(2544), - [anon_sym_LT_LT_EQ] = ACTIONS(2544), - [anon_sym_GT_GT_EQ] = ACTIONS(2544), - [anon_sym_AMP_EQ] = ACTIONS(2544), - [anon_sym_CARET_EQ] = ACTIONS(2544), - [anon_sym_PIPE_EQ] = ACTIONS(2544), - [anon_sym_AMP] = ACTIONS(1630), - [anon_sym_PIPE_PIPE] = ACTIONS(2544), - [anon_sym_AMP_AMP] = ACTIONS(2544), - [anon_sym_PIPE] = ACTIONS(2546), - [anon_sym_CARET] = ACTIONS(2546), - [anon_sym_EQ_EQ] = ACTIONS(1640), - [anon_sym_BANG_EQ] = ACTIONS(1640), - [anon_sym_LT] = ACTIONS(1642), - [anon_sym_GT] = ACTIONS(1642), - [anon_sym_LT_EQ] = ACTIONS(1644), - [anon_sym_GT_EQ] = ACTIONS(1644), - [anon_sym_LT_LT] = ACTIONS(1646), - [anon_sym_GT_GT] = ACTIONS(1646), - [anon_sym_PLUS] = ACTIONS(1648), - [anon_sym_DASH] = ACTIONS(1648), - [anon_sym_SLASH] = ACTIONS(1620), - [anon_sym_PERCENT] = ACTIONS(1620), - [anon_sym_DASH_DASH] = ACTIONS(1128), - [anon_sym_PLUS_PLUS] = ACTIONS(1128), - [anon_sym_DOT] = ACTIONS(1130), - [anon_sym_DASH_GT] = ACTIONS(1130), + [anon_sym_LPAREN2] = ACTIONS(1089), + [anon_sym_STAR] = ACTIONS(1609), + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(2535), + [anon_sym_COLON] = ACTIONS(2533), + [anon_sym_QMARK] = ACTIONS(2533), + [anon_sym_STAR_EQ] = ACTIONS(2533), + [anon_sym_SLASH_EQ] = ACTIONS(2533), + [anon_sym_PERCENT_EQ] = ACTIONS(2533), + [anon_sym_PLUS_EQ] = ACTIONS(2533), + [anon_sym_DASH_EQ] = ACTIONS(2533), + [anon_sym_LT_LT_EQ] = ACTIONS(2533), + [anon_sym_GT_GT_EQ] = ACTIONS(2533), + [anon_sym_AMP_EQ] = ACTIONS(2533), + [anon_sym_CARET_EQ] = ACTIONS(2533), + [anon_sym_PIPE_EQ] = ACTIONS(2533), + [anon_sym_AMP] = ACTIONS(1619), + [anon_sym_PIPE_PIPE] = ACTIONS(2533), + [anon_sym_AMP_AMP] = ACTIONS(2533), + [anon_sym_PIPE] = ACTIONS(2535), + [anon_sym_CARET] = ACTIONS(2535), + [anon_sym_EQ_EQ] = ACTIONS(1629), + [anon_sym_BANG_EQ] = ACTIONS(1629), + [anon_sym_LT] = ACTIONS(1631), + [anon_sym_GT] = ACTIONS(1631), + [anon_sym_LT_EQ] = ACTIONS(1633), + [anon_sym_GT_EQ] = ACTIONS(1633), + [anon_sym_LT_LT] = ACTIONS(1635), + [anon_sym_GT_GT] = ACTIONS(1635), + [anon_sym_PLUS] = ACTIONS(1637), + [anon_sym_DASH] = ACTIONS(1637), + [anon_sym_SLASH] = ACTIONS(1609), + [anon_sym_PERCENT] = ACTIONS(1609), + [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_PLUS_PLUS] = ACTIONS(1121), + [anon_sym_DOT] = ACTIONS(1123), + [anon_sym_DASH_GT] = ACTIONS(1123), [sym_comment] = ACTIONS(39), }, [943] = { [sym_argument_list] = STATE(465), - [anon_sym_LPAREN2] = ACTIONS(1096), - [anon_sym_STAR] = ACTIONS(1620), - [anon_sym_LBRACK] = ACTIONS(1100), - [anon_sym_EQ] = ACTIONS(2554), - [anon_sym_COLON] = ACTIONS(2552), - [anon_sym_QMARK] = ACTIONS(2552), - [anon_sym_STAR_EQ] = ACTIONS(2552), - [anon_sym_SLASH_EQ] = ACTIONS(2552), - [anon_sym_PERCENT_EQ] = ACTIONS(2552), - [anon_sym_PLUS_EQ] = ACTIONS(2552), - [anon_sym_DASH_EQ] = ACTIONS(2552), - [anon_sym_LT_LT_EQ] = ACTIONS(2552), - [anon_sym_GT_GT_EQ] = ACTIONS(2552), - [anon_sym_AMP_EQ] = ACTIONS(2552), - [anon_sym_CARET_EQ] = ACTIONS(2552), - [anon_sym_PIPE_EQ] = ACTIONS(2552), - [anon_sym_AMP] = ACTIONS(2554), - [anon_sym_PIPE_PIPE] = ACTIONS(2552), - [anon_sym_AMP_AMP] = ACTIONS(2552), - [anon_sym_PIPE] = ACTIONS(2554), - [anon_sym_CARET] = ACTIONS(2554), - [anon_sym_EQ_EQ] = ACTIONS(2552), - [anon_sym_BANG_EQ] = ACTIONS(2552), - [anon_sym_LT] = ACTIONS(1642), - [anon_sym_GT] = ACTIONS(1642), - [anon_sym_LT_EQ] = ACTIONS(1644), - [anon_sym_GT_EQ] = ACTIONS(1644), - [anon_sym_LT_LT] = ACTIONS(1646), - [anon_sym_GT_GT] = ACTIONS(1646), - [anon_sym_PLUS] = ACTIONS(1648), - [anon_sym_DASH] = ACTIONS(1648), - [anon_sym_SLASH] = ACTIONS(1620), - [anon_sym_PERCENT] = ACTIONS(1620), - [anon_sym_DASH_DASH] = ACTIONS(1128), - [anon_sym_PLUS_PLUS] = ACTIONS(1128), - [anon_sym_DOT] = ACTIONS(1130), - [anon_sym_DASH_GT] = ACTIONS(1130), + [anon_sym_LPAREN2] = ACTIONS(1089), + [anon_sym_STAR] = ACTIONS(1609), + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(2543), + [anon_sym_COLON] = ACTIONS(2541), + [anon_sym_QMARK] = ACTIONS(2541), + [anon_sym_STAR_EQ] = ACTIONS(2541), + [anon_sym_SLASH_EQ] = ACTIONS(2541), + [anon_sym_PERCENT_EQ] = ACTIONS(2541), + [anon_sym_PLUS_EQ] = ACTIONS(2541), + [anon_sym_DASH_EQ] = ACTIONS(2541), + [anon_sym_LT_LT_EQ] = ACTIONS(2541), + [anon_sym_GT_GT_EQ] = ACTIONS(2541), + [anon_sym_AMP_EQ] = ACTIONS(2541), + [anon_sym_CARET_EQ] = ACTIONS(2541), + [anon_sym_PIPE_EQ] = ACTIONS(2541), + [anon_sym_AMP] = ACTIONS(2543), + [anon_sym_PIPE_PIPE] = ACTIONS(2541), + [anon_sym_AMP_AMP] = ACTIONS(2541), + [anon_sym_PIPE] = ACTIONS(2543), + [anon_sym_CARET] = ACTIONS(2543), + [anon_sym_EQ_EQ] = ACTIONS(2541), + [anon_sym_BANG_EQ] = ACTIONS(2541), + [anon_sym_LT] = ACTIONS(1631), + [anon_sym_GT] = ACTIONS(1631), + [anon_sym_LT_EQ] = ACTIONS(1633), + [anon_sym_GT_EQ] = ACTIONS(1633), + [anon_sym_LT_LT] = ACTIONS(1635), + [anon_sym_GT_GT] = ACTIONS(1635), + [anon_sym_PLUS] = ACTIONS(1637), + [anon_sym_DASH] = ACTIONS(1637), + [anon_sym_SLASH] = ACTIONS(1609), + [anon_sym_PERCENT] = ACTIONS(1609), + [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_PLUS_PLUS] = ACTIONS(1121), + [anon_sym_DOT] = ACTIONS(1123), + [anon_sym_DASH_GT] = ACTIONS(1123), [sym_comment] = ACTIONS(39), }, [944] = { [sym_argument_list] = STATE(465), - [anon_sym_LPAREN2] = ACTIONS(1096), - [anon_sym_STAR] = ACTIONS(1620), - [anon_sym_LBRACK] = ACTIONS(1100), - [anon_sym_EQ] = ACTIONS(2558), - [anon_sym_COLON] = ACTIONS(2556), - [anon_sym_QMARK] = ACTIONS(2556), - [anon_sym_STAR_EQ] = ACTIONS(2556), - [anon_sym_SLASH_EQ] = ACTIONS(2556), - [anon_sym_PERCENT_EQ] = ACTIONS(2556), - [anon_sym_PLUS_EQ] = ACTIONS(2556), - [anon_sym_DASH_EQ] = ACTIONS(2556), - [anon_sym_LT_LT_EQ] = ACTIONS(2556), - [anon_sym_GT_GT_EQ] = ACTIONS(2556), - [anon_sym_AMP_EQ] = ACTIONS(2556), - [anon_sym_CARET_EQ] = ACTIONS(2556), - [anon_sym_PIPE_EQ] = ACTIONS(2556), - [anon_sym_AMP] = ACTIONS(2558), - [anon_sym_PIPE_PIPE] = ACTIONS(2556), - [anon_sym_AMP_AMP] = ACTIONS(2556), - [anon_sym_PIPE] = ACTIONS(2558), - [anon_sym_CARET] = ACTIONS(2558), - [anon_sym_EQ_EQ] = ACTIONS(2556), - [anon_sym_BANG_EQ] = ACTIONS(2556), - [anon_sym_LT] = ACTIONS(2558), - [anon_sym_GT] = ACTIONS(2558), - [anon_sym_LT_EQ] = ACTIONS(2556), - [anon_sym_GT_EQ] = ACTIONS(2556), - [anon_sym_LT_LT] = ACTIONS(1646), - [anon_sym_GT_GT] = ACTIONS(1646), - [anon_sym_PLUS] = ACTIONS(1648), - [anon_sym_DASH] = ACTIONS(1648), - [anon_sym_SLASH] = ACTIONS(1620), - [anon_sym_PERCENT] = ACTIONS(1620), - [anon_sym_DASH_DASH] = ACTIONS(1128), - [anon_sym_PLUS_PLUS] = ACTIONS(1128), - [anon_sym_DOT] = ACTIONS(1130), - [anon_sym_DASH_GT] = ACTIONS(1130), + [anon_sym_LPAREN2] = ACTIONS(1089), + [anon_sym_STAR] = ACTIONS(1609), + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(2547), + [anon_sym_COLON] = ACTIONS(2545), + [anon_sym_QMARK] = ACTIONS(2545), + [anon_sym_STAR_EQ] = ACTIONS(2545), + [anon_sym_SLASH_EQ] = ACTIONS(2545), + [anon_sym_PERCENT_EQ] = ACTIONS(2545), + [anon_sym_PLUS_EQ] = ACTIONS(2545), + [anon_sym_DASH_EQ] = ACTIONS(2545), + [anon_sym_LT_LT_EQ] = ACTIONS(2545), + [anon_sym_GT_GT_EQ] = ACTIONS(2545), + [anon_sym_AMP_EQ] = ACTIONS(2545), + [anon_sym_CARET_EQ] = ACTIONS(2545), + [anon_sym_PIPE_EQ] = ACTIONS(2545), + [anon_sym_AMP] = ACTIONS(2547), + [anon_sym_PIPE_PIPE] = ACTIONS(2545), + [anon_sym_AMP_AMP] = ACTIONS(2545), + [anon_sym_PIPE] = ACTIONS(2547), + [anon_sym_CARET] = ACTIONS(2547), + [anon_sym_EQ_EQ] = ACTIONS(2545), + [anon_sym_BANG_EQ] = ACTIONS(2545), + [anon_sym_LT] = ACTIONS(2547), + [anon_sym_GT] = ACTIONS(2547), + [anon_sym_LT_EQ] = ACTIONS(2545), + [anon_sym_GT_EQ] = ACTIONS(2545), + [anon_sym_LT_LT] = ACTIONS(1635), + [anon_sym_GT_GT] = ACTIONS(1635), + [anon_sym_PLUS] = ACTIONS(1637), + [anon_sym_DASH] = ACTIONS(1637), + [anon_sym_SLASH] = ACTIONS(1609), + [anon_sym_PERCENT] = ACTIONS(1609), + [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_PLUS_PLUS] = ACTIONS(1121), + [anon_sym_DOT] = ACTIONS(1123), + [anon_sym_DASH_GT] = ACTIONS(1123), [sym_comment] = ACTIONS(39), }, [945] = { [sym_argument_list] = STATE(465), - [anon_sym_LPAREN2] = ACTIONS(1096), - [anon_sym_STAR] = ACTIONS(1620), - [anon_sym_LBRACK] = ACTIONS(1100), - [anon_sym_EQ] = ACTIONS(2562), - [anon_sym_COLON] = ACTIONS(2560), - [anon_sym_QMARK] = ACTIONS(2560), - [anon_sym_STAR_EQ] = ACTIONS(2560), - [anon_sym_SLASH_EQ] = ACTIONS(2560), - [anon_sym_PERCENT_EQ] = ACTIONS(2560), - [anon_sym_PLUS_EQ] = ACTIONS(2560), - [anon_sym_DASH_EQ] = ACTIONS(2560), - [anon_sym_LT_LT_EQ] = ACTIONS(2560), - [anon_sym_GT_GT_EQ] = ACTIONS(2560), - [anon_sym_AMP_EQ] = ACTIONS(2560), - [anon_sym_CARET_EQ] = ACTIONS(2560), - [anon_sym_PIPE_EQ] = ACTIONS(2560), - [anon_sym_AMP] = ACTIONS(2562), - [anon_sym_PIPE_PIPE] = ACTIONS(2560), - [anon_sym_AMP_AMP] = ACTIONS(2560), - [anon_sym_PIPE] = ACTIONS(2562), - [anon_sym_CARET] = ACTIONS(2562), - [anon_sym_EQ_EQ] = ACTIONS(2560), - [anon_sym_BANG_EQ] = ACTIONS(2560), - [anon_sym_LT] = ACTIONS(2562), - [anon_sym_GT] = ACTIONS(2562), - [anon_sym_LT_EQ] = ACTIONS(2560), - [anon_sym_GT_EQ] = ACTIONS(2560), - [anon_sym_LT_LT] = ACTIONS(2562), - [anon_sym_GT_GT] = ACTIONS(2562), - [anon_sym_PLUS] = ACTIONS(1648), - [anon_sym_DASH] = ACTIONS(1648), - [anon_sym_SLASH] = ACTIONS(1620), - [anon_sym_PERCENT] = ACTIONS(1620), - [anon_sym_DASH_DASH] = ACTIONS(1128), - [anon_sym_PLUS_PLUS] = ACTIONS(1128), - [anon_sym_DOT] = ACTIONS(1130), - [anon_sym_DASH_GT] = ACTIONS(1130), + [anon_sym_LPAREN2] = ACTIONS(1089), + [anon_sym_STAR] = ACTIONS(1609), + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(2551), + [anon_sym_COLON] = ACTIONS(2549), + [anon_sym_QMARK] = ACTIONS(2549), + [anon_sym_STAR_EQ] = ACTIONS(2549), + [anon_sym_SLASH_EQ] = ACTIONS(2549), + [anon_sym_PERCENT_EQ] = ACTIONS(2549), + [anon_sym_PLUS_EQ] = ACTIONS(2549), + [anon_sym_DASH_EQ] = ACTIONS(2549), + [anon_sym_LT_LT_EQ] = ACTIONS(2549), + [anon_sym_GT_GT_EQ] = ACTIONS(2549), + [anon_sym_AMP_EQ] = ACTIONS(2549), + [anon_sym_CARET_EQ] = ACTIONS(2549), + [anon_sym_PIPE_EQ] = ACTIONS(2549), + [anon_sym_AMP] = ACTIONS(2551), + [anon_sym_PIPE_PIPE] = ACTIONS(2549), + [anon_sym_AMP_AMP] = ACTIONS(2549), + [anon_sym_PIPE] = ACTIONS(2551), + [anon_sym_CARET] = ACTIONS(2551), + [anon_sym_EQ_EQ] = ACTIONS(2549), + [anon_sym_BANG_EQ] = ACTIONS(2549), + [anon_sym_LT] = ACTIONS(2551), + [anon_sym_GT] = ACTIONS(2551), + [anon_sym_LT_EQ] = ACTIONS(2549), + [anon_sym_GT_EQ] = ACTIONS(2549), + [anon_sym_LT_LT] = ACTIONS(2551), + [anon_sym_GT_GT] = ACTIONS(2551), + [anon_sym_PLUS] = ACTIONS(1637), + [anon_sym_DASH] = ACTIONS(1637), + [anon_sym_SLASH] = ACTIONS(1609), + [anon_sym_PERCENT] = ACTIONS(1609), + [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_PLUS_PLUS] = ACTIONS(1121), + [anon_sym_DOT] = ACTIONS(1123), + [anon_sym_DASH_GT] = ACTIONS(1123), [sym_comment] = ACTIONS(39), }, [946] = { [sym_argument_list] = STATE(465), - [anon_sym_LPAREN2] = ACTIONS(1096), - [anon_sym_STAR] = ACTIONS(1620), - [anon_sym_LBRACK] = ACTIONS(1100), - [anon_sym_EQ] = ACTIONS(2536), - [anon_sym_COLON] = ACTIONS(2534), - [anon_sym_QMARK] = ACTIONS(2534), - [anon_sym_STAR_EQ] = ACTIONS(2534), - [anon_sym_SLASH_EQ] = ACTIONS(2534), - [anon_sym_PERCENT_EQ] = ACTIONS(2534), - [anon_sym_PLUS_EQ] = ACTIONS(2534), - [anon_sym_DASH_EQ] = ACTIONS(2534), - [anon_sym_LT_LT_EQ] = ACTIONS(2534), - [anon_sym_GT_GT_EQ] = ACTIONS(2534), - [anon_sym_AMP_EQ] = ACTIONS(2534), - [anon_sym_CARET_EQ] = ACTIONS(2534), - [anon_sym_PIPE_EQ] = ACTIONS(2534), - [anon_sym_AMP] = ACTIONS(2536), - [anon_sym_PIPE_PIPE] = ACTIONS(2534), - [anon_sym_AMP_AMP] = ACTIONS(2534), - [anon_sym_PIPE] = ACTIONS(2536), - [anon_sym_CARET] = ACTIONS(2536), - [anon_sym_EQ_EQ] = ACTIONS(2534), - [anon_sym_BANG_EQ] = ACTIONS(2534), - [anon_sym_LT] = ACTIONS(2536), - [anon_sym_GT] = ACTIONS(2536), - [anon_sym_LT_EQ] = ACTIONS(2534), - [anon_sym_GT_EQ] = ACTIONS(2534), - [anon_sym_LT_LT] = ACTIONS(2536), - [anon_sym_GT_GT] = ACTIONS(2536), - [anon_sym_PLUS] = ACTIONS(2536), - [anon_sym_DASH] = ACTIONS(2536), - [anon_sym_SLASH] = ACTIONS(1620), - [anon_sym_PERCENT] = ACTIONS(1620), - [anon_sym_DASH_DASH] = ACTIONS(1128), - [anon_sym_PLUS_PLUS] = ACTIONS(1128), - [anon_sym_DOT] = ACTIONS(1130), - [anon_sym_DASH_GT] = ACTIONS(1130), + [anon_sym_LPAREN2] = ACTIONS(1089), + [anon_sym_STAR] = ACTIONS(1609), + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(2525), + [anon_sym_COLON] = ACTIONS(2523), + [anon_sym_QMARK] = ACTIONS(2523), + [anon_sym_STAR_EQ] = ACTIONS(2523), + [anon_sym_SLASH_EQ] = ACTIONS(2523), + [anon_sym_PERCENT_EQ] = ACTIONS(2523), + [anon_sym_PLUS_EQ] = ACTIONS(2523), + [anon_sym_DASH_EQ] = ACTIONS(2523), + [anon_sym_LT_LT_EQ] = ACTIONS(2523), + [anon_sym_GT_GT_EQ] = ACTIONS(2523), + [anon_sym_AMP_EQ] = ACTIONS(2523), + [anon_sym_CARET_EQ] = ACTIONS(2523), + [anon_sym_PIPE_EQ] = ACTIONS(2523), + [anon_sym_AMP] = ACTIONS(2525), + [anon_sym_PIPE_PIPE] = ACTIONS(2523), + [anon_sym_AMP_AMP] = ACTIONS(2523), + [anon_sym_PIPE] = ACTIONS(2525), + [anon_sym_CARET] = ACTIONS(2525), + [anon_sym_EQ_EQ] = ACTIONS(2523), + [anon_sym_BANG_EQ] = ACTIONS(2523), + [anon_sym_LT] = ACTIONS(2525), + [anon_sym_GT] = ACTIONS(2525), + [anon_sym_LT_EQ] = ACTIONS(2523), + [anon_sym_GT_EQ] = ACTIONS(2523), + [anon_sym_LT_LT] = ACTIONS(2525), + [anon_sym_GT_GT] = ACTIONS(2525), + [anon_sym_PLUS] = ACTIONS(2525), + [anon_sym_DASH] = ACTIONS(2525), + [anon_sym_SLASH] = ACTIONS(1609), + [anon_sym_PERCENT] = ACTIONS(1609), + [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_PLUS_PLUS] = ACTIONS(1121), + [anon_sym_DOT] = ACTIONS(1123), + [anon_sym_DASH_GT] = ACTIONS(1123), [sym_comment] = ACTIONS(39), }, [947] = { [sym_string_literal] = STATE(947), [aux_sym_concatenated_string_repeat1] = STATE(947), - [anon_sym_LPAREN2] = ACTIONS(2568), - [anon_sym_STAR] = ACTIONS(2570), - [anon_sym_LBRACK] = ACTIONS(2568), - [anon_sym_EQ] = ACTIONS(2570), - [anon_sym_COLON] = ACTIONS(2568), - [anon_sym_QMARK] = ACTIONS(2568), - [anon_sym_STAR_EQ] = ACTIONS(2568), - [anon_sym_SLASH_EQ] = ACTIONS(2568), - [anon_sym_PERCENT_EQ] = ACTIONS(2568), - [anon_sym_PLUS_EQ] = ACTIONS(2568), - [anon_sym_DASH_EQ] = ACTIONS(2568), - [anon_sym_LT_LT_EQ] = ACTIONS(2568), - [anon_sym_GT_GT_EQ] = ACTIONS(2568), - [anon_sym_AMP_EQ] = ACTIONS(2568), - [anon_sym_CARET_EQ] = ACTIONS(2568), - [anon_sym_PIPE_EQ] = ACTIONS(2568), - [anon_sym_AMP] = ACTIONS(2570), - [anon_sym_PIPE_PIPE] = ACTIONS(2568), - [anon_sym_AMP_AMP] = ACTIONS(2568), - [anon_sym_PIPE] = ACTIONS(2570), - [anon_sym_CARET] = ACTIONS(2570), - [anon_sym_EQ_EQ] = ACTIONS(2568), - [anon_sym_BANG_EQ] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_GT] = ACTIONS(2570), - [anon_sym_LT_EQ] = ACTIONS(2568), - [anon_sym_GT_EQ] = ACTIONS(2568), - [anon_sym_LT_LT] = ACTIONS(2570), - [anon_sym_GT_GT] = ACTIONS(2570), - [anon_sym_PLUS] = ACTIONS(2570), - [anon_sym_DASH] = ACTIONS(2570), - [anon_sym_SLASH] = ACTIONS(2570), - [anon_sym_PERCENT] = ACTIONS(2570), - [anon_sym_DASH_DASH] = ACTIONS(2568), - [anon_sym_PLUS_PLUS] = ACTIONS(2568), - [anon_sym_DOT] = ACTIONS(2568), - [anon_sym_DASH_GT] = ACTIONS(2568), - [anon_sym_DQUOTE] = ACTIONS(2572), + [anon_sym_LPAREN2] = ACTIONS(2557), + [anon_sym_STAR] = ACTIONS(2559), + [anon_sym_LBRACK] = ACTIONS(2557), + [anon_sym_EQ] = ACTIONS(2559), + [anon_sym_COLON] = ACTIONS(2557), + [anon_sym_QMARK] = ACTIONS(2557), + [anon_sym_STAR_EQ] = ACTIONS(2557), + [anon_sym_SLASH_EQ] = ACTIONS(2557), + [anon_sym_PERCENT_EQ] = ACTIONS(2557), + [anon_sym_PLUS_EQ] = ACTIONS(2557), + [anon_sym_DASH_EQ] = ACTIONS(2557), + [anon_sym_LT_LT_EQ] = ACTIONS(2557), + [anon_sym_GT_GT_EQ] = ACTIONS(2557), + [anon_sym_AMP_EQ] = ACTIONS(2557), + [anon_sym_CARET_EQ] = ACTIONS(2557), + [anon_sym_PIPE_EQ] = ACTIONS(2557), + [anon_sym_AMP] = ACTIONS(2559), + [anon_sym_PIPE_PIPE] = ACTIONS(2557), + [anon_sym_AMP_AMP] = ACTIONS(2557), + [anon_sym_PIPE] = ACTIONS(2559), + [anon_sym_CARET] = ACTIONS(2559), + [anon_sym_EQ_EQ] = ACTIONS(2557), + [anon_sym_BANG_EQ] = ACTIONS(2557), + [anon_sym_LT] = ACTIONS(2559), + [anon_sym_GT] = ACTIONS(2559), + [anon_sym_LT_EQ] = ACTIONS(2557), + [anon_sym_GT_EQ] = ACTIONS(2557), + [anon_sym_LT_LT] = ACTIONS(2559), + [anon_sym_GT_GT] = ACTIONS(2559), + [anon_sym_PLUS] = ACTIONS(2559), + [anon_sym_DASH] = ACTIONS(2559), + [anon_sym_SLASH] = ACTIONS(2559), + [anon_sym_PERCENT] = ACTIONS(2559), + [anon_sym_DASH_DASH] = ACTIONS(2557), + [anon_sym_PLUS_PLUS] = ACTIONS(2557), + [anon_sym_DOT] = ACTIONS(2557), + [anon_sym_DASH_GT] = ACTIONS(2557), + [anon_sym_DQUOTE] = ACTIONS(2561), [sym_comment] = ACTIONS(39), }, [948] = { [sym_parenthesized_expression] = STATE(1070), - [anon_sym_LPAREN2] = ACTIONS(994), + [anon_sym_LPAREN2] = ACTIONS(985), [sym_comment] = ACTIONS(39), }, [949] = { [sym_parenthesized_expression] = STATE(1071), - [anon_sym_LPAREN2] = ACTIONS(994), + [anon_sym_LPAREN2] = ACTIONS(985), [sym_comment] = ACTIONS(39), }, [950] = { @@ -36892,83 +36911,83 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(1072), [sym_concatenated_string] = STATE(1072), [sym_string_literal] = STATE(421), - [anon_sym_LPAREN2] = ACTIONS(996), - [anon_sym_STAR] = ACTIONS(998), - [anon_sym_AMP] = ACTIONS(998), - [anon_sym_BANG] = ACTIONS(1000), - [anon_sym_TILDE] = ACTIONS(1002), - [anon_sym_PLUS] = ACTIONS(1004), - [anon_sym_DASH] = ACTIONS(1004), - [anon_sym_DASH_DASH] = ACTIONS(1006), - [anon_sym_PLUS_PLUS] = ACTIONS(1006), - [anon_sym_sizeof] = ACTIONS(1008), - [sym_number_literal] = ACTIONS(2914), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2916), - [sym_false] = ACTIONS(2916), - [sym_null] = ACTIONS(2916), - [sym_identifier] = ACTIONS(2916), + [anon_sym_LPAREN2] = ACTIONS(987), + [anon_sym_STAR] = ACTIONS(989), + [anon_sym_AMP] = ACTIONS(989), + [anon_sym_BANG] = ACTIONS(991), + [anon_sym_TILDE] = ACTIONS(993), + [anon_sym_PLUS] = ACTIONS(995), + [anon_sym_DASH] = ACTIONS(995), + [anon_sym_DASH_DASH] = ACTIONS(997), + [anon_sym_PLUS_PLUS] = ACTIONS(997), + [anon_sym_sizeof] = ACTIONS(999), + [sym_number_literal] = ACTIONS(2903), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(2905), + [sym_false] = ACTIONS(2905), + [sym_null] = ACTIONS(2905), + [sym_identifier] = ACTIONS(2905), [sym_comment] = ACTIONS(39), }, [951] = { - [anon_sym_COLON] = ACTIONS(2918), + [anon_sym_COLON] = ACTIONS(2907), [sym_comment] = ACTIONS(39), }, [952] = { [sym_parenthesized_expression] = STATE(1074), - [anon_sym_LPAREN2] = ACTIONS(994), + [anon_sym_LPAREN2] = ACTIONS(985), [sym_comment] = ACTIONS(39), }, [953] = { - [anon_sym_LPAREN2] = ACTIONS(2920), + [anon_sym_LPAREN2] = ACTIONS(2909), [sym_comment] = ACTIONS(39), }, [954] = { - [anon_sym_COMMA] = ACTIONS(1066), - [anon_sym_SEMI] = ACTIONS(1066), - [anon_sym_LPAREN2] = ACTIONS(1066), - [anon_sym_STAR] = ACTIONS(1078), - [anon_sym_LBRACK] = ACTIONS(1066), - [anon_sym_EQ] = ACTIONS(1078), - [anon_sym_COLON] = ACTIONS(2922), - [anon_sym_QMARK] = ACTIONS(1066), - [anon_sym_STAR_EQ] = ACTIONS(1066), - [anon_sym_SLASH_EQ] = ACTIONS(1066), - [anon_sym_PERCENT_EQ] = ACTIONS(1066), - [anon_sym_PLUS_EQ] = ACTIONS(1066), - [anon_sym_DASH_EQ] = ACTIONS(1066), - [anon_sym_LT_LT_EQ] = ACTIONS(1066), - [anon_sym_GT_GT_EQ] = ACTIONS(1066), - [anon_sym_AMP_EQ] = ACTIONS(1066), - [anon_sym_CARET_EQ] = ACTIONS(1066), - [anon_sym_PIPE_EQ] = ACTIONS(1066), - [anon_sym_AMP] = ACTIONS(1078), - [anon_sym_PIPE_PIPE] = ACTIONS(1066), - [anon_sym_AMP_AMP] = ACTIONS(1066), - [anon_sym_PIPE] = ACTIONS(1078), - [anon_sym_CARET] = ACTIONS(1078), - [anon_sym_EQ_EQ] = ACTIONS(1066), - [anon_sym_BANG_EQ] = ACTIONS(1066), - [anon_sym_LT] = ACTIONS(1078), - [anon_sym_GT] = ACTIONS(1078), - [anon_sym_LT_EQ] = ACTIONS(1066), - [anon_sym_GT_EQ] = ACTIONS(1066), - [anon_sym_LT_LT] = ACTIONS(1078), - [anon_sym_GT_GT] = ACTIONS(1078), - [anon_sym_PLUS] = ACTIONS(1078), - [anon_sym_DASH] = ACTIONS(1078), - [anon_sym_SLASH] = ACTIONS(1078), - [anon_sym_PERCENT] = ACTIONS(1078), - [anon_sym_DASH_DASH] = ACTIONS(1066), - [anon_sym_PLUS_PLUS] = ACTIONS(1066), - [anon_sym_DOT] = ACTIONS(1066), - [anon_sym_DASH_GT] = ACTIONS(1066), + [anon_sym_COMMA] = ACTIONS(1059), + [anon_sym_SEMI] = ACTIONS(1059), + [anon_sym_LPAREN2] = ACTIONS(1059), + [anon_sym_STAR] = ACTIONS(1071), + [anon_sym_LBRACK] = ACTIONS(1059), + [anon_sym_EQ] = ACTIONS(1071), + [anon_sym_COLON] = ACTIONS(2911), + [anon_sym_QMARK] = ACTIONS(1059), + [anon_sym_STAR_EQ] = ACTIONS(1059), + [anon_sym_SLASH_EQ] = ACTIONS(1059), + [anon_sym_PERCENT_EQ] = ACTIONS(1059), + [anon_sym_PLUS_EQ] = ACTIONS(1059), + [anon_sym_DASH_EQ] = ACTIONS(1059), + [anon_sym_LT_LT_EQ] = ACTIONS(1059), + [anon_sym_GT_GT_EQ] = ACTIONS(1059), + [anon_sym_AMP_EQ] = ACTIONS(1059), + [anon_sym_CARET_EQ] = ACTIONS(1059), + [anon_sym_PIPE_EQ] = ACTIONS(1059), + [anon_sym_AMP] = ACTIONS(1071), + [anon_sym_PIPE_PIPE] = ACTIONS(1059), + [anon_sym_AMP_AMP] = ACTIONS(1059), + [anon_sym_PIPE] = ACTIONS(1071), + [anon_sym_CARET] = ACTIONS(1071), + [anon_sym_EQ_EQ] = ACTIONS(1059), + [anon_sym_BANG_EQ] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(1071), + [anon_sym_GT] = ACTIONS(1071), + [anon_sym_LT_EQ] = ACTIONS(1059), + [anon_sym_GT_EQ] = ACTIONS(1059), + [anon_sym_LT_LT] = ACTIONS(1071), + [anon_sym_GT_GT] = ACTIONS(1071), + [anon_sym_PLUS] = ACTIONS(1071), + [anon_sym_DASH] = ACTIONS(1071), + [anon_sym_SLASH] = ACTIONS(1071), + [anon_sym_PERCENT] = ACTIONS(1071), + [anon_sym_DASH_DASH] = ACTIONS(1059), + [anon_sym_PLUS_PLUS] = ACTIONS(1059), + [anon_sym_DOT] = ACTIONS(1059), + [anon_sym_DASH_GT] = ACTIONS(1059), [sym_comment] = ACTIONS(39), }, [955] = { - [anon_sym_else] = ACTIONS(2924), - [anon_sym_while] = ACTIONS(2410), + [anon_sym_else] = ACTIONS(2913), + [anon_sym_while] = ACTIONS(2399), [sym_comment] = ACTIONS(39), }, [956] = { @@ -37019,12 +37038,12 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_macro_type_specifier] = STATE(95), [aux_sym__declaration_specifiers_repeat1] = STATE(96), [aux_sym_sized_type_specifier_repeat1] = STATE(97), - [anon_sym_SEMI] = ACTIONS(550), + [anon_sym_SEMI] = ACTIONS(546), [anon_sym_typedef] = ACTIONS(19), [anon_sym_extern] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(241), - [anon_sym_LPAREN2] = ACTIONS(554), - [anon_sym_STAR] = ACTIONS(556), + [anon_sym_LBRACE] = ACTIONS(239), + [anon_sym_LPAREN2] = ACTIONS(550), + [anon_sym_STAR] = ACTIONS(552), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -37033,49 +37052,49 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_restrict] = ACTIONS(25), [anon_sym_volatile] = ACTIONS(25), [anon_sym__Atomic] = ACTIONS(25), - [anon_sym_unsigned] = ACTIONS(177), - [anon_sym_long] = ACTIONS(177), - [anon_sym_short] = ACTIONS(177), - [sym_primitive_type] = ACTIONS(179), + [anon_sym_unsigned] = ACTIONS(175), + [anon_sym_long] = ACTIONS(175), + [anon_sym_short] = ACTIONS(175), + [sym_primitive_type] = ACTIONS(177), [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), - [anon_sym_if] = ACTIONS(1016), - [anon_sym_switch] = ACTIONS(1018), - [anon_sym_case] = ACTIONS(1020), - [anon_sym_default] = ACTIONS(1022), - [anon_sym_while] = ACTIONS(1024), - [anon_sym_do] = ACTIONS(1026), - [anon_sym_for] = ACTIONS(1028), - [anon_sym_return] = ACTIONS(572), - [anon_sym_break] = ACTIONS(574), - [anon_sym_continue] = ACTIONS(576), - [anon_sym_goto] = ACTIONS(578), - [anon_sym_AMP] = ACTIONS(556), - [anon_sym_BANG] = ACTIONS(580), - [anon_sym_TILDE] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_DASH_DASH] = ACTIONS(586), - [anon_sym_PLUS_PLUS] = ACTIONS(586), - [anon_sym_sizeof] = ACTIONS(588), - [sym_number_literal] = ACTIONS(590), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(594), - [sym_false] = ACTIONS(594), - [sym_null] = ACTIONS(594), - [sym_identifier] = ACTIONS(2488), + [anon_sym_if] = ACTIONS(1007), + [anon_sym_switch] = ACTIONS(1009), + [anon_sym_case] = ACTIONS(1011), + [anon_sym_default] = ACTIONS(1013), + [anon_sym_while] = ACTIONS(1015), + [anon_sym_do] = ACTIONS(1017), + [anon_sym_for] = ACTIONS(1019), + [anon_sym_return] = ACTIONS(568), + [anon_sym_break] = ACTIONS(570), + [anon_sym_continue] = ACTIONS(572), + [anon_sym_goto] = ACTIONS(574), + [anon_sym_AMP] = ACTIONS(552), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_TILDE] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(580), + [anon_sym_DASH] = ACTIONS(580), + [anon_sym_DASH_DASH] = ACTIONS(582), + [anon_sym_PLUS_PLUS] = ACTIONS(582), + [anon_sym_sizeof] = ACTIONS(584), + [sym_number_literal] = ACTIONS(586), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(590), + [sym_false] = ACTIONS(590), + [sym_null] = ACTIONS(590), + [sym_identifier] = ACTIONS(2477), [sym_comment] = ACTIONS(39), }, [957] = { - [anon_sym_COMMA] = ACTIONS(1066), - [anon_sym_SEMI] = ACTIONS(1066), + [anon_sym_COMMA] = ACTIONS(1059), + [anon_sym_SEMI] = ACTIONS(1059), [anon_sym_extern] = ACTIONS(83), - [anon_sym_LPAREN2] = ACTIONS(1071), - [anon_sym_STAR] = ACTIONS(1075), - [anon_sym_LBRACK] = ACTIONS(1066), - [anon_sym_EQ] = ACTIONS(1078), + [anon_sym_LPAREN2] = ACTIONS(1064), + [anon_sym_STAR] = ACTIONS(1068), + [anon_sym_LBRACK] = ACTIONS(1059), + [anon_sym_EQ] = ACTIONS(1071), [anon_sym_static] = ACTIONS(83), [anon_sym_auto] = ACTIONS(83), [anon_sym_register] = ACTIONS(83), @@ -37084,45 +37103,45 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_restrict] = ACTIONS(83), [anon_sym_volatile] = ACTIONS(83), [anon_sym__Atomic] = ACTIONS(83), - [anon_sym_COLON] = ACTIONS(1660), - [anon_sym_QMARK] = ACTIONS(1066), - [anon_sym_STAR_EQ] = ACTIONS(1066), - [anon_sym_SLASH_EQ] = ACTIONS(1066), - [anon_sym_PERCENT_EQ] = ACTIONS(1066), - [anon_sym_PLUS_EQ] = ACTIONS(1066), - [anon_sym_DASH_EQ] = ACTIONS(1066), - [anon_sym_LT_LT_EQ] = ACTIONS(1066), - [anon_sym_GT_GT_EQ] = ACTIONS(1066), - [anon_sym_AMP_EQ] = ACTIONS(1066), - [anon_sym_CARET_EQ] = ACTIONS(1066), - [anon_sym_PIPE_EQ] = ACTIONS(1066), - [anon_sym_AMP] = ACTIONS(1078), - [anon_sym_PIPE_PIPE] = ACTIONS(1066), - [anon_sym_AMP_AMP] = ACTIONS(1066), - [anon_sym_PIPE] = ACTIONS(1078), - [anon_sym_CARET] = ACTIONS(1078), - [anon_sym_EQ_EQ] = ACTIONS(1066), - [anon_sym_BANG_EQ] = ACTIONS(1066), - [anon_sym_LT] = ACTIONS(1078), - [anon_sym_GT] = ACTIONS(1078), - [anon_sym_LT_EQ] = ACTIONS(1066), - [anon_sym_GT_EQ] = ACTIONS(1066), - [anon_sym_LT_LT] = ACTIONS(1078), - [anon_sym_GT_GT] = ACTIONS(1078), - [anon_sym_PLUS] = ACTIONS(1078), - [anon_sym_DASH] = ACTIONS(1078), - [anon_sym_SLASH] = ACTIONS(1078), - [anon_sym_PERCENT] = ACTIONS(1078), - [anon_sym_DASH_DASH] = ACTIONS(1066), - [anon_sym_PLUS_PLUS] = ACTIONS(1066), - [anon_sym_DOT] = ACTIONS(1066), - [anon_sym_DASH_GT] = ACTIONS(1066), + [anon_sym_COLON] = ACTIONS(1649), + [anon_sym_QMARK] = ACTIONS(1059), + [anon_sym_STAR_EQ] = ACTIONS(1059), + [anon_sym_SLASH_EQ] = ACTIONS(1059), + [anon_sym_PERCENT_EQ] = ACTIONS(1059), + [anon_sym_PLUS_EQ] = ACTIONS(1059), + [anon_sym_DASH_EQ] = ACTIONS(1059), + [anon_sym_LT_LT_EQ] = ACTIONS(1059), + [anon_sym_GT_GT_EQ] = ACTIONS(1059), + [anon_sym_AMP_EQ] = ACTIONS(1059), + [anon_sym_CARET_EQ] = ACTIONS(1059), + [anon_sym_PIPE_EQ] = ACTIONS(1059), + [anon_sym_AMP] = ACTIONS(1071), + [anon_sym_PIPE_PIPE] = ACTIONS(1059), + [anon_sym_AMP_AMP] = ACTIONS(1059), + [anon_sym_PIPE] = ACTIONS(1071), + [anon_sym_CARET] = ACTIONS(1071), + [anon_sym_EQ_EQ] = ACTIONS(1059), + [anon_sym_BANG_EQ] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(1071), + [anon_sym_GT] = ACTIONS(1071), + [anon_sym_LT_EQ] = ACTIONS(1059), + [anon_sym_GT_EQ] = ACTIONS(1059), + [anon_sym_LT_LT] = ACTIONS(1071), + [anon_sym_GT_GT] = ACTIONS(1071), + [anon_sym_PLUS] = ACTIONS(1071), + [anon_sym_DASH] = ACTIONS(1071), + [anon_sym_SLASH] = ACTIONS(1071), + [anon_sym_PERCENT] = ACTIONS(1071), + [anon_sym_DASH_DASH] = ACTIONS(1059), + [anon_sym_PLUS_PLUS] = ACTIONS(1059), + [anon_sym_DOT] = ACTIONS(1059), + [anon_sym_DASH_GT] = ACTIONS(1059), [sym_identifier] = ACTIONS(83), [sym_comment] = ACTIONS(39), }, [958] = { [sym_parenthesized_expression] = STATE(961), - [anon_sym_LPAREN2] = ACTIONS(2926), + [anon_sym_LPAREN2] = ACTIONS(2915), [sym_comment] = ACTIONS(39), }, [959] = { @@ -37146,123 +37165,123 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(1080), [sym_concatenated_string] = STATE(1080), [sym_string_literal] = STATE(376), - [anon_sym_SEMI] = ACTIONS(2928), - [anon_sym_LPAREN2] = ACTIONS(847), - [anon_sym_STAR] = ACTIONS(849), - [anon_sym_AMP] = ACTIONS(849), - [anon_sym_BANG] = ACTIONS(851), - [anon_sym_TILDE] = ACTIONS(853), - [anon_sym_PLUS] = ACTIONS(855), - [anon_sym_DASH] = ACTIONS(855), - [anon_sym_DASH_DASH] = ACTIONS(857), - [anon_sym_PLUS_PLUS] = ACTIONS(857), - [anon_sym_sizeof] = ACTIONS(859), - [sym_number_literal] = ACTIONS(2930), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2932), - [sym_false] = ACTIONS(2932), - [sym_null] = ACTIONS(2932), - [sym_identifier] = ACTIONS(2932), + [anon_sym_SEMI] = ACTIONS(2917), + [anon_sym_LPAREN2] = ACTIONS(838), + [anon_sym_STAR] = ACTIONS(840), + [anon_sym_AMP] = ACTIONS(840), + [anon_sym_BANG] = ACTIONS(842), + [anon_sym_TILDE] = ACTIONS(844), + [anon_sym_PLUS] = ACTIONS(846), + [anon_sym_DASH] = ACTIONS(846), + [anon_sym_DASH_DASH] = ACTIONS(848), + [anon_sym_PLUS_PLUS] = ACTIONS(848), + [anon_sym_sizeof] = ACTIONS(850), + [sym_number_literal] = ACTIONS(2919), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(2921), + [sym_false] = ACTIONS(2921), + [sym_null] = ACTIONS(2921), + [sym_identifier] = ACTIONS(2921), [sym_comment] = ACTIONS(39), }, [960] = { [sym_argument_list] = STATE(465), - [anon_sym_SEMI] = ACTIONS(2934), - [anon_sym_LPAREN2] = ACTIONS(1096), - [anon_sym_STAR] = ACTIONS(1436), - [anon_sym_LBRACK] = ACTIONS(1100), - [anon_sym_EQ] = ACTIONS(1438), - [anon_sym_QMARK] = ACTIONS(1440), - [anon_sym_STAR_EQ] = ACTIONS(1442), - [anon_sym_SLASH_EQ] = ACTIONS(1442), - [anon_sym_PERCENT_EQ] = ACTIONS(1442), - [anon_sym_PLUS_EQ] = ACTIONS(1442), - [anon_sym_DASH_EQ] = ACTIONS(1442), - [anon_sym_LT_LT_EQ] = ACTIONS(1442), - [anon_sym_GT_GT_EQ] = ACTIONS(1442), - [anon_sym_AMP_EQ] = ACTIONS(1442), - [anon_sym_CARET_EQ] = ACTIONS(1442), - [anon_sym_PIPE_EQ] = ACTIONS(1442), - [anon_sym_AMP] = ACTIONS(1444), - [anon_sym_PIPE_PIPE] = ACTIONS(1446), - [anon_sym_AMP_AMP] = ACTIONS(1448), - [anon_sym_PIPE] = ACTIONS(1450), - [anon_sym_CARET] = ACTIONS(1452), - [anon_sym_EQ_EQ] = ACTIONS(1454), - [anon_sym_BANG_EQ] = ACTIONS(1454), - [anon_sym_LT] = ACTIONS(1456), - [anon_sym_GT] = ACTIONS(1456), - [anon_sym_LT_EQ] = ACTIONS(1458), - [anon_sym_GT_EQ] = ACTIONS(1458), - [anon_sym_LT_LT] = ACTIONS(1460), - [anon_sym_GT_GT] = ACTIONS(1460), - [anon_sym_PLUS] = ACTIONS(1462), - [anon_sym_DASH] = ACTIONS(1462), - [anon_sym_SLASH] = ACTIONS(1436), - [anon_sym_PERCENT] = ACTIONS(1436), - [anon_sym_DASH_DASH] = ACTIONS(1128), - [anon_sym_PLUS_PLUS] = ACTIONS(1128), - [anon_sym_DOT] = ACTIONS(1130), - [anon_sym_DASH_GT] = ACTIONS(1130), + [anon_sym_SEMI] = ACTIONS(2923), + [anon_sym_LPAREN2] = ACTIONS(1089), + [anon_sym_STAR] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(1429), + [anon_sym_QMARK] = ACTIONS(1431), + [anon_sym_STAR_EQ] = ACTIONS(1433), + [anon_sym_SLASH_EQ] = ACTIONS(1433), + [anon_sym_PERCENT_EQ] = ACTIONS(1433), + [anon_sym_PLUS_EQ] = ACTIONS(1433), + [anon_sym_DASH_EQ] = ACTIONS(1433), + [anon_sym_LT_LT_EQ] = ACTIONS(1433), + [anon_sym_GT_GT_EQ] = ACTIONS(1433), + [anon_sym_AMP_EQ] = ACTIONS(1433), + [anon_sym_CARET_EQ] = ACTIONS(1433), + [anon_sym_PIPE_EQ] = ACTIONS(1433), + [anon_sym_AMP] = ACTIONS(1435), + [anon_sym_PIPE_PIPE] = ACTIONS(1437), + [anon_sym_AMP_AMP] = ACTIONS(1439), + [anon_sym_PIPE] = ACTIONS(1441), + [anon_sym_CARET] = ACTIONS(1443), + [anon_sym_EQ_EQ] = ACTIONS(1445), + [anon_sym_BANG_EQ] = ACTIONS(1445), + [anon_sym_LT] = ACTIONS(1447), + [anon_sym_GT] = ACTIONS(1447), + [anon_sym_LT_EQ] = ACTIONS(1449), + [anon_sym_GT_EQ] = ACTIONS(1449), + [anon_sym_LT_LT] = ACTIONS(1451), + [anon_sym_GT_GT] = ACTIONS(1451), + [anon_sym_PLUS] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1453), + [anon_sym_SLASH] = ACTIONS(1427), + [anon_sym_PERCENT] = ACTIONS(1427), + [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_PLUS_PLUS] = ACTIONS(1121), + [anon_sym_DOT] = ACTIONS(1123), + [anon_sym_DASH_GT] = ACTIONS(1123), [sym_comment] = ACTIONS(39), }, [961] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2936), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2936), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2936), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2936), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2936), - [sym_preproc_directive] = ACTIONS(2936), - [anon_sym_SEMI] = ACTIONS(2938), - [anon_sym_typedef] = ACTIONS(2936), - [anon_sym_extern] = ACTIONS(2936), - [anon_sym_LBRACE] = ACTIONS(2938), - [anon_sym_RBRACE] = ACTIONS(2938), - [anon_sym_LPAREN2] = ACTIONS(2938), - [anon_sym_STAR] = ACTIONS(2938), - [anon_sym_static] = ACTIONS(2936), - [anon_sym_auto] = ACTIONS(2936), - [anon_sym_register] = ACTIONS(2936), - [anon_sym_inline] = ACTIONS(2936), - [anon_sym_const] = ACTIONS(2936), - [anon_sym_restrict] = ACTIONS(2936), - [anon_sym_volatile] = ACTIONS(2936), - [anon_sym__Atomic] = ACTIONS(2936), - [anon_sym_unsigned] = ACTIONS(2936), - [anon_sym_long] = ACTIONS(2936), - [anon_sym_short] = ACTIONS(2936), - [sym_primitive_type] = ACTIONS(2936), - [anon_sym_enum] = ACTIONS(2936), - [anon_sym_struct] = ACTIONS(2936), - [anon_sym_union] = ACTIONS(2936), - [anon_sym_if] = ACTIONS(2936), - [anon_sym_else] = ACTIONS(2936), - [anon_sym_switch] = ACTIONS(2936), - [anon_sym_case] = ACTIONS(2936), - [anon_sym_default] = ACTIONS(2936), - [anon_sym_while] = ACTIONS(2936), - [anon_sym_do] = ACTIONS(2936), - [anon_sym_for] = ACTIONS(2936), - [anon_sym_return] = ACTIONS(2936), - [anon_sym_break] = ACTIONS(2936), - [anon_sym_continue] = ACTIONS(2936), - [anon_sym_goto] = ACTIONS(2936), - [anon_sym_AMP] = ACTIONS(2938), - [anon_sym_BANG] = ACTIONS(2938), - [anon_sym_TILDE] = ACTIONS(2938), - [anon_sym_PLUS] = ACTIONS(2936), - [anon_sym_DASH] = ACTIONS(2936), - [anon_sym_DASH_DASH] = ACTIONS(2938), - [anon_sym_PLUS_PLUS] = ACTIONS(2938), - [anon_sym_sizeof] = ACTIONS(2936), - [sym_number_literal] = ACTIONS(2938), - [anon_sym_SQUOTE] = ACTIONS(2938), - [anon_sym_DQUOTE] = ACTIONS(2938), - [sym_true] = ACTIONS(2936), - [sym_false] = ACTIONS(2936), - [sym_null] = ACTIONS(2936), - [sym_identifier] = ACTIONS(2936), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2925), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2925), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2925), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2925), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2925), + [sym_preproc_directive] = ACTIONS(2925), + [anon_sym_SEMI] = ACTIONS(2927), + [anon_sym_typedef] = ACTIONS(2925), + [anon_sym_extern] = ACTIONS(2925), + [anon_sym_LBRACE] = ACTIONS(2927), + [anon_sym_RBRACE] = ACTIONS(2927), + [anon_sym_LPAREN2] = ACTIONS(2927), + [anon_sym_STAR] = ACTIONS(2927), + [anon_sym_static] = ACTIONS(2925), + [anon_sym_auto] = ACTIONS(2925), + [anon_sym_register] = ACTIONS(2925), + [anon_sym_inline] = ACTIONS(2925), + [anon_sym_const] = ACTIONS(2925), + [anon_sym_restrict] = ACTIONS(2925), + [anon_sym_volatile] = ACTIONS(2925), + [anon_sym__Atomic] = ACTIONS(2925), + [anon_sym_unsigned] = ACTIONS(2925), + [anon_sym_long] = ACTIONS(2925), + [anon_sym_short] = ACTIONS(2925), + [sym_primitive_type] = ACTIONS(2925), + [anon_sym_enum] = ACTIONS(2925), + [anon_sym_struct] = ACTIONS(2925), + [anon_sym_union] = ACTIONS(2925), + [anon_sym_if] = ACTIONS(2925), + [anon_sym_else] = ACTIONS(2925), + [anon_sym_switch] = ACTIONS(2925), + [anon_sym_case] = ACTIONS(2925), + [anon_sym_default] = ACTIONS(2925), + [anon_sym_while] = ACTIONS(2925), + [anon_sym_do] = ACTIONS(2925), + [anon_sym_for] = ACTIONS(2925), + [anon_sym_return] = ACTIONS(2925), + [anon_sym_break] = ACTIONS(2925), + [anon_sym_continue] = ACTIONS(2925), + [anon_sym_goto] = ACTIONS(2925), + [anon_sym_AMP] = ACTIONS(2927), + [anon_sym_BANG] = ACTIONS(2927), + [anon_sym_TILDE] = ACTIONS(2927), + [anon_sym_PLUS] = ACTIONS(2925), + [anon_sym_DASH] = ACTIONS(2925), + [anon_sym_DASH_DASH] = ACTIONS(2927), + [anon_sym_PLUS_PLUS] = ACTIONS(2927), + [anon_sym_sizeof] = ACTIONS(2925), + [sym_number_literal] = ACTIONS(2927), + [anon_sym_SQUOTE] = ACTIONS(2927), + [anon_sym_DQUOTE] = ACTIONS(2927), + [sym_true] = ACTIONS(2925), + [sym_false] = ACTIONS(2925), + [sym_null] = ACTIONS(2925), + [sym_identifier] = ACTIONS(2925), [sym_comment] = ACTIONS(39), }, [962] = { @@ -37286,65 +37305,65 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(1083), [sym_concatenated_string] = STATE(1083), [sym_string_literal] = STATE(409), - [anon_sym_RPAREN] = ACTIONS(2940), - [anon_sym_LPAREN2] = ACTIONS(970), - [anon_sym_STAR] = ACTIONS(972), - [anon_sym_AMP] = ACTIONS(972), - [anon_sym_BANG] = ACTIONS(974), - [anon_sym_TILDE] = ACTIONS(976), - [anon_sym_PLUS] = ACTIONS(978), - [anon_sym_DASH] = ACTIONS(978), - [anon_sym_DASH_DASH] = ACTIONS(980), - [anon_sym_PLUS_PLUS] = ACTIONS(980), - [anon_sym_sizeof] = ACTIONS(982), - [sym_number_literal] = ACTIONS(2942), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2944), - [sym_false] = ACTIONS(2944), - [sym_null] = ACTIONS(2944), - [sym_identifier] = ACTIONS(2944), + [anon_sym_RPAREN] = ACTIONS(2929), + [anon_sym_LPAREN2] = ACTIONS(961), + [anon_sym_STAR] = ACTIONS(963), + [anon_sym_AMP] = ACTIONS(963), + [anon_sym_BANG] = ACTIONS(965), + [anon_sym_TILDE] = ACTIONS(967), + [anon_sym_PLUS] = ACTIONS(969), + [anon_sym_DASH] = ACTIONS(969), + [anon_sym_DASH_DASH] = ACTIONS(971), + [anon_sym_PLUS_PLUS] = ACTIONS(971), + [anon_sym_sizeof] = ACTIONS(973), + [sym_number_literal] = ACTIONS(2931), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(2933), + [sym_false] = ACTIONS(2933), + [sym_null] = ACTIONS(2933), + [sym_identifier] = ACTIONS(2933), [sym_comment] = ACTIONS(39), }, [963] = { [sym_argument_list] = STATE(465), - [anon_sym_SEMI] = ACTIONS(2946), - [anon_sym_LPAREN2] = ACTIONS(1096), - [anon_sym_STAR] = ACTIONS(1436), - [anon_sym_LBRACK] = ACTIONS(1100), - [anon_sym_EQ] = ACTIONS(1438), - [anon_sym_QMARK] = ACTIONS(1440), - [anon_sym_STAR_EQ] = ACTIONS(1442), - [anon_sym_SLASH_EQ] = ACTIONS(1442), - [anon_sym_PERCENT_EQ] = ACTIONS(1442), - [anon_sym_PLUS_EQ] = ACTIONS(1442), - [anon_sym_DASH_EQ] = ACTIONS(1442), - [anon_sym_LT_LT_EQ] = ACTIONS(1442), - [anon_sym_GT_GT_EQ] = ACTIONS(1442), - [anon_sym_AMP_EQ] = ACTIONS(1442), - [anon_sym_CARET_EQ] = ACTIONS(1442), - [anon_sym_PIPE_EQ] = ACTIONS(1442), - [anon_sym_AMP] = ACTIONS(1444), - [anon_sym_PIPE_PIPE] = ACTIONS(1446), - [anon_sym_AMP_AMP] = ACTIONS(1448), - [anon_sym_PIPE] = ACTIONS(1450), - [anon_sym_CARET] = ACTIONS(1452), - [anon_sym_EQ_EQ] = ACTIONS(1454), - [anon_sym_BANG_EQ] = ACTIONS(1454), - [anon_sym_LT] = ACTIONS(1456), - [anon_sym_GT] = ACTIONS(1456), - [anon_sym_LT_EQ] = ACTIONS(1458), - [anon_sym_GT_EQ] = ACTIONS(1458), - [anon_sym_LT_LT] = ACTIONS(1460), - [anon_sym_GT_GT] = ACTIONS(1460), - [anon_sym_PLUS] = ACTIONS(1462), - [anon_sym_DASH] = ACTIONS(1462), - [anon_sym_SLASH] = ACTIONS(1436), - [anon_sym_PERCENT] = ACTIONS(1436), - [anon_sym_DASH_DASH] = ACTIONS(1128), - [anon_sym_PLUS_PLUS] = ACTIONS(1128), - [anon_sym_DOT] = ACTIONS(1130), - [anon_sym_DASH_GT] = ACTIONS(1130), + [anon_sym_SEMI] = ACTIONS(2935), + [anon_sym_LPAREN2] = ACTIONS(1089), + [anon_sym_STAR] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(1429), + [anon_sym_QMARK] = ACTIONS(1431), + [anon_sym_STAR_EQ] = ACTIONS(1433), + [anon_sym_SLASH_EQ] = ACTIONS(1433), + [anon_sym_PERCENT_EQ] = ACTIONS(1433), + [anon_sym_PLUS_EQ] = ACTIONS(1433), + [anon_sym_DASH_EQ] = ACTIONS(1433), + [anon_sym_LT_LT_EQ] = ACTIONS(1433), + [anon_sym_GT_GT_EQ] = ACTIONS(1433), + [anon_sym_AMP_EQ] = ACTIONS(1433), + [anon_sym_CARET_EQ] = ACTIONS(1433), + [anon_sym_PIPE_EQ] = ACTIONS(1433), + [anon_sym_AMP] = ACTIONS(1435), + [anon_sym_PIPE_PIPE] = ACTIONS(1437), + [anon_sym_AMP_AMP] = ACTIONS(1439), + [anon_sym_PIPE] = ACTIONS(1441), + [anon_sym_CARET] = ACTIONS(1443), + [anon_sym_EQ_EQ] = ACTIONS(1445), + [anon_sym_BANG_EQ] = ACTIONS(1445), + [anon_sym_LT] = ACTIONS(1447), + [anon_sym_GT] = ACTIONS(1447), + [anon_sym_LT_EQ] = ACTIONS(1449), + [anon_sym_GT_EQ] = ACTIONS(1449), + [anon_sym_LT_LT] = ACTIONS(1451), + [anon_sym_GT_GT] = ACTIONS(1451), + [anon_sym_PLUS] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1453), + [anon_sym_SLASH] = ACTIONS(1427), + [anon_sym_PERCENT] = ACTIONS(1427), + [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_PLUS_PLUS] = ACTIONS(1121), + [anon_sym_DOT] = ACTIONS(1123), + [anon_sym_DASH_GT] = ACTIONS(1123), [sym_comment] = ACTIONS(39), }, [964] = { @@ -37368,24 +37387,24 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(1085), [sym_concatenated_string] = STATE(1085), [sym_string_literal] = STATE(376), - [anon_sym_SEMI] = ACTIONS(2946), - [anon_sym_LPAREN2] = ACTIONS(847), - [anon_sym_STAR] = ACTIONS(849), - [anon_sym_AMP] = ACTIONS(849), - [anon_sym_BANG] = ACTIONS(851), - [anon_sym_TILDE] = ACTIONS(853), - [anon_sym_PLUS] = ACTIONS(855), - [anon_sym_DASH] = ACTIONS(855), - [anon_sym_DASH_DASH] = ACTIONS(857), - [anon_sym_PLUS_PLUS] = ACTIONS(857), - [anon_sym_sizeof] = ACTIONS(859), - [sym_number_literal] = ACTIONS(2948), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2950), - [sym_false] = ACTIONS(2950), - [sym_null] = ACTIONS(2950), - [sym_identifier] = ACTIONS(2950), + [anon_sym_SEMI] = ACTIONS(2935), + [anon_sym_LPAREN2] = ACTIONS(838), + [anon_sym_STAR] = ACTIONS(840), + [anon_sym_AMP] = ACTIONS(840), + [anon_sym_BANG] = ACTIONS(842), + [anon_sym_TILDE] = ACTIONS(844), + [anon_sym_PLUS] = ACTIONS(846), + [anon_sym_DASH] = ACTIONS(846), + [anon_sym_DASH_DASH] = ACTIONS(848), + [anon_sym_PLUS_PLUS] = ACTIONS(848), + [anon_sym_sizeof] = ACTIONS(850), + [sym_number_literal] = ACTIONS(2937), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(2939), + [sym_false] = ACTIONS(2939), + [sym_null] = ACTIONS(2939), + [sym_identifier] = ACTIONS(2939), [sym_comment] = ACTIONS(39), }, [965] = { @@ -37410,55 +37429,55 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(921), [sym_concatenated_string] = STATE(921), [sym_string_literal] = STATE(253), - [anon_sym_COMMA] = ACTIONS(2952), - [anon_sym_SEMI] = ACTIONS(2952), - [anon_sym_LBRACE] = ACTIONS(632), - [anon_sym_LPAREN2] = ACTIONS(554), - [anon_sym_STAR] = ACTIONS(2954), - [anon_sym_LBRACK] = ACTIONS(2952), - [anon_sym_EQ] = ACTIONS(2956), - [anon_sym_QMARK] = ACTIONS(2952), - [anon_sym_STAR_EQ] = ACTIONS(2952), - [anon_sym_SLASH_EQ] = ACTIONS(2952), - [anon_sym_PERCENT_EQ] = ACTIONS(2952), - [anon_sym_PLUS_EQ] = ACTIONS(2952), - [anon_sym_DASH_EQ] = ACTIONS(2952), - [anon_sym_LT_LT_EQ] = ACTIONS(2952), - [anon_sym_GT_GT_EQ] = ACTIONS(2952), - [anon_sym_AMP_EQ] = ACTIONS(2952), - [anon_sym_CARET_EQ] = ACTIONS(2952), - [anon_sym_PIPE_EQ] = ACTIONS(2952), - [anon_sym_AMP] = ACTIONS(2954), - [anon_sym_PIPE_PIPE] = ACTIONS(2952), - [anon_sym_AMP_AMP] = ACTIONS(2952), - [anon_sym_BANG] = ACTIONS(2958), - [anon_sym_PIPE] = ACTIONS(2956), - [anon_sym_CARET] = ACTIONS(2956), - [anon_sym_TILDE] = ACTIONS(582), - [anon_sym_EQ_EQ] = ACTIONS(2952), - [anon_sym_BANG_EQ] = ACTIONS(2952), - [anon_sym_LT] = ACTIONS(2956), - [anon_sym_GT] = ACTIONS(2956), - [anon_sym_LT_EQ] = ACTIONS(2952), - [anon_sym_GT_EQ] = ACTIONS(2952), - [anon_sym_LT_LT] = ACTIONS(2956), - [anon_sym_GT_GT] = ACTIONS(2956), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_SLASH] = ACTIONS(2956), - [anon_sym_PERCENT] = ACTIONS(2956), - [anon_sym_DASH_DASH] = ACTIONS(586), - [anon_sym_PLUS_PLUS] = ACTIONS(586), - [anon_sym_sizeof] = ACTIONS(588), - [anon_sym_DOT] = ACTIONS(2952), - [anon_sym_DASH_GT] = ACTIONS(2952), - [sym_number_literal] = ACTIONS(2392), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2394), - [sym_false] = ACTIONS(2394), - [sym_null] = ACTIONS(2394), - [sym_identifier] = ACTIONS(2394), + [anon_sym_COMMA] = ACTIONS(2941), + [anon_sym_SEMI] = ACTIONS(2941), + [anon_sym_LBRACE] = ACTIONS(628), + [anon_sym_LPAREN2] = ACTIONS(550), + [anon_sym_STAR] = ACTIONS(2943), + [anon_sym_LBRACK] = ACTIONS(2941), + [anon_sym_EQ] = ACTIONS(2945), + [anon_sym_QMARK] = ACTIONS(2941), + [anon_sym_STAR_EQ] = ACTIONS(2941), + [anon_sym_SLASH_EQ] = ACTIONS(2941), + [anon_sym_PERCENT_EQ] = ACTIONS(2941), + [anon_sym_PLUS_EQ] = ACTIONS(2941), + [anon_sym_DASH_EQ] = ACTIONS(2941), + [anon_sym_LT_LT_EQ] = ACTIONS(2941), + [anon_sym_GT_GT_EQ] = ACTIONS(2941), + [anon_sym_AMP_EQ] = ACTIONS(2941), + [anon_sym_CARET_EQ] = ACTIONS(2941), + [anon_sym_PIPE_EQ] = ACTIONS(2941), + [anon_sym_AMP] = ACTIONS(2943), + [anon_sym_PIPE_PIPE] = ACTIONS(2941), + [anon_sym_AMP_AMP] = ACTIONS(2941), + [anon_sym_BANG] = ACTIONS(2947), + [anon_sym_PIPE] = ACTIONS(2945), + [anon_sym_CARET] = ACTIONS(2945), + [anon_sym_TILDE] = ACTIONS(578), + [anon_sym_EQ_EQ] = ACTIONS(2941), + [anon_sym_BANG_EQ] = ACTIONS(2941), + [anon_sym_LT] = ACTIONS(2945), + [anon_sym_GT] = ACTIONS(2945), + [anon_sym_LT_EQ] = ACTIONS(2941), + [anon_sym_GT_EQ] = ACTIONS(2941), + [anon_sym_LT_LT] = ACTIONS(2945), + [anon_sym_GT_GT] = ACTIONS(2945), + [anon_sym_PLUS] = ACTIONS(580), + [anon_sym_DASH] = ACTIONS(580), + [anon_sym_SLASH] = ACTIONS(2945), + [anon_sym_PERCENT] = ACTIONS(2945), + [anon_sym_DASH_DASH] = ACTIONS(582), + [anon_sym_PLUS_PLUS] = ACTIONS(582), + [anon_sym_sizeof] = ACTIONS(584), + [anon_sym_DOT] = ACTIONS(2941), + [anon_sym_DASH_GT] = ACTIONS(2941), + [sym_number_literal] = ACTIONS(2381), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(2383), + [sym_false] = ACTIONS(2383), + [sym_null] = ACTIONS(2383), + [sym_identifier] = ACTIONS(2383), [sym_comment] = ACTIONS(39), }, [966] = { @@ -37482,119 +37501,119 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(1086), [sym_concatenated_string] = STATE(1086), [sym_string_literal] = STATE(409), - [anon_sym_LPAREN2] = ACTIONS(970), - [anon_sym_STAR] = ACTIONS(972), - [anon_sym_AMP] = ACTIONS(972), - [anon_sym_BANG] = ACTIONS(974), - [anon_sym_TILDE] = ACTIONS(976), - [anon_sym_PLUS] = ACTIONS(978), - [anon_sym_DASH] = ACTIONS(978), - [anon_sym_DASH_DASH] = ACTIONS(980), - [anon_sym_PLUS_PLUS] = ACTIONS(980), - [anon_sym_sizeof] = ACTIONS(982), - [sym_number_literal] = ACTIONS(2960), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2962), - [sym_false] = ACTIONS(2962), - [sym_null] = ACTIONS(2962), - [sym_identifier] = ACTIONS(2962), + [anon_sym_LPAREN2] = ACTIONS(961), + [anon_sym_STAR] = ACTIONS(963), + [anon_sym_AMP] = ACTIONS(963), + [anon_sym_BANG] = ACTIONS(965), + [anon_sym_TILDE] = ACTIONS(967), + [anon_sym_PLUS] = ACTIONS(969), + [anon_sym_DASH] = ACTIONS(969), + [anon_sym_DASH_DASH] = ACTIONS(971), + [anon_sym_PLUS_PLUS] = ACTIONS(971), + [anon_sym_sizeof] = ACTIONS(973), + [sym_number_literal] = ACTIONS(2949), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(2951), + [sym_false] = ACTIONS(2951), + [sym_null] = ACTIONS(2951), + [sym_identifier] = ACTIONS(2951), [sym_comment] = ACTIONS(39), }, [967] = { - [anon_sym_COMMA] = ACTIONS(2964), - [anon_sym_RPAREN] = ACTIONS(2964), - [anon_sym_SEMI] = ACTIONS(2964), - [anon_sym_RBRACE] = ACTIONS(2964), - [anon_sym_LPAREN2] = ACTIONS(2964), - [anon_sym_STAR] = ACTIONS(2966), - [anon_sym_LBRACK] = ACTIONS(2964), - [anon_sym_RBRACK] = ACTIONS(2964), - [anon_sym_EQ] = ACTIONS(2966), - [anon_sym_COLON] = ACTIONS(2964), - [anon_sym_QMARK] = ACTIONS(2964), - [anon_sym_STAR_EQ] = ACTIONS(2964), - [anon_sym_SLASH_EQ] = ACTIONS(2964), - [anon_sym_PERCENT_EQ] = ACTIONS(2964), - [anon_sym_PLUS_EQ] = ACTIONS(2964), - [anon_sym_DASH_EQ] = ACTIONS(2964), - [anon_sym_LT_LT_EQ] = ACTIONS(2964), - [anon_sym_GT_GT_EQ] = ACTIONS(2964), - [anon_sym_AMP_EQ] = ACTIONS(2964), - [anon_sym_CARET_EQ] = ACTIONS(2964), - [anon_sym_PIPE_EQ] = ACTIONS(2964), - [anon_sym_AMP] = ACTIONS(2966), - [anon_sym_PIPE_PIPE] = ACTIONS(2964), - [anon_sym_AMP_AMP] = ACTIONS(2964), - [anon_sym_PIPE] = ACTIONS(2966), - [anon_sym_CARET] = ACTIONS(2966), - [anon_sym_EQ_EQ] = ACTIONS(2964), - [anon_sym_BANG_EQ] = ACTIONS(2964), - [anon_sym_LT] = ACTIONS(2966), - [anon_sym_GT] = ACTIONS(2966), - [anon_sym_LT_EQ] = ACTIONS(2964), - [anon_sym_GT_EQ] = ACTIONS(2964), - [anon_sym_LT_LT] = ACTIONS(2966), - [anon_sym_GT_GT] = ACTIONS(2966), - [anon_sym_PLUS] = ACTIONS(2966), - [anon_sym_DASH] = ACTIONS(2966), - [anon_sym_SLASH] = ACTIONS(2966), - [anon_sym_PERCENT] = ACTIONS(2966), - [anon_sym_DASH_DASH] = ACTIONS(2964), - [anon_sym_PLUS_PLUS] = ACTIONS(2964), - [anon_sym_DOT] = ACTIONS(2964), - [anon_sym_DASH_GT] = ACTIONS(2964), + [anon_sym_COMMA] = ACTIONS(2953), + [anon_sym_RPAREN] = ACTIONS(2953), + [anon_sym_SEMI] = ACTIONS(2953), + [anon_sym_RBRACE] = ACTIONS(2953), + [anon_sym_LPAREN2] = ACTIONS(2953), + [anon_sym_STAR] = ACTIONS(2955), + [anon_sym_LBRACK] = ACTIONS(2953), + [anon_sym_RBRACK] = ACTIONS(2953), + [anon_sym_EQ] = ACTIONS(2955), + [anon_sym_COLON] = ACTIONS(2953), + [anon_sym_QMARK] = ACTIONS(2953), + [anon_sym_STAR_EQ] = ACTIONS(2953), + [anon_sym_SLASH_EQ] = ACTIONS(2953), + [anon_sym_PERCENT_EQ] = ACTIONS(2953), + [anon_sym_PLUS_EQ] = ACTIONS(2953), + [anon_sym_DASH_EQ] = ACTIONS(2953), + [anon_sym_LT_LT_EQ] = ACTIONS(2953), + [anon_sym_GT_GT_EQ] = ACTIONS(2953), + [anon_sym_AMP_EQ] = ACTIONS(2953), + [anon_sym_CARET_EQ] = ACTIONS(2953), + [anon_sym_PIPE_EQ] = ACTIONS(2953), + [anon_sym_AMP] = ACTIONS(2955), + [anon_sym_PIPE_PIPE] = ACTIONS(2953), + [anon_sym_AMP_AMP] = ACTIONS(2953), + [anon_sym_PIPE] = ACTIONS(2955), + [anon_sym_CARET] = ACTIONS(2955), + [anon_sym_EQ_EQ] = ACTIONS(2953), + [anon_sym_BANG_EQ] = ACTIONS(2953), + [anon_sym_LT] = ACTIONS(2955), + [anon_sym_GT] = ACTIONS(2955), + [anon_sym_LT_EQ] = ACTIONS(2953), + [anon_sym_GT_EQ] = ACTIONS(2953), + [anon_sym_LT_LT] = ACTIONS(2955), + [anon_sym_GT_GT] = ACTIONS(2955), + [anon_sym_PLUS] = ACTIONS(2955), + [anon_sym_DASH] = ACTIONS(2955), + [anon_sym_SLASH] = ACTIONS(2955), + [anon_sym_PERCENT] = ACTIONS(2955), + [anon_sym_DASH_DASH] = ACTIONS(2953), + [anon_sym_PLUS_PLUS] = ACTIONS(2953), + [anon_sym_DOT] = ACTIONS(2953), + [anon_sym_DASH_GT] = ACTIONS(2953), [sym_comment] = ACTIONS(39), }, [968] = { [aux_sym_for_statement_repeat1] = STATE(1088), - [anon_sym_COMMA] = ACTIONS(2530), - [anon_sym_RPAREN] = ACTIONS(2968), + [anon_sym_COMMA] = ACTIONS(2519), + [anon_sym_RPAREN] = ACTIONS(2957), [sym_comment] = ACTIONS(39), }, [969] = { - [anon_sym_COMMA] = ACTIONS(2970), - [anon_sym_RPAREN] = ACTIONS(2970), - [anon_sym_SEMI] = ACTIONS(2970), - [anon_sym_RBRACE] = ACTIONS(2970), - [anon_sym_LPAREN2] = ACTIONS(2970), - [anon_sym_STAR] = ACTIONS(2972), - [anon_sym_LBRACK] = ACTIONS(2970), - [anon_sym_RBRACK] = ACTIONS(2970), - [anon_sym_EQ] = ACTIONS(2972), - [anon_sym_COLON] = ACTIONS(2970), - [anon_sym_QMARK] = ACTIONS(2970), - [anon_sym_STAR_EQ] = ACTIONS(2970), - [anon_sym_SLASH_EQ] = ACTIONS(2970), - [anon_sym_PERCENT_EQ] = ACTIONS(2970), - [anon_sym_PLUS_EQ] = ACTIONS(2970), - [anon_sym_DASH_EQ] = ACTIONS(2970), - [anon_sym_LT_LT_EQ] = ACTIONS(2970), - [anon_sym_GT_GT_EQ] = ACTIONS(2970), - [anon_sym_AMP_EQ] = ACTIONS(2970), - [anon_sym_CARET_EQ] = ACTIONS(2970), - [anon_sym_PIPE_EQ] = ACTIONS(2970), - [anon_sym_AMP] = ACTIONS(2972), - [anon_sym_PIPE_PIPE] = ACTIONS(2970), - [anon_sym_AMP_AMP] = ACTIONS(2970), - [anon_sym_PIPE] = ACTIONS(2972), - [anon_sym_CARET] = ACTIONS(2972), - [anon_sym_EQ_EQ] = ACTIONS(2970), - [anon_sym_BANG_EQ] = ACTIONS(2970), - [anon_sym_LT] = ACTIONS(2972), - [anon_sym_GT] = ACTIONS(2972), - [anon_sym_LT_EQ] = ACTIONS(2970), - [anon_sym_GT_EQ] = ACTIONS(2970), - [anon_sym_LT_LT] = ACTIONS(2972), - [anon_sym_GT_GT] = ACTIONS(2972), - [anon_sym_PLUS] = ACTIONS(2972), - [anon_sym_DASH] = ACTIONS(2972), - [anon_sym_SLASH] = ACTIONS(2972), - [anon_sym_PERCENT] = ACTIONS(2972), - [anon_sym_DASH_DASH] = ACTIONS(2970), - [anon_sym_PLUS_PLUS] = ACTIONS(2970), - [anon_sym_DOT] = ACTIONS(2970), - [anon_sym_DASH_GT] = ACTIONS(2970), + [anon_sym_COMMA] = ACTIONS(2959), + [anon_sym_RPAREN] = ACTIONS(2959), + [anon_sym_SEMI] = ACTIONS(2959), + [anon_sym_RBRACE] = ACTIONS(2959), + [anon_sym_LPAREN2] = ACTIONS(2959), + [anon_sym_STAR] = ACTIONS(2961), + [anon_sym_LBRACK] = ACTIONS(2959), + [anon_sym_RBRACK] = ACTIONS(2959), + [anon_sym_EQ] = ACTIONS(2961), + [anon_sym_COLON] = ACTIONS(2959), + [anon_sym_QMARK] = ACTIONS(2959), + [anon_sym_STAR_EQ] = ACTIONS(2959), + [anon_sym_SLASH_EQ] = ACTIONS(2959), + [anon_sym_PERCENT_EQ] = ACTIONS(2959), + [anon_sym_PLUS_EQ] = ACTIONS(2959), + [anon_sym_DASH_EQ] = ACTIONS(2959), + [anon_sym_LT_LT_EQ] = ACTIONS(2959), + [anon_sym_GT_GT_EQ] = ACTIONS(2959), + [anon_sym_AMP_EQ] = ACTIONS(2959), + [anon_sym_CARET_EQ] = ACTIONS(2959), + [anon_sym_PIPE_EQ] = ACTIONS(2959), + [anon_sym_AMP] = ACTIONS(2961), + [anon_sym_PIPE_PIPE] = ACTIONS(2959), + [anon_sym_AMP_AMP] = ACTIONS(2959), + [anon_sym_PIPE] = ACTIONS(2961), + [anon_sym_CARET] = ACTIONS(2961), + [anon_sym_EQ_EQ] = ACTIONS(2959), + [anon_sym_BANG_EQ] = ACTIONS(2959), + [anon_sym_LT] = ACTIONS(2961), + [anon_sym_GT] = ACTIONS(2961), + [anon_sym_LT_EQ] = ACTIONS(2959), + [anon_sym_GT_EQ] = ACTIONS(2959), + [anon_sym_LT_LT] = ACTIONS(2961), + [anon_sym_GT_GT] = ACTIONS(2961), + [anon_sym_PLUS] = ACTIONS(2961), + [anon_sym_DASH] = ACTIONS(2961), + [anon_sym_SLASH] = ACTIONS(2961), + [anon_sym_PERCENT] = ACTIONS(2961), + [anon_sym_DASH_DASH] = ACTIONS(2959), + [anon_sym_PLUS_PLUS] = ACTIONS(2959), + [anon_sym_DOT] = ACTIONS(2959), + [anon_sym_DASH_GT] = ACTIONS(2959), [sym_comment] = ACTIONS(39), }, [970] = { @@ -37618,23 +37637,23 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(1089), [sym_concatenated_string] = STATE(1089), [sym_string_literal] = STATE(253), - [anon_sym_LPAREN2] = ACTIONS(554), - [anon_sym_STAR] = ACTIONS(556), - [anon_sym_AMP] = ACTIONS(556), - [anon_sym_BANG] = ACTIONS(580), - [anon_sym_TILDE] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_DASH_DASH] = ACTIONS(586), - [anon_sym_PLUS_PLUS] = ACTIONS(586), - [anon_sym_sizeof] = ACTIONS(588), - [sym_number_literal] = ACTIONS(2974), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2976), - [sym_false] = ACTIONS(2976), - [sym_null] = ACTIONS(2976), - [sym_identifier] = ACTIONS(2976), + [anon_sym_LPAREN2] = ACTIONS(550), + [anon_sym_STAR] = ACTIONS(552), + [anon_sym_AMP] = ACTIONS(552), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_TILDE] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(580), + [anon_sym_DASH] = ACTIONS(580), + [anon_sym_DASH_DASH] = ACTIONS(582), + [anon_sym_PLUS_PLUS] = ACTIONS(582), + [anon_sym_sizeof] = ACTIONS(584), + [sym_number_literal] = ACTIONS(2963), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(2965), + [sym_false] = ACTIONS(2965), + [sym_null] = ACTIONS(2965), + [sym_identifier] = ACTIONS(2965), [sym_comment] = ACTIONS(39), }, [971] = { @@ -37649,30 +37668,30 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_type_qualifier] = STATE(1090), [sym_parameter_list] = STATE(212), [aux_sym_type_definition_repeat1] = STATE(1090), - [anon_sym_RPAREN] = ACTIONS(1484), - [anon_sym_LPAREN2] = ACTIONS(1142), - [anon_sym_STAR] = ACTIONS(1911), - [anon_sym_LBRACK] = ACTIONS(518), + [anon_sym_RPAREN] = ACTIONS(1475), + [anon_sym_LPAREN2] = ACTIONS(1135), + [anon_sym_STAR] = ACTIONS(1900), + [anon_sym_LBRACK] = ACTIONS(514), [anon_sym_const] = ACTIONS(25), [anon_sym_restrict] = ACTIONS(25), [anon_sym_volatile] = ACTIONS(25), [anon_sym__Atomic] = ACTIONS(25), - [sym_identifier] = ACTIONS(532), + [sym_identifier] = ACTIONS(528), [sym_comment] = ACTIONS(39), }, [972] = { [sym_type_qualifier] = STATE(972), [aux_sym_type_definition_repeat1] = STATE(972), - [anon_sym_COMMA] = ACTIONS(950), - [anon_sym_RPAREN] = ACTIONS(950), - [anon_sym_LPAREN2] = ACTIONS(950), - [anon_sym_STAR] = ACTIONS(950), - [anon_sym_LBRACK] = ACTIONS(950), - [anon_sym_const] = ACTIONS(436), - [anon_sym_restrict] = ACTIONS(436), - [anon_sym_volatile] = ACTIONS(436), - [anon_sym__Atomic] = ACTIONS(436), - [sym_identifier] = ACTIONS(439), + [anon_sym_COMMA] = ACTIONS(941), + [anon_sym_RPAREN] = ACTIONS(941), + [anon_sym_LPAREN2] = ACTIONS(941), + [anon_sym_STAR] = ACTIONS(941), + [anon_sym_LBRACK] = ACTIONS(941), + [anon_sym_const] = ACTIONS(432), + [anon_sym_restrict] = ACTIONS(432), + [anon_sym_volatile] = ACTIONS(432), + [anon_sym__Atomic] = ACTIONS(432), + [sym_identifier] = ACTIONS(435), [sym_comment] = ACTIONS(39), }, [973] = { @@ -37697,54 +37716,54 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(921), [sym_concatenated_string] = STATE(921), [sym_string_literal] = STATE(272), - [anon_sym_LBRACE] = ACTIONS(632), - [anon_sym_LPAREN2] = ACTIONS(606), - [anon_sym_STAR] = ACTIONS(2978), - [anon_sym_LBRACK] = ACTIONS(2952), - [anon_sym_RBRACK] = ACTIONS(2952), - [anon_sym_EQ] = ACTIONS(2956), - [anon_sym_QMARK] = ACTIONS(2952), - [anon_sym_STAR_EQ] = ACTIONS(2952), - [anon_sym_SLASH_EQ] = ACTIONS(2952), - [anon_sym_PERCENT_EQ] = ACTIONS(2952), - [anon_sym_PLUS_EQ] = ACTIONS(2952), - [anon_sym_DASH_EQ] = ACTIONS(2952), - [anon_sym_LT_LT_EQ] = ACTIONS(2952), - [anon_sym_GT_GT_EQ] = ACTIONS(2952), - [anon_sym_AMP_EQ] = ACTIONS(2952), - [anon_sym_CARET_EQ] = ACTIONS(2952), - [anon_sym_PIPE_EQ] = ACTIONS(2952), - [anon_sym_AMP] = ACTIONS(2978), - [anon_sym_PIPE_PIPE] = ACTIONS(2952), - [anon_sym_AMP_AMP] = ACTIONS(2952), - [anon_sym_BANG] = ACTIONS(2980), - [anon_sym_PIPE] = ACTIONS(2956), - [anon_sym_CARET] = ACTIONS(2956), - [anon_sym_TILDE] = ACTIONS(618), - [anon_sym_EQ_EQ] = ACTIONS(2952), - [anon_sym_BANG_EQ] = ACTIONS(2952), - [anon_sym_LT] = ACTIONS(2956), - [anon_sym_GT] = ACTIONS(2956), - [anon_sym_LT_EQ] = ACTIONS(2952), - [anon_sym_GT_EQ] = ACTIONS(2952), - [anon_sym_LT_LT] = ACTIONS(2956), - [anon_sym_GT_GT] = ACTIONS(2956), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(2956), - [anon_sym_PERCENT] = ACTIONS(2956), - [anon_sym_DASH_DASH] = ACTIONS(622), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_sizeof] = ACTIONS(624), - [anon_sym_DOT] = ACTIONS(2952), - [anon_sym_DASH_GT] = ACTIONS(2952), - [sym_number_literal] = ACTIONS(2392), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2394), - [sym_false] = ACTIONS(2394), - [sym_null] = ACTIONS(2394), - [sym_identifier] = ACTIONS(2394), + [anon_sym_LBRACE] = ACTIONS(628), + [anon_sym_LPAREN2] = ACTIONS(602), + [anon_sym_STAR] = ACTIONS(2967), + [anon_sym_LBRACK] = ACTIONS(2941), + [anon_sym_RBRACK] = ACTIONS(2941), + [anon_sym_EQ] = ACTIONS(2945), + [anon_sym_QMARK] = ACTIONS(2941), + [anon_sym_STAR_EQ] = ACTIONS(2941), + [anon_sym_SLASH_EQ] = ACTIONS(2941), + [anon_sym_PERCENT_EQ] = ACTIONS(2941), + [anon_sym_PLUS_EQ] = ACTIONS(2941), + [anon_sym_DASH_EQ] = ACTIONS(2941), + [anon_sym_LT_LT_EQ] = ACTIONS(2941), + [anon_sym_GT_GT_EQ] = ACTIONS(2941), + [anon_sym_AMP_EQ] = ACTIONS(2941), + [anon_sym_CARET_EQ] = ACTIONS(2941), + [anon_sym_PIPE_EQ] = ACTIONS(2941), + [anon_sym_AMP] = ACTIONS(2967), + [anon_sym_PIPE_PIPE] = ACTIONS(2941), + [anon_sym_AMP_AMP] = ACTIONS(2941), + [anon_sym_BANG] = ACTIONS(2969), + [anon_sym_PIPE] = ACTIONS(2945), + [anon_sym_CARET] = ACTIONS(2945), + [anon_sym_TILDE] = ACTIONS(614), + [anon_sym_EQ_EQ] = ACTIONS(2941), + [anon_sym_BANG_EQ] = ACTIONS(2941), + [anon_sym_LT] = ACTIONS(2945), + [anon_sym_GT] = ACTIONS(2945), + [anon_sym_LT_EQ] = ACTIONS(2941), + [anon_sym_GT_EQ] = ACTIONS(2941), + [anon_sym_LT_LT] = ACTIONS(2945), + [anon_sym_GT_GT] = ACTIONS(2945), + [anon_sym_PLUS] = ACTIONS(616), + [anon_sym_DASH] = ACTIONS(616), + [anon_sym_SLASH] = ACTIONS(2945), + [anon_sym_PERCENT] = ACTIONS(2945), + [anon_sym_DASH_DASH] = ACTIONS(618), + [anon_sym_PLUS_PLUS] = ACTIONS(618), + [anon_sym_sizeof] = ACTIONS(620), + [anon_sym_DOT] = ACTIONS(2941), + [anon_sym_DASH_GT] = ACTIONS(2941), + [sym_number_literal] = ACTIONS(2381), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(2383), + [sym_false] = ACTIONS(2383), + [sym_null] = ACTIONS(2383), + [sym_identifier] = ACTIONS(2383), [sym_comment] = ACTIONS(39), }, [974] = { @@ -37768,121 +37787,121 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(1091), [sym_concatenated_string] = STATE(1091), [sym_string_literal] = STATE(272), - [anon_sym_LPAREN2] = ACTIONS(606), - [anon_sym_STAR] = ACTIONS(608), - [anon_sym_AMP] = ACTIONS(608), - [anon_sym_BANG] = ACTIONS(616), - [anon_sym_TILDE] = ACTIONS(618), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_DASH_DASH] = ACTIONS(622), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_sizeof] = ACTIONS(624), - [sym_number_literal] = ACTIONS(2982), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2984), - [sym_false] = ACTIONS(2984), - [sym_null] = ACTIONS(2984), - [sym_identifier] = ACTIONS(2984), + [anon_sym_LPAREN2] = ACTIONS(602), + [anon_sym_STAR] = ACTIONS(604), + [anon_sym_AMP] = ACTIONS(604), + [anon_sym_BANG] = ACTIONS(612), + [anon_sym_TILDE] = ACTIONS(614), + [anon_sym_PLUS] = ACTIONS(616), + [anon_sym_DASH] = ACTIONS(616), + [anon_sym_DASH_DASH] = ACTIONS(618), + [anon_sym_PLUS_PLUS] = ACTIONS(618), + [anon_sym_sizeof] = ACTIONS(620), + [sym_number_literal] = ACTIONS(2971), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(2973), + [sym_false] = ACTIONS(2973), + [sym_null] = ACTIONS(2973), + [sym_identifier] = ACTIONS(2973), [sym_comment] = ACTIONS(39), }, [975] = { - [anon_sym_LBRACK] = ACTIONS(2986), - [anon_sym_EQ] = ACTIONS(2986), - [anon_sym_DOT] = ACTIONS(2986), + [anon_sym_LBRACK] = ACTIONS(2975), + [anon_sym_EQ] = ACTIONS(2975), + [anon_sym_DOT] = ACTIONS(2975), [sym_comment] = ACTIONS(39), }, [976] = { - [anon_sym_COMMA] = ACTIONS(2988), - [anon_sym_RPAREN] = ACTIONS(2988), - [anon_sym_SEMI] = ACTIONS(2988), - [anon_sym_RBRACE] = ACTIONS(2988), - [anon_sym_LPAREN2] = ACTIONS(2988), - [anon_sym_STAR] = ACTIONS(2990), - [anon_sym_LBRACK] = ACTIONS(2988), - [anon_sym_RBRACK] = ACTIONS(2988), - [anon_sym_EQ] = ACTIONS(2990), - [anon_sym_COLON] = ACTIONS(2988), - [anon_sym_QMARK] = ACTIONS(2988), - [anon_sym_STAR_EQ] = ACTIONS(2988), - [anon_sym_SLASH_EQ] = ACTIONS(2988), - [anon_sym_PERCENT_EQ] = ACTIONS(2988), - [anon_sym_PLUS_EQ] = ACTIONS(2988), - [anon_sym_DASH_EQ] = ACTIONS(2988), - [anon_sym_LT_LT_EQ] = ACTIONS(2988), - [anon_sym_GT_GT_EQ] = ACTIONS(2988), - [anon_sym_AMP_EQ] = ACTIONS(2988), - [anon_sym_CARET_EQ] = ACTIONS(2988), - [anon_sym_PIPE_EQ] = ACTIONS(2988), - [anon_sym_AMP] = ACTIONS(2990), - [anon_sym_PIPE_PIPE] = ACTIONS(2988), - [anon_sym_AMP_AMP] = ACTIONS(2988), - [anon_sym_PIPE] = ACTIONS(2990), - [anon_sym_CARET] = ACTIONS(2990), - [anon_sym_EQ_EQ] = ACTIONS(2988), - [anon_sym_BANG_EQ] = ACTIONS(2988), - [anon_sym_LT] = ACTIONS(2990), - [anon_sym_GT] = ACTIONS(2990), - [anon_sym_LT_EQ] = ACTIONS(2988), - [anon_sym_GT_EQ] = ACTIONS(2988), - [anon_sym_LT_LT] = ACTIONS(2990), - [anon_sym_GT_GT] = ACTIONS(2990), - [anon_sym_PLUS] = ACTIONS(2990), - [anon_sym_DASH] = ACTIONS(2990), - [anon_sym_SLASH] = ACTIONS(2990), - [anon_sym_PERCENT] = ACTIONS(2990), - [anon_sym_DASH_DASH] = ACTIONS(2988), - [anon_sym_PLUS_PLUS] = ACTIONS(2988), - [anon_sym_DOT] = ACTIONS(2988), - [anon_sym_DASH_GT] = ACTIONS(2988), + [anon_sym_COMMA] = ACTIONS(2977), + [anon_sym_RPAREN] = ACTIONS(2977), + [anon_sym_SEMI] = ACTIONS(2977), + [anon_sym_RBRACE] = ACTIONS(2977), + [anon_sym_LPAREN2] = ACTIONS(2977), + [anon_sym_STAR] = ACTIONS(2979), + [anon_sym_LBRACK] = ACTIONS(2977), + [anon_sym_RBRACK] = ACTIONS(2977), + [anon_sym_EQ] = ACTIONS(2979), + [anon_sym_COLON] = ACTIONS(2977), + [anon_sym_QMARK] = ACTIONS(2977), + [anon_sym_STAR_EQ] = ACTIONS(2977), + [anon_sym_SLASH_EQ] = ACTIONS(2977), + [anon_sym_PERCENT_EQ] = ACTIONS(2977), + [anon_sym_PLUS_EQ] = ACTIONS(2977), + [anon_sym_DASH_EQ] = ACTIONS(2977), + [anon_sym_LT_LT_EQ] = ACTIONS(2977), + [anon_sym_GT_GT_EQ] = ACTIONS(2977), + [anon_sym_AMP_EQ] = ACTIONS(2977), + [anon_sym_CARET_EQ] = ACTIONS(2977), + [anon_sym_PIPE_EQ] = ACTIONS(2977), + [anon_sym_AMP] = ACTIONS(2979), + [anon_sym_PIPE_PIPE] = ACTIONS(2977), + [anon_sym_AMP_AMP] = ACTIONS(2977), + [anon_sym_PIPE] = ACTIONS(2979), + [anon_sym_CARET] = ACTIONS(2979), + [anon_sym_EQ_EQ] = ACTIONS(2977), + [anon_sym_BANG_EQ] = ACTIONS(2977), + [anon_sym_LT] = ACTIONS(2979), + [anon_sym_GT] = ACTIONS(2979), + [anon_sym_LT_EQ] = ACTIONS(2977), + [anon_sym_GT_EQ] = ACTIONS(2977), + [anon_sym_LT_LT] = ACTIONS(2979), + [anon_sym_GT_GT] = ACTIONS(2979), + [anon_sym_PLUS] = ACTIONS(2979), + [anon_sym_DASH] = ACTIONS(2979), + [anon_sym_SLASH] = ACTIONS(2979), + [anon_sym_PERCENT] = ACTIONS(2979), + [anon_sym_DASH_DASH] = ACTIONS(2977), + [anon_sym_PLUS_PLUS] = ACTIONS(2977), + [anon_sym_DOT] = ACTIONS(2977), + [anon_sym_DASH_GT] = ACTIONS(2977), [sym_comment] = ACTIONS(39), }, [977] = { [sym_argument_list] = STATE(465), - [anon_sym_COMMA] = ACTIONS(2992), - [anon_sym_RBRACE] = ACTIONS(2992), - [anon_sym_LPAREN2] = ACTIONS(1096), - [anon_sym_STAR] = ACTIONS(1351), - [anon_sym_LBRACK] = ACTIONS(1100), - [anon_sym_EQ] = ACTIONS(1353), - [anon_sym_QMARK] = ACTIONS(1355), - [anon_sym_STAR_EQ] = ACTIONS(1357), - [anon_sym_SLASH_EQ] = ACTIONS(1357), - [anon_sym_PERCENT_EQ] = ACTIONS(1357), - [anon_sym_PLUS_EQ] = ACTIONS(1357), - [anon_sym_DASH_EQ] = ACTIONS(1357), - [anon_sym_LT_LT_EQ] = ACTIONS(1357), - [anon_sym_GT_GT_EQ] = ACTIONS(1357), - [anon_sym_AMP_EQ] = ACTIONS(1357), - [anon_sym_CARET_EQ] = ACTIONS(1357), - [anon_sym_PIPE_EQ] = ACTIONS(1357), - [anon_sym_AMP] = ACTIONS(1359), - [anon_sym_PIPE_PIPE] = ACTIONS(1361), - [anon_sym_AMP_AMP] = ACTIONS(1363), - [anon_sym_PIPE] = ACTIONS(1365), - [anon_sym_CARET] = ACTIONS(1367), - [anon_sym_EQ_EQ] = ACTIONS(1369), - [anon_sym_BANG_EQ] = ACTIONS(1369), - [anon_sym_LT] = ACTIONS(1371), - [anon_sym_GT] = ACTIONS(1371), - [anon_sym_LT_EQ] = ACTIONS(1373), - [anon_sym_GT_EQ] = ACTIONS(1373), - [anon_sym_LT_LT] = ACTIONS(1375), - [anon_sym_GT_GT] = ACTIONS(1375), - [anon_sym_PLUS] = ACTIONS(1377), - [anon_sym_DASH] = ACTIONS(1377), - [anon_sym_SLASH] = ACTIONS(1351), - [anon_sym_PERCENT] = ACTIONS(1351), - [anon_sym_DASH_DASH] = ACTIONS(1128), - [anon_sym_PLUS_PLUS] = ACTIONS(1128), - [anon_sym_DOT] = ACTIONS(1130), - [anon_sym_DASH_GT] = ACTIONS(1130), + [anon_sym_COMMA] = ACTIONS(2981), + [anon_sym_RBRACE] = ACTIONS(2981), + [anon_sym_LPAREN2] = ACTIONS(1089), + [anon_sym_STAR] = ACTIONS(1342), + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(1344), + [anon_sym_QMARK] = ACTIONS(1346), + [anon_sym_STAR_EQ] = ACTIONS(1348), + [anon_sym_SLASH_EQ] = ACTIONS(1348), + [anon_sym_PERCENT_EQ] = ACTIONS(1348), + [anon_sym_PLUS_EQ] = ACTIONS(1348), + [anon_sym_DASH_EQ] = ACTIONS(1348), + [anon_sym_LT_LT_EQ] = ACTIONS(1348), + [anon_sym_GT_GT_EQ] = ACTIONS(1348), + [anon_sym_AMP_EQ] = ACTIONS(1348), + [anon_sym_CARET_EQ] = ACTIONS(1348), + [anon_sym_PIPE_EQ] = ACTIONS(1348), + [anon_sym_AMP] = ACTIONS(1350), + [anon_sym_PIPE_PIPE] = ACTIONS(1352), + [anon_sym_AMP_AMP] = ACTIONS(1354), + [anon_sym_PIPE] = ACTIONS(1356), + [anon_sym_CARET] = ACTIONS(1358), + [anon_sym_EQ_EQ] = ACTIONS(1360), + [anon_sym_BANG_EQ] = ACTIONS(1360), + [anon_sym_LT] = ACTIONS(1362), + [anon_sym_GT] = ACTIONS(1362), + [anon_sym_LT_EQ] = ACTIONS(1364), + [anon_sym_GT_EQ] = ACTIONS(1364), + [anon_sym_LT_LT] = ACTIONS(1366), + [anon_sym_GT_GT] = ACTIONS(1366), + [anon_sym_PLUS] = ACTIONS(1368), + [anon_sym_DASH] = ACTIONS(1368), + [anon_sym_SLASH] = ACTIONS(1342), + [anon_sym_PERCENT] = ACTIONS(1342), + [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_PLUS_PLUS] = ACTIONS(1121), + [anon_sym_DOT] = ACTIONS(1123), + [anon_sym_DASH_GT] = ACTIONS(1123), [sym_comment] = ACTIONS(39), }, [978] = { - [anon_sym_COMMA] = ACTIONS(2992), - [anon_sym_RBRACE] = ACTIONS(2992), + [anon_sym_COMMA] = ACTIONS(2981), + [anon_sym_RBRACE] = ACTIONS(2981), [sym_comment] = ACTIONS(39), }, [979] = { @@ -37911,365 +37930,365 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_concatenated_string] = STATE(977), [sym_string_literal] = STATE(346), [aux_sym_initializer_pair_repeat1] = STATE(506), - [anon_sym_LBRACE] = ACTIONS(632), - [anon_sym_RBRACE] = ACTIONS(2994), - [anon_sym_LPAREN2] = ACTIONS(807), - [anon_sym_STAR] = ACTIONS(809), - [anon_sym_LBRACK] = ACTIONS(1202), - [anon_sym_AMP] = ACTIONS(809), - [anon_sym_BANG] = ACTIONS(811), - [anon_sym_TILDE] = ACTIONS(813), - [anon_sym_PLUS] = ACTIONS(815), - [anon_sym_DASH] = ACTIONS(815), - [anon_sym_DASH_DASH] = ACTIONS(817), - [anon_sym_PLUS_PLUS] = ACTIONS(817), - [anon_sym_sizeof] = ACTIONS(819), - [anon_sym_DOT] = ACTIONS(1204), - [sym_number_literal] = ACTIONS(2605), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2607), - [sym_false] = ACTIONS(2607), - [sym_null] = ACTIONS(2607), - [sym_identifier] = ACTIONS(2607), + [anon_sym_LBRACE] = ACTIONS(628), + [anon_sym_RBRACE] = ACTIONS(2983), + [anon_sym_LPAREN2] = ACTIONS(798), + [anon_sym_STAR] = ACTIONS(800), + [anon_sym_LBRACK] = ACTIONS(1195), + [anon_sym_AMP] = ACTIONS(800), + [anon_sym_BANG] = ACTIONS(802), + [anon_sym_TILDE] = ACTIONS(804), + [anon_sym_PLUS] = ACTIONS(806), + [anon_sym_DASH] = ACTIONS(806), + [anon_sym_DASH_DASH] = ACTIONS(808), + [anon_sym_PLUS_PLUS] = ACTIONS(808), + [anon_sym_sizeof] = ACTIONS(810), + [anon_sym_DOT] = ACTIONS(1197), + [sym_number_literal] = ACTIONS(2594), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(2596), + [sym_false] = ACTIONS(2596), + [sym_null] = ACTIONS(2596), + [sym_identifier] = ACTIONS(2596), [sym_comment] = ACTIONS(39), }, [980] = { [aux_sym_initializer_list_repeat1] = STATE(980), - [anon_sym_COMMA] = ACTIONS(2996), - [anon_sym_RBRACE] = ACTIONS(2992), + [anon_sym_COMMA] = ACTIONS(2985), + [anon_sym_RBRACE] = ACTIONS(2981), [sym_comment] = ACTIONS(39), }, [981] = { [sym_argument_list] = STATE(465), - [anon_sym_COMMA] = ACTIONS(2999), - [anon_sym_RBRACE] = ACTIONS(2999), - [anon_sym_LPAREN2] = ACTIONS(1096), - [anon_sym_STAR] = ACTIONS(1351), - [anon_sym_LBRACK] = ACTIONS(1100), - [anon_sym_EQ] = ACTIONS(1353), - [anon_sym_QMARK] = ACTIONS(1355), - [anon_sym_STAR_EQ] = ACTIONS(1357), - [anon_sym_SLASH_EQ] = ACTIONS(1357), - [anon_sym_PERCENT_EQ] = ACTIONS(1357), - [anon_sym_PLUS_EQ] = ACTIONS(1357), - [anon_sym_DASH_EQ] = ACTIONS(1357), - [anon_sym_LT_LT_EQ] = ACTIONS(1357), - [anon_sym_GT_GT_EQ] = ACTIONS(1357), - [anon_sym_AMP_EQ] = ACTIONS(1357), - [anon_sym_CARET_EQ] = ACTIONS(1357), - [anon_sym_PIPE_EQ] = ACTIONS(1357), - [anon_sym_AMP] = ACTIONS(1359), - [anon_sym_PIPE_PIPE] = ACTIONS(1361), - [anon_sym_AMP_AMP] = ACTIONS(1363), - [anon_sym_PIPE] = ACTIONS(1365), - [anon_sym_CARET] = ACTIONS(1367), - [anon_sym_EQ_EQ] = ACTIONS(1369), - [anon_sym_BANG_EQ] = ACTIONS(1369), - [anon_sym_LT] = ACTIONS(1371), - [anon_sym_GT] = ACTIONS(1371), - [anon_sym_LT_EQ] = ACTIONS(1373), - [anon_sym_GT_EQ] = ACTIONS(1373), - [anon_sym_LT_LT] = ACTIONS(1375), - [anon_sym_GT_GT] = ACTIONS(1375), - [anon_sym_PLUS] = ACTIONS(1377), - [anon_sym_DASH] = ACTIONS(1377), - [anon_sym_SLASH] = ACTIONS(1351), - [anon_sym_PERCENT] = ACTIONS(1351), - [anon_sym_DASH_DASH] = ACTIONS(1128), - [anon_sym_PLUS_PLUS] = ACTIONS(1128), - [anon_sym_DOT] = ACTIONS(1130), - [anon_sym_DASH_GT] = ACTIONS(1130), + [anon_sym_COMMA] = ACTIONS(2988), + [anon_sym_RBRACE] = ACTIONS(2988), + [anon_sym_LPAREN2] = ACTIONS(1089), + [anon_sym_STAR] = ACTIONS(1342), + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(1344), + [anon_sym_QMARK] = ACTIONS(1346), + [anon_sym_STAR_EQ] = ACTIONS(1348), + [anon_sym_SLASH_EQ] = ACTIONS(1348), + [anon_sym_PERCENT_EQ] = ACTIONS(1348), + [anon_sym_PLUS_EQ] = ACTIONS(1348), + [anon_sym_DASH_EQ] = ACTIONS(1348), + [anon_sym_LT_LT_EQ] = ACTIONS(1348), + [anon_sym_GT_GT_EQ] = ACTIONS(1348), + [anon_sym_AMP_EQ] = ACTIONS(1348), + [anon_sym_CARET_EQ] = ACTIONS(1348), + [anon_sym_PIPE_EQ] = ACTIONS(1348), + [anon_sym_AMP] = ACTIONS(1350), + [anon_sym_PIPE_PIPE] = ACTIONS(1352), + [anon_sym_AMP_AMP] = ACTIONS(1354), + [anon_sym_PIPE] = ACTIONS(1356), + [anon_sym_CARET] = ACTIONS(1358), + [anon_sym_EQ_EQ] = ACTIONS(1360), + [anon_sym_BANG_EQ] = ACTIONS(1360), + [anon_sym_LT] = ACTIONS(1362), + [anon_sym_GT] = ACTIONS(1362), + [anon_sym_LT_EQ] = ACTIONS(1364), + [anon_sym_GT_EQ] = ACTIONS(1364), + [anon_sym_LT_LT] = ACTIONS(1366), + [anon_sym_GT_GT] = ACTIONS(1366), + [anon_sym_PLUS] = ACTIONS(1368), + [anon_sym_DASH] = ACTIONS(1368), + [anon_sym_SLASH] = ACTIONS(1342), + [anon_sym_PERCENT] = ACTIONS(1342), + [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_PLUS_PLUS] = ACTIONS(1121), + [anon_sym_DOT] = ACTIONS(1123), + [anon_sym_DASH_GT] = ACTIONS(1123), [sym_comment] = ACTIONS(39), }, [982] = { - [anon_sym_COMMA] = ACTIONS(2999), - [anon_sym_RBRACE] = ACTIONS(2999), + [anon_sym_COMMA] = ACTIONS(2988), + [anon_sym_RBRACE] = ACTIONS(2988), [sym_comment] = ACTIONS(39), }, [983] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1227), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1227), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1227), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1227), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1227), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1227), - [sym_preproc_directive] = ACTIONS(1227), - [anon_sym_SEMI] = ACTIONS(1225), - [anon_sym_typedef] = ACTIONS(1227), - [anon_sym_extern] = ACTIONS(1227), - [anon_sym_LBRACE] = ACTIONS(1225), - [anon_sym_LPAREN2] = ACTIONS(1225), - [anon_sym_STAR] = ACTIONS(1225), - [anon_sym_static] = ACTIONS(1227), - [anon_sym_auto] = ACTIONS(1227), - [anon_sym_register] = ACTIONS(1227), - [anon_sym_inline] = ACTIONS(1227), - [anon_sym_const] = ACTIONS(1227), - [anon_sym_restrict] = ACTIONS(1227), - [anon_sym_volatile] = ACTIONS(1227), - [anon_sym__Atomic] = ACTIONS(1227), - [anon_sym_unsigned] = ACTIONS(1227), - [anon_sym_long] = ACTIONS(1227), - [anon_sym_short] = ACTIONS(1227), - [sym_primitive_type] = ACTIONS(1227), - [anon_sym_enum] = ACTIONS(1227), - [anon_sym_struct] = ACTIONS(1227), - [anon_sym_union] = ACTIONS(1227), - [anon_sym_if] = ACTIONS(1227), - [anon_sym_switch] = ACTIONS(1227), - [anon_sym_case] = ACTIONS(1227), - [anon_sym_default] = ACTIONS(1227), - [anon_sym_while] = ACTIONS(1227), - [anon_sym_do] = ACTIONS(1227), - [anon_sym_for] = ACTIONS(1227), - [anon_sym_return] = ACTIONS(1227), - [anon_sym_break] = ACTIONS(1227), - [anon_sym_continue] = ACTIONS(1227), - [anon_sym_goto] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(1225), - [anon_sym_BANG] = ACTIONS(1225), - [anon_sym_TILDE] = ACTIONS(1225), - [anon_sym_PLUS] = ACTIONS(1227), - [anon_sym_DASH] = ACTIONS(1227), - [anon_sym_DASH_DASH] = ACTIONS(1225), - [anon_sym_PLUS_PLUS] = ACTIONS(1225), - [anon_sym_sizeof] = ACTIONS(1227), - [sym_number_literal] = ACTIONS(1225), - [anon_sym_SQUOTE] = ACTIONS(1225), - [anon_sym_DQUOTE] = ACTIONS(1225), - [sym_true] = ACTIONS(1227), - [sym_false] = ACTIONS(1227), - [sym_null] = ACTIONS(1227), - [sym_identifier] = ACTIONS(1227), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1220), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1220), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1220), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1220), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1220), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1220), + [sym_preproc_directive] = ACTIONS(1220), + [anon_sym_SEMI] = ACTIONS(1218), + [anon_sym_typedef] = ACTIONS(1220), + [anon_sym_extern] = ACTIONS(1220), + [anon_sym_LBRACE] = ACTIONS(1218), + [anon_sym_LPAREN2] = ACTIONS(1218), + [anon_sym_STAR] = ACTIONS(1218), + [anon_sym_static] = ACTIONS(1220), + [anon_sym_auto] = ACTIONS(1220), + [anon_sym_register] = ACTIONS(1220), + [anon_sym_inline] = ACTIONS(1220), + [anon_sym_const] = ACTIONS(1220), + [anon_sym_restrict] = ACTIONS(1220), + [anon_sym_volatile] = ACTIONS(1220), + [anon_sym__Atomic] = ACTIONS(1220), + [anon_sym_unsigned] = ACTIONS(1220), + [anon_sym_long] = ACTIONS(1220), + [anon_sym_short] = ACTIONS(1220), + [sym_primitive_type] = ACTIONS(1220), + [anon_sym_enum] = ACTIONS(1220), + [anon_sym_struct] = ACTIONS(1220), + [anon_sym_union] = ACTIONS(1220), + [anon_sym_if] = ACTIONS(1220), + [anon_sym_switch] = ACTIONS(1220), + [anon_sym_case] = ACTIONS(1220), + [anon_sym_default] = ACTIONS(1220), + [anon_sym_while] = ACTIONS(1220), + [anon_sym_do] = ACTIONS(1220), + [anon_sym_for] = ACTIONS(1220), + [anon_sym_return] = ACTIONS(1220), + [anon_sym_break] = ACTIONS(1220), + [anon_sym_continue] = ACTIONS(1220), + [anon_sym_goto] = ACTIONS(1220), + [anon_sym_AMP] = ACTIONS(1218), + [anon_sym_BANG] = ACTIONS(1218), + [anon_sym_TILDE] = ACTIONS(1218), + [anon_sym_PLUS] = ACTIONS(1220), + [anon_sym_DASH] = ACTIONS(1220), + [anon_sym_DASH_DASH] = ACTIONS(1218), + [anon_sym_PLUS_PLUS] = ACTIONS(1218), + [anon_sym_sizeof] = ACTIONS(1220), + [sym_number_literal] = ACTIONS(1218), + [anon_sym_SQUOTE] = ACTIONS(1218), + [anon_sym_DQUOTE] = ACTIONS(1218), + [sym_true] = ACTIONS(1220), + [sym_false] = ACTIONS(1220), + [sym_null] = ACTIONS(1220), + [sym_identifier] = ACTIONS(1220), [sym_comment] = ACTIONS(39), }, [984] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1313), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1313), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1313), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1313), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1313), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1313), - [sym_preproc_directive] = ACTIONS(1313), - [anon_sym_typedef] = ACTIONS(1313), - [anon_sym_extern] = ACTIONS(1313), - [anon_sym_static] = ACTIONS(1313), - [anon_sym_auto] = ACTIONS(1313), - [anon_sym_register] = ACTIONS(1313), - [anon_sym_inline] = ACTIONS(1313), - [anon_sym_const] = ACTIONS(1313), - [anon_sym_restrict] = ACTIONS(1313), - [anon_sym_volatile] = ACTIONS(1313), - [anon_sym__Atomic] = ACTIONS(1313), - [anon_sym_unsigned] = ACTIONS(1313), - [anon_sym_long] = ACTIONS(1313), - [anon_sym_short] = ACTIONS(1313), - [sym_primitive_type] = ACTIONS(1313), - [anon_sym_enum] = ACTIONS(1313), - [anon_sym_struct] = ACTIONS(1313), - [anon_sym_union] = ACTIONS(1313), - [sym_identifier] = ACTIONS(1313), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1304), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1304), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1304), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1304), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1304), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1304), + [sym_preproc_directive] = ACTIONS(1304), + [anon_sym_typedef] = ACTIONS(1304), + [anon_sym_extern] = ACTIONS(1304), + [anon_sym_static] = ACTIONS(1304), + [anon_sym_auto] = ACTIONS(1304), + [anon_sym_register] = ACTIONS(1304), + [anon_sym_inline] = ACTIONS(1304), + [anon_sym_const] = ACTIONS(1304), + [anon_sym_restrict] = ACTIONS(1304), + [anon_sym_volatile] = ACTIONS(1304), + [anon_sym__Atomic] = ACTIONS(1304), + [anon_sym_unsigned] = ACTIONS(1304), + [anon_sym_long] = ACTIONS(1304), + [anon_sym_short] = ACTIONS(1304), + [sym_primitive_type] = ACTIONS(1304), + [anon_sym_enum] = ACTIONS(1304), + [anon_sym_struct] = ACTIONS(1304), + [anon_sym_union] = ACTIONS(1304), + [sym_identifier] = ACTIONS(1304), [sym_comment] = ACTIONS(39), }, [985] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1317), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1317), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1317), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1317), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1317), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1317), - [sym_preproc_directive] = ACTIONS(1317), - [anon_sym_typedef] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1317), - [anon_sym_static] = ACTIONS(1317), - [anon_sym_auto] = ACTIONS(1317), - [anon_sym_register] = ACTIONS(1317), - [anon_sym_inline] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), - [anon_sym_restrict] = ACTIONS(1317), - [anon_sym_volatile] = ACTIONS(1317), - [anon_sym__Atomic] = ACTIONS(1317), - [anon_sym_unsigned] = ACTIONS(1317), - [anon_sym_long] = ACTIONS(1317), - [anon_sym_short] = ACTIONS(1317), - [sym_primitive_type] = ACTIONS(1317), - [anon_sym_enum] = ACTIONS(1317), - [anon_sym_struct] = ACTIONS(1317), - [anon_sym_union] = ACTIONS(1317), - [sym_identifier] = ACTIONS(1317), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1308), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1308), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1308), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1308), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1308), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1308), + [sym_preproc_directive] = ACTIONS(1308), + [anon_sym_typedef] = ACTIONS(1308), + [anon_sym_extern] = ACTIONS(1308), + [anon_sym_static] = ACTIONS(1308), + [anon_sym_auto] = ACTIONS(1308), + [anon_sym_register] = ACTIONS(1308), + [anon_sym_inline] = ACTIONS(1308), + [anon_sym_const] = ACTIONS(1308), + [anon_sym_restrict] = ACTIONS(1308), + [anon_sym_volatile] = ACTIONS(1308), + [anon_sym__Atomic] = ACTIONS(1308), + [anon_sym_unsigned] = ACTIONS(1308), + [anon_sym_long] = ACTIONS(1308), + [anon_sym_short] = ACTIONS(1308), + [sym_primitive_type] = ACTIONS(1308), + [anon_sym_enum] = ACTIONS(1308), + [anon_sym_struct] = ACTIONS(1308), + [anon_sym_union] = ACTIONS(1308), + [sym_identifier] = ACTIONS(1308), [sym_comment] = ACTIONS(39), }, [986] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1321), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1321), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1321), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1321), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1321), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1321), - [sym_preproc_directive] = ACTIONS(1321), - [anon_sym_typedef] = ACTIONS(1321), - [anon_sym_extern] = ACTIONS(1321), - [anon_sym_static] = ACTIONS(1321), - [anon_sym_auto] = ACTIONS(1321), - [anon_sym_register] = ACTIONS(1321), - [anon_sym_inline] = ACTIONS(1321), - [anon_sym_const] = ACTIONS(1321), - [anon_sym_restrict] = ACTIONS(1321), - [anon_sym_volatile] = ACTIONS(1321), - [anon_sym__Atomic] = ACTIONS(1321), - [anon_sym_unsigned] = ACTIONS(1321), - [anon_sym_long] = ACTIONS(1321), - [anon_sym_short] = ACTIONS(1321), - [sym_primitive_type] = ACTIONS(1321), - [anon_sym_enum] = ACTIONS(1321), - [anon_sym_struct] = ACTIONS(1321), - [anon_sym_union] = ACTIONS(1321), - [sym_identifier] = ACTIONS(1321), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1312), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1312), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1312), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1312), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1312), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1312), + [sym_preproc_directive] = ACTIONS(1312), + [anon_sym_typedef] = ACTIONS(1312), + [anon_sym_extern] = ACTIONS(1312), + [anon_sym_static] = ACTIONS(1312), + [anon_sym_auto] = ACTIONS(1312), + [anon_sym_register] = ACTIONS(1312), + [anon_sym_inline] = ACTIONS(1312), + [anon_sym_const] = ACTIONS(1312), + [anon_sym_restrict] = ACTIONS(1312), + [anon_sym_volatile] = ACTIONS(1312), + [anon_sym__Atomic] = ACTIONS(1312), + [anon_sym_unsigned] = ACTIONS(1312), + [anon_sym_long] = ACTIONS(1312), + [anon_sym_short] = ACTIONS(1312), + [sym_primitive_type] = ACTIONS(1312), + [anon_sym_enum] = ACTIONS(1312), + [anon_sym_struct] = ACTIONS(1312), + [anon_sym_union] = ACTIONS(1312), + [sym_identifier] = ACTIONS(1312), [sym_comment] = ACTIONS(39), }, [987] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1337), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1337), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1337), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1337), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1337), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1337), - [sym_preproc_directive] = ACTIONS(1337), - [anon_sym_SEMI] = ACTIONS(1335), - [anon_sym_typedef] = ACTIONS(1337), - [anon_sym_extern] = ACTIONS(1337), - [anon_sym_LBRACE] = ACTIONS(1335), - [anon_sym_LPAREN2] = ACTIONS(1335), - [anon_sym_STAR] = ACTIONS(1335), - [anon_sym_static] = ACTIONS(1337), - [anon_sym_auto] = ACTIONS(1337), - [anon_sym_register] = ACTIONS(1337), - [anon_sym_inline] = ACTIONS(1337), - [anon_sym_const] = ACTIONS(1337), - [anon_sym_restrict] = ACTIONS(1337), - [anon_sym_volatile] = ACTIONS(1337), - [anon_sym__Atomic] = ACTIONS(1337), - [anon_sym_unsigned] = ACTIONS(1337), - [anon_sym_long] = ACTIONS(1337), - [anon_sym_short] = ACTIONS(1337), - [sym_primitive_type] = 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(1335), - [anon_sym_SQUOTE] = ACTIONS(1335), - [anon_sym_DQUOTE] = ACTIONS(1335), - [sym_true] = ACTIONS(1337), - [sym_false] = ACTIONS(1337), - [sym_null] = ACTIONS(1337), - [sym_identifier] = ACTIONS(1337), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1328), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1328), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1328), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1328), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1328), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1328), + [sym_preproc_directive] = ACTIONS(1328), + [anon_sym_SEMI] = ACTIONS(1326), + [anon_sym_typedef] = ACTIONS(1328), + [anon_sym_extern] = ACTIONS(1328), + [anon_sym_LBRACE] = ACTIONS(1326), + [anon_sym_LPAREN2] = ACTIONS(1326), + [anon_sym_STAR] = ACTIONS(1326), + [anon_sym_static] = ACTIONS(1328), + [anon_sym_auto] = ACTIONS(1328), + [anon_sym_register] = ACTIONS(1328), + [anon_sym_inline] = ACTIONS(1328), + [anon_sym_const] = ACTIONS(1328), + [anon_sym_restrict] = ACTIONS(1328), + [anon_sym_volatile] = ACTIONS(1328), + [anon_sym__Atomic] = ACTIONS(1328), + [anon_sym_unsigned] = ACTIONS(1328), + [anon_sym_long] = ACTIONS(1328), + [anon_sym_short] = ACTIONS(1328), + [sym_primitive_type] = ACTIONS(1328), + [anon_sym_enum] = ACTIONS(1328), + [anon_sym_struct] = ACTIONS(1328), + [anon_sym_union] = ACTIONS(1328), + [anon_sym_if] = ACTIONS(1328), + [anon_sym_else] = ACTIONS(1328), + [anon_sym_switch] = ACTIONS(1328), + [anon_sym_case] = ACTIONS(1328), + [anon_sym_default] = ACTIONS(1328), + [anon_sym_while] = ACTIONS(1328), + [anon_sym_do] = ACTIONS(1328), + [anon_sym_for] = ACTIONS(1328), + [anon_sym_return] = ACTIONS(1328), + [anon_sym_break] = ACTIONS(1328), + [anon_sym_continue] = ACTIONS(1328), + [anon_sym_goto] = ACTIONS(1328), + [anon_sym_AMP] = ACTIONS(1326), + [anon_sym_BANG] = ACTIONS(1326), + [anon_sym_TILDE] = ACTIONS(1326), + [anon_sym_PLUS] = ACTIONS(1328), + [anon_sym_DASH] = ACTIONS(1328), + [anon_sym_DASH_DASH] = ACTIONS(1326), + [anon_sym_PLUS_PLUS] = ACTIONS(1326), + [anon_sym_sizeof] = ACTIONS(1328), + [sym_number_literal] = ACTIONS(1326), + [anon_sym_SQUOTE] = ACTIONS(1326), + [anon_sym_DQUOTE] = ACTIONS(1326), + [sym_true] = ACTIONS(1328), + [sym_false] = ACTIONS(1328), + [sym_null] = ACTIONS(1328), + [sym_identifier] = ACTIONS(1328), [sym_comment] = ACTIONS(39), }, [988] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1341), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1341), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1341), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1341), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1341), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1341), - [sym_preproc_directive] = ACTIONS(1341), - [anon_sym_typedef] = ACTIONS(1341), - [anon_sym_extern] = ACTIONS(1341), - [anon_sym_static] = ACTIONS(1341), - [anon_sym_auto] = ACTIONS(1341), - [anon_sym_register] = ACTIONS(1341), - [anon_sym_inline] = ACTIONS(1341), - [anon_sym_const] = ACTIONS(1341), - [anon_sym_restrict] = ACTIONS(1341), - [anon_sym_volatile] = ACTIONS(1341), - [anon_sym__Atomic] = ACTIONS(1341), - [anon_sym_unsigned] = ACTIONS(1341), - [anon_sym_long] = ACTIONS(1341), - [anon_sym_short] = ACTIONS(1341), - [sym_primitive_type] = ACTIONS(1341), - [anon_sym_enum] = ACTIONS(1341), - [anon_sym_struct] = ACTIONS(1341), - [anon_sym_union] = ACTIONS(1341), - [sym_identifier] = ACTIONS(1341), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1332), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1332), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1332), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1332), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1332), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1332), + [sym_preproc_directive] = ACTIONS(1332), + [anon_sym_typedef] = ACTIONS(1332), + [anon_sym_extern] = ACTIONS(1332), + [anon_sym_static] = ACTIONS(1332), + [anon_sym_auto] = ACTIONS(1332), + [anon_sym_register] = ACTIONS(1332), + [anon_sym_inline] = ACTIONS(1332), + [anon_sym_const] = ACTIONS(1332), + [anon_sym_restrict] = ACTIONS(1332), + [anon_sym_volatile] = ACTIONS(1332), + [anon_sym__Atomic] = ACTIONS(1332), + [anon_sym_unsigned] = ACTIONS(1332), + [anon_sym_long] = ACTIONS(1332), + [anon_sym_short] = ACTIONS(1332), + [sym_primitive_type] = ACTIONS(1332), + [anon_sym_enum] = ACTIONS(1332), + [anon_sym_struct] = ACTIONS(1332), + [anon_sym_union] = ACTIONS(1332), + [sym_identifier] = ACTIONS(1332), [sym_comment] = ACTIONS(39), }, [989] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1784), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1784), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1784), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1784), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1784), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1784), - [sym_preproc_directive] = ACTIONS(1784), - [anon_sym_SEMI] = ACTIONS(1782), - [anon_sym_typedef] = ACTIONS(1784), - [anon_sym_extern] = ACTIONS(1784), - [anon_sym_LBRACE] = ACTIONS(1782), - [anon_sym_LPAREN2] = ACTIONS(1782), - [anon_sym_STAR] = ACTIONS(1782), - [anon_sym_static] = ACTIONS(1784), - [anon_sym_auto] = ACTIONS(1784), - [anon_sym_register] = ACTIONS(1784), - [anon_sym_inline] = ACTIONS(1784), - [anon_sym_const] = ACTIONS(1784), - [anon_sym_restrict] = ACTIONS(1784), - [anon_sym_volatile] = ACTIONS(1784), - [anon_sym__Atomic] = ACTIONS(1784), - [anon_sym_unsigned] = ACTIONS(1784), - [anon_sym_long] = ACTIONS(1784), - [anon_sym_short] = ACTIONS(1784), - [sym_primitive_type] = ACTIONS(1784), - [anon_sym_enum] = ACTIONS(1784), - [anon_sym_struct] = ACTIONS(1784), - [anon_sym_union] = ACTIONS(1784), - [anon_sym_if] = ACTIONS(1784), - [anon_sym_else] = ACTIONS(1784), - [anon_sym_switch] = ACTIONS(1784), - [anon_sym_case] = ACTIONS(1784), - [anon_sym_default] = ACTIONS(1784), - [anon_sym_while] = ACTIONS(1784), - [anon_sym_do] = ACTIONS(1784), - [anon_sym_for] = ACTIONS(1784), - [anon_sym_return] = ACTIONS(1784), - [anon_sym_break] = ACTIONS(1784), - [anon_sym_continue] = ACTIONS(1784), - [anon_sym_goto] = ACTIONS(1784), - [anon_sym_AMP] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(1782), - [anon_sym_TILDE] = ACTIONS(1782), - [anon_sym_PLUS] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1784), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_sizeof] = ACTIONS(1784), - [sym_number_literal] = ACTIONS(1782), - [anon_sym_SQUOTE] = ACTIONS(1782), - [anon_sym_DQUOTE] = ACTIONS(1782), - [sym_true] = ACTIONS(1784), - [sym_false] = ACTIONS(1784), - [sym_null] = ACTIONS(1784), - [sym_identifier] = ACTIONS(1784), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1773), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1773), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1773), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1773), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1773), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1773), + [sym_preproc_directive] = ACTIONS(1773), + [anon_sym_SEMI] = ACTIONS(1771), + [anon_sym_typedef] = ACTIONS(1773), + [anon_sym_extern] = ACTIONS(1773), + [anon_sym_LBRACE] = ACTIONS(1771), + [anon_sym_LPAREN2] = ACTIONS(1771), + [anon_sym_STAR] = ACTIONS(1771), + [anon_sym_static] = ACTIONS(1773), + [anon_sym_auto] = ACTIONS(1773), + [anon_sym_register] = ACTIONS(1773), + [anon_sym_inline] = ACTIONS(1773), + [anon_sym_const] = ACTIONS(1773), + [anon_sym_restrict] = ACTIONS(1773), + [anon_sym_volatile] = ACTIONS(1773), + [anon_sym__Atomic] = ACTIONS(1773), + [anon_sym_unsigned] = ACTIONS(1773), + [anon_sym_long] = ACTIONS(1773), + [anon_sym_short] = ACTIONS(1773), + [sym_primitive_type] = ACTIONS(1773), + [anon_sym_enum] = ACTIONS(1773), + [anon_sym_struct] = ACTIONS(1773), + [anon_sym_union] = ACTIONS(1773), + [anon_sym_if] = ACTIONS(1773), + [anon_sym_else] = ACTIONS(1773), + [anon_sym_switch] = ACTIONS(1773), + [anon_sym_case] = ACTIONS(1773), + [anon_sym_default] = ACTIONS(1773), + [anon_sym_while] = ACTIONS(1773), + [anon_sym_do] = ACTIONS(1773), + [anon_sym_for] = ACTIONS(1773), + [anon_sym_return] = ACTIONS(1773), + [anon_sym_break] = ACTIONS(1773), + [anon_sym_continue] = ACTIONS(1773), + [anon_sym_goto] = ACTIONS(1773), + [anon_sym_AMP] = ACTIONS(1771), + [anon_sym_BANG] = ACTIONS(1771), + [anon_sym_TILDE] = ACTIONS(1771), + [anon_sym_PLUS] = ACTIONS(1773), + [anon_sym_DASH] = ACTIONS(1773), + [anon_sym_DASH_DASH] = ACTIONS(1771), + [anon_sym_PLUS_PLUS] = ACTIONS(1771), + [anon_sym_sizeof] = ACTIONS(1773), + [sym_number_literal] = ACTIONS(1771), + [anon_sym_SQUOTE] = ACTIONS(1771), + [anon_sym_DQUOTE] = ACTIONS(1771), + [sym_true] = ACTIONS(1773), + [sym_false] = ACTIONS(1773), + [sym_null] = ACTIONS(1773), + [sym_identifier] = ACTIONS(1773), [sym_comment] = ACTIONS(39), }, [990] = { @@ -38294,55 +38313,55 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(921), [sym_concatenated_string] = STATE(921), [sym_string_literal] = STATE(346), - [anon_sym_COMMA] = ACTIONS(2952), - [anon_sym_LBRACE] = ACTIONS(632), - [anon_sym_RBRACE] = ACTIONS(2952), - [anon_sym_LPAREN2] = ACTIONS(807), - [anon_sym_STAR] = ACTIONS(3001), - [anon_sym_LBRACK] = ACTIONS(2952), - [anon_sym_EQ] = ACTIONS(2956), - [anon_sym_QMARK] = ACTIONS(2952), - [anon_sym_STAR_EQ] = ACTIONS(2952), - [anon_sym_SLASH_EQ] = ACTIONS(2952), - [anon_sym_PERCENT_EQ] = ACTIONS(2952), - [anon_sym_PLUS_EQ] = ACTIONS(2952), - [anon_sym_DASH_EQ] = ACTIONS(2952), - [anon_sym_LT_LT_EQ] = ACTIONS(2952), - [anon_sym_GT_GT_EQ] = ACTIONS(2952), - [anon_sym_AMP_EQ] = ACTIONS(2952), - [anon_sym_CARET_EQ] = ACTIONS(2952), - [anon_sym_PIPE_EQ] = ACTIONS(2952), - [anon_sym_AMP] = ACTIONS(3001), - [anon_sym_PIPE_PIPE] = ACTIONS(2952), - [anon_sym_AMP_AMP] = ACTIONS(2952), - [anon_sym_BANG] = ACTIONS(3003), - [anon_sym_PIPE] = ACTIONS(2956), - [anon_sym_CARET] = ACTIONS(2956), - [anon_sym_TILDE] = ACTIONS(813), - [anon_sym_EQ_EQ] = ACTIONS(2952), - [anon_sym_BANG_EQ] = ACTIONS(2952), - [anon_sym_LT] = ACTIONS(2956), - [anon_sym_GT] = ACTIONS(2956), - [anon_sym_LT_EQ] = ACTIONS(2952), - [anon_sym_GT_EQ] = ACTIONS(2952), - [anon_sym_LT_LT] = ACTIONS(2956), - [anon_sym_GT_GT] = ACTIONS(2956), - [anon_sym_PLUS] = ACTIONS(815), - [anon_sym_DASH] = ACTIONS(815), - [anon_sym_SLASH] = ACTIONS(2956), - [anon_sym_PERCENT] = ACTIONS(2956), - [anon_sym_DASH_DASH] = ACTIONS(817), - [anon_sym_PLUS_PLUS] = ACTIONS(817), - [anon_sym_sizeof] = ACTIONS(819), - [anon_sym_DOT] = ACTIONS(2952), - [anon_sym_DASH_GT] = ACTIONS(2952), - [sym_number_literal] = ACTIONS(2392), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2394), - [sym_false] = ACTIONS(2394), - [sym_null] = ACTIONS(2394), - [sym_identifier] = ACTIONS(2394), + [anon_sym_COMMA] = ACTIONS(2941), + [anon_sym_LBRACE] = ACTIONS(628), + [anon_sym_RBRACE] = ACTIONS(2941), + [anon_sym_LPAREN2] = ACTIONS(798), + [anon_sym_STAR] = ACTIONS(2990), + [anon_sym_LBRACK] = ACTIONS(2941), + [anon_sym_EQ] = ACTIONS(2945), + [anon_sym_QMARK] = ACTIONS(2941), + [anon_sym_STAR_EQ] = ACTIONS(2941), + [anon_sym_SLASH_EQ] = ACTIONS(2941), + [anon_sym_PERCENT_EQ] = ACTIONS(2941), + [anon_sym_PLUS_EQ] = ACTIONS(2941), + [anon_sym_DASH_EQ] = ACTIONS(2941), + [anon_sym_LT_LT_EQ] = ACTIONS(2941), + [anon_sym_GT_GT_EQ] = ACTIONS(2941), + [anon_sym_AMP_EQ] = ACTIONS(2941), + [anon_sym_CARET_EQ] = ACTIONS(2941), + [anon_sym_PIPE_EQ] = ACTIONS(2941), + [anon_sym_AMP] = ACTIONS(2990), + [anon_sym_PIPE_PIPE] = ACTIONS(2941), + [anon_sym_AMP_AMP] = ACTIONS(2941), + [anon_sym_BANG] = ACTIONS(2992), + [anon_sym_PIPE] = ACTIONS(2945), + [anon_sym_CARET] = ACTIONS(2945), + [anon_sym_TILDE] = ACTIONS(804), + [anon_sym_EQ_EQ] = ACTIONS(2941), + [anon_sym_BANG_EQ] = ACTIONS(2941), + [anon_sym_LT] = ACTIONS(2945), + [anon_sym_GT] = ACTIONS(2945), + [anon_sym_LT_EQ] = ACTIONS(2941), + [anon_sym_GT_EQ] = ACTIONS(2941), + [anon_sym_LT_LT] = ACTIONS(2945), + [anon_sym_GT_GT] = ACTIONS(2945), + [anon_sym_PLUS] = ACTIONS(806), + [anon_sym_DASH] = ACTIONS(806), + [anon_sym_SLASH] = ACTIONS(2945), + [anon_sym_PERCENT] = ACTIONS(2945), + [anon_sym_DASH_DASH] = ACTIONS(808), + [anon_sym_PLUS_PLUS] = ACTIONS(808), + [anon_sym_sizeof] = ACTIONS(810), + [anon_sym_DOT] = ACTIONS(2941), + [anon_sym_DASH_GT] = ACTIONS(2941), + [sym_number_literal] = ACTIONS(2381), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(2383), + [sym_false] = ACTIONS(2383), + [sym_null] = ACTIONS(2383), + [sym_identifier] = ACTIONS(2383), [sym_comment] = ACTIONS(39), }, [991] = { @@ -38366,31 +38385,31 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(1094), [sym_concatenated_string] = STATE(1094), [sym_string_literal] = STATE(346), - [anon_sym_LPAREN2] = ACTIONS(807), - [anon_sym_STAR] = ACTIONS(809), - [anon_sym_AMP] = ACTIONS(809), - [anon_sym_BANG] = ACTIONS(811), - [anon_sym_TILDE] = ACTIONS(813), - [anon_sym_PLUS] = ACTIONS(815), - [anon_sym_DASH] = ACTIONS(815), - [anon_sym_DASH_DASH] = ACTIONS(817), - [anon_sym_PLUS_PLUS] = ACTIONS(817), - [anon_sym_sizeof] = ACTIONS(819), - [sym_number_literal] = ACTIONS(3005), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(3007), - [sym_false] = ACTIONS(3007), - [sym_null] = ACTIONS(3007), - [sym_identifier] = ACTIONS(3007), + [anon_sym_LPAREN2] = ACTIONS(798), + [anon_sym_STAR] = ACTIONS(800), + [anon_sym_AMP] = ACTIONS(800), + [anon_sym_BANG] = ACTIONS(802), + [anon_sym_TILDE] = ACTIONS(804), + [anon_sym_PLUS] = ACTIONS(806), + [anon_sym_DASH] = ACTIONS(806), + [anon_sym_DASH_DASH] = ACTIONS(808), + [anon_sym_PLUS_PLUS] = ACTIONS(808), + [anon_sym_sizeof] = ACTIONS(810), + [sym_number_literal] = ACTIONS(2994), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(2996), + [sym_false] = ACTIONS(2996), + [sym_null] = ACTIONS(2996), + [sym_identifier] = ACTIONS(2996), [sym_comment] = ACTIONS(39), }, [992] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3009), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2998), [sym_comment] = ACTIONS(39), }, [993] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3011), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3000), [sym_comment] = ACTIONS(39), }, [994] = { @@ -38415,54 +38434,54 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(921), [sym_concatenated_string] = STATE(921), [sym_string_literal] = STATE(376), - [anon_sym_SEMI] = ACTIONS(2952), - [anon_sym_LBRACE] = ACTIONS(632), - [anon_sym_LPAREN2] = ACTIONS(847), - [anon_sym_STAR] = ACTIONS(3013), - [anon_sym_LBRACK] = ACTIONS(2952), - [anon_sym_EQ] = ACTIONS(2956), - [anon_sym_QMARK] = ACTIONS(2952), - [anon_sym_STAR_EQ] = ACTIONS(2952), - [anon_sym_SLASH_EQ] = ACTIONS(2952), - [anon_sym_PERCENT_EQ] = ACTIONS(2952), - [anon_sym_PLUS_EQ] = ACTIONS(2952), - [anon_sym_DASH_EQ] = ACTIONS(2952), - [anon_sym_LT_LT_EQ] = ACTIONS(2952), - [anon_sym_GT_GT_EQ] = ACTIONS(2952), - [anon_sym_AMP_EQ] = ACTIONS(2952), - [anon_sym_CARET_EQ] = ACTIONS(2952), - [anon_sym_PIPE_EQ] = ACTIONS(2952), - [anon_sym_AMP] = ACTIONS(3013), - [anon_sym_PIPE_PIPE] = ACTIONS(2952), - [anon_sym_AMP_AMP] = ACTIONS(2952), - [anon_sym_BANG] = ACTIONS(3015), - [anon_sym_PIPE] = ACTIONS(2956), - [anon_sym_CARET] = ACTIONS(2956), - [anon_sym_TILDE] = ACTIONS(853), - [anon_sym_EQ_EQ] = ACTIONS(2952), - [anon_sym_BANG_EQ] = ACTIONS(2952), - [anon_sym_LT] = ACTIONS(2956), - [anon_sym_GT] = ACTIONS(2956), - [anon_sym_LT_EQ] = ACTIONS(2952), - [anon_sym_GT_EQ] = ACTIONS(2952), - [anon_sym_LT_LT] = ACTIONS(2956), - [anon_sym_GT_GT] = ACTIONS(2956), - [anon_sym_PLUS] = ACTIONS(855), - [anon_sym_DASH] = ACTIONS(855), - [anon_sym_SLASH] = ACTIONS(2956), - [anon_sym_PERCENT] = ACTIONS(2956), - [anon_sym_DASH_DASH] = ACTIONS(857), - [anon_sym_PLUS_PLUS] = ACTIONS(857), - [anon_sym_sizeof] = ACTIONS(859), - [anon_sym_DOT] = ACTIONS(2952), - [anon_sym_DASH_GT] = ACTIONS(2952), - [sym_number_literal] = ACTIONS(2392), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2394), - [sym_false] = ACTIONS(2394), - [sym_null] = ACTIONS(2394), - [sym_identifier] = ACTIONS(2394), + [anon_sym_SEMI] = ACTIONS(2941), + [anon_sym_LBRACE] = ACTIONS(628), + [anon_sym_LPAREN2] = ACTIONS(838), + [anon_sym_STAR] = ACTIONS(3002), + [anon_sym_LBRACK] = ACTIONS(2941), + [anon_sym_EQ] = ACTIONS(2945), + [anon_sym_QMARK] = ACTIONS(2941), + [anon_sym_STAR_EQ] = ACTIONS(2941), + [anon_sym_SLASH_EQ] = ACTIONS(2941), + [anon_sym_PERCENT_EQ] = ACTIONS(2941), + [anon_sym_PLUS_EQ] = ACTIONS(2941), + [anon_sym_DASH_EQ] = ACTIONS(2941), + [anon_sym_LT_LT_EQ] = ACTIONS(2941), + [anon_sym_GT_GT_EQ] = ACTIONS(2941), + [anon_sym_AMP_EQ] = ACTIONS(2941), + [anon_sym_CARET_EQ] = ACTIONS(2941), + [anon_sym_PIPE_EQ] = ACTIONS(2941), + [anon_sym_AMP] = ACTIONS(3002), + [anon_sym_PIPE_PIPE] = ACTIONS(2941), + [anon_sym_AMP_AMP] = ACTIONS(2941), + [anon_sym_BANG] = ACTIONS(3004), + [anon_sym_PIPE] = ACTIONS(2945), + [anon_sym_CARET] = ACTIONS(2945), + [anon_sym_TILDE] = ACTIONS(844), + [anon_sym_EQ_EQ] = ACTIONS(2941), + [anon_sym_BANG_EQ] = ACTIONS(2941), + [anon_sym_LT] = ACTIONS(2945), + [anon_sym_GT] = ACTIONS(2945), + [anon_sym_LT_EQ] = ACTIONS(2941), + [anon_sym_GT_EQ] = ACTIONS(2941), + [anon_sym_LT_LT] = ACTIONS(2945), + [anon_sym_GT_GT] = ACTIONS(2945), + [anon_sym_PLUS] = ACTIONS(846), + [anon_sym_DASH] = ACTIONS(846), + [anon_sym_SLASH] = ACTIONS(2945), + [anon_sym_PERCENT] = ACTIONS(2945), + [anon_sym_DASH_DASH] = ACTIONS(848), + [anon_sym_PLUS_PLUS] = ACTIONS(848), + [anon_sym_sizeof] = ACTIONS(850), + [anon_sym_DOT] = ACTIONS(2941), + [anon_sym_DASH_GT] = ACTIONS(2941), + [sym_number_literal] = ACTIONS(2381), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(2383), + [sym_false] = ACTIONS(2383), + [sym_null] = ACTIONS(2383), + [sym_identifier] = ACTIONS(2383), [sym_comment] = ACTIONS(39), }, [995] = { @@ -38486,133 +38505,133 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(1095), [sym_concatenated_string] = STATE(1095), [sym_string_literal] = STATE(376), - [anon_sym_LPAREN2] = ACTIONS(847), - [anon_sym_STAR] = ACTIONS(849), - [anon_sym_AMP] = ACTIONS(849), - [anon_sym_BANG] = ACTIONS(851), - [anon_sym_TILDE] = ACTIONS(853), - [anon_sym_PLUS] = ACTIONS(855), - [anon_sym_DASH] = ACTIONS(855), - [anon_sym_DASH_DASH] = ACTIONS(857), - [anon_sym_PLUS_PLUS] = ACTIONS(857), - [anon_sym_sizeof] = ACTIONS(859), - [sym_number_literal] = ACTIONS(3017), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(3019), - [sym_false] = ACTIONS(3019), - [sym_null] = ACTIONS(3019), - [sym_identifier] = ACTIONS(3019), + [anon_sym_LPAREN2] = ACTIONS(838), + [anon_sym_STAR] = ACTIONS(840), + [anon_sym_AMP] = ACTIONS(840), + [anon_sym_BANG] = ACTIONS(842), + [anon_sym_TILDE] = ACTIONS(844), + [anon_sym_PLUS] = ACTIONS(846), + [anon_sym_DASH] = ACTIONS(846), + [anon_sym_DASH_DASH] = ACTIONS(848), + [anon_sym_PLUS_PLUS] = ACTIONS(848), + [anon_sym_sizeof] = ACTIONS(850), + [sym_number_literal] = ACTIONS(3006), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(3008), + [sym_false] = ACTIONS(3008), + [sym_null] = ACTIONS(3008), + [sym_identifier] = ACTIONS(3008), [sym_comment] = ACTIONS(39), }, [996] = { - [anon_sym_COMMA] = ACTIONS(3021), - [anon_sym_RPAREN] = ACTIONS(3021), - [anon_sym_SEMI] = ACTIONS(3021), - [anon_sym_LPAREN2] = ACTIONS(3021), - [anon_sym_LBRACK] = ACTIONS(3021), - [anon_sym_COLON] = ACTIONS(3021), + [anon_sym_COMMA] = ACTIONS(3010), + [anon_sym_RPAREN] = ACTIONS(3010), + [anon_sym_SEMI] = ACTIONS(3010), + [anon_sym_LPAREN2] = ACTIONS(3010), + [anon_sym_LBRACK] = ACTIONS(3010), + [anon_sym_COLON] = ACTIONS(3010), [sym_comment] = ACTIONS(39), }, [997] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3023), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3025), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3025), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3025), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(3025), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(3025), - [anon_sym_extern] = ACTIONS(3023), - [anon_sym_RBRACE] = ACTIONS(3025), - [anon_sym_static] = ACTIONS(3023), - [anon_sym_auto] = ACTIONS(3023), - [anon_sym_register] = ACTIONS(3023), - [anon_sym_inline] = ACTIONS(3023), - [anon_sym_const] = ACTIONS(3023), - [anon_sym_restrict] = ACTIONS(3023), - [anon_sym_volatile] = ACTIONS(3023), - [anon_sym__Atomic] = ACTIONS(3023), - [anon_sym_unsigned] = ACTIONS(3023), - [anon_sym_long] = ACTIONS(3023), - [anon_sym_short] = ACTIONS(3023), - [sym_primitive_type] = ACTIONS(3023), - [anon_sym_enum] = ACTIONS(3023), - [anon_sym_struct] = ACTIONS(3023), - [anon_sym_union] = ACTIONS(3023), - [sym_identifier] = ACTIONS(3023), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3012), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3014), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3014), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3014), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(3014), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(3014), + [anon_sym_extern] = ACTIONS(3012), + [anon_sym_RBRACE] = ACTIONS(3014), + [anon_sym_static] = ACTIONS(3012), + [anon_sym_auto] = ACTIONS(3012), + [anon_sym_register] = ACTIONS(3012), + [anon_sym_inline] = ACTIONS(3012), + [anon_sym_const] = ACTIONS(3012), + [anon_sym_restrict] = ACTIONS(3012), + [anon_sym_volatile] = ACTIONS(3012), + [anon_sym__Atomic] = ACTIONS(3012), + [anon_sym_unsigned] = ACTIONS(3012), + [anon_sym_long] = ACTIONS(3012), + [anon_sym_short] = ACTIONS(3012), + [sym_primitive_type] = ACTIONS(3012), + [anon_sym_enum] = ACTIONS(3012), + [anon_sym_struct] = ACTIONS(3012), + [anon_sym_union] = ACTIONS(3012), + [sym_identifier] = ACTIONS(3012), [sym_comment] = ACTIONS(39), }, [998] = { - [anon_sym_COMMA] = ACTIONS(3027), - [anon_sym_RPAREN] = ACTIONS(3027), - [anon_sym_LPAREN2] = ACTIONS(3027), - [anon_sym_LBRACK] = ACTIONS(3027), + [anon_sym_COMMA] = ACTIONS(3016), + [anon_sym_RPAREN] = ACTIONS(3016), + [anon_sym_LPAREN2] = ACTIONS(3016), + [anon_sym_LBRACK] = ACTIONS(3016), [sym_comment] = ACTIONS(39), }, [999] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2238), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2238), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2238), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2238), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2238), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2238), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2238), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2238), - [sym_preproc_directive] = ACTIONS(2238), - [anon_sym_SEMI] = ACTIONS(2240), - [anon_sym_typedef] = ACTIONS(2238), - [anon_sym_extern] = ACTIONS(2238), - [anon_sym_LBRACE] = ACTIONS(2240), - [anon_sym_LPAREN2] = ACTIONS(2240), - [anon_sym_STAR] = ACTIONS(2240), - [anon_sym_static] = ACTIONS(2238), - [anon_sym_auto] = ACTIONS(2238), - [anon_sym_register] = ACTIONS(2238), - [anon_sym_inline] = ACTIONS(2238), - [anon_sym_const] = ACTIONS(2238), - [anon_sym_restrict] = ACTIONS(2238), - [anon_sym_volatile] = ACTIONS(2238), - [anon_sym__Atomic] = ACTIONS(2238), - [anon_sym_unsigned] = ACTIONS(2238), - [anon_sym_long] = ACTIONS(2238), - [anon_sym_short] = ACTIONS(2238), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_enum] = ACTIONS(2238), - [anon_sym_struct] = ACTIONS(2238), - [anon_sym_union] = ACTIONS(2238), - [anon_sym_if] = ACTIONS(2238), - [anon_sym_switch] = ACTIONS(2238), - [anon_sym_case] = ACTIONS(2238), - [anon_sym_default] = ACTIONS(2238), - [anon_sym_while] = ACTIONS(2238), - [anon_sym_do] = ACTIONS(2238), - [anon_sym_for] = ACTIONS(2238), - [anon_sym_return] = ACTIONS(2238), - [anon_sym_break] = ACTIONS(2238), - [anon_sym_continue] = ACTIONS(2238), - [anon_sym_goto] = ACTIONS(2238), - [anon_sym_AMP] = ACTIONS(2240), - [anon_sym_BANG] = ACTIONS(2240), - [anon_sym_TILDE] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2238), - [anon_sym_DASH] = ACTIONS(2238), - [anon_sym_DASH_DASH] = ACTIONS(2240), - [anon_sym_PLUS_PLUS] = ACTIONS(2240), - [anon_sym_sizeof] = ACTIONS(2238), - [sym_number_literal] = ACTIONS(2240), - [anon_sym_SQUOTE] = ACTIONS(2240), - [anon_sym_DQUOTE] = ACTIONS(2240), - [sym_true] = ACTIONS(2238), - [sym_false] = ACTIONS(2238), - [sym_null] = ACTIONS(2238), - [sym_identifier] = ACTIONS(2238), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2227), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2227), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2227), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2227), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2227), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2227), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2227), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2227), + [sym_preproc_directive] = ACTIONS(2227), + [anon_sym_SEMI] = ACTIONS(2229), + [anon_sym_typedef] = ACTIONS(2227), + [anon_sym_extern] = ACTIONS(2227), + [anon_sym_LBRACE] = ACTIONS(2229), + [anon_sym_LPAREN2] = ACTIONS(2229), + [anon_sym_STAR] = ACTIONS(2229), + [anon_sym_static] = ACTIONS(2227), + [anon_sym_auto] = ACTIONS(2227), + [anon_sym_register] = ACTIONS(2227), + [anon_sym_inline] = ACTIONS(2227), + [anon_sym_const] = ACTIONS(2227), + [anon_sym_restrict] = ACTIONS(2227), + [anon_sym_volatile] = ACTIONS(2227), + [anon_sym__Atomic] = ACTIONS(2227), + [anon_sym_unsigned] = ACTIONS(2227), + [anon_sym_long] = ACTIONS(2227), + [anon_sym_short] = ACTIONS(2227), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_enum] = ACTIONS(2227), + [anon_sym_struct] = ACTIONS(2227), + [anon_sym_union] = ACTIONS(2227), + [anon_sym_if] = ACTIONS(2227), + [anon_sym_switch] = ACTIONS(2227), + [anon_sym_case] = ACTIONS(2227), + [anon_sym_default] = ACTIONS(2227), + [anon_sym_while] = ACTIONS(2227), + [anon_sym_do] = ACTIONS(2227), + [anon_sym_for] = ACTIONS(2227), + [anon_sym_return] = ACTIONS(2227), + [anon_sym_break] = ACTIONS(2227), + [anon_sym_continue] = ACTIONS(2227), + [anon_sym_goto] = ACTIONS(2227), + [anon_sym_AMP] = ACTIONS(2229), + [anon_sym_BANG] = ACTIONS(2229), + [anon_sym_TILDE] = ACTIONS(2229), + [anon_sym_PLUS] = ACTIONS(2227), + [anon_sym_DASH] = ACTIONS(2227), + [anon_sym_DASH_DASH] = ACTIONS(2229), + [anon_sym_PLUS_PLUS] = ACTIONS(2229), + [anon_sym_sizeof] = ACTIONS(2227), + [sym_number_literal] = ACTIONS(2229), + [anon_sym_SQUOTE] = ACTIONS(2229), + [anon_sym_DQUOTE] = ACTIONS(2229), + [sym_true] = ACTIONS(2227), + [sym_false] = ACTIONS(2227), + [sym_null] = ACTIONS(2227), + [sym_identifier] = ACTIONS(2227), [sym_comment] = ACTIONS(39), }, [1000] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3029), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3018), [sym_comment] = ACTIONS(39), }, [1001] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3031), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3020), [sym_comment] = ACTIONS(39), }, [1002] = { @@ -38673,21 +38692,21 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(896), [aux_sym__declaration_specifiers_repeat1] = STATE(20), [aux_sym_sized_type_specifier_repeat1] = STATE(21), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(133), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(135), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1504), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3033), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1508), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1510), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1512), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1514), - [sym_preproc_directive] = ACTIONS(149), - [anon_sym_SEMI] = ACTIONS(1516), - [anon_sym_typedef] = ACTIONS(151), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(131), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(133), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1493), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3022), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1497), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1499), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1501), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1503), + [sym_preproc_directive] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(1505), + [anon_sym_typedef] = ACTIONS(149), [anon_sym_extern] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(734), - [anon_sym_LPAREN2] = ACTIONS(554), - [anon_sym_STAR] = ACTIONS(556), + [anon_sym_LBRACE] = ACTIONS(725), + [anon_sym_LPAREN2] = ACTIONS(550), + [anon_sym_STAR] = ACTIONS(552), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -38703,99 +38722,99 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), - [anon_sym_if] = ACTIONS(1518), - [anon_sym_switch] = ACTIONS(1520), - [anon_sym_case] = ACTIONS(1522), - [anon_sym_default] = ACTIONS(1524), - [anon_sym_while] = ACTIONS(1526), - [anon_sym_do] = ACTIONS(1528), - [anon_sym_for] = ACTIONS(1530), - [anon_sym_return] = ACTIONS(1532), - [anon_sym_break] = ACTIONS(1534), - [anon_sym_continue] = ACTIONS(1536), - [anon_sym_goto] = ACTIONS(1538), - [anon_sym_AMP] = ACTIONS(556), - [anon_sym_BANG] = ACTIONS(580), - [anon_sym_TILDE] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_DASH_DASH] = ACTIONS(586), - [anon_sym_PLUS_PLUS] = ACTIONS(586), - [anon_sym_sizeof] = ACTIONS(588), - [sym_number_literal] = ACTIONS(1540), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1542), - [sym_false] = ACTIONS(1542), - [sym_null] = ACTIONS(1542), - [sym_identifier] = ACTIONS(1544), + [anon_sym_if] = ACTIONS(1507), + [anon_sym_switch] = ACTIONS(1509), + [anon_sym_case] = ACTIONS(1511), + [anon_sym_default] = ACTIONS(1513), + [anon_sym_while] = ACTIONS(1515), + [anon_sym_do] = ACTIONS(1517), + [anon_sym_for] = ACTIONS(1519), + [anon_sym_return] = ACTIONS(1521), + [anon_sym_break] = ACTIONS(1523), + [anon_sym_continue] = ACTIONS(1525), + [anon_sym_goto] = ACTIONS(1527), + [anon_sym_AMP] = ACTIONS(552), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_TILDE] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(580), + [anon_sym_DASH] = ACTIONS(580), + [anon_sym_DASH_DASH] = ACTIONS(582), + [anon_sym_PLUS_PLUS] = ACTIONS(582), + [anon_sym_sizeof] = ACTIONS(584), + [sym_number_literal] = ACTIONS(1529), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_null] = ACTIONS(1531), + [sym_identifier] = ACTIONS(1533), [sym_comment] = ACTIONS(39), }, [1003] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2318), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2318), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2318), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2318), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2318), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2318), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2318), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2318), - [sym_preproc_directive] = ACTIONS(2318), - [anon_sym_SEMI] = ACTIONS(2320), - [anon_sym_typedef] = ACTIONS(2318), - [anon_sym_extern] = ACTIONS(2318), - [anon_sym_LBRACE] = ACTIONS(2320), - [anon_sym_LPAREN2] = ACTIONS(2320), - [anon_sym_STAR] = ACTIONS(2320), - [anon_sym_static] = ACTIONS(2318), - [anon_sym_auto] = ACTIONS(2318), - [anon_sym_register] = ACTIONS(2318), - [anon_sym_inline] = ACTIONS(2318), - [anon_sym_const] = ACTIONS(2318), - [anon_sym_restrict] = ACTIONS(2318), - [anon_sym_volatile] = ACTIONS(2318), - [anon_sym__Atomic] = ACTIONS(2318), - [anon_sym_unsigned] = ACTIONS(2318), - [anon_sym_long] = ACTIONS(2318), - [anon_sym_short] = ACTIONS(2318), - [sym_primitive_type] = ACTIONS(2318), - [anon_sym_enum] = ACTIONS(2318), - [anon_sym_struct] = ACTIONS(2318), - [anon_sym_union] = ACTIONS(2318), - [anon_sym_if] = ACTIONS(2318), - [anon_sym_switch] = ACTIONS(2318), - [anon_sym_case] = ACTIONS(2318), - [anon_sym_default] = ACTIONS(2318), - [anon_sym_while] = ACTIONS(2318), - [anon_sym_do] = ACTIONS(2318), - [anon_sym_for] = ACTIONS(2318), - [anon_sym_return] = ACTIONS(2318), - [anon_sym_break] = ACTIONS(2318), - [anon_sym_continue] = ACTIONS(2318), - [anon_sym_goto] = ACTIONS(2318), - [anon_sym_AMP] = ACTIONS(2320), - [anon_sym_BANG] = ACTIONS(2320), - [anon_sym_TILDE] = ACTIONS(2320), - [anon_sym_PLUS] = ACTIONS(2318), - [anon_sym_DASH] = ACTIONS(2318), - [anon_sym_DASH_DASH] = ACTIONS(2320), - [anon_sym_PLUS_PLUS] = ACTIONS(2320), - [anon_sym_sizeof] = ACTIONS(2318), - [sym_number_literal] = ACTIONS(2320), - [anon_sym_SQUOTE] = ACTIONS(2320), - [anon_sym_DQUOTE] = ACTIONS(2320), - [sym_true] = ACTIONS(2318), - [sym_false] = ACTIONS(2318), - [sym_null] = ACTIONS(2318), - [sym_identifier] = ACTIONS(2318), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2307), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2307), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2307), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2307), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2307), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2307), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2307), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2307), + [sym_preproc_directive] = ACTIONS(2307), + [anon_sym_SEMI] = ACTIONS(2309), + [anon_sym_typedef] = ACTIONS(2307), + [anon_sym_extern] = ACTIONS(2307), + [anon_sym_LBRACE] = ACTIONS(2309), + [anon_sym_LPAREN2] = ACTIONS(2309), + [anon_sym_STAR] = ACTIONS(2309), + [anon_sym_static] = ACTIONS(2307), + [anon_sym_auto] = ACTIONS(2307), + [anon_sym_register] = ACTIONS(2307), + [anon_sym_inline] = ACTIONS(2307), + [anon_sym_const] = ACTIONS(2307), + [anon_sym_restrict] = ACTIONS(2307), + [anon_sym_volatile] = ACTIONS(2307), + [anon_sym__Atomic] = ACTIONS(2307), + [anon_sym_unsigned] = ACTIONS(2307), + [anon_sym_long] = ACTIONS(2307), + [anon_sym_short] = ACTIONS(2307), + [sym_primitive_type] = ACTIONS(2307), + [anon_sym_enum] = ACTIONS(2307), + [anon_sym_struct] = ACTIONS(2307), + [anon_sym_union] = ACTIONS(2307), + [anon_sym_if] = ACTIONS(2307), + [anon_sym_switch] = ACTIONS(2307), + [anon_sym_case] = ACTIONS(2307), + [anon_sym_default] = ACTIONS(2307), + [anon_sym_while] = ACTIONS(2307), + [anon_sym_do] = ACTIONS(2307), + [anon_sym_for] = ACTIONS(2307), + [anon_sym_return] = ACTIONS(2307), + [anon_sym_break] = ACTIONS(2307), + [anon_sym_continue] = ACTIONS(2307), + [anon_sym_goto] = ACTIONS(2307), + [anon_sym_AMP] = ACTIONS(2309), + [anon_sym_BANG] = ACTIONS(2309), + [anon_sym_TILDE] = ACTIONS(2309), + [anon_sym_PLUS] = ACTIONS(2307), + [anon_sym_DASH] = ACTIONS(2307), + [anon_sym_DASH_DASH] = ACTIONS(2309), + [anon_sym_PLUS_PLUS] = ACTIONS(2309), + [anon_sym_sizeof] = ACTIONS(2307), + [sym_number_literal] = ACTIONS(2309), + [anon_sym_SQUOTE] = ACTIONS(2309), + [anon_sym_DQUOTE] = ACTIONS(2309), + [sym_true] = ACTIONS(2307), + [sym_false] = ACTIONS(2307), + [sym_null] = ACTIONS(2307), + [sym_identifier] = ACTIONS(2307), [sym_comment] = ACTIONS(39), }, [1004] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3035), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3024), [sym_comment] = ACTIONS(39), }, [1005] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3037), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3026), [sym_comment] = ACTIONS(39), }, [1006] = { @@ -38856,21 +38875,21 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(896), [aux_sym__declaration_specifiers_repeat1] = STATE(20), [aux_sym_sized_type_specifier_repeat1] = STATE(21), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(133), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(135), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1504), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3039), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1508), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1510), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1512), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1514), - [sym_preproc_directive] = ACTIONS(149), - [anon_sym_SEMI] = ACTIONS(1516), - [anon_sym_typedef] = ACTIONS(151), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(131), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(133), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1493), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3028), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1497), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1499), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1501), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1503), + [sym_preproc_directive] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(1505), + [anon_sym_typedef] = ACTIONS(149), [anon_sym_extern] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(734), - [anon_sym_LPAREN2] = ACTIONS(554), - [anon_sym_STAR] = ACTIONS(556), + [anon_sym_LBRACE] = ACTIONS(725), + [anon_sym_LPAREN2] = ACTIONS(550), + [anon_sym_STAR] = ACTIONS(552), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -38886,99 +38905,99 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), - [anon_sym_if] = ACTIONS(1518), - [anon_sym_switch] = ACTIONS(1520), - [anon_sym_case] = ACTIONS(1522), - [anon_sym_default] = ACTIONS(1524), - [anon_sym_while] = ACTIONS(1526), - [anon_sym_do] = ACTIONS(1528), - [anon_sym_for] = ACTIONS(1530), - [anon_sym_return] = ACTIONS(1532), - [anon_sym_break] = ACTIONS(1534), - [anon_sym_continue] = ACTIONS(1536), - [anon_sym_goto] = ACTIONS(1538), - [anon_sym_AMP] = ACTIONS(556), - [anon_sym_BANG] = ACTIONS(580), - [anon_sym_TILDE] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_DASH_DASH] = ACTIONS(586), - [anon_sym_PLUS_PLUS] = ACTIONS(586), - [anon_sym_sizeof] = ACTIONS(588), - [sym_number_literal] = ACTIONS(1540), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1542), - [sym_false] = ACTIONS(1542), - [sym_null] = ACTIONS(1542), - [sym_identifier] = ACTIONS(1544), + [anon_sym_if] = ACTIONS(1507), + [anon_sym_switch] = ACTIONS(1509), + [anon_sym_case] = ACTIONS(1511), + [anon_sym_default] = ACTIONS(1513), + [anon_sym_while] = ACTIONS(1515), + [anon_sym_do] = ACTIONS(1517), + [anon_sym_for] = ACTIONS(1519), + [anon_sym_return] = ACTIONS(1521), + [anon_sym_break] = ACTIONS(1523), + [anon_sym_continue] = ACTIONS(1525), + [anon_sym_goto] = ACTIONS(1527), + [anon_sym_AMP] = ACTIONS(552), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_TILDE] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(580), + [anon_sym_DASH] = ACTIONS(580), + [anon_sym_DASH_DASH] = ACTIONS(582), + [anon_sym_PLUS_PLUS] = ACTIONS(582), + [anon_sym_sizeof] = ACTIONS(584), + [sym_number_literal] = ACTIONS(1529), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_null] = ACTIONS(1531), + [sym_identifier] = ACTIONS(1533), [sym_comment] = ACTIONS(39), }, [1007] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2328), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2328), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2328), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2328), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2328), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2328), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2328), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2328), - [sym_preproc_directive] = ACTIONS(2328), - [anon_sym_SEMI] = ACTIONS(2330), - [anon_sym_typedef] = ACTIONS(2328), - [anon_sym_extern] = ACTIONS(2328), - [anon_sym_LBRACE] = ACTIONS(2330), - [anon_sym_LPAREN2] = ACTIONS(2330), - [anon_sym_STAR] = ACTIONS(2330), - [anon_sym_static] = ACTIONS(2328), - [anon_sym_auto] = ACTIONS(2328), - [anon_sym_register] = ACTIONS(2328), - [anon_sym_inline] = ACTIONS(2328), - [anon_sym_const] = ACTIONS(2328), - [anon_sym_restrict] = ACTIONS(2328), - [anon_sym_volatile] = ACTIONS(2328), - [anon_sym__Atomic] = ACTIONS(2328), - [anon_sym_unsigned] = ACTIONS(2328), - [anon_sym_long] = ACTIONS(2328), - [anon_sym_short] = ACTIONS(2328), - [sym_primitive_type] = ACTIONS(2328), - [anon_sym_enum] = ACTIONS(2328), - [anon_sym_struct] = ACTIONS(2328), - [anon_sym_union] = ACTIONS(2328), - [anon_sym_if] = ACTIONS(2328), - [anon_sym_switch] = ACTIONS(2328), - [anon_sym_case] = ACTIONS(2328), - [anon_sym_default] = ACTIONS(2328), - [anon_sym_while] = ACTIONS(2328), - [anon_sym_do] = ACTIONS(2328), - [anon_sym_for] = ACTIONS(2328), - [anon_sym_return] = ACTIONS(2328), - [anon_sym_break] = ACTIONS(2328), - [anon_sym_continue] = ACTIONS(2328), - [anon_sym_goto] = ACTIONS(2328), - [anon_sym_AMP] = ACTIONS(2330), - [anon_sym_BANG] = ACTIONS(2330), - [anon_sym_TILDE] = ACTIONS(2330), - [anon_sym_PLUS] = ACTIONS(2328), - [anon_sym_DASH] = ACTIONS(2328), - [anon_sym_DASH_DASH] = ACTIONS(2330), - [anon_sym_PLUS_PLUS] = ACTIONS(2330), - [anon_sym_sizeof] = ACTIONS(2328), - [sym_number_literal] = ACTIONS(2330), - [anon_sym_SQUOTE] = ACTIONS(2330), - [anon_sym_DQUOTE] = ACTIONS(2330), - [sym_true] = ACTIONS(2328), - [sym_false] = ACTIONS(2328), - [sym_null] = ACTIONS(2328), - [sym_identifier] = ACTIONS(2328), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2317), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2317), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2317), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2317), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2317), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2317), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2317), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2317), + [sym_preproc_directive] = ACTIONS(2317), + [anon_sym_SEMI] = ACTIONS(2319), + [anon_sym_typedef] = ACTIONS(2317), + [anon_sym_extern] = ACTIONS(2317), + [anon_sym_LBRACE] = ACTIONS(2319), + [anon_sym_LPAREN2] = ACTIONS(2319), + [anon_sym_STAR] = ACTIONS(2319), + [anon_sym_static] = ACTIONS(2317), + [anon_sym_auto] = ACTIONS(2317), + [anon_sym_register] = ACTIONS(2317), + [anon_sym_inline] = ACTIONS(2317), + [anon_sym_const] = ACTIONS(2317), + [anon_sym_restrict] = ACTIONS(2317), + [anon_sym_volatile] = ACTIONS(2317), + [anon_sym__Atomic] = ACTIONS(2317), + [anon_sym_unsigned] = ACTIONS(2317), + [anon_sym_long] = ACTIONS(2317), + [anon_sym_short] = ACTIONS(2317), + [sym_primitive_type] = ACTIONS(2317), + [anon_sym_enum] = ACTIONS(2317), + [anon_sym_struct] = ACTIONS(2317), + [anon_sym_union] = ACTIONS(2317), + [anon_sym_if] = ACTIONS(2317), + [anon_sym_switch] = ACTIONS(2317), + [anon_sym_case] = ACTIONS(2317), + [anon_sym_default] = ACTIONS(2317), + [anon_sym_while] = ACTIONS(2317), + [anon_sym_do] = ACTIONS(2317), + [anon_sym_for] = ACTIONS(2317), + [anon_sym_return] = ACTIONS(2317), + [anon_sym_break] = ACTIONS(2317), + [anon_sym_continue] = ACTIONS(2317), + [anon_sym_goto] = ACTIONS(2317), + [anon_sym_AMP] = ACTIONS(2319), + [anon_sym_BANG] = ACTIONS(2319), + [anon_sym_TILDE] = ACTIONS(2319), + [anon_sym_PLUS] = ACTIONS(2317), + [anon_sym_DASH] = ACTIONS(2317), + [anon_sym_DASH_DASH] = ACTIONS(2319), + [anon_sym_PLUS_PLUS] = ACTIONS(2319), + [anon_sym_sizeof] = ACTIONS(2317), + [sym_number_literal] = ACTIONS(2319), + [anon_sym_SQUOTE] = ACTIONS(2319), + [anon_sym_DQUOTE] = ACTIONS(2319), + [sym_true] = ACTIONS(2317), + [sym_false] = ACTIONS(2317), + [sym_null] = ACTIONS(2317), + [sym_identifier] = ACTIONS(2317), [sym_comment] = ACTIONS(39), }, [1008] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3041), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3030), [sym_comment] = ACTIONS(39), }, [1009] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3043), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3032), [sym_comment] = ACTIONS(39), }, [1010] = { @@ -39039,21 +39058,21 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(896), [aux_sym__declaration_specifiers_repeat1] = STATE(20), [aux_sym_sized_type_specifier_repeat1] = STATE(21), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(133), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(135), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1504), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3045), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1508), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1510), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1512), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1514), - [sym_preproc_directive] = ACTIONS(149), - [anon_sym_SEMI] = ACTIONS(1516), - [anon_sym_typedef] = ACTIONS(151), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(131), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(133), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1493), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3034), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1497), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1499), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1501), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1503), + [sym_preproc_directive] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(1505), + [anon_sym_typedef] = ACTIONS(149), [anon_sym_extern] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(734), - [anon_sym_LPAREN2] = ACTIONS(554), - [anon_sym_STAR] = ACTIONS(556), + [anon_sym_LBRACE] = ACTIONS(725), + [anon_sym_LPAREN2] = ACTIONS(550), + [anon_sym_STAR] = ACTIONS(552), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -39069,32 +39088,32 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), - [anon_sym_if] = ACTIONS(1518), - [anon_sym_switch] = ACTIONS(1520), - [anon_sym_case] = ACTIONS(1522), - [anon_sym_default] = ACTIONS(1524), - [anon_sym_while] = ACTIONS(1526), - [anon_sym_do] = ACTIONS(1528), - [anon_sym_for] = ACTIONS(1530), - [anon_sym_return] = ACTIONS(1532), - [anon_sym_break] = ACTIONS(1534), - [anon_sym_continue] = ACTIONS(1536), - [anon_sym_goto] = ACTIONS(1538), - [anon_sym_AMP] = ACTIONS(556), - [anon_sym_BANG] = ACTIONS(580), - [anon_sym_TILDE] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_DASH_DASH] = ACTIONS(586), - [anon_sym_PLUS_PLUS] = ACTIONS(586), - [anon_sym_sizeof] = ACTIONS(588), - [sym_number_literal] = ACTIONS(1540), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1542), - [sym_false] = ACTIONS(1542), - [sym_null] = ACTIONS(1542), - [sym_identifier] = ACTIONS(1544), + [anon_sym_if] = ACTIONS(1507), + [anon_sym_switch] = ACTIONS(1509), + [anon_sym_case] = ACTIONS(1511), + [anon_sym_default] = ACTIONS(1513), + [anon_sym_while] = ACTIONS(1515), + [anon_sym_do] = ACTIONS(1517), + [anon_sym_for] = ACTIONS(1519), + [anon_sym_return] = ACTIONS(1521), + [anon_sym_break] = ACTIONS(1523), + [anon_sym_continue] = ACTIONS(1525), + [anon_sym_goto] = ACTIONS(1527), + [anon_sym_AMP] = ACTIONS(552), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_TILDE] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(580), + [anon_sym_DASH] = ACTIONS(580), + [anon_sym_DASH_DASH] = ACTIONS(582), + [anon_sym_PLUS_PLUS] = ACTIONS(582), + [anon_sym_sizeof] = ACTIONS(584), + [sym_number_literal] = ACTIONS(1529), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_null] = ACTIONS(1531), + [sym_identifier] = ACTIONS(1533), [sym_comment] = ACTIONS(39), }, [1011] = { @@ -39155,21 +39174,21 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(1114), [aux_sym__declaration_specifiers_repeat1] = STATE(20), [aux_sym_sized_type_specifier_repeat1] = STATE(21), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(133), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(135), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1504), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3047), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1508), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1510), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1512), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1514), - [sym_preproc_directive] = ACTIONS(149), - [anon_sym_SEMI] = ACTIONS(1516), - [anon_sym_typedef] = ACTIONS(151), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(131), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(133), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1493), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3036), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1497), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1499), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1501), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1503), + [sym_preproc_directive] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(1505), + [anon_sym_typedef] = ACTIONS(149), [anon_sym_extern] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(734), - [anon_sym_LPAREN2] = ACTIONS(554), - [anon_sym_STAR] = ACTIONS(556), + [anon_sym_LBRACE] = ACTIONS(725), + [anon_sym_LPAREN2] = ACTIONS(550), + [anon_sym_STAR] = ACTIONS(552), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -39185,32 +39204,32 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), - [anon_sym_if] = ACTIONS(1518), - [anon_sym_switch] = ACTIONS(1520), - [anon_sym_case] = ACTIONS(1522), - [anon_sym_default] = ACTIONS(1524), - [anon_sym_while] = ACTIONS(1526), - [anon_sym_do] = ACTIONS(1528), - [anon_sym_for] = ACTIONS(1530), - [anon_sym_return] = ACTIONS(1532), - [anon_sym_break] = ACTIONS(1534), - [anon_sym_continue] = ACTIONS(1536), - [anon_sym_goto] = ACTIONS(1538), - [anon_sym_AMP] = ACTIONS(556), - [anon_sym_BANG] = ACTIONS(580), - [anon_sym_TILDE] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_DASH_DASH] = ACTIONS(586), - [anon_sym_PLUS_PLUS] = ACTIONS(586), - [anon_sym_sizeof] = ACTIONS(588), - [sym_number_literal] = ACTIONS(1540), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1542), - [sym_false] = ACTIONS(1542), - [sym_null] = ACTIONS(1542), - [sym_identifier] = ACTIONS(1544), + [anon_sym_if] = ACTIONS(1507), + [anon_sym_switch] = ACTIONS(1509), + [anon_sym_case] = ACTIONS(1511), + [anon_sym_default] = ACTIONS(1513), + [anon_sym_while] = ACTIONS(1515), + [anon_sym_do] = ACTIONS(1517), + [anon_sym_for] = ACTIONS(1519), + [anon_sym_return] = ACTIONS(1521), + [anon_sym_break] = ACTIONS(1523), + [anon_sym_continue] = ACTIONS(1525), + [anon_sym_goto] = ACTIONS(1527), + [anon_sym_AMP] = ACTIONS(552), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_TILDE] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(580), + [anon_sym_DASH] = ACTIONS(580), + [anon_sym_DASH_DASH] = ACTIONS(582), + [anon_sym_PLUS_PLUS] = ACTIONS(582), + [anon_sym_sizeof] = ACTIONS(584), + [sym_number_literal] = ACTIONS(1529), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_null] = ACTIONS(1531), + [sym_identifier] = ACTIONS(1533), [sym_comment] = ACTIONS(39), }, [1012] = { @@ -39271,21 +39290,21 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(1118), [aux_sym__declaration_specifiers_repeat1] = STATE(20), [aux_sym_sized_type_specifier_repeat1] = STATE(21), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(133), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(135), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1504), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3049), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1508), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1510), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1512), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1514), - [sym_preproc_directive] = ACTIONS(149), - [anon_sym_SEMI] = ACTIONS(1516), - [anon_sym_typedef] = ACTIONS(151), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(131), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(133), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1493), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3038), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1497), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1499), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1501), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1503), + [sym_preproc_directive] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(1505), + [anon_sym_typedef] = ACTIONS(149), [anon_sym_extern] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(734), - [anon_sym_LPAREN2] = ACTIONS(554), - [anon_sym_STAR] = ACTIONS(556), + [anon_sym_LBRACE] = ACTIONS(725), + [anon_sym_LPAREN2] = ACTIONS(550), + [anon_sym_STAR] = ACTIONS(552), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -39301,32 +39320,32 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), - [anon_sym_if] = ACTIONS(1518), - [anon_sym_switch] = ACTIONS(1520), - [anon_sym_case] = ACTIONS(1522), - [anon_sym_default] = ACTIONS(1524), - [anon_sym_while] = ACTIONS(1526), - [anon_sym_do] = ACTIONS(1528), - [anon_sym_for] = ACTIONS(1530), - [anon_sym_return] = ACTIONS(1532), - [anon_sym_break] = ACTIONS(1534), - [anon_sym_continue] = ACTIONS(1536), - [anon_sym_goto] = ACTIONS(1538), - [anon_sym_AMP] = ACTIONS(556), - [anon_sym_BANG] = ACTIONS(580), - [anon_sym_TILDE] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_DASH_DASH] = ACTIONS(586), - [anon_sym_PLUS_PLUS] = ACTIONS(586), - [anon_sym_sizeof] = ACTIONS(588), - [sym_number_literal] = ACTIONS(1540), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1542), - [sym_false] = ACTIONS(1542), - [sym_null] = ACTIONS(1542), - [sym_identifier] = ACTIONS(1544), + [anon_sym_if] = ACTIONS(1507), + [anon_sym_switch] = ACTIONS(1509), + [anon_sym_case] = ACTIONS(1511), + [anon_sym_default] = ACTIONS(1513), + [anon_sym_while] = ACTIONS(1515), + [anon_sym_do] = ACTIONS(1517), + [anon_sym_for] = ACTIONS(1519), + [anon_sym_return] = ACTIONS(1521), + [anon_sym_break] = ACTIONS(1523), + [anon_sym_continue] = ACTIONS(1525), + [anon_sym_goto] = ACTIONS(1527), + [anon_sym_AMP] = ACTIONS(552), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_TILDE] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(580), + [anon_sym_DASH] = ACTIONS(580), + [anon_sym_DASH_DASH] = ACTIONS(582), + [anon_sym_PLUS_PLUS] = ACTIONS(582), + [anon_sym_sizeof] = ACTIONS(584), + [sym_number_literal] = ACTIONS(1529), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_null] = ACTIONS(1531), + [sym_identifier] = ACTIONS(1533), [sym_comment] = ACTIONS(39), }, [1013] = { @@ -39387,21 +39406,21 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(1122), [aux_sym__declaration_specifiers_repeat1] = STATE(20), [aux_sym_sized_type_specifier_repeat1] = STATE(21), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(133), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(135), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1504), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3051), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1508), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1510), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1512), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1514), - [sym_preproc_directive] = ACTIONS(149), - [anon_sym_SEMI] = ACTIONS(1516), - [anon_sym_typedef] = ACTIONS(151), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(131), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(133), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1493), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3040), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1497), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1499), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1501), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1503), + [sym_preproc_directive] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(1505), + [anon_sym_typedef] = ACTIONS(149), [anon_sym_extern] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(734), - [anon_sym_LPAREN2] = ACTIONS(554), - [anon_sym_STAR] = ACTIONS(556), + [anon_sym_LBRACE] = ACTIONS(725), + [anon_sym_LPAREN2] = ACTIONS(550), + [anon_sym_STAR] = ACTIONS(552), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -39417,32 +39436,32 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), - [anon_sym_if] = ACTIONS(1518), - [anon_sym_switch] = ACTIONS(1520), - [anon_sym_case] = ACTIONS(1522), - [anon_sym_default] = ACTIONS(1524), - [anon_sym_while] = ACTIONS(1526), - [anon_sym_do] = ACTIONS(1528), - [anon_sym_for] = ACTIONS(1530), - [anon_sym_return] = ACTIONS(1532), - [anon_sym_break] = ACTIONS(1534), - [anon_sym_continue] = ACTIONS(1536), - [anon_sym_goto] = ACTIONS(1538), - [anon_sym_AMP] = ACTIONS(556), - [anon_sym_BANG] = ACTIONS(580), - [anon_sym_TILDE] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_DASH_DASH] = ACTIONS(586), - [anon_sym_PLUS_PLUS] = ACTIONS(586), - [anon_sym_sizeof] = ACTIONS(588), - [sym_number_literal] = ACTIONS(1540), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1542), - [sym_false] = ACTIONS(1542), - [sym_null] = ACTIONS(1542), - [sym_identifier] = ACTIONS(1544), + [anon_sym_if] = ACTIONS(1507), + [anon_sym_switch] = ACTIONS(1509), + [anon_sym_case] = ACTIONS(1511), + [anon_sym_default] = ACTIONS(1513), + [anon_sym_while] = ACTIONS(1515), + [anon_sym_do] = ACTIONS(1517), + [anon_sym_for] = ACTIONS(1519), + [anon_sym_return] = ACTIONS(1521), + [anon_sym_break] = ACTIONS(1523), + [anon_sym_continue] = ACTIONS(1525), + [anon_sym_goto] = ACTIONS(1527), + [anon_sym_AMP] = ACTIONS(552), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_TILDE] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(580), + [anon_sym_DASH] = ACTIONS(580), + [anon_sym_DASH_DASH] = ACTIONS(582), + [anon_sym_PLUS_PLUS] = ACTIONS(582), + [anon_sym_sizeof] = ACTIONS(584), + [sym_number_literal] = ACTIONS(1529), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_null] = ACTIONS(1531), + [sym_identifier] = ACTIONS(1533), [sym_comment] = ACTIONS(39), }, [1014] = { @@ -39480,36 +39499,36 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(872), [sym_concatenated_string] = STATE(872), [sym_string_literal] = STATE(253), - [anon_sym_SEMI] = ACTIONS(2254), - [anon_sym_LBRACE] = ACTIONS(1273), - [anon_sym_LPAREN2] = ACTIONS(554), - [anon_sym_STAR] = ACTIONS(556), - [anon_sym_if] = ACTIONS(3053), - [anon_sym_switch] = ACTIONS(3055), - [anon_sym_case] = ACTIONS(3057), - [anon_sym_default] = ACTIONS(3059), - [anon_sym_while] = ACTIONS(3061), - [anon_sym_do] = ACTIONS(2266), - [anon_sym_for] = ACTIONS(3063), - [anon_sym_return] = ACTIONS(2270), - [anon_sym_break] = ACTIONS(2272), - [anon_sym_continue] = ACTIONS(2274), - [anon_sym_goto] = ACTIONS(2276), - [anon_sym_AMP] = ACTIONS(556), - [anon_sym_BANG] = ACTIONS(580), - [anon_sym_TILDE] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_DASH_DASH] = ACTIONS(586), - [anon_sym_PLUS_PLUS] = ACTIONS(586), - [anon_sym_sizeof] = ACTIONS(588), - [sym_number_literal] = ACTIONS(2278), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2280), - [sym_false] = ACTIONS(2280), - [sym_null] = ACTIONS(2280), - [sym_identifier] = ACTIONS(3065), + [anon_sym_SEMI] = ACTIONS(2243), + [anon_sym_LBRACE] = ACTIONS(1264), + [anon_sym_LPAREN2] = ACTIONS(550), + [anon_sym_STAR] = ACTIONS(552), + [anon_sym_if] = ACTIONS(3042), + [anon_sym_switch] = ACTIONS(3044), + [anon_sym_case] = ACTIONS(3046), + [anon_sym_default] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3050), + [anon_sym_do] = ACTIONS(2255), + [anon_sym_for] = ACTIONS(3052), + [anon_sym_return] = ACTIONS(2259), + [anon_sym_break] = ACTIONS(2261), + [anon_sym_continue] = ACTIONS(2263), + [anon_sym_goto] = ACTIONS(2265), + [anon_sym_AMP] = ACTIONS(552), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_TILDE] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(580), + [anon_sym_DASH] = ACTIONS(580), + [anon_sym_DASH_DASH] = ACTIONS(582), + [anon_sym_PLUS_PLUS] = ACTIONS(582), + [anon_sym_sizeof] = ACTIONS(584), + [sym_number_literal] = ACTIONS(2267), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(2269), + [sym_false] = ACTIONS(2269), + [sym_null] = ACTIONS(2269), + [sym_identifier] = ACTIONS(3054), [sym_comment] = ACTIONS(39), }, [1015] = { @@ -39547,77 +39566,77 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(872), [sym_concatenated_string] = STATE(872), [sym_string_literal] = STATE(253), - [anon_sym_SEMI] = ACTIONS(2254), - [anon_sym_LBRACE] = ACTIONS(1273), - [anon_sym_LPAREN2] = ACTIONS(554), - [anon_sym_STAR] = ACTIONS(556), - [anon_sym_if] = ACTIONS(2256), - [anon_sym_switch] = ACTIONS(2258), - [anon_sym_case] = ACTIONS(2260), - [anon_sym_default] = ACTIONS(2262), - [anon_sym_while] = ACTIONS(2264), - [anon_sym_do] = ACTIONS(2266), - [anon_sym_for] = ACTIONS(2268), - [anon_sym_return] = ACTIONS(2270), - [anon_sym_break] = ACTIONS(2272), - [anon_sym_continue] = ACTIONS(2274), - [anon_sym_goto] = ACTIONS(2276), - [anon_sym_AMP] = ACTIONS(556), - [anon_sym_BANG] = ACTIONS(580), - [anon_sym_TILDE] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_DASH_DASH] = ACTIONS(586), - [anon_sym_PLUS_PLUS] = ACTIONS(586), - [anon_sym_sizeof] = ACTIONS(588), - [sym_number_literal] = ACTIONS(2278), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2280), - [sym_false] = ACTIONS(2280), - [sym_null] = ACTIONS(2280), - [sym_identifier] = ACTIONS(3067), + [anon_sym_SEMI] = ACTIONS(2243), + [anon_sym_LBRACE] = ACTIONS(1264), + [anon_sym_LPAREN2] = ACTIONS(550), + [anon_sym_STAR] = ACTIONS(552), + [anon_sym_if] = ACTIONS(2245), + [anon_sym_switch] = ACTIONS(2247), + [anon_sym_case] = ACTIONS(2249), + [anon_sym_default] = ACTIONS(2251), + [anon_sym_while] = ACTIONS(2253), + [anon_sym_do] = ACTIONS(2255), + [anon_sym_for] = ACTIONS(2257), + [anon_sym_return] = ACTIONS(2259), + [anon_sym_break] = ACTIONS(2261), + [anon_sym_continue] = ACTIONS(2263), + [anon_sym_goto] = ACTIONS(2265), + [anon_sym_AMP] = ACTIONS(552), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_TILDE] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(580), + [anon_sym_DASH] = ACTIONS(580), + [anon_sym_DASH_DASH] = ACTIONS(582), + [anon_sym_PLUS_PLUS] = ACTIONS(582), + [anon_sym_sizeof] = ACTIONS(584), + [sym_number_literal] = ACTIONS(2267), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(2269), + [sym_false] = ACTIONS(2269), + [sym_null] = ACTIONS(2269), + [sym_identifier] = ACTIONS(3056), [sym_comment] = ACTIONS(39), }, [1016] = { [sym_argument_list] = STATE(465), - [anon_sym_LPAREN2] = ACTIONS(1096), - [anon_sym_STAR] = ACTIONS(1620), - [anon_sym_LBRACK] = ACTIONS(1100), - [anon_sym_EQ] = ACTIONS(1622), - [anon_sym_COLON] = ACTIONS(3069), - [anon_sym_QMARK] = ACTIONS(1626), - [anon_sym_STAR_EQ] = ACTIONS(1628), - [anon_sym_SLASH_EQ] = ACTIONS(1628), - [anon_sym_PERCENT_EQ] = ACTIONS(1628), - [anon_sym_PLUS_EQ] = ACTIONS(1628), - [anon_sym_DASH_EQ] = ACTIONS(1628), - [anon_sym_LT_LT_EQ] = ACTIONS(1628), - [anon_sym_GT_GT_EQ] = ACTIONS(1628), - [anon_sym_AMP_EQ] = ACTIONS(1628), - [anon_sym_CARET_EQ] = ACTIONS(1628), - [anon_sym_PIPE_EQ] = ACTIONS(1628), - [anon_sym_AMP] = ACTIONS(1630), - [anon_sym_PIPE_PIPE] = ACTIONS(1632), - [anon_sym_AMP_AMP] = ACTIONS(1634), - [anon_sym_PIPE] = ACTIONS(1636), - [anon_sym_CARET] = ACTIONS(1638), - [anon_sym_EQ_EQ] = ACTIONS(1640), - [anon_sym_BANG_EQ] = ACTIONS(1640), - [anon_sym_LT] = ACTIONS(1642), - [anon_sym_GT] = ACTIONS(1642), - [anon_sym_LT_EQ] = ACTIONS(1644), - [anon_sym_GT_EQ] = ACTIONS(1644), - [anon_sym_LT_LT] = ACTIONS(1646), - [anon_sym_GT_GT] = ACTIONS(1646), - [anon_sym_PLUS] = ACTIONS(1648), - [anon_sym_DASH] = ACTIONS(1648), - [anon_sym_SLASH] = ACTIONS(1620), - [anon_sym_PERCENT] = ACTIONS(1620), - [anon_sym_DASH_DASH] = ACTIONS(1128), - [anon_sym_PLUS_PLUS] = ACTIONS(1128), - [anon_sym_DOT] = ACTIONS(1130), - [anon_sym_DASH_GT] = ACTIONS(1130), + [anon_sym_LPAREN2] = ACTIONS(1089), + [anon_sym_STAR] = ACTIONS(1609), + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(1611), + [anon_sym_COLON] = ACTIONS(3058), + [anon_sym_QMARK] = ACTIONS(1615), + [anon_sym_STAR_EQ] = ACTIONS(1617), + [anon_sym_SLASH_EQ] = ACTIONS(1617), + [anon_sym_PERCENT_EQ] = ACTIONS(1617), + [anon_sym_PLUS_EQ] = ACTIONS(1617), + [anon_sym_DASH_EQ] = ACTIONS(1617), + [anon_sym_LT_LT_EQ] = ACTIONS(1617), + [anon_sym_GT_GT_EQ] = ACTIONS(1617), + [anon_sym_AMP_EQ] = ACTIONS(1617), + [anon_sym_CARET_EQ] = ACTIONS(1617), + [anon_sym_PIPE_EQ] = ACTIONS(1617), + [anon_sym_AMP] = ACTIONS(1619), + [anon_sym_PIPE_PIPE] = ACTIONS(1621), + [anon_sym_AMP_AMP] = ACTIONS(1623), + [anon_sym_PIPE] = ACTIONS(1625), + [anon_sym_CARET] = ACTIONS(1627), + [anon_sym_EQ_EQ] = ACTIONS(1629), + [anon_sym_BANG_EQ] = ACTIONS(1629), + [anon_sym_LT] = ACTIONS(1631), + [anon_sym_GT] = ACTIONS(1631), + [anon_sym_LT_EQ] = ACTIONS(1633), + [anon_sym_GT_EQ] = ACTIONS(1633), + [anon_sym_LT_LT] = ACTIONS(1635), + [anon_sym_GT_GT] = ACTIONS(1635), + [anon_sym_PLUS] = ACTIONS(1637), + [anon_sym_DASH] = ACTIONS(1637), + [anon_sym_SLASH] = ACTIONS(1609), + [anon_sym_PERCENT] = ACTIONS(1609), + [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_PLUS_PLUS] = ACTIONS(1121), + [anon_sym_DOT] = ACTIONS(1123), + [anon_sym_DASH_GT] = ACTIONS(1123), [sym_comment] = ACTIONS(39), }, [1017] = { @@ -39668,12 +39687,12 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_macro_type_specifier] = STATE(95), [aux_sym__declaration_specifiers_repeat1] = STATE(96), [aux_sym_sized_type_specifier_repeat1] = STATE(97), - [anon_sym_SEMI] = ACTIONS(2254), - [anon_sym_typedef] = ACTIONS(380), + [anon_sym_SEMI] = ACTIONS(2243), + [anon_sym_typedef] = ACTIONS(376), [anon_sym_extern] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(1273), - [anon_sym_LPAREN2] = ACTIONS(554), - [anon_sym_STAR] = ACTIONS(556), + [anon_sym_LBRACE] = ACTIONS(1264), + [anon_sym_LPAREN2] = ACTIONS(550), + [anon_sym_STAR] = ACTIONS(552), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -39682,39 +39701,39 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_restrict] = ACTIONS(25), [anon_sym_volatile] = ACTIONS(25), [anon_sym__Atomic] = ACTIONS(25), - [anon_sym_unsigned] = ACTIONS(177), - [anon_sym_long] = ACTIONS(177), - [anon_sym_short] = ACTIONS(177), - [sym_primitive_type] = ACTIONS(179), + [anon_sym_unsigned] = ACTIONS(175), + [anon_sym_long] = ACTIONS(175), + [anon_sym_short] = ACTIONS(175), + [sym_primitive_type] = ACTIONS(177), [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), - [anon_sym_if] = ACTIONS(2256), - [anon_sym_switch] = ACTIONS(2258), - [anon_sym_case] = ACTIONS(2260), - [anon_sym_default] = ACTIONS(2262), - [anon_sym_while] = ACTIONS(2264), - [anon_sym_do] = ACTIONS(2266), - [anon_sym_for] = ACTIONS(2268), - [anon_sym_return] = ACTIONS(2270), - [anon_sym_break] = ACTIONS(2272), - [anon_sym_continue] = ACTIONS(2274), - [anon_sym_goto] = ACTIONS(2276), - [anon_sym_AMP] = ACTIONS(556), - [anon_sym_BANG] = ACTIONS(580), - [anon_sym_TILDE] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_DASH_DASH] = ACTIONS(586), - [anon_sym_PLUS_PLUS] = ACTIONS(586), - [anon_sym_sizeof] = ACTIONS(588), - [sym_number_literal] = ACTIONS(2278), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2280), - [sym_false] = ACTIONS(2280), - [sym_null] = ACTIONS(2280), - [sym_identifier] = ACTIONS(3071), + [anon_sym_if] = ACTIONS(2245), + [anon_sym_switch] = ACTIONS(2247), + [anon_sym_case] = ACTIONS(2249), + [anon_sym_default] = ACTIONS(2251), + [anon_sym_while] = ACTIONS(2253), + [anon_sym_do] = ACTIONS(2255), + [anon_sym_for] = ACTIONS(2257), + [anon_sym_return] = ACTIONS(2259), + [anon_sym_break] = ACTIONS(2261), + [anon_sym_continue] = ACTIONS(2263), + [anon_sym_goto] = ACTIONS(2265), + [anon_sym_AMP] = ACTIONS(552), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_TILDE] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(580), + [anon_sym_DASH] = ACTIONS(580), + [anon_sym_DASH_DASH] = ACTIONS(582), + [anon_sym_PLUS_PLUS] = ACTIONS(582), + [anon_sym_sizeof] = ACTIONS(584), + [sym_number_literal] = ACTIONS(2267), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(2269), + [sym_false] = ACTIONS(2269), + [sym_null] = ACTIONS(2269), + [sym_identifier] = ACTIONS(3060), [sym_comment] = ACTIONS(39), }, [1018] = { @@ -39752,40 +39771,40 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(872), [sym_concatenated_string] = STATE(872), [sym_string_literal] = STATE(253), - [anon_sym_SEMI] = ACTIONS(2254), - [anon_sym_LBRACE] = ACTIONS(1273), - [anon_sym_LPAREN2] = ACTIONS(554), - [anon_sym_STAR] = ACTIONS(556), - [anon_sym_if] = ACTIONS(2256), - [anon_sym_switch] = ACTIONS(2258), - [anon_sym_case] = ACTIONS(2260), - [anon_sym_default] = ACTIONS(2262), - [anon_sym_while] = ACTIONS(2264), - [anon_sym_do] = ACTIONS(2266), - [anon_sym_for] = ACTIONS(2268), - [anon_sym_return] = ACTIONS(2270), - [anon_sym_break] = ACTIONS(2272), - [anon_sym_continue] = ACTIONS(2274), - [anon_sym_goto] = ACTIONS(2276), - [anon_sym_AMP] = ACTIONS(556), - [anon_sym_BANG] = ACTIONS(580), - [anon_sym_TILDE] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_DASH_DASH] = ACTIONS(586), - [anon_sym_PLUS_PLUS] = ACTIONS(586), - [anon_sym_sizeof] = ACTIONS(588), - [sym_number_literal] = ACTIONS(2278), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2280), - [sym_false] = ACTIONS(2280), - [sym_null] = ACTIONS(2280), - [sym_identifier] = ACTIONS(3067), + [anon_sym_SEMI] = ACTIONS(2243), + [anon_sym_LBRACE] = ACTIONS(1264), + [anon_sym_LPAREN2] = ACTIONS(550), + [anon_sym_STAR] = ACTIONS(552), + [anon_sym_if] = ACTIONS(2245), + [anon_sym_switch] = ACTIONS(2247), + [anon_sym_case] = ACTIONS(2249), + [anon_sym_default] = ACTIONS(2251), + [anon_sym_while] = ACTIONS(2253), + [anon_sym_do] = ACTIONS(2255), + [anon_sym_for] = ACTIONS(2257), + [anon_sym_return] = ACTIONS(2259), + [anon_sym_break] = ACTIONS(2261), + [anon_sym_continue] = ACTIONS(2263), + [anon_sym_goto] = ACTIONS(2265), + [anon_sym_AMP] = ACTIONS(552), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_TILDE] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(580), + [anon_sym_DASH] = ACTIONS(580), + [anon_sym_DASH_DASH] = ACTIONS(582), + [anon_sym_PLUS_PLUS] = ACTIONS(582), + [anon_sym_sizeof] = ACTIONS(584), + [sym_number_literal] = ACTIONS(2267), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(2269), + [sym_false] = ACTIONS(2269), + [sym_null] = ACTIONS(2269), + [sym_identifier] = ACTIONS(3056), [sym_comment] = ACTIONS(39), }, [1019] = { - [anon_sym_while] = ACTIONS(3073), + [anon_sym_while] = ACTIONS(3062), [sym_comment] = ACTIONS(39), }, [1020] = { @@ -39821,10 +39840,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_macro_type_specifier] = STATE(95), [aux_sym__declaration_specifiers_repeat1] = STATE(96), [aux_sym_sized_type_specifier_repeat1] = STATE(97), - [anon_sym_SEMI] = ACTIONS(3075), + [anon_sym_SEMI] = ACTIONS(3064), [anon_sym_extern] = ACTIONS(23), - [anon_sym_LPAREN2] = ACTIONS(847), - [anon_sym_STAR] = ACTIONS(849), + [anon_sym_LPAREN2] = ACTIONS(838), + [anon_sym_STAR] = ACTIONS(840), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -39833,247 +39852,247 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_restrict] = ACTIONS(25), [anon_sym_volatile] = ACTIONS(25), [anon_sym__Atomic] = ACTIONS(25), - [anon_sym_unsigned] = ACTIONS(177), - [anon_sym_long] = ACTIONS(177), - [anon_sym_short] = ACTIONS(177), - [sym_primitive_type] = ACTIONS(179), + [anon_sym_unsigned] = ACTIONS(175), + [anon_sym_long] = ACTIONS(175), + [anon_sym_short] = ACTIONS(175), + [sym_primitive_type] = ACTIONS(177), [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), - [anon_sym_AMP] = ACTIONS(849), - [anon_sym_BANG] = ACTIONS(851), - [anon_sym_TILDE] = ACTIONS(853), - [anon_sym_PLUS] = ACTIONS(855), - [anon_sym_DASH] = ACTIONS(855), - [anon_sym_DASH_DASH] = ACTIONS(857), - [anon_sym_PLUS_PLUS] = ACTIONS(857), - [anon_sym_sizeof] = ACTIONS(859), - [sym_number_literal] = ACTIONS(3077), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(3079), - [sym_false] = ACTIONS(3079), - [sym_null] = ACTIONS(3079), - [sym_identifier] = ACTIONS(1670), + [anon_sym_AMP] = ACTIONS(840), + [anon_sym_BANG] = ACTIONS(842), + [anon_sym_TILDE] = ACTIONS(844), + [anon_sym_PLUS] = ACTIONS(846), + [anon_sym_DASH] = ACTIONS(846), + [anon_sym_DASH_DASH] = ACTIONS(848), + [anon_sym_PLUS_PLUS] = ACTIONS(848), + [anon_sym_sizeof] = ACTIONS(850), + [sym_number_literal] = ACTIONS(3066), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(3068), + [sym_false] = ACTIONS(3068), + [sym_null] = ACTIONS(3068), + [sym_identifier] = ACTIONS(1659), [sym_comment] = ACTIONS(39), }, [1021] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1672), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1672), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1672), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1672), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1672), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1672), - [sym_preproc_directive] = ACTIONS(1672), - [anon_sym_SEMI] = ACTIONS(1674), - [anon_sym_typedef] = ACTIONS(1672), - [anon_sym_extern] = ACTIONS(1672), - [anon_sym_LBRACE] = ACTIONS(1674), - [anon_sym_LPAREN2] = ACTIONS(1674), - [anon_sym_STAR] = ACTIONS(1674), - [anon_sym_static] = ACTIONS(1672), - [anon_sym_auto] = ACTIONS(1672), - [anon_sym_register] = ACTIONS(1672), - [anon_sym_inline] = ACTIONS(1672), - [anon_sym_const] = ACTIONS(1672), - [anon_sym_restrict] = ACTIONS(1672), - [anon_sym_volatile] = ACTIONS(1672), - [anon_sym__Atomic] = ACTIONS(1672), - [anon_sym_unsigned] = ACTIONS(1672), - [anon_sym_long] = ACTIONS(1672), - [anon_sym_short] = ACTIONS(1672), - [sym_primitive_type] = ACTIONS(1672), - [anon_sym_enum] = ACTIONS(1672), - [anon_sym_struct] = ACTIONS(1672), - [anon_sym_union] = ACTIONS(1672), - [anon_sym_if] = ACTIONS(1672), - [anon_sym_else] = ACTIONS(1672), - [anon_sym_switch] = ACTIONS(1672), - [anon_sym_case] = ACTIONS(1672), - [anon_sym_default] = ACTIONS(1672), - [anon_sym_while] = ACTIONS(1672), - [anon_sym_do] = ACTIONS(1672), - [anon_sym_for] = ACTIONS(1672), - [anon_sym_return] = ACTIONS(1672), - [anon_sym_break] = ACTIONS(1672), - [anon_sym_continue] = ACTIONS(1672), - [anon_sym_goto] = ACTIONS(1672), - [anon_sym_AMP] = ACTIONS(1674), - [anon_sym_BANG] = ACTIONS(1674), - [anon_sym_TILDE] = ACTIONS(1674), - [anon_sym_PLUS] = ACTIONS(1672), - [anon_sym_DASH] = ACTIONS(1672), - [anon_sym_DASH_DASH] = ACTIONS(1674), - [anon_sym_PLUS_PLUS] = ACTIONS(1674), - [anon_sym_sizeof] = ACTIONS(1672), - [sym_number_literal] = ACTIONS(1674), - [anon_sym_SQUOTE] = ACTIONS(1674), - [anon_sym_DQUOTE] = ACTIONS(1674), - [sym_true] = ACTIONS(1672), - [sym_false] = ACTIONS(1672), - [sym_null] = ACTIONS(1672), - [sym_identifier] = ACTIONS(1672), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1661), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1661), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1661), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1661), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1661), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1661), + [sym_preproc_directive] = ACTIONS(1661), + [anon_sym_SEMI] = ACTIONS(1663), + [anon_sym_typedef] = ACTIONS(1661), + [anon_sym_extern] = ACTIONS(1661), + [anon_sym_LBRACE] = ACTIONS(1663), + [anon_sym_LPAREN2] = ACTIONS(1663), + [anon_sym_STAR] = ACTIONS(1663), + [anon_sym_static] = ACTIONS(1661), + [anon_sym_auto] = ACTIONS(1661), + [anon_sym_register] = ACTIONS(1661), + [anon_sym_inline] = ACTIONS(1661), + [anon_sym_const] = ACTIONS(1661), + [anon_sym_restrict] = ACTIONS(1661), + [anon_sym_volatile] = ACTIONS(1661), + [anon_sym__Atomic] = ACTIONS(1661), + [anon_sym_unsigned] = ACTIONS(1661), + [anon_sym_long] = ACTIONS(1661), + [anon_sym_short] = ACTIONS(1661), + [sym_primitive_type] = ACTIONS(1661), + [anon_sym_enum] = ACTIONS(1661), + [anon_sym_struct] = ACTIONS(1661), + [anon_sym_union] = ACTIONS(1661), + [anon_sym_if] = ACTIONS(1661), + [anon_sym_else] = ACTIONS(1661), + [anon_sym_switch] = ACTIONS(1661), + [anon_sym_case] = ACTIONS(1661), + [anon_sym_default] = ACTIONS(1661), + [anon_sym_while] = ACTIONS(1661), + [anon_sym_do] = ACTIONS(1661), + [anon_sym_for] = ACTIONS(1661), + [anon_sym_return] = ACTIONS(1661), + [anon_sym_break] = ACTIONS(1661), + [anon_sym_continue] = ACTIONS(1661), + [anon_sym_goto] = ACTIONS(1661), + [anon_sym_AMP] = ACTIONS(1663), + [anon_sym_BANG] = ACTIONS(1663), + [anon_sym_TILDE] = ACTIONS(1663), + [anon_sym_PLUS] = ACTIONS(1661), + [anon_sym_DASH] = ACTIONS(1661), + [anon_sym_DASH_DASH] = ACTIONS(1663), + [anon_sym_PLUS_PLUS] = ACTIONS(1663), + [anon_sym_sizeof] = ACTIONS(1661), + [sym_number_literal] = ACTIONS(1663), + [anon_sym_SQUOTE] = ACTIONS(1663), + [anon_sym_DQUOTE] = ACTIONS(1663), + [sym_true] = ACTIONS(1661), + [sym_false] = ACTIONS(1661), + [sym_null] = ACTIONS(1661), + [sym_identifier] = ACTIONS(1661), [sym_comment] = ACTIONS(39), }, [1022] = { [sym_argument_list] = STATE(465), - [anon_sym_SEMI] = ACTIONS(3081), - [anon_sym_LPAREN2] = ACTIONS(1096), - [anon_sym_STAR] = ACTIONS(1436), - [anon_sym_LBRACK] = ACTIONS(1100), - [anon_sym_EQ] = ACTIONS(1438), - [anon_sym_QMARK] = ACTIONS(1440), - [anon_sym_STAR_EQ] = ACTIONS(1442), - [anon_sym_SLASH_EQ] = ACTIONS(1442), - [anon_sym_PERCENT_EQ] = ACTIONS(1442), - [anon_sym_PLUS_EQ] = ACTIONS(1442), - [anon_sym_DASH_EQ] = ACTIONS(1442), - [anon_sym_LT_LT_EQ] = ACTIONS(1442), - [anon_sym_GT_GT_EQ] = ACTIONS(1442), - [anon_sym_AMP_EQ] = ACTIONS(1442), - [anon_sym_CARET_EQ] = ACTIONS(1442), - [anon_sym_PIPE_EQ] = ACTIONS(1442), - [anon_sym_AMP] = ACTIONS(1444), - [anon_sym_PIPE_PIPE] = ACTIONS(1446), - [anon_sym_AMP_AMP] = ACTIONS(1448), - [anon_sym_PIPE] = ACTIONS(1450), - [anon_sym_CARET] = ACTIONS(1452), - [anon_sym_EQ_EQ] = ACTIONS(1454), - [anon_sym_BANG_EQ] = ACTIONS(1454), - [anon_sym_LT] = ACTIONS(1456), - [anon_sym_GT] = ACTIONS(1456), - [anon_sym_LT_EQ] = ACTIONS(1458), - [anon_sym_GT_EQ] = ACTIONS(1458), - [anon_sym_LT_LT] = ACTIONS(1460), - [anon_sym_GT_GT] = ACTIONS(1460), - [anon_sym_PLUS] = ACTIONS(1462), - [anon_sym_DASH] = ACTIONS(1462), - [anon_sym_SLASH] = ACTIONS(1436), - [anon_sym_PERCENT] = ACTIONS(1436), - [anon_sym_DASH_DASH] = ACTIONS(1128), - [anon_sym_PLUS_PLUS] = ACTIONS(1128), - [anon_sym_DOT] = ACTIONS(1130), - [anon_sym_DASH_GT] = ACTIONS(1130), + [anon_sym_SEMI] = ACTIONS(3070), + [anon_sym_LPAREN2] = ACTIONS(1089), + [anon_sym_STAR] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(1429), + [anon_sym_QMARK] = ACTIONS(1431), + [anon_sym_STAR_EQ] = ACTIONS(1433), + [anon_sym_SLASH_EQ] = ACTIONS(1433), + [anon_sym_PERCENT_EQ] = ACTIONS(1433), + [anon_sym_PLUS_EQ] = ACTIONS(1433), + [anon_sym_DASH_EQ] = ACTIONS(1433), + [anon_sym_LT_LT_EQ] = ACTIONS(1433), + [anon_sym_GT_GT_EQ] = ACTIONS(1433), + [anon_sym_AMP_EQ] = ACTIONS(1433), + [anon_sym_CARET_EQ] = ACTIONS(1433), + [anon_sym_PIPE_EQ] = ACTIONS(1433), + [anon_sym_AMP] = ACTIONS(1435), + [anon_sym_PIPE_PIPE] = ACTIONS(1437), + [anon_sym_AMP_AMP] = ACTIONS(1439), + [anon_sym_PIPE] = ACTIONS(1441), + [anon_sym_CARET] = ACTIONS(1443), + [anon_sym_EQ_EQ] = ACTIONS(1445), + [anon_sym_BANG_EQ] = ACTIONS(1445), + [anon_sym_LT] = ACTIONS(1447), + [anon_sym_GT] = ACTIONS(1447), + [anon_sym_LT_EQ] = ACTIONS(1449), + [anon_sym_GT_EQ] = ACTIONS(1449), + [anon_sym_LT_LT] = ACTIONS(1451), + [anon_sym_GT_GT] = ACTIONS(1451), + [anon_sym_PLUS] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1453), + [anon_sym_SLASH] = ACTIONS(1427), + [anon_sym_PERCENT] = ACTIONS(1427), + [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_PLUS_PLUS] = ACTIONS(1121), + [anon_sym_DOT] = ACTIONS(1123), + [anon_sym_DASH_GT] = ACTIONS(1123), [sym_comment] = ACTIONS(39), }, [1023] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1678), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1678), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1678), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1678), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1678), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1678), - [sym_preproc_directive] = ACTIONS(1678), - [anon_sym_SEMI] = ACTIONS(1680), - [anon_sym_typedef] = ACTIONS(1678), - [anon_sym_extern] = ACTIONS(1678), - [anon_sym_LBRACE] = ACTIONS(1680), - [anon_sym_LPAREN2] = ACTIONS(1680), - [anon_sym_STAR] = ACTIONS(1680), - [anon_sym_static] = ACTIONS(1678), - [anon_sym_auto] = ACTIONS(1678), - [anon_sym_register] = ACTIONS(1678), - [anon_sym_inline] = ACTIONS(1678), - [anon_sym_const] = ACTIONS(1678), - [anon_sym_restrict] = ACTIONS(1678), - [anon_sym_volatile] = ACTIONS(1678), - [anon_sym__Atomic] = ACTIONS(1678), - [anon_sym_unsigned] = ACTIONS(1678), - [anon_sym_long] = ACTIONS(1678), - [anon_sym_short] = ACTIONS(1678), - [sym_primitive_type] = ACTIONS(1678), - [anon_sym_enum] = ACTIONS(1678), - [anon_sym_struct] = ACTIONS(1678), - [anon_sym_union] = ACTIONS(1678), - [anon_sym_if] = ACTIONS(1678), - [anon_sym_else] = ACTIONS(1678), - [anon_sym_switch] = ACTIONS(1678), - [anon_sym_case] = ACTIONS(1678), - [anon_sym_default] = ACTIONS(1678), - [anon_sym_while] = ACTIONS(1678), - [anon_sym_do] = ACTIONS(1678), - [anon_sym_for] = ACTIONS(1678), - [anon_sym_return] = ACTIONS(1678), - [anon_sym_break] = ACTIONS(1678), - [anon_sym_continue] = ACTIONS(1678), - [anon_sym_goto] = ACTIONS(1678), - [anon_sym_AMP] = ACTIONS(1680), - [anon_sym_BANG] = ACTIONS(1680), - [anon_sym_TILDE] = ACTIONS(1680), - [anon_sym_PLUS] = ACTIONS(1678), - [anon_sym_DASH] = ACTIONS(1678), - [anon_sym_DASH_DASH] = ACTIONS(1680), - [anon_sym_PLUS_PLUS] = ACTIONS(1680), - [anon_sym_sizeof] = ACTIONS(1678), - [sym_number_literal] = ACTIONS(1680), - [anon_sym_SQUOTE] = ACTIONS(1680), - [anon_sym_DQUOTE] = ACTIONS(1680), - [sym_true] = ACTIONS(1678), - [sym_false] = ACTIONS(1678), - [sym_null] = ACTIONS(1678), - [sym_identifier] = ACTIONS(1678), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1667), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1667), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1667), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1667), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1667), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1667), + [sym_preproc_directive] = ACTIONS(1667), + [anon_sym_SEMI] = ACTIONS(1669), + [anon_sym_typedef] = ACTIONS(1667), + [anon_sym_extern] = ACTIONS(1667), + [anon_sym_LBRACE] = ACTIONS(1669), + [anon_sym_LPAREN2] = ACTIONS(1669), + [anon_sym_STAR] = ACTIONS(1669), + [anon_sym_static] = ACTIONS(1667), + [anon_sym_auto] = ACTIONS(1667), + [anon_sym_register] = ACTIONS(1667), + [anon_sym_inline] = ACTIONS(1667), + [anon_sym_const] = ACTIONS(1667), + [anon_sym_restrict] = ACTIONS(1667), + [anon_sym_volatile] = ACTIONS(1667), + [anon_sym__Atomic] = ACTIONS(1667), + [anon_sym_unsigned] = ACTIONS(1667), + [anon_sym_long] = ACTIONS(1667), + [anon_sym_short] = ACTIONS(1667), + [sym_primitive_type] = ACTIONS(1667), + [anon_sym_enum] = ACTIONS(1667), + [anon_sym_struct] = ACTIONS(1667), + [anon_sym_union] = ACTIONS(1667), + [anon_sym_if] = ACTIONS(1667), + [anon_sym_else] = ACTIONS(1667), + [anon_sym_switch] = ACTIONS(1667), + [anon_sym_case] = ACTIONS(1667), + [anon_sym_default] = ACTIONS(1667), + [anon_sym_while] = ACTIONS(1667), + [anon_sym_do] = ACTIONS(1667), + [anon_sym_for] = ACTIONS(1667), + [anon_sym_return] = ACTIONS(1667), + [anon_sym_break] = ACTIONS(1667), + [anon_sym_continue] = ACTIONS(1667), + [anon_sym_goto] = ACTIONS(1667), + [anon_sym_AMP] = ACTIONS(1669), + [anon_sym_BANG] = ACTIONS(1669), + [anon_sym_TILDE] = ACTIONS(1669), + [anon_sym_PLUS] = ACTIONS(1667), + [anon_sym_DASH] = ACTIONS(1667), + [anon_sym_DASH_DASH] = ACTIONS(1669), + [anon_sym_PLUS_PLUS] = ACTIONS(1669), + [anon_sym_sizeof] = ACTIONS(1667), + [sym_number_literal] = ACTIONS(1669), + [anon_sym_SQUOTE] = ACTIONS(1669), + [anon_sym_DQUOTE] = ACTIONS(1669), + [sym_true] = ACTIONS(1667), + [sym_false] = ACTIONS(1667), + [sym_null] = ACTIONS(1667), + [sym_identifier] = ACTIONS(1667), [sym_comment] = ACTIONS(39), }, [1024] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1682), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1682), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1682), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1682), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1682), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1682), - [sym_preproc_directive] = ACTIONS(1682), - [anon_sym_SEMI] = ACTIONS(1684), - [anon_sym_typedef] = ACTIONS(1682), - [anon_sym_extern] = ACTIONS(1682), - [anon_sym_LBRACE] = ACTIONS(1684), - [anon_sym_LPAREN2] = ACTIONS(1684), - [anon_sym_STAR] = ACTIONS(1684), - [anon_sym_static] = ACTIONS(1682), - [anon_sym_auto] = ACTIONS(1682), - [anon_sym_register] = ACTIONS(1682), - [anon_sym_inline] = ACTIONS(1682), - [anon_sym_const] = ACTIONS(1682), - [anon_sym_restrict] = ACTIONS(1682), - [anon_sym_volatile] = ACTIONS(1682), - [anon_sym__Atomic] = ACTIONS(1682), - [anon_sym_unsigned] = ACTIONS(1682), - [anon_sym_long] = ACTIONS(1682), - [anon_sym_short] = ACTIONS(1682), - [sym_primitive_type] = ACTIONS(1682), - [anon_sym_enum] = ACTIONS(1682), - [anon_sym_struct] = ACTIONS(1682), - [anon_sym_union] = ACTIONS(1682), - [anon_sym_if] = ACTIONS(1682), - [anon_sym_else] = ACTIONS(1682), - [anon_sym_switch] = ACTIONS(1682), - [anon_sym_case] = ACTIONS(1682), - [anon_sym_default] = ACTIONS(1682), - [anon_sym_while] = ACTIONS(1682), - [anon_sym_do] = ACTIONS(1682), - [anon_sym_for] = ACTIONS(1682), - [anon_sym_return] = ACTIONS(1682), - [anon_sym_break] = ACTIONS(1682), - [anon_sym_continue] = ACTIONS(1682), - [anon_sym_goto] = ACTIONS(1682), - [anon_sym_AMP] = ACTIONS(1684), - [anon_sym_BANG] = ACTIONS(1684), - [anon_sym_TILDE] = ACTIONS(1684), - [anon_sym_PLUS] = ACTIONS(1682), - [anon_sym_DASH] = ACTIONS(1682), - [anon_sym_DASH_DASH] = ACTIONS(1684), - [anon_sym_PLUS_PLUS] = ACTIONS(1684), - [anon_sym_sizeof] = ACTIONS(1682), - [sym_number_literal] = ACTIONS(1684), - [anon_sym_SQUOTE] = ACTIONS(1684), - [anon_sym_DQUOTE] = ACTIONS(1684), - [sym_true] = ACTIONS(1682), - [sym_false] = ACTIONS(1682), - [sym_null] = ACTIONS(1682), - [sym_identifier] = ACTIONS(1682), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1671), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1671), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1671), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1671), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1671), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1671), + [sym_preproc_directive] = ACTIONS(1671), + [anon_sym_SEMI] = ACTIONS(1673), + [anon_sym_typedef] = ACTIONS(1671), + [anon_sym_extern] = ACTIONS(1671), + [anon_sym_LBRACE] = ACTIONS(1673), + [anon_sym_LPAREN2] = ACTIONS(1673), + [anon_sym_STAR] = ACTIONS(1673), + [anon_sym_static] = ACTIONS(1671), + [anon_sym_auto] = ACTIONS(1671), + [anon_sym_register] = ACTIONS(1671), + [anon_sym_inline] = ACTIONS(1671), + [anon_sym_const] = ACTIONS(1671), + [anon_sym_restrict] = ACTIONS(1671), + [anon_sym_volatile] = ACTIONS(1671), + [anon_sym__Atomic] = ACTIONS(1671), + [anon_sym_unsigned] = ACTIONS(1671), + [anon_sym_long] = ACTIONS(1671), + [anon_sym_short] = ACTIONS(1671), + [sym_primitive_type] = ACTIONS(1671), + [anon_sym_enum] = ACTIONS(1671), + [anon_sym_struct] = ACTIONS(1671), + [anon_sym_union] = ACTIONS(1671), + [anon_sym_if] = ACTIONS(1671), + [anon_sym_else] = ACTIONS(1671), + [anon_sym_switch] = ACTIONS(1671), + [anon_sym_case] = ACTIONS(1671), + [anon_sym_default] = ACTIONS(1671), + [anon_sym_while] = ACTIONS(1671), + [anon_sym_do] = ACTIONS(1671), + [anon_sym_for] = ACTIONS(1671), + [anon_sym_return] = ACTIONS(1671), + [anon_sym_break] = ACTIONS(1671), + [anon_sym_continue] = ACTIONS(1671), + [anon_sym_goto] = ACTIONS(1671), + [anon_sym_AMP] = ACTIONS(1673), + [anon_sym_BANG] = ACTIONS(1673), + [anon_sym_TILDE] = ACTIONS(1673), + [anon_sym_PLUS] = ACTIONS(1671), + [anon_sym_DASH] = ACTIONS(1671), + [anon_sym_DASH_DASH] = ACTIONS(1673), + [anon_sym_PLUS_PLUS] = ACTIONS(1673), + [anon_sym_sizeof] = ACTIONS(1671), + [sym_number_literal] = ACTIONS(1673), + [anon_sym_SQUOTE] = ACTIONS(1673), + [anon_sym_DQUOTE] = ACTIONS(1673), + [sym_true] = ACTIONS(1671), + [sym_false] = ACTIONS(1671), + [sym_null] = ACTIONS(1671), + [sym_identifier] = ACTIONS(1671), [sym_comment] = ACTIONS(39), }, [1025] = { - [anon_sym_SEMI] = ACTIONS(3083), + [anon_sym_SEMI] = ACTIONS(3072), [sym_comment] = ACTIONS(39), }, [1026] = { @@ -40111,104 +40130,104 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(872), [sym_concatenated_string] = STATE(872), [sym_string_literal] = STATE(253), - [anon_sym_SEMI] = ACTIONS(2254), - [anon_sym_LBRACE] = ACTIONS(1273), - [anon_sym_LPAREN2] = ACTIONS(554), - [anon_sym_STAR] = ACTIONS(556), - [anon_sym_if] = ACTIONS(2256), - [anon_sym_switch] = ACTIONS(2258), - [anon_sym_case] = ACTIONS(2260), - [anon_sym_default] = ACTIONS(2262), - [anon_sym_while] = ACTIONS(2264), - [anon_sym_do] = ACTIONS(2266), - [anon_sym_for] = ACTIONS(2268), - [anon_sym_return] = ACTIONS(2270), - [anon_sym_break] = ACTIONS(2272), - [anon_sym_continue] = ACTIONS(2274), - [anon_sym_goto] = ACTIONS(2276), - [anon_sym_AMP] = ACTIONS(556), - [anon_sym_BANG] = ACTIONS(580), - [anon_sym_TILDE] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_DASH_DASH] = ACTIONS(586), - [anon_sym_PLUS_PLUS] = ACTIONS(586), - [anon_sym_sizeof] = ACTIONS(588), - [sym_number_literal] = ACTIONS(2278), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2280), - [sym_false] = ACTIONS(2280), - [sym_null] = ACTIONS(2280), - [sym_identifier] = ACTIONS(3067), + [anon_sym_SEMI] = ACTIONS(2243), + [anon_sym_LBRACE] = ACTIONS(1264), + [anon_sym_LPAREN2] = ACTIONS(550), + [anon_sym_STAR] = ACTIONS(552), + [anon_sym_if] = ACTIONS(2245), + [anon_sym_switch] = ACTIONS(2247), + [anon_sym_case] = ACTIONS(2249), + [anon_sym_default] = ACTIONS(2251), + [anon_sym_while] = ACTIONS(2253), + [anon_sym_do] = ACTIONS(2255), + [anon_sym_for] = ACTIONS(2257), + [anon_sym_return] = ACTIONS(2259), + [anon_sym_break] = ACTIONS(2261), + [anon_sym_continue] = ACTIONS(2263), + [anon_sym_goto] = ACTIONS(2265), + [anon_sym_AMP] = ACTIONS(552), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_TILDE] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(580), + [anon_sym_DASH] = ACTIONS(580), + [anon_sym_DASH_DASH] = ACTIONS(582), + [anon_sym_PLUS_PLUS] = ACTIONS(582), + [anon_sym_sizeof] = ACTIONS(584), + [sym_number_literal] = ACTIONS(2267), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(2269), + [sym_false] = ACTIONS(2269), + [sym_null] = ACTIONS(2269), + [sym_identifier] = ACTIONS(3056), [sym_comment] = ACTIONS(39), }, [1027] = { [sym_parameter_list] = STATE(131), [aux_sym_declaration_repeat1] = STATE(543), - [anon_sym_COMMA] = ACTIONS(237), - [anon_sym_SEMI] = ACTIONS(1271), - [anon_sym_LPAREN2] = ACTIONS(243), - [anon_sym_LBRACK] = ACTIONS(245), - [anon_sym_EQ] = ACTIONS(247), + [anon_sym_COMMA] = ACTIONS(235), + [anon_sym_SEMI] = ACTIONS(1262), + [anon_sym_LPAREN2] = ACTIONS(241), + [anon_sym_LBRACK] = ACTIONS(243), + [anon_sym_EQ] = ACTIONS(245), [sym_comment] = ACTIONS(39), }, [1028] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1710), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1710), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1710), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1710), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1710), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1710), - [sym_preproc_directive] = ACTIONS(1710), - [anon_sym_SEMI] = ACTIONS(1712), - [anon_sym_typedef] = ACTIONS(1710), - [anon_sym_extern] = ACTIONS(1710), - [anon_sym_LBRACE] = ACTIONS(1712), - [anon_sym_LPAREN2] = ACTIONS(1712), - [anon_sym_STAR] = ACTIONS(1712), - [anon_sym_static] = ACTIONS(1710), - [anon_sym_auto] = ACTIONS(1710), - [anon_sym_register] = ACTIONS(1710), - [anon_sym_inline] = ACTIONS(1710), - [anon_sym_const] = ACTIONS(1710), - [anon_sym_restrict] = ACTIONS(1710), - [anon_sym_volatile] = ACTIONS(1710), - [anon_sym__Atomic] = ACTIONS(1710), - [anon_sym_unsigned] = ACTIONS(1710), - [anon_sym_long] = ACTIONS(1710), - [anon_sym_short] = ACTIONS(1710), - [sym_primitive_type] = ACTIONS(1710), - [anon_sym_enum] = ACTIONS(1710), - [anon_sym_struct] = ACTIONS(1710), - [anon_sym_union] = ACTIONS(1710), - [anon_sym_if] = ACTIONS(1710), - [anon_sym_else] = ACTIONS(1710), - [anon_sym_switch] = ACTIONS(1710), - [anon_sym_case] = ACTIONS(1710), - [anon_sym_default] = ACTIONS(1710), - [anon_sym_while] = ACTIONS(1710), - [anon_sym_do] = ACTIONS(1710), - [anon_sym_for] = ACTIONS(1710), - [anon_sym_return] = ACTIONS(1710), - [anon_sym_break] = ACTIONS(1710), - [anon_sym_continue] = ACTIONS(1710), - [anon_sym_goto] = ACTIONS(1710), - [anon_sym_AMP] = ACTIONS(1712), - [anon_sym_BANG] = ACTIONS(1712), - [anon_sym_TILDE] = ACTIONS(1712), - [anon_sym_PLUS] = ACTIONS(1710), - [anon_sym_DASH] = ACTIONS(1710), - [anon_sym_DASH_DASH] = ACTIONS(1712), - [anon_sym_PLUS_PLUS] = ACTIONS(1712), - [anon_sym_sizeof] = ACTIONS(1710), - [sym_number_literal] = ACTIONS(1712), - [anon_sym_SQUOTE] = ACTIONS(1712), - [anon_sym_DQUOTE] = ACTIONS(1712), - [sym_true] = ACTIONS(1710), - [sym_false] = ACTIONS(1710), - [sym_null] = ACTIONS(1710), - [sym_identifier] = ACTIONS(1710), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1699), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1699), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1699), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1699), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1699), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1699), + [sym_preproc_directive] = ACTIONS(1699), + [anon_sym_SEMI] = ACTIONS(1701), + [anon_sym_typedef] = ACTIONS(1699), + [anon_sym_extern] = ACTIONS(1699), + [anon_sym_LBRACE] = ACTIONS(1701), + [anon_sym_LPAREN2] = ACTIONS(1701), + [anon_sym_STAR] = ACTIONS(1701), + [anon_sym_static] = ACTIONS(1699), + [anon_sym_auto] = ACTIONS(1699), + [anon_sym_register] = ACTIONS(1699), + [anon_sym_inline] = ACTIONS(1699), + [anon_sym_const] = ACTIONS(1699), + [anon_sym_restrict] = ACTIONS(1699), + [anon_sym_volatile] = ACTIONS(1699), + [anon_sym__Atomic] = ACTIONS(1699), + [anon_sym_unsigned] = ACTIONS(1699), + [anon_sym_long] = ACTIONS(1699), + [anon_sym_short] = ACTIONS(1699), + [sym_primitive_type] = ACTIONS(1699), + [anon_sym_enum] = ACTIONS(1699), + [anon_sym_struct] = ACTIONS(1699), + [anon_sym_union] = ACTIONS(1699), + [anon_sym_if] = ACTIONS(1699), + [anon_sym_else] = ACTIONS(1699), + [anon_sym_switch] = ACTIONS(1699), + [anon_sym_case] = ACTIONS(1699), + [anon_sym_default] = ACTIONS(1699), + [anon_sym_while] = ACTIONS(1699), + [anon_sym_do] = ACTIONS(1699), + [anon_sym_for] = ACTIONS(1699), + [anon_sym_return] = ACTIONS(1699), + [anon_sym_break] = ACTIONS(1699), + [anon_sym_continue] = ACTIONS(1699), + [anon_sym_goto] = ACTIONS(1699), + [anon_sym_AMP] = ACTIONS(1701), + [anon_sym_BANG] = ACTIONS(1701), + [anon_sym_TILDE] = ACTIONS(1701), + [anon_sym_PLUS] = ACTIONS(1699), + [anon_sym_DASH] = ACTIONS(1699), + [anon_sym_DASH_DASH] = ACTIONS(1701), + [anon_sym_PLUS_PLUS] = ACTIONS(1701), + [anon_sym_sizeof] = ACTIONS(1699), + [sym_number_literal] = ACTIONS(1701), + [anon_sym_SQUOTE] = ACTIONS(1701), + [anon_sym_DQUOTE] = ACTIONS(1701), + [sym_true] = ACTIONS(1699), + [sym_false] = ACTIONS(1699), + [sym_null] = ACTIONS(1699), + [sym_identifier] = ACTIONS(1699), [sym_comment] = ACTIONS(39), }, [1029] = { @@ -40267,68 +40286,68 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(1029), [aux_sym__declaration_specifiers_repeat1] = STATE(20), [aux_sym_sized_type_specifier_repeat1] = STATE(21), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3085), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3088), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3091), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2790), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3094), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3097), - [sym_preproc_directive] = ACTIONS(3100), - [anon_sym_SEMI] = ACTIONS(3103), - [anon_sym_typedef] = ACTIONS(3106), - [anon_sym_extern] = ACTIONS(1810), - [anon_sym_LBRACE] = ACTIONS(3109), - [anon_sym_LPAREN2] = ACTIONS(1818), - [anon_sym_STAR] = ACTIONS(1821), - [anon_sym_static] = ACTIONS(1810), - [anon_sym_auto] = ACTIONS(1810), - [anon_sym_register] = ACTIONS(1810), - [anon_sym_inline] = ACTIONS(1810), - [anon_sym_const] = ACTIONS(1824), - [anon_sym_restrict] = ACTIONS(1824), - [anon_sym_volatile] = ACTIONS(1824), - [anon_sym__Atomic] = ACTIONS(1824), - [anon_sym_unsigned] = ACTIONS(1827), - [anon_sym_long] = ACTIONS(1827), - [anon_sym_short] = ACTIONS(1827), - [sym_primitive_type] = ACTIONS(1830), - [anon_sym_enum] = ACTIONS(1833), - [anon_sym_struct] = ACTIONS(1836), - [anon_sym_union] = ACTIONS(1839), - [anon_sym_if] = ACTIONS(3112), - [anon_sym_switch] = ACTIONS(3115), - [anon_sym_case] = ACTIONS(3118), - [anon_sym_default] = ACTIONS(3121), - [anon_sym_while] = ACTIONS(3124), - [anon_sym_do] = ACTIONS(3127), - [anon_sym_for] = ACTIONS(3130), - [anon_sym_return] = ACTIONS(3133), - [anon_sym_break] = ACTIONS(3136), - [anon_sym_continue] = ACTIONS(3139), - [anon_sym_goto] = ACTIONS(3142), - [anon_sym_AMP] = ACTIONS(1821), - [anon_sym_BANG] = ACTIONS(1875), - [anon_sym_TILDE] = ACTIONS(1878), - [anon_sym_PLUS] = ACTIONS(1881), - [anon_sym_DASH] = ACTIONS(1881), - [anon_sym_DASH_DASH] = ACTIONS(1884), - [anon_sym_PLUS_PLUS] = ACTIONS(1884), - [anon_sym_sizeof] = ACTIONS(1887), - [sym_number_literal] = ACTIONS(3145), - [anon_sym_SQUOTE] = ACTIONS(1893), - [anon_sym_DQUOTE] = ACTIONS(1896), - [sym_true] = ACTIONS(3148), - [sym_false] = ACTIONS(3148), - [sym_null] = ACTIONS(3148), - [sym_identifier] = ACTIONS(3151), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3074), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3077), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3080), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2779), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3083), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3086), + [sym_preproc_directive] = ACTIONS(3089), + [anon_sym_SEMI] = ACTIONS(3092), + [anon_sym_typedef] = ACTIONS(3095), + [anon_sym_extern] = ACTIONS(1799), + [anon_sym_LBRACE] = ACTIONS(3098), + [anon_sym_LPAREN2] = ACTIONS(1807), + [anon_sym_STAR] = ACTIONS(1810), + [anon_sym_static] = ACTIONS(1799), + [anon_sym_auto] = ACTIONS(1799), + [anon_sym_register] = ACTIONS(1799), + [anon_sym_inline] = ACTIONS(1799), + [anon_sym_const] = ACTIONS(1813), + [anon_sym_restrict] = ACTIONS(1813), + [anon_sym_volatile] = ACTIONS(1813), + [anon_sym__Atomic] = ACTIONS(1813), + [anon_sym_unsigned] = ACTIONS(1816), + [anon_sym_long] = ACTIONS(1816), + [anon_sym_short] = ACTIONS(1816), + [sym_primitive_type] = ACTIONS(1819), + [anon_sym_enum] = ACTIONS(1822), + [anon_sym_struct] = ACTIONS(1825), + [anon_sym_union] = ACTIONS(1828), + [anon_sym_if] = ACTIONS(3101), + [anon_sym_switch] = ACTIONS(3104), + [anon_sym_case] = ACTIONS(3107), + [anon_sym_default] = ACTIONS(3110), + [anon_sym_while] = ACTIONS(3113), + [anon_sym_do] = ACTIONS(3116), + [anon_sym_for] = ACTIONS(3119), + [anon_sym_return] = ACTIONS(3122), + [anon_sym_break] = ACTIONS(3125), + [anon_sym_continue] = ACTIONS(3128), + [anon_sym_goto] = ACTIONS(3131), + [anon_sym_AMP] = ACTIONS(1810), + [anon_sym_BANG] = ACTIONS(1864), + [anon_sym_TILDE] = ACTIONS(1867), + [anon_sym_PLUS] = ACTIONS(1870), + [anon_sym_DASH] = ACTIONS(1870), + [anon_sym_DASH_DASH] = ACTIONS(1873), + [anon_sym_PLUS_PLUS] = ACTIONS(1873), + [anon_sym_sizeof] = ACTIONS(1876), + [sym_number_literal] = ACTIONS(3134), + [anon_sym_SQUOTE] = ACTIONS(1882), + [anon_sym_DQUOTE] = ACTIONS(1885), + [sym_true] = ACTIONS(3137), + [sym_false] = ACTIONS(3137), + [sym_null] = ACTIONS(3137), + [sym_identifier] = ACTIONS(3140), [sym_comment] = ACTIONS(39), }, [1030] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3154), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3143), [sym_comment] = ACTIONS(39), }, [1031] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3156), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3145), [sym_comment] = ACTIONS(39), }, [1032] = { @@ -40389,21 +40408,21 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(896), [aux_sym__declaration_specifiers_repeat1] = STATE(20), [aux_sym_sized_type_specifier_repeat1] = STATE(21), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(133), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(135), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1504), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3158), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1508), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1510), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1512), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1514), - [sym_preproc_directive] = ACTIONS(149), - [anon_sym_SEMI] = ACTIONS(1516), - [anon_sym_typedef] = ACTIONS(151), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(131), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(133), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1493), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3147), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1497), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1499), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1501), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1503), + [sym_preproc_directive] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(1505), + [anon_sym_typedef] = ACTIONS(149), [anon_sym_extern] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(734), - [anon_sym_LPAREN2] = ACTIONS(554), - [anon_sym_STAR] = ACTIONS(556), + [anon_sym_LBRACE] = ACTIONS(725), + [anon_sym_LPAREN2] = ACTIONS(550), + [anon_sym_STAR] = ACTIONS(552), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -40419,42 +40438,42 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), - [anon_sym_if] = ACTIONS(1518), - [anon_sym_switch] = ACTIONS(1520), - [anon_sym_case] = ACTIONS(1522), - [anon_sym_default] = ACTIONS(1524), - [anon_sym_while] = ACTIONS(1526), - [anon_sym_do] = ACTIONS(1528), - [anon_sym_for] = ACTIONS(1530), - [anon_sym_return] = ACTIONS(1532), - [anon_sym_break] = ACTIONS(1534), - [anon_sym_continue] = ACTIONS(1536), - [anon_sym_goto] = ACTIONS(1538), - [anon_sym_AMP] = ACTIONS(556), - [anon_sym_BANG] = ACTIONS(580), - [anon_sym_TILDE] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_DASH_DASH] = ACTIONS(586), - [anon_sym_PLUS_PLUS] = ACTIONS(586), - [anon_sym_sizeof] = ACTIONS(588), - [sym_number_literal] = ACTIONS(1540), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1542), - [sym_false] = ACTIONS(1542), - [sym_null] = ACTIONS(1542), - [sym_identifier] = ACTIONS(1544), + [anon_sym_if] = ACTIONS(1507), + [anon_sym_switch] = ACTIONS(1509), + [anon_sym_case] = ACTIONS(1511), + [anon_sym_default] = ACTIONS(1513), + [anon_sym_while] = ACTIONS(1515), + [anon_sym_do] = ACTIONS(1517), + [anon_sym_for] = ACTIONS(1519), + [anon_sym_return] = ACTIONS(1521), + [anon_sym_break] = ACTIONS(1523), + [anon_sym_continue] = ACTIONS(1525), + [anon_sym_goto] = ACTIONS(1527), + [anon_sym_AMP] = ACTIONS(552), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_TILDE] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(580), + [anon_sym_DASH] = ACTIONS(580), + [anon_sym_DASH_DASH] = ACTIONS(582), + [anon_sym_PLUS_PLUS] = ACTIONS(582), + [anon_sym_sizeof] = ACTIONS(584), + [sym_number_literal] = ACTIONS(1529), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_null] = ACTIONS(1531), + [sym_identifier] = ACTIONS(1533), [sym_comment] = ACTIONS(39), }, [1033] = { [sym_parenthesized_expression] = STATE(1146), - [anon_sym_LPAREN2] = ACTIONS(994), + [anon_sym_LPAREN2] = ACTIONS(985), [sym_comment] = ACTIONS(39), }, [1034] = { [sym_parenthesized_expression] = STATE(1147), - [anon_sym_LPAREN2] = ACTIONS(994), + [anon_sym_LPAREN2] = ACTIONS(985), [sym_comment] = ACTIONS(39), }, [1035] = { @@ -40478,240 +40497,240 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(1148), [sym_concatenated_string] = STATE(1148), [sym_string_literal] = STATE(421), - [anon_sym_LPAREN2] = ACTIONS(996), - [anon_sym_STAR] = ACTIONS(998), - [anon_sym_AMP] = ACTIONS(998), - [anon_sym_BANG] = ACTIONS(1000), - [anon_sym_TILDE] = ACTIONS(1002), - [anon_sym_PLUS] = ACTIONS(1004), - [anon_sym_DASH] = ACTIONS(1004), - [anon_sym_DASH_DASH] = ACTIONS(1006), - [anon_sym_PLUS_PLUS] = ACTIONS(1006), - [anon_sym_sizeof] = ACTIONS(1008), - [sym_number_literal] = ACTIONS(3160), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(3162), - [sym_false] = ACTIONS(3162), - [sym_null] = ACTIONS(3162), - [sym_identifier] = ACTIONS(3162), + [anon_sym_LPAREN2] = ACTIONS(987), + [anon_sym_STAR] = ACTIONS(989), + [anon_sym_AMP] = ACTIONS(989), + [anon_sym_BANG] = ACTIONS(991), + [anon_sym_TILDE] = ACTIONS(993), + [anon_sym_PLUS] = ACTIONS(995), + [anon_sym_DASH] = ACTIONS(995), + [anon_sym_DASH_DASH] = ACTIONS(997), + [anon_sym_PLUS_PLUS] = ACTIONS(997), + [anon_sym_sizeof] = ACTIONS(999), + [sym_number_literal] = ACTIONS(3149), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(3151), + [sym_false] = ACTIONS(3151), + [sym_null] = ACTIONS(3151), + [sym_identifier] = ACTIONS(3151), [sym_comment] = ACTIONS(39), }, [1036] = { - [anon_sym_COLON] = ACTIONS(3164), + [anon_sym_COLON] = ACTIONS(3153), [sym_comment] = ACTIONS(39), }, [1037] = { [sym_parenthesized_expression] = STATE(1150), - [anon_sym_LPAREN2] = ACTIONS(994), + [anon_sym_LPAREN2] = ACTIONS(985), [sym_comment] = ACTIONS(39), }, [1038] = { - [anon_sym_LPAREN2] = ACTIONS(3166), + [anon_sym_LPAREN2] = ACTIONS(3155), [sym_comment] = ACTIONS(39), }, [1039] = { - [anon_sym_COMMA] = ACTIONS(1066), - [anon_sym_SEMI] = ACTIONS(1066), - [anon_sym_LPAREN2] = ACTIONS(1066), - [anon_sym_STAR] = ACTIONS(1078), - [anon_sym_LBRACK] = ACTIONS(1066), - [anon_sym_EQ] = ACTIONS(1078), - [anon_sym_COLON] = ACTIONS(3168), - [anon_sym_QMARK] = ACTIONS(1066), - [anon_sym_STAR_EQ] = ACTIONS(1066), - [anon_sym_SLASH_EQ] = ACTIONS(1066), - [anon_sym_PERCENT_EQ] = ACTIONS(1066), - [anon_sym_PLUS_EQ] = ACTIONS(1066), - [anon_sym_DASH_EQ] = ACTIONS(1066), - [anon_sym_LT_LT_EQ] = ACTIONS(1066), - [anon_sym_GT_GT_EQ] = ACTIONS(1066), - [anon_sym_AMP_EQ] = ACTIONS(1066), - [anon_sym_CARET_EQ] = ACTIONS(1066), - [anon_sym_PIPE_EQ] = ACTIONS(1066), - [anon_sym_AMP] = ACTIONS(1078), - [anon_sym_PIPE_PIPE] = ACTIONS(1066), - [anon_sym_AMP_AMP] = ACTIONS(1066), - [anon_sym_PIPE] = ACTIONS(1078), - [anon_sym_CARET] = ACTIONS(1078), - [anon_sym_EQ_EQ] = ACTIONS(1066), - [anon_sym_BANG_EQ] = ACTIONS(1066), - [anon_sym_LT] = ACTIONS(1078), - [anon_sym_GT] = ACTIONS(1078), - [anon_sym_LT_EQ] = ACTIONS(1066), - [anon_sym_GT_EQ] = ACTIONS(1066), - [anon_sym_LT_LT] = ACTIONS(1078), - [anon_sym_GT_GT] = ACTIONS(1078), - [anon_sym_PLUS] = ACTIONS(1078), - [anon_sym_DASH] = ACTIONS(1078), - [anon_sym_SLASH] = ACTIONS(1078), - [anon_sym_PERCENT] = ACTIONS(1078), - [anon_sym_DASH_DASH] = ACTIONS(1066), - [anon_sym_PLUS_PLUS] = ACTIONS(1066), - [anon_sym_DOT] = ACTIONS(1066), - [anon_sym_DASH_GT] = ACTIONS(1066), + [anon_sym_COMMA] = ACTIONS(1059), + [anon_sym_SEMI] = ACTIONS(1059), + [anon_sym_LPAREN2] = ACTIONS(1059), + [anon_sym_STAR] = ACTIONS(1071), + [anon_sym_LBRACK] = ACTIONS(1059), + [anon_sym_EQ] = ACTIONS(1071), + [anon_sym_COLON] = ACTIONS(3157), + [anon_sym_QMARK] = ACTIONS(1059), + [anon_sym_STAR_EQ] = ACTIONS(1059), + [anon_sym_SLASH_EQ] = ACTIONS(1059), + [anon_sym_PERCENT_EQ] = ACTIONS(1059), + [anon_sym_PLUS_EQ] = ACTIONS(1059), + [anon_sym_DASH_EQ] = ACTIONS(1059), + [anon_sym_LT_LT_EQ] = ACTIONS(1059), + [anon_sym_GT_GT_EQ] = ACTIONS(1059), + [anon_sym_AMP_EQ] = ACTIONS(1059), + [anon_sym_CARET_EQ] = ACTIONS(1059), + [anon_sym_PIPE_EQ] = ACTIONS(1059), + [anon_sym_AMP] = ACTIONS(1071), + [anon_sym_PIPE_PIPE] = ACTIONS(1059), + [anon_sym_AMP_AMP] = ACTIONS(1059), + [anon_sym_PIPE] = ACTIONS(1071), + [anon_sym_CARET] = ACTIONS(1071), + [anon_sym_EQ_EQ] = ACTIONS(1059), + [anon_sym_BANG_EQ] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(1071), + [anon_sym_GT] = ACTIONS(1071), + [anon_sym_LT_EQ] = ACTIONS(1059), + [anon_sym_GT_EQ] = ACTIONS(1059), + [anon_sym_LT_LT] = ACTIONS(1071), + [anon_sym_GT_GT] = ACTIONS(1071), + [anon_sym_PLUS] = ACTIONS(1071), + [anon_sym_DASH] = ACTIONS(1071), + [anon_sym_SLASH] = ACTIONS(1071), + [anon_sym_PERCENT] = ACTIONS(1071), + [anon_sym_DASH_DASH] = ACTIONS(1059), + [anon_sym_PLUS_PLUS] = ACTIONS(1059), + [anon_sym_DOT] = ACTIONS(1059), + [anon_sym_DASH_GT] = ACTIONS(1059), [sym_comment] = ACTIONS(39), }, [1040] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2408), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2408), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2408), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2408), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2408), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2408), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2408), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2408), - [sym_preproc_directive] = ACTIONS(2408), - [anon_sym_SEMI] = ACTIONS(2410), - [anon_sym_typedef] = ACTIONS(2408), - [anon_sym_extern] = ACTIONS(2408), - [anon_sym_LBRACE] = ACTIONS(2410), - [anon_sym_LPAREN2] = ACTIONS(2410), - [anon_sym_STAR] = ACTIONS(2410), - [anon_sym_static] = ACTIONS(2408), - [anon_sym_auto] = ACTIONS(2408), - [anon_sym_register] = ACTIONS(2408), - [anon_sym_inline] = ACTIONS(2408), - [anon_sym_const] = ACTIONS(2408), - [anon_sym_restrict] = ACTIONS(2408), - [anon_sym_volatile] = ACTIONS(2408), - [anon_sym__Atomic] = ACTIONS(2408), - [anon_sym_unsigned] = ACTIONS(2408), - [anon_sym_long] = ACTIONS(2408), - [anon_sym_short] = ACTIONS(2408), - [sym_primitive_type] = ACTIONS(2408), - [anon_sym_enum] = ACTIONS(2408), - [anon_sym_struct] = ACTIONS(2408), - [anon_sym_union] = ACTIONS(2408), - [anon_sym_if] = ACTIONS(2408), - [anon_sym_else] = ACTIONS(3170), - [anon_sym_switch] = ACTIONS(2408), - [anon_sym_case] = ACTIONS(2408), - [anon_sym_default] = ACTIONS(2408), - [anon_sym_while] = ACTIONS(2408), - [anon_sym_do] = ACTIONS(2408), - [anon_sym_for] = ACTIONS(2408), - [anon_sym_return] = ACTIONS(2408), - [anon_sym_break] = ACTIONS(2408), - [anon_sym_continue] = ACTIONS(2408), - [anon_sym_goto] = ACTIONS(2408), - [anon_sym_AMP] = ACTIONS(2410), - [anon_sym_BANG] = ACTIONS(2410), - [anon_sym_TILDE] = ACTIONS(2410), - [anon_sym_PLUS] = ACTIONS(2408), - [anon_sym_DASH] = ACTIONS(2408), - [anon_sym_DASH_DASH] = ACTIONS(2410), - [anon_sym_PLUS_PLUS] = ACTIONS(2410), - [anon_sym_sizeof] = ACTIONS(2408), - [sym_number_literal] = ACTIONS(2410), - [anon_sym_SQUOTE] = ACTIONS(2410), - [anon_sym_DQUOTE] = ACTIONS(2410), - [sym_true] = ACTIONS(2408), - [sym_false] = ACTIONS(2408), - [sym_null] = ACTIONS(2408), - [sym_identifier] = ACTIONS(2408), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2397), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2397), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2397), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2397), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2397), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2397), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2397), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2397), + [sym_preproc_directive] = ACTIONS(2397), + [anon_sym_SEMI] = ACTIONS(2399), + [anon_sym_typedef] = ACTIONS(2397), + [anon_sym_extern] = ACTIONS(2397), + [anon_sym_LBRACE] = ACTIONS(2399), + [anon_sym_LPAREN2] = ACTIONS(2399), + [anon_sym_STAR] = ACTIONS(2399), + [anon_sym_static] = ACTIONS(2397), + [anon_sym_auto] = ACTIONS(2397), + [anon_sym_register] = ACTIONS(2397), + [anon_sym_inline] = ACTIONS(2397), + [anon_sym_const] = ACTIONS(2397), + [anon_sym_restrict] = ACTIONS(2397), + [anon_sym_volatile] = ACTIONS(2397), + [anon_sym__Atomic] = ACTIONS(2397), + [anon_sym_unsigned] = ACTIONS(2397), + [anon_sym_long] = ACTIONS(2397), + [anon_sym_short] = ACTIONS(2397), + [sym_primitive_type] = ACTIONS(2397), + [anon_sym_enum] = ACTIONS(2397), + [anon_sym_struct] = ACTIONS(2397), + [anon_sym_union] = ACTIONS(2397), + [anon_sym_if] = ACTIONS(2397), + [anon_sym_else] = ACTIONS(3159), + [anon_sym_switch] = ACTIONS(2397), + [anon_sym_case] = ACTIONS(2397), + [anon_sym_default] = ACTIONS(2397), + [anon_sym_while] = ACTIONS(2397), + [anon_sym_do] = ACTIONS(2397), + [anon_sym_for] = ACTIONS(2397), + [anon_sym_return] = ACTIONS(2397), + [anon_sym_break] = ACTIONS(2397), + [anon_sym_continue] = ACTIONS(2397), + [anon_sym_goto] = ACTIONS(2397), + [anon_sym_AMP] = ACTIONS(2399), + [anon_sym_BANG] = ACTIONS(2399), + [anon_sym_TILDE] = ACTIONS(2399), + [anon_sym_PLUS] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2397), + [anon_sym_DASH_DASH] = ACTIONS(2399), + [anon_sym_PLUS_PLUS] = ACTIONS(2399), + [anon_sym_sizeof] = ACTIONS(2397), + [sym_number_literal] = ACTIONS(2399), + [anon_sym_SQUOTE] = ACTIONS(2399), + [anon_sym_DQUOTE] = ACTIONS(2399), + [sym_true] = ACTIONS(2397), + [sym_false] = ACTIONS(2397), + [sym_null] = ACTIONS(2397), + [sym_identifier] = ACTIONS(2397), [sym_comment] = ACTIONS(39), }, [1041] = { - [anon_sym_COMMA] = ACTIONS(1066), - [anon_sym_SEMI] = ACTIONS(1066), - [anon_sym_LPAREN2] = ACTIONS(1066), - [anon_sym_STAR] = ACTIONS(1078), - [anon_sym_LBRACK] = ACTIONS(1066), - [anon_sym_EQ] = ACTIONS(1078), - [anon_sym_COLON] = ACTIONS(2306), - [anon_sym_QMARK] = ACTIONS(1066), - [anon_sym_STAR_EQ] = ACTIONS(1066), - [anon_sym_SLASH_EQ] = ACTIONS(1066), - [anon_sym_PERCENT_EQ] = ACTIONS(1066), - [anon_sym_PLUS_EQ] = ACTIONS(1066), - [anon_sym_DASH_EQ] = ACTIONS(1066), - [anon_sym_LT_LT_EQ] = ACTIONS(1066), - [anon_sym_GT_GT_EQ] = ACTIONS(1066), - [anon_sym_AMP_EQ] = ACTIONS(1066), - [anon_sym_CARET_EQ] = ACTIONS(1066), - [anon_sym_PIPE_EQ] = ACTIONS(1066), - [anon_sym_AMP] = ACTIONS(1078), - [anon_sym_PIPE_PIPE] = ACTIONS(1066), - [anon_sym_AMP_AMP] = ACTIONS(1066), - [anon_sym_PIPE] = ACTIONS(1078), - [anon_sym_CARET] = ACTIONS(1078), - [anon_sym_EQ_EQ] = ACTIONS(1066), - [anon_sym_BANG_EQ] = ACTIONS(1066), - [anon_sym_LT] = ACTIONS(1078), - [anon_sym_GT] = ACTIONS(1078), - [anon_sym_LT_EQ] = ACTIONS(1066), - [anon_sym_GT_EQ] = ACTIONS(1066), - [anon_sym_LT_LT] = ACTIONS(1078), - [anon_sym_GT_GT] = ACTIONS(1078), - [anon_sym_PLUS] = ACTIONS(1078), - [anon_sym_DASH] = ACTIONS(1078), - [anon_sym_SLASH] = ACTIONS(1078), - [anon_sym_PERCENT] = ACTIONS(1078), - [anon_sym_DASH_DASH] = ACTIONS(1066), - [anon_sym_PLUS_PLUS] = ACTIONS(1066), - [anon_sym_DOT] = ACTIONS(1066), - [anon_sym_DASH_GT] = ACTIONS(1066), + [anon_sym_COMMA] = ACTIONS(1059), + [anon_sym_SEMI] = ACTIONS(1059), + [anon_sym_LPAREN2] = ACTIONS(1059), + [anon_sym_STAR] = ACTIONS(1071), + [anon_sym_LBRACK] = ACTIONS(1059), + [anon_sym_EQ] = ACTIONS(1071), + [anon_sym_COLON] = ACTIONS(2295), + [anon_sym_QMARK] = ACTIONS(1059), + [anon_sym_STAR_EQ] = ACTIONS(1059), + [anon_sym_SLASH_EQ] = ACTIONS(1059), + [anon_sym_PERCENT_EQ] = ACTIONS(1059), + [anon_sym_PLUS_EQ] = ACTIONS(1059), + [anon_sym_DASH_EQ] = ACTIONS(1059), + [anon_sym_LT_LT_EQ] = ACTIONS(1059), + [anon_sym_GT_GT_EQ] = ACTIONS(1059), + [anon_sym_AMP_EQ] = ACTIONS(1059), + [anon_sym_CARET_EQ] = ACTIONS(1059), + [anon_sym_PIPE_EQ] = ACTIONS(1059), + [anon_sym_AMP] = ACTIONS(1071), + [anon_sym_PIPE_PIPE] = ACTIONS(1059), + [anon_sym_AMP_AMP] = ACTIONS(1059), + [anon_sym_PIPE] = ACTIONS(1071), + [anon_sym_CARET] = ACTIONS(1071), + [anon_sym_EQ_EQ] = ACTIONS(1059), + [anon_sym_BANG_EQ] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(1071), + [anon_sym_GT] = ACTIONS(1071), + [anon_sym_LT_EQ] = ACTIONS(1059), + [anon_sym_GT_EQ] = ACTIONS(1059), + [anon_sym_LT_LT] = ACTIONS(1071), + [anon_sym_GT_GT] = ACTIONS(1071), + [anon_sym_PLUS] = ACTIONS(1071), + [anon_sym_DASH] = ACTIONS(1071), + [anon_sym_SLASH] = ACTIONS(1071), + [anon_sym_PERCENT] = ACTIONS(1071), + [anon_sym_DASH_DASH] = ACTIONS(1059), + [anon_sym_PLUS_PLUS] = ACTIONS(1059), + [anon_sym_DOT] = ACTIONS(1059), + [anon_sym_DASH_GT] = ACTIONS(1059), [sym_comment] = ACTIONS(39), }, [1042] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2414), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2414), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2414), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2414), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2414), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2414), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2414), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2414), - [sym_preproc_directive] = ACTIONS(2414), - [anon_sym_SEMI] = ACTIONS(2416), - [anon_sym_typedef] = ACTIONS(2414), - [anon_sym_extern] = ACTIONS(2414), - [anon_sym_LBRACE] = ACTIONS(2416), - [anon_sym_LPAREN2] = ACTIONS(2416), - [anon_sym_STAR] = ACTIONS(2416), - [anon_sym_static] = ACTIONS(2414), - [anon_sym_auto] = ACTIONS(2414), - [anon_sym_register] = ACTIONS(2414), - [anon_sym_inline] = ACTIONS(2414), - [anon_sym_const] = ACTIONS(2414), - [anon_sym_restrict] = ACTIONS(2414), - [anon_sym_volatile] = ACTIONS(2414), - [anon_sym__Atomic] = ACTIONS(2414), - [anon_sym_unsigned] = ACTIONS(2414), - [anon_sym_long] = ACTIONS(2414), - [anon_sym_short] = ACTIONS(2414), - [sym_primitive_type] = ACTIONS(2414), - [anon_sym_enum] = ACTIONS(2414), - [anon_sym_struct] = ACTIONS(2414), - [anon_sym_union] = ACTIONS(2414), - [anon_sym_if] = ACTIONS(2414), - [anon_sym_else] = ACTIONS(2414), - [anon_sym_switch] = ACTIONS(2414), - [anon_sym_case] = ACTIONS(2414), - [anon_sym_default] = ACTIONS(2414), - [anon_sym_while] = ACTIONS(2414), - [anon_sym_do] = ACTIONS(2414), - [anon_sym_for] = ACTIONS(2414), - [anon_sym_return] = ACTIONS(2414), - [anon_sym_break] = ACTIONS(2414), - [anon_sym_continue] = ACTIONS(2414), - [anon_sym_goto] = ACTIONS(2414), - [anon_sym_AMP] = ACTIONS(2416), - [anon_sym_BANG] = ACTIONS(2416), - [anon_sym_TILDE] = ACTIONS(2416), - [anon_sym_PLUS] = ACTIONS(2414), - [anon_sym_DASH] = ACTIONS(2414), - [anon_sym_DASH_DASH] = ACTIONS(2416), - [anon_sym_PLUS_PLUS] = ACTIONS(2416), - [anon_sym_sizeof] = ACTIONS(2414), - [sym_number_literal] = ACTIONS(2416), - [anon_sym_SQUOTE] = ACTIONS(2416), - [anon_sym_DQUOTE] = ACTIONS(2416), - [sym_true] = ACTIONS(2414), - [sym_false] = ACTIONS(2414), - [sym_null] = ACTIONS(2414), - [sym_identifier] = ACTIONS(2414), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2403), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2403), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2403), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2403), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2403), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2403), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2403), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2403), + [sym_preproc_directive] = ACTIONS(2403), + [anon_sym_SEMI] = ACTIONS(2405), + [anon_sym_typedef] = ACTIONS(2403), + [anon_sym_extern] = ACTIONS(2403), + [anon_sym_LBRACE] = ACTIONS(2405), + [anon_sym_LPAREN2] = ACTIONS(2405), + [anon_sym_STAR] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2403), + [anon_sym_auto] = ACTIONS(2403), + [anon_sym_register] = ACTIONS(2403), + [anon_sym_inline] = ACTIONS(2403), + [anon_sym_const] = ACTIONS(2403), + [anon_sym_restrict] = ACTIONS(2403), + [anon_sym_volatile] = ACTIONS(2403), + [anon_sym__Atomic] = ACTIONS(2403), + [anon_sym_unsigned] = ACTIONS(2403), + [anon_sym_long] = ACTIONS(2403), + [anon_sym_short] = ACTIONS(2403), + [sym_primitive_type] = ACTIONS(2403), + [anon_sym_enum] = ACTIONS(2403), + [anon_sym_struct] = ACTIONS(2403), + [anon_sym_union] = ACTIONS(2403), + [anon_sym_if] = ACTIONS(2403), + [anon_sym_else] = ACTIONS(2403), + [anon_sym_switch] = ACTIONS(2403), + [anon_sym_case] = ACTIONS(2403), + [anon_sym_default] = ACTIONS(2403), + [anon_sym_while] = ACTIONS(2403), + [anon_sym_do] = ACTIONS(2403), + [anon_sym_for] = ACTIONS(2403), + [anon_sym_return] = ACTIONS(2403), + [anon_sym_break] = ACTIONS(2403), + [anon_sym_continue] = ACTIONS(2403), + [anon_sym_goto] = ACTIONS(2403), + [anon_sym_AMP] = ACTIONS(2405), + [anon_sym_BANG] = ACTIONS(2405), + [anon_sym_TILDE] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2403), + [anon_sym_DASH] = ACTIONS(2403), + [anon_sym_DASH_DASH] = ACTIONS(2405), + [anon_sym_PLUS_PLUS] = ACTIONS(2405), + [anon_sym_sizeof] = ACTIONS(2403), + [sym_number_literal] = ACTIONS(2405), + [anon_sym_SQUOTE] = ACTIONS(2405), + [anon_sym_DQUOTE] = ACTIONS(2405), + [sym_true] = ACTIONS(2403), + [sym_false] = ACTIONS(2403), + [sym_null] = ACTIONS(2403), + [sym_identifier] = ACTIONS(2403), [sym_comment] = ACTIONS(39), }, [1043] = { @@ -40762,12 +40781,12 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_macro_type_specifier] = STATE(95), [aux_sym__declaration_specifiers_repeat1] = STATE(96), [aux_sym_sized_type_specifier_repeat1] = STATE(97), - [anon_sym_SEMI] = ACTIONS(1516), - [anon_sym_typedef] = ACTIONS(151), + [anon_sym_SEMI] = ACTIONS(1505), + [anon_sym_typedef] = ACTIONS(149), [anon_sym_extern] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(734), - [anon_sym_LPAREN2] = ACTIONS(554), - [anon_sym_STAR] = ACTIONS(556), + [anon_sym_LBRACE] = ACTIONS(725), + [anon_sym_LPAREN2] = ACTIONS(550), + [anon_sym_STAR] = ACTIONS(552), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -40776,49 +40795,49 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_restrict] = ACTIONS(25), [anon_sym_volatile] = ACTIONS(25), [anon_sym__Atomic] = ACTIONS(25), - [anon_sym_unsigned] = ACTIONS(177), - [anon_sym_long] = ACTIONS(177), - [anon_sym_short] = ACTIONS(177), - [sym_primitive_type] = ACTIONS(179), + [anon_sym_unsigned] = ACTIONS(175), + [anon_sym_long] = ACTIONS(175), + [anon_sym_short] = ACTIONS(175), + [sym_primitive_type] = ACTIONS(177), [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), - [anon_sym_if] = ACTIONS(1518), - [anon_sym_switch] = ACTIONS(1520), - [anon_sym_case] = ACTIONS(1522), - [anon_sym_default] = ACTIONS(1524), - [anon_sym_while] = ACTIONS(1526), - [anon_sym_do] = ACTIONS(1528), - [anon_sym_for] = ACTIONS(1530), - [anon_sym_return] = ACTIONS(1532), - [anon_sym_break] = ACTIONS(1534), - [anon_sym_continue] = ACTIONS(1536), - [anon_sym_goto] = ACTIONS(1538), - [anon_sym_AMP] = ACTIONS(556), - [anon_sym_BANG] = ACTIONS(580), - [anon_sym_TILDE] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_DASH_DASH] = ACTIONS(586), - [anon_sym_PLUS_PLUS] = ACTIONS(586), - [anon_sym_sizeof] = ACTIONS(588), - [sym_number_literal] = ACTIONS(1540), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1542), - [sym_false] = ACTIONS(1542), - [sym_null] = ACTIONS(1542), - [sym_identifier] = ACTIONS(2751), + [anon_sym_if] = ACTIONS(1507), + [anon_sym_switch] = ACTIONS(1509), + [anon_sym_case] = ACTIONS(1511), + [anon_sym_default] = ACTIONS(1513), + [anon_sym_while] = ACTIONS(1515), + [anon_sym_do] = ACTIONS(1517), + [anon_sym_for] = ACTIONS(1519), + [anon_sym_return] = ACTIONS(1521), + [anon_sym_break] = ACTIONS(1523), + [anon_sym_continue] = ACTIONS(1525), + [anon_sym_goto] = ACTIONS(1527), + [anon_sym_AMP] = ACTIONS(552), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_TILDE] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(580), + [anon_sym_DASH] = ACTIONS(580), + [anon_sym_DASH_DASH] = ACTIONS(582), + [anon_sym_PLUS_PLUS] = ACTIONS(582), + [anon_sym_sizeof] = ACTIONS(584), + [sym_number_literal] = ACTIONS(1529), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_null] = ACTIONS(1531), + [sym_identifier] = ACTIONS(2740), [sym_comment] = ACTIONS(39), }, [1044] = { - [anon_sym_COMMA] = ACTIONS(1066), - [anon_sym_SEMI] = ACTIONS(1066), + [anon_sym_COMMA] = ACTIONS(1059), + [anon_sym_SEMI] = ACTIONS(1059), [anon_sym_extern] = ACTIONS(83), - [anon_sym_LPAREN2] = ACTIONS(1071), - [anon_sym_STAR] = ACTIONS(1075), - [anon_sym_LBRACK] = ACTIONS(1066), - [anon_sym_EQ] = ACTIONS(1078), + [anon_sym_LPAREN2] = ACTIONS(1064), + [anon_sym_STAR] = ACTIONS(1068), + [anon_sym_LBRACK] = ACTIONS(1059), + [anon_sym_EQ] = ACTIONS(1071), [anon_sym_static] = ACTIONS(83), [anon_sym_auto] = ACTIONS(83), [anon_sym_register] = ACTIONS(83), @@ -40827,100 +40846,100 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_restrict] = ACTIONS(83), [anon_sym_volatile] = ACTIONS(83), [anon_sym__Atomic] = ACTIONS(83), - [anon_sym_COLON] = ACTIONS(2306), - [anon_sym_QMARK] = ACTIONS(1066), - [anon_sym_STAR_EQ] = ACTIONS(1066), - [anon_sym_SLASH_EQ] = ACTIONS(1066), - [anon_sym_PERCENT_EQ] = ACTIONS(1066), - [anon_sym_PLUS_EQ] = ACTIONS(1066), - [anon_sym_DASH_EQ] = ACTIONS(1066), - [anon_sym_LT_LT_EQ] = ACTIONS(1066), - [anon_sym_GT_GT_EQ] = ACTIONS(1066), - [anon_sym_AMP_EQ] = ACTIONS(1066), - [anon_sym_CARET_EQ] = ACTIONS(1066), - [anon_sym_PIPE_EQ] = ACTIONS(1066), - [anon_sym_AMP] = ACTIONS(1078), - [anon_sym_PIPE_PIPE] = ACTIONS(1066), - [anon_sym_AMP_AMP] = ACTIONS(1066), - [anon_sym_PIPE] = ACTIONS(1078), - [anon_sym_CARET] = ACTIONS(1078), - [anon_sym_EQ_EQ] = ACTIONS(1066), - [anon_sym_BANG_EQ] = ACTIONS(1066), - [anon_sym_LT] = ACTIONS(1078), - [anon_sym_GT] = ACTIONS(1078), - [anon_sym_LT_EQ] = ACTIONS(1066), - [anon_sym_GT_EQ] = ACTIONS(1066), - [anon_sym_LT_LT] = ACTIONS(1078), - [anon_sym_GT_GT] = ACTIONS(1078), - [anon_sym_PLUS] = ACTIONS(1078), - [anon_sym_DASH] = ACTIONS(1078), - [anon_sym_SLASH] = ACTIONS(1078), - [anon_sym_PERCENT] = ACTIONS(1078), - [anon_sym_DASH_DASH] = ACTIONS(1066), - [anon_sym_PLUS_PLUS] = ACTIONS(1066), - [anon_sym_DOT] = ACTIONS(1066), - [anon_sym_DASH_GT] = ACTIONS(1066), + [anon_sym_COLON] = ACTIONS(2295), + [anon_sym_QMARK] = ACTIONS(1059), + [anon_sym_STAR_EQ] = ACTIONS(1059), + [anon_sym_SLASH_EQ] = ACTIONS(1059), + [anon_sym_PERCENT_EQ] = ACTIONS(1059), + [anon_sym_PLUS_EQ] = ACTIONS(1059), + [anon_sym_DASH_EQ] = ACTIONS(1059), + [anon_sym_LT_LT_EQ] = ACTIONS(1059), + [anon_sym_GT_GT_EQ] = ACTIONS(1059), + [anon_sym_AMP_EQ] = ACTIONS(1059), + [anon_sym_CARET_EQ] = ACTIONS(1059), + [anon_sym_PIPE_EQ] = ACTIONS(1059), + [anon_sym_AMP] = ACTIONS(1071), + [anon_sym_PIPE_PIPE] = ACTIONS(1059), + [anon_sym_AMP_AMP] = ACTIONS(1059), + [anon_sym_PIPE] = ACTIONS(1071), + [anon_sym_CARET] = ACTIONS(1071), + [anon_sym_EQ_EQ] = ACTIONS(1059), + [anon_sym_BANG_EQ] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(1071), + [anon_sym_GT] = ACTIONS(1071), + [anon_sym_LT_EQ] = ACTIONS(1059), + [anon_sym_GT_EQ] = ACTIONS(1059), + [anon_sym_LT_LT] = ACTIONS(1071), + [anon_sym_GT_GT] = ACTIONS(1071), + [anon_sym_PLUS] = ACTIONS(1071), + [anon_sym_DASH] = ACTIONS(1071), + [anon_sym_SLASH] = ACTIONS(1071), + [anon_sym_PERCENT] = ACTIONS(1071), + [anon_sym_DASH_DASH] = ACTIONS(1059), + [anon_sym_PLUS_PLUS] = ACTIONS(1059), + [anon_sym_DOT] = ACTIONS(1059), + [anon_sym_DASH_GT] = ACTIONS(1059), [sym_identifier] = ACTIONS(83), [sym_comment] = ACTIONS(39), }, [1045] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2464), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2464), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2464), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2464), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2464), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2464), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2464), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2464), - [sym_preproc_directive] = ACTIONS(2464), - [anon_sym_SEMI] = ACTIONS(2466), - [anon_sym_typedef] = ACTIONS(2464), - [anon_sym_extern] = ACTIONS(2464), - [anon_sym_LBRACE] = ACTIONS(2466), - [anon_sym_LPAREN2] = ACTIONS(2466), - [anon_sym_STAR] = ACTIONS(2466), - [anon_sym_static] = ACTIONS(2464), - [anon_sym_auto] = ACTIONS(2464), - [anon_sym_register] = ACTIONS(2464), - [anon_sym_inline] = ACTIONS(2464), - [anon_sym_const] = ACTIONS(2464), - [anon_sym_restrict] = ACTIONS(2464), - [anon_sym_volatile] = ACTIONS(2464), - [anon_sym__Atomic] = ACTIONS(2464), - [anon_sym_unsigned] = ACTIONS(2464), - [anon_sym_long] = ACTIONS(2464), - [anon_sym_short] = ACTIONS(2464), - [sym_primitive_type] = ACTIONS(2464), - [anon_sym_enum] = ACTIONS(2464), - [anon_sym_struct] = ACTIONS(2464), - [anon_sym_union] = ACTIONS(2464), - [anon_sym_if] = ACTIONS(2464), - [anon_sym_else] = ACTIONS(2464), - [anon_sym_switch] = ACTIONS(2464), - [anon_sym_case] = ACTIONS(2464), - [anon_sym_default] = ACTIONS(2464), - [anon_sym_while] = ACTIONS(2464), - [anon_sym_do] = ACTIONS(2464), - [anon_sym_for] = ACTIONS(2464), - [anon_sym_return] = ACTIONS(2464), - [anon_sym_break] = ACTIONS(2464), - [anon_sym_continue] = ACTIONS(2464), - [anon_sym_goto] = ACTIONS(2464), - [anon_sym_AMP] = ACTIONS(2466), - [anon_sym_BANG] = ACTIONS(2466), - [anon_sym_TILDE] = ACTIONS(2466), - [anon_sym_PLUS] = ACTIONS(2464), - [anon_sym_DASH] = ACTIONS(2464), - [anon_sym_DASH_DASH] = ACTIONS(2466), - [anon_sym_PLUS_PLUS] = ACTIONS(2466), - [anon_sym_sizeof] = ACTIONS(2464), - [sym_number_literal] = ACTIONS(2466), - [anon_sym_SQUOTE] = ACTIONS(2466), - [anon_sym_DQUOTE] = ACTIONS(2466), - [sym_true] = ACTIONS(2464), - [sym_false] = ACTIONS(2464), - [sym_null] = ACTIONS(2464), - [sym_identifier] = ACTIONS(2464), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2453), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2453), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2453), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2453), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2453), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2453), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2453), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2453), + [sym_preproc_directive] = ACTIONS(2453), + [anon_sym_SEMI] = ACTIONS(2455), + [anon_sym_typedef] = ACTIONS(2453), + [anon_sym_extern] = ACTIONS(2453), + [anon_sym_LBRACE] = ACTIONS(2455), + [anon_sym_LPAREN2] = ACTIONS(2455), + [anon_sym_STAR] = ACTIONS(2455), + [anon_sym_static] = ACTIONS(2453), + [anon_sym_auto] = ACTIONS(2453), + [anon_sym_register] = ACTIONS(2453), + [anon_sym_inline] = ACTIONS(2453), + [anon_sym_const] = ACTIONS(2453), + [anon_sym_restrict] = ACTIONS(2453), + [anon_sym_volatile] = ACTIONS(2453), + [anon_sym__Atomic] = ACTIONS(2453), + [anon_sym_unsigned] = ACTIONS(2453), + [anon_sym_long] = ACTIONS(2453), + [anon_sym_short] = ACTIONS(2453), + [sym_primitive_type] = ACTIONS(2453), + [anon_sym_enum] = ACTIONS(2453), + [anon_sym_struct] = ACTIONS(2453), + [anon_sym_union] = ACTIONS(2453), + [anon_sym_if] = ACTIONS(2453), + [anon_sym_else] = ACTIONS(2453), + [anon_sym_switch] = ACTIONS(2453), + [anon_sym_case] = ACTIONS(2453), + [anon_sym_default] = ACTIONS(2453), + [anon_sym_while] = ACTIONS(2453), + [anon_sym_do] = ACTIONS(2453), + [anon_sym_for] = ACTIONS(2453), + [anon_sym_return] = ACTIONS(2453), + [anon_sym_break] = ACTIONS(2453), + [anon_sym_continue] = ACTIONS(2453), + [anon_sym_goto] = ACTIONS(2453), + [anon_sym_AMP] = ACTIONS(2455), + [anon_sym_BANG] = ACTIONS(2455), + [anon_sym_TILDE] = ACTIONS(2455), + [anon_sym_PLUS] = ACTIONS(2453), + [anon_sym_DASH] = ACTIONS(2453), + [anon_sym_DASH_DASH] = ACTIONS(2455), + [anon_sym_PLUS_PLUS] = ACTIONS(2455), + [anon_sym_sizeof] = ACTIONS(2453), + [sym_number_literal] = ACTIONS(2455), + [anon_sym_SQUOTE] = ACTIONS(2455), + [anon_sym_DQUOTE] = ACTIONS(2455), + [sym_true] = ACTIONS(2453), + [sym_false] = ACTIONS(2453), + [sym_null] = ACTIONS(2453), + [sym_identifier] = ACTIONS(2453), [sym_comment] = ACTIONS(39), }, [1046] = { @@ -40930,73 +40949,73 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_array_declarator] = STATE(891), [sym_init_declarator] = STATE(167), [anon_sym_LPAREN2] = ACTIONS(92), - [anon_sym_STAR] = ACTIONS(534), - [sym_identifier] = ACTIONS(2312), + [anon_sym_STAR] = ACTIONS(530), + [sym_identifier] = ACTIONS(2301), [sym_comment] = ACTIONS(39), }, [1047] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2468), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2468), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2468), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2468), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2468), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2468), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2468), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2468), - [sym_preproc_directive] = ACTIONS(2468), - [anon_sym_SEMI] = ACTIONS(2470), - [anon_sym_typedef] = ACTIONS(2468), - [anon_sym_extern] = ACTIONS(2468), - [anon_sym_LBRACE] = ACTIONS(2470), - [anon_sym_LPAREN2] = ACTIONS(2470), - [anon_sym_STAR] = ACTIONS(2470), - [anon_sym_static] = ACTIONS(2468), - [anon_sym_auto] = ACTIONS(2468), - [anon_sym_register] = ACTIONS(2468), - [anon_sym_inline] = ACTIONS(2468), - [anon_sym_const] = ACTIONS(2468), - [anon_sym_restrict] = ACTIONS(2468), - [anon_sym_volatile] = ACTIONS(2468), - [anon_sym__Atomic] = ACTIONS(2468), - [anon_sym_unsigned] = ACTIONS(2468), - [anon_sym_long] = ACTIONS(2468), - [anon_sym_short] = ACTIONS(2468), - [sym_primitive_type] = ACTIONS(2468), - [anon_sym_enum] = ACTIONS(2468), - [anon_sym_struct] = ACTIONS(2468), - [anon_sym_union] = ACTIONS(2468), - [anon_sym_if] = ACTIONS(2468), - [anon_sym_else] = ACTIONS(2468), - [anon_sym_switch] = ACTIONS(2468), - [anon_sym_case] = ACTIONS(2468), - [anon_sym_default] = ACTIONS(2468), - [anon_sym_while] = ACTIONS(2468), - [anon_sym_do] = ACTIONS(2468), - [anon_sym_for] = ACTIONS(2468), - [anon_sym_return] = ACTIONS(2468), - [anon_sym_break] = ACTIONS(2468), - [anon_sym_continue] = ACTIONS(2468), - [anon_sym_goto] = ACTIONS(2468), - [anon_sym_AMP] = ACTIONS(2470), - [anon_sym_BANG] = ACTIONS(2470), - [anon_sym_TILDE] = ACTIONS(2470), - [anon_sym_PLUS] = ACTIONS(2468), - [anon_sym_DASH] = ACTIONS(2468), - [anon_sym_DASH_DASH] = ACTIONS(2470), - [anon_sym_PLUS_PLUS] = ACTIONS(2470), - [anon_sym_sizeof] = ACTIONS(2468), - [sym_number_literal] = ACTIONS(2470), - [anon_sym_SQUOTE] = ACTIONS(2470), - [anon_sym_DQUOTE] = ACTIONS(2470), - [sym_true] = ACTIONS(2468), - [sym_false] = ACTIONS(2468), - [sym_null] = ACTIONS(2468), - [sym_identifier] = ACTIONS(2468), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2457), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2457), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2457), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2457), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2457), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2457), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2457), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2457), + [sym_preproc_directive] = ACTIONS(2457), + [anon_sym_SEMI] = ACTIONS(2459), + [anon_sym_typedef] = ACTIONS(2457), + [anon_sym_extern] = ACTIONS(2457), + [anon_sym_LBRACE] = ACTIONS(2459), + [anon_sym_LPAREN2] = ACTIONS(2459), + [anon_sym_STAR] = ACTIONS(2459), + [anon_sym_static] = ACTIONS(2457), + [anon_sym_auto] = ACTIONS(2457), + [anon_sym_register] = ACTIONS(2457), + [anon_sym_inline] = ACTIONS(2457), + [anon_sym_const] = ACTIONS(2457), + [anon_sym_restrict] = ACTIONS(2457), + [anon_sym_volatile] = ACTIONS(2457), + [anon_sym__Atomic] = ACTIONS(2457), + [anon_sym_unsigned] = ACTIONS(2457), + [anon_sym_long] = ACTIONS(2457), + [anon_sym_short] = ACTIONS(2457), + [sym_primitive_type] = ACTIONS(2457), + [anon_sym_enum] = ACTIONS(2457), + [anon_sym_struct] = ACTIONS(2457), + [anon_sym_union] = ACTIONS(2457), + [anon_sym_if] = ACTIONS(2457), + [anon_sym_else] = ACTIONS(2457), + [anon_sym_switch] = ACTIONS(2457), + [anon_sym_case] = ACTIONS(2457), + [anon_sym_default] = ACTIONS(2457), + [anon_sym_while] = ACTIONS(2457), + [anon_sym_do] = ACTIONS(2457), + [anon_sym_for] = ACTIONS(2457), + [anon_sym_return] = ACTIONS(2457), + [anon_sym_break] = ACTIONS(2457), + [anon_sym_continue] = ACTIONS(2457), + [anon_sym_goto] = ACTIONS(2457), + [anon_sym_AMP] = ACTIONS(2459), + [anon_sym_BANG] = ACTIONS(2459), + [anon_sym_TILDE] = ACTIONS(2459), + [anon_sym_PLUS] = ACTIONS(2457), + [anon_sym_DASH] = ACTIONS(2457), + [anon_sym_DASH_DASH] = ACTIONS(2459), + [anon_sym_PLUS_PLUS] = ACTIONS(2459), + [anon_sym_sizeof] = ACTIONS(2457), + [sym_number_literal] = ACTIONS(2459), + [anon_sym_SQUOTE] = ACTIONS(2459), + [anon_sym_DQUOTE] = ACTIONS(2459), + [sym_true] = ACTIONS(2457), + [sym_false] = ACTIONS(2457), + [sym_null] = ACTIONS(2457), + [sym_identifier] = ACTIONS(2457), [sym_comment] = ACTIONS(39), }, [1048] = { [sym_parenthesized_expression] = STATE(1156), - [anon_sym_LPAREN2] = ACTIONS(3172), + [anon_sym_LPAREN2] = ACTIONS(3161), [sym_comment] = ACTIONS(39), }, [1049] = { @@ -41020,587 +41039,587 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(1158), [sym_concatenated_string] = STATE(1158), [sym_string_literal] = STATE(376), - [anon_sym_SEMI] = ACTIONS(3174), - [anon_sym_LPAREN2] = ACTIONS(847), - [anon_sym_STAR] = ACTIONS(849), - [anon_sym_AMP] = ACTIONS(849), - [anon_sym_BANG] = ACTIONS(851), - [anon_sym_TILDE] = ACTIONS(853), - [anon_sym_PLUS] = ACTIONS(855), - [anon_sym_DASH] = ACTIONS(855), - [anon_sym_DASH_DASH] = ACTIONS(857), - [anon_sym_PLUS_PLUS] = ACTIONS(857), - [anon_sym_sizeof] = ACTIONS(859), - [sym_number_literal] = ACTIONS(3176), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(3178), - [sym_false] = ACTIONS(3178), - [sym_null] = ACTIONS(3178), - [sym_identifier] = ACTIONS(3178), + [anon_sym_SEMI] = ACTIONS(3163), + [anon_sym_LPAREN2] = ACTIONS(838), + [anon_sym_STAR] = ACTIONS(840), + [anon_sym_AMP] = ACTIONS(840), + [anon_sym_BANG] = ACTIONS(842), + [anon_sym_TILDE] = ACTIONS(844), + [anon_sym_PLUS] = ACTIONS(846), + [anon_sym_DASH] = ACTIONS(846), + [anon_sym_DASH_DASH] = ACTIONS(848), + [anon_sym_PLUS_PLUS] = ACTIONS(848), + [anon_sym_sizeof] = ACTIONS(850), + [sym_number_literal] = ACTIONS(3165), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(3167), + [sym_false] = ACTIONS(3167), + [sym_null] = ACTIONS(3167), + [sym_identifier] = ACTIONS(3167), [sym_comment] = ACTIONS(39), }, [1050] = { [sym_argument_list] = STATE(465), - [anon_sym_SEMI] = ACTIONS(3180), - [anon_sym_LPAREN2] = ACTIONS(1096), - [anon_sym_STAR] = ACTIONS(1436), - [anon_sym_LBRACK] = ACTIONS(1100), - [anon_sym_EQ] = ACTIONS(1438), - [anon_sym_QMARK] = ACTIONS(1440), - [anon_sym_STAR_EQ] = ACTIONS(1442), - [anon_sym_SLASH_EQ] = ACTIONS(1442), - [anon_sym_PERCENT_EQ] = ACTIONS(1442), - [anon_sym_PLUS_EQ] = ACTIONS(1442), - [anon_sym_DASH_EQ] = ACTIONS(1442), - [anon_sym_LT_LT_EQ] = ACTIONS(1442), - [anon_sym_GT_GT_EQ] = ACTIONS(1442), - [anon_sym_AMP_EQ] = ACTIONS(1442), - [anon_sym_CARET_EQ] = ACTIONS(1442), - [anon_sym_PIPE_EQ] = ACTIONS(1442), - [anon_sym_AMP] = ACTIONS(1444), - [anon_sym_PIPE_PIPE] = ACTIONS(1446), - [anon_sym_AMP_AMP] = ACTIONS(1448), - [anon_sym_PIPE] = ACTIONS(1450), - [anon_sym_CARET] = ACTIONS(1452), - [anon_sym_EQ_EQ] = ACTIONS(1454), - [anon_sym_BANG_EQ] = ACTIONS(1454), - [anon_sym_LT] = ACTIONS(1456), - [anon_sym_GT] = ACTIONS(1456), - [anon_sym_LT_EQ] = ACTIONS(1458), - [anon_sym_GT_EQ] = ACTIONS(1458), - [anon_sym_LT_LT] = ACTIONS(1460), - [anon_sym_GT_GT] = ACTIONS(1460), - [anon_sym_PLUS] = ACTIONS(1462), - [anon_sym_DASH] = ACTIONS(1462), - [anon_sym_SLASH] = ACTIONS(1436), - [anon_sym_PERCENT] = ACTIONS(1436), - [anon_sym_DASH_DASH] = ACTIONS(1128), - [anon_sym_PLUS_PLUS] = ACTIONS(1128), - [anon_sym_DOT] = ACTIONS(1130), - [anon_sym_DASH_GT] = ACTIONS(1130), + [anon_sym_SEMI] = ACTIONS(3169), + [anon_sym_LPAREN2] = ACTIONS(1089), + [anon_sym_STAR] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(1429), + [anon_sym_QMARK] = ACTIONS(1431), + [anon_sym_STAR_EQ] = ACTIONS(1433), + [anon_sym_SLASH_EQ] = ACTIONS(1433), + [anon_sym_PERCENT_EQ] = ACTIONS(1433), + [anon_sym_PLUS_EQ] = ACTIONS(1433), + [anon_sym_DASH_EQ] = ACTIONS(1433), + [anon_sym_LT_LT_EQ] = ACTIONS(1433), + [anon_sym_GT_GT_EQ] = ACTIONS(1433), + [anon_sym_AMP_EQ] = ACTIONS(1433), + [anon_sym_CARET_EQ] = ACTIONS(1433), + [anon_sym_PIPE_EQ] = ACTIONS(1433), + [anon_sym_AMP] = ACTIONS(1435), + [anon_sym_PIPE_PIPE] = ACTIONS(1437), + [anon_sym_AMP_AMP] = ACTIONS(1439), + [anon_sym_PIPE] = ACTIONS(1441), + [anon_sym_CARET] = ACTIONS(1443), + [anon_sym_EQ_EQ] = ACTIONS(1445), + [anon_sym_BANG_EQ] = ACTIONS(1445), + [anon_sym_LT] = ACTIONS(1447), + [anon_sym_GT] = ACTIONS(1447), + [anon_sym_LT_EQ] = ACTIONS(1449), + [anon_sym_GT_EQ] = ACTIONS(1449), + [anon_sym_LT_LT] = ACTIONS(1451), + [anon_sym_GT_GT] = ACTIONS(1451), + [anon_sym_PLUS] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1453), + [anon_sym_SLASH] = ACTIONS(1427), + [anon_sym_PERCENT] = ACTIONS(1427), + [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_PLUS_PLUS] = ACTIONS(1121), + [anon_sym_DOT] = ACTIONS(1123), + [anon_sym_DASH_GT] = ACTIONS(1123), [sym_comment] = ACTIONS(39), }, [1051] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2506), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2506), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2506), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2506), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2506), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2506), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2506), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2506), - [sym_preproc_directive] = ACTIONS(2506), - [anon_sym_SEMI] = ACTIONS(2508), - [anon_sym_typedef] = ACTIONS(2506), - [anon_sym_extern] = ACTIONS(2506), - [anon_sym_LBRACE] = ACTIONS(2508), - [anon_sym_LPAREN2] = ACTIONS(2508), - [anon_sym_STAR] = ACTIONS(2508), - [anon_sym_static] = ACTIONS(2506), - [anon_sym_auto] = ACTIONS(2506), - [anon_sym_register] = ACTIONS(2506), - [anon_sym_inline] = ACTIONS(2506), - [anon_sym_const] = ACTIONS(2506), - [anon_sym_restrict] = ACTIONS(2506), - [anon_sym_volatile] = ACTIONS(2506), - [anon_sym__Atomic] = ACTIONS(2506), - [anon_sym_unsigned] = ACTIONS(2506), - [anon_sym_long] = ACTIONS(2506), - [anon_sym_short] = ACTIONS(2506), - [sym_primitive_type] = ACTIONS(2506), - [anon_sym_enum] = ACTIONS(2506), - [anon_sym_struct] = ACTIONS(2506), - [anon_sym_union] = ACTIONS(2506), - [anon_sym_if] = ACTIONS(2506), - [anon_sym_else] = ACTIONS(2506), - [anon_sym_switch] = ACTIONS(2506), - [anon_sym_case] = ACTIONS(2506), - [anon_sym_default] = ACTIONS(2506), - [anon_sym_while] = ACTIONS(2506), - [anon_sym_do] = ACTIONS(2506), - [anon_sym_for] = ACTIONS(2506), - [anon_sym_return] = ACTIONS(2506), - [anon_sym_break] = ACTIONS(2506), - [anon_sym_continue] = ACTIONS(2506), - [anon_sym_goto] = ACTIONS(2506), - [anon_sym_AMP] = ACTIONS(2508), - [anon_sym_BANG] = ACTIONS(2508), - [anon_sym_TILDE] = ACTIONS(2508), - [anon_sym_PLUS] = ACTIONS(2506), - [anon_sym_DASH] = ACTIONS(2506), - [anon_sym_DASH_DASH] = ACTIONS(2508), - [anon_sym_PLUS_PLUS] = ACTIONS(2508), - [anon_sym_sizeof] = ACTIONS(2506), - [sym_number_literal] = ACTIONS(2508), - [anon_sym_SQUOTE] = ACTIONS(2508), - [anon_sym_DQUOTE] = ACTIONS(2508), - [sym_true] = ACTIONS(2506), - [sym_false] = ACTIONS(2506), - [sym_null] = ACTIONS(2506), - [sym_identifier] = ACTIONS(2506), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2495), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2495), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2495), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2495), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2495), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2495), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2495), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2495), + [sym_preproc_directive] = ACTIONS(2495), + [anon_sym_SEMI] = ACTIONS(2497), + [anon_sym_typedef] = ACTIONS(2495), + [anon_sym_extern] = ACTIONS(2495), + [anon_sym_LBRACE] = ACTIONS(2497), + [anon_sym_LPAREN2] = ACTIONS(2497), + [anon_sym_STAR] = ACTIONS(2497), + [anon_sym_static] = ACTIONS(2495), + [anon_sym_auto] = ACTIONS(2495), + [anon_sym_register] = ACTIONS(2495), + [anon_sym_inline] = ACTIONS(2495), + [anon_sym_const] = ACTIONS(2495), + [anon_sym_restrict] = ACTIONS(2495), + [anon_sym_volatile] = ACTIONS(2495), + [anon_sym__Atomic] = ACTIONS(2495), + [anon_sym_unsigned] = ACTIONS(2495), + [anon_sym_long] = ACTIONS(2495), + [anon_sym_short] = ACTIONS(2495), + [sym_primitive_type] = ACTIONS(2495), + [anon_sym_enum] = ACTIONS(2495), + [anon_sym_struct] = ACTIONS(2495), + [anon_sym_union] = ACTIONS(2495), + [anon_sym_if] = ACTIONS(2495), + [anon_sym_else] = ACTIONS(2495), + [anon_sym_switch] = ACTIONS(2495), + [anon_sym_case] = ACTIONS(2495), + [anon_sym_default] = ACTIONS(2495), + [anon_sym_while] = ACTIONS(2495), + [anon_sym_do] = ACTIONS(2495), + [anon_sym_for] = ACTIONS(2495), + [anon_sym_return] = ACTIONS(2495), + [anon_sym_break] = ACTIONS(2495), + [anon_sym_continue] = ACTIONS(2495), + [anon_sym_goto] = ACTIONS(2495), + [anon_sym_AMP] = ACTIONS(2497), + [anon_sym_BANG] = ACTIONS(2497), + [anon_sym_TILDE] = ACTIONS(2497), + [anon_sym_PLUS] = ACTIONS(2495), + [anon_sym_DASH] = ACTIONS(2495), + [anon_sym_DASH_DASH] = ACTIONS(2497), + [anon_sym_PLUS_PLUS] = ACTIONS(2497), + [anon_sym_sizeof] = ACTIONS(2495), + [sym_number_literal] = ACTIONS(2497), + [anon_sym_SQUOTE] = ACTIONS(2497), + [anon_sym_DQUOTE] = ACTIONS(2497), + [sym_true] = ACTIONS(2495), + [sym_false] = ACTIONS(2495), + [sym_null] = ACTIONS(2495), + [sym_identifier] = ACTIONS(2495), [sym_comment] = ACTIONS(39), }, [1052] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2510), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2510), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2510), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2510), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2510), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2510), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2510), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2510), - [sym_preproc_directive] = ACTIONS(2510), - [anon_sym_SEMI] = ACTIONS(2512), - [anon_sym_typedef] = ACTIONS(2510), - [anon_sym_extern] = ACTIONS(2510), - [anon_sym_LBRACE] = ACTIONS(2512), - [anon_sym_LPAREN2] = ACTIONS(2512), - [anon_sym_STAR] = ACTIONS(2512), - [anon_sym_static] = ACTIONS(2510), - [anon_sym_auto] = ACTIONS(2510), - [anon_sym_register] = ACTIONS(2510), - [anon_sym_inline] = ACTIONS(2510), - [anon_sym_const] = ACTIONS(2510), - [anon_sym_restrict] = ACTIONS(2510), - [anon_sym_volatile] = ACTIONS(2510), - [anon_sym__Atomic] = ACTIONS(2510), - [anon_sym_unsigned] = ACTIONS(2510), - [anon_sym_long] = ACTIONS(2510), - [anon_sym_short] = ACTIONS(2510), - [sym_primitive_type] = ACTIONS(2510), - [anon_sym_enum] = ACTIONS(2510), - [anon_sym_struct] = ACTIONS(2510), - [anon_sym_union] = ACTIONS(2510), - [anon_sym_if] = ACTIONS(2510), - [anon_sym_else] = ACTIONS(2510), - [anon_sym_switch] = ACTIONS(2510), - [anon_sym_case] = ACTIONS(2510), - [anon_sym_default] = ACTIONS(2510), - [anon_sym_while] = ACTIONS(2510), - [anon_sym_do] = ACTIONS(2510), - [anon_sym_for] = ACTIONS(2510), - [anon_sym_return] = ACTIONS(2510), - [anon_sym_break] = ACTIONS(2510), - [anon_sym_continue] = ACTIONS(2510), - [anon_sym_goto] = ACTIONS(2510), - [anon_sym_AMP] = ACTIONS(2512), - [anon_sym_BANG] = ACTIONS(2512), - [anon_sym_TILDE] = ACTIONS(2512), - [anon_sym_PLUS] = ACTIONS(2510), - [anon_sym_DASH] = ACTIONS(2510), - [anon_sym_DASH_DASH] = ACTIONS(2512), - [anon_sym_PLUS_PLUS] = ACTIONS(2512), - [anon_sym_sizeof] = ACTIONS(2510), - [sym_number_literal] = ACTIONS(2512), - [anon_sym_SQUOTE] = ACTIONS(2512), - [anon_sym_DQUOTE] = ACTIONS(2512), - [sym_true] = ACTIONS(2510), - [sym_false] = ACTIONS(2510), - [sym_null] = ACTIONS(2510), - [sym_identifier] = ACTIONS(2510), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2499), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2499), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2499), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2499), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2499), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2499), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2499), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2499), + [sym_preproc_directive] = ACTIONS(2499), + [anon_sym_SEMI] = ACTIONS(2501), + [anon_sym_typedef] = ACTIONS(2499), + [anon_sym_extern] = ACTIONS(2499), + [anon_sym_LBRACE] = ACTIONS(2501), + [anon_sym_LPAREN2] = ACTIONS(2501), + [anon_sym_STAR] = ACTIONS(2501), + [anon_sym_static] = ACTIONS(2499), + [anon_sym_auto] = ACTIONS(2499), + [anon_sym_register] = ACTIONS(2499), + [anon_sym_inline] = ACTIONS(2499), + [anon_sym_const] = ACTIONS(2499), + [anon_sym_restrict] = ACTIONS(2499), + [anon_sym_volatile] = ACTIONS(2499), + [anon_sym__Atomic] = ACTIONS(2499), + [anon_sym_unsigned] = ACTIONS(2499), + [anon_sym_long] = ACTIONS(2499), + [anon_sym_short] = ACTIONS(2499), + [sym_primitive_type] = ACTIONS(2499), + [anon_sym_enum] = ACTIONS(2499), + [anon_sym_struct] = ACTIONS(2499), + [anon_sym_union] = ACTIONS(2499), + [anon_sym_if] = ACTIONS(2499), + [anon_sym_else] = ACTIONS(2499), + [anon_sym_switch] = ACTIONS(2499), + [anon_sym_case] = ACTIONS(2499), + [anon_sym_default] = ACTIONS(2499), + [anon_sym_while] = ACTIONS(2499), + [anon_sym_do] = ACTIONS(2499), + [anon_sym_for] = ACTIONS(2499), + [anon_sym_return] = ACTIONS(2499), + [anon_sym_break] = ACTIONS(2499), + [anon_sym_continue] = ACTIONS(2499), + [anon_sym_goto] = ACTIONS(2499), + [anon_sym_AMP] = ACTIONS(2501), + [anon_sym_BANG] = ACTIONS(2501), + [anon_sym_TILDE] = ACTIONS(2501), + [anon_sym_PLUS] = ACTIONS(2499), + [anon_sym_DASH] = ACTIONS(2499), + [anon_sym_DASH_DASH] = ACTIONS(2501), + [anon_sym_PLUS_PLUS] = ACTIONS(2501), + [anon_sym_sizeof] = ACTIONS(2499), + [sym_number_literal] = ACTIONS(2501), + [anon_sym_SQUOTE] = ACTIONS(2501), + [anon_sym_DQUOTE] = ACTIONS(2501), + [sym_true] = ACTIONS(2499), + [sym_false] = ACTIONS(2499), + [sym_null] = ACTIONS(2499), + [sym_identifier] = ACTIONS(2499), [sym_comment] = ACTIONS(39), }, [1053] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2520), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2520), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2520), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2520), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2520), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2520), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2520), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2520), - [sym_preproc_directive] = ACTIONS(2520), - [anon_sym_SEMI] = ACTIONS(2522), - [anon_sym_typedef] = ACTIONS(2520), - [anon_sym_extern] = ACTIONS(2520), - [anon_sym_LBRACE] = ACTIONS(2522), - [anon_sym_LPAREN2] = ACTIONS(2522), - [anon_sym_STAR] = ACTIONS(2522), - [anon_sym_static] = ACTIONS(2520), - [anon_sym_auto] = ACTIONS(2520), - [anon_sym_register] = ACTIONS(2520), - [anon_sym_inline] = ACTIONS(2520), - [anon_sym_const] = ACTIONS(2520), - [anon_sym_restrict] = ACTIONS(2520), - [anon_sym_volatile] = ACTIONS(2520), - [anon_sym__Atomic] = ACTIONS(2520), - [anon_sym_unsigned] = ACTIONS(2520), - [anon_sym_long] = ACTIONS(2520), - [anon_sym_short] = ACTIONS(2520), - [sym_primitive_type] = ACTIONS(2520), - [anon_sym_enum] = ACTIONS(2520), - [anon_sym_struct] = ACTIONS(2520), - [anon_sym_union] = ACTIONS(2520), - [anon_sym_if] = ACTIONS(2520), - [anon_sym_else] = ACTIONS(2520), - [anon_sym_switch] = ACTIONS(2520), - [anon_sym_case] = ACTIONS(2520), - [anon_sym_default] = ACTIONS(2520), - [anon_sym_while] = ACTIONS(2520), - [anon_sym_do] = ACTIONS(2520), - [anon_sym_for] = ACTIONS(2520), - [anon_sym_return] = ACTIONS(2520), - [anon_sym_break] = ACTIONS(2520), - [anon_sym_continue] = ACTIONS(2520), - [anon_sym_goto] = ACTIONS(2520), - [anon_sym_AMP] = ACTIONS(2522), - [anon_sym_BANG] = ACTIONS(2522), - [anon_sym_TILDE] = ACTIONS(2522), - [anon_sym_PLUS] = ACTIONS(2520), - [anon_sym_DASH] = ACTIONS(2520), - [anon_sym_DASH_DASH] = ACTIONS(2522), - [anon_sym_PLUS_PLUS] = ACTIONS(2522), - [anon_sym_sizeof] = ACTIONS(2520), - [sym_number_literal] = ACTIONS(2522), - [anon_sym_SQUOTE] = ACTIONS(2522), - [anon_sym_DQUOTE] = ACTIONS(2522), - [sym_true] = ACTIONS(2520), - [sym_false] = ACTIONS(2520), - [sym_null] = ACTIONS(2520), - [sym_identifier] = ACTIONS(2520), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2509), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2509), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2509), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2509), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2509), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2509), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2509), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2509), + [sym_preproc_directive] = ACTIONS(2509), + [anon_sym_SEMI] = ACTIONS(2511), + [anon_sym_typedef] = ACTIONS(2509), + [anon_sym_extern] = ACTIONS(2509), + [anon_sym_LBRACE] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(2511), + [anon_sym_static] = ACTIONS(2509), + [anon_sym_auto] = ACTIONS(2509), + [anon_sym_register] = ACTIONS(2509), + [anon_sym_inline] = ACTIONS(2509), + [anon_sym_const] = ACTIONS(2509), + [anon_sym_restrict] = ACTIONS(2509), + [anon_sym_volatile] = ACTIONS(2509), + [anon_sym__Atomic] = ACTIONS(2509), + [anon_sym_unsigned] = ACTIONS(2509), + [anon_sym_long] = ACTIONS(2509), + [anon_sym_short] = ACTIONS(2509), + [sym_primitive_type] = ACTIONS(2509), + [anon_sym_enum] = ACTIONS(2509), + [anon_sym_struct] = ACTIONS(2509), + [anon_sym_union] = ACTIONS(2509), + [anon_sym_if] = ACTIONS(2509), + [anon_sym_else] = ACTIONS(2509), + [anon_sym_switch] = ACTIONS(2509), + [anon_sym_case] = ACTIONS(2509), + [anon_sym_default] = ACTIONS(2509), + [anon_sym_while] = ACTIONS(2509), + [anon_sym_do] = ACTIONS(2509), + [anon_sym_for] = ACTIONS(2509), + [anon_sym_return] = ACTIONS(2509), + [anon_sym_break] = ACTIONS(2509), + [anon_sym_continue] = ACTIONS(2509), + [anon_sym_goto] = ACTIONS(2509), + [anon_sym_AMP] = ACTIONS(2511), + [anon_sym_BANG] = ACTIONS(2511), + [anon_sym_TILDE] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2509), + [anon_sym_DASH] = ACTIONS(2509), + [anon_sym_DASH_DASH] = ACTIONS(2511), + [anon_sym_PLUS_PLUS] = ACTIONS(2511), + [anon_sym_sizeof] = ACTIONS(2509), + [sym_number_literal] = ACTIONS(2511), + [anon_sym_SQUOTE] = ACTIONS(2511), + [anon_sym_DQUOTE] = ACTIONS(2511), + [sym_true] = ACTIONS(2509), + [sym_false] = ACTIONS(2509), + [sym_null] = ACTIONS(2509), + [sym_identifier] = ACTIONS(2509), [sym_comment] = ACTIONS(39), }, [1054] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3182), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3182), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3182), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3182), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3182), - [sym_preproc_directive] = ACTIONS(3182), - [anon_sym_SEMI] = ACTIONS(3184), - [anon_sym_typedef] = ACTIONS(3182), - [anon_sym_extern] = ACTIONS(3182), - [anon_sym_LBRACE] = ACTIONS(3184), - [anon_sym_RBRACE] = ACTIONS(3184), - [anon_sym_LPAREN2] = ACTIONS(3184), - [anon_sym_STAR] = ACTIONS(3184), - [anon_sym_static] = ACTIONS(3182), - [anon_sym_auto] = ACTIONS(3182), - [anon_sym_register] = ACTIONS(3182), - [anon_sym_inline] = ACTIONS(3182), - [anon_sym_const] = ACTIONS(3182), - [anon_sym_restrict] = ACTIONS(3182), - [anon_sym_volatile] = ACTIONS(3182), - [anon_sym__Atomic] = ACTIONS(3182), - [anon_sym_unsigned] = ACTIONS(3182), - [anon_sym_long] = ACTIONS(3182), - [anon_sym_short] = ACTIONS(3182), - [sym_primitive_type] = ACTIONS(3182), - [anon_sym_enum] = ACTIONS(3182), - [anon_sym_struct] = ACTIONS(3182), - [anon_sym_union] = ACTIONS(3182), - [anon_sym_if] = ACTIONS(3182), - [anon_sym_switch] = ACTIONS(3182), - [anon_sym_case] = ACTIONS(3182), - [anon_sym_default] = ACTIONS(3182), - [anon_sym_while] = ACTIONS(3182), - [anon_sym_do] = ACTIONS(3182), - [anon_sym_for] = ACTIONS(3182), - [anon_sym_return] = ACTIONS(3182), - [anon_sym_break] = ACTIONS(3182), - [anon_sym_continue] = ACTIONS(3182), - [anon_sym_goto] = ACTIONS(3182), - [anon_sym_AMP] = ACTIONS(3184), - [anon_sym_BANG] = ACTIONS(3184), - [anon_sym_TILDE] = ACTIONS(3184), - [anon_sym_PLUS] = ACTIONS(3182), - [anon_sym_DASH] = ACTIONS(3182), - [anon_sym_DASH_DASH] = ACTIONS(3184), - [anon_sym_PLUS_PLUS] = ACTIONS(3184), - [anon_sym_sizeof] = ACTIONS(3182), - [sym_number_literal] = ACTIONS(3184), - [anon_sym_SQUOTE] = ACTIONS(3184), - [anon_sym_DQUOTE] = ACTIONS(3184), - [sym_true] = ACTIONS(3182), - [sym_false] = ACTIONS(3182), - [sym_null] = ACTIONS(3182), - [sym_identifier] = ACTIONS(3182), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3171), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3171), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3171), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3171), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3171), + [sym_preproc_directive] = ACTIONS(3171), + [anon_sym_SEMI] = ACTIONS(3173), + [anon_sym_typedef] = ACTIONS(3171), + [anon_sym_extern] = ACTIONS(3171), + [anon_sym_LBRACE] = ACTIONS(3173), + [anon_sym_RBRACE] = ACTIONS(3173), + [anon_sym_LPAREN2] = ACTIONS(3173), + [anon_sym_STAR] = ACTIONS(3173), + [anon_sym_static] = ACTIONS(3171), + [anon_sym_auto] = ACTIONS(3171), + [anon_sym_register] = ACTIONS(3171), + [anon_sym_inline] = ACTIONS(3171), + [anon_sym_const] = ACTIONS(3171), + [anon_sym_restrict] = ACTIONS(3171), + [anon_sym_volatile] = ACTIONS(3171), + [anon_sym__Atomic] = ACTIONS(3171), + [anon_sym_unsigned] = ACTIONS(3171), + [anon_sym_long] = ACTIONS(3171), + [anon_sym_short] = ACTIONS(3171), + [sym_primitive_type] = ACTIONS(3171), + [anon_sym_enum] = ACTIONS(3171), + [anon_sym_struct] = ACTIONS(3171), + [anon_sym_union] = ACTIONS(3171), + [anon_sym_if] = ACTIONS(3171), + [anon_sym_switch] = ACTIONS(3171), + [anon_sym_case] = ACTIONS(3171), + [anon_sym_default] = ACTIONS(3171), + [anon_sym_while] = ACTIONS(3171), + [anon_sym_do] = ACTIONS(3171), + [anon_sym_for] = ACTIONS(3171), + [anon_sym_return] = ACTIONS(3171), + [anon_sym_break] = ACTIONS(3171), + [anon_sym_continue] = ACTIONS(3171), + [anon_sym_goto] = ACTIONS(3171), + [anon_sym_AMP] = ACTIONS(3173), + [anon_sym_BANG] = ACTIONS(3173), + [anon_sym_TILDE] = ACTIONS(3173), + [anon_sym_PLUS] = ACTIONS(3171), + [anon_sym_DASH] = ACTIONS(3171), + [anon_sym_DASH_DASH] = ACTIONS(3173), + [anon_sym_PLUS_PLUS] = ACTIONS(3173), + [anon_sym_sizeof] = ACTIONS(3171), + [sym_number_literal] = ACTIONS(3173), + [anon_sym_SQUOTE] = ACTIONS(3173), + [anon_sym_DQUOTE] = ACTIONS(3173), + [sym_true] = ACTIONS(3171), + [sym_false] = ACTIONS(3171), + [sym_null] = ACTIONS(3171), + [sym_identifier] = ACTIONS(3171), [sym_comment] = ACTIONS(39), }, [1055] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3186), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3186), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3186), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3186), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3186), - [sym_preproc_directive] = ACTIONS(3186), - [anon_sym_SEMI] = ACTIONS(3188), - [anon_sym_typedef] = ACTIONS(3186), - [anon_sym_extern] = ACTIONS(3186), - [anon_sym_LBRACE] = ACTIONS(3188), - [anon_sym_RBRACE] = ACTIONS(3188), - [anon_sym_LPAREN2] = ACTIONS(3188), - [anon_sym_STAR] = ACTIONS(3188), - [anon_sym_static] = ACTIONS(3186), - [anon_sym_auto] = ACTIONS(3186), - [anon_sym_register] = ACTIONS(3186), - [anon_sym_inline] = ACTIONS(3186), - [anon_sym_const] = ACTIONS(3186), - [anon_sym_restrict] = ACTIONS(3186), - [anon_sym_volatile] = ACTIONS(3186), - [anon_sym__Atomic] = ACTIONS(3186), - [anon_sym_unsigned] = ACTIONS(3186), - [anon_sym_long] = ACTIONS(3186), - [anon_sym_short] = ACTIONS(3186), - [sym_primitive_type] = ACTIONS(3186), - [anon_sym_enum] = ACTIONS(3186), - [anon_sym_struct] = ACTIONS(3186), - [anon_sym_union] = ACTIONS(3186), - [anon_sym_if] = ACTIONS(3186), - [anon_sym_switch] = ACTIONS(3186), - [anon_sym_case] = ACTIONS(3186), - [anon_sym_default] = ACTIONS(3186), - [anon_sym_while] = ACTIONS(3186), - [anon_sym_do] = ACTIONS(3186), - [anon_sym_for] = ACTIONS(3186), - [anon_sym_return] = ACTIONS(3186), - [anon_sym_break] = ACTIONS(3186), - [anon_sym_continue] = ACTIONS(3186), - [anon_sym_goto] = ACTIONS(3186), - [anon_sym_AMP] = ACTIONS(3188), - [anon_sym_BANG] = ACTIONS(3188), - [anon_sym_TILDE] = ACTIONS(3188), - [anon_sym_PLUS] = ACTIONS(3186), - [anon_sym_DASH] = ACTIONS(3186), - [anon_sym_DASH_DASH] = ACTIONS(3188), - [anon_sym_PLUS_PLUS] = ACTIONS(3188), - [anon_sym_sizeof] = ACTIONS(3186), - [sym_number_literal] = ACTIONS(3188), - [anon_sym_SQUOTE] = ACTIONS(3188), - [anon_sym_DQUOTE] = ACTIONS(3188), - [sym_true] = ACTIONS(3186), - [sym_false] = ACTIONS(3186), - [sym_null] = ACTIONS(3186), - [sym_identifier] = ACTIONS(3186), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3175), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3175), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3175), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3175), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3175), + [sym_preproc_directive] = ACTIONS(3175), + [anon_sym_SEMI] = ACTIONS(3177), + [anon_sym_typedef] = ACTIONS(3175), + [anon_sym_extern] = ACTIONS(3175), + [anon_sym_LBRACE] = ACTIONS(3177), + [anon_sym_RBRACE] = ACTIONS(3177), + [anon_sym_LPAREN2] = ACTIONS(3177), + [anon_sym_STAR] = ACTIONS(3177), + [anon_sym_static] = ACTIONS(3175), + [anon_sym_auto] = ACTIONS(3175), + [anon_sym_register] = ACTIONS(3175), + [anon_sym_inline] = ACTIONS(3175), + [anon_sym_const] = ACTIONS(3175), + [anon_sym_restrict] = ACTIONS(3175), + [anon_sym_volatile] = ACTIONS(3175), + [anon_sym__Atomic] = ACTIONS(3175), + [anon_sym_unsigned] = ACTIONS(3175), + [anon_sym_long] = ACTIONS(3175), + [anon_sym_short] = ACTIONS(3175), + [sym_primitive_type] = ACTIONS(3175), + [anon_sym_enum] = ACTIONS(3175), + [anon_sym_struct] = ACTIONS(3175), + [anon_sym_union] = ACTIONS(3175), + [anon_sym_if] = ACTIONS(3175), + [anon_sym_switch] = ACTIONS(3175), + [anon_sym_case] = ACTIONS(3175), + [anon_sym_default] = ACTIONS(3175), + [anon_sym_while] = ACTIONS(3175), + [anon_sym_do] = ACTIONS(3175), + [anon_sym_for] = ACTIONS(3175), + [anon_sym_return] = ACTIONS(3175), + [anon_sym_break] = ACTIONS(3175), + [anon_sym_continue] = ACTIONS(3175), + [anon_sym_goto] = ACTIONS(3175), + [anon_sym_AMP] = ACTIONS(3177), + [anon_sym_BANG] = ACTIONS(3177), + [anon_sym_TILDE] = ACTIONS(3177), + [anon_sym_PLUS] = ACTIONS(3175), + [anon_sym_DASH] = ACTIONS(3175), + [anon_sym_DASH_DASH] = ACTIONS(3177), + [anon_sym_PLUS_PLUS] = ACTIONS(3177), + [anon_sym_sizeof] = ACTIONS(3175), + [sym_number_literal] = ACTIONS(3177), + [anon_sym_SQUOTE] = ACTIONS(3177), + [anon_sym_DQUOTE] = ACTIONS(3177), + [sym_true] = ACTIONS(3175), + [sym_false] = ACTIONS(3175), + [sym_null] = ACTIONS(3175), + [sym_identifier] = ACTIONS(3175), [sym_comment] = ACTIONS(39), }, [1056] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3190), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3190), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3190), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3190), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3190), - [sym_preproc_directive] = ACTIONS(3190), - [anon_sym_SEMI] = ACTIONS(3192), - [anon_sym_typedef] = ACTIONS(3190), - [anon_sym_extern] = ACTIONS(3190), - [anon_sym_LBRACE] = ACTIONS(3192), - [anon_sym_RBRACE] = ACTIONS(3192), - [anon_sym_LPAREN2] = ACTIONS(3192), - [anon_sym_STAR] = ACTIONS(3192), - [anon_sym_static] = ACTIONS(3190), - [anon_sym_auto] = ACTIONS(3190), - [anon_sym_register] = ACTIONS(3190), - [anon_sym_inline] = ACTIONS(3190), - [anon_sym_const] = ACTIONS(3190), - [anon_sym_restrict] = ACTIONS(3190), - [anon_sym_volatile] = ACTIONS(3190), - [anon_sym__Atomic] = ACTIONS(3190), - [anon_sym_unsigned] = ACTIONS(3190), - [anon_sym_long] = ACTIONS(3190), - [anon_sym_short] = ACTIONS(3190), - [sym_primitive_type] = ACTIONS(3190), - [anon_sym_enum] = ACTIONS(3190), - [anon_sym_struct] = ACTIONS(3190), - [anon_sym_union] = ACTIONS(3190), - [anon_sym_if] = ACTIONS(3190), - [anon_sym_switch] = ACTIONS(3190), - [anon_sym_case] = ACTIONS(3190), - [anon_sym_default] = ACTIONS(3190), - [anon_sym_while] = ACTIONS(3190), - [anon_sym_do] = ACTIONS(3190), - [anon_sym_for] = ACTIONS(3190), - [anon_sym_return] = ACTIONS(3190), - [anon_sym_break] = ACTIONS(3190), - [anon_sym_continue] = ACTIONS(3190), - [anon_sym_goto] = ACTIONS(3190), - [anon_sym_AMP] = ACTIONS(3192), - [anon_sym_BANG] = ACTIONS(3192), - [anon_sym_TILDE] = ACTIONS(3192), - [anon_sym_PLUS] = ACTIONS(3190), - [anon_sym_DASH] = ACTIONS(3190), - [anon_sym_DASH_DASH] = ACTIONS(3192), - [anon_sym_PLUS_PLUS] = ACTIONS(3192), - [anon_sym_sizeof] = ACTIONS(3190), - [sym_number_literal] = ACTIONS(3192), - [anon_sym_SQUOTE] = ACTIONS(3192), - [anon_sym_DQUOTE] = ACTIONS(3192), - [sym_true] = ACTIONS(3190), - [sym_false] = ACTIONS(3190), - [sym_null] = ACTIONS(3190), - [sym_identifier] = ACTIONS(3190), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3179), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3179), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3179), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3179), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3179), + [sym_preproc_directive] = ACTIONS(3179), + [anon_sym_SEMI] = ACTIONS(3181), + [anon_sym_typedef] = ACTIONS(3179), + [anon_sym_extern] = ACTIONS(3179), + [anon_sym_LBRACE] = ACTIONS(3181), + [anon_sym_RBRACE] = ACTIONS(3181), + [anon_sym_LPAREN2] = ACTIONS(3181), + [anon_sym_STAR] = ACTIONS(3181), + [anon_sym_static] = ACTIONS(3179), + [anon_sym_auto] = ACTIONS(3179), + [anon_sym_register] = ACTIONS(3179), + [anon_sym_inline] = ACTIONS(3179), + [anon_sym_const] = ACTIONS(3179), + [anon_sym_restrict] = ACTIONS(3179), + [anon_sym_volatile] = ACTIONS(3179), + [anon_sym__Atomic] = ACTIONS(3179), + [anon_sym_unsigned] = ACTIONS(3179), + [anon_sym_long] = ACTIONS(3179), + [anon_sym_short] = ACTIONS(3179), + [sym_primitive_type] = ACTIONS(3179), + [anon_sym_enum] = ACTIONS(3179), + [anon_sym_struct] = ACTIONS(3179), + [anon_sym_union] = ACTIONS(3179), + [anon_sym_if] = ACTIONS(3179), + [anon_sym_switch] = ACTIONS(3179), + [anon_sym_case] = ACTIONS(3179), + [anon_sym_default] = ACTIONS(3179), + [anon_sym_while] = ACTIONS(3179), + [anon_sym_do] = ACTIONS(3179), + [anon_sym_for] = ACTIONS(3179), + [anon_sym_return] = ACTIONS(3179), + [anon_sym_break] = ACTIONS(3179), + [anon_sym_continue] = ACTIONS(3179), + [anon_sym_goto] = ACTIONS(3179), + [anon_sym_AMP] = ACTIONS(3181), + [anon_sym_BANG] = ACTIONS(3181), + [anon_sym_TILDE] = ACTIONS(3181), + [anon_sym_PLUS] = ACTIONS(3179), + [anon_sym_DASH] = ACTIONS(3179), + [anon_sym_DASH_DASH] = ACTIONS(3181), + [anon_sym_PLUS_PLUS] = ACTIONS(3181), + [anon_sym_sizeof] = ACTIONS(3179), + [sym_number_literal] = ACTIONS(3181), + [anon_sym_SQUOTE] = ACTIONS(3181), + [anon_sym_DQUOTE] = ACTIONS(3181), + [sym_true] = ACTIONS(3179), + [sym_false] = ACTIONS(3179), + [sym_null] = ACTIONS(3179), + [sym_identifier] = ACTIONS(3179), [sym_comment] = ACTIONS(39), }, [1057] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3194), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3194), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3194), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3194), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3194), - [sym_preproc_directive] = ACTIONS(3194), - [anon_sym_SEMI] = ACTIONS(3196), - [anon_sym_typedef] = ACTIONS(3194), - [anon_sym_extern] = ACTIONS(3194), - [anon_sym_LBRACE] = ACTIONS(3196), - [anon_sym_RBRACE] = ACTIONS(3196), - [anon_sym_LPAREN2] = ACTIONS(3196), - [anon_sym_STAR] = ACTIONS(3196), - [anon_sym_static] = ACTIONS(3194), - [anon_sym_auto] = ACTIONS(3194), - [anon_sym_register] = ACTIONS(3194), - [anon_sym_inline] = ACTIONS(3194), - [anon_sym_const] = ACTIONS(3194), - [anon_sym_restrict] = ACTIONS(3194), - [anon_sym_volatile] = ACTIONS(3194), - [anon_sym__Atomic] = ACTIONS(3194), - [anon_sym_unsigned] = ACTIONS(3194), - [anon_sym_long] = ACTIONS(3194), - [anon_sym_short] = ACTIONS(3194), - [sym_primitive_type] = ACTIONS(3194), - [anon_sym_enum] = ACTIONS(3194), - [anon_sym_struct] = ACTIONS(3194), - [anon_sym_union] = ACTIONS(3194), - [anon_sym_if] = ACTIONS(3194), - [anon_sym_switch] = ACTIONS(3194), - [anon_sym_case] = ACTIONS(3194), - [anon_sym_default] = ACTIONS(3194), - [anon_sym_while] = ACTIONS(3194), - [anon_sym_do] = ACTIONS(3194), - [anon_sym_for] = ACTIONS(3194), - [anon_sym_return] = ACTIONS(3194), - [anon_sym_break] = ACTIONS(3194), - [anon_sym_continue] = ACTIONS(3194), - [anon_sym_goto] = ACTIONS(3194), - [anon_sym_AMP] = ACTIONS(3196), - [anon_sym_BANG] = ACTIONS(3196), - [anon_sym_TILDE] = ACTIONS(3196), - [anon_sym_PLUS] = ACTIONS(3194), - [anon_sym_DASH] = ACTIONS(3194), - [anon_sym_DASH_DASH] = ACTIONS(3196), - [anon_sym_PLUS_PLUS] = ACTIONS(3196), - [anon_sym_sizeof] = ACTIONS(3194), - [sym_number_literal] = ACTIONS(3196), - [anon_sym_SQUOTE] = ACTIONS(3196), - [anon_sym_DQUOTE] = ACTIONS(3196), - [sym_true] = ACTIONS(3194), - [sym_false] = ACTIONS(3194), - [sym_null] = ACTIONS(3194), - [sym_identifier] = ACTIONS(3194), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3183), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3183), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3183), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3183), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3183), + [sym_preproc_directive] = ACTIONS(3183), + [anon_sym_SEMI] = ACTIONS(3185), + [anon_sym_typedef] = ACTIONS(3183), + [anon_sym_extern] = ACTIONS(3183), + [anon_sym_LBRACE] = ACTIONS(3185), + [anon_sym_RBRACE] = ACTIONS(3185), + [anon_sym_LPAREN2] = ACTIONS(3185), + [anon_sym_STAR] = ACTIONS(3185), + [anon_sym_static] = ACTIONS(3183), + [anon_sym_auto] = ACTIONS(3183), + [anon_sym_register] = ACTIONS(3183), + [anon_sym_inline] = ACTIONS(3183), + [anon_sym_const] = ACTIONS(3183), + [anon_sym_restrict] = ACTIONS(3183), + [anon_sym_volatile] = ACTIONS(3183), + [anon_sym__Atomic] = ACTIONS(3183), + [anon_sym_unsigned] = ACTIONS(3183), + [anon_sym_long] = ACTIONS(3183), + [anon_sym_short] = ACTIONS(3183), + [sym_primitive_type] = ACTIONS(3183), + [anon_sym_enum] = ACTIONS(3183), + [anon_sym_struct] = ACTIONS(3183), + [anon_sym_union] = ACTIONS(3183), + [anon_sym_if] = ACTIONS(3183), + [anon_sym_switch] = ACTIONS(3183), + [anon_sym_case] = ACTIONS(3183), + [anon_sym_default] = ACTIONS(3183), + [anon_sym_while] = ACTIONS(3183), + [anon_sym_do] = ACTIONS(3183), + [anon_sym_for] = ACTIONS(3183), + [anon_sym_return] = ACTIONS(3183), + [anon_sym_break] = ACTIONS(3183), + [anon_sym_continue] = ACTIONS(3183), + [anon_sym_goto] = ACTIONS(3183), + [anon_sym_AMP] = ACTIONS(3185), + [anon_sym_BANG] = ACTIONS(3185), + [anon_sym_TILDE] = ACTIONS(3185), + [anon_sym_PLUS] = ACTIONS(3183), + [anon_sym_DASH] = ACTIONS(3183), + [anon_sym_DASH_DASH] = ACTIONS(3185), + [anon_sym_PLUS_PLUS] = ACTIONS(3185), + [anon_sym_sizeof] = ACTIONS(3183), + [sym_number_literal] = ACTIONS(3185), + [anon_sym_SQUOTE] = ACTIONS(3185), + [anon_sym_DQUOTE] = ACTIONS(3185), + [sym_true] = ACTIONS(3183), + [sym_false] = ACTIONS(3183), + [sym_null] = ACTIONS(3183), + [sym_identifier] = ACTIONS(3183), [sym_comment] = ACTIONS(39), }, [1058] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3198), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3198), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3198), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3198), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3198), - [sym_preproc_directive] = ACTIONS(3198), - [anon_sym_SEMI] = ACTIONS(3200), - [anon_sym_typedef] = ACTIONS(3198), - [anon_sym_extern] = ACTIONS(3198), - [anon_sym_LBRACE] = ACTIONS(3200), - [anon_sym_RBRACE] = ACTIONS(3200), - [anon_sym_LPAREN2] = ACTIONS(3200), - [anon_sym_STAR] = ACTIONS(3200), - [anon_sym_static] = ACTIONS(3198), - [anon_sym_auto] = ACTIONS(3198), - [anon_sym_register] = ACTIONS(3198), - [anon_sym_inline] = ACTIONS(3198), - [anon_sym_const] = ACTIONS(3198), - [anon_sym_restrict] = ACTIONS(3198), - [anon_sym_volatile] = ACTIONS(3198), - [anon_sym__Atomic] = ACTIONS(3198), - [anon_sym_unsigned] = ACTIONS(3198), - [anon_sym_long] = ACTIONS(3198), - [anon_sym_short] = ACTIONS(3198), - [sym_primitive_type] = ACTIONS(3198), - [anon_sym_enum] = ACTIONS(3198), - [anon_sym_struct] = ACTIONS(3198), - [anon_sym_union] = ACTIONS(3198), - [anon_sym_if] = ACTIONS(3198), - [anon_sym_switch] = ACTIONS(3198), - [anon_sym_case] = ACTIONS(3198), - [anon_sym_default] = ACTIONS(3198), - [anon_sym_while] = ACTIONS(3198), - [anon_sym_do] = ACTIONS(3198), - [anon_sym_for] = ACTIONS(3198), - [anon_sym_return] = ACTIONS(3198), - [anon_sym_break] = ACTIONS(3198), - [anon_sym_continue] = ACTIONS(3198), - [anon_sym_goto] = ACTIONS(3198), - [anon_sym_AMP] = ACTIONS(3200), - [anon_sym_BANG] = ACTIONS(3200), - [anon_sym_TILDE] = ACTIONS(3200), - [anon_sym_PLUS] = ACTIONS(3198), - [anon_sym_DASH] = ACTIONS(3198), - [anon_sym_DASH_DASH] = ACTIONS(3200), - [anon_sym_PLUS_PLUS] = ACTIONS(3200), - [anon_sym_sizeof] = ACTIONS(3198), - [sym_number_literal] = ACTIONS(3200), - [anon_sym_SQUOTE] = ACTIONS(3200), - [anon_sym_DQUOTE] = ACTIONS(3200), - [sym_true] = ACTIONS(3198), - [sym_false] = ACTIONS(3198), - [sym_null] = ACTIONS(3198), - [sym_identifier] = ACTIONS(3198), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3187), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3187), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3187), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3187), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3187), + [sym_preproc_directive] = ACTIONS(3187), + [anon_sym_SEMI] = ACTIONS(3189), + [anon_sym_typedef] = ACTIONS(3187), + [anon_sym_extern] = ACTIONS(3187), + [anon_sym_LBRACE] = ACTIONS(3189), + [anon_sym_RBRACE] = ACTIONS(3189), + [anon_sym_LPAREN2] = ACTIONS(3189), + [anon_sym_STAR] = ACTIONS(3189), + [anon_sym_static] = ACTIONS(3187), + [anon_sym_auto] = ACTIONS(3187), + [anon_sym_register] = ACTIONS(3187), + [anon_sym_inline] = ACTIONS(3187), + [anon_sym_const] = ACTIONS(3187), + [anon_sym_restrict] = ACTIONS(3187), + [anon_sym_volatile] = ACTIONS(3187), + [anon_sym__Atomic] = ACTIONS(3187), + [anon_sym_unsigned] = ACTIONS(3187), + [anon_sym_long] = ACTIONS(3187), + [anon_sym_short] = ACTIONS(3187), + [sym_primitive_type] = ACTIONS(3187), + [anon_sym_enum] = ACTIONS(3187), + [anon_sym_struct] = ACTIONS(3187), + [anon_sym_union] = ACTIONS(3187), + [anon_sym_if] = ACTIONS(3187), + [anon_sym_switch] = ACTIONS(3187), + [anon_sym_case] = ACTIONS(3187), + [anon_sym_default] = ACTIONS(3187), + [anon_sym_while] = ACTIONS(3187), + [anon_sym_do] = ACTIONS(3187), + [anon_sym_for] = ACTIONS(3187), + [anon_sym_return] = ACTIONS(3187), + [anon_sym_break] = ACTIONS(3187), + [anon_sym_continue] = ACTIONS(3187), + [anon_sym_goto] = ACTIONS(3187), + [anon_sym_AMP] = ACTIONS(3189), + [anon_sym_BANG] = ACTIONS(3189), + [anon_sym_TILDE] = ACTIONS(3189), + [anon_sym_PLUS] = ACTIONS(3187), + [anon_sym_DASH] = ACTIONS(3187), + [anon_sym_DASH_DASH] = ACTIONS(3189), + [anon_sym_PLUS_PLUS] = ACTIONS(3189), + [anon_sym_sizeof] = ACTIONS(3187), + [sym_number_literal] = ACTIONS(3189), + [anon_sym_SQUOTE] = ACTIONS(3189), + [anon_sym_DQUOTE] = ACTIONS(3189), + [sym_true] = ACTIONS(3187), + [sym_false] = ACTIONS(3187), + [sym_null] = ACTIONS(3187), + [sym_identifier] = ACTIONS(3187), [sym_comment] = ACTIONS(39), }, [1059] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3202), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3202), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3202), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3202), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3202), - [sym_preproc_directive] = ACTIONS(3202), - [anon_sym_SEMI] = ACTIONS(3204), - [anon_sym_typedef] = ACTIONS(3202), - [anon_sym_extern] = ACTIONS(3202), - [anon_sym_LBRACE] = ACTIONS(3204), - [anon_sym_RBRACE] = ACTIONS(3204), - [anon_sym_LPAREN2] = ACTIONS(3204), - [anon_sym_STAR] = ACTIONS(3204), - [anon_sym_static] = ACTIONS(3202), - [anon_sym_auto] = ACTIONS(3202), - [anon_sym_register] = ACTIONS(3202), - [anon_sym_inline] = ACTIONS(3202), - [anon_sym_const] = ACTIONS(3202), - [anon_sym_restrict] = ACTIONS(3202), - [anon_sym_volatile] = ACTIONS(3202), - [anon_sym__Atomic] = ACTIONS(3202), - [anon_sym_unsigned] = ACTIONS(3202), - [anon_sym_long] = ACTIONS(3202), - [anon_sym_short] = ACTIONS(3202), - [sym_primitive_type] = ACTIONS(3202), - [anon_sym_enum] = ACTIONS(3202), - [anon_sym_struct] = ACTIONS(3202), - [anon_sym_union] = ACTIONS(3202), - [anon_sym_if] = ACTIONS(3202), - [anon_sym_switch] = ACTIONS(3202), - [anon_sym_case] = ACTIONS(3202), - [anon_sym_default] = ACTIONS(3202), - [anon_sym_while] = ACTIONS(3202), - [anon_sym_do] = ACTIONS(3202), - [anon_sym_for] = ACTIONS(3202), - [anon_sym_return] = ACTIONS(3202), - [anon_sym_break] = ACTIONS(3202), - [anon_sym_continue] = ACTIONS(3202), - [anon_sym_goto] = ACTIONS(3202), - [anon_sym_AMP] = ACTIONS(3204), - [anon_sym_BANG] = ACTIONS(3204), - [anon_sym_TILDE] = ACTIONS(3204), - [anon_sym_PLUS] = ACTIONS(3202), - [anon_sym_DASH] = ACTIONS(3202), - [anon_sym_DASH_DASH] = ACTIONS(3204), - [anon_sym_PLUS_PLUS] = ACTIONS(3204), - [anon_sym_sizeof] = ACTIONS(3202), - [sym_number_literal] = ACTIONS(3204), - [anon_sym_SQUOTE] = ACTIONS(3204), - [anon_sym_DQUOTE] = ACTIONS(3204), - [sym_true] = ACTIONS(3202), - [sym_false] = ACTIONS(3202), - [sym_null] = ACTIONS(3202), - [sym_identifier] = ACTIONS(3202), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3191), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3191), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3191), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3191), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3191), + [sym_preproc_directive] = ACTIONS(3191), + [anon_sym_SEMI] = ACTIONS(3193), + [anon_sym_typedef] = ACTIONS(3191), + [anon_sym_extern] = ACTIONS(3191), + [anon_sym_LBRACE] = ACTIONS(3193), + [anon_sym_RBRACE] = ACTIONS(3193), + [anon_sym_LPAREN2] = ACTIONS(3193), + [anon_sym_STAR] = ACTIONS(3193), + [anon_sym_static] = ACTIONS(3191), + [anon_sym_auto] = ACTIONS(3191), + [anon_sym_register] = ACTIONS(3191), + [anon_sym_inline] = ACTIONS(3191), + [anon_sym_const] = ACTIONS(3191), + [anon_sym_restrict] = ACTIONS(3191), + [anon_sym_volatile] = ACTIONS(3191), + [anon_sym__Atomic] = ACTIONS(3191), + [anon_sym_unsigned] = ACTIONS(3191), + [anon_sym_long] = ACTIONS(3191), + [anon_sym_short] = ACTIONS(3191), + [sym_primitive_type] = ACTIONS(3191), + [anon_sym_enum] = ACTIONS(3191), + [anon_sym_struct] = ACTIONS(3191), + [anon_sym_union] = ACTIONS(3191), + [anon_sym_if] = ACTIONS(3191), + [anon_sym_switch] = ACTIONS(3191), + [anon_sym_case] = ACTIONS(3191), + [anon_sym_default] = ACTIONS(3191), + [anon_sym_while] = ACTIONS(3191), + [anon_sym_do] = ACTIONS(3191), + [anon_sym_for] = ACTIONS(3191), + [anon_sym_return] = ACTIONS(3191), + [anon_sym_break] = ACTIONS(3191), + [anon_sym_continue] = ACTIONS(3191), + [anon_sym_goto] = ACTIONS(3191), + [anon_sym_AMP] = ACTIONS(3193), + [anon_sym_BANG] = ACTIONS(3193), + [anon_sym_TILDE] = ACTIONS(3193), + [anon_sym_PLUS] = ACTIONS(3191), + [anon_sym_DASH] = ACTIONS(3191), + [anon_sym_DASH_DASH] = ACTIONS(3193), + [anon_sym_PLUS_PLUS] = ACTIONS(3193), + [anon_sym_sizeof] = ACTIONS(3191), + [sym_number_literal] = ACTIONS(3193), + [anon_sym_SQUOTE] = ACTIONS(3193), + [anon_sym_DQUOTE] = ACTIONS(3193), + [sym_true] = ACTIONS(3191), + [sym_false] = ACTIONS(3191), + [sym_null] = ACTIONS(3191), + [sym_identifier] = ACTIONS(3191), [sym_comment] = ACTIONS(39), }, [1060] = { @@ -41625,55 +41644,55 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(921), [sym_concatenated_string] = STATE(921), [sym_string_literal] = STATE(409), - [anon_sym_COMMA] = ACTIONS(2952), - [anon_sym_RPAREN] = ACTIONS(2952), - [anon_sym_LBRACE] = ACTIONS(632), - [anon_sym_LPAREN2] = ACTIONS(970), - [anon_sym_STAR] = ACTIONS(3206), - [anon_sym_LBRACK] = ACTIONS(2952), - [anon_sym_EQ] = ACTIONS(2956), - [anon_sym_QMARK] = ACTIONS(2952), - [anon_sym_STAR_EQ] = ACTIONS(2952), - [anon_sym_SLASH_EQ] = ACTIONS(2952), - [anon_sym_PERCENT_EQ] = ACTIONS(2952), - [anon_sym_PLUS_EQ] = ACTIONS(2952), - [anon_sym_DASH_EQ] = ACTIONS(2952), - [anon_sym_LT_LT_EQ] = ACTIONS(2952), - [anon_sym_GT_GT_EQ] = ACTIONS(2952), - [anon_sym_AMP_EQ] = ACTIONS(2952), - [anon_sym_CARET_EQ] = ACTIONS(2952), - [anon_sym_PIPE_EQ] = ACTIONS(2952), - [anon_sym_AMP] = ACTIONS(3206), - [anon_sym_PIPE_PIPE] = ACTIONS(2952), - [anon_sym_AMP_AMP] = ACTIONS(2952), - [anon_sym_BANG] = ACTIONS(3208), - [anon_sym_PIPE] = ACTIONS(2956), - [anon_sym_CARET] = ACTIONS(2956), - [anon_sym_TILDE] = ACTIONS(976), - [anon_sym_EQ_EQ] = ACTIONS(2952), - [anon_sym_BANG_EQ] = ACTIONS(2952), - [anon_sym_LT] = ACTIONS(2956), - [anon_sym_GT] = ACTIONS(2956), - [anon_sym_LT_EQ] = ACTIONS(2952), - [anon_sym_GT_EQ] = ACTIONS(2952), - [anon_sym_LT_LT] = ACTIONS(2956), - [anon_sym_GT_GT] = ACTIONS(2956), - [anon_sym_PLUS] = ACTIONS(978), - [anon_sym_DASH] = ACTIONS(978), - [anon_sym_SLASH] = ACTIONS(2956), - [anon_sym_PERCENT] = ACTIONS(2956), - [anon_sym_DASH_DASH] = ACTIONS(980), - [anon_sym_PLUS_PLUS] = ACTIONS(980), - [anon_sym_sizeof] = ACTIONS(982), - [anon_sym_DOT] = ACTIONS(2952), - [anon_sym_DASH_GT] = ACTIONS(2952), - [sym_number_literal] = ACTIONS(2392), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2394), - [sym_false] = ACTIONS(2394), - [sym_null] = ACTIONS(2394), - [sym_identifier] = ACTIONS(2394), + [anon_sym_COMMA] = ACTIONS(2941), + [anon_sym_RPAREN] = ACTIONS(2941), + [anon_sym_LBRACE] = ACTIONS(628), + [anon_sym_LPAREN2] = ACTIONS(961), + [anon_sym_STAR] = ACTIONS(3195), + [anon_sym_LBRACK] = ACTIONS(2941), + [anon_sym_EQ] = ACTIONS(2945), + [anon_sym_QMARK] = ACTIONS(2941), + [anon_sym_STAR_EQ] = ACTIONS(2941), + [anon_sym_SLASH_EQ] = ACTIONS(2941), + [anon_sym_PERCENT_EQ] = ACTIONS(2941), + [anon_sym_PLUS_EQ] = ACTIONS(2941), + [anon_sym_DASH_EQ] = ACTIONS(2941), + [anon_sym_LT_LT_EQ] = ACTIONS(2941), + [anon_sym_GT_GT_EQ] = ACTIONS(2941), + [anon_sym_AMP_EQ] = ACTIONS(2941), + [anon_sym_CARET_EQ] = ACTIONS(2941), + [anon_sym_PIPE_EQ] = ACTIONS(2941), + [anon_sym_AMP] = ACTIONS(3195), + [anon_sym_PIPE_PIPE] = ACTIONS(2941), + [anon_sym_AMP_AMP] = ACTIONS(2941), + [anon_sym_BANG] = ACTIONS(3197), + [anon_sym_PIPE] = ACTIONS(2945), + [anon_sym_CARET] = ACTIONS(2945), + [anon_sym_TILDE] = ACTIONS(967), + [anon_sym_EQ_EQ] = ACTIONS(2941), + [anon_sym_BANG_EQ] = ACTIONS(2941), + [anon_sym_LT] = ACTIONS(2945), + [anon_sym_GT] = ACTIONS(2945), + [anon_sym_LT_EQ] = ACTIONS(2941), + [anon_sym_GT_EQ] = ACTIONS(2941), + [anon_sym_LT_LT] = ACTIONS(2945), + [anon_sym_GT_GT] = ACTIONS(2945), + [anon_sym_PLUS] = ACTIONS(969), + [anon_sym_DASH] = ACTIONS(969), + [anon_sym_SLASH] = ACTIONS(2945), + [anon_sym_PERCENT] = ACTIONS(2945), + [anon_sym_DASH_DASH] = ACTIONS(971), + [anon_sym_PLUS_PLUS] = ACTIONS(971), + [anon_sym_sizeof] = ACTIONS(973), + [anon_sym_DOT] = ACTIONS(2941), + [anon_sym_DASH_GT] = ACTIONS(2941), + [sym_number_literal] = ACTIONS(2381), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(2383), + [sym_false] = ACTIONS(2383), + [sym_null] = ACTIONS(2383), + [sym_identifier] = ACTIONS(2383), [sym_comment] = ACTIONS(39), }, [1061] = { @@ -41697,81 +41716,81 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(1160), [sym_concatenated_string] = STATE(1160), [sym_string_literal] = STATE(409), - [anon_sym_LPAREN2] = ACTIONS(970), - [anon_sym_STAR] = ACTIONS(972), - [anon_sym_AMP] = ACTIONS(972), - [anon_sym_BANG] = ACTIONS(974), - [anon_sym_TILDE] = ACTIONS(976), - [anon_sym_PLUS] = ACTIONS(978), - [anon_sym_DASH] = ACTIONS(978), - [anon_sym_DASH_DASH] = ACTIONS(980), - [anon_sym_PLUS_PLUS] = ACTIONS(980), - [anon_sym_sizeof] = ACTIONS(982), - [sym_number_literal] = ACTIONS(3210), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(3212), - [sym_false] = ACTIONS(3212), - [sym_null] = ACTIONS(3212), - [sym_identifier] = ACTIONS(3212), + [anon_sym_LPAREN2] = ACTIONS(961), + [anon_sym_STAR] = ACTIONS(963), + [anon_sym_AMP] = ACTIONS(963), + [anon_sym_BANG] = ACTIONS(965), + [anon_sym_TILDE] = ACTIONS(967), + [anon_sym_PLUS] = ACTIONS(969), + [anon_sym_DASH] = ACTIONS(969), + [anon_sym_DASH_DASH] = ACTIONS(971), + [anon_sym_PLUS_PLUS] = ACTIONS(971), + [anon_sym_sizeof] = ACTIONS(973), + [sym_number_literal] = ACTIONS(3199), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(3201), + [sym_false] = ACTIONS(3201), + [sym_null] = ACTIONS(3201), + [sym_identifier] = ACTIONS(3201), [sym_comment] = ACTIONS(39), }, [1062] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2408), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2408), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2408), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2408), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2408), - [sym_preproc_directive] = ACTIONS(2408), - [anon_sym_SEMI] = ACTIONS(2410), - [anon_sym_typedef] = ACTIONS(2408), - [anon_sym_extern] = ACTIONS(2408), - [anon_sym_LBRACE] = ACTIONS(2410), - [anon_sym_RBRACE] = ACTIONS(2410), - [anon_sym_LPAREN2] = ACTIONS(2410), - [anon_sym_STAR] = ACTIONS(2410), - [anon_sym_static] = ACTIONS(2408), - [anon_sym_auto] = ACTIONS(2408), - [anon_sym_register] = ACTIONS(2408), - [anon_sym_inline] = ACTIONS(2408), - [anon_sym_const] = ACTIONS(2408), - [anon_sym_restrict] = ACTIONS(2408), - [anon_sym_volatile] = ACTIONS(2408), - [anon_sym__Atomic] = ACTIONS(2408), - [anon_sym_unsigned] = ACTIONS(2408), - [anon_sym_long] = ACTIONS(2408), - [anon_sym_short] = ACTIONS(2408), - [sym_primitive_type] = ACTIONS(2408), - [anon_sym_enum] = ACTIONS(2408), - [anon_sym_struct] = ACTIONS(2408), - [anon_sym_union] = ACTIONS(2408), - [anon_sym_if] = ACTIONS(2408), - [anon_sym_else] = ACTIONS(3214), - [anon_sym_switch] = ACTIONS(2408), - [anon_sym_case] = ACTIONS(2408), - [anon_sym_default] = ACTIONS(2408), - [anon_sym_while] = ACTIONS(2408), - [anon_sym_do] = ACTIONS(2408), - [anon_sym_for] = ACTIONS(2408), - [anon_sym_return] = ACTIONS(2408), - [anon_sym_break] = ACTIONS(2408), - [anon_sym_continue] = ACTIONS(2408), - [anon_sym_goto] = ACTIONS(2408), - [anon_sym_AMP] = ACTIONS(2410), - [anon_sym_BANG] = ACTIONS(2410), - [anon_sym_TILDE] = ACTIONS(2410), - [anon_sym_PLUS] = ACTIONS(2408), - [anon_sym_DASH] = ACTIONS(2408), - [anon_sym_DASH_DASH] = ACTIONS(2410), - [anon_sym_PLUS_PLUS] = ACTIONS(2410), - [anon_sym_sizeof] = ACTIONS(2408), - [sym_number_literal] = ACTIONS(2410), - [anon_sym_SQUOTE] = ACTIONS(2410), - [anon_sym_DQUOTE] = ACTIONS(2410), - [sym_true] = ACTIONS(2408), - [sym_false] = ACTIONS(2408), - [sym_null] = ACTIONS(2408), - [sym_identifier] = ACTIONS(2408), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2397), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2397), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2397), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2397), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2397), + [sym_preproc_directive] = ACTIONS(2397), + [anon_sym_SEMI] = ACTIONS(2399), + [anon_sym_typedef] = ACTIONS(2397), + [anon_sym_extern] = ACTIONS(2397), + [anon_sym_LBRACE] = ACTIONS(2399), + [anon_sym_RBRACE] = ACTIONS(2399), + [anon_sym_LPAREN2] = ACTIONS(2399), + [anon_sym_STAR] = ACTIONS(2399), + [anon_sym_static] = ACTIONS(2397), + [anon_sym_auto] = ACTIONS(2397), + [anon_sym_register] = ACTIONS(2397), + [anon_sym_inline] = ACTIONS(2397), + [anon_sym_const] = ACTIONS(2397), + [anon_sym_restrict] = ACTIONS(2397), + [anon_sym_volatile] = ACTIONS(2397), + [anon_sym__Atomic] = ACTIONS(2397), + [anon_sym_unsigned] = ACTIONS(2397), + [anon_sym_long] = ACTIONS(2397), + [anon_sym_short] = ACTIONS(2397), + [sym_primitive_type] = ACTIONS(2397), + [anon_sym_enum] = ACTIONS(2397), + [anon_sym_struct] = ACTIONS(2397), + [anon_sym_union] = ACTIONS(2397), + [anon_sym_if] = ACTIONS(2397), + [anon_sym_else] = ACTIONS(3203), + [anon_sym_switch] = ACTIONS(2397), + [anon_sym_case] = ACTIONS(2397), + [anon_sym_default] = ACTIONS(2397), + [anon_sym_while] = ACTIONS(2397), + [anon_sym_do] = ACTIONS(2397), + [anon_sym_for] = ACTIONS(2397), + [anon_sym_return] = ACTIONS(2397), + [anon_sym_break] = ACTIONS(2397), + [anon_sym_continue] = ACTIONS(2397), + [anon_sym_goto] = ACTIONS(2397), + [anon_sym_AMP] = ACTIONS(2399), + [anon_sym_BANG] = ACTIONS(2399), + [anon_sym_TILDE] = ACTIONS(2399), + [anon_sym_PLUS] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2397), + [anon_sym_DASH_DASH] = ACTIONS(2399), + [anon_sym_PLUS_PLUS] = ACTIONS(2399), + [anon_sym_sizeof] = ACTIONS(2397), + [sym_number_literal] = ACTIONS(2399), + [anon_sym_SQUOTE] = ACTIONS(2399), + [anon_sym_DQUOTE] = ACTIONS(2399), + [sym_true] = ACTIONS(2397), + [sym_false] = ACTIONS(2397), + [sym_null] = ACTIONS(2397), + [sym_identifier] = ACTIONS(2397), [sym_comment] = ACTIONS(39), }, [1063] = { @@ -41822,12 +41841,12 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_macro_type_specifier] = STATE(95), [aux_sym__declaration_specifiers_repeat1] = STATE(96), [aux_sym_sized_type_specifier_repeat1] = STATE(97), - [anon_sym_SEMI] = ACTIONS(550), + [anon_sym_SEMI] = ACTIONS(546), [anon_sym_typedef] = ACTIONS(19), [anon_sym_extern] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(241), - [anon_sym_LPAREN2] = ACTIONS(554), - [anon_sym_STAR] = ACTIONS(556), + [anon_sym_LBRACE] = ACTIONS(239), + [anon_sym_LPAREN2] = ACTIONS(550), + [anon_sym_STAR] = ACTIONS(552), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -41836,49 +41855,49 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_restrict] = ACTIONS(25), [anon_sym_volatile] = ACTIONS(25), [anon_sym__Atomic] = ACTIONS(25), - [anon_sym_unsigned] = ACTIONS(177), - [anon_sym_long] = ACTIONS(177), - [anon_sym_short] = ACTIONS(177), - [sym_primitive_type] = ACTIONS(179), + [anon_sym_unsigned] = ACTIONS(175), + [anon_sym_long] = ACTIONS(175), + [anon_sym_short] = ACTIONS(175), + [sym_primitive_type] = ACTIONS(177), [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), - [anon_sym_if] = ACTIONS(1598), - [anon_sym_switch] = ACTIONS(1600), - [anon_sym_case] = ACTIONS(1602), - [anon_sym_default] = ACTIONS(1604), - [anon_sym_while] = ACTIONS(1606), - [anon_sym_do] = ACTIONS(568), - [anon_sym_for] = ACTIONS(1608), - [anon_sym_return] = ACTIONS(572), - [anon_sym_break] = ACTIONS(574), - [anon_sym_continue] = ACTIONS(576), - [anon_sym_goto] = ACTIONS(578), - [anon_sym_AMP] = ACTIONS(556), - [anon_sym_BANG] = ACTIONS(580), - [anon_sym_TILDE] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_DASH_DASH] = ACTIONS(586), - [anon_sym_PLUS_PLUS] = ACTIONS(586), - [anon_sym_sizeof] = ACTIONS(588), - [sym_number_literal] = ACTIONS(590), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(594), - [sym_false] = ACTIONS(594), - [sym_null] = ACTIONS(594), - [sym_identifier] = ACTIONS(2898), + [anon_sym_if] = ACTIONS(1587), + [anon_sym_switch] = ACTIONS(1589), + [anon_sym_case] = ACTIONS(1591), + [anon_sym_default] = ACTIONS(1593), + [anon_sym_while] = ACTIONS(1595), + [anon_sym_do] = ACTIONS(564), + [anon_sym_for] = ACTIONS(1597), + [anon_sym_return] = ACTIONS(568), + [anon_sym_break] = ACTIONS(570), + [anon_sym_continue] = ACTIONS(572), + [anon_sym_goto] = ACTIONS(574), + [anon_sym_AMP] = ACTIONS(552), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_TILDE] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(580), + [anon_sym_DASH] = ACTIONS(580), + [anon_sym_DASH_DASH] = ACTIONS(582), + [anon_sym_PLUS_PLUS] = ACTIONS(582), + [anon_sym_sizeof] = ACTIONS(584), + [sym_number_literal] = ACTIONS(586), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(590), + [sym_false] = ACTIONS(590), + [sym_null] = ACTIONS(590), + [sym_identifier] = ACTIONS(2887), [sym_comment] = ACTIONS(39), }, [1064] = { - [anon_sym_COMMA] = ACTIONS(1066), - [anon_sym_SEMI] = ACTIONS(1066), + [anon_sym_COMMA] = ACTIONS(1059), + [anon_sym_SEMI] = ACTIONS(1059), [anon_sym_extern] = ACTIONS(83), - [anon_sym_LPAREN2] = ACTIONS(1071), - [anon_sym_STAR] = ACTIONS(1075), - [anon_sym_LBRACK] = ACTIONS(1066), - [anon_sym_EQ] = ACTIONS(1078), + [anon_sym_LPAREN2] = ACTIONS(1064), + [anon_sym_STAR] = ACTIONS(1068), + [anon_sym_LBRACK] = ACTIONS(1059), + [anon_sym_EQ] = ACTIONS(1071), [anon_sym_static] = ACTIONS(83), [anon_sym_auto] = ACTIONS(83), [anon_sym_register] = ACTIONS(83), @@ -41887,39 +41906,39 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_restrict] = ACTIONS(83), [anon_sym_volatile] = ACTIONS(83), [anon_sym__Atomic] = ACTIONS(83), - [anon_sym_COLON] = ACTIONS(2406), - [anon_sym_QMARK] = ACTIONS(1066), - [anon_sym_STAR_EQ] = ACTIONS(1066), - [anon_sym_SLASH_EQ] = ACTIONS(1066), - [anon_sym_PERCENT_EQ] = ACTIONS(1066), - [anon_sym_PLUS_EQ] = ACTIONS(1066), - [anon_sym_DASH_EQ] = ACTIONS(1066), - [anon_sym_LT_LT_EQ] = ACTIONS(1066), - [anon_sym_GT_GT_EQ] = ACTIONS(1066), - [anon_sym_AMP_EQ] = ACTIONS(1066), - [anon_sym_CARET_EQ] = ACTIONS(1066), - [anon_sym_PIPE_EQ] = ACTIONS(1066), - [anon_sym_AMP] = ACTIONS(1078), - [anon_sym_PIPE_PIPE] = ACTIONS(1066), - [anon_sym_AMP_AMP] = ACTIONS(1066), - [anon_sym_PIPE] = ACTIONS(1078), - [anon_sym_CARET] = ACTIONS(1078), - [anon_sym_EQ_EQ] = ACTIONS(1066), - [anon_sym_BANG_EQ] = ACTIONS(1066), - [anon_sym_LT] = ACTIONS(1078), - [anon_sym_GT] = ACTIONS(1078), - [anon_sym_LT_EQ] = ACTIONS(1066), - [anon_sym_GT_EQ] = ACTIONS(1066), - [anon_sym_LT_LT] = ACTIONS(1078), - [anon_sym_GT_GT] = ACTIONS(1078), - [anon_sym_PLUS] = ACTIONS(1078), - [anon_sym_DASH] = ACTIONS(1078), - [anon_sym_SLASH] = ACTIONS(1078), - [anon_sym_PERCENT] = ACTIONS(1078), - [anon_sym_DASH_DASH] = ACTIONS(1066), - [anon_sym_PLUS_PLUS] = ACTIONS(1066), - [anon_sym_DOT] = ACTIONS(1066), - [anon_sym_DASH_GT] = ACTIONS(1066), + [anon_sym_COLON] = ACTIONS(2395), + [anon_sym_QMARK] = ACTIONS(1059), + [anon_sym_STAR_EQ] = ACTIONS(1059), + [anon_sym_SLASH_EQ] = ACTIONS(1059), + [anon_sym_PERCENT_EQ] = ACTIONS(1059), + [anon_sym_PLUS_EQ] = ACTIONS(1059), + [anon_sym_DASH_EQ] = ACTIONS(1059), + [anon_sym_LT_LT_EQ] = ACTIONS(1059), + [anon_sym_GT_GT_EQ] = ACTIONS(1059), + [anon_sym_AMP_EQ] = ACTIONS(1059), + [anon_sym_CARET_EQ] = ACTIONS(1059), + [anon_sym_PIPE_EQ] = ACTIONS(1059), + [anon_sym_AMP] = ACTIONS(1071), + [anon_sym_PIPE_PIPE] = ACTIONS(1059), + [anon_sym_AMP_AMP] = ACTIONS(1059), + [anon_sym_PIPE] = ACTIONS(1071), + [anon_sym_CARET] = ACTIONS(1071), + [anon_sym_EQ_EQ] = ACTIONS(1059), + [anon_sym_BANG_EQ] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(1071), + [anon_sym_GT] = ACTIONS(1071), + [anon_sym_LT_EQ] = ACTIONS(1059), + [anon_sym_GT_EQ] = ACTIONS(1059), + [anon_sym_LT_LT] = ACTIONS(1071), + [anon_sym_GT_GT] = ACTIONS(1071), + [anon_sym_PLUS] = ACTIONS(1071), + [anon_sym_DASH] = ACTIONS(1071), + [anon_sym_SLASH] = ACTIONS(1071), + [anon_sym_PERCENT] = ACTIONS(1071), + [anon_sym_DASH_DASH] = ACTIONS(1059), + [anon_sym_PLUS_PLUS] = ACTIONS(1059), + [anon_sym_DOT] = ACTIONS(1059), + [anon_sym_DASH_GT] = ACTIONS(1059), [sym_identifier] = ACTIONS(83), [sym_comment] = ACTIONS(39), }, @@ -41944,123 +41963,123 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(1163), [sym_concatenated_string] = STATE(1163), [sym_string_literal] = STATE(376), - [anon_sym_SEMI] = ACTIONS(3216), - [anon_sym_LPAREN2] = ACTIONS(847), - [anon_sym_STAR] = ACTIONS(849), - [anon_sym_AMP] = ACTIONS(849), - [anon_sym_BANG] = ACTIONS(851), - [anon_sym_TILDE] = ACTIONS(853), - [anon_sym_PLUS] = ACTIONS(855), - [anon_sym_DASH] = ACTIONS(855), - [anon_sym_DASH_DASH] = ACTIONS(857), - [anon_sym_PLUS_PLUS] = ACTIONS(857), - [anon_sym_sizeof] = ACTIONS(859), - [sym_number_literal] = ACTIONS(3218), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(3220), - [sym_false] = ACTIONS(3220), - [sym_null] = ACTIONS(3220), - [sym_identifier] = ACTIONS(3220), + [anon_sym_SEMI] = ACTIONS(3205), + [anon_sym_LPAREN2] = ACTIONS(838), + [anon_sym_STAR] = ACTIONS(840), + [anon_sym_AMP] = ACTIONS(840), + [anon_sym_BANG] = ACTIONS(842), + [anon_sym_TILDE] = ACTIONS(844), + [anon_sym_PLUS] = ACTIONS(846), + [anon_sym_DASH] = ACTIONS(846), + [anon_sym_DASH_DASH] = ACTIONS(848), + [anon_sym_PLUS_PLUS] = ACTIONS(848), + [anon_sym_sizeof] = ACTIONS(850), + [sym_number_literal] = ACTIONS(3207), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(3209), + [sym_false] = ACTIONS(3209), + [sym_null] = ACTIONS(3209), + [sym_identifier] = ACTIONS(3209), [sym_comment] = ACTIONS(39), }, [1066] = { [sym_argument_list] = STATE(465), - [anon_sym_SEMI] = ACTIONS(3222), - [anon_sym_LPAREN2] = ACTIONS(1096), - [anon_sym_STAR] = ACTIONS(1436), - [anon_sym_LBRACK] = ACTIONS(1100), - [anon_sym_EQ] = ACTIONS(1438), - [anon_sym_QMARK] = ACTIONS(1440), - [anon_sym_STAR_EQ] = ACTIONS(1442), - [anon_sym_SLASH_EQ] = ACTIONS(1442), - [anon_sym_PERCENT_EQ] = ACTIONS(1442), - [anon_sym_PLUS_EQ] = ACTIONS(1442), - [anon_sym_DASH_EQ] = ACTIONS(1442), - [anon_sym_LT_LT_EQ] = ACTIONS(1442), - [anon_sym_GT_GT_EQ] = ACTIONS(1442), - [anon_sym_AMP_EQ] = ACTIONS(1442), - [anon_sym_CARET_EQ] = ACTIONS(1442), - [anon_sym_PIPE_EQ] = ACTIONS(1442), - [anon_sym_AMP] = ACTIONS(1444), - [anon_sym_PIPE_PIPE] = ACTIONS(1446), - [anon_sym_AMP_AMP] = ACTIONS(1448), - [anon_sym_PIPE] = ACTIONS(1450), - [anon_sym_CARET] = ACTIONS(1452), - [anon_sym_EQ_EQ] = ACTIONS(1454), - [anon_sym_BANG_EQ] = ACTIONS(1454), - [anon_sym_LT] = ACTIONS(1456), - [anon_sym_GT] = ACTIONS(1456), - [anon_sym_LT_EQ] = ACTIONS(1458), - [anon_sym_GT_EQ] = ACTIONS(1458), - [anon_sym_LT_LT] = ACTIONS(1460), - [anon_sym_GT_GT] = ACTIONS(1460), - [anon_sym_PLUS] = ACTIONS(1462), - [anon_sym_DASH] = ACTIONS(1462), - [anon_sym_SLASH] = ACTIONS(1436), - [anon_sym_PERCENT] = ACTIONS(1436), - [anon_sym_DASH_DASH] = ACTIONS(1128), - [anon_sym_PLUS_PLUS] = ACTIONS(1128), - [anon_sym_DOT] = ACTIONS(1130), - [anon_sym_DASH_GT] = ACTIONS(1130), + [anon_sym_SEMI] = ACTIONS(3211), + [anon_sym_LPAREN2] = ACTIONS(1089), + [anon_sym_STAR] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(1429), + [anon_sym_QMARK] = ACTIONS(1431), + [anon_sym_STAR_EQ] = ACTIONS(1433), + [anon_sym_SLASH_EQ] = ACTIONS(1433), + [anon_sym_PERCENT_EQ] = ACTIONS(1433), + [anon_sym_PLUS_EQ] = ACTIONS(1433), + [anon_sym_DASH_EQ] = ACTIONS(1433), + [anon_sym_LT_LT_EQ] = ACTIONS(1433), + [anon_sym_GT_GT_EQ] = ACTIONS(1433), + [anon_sym_AMP_EQ] = ACTIONS(1433), + [anon_sym_CARET_EQ] = ACTIONS(1433), + [anon_sym_PIPE_EQ] = ACTIONS(1433), + [anon_sym_AMP] = ACTIONS(1435), + [anon_sym_PIPE_PIPE] = ACTIONS(1437), + [anon_sym_AMP_AMP] = ACTIONS(1439), + [anon_sym_PIPE] = ACTIONS(1441), + [anon_sym_CARET] = ACTIONS(1443), + [anon_sym_EQ_EQ] = ACTIONS(1445), + [anon_sym_BANG_EQ] = ACTIONS(1445), + [anon_sym_LT] = ACTIONS(1447), + [anon_sym_GT] = ACTIONS(1447), + [anon_sym_LT_EQ] = ACTIONS(1449), + [anon_sym_GT_EQ] = ACTIONS(1449), + [anon_sym_LT_LT] = ACTIONS(1451), + [anon_sym_GT_GT] = ACTIONS(1451), + [anon_sym_PLUS] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1453), + [anon_sym_SLASH] = ACTIONS(1427), + [anon_sym_PERCENT] = ACTIONS(1427), + [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_PLUS_PLUS] = ACTIONS(1121), + [anon_sym_DOT] = ACTIONS(1123), + [anon_sym_DASH_GT] = ACTIONS(1123), [sym_comment] = ACTIONS(39), }, [1067] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3224), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3224), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3224), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3224), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3224), - [sym_preproc_directive] = ACTIONS(3224), - [anon_sym_SEMI] = ACTIONS(3226), - [anon_sym_typedef] = ACTIONS(3224), - [anon_sym_extern] = ACTIONS(3224), - [anon_sym_LBRACE] = ACTIONS(3226), - [anon_sym_RBRACE] = ACTIONS(3226), - [anon_sym_LPAREN2] = ACTIONS(3226), - [anon_sym_STAR] = ACTIONS(3226), - [anon_sym_static] = ACTIONS(3224), - [anon_sym_auto] = ACTIONS(3224), - [anon_sym_register] = ACTIONS(3224), - [anon_sym_inline] = ACTIONS(3224), - [anon_sym_const] = ACTIONS(3224), - [anon_sym_restrict] = ACTIONS(3224), - [anon_sym_volatile] = ACTIONS(3224), - [anon_sym__Atomic] = ACTIONS(3224), - [anon_sym_unsigned] = ACTIONS(3224), - [anon_sym_long] = ACTIONS(3224), - [anon_sym_short] = ACTIONS(3224), - [sym_primitive_type] = ACTIONS(3224), - [anon_sym_enum] = ACTIONS(3224), - [anon_sym_struct] = ACTIONS(3224), - [anon_sym_union] = ACTIONS(3224), - [anon_sym_if] = ACTIONS(3224), - [anon_sym_else] = ACTIONS(3224), - [anon_sym_switch] = ACTIONS(3224), - [anon_sym_case] = ACTIONS(3224), - [anon_sym_default] = ACTIONS(3224), - [anon_sym_while] = ACTIONS(3224), - [anon_sym_do] = ACTIONS(3224), - [anon_sym_for] = ACTIONS(3224), - [anon_sym_return] = ACTIONS(3224), - [anon_sym_break] = ACTIONS(3224), - [anon_sym_continue] = ACTIONS(3224), - [anon_sym_goto] = ACTIONS(3224), - [anon_sym_AMP] = ACTIONS(3226), - [anon_sym_BANG] = ACTIONS(3226), - [anon_sym_TILDE] = ACTIONS(3226), - [anon_sym_PLUS] = ACTIONS(3224), - [anon_sym_DASH] = ACTIONS(3224), - [anon_sym_DASH_DASH] = ACTIONS(3226), - [anon_sym_PLUS_PLUS] = ACTIONS(3226), - [anon_sym_sizeof] = ACTIONS(3224), - [sym_number_literal] = ACTIONS(3226), - [anon_sym_SQUOTE] = ACTIONS(3226), - [anon_sym_DQUOTE] = ACTIONS(3226), - [sym_true] = ACTIONS(3224), - [sym_false] = ACTIONS(3224), - [sym_null] = ACTIONS(3224), - [sym_identifier] = ACTIONS(3224), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3213), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3213), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3213), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3213), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3213), + [sym_preproc_directive] = ACTIONS(3213), + [anon_sym_SEMI] = ACTIONS(3215), + [anon_sym_typedef] = ACTIONS(3213), + [anon_sym_extern] = ACTIONS(3213), + [anon_sym_LBRACE] = ACTIONS(3215), + [anon_sym_RBRACE] = ACTIONS(3215), + [anon_sym_LPAREN2] = ACTIONS(3215), + [anon_sym_STAR] = ACTIONS(3215), + [anon_sym_static] = ACTIONS(3213), + [anon_sym_auto] = ACTIONS(3213), + [anon_sym_register] = ACTIONS(3213), + [anon_sym_inline] = ACTIONS(3213), + [anon_sym_const] = ACTIONS(3213), + [anon_sym_restrict] = ACTIONS(3213), + [anon_sym_volatile] = ACTIONS(3213), + [anon_sym__Atomic] = ACTIONS(3213), + [anon_sym_unsigned] = ACTIONS(3213), + [anon_sym_long] = ACTIONS(3213), + [anon_sym_short] = ACTIONS(3213), + [sym_primitive_type] = ACTIONS(3213), + [anon_sym_enum] = ACTIONS(3213), + [anon_sym_struct] = ACTIONS(3213), + [anon_sym_union] = ACTIONS(3213), + [anon_sym_if] = ACTIONS(3213), + [anon_sym_else] = ACTIONS(3213), + [anon_sym_switch] = ACTIONS(3213), + [anon_sym_case] = ACTIONS(3213), + [anon_sym_default] = ACTIONS(3213), + [anon_sym_while] = ACTIONS(3213), + [anon_sym_do] = ACTIONS(3213), + [anon_sym_for] = ACTIONS(3213), + [anon_sym_return] = ACTIONS(3213), + [anon_sym_break] = ACTIONS(3213), + [anon_sym_continue] = ACTIONS(3213), + [anon_sym_goto] = ACTIONS(3213), + [anon_sym_AMP] = ACTIONS(3215), + [anon_sym_BANG] = ACTIONS(3215), + [anon_sym_TILDE] = ACTIONS(3215), + [anon_sym_PLUS] = ACTIONS(3213), + [anon_sym_DASH] = ACTIONS(3213), + [anon_sym_DASH_DASH] = ACTIONS(3215), + [anon_sym_PLUS_PLUS] = ACTIONS(3215), + [anon_sym_sizeof] = ACTIONS(3213), + [sym_number_literal] = ACTIONS(3215), + [anon_sym_SQUOTE] = ACTIONS(3215), + [anon_sym_DQUOTE] = ACTIONS(3215), + [sym_true] = ACTIONS(3213), + [sym_false] = ACTIONS(3213), + [sym_null] = ACTIONS(3213), + [sym_identifier] = ACTIONS(3213), [sym_comment] = ACTIONS(39), }, [1068] = { @@ -42085,54 +42104,54 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(921), [sym_concatenated_string] = STATE(921), [sym_string_literal] = STATE(421), - [anon_sym_LBRACE] = ACTIONS(632), - [anon_sym_LPAREN2] = ACTIONS(996), - [anon_sym_STAR] = ACTIONS(3228), - [anon_sym_LBRACK] = ACTIONS(2952), - [anon_sym_EQ] = ACTIONS(2956), - [anon_sym_COLON] = ACTIONS(2952), - [anon_sym_QMARK] = ACTIONS(2952), - [anon_sym_STAR_EQ] = ACTIONS(2952), - [anon_sym_SLASH_EQ] = ACTIONS(2952), - [anon_sym_PERCENT_EQ] = ACTIONS(2952), - [anon_sym_PLUS_EQ] = ACTIONS(2952), - [anon_sym_DASH_EQ] = ACTIONS(2952), - [anon_sym_LT_LT_EQ] = ACTIONS(2952), - [anon_sym_GT_GT_EQ] = ACTIONS(2952), - [anon_sym_AMP_EQ] = ACTIONS(2952), - [anon_sym_CARET_EQ] = ACTIONS(2952), - [anon_sym_PIPE_EQ] = ACTIONS(2952), - [anon_sym_AMP] = ACTIONS(3228), - [anon_sym_PIPE_PIPE] = ACTIONS(2952), - [anon_sym_AMP_AMP] = ACTIONS(2952), - [anon_sym_BANG] = ACTIONS(3230), - [anon_sym_PIPE] = ACTIONS(2956), - [anon_sym_CARET] = ACTIONS(2956), - [anon_sym_TILDE] = ACTIONS(1002), - [anon_sym_EQ_EQ] = ACTIONS(2952), - [anon_sym_BANG_EQ] = ACTIONS(2952), - [anon_sym_LT] = ACTIONS(2956), - [anon_sym_GT] = ACTIONS(2956), - [anon_sym_LT_EQ] = ACTIONS(2952), - [anon_sym_GT_EQ] = ACTIONS(2952), - [anon_sym_LT_LT] = ACTIONS(2956), - [anon_sym_GT_GT] = ACTIONS(2956), - [anon_sym_PLUS] = ACTIONS(1004), - [anon_sym_DASH] = ACTIONS(1004), - [anon_sym_SLASH] = ACTIONS(2956), - [anon_sym_PERCENT] = ACTIONS(2956), - [anon_sym_DASH_DASH] = ACTIONS(1006), - [anon_sym_PLUS_PLUS] = ACTIONS(1006), - [anon_sym_sizeof] = ACTIONS(1008), - [anon_sym_DOT] = ACTIONS(2952), - [anon_sym_DASH_GT] = ACTIONS(2952), - [sym_number_literal] = ACTIONS(2392), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2394), - [sym_false] = ACTIONS(2394), - [sym_null] = ACTIONS(2394), - [sym_identifier] = ACTIONS(2394), + [anon_sym_LBRACE] = ACTIONS(628), + [anon_sym_LPAREN2] = ACTIONS(987), + [anon_sym_STAR] = ACTIONS(3217), + [anon_sym_LBRACK] = ACTIONS(2941), + [anon_sym_EQ] = ACTIONS(2945), + [anon_sym_COLON] = ACTIONS(2941), + [anon_sym_QMARK] = ACTIONS(2941), + [anon_sym_STAR_EQ] = ACTIONS(2941), + [anon_sym_SLASH_EQ] = ACTIONS(2941), + [anon_sym_PERCENT_EQ] = ACTIONS(2941), + [anon_sym_PLUS_EQ] = ACTIONS(2941), + [anon_sym_DASH_EQ] = ACTIONS(2941), + [anon_sym_LT_LT_EQ] = ACTIONS(2941), + [anon_sym_GT_GT_EQ] = ACTIONS(2941), + [anon_sym_AMP_EQ] = ACTIONS(2941), + [anon_sym_CARET_EQ] = ACTIONS(2941), + [anon_sym_PIPE_EQ] = ACTIONS(2941), + [anon_sym_AMP] = ACTIONS(3217), + [anon_sym_PIPE_PIPE] = ACTIONS(2941), + [anon_sym_AMP_AMP] = ACTIONS(2941), + [anon_sym_BANG] = ACTIONS(3219), + [anon_sym_PIPE] = ACTIONS(2945), + [anon_sym_CARET] = ACTIONS(2945), + [anon_sym_TILDE] = ACTIONS(993), + [anon_sym_EQ_EQ] = ACTIONS(2941), + [anon_sym_BANG_EQ] = ACTIONS(2941), + [anon_sym_LT] = ACTIONS(2945), + [anon_sym_GT] = ACTIONS(2945), + [anon_sym_LT_EQ] = ACTIONS(2941), + [anon_sym_GT_EQ] = ACTIONS(2941), + [anon_sym_LT_LT] = ACTIONS(2945), + [anon_sym_GT_GT] = ACTIONS(2945), + [anon_sym_PLUS] = ACTIONS(995), + [anon_sym_DASH] = ACTIONS(995), + [anon_sym_SLASH] = ACTIONS(2945), + [anon_sym_PERCENT] = ACTIONS(2945), + [anon_sym_DASH_DASH] = ACTIONS(997), + [anon_sym_PLUS_PLUS] = ACTIONS(997), + [anon_sym_sizeof] = ACTIONS(999), + [anon_sym_DOT] = ACTIONS(2941), + [anon_sym_DASH_GT] = ACTIONS(2941), + [sym_number_literal] = ACTIONS(2381), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(2383), + [sym_false] = ACTIONS(2383), + [sym_null] = ACTIONS(2383), + [sym_identifier] = ACTIONS(2383), [sym_comment] = ACTIONS(39), }, [1069] = { @@ -42156,23 +42175,23 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(1165), [sym_concatenated_string] = STATE(1165), [sym_string_literal] = STATE(421), - [anon_sym_LPAREN2] = ACTIONS(996), - [anon_sym_STAR] = ACTIONS(998), - [anon_sym_AMP] = ACTIONS(998), - [anon_sym_BANG] = ACTIONS(1000), - [anon_sym_TILDE] = ACTIONS(1002), - [anon_sym_PLUS] = ACTIONS(1004), - [anon_sym_DASH] = ACTIONS(1004), - [anon_sym_DASH_DASH] = ACTIONS(1006), - [anon_sym_PLUS_PLUS] = ACTIONS(1006), - [anon_sym_sizeof] = ACTIONS(1008), - [sym_number_literal] = ACTIONS(3232), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(3234), - [sym_false] = ACTIONS(3234), - [sym_null] = ACTIONS(3234), - [sym_identifier] = ACTIONS(3234), + [anon_sym_LPAREN2] = ACTIONS(987), + [anon_sym_STAR] = ACTIONS(989), + [anon_sym_AMP] = ACTIONS(989), + [anon_sym_BANG] = ACTIONS(991), + [anon_sym_TILDE] = ACTIONS(993), + [anon_sym_PLUS] = ACTIONS(995), + [anon_sym_DASH] = ACTIONS(995), + [anon_sym_DASH_DASH] = ACTIONS(997), + [anon_sym_PLUS_PLUS] = ACTIONS(997), + [anon_sym_sizeof] = ACTIONS(999), + [sym_number_literal] = ACTIONS(3221), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(3223), + [sym_false] = ACTIONS(3223), + [sym_null] = ACTIONS(3223), + [sym_identifier] = ACTIONS(3223), [sym_comment] = ACTIONS(39), }, [1070] = { @@ -42210,36 +42229,36 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(251), [sym_concatenated_string] = STATE(251), [sym_string_literal] = STATE(253), - [anon_sym_SEMI] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(241), - [anon_sym_LPAREN2] = ACTIONS(554), - [anon_sym_STAR] = ACTIONS(556), - [anon_sym_if] = ACTIONS(2472), - [anon_sym_switch] = ACTIONS(2474), - [anon_sym_case] = ACTIONS(2476), - [anon_sym_default] = ACTIONS(2478), - [anon_sym_while] = ACTIONS(2480), - [anon_sym_do] = ACTIONS(1026), - [anon_sym_for] = ACTIONS(2482), - [anon_sym_return] = ACTIONS(572), - [anon_sym_break] = ACTIONS(574), - [anon_sym_continue] = ACTIONS(576), - [anon_sym_goto] = ACTIONS(578), - [anon_sym_AMP] = ACTIONS(556), - [anon_sym_BANG] = ACTIONS(580), - [anon_sym_TILDE] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_DASH_DASH] = ACTIONS(586), - [anon_sym_PLUS_PLUS] = ACTIONS(586), - [anon_sym_sizeof] = ACTIONS(588), - [sym_number_literal] = ACTIONS(590), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(594), - [sym_false] = ACTIONS(594), - [sym_null] = ACTIONS(594), - [sym_identifier] = ACTIONS(2484), + [anon_sym_SEMI] = ACTIONS(546), + [anon_sym_LBRACE] = ACTIONS(239), + [anon_sym_LPAREN2] = ACTIONS(550), + [anon_sym_STAR] = ACTIONS(552), + [anon_sym_if] = ACTIONS(2461), + [anon_sym_switch] = ACTIONS(2463), + [anon_sym_case] = ACTIONS(2465), + [anon_sym_default] = ACTIONS(2467), + [anon_sym_while] = ACTIONS(2469), + [anon_sym_do] = ACTIONS(1017), + [anon_sym_for] = ACTIONS(2471), + [anon_sym_return] = ACTIONS(568), + [anon_sym_break] = ACTIONS(570), + [anon_sym_continue] = ACTIONS(572), + [anon_sym_goto] = ACTIONS(574), + [anon_sym_AMP] = ACTIONS(552), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_TILDE] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(580), + [anon_sym_DASH] = ACTIONS(580), + [anon_sym_DASH_DASH] = ACTIONS(582), + [anon_sym_PLUS_PLUS] = ACTIONS(582), + [anon_sym_sizeof] = ACTIONS(584), + [sym_number_literal] = ACTIONS(586), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(590), + [sym_false] = ACTIONS(590), + [sym_null] = ACTIONS(590), + [sym_identifier] = ACTIONS(2473), [sym_comment] = ACTIONS(39), }, [1071] = { @@ -42277,77 +42296,77 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(251), [sym_concatenated_string] = STATE(251), [sym_string_literal] = STATE(253), - [anon_sym_SEMI] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(241), - [anon_sym_LPAREN2] = ACTIONS(554), - [anon_sym_STAR] = ACTIONS(556), - [anon_sym_if] = ACTIONS(2472), - [anon_sym_switch] = ACTIONS(2474), - [anon_sym_case] = ACTIONS(2476), - [anon_sym_default] = ACTIONS(2478), - [anon_sym_while] = ACTIONS(2480), - [anon_sym_do] = ACTIONS(1026), - [anon_sym_for] = ACTIONS(2482), - [anon_sym_return] = ACTIONS(572), - [anon_sym_break] = ACTIONS(574), - [anon_sym_continue] = ACTIONS(576), - [anon_sym_goto] = ACTIONS(578), - [anon_sym_AMP] = ACTIONS(556), - [anon_sym_BANG] = ACTIONS(580), - [anon_sym_TILDE] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_DASH_DASH] = ACTIONS(586), - [anon_sym_PLUS_PLUS] = ACTIONS(586), - [anon_sym_sizeof] = ACTIONS(588), - [sym_number_literal] = ACTIONS(590), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(594), - [sym_false] = ACTIONS(594), - [sym_null] = ACTIONS(594), - [sym_identifier] = ACTIONS(2484), + [anon_sym_SEMI] = ACTIONS(546), + [anon_sym_LBRACE] = ACTIONS(239), + [anon_sym_LPAREN2] = ACTIONS(550), + [anon_sym_STAR] = ACTIONS(552), + [anon_sym_if] = ACTIONS(2461), + [anon_sym_switch] = ACTIONS(2463), + [anon_sym_case] = ACTIONS(2465), + [anon_sym_default] = ACTIONS(2467), + [anon_sym_while] = ACTIONS(2469), + [anon_sym_do] = ACTIONS(1017), + [anon_sym_for] = ACTIONS(2471), + [anon_sym_return] = ACTIONS(568), + [anon_sym_break] = ACTIONS(570), + [anon_sym_continue] = ACTIONS(572), + [anon_sym_goto] = ACTIONS(574), + [anon_sym_AMP] = ACTIONS(552), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_TILDE] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(580), + [anon_sym_DASH] = ACTIONS(580), + [anon_sym_DASH_DASH] = ACTIONS(582), + [anon_sym_PLUS_PLUS] = ACTIONS(582), + [anon_sym_sizeof] = ACTIONS(584), + [sym_number_literal] = ACTIONS(586), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(590), + [sym_false] = ACTIONS(590), + [sym_null] = ACTIONS(590), + [sym_identifier] = ACTIONS(2473), [sym_comment] = ACTIONS(39), }, [1072] = { [sym_argument_list] = STATE(465), - [anon_sym_LPAREN2] = ACTIONS(1096), - [anon_sym_STAR] = ACTIONS(1620), - [anon_sym_LBRACK] = ACTIONS(1100), - [anon_sym_EQ] = ACTIONS(1622), - [anon_sym_COLON] = ACTIONS(3236), - [anon_sym_QMARK] = ACTIONS(1626), - [anon_sym_STAR_EQ] = ACTIONS(1628), - [anon_sym_SLASH_EQ] = ACTIONS(1628), - [anon_sym_PERCENT_EQ] = ACTIONS(1628), - [anon_sym_PLUS_EQ] = ACTIONS(1628), - [anon_sym_DASH_EQ] = ACTIONS(1628), - [anon_sym_LT_LT_EQ] = ACTIONS(1628), - [anon_sym_GT_GT_EQ] = ACTIONS(1628), - [anon_sym_AMP_EQ] = ACTIONS(1628), - [anon_sym_CARET_EQ] = ACTIONS(1628), - [anon_sym_PIPE_EQ] = ACTIONS(1628), - [anon_sym_AMP] = ACTIONS(1630), - [anon_sym_PIPE_PIPE] = ACTIONS(1632), - [anon_sym_AMP_AMP] = ACTIONS(1634), - [anon_sym_PIPE] = ACTIONS(1636), - [anon_sym_CARET] = ACTIONS(1638), - [anon_sym_EQ_EQ] = ACTIONS(1640), - [anon_sym_BANG_EQ] = ACTIONS(1640), - [anon_sym_LT] = ACTIONS(1642), - [anon_sym_GT] = ACTIONS(1642), - [anon_sym_LT_EQ] = ACTIONS(1644), - [anon_sym_GT_EQ] = ACTIONS(1644), - [anon_sym_LT_LT] = ACTIONS(1646), - [anon_sym_GT_GT] = ACTIONS(1646), - [anon_sym_PLUS] = ACTIONS(1648), - [anon_sym_DASH] = ACTIONS(1648), - [anon_sym_SLASH] = ACTIONS(1620), - [anon_sym_PERCENT] = ACTIONS(1620), - [anon_sym_DASH_DASH] = ACTIONS(1128), - [anon_sym_PLUS_PLUS] = ACTIONS(1128), - [anon_sym_DOT] = ACTIONS(1130), - [anon_sym_DASH_GT] = ACTIONS(1130), + [anon_sym_LPAREN2] = ACTIONS(1089), + [anon_sym_STAR] = ACTIONS(1609), + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(1611), + [anon_sym_COLON] = ACTIONS(3225), + [anon_sym_QMARK] = ACTIONS(1615), + [anon_sym_STAR_EQ] = ACTIONS(1617), + [anon_sym_SLASH_EQ] = ACTIONS(1617), + [anon_sym_PERCENT_EQ] = ACTIONS(1617), + [anon_sym_PLUS_EQ] = ACTIONS(1617), + [anon_sym_DASH_EQ] = ACTIONS(1617), + [anon_sym_LT_LT_EQ] = ACTIONS(1617), + [anon_sym_GT_GT_EQ] = ACTIONS(1617), + [anon_sym_AMP_EQ] = ACTIONS(1617), + [anon_sym_CARET_EQ] = ACTIONS(1617), + [anon_sym_PIPE_EQ] = ACTIONS(1617), + [anon_sym_AMP] = ACTIONS(1619), + [anon_sym_PIPE_PIPE] = ACTIONS(1621), + [anon_sym_AMP_AMP] = ACTIONS(1623), + [anon_sym_PIPE] = ACTIONS(1625), + [anon_sym_CARET] = ACTIONS(1627), + [anon_sym_EQ_EQ] = ACTIONS(1629), + [anon_sym_BANG_EQ] = ACTIONS(1629), + [anon_sym_LT] = ACTIONS(1631), + [anon_sym_GT] = ACTIONS(1631), + [anon_sym_LT_EQ] = ACTIONS(1633), + [anon_sym_GT_EQ] = ACTIONS(1633), + [anon_sym_LT_LT] = ACTIONS(1635), + [anon_sym_GT_GT] = ACTIONS(1635), + [anon_sym_PLUS] = ACTIONS(1637), + [anon_sym_DASH] = ACTIONS(1637), + [anon_sym_SLASH] = ACTIONS(1609), + [anon_sym_PERCENT] = ACTIONS(1609), + [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_PLUS_PLUS] = ACTIONS(1121), + [anon_sym_DOT] = ACTIONS(1123), + [anon_sym_DASH_GT] = ACTIONS(1123), [sym_comment] = ACTIONS(39), }, [1073] = { @@ -42398,12 +42417,12 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_macro_type_specifier] = STATE(95), [aux_sym__declaration_specifiers_repeat1] = STATE(96), [aux_sym_sized_type_specifier_repeat1] = STATE(97), - [anon_sym_SEMI] = ACTIONS(550), + [anon_sym_SEMI] = ACTIONS(546), [anon_sym_typedef] = ACTIONS(19), [anon_sym_extern] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(241), - [anon_sym_LPAREN2] = ACTIONS(554), - [anon_sym_STAR] = ACTIONS(556), + [anon_sym_LBRACE] = ACTIONS(239), + [anon_sym_LPAREN2] = ACTIONS(550), + [anon_sym_STAR] = ACTIONS(552), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -42412,39 +42431,39 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_restrict] = ACTIONS(25), [anon_sym_volatile] = ACTIONS(25), [anon_sym__Atomic] = ACTIONS(25), - [anon_sym_unsigned] = ACTIONS(177), - [anon_sym_long] = ACTIONS(177), - [anon_sym_short] = ACTIONS(177), - [sym_primitive_type] = ACTIONS(179), + [anon_sym_unsigned] = ACTIONS(175), + [anon_sym_long] = ACTIONS(175), + [anon_sym_short] = ACTIONS(175), + [sym_primitive_type] = ACTIONS(177), [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), - [anon_sym_if] = ACTIONS(2472), - [anon_sym_switch] = ACTIONS(2474), - [anon_sym_case] = ACTIONS(2476), - [anon_sym_default] = ACTIONS(2478), - [anon_sym_while] = ACTIONS(2480), - [anon_sym_do] = ACTIONS(1026), - [anon_sym_for] = ACTIONS(2482), - [anon_sym_return] = ACTIONS(572), - [anon_sym_break] = ACTIONS(574), - [anon_sym_continue] = ACTIONS(576), - [anon_sym_goto] = ACTIONS(578), - [anon_sym_AMP] = ACTIONS(556), - [anon_sym_BANG] = ACTIONS(580), - [anon_sym_TILDE] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_DASH_DASH] = ACTIONS(586), - [anon_sym_PLUS_PLUS] = ACTIONS(586), - [anon_sym_sizeof] = ACTIONS(588), - [sym_number_literal] = ACTIONS(590), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(594), - [sym_false] = ACTIONS(594), - [sym_null] = ACTIONS(594), - [sym_identifier] = ACTIONS(3238), + [anon_sym_if] = ACTIONS(2461), + [anon_sym_switch] = ACTIONS(2463), + [anon_sym_case] = ACTIONS(2465), + [anon_sym_default] = ACTIONS(2467), + [anon_sym_while] = ACTIONS(2469), + [anon_sym_do] = ACTIONS(1017), + [anon_sym_for] = ACTIONS(2471), + [anon_sym_return] = ACTIONS(568), + [anon_sym_break] = ACTIONS(570), + [anon_sym_continue] = ACTIONS(572), + [anon_sym_goto] = ACTIONS(574), + [anon_sym_AMP] = ACTIONS(552), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_TILDE] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(580), + [anon_sym_DASH] = ACTIONS(580), + [anon_sym_DASH_DASH] = ACTIONS(582), + [anon_sym_PLUS_PLUS] = ACTIONS(582), + [anon_sym_sizeof] = ACTIONS(584), + [sym_number_literal] = ACTIONS(586), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(590), + [sym_false] = ACTIONS(590), + [sym_null] = ACTIONS(590), + [sym_identifier] = ACTIONS(3227), [sym_comment] = ACTIONS(39), }, [1074] = { @@ -42482,36 +42501,36 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(251), [sym_concatenated_string] = STATE(251), [sym_string_literal] = STATE(253), - [anon_sym_SEMI] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(241), - [anon_sym_LPAREN2] = ACTIONS(554), - [anon_sym_STAR] = ACTIONS(556), - [anon_sym_if] = ACTIONS(2472), - [anon_sym_switch] = ACTIONS(2474), - [anon_sym_case] = ACTIONS(2476), - [anon_sym_default] = ACTIONS(2478), - [anon_sym_while] = ACTIONS(2480), - [anon_sym_do] = ACTIONS(1026), - [anon_sym_for] = ACTIONS(2482), - [anon_sym_return] = ACTIONS(572), - [anon_sym_break] = ACTIONS(574), - [anon_sym_continue] = ACTIONS(576), - [anon_sym_goto] = ACTIONS(578), - [anon_sym_AMP] = ACTIONS(556), - [anon_sym_BANG] = ACTIONS(580), - [anon_sym_TILDE] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_DASH_DASH] = ACTIONS(586), - [anon_sym_PLUS_PLUS] = ACTIONS(586), - [anon_sym_sizeof] = ACTIONS(588), - [sym_number_literal] = ACTIONS(590), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(594), - [sym_false] = ACTIONS(594), - [sym_null] = ACTIONS(594), - [sym_identifier] = ACTIONS(2484), + [anon_sym_SEMI] = ACTIONS(546), + [anon_sym_LBRACE] = ACTIONS(239), + [anon_sym_LPAREN2] = ACTIONS(550), + [anon_sym_STAR] = ACTIONS(552), + [anon_sym_if] = ACTIONS(2461), + [anon_sym_switch] = ACTIONS(2463), + [anon_sym_case] = ACTIONS(2465), + [anon_sym_default] = ACTIONS(2467), + [anon_sym_while] = ACTIONS(2469), + [anon_sym_do] = ACTIONS(1017), + [anon_sym_for] = ACTIONS(2471), + [anon_sym_return] = ACTIONS(568), + [anon_sym_break] = ACTIONS(570), + [anon_sym_continue] = ACTIONS(572), + [anon_sym_goto] = ACTIONS(574), + [anon_sym_AMP] = ACTIONS(552), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_TILDE] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(580), + [anon_sym_DASH] = ACTIONS(580), + [anon_sym_DASH_DASH] = ACTIONS(582), + [anon_sym_PLUS_PLUS] = ACTIONS(582), + [anon_sym_sizeof] = ACTIONS(584), + [sym_number_literal] = ACTIONS(586), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(590), + [sym_false] = ACTIONS(590), + [sym_null] = ACTIONS(590), + [sym_identifier] = ACTIONS(2473), [sym_comment] = ACTIONS(39), }, [1075] = { @@ -42547,10 +42566,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_macro_type_specifier] = STATE(95), [aux_sym__declaration_specifiers_repeat1] = STATE(96), [aux_sym_sized_type_specifier_repeat1] = STATE(97), - [anon_sym_SEMI] = ACTIONS(3240), + [anon_sym_SEMI] = ACTIONS(3229), [anon_sym_extern] = ACTIONS(23), - [anon_sym_LPAREN2] = ACTIONS(847), - [anon_sym_STAR] = ACTIONS(849), + [anon_sym_LPAREN2] = ACTIONS(838), + [anon_sym_STAR] = ACTIONS(840), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -42559,28 +42578,28 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_restrict] = ACTIONS(25), [anon_sym_volatile] = ACTIONS(25), [anon_sym__Atomic] = ACTIONS(25), - [anon_sym_unsigned] = ACTIONS(177), - [anon_sym_long] = ACTIONS(177), - [anon_sym_short] = ACTIONS(177), - [sym_primitive_type] = ACTIONS(179), + [anon_sym_unsigned] = ACTIONS(175), + [anon_sym_long] = ACTIONS(175), + [anon_sym_short] = ACTIONS(175), + [sym_primitive_type] = ACTIONS(177), [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), - [anon_sym_AMP] = ACTIONS(849), - [anon_sym_BANG] = ACTIONS(851), - [anon_sym_TILDE] = ACTIONS(853), - [anon_sym_PLUS] = ACTIONS(855), - [anon_sym_DASH] = ACTIONS(855), - [anon_sym_DASH_DASH] = ACTIONS(857), - [anon_sym_PLUS_PLUS] = ACTIONS(857), - [anon_sym_sizeof] = ACTIONS(859), - [sym_number_literal] = ACTIONS(3242), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(3244), - [sym_false] = ACTIONS(3244), - [sym_null] = ACTIONS(3244), - [sym_identifier] = ACTIONS(1670), + [anon_sym_AMP] = ACTIONS(840), + [anon_sym_BANG] = ACTIONS(842), + [anon_sym_TILDE] = ACTIONS(844), + [anon_sym_PLUS] = ACTIONS(846), + [anon_sym_DASH] = ACTIONS(846), + [anon_sym_DASH_DASH] = ACTIONS(848), + [anon_sym_PLUS_PLUS] = ACTIONS(848), + [anon_sym_sizeof] = ACTIONS(850), + [sym_number_literal] = ACTIONS(3231), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(3233), + [sym_false] = ACTIONS(3233), + [sym_null] = ACTIONS(3233), + [sym_identifier] = ACTIONS(1659), [sym_comment] = ACTIONS(39), }, [1076] = { @@ -42618,36 +42637,36 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(251), [sym_concatenated_string] = STATE(251), [sym_string_literal] = STATE(253), - [anon_sym_SEMI] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(241), - [anon_sym_LPAREN2] = ACTIONS(554), - [anon_sym_STAR] = ACTIONS(556), - [anon_sym_if] = ACTIONS(2472), - [anon_sym_switch] = ACTIONS(2474), - [anon_sym_case] = ACTIONS(2476), - [anon_sym_default] = ACTIONS(2478), - [anon_sym_while] = ACTIONS(2480), - [anon_sym_do] = ACTIONS(1026), - [anon_sym_for] = ACTIONS(2482), - [anon_sym_return] = ACTIONS(572), - [anon_sym_break] = ACTIONS(574), - [anon_sym_continue] = ACTIONS(576), - [anon_sym_goto] = ACTIONS(578), - [anon_sym_AMP] = ACTIONS(556), - [anon_sym_BANG] = ACTIONS(580), - [anon_sym_TILDE] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_DASH_DASH] = ACTIONS(586), - [anon_sym_PLUS_PLUS] = ACTIONS(586), - [anon_sym_sizeof] = ACTIONS(588), - [sym_number_literal] = ACTIONS(590), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(594), - [sym_false] = ACTIONS(594), - [sym_null] = ACTIONS(594), - [sym_identifier] = ACTIONS(2484), + [anon_sym_SEMI] = ACTIONS(546), + [anon_sym_LBRACE] = ACTIONS(239), + [anon_sym_LPAREN2] = ACTIONS(550), + [anon_sym_STAR] = ACTIONS(552), + [anon_sym_if] = ACTIONS(2461), + [anon_sym_switch] = ACTIONS(2463), + [anon_sym_case] = ACTIONS(2465), + [anon_sym_default] = ACTIONS(2467), + [anon_sym_while] = ACTIONS(2469), + [anon_sym_do] = ACTIONS(1017), + [anon_sym_for] = ACTIONS(2471), + [anon_sym_return] = ACTIONS(568), + [anon_sym_break] = ACTIONS(570), + [anon_sym_continue] = ACTIONS(572), + [anon_sym_goto] = ACTIONS(574), + [anon_sym_AMP] = ACTIONS(552), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_TILDE] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(580), + [anon_sym_DASH] = ACTIONS(580), + [anon_sym_DASH_DASH] = ACTIONS(582), + [anon_sym_PLUS_PLUS] = ACTIONS(582), + [anon_sym_sizeof] = ACTIONS(584), + [sym_number_literal] = ACTIONS(586), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(590), + [sym_false] = ACTIONS(590), + [sym_null] = ACTIONS(590), + [sym_identifier] = ACTIONS(2473), [sym_comment] = ACTIONS(39), }, [1077] = { @@ -42685,36 +42704,36 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(251), [sym_concatenated_string] = STATE(251), [sym_string_literal] = STATE(253), - [anon_sym_SEMI] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(241), - [anon_sym_LPAREN2] = ACTIONS(554), - [anon_sym_STAR] = ACTIONS(556), - [anon_sym_if] = ACTIONS(1016), - [anon_sym_switch] = ACTIONS(1018), - [anon_sym_case] = ACTIONS(1020), - [anon_sym_default] = ACTIONS(1022), - [anon_sym_while] = ACTIONS(1024), - [anon_sym_do] = ACTIONS(1026), - [anon_sym_for] = ACTIONS(1028), - [anon_sym_return] = ACTIONS(572), - [anon_sym_break] = ACTIONS(574), - [anon_sym_continue] = ACTIONS(576), - [anon_sym_goto] = ACTIONS(578), - [anon_sym_AMP] = ACTIONS(556), - [anon_sym_BANG] = ACTIONS(580), - [anon_sym_TILDE] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_DASH_DASH] = ACTIONS(586), - [anon_sym_PLUS_PLUS] = ACTIONS(586), - [anon_sym_sizeof] = ACTIONS(588), - [sym_number_literal] = ACTIONS(590), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(594), - [sym_false] = ACTIONS(594), - [sym_null] = ACTIONS(594), - [sym_identifier] = ACTIONS(1030), + [anon_sym_SEMI] = ACTIONS(546), + [anon_sym_LBRACE] = ACTIONS(239), + [anon_sym_LPAREN2] = ACTIONS(550), + [anon_sym_STAR] = ACTIONS(552), + [anon_sym_if] = ACTIONS(1007), + [anon_sym_switch] = ACTIONS(1009), + [anon_sym_case] = ACTIONS(1011), + [anon_sym_default] = ACTIONS(1013), + [anon_sym_while] = ACTIONS(1015), + [anon_sym_do] = ACTIONS(1017), + [anon_sym_for] = ACTIONS(1019), + [anon_sym_return] = ACTIONS(568), + [anon_sym_break] = ACTIONS(570), + [anon_sym_continue] = ACTIONS(572), + [anon_sym_goto] = ACTIONS(574), + [anon_sym_AMP] = ACTIONS(552), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_TILDE] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(580), + [anon_sym_DASH] = ACTIONS(580), + [anon_sym_DASH_DASH] = ACTIONS(582), + [anon_sym_PLUS_PLUS] = ACTIONS(582), + [anon_sym_sizeof] = ACTIONS(584), + [sym_number_literal] = ACTIONS(586), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(590), + [sym_false] = ACTIONS(590), + [sym_null] = ACTIONS(590), + [sym_identifier] = ACTIONS(1021), [sym_comment] = ACTIONS(39), }, [1078] = { @@ -42739,23 +42758,23 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(406), [sym_concatenated_string] = STATE(406), [sym_string_literal] = STATE(409), - [anon_sym_LPAREN2] = ACTIONS(970), - [anon_sym_STAR] = ACTIONS(972), - [anon_sym_AMP] = ACTIONS(972), - [anon_sym_BANG] = ACTIONS(974), - [anon_sym_TILDE] = ACTIONS(976), - [anon_sym_PLUS] = ACTIONS(978), - [anon_sym_DASH] = ACTIONS(978), - [anon_sym_DASH_DASH] = ACTIONS(980), - [anon_sym_PLUS_PLUS] = ACTIONS(980), - [anon_sym_sizeof] = ACTIONS(982), - [sym_number_literal] = ACTIONS(984), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(986), - [sym_false] = ACTIONS(986), - [sym_null] = ACTIONS(986), - [sym_identifier] = ACTIONS(986), + [anon_sym_LPAREN2] = ACTIONS(961), + [anon_sym_STAR] = ACTIONS(963), + [anon_sym_AMP] = ACTIONS(963), + [anon_sym_BANG] = ACTIONS(965), + [anon_sym_TILDE] = ACTIONS(967), + [anon_sym_PLUS] = ACTIONS(969), + [anon_sym_DASH] = ACTIONS(969), + [anon_sym_DASH_DASH] = ACTIONS(971), + [anon_sym_PLUS_PLUS] = ACTIONS(971), + [anon_sym_sizeof] = ACTIONS(973), + [sym_number_literal] = ACTIONS(975), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(977), + [sym_false] = ACTIONS(977), + [sym_null] = ACTIONS(977), + [sym_identifier] = ACTIONS(977), [sym_comment] = ACTIONS(39), }, [1079] = { @@ -42779,65 +42798,65 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(1172), [sym_concatenated_string] = STATE(1172), [sym_string_literal] = STATE(409), - [anon_sym_RPAREN] = ACTIONS(3246), - [anon_sym_LPAREN2] = ACTIONS(970), - [anon_sym_STAR] = ACTIONS(972), - [anon_sym_AMP] = ACTIONS(972), - [anon_sym_BANG] = ACTIONS(974), - [anon_sym_TILDE] = ACTIONS(976), - [anon_sym_PLUS] = ACTIONS(978), - [anon_sym_DASH] = ACTIONS(978), - [anon_sym_DASH_DASH] = ACTIONS(980), - [anon_sym_PLUS_PLUS] = ACTIONS(980), - [anon_sym_sizeof] = ACTIONS(982), - [sym_number_literal] = ACTIONS(3248), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(3250), - [sym_false] = ACTIONS(3250), - [sym_null] = ACTIONS(3250), - [sym_identifier] = ACTIONS(3250), + [anon_sym_RPAREN] = ACTIONS(3235), + [anon_sym_LPAREN2] = ACTIONS(961), + [anon_sym_STAR] = ACTIONS(963), + [anon_sym_AMP] = ACTIONS(963), + [anon_sym_BANG] = ACTIONS(965), + [anon_sym_TILDE] = ACTIONS(967), + [anon_sym_PLUS] = ACTIONS(969), + [anon_sym_DASH] = ACTIONS(969), + [anon_sym_DASH_DASH] = ACTIONS(971), + [anon_sym_PLUS_PLUS] = ACTIONS(971), + [anon_sym_sizeof] = ACTIONS(973), + [sym_number_literal] = ACTIONS(3237), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(3239), + [sym_false] = ACTIONS(3239), + [sym_null] = ACTIONS(3239), + [sym_identifier] = ACTIONS(3239), [sym_comment] = ACTIONS(39), }, [1080] = { [sym_argument_list] = STATE(465), - [anon_sym_SEMI] = ACTIONS(3252), - [anon_sym_LPAREN2] = ACTIONS(1096), - [anon_sym_STAR] = ACTIONS(1436), - [anon_sym_LBRACK] = ACTIONS(1100), - [anon_sym_EQ] = ACTIONS(1438), - [anon_sym_QMARK] = ACTIONS(1440), - [anon_sym_STAR_EQ] = ACTIONS(1442), - [anon_sym_SLASH_EQ] = ACTIONS(1442), - [anon_sym_PERCENT_EQ] = ACTIONS(1442), - [anon_sym_PLUS_EQ] = ACTIONS(1442), - [anon_sym_DASH_EQ] = ACTIONS(1442), - [anon_sym_LT_LT_EQ] = ACTIONS(1442), - [anon_sym_GT_GT_EQ] = ACTIONS(1442), - [anon_sym_AMP_EQ] = ACTIONS(1442), - [anon_sym_CARET_EQ] = ACTIONS(1442), - [anon_sym_PIPE_EQ] = ACTIONS(1442), - [anon_sym_AMP] = ACTIONS(1444), - [anon_sym_PIPE_PIPE] = ACTIONS(1446), - [anon_sym_AMP_AMP] = ACTIONS(1448), - [anon_sym_PIPE] = ACTIONS(1450), - [anon_sym_CARET] = ACTIONS(1452), - [anon_sym_EQ_EQ] = ACTIONS(1454), - [anon_sym_BANG_EQ] = ACTIONS(1454), - [anon_sym_LT] = ACTIONS(1456), - [anon_sym_GT] = ACTIONS(1456), - [anon_sym_LT_EQ] = ACTIONS(1458), - [anon_sym_GT_EQ] = ACTIONS(1458), - [anon_sym_LT_LT] = ACTIONS(1460), - [anon_sym_GT_GT] = ACTIONS(1460), - [anon_sym_PLUS] = ACTIONS(1462), - [anon_sym_DASH] = ACTIONS(1462), - [anon_sym_SLASH] = ACTIONS(1436), - [anon_sym_PERCENT] = ACTIONS(1436), - [anon_sym_DASH_DASH] = ACTIONS(1128), - [anon_sym_PLUS_PLUS] = ACTIONS(1128), - [anon_sym_DOT] = ACTIONS(1130), - [anon_sym_DASH_GT] = ACTIONS(1130), + [anon_sym_SEMI] = ACTIONS(3241), + [anon_sym_LPAREN2] = ACTIONS(1089), + [anon_sym_STAR] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(1429), + [anon_sym_QMARK] = ACTIONS(1431), + [anon_sym_STAR_EQ] = ACTIONS(1433), + [anon_sym_SLASH_EQ] = ACTIONS(1433), + [anon_sym_PERCENT_EQ] = ACTIONS(1433), + [anon_sym_PLUS_EQ] = ACTIONS(1433), + [anon_sym_DASH_EQ] = ACTIONS(1433), + [anon_sym_LT_LT_EQ] = ACTIONS(1433), + [anon_sym_GT_GT_EQ] = ACTIONS(1433), + [anon_sym_AMP_EQ] = ACTIONS(1433), + [anon_sym_CARET_EQ] = ACTIONS(1433), + [anon_sym_PIPE_EQ] = ACTIONS(1433), + [anon_sym_AMP] = ACTIONS(1435), + [anon_sym_PIPE_PIPE] = ACTIONS(1437), + [anon_sym_AMP_AMP] = ACTIONS(1439), + [anon_sym_PIPE] = ACTIONS(1441), + [anon_sym_CARET] = ACTIONS(1443), + [anon_sym_EQ_EQ] = ACTIONS(1445), + [anon_sym_BANG_EQ] = ACTIONS(1445), + [anon_sym_LT] = ACTIONS(1447), + [anon_sym_GT] = ACTIONS(1447), + [anon_sym_LT_EQ] = ACTIONS(1449), + [anon_sym_GT_EQ] = ACTIONS(1449), + [anon_sym_LT_LT] = ACTIONS(1451), + [anon_sym_GT_GT] = ACTIONS(1451), + [anon_sym_PLUS] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1453), + [anon_sym_SLASH] = ACTIONS(1427), + [anon_sym_PERCENT] = ACTIONS(1427), + [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_PLUS_PLUS] = ACTIONS(1121), + [anon_sym_DOT] = ACTIONS(1123), + [anon_sym_DASH_GT] = ACTIONS(1123), [sym_comment] = ACTIONS(39), }, [1081] = { @@ -42861,24 +42880,24 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(1174), [sym_concatenated_string] = STATE(1174), [sym_string_literal] = STATE(376), - [anon_sym_SEMI] = ACTIONS(3252), - [anon_sym_LPAREN2] = ACTIONS(847), - [anon_sym_STAR] = ACTIONS(849), - [anon_sym_AMP] = ACTIONS(849), - [anon_sym_BANG] = ACTIONS(851), - [anon_sym_TILDE] = ACTIONS(853), - [anon_sym_PLUS] = ACTIONS(855), - [anon_sym_DASH] = ACTIONS(855), - [anon_sym_DASH_DASH] = ACTIONS(857), - [anon_sym_PLUS_PLUS] = ACTIONS(857), - [anon_sym_sizeof] = ACTIONS(859), - [sym_number_literal] = ACTIONS(3254), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(3256), - [sym_false] = ACTIONS(3256), - [sym_null] = ACTIONS(3256), - [sym_identifier] = ACTIONS(3256), + [anon_sym_SEMI] = ACTIONS(3241), + [anon_sym_LPAREN2] = ACTIONS(838), + [anon_sym_STAR] = ACTIONS(840), + [anon_sym_AMP] = ACTIONS(840), + [anon_sym_BANG] = ACTIONS(842), + [anon_sym_TILDE] = ACTIONS(844), + [anon_sym_PLUS] = ACTIONS(846), + [anon_sym_DASH] = ACTIONS(846), + [anon_sym_DASH_DASH] = ACTIONS(848), + [anon_sym_PLUS_PLUS] = ACTIONS(848), + [anon_sym_sizeof] = ACTIONS(850), + [sym_number_literal] = ACTIONS(3243), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(3245), + [sym_false] = ACTIONS(3245), + [sym_null] = ACTIONS(3245), + [sym_identifier] = ACTIONS(3245), [sym_comment] = ACTIONS(39), }, [1082] = { @@ -42916,79 +42935,79 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(251), [sym_concatenated_string] = STATE(251), [sym_string_literal] = STATE(253), - [anon_sym_SEMI] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(241), - [anon_sym_LPAREN2] = ACTIONS(554), - [anon_sym_STAR] = ACTIONS(556), - [anon_sym_if] = ACTIONS(558), - [anon_sym_switch] = ACTIONS(560), - [anon_sym_case] = ACTIONS(562), - [anon_sym_default] = ACTIONS(564), - [anon_sym_while] = ACTIONS(566), - [anon_sym_do] = ACTIONS(568), - [anon_sym_for] = ACTIONS(570), - [anon_sym_return] = ACTIONS(572), - [anon_sym_break] = ACTIONS(574), - [anon_sym_continue] = ACTIONS(576), - [anon_sym_goto] = ACTIONS(578), - [anon_sym_AMP] = ACTIONS(556), - [anon_sym_BANG] = ACTIONS(580), - [anon_sym_TILDE] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_DASH_DASH] = ACTIONS(586), - [anon_sym_PLUS_PLUS] = ACTIONS(586), - [anon_sym_sizeof] = ACTIONS(588), - [sym_number_literal] = ACTIONS(590), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(594), - [sym_false] = ACTIONS(594), - [sym_null] = ACTIONS(594), - [sym_identifier] = ACTIONS(1612), + [anon_sym_SEMI] = ACTIONS(546), + [anon_sym_LBRACE] = ACTIONS(239), + [anon_sym_LPAREN2] = ACTIONS(550), + [anon_sym_STAR] = ACTIONS(552), + [anon_sym_if] = ACTIONS(554), + [anon_sym_switch] = ACTIONS(556), + [anon_sym_case] = ACTIONS(558), + [anon_sym_default] = ACTIONS(560), + [anon_sym_while] = ACTIONS(562), + [anon_sym_do] = ACTIONS(564), + [anon_sym_for] = ACTIONS(566), + [anon_sym_return] = ACTIONS(568), + [anon_sym_break] = ACTIONS(570), + [anon_sym_continue] = ACTIONS(572), + [anon_sym_goto] = ACTIONS(574), + [anon_sym_AMP] = ACTIONS(552), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_TILDE] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(580), + [anon_sym_DASH] = ACTIONS(580), + [anon_sym_DASH_DASH] = ACTIONS(582), + [anon_sym_PLUS_PLUS] = ACTIONS(582), + [anon_sym_sizeof] = ACTIONS(584), + [sym_number_literal] = ACTIONS(586), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(590), + [sym_false] = ACTIONS(590), + [sym_null] = ACTIONS(590), + [sym_identifier] = ACTIONS(1601), [sym_comment] = ACTIONS(39), }, [1083] = { [sym_argument_list] = STATE(465), [aux_sym_for_statement_repeat1] = STATE(1177), - [anon_sym_COMMA] = ACTIONS(2530), - [anon_sym_RPAREN] = ACTIONS(3258), - [anon_sym_LPAREN2] = ACTIONS(1096), - [anon_sym_STAR] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1100), - [anon_sym_EQ] = ACTIONS(1562), - [anon_sym_QMARK] = ACTIONS(1564), - [anon_sym_STAR_EQ] = ACTIONS(1566), - [anon_sym_SLASH_EQ] = ACTIONS(1566), - [anon_sym_PERCENT_EQ] = ACTIONS(1566), - [anon_sym_PLUS_EQ] = ACTIONS(1566), - [anon_sym_DASH_EQ] = ACTIONS(1566), - [anon_sym_LT_LT_EQ] = ACTIONS(1566), - [anon_sym_GT_GT_EQ] = ACTIONS(1566), - [anon_sym_AMP_EQ] = ACTIONS(1566), - [anon_sym_CARET_EQ] = ACTIONS(1566), - [anon_sym_PIPE_EQ] = ACTIONS(1566), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_PIPE_PIPE] = ACTIONS(1570), - [anon_sym_AMP_AMP] = ACTIONS(1572), - [anon_sym_PIPE] = ACTIONS(1574), - [anon_sym_CARET] = ACTIONS(1576), - [anon_sym_EQ_EQ] = ACTIONS(1578), - [anon_sym_BANG_EQ] = ACTIONS(1578), - [anon_sym_LT] = ACTIONS(1580), - [anon_sym_GT] = ACTIONS(1580), - [anon_sym_LT_EQ] = ACTIONS(1582), - [anon_sym_GT_EQ] = ACTIONS(1582), - [anon_sym_LT_LT] = ACTIONS(1584), - [anon_sym_GT_GT] = ACTIONS(1584), - [anon_sym_PLUS] = ACTIONS(1586), - [anon_sym_DASH] = ACTIONS(1586), - [anon_sym_SLASH] = ACTIONS(1560), - [anon_sym_PERCENT] = ACTIONS(1560), - [anon_sym_DASH_DASH] = ACTIONS(1128), - [anon_sym_PLUS_PLUS] = ACTIONS(1128), - [anon_sym_DOT] = ACTIONS(1130), - [anon_sym_DASH_GT] = ACTIONS(1130), + [anon_sym_COMMA] = ACTIONS(2519), + [anon_sym_RPAREN] = ACTIONS(3247), + [anon_sym_LPAREN2] = ACTIONS(1089), + [anon_sym_STAR] = ACTIONS(1549), + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(1551), + [anon_sym_QMARK] = ACTIONS(1553), + [anon_sym_STAR_EQ] = ACTIONS(1555), + [anon_sym_SLASH_EQ] = ACTIONS(1555), + [anon_sym_PERCENT_EQ] = ACTIONS(1555), + [anon_sym_PLUS_EQ] = ACTIONS(1555), + [anon_sym_DASH_EQ] = ACTIONS(1555), + [anon_sym_LT_LT_EQ] = ACTIONS(1555), + [anon_sym_GT_GT_EQ] = ACTIONS(1555), + [anon_sym_AMP_EQ] = ACTIONS(1555), + [anon_sym_CARET_EQ] = ACTIONS(1555), + [anon_sym_PIPE_EQ] = ACTIONS(1555), + [anon_sym_AMP] = ACTIONS(1557), + [anon_sym_PIPE_PIPE] = ACTIONS(1559), + [anon_sym_AMP_AMP] = ACTIONS(1561), + [anon_sym_PIPE] = ACTIONS(1563), + [anon_sym_CARET] = ACTIONS(1565), + [anon_sym_EQ_EQ] = ACTIONS(1567), + [anon_sym_BANG_EQ] = ACTIONS(1567), + [anon_sym_LT] = ACTIONS(1569), + [anon_sym_GT] = ACTIONS(1569), + [anon_sym_LT_EQ] = ACTIONS(1571), + [anon_sym_GT_EQ] = ACTIONS(1571), + [anon_sym_LT_LT] = ACTIONS(1573), + [anon_sym_GT_GT] = ACTIONS(1573), + [anon_sym_PLUS] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(1575), + [anon_sym_SLASH] = ACTIONS(1549), + [anon_sym_PERCENT] = ACTIONS(1549), + [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_PLUS_PLUS] = ACTIONS(1121), + [anon_sym_DOT] = ACTIONS(1123), + [anon_sym_DASH_GT] = ACTIONS(1123), [sym_comment] = ACTIONS(39), }, [1084] = { @@ -43012,300 +43031,300 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(1178), [sym_concatenated_string] = STATE(1178), [sym_string_literal] = STATE(409), - [anon_sym_RPAREN] = ACTIONS(3258), - [anon_sym_LPAREN2] = ACTIONS(970), - [anon_sym_STAR] = ACTIONS(972), - [anon_sym_AMP] = ACTIONS(972), - [anon_sym_BANG] = ACTIONS(974), - [anon_sym_TILDE] = ACTIONS(976), - [anon_sym_PLUS] = ACTIONS(978), - [anon_sym_DASH] = ACTIONS(978), - [anon_sym_DASH_DASH] = ACTIONS(980), - [anon_sym_PLUS_PLUS] = ACTIONS(980), - [anon_sym_sizeof] = ACTIONS(982), - [sym_number_literal] = ACTIONS(3260), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(3262), - [sym_false] = ACTIONS(3262), - [sym_null] = ACTIONS(3262), - [sym_identifier] = ACTIONS(3262), + [anon_sym_RPAREN] = ACTIONS(3247), + [anon_sym_LPAREN2] = ACTIONS(961), + [anon_sym_STAR] = ACTIONS(963), + [anon_sym_AMP] = ACTIONS(963), + [anon_sym_BANG] = ACTIONS(965), + [anon_sym_TILDE] = ACTIONS(967), + [anon_sym_PLUS] = ACTIONS(969), + [anon_sym_DASH] = ACTIONS(969), + [anon_sym_DASH_DASH] = ACTIONS(971), + [anon_sym_PLUS_PLUS] = ACTIONS(971), + [anon_sym_sizeof] = ACTIONS(973), + [sym_number_literal] = ACTIONS(3249), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(3251), + [sym_false] = ACTIONS(3251), + [sym_null] = ACTIONS(3251), + [sym_identifier] = ACTIONS(3251), [sym_comment] = ACTIONS(39), }, [1085] = { [sym_argument_list] = STATE(465), - [anon_sym_SEMI] = ACTIONS(3264), - [anon_sym_LPAREN2] = ACTIONS(1096), - [anon_sym_STAR] = ACTIONS(1436), - [anon_sym_LBRACK] = ACTIONS(1100), - [anon_sym_EQ] = ACTIONS(1438), - [anon_sym_QMARK] = ACTIONS(1440), - [anon_sym_STAR_EQ] = ACTIONS(1442), - [anon_sym_SLASH_EQ] = ACTIONS(1442), - [anon_sym_PERCENT_EQ] = ACTIONS(1442), - [anon_sym_PLUS_EQ] = ACTIONS(1442), - [anon_sym_DASH_EQ] = ACTIONS(1442), - [anon_sym_LT_LT_EQ] = ACTIONS(1442), - [anon_sym_GT_GT_EQ] = ACTIONS(1442), - [anon_sym_AMP_EQ] = ACTIONS(1442), - [anon_sym_CARET_EQ] = ACTIONS(1442), - [anon_sym_PIPE_EQ] = ACTIONS(1442), - [anon_sym_AMP] = ACTIONS(1444), - [anon_sym_PIPE_PIPE] = ACTIONS(1446), - [anon_sym_AMP_AMP] = ACTIONS(1448), - [anon_sym_PIPE] = ACTIONS(1450), - [anon_sym_CARET] = ACTIONS(1452), - [anon_sym_EQ_EQ] = ACTIONS(1454), - [anon_sym_BANG_EQ] = ACTIONS(1454), - [anon_sym_LT] = ACTIONS(1456), - [anon_sym_GT] = ACTIONS(1456), - [anon_sym_LT_EQ] = ACTIONS(1458), - [anon_sym_GT_EQ] = ACTIONS(1458), - [anon_sym_LT_LT] = ACTIONS(1460), - [anon_sym_GT_GT] = ACTIONS(1460), - [anon_sym_PLUS] = ACTIONS(1462), - [anon_sym_DASH] = ACTIONS(1462), - [anon_sym_SLASH] = ACTIONS(1436), - [anon_sym_PERCENT] = ACTIONS(1436), - [anon_sym_DASH_DASH] = ACTIONS(1128), - [anon_sym_PLUS_PLUS] = ACTIONS(1128), - [anon_sym_DOT] = ACTIONS(1130), - [anon_sym_DASH_GT] = ACTIONS(1130), + [anon_sym_SEMI] = ACTIONS(3253), + [anon_sym_LPAREN2] = ACTIONS(1089), + [anon_sym_STAR] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(1429), + [anon_sym_QMARK] = ACTIONS(1431), + [anon_sym_STAR_EQ] = ACTIONS(1433), + [anon_sym_SLASH_EQ] = ACTIONS(1433), + [anon_sym_PERCENT_EQ] = ACTIONS(1433), + [anon_sym_PLUS_EQ] = ACTIONS(1433), + [anon_sym_DASH_EQ] = ACTIONS(1433), + [anon_sym_LT_LT_EQ] = ACTIONS(1433), + [anon_sym_GT_GT_EQ] = ACTIONS(1433), + [anon_sym_AMP_EQ] = ACTIONS(1433), + [anon_sym_CARET_EQ] = ACTIONS(1433), + [anon_sym_PIPE_EQ] = ACTIONS(1433), + [anon_sym_AMP] = ACTIONS(1435), + [anon_sym_PIPE_PIPE] = ACTIONS(1437), + [anon_sym_AMP_AMP] = ACTIONS(1439), + [anon_sym_PIPE] = ACTIONS(1441), + [anon_sym_CARET] = ACTIONS(1443), + [anon_sym_EQ_EQ] = ACTIONS(1445), + [anon_sym_BANG_EQ] = ACTIONS(1445), + [anon_sym_LT] = ACTIONS(1447), + [anon_sym_GT] = ACTIONS(1447), + [anon_sym_LT_EQ] = ACTIONS(1449), + [anon_sym_GT_EQ] = ACTIONS(1449), + [anon_sym_LT_LT] = ACTIONS(1451), + [anon_sym_GT_GT] = ACTIONS(1451), + [anon_sym_PLUS] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1453), + [anon_sym_SLASH] = ACTIONS(1427), + [anon_sym_PERCENT] = ACTIONS(1427), + [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_PLUS_PLUS] = ACTIONS(1121), + [anon_sym_DOT] = ACTIONS(1123), + [anon_sym_DASH_GT] = ACTIONS(1123), [sym_comment] = ACTIONS(39), }, [1086] = { [sym_argument_list] = STATE(465), - [anon_sym_COMMA] = ACTIONS(3266), - [anon_sym_RPAREN] = ACTIONS(3266), - [anon_sym_LPAREN2] = ACTIONS(1096), - [anon_sym_STAR] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1100), - [anon_sym_EQ] = ACTIONS(1562), - [anon_sym_QMARK] = ACTIONS(1564), - [anon_sym_STAR_EQ] = ACTIONS(1566), - [anon_sym_SLASH_EQ] = ACTIONS(1566), - [anon_sym_PERCENT_EQ] = ACTIONS(1566), - [anon_sym_PLUS_EQ] = ACTIONS(1566), - [anon_sym_DASH_EQ] = ACTIONS(1566), - [anon_sym_LT_LT_EQ] = ACTIONS(1566), - [anon_sym_GT_GT_EQ] = ACTIONS(1566), - [anon_sym_AMP_EQ] = ACTIONS(1566), - [anon_sym_CARET_EQ] = ACTIONS(1566), - [anon_sym_PIPE_EQ] = ACTIONS(1566), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_PIPE_PIPE] = ACTIONS(1570), - [anon_sym_AMP_AMP] = ACTIONS(1572), - [anon_sym_PIPE] = ACTIONS(1574), - [anon_sym_CARET] = ACTIONS(1576), - [anon_sym_EQ_EQ] = ACTIONS(1578), - [anon_sym_BANG_EQ] = ACTIONS(1578), - [anon_sym_LT] = ACTIONS(1580), - [anon_sym_GT] = ACTIONS(1580), - [anon_sym_LT_EQ] = ACTIONS(1582), - [anon_sym_GT_EQ] = ACTIONS(1582), - [anon_sym_LT_LT] = ACTIONS(1584), - [anon_sym_GT_GT] = ACTIONS(1584), - [anon_sym_PLUS] = ACTIONS(1586), - [anon_sym_DASH] = ACTIONS(1586), - [anon_sym_SLASH] = ACTIONS(1560), - [anon_sym_PERCENT] = ACTIONS(1560), - [anon_sym_DASH_DASH] = ACTIONS(1128), - [anon_sym_PLUS_PLUS] = ACTIONS(1128), - [anon_sym_DOT] = ACTIONS(1130), - [anon_sym_DASH_GT] = ACTIONS(1130), + [anon_sym_COMMA] = ACTIONS(3255), + [anon_sym_RPAREN] = ACTIONS(3255), + [anon_sym_LPAREN2] = ACTIONS(1089), + [anon_sym_STAR] = ACTIONS(1549), + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(1551), + [anon_sym_QMARK] = ACTIONS(1553), + [anon_sym_STAR_EQ] = ACTIONS(1555), + [anon_sym_SLASH_EQ] = ACTIONS(1555), + [anon_sym_PERCENT_EQ] = ACTIONS(1555), + [anon_sym_PLUS_EQ] = ACTIONS(1555), + [anon_sym_DASH_EQ] = ACTIONS(1555), + [anon_sym_LT_LT_EQ] = ACTIONS(1555), + [anon_sym_GT_GT_EQ] = ACTIONS(1555), + [anon_sym_AMP_EQ] = ACTIONS(1555), + [anon_sym_CARET_EQ] = ACTIONS(1555), + [anon_sym_PIPE_EQ] = ACTIONS(1555), + [anon_sym_AMP] = ACTIONS(1557), + [anon_sym_PIPE_PIPE] = ACTIONS(1559), + [anon_sym_AMP_AMP] = ACTIONS(1561), + [anon_sym_PIPE] = ACTIONS(1563), + [anon_sym_CARET] = ACTIONS(1565), + [anon_sym_EQ_EQ] = ACTIONS(1567), + [anon_sym_BANG_EQ] = ACTIONS(1567), + [anon_sym_LT] = ACTIONS(1569), + [anon_sym_GT] = ACTIONS(1569), + [anon_sym_LT_EQ] = ACTIONS(1571), + [anon_sym_GT_EQ] = ACTIONS(1571), + [anon_sym_LT_LT] = ACTIONS(1573), + [anon_sym_GT_GT] = ACTIONS(1573), + [anon_sym_PLUS] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(1575), + [anon_sym_SLASH] = ACTIONS(1549), + [anon_sym_PERCENT] = ACTIONS(1549), + [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_PLUS_PLUS] = ACTIONS(1121), + [anon_sym_DOT] = ACTIONS(1123), + [anon_sym_DASH_GT] = ACTIONS(1123), [sym_comment] = ACTIONS(39), }, [1087] = { - [anon_sym_COMMA] = ACTIONS(3268), - [anon_sym_RPAREN] = ACTIONS(3268), - [anon_sym_SEMI] = ACTIONS(3268), - [anon_sym_RBRACE] = ACTIONS(3268), - [anon_sym_LPAREN2] = ACTIONS(3268), - [anon_sym_STAR] = ACTIONS(3270), - [anon_sym_LBRACK] = ACTIONS(3268), - [anon_sym_RBRACK] = ACTIONS(3268), - [anon_sym_EQ] = ACTIONS(3270), - [anon_sym_COLON] = ACTIONS(3268), - [anon_sym_QMARK] = ACTIONS(3268), - [anon_sym_STAR_EQ] = ACTIONS(3268), - [anon_sym_SLASH_EQ] = ACTIONS(3268), - [anon_sym_PERCENT_EQ] = ACTIONS(3268), - [anon_sym_PLUS_EQ] = ACTIONS(3268), - [anon_sym_DASH_EQ] = ACTIONS(3268), - [anon_sym_LT_LT_EQ] = ACTIONS(3268), - [anon_sym_GT_GT_EQ] = ACTIONS(3268), - [anon_sym_AMP_EQ] = ACTIONS(3268), - [anon_sym_CARET_EQ] = ACTIONS(3268), - [anon_sym_PIPE_EQ] = ACTIONS(3268), - [anon_sym_AMP] = ACTIONS(3270), - [anon_sym_PIPE_PIPE] = ACTIONS(3268), - [anon_sym_AMP_AMP] = ACTIONS(3268), - [anon_sym_PIPE] = ACTIONS(3270), - [anon_sym_CARET] = ACTIONS(3270), - [anon_sym_EQ_EQ] = ACTIONS(3268), - [anon_sym_BANG_EQ] = ACTIONS(3268), - [anon_sym_LT] = ACTIONS(3270), - [anon_sym_GT] = ACTIONS(3270), - [anon_sym_LT_EQ] = ACTIONS(3268), - [anon_sym_GT_EQ] = ACTIONS(3268), - [anon_sym_LT_LT] = ACTIONS(3270), - [anon_sym_GT_GT] = ACTIONS(3270), - [anon_sym_PLUS] = ACTIONS(3270), - [anon_sym_DASH] = ACTIONS(3270), - [anon_sym_SLASH] = ACTIONS(3270), - [anon_sym_PERCENT] = ACTIONS(3270), - [anon_sym_DASH_DASH] = ACTIONS(3268), - [anon_sym_PLUS_PLUS] = ACTIONS(3268), - [anon_sym_DOT] = ACTIONS(3268), - [anon_sym_DASH_GT] = ACTIONS(3268), + [anon_sym_COMMA] = ACTIONS(3257), + [anon_sym_RPAREN] = ACTIONS(3257), + [anon_sym_SEMI] = ACTIONS(3257), + [anon_sym_RBRACE] = ACTIONS(3257), + [anon_sym_LPAREN2] = ACTIONS(3257), + [anon_sym_STAR] = ACTIONS(3259), + [anon_sym_LBRACK] = ACTIONS(3257), + [anon_sym_RBRACK] = ACTIONS(3257), + [anon_sym_EQ] = ACTIONS(3259), + [anon_sym_COLON] = ACTIONS(3257), + [anon_sym_QMARK] = ACTIONS(3257), + [anon_sym_STAR_EQ] = ACTIONS(3257), + [anon_sym_SLASH_EQ] = ACTIONS(3257), + [anon_sym_PERCENT_EQ] = ACTIONS(3257), + [anon_sym_PLUS_EQ] = ACTIONS(3257), + [anon_sym_DASH_EQ] = ACTIONS(3257), + [anon_sym_LT_LT_EQ] = ACTIONS(3257), + [anon_sym_GT_GT_EQ] = ACTIONS(3257), + [anon_sym_AMP_EQ] = ACTIONS(3257), + [anon_sym_CARET_EQ] = ACTIONS(3257), + [anon_sym_PIPE_EQ] = ACTIONS(3257), + [anon_sym_AMP] = ACTIONS(3259), + [anon_sym_PIPE_PIPE] = ACTIONS(3257), + [anon_sym_AMP_AMP] = ACTIONS(3257), + [anon_sym_PIPE] = ACTIONS(3259), + [anon_sym_CARET] = ACTIONS(3259), + [anon_sym_EQ_EQ] = ACTIONS(3257), + [anon_sym_BANG_EQ] = ACTIONS(3257), + [anon_sym_LT] = ACTIONS(3259), + [anon_sym_GT] = ACTIONS(3259), + [anon_sym_LT_EQ] = ACTIONS(3257), + [anon_sym_GT_EQ] = ACTIONS(3257), + [anon_sym_LT_LT] = ACTIONS(3259), + [anon_sym_GT_GT] = ACTIONS(3259), + [anon_sym_PLUS] = ACTIONS(3259), + [anon_sym_DASH] = ACTIONS(3259), + [anon_sym_SLASH] = ACTIONS(3259), + [anon_sym_PERCENT] = ACTIONS(3259), + [anon_sym_DASH_DASH] = ACTIONS(3257), + [anon_sym_PLUS_PLUS] = ACTIONS(3257), + [anon_sym_DOT] = ACTIONS(3257), + [anon_sym_DASH_GT] = ACTIONS(3257), [sym_comment] = ACTIONS(39), }, [1088] = { [aux_sym_for_statement_repeat1] = STATE(1088), - [anon_sym_COMMA] = ACTIONS(3272), - [anon_sym_RPAREN] = ACTIONS(3266), + [anon_sym_COMMA] = ACTIONS(3261), + [anon_sym_RPAREN] = ACTIONS(3255), [sym_comment] = ACTIONS(39), }, [1089] = { [sym_argument_list] = STATE(465), - [anon_sym_COMMA] = ACTIONS(3275), - [anon_sym_SEMI] = ACTIONS(3275), - [anon_sym_LPAREN2] = ACTIONS(1096), - [anon_sym_STAR] = ACTIONS(1098), - [anon_sym_LBRACK] = ACTIONS(1100), - [anon_sym_EQ] = ACTIONS(1102), - [anon_sym_QMARK] = ACTIONS(1104), - [anon_sym_STAR_EQ] = ACTIONS(1106), - [anon_sym_SLASH_EQ] = ACTIONS(1106), - [anon_sym_PERCENT_EQ] = ACTIONS(1106), - [anon_sym_PLUS_EQ] = ACTIONS(1106), - [anon_sym_DASH_EQ] = ACTIONS(1106), - [anon_sym_LT_LT_EQ] = ACTIONS(1106), - [anon_sym_GT_GT_EQ] = ACTIONS(1106), - [anon_sym_AMP_EQ] = ACTIONS(1106), - [anon_sym_CARET_EQ] = ACTIONS(1106), - [anon_sym_PIPE_EQ] = ACTIONS(1106), - [anon_sym_AMP] = ACTIONS(1108), - [anon_sym_PIPE_PIPE] = ACTIONS(1110), - [anon_sym_AMP_AMP] = ACTIONS(1112), - [anon_sym_PIPE] = ACTIONS(1114), - [anon_sym_CARET] = ACTIONS(1116), - [anon_sym_EQ_EQ] = ACTIONS(1118), - [anon_sym_BANG_EQ] = ACTIONS(1118), - [anon_sym_LT] = ACTIONS(1120), - [anon_sym_GT] = ACTIONS(1120), - [anon_sym_LT_EQ] = ACTIONS(1122), - [anon_sym_GT_EQ] = ACTIONS(1122), - [anon_sym_LT_LT] = ACTIONS(1124), - [anon_sym_GT_GT] = ACTIONS(1124), - [anon_sym_PLUS] = ACTIONS(1126), - [anon_sym_DASH] = ACTIONS(1126), - [anon_sym_SLASH] = ACTIONS(1098), - [anon_sym_PERCENT] = ACTIONS(1098), - [anon_sym_DASH_DASH] = ACTIONS(1128), - [anon_sym_PLUS_PLUS] = ACTIONS(1128), - [anon_sym_DOT] = ACTIONS(1130), - [anon_sym_DASH_GT] = ACTIONS(1130), + [anon_sym_COMMA] = ACTIONS(3264), + [anon_sym_SEMI] = ACTIONS(3264), + [anon_sym_LPAREN2] = ACTIONS(1089), + [anon_sym_STAR] = ACTIONS(1091), + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(1095), + [anon_sym_QMARK] = ACTIONS(1097), + [anon_sym_STAR_EQ] = ACTIONS(1099), + [anon_sym_SLASH_EQ] = ACTIONS(1099), + [anon_sym_PERCENT_EQ] = ACTIONS(1099), + [anon_sym_PLUS_EQ] = ACTIONS(1099), + [anon_sym_DASH_EQ] = ACTIONS(1099), + [anon_sym_LT_LT_EQ] = ACTIONS(1099), + [anon_sym_GT_GT_EQ] = ACTIONS(1099), + [anon_sym_AMP_EQ] = ACTIONS(1099), + [anon_sym_CARET_EQ] = ACTIONS(1099), + [anon_sym_PIPE_EQ] = ACTIONS(1099), + [anon_sym_AMP] = ACTIONS(1101), + [anon_sym_PIPE_PIPE] = ACTIONS(1103), + [anon_sym_AMP_AMP] = ACTIONS(1105), + [anon_sym_PIPE] = ACTIONS(1107), + [anon_sym_CARET] = ACTIONS(1109), + [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(1115), + [anon_sym_GT_EQ] = ACTIONS(1115), + [anon_sym_LT_LT] = ACTIONS(1117), + [anon_sym_GT_GT] = ACTIONS(1117), + [anon_sym_PLUS] = ACTIONS(1119), + [anon_sym_DASH] = ACTIONS(1119), + [anon_sym_SLASH] = ACTIONS(1091), + [anon_sym_PERCENT] = ACTIONS(1091), + [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_PLUS_PLUS] = ACTIONS(1121), + [anon_sym_DOT] = ACTIONS(1123), + [anon_sym_DASH_GT] = ACTIONS(1123), [sym_comment] = ACTIONS(39), }, [1090] = { [sym_type_qualifier] = STATE(1090), [aux_sym_type_definition_repeat1] = STATE(1090), - [anon_sym_RPAREN] = ACTIONS(950), - [anon_sym_LPAREN2] = ACTIONS(950), - [anon_sym_STAR] = ACTIONS(950), - [anon_sym_LBRACK] = ACTIONS(950), - [anon_sym_const] = ACTIONS(436), - [anon_sym_restrict] = ACTIONS(436), - [anon_sym_volatile] = ACTIONS(436), - [anon_sym__Atomic] = ACTIONS(436), - [sym_identifier] = ACTIONS(439), + [anon_sym_RPAREN] = ACTIONS(941), + [anon_sym_LPAREN2] = ACTIONS(941), + [anon_sym_STAR] = ACTIONS(941), + [anon_sym_LBRACK] = ACTIONS(941), + [anon_sym_const] = ACTIONS(432), + [anon_sym_restrict] = ACTIONS(432), + [anon_sym_volatile] = ACTIONS(432), + [anon_sym__Atomic] = ACTIONS(432), + [sym_identifier] = ACTIONS(435), [sym_comment] = ACTIONS(39), }, [1091] = { [sym_argument_list] = STATE(465), - [anon_sym_LPAREN2] = ACTIONS(1096), - [anon_sym_STAR] = ACTIONS(1166), - [anon_sym_LBRACK] = ACTIONS(1100), - [anon_sym_RBRACK] = ACTIONS(3275), - [anon_sym_EQ] = ACTIONS(1168), - [anon_sym_QMARK] = ACTIONS(1170), - [anon_sym_STAR_EQ] = ACTIONS(1172), - [anon_sym_SLASH_EQ] = ACTIONS(1172), - [anon_sym_PERCENT_EQ] = ACTIONS(1172), - [anon_sym_PLUS_EQ] = ACTIONS(1172), - [anon_sym_DASH_EQ] = ACTIONS(1172), - [anon_sym_LT_LT_EQ] = ACTIONS(1172), - [anon_sym_GT_GT_EQ] = ACTIONS(1172), - [anon_sym_AMP_EQ] = ACTIONS(1172), - [anon_sym_CARET_EQ] = ACTIONS(1172), - [anon_sym_PIPE_EQ] = ACTIONS(1172), - [anon_sym_AMP] = ACTIONS(1174), - [anon_sym_PIPE_PIPE] = ACTIONS(1176), - [anon_sym_AMP_AMP] = ACTIONS(1178), - [anon_sym_PIPE] = ACTIONS(1180), - [anon_sym_CARET] = ACTIONS(1182), - [anon_sym_EQ_EQ] = ACTIONS(1184), - [anon_sym_BANG_EQ] = ACTIONS(1184), - [anon_sym_LT] = ACTIONS(1186), - [anon_sym_GT] = ACTIONS(1186), - [anon_sym_LT_EQ] = ACTIONS(1188), - [anon_sym_GT_EQ] = ACTIONS(1188), - [anon_sym_LT_LT] = ACTIONS(1190), - [anon_sym_GT_GT] = ACTIONS(1190), - [anon_sym_PLUS] = ACTIONS(1192), - [anon_sym_DASH] = ACTIONS(1192), - [anon_sym_SLASH] = ACTIONS(1166), - [anon_sym_PERCENT] = ACTIONS(1166), - [anon_sym_DASH_DASH] = ACTIONS(1128), - [anon_sym_PLUS_PLUS] = ACTIONS(1128), - [anon_sym_DOT] = ACTIONS(1130), - [anon_sym_DASH_GT] = ACTIONS(1130), + [anon_sym_LPAREN2] = ACTIONS(1089), + [anon_sym_STAR] = ACTIONS(1159), + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_RBRACK] = ACTIONS(3264), + [anon_sym_EQ] = ACTIONS(1161), + [anon_sym_QMARK] = ACTIONS(1163), + [anon_sym_STAR_EQ] = ACTIONS(1165), + [anon_sym_SLASH_EQ] = ACTIONS(1165), + [anon_sym_PERCENT_EQ] = ACTIONS(1165), + [anon_sym_PLUS_EQ] = ACTIONS(1165), + [anon_sym_DASH_EQ] = ACTIONS(1165), + [anon_sym_LT_LT_EQ] = ACTIONS(1165), + [anon_sym_GT_GT_EQ] = ACTIONS(1165), + [anon_sym_AMP_EQ] = ACTIONS(1165), + [anon_sym_CARET_EQ] = ACTIONS(1165), + [anon_sym_PIPE_EQ] = ACTIONS(1165), + [anon_sym_AMP] = ACTIONS(1167), + [anon_sym_PIPE_PIPE] = ACTIONS(1169), + [anon_sym_AMP_AMP] = ACTIONS(1171), + [anon_sym_PIPE] = ACTIONS(1173), + [anon_sym_CARET] = ACTIONS(1175), + [anon_sym_EQ_EQ] = ACTIONS(1177), + [anon_sym_BANG_EQ] = ACTIONS(1177), + [anon_sym_LT] = ACTIONS(1179), + [anon_sym_GT] = ACTIONS(1179), + [anon_sym_LT_EQ] = ACTIONS(1181), + [anon_sym_GT_EQ] = ACTIONS(1181), + [anon_sym_LT_LT] = ACTIONS(1183), + [anon_sym_GT_GT] = ACTIONS(1183), + [anon_sym_PLUS] = ACTIONS(1185), + [anon_sym_DASH] = ACTIONS(1185), + [anon_sym_SLASH] = ACTIONS(1159), + [anon_sym_PERCENT] = ACTIONS(1159), + [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_PLUS_PLUS] = ACTIONS(1121), + [anon_sym_DOT] = ACTIONS(1123), + [anon_sym_DASH_GT] = ACTIONS(1123), [sym_comment] = ACTIONS(39), }, [1092] = { - [anon_sym_COMMA] = ACTIONS(3277), - [anon_sym_RPAREN] = ACTIONS(3277), - [anon_sym_SEMI] = ACTIONS(3277), - [anon_sym_RBRACE] = ACTIONS(3277), - [anon_sym_LPAREN2] = ACTIONS(3277), - [anon_sym_STAR] = ACTIONS(3279), - [anon_sym_LBRACK] = ACTIONS(3277), - [anon_sym_RBRACK] = ACTIONS(3277), - [anon_sym_EQ] = ACTIONS(3279), - [anon_sym_COLON] = ACTIONS(3277), - [anon_sym_QMARK] = ACTIONS(3277), - [anon_sym_STAR_EQ] = ACTIONS(3277), - [anon_sym_SLASH_EQ] = ACTIONS(3277), - [anon_sym_PERCENT_EQ] = ACTIONS(3277), - [anon_sym_PLUS_EQ] = ACTIONS(3277), - [anon_sym_DASH_EQ] = ACTIONS(3277), - [anon_sym_LT_LT_EQ] = ACTIONS(3277), - [anon_sym_GT_GT_EQ] = ACTIONS(3277), - [anon_sym_AMP_EQ] = ACTIONS(3277), - [anon_sym_CARET_EQ] = ACTIONS(3277), - [anon_sym_PIPE_EQ] = ACTIONS(3277), - [anon_sym_AMP] = ACTIONS(3279), - [anon_sym_PIPE_PIPE] = ACTIONS(3277), - [anon_sym_AMP_AMP] = ACTIONS(3277), - [anon_sym_PIPE] = ACTIONS(3279), - [anon_sym_CARET] = ACTIONS(3279), - [anon_sym_EQ_EQ] = ACTIONS(3277), - [anon_sym_BANG_EQ] = ACTIONS(3277), - [anon_sym_LT] = ACTIONS(3279), - [anon_sym_GT] = ACTIONS(3279), - [anon_sym_LT_EQ] = ACTIONS(3277), - [anon_sym_GT_EQ] = ACTIONS(3277), - [anon_sym_LT_LT] = ACTIONS(3279), - [anon_sym_GT_GT] = ACTIONS(3279), - [anon_sym_PLUS] = ACTIONS(3279), - [anon_sym_DASH] = ACTIONS(3279), - [anon_sym_SLASH] = ACTIONS(3279), - [anon_sym_PERCENT] = ACTIONS(3279), - [anon_sym_DASH_DASH] = ACTIONS(3277), - [anon_sym_PLUS_PLUS] = ACTIONS(3277), - [anon_sym_DOT] = ACTIONS(3277), - [anon_sym_DASH_GT] = ACTIONS(3277), + [anon_sym_COMMA] = ACTIONS(3266), + [anon_sym_RPAREN] = ACTIONS(3266), + [anon_sym_SEMI] = ACTIONS(3266), + [anon_sym_RBRACE] = ACTIONS(3266), + [anon_sym_LPAREN2] = ACTIONS(3266), + [anon_sym_STAR] = ACTIONS(3268), + [anon_sym_LBRACK] = ACTIONS(3266), + [anon_sym_RBRACK] = ACTIONS(3266), + [anon_sym_EQ] = ACTIONS(3268), + [anon_sym_COLON] = ACTIONS(3266), + [anon_sym_QMARK] = ACTIONS(3266), + [anon_sym_STAR_EQ] = ACTIONS(3266), + [anon_sym_SLASH_EQ] = ACTIONS(3266), + [anon_sym_PERCENT_EQ] = ACTIONS(3266), + [anon_sym_PLUS_EQ] = ACTIONS(3266), + [anon_sym_DASH_EQ] = ACTIONS(3266), + [anon_sym_LT_LT_EQ] = ACTIONS(3266), + [anon_sym_GT_GT_EQ] = ACTIONS(3266), + [anon_sym_AMP_EQ] = ACTIONS(3266), + [anon_sym_CARET_EQ] = ACTIONS(3266), + [anon_sym_PIPE_EQ] = ACTIONS(3266), + [anon_sym_AMP] = ACTIONS(3268), + [anon_sym_PIPE_PIPE] = ACTIONS(3266), + [anon_sym_AMP_AMP] = ACTIONS(3266), + [anon_sym_PIPE] = ACTIONS(3268), + [anon_sym_CARET] = ACTIONS(3268), + [anon_sym_EQ_EQ] = ACTIONS(3266), + [anon_sym_BANG_EQ] = ACTIONS(3266), + [anon_sym_LT] = ACTIONS(3268), + [anon_sym_GT] = ACTIONS(3268), + [anon_sym_LT_EQ] = ACTIONS(3266), + [anon_sym_GT_EQ] = ACTIONS(3266), + [anon_sym_LT_LT] = ACTIONS(3268), + [anon_sym_GT_GT] = ACTIONS(3268), + [anon_sym_PLUS] = ACTIONS(3268), + [anon_sym_DASH] = ACTIONS(3268), + [anon_sym_SLASH] = ACTIONS(3268), + [anon_sym_PERCENT] = ACTIONS(3268), + [anon_sym_DASH_DASH] = ACTIONS(3266), + [anon_sym_PLUS_PLUS] = ACTIONS(3266), + [anon_sym_DOT] = ACTIONS(3266), + [anon_sym_DASH_GT] = ACTIONS(3266), [sym_comment] = ACTIONS(39), }, [1093] = { @@ -43334,729 +43353,729 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_concatenated_string] = STATE(977), [sym_string_literal] = STATE(346), [aux_sym_initializer_pair_repeat1] = STATE(506), - [anon_sym_LBRACE] = ACTIONS(632), - [anon_sym_LPAREN2] = ACTIONS(807), - [anon_sym_STAR] = ACTIONS(809), - [anon_sym_LBRACK] = ACTIONS(1202), - [anon_sym_AMP] = ACTIONS(809), - [anon_sym_BANG] = ACTIONS(811), - [anon_sym_TILDE] = ACTIONS(813), - [anon_sym_PLUS] = ACTIONS(815), - [anon_sym_DASH] = ACTIONS(815), - [anon_sym_DASH_DASH] = ACTIONS(817), - [anon_sym_PLUS_PLUS] = ACTIONS(817), - [anon_sym_sizeof] = ACTIONS(819), - [anon_sym_DOT] = ACTIONS(1204), - [sym_number_literal] = ACTIONS(2605), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2607), - [sym_false] = ACTIONS(2607), - [sym_null] = ACTIONS(2607), - [sym_identifier] = ACTIONS(2607), + [anon_sym_LBRACE] = ACTIONS(628), + [anon_sym_LPAREN2] = ACTIONS(798), + [anon_sym_STAR] = ACTIONS(800), + [anon_sym_LBRACK] = ACTIONS(1195), + [anon_sym_AMP] = ACTIONS(800), + [anon_sym_BANG] = ACTIONS(802), + [anon_sym_TILDE] = ACTIONS(804), + [anon_sym_PLUS] = ACTIONS(806), + [anon_sym_DASH] = ACTIONS(806), + [anon_sym_DASH_DASH] = ACTIONS(808), + [anon_sym_PLUS_PLUS] = ACTIONS(808), + [anon_sym_sizeof] = ACTIONS(810), + [anon_sym_DOT] = ACTIONS(1197), + [sym_number_literal] = ACTIONS(2594), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(2596), + [sym_false] = ACTIONS(2596), + [sym_null] = ACTIONS(2596), + [sym_identifier] = ACTIONS(2596), [sym_comment] = ACTIONS(39), }, [1094] = { [sym_argument_list] = STATE(465), - [anon_sym_COMMA] = ACTIONS(3275), - [anon_sym_RBRACE] = ACTIONS(3275), - [anon_sym_LPAREN2] = ACTIONS(1096), - [anon_sym_STAR] = ACTIONS(1351), - [anon_sym_LBRACK] = ACTIONS(1100), - [anon_sym_EQ] = ACTIONS(1353), - [anon_sym_QMARK] = ACTIONS(1355), - [anon_sym_STAR_EQ] = ACTIONS(1357), - [anon_sym_SLASH_EQ] = ACTIONS(1357), - [anon_sym_PERCENT_EQ] = ACTIONS(1357), - [anon_sym_PLUS_EQ] = ACTIONS(1357), - [anon_sym_DASH_EQ] = ACTIONS(1357), - [anon_sym_LT_LT_EQ] = ACTIONS(1357), - [anon_sym_GT_GT_EQ] = ACTIONS(1357), - [anon_sym_AMP_EQ] = ACTIONS(1357), - [anon_sym_CARET_EQ] = ACTIONS(1357), - [anon_sym_PIPE_EQ] = ACTIONS(1357), - [anon_sym_AMP] = ACTIONS(1359), - [anon_sym_PIPE_PIPE] = ACTIONS(1361), - [anon_sym_AMP_AMP] = ACTIONS(1363), - [anon_sym_PIPE] = ACTIONS(1365), - [anon_sym_CARET] = ACTIONS(1367), - [anon_sym_EQ_EQ] = ACTIONS(1369), - [anon_sym_BANG_EQ] = ACTIONS(1369), - [anon_sym_LT] = ACTIONS(1371), - [anon_sym_GT] = ACTIONS(1371), - [anon_sym_LT_EQ] = ACTIONS(1373), - [anon_sym_GT_EQ] = ACTIONS(1373), - [anon_sym_LT_LT] = ACTIONS(1375), - [anon_sym_GT_GT] = ACTIONS(1375), - [anon_sym_PLUS] = ACTIONS(1377), - [anon_sym_DASH] = ACTIONS(1377), - [anon_sym_SLASH] = ACTIONS(1351), - [anon_sym_PERCENT] = ACTIONS(1351), - [anon_sym_DASH_DASH] = ACTIONS(1128), - [anon_sym_PLUS_PLUS] = ACTIONS(1128), - [anon_sym_DOT] = ACTIONS(1130), - [anon_sym_DASH_GT] = ACTIONS(1130), + [anon_sym_COMMA] = ACTIONS(3264), + [anon_sym_RBRACE] = ACTIONS(3264), + [anon_sym_LPAREN2] = ACTIONS(1089), + [anon_sym_STAR] = ACTIONS(1342), + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(1344), + [anon_sym_QMARK] = ACTIONS(1346), + [anon_sym_STAR_EQ] = ACTIONS(1348), + [anon_sym_SLASH_EQ] = ACTIONS(1348), + [anon_sym_PERCENT_EQ] = ACTIONS(1348), + [anon_sym_PLUS_EQ] = ACTIONS(1348), + [anon_sym_DASH_EQ] = ACTIONS(1348), + [anon_sym_LT_LT_EQ] = ACTIONS(1348), + [anon_sym_GT_GT_EQ] = ACTIONS(1348), + [anon_sym_AMP_EQ] = ACTIONS(1348), + [anon_sym_CARET_EQ] = ACTIONS(1348), + [anon_sym_PIPE_EQ] = ACTIONS(1348), + [anon_sym_AMP] = ACTIONS(1350), + [anon_sym_PIPE_PIPE] = ACTIONS(1352), + [anon_sym_AMP_AMP] = ACTIONS(1354), + [anon_sym_PIPE] = ACTIONS(1356), + [anon_sym_CARET] = ACTIONS(1358), + [anon_sym_EQ_EQ] = ACTIONS(1360), + [anon_sym_BANG_EQ] = ACTIONS(1360), + [anon_sym_LT] = ACTIONS(1362), + [anon_sym_GT] = ACTIONS(1362), + [anon_sym_LT_EQ] = ACTIONS(1364), + [anon_sym_GT_EQ] = ACTIONS(1364), + [anon_sym_LT_LT] = ACTIONS(1366), + [anon_sym_GT_GT] = ACTIONS(1366), + [anon_sym_PLUS] = ACTIONS(1368), + [anon_sym_DASH] = ACTIONS(1368), + [anon_sym_SLASH] = ACTIONS(1342), + [anon_sym_PERCENT] = ACTIONS(1342), + [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_PLUS_PLUS] = ACTIONS(1121), + [anon_sym_DOT] = ACTIONS(1123), + [anon_sym_DASH_GT] = ACTIONS(1123), [sym_comment] = ACTIONS(39), }, [1095] = { [sym_argument_list] = STATE(465), - [anon_sym_SEMI] = ACTIONS(3275), - [anon_sym_LPAREN2] = ACTIONS(1096), - [anon_sym_STAR] = ACTIONS(1436), - [anon_sym_LBRACK] = ACTIONS(1100), - [anon_sym_EQ] = ACTIONS(1438), - [anon_sym_QMARK] = ACTIONS(1440), - [anon_sym_STAR_EQ] = ACTIONS(1442), - [anon_sym_SLASH_EQ] = ACTIONS(1442), - [anon_sym_PERCENT_EQ] = ACTIONS(1442), - [anon_sym_PLUS_EQ] = ACTIONS(1442), - [anon_sym_DASH_EQ] = ACTIONS(1442), - [anon_sym_LT_LT_EQ] = ACTIONS(1442), - [anon_sym_GT_GT_EQ] = ACTIONS(1442), - [anon_sym_AMP_EQ] = ACTIONS(1442), - [anon_sym_CARET_EQ] = ACTIONS(1442), - [anon_sym_PIPE_EQ] = ACTIONS(1442), - [anon_sym_AMP] = ACTIONS(1444), - [anon_sym_PIPE_PIPE] = ACTIONS(1446), - [anon_sym_AMP_AMP] = ACTIONS(1448), - [anon_sym_PIPE] = ACTIONS(1450), - [anon_sym_CARET] = ACTIONS(1452), - [anon_sym_EQ_EQ] = ACTIONS(1454), - [anon_sym_BANG_EQ] = ACTIONS(1454), - [anon_sym_LT] = ACTIONS(1456), - [anon_sym_GT] = ACTIONS(1456), - [anon_sym_LT_EQ] = ACTIONS(1458), - [anon_sym_GT_EQ] = ACTIONS(1458), - [anon_sym_LT_LT] = ACTIONS(1460), - [anon_sym_GT_GT] = ACTIONS(1460), - [anon_sym_PLUS] = ACTIONS(1462), - [anon_sym_DASH] = ACTIONS(1462), - [anon_sym_SLASH] = ACTIONS(1436), - [anon_sym_PERCENT] = ACTIONS(1436), - [anon_sym_DASH_DASH] = ACTIONS(1128), - [anon_sym_PLUS_PLUS] = ACTIONS(1128), - [anon_sym_DOT] = ACTIONS(1130), - [anon_sym_DASH_GT] = ACTIONS(1130), + [anon_sym_SEMI] = ACTIONS(3264), + [anon_sym_LPAREN2] = ACTIONS(1089), + [anon_sym_STAR] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(1429), + [anon_sym_QMARK] = ACTIONS(1431), + [anon_sym_STAR_EQ] = ACTIONS(1433), + [anon_sym_SLASH_EQ] = ACTIONS(1433), + [anon_sym_PERCENT_EQ] = ACTIONS(1433), + [anon_sym_PLUS_EQ] = ACTIONS(1433), + [anon_sym_DASH_EQ] = ACTIONS(1433), + [anon_sym_LT_LT_EQ] = ACTIONS(1433), + [anon_sym_GT_GT_EQ] = ACTIONS(1433), + [anon_sym_AMP_EQ] = ACTIONS(1433), + [anon_sym_CARET_EQ] = ACTIONS(1433), + [anon_sym_PIPE_EQ] = ACTIONS(1433), + [anon_sym_AMP] = ACTIONS(1435), + [anon_sym_PIPE_PIPE] = ACTIONS(1437), + [anon_sym_AMP_AMP] = ACTIONS(1439), + [anon_sym_PIPE] = ACTIONS(1441), + [anon_sym_CARET] = ACTIONS(1443), + [anon_sym_EQ_EQ] = ACTIONS(1445), + [anon_sym_BANG_EQ] = ACTIONS(1445), + [anon_sym_LT] = ACTIONS(1447), + [anon_sym_GT] = ACTIONS(1447), + [anon_sym_LT_EQ] = ACTIONS(1449), + [anon_sym_GT_EQ] = ACTIONS(1449), + [anon_sym_LT_LT] = ACTIONS(1451), + [anon_sym_GT_GT] = ACTIONS(1451), + [anon_sym_PLUS] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1453), + [anon_sym_SLASH] = ACTIONS(1427), + [anon_sym_PERCENT] = ACTIONS(1427), + [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_PLUS_PLUS] = ACTIONS(1121), + [anon_sym_DOT] = ACTIONS(1123), + [anon_sym_DASH_GT] = ACTIONS(1123), [sym_comment] = ACTIONS(39), }, [1096] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2765), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2765), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2765), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2765), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2765), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2765), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2765), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2765), - [sym_preproc_directive] = ACTIONS(2765), - [anon_sym_SEMI] = ACTIONS(2767), - [anon_sym_typedef] = ACTIONS(2765), - [anon_sym_extern] = ACTIONS(2765), - [anon_sym_LBRACE] = ACTIONS(2767), - [anon_sym_LPAREN2] = ACTIONS(2767), - [anon_sym_STAR] = ACTIONS(2767), - [anon_sym_static] = ACTIONS(2765), - [anon_sym_auto] = ACTIONS(2765), - [anon_sym_register] = ACTIONS(2765), - [anon_sym_inline] = ACTIONS(2765), - [anon_sym_const] = ACTIONS(2765), - [anon_sym_restrict] = ACTIONS(2765), - [anon_sym_volatile] = ACTIONS(2765), - [anon_sym__Atomic] = ACTIONS(2765), - [anon_sym_unsigned] = ACTIONS(2765), - [anon_sym_long] = ACTIONS(2765), - [anon_sym_short] = ACTIONS(2765), - [sym_primitive_type] = ACTIONS(2765), - [anon_sym_enum] = ACTIONS(2765), - [anon_sym_struct] = ACTIONS(2765), - [anon_sym_union] = ACTIONS(2765), - [anon_sym_if] = ACTIONS(2765), - [anon_sym_switch] = ACTIONS(2765), - [anon_sym_case] = ACTIONS(2765), - [anon_sym_default] = ACTIONS(2765), - [anon_sym_while] = ACTIONS(2765), - [anon_sym_do] = ACTIONS(2765), - [anon_sym_for] = ACTIONS(2765), - [anon_sym_return] = ACTIONS(2765), - [anon_sym_break] = ACTIONS(2765), - [anon_sym_continue] = ACTIONS(2765), - [anon_sym_goto] = ACTIONS(2765), - [anon_sym_AMP] = ACTIONS(2767), - [anon_sym_BANG] = ACTIONS(2767), - [anon_sym_TILDE] = ACTIONS(2767), - [anon_sym_PLUS] = ACTIONS(2765), - [anon_sym_DASH] = ACTIONS(2765), - [anon_sym_DASH_DASH] = ACTIONS(2767), - [anon_sym_PLUS_PLUS] = ACTIONS(2767), - [anon_sym_sizeof] = ACTIONS(2765), - [sym_number_literal] = ACTIONS(2767), - [anon_sym_SQUOTE] = ACTIONS(2767), - [anon_sym_DQUOTE] = ACTIONS(2767), - [sym_true] = ACTIONS(2765), - [sym_false] = ACTIONS(2765), - [sym_null] = ACTIONS(2765), - [sym_identifier] = ACTIONS(2765), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2754), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2754), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2754), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2754), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2754), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2754), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2754), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2754), + [sym_preproc_directive] = ACTIONS(2754), + [anon_sym_SEMI] = ACTIONS(2756), + [anon_sym_typedef] = ACTIONS(2754), + [anon_sym_extern] = ACTIONS(2754), + [anon_sym_LBRACE] = ACTIONS(2756), + [anon_sym_LPAREN2] = ACTIONS(2756), + [anon_sym_STAR] = ACTIONS(2756), + [anon_sym_static] = ACTIONS(2754), + [anon_sym_auto] = ACTIONS(2754), + [anon_sym_register] = ACTIONS(2754), + [anon_sym_inline] = ACTIONS(2754), + [anon_sym_const] = ACTIONS(2754), + [anon_sym_restrict] = ACTIONS(2754), + [anon_sym_volatile] = ACTIONS(2754), + [anon_sym__Atomic] = ACTIONS(2754), + [anon_sym_unsigned] = ACTIONS(2754), + [anon_sym_long] = ACTIONS(2754), + [anon_sym_short] = ACTIONS(2754), + [sym_primitive_type] = ACTIONS(2754), + [anon_sym_enum] = ACTIONS(2754), + [anon_sym_struct] = ACTIONS(2754), + [anon_sym_union] = ACTIONS(2754), + [anon_sym_if] = ACTIONS(2754), + [anon_sym_switch] = ACTIONS(2754), + [anon_sym_case] = ACTIONS(2754), + [anon_sym_default] = ACTIONS(2754), + [anon_sym_while] = ACTIONS(2754), + [anon_sym_do] = ACTIONS(2754), + [anon_sym_for] = ACTIONS(2754), + [anon_sym_return] = ACTIONS(2754), + [anon_sym_break] = ACTIONS(2754), + [anon_sym_continue] = ACTIONS(2754), + [anon_sym_goto] = ACTIONS(2754), + [anon_sym_AMP] = ACTIONS(2756), + [anon_sym_BANG] = ACTIONS(2756), + [anon_sym_TILDE] = ACTIONS(2756), + [anon_sym_PLUS] = ACTIONS(2754), + [anon_sym_DASH] = ACTIONS(2754), + [anon_sym_DASH_DASH] = ACTIONS(2756), + [anon_sym_PLUS_PLUS] = ACTIONS(2756), + [anon_sym_sizeof] = ACTIONS(2754), + [sym_number_literal] = ACTIONS(2756), + [anon_sym_SQUOTE] = ACTIONS(2756), + [anon_sym_DQUOTE] = ACTIONS(2756), + [sym_true] = ACTIONS(2754), + [sym_false] = ACTIONS(2754), + [sym_null] = ACTIONS(2754), + [sym_identifier] = ACTIONS(2754), [sym_comment] = ACTIONS(39), }, [1097] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2769), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2769), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2769), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2769), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2769), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2769), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2769), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2769), - [sym_preproc_directive] = ACTIONS(2769), - [anon_sym_SEMI] = ACTIONS(2771), - [anon_sym_typedef] = ACTIONS(2769), - [anon_sym_extern] = ACTIONS(2769), - [anon_sym_LBRACE] = ACTIONS(2771), - [anon_sym_LPAREN2] = ACTIONS(2771), - [anon_sym_STAR] = ACTIONS(2771), - [anon_sym_static] = ACTIONS(2769), - [anon_sym_auto] = ACTIONS(2769), - [anon_sym_register] = ACTIONS(2769), - [anon_sym_inline] = ACTIONS(2769), - [anon_sym_const] = ACTIONS(2769), - [anon_sym_restrict] = ACTIONS(2769), - [anon_sym_volatile] = ACTIONS(2769), - [anon_sym__Atomic] = ACTIONS(2769), - [anon_sym_unsigned] = ACTIONS(2769), - [anon_sym_long] = ACTIONS(2769), - [anon_sym_short] = ACTIONS(2769), - [sym_primitive_type] = ACTIONS(2769), - [anon_sym_enum] = ACTIONS(2769), - [anon_sym_struct] = ACTIONS(2769), - [anon_sym_union] = ACTIONS(2769), - [anon_sym_if] = ACTIONS(2769), - [anon_sym_switch] = ACTIONS(2769), - [anon_sym_case] = ACTIONS(2769), - [anon_sym_default] = ACTIONS(2769), - [anon_sym_while] = ACTIONS(2769), - [anon_sym_do] = ACTIONS(2769), - [anon_sym_for] = ACTIONS(2769), - [anon_sym_return] = ACTIONS(2769), - [anon_sym_break] = ACTIONS(2769), - [anon_sym_continue] = ACTIONS(2769), - [anon_sym_goto] = ACTIONS(2769), - [anon_sym_AMP] = ACTIONS(2771), - [anon_sym_BANG] = ACTIONS(2771), - [anon_sym_TILDE] = ACTIONS(2771), - [anon_sym_PLUS] = ACTIONS(2769), - [anon_sym_DASH] = ACTIONS(2769), - [anon_sym_DASH_DASH] = ACTIONS(2771), - [anon_sym_PLUS_PLUS] = ACTIONS(2771), - [anon_sym_sizeof] = ACTIONS(2769), - [sym_number_literal] = ACTIONS(2771), - [anon_sym_SQUOTE] = ACTIONS(2771), - [anon_sym_DQUOTE] = ACTIONS(2771), - [sym_true] = ACTIONS(2769), - [sym_false] = ACTIONS(2769), - [sym_null] = ACTIONS(2769), - [sym_identifier] = ACTIONS(2769), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2758), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2758), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2758), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2758), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2758), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2758), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2758), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2758), + [sym_preproc_directive] = ACTIONS(2758), + [anon_sym_SEMI] = ACTIONS(2760), + [anon_sym_typedef] = ACTIONS(2758), + [anon_sym_extern] = ACTIONS(2758), + [anon_sym_LBRACE] = ACTIONS(2760), + [anon_sym_LPAREN2] = ACTIONS(2760), + [anon_sym_STAR] = ACTIONS(2760), + [anon_sym_static] = ACTIONS(2758), + [anon_sym_auto] = ACTIONS(2758), + [anon_sym_register] = ACTIONS(2758), + [anon_sym_inline] = ACTIONS(2758), + [anon_sym_const] = ACTIONS(2758), + [anon_sym_restrict] = ACTIONS(2758), + [anon_sym_volatile] = ACTIONS(2758), + [anon_sym__Atomic] = ACTIONS(2758), + [anon_sym_unsigned] = ACTIONS(2758), + [anon_sym_long] = ACTIONS(2758), + [anon_sym_short] = ACTIONS(2758), + [sym_primitive_type] = ACTIONS(2758), + [anon_sym_enum] = ACTIONS(2758), + [anon_sym_struct] = ACTIONS(2758), + [anon_sym_union] = ACTIONS(2758), + [anon_sym_if] = ACTIONS(2758), + [anon_sym_switch] = ACTIONS(2758), + [anon_sym_case] = ACTIONS(2758), + [anon_sym_default] = ACTIONS(2758), + [anon_sym_while] = ACTIONS(2758), + [anon_sym_do] = ACTIONS(2758), + [anon_sym_for] = ACTIONS(2758), + [anon_sym_return] = ACTIONS(2758), + [anon_sym_break] = ACTIONS(2758), + [anon_sym_continue] = ACTIONS(2758), + [anon_sym_goto] = ACTIONS(2758), + [anon_sym_AMP] = ACTIONS(2760), + [anon_sym_BANG] = ACTIONS(2760), + [anon_sym_TILDE] = ACTIONS(2760), + [anon_sym_PLUS] = ACTIONS(2758), + [anon_sym_DASH] = ACTIONS(2758), + [anon_sym_DASH_DASH] = ACTIONS(2760), + [anon_sym_PLUS_PLUS] = ACTIONS(2760), + [anon_sym_sizeof] = ACTIONS(2758), + [sym_number_literal] = ACTIONS(2760), + [anon_sym_SQUOTE] = ACTIONS(2760), + [anon_sym_DQUOTE] = ACTIONS(2760), + [sym_true] = ACTIONS(2758), + [sym_false] = ACTIONS(2758), + [sym_null] = ACTIONS(2758), + [sym_identifier] = ACTIONS(2758), [sym_comment] = ACTIONS(39), }, [1098] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2773), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2773), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2773), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2773), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2773), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2773), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2773), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2773), - [sym_preproc_directive] = ACTIONS(2773), - [anon_sym_SEMI] = ACTIONS(2775), - [anon_sym_typedef] = ACTIONS(2773), - [anon_sym_extern] = ACTIONS(2773), - [anon_sym_LBRACE] = ACTIONS(2775), - [anon_sym_LPAREN2] = ACTIONS(2775), - [anon_sym_STAR] = ACTIONS(2775), - [anon_sym_static] = ACTIONS(2773), - [anon_sym_auto] = ACTIONS(2773), - [anon_sym_register] = ACTIONS(2773), - [anon_sym_inline] = ACTIONS(2773), - [anon_sym_const] = ACTIONS(2773), - [anon_sym_restrict] = ACTIONS(2773), - [anon_sym_volatile] = ACTIONS(2773), - [anon_sym__Atomic] = ACTIONS(2773), - [anon_sym_unsigned] = ACTIONS(2773), - [anon_sym_long] = ACTIONS(2773), - [anon_sym_short] = ACTIONS(2773), - [sym_primitive_type] = ACTIONS(2773), - [anon_sym_enum] = ACTIONS(2773), - [anon_sym_struct] = ACTIONS(2773), - [anon_sym_union] = ACTIONS(2773), - [anon_sym_if] = ACTIONS(2773), - [anon_sym_switch] = ACTIONS(2773), - [anon_sym_case] = ACTIONS(2773), - [anon_sym_default] = ACTIONS(2773), - [anon_sym_while] = ACTIONS(2773), - [anon_sym_do] = ACTIONS(2773), - [anon_sym_for] = ACTIONS(2773), - [anon_sym_return] = ACTIONS(2773), - [anon_sym_break] = ACTIONS(2773), - [anon_sym_continue] = ACTIONS(2773), - [anon_sym_goto] = ACTIONS(2773), - [anon_sym_AMP] = ACTIONS(2775), - [anon_sym_BANG] = ACTIONS(2775), - [anon_sym_TILDE] = ACTIONS(2775), - [anon_sym_PLUS] = ACTIONS(2773), - [anon_sym_DASH] = ACTIONS(2773), - [anon_sym_DASH_DASH] = ACTIONS(2775), - [anon_sym_PLUS_PLUS] = ACTIONS(2775), - [anon_sym_sizeof] = ACTIONS(2773), - [sym_number_literal] = ACTIONS(2775), - [anon_sym_SQUOTE] = ACTIONS(2775), - [anon_sym_DQUOTE] = ACTIONS(2775), - [sym_true] = ACTIONS(2773), - [sym_false] = ACTIONS(2773), - [sym_null] = ACTIONS(2773), - [sym_identifier] = ACTIONS(2773), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2762), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2762), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2762), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2762), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2762), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2762), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2762), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2762), + [sym_preproc_directive] = ACTIONS(2762), + [anon_sym_SEMI] = ACTIONS(2764), + [anon_sym_typedef] = ACTIONS(2762), + [anon_sym_extern] = ACTIONS(2762), + [anon_sym_LBRACE] = ACTIONS(2764), + [anon_sym_LPAREN2] = ACTIONS(2764), + [anon_sym_STAR] = ACTIONS(2764), + [anon_sym_static] = ACTIONS(2762), + [anon_sym_auto] = ACTIONS(2762), + [anon_sym_register] = ACTIONS(2762), + [anon_sym_inline] = ACTIONS(2762), + [anon_sym_const] = ACTIONS(2762), + [anon_sym_restrict] = ACTIONS(2762), + [anon_sym_volatile] = ACTIONS(2762), + [anon_sym__Atomic] = ACTIONS(2762), + [anon_sym_unsigned] = ACTIONS(2762), + [anon_sym_long] = ACTIONS(2762), + [anon_sym_short] = ACTIONS(2762), + [sym_primitive_type] = ACTIONS(2762), + [anon_sym_enum] = ACTIONS(2762), + [anon_sym_struct] = ACTIONS(2762), + [anon_sym_union] = ACTIONS(2762), + [anon_sym_if] = ACTIONS(2762), + [anon_sym_switch] = ACTIONS(2762), + [anon_sym_case] = ACTIONS(2762), + [anon_sym_default] = ACTIONS(2762), + [anon_sym_while] = ACTIONS(2762), + [anon_sym_do] = ACTIONS(2762), + [anon_sym_for] = ACTIONS(2762), + [anon_sym_return] = ACTIONS(2762), + [anon_sym_break] = ACTIONS(2762), + [anon_sym_continue] = ACTIONS(2762), + [anon_sym_goto] = ACTIONS(2762), + [anon_sym_AMP] = ACTIONS(2764), + [anon_sym_BANG] = ACTIONS(2764), + [anon_sym_TILDE] = ACTIONS(2764), + [anon_sym_PLUS] = ACTIONS(2762), + [anon_sym_DASH] = ACTIONS(2762), + [anon_sym_DASH_DASH] = ACTIONS(2764), + [anon_sym_PLUS_PLUS] = ACTIONS(2764), + [anon_sym_sizeof] = ACTIONS(2762), + [sym_number_literal] = ACTIONS(2764), + [anon_sym_SQUOTE] = ACTIONS(2764), + [anon_sym_DQUOTE] = ACTIONS(2764), + [sym_true] = ACTIONS(2762), + [sym_false] = ACTIONS(2762), + [sym_null] = ACTIONS(2762), + [sym_identifier] = ACTIONS(2762), [sym_comment] = ACTIONS(39), }, [1099] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3281), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3270), [sym_comment] = ACTIONS(39), }, [1100] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3283), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3272), [sym_comment] = ACTIONS(39), }, [1101] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2852), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2852), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2852), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2852), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2852), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2852), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2852), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2852), - [sym_preproc_directive] = ACTIONS(2852), - [anon_sym_SEMI] = ACTIONS(2854), - [anon_sym_typedef] = ACTIONS(2852), - [anon_sym_extern] = ACTIONS(2852), - [anon_sym_LBRACE] = ACTIONS(2854), - [anon_sym_LPAREN2] = ACTIONS(2854), - [anon_sym_STAR] = ACTIONS(2854), - [anon_sym_static] = ACTIONS(2852), - [anon_sym_auto] = ACTIONS(2852), - [anon_sym_register] = ACTIONS(2852), - [anon_sym_inline] = ACTIONS(2852), - [anon_sym_const] = ACTIONS(2852), - [anon_sym_restrict] = ACTIONS(2852), - [anon_sym_volatile] = ACTIONS(2852), - [anon_sym__Atomic] = ACTIONS(2852), - [anon_sym_unsigned] = ACTIONS(2852), - [anon_sym_long] = ACTIONS(2852), - [anon_sym_short] = ACTIONS(2852), - [sym_primitive_type] = ACTIONS(2852), - [anon_sym_enum] = ACTIONS(2852), - [anon_sym_struct] = ACTIONS(2852), - [anon_sym_union] = ACTIONS(2852), - [anon_sym_if] = ACTIONS(2852), - [anon_sym_switch] = ACTIONS(2852), - [anon_sym_case] = ACTIONS(2852), - [anon_sym_default] = ACTIONS(2852), - [anon_sym_while] = ACTIONS(2852), - [anon_sym_do] = ACTIONS(2852), - [anon_sym_for] = ACTIONS(2852), - [anon_sym_return] = ACTIONS(2852), - [anon_sym_break] = ACTIONS(2852), - [anon_sym_continue] = ACTIONS(2852), - [anon_sym_goto] = ACTIONS(2852), - [anon_sym_AMP] = ACTIONS(2854), - [anon_sym_BANG] = ACTIONS(2854), - [anon_sym_TILDE] = ACTIONS(2854), - [anon_sym_PLUS] = ACTIONS(2852), - [anon_sym_DASH] = ACTIONS(2852), - [anon_sym_DASH_DASH] = ACTIONS(2854), - [anon_sym_PLUS_PLUS] = ACTIONS(2854), - [anon_sym_sizeof] = ACTIONS(2852), - [sym_number_literal] = ACTIONS(2854), - [anon_sym_SQUOTE] = ACTIONS(2854), - [anon_sym_DQUOTE] = ACTIONS(2854), - [sym_true] = ACTIONS(2852), - [sym_false] = ACTIONS(2852), - [sym_null] = ACTIONS(2852), - [sym_identifier] = ACTIONS(2852), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2841), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2841), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2841), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2841), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2841), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2841), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2841), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2841), + [sym_preproc_directive] = ACTIONS(2841), + [anon_sym_SEMI] = ACTIONS(2843), + [anon_sym_typedef] = ACTIONS(2841), + [anon_sym_extern] = ACTIONS(2841), + [anon_sym_LBRACE] = ACTIONS(2843), + [anon_sym_LPAREN2] = ACTIONS(2843), + [anon_sym_STAR] = ACTIONS(2843), + [anon_sym_static] = ACTIONS(2841), + [anon_sym_auto] = ACTIONS(2841), + [anon_sym_register] = ACTIONS(2841), + [anon_sym_inline] = ACTIONS(2841), + [anon_sym_const] = ACTIONS(2841), + [anon_sym_restrict] = ACTIONS(2841), + [anon_sym_volatile] = ACTIONS(2841), + [anon_sym__Atomic] = ACTIONS(2841), + [anon_sym_unsigned] = ACTIONS(2841), + [anon_sym_long] = ACTIONS(2841), + [anon_sym_short] = ACTIONS(2841), + [sym_primitive_type] = ACTIONS(2841), + [anon_sym_enum] = ACTIONS(2841), + [anon_sym_struct] = ACTIONS(2841), + [anon_sym_union] = ACTIONS(2841), + [anon_sym_if] = ACTIONS(2841), + [anon_sym_switch] = ACTIONS(2841), + [anon_sym_case] = ACTIONS(2841), + [anon_sym_default] = ACTIONS(2841), + [anon_sym_while] = ACTIONS(2841), + [anon_sym_do] = ACTIONS(2841), + [anon_sym_for] = ACTIONS(2841), + [anon_sym_return] = ACTIONS(2841), + [anon_sym_break] = ACTIONS(2841), + [anon_sym_continue] = ACTIONS(2841), + [anon_sym_goto] = ACTIONS(2841), + [anon_sym_AMP] = ACTIONS(2843), + [anon_sym_BANG] = ACTIONS(2843), + [anon_sym_TILDE] = ACTIONS(2843), + [anon_sym_PLUS] = ACTIONS(2841), + [anon_sym_DASH] = ACTIONS(2841), + [anon_sym_DASH_DASH] = ACTIONS(2843), + [anon_sym_PLUS_PLUS] = ACTIONS(2843), + [anon_sym_sizeof] = ACTIONS(2841), + [sym_number_literal] = ACTIONS(2843), + [anon_sym_SQUOTE] = ACTIONS(2843), + [anon_sym_DQUOTE] = ACTIONS(2843), + [sym_true] = ACTIONS(2841), + [sym_false] = ACTIONS(2841), + [sym_null] = ACTIONS(2841), + [sym_identifier] = ACTIONS(2841), [sym_comment] = ACTIONS(39), }, [1102] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2856), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2856), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2856), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2856), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2856), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2856), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2856), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2856), - [sym_preproc_directive] = ACTIONS(2856), - [anon_sym_SEMI] = ACTIONS(2858), - [anon_sym_typedef] = ACTIONS(2856), - [anon_sym_extern] = ACTIONS(2856), - [anon_sym_LBRACE] = ACTIONS(2858), - [anon_sym_LPAREN2] = ACTIONS(2858), - [anon_sym_STAR] = ACTIONS(2858), - [anon_sym_static] = ACTIONS(2856), - [anon_sym_auto] = ACTIONS(2856), - [anon_sym_register] = ACTIONS(2856), - [anon_sym_inline] = ACTIONS(2856), - [anon_sym_const] = ACTIONS(2856), - [anon_sym_restrict] = ACTIONS(2856), - [anon_sym_volatile] = ACTIONS(2856), - [anon_sym__Atomic] = ACTIONS(2856), - [anon_sym_unsigned] = ACTIONS(2856), - [anon_sym_long] = ACTIONS(2856), - [anon_sym_short] = ACTIONS(2856), - [sym_primitive_type] = ACTIONS(2856), - [anon_sym_enum] = ACTIONS(2856), - [anon_sym_struct] = ACTIONS(2856), - [anon_sym_union] = ACTIONS(2856), - [anon_sym_if] = ACTIONS(2856), - [anon_sym_switch] = ACTIONS(2856), - [anon_sym_case] = ACTIONS(2856), - [anon_sym_default] = ACTIONS(2856), - [anon_sym_while] = ACTIONS(2856), - [anon_sym_do] = ACTIONS(2856), - [anon_sym_for] = ACTIONS(2856), - [anon_sym_return] = ACTIONS(2856), - [anon_sym_break] = ACTIONS(2856), - [anon_sym_continue] = ACTIONS(2856), - [anon_sym_goto] = ACTIONS(2856), - [anon_sym_AMP] = ACTIONS(2858), - [anon_sym_BANG] = ACTIONS(2858), - [anon_sym_TILDE] = ACTIONS(2858), - [anon_sym_PLUS] = ACTIONS(2856), - [anon_sym_DASH] = ACTIONS(2856), - [anon_sym_DASH_DASH] = ACTIONS(2858), - [anon_sym_PLUS_PLUS] = ACTIONS(2858), - [anon_sym_sizeof] = ACTIONS(2856), - [sym_number_literal] = ACTIONS(2858), - [anon_sym_SQUOTE] = ACTIONS(2858), - [anon_sym_DQUOTE] = ACTIONS(2858), - [sym_true] = ACTIONS(2856), - [sym_false] = ACTIONS(2856), - [sym_null] = ACTIONS(2856), - [sym_identifier] = ACTIONS(2856), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2845), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2845), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2845), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2845), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2845), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2845), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2845), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2845), + [sym_preproc_directive] = ACTIONS(2845), + [anon_sym_SEMI] = ACTIONS(2847), + [anon_sym_typedef] = ACTIONS(2845), + [anon_sym_extern] = ACTIONS(2845), + [anon_sym_LBRACE] = ACTIONS(2847), + [anon_sym_LPAREN2] = ACTIONS(2847), + [anon_sym_STAR] = ACTIONS(2847), + [anon_sym_static] = ACTIONS(2845), + [anon_sym_auto] = ACTIONS(2845), + [anon_sym_register] = ACTIONS(2845), + [anon_sym_inline] = ACTIONS(2845), + [anon_sym_const] = ACTIONS(2845), + [anon_sym_restrict] = ACTIONS(2845), + [anon_sym_volatile] = ACTIONS(2845), + [anon_sym__Atomic] = ACTIONS(2845), + [anon_sym_unsigned] = ACTIONS(2845), + [anon_sym_long] = ACTIONS(2845), + [anon_sym_short] = ACTIONS(2845), + [sym_primitive_type] = ACTIONS(2845), + [anon_sym_enum] = ACTIONS(2845), + [anon_sym_struct] = ACTIONS(2845), + [anon_sym_union] = ACTIONS(2845), + [anon_sym_if] = ACTIONS(2845), + [anon_sym_switch] = ACTIONS(2845), + [anon_sym_case] = ACTIONS(2845), + [anon_sym_default] = ACTIONS(2845), + [anon_sym_while] = ACTIONS(2845), + [anon_sym_do] = ACTIONS(2845), + [anon_sym_for] = ACTIONS(2845), + [anon_sym_return] = ACTIONS(2845), + [anon_sym_break] = ACTIONS(2845), + [anon_sym_continue] = ACTIONS(2845), + [anon_sym_goto] = ACTIONS(2845), + [anon_sym_AMP] = ACTIONS(2847), + [anon_sym_BANG] = ACTIONS(2847), + [anon_sym_TILDE] = ACTIONS(2847), + [anon_sym_PLUS] = ACTIONS(2845), + [anon_sym_DASH] = ACTIONS(2845), + [anon_sym_DASH_DASH] = ACTIONS(2847), + [anon_sym_PLUS_PLUS] = ACTIONS(2847), + [anon_sym_sizeof] = ACTIONS(2845), + [sym_number_literal] = ACTIONS(2847), + [anon_sym_SQUOTE] = ACTIONS(2847), + [anon_sym_DQUOTE] = ACTIONS(2847), + [sym_true] = ACTIONS(2845), + [sym_false] = ACTIONS(2845), + [sym_null] = ACTIONS(2845), + [sym_identifier] = ACTIONS(2845), [sym_comment] = ACTIONS(39), }, [1103] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2860), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2860), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2860), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2860), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2860), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2860), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2860), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2860), - [sym_preproc_directive] = ACTIONS(2860), - [anon_sym_SEMI] = ACTIONS(2862), - [anon_sym_typedef] = ACTIONS(2860), - [anon_sym_extern] = ACTIONS(2860), - [anon_sym_LBRACE] = ACTIONS(2862), - [anon_sym_LPAREN2] = ACTIONS(2862), - [anon_sym_STAR] = ACTIONS(2862), - [anon_sym_static] = ACTIONS(2860), - [anon_sym_auto] = ACTIONS(2860), - [anon_sym_register] = ACTIONS(2860), - [anon_sym_inline] = ACTIONS(2860), - [anon_sym_const] = ACTIONS(2860), - [anon_sym_restrict] = ACTIONS(2860), - [anon_sym_volatile] = ACTIONS(2860), - [anon_sym__Atomic] = ACTIONS(2860), - [anon_sym_unsigned] = ACTIONS(2860), - [anon_sym_long] = ACTIONS(2860), - [anon_sym_short] = ACTIONS(2860), - [sym_primitive_type] = ACTIONS(2860), - [anon_sym_enum] = ACTIONS(2860), - [anon_sym_struct] = ACTIONS(2860), - [anon_sym_union] = ACTIONS(2860), - [anon_sym_if] = ACTIONS(2860), - [anon_sym_switch] = ACTIONS(2860), - [anon_sym_case] = ACTIONS(2860), - [anon_sym_default] = ACTIONS(2860), - [anon_sym_while] = ACTIONS(2860), - [anon_sym_do] = ACTIONS(2860), - [anon_sym_for] = ACTIONS(2860), - [anon_sym_return] = ACTIONS(2860), - [anon_sym_break] = ACTIONS(2860), - [anon_sym_continue] = ACTIONS(2860), - [anon_sym_goto] = ACTIONS(2860), - [anon_sym_AMP] = ACTIONS(2862), - [anon_sym_BANG] = ACTIONS(2862), - [anon_sym_TILDE] = ACTIONS(2862), - [anon_sym_PLUS] = ACTIONS(2860), - [anon_sym_DASH] = ACTIONS(2860), - [anon_sym_DASH_DASH] = ACTIONS(2862), - [anon_sym_PLUS_PLUS] = ACTIONS(2862), - [anon_sym_sizeof] = ACTIONS(2860), - [sym_number_literal] = ACTIONS(2862), - [anon_sym_SQUOTE] = ACTIONS(2862), - [anon_sym_DQUOTE] = ACTIONS(2862), - [sym_true] = ACTIONS(2860), - [sym_false] = ACTIONS(2860), - [sym_null] = ACTIONS(2860), - [sym_identifier] = ACTIONS(2860), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2849), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2849), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2849), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2849), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2849), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2849), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2849), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2849), + [sym_preproc_directive] = ACTIONS(2849), + [anon_sym_SEMI] = ACTIONS(2851), + [anon_sym_typedef] = ACTIONS(2849), + [anon_sym_extern] = ACTIONS(2849), + [anon_sym_LBRACE] = ACTIONS(2851), + [anon_sym_LPAREN2] = ACTIONS(2851), + [anon_sym_STAR] = ACTIONS(2851), + [anon_sym_static] = ACTIONS(2849), + [anon_sym_auto] = ACTIONS(2849), + [anon_sym_register] = ACTIONS(2849), + [anon_sym_inline] = ACTIONS(2849), + [anon_sym_const] = ACTIONS(2849), + [anon_sym_restrict] = ACTIONS(2849), + [anon_sym_volatile] = ACTIONS(2849), + [anon_sym__Atomic] = ACTIONS(2849), + [anon_sym_unsigned] = ACTIONS(2849), + [anon_sym_long] = ACTIONS(2849), + [anon_sym_short] = ACTIONS(2849), + [sym_primitive_type] = ACTIONS(2849), + [anon_sym_enum] = ACTIONS(2849), + [anon_sym_struct] = ACTIONS(2849), + [anon_sym_union] = ACTIONS(2849), + [anon_sym_if] = ACTIONS(2849), + [anon_sym_switch] = ACTIONS(2849), + [anon_sym_case] = ACTIONS(2849), + [anon_sym_default] = ACTIONS(2849), + [anon_sym_while] = ACTIONS(2849), + [anon_sym_do] = ACTIONS(2849), + [anon_sym_for] = ACTIONS(2849), + [anon_sym_return] = ACTIONS(2849), + [anon_sym_break] = ACTIONS(2849), + [anon_sym_continue] = ACTIONS(2849), + [anon_sym_goto] = ACTIONS(2849), + [anon_sym_AMP] = ACTIONS(2851), + [anon_sym_BANG] = ACTIONS(2851), + [anon_sym_TILDE] = ACTIONS(2851), + [anon_sym_PLUS] = ACTIONS(2849), + [anon_sym_DASH] = ACTIONS(2849), + [anon_sym_DASH_DASH] = ACTIONS(2851), + [anon_sym_PLUS_PLUS] = ACTIONS(2851), + [anon_sym_sizeof] = ACTIONS(2849), + [sym_number_literal] = ACTIONS(2851), + [anon_sym_SQUOTE] = ACTIONS(2851), + [anon_sym_DQUOTE] = ACTIONS(2851), + [sym_true] = ACTIONS(2849), + [sym_false] = ACTIONS(2849), + [sym_null] = ACTIONS(2849), + [sym_identifier] = ACTIONS(2849), [sym_comment] = ACTIONS(39), }, [1104] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3285), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3274), [sym_comment] = ACTIONS(39), }, [1105] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3287), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3276), [sym_comment] = ACTIONS(39), }, [1106] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2868), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2868), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2868), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2868), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2868), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2868), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2868), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2868), - [sym_preproc_directive] = ACTIONS(2868), - [anon_sym_SEMI] = ACTIONS(2870), - [anon_sym_typedef] = ACTIONS(2868), - [anon_sym_extern] = ACTIONS(2868), - [anon_sym_LBRACE] = ACTIONS(2870), - [anon_sym_LPAREN2] = ACTIONS(2870), - [anon_sym_STAR] = ACTIONS(2870), - [anon_sym_static] = ACTIONS(2868), - [anon_sym_auto] = ACTIONS(2868), - [anon_sym_register] = ACTIONS(2868), - [anon_sym_inline] = ACTIONS(2868), - [anon_sym_const] = ACTIONS(2868), - [anon_sym_restrict] = ACTIONS(2868), - [anon_sym_volatile] = ACTIONS(2868), - [anon_sym__Atomic] = ACTIONS(2868), - [anon_sym_unsigned] = ACTIONS(2868), - [anon_sym_long] = ACTIONS(2868), - [anon_sym_short] = ACTIONS(2868), - [sym_primitive_type] = ACTIONS(2868), - [anon_sym_enum] = ACTIONS(2868), - [anon_sym_struct] = ACTIONS(2868), - [anon_sym_union] = ACTIONS(2868), - [anon_sym_if] = ACTIONS(2868), - [anon_sym_switch] = ACTIONS(2868), - [anon_sym_case] = ACTIONS(2868), - [anon_sym_default] = ACTIONS(2868), - [anon_sym_while] = ACTIONS(2868), - [anon_sym_do] = ACTIONS(2868), - [anon_sym_for] = ACTIONS(2868), - [anon_sym_return] = ACTIONS(2868), - [anon_sym_break] = ACTIONS(2868), - [anon_sym_continue] = ACTIONS(2868), - [anon_sym_goto] = ACTIONS(2868), - [anon_sym_AMP] = ACTIONS(2870), - [anon_sym_BANG] = ACTIONS(2870), - [anon_sym_TILDE] = ACTIONS(2870), - [anon_sym_PLUS] = ACTIONS(2868), - [anon_sym_DASH] = ACTIONS(2868), - [anon_sym_DASH_DASH] = ACTIONS(2870), - [anon_sym_PLUS_PLUS] = ACTIONS(2870), - [anon_sym_sizeof] = ACTIONS(2868), - [sym_number_literal] = ACTIONS(2870), - [anon_sym_SQUOTE] = ACTIONS(2870), - [anon_sym_DQUOTE] = ACTIONS(2870), - [sym_true] = ACTIONS(2868), - [sym_false] = ACTIONS(2868), - [sym_null] = ACTIONS(2868), - [sym_identifier] = ACTIONS(2868), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2857), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2857), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2857), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2857), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2857), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2857), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2857), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2857), + [sym_preproc_directive] = ACTIONS(2857), + [anon_sym_SEMI] = ACTIONS(2859), + [anon_sym_typedef] = ACTIONS(2857), + [anon_sym_extern] = ACTIONS(2857), + [anon_sym_LBRACE] = ACTIONS(2859), + [anon_sym_LPAREN2] = ACTIONS(2859), + [anon_sym_STAR] = ACTIONS(2859), + [anon_sym_static] = ACTIONS(2857), + [anon_sym_auto] = ACTIONS(2857), + [anon_sym_register] = ACTIONS(2857), + [anon_sym_inline] = ACTIONS(2857), + [anon_sym_const] = ACTIONS(2857), + [anon_sym_restrict] = ACTIONS(2857), + [anon_sym_volatile] = ACTIONS(2857), + [anon_sym__Atomic] = ACTIONS(2857), + [anon_sym_unsigned] = ACTIONS(2857), + [anon_sym_long] = ACTIONS(2857), + [anon_sym_short] = ACTIONS(2857), + [sym_primitive_type] = ACTIONS(2857), + [anon_sym_enum] = ACTIONS(2857), + [anon_sym_struct] = ACTIONS(2857), + [anon_sym_union] = ACTIONS(2857), + [anon_sym_if] = ACTIONS(2857), + [anon_sym_switch] = ACTIONS(2857), + [anon_sym_case] = ACTIONS(2857), + [anon_sym_default] = ACTIONS(2857), + [anon_sym_while] = ACTIONS(2857), + [anon_sym_do] = ACTIONS(2857), + [anon_sym_for] = ACTIONS(2857), + [anon_sym_return] = ACTIONS(2857), + [anon_sym_break] = ACTIONS(2857), + [anon_sym_continue] = ACTIONS(2857), + [anon_sym_goto] = ACTIONS(2857), + [anon_sym_AMP] = ACTIONS(2859), + [anon_sym_BANG] = ACTIONS(2859), + [anon_sym_TILDE] = ACTIONS(2859), + [anon_sym_PLUS] = ACTIONS(2857), + [anon_sym_DASH] = ACTIONS(2857), + [anon_sym_DASH_DASH] = ACTIONS(2859), + [anon_sym_PLUS_PLUS] = ACTIONS(2859), + [anon_sym_sizeof] = ACTIONS(2857), + [sym_number_literal] = ACTIONS(2859), + [anon_sym_SQUOTE] = ACTIONS(2859), + [anon_sym_DQUOTE] = ACTIONS(2859), + [sym_true] = ACTIONS(2857), + [sym_false] = ACTIONS(2857), + [sym_null] = ACTIONS(2857), + [sym_identifier] = ACTIONS(2857), [sym_comment] = ACTIONS(39), }, [1107] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2872), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2872), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2872), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2872), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2872), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2872), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2872), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2872), - [sym_preproc_directive] = ACTIONS(2872), - [anon_sym_SEMI] = ACTIONS(2874), - [anon_sym_typedef] = ACTIONS(2872), - [anon_sym_extern] = ACTIONS(2872), - [anon_sym_LBRACE] = ACTIONS(2874), - [anon_sym_LPAREN2] = ACTIONS(2874), - [anon_sym_STAR] = ACTIONS(2874), - [anon_sym_static] = ACTIONS(2872), - [anon_sym_auto] = ACTIONS(2872), - [anon_sym_register] = ACTIONS(2872), - [anon_sym_inline] = ACTIONS(2872), - [anon_sym_const] = ACTIONS(2872), - [anon_sym_restrict] = ACTIONS(2872), - [anon_sym_volatile] = ACTIONS(2872), - [anon_sym__Atomic] = ACTIONS(2872), - [anon_sym_unsigned] = ACTIONS(2872), - [anon_sym_long] = ACTIONS(2872), - [anon_sym_short] = ACTIONS(2872), - [sym_primitive_type] = ACTIONS(2872), - [anon_sym_enum] = ACTIONS(2872), - [anon_sym_struct] = ACTIONS(2872), - [anon_sym_union] = ACTIONS(2872), - [anon_sym_if] = ACTIONS(2872), - [anon_sym_switch] = ACTIONS(2872), - [anon_sym_case] = ACTIONS(2872), - [anon_sym_default] = ACTIONS(2872), - [anon_sym_while] = ACTIONS(2872), - [anon_sym_do] = ACTIONS(2872), - [anon_sym_for] = ACTIONS(2872), - [anon_sym_return] = ACTIONS(2872), - [anon_sym_break] = ACTIONS(2872), - [anon_sym_continue] = ACTIONS(2872), - [anon_sym_goto] = ACTIONS(2872), - [anon_sym_AMP] = ACTIONS(2874), - [anon_sym_BANG] = ACTIONS(2874), - [anon_sym_TILDE] = ACTIONS(2874), - [anon_sym_PLUS] = ACTIONS(2872), - [anon_sym_DASH] = ACTIONS(2872), - [anon_sym_DASH_DASH] = ACTIONS(2874), - [anon_sym_PLUS_PLUS] = ACTIONS(2874), - [anon_sym_sizeof] = ACTIONS(2872), - [sym_number_literal] = ACTIONS(2874), - [anon_sym_SQUOTE] = ACTIONS(2874), - [anon_sym_DQUOTE] = ACTIONS(2874), - [sym_true] = ACTIONS(2872), - [sym_false] = ACTIONS(2872), - [sym_null] = ACTIONS(2872), - [sym_identifier] = ACTIONS(2872), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2861), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2861), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2861), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2861), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2861), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2861), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2861), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2861), + [sym_preproc_directive] = ACTIONS(2861), + [anon_sym_SEMI] = ACTIONS(2863), + [anon_sym_typedef] = ACTIONS(2861), + [anon_sym_extern] = ACTIONS(2861), + [anon_sym_LBRACE] = ACTIONS(2863), + [anon_sym_LPAREN2] = ACTIONS(2863), + [anon_sym_STAR] = ACTIONS(2863), + [anon_sym_static] = ACTIONS(2861), + [anon_sym_auto] = ACTIONS(2861), + [anon_sym_register] = ACTIONS(2861), + [anon_sym_inline] = ACTIONS(2861), + [anon_sym_const] = ACTIONS(2861), + [anon_sym_restrict] = ACTIONS(2861), + [anon_sym_volatile] = ACTIONS(2861), + [anon_sym__Atomic] = ACTIONS(2861), + [anon_sym_unsigned] = ACTIONS(2861), + [anon_sym_long] = ACTIONS(2861), + [anon_sym_short] = ACTIONS(2861), + [sym_primitive_type] = ACTIONS(2861), + [anon_sym_enum] = ACTIONS(2861), + [anon_sym_struct] = ACTIONS(2861), + [anon_sym_union] = ACTIONS(2861), + [anon_sym_if] = ACTIONS(2861), + [anon_sym_switch] = ACTIONS(2861), + [anon_sym_case] = ACTIONS(2861), + [anon_sym_default] = ACTIONS(2861), + [anon_sym_while] = ACTIONS(2861), + [anon_sym_do] = ACTIONS(2861), + [anon_sym_for] = ACTIONS(2861), + [anon_sym_return] = ACTIONS(2861), + [anon_sym_break] = ACTIONS(2861), + [anon_sym_continue] = ACTIONS(2861), + [anon_sym_goto] = ACTIONS(2861), + [anon_sym_AMP] = ACTIONS(2863), + [anon_sym_BANG] = ACTIONS(2863), + [anon_sym_TILDE] = ACTIONS(2863), + [anon_sym_PLUS] = ACTIONS(2861), + [anon_sym_DASH] = ACTIONS(2861), + [anon_sym_DASH_DASH] = ACTIONS(2863), + [anon_sym_PLUS_PLUS] = ACTIONS(2863), + [anon_sym_sizeof] = ACTIONS(2861), + [sym_number_literal] = ACTIONS(2863), + [anon_sym_SQUOTE] = ACTIONS(2863), + [anon_sym_DQUOTE] = ACTIONS(2863), + [sym_true] = ACTIONS(2861), + [sym_false] = ACTIONS(2861), + [sym_null] = ACTIONS(2861), + [sym_identifier] = ACTIONS(2861), [sym_comment] = ACTIONS(39), }, [1108] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2876), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2876), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2876), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2876), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2876), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2876), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2876), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2876), - [sym_preproc_directive] = ACTIONS(2876), - [anon_sym_SEMI] = ACTIONS(2878), - [anon_sym_typedef] = ACTIONS(2876), - [anon_sym_extern] = ACTIONS(2876), - [anon_sym_LBRACE] = ACTIONS(2878), - [anon_sym_LPAREN2] = ACTIONS(2878), - [anon_sym_STAR] = ACTIONS(2878), - [anon_sym_static] = ACTIONS(2876), - [anon_sym_auto] = ACTIONS(2876), - [anon_sym_register] = ACTIONS(2876), - [anon_sym_inline] = ACTIONS(2876), - [anon_sym_const] = ACTIONS(2876), - [anon_sym_restrict] = ACTIONS(2876), - [anon_sym_volatile] = ACTIONS(2876), - [anon_sym__Atomic] = ACTIONS(2876), - [anon_sym_unsigned] = ACTIONS(2876), - [anon_sym_long] = ACTIONS(2876), - [anon_sym_short] = ACTIONS(2876), - [sym_primitive_type] = ACTIONS(2876), - [anon_sym_enum] = ACTIONS(2876), - [anon_sym_struct] = ACTIONS(2876), - [anon_sym_union] = ACTIONS(2876), - [anon_sym_if] = ACTIONS(2876), - [anon_sym_switch] = ACTIONS(2876), - [anon_sym_case] = ACTIONS(2876), - [anon_sym_default] = ACTIONS(2876), - [anon_sym_while] = ACTIONS(2876), - [anon_sym_do] = ACTIONS(2876), - [anon_sym_for] = ACTIONS(2876), - [anon_sym_return] = ACTIONS(2876), - [anon_sym_break] = ACTIONS(2876), - [anon_sym_continue] = ACTIONS(2876), - [anon_sym_goto] = ACTIONS(2876), - [anon_sym_AMP] = ACTIONS(2878), - [anon_sym_BANG] = ACTIONS(2878), - [anon_sym_TILDE] = ACTIONS(2878), - [anon_sym_PLUS] = ACTIONS(2876), - [anon_sym_DASH] = ACTIONS(2876), - [anon_sym_DASH_DASH] = ACTIONS(2878), - [anon_sym_PLUS_PLUS] = ACTIONS(2878), - [anon_sym_sizeof] = ACTIONS(2876), - [sym_number_literal] = ACTIONS(2878), - [anon_sym_SQUOTE] = ACTIONS(2878), - [anon_sym_DQUOTE] = ACTIONS(2878), - [sym_true] = ACTIONS(2876), - [sym_false] = ACTIONS(2876), - [sym_null] = ACTIONS(2876), - [sym_identifier] = ACTIONS(2876), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2865), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2865), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2865), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2865), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2865), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2865), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2865), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2865), + [sym_preproc_directive] = ACTIONS(2865), + [anon_sym_SEMI] = ACTIONS(2867), + [anon_sym_typedef] = ACTIONS(2865), + [anon_sym_extern] = ACTIONS(2865), + [anon_sym_LBRACE] = ACTIONS(2867), + [anon_sym_LPAREN2] = ACTIONS(2867), + [anon_sym_STAR] = ACTIONS(2867), + [anon_sym_static] = ACTIONS(2865), + [anon_sym_auto] = ACTIONS(2865), + [anon_sym_register] = ACTIONS(2865), + [anon_sym_inline] = ACTIONS(2865), + [anon_sym_const] = ACTIONS(2865), + [anon_sym_restrict] = ACTIONS(2865), + [anon_sym_volatile] = ACTIONS(2865), + [anon_sym__Atomic] = ACTIONS(2865), + [anon_sym_unsigned] = ACTIONS(2865), + [anon_sym_long] = ACTIONS(2865), + [anon_sym_short] = ACTIONS(2865), + [sym_primitive_type] = ACTIONS(2865), + [anon_sym_enum] = ACTIONS(2865), + [anon_sym_struct] = ACTIONS(2865), + [anon_sym_union] = ACTIONS(2865), + [anon_sym_if] = ACTIONS(2865), + [anon_sym_switch] = ACTIONS(2865), + [anon_sym_case] = ACTIONS(2865), + [anon_sym_default] = ACTIONS(2865), + [anon_sym_while] = ACTIONS(2865), + [anon_sym_do] = ACTIONS(2865), + [anon_sym_for] = ACTIONS(2865), + [anon_sym_return] = ACTIONS(2865), + [anon_sym_break] = ACTIONS(2865), + [anon_sym_continue] = ACTIONS(2865), + [anon_sym_goto] = ACTIONS(2865), + [anon_sym_AMP] = ACTIONS(2867), + [anon_sym_BANG] = ACTIONS(2867), + [anon_sym_TILDE] = ACTIONS(2867), + [anon_sym_PLUS] = ACTIONS(2865), + [anon_sym_DASH] = ACTIONS(2865), + [anon_sym_DASH_DASH] = ACTIONS(2867), + [anon_sym_PLUS_PLUS] = ACTIONS(2867), + [anon_sym_sizeof] = ACTIONS(2865), + [sym_number_literal] = ACTIONS(2867), + [anon_sym_SQUOTE] = ACTIONS(2867), + [anon_sym_DQUOTE] = ACTIONS(2867), + [sym_true] = ACTIONS(2865), + [sym_false] = ACTIONS(2865), + [sym_null] = ACTIONS(2865), + [sym_identifier] = ACTIONS(2865), [sym_comment] = ACTIONS(39), }, [1109] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3289), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3278), [sym_comment] = ACTIONS(39), }, [1110] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3291), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3280), [sym_comment] = ACTIONS(39), }, [1111] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2238), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2238), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2238), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2238), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2238), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2238), - [sym_preproc_directive] = ACTIONS(2238), - [anon_sym_SEMI] = ACTIONS(2240), - [anon_sym_typedef] = ACTIONS(2238), - [anon_sym_extern] = ACTIONS(2238), - [anon_sym_LBRACE] = ACTIONS(2240), - [anon_sym_LPAREN2] = ACTIONS(2240), - [anon_sym_STAR] = ACTIONS(2240), - [anon_sym_static] = ACTIONS(2238), - [anon_sym_auto] = ACTIONS(2238), - [anon_sym_register] = ACTIONS(2238), - [anon_sym_inline] = ACTIONS(2238), - [anon_sym_const] = ACTIONS(2238), - [anon_sym_restrict] = ACTIONS(2238), - [anon_sym_volatile] = ACTIONS(2238), - [anon_sym__Atomic] = ACTIONS(2238), - [anon_sym_unsigned] = ACTIONS(2238), - [anon_sym_long] = ACTIONS(2238), - [anon_sym_short] = ACTIONS(2238), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_enum] = ACTIONS(2238), - [anon_sym_struct] = ACTIONS(2238), - [anon_sym_union] = ACTIONS(2238), - [anon_sym_if] = ACTIONS(2238), - [anon_sym_switch] = ACTIONS(2238), - [anon_sym_case] = ACTIONS(2238), - [anon_sym_default] = ACTIONS(2238), - [anon_sym_while] = ACTIONS(2238), - [anon_sym_do] = ACTIONS(2238), - [anon_sym_for] = ACTIONS(2238), - [anon_sym_return] = ACTIONS(2238), - [anon_sym_break] = ACTIONS(2238), - [anon_sym_continue] = ACTIONS(2238), - [anon_sym_goto] = ACTIONS(2238), - [anon_sym_AMP] = ACTIONS(2240), - [anon_sym_BANG] = ACTIONS(2240), - [anon_sym_TILDE] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2238), - [anon_sym_DASH] = ACTIONS(2238), - [anon_sym_DASH_DASH] = ACTIONS(2240), - [anon_sym_PLUS_PLUS] = ACTIONS(2240), - [anon_sym_sizeof] = ACTIONS(2238), - [sym_number_literal] = ACTIONS(2240), - [anon_sym_SQUOTE] = ACTIONS(2240), - [anon_sym_DQUOTE] = ACTIONS(2240), - [sym_true] = ACTIONS(2238), - [sym_false] = ACTIONS(2238), - [sym_null] = ACTIONS(2238), - [sym_identifier] = ACTIONS(2238), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2227), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2227), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2227), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2227), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2227), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2227), + [sym_preproc_directive] = ACTIONS(2227), + [anon_sym_SEMI] = ACTIONS(2229), + [anon_sym_typedef] = ACTIONS(2227), + [anon_sym_extern] = ACTIONS(2227), + [anon_sym_LBRACE] = ACTIONS(2229), + [anon_sym_LPAREN2] = ACTIONS(2229), + [anon_sym_STAR] = ACTIONS(2229), + [anon_sym_static] = ACTIONS(2227), + [anon_sym_auto] = ACTIONS(2227), + [anon_sym_register] = ACTIONS(2227), + [anon_sym_inline] = ACTIONS(2227), + [anon_sym_const] = ACTIONS(2227), + [anon_sym_restrict] = ACTIONS(2227), + [anon_sym_volatile] = ACTIONS(2227), + [anon_sym__Atomic] = ACTIONS(2227), + [anon_sym_unsigned] = ACTIONS(2227), + [anon_sym_long] = ACTIONS(2227), + [anon_sym_short] = ACTIONS(2227), + [sym_primitive_type] = ACTIONS(2227), + [anon_sym_enum] = ACTIONS(2227), + [anon_sym_struct] = ACTIONS(2227), + [anon_sym_union] = ACTIONS(2227), + [anon_sym_if] = ACTIONS(2227), + [anon_sym_switch] = ACTIONS(2227), + [anon_sym_case] = ACTIONS(2227), + [anon_sym_default] = ACTIONS(2227), + [anon_sym_while] = ACTIONS(2227), + [anon_sym_do] = ACTIONS(2227), + [anon_sym_for] = ACTIONS(2227), + [anon_sym_return] = ACTIONS(2227), + [anon_sym_break] = ACTIONS(2227), + [anon_sym_continue] = ACTIONS(2227), + [anon_sym_goto] = ACTIONS(2227), + [anon_sym_AMP] = ACTIONS(2229), + [anon_sym_BANG] = ACTIONS(2229), + [anon_sym_TILDE] = ACTIONS(2229), + [anon_sym_PLUS] = ACTIONS(2227), + [anon_sym_DASH] = ACTIONS(2227), + [anon_sym_DASH_DASH] = ACTIONS(2229), + [anon_sym_PLUS_PLUS] = ACTIONS(2229), + [anon_sym_sizeof] = ACTIONS(2227), + [sym_number_literal] = ACTIONS(2229), + [anon_sym_SQUOTE] = ACTIONS(2229), + [anon_sym_DQUOTE] = ACTIONS(2229), + [sym_true] = ACTIONS(2227), + [sym_false] = ACTIONS(2227), + [sym_null] = ACTIONS(2227), + [sym_identifier] = ACTIONS(2227), [sym_comment] = ACTIONS(39), }, [1112] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3293), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3282), [sym_comment] = ACTIONS(39), }, [1113] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3295), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3284), [sym_comment] = ACTIONS(39), }, [1114] = { @@ -44117,21 +44136,21 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(896), [aux_sym__declaration_specifiers_repeat1] = STATE(20), [aux_sym_sized_type_specifier_repeat1] = STATE(21), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(133), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(135), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1504), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3297), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1508), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1510), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1512), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1514), - [sym_preproc_directive] = ACTIONS(149), - [anon_sym_SEMI] = ACTIONS(1516), - [anon_sym_typedef] = ACTIONS(151), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(131), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(133), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1493), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3286), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1497), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1499), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1501), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1503), + [sym_preproc_directive] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(1505), + [anon_sym_typedef] = ACTIONS(149), [anon_sym_extern] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(734), - [anon_sym_LPAREN2] = ACTIONS(554), - [anon_sym_STAR] = ACTIONS(556), + [anon_sym_LBRACE] = ACTIONS(725), + [anon_sym_LPAREN2] = ACTIONS(550), + [anon_sym_STAR] = ACTIONS(552), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -44147,97 +44166,97 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), - [anon_sym_if] = ACTIONS(1518), - [anon_sym_switch] = ACTIONS(1520), - [anon_sym_case] = ACTIONS(1522), - [anon_sym_default] = ACTIONS(1524), - [anon_sym_while] = ACTIONS(1526), - [anon_sym_do] = ACTIONS(1528), - [anon_sym_for] = ACTIONS(1530), - [anon_sym_return] = ACTIONS(1532), - [anon_sym_break] = ACTIONS(1534), - [anon_sym_continue] = ACTIONS(1536), - [anon_sym_goto] = ACTIONS(1538), - [anon_sym_AMP] = ACTIONS(556), - [anon_sym_BANG] = ACTIONS(580), - [anon_sym_TILDE] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_DASH_DASH] = ACTIONS(586), - [anon_sym_PLUS_PLUS] = ACTIONS(586), - [anon_sym_sizeof] = ACTIONS(588), - [sym_number_literal] = ACTIONS(1540), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1542), - [sym_false] = ACTIONS(1542), - [sym_null] = ACTIONS(1542), - [sym_identifier] = ACTIONS(1544), + [anon_sym_if] = ACTIONS(1507), + [anon_sym_switch] = ACTIONS(1509), + [anon_sym_case] = ACTIONS(1511), + [anon_sym_default] = ACTIONS(1513), + [anon_sym_while] = ACTIONS(1515), + [anon_sym_do] = ACTIONS(1517), + [anon_sym_for] = ACTIONS(1519), + [anon_sym_return] = ACTIONS(1521), + [anon_sym_break] = ACTIONS(1523), + [anon_sym_continue] = ACTIONS(1525), + [anon_sym_goto] = ACTIONS(1527), + [anon_sym_AMP] = ACTIONS(552), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_TILDE] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(580), + [anon_sym_DASH] = ACTIONS(580), + [anon_sym_DASH_DASH] = ACTIONS(582), + [anon_sym_PLUS_PLUS] = ACTIONS(582), + [anon_sym_sizeof] = ACTIONS(584), + [sym_number_literal] = ACTIONS(1529), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_null] = ACTIONS(1531), + [sym_identifier] = ACTIONS(1533), [sym_comment] = ACTIONS(39), }, [1115] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2318), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2318), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2318), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2318), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2318), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2318), - [sym_preproc_directive] = ACTIONS(2318), - [anon_sym_SEMI] = ACTIONS(2320), - [anon_sym_typedef] = ACTIONS(2318), - [anon_sym_extern] = ACTIONS(2318), - [anon_sym_LBRACE] = ACTIONS(2320), - [anon_sym_LPAREN2] = ACTIONS(2320), - [anon_sym_STAR] = ACTIONS(2320), - [anon_sym_static] = ACTIONS(2318), - [anon_sym_auto] = ACTIONS(2318), - [anon_sym_register] = ACTIONS(2318), - [anon_sym_inline] = ACTIONS(2318), - [anon_sym_const] = ACTIONS(2318), - [anon_sym_restrict] = ACTIONS(2318), - [anon_sym_volatile] = ACTIONS(2318), - [anon_sym__Atomic] = ACTIONS(2318), - [anon_sym_unsigned] = ACTIONS(2318), - [anon_sym_long] = ACTIONS(2318), - [anon_sym_short] = ACTIONS(2318), - [sym_primitive_type] = ACTIONS(2318), - [anon_sym_enum] = ACTIONS(2318), - [anon_sym_struct] = ACTIONS(2318), - [anon_sym_union] = ACTIONS(2318), - [anon_sym_if] = ACTIONS(2318), - [anon_sym_switch] = ACTIONS(2318), - [anon_sym_case] = ACTIONS(2318), - [anon_sym_default] = ACTIONS(2318), - [anon_sym_while] = ACTIONS(2318), - [anon_sym_do] = ACTIONS(2318), - [anon_sym_for] = ACTIONS(2318), - [anon_sym_return] = ACTIONS(2318), - [anon_sym_break] = ACTIONS(2318), - [anon_sym_continue] = ACTIONS(2318), - [anon_sym_goto] = ACTIONS(2318), - [anon_sym_AMP] = ACTIONS(2320), - [anon_sym_BANG] = ACTIONS(2320), - [anon_sym_TILDE] = ACTIONS(2320), - [anon_sym_PLUS] = ACTIONS(2318), - [anon_sym_DASH] = ACTIONS(2318), - [anon_sym_DASH_DASH] = ACTIONS(2320), - [anon_sym_PLUS_PLUS] = ACTIONS(2320), - [anon_sym_sizeof] = ACTIONS(2318), - [sym_number_literal] = ACTIONS(2320), - [anon_sym_SQUOTE] = ACTIONS(2320), - [anon_sym_DQUOTE] = ACTIONS(2320), - [sym_true] = ACTIONS(2318), - [sym_false] = ACTIONS(2318), - [sym_null] = ACTIONS(2318), - [sym_identifier] = ACTIONS(2318), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2307), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2307), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2307), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2307), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2307), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2307), + [sym_preproc_directive] = ACTIONS(2307), + [anon_sym_SEMI] = ACTIONS(2309), + [anon_sym_typedef] = ACTIONS(2307), + [anon_sym_extern] = ACTIONS(2307), + [anon_sym_LBRACE] = ACTIONS(2309), + [anon_sym_LPAREN2] = ACTIONS(2309), + [anon_sym_STAR] = ACTIONS(2309), + [anon_sym_static] = ACTIONS(2307), + [anon_sym_auto] = ACTIONS(2307), + [anon_sym_register] = ACTIONS(2307), + [anon_sym_inline] = ACTIONS(2307), + [anon_sym_const] = ACTIONS(2307), + [anon_sym_restrict] = ACTIONS(2307), + [anon_sym_volatile] = ACTIONS(2307), + [anon_sym__Atomic] = ACTIONS(2307), + [anon_sym_unsigned] = ACTIONS(2307), + [anon_sym_long] = ACTIONS(2307), + [anon_sym_short] = ACTIONS(2307), + [sym_primitive_type] = ACTIONS(2307), + [anon_sym_enum] = ACTIONS(2307), + [anon_sym_struct] = ACTIONS(2307), + [anon_sym_union] = ACTIONS(2307), + [anon_sym_if] = ACTIONS(2307), + [anon_sym_switch] = ACTIONS(2307), + [anon_sym_case] = ACTIONS(2307), + [anon_sym_default] = ACTIONS(2307), + [anon_sym_while] = ACTIONS(2307), + [anon_sym_do] = ACTIONS(2307), + [anon_sym_for] = ACTIONS(2307), + [anon_sym_return] = ACTIONS(2307), + [anon_sym_break] = ACTIONS(2307), + [anon_sym_continue] = ACTIONS(2307), + [anon_sym_goto] = ACTIONS(2307), + [anon_sym_AMP] = ACTIONS(2309), + [anon_sym_BANG] = ACTIONS(2309), + [anon_sym_TILDE] = ACTIONS(2309), + [anon_sym_PLUS] = ACTIONS(2307), + [anon_sym_DASH] = ACTIONS(2307), + [anon_sym_DASH_DASH] = ACTIONS(2309), + [anon_sym_PLUS_PLUS] = ACTIONS(2309), + [anon_sym_sizeof] = ACTIONS(2307), + [sym_number_literal] = ACTIONS(2309), + [anon_sym_SQUOTE] = ACTIONS(2309), + [anon_sym_DQUOTE] = ACTIONS(2309), + [sym_true] = ACTIONS(2307), + [sym_false] = ACTIONS(2307), + [sym_null] = ACTIONS(2307), + [sym_identifier] = ACTIONS(2307), [sym_comment] = ACTIONS(39), }, [1116] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3299), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3288), [sym_comment] = ACTIONS(39), }, [1117] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3301), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3290), [sym_comment] = ACTIONS(39), }, [1118] = { @@ -44298,21 +44317,21 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(896), [aux_sym__declaration_specifiers_repeat1] = STATE(20), [aux_sym_sized_type_specifier_repeat1] = STATE(21), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(133), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(135), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1504), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3303), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1508), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1510), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1512), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1514), - [sym_preproc_directive] = ACTIONS(149), - [anon_sym_SEMI] = ACTIONS(1516), - [anon_sym_typedef] = ACTIONS(151), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(131), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(133), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1493), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3292), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1497), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1499), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1501), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1503), + [sym_preproc_directive] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(1505), + [anon_sym_typedef] = ACTIONS(149), [anon_sym_extern] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(734), - [anon_sym_LPAREN2] = ACTIONS(554), - [anon_sym_STAR] = ACTIONS(556), + [anon_sym_LBRACE] = ACTIONS(725), + [anon_sym_LPAREN2] = ACTIONS(550), + [anon_sym_STAR] = ACTIONS(552), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -44328,97 +44347,97 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), - [anon_sym_if] = ACTIONS(1518), - [anon_sym_switch] = ACTIONS(1520), - [anon_sym_case] = ACTIONS(1522), - [anon_sym_default] = ACTIONS(1524), - [anon_sym_while] = ACTIONS(1526), - [anon_sym_do] = ACTIONS(1528), - [anon_sym_for] = ACTIONS(1530), - [anon_sym_return] = ACTIONS(1532), - [anon_sym_break] = ACTIONS(1534), - [anon_sym_continue] = ACTIONS(1536), - [anon_sym_goto] = ACTIONS(1538), - [anon_sym_AMP] = ACTIONS(556), - [anon_sym_BANG] = ACTIONS(580), - [anon_sym_TILDE] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_DASH_DASH] = ACTIONS(586), - [anon_sym_PLUS_PLUS] = ACTIONS(586), - [anon_sym_sizeof] = ACTIONS(588), - [sym_number_literal] = ACTIONS(1540), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1542), - [sym_false] = ACTIONS(1542), - [sym_null] = ACTIONS(1542), - [sym_identifier] = ACTIONS(1544), + [anon_sym_if] = ACTIONS(1507), + [anon_sym_switch] = ACTIONS(1509), + [anon_sym_case] = ACTIONS(1511), + [anon_sym_default] = ACTIONS(1513), + [anon_sym_while] = ACTIONS(1515), + [anon_sym_do] = ACTIONS(1517), + [anon_sym_for] = ACTIONS(1519), + [anon_sym_return] = ACTIONS(1521), + [anon_sym_break] = ACTIONS(1523), + [anon_sym_continue] = ACTIONS(1525), + [anon_sym_goto] = ACTIONS(1527), + [anon_sym_AMP] = ACTIONS(552), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_TILDE] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(580), + [anon_sym_DASH] = ACTIONS(580), + [anon_sym_DASH_DASH] = ACTIONS(582), + [anon_sym_PLUS_PLUS] = ACTIONS(582), + [anon_sym_sizeof] = ACTIONS(584), + [sym_number_literal] = ACTIONS(1529), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_null] = ACTIONS(1531), + [sym_identifier] = ACTIONS(1533), [sym_comment] = ACTIONS(39), }, [1119] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2328), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2328), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2328), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2328), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2328), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2328), - [sym_preproc_directive] = ACTIONS(2328), - [anon_sym_SEMI] = ACTIONS(2330), - [anon_sym_typedef] = ACTIONS(2328), - [anon_sym_extern] = ACTIONS(2328), - [anon_sym_LBRACE] = ACTIONS(2330), - [anon_sym_LPAREN2] = ACTIONS(2330), - [anon_sym_STAR] = ACTIONS(2330), - [anon_sym_static] = ACTIONS(2328), - [anon_sym_auto] = ACTIONS(2328), - [anon_sym_register] = ACTIONS(2328), - [anon_sym_inline] = ACTIONS(2328), - [anon_sym_const] = ACTIONS(2328), - [anon_sym_restrict] = ACTIONS(2328), - [anon_sym_volatile] = ACTIONS(2328), - [anon_sym__Atomic] = ACTIONS(2328), - [anon_sym_unsigned] = ACTIONS(2328), - [anon_sym_long] = ACTIONS(2328), - [anon_sym_short] = ACTIONS(2328), - [sym_primitive_type] = ACTIONS(2328), - [anon_sym_enum] = ACTIONS(2328), - [anon_sym_struct] = ACTIONS(2328), - [anon_sym_union] = ACTIONS(2328), - [anon_sym_if] = ACTIONS(2328), - [anon_sym_switch] = ACTIONS(2328), - [anon_sym_case] = ACTIONS(2328), - [anon_sym_default] = ACTIONS(2328), - [anon_sym_while] = ACTIONS(2328), - [anon_sym_do] = ACTIONS(2328), - [anon_sym_for] = ACTIONS(2328), - [anon_sym_return] = ACTIONS(2328), - [anon_sym_break] = ACTIONS(2328), - [anon_sym_continue] = ACTIONS(2328), - [anon_sym_goto] = ACTIONS(2328), - [anon_sym_AMP] = ACTIONS(2330), - [anon_sym_BANG] = ACTIONS(2330), - [anon_sym_TILDE] = ACTIONS(2330), - [anon_sym_PLUS] = ACTIONS(2328), - [anon_sym_DASH] = ACTIONS(2328), - [anon_sym_DASH_DASH] = ACTIONS(2330), - [anon_sym_PLUS_PLUS] = ACTIONS(2330), - [anon_sym_sizeof] = ACTIONS(2328), - [sym_number_literal] = ACTIONS(2330), - [anon_sym_SQUOTE] = ACTIONS(2330), - [anon_sym_DQUOTE] = ACTIONS(2330), - [sym_true] = ACTIONS(2328), - [sym_false] = ACTIONS(2328), - [sym_null] = ACTIONS(2328), - [sym_identifier] = ACTIONS(2328), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2317), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2317), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2317), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2317), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2317), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2317), + [sym_preproc_directive] = ACTIONS(2317), + [anon_sym_SEMI] = ACTIONS(2319), + [anon_sym_typedef] = ACTIONS(2317), + [anon_sym_extern] = ACTIONS(2317), + [anon_sym_LBRACE] = ACTIONS(2319), + [anon_sym_LPAREN2] = ACTIONS(2319), + [anon_sym_STAR] = ACTIONS(2319), + [anon_sym_static] = ACTIONS(2317), + [anon_sym_auto] = ACTIONS(2317), + [anon_sym_register] = ACTIONS(2317), + [anon_sym_inline] = ACTIONS(2317), + [anon_sym_const] = ACTIONS(2317), + [anon_sym_restrict] = ACTIONS(2317), + [anon_sym_volatile] = ACTIONS(2317), + [anon_sym__Atomic] = ACTIONS(2317), + [anon_sym_unsigned] = ACTIONS(2317), + [anon_sym_long] = ACTIONS(2317), + [anon_sym_short] = ACTIONS(2317), + [sym_primitive_type] = ACTIONS(2317), + [anon_sym_enum] = ACTIONS(2317), + [anon_sym_struct] = ACTIONS(2317), + [anon_sym_union] = ACTIONS(2317), + [anon_sym_if] = ACTIONS(2317), + [anon_sym_switch] = ACTIONS(2317), + [anon_sym_case] = ACTIONS(2317), + [anon_sym_default] = ACTIONS(2317), + [anon_sym_while] = ACTIONS(2317), + [anon_sym_do] = ACTIONS(2317), + [anon_sym_for] = ACTIONS(2317), + [anon_sym_return] = ACTIONS(2317), + [anon_sym_break] = ACTIONS(2317), + [anon_sym_continue] = ACTIONS(2317), + [anon_sym_goto] = ACTIONS(2317), + [anon_sym_AMP] = ACTIONS(2319), + [anon_sym_BANG] = ACTIONS(2319), + [anon_sym_TILDE] = ACTIONS(2319), + [anon_sym_PLUS] = ACTIONS(2317), + [anon_sym_DASH] = ACTIONS(2317), + [anon_sym_DASH_DASH] = ACTIONS(2319), + [anon_sym_PLUS_PLUS] = ACTIONS(2319), + [anon_sym_sizeof] = ACTIONS(2317), + [sym_number_literal] = ACTIONS(2319), + [anon_sym_SQUOTE] = ACTIONS(2319), + [anon_sym_DQUOTE] = ACTIONS(2319), + [sym_true] = ACTIONS(2317), + [sym_false] = ACTIONS(2317), + [sym_null] = ACTIONS(2317), + [sym_identifier] = ACTIONS(2317), [sym_comment] = ACTIONS(39), }, [1120] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3305), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3294), [sym_comment] = ACTIONS(39), }, [1121] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3307), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3296), [sym_comment] = ACTIONS(39), }, [1122] = { @@ -44479,21 +44498,21 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(896), [aux_sym__declaration_specifiers_repeat1] = STATE(20), [aux_sym_sized_type_specifier_repeat1] = STATE(21), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(133), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(135), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1504), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3309), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1508), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1510), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1512), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1514), - [sym_preproc_directive] = ACTIONS(149), - [anon_sym_SEMI] = ACTIONS(1516), - [anon_sym_typedef] = ACTIONS(151), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(131), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(133), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1493), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3298), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1497), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1499), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1501), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1503), + [sym_preproc_directive] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(1505), + [anon_sym_typedef] = ACTIONS(149), [anon_sym_extern] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(734), - [anon_sym_LPAREN2] = ACTIONS(554), - [anon_sym_STAR] = ACTIONS(556), + [anon_sym_LBRACE] = ACTIONS(725), + [anon_sym_LPAREN2] = ACTIONS(550), + [anon_sym_STAR] = ACTIONS(552), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -44509,42 +44528,42 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), - [anon_sym_if] = ACTIONS(1518), - [anon_sym_switch] = ACTIONS(1520), - [anon_sym_case] = ACTIONS(1522), - [anon_sym_default] = ACTIONS(1524), - [anon_sym_while] = ACTIONS(1526), - [anon_sym_do] = ACTIONS(1528), - [anon_sym_for] = ACTIONS(1530), - [anon_sym_return] = ACTIONS(1532), - [anon_sym_break] = ACTIONS(1534), - [anon_sym_continue] = ACTIONS(1536), - [anon_sym_goto] = ACTIONS(1538), - [anon_sym_AMP] = ACTIONS(556), - [anon_sym_BANG] = ACTIONS(580), - [anon_sym_TILDE] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_DASH_DASH] = ACTIONS(586), - [anon_sym_PLUS_PLUS] = ACTIONS(586), - [anon_sym_sizeof] = ACTIONS(588), - [sym_number_literal] = ACTIONS(1540), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1542), - [sym_false] = ACTIONS(1542), - [sym_null] = ACTIONS(1542), - [sym_identifier] = ACTIONS(1544), + [anon_sym_if] = ACTIONS(1507), + [anon_sym_switch] = ACTIONS(1509), + [anon_sym_case] = ACTIONS(1511), + [anon_sym_default] = ACTIONS(1513), + [anon_sym_while] = ACTIONS(1515), + [anon_sym_do] = ACTIONS(1517), + [anon_sym_for] = ACTIONS(1519), + [anon_sym_return] = ACTIONS(1521), + [anon_sym_break] = ACTIONS(1523), + [anon_sym_continue] = ACTIONS(1525), + [anon_sym_goto] = ACTIONS(1527), + [anon_sym_AMP] = ACTIONS(552), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_TILDE] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(580), + [anon_sym_DASH] = ACTIONS(580), + [anon_sym_DASH_DASH] = ACTIONS(582), + [anon_sym_PLUS_PLUS] = ACTIONS(582), + [anon_sym_sizeof] = ACTIONS(584), + [sym_number_literal] = ACTIONS(1529), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_null] = ACTIONS(1531), + [sym_identifier] = ACTIONS(1533), [sym_comment] = ACTIONS(39), }, [1123] = { [sym_parenthesized_expression] = STATE(1201), - [anon_sym_LPAREN2] = ACTIONS(994), + [anon_sym_LPAREN2] = ACTIONS(985), [sym_comment] = ACTIONS(39), }, [1124] = { [sym_parenthesized_expression] = STATE(1202), - [anon_sym_LPAREN2] = ACTIONS(994), + [anon_sym_LPAREN2] = ACTIONS(985), [sym_comment] = ACTIONS(39), }, [1125] = { @@ -44568,236 +44587,236 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(1203), [sym_concatenated_string] = STATE(1203), [sym_string_literal] = STATE(421), - [anon_sym_LPAREN2] = ACTIONS(996), - [anon_sym_STAR] = ACTIONS(998), - [anon_sym_AMP] = ACTIONS(998), - [anon_sym_BANG] = ACTIONS(1000), - [anon_sym_TILDE] = ACTIONS(1002), - [anon_sym_PLUS] = ACTIONS(1004), - [anon_sym_DASH] = ACTIONS(1004), - [anon_sym_DASH_DASH] = ACTIONS(1006), - [anon_sym_PLUS_PLUS] = ACTIONS(1006), - [anon_sym_sizeof] = ACTIONS(1008), - [sym_number_literal] = ACTIONS(3311), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(3313), - [sym_false] = ACTIONS(3313), - [sym_null] = ACTIONS(3313), - [sym_identifier] = ACTIONS(3313), + [anon_sym_LPAREN2] = ACTIONS(987), + [anon_sym_STAR] = ACTIONS(989), + [anon_sym_AMP] = ACTIONS(989), + [anon_sym_BANG] = ACTIONS(991), + [anon_sym_TILDE] = ACTIONS(993), + [anon_sym_PLUS] = ACTIONS(995), + [anon_sym_DASH] = ACTIONS(995), + [anon_sym_DASH_DASH] = ACTIONS(997), + [anon_sym_PLUS_PLUS] = ACTIONS(997), + [anon_sym_sizeof] = ACTIONS(999), + [sym_number_literal] = ACTIONS(3300), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(3302), + [sym_false] = ACTIONS(3302), + [sym_null] = ACTIONS(3302), + [sym_identifier] = ACTIONS(3302), [sym_comment] = ACTIONS(39), }, [1126] = { - [anon_sym_COLON] = ACTIONS(3315), + [anon_sym_COLON] = ACTIONS(3304), [sym_comment] = ACTIONS(39), }, [1127] = { [sym_parenthesized_expression] = STATE(1205), - [anon_sym_LPAREN2] = ACTIONS(994), + [anon_sym_LPAREN2] = ACTIONS(985), [sym_comment] = ACTIONS(39), }, [1128] = { - [anon_sym_LPAREN2] = ACTIONS(3317), + [anon_sym_LPAREN2] = ACTIONS(3306), [sym_comment] = ACTIONS(39), }, [1129] = { - [anon_sym_COMMA] = ACTIONS(1066), - [anon_sym_SEMI] = ACTIONS(1066), - [anon_sym_LPAREN2] = ACTIONS(1066), - [anon_sym_STAR] = ACTIONS(1078), - [anon_sym_LBRACK] = ACTIONS(1066), - [anon_sym_EQ] = ACTIONS(1078), - [anon_sym_COLON] = ACTIONS(3319), - [anon_sym_QMARK] = ACTIONS(1066), - [anon_sym_STAR_EQ] = ACTIONS(1066), - [anon_sym_SLASH_EQ] = ACTIONS(1066), - [anon_sym_PERCENT_EQ] = ACTIONS(1066), - [anon_sym_PLUS_EQ] = ACTIONS(1066), - [anon_sym_DASH_EQ] = ACTIONS(1066), - [anon_sym_LT_LT_EQ] = ACTIONS(1066), - [anon_sym_GT_GT_EQ] = ACTIONS(1066), - [anon_sym_AMP_EQ] = ACTIONS(1066), - [anon_sym_CARET_EQ] = ACTIONS(1066), - [anon_sym_PIPE_EQ] = ACTIONS(1066), - [anon_sym_AMP] = ACTIONS(1078), - [anon_sym_PIPE_PIPE] = ACTIONS(1066), - [anon_sym_AMP_AMP] = ACTIONS(1066), - [anon_sym_PIPE] = ACTIONS(1078), - [anon_sym_CARET] = ACTIONS(1078), - [anon_sym_EQ_EQ] = ACTIONS(1066), - [anon_sym_BANG_EQ] = ACTIONS(1066), - [anon_sym_LT] = ACTIONS(1078), - [anon_sym_GT] = ACTIONS(1078), - [anon_sym_LT_EQ] = ACTIONS(1066), - [anon_sym_GT_EQ] = ACTIONS(1066), - [anon_sym_LT_LT] = ACTIONS(1078), - [anon_sym_GT_GT] = ACTIONS(1078), - [anon_sym_PLUS] = ACTIONS(1078), - [anon_sym_DASH] = ACTIONS(1078), - [anon_sym_SLASH] = ACTIONS(1078), - [anon_sym_PERCENT] = ACTIONS(1078), - [anon_sym_DASH_DASH] = ACTIONS(1066), - [anon_sym_PLUS_PLUS] = ACTIONS(1066), - [anon_sym_DOT] = ACTIONS(1066), - [anon_sym_DASH_GT] = ACTIONS(1066), + [anon_sym_COMMA] = ACTIONS(1059), + [anon_sym_SEMI] = ACTIONS(1059), + [anon_sym_LPAREN2] = ACTIONS(1059), + [anon_sym_STAR] = ACTIONS(1071), + [anon_sym_LBRACK] = ACTIONS(1059), + [anon_sym_EQ] = ACTIONS(1071), + [anon_sym_COLON] = ACTIONS(3308), + [anon_sym_QMARK] = ACTIONS(1059), + [anon_sym_STAR_EQ] = ACTIONS(1059), + [anon_sym_SLASH_EQ] = ACTIONS(1059), + [anon_sym_PERCENT_EQ] = ACTIONS(1059), + [anon_sym_PLUS_EQ] = ACTIONS(1059), + [anon_sym_DASH_EQ] = ACTIONS(1059), + [anon_sym_LT_LT_EQ] = ACTIONS(1059), + [anon_sym_GT_GT_EQ] = ACTIONS(1059), + [anon_sym_AMP_EQ] = ACTIONS(1059), + [anon_sym_CARET_EQ] = ACTIONS(1059), + [anon_sym_PIPE_EQ] = ACTIONS(1059), + [anon_sym_AMP] = ACTIONS(1071), + [anon_sym_PIPE_PIPE] = ACTIONS(1059), + [anon_sym_AMP_AMP] = ACTIONS(1059), + [anon_sym_PIPE] = ACTIONS(1071), + [anon_sym_CARET] = ACTIONS(1071), + [anon_sym_EQ_EQ] = ACTIONS(1059), + [anon_sym_BANG_EQ] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(1071), + [anon_sym_GT] = ACTIONS(1071), + [anon_sym_LT_EQ] = ACTIONS(1059), + [anon_sym_GT_EQ] = ACTIONS(1059), + [anon_sym_LT_LT] = ACTIONS(1071), + [anon_sym_GT_GT] = ACTIONS(1071), + [anon_sym_PLUS] = ACTIONS(1071), + [anon_sym_DASH] = ACTIONS(1071), + [anon_sym_SLASH] = ACTIONS(1071), + [anon_sym_PERCENT] = ACTIONS(1071), + [anon_sym_DASH_DASH] = ACTIONS(1059), + [anon_sym_PLUS_PLUS] = ACTIONS(1059), + [anon_sym_DOT] = ACTIONS(1059), + [anon_sym_DASH_GT] = ACTIONS(1059), [sym_comment] = ACTIONS(39), }, [1130] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2408), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2408), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2408), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2408), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2408), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2408), - [sym_preproc_directive] = ACTIONS(2408), - [anon_sym_SEMI] = ACTIONS(2410), - [anon_sym_typedef] = ACTIONS(2408), - [anon_sym_extern] = ACTIONS(2408), - [anon_sym_LBRACE] = ACTIONS(2410), - [anon_sym_LPAREN2] = ACTIONS(2410), - [anon_sym_STAR] = ACTIONS(2410), - [anon_sym_static] = ACTIONS(2408), - [anon_sym_auto] = ACTIONS(2408), - [anon_sym_register] = ACTIONS(2408), - [anon_sym_inline] = ACTIONS(2408), - [anon_sym_const] = ACTIONS(2408), - [anon_sym_restrict] = ACTIONS(2408), - [anon_sym_volatile] = ACTIONS(2408), - [anon_sym__Atomic] = ACTIONS(2408), - [anon_sym_unsigned] = ACTIONS(2408), - [anon_sym_long] = ACTIONS(2408), - [anon_sym_short] = ACTIONS(2408), - [sym_primitive_type] = ACTIONS(2408), - [anon_sym_enum] = ACTIONS(2408), - [anon_sym_struct] = ACTIONS(2408), - [anon_sym_union] = ACTIONS(2408), - [anon_sym_if] = ACTIONS(2408), - [anon_sym_else] = ACTIONS(3321), - [anon_sym_switch] = ACTIONS(2408), - [anon_sym_case] = ACTIONS(2408), - [anon_sym_default] = ACTIONS(2408), - [anon_sym_while] = ACTIONS(2408), - [anon_sym_do] = ACTIONS(2408), - [anon_sym_for] = ACTIONS(2408), - [anon_sym_return] = ACTIONS(2408), - [anon_sym_break] = ACTIONS(2408), - [anon_sym_continue] = ACTIONS(2408), - [anon_sym_goto] = ACTIONS(2408), - [anon_sym_AMP] = ACTIONS(2410), - [anon_sym_BANG] = ACTIONS(2410), - [anon_sym_TILDE] = ACTIONS(2410), - [anon_sym_PLUS] = ACTIONS(2408), - [anon_sym_DASH] = ACTIONS(2408), - [anon_sym_DASH_DASH] = ACTIONS(2410), - [anon_sym_PLUS_PLUS] = ACTIONS(2410), - [anon_sym_sizeof] = ACTIONS(2408), - [sym_number_literal] = ACTIONS(2410), - [anon_sym_SQUOTE] = ACTIONS(2410), - [anon_sym_DQUOTE] = ACTIONS(2410), - [sym_true] = ACTIONS(2408), - [sym_false] = ACTIONS(2408), - [sym_null] = ACTIONS(2408), - [sym_identifier] = ACTIONS(2408), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2397), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2397), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2397), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2397), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2397), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2397), + [sym_preproc_directive] = ACTIONS(2397), + [anon_sym_SEMI] = ACTIONS(2399), + [anon_sym_typedef] = ACTIONS(2397), + [anon_sym_extern] = ACTIONS(2397), + [anon_sym_LBRACE] = ACTIONS(2399), + [anon_sym_LPAREN2] = ACTIONS(2399), + [anon_sym_STAR] = ACTIONS(2399), + [anon_sym_static] = ACTIONS(2397), + [anon_sym_auto] = ACTIONS(2397), + [anon_sym_register] = ACTIONS(2397), + [anon_sym_inline] = ACTIONS(2397), + [anon_sym_const] = ACTIONS(2397), + [anon_sym_restrict] = ACTIONS(2397), + [anon_sym_volatile] = ACTIONS(2397), + [anon_sym__Atomic] = ACTIONS(2397), + [anon_sym_unsigned] = ACTIONS(2397), + [anon_sym_long] = ACTIONS(2397), + [anon_sym_short] = ACTIONS(2397), + [sym_primitive_type] = ACTIONS(2397), + [anon_sym_enum] = ACTIONS(2397), + [anon_sym_struct] = ACTIONS(2397), + [anon_sym_union] = ACTIONS(2397), + [anon_sym_if] = ACTIONS(2397), + [anon_sym_else] = ACTIONS(3310), + [anon_sym_switch] = ACTIONS(2397), + [anon_sym_case] = ACTIONS(2397), + [anon_sym_default] = ACTIONS(2397), + [anon_sym_while] = ACTIONS(2397), + [anon_sym_do] = ACTIONS(2397), + [anon_sym_for] = ACTIONS(2397), + [anon_sym_return] = ACTIONS(2397), + [anon_sym_break] = ACTIONS(2397), + [anon_sym_continue] = ACTIONS(2397), + [anon_sym_goto] = ACTIONS(2397), + [anon_sym_AMP] = ACTIONS(2399), + [anon_sym_BANG] = ACTIONS(2399), + [anon_sym_TILDE] = ACTIONS(2399), + [anon_sym_PLUS] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2397), + [anon_sym_DASH_DASH] = ACTIONS(2399), + [anon_sym_PLUS_PLUS] = ACTIONS(2399), + [anon_sym_sizeof] = ACTIONS(2397), + [sym_number_literal] = ACTIONS(2399), + [anon_sym_SQUOTE] = ACTIONS(2399), + [anon_sym_DQUOTE] = ACTIONS(2399), + [sym_true] = ACTIONS(2397), + [sym_false] = ACTIONS(2397), + [sym_null] = ACTIONS(2397), + [sym_identifier] = ACTIONS(2397), [sym_comment] = ACTIONS(39), }, [1131] = { - [anon_sym_COMMA] = ACTIONS(1066), - [anon_sym_SEMI] = ACTIONS(1066), - [anon_sym_LPAREN2] = ACTIONS(1066), - [anon_sym_STAR] = ACTIONS(1078), - [anon_sym_LBRACK] = ACTIONS(1066), - [anon_sym_EQ] = ACTIONS(1078), - [anon_sym_COLON] = ACTIONS(2723), - [anon_sym_QMARK] = ACTIONS(1066), - [anon_sym_STAR_EQ] = ACTIONS(1066), - [anon_sym_SLASH_EQ] = ACTIONS(1066), - [anon_sym_PERCENT_EQ] = ACTIONS(1066), - [anon_sym_PLUS_EQ] = ACTIONS(1066), - [anon_sym_DASH_EQ] = ACTIONS(1066), - [anon_sym_LT_LT_EQ] = ACTIONS(1066), - [anon_sym_GT_GT_EQ] = ACTIONS(1066), - [anon_sym_AMP_EQ] = ACTIONS(1066), - [anon_sym_CARET_EQ] = ACTIONS(1066), - [anon_sym_PIPE_EQ] = ACTIONS(1066), - [anon_sym_AMP] = ACTIONS(1078), - [anon_sym_PIPE_PIPE] = ACTIONS(1066), - [anon_sym_AMP_AMP] = ACTIONS(1066), - [anon_sym_PIPE] = ACTIONS(1078), - [anon_sym_CARET] = ACTIONS(1078), - [anon_sym_EQ_EQ] = ACTIONS(1066), - [anon_sym_BANG_EQ] = ACTIONS(1066), - [anon_sym_LT] = ACTIONS(1078), - [anon_sym_GT] = ACTIONS(1078), - [anon_sym_LT_EQ] = ACTIONS(1066), - [anon_sym_GT_EQ] = ACTIONS(1066), - [anon_sym_LT_LT] = ACTIONS(1078), - [anon_sym_GT_GT] = ACTIONS(1078), - [anon_sym_PLUS] = ACTIONS(1078), - [anon_sym_DASH] = ACTIONS(1078), - [anon_sym_SLASH] = ACTIONS(1078), - [anon_sym_PERCENT] = ACTIONS(1078), - [anon_sym_DASH_DASH] = ACTIONS(1066), - [anon_sym_PLUS_PLUS] = ACTIONS(1066), - [anon_sym_DOT] = ACTIONS(1066), - [anon_sym_DASH_GT] = ACTIONS(1066), + [anon_sym_COMMA] = ACTIONS(1059), + [anon_sym_SEMI] = ACTIONS(1059), + [anon_sym_LPAREN2] = ACTIONS(1059), + [anon_sym_STAR] = ACTIONS(1071), + [anon_sym_LBRACK] = ACTIONS(1059), + [anon_sym_EQ] = ACTIONS(1071), + [anon_sym_COLON] = ACTIONS(2712), + [anon_sym_QMARK] = ACTIONS(1059), + [anon_sym_STAR_EQ] = ACTIONS(1059), + [anon_sym_SLASH_EQ] = ACTIONS(1059), + [anon_sym_PERCENT_EQ] = ACTIONS(1059), + [anon_sym_PLUS_EQ] = ACTIONS(1059), + [anon_sym_DASH_EQ] = ACTIONS(1059), + [anon_sym_LT_LT_EQ] = ACTIONS(1059), + [anon_sym_GT_GT_EQ] = ACTIONS(1059), + [anon_sym_AMP_EQ] = ACTIONS(1059), + [anon_sym_CARET_EQ] = ACTIONS(1059), + [anon_sym_PIPE_EQ] = ACTIONS(1059), + [anon_sym_AMP] = ACTIONS(1071), + [anon_sym_PIPE_PIPE] = ACTIONS(1059), + [anon_sym_AMP_AMP] = ACTIONS(1059), + [anon_sym_PIPE] = ACTIONS(1071), + [anon_sym_CARET] = ACTIONS(1071), + [anon_sym_EQ_EQ] = ACTIONS(1059), + [anon_sym_BANG_EQ] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(1071), + [anon_sym_GT] = ACTIONS(1071), + [anon_sym_LT_EQ] = ACTIONS(1059), + [anon_sym_GT_EQ] = ACTIONS(1059), + [anon_sym_LT_LT] = ACTIONS(1071), + [anon_sym_GT_GT] = ACTIONS(1071), + [anon_sym_PLUS] = ACTIONS(1071), + [anon_sym_DASH] = ACTIONS(1071), + [anon_sym_SLASH] = ACTIONS(1071), + [anon_sym_PERCENT] = ACTIONS(1071), + [anon_sym_DASH_DASH] = ACTIONS(1059), + [anon_sym_PLUS_PLUS] = ACTIONS(1059), + [anon_sym_DOT] = ACTIONS(1059), + [anon_sym_DASH_GT] = ACTIONS(1059), [sym_comment] = ACTIONS(39), }, [1132] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2414), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2414), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2414), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2414), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2414), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2414), - [sym_preproc_directive] = ACTIONS(2414), - [anon_sym_SEMI] = ACTIONS(2416), - [anon_sym_typedef] = ACTIONS(2414), - [anon_sym_extern] = ACTIONS(2414), - [anon_sym_LBRACE] = ACTIONS(2416), - [anon_sym_LPAREN2] = ACTIONS(2416), - [anon_sym_STAR] = ACTIONS(2416), - [anon_sym_static] = ACTIONS(2414), - [anon_sym_auto] = ACTIONS(2414), - [anon_sym_register] = ACTIONS(2414), - [anon_sym_inline] = ACTIONS(2414), - [anon_sym_const] = ACTIONS(2414), - [anon_sym_restrict] = ACTIONS(2414), - [anon_sym_volatile] = ACTIONS(2414), - [anon_sym__Atomic] = ACTIONS(2414), - [anon_sym_unsigned] = ACTIONS(2414), - [anon_sym_long] = ACTIONS(2414), - [anon_sym_short] = ACTIONS(2414), - [sym_primitive_type] = ACTIONS(2414), - [anon_sym_enum] = ACTIONS(2414), - [anon_sym_struct] = ACTIONS(2414), - [anon_sym_union] = ACTIONS(2414), - [anon_sym_if] = ACTIONS(2414), - [anon_sym_else] = ACTIONS(2414), - [anon_sym_switch] = ACTIONS(2414), - [anon_sym_case] = ACTIONS(2414), - [anon_sym_default] = ACTIONS(2414), - [anon_sym_while] = ACTIONS(2414), - [anon_sym_do] = ACTIONS(2414), - [anon_sym_for] = ACTIONS(2414), - [anon_sym_return] = ACTIONS(2414), - [anon_sym_break] = ACTIONS(2414), - [anon_sym_continue] = ACTIONS(2414), - [anon_sym_goto] = ACTIONS(2414), - [anon_sym_AMP] = ACTIONS(2416), - [anon_sym_BANG] = ACTIONS(2416), - [anon_sym_TILDE] = ACTIONS(2416), - [anon_sym_PLUS] = ACTIONS(2414), - [anon_sym_DASH] = ACTIONS(2414), - [anon_sym_DASH_DASH] = ACTIONS(2416), - [anon_sym_PLUS_PLUS] = ACTIONS(2416), - [anon_sym_sizeof] = ACTIONS(2414), - [sym_number_literal] = ACTIONS(2416), - [anon_sym_SQUOTE] = ACTIONS(2416), - [anon_sym_DQUOTE] = ACTIONS(2416), - [sym_true] = ACTIONS(2414), - [sym_false] = ACTIONS(2414), - [sym_null] = ACTIONS(2414), - [sym_identifier] = ACTIONS(2414), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2403), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2403), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2403), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2403), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2403), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2403), + [sym_preproc_directive] = ACTIONS(2403), + [anon_sym_SEMI] = ACTIONS(2405), + [anon_sym_typedef] = ACTIONS(2403), + [anon_sym_extern] = ACTIONS(2403), + [anon_sym_LBRACE] = ACTIONS(2405), + [anon_sym_LPAREN2] = ACTIONS(2405), + [anon_sym_STAR] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2403), + [anon_sym_auto] = ACTIONS(2403), + [anon_sym_register] = ACTIONS(2403), + [anon_sym_inline] = ACTIONS(2403), + [anon_sym_const] = ACTIONS(2403), + [anon_sym_restrict] = ACTIONS(2403), + [anon_sym_volatile] = ACTIONS(2403), + [anon_sym__Atomic] = ACTIONS(2403), + [anon_sym_unsigned] = ACTIONS(2403), + [anon_sym_long] = ACTIONS(2403), + [anon_sym_short] = ACTIONS(2403), + [sym_primitive_type] = ACTIONS(2403), + [anon_sym_enum] = ACTIONS(2403), + [anon_sym_struct] = ACTIONS(2403), + [anon_sym_union] = ACTIONS(2403), + [anon_sym_if] = ACTIONS(2403), + [anon_sym_else] = ACTIONS(2403), + [anon_sym_switch] = ACTIONS(2403), + [anon_sym_case] = ACTIONS(2403), + [anon_sym_default] = ACTIONS(2403), + [anon_sym_while] = ACTIONS(2403), + [anon_sym_do] = ACTIONS(2403), + [anon_sym_for] = ACTIONS(2403), + [anon_sym_return] = ACTIONS(2403), + [anon_sym_break] = ACTIONS(2403), + [anon_sym_continue] = ACTIONS(2403), + [anon_sym_goto] = ACTIONS(2403), + [anon_sym_AMP] = ACTIONS(2405), + [anon_sym_BANG] = ACTIONS(2405), + [anon_sym_TILDE] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2403), + [anon_sym_DASH] = ACTIONS(2403), + [anon_sym_DASH_DASH] = ACTIONS(2405), + [anon_sym_PLUS_PLUS] = ACTIONS(2405), + [anon_sym_sizeof] = ACTIONS(2403), + [sym_number_literal] = ACTIONS(2405), + [anon_sym_SQUOTE] = ACTIONS(2405), + [anon_sym_DQUOTE] = ACTIONS(2405), + [sym_true] = ACTIONS(2403), + [sym_false] = ACTIONS(2403), + [sym_null] = ACTIONS(2403), + [sym_identifier] = ACTIONS(2403), [sym_comment] = ACTIONS(39), }, [1133] = { @@ -44848,12 +44867,12 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_macro_type_specifier] = STATE(95), [aux_sym__declaration_specifiers_repeat1] = STATE(96), [aux_sym_sized_type_specifier_repeat1] = STATE(97), - [anon_sym_SEMI] = ACTIONS(2254), - [anon_sym_typedef] = ACTIONS(380), + [anon_sym_SEMI] = ACTIONS(2243), + [anon_sym_typedef] = ACTIONS(376), [anon_sym_extern] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(1273), - [anon_sym_LPAREN2] = ACTIONS(554), - [anon_sym_STAR] = ACTIONS(556), + [anon_sym_LBRACE] = ACTIONS(1264), + [anon_sym_LPAREN2] = ACTIONS(550), + [anon_sym_STAR] = ACTIONS(552), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -44862,49 +44881,49 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_restrict] = ACTIONS(25), [anon_sym_volatile] = ACTIONS(25), [anon_sym__Atomic] = ACTIONS(25), - [anon_sym_unsigned] = ACTIONS(177), - [anon_sym_long] = ACTIONS(177), - [anon_sym_short] = ACTIONS(177), - [sym_primitive_type] = ACTIONS(179), + [anon_sym_unsigned] = ACTIONS(175), + [anon_sym_long] = ACTIONS(175), + [anon_sym_short] = ACTIONS(175), + [sym_primitive_type] = ACTIONS(177), [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), - [anon_sym_if] = ACTIONS(2256), - [anon_sym_switch] = ACTIONS(2258), - [anon_sym_case] = ACTIONS(2260), - [anon_sym_default] = ACTIONS(2262), - [anon_sym_while] = ACTIONS(2264), - [anon_sym_do] = ACTIONS(2266), - [anon_sym_for] = ACTIONS(2268), - [anon_sym_return] = ACTIONS(2270), - [anon_sym_break] = ACTIONS(2272), - [anon_sym_continue] = ACTIONS(2274), - [anon_sym_goto] = ACTIONS(2276), - [anon_sym_AMP] = ACTIONS(556), - [anon_sym_BANG] = ACTIONS(580), - [anon_sym_TILDE] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_DASH_DASH] = ACTIONS(586), - [anon_sym_PLUS_PLUS] = ACTIONS(586), - [anon_sym_sizeof] = ACTIONS(588), - [sym_number_literal] = ACTIONS(2278), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2280), - [sym_false] = ACTIONS(2280), - [sym_null] = ACTIONS(2280), - [sym_identifier] = ACTIONS(3071), + [anon_sym_if] = ACTIONS(2245), + [anon_sym_switch] = ACTIONS(2247), + [anon_sym_case] = ACTIONS(2249), + [anon_sym_default] = ACTIONS(2251), + [anon_sym_while] = ACTIONS(2253), + [anon_sym_do] = ACTIONS(2255), + [anon_sym_for] = ACTIONS(2257), + [anon_sym_return] = ACTIONS(2259), + [anon_sym_break] = ACTIONS(2261), + [anon_sym_continue] = ACTIONS(2263), + [anon_sym_goto] = ACTIONS(2265), + [anon_sym_AMP] = ACTIONS(552), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_TILDE] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(580), + [anon_sym_DASH] = ACTIONS(580), + [anon_sym_DASH_DASH] = ACTIONS(582), + [anon_sym_PLUS_PLUS] = ACTIONS(582), + [anon_sym_sizeof] = ACTIONS(584), + [sym_number_literal] = ACTIONS(2267), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(2269), + [sym_false] = ACTIONS(2269), + [sym_null] = ACTIONS(2269), + [sym_identifier] = ACTIONS(3060), [sym_comment] = ACTIONS(39), }, [1134] = { - [anon_sym_COMMA] = ACTIONS(1066), - [anon_sym_SEMI] = ACTIONS(1066), + [anon_sym_COMMA] = ACTIONS(1059), + [anon_sym_SEMI] = ACTIONS(1059), [anon_sym_extern] = ACTIONS(83), - [anon_sym_LPAREN2] = ACTIONS(1071), - [anon_sym_STAR] = ACTIONS(1075), - [anon_sym_LBRACK] = ACTIONS(1066), - [anon_sym_EQ] = ACTIONS(1078), + [anon_sym_LPAREN2] = ACTIONS(1064), + [anon_sym_STAR] = ACTIONS(1068), + [anon_sym_LBRACK] = ACTIONS(1059), + [anon_sym_EQ] = ACTIONS(1071), [anon_sym_static] = ACTIONS(83), [anon_sym_auto] = ACTIONS(83), [anon_sym_register] = ACTIONS(83), @@ -44913,98 +44932,98 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_restrict] = ACTIONS(83), [anon_sym_volatile] = ACTIONS(83), [anon_sym__Atomic] = ACTIONS(83), - [anon_sym_COLON] = ACTIONS(2723), - [anon_sym_QMARK] = ACTIONS(1066), - [anon_sym_STAR_EQ] = ACTIONS(1066), - [anon_sym_SLASH_EQ] = ACTIONS(1066), - [anon_sym_PERCENT_EQ] = ACTIONS(1066), - [anon_sym_PLUS_EQ] = ACTIONS(1066), - [anon_sym_DASH_EQ] = ACTIONS(1066), - [anon_sym_LT_LT_EQ] = ACTIONS(1066), - [anon_sym_GT_GT_EQ] = ACTIONS(1066), - [anon_sym_AMP_EQ] = ACTIONS(1066), - [anon_sym_CARET_EQ] = ACTIONS(1066), - [anon_sym_PIPE_EQ] = ACTIONS(1066), - [anon_sym_AMP] = ACTIONS(1078), - [anon_sym_PIPE_PIPE] = ACTIONS(1066), - [anon_sym_AMP_AMP] = ACTIONS(1066), - [anon_sym_PIPE] = ACTIONS(1078), - [anon_sym_CARET] = ACTIONS(1078), - [anon_sym_EQ_EQ] = ACTIONS(1066), - [anon_sym_BANG_EQ] = ACTIONS(1066), - [anon_sym_LT] = ACTIONS(1078), - [anon_sym_GT] = ACTIONS(1078), - [anon_sym_LT_EQ] = ACTIONS(1066), - [anon_sym_GT_EQ] = ACTIONS(1066), - [anon_sym_LT_LT] = ACTIONS(1078), - [anon_sym_GT_GT] = ACTIONS(1078), - [anon_sym_PLUS] = ACTIONS(1078), - [anon_sym_DASH] = ACTIONS(1078), - [anon_sym_SLASH] = ACTIONS(1078), - [anon_sym_PERCENT] = ACTIONS(1078), - [anon_sym_DASH_DASH] = ACTIONS(1066), - [anon_sym_PLUS_PLUS] = ACTIONS(1066), - [anon_sym_DOT] = ACTIONS(1066), - [anon_sym_DASH_GT] = ACTIONS(1066), + [anon_sym_COLON] = ACTIONS(2712), + [anon_sym_QMARK] = ACTIONS(1059), + [anon_sym_STAR_EQ] = ACTIONS(1059), + [anon_sym_SLASH_EQ] = ACTIONS(1059), + [anon_sym_PERCENT_EQ] = ACTIONS(1059), + [anon_sym_PLUS_EQ] = ACTIONS(1059), + [anon_sym_DASH_EQ] = ACTIONS(1059), + [anon_sym_LT_LT_EQ] = ACTIONS(1059), + [anon_sym_GT_GT_EQ] = ACTIONS(1059), + [anon_sym_AMP_EQ] = ACTIONS(1059), + [anon_sym_CARET_EQ] = ACTIONS(1059), + [anon_sym_PIPE_EQ] = ACTIONS(1059), + [anon_sym_AMP] = ACTIONS(1071), + [anon_sym_PIPE_PIPE] = ACTIONS(1059), + [anon_sym_AMP_AMP] = ACTIONS(1059), + [anon_sym_PIPE] = ACTIONS(1071), + [anon_sym_CARET] = ACTIONS(1071), + [anon_sym_EQ_EQ] = ACTIONS(1059), + [anon_sym_BANG_EQ] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(1071), + [anon_sym_GT] = ACTIONS(1071), + [anon_sym_LT_EQ] = ACTIONS(1059), + [anon_sym_GT_EQ] = ACTIONS(1059), + [anon_sym_LT_LT] = ACTIONS(1071), + [anon_sym_GT_GT] = ACTIONS(1071), + [anon_sym_PLUS] = ACTIONS(1071), + [anon_sym_DASH] = ACTIONS(1071), + [anon_sym_SLASH] = ACTIONS(1071), + [anon_sym_PERCENT] = ACTIONS(1071), + [anon_sym_DASH_DASH] = ACTIONS(1059), + [anon_sym_PLUS_PLUS] = ACTIONS(1059), + [anon_sym_DOT] = ACTIONS(1059), + [anon_sym_DASH_GT] = ACTIONS(1059), [sym_identifier] = ACTIONS(83), [sym_comment] = ACTIONS(39), }, [1135] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2464), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2464), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2464), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2464), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2464), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2464), - [sym_preproc_directive] = ACTIONS(2464), - [anon_sym_SEMI] = ACTIONS(2466), - [anon_sym_typedef] = ACTIONS(2464), - [anon_sym_extern] = ACTIONS(2464), - [anon_sym_LBRACE] = ACTIONS(2466), - [anon_sym_LPAREN2] = ACTIONS(2466), - [anon_sym_STAR] = ACTIONS(2466), - [anon_sym_static] = ACTIONS(2464), - [anon_sym_auto] = ACTIONS(2464), - [anon_sym_register] = ACTIONS(2464), - [anon_sym_inline] = ACTIONS(2464), - [anon_sym_const] = ACTIONS(2464), - [anon_sym_restrict] = ACTIONS(2464), - [anon_sym_volatile] = ACTIONS(2464), - [anon_sym__Atomic] = ACTIONS(2464), - [anon_sym_unsigned] = ACTIONS(2464), - [anon_sym_long] = ACTIONS(2464), - [anon_sym_short] = ACTIONS(2464), - [sym_primitive_type] = ACTIONS(2464), - [anon_sym_enum] = ACTIONS(2464), - [anon_sym_struct] = ACTIONS(2464), - [anon_sym_union] = ACTIONS(2464), - [anon_sym_if] = ACTIONS(2464), - [anon_sym_else] = ACTIONS(2464), - [anon_sym_switch] = ACTIONS(2464), - [anon_sym_case] = ACTIONS(2464), - [anon_sym_default] = ACTIONS(2464), - [anon_sym_while] = ACTIONS(2464), - [anon_sym_do] = ACTIONS(2464), - [anon_sym_for] = ACTIONS(2464), - [anon_sym_return] = ACTIONS(2464), - [anon_sym_break] = ACTIONS(2464), - [anon_sym_continue] = ACTIONS(2464), - [anon_sym_goto] = ACTIONS(2464), - [anon_sym_AMP] = ACTIONS(2466), - [anon_sym_BANG] = ACTIONS(2466), - [anon_sym_TILDE] = ACTIONS(2466), - [anon_sym_PLUS] = ACTIONS(2464), - [anon_sym_DASH] = ACTIONS(2464), - [anon_sym_DASH_DASH] = ACTIONS(2466), - [anon_sym_PLUS_PLUS] = ACTIONS(2466), - [anon_sym_sizeof] = ACTIONS(2464), - [sym_number_literal] = ACTIONS(2466), - [anon_sym_SQUOTE] = ACTIONS(2466), - [anon_sym_DQUOTE] = ACTIONS(2466), - [sym_true] = ACTIONS(2464), - [sym_false] = ACTIONS(2464), - [sym_null] = ACTIONS(2464), - [sym_identifier] = ACTIONS(2464), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2453), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2453), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2453), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2453), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2453), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2453), + [sym_preproc_directive] = ACTIONS(2453), + [anon_sym_SEMI] = ACTIONS(2455), + [anon_sym_typedef] = ACTIONS(2453), + [anon_sym_extern] = ACTIONS(2453), + [anon_sym_LBRACE] = ACTIONS(2455), + [anon_sym_LPAREN2] = ACTIONS(2455), + [anon_sym_STAR] = ACTIONS(2455), + [anon_sym_static] = ACTIONS(2453), + [anon_sym_auto] = ACTIONS(2453), + [anon_sym_register] = ACTIONS(2453), + [anon_sym_inline] = ACTIONS(2453), + [anon_sym_const] = ACTIONS(2453), + [anon_sym_restrict] = ACTIONS(2453), + [anon_sym_volatile] = ACTIONS(2453), + [anon_sym__Atomic] = ACTIONS(2453), + [anon_sym_unsigned] = ACTIONS(2453), + [anon_sym_long] = ACTIONS(2453), + [anon_sym_short] = ACTIONS(2453), + [sym_primitive_type] = ACTIONS(2453), + [anon_sym_enum] = ACTIONS(2453), + [anon_sym_struct] = ACTIONS(2453), + [anon_sym_union] = ACTIONS(2453), + [anon_sym_if] = ACTIONS(2453), + [anon_sym_else] = ACTIONS(2453), + [anon_sym_switch] = ACTIONS(2453), + [anon_sym_case] = ACTIONS(2453), + [anon_sym_default] = ACTIONS(2453), + [anon_sym_while] = ACTIONS(2453), + [anon_sym_do] = ACTIONS(2453), + [anon_sym_for] = ACTIONS(2453), + [anon_sym_return] = ACTIONS(2453), + [anon_sym_break] = ACTIONS(2453), + [anon_sym_continue] = ACTIONS(2453), + [anon_sym_goto] = ACTIONS(2453), + [anon_sym_AMP] = ACTIONS(2455), + [anon_sym_BANG] = ACTIONS(2455), + [anon_sym_TILDE] = ACTIONS(2455), + [anon_sym_PLUS] = ACTIONS(2453), + [anon_sym_DASH] = ACTIONS(2453), + [anon_sym_DASH_DASH] = ACTIONS(2455), + [anon_sym_PLUS_PLUS] = ACTIONS(2455), + [anon_sym_sizeof] = ACTIONS(2453), + [sym_number_literal] = ACTIONS(2455), + [anon_sym_SQUOTE] = ACTIONS(2455), + [anon_sym_DQUOTE] = ACTIONS(2455), + [sym_true] = ACTIONS(2453), + [sym_false] = ACTIONS(2453), + [sym_null] = ACTIONS(2453), + [sym_identifier] = ACTIONS(2453), [sym_comment] = ACTIONS(39), }, [1136] = { @@ -45014,71 +45033,71 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_array_declarator] = STATE(1027), [sym_init_declarator] = STATE(311), [anon_sym_LPAREN2] = ACTIONS(92), - [anon_sym_STAR] = ACTIONS(534), - [sym_identifier] = ACTIONS(2725), + [anon_sym_STAR] = ACTIONS(530), + [sym_identifier] = ACTIONS(2714), [sym_comment] = ACTIONS(39), }, [1137] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2468), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2468), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2468), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2468), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2468), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2468), - [sym_preproc_directive] = ACTIONS(2468), - [anon_sym_SEMI] = ACTIONS(2470), - [anon_sym_typedef] = ACTIONS(2468), - [anon_sym_extern] = ACTIONS(2468), - [anon_sym_LBRACE] = ACTIONS(2470), - [anon_sym_LPAREN2] = ACTIONS(2470), - [anon_sym_STAR] = ACTIONS(2470), - [anon_sym_static] = ACTIONS(2468), - [anon_sym_auto] = ACTIONS(2468), - [anon_sym_register] = ACTIONS(2468), - [anon_sym_inline] = ACTIONS(2468), - [anon_sym_const] = ACTIONS(2468), - [anon_sym_restrict] = ACTIONS(2468), - [anon_sym_volatile] = ACTIONS(2468), - [anon_sym__Atomic] = ACTIONS(2468), - [anon_sym_unsigned] = ACTIONS(2468), - [anon_sym_long] = ACTIONS(2468), - [anon_sym_short] = ACTIONS(2468), - [sym_primitive_type] = ACTIONS(2468), - [anon_sym_enum] = ACTIONS(2468), - [anon_sym_struct] = ACTIONS(2468), - [anon_sym_union] = ACTIONS(2468), - [anon_sym_if] = ACTIONS(2468), - [anon_sym_else] = ACTIONS(2468), - [anon_sym_switch] = ACTIONS(2468), - [anon_sym_case] = ACTIONS(2468), - [anon_sym_default] = ACTIONS(2468), - [anon_sym_while] = ACTIONS(2468), - [anon_sym_do] = ACTIONS(2468), - [anon_sym_for] = ACTIONS(2468), - [anon_sym_return] = ACTIONS(2468), - [anon_sym_break] = ACTIONS(2468), - [anon_sym_continue] = ACTIONS(2468), - [anon_sym_goto] = ACTIONS(2468), - [anon_sym_AMP] = ACTIONS(2470), - [anon_sym_BANG] = ACTIONS(2470), - [anon_sym_TILDE] = ACTIONS(2470), - [anon_sym_PLUS] = ACTIONS(2468), - [anon_sym_DASH] = ACTIONS(2468), - [anon_sym_DASH_DASH] = ACTIONS(2470), - [anon_sym_PLUS_PLUS] = ACTIONS(2470), - [anon_sym_sizeof] = ACTIONS(2468), - [sym_number_literal] = ACTIONS(2470), - [anon_sym_SQUOTE] = ACTIONS(2470), - [anon_sym_DQUOTE] = ACTIONS(2470), - [sym_true] = ACTIONS(2468), - [sym_false] = ACTIONS(2468), - [sym_null] = ACTIONS(2468), - [sym_identifier] = ACTIONS(2468), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2457), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2457), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2457), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2457), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2457), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2457), + [sym_preproc_directive] = ACTIONS(2457), + [anon_sym_SEMI] = ACTIONS(2459), + [anon_sym_typedef] = ACTIONS(2457), + [anon_sym_extern] = ACTIONS(2457), + [anon_sym_LBRACE] = ACTIONS(2459), + [anon_sym_LPAREN2] = ACTIONS(2459), + [anon_sym_STAR] = ACTIONS(2459), + [anon_sym_static] = ACTIONS(2457), + [anon_sym_auto] = ACTIONS(2457), + [anon_sym_register] = ACTIONS(2457), + [anon_sym_inline] = ACTIONS(2457), + [anon_sym_const] = ACTIONS(2457), + [anon_sym_restrict] = ACTIONS(2457), + [anon_sym_volatile] = ACTIONS(2457), + [anon_sym__Atomic] = ACTIONS(2457), + [anon_sym_unsigned] = ACTIONS(2457), + [anon_sym_long] = ACTIONS(2457), + [anon_sym_short] = ACTIONS(2457), + [sym_primitive_type] = ACTIONS(2457), + [anon_sym_enum] = ACTIONS(2457), + [anon_sym_struct] = ACTIONS(2457), + [anon_sym_union] = ACTIONS(2457), + [anon_sym_if] = ACTIONS(2457), + [anon_sym_else] = ACTIONS(2457), + [anon_sym_switch] = ACTIONS(2457), + [anon_sym_case] = ACTIONS(2457), + [anon_sym_default] = ACTIONS(2457), + [anon_sym_while] = ACTIONS(2457), + [anon_sym_do] = ACTIONS(2457), + [anon_sym_for] = ACTIONS(2457), + [anon_sym_return] = ACTIONS(2457), + [anon_sym_break] = ACTIONS(2457), + [anon_sym_continue] = ACTIONS(2457), + [anon_sym_goto] = ACTIONS(2457), + [anon_sym_AMP] = ACTIONS(2459), + [anon_sym_BANG] = ACTIONS(2459), + [anon_sym_TILDE] = ACTIONS(2459), + [anon_sym_PLUS] = ACTIONS(2457), + [anon_sym_DASH] = ACTIONS(2457), + [anon_sym_DASH_DASH] = ACTIONS(2459), + [anon_sym_PLUS_PLUS] = ACTIONS(2459), + [anon_sym_sizeof] = ACTIONS(2457), + [sym_number_literal] = ACTIONS(2459), + [anon_sym_SQUOTE] = ACTIONS(2459), + [anon_sym_DQUOTE] = ACTIONS(2459), + [sym_true] = ACTIONS(2457), + [sym_false] = ACTIONS(2457), + [sym_null] = ACTIONS(2457), + [sym_identifier] = ACTIONS(2457), [sym_comment] = ACTIONS(39), }, [1138] = { [sym_parenthesized_expression] = STATE(1211), - [anon_sym_LPAREN2] = ACTIONS(3323), + [anon_sym_LPAREN2] = ACTIONS(3312), [sym_comment] = ACTIONS(39), }, [1139] = { @@ -45102,247 +45121,247 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(1213), [sym_concatenated_string] = STATE(1213), [sym_string_literal] = STATE(376), - [anon_sym_SEMI] = ACTIONS(3325), - [anon_sym_LPAREN2] = ACTIONS(847), - [anon_sym_STAR] = ACTIONS(849), - [anon_sym_AMP] = ACTIONS(849), - [anon_sym_BANG] = ACTIONS(851), - [anon_sym_TILDE] = ACTIONS(853), - [anon_sym_PLUS] = ACTIONS(855), - [anon_sym_DASH] = ACTIONS(855), - [anon_sym_DASH_DASH] = ACTIONS(857), - [anon_sym_PLUS_PLUS] = ACTIONS(857), - [anon_sym_sizeof] = ACTIONS(859), - [sym_number_literal] = ACTIONS(3327), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(3329), - [sym_false] = ACTIONS(3329), - [sym_null] = ACTIONS(3329), - [sym_identifier] = ACTIONS(3329), + [anon_sym_SEMI] = ACTIONS(3314), + [anon_sym_LPAREN2] = ACTIONS(838), + [anon_sym_STAR] = ACTIONS(840), + [anon_sym_AMP] = ACTIONS(840), + [anon_sym_BANG] = ACTIONS(842), + [anon_sym_TILDE] = ACTIONS(844), + [anon_sym_PLUS] = ACTIONS(846), + [anon_sym_DASH] = ACTIONS(846), + [anon_sym_DASH_DASH] = ACTIONS(848), + [anon_sym_PLUS_PLUS] = ACTIONS(848), + [anon_sym_sizeof] = ACTIONS(850), + [sym_number_literal] = ACTIONS(3316), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(3318), + [sym_false] = ACTIONS(3318), + [sym_null] = ACTIONS(3318), + [sym_identifier] = ACTIONS(3318), [sym_comment] = ACTIONS(39), }, [1140] = { [sym_argument_list] = STATE(465), - [anon_sym_SEMI] = ACTIONS(3331), - [anon_sym_LPAREN2] = ACTIONS(1096), - [anon_sym_STAR] = ACTIONS(1436), - [anon_sym_LBRACK] = ACTIONS(1100), - [anon_sym_EQ] = ACTIONS(1438), - [anon_sym_QMARK] = ACTIONS(1440), - [anon_sym_STAR_EQ] = ACTIONS(1442), - [anon_sym_SLASH_EQ] = ACTIONS(1442), - [anon_sym_PERCENT_EQ] = ACTIONS(1442), - [anon_sym_PLUS_EQ] = ACTIONS(1442), - [anon_sym_DASH_EQ] = ACTIONS(1442), - [anon_sym_LT_LT_EQ] = ACTIONS(1442), - [anon_sym_GT_GT_EQ] = ACTIONS(1442), - [anon_sym_AMP_EQ] = ACTIONS(1442), - [anon_sym_CARET_EQ] = ACTIONS(1442), - [anon_sym_PIPE_EQ] = ACTIONS(1442), - [anon_sym_AMP] = ACTIONS(1444), - [anon_sym_PIPE_PIPE] = ACTIONS(1446), - [anon_sym_AMP_AMP] = ACTIONS(1448), - [anon_sym_PIPE] = ACTIONS(1450), - [anon_sym_CARET] = ACTIONS(1452), - [anon_sym_EQ_EQ] = ACTIONS(1454), - [anon_sym_BANG_EQ] = ACTIONS(1454), - [anon_sym_LT] = ACTIONS(1456), - [anon_sym_GT] = ACTIONS(1456), - [anon_sym_LT_EQ] = ACTIONS(1458), - [anon_sym_GT_EQ] = ACTIONS(1458), - [anon_sym_LT_LT] = ACTIONS(1460), - [anon_sym_GT_GT] = ACTIONS(1460), - [anon_sym_PLUS] = ACTIONS(1462), - [anon_sym_DASH] = ACTIONS(1462), - [anon_sym_SLASH] = ACTIONS(1436), - [anon_sym_PERCENT] = ACTIONS(1436), - [anon_sym_DASH_DASH] = ACTIONS(1128), - [anon_sym_PLUS_PLUS] = ACTIONS(1128), - [anon_sym_DOT] = ACTIONS(1130), - [anon_sym_DASH_GT] = ACTIONS(1130), + [anon_sym_SEMI] = ACTIONS(3320), + [anon_sym_LPAREN2] = ACTIONS(1089), + [anon_sym_STAR] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(1429), + [anon_sym_QMARK] = ACTIONS(1431), + [anon_sym_STAR_EQ] = ACTIONS(1433), + [anon_sym_SLASH_EQ] = ACTIONS(1433), + [anon_sym_PERCENT_EQ] = ACTIONS(1433), + [anon_sym_PLUS_EQ] = ACTIONS(1433), + [anon_sym_DASH_EQ] = ACTIONS(1433), + [anon_sym_LT_LT_EQ] = ACTIONS(1433), + [anon_sym_GT_GT_EQ] = ACTIONS(1433), + [anon_sym_AMP_EQ] = ACTIONS(1433), + [anon_sym_CARET_EQ] = ACTIONS(1433), + [anon_sym_PIPE_EQ] = ACTIONS(1433), + [anon_sym_AMP] = ACTIONS(1435), + [anon_sym_PIPE_PIPE] = ACTIONS(1437), + [anon_sym_AMP_AMP] = ACTIONS(1439), + [anon_sym_PIPE] = ACTIONS(1441), + [anon_sym_CARET] = ACTIONS(1443), + [anon_sym_EQ_EQ] = ACTIONS(1445), + [anon_sym_BANG_EQ] = ACTIONS(1445), + [anon_sym_LT] = ACTIONS(1447), + [anon_sym_GT] = ACTIONS(1447), + [anon_sym_LT_EQ] = ACTIONS(1449), + [anon_sym_GT_EQ] = ACTIONS(1449), + [anon_sym_LT_LT] = ACTIONS(1451), + [anon_sym_GT_GT] = ACTIONS(1451), + [anon_sym_PLUS] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1453), + [anon_sym_SLASH] = ACTIONS(1427), + [anon_sym_PERCENT] = ACTIONS(1427), + [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_PLUS_PLUS] = ACTIONS(1121), + [anon_sym_DOT] = ACTIONS(1123), + [anon_sym_DASH_GT] = ACTIONS(1123), [sym_comment] = ACTIONS(39), }, [1141] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2506), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2506), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2506), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2506), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2506), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2506), - [sym_preproc_directive] = ACTIONS(2506), - [anon_sym_SEMI] = ACTIONS(2508), - [anon_sym_typedef] = ACTIONS(2506), - [anon_sym_extern] = ACTIONS(2506), - [anon_sym_LBRACE] = ACTIONS(2508), - [anon_sym_LPAREN2] = ACTIONS(2508), - [anon_sym_STAR] = ACTIONS(2508), - [anon_sym_static] = ACTIONS(2506), - [anon_sym_auto] = ACTIONS(2506), - [anon_sym_register] = ACTIONS(2506), - [anon_sym_inline] = ACTIONS(2506), - [anon_sym_const] = ACTIONS(2506), - [anon_sym_restrict] = ACTIONS(2506), - [anon_sym_volatile] = ACTIONS(2506), - [anon_sym__Atomic] = ACTIONS(2506), - [anon_sym_unsigned] = ACTIONS(2506), - [anon_sym_long] = ACTIONS(2506), - [anon_sym_short] = ACTIONS(2506), - [sym_primitive_type] = ACTIONS(2506), - [anon_sym_enum] = ACTIONS(2506), - [anon_sym_struct] = ACTIONS(2506), - [anon_sym_union] = ACTIONS(2506), - [anon_sym_if] = ACTIONS(2506), - [anon_sym_else] = ACTIONS(2506), - [anon_sym_switch] = ACTIONS(2506), - [anon_sym_case] = ACTIONS(2506), - [anon_sym_default] = ACTIONS(2506), - [anon_sym_while] = ACTIONS(2506), - [anon_sym_do] = ACTIONS(2506), - [anon_sym_for] = ACTIONS(2506), - [anon_sym_return] = ACTIONS(2506), - [anon_sym_break] = ACTIONS(2506), - [anon_sym_continue] = ACTIONS(2506), - [anon_sym_goto] = ACTIONS(2506), - [anon_sym_AMP] = ACTIONS(2508), - [anon_sym_BANG] = ACTIONS(2508), - [anon_sym_TILDE] = ACTIONS(2508), - [anon_sym_PLUS] = ACTIONS(2506), - [anon_sym_DASH] = ACTIONS(2506), - [anon_sym_DASH_DASH] = ACTIONS(2508), - [anon_sym_PLUS_PLUS] = ACTIONS(2508), - [anon_sym_sizeof] = ACTIONS(2506), - [sym_number_literal] = ACTIONS(2508), - [anon_sym_SQUOTE] = ACTIONS(2508), - [anon_sym_DQUOTE] = ACTIONS(2508), - [sym_true] = ACTIONS(2506), - [sym_false] = ACTIONS(2506), - [sym_null] = ACTIONS(2506), - [sym_identifier] = ACTIONS(2506), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2495), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2495), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2495), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2495), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2495), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2495), + [sym_preproc_directive] = ACTIONS(2495), + [anon_sym_SEMI] = ACTIONS(2497), + [anon_sym_typedef] = ACTIONS(2495), + [anon_sym_extern] = ACTIONS(2495), + [anon_sym_LBRACE] = ACTIONS(2497), + [anon_sym_LPAREN2] = ACTIONS(2497), + [anon_sym_STAR] = ACTIONS(2497), + [anon_sym_static] = ACTIONS(2495), + [anon_sym_auto] = ACTIONS(2495), + [anon_sym_register] = ACTIONS(2495), + [anon_sym_inline] = ACTIONS(2495), + [anon_sym_const] = ACTIONS(2495), + [anon_sym_restrict] = ACTIONS(2495), + [anon_sym_volatile] = ACTIONS(2495), + [anon_sym__Atomic] = ACTIONS(2495), + [anon_sym_unsigned] = ACTIONS(2495), + [anon_sym_long] = ACTIONS(2495), + [anon_sym_short] = ACTIONS(2495), + [sym_primitive_type] = ACTIONS(2495), + [anon_sym_enum] = ACTIONS(2495), + [anon_sym_struct] = ACTIONS(2495), + [anon_sym_union] = ACTIONS(2495), + [anon_sym_if] = ACTIONS(2495), + [anon_sym_else] = ACTIONS(2495), + [anon_sym_switch] = ACTIONS(2495), + [anon_sym_case] = ACTIONS(2495), + [anon_sym_default] = ACTIONS(2495), + [anon_sym_while] = ACTIONS(2495), + [anon_sym_do] = ACTIONS(2495), + [anon_sym_for] = ACTIONS(2495), + [anon_sym_return] = ACTIONS(2495), + [anon_sym_break] = ACTIONS(2495), + [anon_sym_continue] = ACTIONS(2495), + [anon_sym_goto] = ACTIONS(2495), + [anon_sym_AMP] = ACTIONS(2497), + [anon_sym_BANG] = ACTIONS(2497), + [anon_sym_TILDE] = ACTIONS(2497), + [anon_sym_PLUS] = ACTIONS(2495), + [anon_sym_DASH] = ACTIONS(2495), + [anon_sym_DASH_DASH] = ACTIONS(2497), + [anon_sym_PLUS_PLUS] = ACTIONS(2497), + [anon_sym_sizeof] = ACTIONS(2495), + [sym_number_literal] = ACTIONS(2497), + [anon_sym_SQUOTE] = ACTIONS(2497), + [anon_sym_DQUOTE] = ACTIONS(2497), + [sym_true] = ACTIONS(2495), + [sym_false] = ACTIONS(2495), + [sym_null] = ACTIONS(2495), + [sym_identifier] = ACTIONS(2495), [sym_comment] = ACTIONS(39), }, [1142] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2510), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2510), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2510), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2510), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2510), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2510), - [sym_preproc_directive] = ACTIONS(2510), - [anon_sym_SEMI] = ACTIONS(2512), - [anon_sym_typedef] = ACTIONS(2510), - [anon_sym_extern] = ACTIONS(2510), - [anon_sym_LBRACE] = ACTIONS(2512), - [anon_sym_LPAREN2] = ACTIONS(2512), - [anon_sym_STAR] = ACTIONS(2512), - [anon_sym_static] = ACTIONS(2510), - [anon_sym_auto] = ACTIONS(2510), - [anon_sym_register] = ACTIONS(2510), - [anon_sym_inline] = ACTIONS(2510), - [anon_sym_const] = ACTIONS(2510), - [anon_sym_restrict] = ACTIONS(2510), - [anon_sym_volatile] = ACTIONS(2510), - [anon_sym__Atomic] = ACTIONS(2510), - [anon_sym_unsigned] = ACTIONS(2510), - [anon_sym_long] = ACTIONS(2510), - [anon_sym_short] = ACTIONS(2510), - [sym_primitive_type] = ACTIONS(2510), - [anon_sym_enum] = ACTIONS(2510), - [anon_sym_struct] = ACTIONS(2510), - [anon_sym_union] = ACTIONS(2510), - [anon_sym_if] = ACTIONS(2510), - [anon_sym_else] = ACTIONS(2510), - [anon_sym_switch] = ACTIONS(2510), - [anon_sym_case] = ACTIONS(2510), - [anon_sym_default] = ACTIONS(2510), - [anon_sym_while] = ACTIONS(2510), - [anon_sym_do] = ACTIONS(2510), - [anon_sym_for] = ACTIONS(2510), - [anon_sym_return] = ACTIONS(2510), - [anon_sym_break] = ACTIONS(2510), - [anon_sym_continue] = ACTIONS(2510), - [anon_sym_goto] = ACTIONS(2510), - [anon_sym_AMP] = ACTIONS(2512), - [anon_sym_BANG] = ACTIONS(2512), - [anon_sym_TILDE] = ACTIONS(2512), - [anon_sym_PLUS] = ACTIONS(2510), - [anon_sym_DASH] = ACTIONS(2510), - [anon_sym_DASH_DASH] = ACTIONS(2512), - [anon_sym_PLUS_PLUS] = ACTIONS(2512), - [anon_sym_sizeof] = ACTIONS(2510), - [sym_number_literal] = ACTIONS(2512), - [anon_sym_SQUOTE] = ACTIONS(2512), - [anon_sym_DQUOTE] = ACTIONS(2512), - [sym_true] = ACTIONS(2510), - [sym_false] = ACTIONS(2510), - [sym_null] = ACTIONS(2510), - [sym_identifier] = ACTIONS(2510), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2499), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2499), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2499), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2499), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2499), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2499), + [sym_preproc_directive] = ACTIONS(2499), + [anon_sym_SEMI] = ACTIONS(2501), + [anon_sym_typedef] = ACTIONS(2499), + [anon_sym_extern] = ACTIONS(2499), + [anon_sym_LBRACE] = ACTIONS(2501), + [anon_sym_LPAREN2] = ACTIONS(2501), + [anon_sym_STAR] = ACTIONS(2501), + [anon_sym_static] = ACTIONS(2499), + [anon_sym_auto] = ACTIONS(2499), + [anon_sym_register] = ACTIONS(2499), + [anon_sym_inline] = ACTIONS(2499), + [anon_sym_const] = ACTIONS(2499), + [anon_sym_restrict] = ACTIONS(2499), + [anon_sym_volatile] = ACTIONS(2499), + [anon_sym__Atomic] = ACTIONS(2499), + [anon_sym_unsigned] = ACTIONS(2499), + [anon_sym_long] = ACTIONS(2499), + [anon_sym_short] = ACTIONS(2499), + [sym_primitive_type] = ACTIONS(2499), + [anon_sym_enum] = ACTIONS(2499), + [anon_sym_struct] = ACTIONS(2499), + [anon_sym_union] = ACTIONS(2499), + [anon_sym_if] = ACTIONS(2499), + [anon_sym_else] = ACTIONS(2499), + [anon_sym_switch] = ACTIONS(2499), + [anon_sym_case] = ACTIONS(2499), + [anon_sym_default] = ACTIONS(2499), + [anon_sym_while] = ACTIONS(2499), + [anon_sym_do] = ACTIONS(2499), + [anon_sym_for] = ACTIONS(2499), + [anon_sym_return] = ACTIONS(2499), + [anon_sym_break] = ACTIONS(2499), + [anon_sym_continue] = ACTIONS(2499), + [anon_sym_goto] = ACTIONS(2499), + [anon_sym_AMP] = ACTIONS(2501), + [anon_sym_BANG] = ACTIONS(2501), + [anon_sym_TILDE] = ACTIONS(2501), + [anon_sym_PLUS] = ACTIONS(2499), + [anon_sym_DASH] = ACTIONS(2499), + [anon_sym_DASH_DASH] = ACTIONS(2501), + [anon_sym_PLUS_PLUS] = ACTIONS(2501), + [anon_sym_sizeof] = ACTIONS(2499), + [sym_number_literal] = ACTIONS(2501), + [anon_sym_SQUOTE] = ACTIONS(2501), + [anon_sym_DQUOTE] = ACTIONS(2501), + [sym_true] = ACTIONS(2499), + [sym_false] = ACTIONS(2499), + [sym_null] = ACTIONS(2499), + [sym_identifier] = ACTIONS(2499), [sym_comment] = ACTIONS(39), }, [1143] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2520), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2520), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2520), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2520), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2520), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2520), - [sym_preproc_directive] = ACTIONS(2520), - [anon_sym_SEMI] = ACTIONS(2522), - [anon_sym_typedef] = ACTIONS(2520), - [anon_sym_extern] = ACTIONS(2520), - [anon_sym_LBRACE] = ACTIONS(2522), - [anon_sym_LPAREN2] = ACTIONS(2522), - [anon_sym_STAR] = ACTIONS(2522), - [anon_sym_static] = ACTIONS(2520), - [anon_sym_auto] = ACTIONS(2520), - [anon_sym_register] = ACTIONS(2520), - [anon_sym_inline] = ACTIONS(2520), - [anon_sym_const] = ACTIONS(2520), - [anon_sym_restrict] = ACTIONS(2520), - [anon_sym_volatile] = ACTIONS(2520), - [anon_sym__Atomic] = ACTIONS(2520), - [anon_sym_unsigned] = ACTIONS(2520), - [anon_sym_long] = ACTIONS(2520), - [anon_sym_short] = ACTIONS(2520), - [sym_primitive_type] = ACTIONS(2520), - [anon_sym_enum] = ACTIONS(2520), - [anon_sym_struct] = ACTIONS(2520), - [anon_sym_union] = ACTIONS(2520), - [anon_sym_if] = ACTIONS(2520), - [anon_sym_else] = ACTIONS(2520), - [anon_sym_switch] = ACTIONS(2520), - [anon_sym_case] = ACTIONS(2520), - [anon_sym_default] = ACTIONS(2520), - [anon_sym_while] = ACTIONS(2520), - [anon_sym_do] = ACTIONS(2520), - [anon_sym_for] = ACTIONS(2520), - [anon_sym_return] = ACTIONS(2520), - [anon_sym_break] = ACTIONS(2520), - [anon_sym_continue] = ACTIONS(2520), - [anon_sym_goto] = ACTIONS(2520), - [anon_sym_AMP] = ACTIONS(2522), - [anon_sym_BANG] = ACTIONS(2522), - [anon_sym_TILDE] = ACTIONS(2522), - [anon_sym_PLUS] = ACTIONS(2520), - [anon_sym_DASH] = ACTIONS(2520), - [anon_sym_DASH_DASH] = ACTIONS(2522), - [anon_sym_PLUS_PLUS] = ACTIONS(2522), - [anon_sym_sizeof] = ACTIONS(2520), - [sym_number_literal] = ACTIONS(2522), - [anon_sym_SQUOTE] = ACTIONS(2522), - [anon_sym_DQUOTE] = ACTIONS(2522), - [sym_true] = ACTIONS(2520), - [sym_false] = ACTIONS(2520), - [sym_null] = ACTIONS(2520), - [sym_identifier] = ACTIONS(2520), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2509), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2509), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2509), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2509), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2509), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2509), + [sym_preproc_directive] = ACTIONS(2509), + [anon_sym_SEMI] = ACTIONS(2511), + [anon_sym_typedef] = ACTIONS(2509), + [anon_sym_extern] = ACTIONS(2509), + [anon_sym_LBRACE] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(2511), + [anon_sym_static] = ACTIONS(2509), + [anon_sym_auto] = ACTIONS(2509), + [anon_sym_register] = ACTIONS(2509), + [anon_sym_inline] = ACTIONS(2509), + [anon_sym_const] = ACTIONS(2509), + [anon_sym_restrict] = ACTIONS(2509), + [anon_sym_volatile] = ACTIONS(2509), + [anon_sym__Atomic] = ACTIONS(2509), + [anon_sym_unsigned] = ACTIONS(2509), + [anon_sym_long] = ACTIONS(2509), + [anon_sym_short] = ACTIONS(2509), + [sym_primitive_type] = ACTIONS(2509), + [anon_sym_enum] = ACTIONS(2509), + [anon_sym_struct] = ACTIONS(2509), + [anon_sym_union] = ACTIONS(2509), + [anon_sym_if] = ACTIONS(2509), + [anon_sym_else] = ACTIONS(2509), + [anon_sym_switch] = ACTIONS(2509), + [anon_sym_case] = ACTIONS(2509), + [anon_sym_default] = ACTIONS(2509), + [anon_sym_while] = ACTIONS(2509), + [anon_sym_do] = ACTIONS(2509), + [anon_sym_for] = ACTIONS(2509), + [anon_sym_return] = ACTIONS(2509), + [anon_sym_break] = ACTIONS(2509), + [anon_sym_continue] = ACTIONS(2509), + [anon_sym_goto] = ACTIONS(2509), + [anon_sym_AMP] = ACTIONS(2511), + [anon_sym_BANG] = ACTIONS(2511), + [anon_sym_TILDE] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2509), + [anon_sym_DASH] = ACTIONS(2509), + [anon_sym_DASH_DASH] = ACTIONS(2511), + [anon_sym_PLUS_PLUS] = ACTIONS(2511), + [anon_sym_sizeof] = ACTIONS(2509), + [sym_number_literal] = ACTIONS(2511), + [anon_sym_SQUOTE] = ACTIONS(2511), + [anon_sym_DQUOTE] = ACTIONS(2511), + [sym_true] = ACTIONS(2509), + [sym_false] = ACTIONS(2509), + [sym_null] = ACTIONS(2509), + [sym_identifier] = ACTIONS(2509), [sym_comment] = ACTIONS(39), }, [1144] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3333), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3322), [sym_comment] = ACTIONS(39), }, [1145] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3335), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3324), [sym_comment] = ACTIONS(39), }, [1146] = { @@ -45380,36 +45399,36 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(649), [sym_concatenated_string] = STATE(649), [sym_string_literal] = STATE(253), - [anon_sym_SEMI] = ACTIONS(1516), - [anon_sym_LBRACE] = ACTIONS(734), - [anon_sym_LPAREN2] = ACTIONS(554), - [anon_sym_STAR] = ACTIONS(556), - [anon_sym_if] = ACTIONS(2733), - [anon_sym_switch] = ACTIONS(2735), - [anon_sym_case] = ACTIONS(2737), - [anon_sym_default] = ACTIONS(2739), - [anon_sym_while] = ACTIONS(2741), - [anon_sym_do] = ACTIONS(1528), - [anon_sym_for] = ACTIONS(2743), - [anon_sym_return] = ACTIONS(1532), - [anon_sym_break] = ACTIONS(1534), - [anon_sym_continue] = ACTIONS(1536), - [anon_sym_goto] = ACTIONS(1538), - [anon_sym_AMP] = ACTIONS(556), - [anon_sym_BANG] = ACTIONS(580), - [anon_sym_TILDE] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_DASH_DASH] = ACTIONS(586), - [anon_sym_PLUS_PLUS] = ACTIONS(586), - [anon_sym_sizeof] = ACTIONS(588), - [sym_number_literal] = ACTIONS(1540), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1542), - [sym_false] = ACTIONS(1542), - [sym_null] = ACTIONS(1542), - [sym_identifier] = ACTIONS(2745), + [anon_sym_SEMI] = ACTIONS(1505), + [anon_sym_LBRACE] = ACTIONS(725), + [anon_sym_LPAREN2] = ACTIONS(550), + [anon_sym_STAR] = ACTIONS(552), + [anon_sym_if] = ACTIONS(2722), + [anon_sym_switch] = ACTIONS(2724), + [anon_sym_case] = ACTIONS(2726), + [anon_sym_default] = ACTIONS(2728), + [anon_sym_while] = ACTIONS(2730), + [anon_sym_do] = ACTIONS(1517), + [anon_sym_for] = ACTIONS(2732), + [anon_sym_return] = ACTIONS(1521), + [anon_sym_break] = ACTIONS(1523), + [anon_sym_continue] = ACTIONS(1525), + [anon_sym_goto] = ACTIONS(1527), + [anon_sym_AMP] = ACTIONS(552), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_TILDE] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(580), + [anon_sym_DASH] = ACTIONS(580), + [anon_sym_DASH_DASH] = ACTIONS(582), + [anon_sym_PLUS_PLUS] = ACTIONS(582), + [anon_sym_sizeof] = ACTIONS(584), + [sym_number_literal] = ACTIONS(1529), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_null] = ACTIONS(1531), + [sym_identifier] = ACTIONS(2734), [sym_comment] = ACTIONS(39), }, [1147] = { @@ -45447,77 +45466,77 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(649), [sym_concatenated_string] = STATE(649), [sym_string_literal] = STATE(253), - [anon_sym_SEMI] = ACTIONS(1516), - [anon_sym_LBRACE] = ACTIONS(734), - [anon_sym_LPAREN2] = ACTIONS(554), - [anon_sym_STAR] = ACTIONS(556), - [anon_sym_if] = ACTIONS(2733), - [anon_sym_switch] = ACTIONS(2735), - [anon_sym_case] = ACTIONS(2737), - [anon_sym_default] = ACTIONS(2739), - [anon_sym_while] = ACTIONS(2741), - [anon_sym_do] = ACTIONS(1528), - [anon_sym_for] = ACTIONS(2743), - [anon_sym_return] = ACTIONS(1532), - [anon_sym_break] = ACTIONS(1534), - [anon_sym_continue] = ACTIONS(1536), - [anon_sym_goto] = ACTIONS(1538), - [anon_sym_AMP] = ACTIONS(556), - [anon_sym_BANG] = ACTIONS(580), - [anon_sym_TILDE] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_DASH_DASH] = ACTIONS(586), - [anon_sym_PLUS_PLUS] = ACTIONS(586), - [anon_sym_sizeof] = ACTIONS(588), - [sym_number_literal] = ACTIONS(1540), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1542), - [sym_false] = ACTIONS(1542), - [sym_null] = ACTIONS(1542), - [sym_identifier] = ACTIONS(2745), + [anon_sym_SEMI] = ACTIONS(1505), + [anon_sym_LBRACE] = ACTIONS(725), + [anon_sym_LPAREN2] = ACTIONS(550), + [anon_sym_STAR] = ACTIONS(552), + [anon_sym_if] = ACTIONS(2722), + [anon_sym_switch] = ACTIONS(2724), + [anon_sym_case] = ACTIONS(2726), + [anon_sym_default] = ACTIONS(2728), + [anon_sym_while] = ACTIONS(2730), + [anon_sym_do] = ACTIONS(1517), + [anon_sym_for] = ACTIONS(2732), + [anon_sym_return] = ACTIONS(1521), + [anon_sym_break] = ACTIONS(1523), + [anon_sym_continue] = ACTIONS(1525), + [anon_sym_goto] = ACTIONS(1527), + [anon_sym_AMP] = ACTIONS(552), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_TILDE] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(580), + [anon_sym_DASH] = ACTIONS(580), + [anon_sym_DASH_DASH] = ACTIONS(582), + [anon_sym_PLUS_PLUS] = ACTIONS(582), + [anon_sym_sizeof] = ACTIONS(584), + [sym_number_literal] = ACTIONS(1529), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_null] = ACTIONS(1531), + [sym_identifier] = ACTIONS(2734), [sym_comment] = ACTIONS(39), }, [1148] = { [sym_argument_list] = STATE(465), - [anon_sym_LPAREN2] = ACTIONS(1096), - [anon_sym_STAR] = ACTIONS(1620), - [anon_sym_LBRACK] = ACTIONS(1100), - [anon_sym_EQ] = ACTIONS(1622), - [anon_sym_COLON] = ACTIONS(3337), - [anon_sym_QMARK] = ACTIONS(1626), - [anon_sym_STAR_EQ] = ACTIONS(1628), - [anon_sym_SLASH_EQ] = ACTIONS(1628), - [anon_sym_PERCENT_EQ] = ACTIONS(1628), - [anon_sym_PLUS_EQ] = ACTIONS(1628), - [anon_sym_DASH_EQ] = ACTIONS(1628), - [anon_sym_LT_LT_EQ] = ACTIONS(1628), - [anon_sym_GT_GT_EQ] = ACTIONS(1628), - [anon_sym_AMP_EQ] = ACTIONS(1628), - [anon_sym_CARET_EQ] = ACTIONS(1628), - [anon_sym_PIPE_EQ] = ACTIONS(1628), - [anon_sym_AMP] = ACTIONS(1630), - [anon_sym_PIPE_PIPE] = ACTIONS(1632), - [anon_sym_AMP_AMP] = ACTIONS(1634), - [anon_sym_PIPE] = ACTIONS(1636), - [anon_sym_CARET] = ACTIONS(1638), - [anon_sym_EQ_EQ] = ACTIONS(1640), - [anon_sym_BANG_EQ] = ACTIONS(1640), - [anon_sym_LT] = ACTIONS(1642), - [anon_sym_GT] = ACTIONS(1642), - [anon_sym_LT_EQ] = ACTIONS(1644), - [anon_sym_GT_EQ] = ACTIONS(1644), - [anon_sym_LT_LT] = ACTIONS(1646), - [anon_sym_GT_GT] = ACTIONS(1646), - [anon_sym_PLUS] = ACTIONS(1648), - [anon_sym_DASH] = ACTIONS(1648), - [anon_sym_SLASH] = ACTIONS(1620), - [anon_sym_PERCENT] = ACTIONS(1620), - [anon_sym_DASH_DASH] = ACTIONS(1128), - [anon_sym_PLUS_PLUS] = ACTIONS(1128), - [anon_sym_DOT] = ACTIONS(1130), - [anon_sym_DASH_GT] = ACTIONS(1130), + [anon_sym_LPAREN2] = ACTIONS(1089), + [anon_sym_STAR] = ACTIONS(1609), + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(1611), + [anon_sym_COLON] = ACTIONS(3326), + [anon_sym_QMARK] = ACTIONS(1615), + [anon_sym_STAR_EQ] = ACTIONS(1617), + [anon_sym_SLASH_EQ] = ACTIONS(1617), + [anon_sym_PERCENT_EQ] = ACTIONS(1617), + [anon_sym_PLUS_EQ] = ACTIONS(1617), + [anon_sym_DASH_EQ] = ACTIONS(1617), + [anon_sym_LT_LT_EQ] = ACTIONS(1617), + [anon_sym_GT_GT_EQ] = ACTIONS(1617), + [anon_sym_AMP_EQ] = ACTIONS(1617), + [anon_sym_CARET_EQ] = ACTIONS(1617), + [anon_sym_PIPE_EQ] = ACTIONS(1617), + [anon_sym_AMP] = ACTIONS(1619), + [anon_sym_PIPE_PIPE] = ACTIONS(1621), + [anon_sym_AMP_AMP] = ACTIONS(1623), + [anon_sym_PIPE] = ACTIONS(1625), + [anon_sym_CARET] = ACTIONS(1627), + [anon_sym_EQ_EQ] = ACTIONS(1629), + [anon_sym_BANG_EQ] = ACTIONS(1629), + [anon_sym_LT] = ACTIONS(1631), + [anon_sym_GT] = ACTIONS(1631), + [anon_sym_LT_EQ] = ACTIONS(1633), + [anon_sym_GT_EQ] = ACTIONS(1633), + [anon_sym_LT_LT] = ACTIONS(1635), + [anon_sym_GT_GT] = ACTIONS(1635), + [anon_sym_PLUS] = ACTIONS(1637), + [anon_sym_DASH] = ACTIONS(1637), + [anon_sym_SLASH] = ACTIONS(1609), + [anon_sym_PERCENT] = ACTIONS(1609), + [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_PLUS_PLUS] = ACTIONS(1121), + [anon_sym_DOT] = ACTIONS(1123), + [anon_sym_DASH_GT] = ACTIONS(1123), [sym_comment] = ACTIONS(39), }, [1149] = { @@ -45568,12 +45587,12 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_macro_type_specifier] = STATE(95), [aux_sym__declaration_specifiers_repeat1] = STATE(96), [aux_sym_sized_type_specifier_repeat1] = STATE(97), - [anon_sym_SEMI] = ACTIONS(1516), - [anon_sym_typedef] = ACTIONS(151), + [anon_sym_SEMI] = ACTIONS(1505), + [anon_sym_typedef] = ACTIONS(149), [anon_sym_extern] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(734), - [anon_sym_LPAREN2] = ACTIONS(554), - [anon_sym_STAR] = ACTIONS(556), + [anon_sym_LBRACE] = ACTIONS(725), + [anon_sym_LPAREN2] = ACTIONS(550), + [anon_sym_STAR] = ACTIONS(552), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -45582,39 +45601,39 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_restrict] = ACTIONS(25), [anon_sym_volatile] = ACTIONS(25), [anon_sym__Atomic] = ACTIONS(25), - [anon_sym_unsigned] = ACTIONS(177), - [anon_sym_long] = ACTIONS(177), - [anon_sym_short] = ACTIONS(177), - [sym_primitive_type] = ACTIONS(179), + [anon_sym_unsigned] = ACTIONS(175), + [anon_sym_long] = ACTIONS(175), + [anon_sym_short] = ACTIONS(175), + [sym_primitive_type] = ACTIONS(177), [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), - [anon_sym_if] = ACTIONS(2733), - [anon_sym_switch] = ACTIONS(2735), - [anon_sym_case] = ACTIONS(2737), - [anon_sym_default] = ACTIONS(2739), - [anon_sym_while] = ACTIONS(2741), - [anon_sym_do] = ACTIONS(1528), - [anon_sym_for] = ACTIONS(2743), - [anon_sym_return] = ACTIONS(1532), - [anon_sym_break] = ACTIONS(1534), - [anon_sym_continue] = ACTIONS(1536), - [anon_sym_goto] = ACTIONS(1538), - [anon_sym_AMP] = ACTIONS(556), - [anon_sym_BANG] = ACTIONS(580), - [anon_sym_TILDE] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_DASH_DASH] = ACTIONS(586), - [anon_sym_PLUS_PLUS] = ACTIONS(586), - [anon_sym_sizeof] = ACTIONS(588), - [sym_number_literal] = ACTIONS(1540), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1542), - [sym_false] = ACTIONS(1542), - [sym_null] = ACTIONS(1542), - [sym_identifier] = ACTIONS(3339), + [anon_sym_if] = ACTIONS(2722), + [anon_sym_switch] = ACTIONS(2724), + [anon_sym_case] = ACTIONS(2726), + [anon_sym_default] = ACTIONS(2728), + [anon_sym_while] = ACTIONS(2730), + [anon_sym_do] = ACTIONS(1517), + [anon_sym_for] = ACTIONS(2732), + [anon_sym_return] = ACTIONS(1521), + [anon_sym_break] = ACTIONS(1523), + [anon_sym_continue] = ACTIONS(1525), + [anon_sym_goto] = ACTIONS(1527), + [anon_sym_AMP] = ACTIONS(552), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_TILDE] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(580), + [anon_sym_DASH] = ACTIONS(580), + [anon_sym_DASH_DASH] = ACTIONS(582), + [anon_sym_PLUS_PLUS] = ACTIONS(582), + [anon_sym_sizeof] = ACTIONS(584), + [sym_number_literal] = ACTIONS(1529), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_null] = ACTIONS(1531), + [sym_identifier] = ACTIONS(3328), [sym_comment] = ACTIONS(39), }, [1150] = { @@ -45652,36 +45671,36 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(649), [sym_concatenated_string] = STATE(649), [sym_string_literal] = STATE(253), - [anon_sym_SEMI] = ACTIONS(1516), - [anon_sym_LBRACE] = ACTIONS(734), - [anon_sym_LPAREN2] = ACTIONS(554), - [anon_sym_STAR] = ACTIONS(556), - [anon_sym_if] = ACTIONS(2733), - [anon_sym_switch] = ACTIONS(2735), - [anon_sym_case] = ACTIONS(2737), - [anon_sym_default] = ACTIONS(2739), - [anon_sym_while] = ACTIONS(2741), - [anon_sym_do] = ACTIONS(1528), - [anon_sym_for] = ACTIONS(2743), - [anon_sym_return] = ACTIONS(1532), - [anon_sym_break] = ACTIONS(1534), - [anon_sym_continue] = ACTIONS(1536), - [anon_sym_goto] = ACTIONS(1538), - [anon_sym_AMP] = ACTIONS(556), - [anon_sym_BANG] = ACTIONS(580), - [anon_sym_TILDE] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_DASH_DASH] = ACTIONS(586), - [anon_sym_PLUS_PLUS] = ACTIONS(586), - [anon_sym_sizeof] = ACTIONS(588), - [sym_number_literal] = ACTIONS(1540), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1542), - [sym_false] = ACTIONS(1542), - [sym_null] = ACTIONS(1542), - [sym_identifier] = ACTIONS(2745), + [anon_sym_SEMI] = ACTIONS(1505), + [anon_sym_LBRACE] = ACTIONS(725), + [anon_sym_LPAREN2] = ACTIONS(550), + [anon_sym_STAR] = ACTIONS(552), + [anon_sym_if] = ACTIONS(2722), + [anon_sym_switch] = ACTIONS(2724), + [anon_sym_case] = ACTIONS(2726), + [anon_sym_default] = ACTIONS(2728), + [anon_sym_while] = ACTIONS(2730), + [anon_sym_do] = ACTIONS(1517), + [anon_sym_for] = ACTIONS(2732), + [anon_sym_return] = ACTIONS(1521), + [anon_sym_break] = ACTIONS(1523), + [anon_sym_continue] = ACTIONS(1525), + [anon_sym_goto] = ACTIONS(1527), + [anon_sym_AMP] = ACTIONS(552), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_TILDE] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(580), + [anon_sym_DASH] = ACTIONS(580), + [anon_sym_DASH_DASH] = ACTIONS(582), + [anon_sym_PLUS_PLUS] = ACTIONS(582), + [anon_sym_sizeof] = ACTIONS(584), + [sym_number_literal] = ACTIONS(1529), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_null] = ACTIONS(1531), + [sym_identifier] = ACTIONS(2734), [sym_comment] = ACTIONS(39), }, [1151] = { @@ -45717,10 +45736,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_macro_type_specifier] = STATE(95), [aux_sym__declaration_specifiers_repeat1] = STATE(96), [aux_sym_sized_type_specifier_repeat1] = STATE(97), - [anon_sym_SEMI] = ACTIONS(3341), + [anon_sym_SEMI] = ACTIONS(3330), [anon_sym_extern] = ACTIONS(23), - [anon_sym_LPAREN2] = ACTIONS(847), - [anon_sym_STAR] = ACTIONS(849), + [anon_sym_LPAREN2] = ACTIONS(838), + [anon_sym_STAR] = ACTIONS(840), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -45729,28 +45748,28 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_restrict] = ACTIONS(25), [anon_sym_volatile] = ACTIONS(25), [anon_sym__Atomic] = ACTIONS(25), - [anon_sym_unsigned] = ACTIONS(177), - [anon_sym_long] = ACTIONS(177), - [anon_sym_short] = ACTIONS(177), - [sym_primitive_type] = ACTIONS(179), + [anon_sym_unsigned] = ACTIONS(175), + [anon_sym_long] = ACTIONS(175), + [anon_sym_short] = ACTIONS(175), + [sym_primitive_type] = ACTIONS(177), [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), - [anon_sym_AMP] = ACTIONS(849), - [anon_sym_BANG] = ACTIONS(851), - [anon_sym_TILDE] = ACTIONS(853), - [anon_sym_PLUS] = ACTIONS(855), - [anon_sym_DASH] = ACTIONS(855), - [anon_sym_DASH_DASH] = ACTIONS(857), - [anon_sym_PLUS_PLUS] = ACTIONS(857), - [anon_sym_sizeof] = ACTIONS(859), - [sym_number_literal] = ACTIONS(3343), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(3345), - [sym_false] = ACTIONS(3345), - [sym_null] = ACTIONS(3345), - [sym_identifier] = ACTIONS(1670), + [anon_sym_AMP] = ACTIONS(840), + [anon_sym_BANG] = ACTIONS(842), + [anon_sym_TILDE] = ACTIONS(844), + [anon_sym_PLUS] = ACTIONS(846), + [anon_sym_DASH] = ACTIONS(846), + [anon_sym_DASH_DASH] = ACTIONS(848), + [anon_sym_PLUS_PLUS] = ACTIONS(848), + [anon_sym_sizeof] = ACTIONS(850), + [sym_number_literal] = ACTIONS(3332), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(3334), + [sym_false] = ACTIONS(3334), + [sym_null] = ACTIONS(3334), + [sym_identifier] = ACTIONS(1659), [sym_comment] = ACTIONS(39), }, [1152] = { @@ -45788,36 +45807,36 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(649), [sym_concatenated_string] = STATE(649), [sym_string_literal] = STATE(253), - [anon_sym_SEMI] = ACTIONS(1516), - [anon_sym_LBRACE] = ACTIONS(734), - [anon_sym_LPAREN2] = ACTIONS(554), - [anon_sym_STAR] = ACTIONS(556), - [anon_sym_if] = ACTIONS(2733), - [anon_sym_switch] = ACTIONS(2735), - [anon_sym_case] = ACTIONS(2737), - [anon_sym_default] = ACTIONS(2739), - [anon_sym_while] = ACTIONS(2741), - [anon_sym_do] = ACTIONS(1528), - [anon_sym_for] = ACTIONS(2743), - [anon_sym_return] = ACTIONS(1532), - [anon_sym_break] = ACTIONS(1534), - [anon_sym_continue] = ACTIONS(1536), - [anon_sym_goto] = ACTIONS(1538), - [anon_sym_AMP] = ACTIONS(556), - [anon_sym_BANG] = ACTIONS(580), - [anon_sym_TILDE] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_DASH_DASH] = ACTIONS(586), - [anon_sym_PLUS_PLUS] = ACTIONS(586), - [anon_sym_sizeof] = ACTIONS(588), - [sym_number_literal] = ACTIONS(1540), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1542), - [sym_false] = ACTIONS(1542), - [sym_null] = ACTIONS(1542), - [sym_identifier] = ACTIONS(2745), + [anon_sym_SEMI] = ACTIONS(1505), + [anon_sym_LBRACE] = ACTIONS(725), + [anon_sym_LPAREN2] = ACTIONS(550), + [anon_sym_STAR] = ACTIONS(552), + [anon_sym_if] = ACTIONS(2722), + [anon_sym_switch] = ACTIONS(2724), + [anon_sym_case] = ACTIONS(2726), + [anon_sym_default] = ACTIONS(2728), + [anon_sym_while] = ACTIONS(2730), + [anon_sym_do] = ACTIONS(1517), + [anon_sym_for] = ACTIONS(2732), + [anon_sym_return] = ACTIONS(1521), + [anon_sym_break] = ACTIONS(1523), + [anon_sym_continue] = ACTIONS(1525), + [anon_sym_goto] = ACTIONS(1527), + [anon_sym_AMP] = ACTIONS(552), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_TILDE] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(580), + [anon_sym_DASH] = ACTIONS(580), + [anon_sym_DASH_DASH] = ACTIONS(582), + [anon_sym_PLUS_PLUS] = ACTIONS(582), + [anon_sym_sizeof] = ACTIONS(584), + [sym_number_literal] = ACTIONS(1529), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_null] = ACTIONS(1531), + [sym_identifier] = ACTIONS(2734), [sym_comment] = ACTIONS(39), }, [1153] = { @@ -45855,96 +45874,96 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(649), [sym_concatenated_string] = STATE(649), [sym_string_literal] = STATE(253), - [anon_sym_SEMI] = ACTIONS(1516), - [anon_sym_LBRACE] = ACTIONS(734), - [anon_sym_LPAREN2] = ACTIONS(554), - [anon_sym_STAR] = ACTIONS(556), - [anon_sym_if] = ACTIONS(1518), - [anon_sym_switch] = ACTIONS(1520), - [anon_sym_case] = ACTIONS(1522), - [anon_sym_default] = ACTIONS(1524), - [anon_sym_while] = ACTIONS(1526), - [anon_sym_do] = ACTIONS(1528), - [anon_sym_for] = ACTIONS(1530), - [anon_sym_return] = ACTIONS(1532), - [anon_sym_break] = ACTIONS(1534), - [anon_sym_continue] = ACTIONS(1536), - [anon_sym_goto] = ACTIONS(1538), - [anon_sym_AMP] = ACTIONS(556), - [anon_sym_BANG] = ACTIONS(580), - [anon_sym_TILDE] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_DASH_DASH] = ACTIONS(586), - [anon_sym_PLUS_PLUS] = ACTIONS(586), - [anon_sym_sizeof] = ACTIONS(588), - [sym_number_literal] = ACTIONS(1540), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1542), - [sym_false] = ACTIONS(1542), - [sym_null] = ACTIONS(1542), - [sym_identifier] = ACTIONS(2747), + [anon_sym_SEMI] = ACTIONS(1505), + [anon_sym_LBRACE] = ACTIONS(725), + [anon_sym_LPAREN2] = ACTIONS(550), + [anon_sym_STAR] = ACTIONS(552), + [anon_sym_if] = ACTIONS(1507), + [anon_sym_switch] = ACTIONS(1509), + [anon_sym_case] = ACTIONS(1511), + [anon_sym_default] = ACTIONS(1513), + [anon_sym_while] = ACTIONS(1515), + [anon_sym_do] = ACTIONS(1517), + [anon_sym_for] = ACTIONS(1519), + [anon_sym_return] = ACTIONS(1521), + [anon_sym_break] = ACTIONS(1523), + [anon_sym_continue] = ACTIONS(1525), + [anon_sym_goto] = ACTIONS(1527), + [anon_sym_AMP] = ACTIONS(552), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_TILDE] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(580), + [anon_sym_DASH] = ACTIONS(580), + [anon_sym_DASH_DASH] = ACTIONS(582), + [anon_sym_PLUS_PLUS] = ACTIONS(582), + [anon_sym_sizeof] = ACTIONS(584), + [sym_number_literal] = ACTIONS(1529), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_null] = ACTIONS(1531), + [sym_identifier] = ACTIONS(2736), [sym_comment] = ACTIONS(39), }, [1154] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2908), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2908), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2908), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2908), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2908), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2908), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2908), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2908), - [sym_preproc_directive] = ACTIONS(2908), - [anon_sym_SEMI] = ACTIONS(2910), - [anon_sym_typedef] = ACTIONS(2908), - [anon_sym_extern] = ACTIONS(2908), - [anon_sym_LBRACE] = ACTIONS(2910), - [anon_sym_LPAREN2] = ACTIONS(2910), - [anon_sym_STAR] = ACTIONS(2910), - [anon_sym_static] = ACTIONS(2908), - [anon_sym_auto] = ACTIONS(2908), - [anon_sym_register] = ACTIONS(2908), - [anon_sym_inline] = ACTIONS(2908), - [anon_sym_const] = ACTIONS(2908), - [anon_sym_restrict] = ACTIONS(2908), - [anon_sym_volatile] = ACTIONS(2908), - [anon_sym__Atomic] = ACTIONS(2908), - [anon_sym_unsigned] = ACTIONS(2908), - [anon_sym_long] = ACTIONS(2908), - [anon_sym_short] = ACTIONS(2908), - [sym_primitive_type] = ACTIONS(2908), - [anon_sym_enum] = ACTIONS(2908), - [anon_sym_struct] = ACTIONS(2908), - [anon_sym_union] = ACTIONS(2908), - [anon_sym_if] = ACTIONS(2908), - [anon_sym_else] = ACTIONS(2908), - [anon_sym_switch] = ACTIONS(2908), - [anon_sym_case] = ACTIONS(2908), - [anon_sym_default] = ACTIONS(2908), - [anon_sym_while] = ACTIONS(2908), - [anon_sym_do] = ACTIONS(2908), - [anon_sym_for] = ACTIONS(2908), - [anon_sym_return] = ACTIONS(2908), - [anon_sym_break] = ACTIONS(2908), - [anon_sym_continue] = ACTIONS(2908), - [anon_sym_goto] = ACTIONS(2908), - [anon_sym_AMP] = ACTIONS(2910), - [anon_sym_BANG] = ACTIONS(2910), - [anon_sym_TILDE] = ACTIONS(2910), - [anon_sym_PLUS] = ACTIONS(2908), - [anon_sym_DASH] = ACTIONS(2908), - [anon_sym_DASH_DASH] = ACTIONS(2910), - [anon_sym_PLUS_PLUS] = ACTIONS(2910), - [anon_sym_sizeof] = ACTIONS(2908), - [sym_number_literal] = ACTIONS(2910), - [anon_sym_SQUOTE] = ACTIONS(2910), - [anon_sym_DQUOTE] = ACTIONS(2910), - [sym_true] = ACTIONS(2908), - [sym_false] = ACTIONS(2908), - [sym_null] = ACTIONS(2908), - [sym_identifier] = ACTIONS(2908), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2897), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2897), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2897), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2897), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2897), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2897), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2897), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2897), + [sym_preproc_directive] = ACTIONS(2897), + [anon_sym_SEMI] = ACTIONS(2899), + [anon_sym_typedef] = ACTIONS(2897), + [anon_sym_extern] = ACTIONS(2897), + [anon_sym_LBRACE] = ACTIONS(2899), + [anon_sym_LPAREN2] = ACTIONS(2899), + [anon_sym_STAR] = ACTIONS(2899), + [anon_sym_static] = ACTIONS(2897), + [anon_sym_auto] = ACTIONS(2897), + [anon_sym_register] = ACTIONS(2897), + [anon_sym_inline] = ACTIONS(2897), + [anon_sym_const] = ACTIONS(2897), + [anon_sym_restrict] = ACTIONS(2897), + [anon_sym_volatile] = ACTIONS(2897), + [anon_sym__Atomic] = ACTIONS(2897), + [anon_sym_unsigned] = ACTIONS(2897), + [anon_sym_long] = ACTIONS(2897), + [anon_sym_short] = ACTIONS(2897), + [sym_primitive_type] = ACTIONS(2897), + [anon_sym_enum] = ACTIONS(2897), + [anon_sym_struct] = ACTIONS(2897), + [anon_sym_union] = ACTIONS(2897), + [anon_sym_if] = ACTIONS(2897), + [anon_sym_else] = ACTIONS(2897), + [anon_sym_switch] = ACTIONS(2897), + [anon_sym_case] = ACTIONS(2897), + [anon_sym_default] = ACTIONS(2897), + [anon_sym_while] = ACTIONS(2897), + [anon_sym_do] = ACTIONS(2897), + [anon_sym_for] = ACTIONS(2897), + [anon_sym_return] = ACTIONS(2897), + [anon_sym_break] = ACTIONS(2897), + [anon_sym_continue] = ACTIONS(2897), + [anon_sym_goto] = ACTIONS(2897), + [anon_sym_AMP] = ACTIONS(2899), + [anon_sym_BANG] = ACTIONS(2899), + [anon_sym_TILDE] = ACTIONS(2899), + [anon_sym_PLUS] = ACTIONS(2897), + [anon_sym_DASH] = ACTIONS(2897), + [anon_sym_DASH_DASH] = ACTIONS(2899), + [anon_sym_PLUS_PLUS] = ACTIONS(2899), + [anon_sym_sizeof] = ACTIONS(2897), + [sym_number_literal] = ACTIONS(2899), + [anon_sym_SQUOTE] = ACTIONS(2899), + [anon_sym_DQUOTE] = ACTIONS(2899), + [sym_true] = ACTIONS(2897), + [sym_false] = ACTIONS(2897), + [sym_null] = ACTIONS(2897), + [sym_identifier] = ACTIONS(2897), [sym_comment] = ACTIONS(39), }, [1155] = { @@ -45969,83 +45988,83 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(1221), [sym_concatenated_string] = STATE(1221), [sym_string_literal] = STATE(409), - [anon_sym_LPAREN2] = ACTIONS(970), - [anon_sym_STAR] = ACTIONS(972), - [anon_sym_AMP] = ACTIONS(972), - [anon_sym_BANG] = ACTIONS(974), - [anon_sym_TILDE] = ACTIONS(976), - [anon_sym_PLUS] = ACTIONS(978), - [anon_sym_DASH] = ACTIONS(978), - [anon_sym_DASH_DASH] = ACTIONS(980), - [anon_sym_PLUS_PLUS] = ACTIONS(980), - [anon_sym_sizeof] = ACTIONS(982), - [sym_number_literal] = ACTIONS(3347), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(3349), - [sym_false] = ACTIONS(3349), - [sym_null] = ACTIONS(3349), - [sym_identifier] = ACTIONS(3349), + [anon_sym_LPAREN2] = ACTIONS(961), + [anon_sym_STAR] = ACTIONS(963), + [anon_sym_AMP] = ACTIONS(963), + [anon_sym_BANG] = ACTIONS(965), + [anon_sym_TILDE] = ACTIONS(967), + [anon_sym_PLUS] = ACTIONS(969), + [anon_sym_DASH] = ACTIONS(969), + [anon_sym_DASH_DASH] = ACTIONS(971), + [anon_sym_PLUS_PLUS] = ACTIONS(971), + [anon_sym_sizeof] = ACTIONS(973), + [sym_number_literal] = ACTIONS(3336), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(3338), + [sym_false] = ACTIONS(3338), + [sym_null] = ACTIONS(3338), + [sym_identifier] = ACTIONS(3338), [sym_comment] = ACTIONS(39), }, [1156] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2936), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2936), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2936), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2936), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2936), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2936), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2936), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2936), - [sym_preproc_directive] = ACTIONS(2936), - [anon_sym_SEMI] = ACTIONS(2938), - [anon_sym_typedef] = ACTIONS(2936), - [anon_sym_extern] = ACTIONS(2936), - [anon_sym_LBRACE] = ACTIONS(2938), - [anon_sym_LPAREN2] = ACTIONS(2938), - [anon_sym_STAR] = ACTIONS(2938), - [anon_sym_static] = ACTIONS(2936), - [anon_sym_auto] = ACTIONS(2936), - [anon_sym_register] = ACTIONS(2936), - [anon_sym_inline] = ACTIONS(2936), - [anon_sym_const] = ACTIONS(2936), - [anon_sym_restrict] = ACTIONS(2936), - [anon_sym_volatile] = ACTIONS(2936), - [anon_sym__Atomic] = ACTIONS(2936), - [anon_sym_unsigned] = ACTIONS(2936), - [anon_sym_long] = ACTIONS(2936), - [anon_sym_short] = ACTIONS(2936), - [sym_primitive_type] = ACTIONS(2936), - [anon_sym_enum] = ACTIONS(2936), - [anon_sym_struct] = ACTIONS(2936), - [anon_sym_union] = ACTIONS(2936), - [anon_sym_if] = ACTIONS(2936), - [anon_sym_else] = ACTIONS(2936), - [anon_sym_switch] = ACTIONS(2936), - [anon_sym_case] = ACTIONS(2936), - [anon_sym_default] = ACTIONS(2936), - [anon_sym_while] = ACTIONS(2936), - [anon_sym_do] = ACTIONS(2936), - [anon_sym_for] = ACTIONS(2936), - [anon_sym_return] = ACTIONS(2936), - [anon_sym_break] = ACTIONS(2936), - [anon_sym_continue] = ACTIONS(2936), - [anon_sym_goto] = ACTIONS(2936), - [anon_sym_AMP] = ACTIONS(2938), - [anon_sym_BANG] = ACTIONS(2938), - [anon_sym_TILDE] = ACTIONS(2938), - [anon_sym_PLUS] = ACTIONS(2936), - [anon_sym_DASH] = ACTIONS(2936), - [anon_sym_DASH_DASH] = ACTIONS(2938), - [anon_sym_PLUS_PLUS] = ACTIONS(2938), - [anon_sym_sizeof] = ACTIONS(2936), - [sym_number_literal] = ACTIONS(2938), - [anon_sym_SQUOTE] = ACTIONS(2938), - [anon_sym_DQUOTE] = ACTIONS(2938), - [sym_true] = ACTIONS(2936), - [sym_false] = ACTIONS(2936), - [sym_null] = ACTIONS(2936), - [sym_identifier] = ACTIONS(2936), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2925), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2925), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2925), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2925), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2925), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2925), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2925), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2925), + [sym_preproc_directive] = ACTIONS(2925), + [anon_sym_SEMI] = ACTIONS(2927), + [anon_sym_typedef] = ACTIONS(2925), + [anon_sym_extern] = ACTIONS(2925), + [anon_sym_LBRACE] = ACTIONS(2927), + [anon_sym_LPAREN2] = ACTIONS(2927), + [anon_sym_STAR] = ACTIONS(2927), + [anon_sym_static] = ACTIONS(2925), + [anon_sym_auto] = ACTIONS(2925), + [anon_sym_register] = ACTIONS(2925), + [anon_sym_inline] = ACTIONS(2925), + [anon_sym_const] = ACTIONS(2925), + [anon_sym_restrict] = ACTIONS(2925), + [anon_sym_volatile] = ACTIONS(2925), + [anon_sym__Atomic] = ACTIONS(2925), + [anon_sym_unsigned] = ACTIONS(2925), + [anon_sym_long] = ACTIONS(2925), + [anon_sym_short] = ACTIONS(2925), + [sym_primitive_type] = ACTIONS(2925), + [anon_sym_enum] = ACTIONS(2925), + [anon_sym_struct] = ACTIONS(2925), + [anon_sym_union] = ACTIONS(2925), + [anon_sym_if] = ACTIONS(2925), + [anon_sym_else] = ACTIONS(2925), + [anon_sym_switch] = ACTIONS(2925), + [anon_sym_case] = ACTIONS(2925), + [anon_sym_default] = ACTIONS(2925), + [anon_sym_while] = ACTIONS(2925), + [anon_sym_do] = ACTIONS(2925), + [anon_sym_for] = ACTIONS(2925), + [anon_sym_return] = ACTIONS(2925), + [anon_sym_break] = ACTIONS(2925), + [anon_sym_continue] = ACTIONS(2925), + [anon_sym_goto] = ACTIONS(2925), + [anon_sym_AMP] = ACTIONS(2927), + [anon_sym_BANG] = ACTIONS(2927), + [anon_sym_TILDE] = ACTIONS(2927), + [anon_sym_PLUS] = ACTIONS(2925), + [anon_sym_DASH] = ACTIONS(2925), + [anon_sym_DASH_DASH] = ACTIONS(2927), + [anon_sym_PLUS_PLUS] = ACTIONS(2927), + [anon_sym_sizeof] = ACTIONS(2925), + [sym_number_literal] = ACTIONS(2927), + [anon_sym_SQUOTE] = ACTIONS(2927), + [anon_sym_DQUOTE] = ACTIONS(2927), + [sym_true] = ACTIONS(2925), + [sym_false] = ACTIONS(2925), + [sym_null] = ACTIONS(2925), + [sym_identifier] = ACTIONS(2925), [sym_comment] = ACTIONS(39), }, [1157] = { @@ -46069,65 +46088,65 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(1224), [sym_concatenated_string] = STATE(1224), [sym_string_literal] = STATE(409), - [anon_sym_RPAREN] = ACTIONS(3351), - [anon_sym_LPAREN2] = ACTIONS(970), - [anon_sym_STAR] = ACTIONS(972), - [anon_sym_AMP] = ACTIONS(972), - [anon_sym_BANG] = ACTIONS(974), - [anon_sym_TILDE] = ACTIONS(976), - [anon_sym_PLUS] = ACTIONS(978), - [anon_sym_DASH] = ACTIONS(978), - [anon_sym_DASH_DASH] = ACTIONS(980), - [anon_sym_PLUS_PLUS] = ACTIONS(980), - [anon_sym_sizeof] = ACTIONS(982), - [sym_number_literal] = ACTIONS(3353), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(3355), - [sym_false] = ACTIONS(3355), - [sym_null] = ACTIONS(3355), - [sym_identifier] = ACTIONS(3355), + [anon_sym_RPAREN] = ACTIONS(3340), + [anon_sym_LPAREN2] = ACTIONS(961), + [anon_sym_STAR] = ACTIONS(963), + [anon_sym_AMP] = ACTIONS(963), + [anon_sym_BANG] = ACTIONS(965), + [anon_sym_TILDE] = ACTIONS(967), + [anon_sym_PLUS] = ACTIONS(969), + [anon_sym_DASH] = ACTIONS(969), + [anon_sym_DASH_DASH] = ACTIONS(971), + [anon_sym_PLUS_PLUS] = ACTIONS(971), + [anon_sym_sizeof] = ACTIONS(973), + [sym_number_literal] = ACTIONS(3342), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(3344), + [sym_false] = ACTIONS(3344), + [sym_null] = ACTIONS(3344), + [sym_identifier] = ACTIONS(3344), [sym_comment] = ACTIONS(39), }, [1158] = { [sym_argument_list] = STATE(465), - [anon_sym_SEMI] = ACTIONS(3357), - [anon_sym_LPAREN2] = ACTIONS(1096), - [anon_sym_STAR] = ACTIONS(1436), - [anon_sym_LBRACK] = ACTIONS(1100), - [anon_sym_EQ] = ACTIONS(1438), - [anon_sym_QMARK] = ACTIONS(1440), - [anon_sym_STAR_EQ] = ACTIONS(1442), - [anon_sym_SLASH_EQ] = ACTIONS(1442), - [anon_sym_PERCENT_EQ] = ACTIONS(1442), - [anon_sym_PLUS_EQ] = ACTIONS(1442), - [anon_sym_DASH_EQ] = ACTIONS(1442), - [anon_sym_LT_LT_EQ] = ACTIONS(1442), - [anon_sym_GT_GT_EQ] = ACTIONS(1442), - [anon_sym_AMP_EQ] = ACTIONS(1442), - [anon_sym_CARET_EQ] = ACTIONS(1442), - [anon_sym_PIPE_EQ] = ACTIONS(1442), - [anon_sym_AMP] = ACTIONS(1444), - [anon_sym_PIPE_PIPE] = ACTIONS(1446), - [anon_sym_AMP_AMP] = ACTIONS(1448), - [anon_sym_PIPE] = ACTIONS(1450), - [anon_sym_CARET] = ACTIONS(1452), - [anon_sym_EQ_EQ] = ACTIONS(1454), - [anon_sym_BANG_EQ] = ACTIONS(1454), - [anon_sym_LT] = ACTIONS(1456), - [anon_sym_GT] = ACTIONS(1456), - [anon_sym_LT_EQ] = ACTIONS(1458), - [anon_sym_GT_EQ] = ACTIONS(1458), - [anon_sym_LT_LT] = ACTIONS(1460), - [anon_sym_GT_GT] = ACTIONS(1460), - [anon_sym_PLUS] = ACTIONS(1462), - [anon_sym_DASH] = ACTIONS(1462), - [anon_sym_SLASH] = ACTIONS(1436), - [anon_sym_PERCENT] = ACTIONS(1436), - [anon_sym_DASH_DASH] = ACTIONS(1128), - [anon_sym_PLUS_PLUS] = ACTIONS(1128), - [anon_sym_DOT] = ACTIONS(1130), - [anon_sym_DASH_GT] = ACTIONS(1130), + [anon_sym_SEMI] = ACTIONS(3346), + [anon_sym_LPAREN2] = ACTIONS(1089), + [anon_sym_STAR] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(1429), + [anon_sym_QMARK] = ACTIONS(1431), + [anon_sym_STAR_EQ] = ACTIONS(1433), + [anon_sym_SLASH_EQ] = ACTIONS(1433), + [anon_sym_PERCENT_EQ] = ACTIONS(1433), + [anon_sym_PLUS_EQ] = ACTIONS(1433), + [anon_sym_DASH_EQ] = ACTIONS(1433), + [anon_sym_LT_LT_EQ] = ACTIONS(1433), + [anon_sym_GT_GT_EQ] = ACTIONS(1433), + [anon_sym_AMP_EQ] = ACTIONS(1433), + [anon_sym_CARET_EQ] = ACTIONS(1433), + [anon_sym_PIPE_EQ] = ACTIONS(1433), + [anon_sym_AMP] = ACTIONS(1435), + [anon_sym_PIPE_PIPE] = ACTIONS(1437), + [anon_sym_AMP_AMP] = ACTIONS(1439), + [anon_sym_PIPE] = ACTIONS(1441), + [anon_sym_CARET] = ACTIONS(1443), + [anon_sym_EQ_EQ] = ACTIONS(1445), + [anon_sym_BANG_EQ] = ACTIONS(1445), + [anon_sym_LT] = ACTIONS(1447), + [anon_sym_GT] = ACTIONS(1447), + [anon_sym_LT_EQ] = ACTIONS(1449), + [anon_sym_GT_EQ] = ACTIONS(1449), + [anon_sym_LT_LT] = ACTIONS(1451), + [anon_sym_GT_GT] = ACTIONS(1451), + [anon_sym_PLUS] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1453), + [anon_sym_SLASH] = ACTIONS(1427), + [anon_sym_PERCENT] = ACTIONS(1427), + [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_PLUS_PLUS] = ACTIONS(1121), + [anon_sym_DOT] = ACTIONS(1123), + [anon_sym_DASH_GT] = ACTIONS(1123), [sym_comment] = ACTIONS(39), }, [1159] = { @@ -46151,66 +46170,66 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(1226), [sym_concatenated_string] = STATE(1226), [sym_string_literal] = STATE(376), - [anon_sym_SEMI] = ACTIONS(3357), - [anon_sym_LPAREN2] = ACTIONS(847), - [anon_sym_STAR] = ACTIONS(849), - [anon_sym_AMP] = ACTIONS(849), - [anon_sym_BANG] = ACTIONS(851), - [anon_sym_TILDE] = ACTIONS(853), - [anon_sym_PLUS] = ACTIONS(855), - [anon_sym_DASH] = ACTIONS(855), - [anon_sym_DASH_DASH] = ACTIONS(857), - [anon_sym_PLUS_PLUS] = ACTIONS(857), - [anon_sym_sizeof] = ACTIONS(859), - [sym_number_literal] = ACTIONS(3359), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(3361), - [sym_false] = ACTIONS(3361), - [sym_null] = ACTIONS(3361), - [sym_identifier] = ACTIONS(3361), + [anon_sym_SEMI] = ACTIONS(3346), + [anon_sym_LPAREN2] = ACTIONS(838), + [anon_sym_STAR] = ACTIONS(840), + [anon_sym_AMP] = ACTIONS(840), + [anon_sym_BANG] = ACTIONS(842), + [anon_sym_TILDE] = ACTIONS(844), + [anon_sym_PLUS] = ACTIONS(846), + [anon_sym_DASH] = ACTIONS(846), + [anon_sym_DASH_DASH] = ACTIONS(848), + [anon_sym_PLUS_PLUS] = ACTIONS(848), + [anon_sym_sizeof] = ACTIONS(850), + [sym_number_literal] = ACTIONS(3348), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(3350), + [sym_false] = ACTIONS(3350), + [sym_null] = ACTIONS(3350), + [sym_identifier] = ACTIONS(3350), [sym_comment] = ACTIONS(39), }, [1160] = { [sym_argument_list] = STATE(465), - [anon_sym_COMMA] = ACTIONS(3275), - [anon_sym_RPAREN] = ACTIONS(3275), - [anon_sym_LPAREN2] = ACTIONS(1096), - [anon_sym_STAR] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1100), - [anon_sym_EQ] = ACTIONS(1562), - [anon_sym_QMARK] = ACTIONS(1564), - [anon_sym_STAR_EQ] = ACTIONS(1566), - [anon_sym_SLASH_EQ] = ACTIONS(1566), - [anon_sym_PERCENT_EQ] = ACTIONS(1566), - [anon_sym_PLUS_EQ] = ACTIONS(1566), - [anon_sym_DASH_EQ] = ACTIONS(1566), - [anon_sym_LT_LT_EQ] = ACTIONS(1566), - [anon_sym_GT_GT_EQ] = ACTIONS(1566), - [anon_sym_AMP_EQ] = ACTIONS(1566), - [anon_sym_CARET_EQ] = ACTIONS(1566), - [anon_sym_PIPE_EQ] = ACTIONS(1566), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_PIPE_PIPE] = ACTIONS(1570), - [anon_sym_AMP_AMP] = ACTIONS(1572), - [anon_sym_PIPE] = ACTIONS(1574), - [anon_sym_CARET] = ACTIONS(1576), - [anon_sym_EQ_EQ] = ACTIONS(1578), - [anon_sym_BANG_EQ] = ACTIONS(1578), - [anon_sym_LT] = ACTIONS(1580), - [anon_sym_GT] = ACTIONS(1580), - [anon_sym_LT_EQ] = ACTIONS(1582), - [anon_sym_GT_EQ] = ACTIONS(1582), - [anon_sym_LT_LT] = ACTIONS(1584), - [anon_sym_GT_GT] = ACTIONS(1584), - [anon_sym_PLUS] = ACTIONS(1586), - [anon_sym_DASH] = ACTIONS(1586), - [anon_sym_SLASH] = ACTIONS(1560), - [anon_sym_PERCENT] = ACTIONS(1560), - [anon_sym_DASH_DASH] = ACTIONS(1128), - [anon_sym_PLUS_PLUS] = ACTIONS(1128), - [anon_sym_DOT] = ACTIONS(1130), - [anon_sym_DASH_GT] = ACTIONS(1130), + [anon_sym_COMMA] = ACTIONS(3264), + [anon_sym_RPAREN] = ACTIONS(3264), + [anon_sym_LPAREN2] = ACTIONS(1089), + [anon_sym_STAR] = ACTIONS(1549), + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(1551), + [anon_sym_QMARK] = ACTIONS(1553), + [anon_sym_STAR_EQ] = ACTIONS(1555), + [anon_sym_SLASH_EQ] = ACTIONS(1555), + [anon_sym_PERCENT_EQ] = ACTIONS(1555), + [anon_sym_PLUS_EQ] = ACTIONS(1555), + [anon_sym_DASH_EQ] = ACTIONS(1555), + [anon_sym_LT_LT_EQ] = ACTIONS(1555), + [anon_sym_GT_GT_EQ] = ACTIONS(1555), + [anon_sym_AMP_EQ] = ACTIONS(1555), + [anon_sym_CARET_EQ] = ACTIONS(1555), + [anon_sym_PIPE_EQ] = ACTIONS(1555), + [anon_sym_AMP] = ACTIONS(1557), + [anon_sym_PIPE_PIPE] = ACTIONS(1559), + [anon_sym_AMP_AMP] = ACTIONS(1561), + [anon_sym_PIPE] = ACTIONS(1563), + [anon_sym_CARET] = ACTIONS(1565), + [anon_sym_EQ_EQ] = ACTIONS(1567), + [anon_sym_BANG_EQ] = ACTIONS(1567), + [anon_sym_LT] = ACTIONS(1569), + [anon_sym_GT] = ACTIONS(1569), + [anon_sym_LT_EQ] = ACTIONS(1571), + [anon_sym_GT_EQ] = ACTIONS(1571), + [anon_sym_LT_LT] = ACTIONS(1573), + [anon_sym_GT_GT] = ACTIONS(1573), + [anon_sym_PLUS] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(1575), + [anon_sym_SLASH] = ACTIONS(1549), + [anon_sym_PERCENT] = ACTIONS(1549), + [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_PLUS_PLUS] = ACTIONS(1121), + [anon_sym_DOT] = ACTIONS(1123), + [anon_sym_DASH_GT] = ACTIONS(1123), [sym_comment] = ACTIONS(39), }, [1161] = { @@ -46248,36 +46267,36 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(251), [sym_concatenated_string] = STATE(251), [sym_string_literal] = STATE(253), - [anon_sym_SEMI] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(241), - [anon_sym_LPAREN2] = ACTIONS(554), - [anon_sym_STAR] = ACTIONS(556), - [anon_sym_if] = ACTIONS(1598), - [anon_sym_switch] = ACTIONS(1600), - [anon_sym_case] = ACTIONS(1602), - [anon_sym_default] = ACTIONS(1604), - [anon_sym_while] = ACTIONS(1606), - [anon_sym_do] = ACTIONS(568), - [anon_sym_for] = ACTIONS(1608), - [anon_sym_return] = ACTIONS(572), - [anon_sym_break] = ACTIONS(574), - [anon_sym_continue] = ACTIONS(576), - [anon_sym_goto] = ACTIONS(578), - [anon_sym_AMP] = ACTIONS(556), - [anon_sym_BANG] = ACTIONS(580), - [anon_sym_TILDE] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_DASH_DASH] = ACTIONS(586), - [anon_sym_PLUS_PLUS] = ACTIONS(586), - [anon_sym_sizeof] = ACTIONS(588), - [sym_number_literal] = ACTIONS(590), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(594), - [sym_false] = ACTIONS(594), - [sym_null] = ACTIONS(594), - [sym_identifier] = ACTIONS(1610), + [anon_sym_SEMI] = ACTIONS(546), + [anon_sym_LBRACE] = ACTIONS(239), + [anon_sym_LPAREN2] = ACTIONS(550), + [anon_sym_STAR] = ACTIONS(552), + [anon_sym_if] = ACTIONS(1587), + [anon_sym_switch] = ACTIONS(1589), + [anon_sym_case] = ACTIONS(1591), + [anon_sym_default] = ACTIONS(1593), + [anon_sym_while] = ACTIONS(1595), + [anon_sym_do] = ACTIONS(564), + [anon_sym_for] = ACTIONS(1597), + [anon_sym_return] = ACTIONS(568), + [anon_sym_break] = ACTIONS(570), + [anon_sym_continue] = ACTIONS(572), + [anon_sym_goto] = ACTIONS(574), + [anon_sym_AMP] = ACTIONS(552), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_TILDE] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(580), + [anon_sym_DASH] = ACTIONS(580), + [anon_sym_DASH_DASH] = ACTIONS(582), + [anon_sym_PLUS_PLUS] = ACTIONS(582), + [anon_sym_sizeof] = ACTIONS(584), + [sym_number_literal] = ACTIONS(586), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(590), + [sym_false] = ACTIONS(590), + [sym_null] = ACTIONS(590), + [sym_identifier] = ACTIONS(1599), [sym_comment] = ACTIONS(39), }, [1162] = { @@ -46301,65 +46320,65 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(1228), [sym_concatenated_string] = STATE(1228), [sym_string_literal] = STATE(409), - [anon_sym_RPAREN] = ACTIONS(3363), - [anon_sym_LPAREN2] = ACTIONS(970), - [anon_sym_STAR] = ACTIONS(972), - [anon_sym_AMP] = ACTIONS(972), - [anon_sym_BANG] = ACTIONS(974), - [anon_sym_TILDE] = ACTIONS(976), - [anon_sym_PLUS] = ACTIONS(978), - [anon_sym_DASH] = ACTIONS(978), - [anon_sym_DASH_DASH] = ACTIONS(980), - [anon_sym_PLUS_PLUS] = ACTIONS(980), - [anon_sym_sizeof] = ACTIONS(982), - [sym_number_literal] = ACTIONS(3365), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(3367), - [sym_false] = ACTIONS(3367), - [sym_null] = ACTIONS(3367), - [sym_identifier] = ACTIONS(3367), + [anon_sym_RPAREN] = ACTIONS(3352), + [anon_sym_LPAREN2] = ACTIONS(961), + [anon_sym_STAR] = ACTIONS(963), + [anon_sym_AMP] = ACTIONS(963), + [anon_sym_BANG] = ACTIONS(965), + [anon_sym_TILDE] = ACTIONS(967), + [anon_sym_PLUS] = ACTIONS(969), + [anon_sym_DASH] = ACTIONS(969), + [anon_sym_DASH_DASH] = ACTIONS(971), + [anon_sym_PLUS_PLUS] = ACTIONS(971), + [anon_sym_sizeof] = ACTIONS(973), + [sym_number_literal] = ACTIONS(3354), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(3356), + [sym_false] = ACTIONS(3356), + [sym_null] = ACTIONS(3356), + [sym_identifier] = ACTIONS(3356), [sym_comment] = ACTIONS(39), }, [1163] = { [sym_argument_list] = STATE(465), - [anon_sym_SEMI] = ACTIONS(3369), - [anon_sym_LPAREN2] = ACTIONS(1096), - [anon_sym_STAR] = ACTIONS(1436), - [anon_sym_LBRACK] = ACTIONS(1100), - [anon_sym_EQ] = ACTIONS(1438), - [anon_sym_QMARK] = ACTIONS(1440), - [anon_sym_STAR_EQ] = ACTIONS(1442), - [anon_sym_SLASH_EQ] = ACTIONS(1442), - [anon_sym_PERCENT_EQ] = ACTIONS(1442), - [anon_sym_PLUS_EQ] = ACTIONS(1442), - [anon_sym_DASH_EQ] = ACTIONS(1442), - [anon_sym_LT_LT_EQ] = ACTIONS(1442), - [anon_sym_GT_GT_EQ] = ACTIONS(1442), - [anon_sym_AMP_EQ] = ACTIONS(1442), - [anon_sym_CARET_EQ] = ACTIONS(1442), - [anon_sym_PIPE_EQ] = ACTIONS(1442), - [anon_sym_AMP] = ACTIONS(1444), - [anon_sym_PIPE_PIPE] = ACTIONS(1446), - [anon_sym_AMP_AMP] = ACTIONS(1448), - [anon_sym_PIPE] = ACTIONS(1450), - [anon_sym_CARET] = ACTIONS(1452), - [anon_sym_EQ_EQ] = ACTIONS(1454), - [anon_sym_BANG_EQ] = ACTIONS(1454), - [anon_sym_LT] = ACTIONS(1456), - [anon_sym_GT] = ACTIONS(1456), - [anon_sym_LT_EQ] = ACTIONS(1458), - [anon_sym_GT_EQ] = ACTIONS(1458), - [anon_sym_LT_LT] = ACTIONS(1460), - [anon_sym_GT_GT] = ACTIONS(1460), - [anon_sym_PLUS] = ACTIONS(1462), - [anon_sym_DASH] = ACTIONS(1462), - [anon_sym_SLASH] = ACTIONS(1436), - [anon_sym_PERCENT] = ACTIONS(1436), - [anon_sym_DASH_DASH] = ACTIONS(1128), - [anon_sym_PLUS_PLUS] = ACTIONS(1128), - [anon_sym_DOT] = ACTIONS(1130), - [anon_sym_DASH_GT] = ACTIONS(1130), + [anon_sym_SEMI] = ACTIONS(3358), + [anon_sym_LPAREN2] = ACTIONS(1089), + [anon_sym_STAR] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(1429), + [anon_sym_QMARK] = ACTIONS(1431), + [anon_sym_STAR_EQ] = ACTIONS(1433), + [anon_sym_SLASH_EQ] = ACTIONS(1433), + [anon_sym_PERCENT_EQ] = ACTIONS(1433), + [anon_sym_PLUS_EQ] = ACTIONS(1433), + [anon_sym_DASH_EQ] = ACTIONS(1433), + [anon_sym_LT_LT_EQ] = ACTIONS(1433), + [anon_sym_GT_GT_EQ] = ACTIONS(1433), + [anon_sym_AMP_EQ] = ACTIONS(1433), + [anon_sym_CARET_EQ] = ACTIONS(1433), + [anon_sym_PIPE_EQ] = ACTIONS(1433), + [anon_sym_AMP] = ACTIONS(1435), + [anon_sym_PIPE_PIPE] = ACTIONS(1437), + [anon_sym_AMP_AMP] = ACTIONS(1439), + [anon_sym_PIPE] = ACTIONS(1441), + [anon_sym_CARET] = ACTIONS(1443), + [anon_sym_EQ_EQ] = ACTIONS(1445), + [anon_sym_BANG_EQ] = ACTIONS(1445), + [anon_sym_LT] = ACTIONS(1447), + [anon_sym_GT] = ACTIONS(1447), + [anon_sym_LT_EQ] = ACTIONS(1449), + [anon_sym_GT_EQ] = ACTIONS(1449), + [anon_sym_LT_LT] = ACTIONS(1451), + [anon_sym_GT_GT] = ACTIONS(1451), + [anon_sym_PLUS] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1453), + [anon_sym_SLASH] = ACTIONS(1427), + [anon_sym_PERCENT] = ACTIONS(1427), + [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_PLUS_PLUS] = ACTIONS(1121), + [anon_sym_DOT] = ACTIONS(1123), + [anon_sym_DASH_GT] = ACTIONS(1123), [sym_comment] = ACTIONS(39), }, [1164] = { @@ -46383,70 +46402,70 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(1230), [sym_concatenated_string] = STATE(1230), [sym_string_literal] = STATE(376), - [anon_sym_SEMI] = ACTIONS(3369), - [anon_sym_LPAREN2] = ACTIONS(847), - [anon_sym_STAR] = ACTIONS(849), - [anon_sym_AMP] = ACTIONS(849), - [anon_sym_BANG] = ACTIONS(851), - [anon_sym_TILDE] = ACTIONS(853), - [anon_sym_PLUS] = ACTIONS(855), - [anon_sym_DASH] = ACTIONS(855), - [anon_sym_DASH_DASH] = ACTIONS(857), - [anon_sym_PLUS_PLUS] = ACTIONS(857), - [anon_sym_sizeof] = ACTIONS(859), - [sym_number_literal] = ACTIONS(3371), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(3373), - [sym_false] = ACTIONS(3373), - [sym_null] = ACTIONS(3373), - [sym_identifier] = ACTIONS(3373), + [anon_sym_SEMI] = ACTIONS(3358), + [anon_sym_LPAREN2] = ACTIONS(838), + [anon_sym_STAR] = ACTIONS(840), + [anon_sym_AMP] = ACTIONS(840), + [anon_sym_BANG] = ACTIONS(842), + [anon_sym_TILDE] = ACTIONS(844), + [anon_sym_PLUS] = ACTIONS(846), + [anon_sym_DASH] = ACTIONS(846), + [anon_sym_DASH_DASH] = ACTIONS(848), + [anon_sym_PLUS_PLUS] = ACTIONS(848), + [anon_sym_sizeof] = ACTIONS(850), + [sym_number_literal] = ACTIONS(3360), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(3362), + [sym_false] = ACTIONS(3362), + [sym_null] = ACTIONS(3362), + [sym_identifier] = ACTIONS(3362), [sym_comment] = ACTIONS(39), }, [1165] = { [sym_argument_list] = STATE(465), - [anon_sym_LPAREN2] = ACTIONS(1096), - [anon_sym_STAR] = ACTIONS(1620), - [anon_sym_LBRACK] = ACTIONS(1100), - [anon_sym_EQ] = ACTIONS(1622), - [anon_sym_COLON] = ACTIONS(3275), - [anon_sym_QMARK] = ACTIONS(1626), - [anon_sym_STAR_EQ] = ACTIONS(1628), - [anon_sym_SLASH_EQ] = ACTIONS(1628), - [anon_sym_PERCENT_EQ] = ACTIONS(1628), - [anon_sym_PLUS_EQ] = ACTIONS(1628), - [anon_sym_DASH_EQ] = ACTIONS(1628), - [anon_sym_LT_LT_EQ] = ACTIONS(1628), - [anon_sym_GT_GT_EQ] = ACTIONS(1628), - [anon_sym_AMP_EQ] = ACTIONS(1628), - [anon_sym_CARET_EQ] = ACTIONS(1628), - [anon_sym_PIPE_EQ] = ACTIONS(1628), - [anon_sym_AMP] = ACTIONS(1630), - [anon_sym_PIPE_PIPE] = ACTIONS(1632), - [anon_sym_AMP_AMP] = ACTIONS(1634), - [anon_sym_PIPE] = ACTIONS(1636), - [anon_sym_CARET] = ACTIONS(1638), - [anon_sym_EQ_EQ] = ACTIONS(1640), - [anon_sym_BANG_EQ] = ACTIONS(1640), - [anon_sym_LT] = ACTIONS(1642), - [anon_sym_GT] = ACTIONS(1642), - [anon_sym_LT_EQ] = ACTIONS(1644), - [anon_sym_GT_EQ] = ACTIONS(1644), - [anon_sym_LT_LT] = ACTIONS(1646), - [anon_sym_GT_GT] = ACTIONS(1646), - [anon_sym_PLUS] = ACTIONS(1648), - [anon_sym_DASH] = ACTIONS(1648), - [anon_sym_SLASH] = ACTIONS(1620), - [anon_sym_PERCENT] = ACTIONS(1620), - [anon_sym_DASH_DASH] = ACTIONS(1128), - [anon_sym_PLUS_PLUS] = ACTIONS(1128), - [anon_sym_DOT] = ACTIONS(1130), - [anon_sym_DASH_GT] = ACTIONS(1130), + [anon_sym_LPAREN2] = ACTIONS(1089), + [anon_sym_STAR] = ACTIONS(1609), + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(1611), + [anon_sym_COLON] = ACTIONS(3264), + [anon_sym_QMARK] = ACTIONS(1615), + [anon_sym_STAR_EQ] = ACTIONS(1617), + [anon_sym_SLASH_EQ] = ACTIONS(1617), + [anon_sym_PERCENT_EQ] = ACTIONS(1617), + [anon_sym_PLUS_EQ] = ACTIONS(1617), + [anon_sym_DASH_EQ] = ACTIONS(1617), + [anon_sym_LT_LT_EQ] = ACTIONS(1617), + [anon_sym_GT_GT_EQ] = ACTIONS(1617), + [anon_sym_AMP_EQ] = ACTIONS(1617), + [anon_sym_CARET_EQ] = ACTIONS(1617), + [anon_sym_PIPE_EQ] = ACTIONS(1617), + [anon_sym_AMP] = ACTIONS(1619), + [anon_sym_PIPE_PIPE] = ACTIONS(1621), + [anon_sym_AMP_AMP] = ACTIONS(1623), + [anon_sym_PIPE] = ACTIONS(1625), + [anon_sym_CARET] = ACTIONS(1627), + [anon_sym_EQ_EQ] = ACTIONS(1629), + [anon_sym_BANG_EQ] = ACTIONS(1629), + [anon_sym_LT] = ACTIONS(1631), + [anon_sym_GT] = ACTIONS(1631), + [anon_sym_LT_EQ] = ACTIONS(1633), + [anon_sym_GT_EQ] = ACTIONS(1633), + [anon_sym_LT_LT] = ACTIONS(1635), + [anon_sym_GT_GT] = ACTIONS(1635), + [anon_sym_PLUS] = ACTIONS(1637), + [anon_sym_DASH] = ACTIONS(1637), + [anon_sym_SLASH] = ACTIONS(1609), + [anon_sym_PERCENT] = ACTIONS(1609), + [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_PLUS_PLUS] = ACTIONS(1121), + [anon_sym_DOT] = ACTIONS(1123), + [anon_sym_DASH_GT] = ACTIONS(1123), [sym_comment] = ACTIONS(39), }, [1166] = { - [anon_sym_else] = ACTIONS(3375), - [anon_sym_while] = ACTIONS(2410), + [anon_sym_else] = ACTIONS(3364), + [anon_sym_while] = ACTIONS(2399), [sym_comment] = ACTIONS(39), }, [1167] = { @@ -46497,12 +46516,12 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_macro_type_specifier] = STATE(95), [aux_sym__declaration_specifiers_repeat1] = STATE(96), [aux_sym_sized_type_specifier_repeat1] = STATE(97), - [anon_sym_SEMI] = ACTIONS(550), + [anon_sym_SEMI] = ACTIONS(546), [anon_sym_typedef] = ACTIONS(19), [anon_sym_extern] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(241), - [anon_sym_LPAREN2] = ACTIONS(554), - [anon_sym_STAR] = ACTIONS(556), + [anon_sym_LBRACE] = ACTIONS(239), + [anon_sym_LPAREN2] = ACTIONS(550), + [anon_sym_STAR] = ACTIONS(552), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -46511,49 +46530,49 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_restrict] = ACTIONS(25), [anon_sym_volatile] = ACTIONS(25), [anon_sym__Atomic] = ACTIONS(25), - [anon_sym_unsigned] = ACTIONS(177), - [anon_sym_long] = ACTIONS(177), - [anon_sym_short] = ACTIONS(177), - [sym_primitive_type] = ACTIONS(179), + [anon_sym_unsigned] = ACTIONS(175), + [anon_sym_long] = ACTIONS(175), + [anon_sym_short] = ACTIONS(175), + [sym_primitive_type] = ACTIONS(177), [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), - [anon_sym_if] = ACTIONS(2472), - [anon_sym_switch] = ACTIONS(2474), - [anon_sym_case] = ACTIONS(2476), - [anon_sym_default] = ACTIONS(2478), - [anon_sym_while] = ACTIONS(2480), - [anon_sym_do] = ACTIONS(1026), - [anon_sym_for] = ACTIONS(2482), - [anon_sym_return] = ACTIONS(572), - [anon_sym_break] = ACTIONS(574), - [anon_sym_continue] = ACTIONS(576), - [anon_sym_goto] = ACTIONS(578), - [anon_sym_AMP] = ACTIONS(556), - [anon_sym_BANG] = ACTIONS(580), - [anon_sym_TILDE] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_DASH_DASH] = ACTIONS(586), - [anon_sym_PLUS_PLUS] = ACTIONS(586), - [anon_sym_sizeof] = ACTIONS(588), - [sym_number_literal] = ACTIONS(590), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(594), - [sym_false] = ACTIONS(594), - [sym_null] = ACTIONS(594), - [sym_identifier] = ACTIONS(3238), + [anon_sym_if] = ACTIONS(2461), + [anon_sym_switch] = ACTIONS(2463), + [anon_sym_case] = ACTIONS(2465), + [anon_sym_default] = ACTIONS(2467), + [anon_sym_while] = ACTIONS(2469), + [anon_sym_do] = ACTIONS(1017), + [anon_sym_for] = ACTIONS(2471), + [anon_sym_return] = ACTIONS(568), + [anon_sym_break] = ACTIONS(570), + [anon_sym_continue] = ACTIONS(572), + [anon_sym_goto] = ACTIONS(574), + [anon_sym_AMP] = ACTIONS(552), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_TILDE] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(580), + [anon_sym_DASH] = ACTIONS(580), + [anon_sym_DASH_DASH] = ACTIONS(582), + [anon_sym_PLUS_PLUS] = ACTIONS(582), + [anon_sym_sizeof] = ACTIONS(584), + [sym_number_literal] = ACTIONS(586), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(590), + [sym_false] = ACTIONS(590), + [sym_null] = ACTIONS(590), + [sym_identifier] = ACTIONS(3227), [sym_comment] = ACTIONS(39), }, [1168] = { - [anon_sym_COMMA] = ACTIONS(1066), - [anon_sym_SEMI] = ACTIONS(1066), + [anon_sym_COMMA] = ACTIONS(1059), + [anon_sym_SEMI] = ACTIONS(1059), [anon_sym_extern] = ACTIONS(83), - [anon_sym_LPAREN2] = ACTIONS(1071), - [anon_sym_STAR] = ACTIONS(1075), - [anon_sym_LBRACK] = ACTIONS(1066), - [anon_sym_EQ] = ACTIONS(1078), + [anon_sym_LPAREN2] = ACTIONS(1064), + [anon_sym_STAR] = ACTIONS(1068), + [anon_sym_LBRACK] = ACTIONS(1059), + [anon_sym_EQ] = ACTIONS(1071), [anon_sym_static] = ACTIONS(83), [anon_sym_auto] = ACTIONS(83), [anon_sym_register] = ACTIONS(83), @@ -46562,39 +46581,39 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_restrict] = ACTIONS(83), [anon_sym_volatile] = ACTIONS(83), [anon_sym__Atomic] = ACTIONS(83), - [anon_sym_COLON] = ACTIONS(2922), - [anon_sym_QMARK] = ACTIONS(1066), - [anon_sym_STAR_EQ] = ACTIONS(1066), - [anon_sym_SLASH_EQ] = ACTIONS(1066), - [anon_sym_PERCENT_EQ] = ACTIONS(1066), - [anon_sym_PLUS_EQ] = ACTIONS(1066), - [anon_sym_DASH_EQ] = ACTIONS(1066), - [anon_sym_LT_LT_EQ] = ACTIONS(1066), - [anon_sym_GT_GT_EQ] = ACTIONS(1066), - [anon_sym_AMP_EQ] = ACTIONS(1066), - [anon_sym_CARET_EQ] = ACTIONS(1066), - [anon_sym_PIPE_EQ] = ACTIONS(1066), - [anon_sym_AMP] = ACTIONS(1078), - [anon_sym_PIPE_PIPE] = ACTIONS(1066), - [anon_sym_AMP_AMP] = ACTIONS(1066), - [anon_sym_PIPE] = ACTIONS(1078), - [anon_sym_CARET] = ACTIONS(1078), - [anon_sym_EQ_EQ] = ACTIONS(1066), - [anon_sym_BANG_EQ] = ACTIONS(1066), - [anon_sym_LT] = ACTIONS(1078), - [anon_sym_GT] = ACTIONS(1078), - [anon_sym_LT_EQ] = ACTIONS(1066), - [anon_sym_GT_EQ] = ACTIONS(1066), - [anon_sym_LT_LT] = ACTIONS(1078), - [anon_sym_GT_GT] = ACTIONS(1078), - [anon_sym_PLUS] = ACTIONS(1078), - [anon_sym_DASH] = ACTIONS(1078), - [anon_sym_SLASH] = ACTIONS(1078), - [anon_sym_PERCENT] = ACTIONS(1078), - [anon_sym_DASH_DASH] = ACTIONS(1066), - [anon_sym_PLUS_PLUS] = ACTIONS(1066), - [anon_sym_DOT] = ACTIONS(1066), - [anon_sym_DASH_GT] = ACTIONS(1066), + [anon_sym_COLON] = ACTIONS(2911), + [anon_sym_QMARK] = ACTIONS(1059), + [anon_sym_STAR_EQ] = ACTIONS(1059), + [anon_sym_SLASH_EQ] = ACTIONS(1059), + [anon_sym_PERCENT_EQ] = ACTIONS(1059), + [anon_sym_PLUS_EQ] = ACTIONS(1059), + [anon_sym_DASH_EQ] = ACTIONS(1059), + [anon_sym_LT_LT_EQ] = ACTIONS(1059), + [anon_sym_GT_GT_EQ] = ACTIONS(1059), + [anon_sym_AMP_EQ] = ACTIONS(1059), + [anon_sym_CARET_EQ] = ACTIONS(1059), + [anon_sym_PIPE_EQ] = ACTIONS(1059), + [anon_sym_AMP] = ACTIONS(1071), + [anon_sym_PIPE_PIPE] = ACTIONS(1059), + [anon_sym_AMP_AMP] = ACTIONS(1059), + [anon_sym_PIPE] = ACTIONS(1071), + [anon_sym_CARET] = ACTIONS(1071), + [anon_sym_EQ_EQ] = ACTIONS(1059), + [anon_sym_BANG_EQ] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(1071), + [anon_sym_GT] = ACTIONS(1071), + [anon_sym_LT_EQ] = ACTIONS(1059), + [anon_sym_GT_EQ] = ACTIONS(1059), + [anon_sym_LT_LT] = ACTIONS(1071), + [anon_sym_GT_GT] = ACTIONS(1071), + [anon_sym_PLUS] = ACTIONS(1071), + [anon_sym_DASH] = ACTIONS(1071), + [anon_sym_SLASH] = ACTIONS(1071), + [anon_sym_PERCENT] = ACTIONS(1071), + [anon_sym_DASH_DASH] = ACTIONS(1059), + [anon_sym_PLUS_PLUS] = ACTIONS(1059), + [anon_sym_DOT] = ACTIONS(1059), + [anon_sym_DASH_GT] = ACTIONS(1059), [sym_identifier] = ACTIONS(83), [sym_comment] = ACTIONS(39), }, @@ -46619,65 +46638,65 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(1233), [sym_concatenated_string] = STATE(1233), [sym_string_literal] = STATE(376), - [anon_sym_SEMI] = ACTIONS(3377), - [anon_sym_LPAREN2] = ACTIONS(847), - [anon_sym_STAR] = ACTIONS(849), - [anon_sym_AMP] = ACTIONS(849), - [anon_sym_BANG] = ACTIONS(851), - [anon_sym_TILDE] = ACTIONS(853), - [anon_sym_PLUS] = ACTIONS(855), - [anon_sym_DASH] = ACTIONS(855), - [anon_sym_DASH_DASH] = ACTIONS(857), - [anon_sym_PLUS_PLUS] = ACTIONS(857), - [anon_sym_sizeof] = ACTIONS(859), - [sym_number_literal] = ACTIONS(3379), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(3381), - [sym_false] = ACTIONS(3381), - [sym_null] = ACTIONS(3381), - [sym_identifier] = ACTIONS(3381), + [anon_sym_SEMI] = ACTIONS(3366), + [anon_sym_LPAREN2] = ACTIONS(838), + [anon_sym_STAR] = ACTIONS(840), + [anon_sym_AMP] = ACTIONS(840), + [anon_sym_BANG] = ACTIONS(842), + [anon_sym_TILDE] = ACTIONS(844), + [anon_sym_PLUS] = ACTIONS(846), + [anon_sym_DASH] = ACTIONS(846), + [anon_sym_DASH_DASH] = ACTIONS(848), + [anon_sym_PLUS_PLUS] = ACTIONS(848), + [anon_sym_sizeof] = ACTIONS(850), + [sym_number_literal] = ACTIONS(3368), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(3370), + [sym_false] = ACTIONS(3370), + [sym_null] = ACTIONS(3370), + [sym_identifier] = ACTIONS(3370), [sym_comment] = ACTIONS(39), }, [1170] = { [sym_argument_list] = STATE(465), - [anon_sym_SEMI] = ACTIONS(3383), - [anon_sym_LPAREN2] = ACTIONS(1096), - [anon_sym_STAR] = ACTIONS(1436), - [anon_sym_LBRACK] = ACTIONS(1100), - [anon_sym_EQ] = ACTIONS(1438), - [anon_sym_QMARK] = ACTIONS(1440), - [anon_sym_STAR_EQ] = ACTIONS(1442), - [anon_sym_SLASH_EQ] = ACTIONS(1442), - [anon_sym_PERCENT_EQ] = ACTIONS(1442), - [anon_sym_PLUS_EQ] = ACTIONS(1442), - [anon_sym_DASH_EQ] = ACTIONS(1442), - [anon_sym_LT_LT_EQ] = ACTIONS(1442), - [anon_sym_GT_GT_EQ] = ACTIONS(1442), - [anon_sym_AMP_EQ] = ACTIONS(1442), - [anon_sym_CARET_EQ] = ACTIONS(1442), - [anon_sym_PIPE_EQ] = ACTIONS(1442), - [anon_sym_AMP] = ACTIONS(1444), - [anon_sym_PIPE_PIPE] = ACTIONS(1446), - [anon_sym_AMP_AMP] = ACTIONS(1448), - [anon_sym_PIPE] = ACTIONS(1450), - [anon_sym_CARET] = ACTIONS(1452), - [anon_sym_EQ_EQ] = ACTIONS(1454), - [anon_sym_BANG_EQ] = ACTIONS(1454), - [anon_sym_LT] = ACTIONS(1456), - [anon_sym_GT] = ACTIONS(1456), - [anon_sym_LT_EQ] = ACTIONS(1458), - [anon_sym_GT_EQ] = ACTIONS(1458), - [anon_sym_LT_LT] = ACTIONS(1460), - [anon_sym_GT_GT] = ACTIONS(1460), - [anon_sym_PLUS] = ACTIONS(1462), - [anon_sym_DASH] = ACTIONS(1462), - [anon_sym_SLASH] = ACTIONS(1436), - [anon_sym_PERCENT] = ACTIONS(1436), - [anon_sym_DASH_DASH] = ACTIONS(1128), - [anon_sym_PLUS_PLUS] = ACTIONS(1128), - [anon_sym_DOT] = ACTIONS(1130), - [anon_sym_DASH_GT] = ACTIONS(1130), + [anon_sym_SEMI] = ACTIONS(3372), + [anon_sym_LPAREN2] = ACTIONS(1089), + [anon_sym_STAR] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(1429), + [anon_sym_QMARK] = ACTIONS(1431), + [anon_sym_STAR_EQ] = ACTIONS(1433), + [anon_sym_SLASH_EQ] = ACTIONS(1433), + [anon_sym_PERCENT_EQ] = ACTIONS(1433), + [anon_sym_PLUS_EQ] = ACTIONS(1433), + [anon_sym_DASH_EQ] = ACTIONS(1433), + [anon_sym_LT_LT_EQ] = ACTIONS(1433), + [anon_sym_GT_GT_EQ] = ACTIONS(1433), + [anon_sym_AMP_EQ] = ACTIONS(1433), + [anon_sym_CARET_EQ] = ACTIONS(1433), + [anon_sym_PIPE_EQ] = ACTIONS(1433), + [anon_sym_AMP] = ACTIONS(1435), + [anon_sym_PIPE_PIPE] = ACTIONS(1437), + [anon_sym_AMP_AMP] = ACTIONS(1439), + [anon_sym_PIPE] = ACTIONS(1441), + [anon_sym_CARET] = ACTIONS(1443), + [anon_sym_EQ_EQ] = ACTIONS(1445), + [anon_sym_BANG_EQ] = ACTIONS(1445), + [anon_sym_LT] = ACTIONS(1447), + [anon_sym_GT] = ACTIONS(1447), + [anon_sym_LT_EQ] = ACTIONS(1449), + [anon_sym_GT_EQ] = ACTIONS(1449), + [anon_sym_LT_LT] = ACTIONS(1451), + [anon_sym_GT_GT] = ACTIONS(1451), + [anon_sym_PLUS] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1453), + [anon_sym_SLASH] = ACTIONS(1427), + [anon_sym_PERCENT] = ACTIONS(1427), + [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_PLUS_PLUS] = ACTIONS(1121), + [anon_sym_DOT] = ACTIONS(1123), + [anon_sym_DASH_GT] = ACTIONS(1123), [sym_comment] = ACTIONS(39), }, [1171] = { @@ -46715,79 +46734,79 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(251), [sym_concatenated_string] = STATE(251), [sym_string_literal] = STATE(253), - [anon_sym_SEMI] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(241), - [anon_sym_LPAREN2] = ACTIONS(554), - [anon_sym_STAR] = ACTIONS(556), - [anon_sym_if] = ACTIONS(1016), - [anon_sym_switch] = ACTIONS(1018), - [anon_sym_case] = ACTIONS(1020), - [anon_sym_default] = ACTIONS(1022), - [anon_sym_while] = ACTIONS(1024), - [anon_sym_do] = ACTIONS(1026), - [anon_sym_for] = ACTIONS(1028), - [anon_sym_return] = ACTIONS(572), - [anon_sym_break] = ACTIONS(574), - [anon_sym_continue] = ACTIONS(576), - [anon_sym_goto] = ACTIONS(578), - [anon_sym_AMP] = ACTIONS(556), - [anon_sym_BANG] = ACTIONS(580), - [anon_sym_TILDE] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_DASH_DASH] = ACTIONS(586), - [anon_sym_PLUS_PLUS] = ACTIONS(586), - [anon_sym_sizeof] = ACTIONS(588), - [sym_number_literal] = ACTIONS(590), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(594), - [sym_false] = ACTIONS(594), - [sym_null] = ACTIONS(594), - [sym_identifier] = ACTIONS(1030), + [anon_sym_SEMI] = ACTIONS(546), + [anon_sym_LBRACE] = ACTIONS(239), + [anon_sym_LPAREN2] = ACTIONS(550), + [anon_sym_STAR] = ACTIONS(552), + [anon_sym_if] = ACTIONS(1007), + [anon_sym_switch] = ACTIONS(1009), + [anon_sym_case] = ACTIONS(1011), + [anon_sym_default] = ACTIONS(1013), + [anon_sym_while] = ACTIONS(1015), + [anon_sym_do] = ACTIONS(1017), + [anon_sym_for] = ACTIONS(1019), + [anon_sym_return] = ACTIONS(568), + [anon_sym_break] = ACTIONS(570), + [anon_sym_continue] = ACTIONS(572), + [anon_sym_goto] = ACTIONS(574), + [anon_sym_AMP] = ACTIONS(552), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_TILDE] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(580), + [anon_sym_DASH] = ACTIONS(580), + [anon_sym_DASH_DASH] = ACTIONS(582), + [anon_sym_PLUS_PLUS] = ACTIONS(582), + [anon_sym_sizeof] = ACTIONS(584), + [sym_number_literal] = ACTIONS(586), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(590), + [sym_false] = ACTIONS(590), + [sym_null] = ACTIONS(590), + [sym_identifier] = ACTIONS(1021), [sym_comment] = ACTIONS(39), }, [1172] = { [sym_argument_list] = STATE(465), [aux_sym_for_statement_repeat1] = STATE(1236), - [anon_sym_COMMA] = ACTIONS(2530), - [anon_sym_RPAREN] = ACTIONS(3385), - [anon_sym_LPAREN2] = ACTIONS(1096), - [anon_sym_STAR] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1100), - [anon_sym_EQ] = ACTIONS(1562), - [anon_sym_QMARK] = ACTIONS(1564), - [anon_sym_STAR_EQ] = ACTIONS(1566), - [anon_sym_SLASH_EQ] = ACTIONS(1566), - [anon_sym_PERCENT_EQ] = ACTIONS(1566), - [anon_sym_PLUS_EQ] = ACTIONS(1566), - [anon_sym_DASH_EQ] = ACTIONS(1566), - [anon_sym_LT_LT_EQ] = ACTIONS(1566), - [anon_sym_GT_GT_EQ] = ACTIONS(1566), - [anon_sym_AMP_EQ] = ACTIONS(1566), - [anon_sym_CARET_EQ] = ACTIONS(1566), - [anon_sym_PIPE_EQ] = ACTIONS(1566), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_PIPE_PIPE] = ACTIONS(1570), - [anon_sym_AMP_AMP] = ACTIONS(1572), - [anon_sym_PIPE] = ACTIONS(1574), - [anon_sym_CARET] = ACTIONS(1576), - [anon_sym_EQ_EQ] = ACTIONS(1578), - [anon_sym_BANG_EQ] = ACTIONS(1578), - [anon_sym_LT] = ACTIONS(1580), - [anon_sym_GT] = ACTIONS(1580), - [anon_sym_LT_EQ] = ACTIONS(1582), - [anon_sym_GT_EQ] = ACTIONS(1582), - [anon_sym_LT_LT] = ACTIONS(1584), - [anon_sym_GT_GT] = ACTIONS(1584), - [anon_sym_PLUS] = ACTIONS(1586), - [anon_sym_DASH] = ACTIONS(1586), - [anon_sym_SLASH] = ACTIONS(1560), - [anon_sym_PERCENT] = ACTIONS(1560), - [anon_sym_DASH_DASH] = ACTIONS(1128), - [anon_sym_PLUS_PLUS] = ACTIONS(1128), - [anon_sym_DOT] = ACTIONS(1130), - [anon_sym_DASH_GT] = ACTIONS(1130), + [anon_sym_COMMA] = ACTIONS(2519), + [anon_sym_RPAREN] = ACTIONS(3374), + [anon_sym_LPAREN2] = ACTIONS(1089), + [anon_sym_STAR] = ACTIONS(1549), + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(1551), + [anon_sym_QMARK] = ACTIONS(1553), + [anon_sym_STAR_EQ] = ACTIONS(1555), + [anon_sym_SLASH_EQ] = ACTIONS(1555), + [anon_sym_PERCENT_EQ] = ACTIONS(1555), + [anon_sym_PLUS_EQ] = ACTIONS(1555), + [anon_sym_DASH_EQ] = ACTIONS(1555), + [anon_sym_LT_LT_EQ] = ACTIONS(1555), + [anon_sym_GT_GT_EQ] = ACTIONS(1555), + [anon_sym_AMP_EQ] = ACTIONS(1555), + [anon_sym_CARET_EQ] = ACTIONS(1555), + [anon_sym_PIPE_EQ] = ACTIONS(1555), + [anon_sym_AMP] = ACTIONS(1557), + [anon_sym_PIPE_PIPE] = ACTIONS(1559), + [anon_sym_AMP_AMP] = ACTIONS(1561), + [anon_sym_PIPE] = ACTIONS(1563), + [anon_sym_CARET] = ACTIONS(1565), + [anon_sym_EQ_EQ] = ACTIONS(1567), + [anon_sym_BANG_EQ] = ACTIONS(1567), + [anon_sym_LT] = ACTIONS(1569), + [anon_sym_GT] = ACTIONS(1569), + [anon_sym_LT_EQ] = ACTIONS(1571), + [anon_sym_GT_EQ] = ACTIONS(1571), + [anon_sym_LT_LT] = ACTIONS(1573), + [anon_sym_GT_GT] = ACTIONS(1573), + [anon_sym_PLUS] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(1575), + [anon_sym_SLASH] = ACTIONS(1549), + [anon_sym_PERCENT] = ACTIONS(1549), + [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_PLUS_PLUS] = ACTIONS(1121), + [anon_sym_DOT] = ACTIONS(1123), + [anon_sym_DASH_GT] = ACTIONS(1123), [sym_comment] = ACTIONS(39), }, [1173] = { @@ -46811,123 +46830,123 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(1237), [sym_concatenated_string] = STATE(1237), [sym_string_literal] = STATE(409), - [anon_sym_RPAREN] = ACTIONS(3385), - [anon_sym_LPAREN2] = ACTIONS(970), - [anon_sym_STAR] = ACTIONS(972), - [anon_sym_AMP] = ACTIONS(972), - [anon_sym_BANG] = ACTIONS(974), - [anon_sym_TILDE] = ACTIONS(976), - [anon_sym_PLUS] = ACTIONS(978), - [anon_sym_DASH] = ACTIONS(978), - [anon_sym_DASH_DASH] = ACTIONS(980), - [anon_sym_PLUS_PLUS] = ACTIONS(980), - [anon_sym_sizeof] = ACTIONS(982), - [sym_number_literal] = ACTIONS(3387), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(3389), - [sym_false] = ACTIONS(3389), - [sym_null] = ACTIONS(3389), - [sym_identifier] = ACTIONS(3389), + [anon_sym_RPAREN] = ACTIONS(3374), + [anon_sym_LPAREN2] = ACTIONS(961), + [anon_sym_STAR] = ACTIONS(963), + [anon_sym_AMP] = ACTIONS(963), + [anon_sym_BANG] = ACTIONS(965), + [anon_sym_TILDE] = ACTIONS(967), + [anon_sym_PLUS] = ACTIONS(969), + [anon_sym_DASH] = ACTIONS(969), + [anon_sym_DASH_DASH] = ACTIONS(971), + [anon_sym_PLUS_PLUS] = ACTIONS(971), + [anon_sym_sizeof] = ACTIONS(973), + [sym_number_literal] = ACTIONS(3376), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(3378), + [sym_false] = ACTIONS(3378), + [sym_null] = ACTIONS(3378), + [sym_identifier] = ACTIONS(3378), [sym_comment] = ACTIONS(39), }, [1174] = { [sym_argument_list] = STATE(465), - [anon_sym_SEMI] = ACTIONS(3391), - [anon_sym_LPAREN2] = ACTIONS(1096), - [anon_sym_STAR] = ACTIONS(1436), - [anon_sym_LBRACK] = ACTIONS(1100), - [anon_sym_EQ] = ACTIONS(1438), - [anon_sym_QMARK] = ACTIONS(1440), - [anon_sym_STAR_EQ] = ACTIONS(1442), - [anon_sym_SLASH_EQ] = ACTIONS(1442), - [anon_sym_PERCENT_EQ] = ACTIONS(1442), - [anon_sym_PLUS_EQ] = ACTIONS(1442), - [anon_sym_DASH_EQ] = ACTIONS(1442), - [anon_sym_LT_LT_EQ] = ACTIONS(1442), - [anon_sym_GT_GT_EQ] = ACTIONS(1442), - [anon_sym_AMP_EQ] = ACTIONS(1442), - [anon_sym_CARET_EQ] = ACTIONS(1442), - [anon_sym_PIPE_EQ] = ACTIONS(1442), - [anon_sym_AMP] = ACTIONS(1444), - [anon_sym_PIPE_PIPE] = ACTIONS(1446), - [anon_sym_AMP_AMP] = ACTIONS(1448), - [anon_sym_PIPE] = ACTIONS(1450), - [anon_sym_CARET] = ACTIONS(1452), - [anon_sym_EQ_EQ] = ACTIONS(1454), - [anon_sym_BANG_EQ] = ACTIONS(1454), - [anon_sym_LT] = ACTIONS(1456), - [anon_sym_GT] = ACTIONS(1456), - [anon_sym_LT_EQ] = ACTIONS(1458), - [anon_sym_GT_EQ] = ACTIONS(1458), - [anon_sym_LT_LT] = ACTIONS(1460), - [anon_sym_GT_GT] = ACTIONS(1460), - [anon_sym_PLUS] = ACTIONS(1462), - [anon_sym_DASH] = ACTIONS(1462), - [anon_sym_SLASH] = ACTIONS(1436), - [anon_sym_PERCENT] = ACTIONS(1436), - [anon_sym_DASH_DASH] = ACTIONS(1128), - [anon_sym_PLUS_PLUS] = ACTIONS(1128), - [anon_sym_DOT] = ACTIONS(1130), - [anon_sym_DASH_GT] = ACTIONS(1130), + [anon_sym_SEMI] = ACTIONS(3380), + [anon_sym_LPAREN2] = ACTIONS(1089), + [anon_sym_STAR] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(1429), + [anon_sym_QMARK] = ACTIONS(1431), + [anon_sym_STAR_EQ] = ACTIONS(1433), + [anon_sym_SLASH_EQ] = ACTIONS(1433), + [anon_sym_PERCENT_EQ] = ACTIONS(1433), + [anon_sym_PLUS_EQ] = ACTIONS(1433), + [anon_sym_DASH_EQ] = ACTIONS(1433), + [anon_sym_LT_LT_EQ] = ACTIONS(1433), + [anon_sym_GT_GT_EQ] = ACTIONS(1433), + [anon_sym_AMP_EQ] = ACTIONS(1433), + [anon_sym_CARET_EQ] = ACTIONS(1433), + [anon_sym_PIPE_EQ] = ACTIONS(1433), + [anon_sym_AMP] = ACTIONS(1435), + [anon_sym_PIPE_PIPE] = ACTIONS(1437), + [anon_sym_AMP_AMP] = ACTIONS(1439), + [anon_sym_PIPE] = ACTIONS(1441), + [anon_sym_CARET] = ACTIONS(1443), + [anon_sym_EQ_EQ] = ACTIONS(1445), + [anon_sym_BANG_EQ] = ACTIONS(1445), + [anon_sym_LT] = ACTIONS(1447), + [anon_sym_GT] = ACTIONS(1447), + [anon_sym_LT_EQ] = ACTIONS(1449), + [anon_sym_GT_EQ] = ACTIONS(1449), + [anon_sym_LT_LT] = ACTIONS(1451), + [anon_sym_GT_GT] = ACTIONS(1451), + [anon_sym_PLUS] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1453), + [anon_sym_SLASH] = ACTIONS(1427), + [anon_sym_PERCENT] = ACTIONS(1427), + [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_PLUS_PLUS] = ACTIONS(1121), + [anon_sym_DOT] = ACTIONS(1123), + [anon_sym_DASH_GT] = ACTIONS(1123), [sym_comment] = ACTIONS(39), }, [1175] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3393), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3393), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3393), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3393), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3393), - [sym_preproc_directive] = ACTIONS(3393), - [anon_sym_SEMI] = ACTIONS(3395), - [anon_sym_typedef] = ACTIONS(3393), - [anon_sym_extern] = ACTIONS(3393), - [anon_sym_LBRACE] = ACTIONS(3395), - [anon_sym_RBRACE] = ACTIONS(3395), - [anon_sym_LPAREN2] = ACTIONS(3395), - [anon_sym_STAR] = ACTIONS(3395), - [anon_sym_static] = ACTIONS(3393), - [anon_sym_auto] = ACTIONS(3393), - [anon_sym_register] = ACTIONS(3393), - [anon_sym_inline] = ACTIONS(3393), - [anon_sym_const] = ACTIONS(3393), - [anon_sym_restrict] = ACTIONS(3393), - [anon_sym_volatile] = ACTIONS(3393), - [anon_sym__Atomic] = ACTIONS(3393), - [anon_sym_unsigned] = ACTIONS(3393), - [anon_sym_long] = ACTIONS(3393), - [anon_sym_short] = ACTIONS(3393), - [sym_primitive_type] = ACTIONS(3393), - [anon_sym_enum] = ACTIONS(3393), - [anon_sym_struct] = ACTIONS(3393), - [anon_sym_union] = ACTIONS(3393), - [anon_sym_if] = ACTIONS(3393), - [anon_sym_else] = ACTIONS(3393), - [anon_sym_switch] = ACTIONS(3393), - [anon_sym_case] = ACTIONS(3393), - [anon_sym_default] = ACTIONS(3393), - [anon_sym_while] = ACTIONS(3393), - [anon_sym_do] = ACTIONS(3393), - [anon_sym_for] = ACTIONS(3393), - [anon_sym_return] = ACTIONS(3393), - [anon_sym_break] = ACTIONS(3393), - [anon_sym_continue] = ACTIONS(3393), - [anon_sym_goto] = ACTIONS(3393), - [anon_sym_AMP] = ACTIONS(3395), - [anon_sym_BANG] = ACTIONS(3395), - [anon_sym_TILDE] = ACTIONS(3395), - [anon_sym_PLUS] = ACTIONS(3393), - [anon_sym_DASH] = ACTIONS(3393), - [anon_sym_DASH_DASH] = ACTIONS(3395), - [anon_sym_PLUS_PLUS] = ACTIONS(3395), - [anon_sym_sizeof] = ACTIONS(3393), - [sym_number_literal] = ACTIONS(3395), - [anon_sym_SQUOTE] = ACTIONS(3395), - [anon_sym_DQUOTE] = ACTIONS(3395), - [sym_true] = ACTIONS(3393), - [sym_false] = ACTIONS(3393), - [sym_null] = ACTIONS(3393), - [sym_identifier] = ACTIONS(3393), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3382), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3382), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3382), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3382), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3382), + [sym_preproc_directive] = ACTIONS(3382), + [anon_sym_SEMI] = ACTIONS(3384), + [anon_sym_typedef] = ACTIONS(3382), + [anon_sym_extern] = ACTIONS(3382), + [anon_sym_LBRACE] = ACTIONS(3384), + [anon_sym_RBRACE] = ACTIONS(3384), + [anon_sym_LPAREN2] = ACTIONS(3384), + [anon_sym_STAR] = ACTIONS(3384), + [anon_sym_static] = ACTIONS(3382), + [anon_sym_auto] = ACTIONS(3382), + [anon_sym_register] = ACTIONS(3382), + [anon_sym_inline] = ACTIONS(3382), + [anon_sym_const] = ACTIONS(3382), + [anon_sym_restrict] = ACTIONS(3382), + [anon_sym_volatile] = ACTIONS(3382), + [anon_sym__Atomic] = ACTIONS(3382), + [anon_sym_unsigned] = ACTIONS(3382), + [anon_sym_long] = ACTIONS(3382), + [anon_sym_short] = ACTIONS(3382), + [sym_primitive_type] = ACTIONS(3382), + [anon_sym_enum] = ACTIONS(3382), + [anon_sym_struct] = ACTIONS(3382), + [anon_sym_union] = ACTIONS(3382), + [anon_sym_if] = ACTIONS(3382), + [anon_sym_else] = ACTIONS(3382), + [anon_sym_switch] = ACTIONS(3382), + [anon_sym_case] = ACTIONS(3382), + [anon_sym_default] = ACTIONS(3382), + [anon_sym_while] = ACTIONS(3382), + [anon_sym_do] = ACTIONS(3382), + [anon_sym_for] = ACTIONS(3382), + [anon_sym_return] = ACTIONS(3382), + [anon_sym_break] = ACTIONS(3382), + [anon_sym_continue] = ACTIONS(3382), + [anon_sym_goto] = ACTIONS(3382), + [anon_sym_AMP] = ACTIONS(3384), + [anon_sym_BANG] = ACTIONS(3384), + [anon_sym_TILDE] = ACTIONS(3384), + [anon_sym_PLUS] = ACTIONS(3382), + [anon_sym_DASH] = ACTIONS(3382), + [anon_sym_DASH_DASH] = ACTIONS(3384), + [anon_sym_PLUS_PLUS] = ACTIONS(3384), + [anon_sym_sizeof] = ACTIONS(3382), + [sym_number_literal] = ACTIONS(3384), + [anon_sym_SQUOTE] = ACTIONS(3384), + [anon_sym_DQUOTE] = ACTIONS(3384), + [sym_true] = ACTIONS(3382), + [sym_false] = ACTIONS(3382), + [sym_null] = ACTIONS(3382), + [sym_identifier] = ACTIONS(3382), [sym_comment] = ACTIONS(39), }, [1176] = { @@ -46965,85 +46984,85 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(251), [sym_concatenated_string] = STATE(251), [sym_string_literal] = STATE(253), - [anon_sym_SEMI] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(241), - [anon_sym_LPAREN2] = ACTIONS(554), - [anon_sym_STAR] = ACTIONS(556), - [anon_sym_if] = ACTIONS(558), - [anon_sym_switch] = ACTIONS(560), - [anon_sym_case] = ACTIONS(562), - [anon_sym_default] = ACTIONS(564), - [anon_sym_while] = ACTIONS(566), - [anon_sym_do] = ACTIONS(568), - [anon_sym_for] = ACTIONS(570), - [anon_sym_return] = ACTIONS(572), - [anon_sym_break] = ACTIONS(574), - [anon_sym_continue] = ACTIONS(576), - [anon_sym_goto] = ACTIONS(578), - [anon_sym_AMP] = ACTIONS(556), - [anon_sym_BANG] = ACTIONS(580), - [anon_sym_TILDE] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_DASH_DASH] = ACTIONS(586), - [anon_sym_PLUS_PLUS] = ACTIONS(586), - [anon_sym_sizeof] = ACTIONS(588), - [sym_number_literal] = ACTIONS(590), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(594), - [sym_false] = ACTIONS(594), - [sym_null] = ACTIONS(594), - [sym_identifier] = ACTIONS(1612), + [anon_sym_SEMI] = ACTIONS(546), + [anon_sym_LBRACE] = ACTIONS(239), + [anon_sym_LPAREN2] = ACTIONS(550), + [anon_sym_STAR] = ACTIONS(552), + [anon_sym_if] = ACTIONS(554), + [anon_sym_switch] = ACTIONS(556), + [anon_sym_case] = ACTIONS(558), + [anon_sym_default] = ACTIONS(560), + [anon_sym_while] = ACTIONS(562), + [anon_sym_do] = ACTIONS(564), + [anon_sym_for] = ACTIONS(566), + [anon_sym_return] = ACTIONS(568), + [anon_sym_break] = ACTIONS(570), + [anon_sym_continue] = ACTIONS(572), + [anon_sym_goto] = ACTIONS(574), + [anon_sym_AMP] = ACTIONS(552), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_TILDE] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(580), + [anon_sym_DASH] = ACTIONS(580), + [anon_sym_DASH_DASH] = ACTIONS(582), + [anon_sym_PLUS_PLUS] = ACTIONS(582), + [anon_sym_sizeof] = ACTIONS(584), + [sym_number_literal] = ACTIONS(586), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(590), + [sym_false] = ACTIONS(590), + [sym_null] = ACTIONS(590), + [sym_identifier] = ACTIONS(1601), [sym_comment] = ACTIONS(39), }, [1177] = { [aux_sym_for_statement_repeat1] = STATE(1088), - [anon_sym_COMMA] = ACTIONS(2530), - [anon_sym_RPAREN] = ACTIONS(3397), + [anon_sym_COMMA] = ACTIONS(2519), + [anon_sym_RPAREN] = ACTIONS(3386), [sym_comment] = ACTIONS(39), }, [1178] = { [sym_argument_list] = STATE(465), [aux_sym_for_statement_repeat1] = STATE(1241), - [anon_sym_COMMA] = ACTIONS(2530), - [anon_sym_RPAREN] = ACTIONS(3397), - [anon_sym_LPAREN2] = ACTIONS(1096), - [anon_sym_STAR] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1100), - [anon_sym_EQ] = ACTIONS(1562), - [anon_sym_QMARK] = ACTIONS(1564), - [anon_sym_STAR_EQ] = ACTIONS(1566), - [anon_sym_SLASH_EQ] = ACTIONS(1566), - [anon_sym_PERCENT_EQ] = ACTIONS(1566), - [anon_sym_PLUS_EQ] = ACTIONS(1566), - [anon_sym_DASH_EQ] = ACTIONS(1566), - [anon_sym_LT_LT_EQ] = ACTIONS(1566), - [anon_sym_GT_GT_EQ] = ACTIONS(1566), - [anon_sym_AMP_EQ] = ACTIONS(1566), - [anon_sym_CARET_EQ] = ACTIONS(1566), - [anon_sym_PIPE_EQ] = ACTIONS(1566), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_PIPE_PIPE] = ACTIONS(1570), - [anon_sym_AMP_AMP] = ACTIONS(1572), - [anon_sym_PIPE] = ACTIONS(1574), - [anon_sym_CARET] = ACTIONS(1576), - [anon_sym_EQ_EQ] = ACTIONS(1578), - [anon_sym_BANG_EQ] = ACTIONS(1578), - [anon_sym_LT] = ACTIONS(1580), - [anon_sym_GT] = ACTIONS(1580), - [anon_sym_LT_EQ] = ACTIONS(1582), - [anon_sym_GT_EQ] = ACTIONS(1582), - [anon_sym_LT_LT] = ACTIONS(1584), - [anon_sym_GT_GT] = ACTIONS(1584), - [anon_sym_PLUS] = ACTIONS(1586), - [anon_sym_DASH] = ACTIONS(1586), - [anon_sym_SLASH] = ACTIONS(1560), - [anon_sym_PERCENT] = ACTIONS(1560), - [anon_sym_DASH_DASH] = ACTIONS(1128), - [anon_sym_PLUS_PLUS] = ACTIONS(1128), - [anon_sym_DOT] = ACTIONS(1130), - [anon_sym_DASH_GT] = ACTIONS(1130), + [anon_sym_COMMA] = ACTIONS(2519), + [anon_sym_RPAREN] = ACTIONS(3386), + [anon_sym_LPAREN2] = ACTIONS(1089), + [anon_sym_STAR] = ACTIONS(1549), + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(1551), + [anon_sym_QMARK] = ACTIONS(1553), + [anon_sym_STAR_EQ] = ACTIONS(1555), + [anon_sym_SLASH_EQ] = ACTIONS(1555), + [anon_sym_PERCENT_EQ] = ACTIONS(1555), + [anon_sym_PLUS_EQ] = ACTIONS(1555), + [anon_sym_DASH_EQ] = ACTIONS(1555), + [anon_sym_LT_LT_EQ] = ACTIONS(1555), + [anon_sym_GT_GT_EQ] = ACTIONS(1555), + [anon_sym_AMP_EQ] = ACTIONS(1555), + [anon_sym_CARET_EQ] = ACTIONS(1555), + [anon_sym_PIPE_EQ] = ACTIONS(1555), + [anon_sym_AMP] = ACTIONS(1557), + [anon_sym_PIPE_PIPE] = ACTIONS(1559), + [anon_sym_AMP_AMP] = ACTIONS(1561), + [anon_sym_PIPE] = ACTIONS(1563), + [anon_sym_CARET] = ACTIONS(1565), + [anon_sym_EQ_EQ] = ACTIONS(1567), + [anon_sym_BANG_EQ] = ACTIONS(1567), + [anon_sym_LT] = ACTIONS(1569), + [anon_sym_GT] = ACTIONS(1569), + [anon_sym_LT_EQ] = ACTIONS(1571), + [anon_sym_GT_EQ] = ACTIONS(1571), + [anon_sym_LT_LT] = ACTIONS(1573), + [anon_sym_GT_GT] = ACTIONS(1573), + [anon_sym_PLUS] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(1575), + [anon_sym_SLASH] = ACTIONS(1549), + [anon_sym_PERCENT] = ACTIONS(1549), + [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_PLUS_PLUS] = ACTIONS(1121), + [anon_sym_DOT] = ACTIONS(1123), + [anon_sym_DASH_GT] = ACTIONS(1123), [sym_comment] = ACTIONS(39), }, [1179] = { @@ -47067,915 +47086,915 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(1242), [sym_concatenated_string] = STATE(1242), [sym_string_literal] = STATE(409), - [anon_sym_RPAREN] = ACTIONS(3397), - [anon_sym_LPAREN2] = ACTIONS(970), - [anon_sym_STAR] = ACTIONS(972), - [anon_sym_AMP] = ACTIONS(972), - [anon_sym_BANG] = ACTIONS(974), - [anon_sym_TILDE] = ACTIONS(976), - [anon_sym_PLUS] = ACTIONS(978), - [anon_sym_DASH] = ACTIONS(978), - [anon_sym_DASH_DASH] = ACTIONS(980), - [anon_sym_PLUS_PLUS] = ACTIONS(980), - [anon_sym_sizeof] = ACTIONS(982), - [sym_number_literal] = ACTIONS(3399), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(3401), - [sym_false] = ACTIONS(3401), - [sym_null] = ACTIONS(3401), - [sym_identifier] = ACTIONS(3401), + [anon_sym_RPAREN] = ACTIONS(3386), + [anon_sym_LPAREN2] = ACTIONS(961), + [anon_sym_STAR] = ACTIONS(963), + [anon_sym_AMP] = ACTIONS(963), + [anon_sym_BANG] = ACTIONS(965), + [anon_sym_TILDE] = ACTIONS(967), + [anon_sym_PLUS] = ACTIONS(969), + [anon_sym_DASH] = ACTIONS(969), + [anon_sym_DASH_DASH] = ACTIONS(971), + [anon_sym_PLUS_PLUS] = ACTIONS(971), + [anon_sym_sizeof] = ACTIONS(973), + [sym_number_literal] = ACTIONS(3388), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(3390), + [sym_false] = ACTIONS(3390), + [sym_null] = ACTIONS(3390), + [sym_identifier] = ACTIONS(3390), [sym_comment] = ACTIONS(39), }, [1180] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3182), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3182), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3182), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3182), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3182), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3182), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(3182), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(3182), - [sym_preproc_directive] = ACTIONS(3182), - [anon_sym_SEMI] = ACTIONS(3184), - [anon_sym_typedef] = ACTIONS(3182), - [anon_sym_extern] = ACTIONS(3182), - [anon_sym_LBRACE] = ACTIONS(3184), - [anon_sym_LPAREN2] = ACTIONS(3184), - [anon_sym_STAR] = ACTIONS(3184), - [anon_sym_static] = ACTIONS(3182), - [anon_sym_auto] = ACTIONS(3182), - [anon_sym_register] = ACTIONS(3182), - [anon_sym_inline] = ACTIONS(3182), - [anon_sym_const] = ACTIONS(3182), - [anon_sym_restrict] = ACTIONS(3182), - [anon_sym_volatile] = ACTIONS(3182), - [anon_sym__Atomic] = ACTIONS(3182), - [anon_sym_unsigned] = ACTIONS(3182), - [anon_sym_long] = ACTIONS(3182), - [anon_sym_short] = ACTIONS(3182), - [sym_primitive_type] = ACTIONS(3182), - [anon_sym_enum] = ACTIONS(3182), - [anon_sym_struct] = ACTIONS(3182), - [anon_sym_union] = ACTIONS(3182), - [anon_sym_if] = ACTIONS(3182), - [anon_sym_switch] = ACTIONS(3182), - [anon_sym_case] = ACTIONS(3182), - [anon_sym_default] = ACTIONS(3182), - [anon_sym_while] = ACTIONS(3182), - [anon_sym_do] = ACTIONS(3182), - [anon_sym_for] = ACTIONS(3182), - [anon_sym_return] = ACTIONS(3182), - [anon_sym_break] = ACTIONS(3182), - [anon_sym_continue] = ACTIONS(3182), - [anon_sym_goto] = ACTIONS(3182), - [anon_sym_AMP] = ACTIONS(3184), - [anon_sym_BANG] = ACTIONS(3184), - [anon_sym_TILDE] = ACTIONS(3184), - [anon_sym_PLUS] = ACTIONS(3182), - [anon_sym_DASH] = ACTIONS(3182), - [anon_sym_DASH_DASH] = ACTIONS(3184), - [anon_sym_PLUS_PLUS] = ACTIONS(3184), - [anon_sym_sizeof] = ACTIONS(3182), - [sym_number_literal] = ACTIONS(3184), - [anon_sym_SQUOTE] = ACTIONS(3184), - [anon_sym_DQUOTE] = ACTIONS(3184), - [sym_true] = ACTIONS(3182), - [sym_false] = ACTIONS(3182), - [sym_null] = ACTIONS(3182), - [sym_identifier] = ACTIONS(3182), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3171), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3171), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3171), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3171), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3171), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3171), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(3171), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(3171), + [sym_preproc_directive] = ACTIONS(3171), + [anon_sym_SEMI] = ACTIONS(3173), + [anon_sym_typedef] = ACTIONS(3171), + [anon_sym_extern] = ACTIONS(3171), + [anon_sym_LBRACE] = ACTIONS(3173), + [anon_sym_LPAREN2] = ACTIONS(3173), + [anon_sym_STAR] = ACTIONS(3173), + [anon_sym_static] = ACTIONS(3171), + [anon_sym_auto] = ACTIONS(3171), + [anon_sym_register] = ACTIONS(3171), + [anon_sym_inline] = ACTIONS(3171), + [anon_sym_const] = ACTIONS(3171), + [anon_sym_restrict] = ACTIONS(3171), + [anon_sym_volatile] = ACTIONS(3171), + [anon_sym__Atomic] = ACTIONS(3171), + [anon_sym_unsigned] = ACTIONS(3171), + [anon_sym_long] = ACTIONS(3171), + [anon_sym_short] = ACTIONS(3171), + [sym_primitive_type] = ACTIONS(3171), + [anon_sym_enum] = ACTIONS(3171), + [anon_sym_struct] = ACTIONS(3171), + [anon_sym_union] = ACTIONS(3171), + [anon_sym_if] = ACTIONS(3171), + [anon_sym_switch] = ACTIONS(3171), + [anon_sym_case] = ACTIONS(3171), + [anon_sym_default] = ACTIONS(3171), + [anon_sym_while] = ACTIONS(3171), + [anon_sym_do] = ACTIONS(3171), + [anon_sym_for] = ACTIONS(3171), + [anon_sym_return] = ACTIONS(3171), + [anon_sym_break] = ACTIONS(3171), + [anon_sym_continue] = ACTIONS(3171), + [anon_sym_goto] = ACTIONS(3171), + [anon_sym_AMP] = ACTIONS(3173), + [anon_sym_BANG] = ACTIONS(3173), + [anon_sym_TILDE] = ACTIONS(3173), + [anon_sym_PLUS] = ACTIONS(3171), + [anon_sym_DASH] = ACTIONS(3171), + [anon_sym_DASH_DASH] = ACTIONS(3173), + [anon_sym_PLUS_PLUS] = ACTIONS(3173), + [anon_sym_sizeof] = ACTIONS(3171), + [sym_number_literal] = ACTIONS(3173), + [anon_sym_SQUOTE] = ACTIONS(3173), + [anon_sym_DQUOTE] = ACTIONS(3173), + [sym_true] = ACTIONS(3171), + [sym_false] = ACTIONS(3171), + [sym_null] = ACTIONS(3171), + [sym_identifier] = ACTIONS(3171), [sym_comment] = ACTIONS(39), }, [1181] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3186), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3186), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3186), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3186), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3186), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3186), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(3186), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(3186), - [sym_preproc_directive] = ACTIONS(3186), - [anon_sym_SEMI] = ACTIONS(3188), - [anon_sym_typedef] = ACTIONS(3186), - [anon_sym_extern] = ACTIONS(3186), - [anon_sym_LBRACE] = ACTIONS(3188), - [anon_sym_LPAREN2] = ACTIONS(3188), - [anon_sym_STAR] = ACTIONS(3188), - [anon_sym_static] = ACTIONS(3186), - [anon_sym_auto] = ACTIONS(3186), - [anon_sym_register] = ACTIONS(3186), - [anon_sym_inline] = ACTIONS(3186), - [anon_sym_const] = ACTIONS(3186), - [anon_sym_restrict] = ACTIONS(3186), - [anon_sym_volatile] = ACTIONS(3186), - [anon_sym__Atomic] = ACTIONS(3186), - [anon_sym_unsigned] = ACTIONS(3186), - [anon_sym_long] = ACTIONS(3186), - [anon_sym_short] = ACTIONS(3186), - [sym_primitive_type] = ACTIONS(3186), - [anon_sym_enum] = ACTIONS(3186), - [anon_sym_struct] = ACTIONS(3186), - [anon_sym_union] = ACTIONS(3186), - [anon_sym_if] = ACTIONS(3186), - [anon_sym_switch] = ACTIONS(3186), - [anon_sym_case] = ACTIONS(3186), - [anon_sym_default] = ACTIONS(3186), - [anon_sym_while] = ACTIONS(3186), - [anon_sym_do] = ACTIONS(3186), - [anon_sym_for] = ACTIONS(3186), - [anon_sym_return] = ACTIONS(3186), - [anon_sym_break] = ACTIONS(3186), - [anon_sym_continue] = ACTIONS(3186), - [anon_sym_goto] = ACTIONS(3186), - [anon_sym_AMP] = ACTIONS(3188), - [anon_sym_BANG] = ACTIONS(3188), - [anon_sym_TILDE] = ACTIONS(3188), - [anon_sym_PLUS] = ACTIONS(3186), - [anon_sym_DASH] = ACTIONS(3186), - [anon_sym_DASH_DASH] = ACTIONS(3188), - [anon_sym_PLUS_PLUS] = ACTIONS(3188), - [anon_sym_sizeof] = ACTIONS(3186), - [sym_number_literal] = ACTIONS(3188), - [anon_sym_SQUOTE] = ACTIONS(3188), - [anon_sym_DQUOTE] = ACTIONS(3188), - [sym_true] = ACTIONS(3186), - [sym_false] = ACTIONS(3186), - [sym_null] = ACTIONS(3186), - [sym_identifier] = ACTIONS(3186), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3175), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3175), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3175), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3175), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3175), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3175), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(3175), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(3175), + [sym_preproc_directive] = ACTIONS(3175), + [anon_sym_SEMI] = ACTIONS(3177), + [anon_sym_typedef] = ACTIONS(3175), + [anon_sym_extern] = ACTIONS(3175), + [anon_sym_LBRACE] = ACTIONS(3177), + [anon_sym_LPAREN2] = ACTIONS(3177), + [anon_sym_STAR] = ACTIONS(3177), + [anon_sym_static] = ACTIONS(3175), + [anon_sym_auto] = ACTIONS(3175), + [anon_sym_register] = ACTIONS(3175), + [anon_sym_inline] = ACTIONS(3175), + [anon_sym_const] = ACTIONS(3175), + [anon_sym_restrict] = ACTIONS(3175), + [anon_sym_volatile] = ACTIONS(3175), + [anon_sym__Atomic] = ACTIONS(3175), + [anon_sym_unsigned] = ACTIONS(3175), + [anon_sym_long] = ACTIONS(3175), + [anon_sym_short] = ACTIONS(3175), + [sym_primitive_type] = ACTIONS(3175), + [anon_sym_enum] = ACTIONS(3175), + [anon_sym_struct] = ACTIONS(3175), + [anon_sym_union] = ACTIONS(3175), + [anon_sym_if] = ACTIONS(3175), + [anon_sym_switch] = ACTIONS(3175), + [anon_sym_case] = ACTIONS(3175), + [anon_sym_default] = ACTIONS(3175), + [anon_sym_while] = ACTIONS(3175), + [anon_sym_do] = ACTIONS(3175), + [anon_sym_for] = ACTIONS(3175), + [anon_sym_return] = ACTIONS(3175), + [anon_sym_break] = ACTIONS(3175), + [anon_sym_continue] = ACTIONS(3175), + [anon_sym_goto] = ACTIONS(3175), + [anon_sym_AMP] = ACTIONS(3177), + [anon_sym_BANG] = ACTIONS(3177), + [anon_sym_TILDE] = ACTIONS(3177), + [anon_sym_PLUS] = ACTIONS(3175), + [anon_sym_DASH] = ACTIONS(3175), + [anon_sym_DASH_DASH] = ACTIONS(3177), + [anon_sym_PLUS_PLUS] = ACTIONS(3177), + [anon_sym_sizeof] = ACTIONS(3175), + [sym_number_literal] = ACTIONS(3177), + [anon_sym_SQUOTE] = ACTIONS(3177), + [anon_sym_DQUOTE] = ACTIONS(3177), + [sym_true] = ACTIONS(3175), + [sym_false] = ACTIONS(3175), + [sym_null] = ACTIONS(3175), + [sym_identifier] = ACTIONS(3175), [sym_comment] = ACTIONS(39), }, [1182] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3190), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3190), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3190), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3190), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3190), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3190), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(3190), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(3190), - [sym_preproc_directive] = ACTIONS(3190), - [anon_sym_SEMI] = ACTIONS(3192), - [anon_sym_typedef] = ACTIONS(3190), - [anon_sym_extern] = ACTIONS(3190), - [anon_sym_LBRACE] = ACTIONS(3192), - [anon_sym_LPAREN2] = ACTIONS(3192), - [anon_sym_STAR] = ACTIONS(3192), - [anon_sym_static] = ACTIONS(3190), - [anon_sym_auto] = ACTIONS(3190), - [anon_sym_register] = ACTIONS(3190), - [anon_sym_inline] = ACTIONS(3190), - [anon_sym_const] = ACTIONS(3190), - [anon_sym_restrict] = ACTIONS(3190), - [anon_sym_volatile] = ACTIONS(3190), - [anon_sym__Atomic] = ACTIONS(3190), - [anon_sym_unsigned] = ACTIONS(3190), - [anon_sym_long] = ACTIONS(3190), - [anon_sym_short] = ACTIONS(3190), - [sym_primitive_type] = ACTIONS(3190), - [anon_sym_enum] = ACTIONS(3190), - [anon_sym_struct] = ACTIONS(3190), - [anon_sym_union] = ACTIONS(3190), - [anon_sym_if] = ACTIONS(3190), - [anon_sym_switch] = ACTIONS(3190), - [anon_sym_case] = ACTIONS(3190), - [anon_sym_default] = ACTIONS(3190), - [anon_sym_while] = ACTIONS(3190), - [anon_sym_do] = ACTIONS(3190), - [anon_sym_for] = ACTIONS(3190), - [anon_sym_return] = ACTIONS(3190), - [anon_sym_break] = ACTIONS(3190), - [anon_sym_continue] = ACTIONS(3190), - [anon_sym_goto] = ACTIONS(3190), - [anon_sym_AMP] = ACTIONS(3192), - [anon_sym_BANG] = ACTIONS(3192), - [anon_sym_TILDE] = ACTIONS(3192), - [anon_sym_PLUS] = ACTIONS(3190), - [anon_sym_DASH] = ACTIONS(3190), - [anon_sym_DASH_DASH] = ACTIONS(3192), - [anon_sym_PLUS_PLUS] = ACTIONS(3192), - [anon_sym_sizeof] = ACTIONS(3190), - [sym_number_literal] = ACTIONS(3192), - [anon_sym_SQUOTE] = ACTIONS(3192), - [anon_sym_DQUOTE] = ACTIONS(3192), - [sym_true] = ACTIONS(3190), - [sym_false] = ACTIONS(3190), - [sym_null] = ACTIONS(3190), - [sym_identifier] = ACTIONS(3190), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3179), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3179), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3179), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3179), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3179), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3179), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(3179), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(3179), + [sym_preproc_directive] = ACTIONS(3179), + [anon_sym_SEMI] = ACTIONS(3181), + [anon_sym_typedef] = ACTIONS(3179), + [anon_sym_extern] = ACTIONS(3179), + [anon_sym_LBRACE] = ACTIONS(3181), + [anon_sym_LPAREN2] = ACTIONS(3181), + [anon_sym_STAR] = ACTIONS(3181), + [anon_sym_static] = ACTIONS(3179), + [anon_sym_auto] = ACTIONS(3179), + [anon_sym_register] = ACTIONS(3179), + [anon_sym_inline] = ACTIONS(3179), + [anon_sym_const] = ACTIONS(3179), + [anon_sym_restrict] = ACTIONS(3179), + [anon_sym_volatile] = ACTIONS(3179), + [anon_sym__Atomic] = ACTIONS(3179), + [anon_sym_unsigned] = ACTIONS(3179), + [anon_sym_long] = ACTIONS(3179), + [anon_sym_short] = ACTIONS(3179), + [sym_primitive_type] = ACTIONS(3179), + [anon_sym_enum] = ACTIONS(3179), + [anon_sym_struct] = ACTIONS(3179), + [anon_sym_union] = ACTIONS(3179), + [anon_sym_if] = ACTIONS(3179), + [anon_sym_switch] = ACTIONS(3179), + [anon_sym_case] = ACTIONS(3179), + [anon_sym_default] = ACTIONS(3179), + [anon_sym_while] = ACTIONS(3179), + [anon_sym_do] = ACTIONS(3179), + [anon_sym_for] = ACTIONS(3179), + [anon_sym_return] = ACTIONS(3179), + [anon_sym_break] = ACTIONS(3179), + [anon_sym_continue] = ACTIONS(3179), + [anon_sym_goto] = ACTIONS(3179), + [anon_sym_AMP] = ACTIONS(3181), + [anon_sym_BANG] = ACTIONS(3181), + [anon_sym_TILDE] = ACTIONS(3181), + [anon_sym_PLUS] = ACTIONS(3179), + [anon_sym_DASH] = ACTIONS(3179), + [anon_sym_DASH_DASH] = ACTIONS(3181), + [anon_sym_PLUS_PLUS] = ACTIONS(3181), + [anon_sym_sizeof] = ACTIONS(3179), + [sym_number_literal] = ACTIONS(3181), + [anon_sym_SQUOTE] = ACTIONS(3181), + [anon_sym_DQUOTE] = ACTIONS(3181), + [sym_true] = ACTIONS(3179), + [sym_false] = ACTIONS(3179), + [sym_null] = ACTIONS(3179), + [sym_identifier] = ACTIONS(3179), [sym_comment] = ACTIONS(39), }, [1183] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3194), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3194), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3194), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3194), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3194), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3194), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(3194), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(3194), - [sym_preproc_directive] = ACTIONS(3194), - [anon_sym_SEMI] = ACTIONS(3196), - [anon_sym_typedef] = ACTIONS(3194), - [anon_sym_extern] = ACTIONS(3194), - [anon_sym_LBRACE] = ACTIONS(3196), - [anon_sym_LPAREN2] = ACTIONS(3196), - [anon_sym_STAR] = ACTIONS(3196), - [anon_sym_static] = ACTIONS(3194), - [anon_sym_auto] = ACTIONS(3194), - [anon_sym_register] = ACTIONS(3194), - [anon_sym_inline] = ACTIONS(3194), - [anon_sym_const] = ACTIONS(3194), - [anon_sym_restrict] = ACTIONS(3194), - [anon_sym_volatile] = ACTIONS(3194), - [anon_sym__Atomic] = ACTIONS(3194), - [anon_sym_unsigned] = ACTIONS(3194), - [anon_sym_long] = ACTIONS(3194), - [anon_sym_short] = ACTIONS(3194), - [sym_primitive_type] = ACTIONS(3194), - [anon_sym_enum] = ACTIONS(3194), - [anon_sym_struct] = ACTIONS(3194), - [anon_sym_union] = ACTIONS(3194), - [anon_sym_if] = ACTIONS(3194), - [anon_sym_switch] = ACTIONS(3194), - [anon_sym_case] = ACTIONS(3194), - [anon_sym_default] = ACTIONS(3194), - [anon_sym_while] = ACTIONS(3194), - [anon_sym_do] = ACTIONS(3194), - [anon_sym_for] = ACTIONS(3194), - [anon_sym_return] = ACTIONS(3194), - [anon_sym_break] = ACTIONS(3194), - [anon_sym_continue] = ACTIONS(3194), - [anon_sym_goto] = ACTIONS(3194), - [anon_sym_AMP] = ACTIONS(3196), - [anon_sym_BANG] = ACTIONS(3196), - [anon_sym_TILDE] = ACTIONS(3196), - [anon_sym_PLUS] = ACTIONS(3194), - [anon_sym_DASH] = ACTIONS(3194), - [anon_sym_DASH_DASH] = ACTIONS(3196), - [anon_sym_PLUS_PLUS] = ACTIONS(3196), - [anon_sym_sizeof] = ACTIONS(3194), - [sym_number_literal] = ACTIONS(3196), - [anon_sym_SQUOTE] = ACTIONS(3196), - [anon_sym_DQUOTE] = ACTIONS(3196), - [sym_true] = ACTIONS(3194), - [sym_false] = ACTIONS(3194), - [sym_null] = ACTIONS(3194), - [sym_identifier] = ACTIONS(3194), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3183), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3183), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3183), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3183), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3183), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3183), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(3183), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(3183), + [sym_preproc_directive] = ACTIONS(3183), + [anon_sym_SEMI] = ACTIONS(3185), + [anon_sym_typedef] = ACTIONS(3183), + [anon_sym_extern] = ACTIONS(3183), + [anon_sym_LBRACE] = ACTIONS(3185), + [anon_sym_LPAREN2] = ACTIONS(3185), + [anon_sym_STAR] = ACTIONS(3185), + [anon_sym_static] = ACTIONS(3183), + [anon_sym_auto] = ACTIONS(3183), + [anon_sym_register] = ACTIONS(3183), + [anon_sym_inline] = ACTIONS(3183), + [anon_sym_const] = ACTIONS(3183), + [anon_sym_restrict] = ACTIONS(3183), + [anon_sym_volatile] = ACTIONS(3183), + [anon_sym__Atomic] = ACTIONS(3183), + [anon_sym_unsigned] = ACTIONS(3183), + [anon_sym_long] = ACTIONS(3183), + [anon_sym_short] = ACTIONS(3183), + [sym_primitive_type] = ACTIONS(3183), + [anon_sym_enum] = ACTIONS(3183), + [anon_sym_struct] = ACTIONS(3183), + [anon_sym_union] = ACTIONS(3183), + [anon_sym_if] = ACTIONS(3183), + [anon_sym_switch] = ACTIONS(3183), + [anon_sym_case] = ACTIONS(3183), + [anon_sym_default] = ACTIONS(3183), + [anon_sym_while] = ACTIONS(3183), + [anon_sym_do] = ACTIONS(3183), + [anon_sym_for] = ACTIONS(3183), + [anon_sym_return] = ACTIONS(3183), + [anon_sym_break] = ACTIONS(3183), + [anon_sym_continue] = ACTIONS(3183), + [anon_sym_goto] = ACTIONS(3183), + [anon_sym_AMP] = ACTIONS(3185), + [anon_sym_BANG] = ACTIONS(3185), + [anon_sym_TILDE] = ACTIONS(3185), + [anon_sym_PLUS] = ACTIONS(3183), + [anon_sym_DASH] = ACTIONS(3183), + [anon_sym_DASH_DASH] = ACTIONS(3185), + [anon_sym_PLUS_PLUS] = ACTIONS(3185), + [anon_sym_sizeof] = ACTIONS(3183), + [sym_number_literal] = ACTIONS(3185), + [anon_sym_SQUOTE] = ACTIONS(3185), + [anon_sym_DQUOTE] = ACTIONS(3185), + [sym_true] = ACTIONS(3183), + [sym_false] = ACTIONS(3183), + [sym_null] = ACTIONS(3183), + [sym_identifier] = ACTIONS(3183), [sym_comment] = ACTIONS(39), }, [1184] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3198), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3198), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3198), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3198), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3198), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3198), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(3198), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(3198), - [sym_preproc_directive] = ACTIONS(3198), - [anon_sym_SEMI] = ACTIONS(3200), - [anon_sym_typedef] = ACTIONS(3198), - [anon_sym_extern] = ACTIONS(3198), - [anon_sym_LBRACE] = ACTIONS(3200), - [anon_sym_LPAREN2] = ACTIONS(3200), - [anon_sym_STAR] = ACTIONS(3200), - [anon_sym_static] = ACTIONS(3198), - [anon_sym_auto] = ACTIONS(3198), - [anon_sym_register] = ACTIONS(3198), - [anon_sym_inline] = ACTIONS(3198), - [anon_sym_const] = ACTIONS(3198), - [anon_sym_restrict] = ACTIONS(3198), - [anon_sym_volatile] = ACTIONS(3198), - [anon_sym__Atomic] = ACTIONS(3198), - [anon_sym_unsigned] = ACTIONS(3198), - [anon_sym_long] = ACTIONS(3198), - [anon_sym_short] = ACTIONS(3198), - [sym_primitive_type] = ACTIONS(3198), - [anon_sym_enum] = ACTIONS(3198), - [anon_sym_struct] = ACTIONS(3198), - [anon_sym_union] = ACTIONS(3198), - [anon_sym_if] = ACTIONS(3198), - [anon_sym_switch] = ACTIONS(3198), - [anon_sym_case] = ACTIONS(3198), - [anon_sym_default] = ACTIONS(3198), - [anon_sym_while] = ACTIONS(3198), - [anon_sym_do] = ACTIONS(3198), - [anon_sym_for] = ACTIONS(3198), - [anon_sym_return] = ACTIONS(3198), - [anon_sym_break] = ACTIONS(3198), - [anon_sym_continue] = ACTIONS(3198), - [anon_sym_goto] = ACTIONS(3198), - [anon_sym_AMP] = ACTIONS(3200), - [anon_sym_BANG] = ACTIONS(3200), - [anon_sym_TILDE] = ACTIONS(3200), - [anon_sym_PLUS] = ACTIONS(3198), - [anon_sym_DASH] = ACTIONS(3198), - [anon_sym_DASH_DASH] = ACTIONS(3200), - [anon_sym_PLUS_PLUS] = ACTIONS(3200), - [anon_sym_sizeof] = ACTIONS(3198), - [sym_number_literal] = ACTIONS(3200), - [anon_sym_SQUOTE] = ACTIONS(3200), - [anon_sym_DQUOTE] = ACTIONS(3200), - [sym_true] = ACTIONS(3198), - [sym_false] = ACTIONS(3198), - [sym_null] = ACTIONS(3198), - [sym_identifier] = ACTIONS(3198), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3187), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3187), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3187), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3187), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3187), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3187), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(3187), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(3187), + [sym_preproc_directive] = ACTIONS(3187), + [anon_sym_SEMI] = ACTIONS(3189), + [anon_sym_typedef] = ACTIONS(3187), + [anon_sym_extern] = ACTIONS(3187), + [anon_sym_LBRACE] = ACTIONS(3189), + [anon_sym_LPAREN2] = ACTIONS(3189), + [anon_sym_STAR] = ACTIONS(3189), + [anon_sym_static] = ACTIONS(3187), + [anon_sym_auto] = ACTIONS(3187), + [anon_sym_register] = ACTIONS(3187), + [anon_sym_inline] = ACTIONS(3187), + [anon_sym_const] = ACTIONS(3187), + [anon_sym_restrict] = ACTIONS(3187), + [anon_sym_volatile] = ACTIONS(3187), + [anon_sym__Atomic] = ACTIONS(3187), + [anon_sym_unsigned] = ACTIONS(3187), + [anon_sym_long] = ACTIONS(3187), + [anon_sym_short] = ACTIONS(3187), + [sym_primitive_type] = ACTIONS(3187), + [anon_sym_enum] = ACTIONS(3187), + [anon_sym_struct] = ACTIONS(3187), + [anon_sym_union] = ACTIONS(3187), + [anon_sym_if] = ACTIONS(3187), + [anon_sym_switch] = ACTIONS(3187), + [anon_sym_case] = ACTIONS(3187), + [anon_sym_default] = ACTIONS(3187), + [anon_sym_while] = ACTIONS(3187), + [anon_sym_do] = ACTIONS(3187), + [anon_sym_for] = ACTIONS(3187), + [anon_sym_return] = ACTIONS(3187), + [anon_sym_break] = ACTIONS(3187), + [anon_sym_continue] = ACTIONS(3187), + [anon_sym_goto] = ACTIONS(3187), + [anon_sym_AMP] = ACTIONS(3189), + [anon_sym_BANG] = ACTIONS(3189), + [anon_sym_TILDE] = ACTIONS(3189), + [anon_sym_PLUS] = ACTIONS(3187), + [anon_sym_DASH] = ACTIONS(3187), + [anon_sym_DASH_DASH] = ACTIONS(3189), + [anon_sym_PLUS_PLUS] = ACTIONS(3189), + [anon_sym_sizeof] = ACTIONS(3187), + [sym_number_literal] = ACTIONS(3189), + [anon_sym_SQUOTE] = ACTIONS(3189), + [anon_sym_DQUOTE] = ACTIONS(3189), + [sym_true] = ACTIONS(3187), + [sym_false] = ACTIONS(3187), + [sym_null] = ACTIONS(3187), + [sym_identifier] = ACTIONS(3187), [sym_comment] = ACTIONS(39), }, [1185] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3202), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3202), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3202), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3202), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3202), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3202), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(3202), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(3202), - [sym_preproc_directive] = ACTIONS(3202), - [anon_sym_SEMI] = ACTIONS(3204), - [anon_sym_typedef] = ACTIONS(3202), - [anon_sym_extern] = ACTIONS(3202), - [anon_sym_LBRACE] = ACTIONS(3204), - [anon_sym_LPAREN2] = ACTIONS(3204), - [anon_sym_STAR] = ACTIONS(3204), - [anon_sym_static] = ACTIONS(3202), - [anon_sym_auto] = ACTIONS(3202), - [anon_sym_register] = ACTIONS(3202), - [anon_sym_inline] = ACTIONS(3202), - [anon_sym_const] = ACTIONS(3202), - [anon_sym_restrict] = ACTIONS(3202), - [anon_sym_volatile] = ACTIONS(3202), - [anon_sym__Atomic] = ACTIONS(3202), - [anon_sym_unsigned] = ACTIONS(3202), - [anon_sym_long] = ACTIONS(3202), - [anon_sym_short] = ACTIONS(3202), - [sym_primitive_type] = ACTIONS(3202), - [anon_sym_enum] = ACTIONS(3202), - [anon_sym_struct] = ACTIONS(3202), - [anon_sym_union] = ACTIONS(3202), - [anon_sym_if] = ACTIONS(3202), - [anon_sym_switch] = ACTIONS(3202), - [anon_sym_case] = ACTIONS(3202), - [anon_sym_default] = ACTIONS(3202), - [anon_sym_while] = ACTIONS(3202), - [anon_sym_do] = ACTIONS(3202), - [anon_sym_for] = ACTIONS(3202), - [anon_sym_return] = ACTIONS(3202), - [anon_sym_break] = ACTIONS(3202), - [anon_sym_continue] = ACTIONS(3202), - [anon_sym_goto] = ACTIONS(3202), - [anon_sym_AMP] = ACTIONS(3204), - [anon_sym_BANG] = ACTIONS(3204), - [anon_sym_TILDE] = ACTIONS(3204), - [anon_sym_PLUS] = ACTIONS(3202), - [anon_sym_DASH] = ACTIONS(3202), - [anon_sym_DASH_DASH] = ACTIONS(3204), - [anon_sym_PLUS_PLUS] = ACTIONS(3204), - [anon_sym_sizeof] = ACTIONS(3202), - [sym_number_literal] = ACTIONS(3204), - [anon_sym_SQUOTE] = ACTIONS(3204), - [anon_sym_DQUOTE] = ACTIONS(3204), - [sym_true] = ACTIONS(3202), - [sym_false] = ACTIONS(3202), - [sym_null] = ACTIONS(3202), - [sym_identifier] = ACTIONS(3202), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3191), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3191), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3191), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3191), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3191), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3191), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(3191), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(3191), + [sym_preproc_directive] = ACTIONS(3191), + [anon_sym_SEMI] = ACTIONS(3193), + [anon_sym_typedef] = ACTIONS(3191), + [anon_sym_extern] = ACTIONS(3191), + [anon_sym_LBRACE] = ACTIONS(3193), + [anon_sym_LPAREN2] = ACTIONS(3193), + [anon_sym_STAR] = ACTIONS(3193), + [anon_sym_static] = ACTIONS(3191), + [anon_sym_auto] = ACTIONS(3191), + [anon_sym_register] = ACTIONS(3191), + [anon_sym_inline] = ACTIONS(3191), + [anon_sym_const] = ACTIONS(3191), + [anon_sym_restrict] = ACTIONS(3191), + [anon_sym_volatile] = ACTIONS(3191), + [anon_sym__Atomic] = ACTIONS(3191), + [anon_sym_unsigned] = ACTIONS(3191), + [anon_sym_long] = ACTIONS(3191), + [anon_sym_short] = ACTIONS(3191), + [sym_primitive_type] = ACTIONS(3191), + [anon_sym_enum] = ACTIONS(3191), + [anon_sym_struct] = ACTIONS(3191), + [anon_sym_union] = ACTIONS(3191), + [anon_sym_if] = ACTIONS(3191), + [anon_sym_switch] = ACTIONS(3191), + [anon_sym_case] = ACTIONS(3191), + [anon_sym_default] = ACTIONS(3191), + [anon_sym_while] = ACTIONS(3191), + [anon_sym_do] = ACTIONS(3191), + [anon_sym_for] = ACTIONS(3191), + [anon_sym_return] = ACTIONS(3191), + [anon_sym_break] = ACTIONS(3191), + [anon_sym_continue] = ACTIONS(3191), + [anon_sym_goto] = ACTIONS(3191), + [anon_sym_AMP] = ACTIONS(3193), + [anon_sym_BANG] = ACTIONS(3193), + [anon_sym_TILDE] = ACTIONS(3193), + [anon_sym_PLUS] = ACTIONS(3191), + [anon_sym_DASH] = ACTIONS(3191), + [anon_sym_DASH_DASH] = ACTIONS(3193), + [anon_sym_PLUS_PLUS] = ACTIONS(3193), + [anon_sym_sizeof] = ACTIONS(3191), + [sym_number_literal] = ACTIONS(3193), + [anon_sym_SQUOTE] = ACTIONS(3193), + [anon_sym_DQUOTE] = ACTIONS(3193), + [sym_true] = ACTIONS(3191), + [sym_false] = ACTIONS(3191), + [sym_null] = ACTIONS(3191), + [sym_identifier] = ACTIONS(3191), [sym_comment] = ACTIONS(39), }, [1186] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2765), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2765), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2765), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2765), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2765), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2765), - [sym_preproc_directive] = ACTIONS(2765), - [anon_sym_SEMI] = ACTIONS(2767), - [anon_sym_typedef] = ACTIONS(2765), - [anon_sym_extern] = ACTIONS(2765), - [anon_sym_LBRACE] = ACTIONS(2767), - [anon_sym_LPAREN2] = ACTIONS(2767), - [anon_sym_STAR] = ACTIONS(2767), - [anon_sym_static] = ACTIONS(2765), - [anon_sym_auto] = ACTIONS(2765), - [anon_sym_register] = ACTIONS(2765), - [anon_sym_inline] = ACTIONS(2765), - [anon_sym_const] = ACTIONS(2765), - [anon_sym_restrict] = ACTIONS(2765), - [anon_sym_volatile] = ACTIONS(2765), - [anon_sym__Atomic] = ACTIONS(2765), - [anon_sym_unsigned] = ACTIONS(2765), - [anon_sym_long] = ACTIONS(2765), - [anon_sym_short] = ACTIONS(2765), - [sym_primitive_type] = ACTIONS(2765), - [anon_sym_enum] = ACTIONS(2765), - [anon_sym_struct] = ACTIONS(2765), - [anon_sym_union] = ACTIONS(2765), - [anon_sym_if] = ACTIONS(2765), - [anon_sym_switch] = ACTIONS(2765), - [anon_sym_case] = ACTIONS(2765), - [anon_sym_default] = ACTIONS(2765), - [anon_sym_while] = ACTIONS(2765), - [anon_sym_do] = ACTIONS(2765), - [anon_sym_for] = ACTIONS(2765), - [anon_sym_return] = ACTIONS(2765), - [anon_sym_break] = ACTIONS(2765), - [anon_sym_continue] = ACTIONS(2765), - [anon_sym_goto] = ACTIONS(2765), - [anon_sym_AMP] = ACTIONS(2767), - [anon_sym_BANG] = ACTIONS(2767), - [anon_sym_TILDE] = ACTIONS(2767), - [anon_sym_PLUS] = ACTIONS(2765), - [anon_sym_DASH] = ACTIONS(2765), - [anon_sym_DASH_DASH] = ACTIONS(2767), - [anon_sym_PLUS_PLUS] = ACTIONS(2767), - [anon_sym_sizeof] = ACTIONS(2765), - [sym_number_literal] = ACTIONS(2767), - [anon_sym_SQUOTE] = ACTIONS(2767), - [anon_sym_DQUOTE] = ACTIONS(2767), - [sym_true] = ACTIONS(2765), - [sym_false] = ACTIONS(2765), - [sym_null] = ACTIONS(2765), - [sym_identifier] = ACTIONS(2765), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2754), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2754), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2754), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2754), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2754), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2754), + [sym_preproc_directive] = ACTIONS(2754), + [anon_sym_SEMI] = ACTIONS(2756), + [anon_sym_typedef] = ACTIONS(2754), + [anon_sym_extern] = ACTIONS(2754), + [anon_sym_LBRACE] = ACTIONS(2756), + [anon_sym_LPAREN2] = ACTIONS(2756), + [anon_sym_STAR] = ACTIONS(2756), + [anon_sym_static] = ACTIONS(2754), + [anon_sym_auto] = ACTIONS(2754), + [anon_sym_register] = ACTIONS(2754), + [anon_sym_inline] = ACTIONS(2754), + [anon_sym_const] = ACTIONS(2754), + [anon_sym_restrict] = ACTIONS(2754), + [anon_sym_volatile] = ACTIONS(2754), + [anon_sym__Atomic] = ACTIONS(2754), + [anon_sym_unsigned] = ACTIONS(2754), + [anon_sym_long] = ACTIONS(2754), + [anon_sym_short] = ACTIONS(2754), + [sym_primitive_type] = ACTIONS(2754), + [anon_sym_enum] = ACTIONS(2754), + [anon_sym_struct] = ACTIONS(2754), + [anon_sym_union] = ACTIONS(2754), + [anon_sym_if] = ACTIONS(2754), + [anon_sym_switch] = ACTIONS(2754), + [anon_sym_case] = ACTIONS(2754), + [anon_sym_default] = ACTIONS(2754), + [anon_sym_while] = ACTIONS(2754), + [anon_sym_do] = ACTIONS(2754), + [anon_sym_for] = ACTIONS(2754), + [anon_sym_return] = ACTIONS(2754), + [anon_sym_break] = ACTIONS(2754), + [anon_sym_continue] = ACTIONS(2754), + [anon_sym_goto] = ACTIONS(2754), + [anon_sym_AMP] = ACTIONS(2756), + [anon_sym_BANG] = ACTIONS(2756), + [anon_sym_TILDE] = ACTIONS(2756), + [anon_sym_PLUS] = ACTIONS(2754), + [anon_sym_DASH] = ACTIONS(2754), + [anon_sym_DASH_DASH] = ACTIONS(2756), + [anon_sym_PLUS_PLUS] = ACTIONS(2756), + [anon_sym_sizeof] = ACTIONS(2754), + [sym_number_literal] = ACTIONS(2756), + [anon_sym_SQUOTE] = ACTIONS(2756), + [anon_sym_DQUOTE] = ACTIONS(2756), + [sym_true] = ACTIONS(2754), + [sym_false] = ACTIONS(2754), + [sym_null] = ACTIONS(2754), + [sym_identifier] = ACTIONS(2754), [sym_comment] = ACTIONS(39), }, [1187] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2769), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2769), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2769), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2769), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2769), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2769), - [sym_preproc_directive] = ACTIONS(2769), - [anon_sym_SEMI] = ACTIONS(2771), - [anon_sym_typedef] = ACTIONS(2769), - [anon_sym_extern] = ACTIONS(2769), - [anon_sym_LBRACE] = ACTIONS(2771), - [anon_sym_LPAREN2] = ACTIONS(2771), - [anon_sym_STAR] = ACTIONS(2771), - [anon_sym_static] = ACTIONS(2769), - [anon_sym_auto] = ACTIONS(2769), - [anon_sym_register] = ACTIONS(2769), - [anon_sym_inline] = ACTIONS(2769), - [anon_sym_const] = ACTIONS(2769), - [anon_sym_restrict] = ACTIONS(2769), - [anon_sym_volatile] = ACTIONS(2769), - [anon_sym__Atomic] = ACTIONS(2769), - [anon_sym_unsigned] = ACTIONS(2769), - [anon_sym_long] = ACTIONS(2769), - [anon_sym_short] = ACTIONS(2769), - [sym_primitive_type] = ACTIONS(2769), - [anon_sym_enum] = ACTIONS(2769), - [anon_sym_struct] = ACTIONS(2769), - [anon_sym_union] = ACTIONS(2769), - [anon_sym_if] = ACTIONS(2769), - [anon_sym_switch] = ACTIONS(2769), - [anon_sym_case] = ACTIONS(2769), - [anon_sym_default] = ACTIONS(2769), - [anon_sym_while] = ACTIONS(2769), - [anon_sym_do] = ACTIONS(2769), - [anon_sym_for] = ACTIONS(2769), - [anon_sym_return] = ACTIONS(2769), - [anon_sym_break] = ACTIONS(2769), - [anon_sym_continue] = ACTIONS(2769), - [anon_sym_goto] = ACTIONS(2769), - [anon_sym_AMP] = ACTIONS(2771), - [anon_sym_BANG] = ACTIONS(2771), - [anon_sym_TILDE] = ACTIONS(2771), - [anon_sym_PLUS] = ACTIONS(2769), - [anon_sym_DASH] = ACTIONS(2769), - [anon_sym_DASH_DASH] = ACTIONS(2771), - [anon_sym_PLUS_PLUS] = ACTIONS(2771), - [anon_sym_sizeof] = ACTIONS(2769), - [sym_number_literal] = ACTIONS(2771), - [anon_sym_SQUOTE] = ACTIONS(2771), - [anon_sym_DQUOTE] = ACTIONS(2771), - [sym_true] = ACTIONS(2769), - [sym_false] = ACTIONS(2769), - [sym_null] = ACTIONS(2769), - [sym_identifier] = ACTIONS(2769), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2758), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2758), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2758), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2758), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2758), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2758), + [sym_preproc_directive] = ACTIONS(2758), + [anon_sym_SEMI] = ACTIONS(2760), + [anon_sym_typedef] = ACTIONS(2758), + [anon_sym_extern] = ACTIONS(2758), + [anon_sym_LBRACE] = ACTIONS(2760), + [anon_sym_LPAREN2] = ACTIONS(2760), + [anon_sym_STAR] = ACTIONS(2760), + [anon_sym_static] = ACTIONS(2758), + [anon_sym_auto] = ACTIONS(2758), + [anon_sym_register] = ACTIONS(2758), + [anon_sym_inline] = ACTIONS(2758), + [anon_sym_const] = ACTIONS(2758), + [anon_sym_restrict] = ACTIONS(2758), + [anon_sym_volatile] = ACTIONS(2758), + [anon_sym__Atomic] = ACTIONS(2758), + [anon_sym_unsigned] = ACTIONS(2758), + [anon_sym_long] = ACTIONS(2758), + [anon_sym_short] = ACTIONS(2758), + [sym_primitive_type] = ACTIONS(2758), + [anon_sym_enum] = ACTIONS(2758), + [anon_sym_struct] = ACTIONS(2758), + [anon_sym_union] = ACTIONS(2758), + [anon_sym_if] = ACTIONS(2758), + [anon_sym_switch] = ACTIONS(2758), + [anon_sym_case] = ACTIONS(2758), + [anon_sym_default] = ACTIONS(2758), + [anon_sym_while] = ACTIONS(2758), + [anon_sym_do] = ACTIONS(2758), + [anon_sym_for] = ACTIONS(2758), + [anon_sym_return] = ACTIONS(2758), + [anon_sym_break] = ACTIONS(2758), + [anon_sym_continue] = ACTIONS(2758), + [anon_sym_goto] = ACTIONS(2758), + [anon_sym_AMP] = ACTIONS(2760), + [anon_sym_BANG] = ACTIONS(2760), + [anon_sym_TILDE] = ACTIONS(2760), + [anon_sym_PLUS] = ACTIONS(2758), + [anon_sym_DASH] = ACTIONS(2758), + [anon_sym_DASH_DASH] = ACTIONS(2760), + [anon_sym_PLUS_PLUS] = ACTIONS(2760), + [anon_sym_sizeof] = ACTIONS(2758), + [sym_number_literal] = ACTIONS(2760), + [anon_sym_SQUOTE] = ACTIONS(2760), + [anon_sym_DQUOTE] = ACTIONS(2760), + [sym_true] = ACTIONS(2758), + [sym_false] = ACTIONS(2758), + [sym_null] = ACTIONS(2758), + [sym_identifier] = ACTIONS(2758), [sym_comment] = ACTIONS(39), }, [1188] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2773), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2773), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2773), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2773), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2773), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2773), - [sym_preproc_directive] = ACTIONS(2773), - [anon_sym_SEMI] = ACTIONS(2775), - [anon_sym_typedef] = ACTIONS(2773), - [anon_sym_extern] = ACTIONS(2773), - [anon_sym_LBRACE] = ACTIONS(2775), - [anon_sym_LPAREN2] = ACTIONS(2775), - [anon_sym_STAR] = ACTIONS(2775), - [anon_sym_static] = ACTIONS(2773), - [anon_sym_auto] = ACTIONS(2773), - [anon_sym_register] = ACTIONS(2773), - [anon_sym_inline] = ACTIONS(2773), - [anon_sym_const] = ACTIONS(2773), - [anon_sym_restrict] = ACTIONS(2773), - [anon_sym_volatile] = ACTIONS(2773), - [anon_sym__Atomic] = ACTIONS(2773), - [anon_sym_unsigned] = ACTIONS(2773), - [anon_sym_long] = ACTIONS(2773), - [anon_sym_short] = ACTIONS(2773), - [sym_primitive_type] = ACTIONS(2773), - [anon_sym_enum] = ACTIONS(2773), - [anon_sym_struct] = ACTIONS(2773), - [anon_sym_union] = ACTIONS(2773), - [anon_sym_if] = ACTIONS(2773), - [anon_sym_switch] = ACTIONS(2773), - [anon_sym_case] = ACTIONS(2773), - [anon_sym_default] = ACTIONS(2773), - [anon_sym_while] = ACTIONS(2773), - [anon_sym_do] = ACTIONS(2773), - [anon_sym_for] = ACTIONS(2773), - [anon_sym_return] = ACTIONS(2773), - [anon_sym_break] = ACTIONS(2773), - [anon_sym_continue] = ACTIONS(2773), - [anon_sym_goto] = ACTIONS(2773), - [anon_sym_AMP] = ACTIONS(2775), - [anon_sym_BANG] = ACTIONS(2775), - [anon_sym_TILDE] = ACTIONS(2775), - [anon_sym_PLUS] = ACTIONS(2773), - [anon_sym_DASH] = ACTIONS(2773), - [anon_sym_DASH_DASH] = ACTIONS(2775), - [anon_sym_PLUS_PLUS] = ACTIONS(2775), - [anon_sym_sizeof] = ACTIONS(2773), - [sym_number_literal] = ACTIONS(2775), - [anon_sym_SQUOTE] = ACTIONS(2775), - [anon_sym_DQUOTE] = ACTIONS(2775), - [sym_true] = ACTIONS(2773), - [sym_false] = ACTIONS(2773), - [sym_null] = ACTIONS(2773), - [sym_identifier] = ACTIONS(2773), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2762), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2762), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2762), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2762), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2762), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2762), + [sym_preproc_directive] = ACTIONS(2762), + [anon_sym_SEMI] = ACTIONS(2764), + [anon_sym_typedef] = ACTIONS(2762), + [anon_sym_extern] = ACTIONS(2762), + [anon_sym_LBRACE] = ACTIONS(2764), + [anon_sym_LPAREN2] = ACTIONS(2764), + [anon_sym_STAR] = ACTIONS(2764), + [anon_sym_static] = ACTIONS(2762), + [anon_sym_auto] = ACTIONS(2762), + [anon_sym_register] = ACTIONS(2762), + [anon_sym_inline] = ACTIONS(2762), + [anon_sym_const] = ACTIONS(2762), + [anon_sym_restrict] = ACTIONS(2762), + [anon_sym_volatile] = ACTIONS(2762), + [anon_sym__Atomic] = ACTIONS(2762), + [anon_sym_unsigned] = ACTIONS(2762), + [anon_sym_long] = ACTIONS(2762), + [anon_sym_short] = ACTIONS(2762), + [sym_primitive_type] = ACTIONS(2762), + [anon_sym_enum] = ACTIONS(2762), + [anon_sym_struct] = ACTIONS(2762), + [anon_sym_union] = ACTIONS(2762), + [anon_sym_if] = ACTIONS(2762), + [anon_sym_switch] = ACTIONS(2762), + [anon_sym_case] = ACTIONS(2762), + [anon_sym_default] = ACTIONS(2762), + [anon_sym_while] = ACTIONS(2762), + [anon_sym_do] = ACTIONS(2762), + [anon_sym_for] = ACTIONS(2762), + [anon_sym_return] = ACTIONS(2762), + [anon_sym_break] = ACTIONS(2762), + [anon_sym_continue] = ACTIONS(2762), + [anon_sym_goto] = ACTIONS(2762), + [anon_sym_AMP] = ACTIONS(2764), + [anon_sym_BANG] = ACTIONS(2764), + [anon_sym_TILDE] = ACTIONS(2764), + [anon_sym_PLUS] = ACTIONS(2762), + [anon_sym_DASH] = ACTIONS(2762), + [anon_sym_DASH_DASH] = ACTIONS(2764), + [anon_sym_PLUS_PLUS] = ACTIONS(2764), + [anon_sym_sizeof] = ACTIONS(2762), + [sym_number_literal] = ACTIONS(2764), + [anon_sym_SQUOTE] = ACTIONS(2764), + [anon_sym_DQUOTE] = ACTIONS(2764), + [sym_true] = ACTIONS(2762), + [sym_false] = ACTIONS(2762), + [sym_null] = ACTIONS(2762), + [sym_identifier] = ACTIONS(2762), [sym_comment] = ACTIONS(39), }, [1189] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3403), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3392), [sym_comment] = ACTIONS(39), }, [1190] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3405), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3394), [sym_comment] = ACTIONS(39), }, [1191] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2852), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2852), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2852), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2852), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2852), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2852), - [sym_preproc_directive] = ACTIONS(2852), - [anon_sym_SEMI] = ACTIONS(2854), - [anon_sym_typedef] = ACTIONS(2852), - [anon_sym_extern] = ACTIONS(2852), - [anon_sym_LBRACE] = ACTIONS(2854), - [anon_sym_LPAREN2] = ACTIONS(2854), - [anon_sym_STAR] = ACTIONS(2854), - [anon_sym_static] = ACTIONS(2852), - [anon_sym_auto] = ACTIONS(2852), - [anon_sym_register] = ACTIONS(2852), - [anon_sym_inline] = ACTIONS(2852), - [anon_sym_const] = ACTIONS(2852), - [anon_sym_restrict] = ACTIONS(2852), - [anon_sym_volatile] = ACTIONS(2852), - [anon_sym__Atomic] = ACTIONS(2852), - [anon_sym_unsigned] = ACTIONS(2852), - [anon_sym_long] = ACTIONS(2852), - [anon_sym_short] = ACTIONS(2852), - [sym_primitive_type] = ACTIONS(2852), - [anon_sym_enum] = ACTIONS(2852), - [anon_sym_struct] = ACTIONS(2852), - [anon_sym_union] = ACTIONS(2852), - [anon_sym_if] = ACTIONS(2852), - [anon_sym_switch] = ACTIONS(2852), - [anon_sym_case] = ACTIONS(2852), - [anon_sym_default] = ACTIONS(2852), - [anon_sym_while] = ACTIONS(2852), - [anon_sym_do] = ACTIONS(2852), - [anon_sym_for] = ACTIONS(2852), - [anon_sym_return] = ACTIONS(2852), - [anon_sym_break] = ACTIONS(2852), - [anon_sym_continue] = ACTIONS(2852), - [anon_sym_goto] = ACTIONS(2852), - [anon_sym_AMP] = ACTIONS(2854), - [anon_sym_BANG] = ACTIONS(2854), - [anon_sym_TILDE] = ACTIONS(2854), - [anon_sym_PLUS] = ACTIONS(2852), - [anon_sym_DASH] = ACTIONS(2852), - [anon_sym_DASH_DASH] = ACTIONS(2854), - [anon_sym_PLUS_PLUS] = ACTIONS(2854), - [anon_sym_sizeof] = ACTIONS(2852), - [sym_number_literal] = ACTIONS(2854), - [anon_sym_SQUOTE] = ACTIONS(2854), - [anon_sym_DQUOTE] = ACTIONS(2854), - [sym_true] = ACTIONS(2852), - [sym_false] = ACTIONS(2852), - [sym_null] = ACTIONS(2852), - [sym_identifier] = ACTIONS(2852), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2841), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2841), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2841), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2841), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2841), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2841), + [sym_preproc_directive] = ACTIONS(2841), + [anon_sym_SEMI] = ACTIONS(2843), + [anon_sym_typedef] = ACTIONS(2841), + [anon_sym_extern] = ACTIONS(2841), + [anon_sym_LBRACE] = ACTIONS(2843), + [anon_sym_LPAREN2] = ACTIONS(2843), + [anon_sym_STAR] = ACTIONS(2843), + [anon_sym_static] = ACTIONS(2841), + [anon_sym_auto] = ACTIONS(2841), + [anon_sym_register] = ACTIONS(2841), + [anon_sym_inline] = ACTIONS(2841), + [anon_sym_const] = ACTIONS(2841), + [anon_sym_restrict] = ACTIONS(2841), + [anon_sym_volatile] = ACTIONS(2841), + [anon_sym__Atomic] = ACTIONS(2841), + [anon_sym_unsigned] = ACTIONS(2841), + [anon_sym_long] = ACTIONS(2841), + [anon_sym_short] = ACTIONS(2841), + [sym_primitive_type] = ACTIONS(2841), + [anon_sym_enum] = ACTIONS(2841), + [anon_sym_struct] = ACTIONS(2841), + [anon_sym_union] = ACTIONS(2841), + [anon_sym_if] = ACTIONS(2841), + [anon_sym_switch] = ACTIONS(2841), + [anon_sym_case] = ACTIONS(2841), + [anon_sym_default] = ACTIONS(2841), + [anon_sym_while] = ACTIONS(2841), + [anon_sym_do] = ACTIONS(2841), + [anon_sym_for] = ACTIONS(2841), + [anon_sym_return] = ACTIONS(2841), + [anon_sym_break] = ACTIONS(2841), + [anon_sym_continue] = ACTIONS(2841), + [anon_sym_goto] = ACTIONS(2841), + [anon_sym_AMP] = ACTIONS(2843), + [anon_sym_BANG] = ACTIONS(2843), + [anon_sym_TILDE] = ACTIONS(2843), + [anon_sym_PLUS] = ACTIONS(2841), + [anon_sym_DASH] = ACTIONS(2841), + [anon_sym_DASH_DASH] = ACTIONS(2843), + [anon_sym_PLUS_PLUS] = ACTIONS(2843), + [anon_sym_sizeof] = ACTIONS(2841), + [sym_number_literal] = ACTIONS(2843), + [anon_sym_SQUOTE] = ACTIONS(2843), + [anon_sym_DQUOTE] = ACTIONS(2843), + [sym_true] = ACTIONS(2841), + [sym_false] = ACTIONS(2841), + [sym_null] = ACTIONS(2841), + [sym_identifier] = ACTIONS(2841), [sym_comment] = ACTIONS(39), }, [1192] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2856), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2856), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2856), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2856), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2856), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2856), - [sym_preproc_directive] = ACTIONS(2856), - [anon_sym_SEMI] = ACTIONS(2858), - [anon_sym_typedef] = ACTIONS(2856), - [anon_sym_extern] = ACTIONS(2856), - [anon_sym_LBRACE] = ACTIONS(2858), - [anon_sym_LPAREN2] = ACTIONS(2858), - [anon_sym_STAR] = ACTIONS(2858), - [anon_sym_static] = ACTIONS(2856), - [anon_sym_auto] = ACTIONS(2856), - [anon_sym_register] = ACTIONS(2856), - [anon_sym_inline] = ACTIONS(2856), - [anon_sym_const] = ACTIONS(2856), - [anon_sym_restrict] = ACTIONS(2856), - [anon_sym_volatile] = ACTIONS(2856), - [anon_sym__Atomic] = ACTIONS(2856), - [anon_sym_unsigned] = ACTIONS(2856), - [anon_sym_long] = ACTIONS(2856), - [anon_sym_short] = ACTIONS(2856), - [sym_primitive_type] = ACTIONS(2856), - [anon_sym_enum] = ACTIONS(2856), - [anon_sym_struct] = ACTIONS(2856), - [anon_sym_union] = ACTIONS(2856), - [anon_sym_if] = ACTIONS(2856), - [anon_sym_switch] = ACTIONS(2856), - [anon_sym_case] = ACTIONS(2856), - [anon_sym_default] = ACTIONS(2856), - [anon_sym_while] = ACTIONS(2856), - [anon_sym_do] = ACTIONS(2856), - [anon_sym_for] = ACTIONS(2856), - [anon_sym_return] = ACTIONS(2856), - [anon_sym_break] = ACTIONS(2856), - [anon_sym_continue] = ACTIONS(2856), - [anon_sym_goto] = ACTIONS(2856), - [anon_sym_AMP] = ACTIONS(2858), - [anon_sym_BANG] = ACTIONS(2858), - [anon_sym_TILDE] = ACTIONS(2858), - [anon_sym_PLUS] = ACTIONS(2856), - [anon_sym_DASH] = ACTIONS(2856), - [anon_sym_DASH_DASH] = ACTIONS(2858), - [anon_sym_PLUS_PLUS] = ACTIONS(2858), - [anon_sym_sizeof] = ACTIONS(2856), - [sym_number_literal] = ACTIONS(2858), - [anon_sym_SQUOTE] = ACTIONS(2858), - [anon_sym_DQUOTE] = ACTIONS(2858), - [sym_true] = ACTIONS(2856), - [sym_false] = ACTIONS(2856), - [sym_null] = ACTIONS(2856), - [sym_identifier] = ACTIONS(2856), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2845), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2845), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2845), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2845), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2845), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2845), + [sym_preproc_directive] = ACTIONS(2845), + [anon_sym_SEMI] = ACTIONS(2847), + [anon_sym_typedef] = ACTIONS(2845), + [anon_sym_extern] = ACTIONS(2845), + [anon_sym_LBRACE] = ACTIONS(2847), + [anon_sym_LPAREN2] = ACTIONS(2847), + [anon_sym_STAR] = ACTIONS(2847), + [anon_sym_static] = ACTIONS(2845), + [anon_sym_auto] = ACTIONS(2845), + [anon_sym_register] = ACTIONS(2845), + [anon_sym_inline] = ACTIONS(2845), + [anon_sym_const] = ACTIONS(2845), + [anon_sym_restrict] = ACTIONS(2845), + [anon_sym_volatile] = ACTIONS(2845), + [anon_sym__Atomic] = ACTIONS(2845), + [anon_sym_unsigned] = ACTIONS(2845), + [anon_sym_long] = ACTIONS(2845), + [anon_sym_short] = ACTIONS(2845), + [sym_primitive_type] = ACTIONS(2845), + [anon_sym_enum] = ACTIONS(2845), + [anon_sym_struct] = ACTIONS(2845), + [anon_sym_union] = ACTIONS(2845), + [anon_sym_if] = ACTIONS(2845), + [anon_sym_switch] = ACTIONS(2845), + [anon_sym_case] = ACTIONS(2845), + [anon_sym_default] = ACTIONS(2845), + [anon_sym_while] = ACTIONS(2845), + [anon_sym_do] = ACTIONS(2845), + [anon_sym_for] = ACTIONS(2845), + [anon_sym_return] = ACTIONS(2845), + [anon_sym_break] = ACTIONS(2845), + [anon_sym_continue] = ACTIONS(2845), + [anon_sym_goto] = ACTIONS(2845), + [anon_sym_AMP] = ACTIONS(2847), + [anon_sym_BANG] = ACTIONS(2847), + [anon_sym_TILDE] = ACTIONS(2847), + [anon_sym_PLUS] = ACTIONS(2845), + [anon_sym_DASH] = ACTIONS(2845), + [anon_sym_DASH_DASH] = ACTIONS(2847), + [anon_sym_PLUS_PLUS] = ACTIONS(2847), + [anon_sym_sizeof] = ACTIONS(2845), + [sym_number_literal] = ACTIONS(2847), + [anon_sym_SQUOTE] = ACTIONS(2847), + [anon_sym_DQUOTE] = ACTIONS(2847), + [sym_true] = ACTIONS(2845), + [sym_false] = ACTIONS(2845), + [sym_null] = ACTIONS(2845), + [sym_identifier] = ACTIONS(2845), [sym_comment] = ACTIONS(39), }, [1193] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2860), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2860), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2860), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2860), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2860), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2860), - [sym_preproc_directive] = ACTIONS(2860), - [anon_sym_SEMI] = ACTIONS(2862), - [anon_sym_typedef] = ACTIONS(2860), - [anon_sym_extern] = ACTIONS(2860), - [anon_sym_LBRACE] = ACTIONS(2862), - [anon_sym_LPAREN2] = ACTIONS(2862), - [anon_sym_STAR] = ACTIONS(2862), - [anon_sym_static] = ACTIONS(2860), - [anon_sym_auto] = ACTIONS(2860), - [anon_sym_register] = ACTIONS(2860), - [anon_sym_inline] = ACTIONS(2860), - [anon_sym_const] = ACTIONS(2860), - [anon_sym_restrict] = ACTIONS(2860), - [anon_sym_volatile] = ACTIONS(2860), - [anon_sym__Atomic] = ACTIONS(2860), - [anon_sym_unsigned] = ACTIONS(2860), - [anon_sym_long] = ACTIONS(2860), - [anon_sym_short] = ACTIONS(2860), - [sym_primitive_type] = ACTIONS(2860), - [anon_sym_enum] = ACTIONS(2860), - [anon_sym_struct] = ACTIONS(2860), - [anon_sym_union] = ACTIONS(2860), - [anon_sym_if] = ACTIONS(2860), - [anon_sym_switch] = ACTIONS(2860), - [anon_sym_case] = ACTIONS(2860), - [anon_sym_default] = ACTIONS(2860), - [anon_sym_while] = ACTIONS(2860), - [anon_sym_do] = ACTIONS(2860), - [anon_sym_for] = ACTIONS(2860), - [anon_sym_return] = ACTIONS(2860), - [anon_sym_break] = ACTIONS(2860), - [anon_sym_continue] = ACTIONS(2860), - [anon_sym_goto] = ACTIONS(2860), - [anon_sym_AMP] = ACTIONS(2862), - [anon_sym_BANG] = ACTIONS(2862), - [anon_sym_TILDE] = ACTIONS(2862), - [anon_sym_PLUS] = ACTIONS(2860), - [anon_sym_DASH] = ACTIONS(2860), - [anon_sym_DASH_DASH] = ACTIONS(2862), - [anon_sym_PLUS_PLUS] = ACTIONS(2862), - [anon_sym_sizeof] = ACTIONS(2860), - [sym_number_literal] = ACTIONS(2862), - [anon_sym_SQUOTE] = ACTIONS(2862), - [anon_sym_DQUOTE] = ACTIONS(2862), - [sym_true] = ACTIONS(2860), - [sym_false] = ACTIONS(2860), - [sym_null] = ACTIONS(2860), - [sym_identifier] = ACTIONS(2860), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2849), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2849), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2849), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2849), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2849), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2849), + [sym_preproc_directive] = ACTIONS(2849), + [anon_sym_SEMI] = ACTIONS(2851), + [anon_sym_typedef] = ACTIONS(2849), + [anon_sym_extern] = ACTIONS(2849), + [anon_sym_LBRACE] = ACTIONS(2851), + [anon_sym_LPAREN2] = ACTIONS(2851), + [anon_sym_STAR] = ACTIONS(2851), + [anon_sym_static] = ACTIONS(2849), + [anon_sym_auto] = ACTIONS(2849), + [anon_sym_register] = ACTIONS(2849), + [anon_sym_inline] = ACTIONS(2849), + [anon_sym_const] = ACTIONS(2849), + [anon_sym_restrict] = ACTIONS(2849), + [anon_sym_volatile] = ACTIONS(2849), + [anon_sym__Atomic] = ACTIONS(2849), + [anon_sym_unsigned] = ACTIONS(2849), + [anon_sym_long] = ACTIONS(2849), + [anon_sym_short] = ACTIONS(2849), + [sym_primitive_type] = ACTIONS(2849), + [anon_sym_enum] = ACTIONS(2849), + [anon_sym_struct] = ACTIONS(2849), + [anon_sym_union] = ACTIONS(2849), + [anon_sym_if] = ACTIONS(2849), + [anon_sym_switch] = ACTIONS(2849), + [anon_sym_case] = ACTIONS(2849), + [anon_sym_default] = ACTIONS(2849), + [anon_sym_while] = ACTIONS(2849), + [anon_sym_do] = ACTIONS(2849), + [anon_sym_for] = ACTIONS(2849), + [anon_sym_return] = ACTIONS(2849), + [anon_sym_break] = ACTIONS(2849), + [anon_sym_continue] = ACTIONS(2849), + [anon_sym_goto] = ACTIONS(2849), + [anon_sym_AMP] = ACTIONS(2851), + [anon_sym_BANG] = ACTIONS(2851), + [anon_sym_TILDE] = ACTIONS(2851), + [anon_sym_PLUS] = ACTIONS(2849), + [anon_sym_DASH] = ACTIONS(2849), + [anon_sym_DASH_DASH] = ACTIONS(2851), + [anon_sym_PLUS_PLUS] = ACTIONS(2851), + [anon_sym_sizeof] = ACTIONS(2849), + [sym_number_literal] = ACTIONS(2851), + [anon_sym_SQUOTE] = ACTIONS(2851), + [anon_sym_DQUOTE] = ACTIONS(2851), + [sym_true] = ACTIONS(2849), + [sym_false] = ACTIONS(2849), + [sym_null] = ACTIONS(2849), + [sym_identifier] = ACTIONS(2849), [sym_comment] = ACTIONS(39), }, [1194] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3407), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3396), [sym_comment] = ACTIONS(39), }, [1195] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3409), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3398), [sym_comment] = ACTIONS(39), }, [1196] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2868), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2868), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2868), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2868), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2868), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2868), - [sym_preproc_directive] = ACTIONS(2868), - [anon_sym_SEMI] = ACTIONS(2870), - [anon_sym_typedef] = ACTIONS(2868), - [anon_sym_extern] = ACTIONS(2868), - [anon_sym_LBRACE] = ACTIONS(2870), - [anon_sym_LPAREN2] = ACTIONS(2870), - [anon_sym_STAR] = ACTIONS(2870), - [anon_sym_static] = ACTIONS(2868), - [anon_sym_auto] = ACTIONS(2868), - [anon_sym_register] = ACTIONS(2868), - [anon_sym_inline] = ACTIONS(2868), - [anon_sym_const] = ACTIONS(2868), - [anon_sym_restrict] = ACTIONS(2868), - [anon_sym_volatile] = ACTIONS(2868), - [anon_sym__Atomic] = ACTIONS(2868), - [anon_sym_unsigned] = ACTIONS(2868), - [anon_sym_long] = ACTIONS(2868), - [anon_sym_short] = ACTIONS(2868), - [sym_primitive_type] = ACTIONS(2868), - [anon_sym_enum] = ACTIONS(2868), - [anon_sym_struct] = ACTIONS(2868), - [anon_sym_union] = ACTIONS(2868), - [anon_sym_if] = ACTIONS(2868), - [anon_sym_switch] = ACTIONS(2868), - [anon_sym_case] = ACTIONS(2868), - [anon_sym_default] = ACTIONS(2868), - [anon_sym_while] = ACTIONS(2868), - [anon_sym_do] = ACTIONS(2868), - [anon_sym_for] = ACTIONS(2868), - [anon_sym_return] = ACTIONS(2868), - [anon_sym_break] = ACTIONS(2868), - [anon_sym_continue] = ACTIONS(2868), - [anon_sym_goto] = ACTIONS(2868), - [anon_sym_AMP] = ACTIONS(2870), - [anon_sym_BANG] = ACTIONS(2870), - [anon_sym_TILDE] = ACTIONS(2870), - [anon_sym_PLUS] = ACTIONS(2868), - [anon_sym_DASH] = ACTIONS(2868), - [anon_sym_DASH_DASH] = ACTIONS(2870), - [anon_sym_PLUS_PLUS] = ACTIONS(2870), - [anon_sym_sizeof] = ACTIONS(2868), - [sym_number_literal] = ACTIONS(2870), - [anon_sym_SQUOTE] = ACTIONS(2870), - [anon_sym_DQUOTE] = ACTIONS(2870), - [sym_true] = ACTIONS(2868), - [sym_false] = ACTIONS(2868), - [sym_null] = ACTIONS(2868), - [sym_identifier] = ACTIONS(2868), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2857), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2857), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2857), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2857), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2857), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2857), + [sym_preproc_directive] = ACTIONS(2857), + [anon_sym_SEMI] = ACTIONS(2859), + [anon_sym_typedef] = ACTIONS(2857), + [anon_sym_extern] = ACTIONS(2857), + [anon_sym_LBRACE] = ACTIONS(2859), + [anon_sym_LPAREN2] = ACTIONS(2859), + [anon_sym_STAR] = ACTIONS(2859), + [anon_sym_static] = ACTIONS(2857), + [anon_sym_auto] = ACTIONS(2857), + [anon_sym_register] = ACTIONS(2857), + [anon_sym_inline] = ACTIONS(2857), + [anon_sym_const] = ACTIONS(2857), + [anon_sym_restrict] = ACTIONS(2857), + [anon_sym_volatile] = ACTIONS(2857), + [anon_sym__Atomic] = ACTIONS(2857), + [anon_sym_unsigned] = ACTIONS(2857), + [anon_sym_long] = ACTIONS(2857), + [anon_sym_short] = ACTIONS(2857), + [sym_primitive_type] = ACTIONS(2857), + [anon_sym_enum] = ACTIONS(2857), + [anon_sym_struct] = ACTIONS(2857), + [anon_sym_union] = ACTIONS(2857), + [anon_sym_if] = ACTIONS(2857), + [anon_sym_switch] = ACTIONS(2857), + [anon_sym_case] = ACTIONS(2857), + [anon_sym_default] = ACTIONS(2857), + [anon_sym_while] = ACTIONS(2857), + [anon_sym_do] = ACTIONS(2857), + [anon_sym_for] = ACTIONS(2857), + [anon_sym_return] = ACTIONS(2857), + [anon_sym_break] = ACTIONS(2857), + [anon_sym_continue] = ACTIONS(2857), + [anon_sym_goto] = ACTIONS(2857), + [anon_sym_AMP] = ACTIONS(2859), + [anon_sym_BANG] = ACTIONS(2859), + [anon_sym_TILDE] = ACTIONS(2859), + [anon_sym_PLUS] = ACTIONS(2857), + [anon_sym_DASH] = ACTIONS(2857), + [anon_sym_DASH_DASH] = ACTIONS(2859), + [anon_sym_PLUS_PLUS] = ACTIONS(2859), + [anon_sym_sizeof] = ACTIONS(2857), + [sym_number_literal] = ACTIONS(2859), + [anon_sym_SQUOTE] = ACTIONS(2859), + [anon_sym_DQUOTE] = ACTIONS(2859), + [sym_true] = ACTIONS(2857), + [sym_false] = ACTIONS(2857), + [sym_null] = ACTIONS(2857), + [sym_identifier] = ACTIONS(2857), [sym_comment] = ACTIONS(39), }, [1197] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2872), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2872), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2872), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2872), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2872), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2872), - [sym_preproc_directive] = ACTIONS(2872), - [anon_sym_SEMI] = ACTIONS(2874), - [anon_sym_typedef] = ACTIONS(2872), - [anon_sym_extern] = ACTIONS(2872), - [anon_sym_LBRACE] = ACTIONS(2874), - [anon_sym_LPAREN2] = ACTIONS(2874), - [anon_sym_STAR] = ACTIONS(2874), - [anon_sym_static] = ACTIONS(2872), - [anon_sym_auto] = ACTIONS(2872), - [anon_sym_register] = ACTIONS(2872), - [anon_sym_inline] = ACTIONS(2872), - [anon_sym_const] = ACTIONS(2872), - [anon_sym_restrict] = ACTIONS(2872), - [anon_sym_volatile] = ACTIONS(2872), - [anon_sym__Atomic] = ACTIONS(2872), - [anon_sym_unsigned] = ACTIONS(2872), - [anon_sym_long] = ACTIONS(2872), - [anon_sym_short] = ACTIONS(2872), - [sym_primitive_type] = ACTIONS(2872), - [anon_sym_enum] = ACTIONS(2872), - [anon_sym_struct] = ACTIONS(2872), - [anon_sym_union] = ACTIONS(2872), - [anon_sym_if] = ACTIONS(2872), - [anon_sym_switch] = ACTIONS(2872), - [anon_sym_case] = ACTIONS(2872), - [anon_sym_default] = ACTIONS(2872), - [anon_sym_while] = ACTIONS(2872), - [anon_sym_do] = ACTIONS(2872), - [anon_sym_for] = ACTIONS(2872), - [anon_sym_return] = ACTIONS(2872), - [anon_sym_break] = ACTIONS(2872), - [anon_sym_continue] = ACTIONS(2872), - [anon_sym_goto] = ACTIONS(2872), - [anon_sym_AMP] = ACTIONS(2874), - [anon_sym_BANG] = ACTIONS(2874), - [anon_sym_TILDE] = ACTIONS(2874), - [anon_sym_PLUS] = ACTIONS(2872), - [anon_sym_DASH] = ACTIONS(2872), - [anon_sym_DASH_DASH] = ACTIONS(2874), - [anon_sym_PLUS_PLUS] = ACTIONS(2874), - [anon_sym_sizeof] = ACTIONS(2872), - [sym_number_literal] = ACTIONS(2874), - [anon_sym_SQUOTE] = ACTIONS(2874), - [anon_sym_DQUOTE] = ACTIONS(2874), - [sym_true] = ACTIONS(2872), - [sym_false] = ACTIONS(2872), - [sym_null] = ACTIONS(2872), - [sym_identifier] = ACTIONS(2872), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2861), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2861), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2861), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2861), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2861), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2861), + [sym_preproc_directive] = ACTIONS(2861), + [anon_sym_SEMI] = ACTIONS(2863), + [anon_sym_typedef] = ACTIONS(2861), + [anon_sym_extern] = ACTIONS(2861), + [anon_sym_LBRACE] = ACTIONS(2863), + [anon_sym_LPAREN2] = ACTIONS(2863), + [anon_sym_STAR] = ACTIONS(2863), + [anon_sym_static] = ACTIONS(2861), + [anon_sym_auto] = ACTIONS(2861), + [anon_sym_register] = ACTIONS(2861), + [anon_sym_inline] = ACTIONS(2861), + [anon_sym_const] = ACTIONS(2861), + [anon_sym_restrict] = ACTIONS(2861), + [anon_sym_volatile] = ACTIONS(2861), + [anon_sym__Atomic] = ACTIONS(2861), + [anon_sym_unsigned] = ACTIONS(2861), + [anon_sym_long] = ACTIONS(2861), + [anon_sym_short] = ACTIONS(2861), + [sym_primitive_type] = ACTIONS(2861), + [anon_sym_enum] = ACTIONS(2861), + [anon_sym_struct] = ACTIONS(2861), + [anon_sym_union] = ACTIONS(2861), + [anon_sym_if] = ACTIONS(2861), + [anon_sym_switch] = ACTIONS(2861), + [anon_sym_case] = ACTIONS(2861), + [anon_sym_default] = ACTIONS(2861), + [anon_sym_while] = ACTIONS(2861), + [anon_sym_do] = ACTIONS(2861), + [anon_sym_for] = ACTIONS(2861), + [anon_sym_return] = ACTIONS(2861), + [anon_sym_break] = ACTIONS(2861), + [anon_sym_continue] = ACTIONS(2861), + [anon_sym_goto] = ACTIONS(2861), + [anon_sym_AMP] = ACTIONS(2863), + [anon_sym_BANG] = ACTIONS(2863), + [anon_sym_TILDE] = ACTIONS(2863), + [anon_sym_PLUS] = ACTIONS(2861), + [anon_sym_DASH] = ACTIONS(2861), + [anon_sym_DASH_DASH] = ACTIONS(2863), + [anon_sym_PLUS_PLUS] = ACTIONS(2863), + [anon_sym_sizeof] = ACTIONS(2861), + [sym_number_literal] = ACTIONS(2863), + [anon_sym_SQUOTE] = ACTIONS(2863), + [anon_sym_DQUOTE] = ACTIONS(2863), + [sym_true] = ACTIONS(2861), + [sym_false] = ACTIONS(2861), + [sym_null] = ACTIONS(2861), + [sym_identifier] = ACTIONS(2861), [sym_comment] = ACTIONS(39), }, [1198] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2876), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2876), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2876), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2876), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2876), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2876), - [sym_preproc_directive] = ACTIONS(2876), - [anon_sym_SEMI] = ACTIONS(2878), - [anon_sym_typedef] = ACTIONS(2876), - [anon_sym_extern] = ACTIONS(2876), - [anon_sym_LBRACE] = ACTIONS(2878), - [anon_sym_LPAREN2] = ACTIONS(2878), - [anon_sym_STAR] = ACTIONS(2878), - [anon_sym_static] = ACTIONS(2876), - [anon_sym_auto] = ACTIONS(2876), - [anon_sym_register] = ACTIONS(2876), - [anon_sym_inline] = ACTIONS(2876), - [anon_sym_const] = ACTIONS(2876), - [anon_sym_restrict] = ACTIONS(2876), - [anon_sym_volatile] = ACTIONS(2876), - [anon_sym__Atomic] = ACTIONS(2876), - [anon_sym_unsigned] = ACTIONS(2876), - [anon_sym_long] = ACTIONS(2876), - [anon_sym_short] = ACTIONS(2876), - [sym_primitive_type] = ACTIONS(2876), - [anon_sym_enum] = ACTIONS(2876), - [anon_sym_struct] = ACTIONS(2876), - [anon_sym_union] = ACTIONS(2876), - [anon_sym_if] = ACTIONS(2876), - [anon_sym_switch] = ACTIONS(2876), - [anon_sym_case] = ACTIONS(2876), - [anon_sym_default] = ACTIONS(2876), - [anon_sym_while] = ACTIONS(2876), - [anon_sym_do] = ACTIONS(2876), - [anon_sym_for] = ACTIONS(2876), - [anon_sym_return] = ACTIONS(2876), - [anon_sym_break] = ACTIONS(2876), - [anon_sym_continue] = ACTIONS(2876), - [anon_sym_goto] = ACTIONS(2876), - [anon_sym_AMP] = ACTIONS(2878), - [anon_sym_BANG] = ACTIONS(2878), - [anon_sym_TILDE] = ACTIONS(2878), - [anon_sym_PLUS] = ACTIONS(2876), - [anon_sym_DASH] = ACTIONS(2876), - [anon_sym_DASH_DASH] = ACTIONS(2878), - [anon_sym_PLUS_PLUS] = ACTIONS(2878), - [anon_sym_sizeof] = ACTIONS(2876), - [sym_number_literal] = ACTIONS(2878), - [anon_sym_SQUOTE] = ACTIONS(2878), - [anon_sym_DQUOTE] = ACTIONS(2878), - [sym_true] = ACTIONS(2876), - [sym_false] = ACTIONS(2876), - [sym_null] = ACTIONS(2876), - [sym_identifier] = ACTIONS(2876), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2865), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2865), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2865), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2865), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2865), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2865), + [sym_preproc_directive] = ACTIONS(2865), + [anon_sym_SEMI] = ACTIONS(2867), + [anon_sym_typedef] = ACTIONS(2865), + [anon_sym_extern] = ACTIONS(2865), + [anon_sym_LBRACE] = ACTIONS(2867), + [anon_sym_LPAREN2] = ACTIONS(2867), + [anon_sym_STAR] = ACTIONS(2867), + [anon_sym_static] = ACTIONS(2865), + [anon_sym_auto] = ACTIONS(2865), + [anon_sym_register] = ACTIONS(2865), + [anon_sym_inline] = ACTIONS(2865), + [anon_sym_const] = ACTIONS(2865), + [anon_sym_restrict] = ACTIONS(2865), + [anon_sym_volatile] = ACTIONS(2865), + [anon_sym__Atomic] = ACTIONS(2865), + [anon_sym_unsigned] = ACTIONS(2865), + [anon_sym_long] = ACTIONS(2865), + [anon_sym_short] = ACTIONS(2865), + [sym_primitive_type] = ACTIONS(2865), + [anon_sym_enum] = ACTIONS(2865), + [anon_sym_struct] = ACTIONS(2865), + [anon_sym_union] = ACTIONS(2865), + [anon_sym_if] = ACTIONS(2865), + [anon_sym_switch] = ACTIONS(2865), + [anon_sym_case] = ACTIONS(2865), + [anon_sym_default] = ACTIONS(2865), + [anon_sym_while] = ACTIONS(2865), + [anon_sym_do] = ACTIONS(2865), + [anon_sym_for] = ACTIONS(2865), + [anon_sym_return] = ACTIONS(2865), + [anon_sym_break] = ACTIONS(2865), + [anon_sym_continue] = ACTIONS(2865), + [anon_sym_goto] = ACTIONS(2865), + [anon_sym_AMP] = ACTIONS(2867), + [anon_sym_BANG] = ACTIONS(2867), + [anon_sym_TILDE] = ACTIONS(2867), + [anon_sym_PLUS] = ACTIONS(2865), + [anon_sym_DASH] = ACTIONS(2865), + [anon_sym_DASH_DASH] = ACTIONS(2867), + [anon_sym_PLUS_PLUS] = ACTIONS(2867), + [anon_sym_sizeof] = ACTIONS(2865), + [sym_number_literal] = ACTIONS(2867), + [anon_sym_SQUOTE] = ACTIONS(2867), + [anon_sym_DQUOTE] = ACTIONS(2867), + [sym_true] = ACTIONS(2865), + [sym_false] = ACTIONS(2865), + [sym_null] = ACTIONS(2865), + [sym_identifier] = ACTIONS(2865), [sym_comment] = ACTIONS(39), }, [1199] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3411), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3400), [sym_comment] = ACTIONS(39), }, [1200] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3413), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3402), [sym_comment] = ACTIONS(39), }, [1201] = { @@ -48013,36 +48032,36 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(872), [sym_concatenated_string] = STATE(872), [sym_string_literal] = STATE(253), - [anon_sym_SEMI] = ACTIONS(2254), - [anon_sym_LBRACE] = ACTIONS(1273), - [anon_sym_LPAREN2] = ACTIONS(554), - [anon_sym_STAR] = ACTIONS(556), - [anon_sym_if] = ACTIONS(3053), - [anon_sym_switch] = ACTIONS(3055), - [anon_sym_case] = ACTIONS(3057), - [anon_sym_default] = ACTIONS(3059), - [anon_sym_while] = ACTIONS(3061), - [anon_sym_do] = ACTIONS(2266), - [anon_sym_for] = ACTIONS(3063), - [anon_sym_return] = ACTIONS(2270), - [anon_sym_break] = ACTIONS(2272), - [anon_sym_continue] = ACTIONS(2274), - [anon_sym_goto] = ACTIONS(2276), - [anon_sym_AMP] = ACTIONS(556), - [anon_sym_BANG] = ACTIONS(580), - [anon_sym_TILDE] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_DASH_DASH] = ACTIONS(586), - [anon_sym_PLUS_PLUS] = ACTIONS(586), - [anon_sym_sizeof] = ACTIONS(588), - [sym_number_literal] = ACTIONS(2278), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2280), - [sym_false] = ACTIONS(2280), - [sym_null] = ACTIONS(2280), - [sym_identifier] = ACTIONS(3065), + [anon_sym_SEMI] = ACTIONS(2243), + [anon_sym_LBRACE] = ACTIONS(1264), + [anon_sym_LPAREN2] = ACTIONS(550), + [anon_sym_STAR] = ACTIONS(552), + [anon_sym_if] = ACTIONS(3042), + [anon_sym_switch] = ACTIONS(3044), + [anon_sym_case] = ACTIONS(3046), + [anon_sym_default] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3050), + [anon_sym_do] = ACTIONS(2255), + [anon_sym_for] = ACTIONS(3052), + [anon_sym_return] = ACTIONS(2259), + [anon_sym_break] = ACTIONS(2261), + [anon_sym_continue] = ACTIONS(2263), + [anon_sym_goto] = ACTIONS(2265), + [anon_sym_AMP] = ACTIONS(552), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_TILDE] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(580), + [anon_sym_DASH] = ACTIONS(580), + [anon_sym_DASH_DASH] = ACTIONS(582), + [anon_sym_PLUS_PLUS] = ACTIONS(582), + [anon_sym_sizeof] = ACTIONS(584), + [sym_number_literal] = ACTIONS(2267), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(2269), + [sym_false] = ACTIONS(2269), + [sym_null] = ACTIONS(2269), + [sym_identifier] = ACTIONS(3054), [sym_comment] = ACTIONS(39), }, [1202] = { @@ -48080,77 +48099,77 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(872), [sym_concatenated_string] = STATE(872), [sym_string_literal] = STATE(253), - [anon_sym_SEMI] = ACTIONS(2254), - [anon_sym_LBRACE] = ACTIONS(1273), - [anon_sym_LPAREN2] = ACTIONS(554), - [anon_sym_STAR] = ACTIONS(556), - [anon_sym_if] = ACTIONS(3053), - [anon_sym_switch] = ACTIONS(3055), - [anon_sym_case] = ACTIONS(3057), - [anon_sym_default] = ACTIONS(3059), - [anon_sym_while] = ACTIONS(3061), - [anon_sym_do] = ACTIONS(2266), - [anon_sym_for] = ACTIONS(3063), - [anon_sym_return] = ACTIONS(2270), - [anon_sym_break] = ACTIONS(2272), - [anon_sym_continue] = ACTIONS(2274), - [anon_sym_goto] = ACTIONS(2276), - [anon_sym_AMP] = ACTIONS(556), - [anon_sym_BANG] = ACTIONS(580), - [anon_sym_TILDE] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_DASH_DASH] = ACTIONS(586), - [anon_sym_PLUS_PLUS] = ACTIONS(586), - [anon_sym_sizeof] = ACTIONS(588), - [sym_number_literal] = ACTIONS(2278), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2280), - [sym_false] = ACTIONS(2280), - [sym_null] = ACTIONS(2280), - [sym_identifier] = ACTIONS(3065), + [anon_sym_SEMI] = ACTIONS(2243), + [anon_sym_LBRACE] = ACTIONS(1264), + [anon_sym_LPAREN2] = ACTIONS(550), + [anon_sym_STAR] = ACTIONS(552), + [anon_sym_if] = ACTIONS(3042), + [anon_sym_switch] = ACTIONS(3044), + [anon_sym_case] = ACTIONS(3046), + [anon_sym_default] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3050), + [anon_sym_do] = ACTIONS(2255), + [anon_sym_for] = ACTIONS(3052), + [anon_sym_return] = ACTIONS(2259), + [anon_sym_break] = ACTIONS(2261), + [anon_sym_continue] = ACTIONS(2263), + [anon_sym_goto] = ACTIONS(2265), + [anon_sym_AMP] = ACTIONS(552), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_TILDE] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(580), + [anon_sym_DASH] = ACTIONS(580), + [anon_sym_DASH_DASH] = ACTIONS(582), + [anon_sym_PLUS_PLUS] = ACTIONS(582), + [anon_sym_sizeof] = ACTIONS(584), + [sym_number_literal] = ACTIONS(2267), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(2269), + [sym_false] = ACTIONS(2269), + [sym_null] = ACTIONS(2269), + [sym_identifier] = ACTIONS(3054), [sym_comment] = ACTIONS(39), }, [1203] = { [sym_argument_list] = STATE(465), - [anon_sym_LPAREN2] = ACTIONS(1096), - [anon_sym_STAR] = ACTIONS(1620), - [anon_sym_LBRACK] = ACTIONS(1100), - [anon_sym_EQ] = ACTIONS(1622), - [anon_sym_COLON] = ACTIONS(3415), - [anon_sym_QMARK] = ACTIONS(1626), - [anon_sym_STAR_EQ] = ACTIONS(1628), - [anon_sym_SLASH_EQ] = ACTIONS(1628), - [anon_sym_PERCENT_EQ] = ACTIONS(1628), - [anon_sym_PLUS_EQ] = ACTIONS(1628), - [anon_sym_DASH_EQ] = ACTIONS(1628), - [anon_sym_LT_LT_EQ] = ACTIONS(1628), - [anon_sym_GT_GT_EQ] = ACTIONS(1628), - [anon_sym_AMP_EQ] = ACTIONS(1628), - [anon_sym_CARET_EQ] = ACTIONS(1628), - [anon_sym_PIPE_EQ] = ACTIONS(1628), - [anon_sym_AMP] = ACTIONS(1630), - [anon_sym_PIPE_PIPE] = ACTIONS(1632), - [anon_sym_AMP_AMP] = ACTIONS(1634), - [anon_sym_PIPE] = ACTIONS(1636), - [anon_sym_CARET] = ACTIONS(1638), - [anon_sym_EQ_EQ] = ACTIONS(1640), - [anon_sym_BANG_EQ] = ACTIONS(1640), - [anon_sym_LT] = ACTIONS(1642), - [anon_sym_GT] = ACTIONS(1642), - [anon_sym_LT_EQ] = ACTIONS(1644), - [anon_sym_GT_EQ] = ACTIONS(1644), - [anon_sym_LT_LT] = ACTIONS(1646), - [anon_sym_GT_GT] = ACTIONS(1646), - [anon_sym_PLUS] = ACTIONS(1648), - [anon_sym_DASH] = ACTIONS(1648), - [anon_sym_SLASH] = ACTIONS(1620), - [anon_sym_PERCENT] = ACTIONS(1620), - [anon_sym_DASH_DASH] = ACTIONS(1128), - [anon_sym_PLUS_PLUS] = ACTIONS(1128), - [anon_sym_DOT] = ACTIONS(1130), - [anon_sym_DASH_GT] = ACTIONS(1130), + [anon_sym_LPAREN2] = ACTIONS(1089), + [anon_sym_STAR] = ACTIONS(1609), + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(1611), + [anon_sym_COLON] = ACTIONS(3404), + [anon_sym_QMARK] = ACTIONS(1615), + [anon_sym_STAR_EQ] = ACTIONS(1617), + [anon_sym_SLASH_EQ] = ACTIONS(1617), + [anon_sym_PERCENT_EQ] = ACTIONS(1617), + [anon_sym_PLUS_EQ] = ACTIONS(1617), + [anon_sym_DASH_EQ] = ACTIONS(1617), + [anon_sym_LT_LT_EQ] = ACTIONS(1617), + [anon_sym_GT_GT_EQ] = ACTIONS(1617), + [anon_sym_AMP_EQ] = ACTIONS(1617), + [anon_sym_CARET_EQ] = ACTIONS(1617), + [anon_sym_PIPE_EQ] = ACTIONS(1617), + [anon_sym_AMP] = ACTIONS(1619), + [anon_sym_PIPE_PIPE] = ACTIONS(1621), + [anon_sym_AMP_AMP] = ACTIONS(1623), + [anon_sym_PIPE] = ACTIONS(1625), + [anon_sym_CARET] = ACTIONS(1627), + [anon_sym_EQ_EQ] = ACTIONS(1629), + [anon_sym_BANG_EQ] = ACTIONS(1629), + [anon_sym_LT] = ACTIONS(1631), + [anon_sym_GT] = ACTIONS(1631), + [anon_sym_LT_EQ] = ACTIONS(1633), + [anon_sym_GT_EQ] = ACTIONS(1633), + [anon_sym_LT_LT] = ACTIONS(1635), + [anon_sym_GT_GT] = ACTIONS(1635), + [anon_sym_PLUS] = ACTIONS(1637), + [anon_sym_DASH] = ACTIONS(1637), + [anon_sym_SLASH] = ACTIONS(1609), + [anon_sym_PERCENT] = ACTIONS(1609), + [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_PLUS_PLUS] = ACTIONS(1121), + [anon_sym_DOT] = ACTIONS(1123), + [anon_sym_DASH_GT] = ACTIONS(1123), [sym_comment] = ACTIONS(39), }, [1204] = { @@ -48201,12 +48220,12 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_macro_type_specifier] = STATE(95), [aux_sym__declaration_specifiers_repeat1] = STATE(96), [aux_sym_sized_type_specifier_repeat1] = STATE(97), - [anon_sym_SEMI] = ACTIONS(2254), - [anon_sym_typedef] = ACTIONS(380), + [anon_sym_SEMI] = ACTIONS(2243), + [anon_sym_typedef] = ACTIONS(376), [anon_sym_extern] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(1273), - [anon_sym_LPAREN2] = ACTIONS(554), - [anon_sym_STAR] = ACTIONS(556), + [anon_sym_LBRACE] = ACTIONS(1264), + [anon_sym_LPAREN2] = ACTIONS(550), + [anon_sym_STAR] = ACTIONS(552), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -48215,39 +48234,39 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_restrict] = ACTIONS(25), [anon_sym_volatile] = ACTIONS(25), [anon_sym__Atomic] = ACTIONS(25), - [anon_sym_unsigned] = ACTIONS(177), - [anon_sym_long] = ACTIONS(177), - [anon_sym_short] = ACTIONS(177), - [sym_primitive_type] = ACTIONS(179), + [anon_sym_unsigned] = ACTIONS(175), + [anon_sym_long] = ACTIONS(175), + [anon_sym_short] = ACTIONS(175), + [sym_primitive_type] = ACTIONS(177), [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), - [anon_sym_if] = ACTIONS(3053), - [anon_sym_switch] = ACTIONS(3055), - [anon_sym_case] = ACTIONS(3057), - [anon_sym_default] = ACTIONS(3059), - [anon_sym_while] = ACTIONS(3061), - [anon_sym_do] = ACTIONS(2266), - [anon_sym_for] = ACTIONS(3063), - [anon_sym_return] = ACTIONS(2270), - [anon_sym_break] = ACTIONS(2272), - [anon_sym_continue] = ACTIONS(2274), - [anon_sym_goto] = ACTIONS(2276), - [anon_sym_AMP] = ACTIONS(556), - [anon_sym_BANG] = ACTIONS(580), - [anon_sym_TILDE] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_DASH_DASH] = ACTIONS(586), - [anon_sym_PLUS_PLUS] = ACTIONS(586), - [anon_sym_sizeof] = ACTIONS(588), - [sym_number_literal] = ACTIONS(2278), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2280), - [sym_false] = ACTIONS(2280), - [sym_null] = ACTIONS(2280), - [sym_identifier] = ACTIONS(3417), + [anon_sym_if] = ACTIONS(3042), + [anon_sym_switch] = ACTIONS(3044), + [anon_sym_case] = ACTIONS(3046), + [anon_sym_default] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3050), + [anon_sym_do] = ACTIONS(2255), + [anon_sym_for] = ACTIONS(3052), + [anon_sym_return] = ACTIONS(2259), + [anon_sym_break] = ACTIONS(2261), + [anon_sym_continue] = ACTIONS(2263), + [anon_sym_goto] = ACTIONS(2265), + [anon_sym_AMP] = ACTIONS(552), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_TILDE] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(580), + [anon_sym_DASH] = ACTIONS(580), + [anon_sym_DASH_DASH] = ACTIONS(582), + [anon_sym_PLUS_PLUS] = ACTIONS(582), + [anon_sym_sizeof] = ACTIONS(584), + [sym_number_literal] = ACTIONS(2267), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(2269), + [sym_false] = ACTIONS(2269), + [sym_null] = ACTIONS(2269), + [sym_identifier] = ACTIONS(3406), [sym_comment] = ACTIONS(39), }, [1205] = { @@ -48285,36 +48304,36 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(872), [sym_concatenated_string] = STATE(872), [sym_string_literal] = STATE(253), - [anon_sym_SEMI] = ACTIONS(2254), - [anon_sym_LBRACE] = ACTIONS(1273), - [anon_sym_LPAREN2] = ACTIONS(554), - [anon_sym_STAR] = ACTIONS(556), - [anon_sym_if] = ACTIONS(3053), - [anon_sym_switch] = ACTIONS(3055), - [anon_sym_case] = ACTIONS(3057), - [anon_sym_default] = ACTIONS(3059), - [anon_sym_while] = ACTIONS(3061), - [anon_sym_do] = ACTIONS(2266), - [anon_sym_for] = ACTIONS(3063), - [anon_sym_return] = ACTIONS(2270), - [anon_sym_break] = ACTIONS(2272), - [anon_sym_continue] = ACTIONS(2274), - [anon_sym_goto] = ACTIONS(2276), - [anon_sym_AMP] = ACTIONS(556), - [anon_sym_BANG] = ACTIONS(580), - [anon_sym_TILDE] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_DASH_DASH] = ACTIONS(586), - [anon_sym_PLUS_PLUS] = ACTIONS(586), - [anon_sym_sizeof] = ACTIONS(588), - [sym_number_literal] = ACTIONS(2278), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2280), - [sym_false] = ACTIONS(2280), - [sym_null] = ACTIONS(2280), - [sym_identifier] = ACTIONS(3065), + [anon_sym_SEMI] = ACTIONS(2243), + [anon_sym_LBRACE] = ACTIONS(1264), + [anon_sym_LPAREN2] = ACTIONS(550), + [anon_sym_STAR] = ACTIONS(552), + [anon_sym_if] = ACTIONS(3042), + [anon_sym_switch] = ACTIONS(3044), + [anon_sym_case] = ACTIONS(3046), + [anon_sym_default] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3050), + [anon_sym_do] = ACTIONS(2255), + [anon_sym_for] = ACTIONS(3052), + [anon_sym_return] = ACTIONS(2259), + [anon_sym_break] = ACTIONS(2261), + [anon_sym_continue] = ACTIONS(2263), + [anon_sym_goto] = ACTIONS(2265), + [anon_sym_AMP] = ACTIONS(552), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_TILDE] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(580), + [anon_sym_DASH] = ACTIONS(580), + [anon_sym_DASH_DASH] = ACTIONS(582), + [anon_sym_PLUS_PLUS] = ACTIONS(582), + [anon_sym_sizeof] = ACTIONS(584), + [sym_number_literal] = ACTIONS(2267), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(2269), + [sym_false] = ACTIONS(2269), + [sym_null] = ACTIONS(2269), + [sym_identifier] = ACTIONS(3054), [sym_comment] = ACTIONS(39), }, [1206] = { @@ -48350,10 +48369,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_macro_type_specifier] = STATE(95), [aux_sym__declaration_specifiers_repeat1] = STATE(96), [aux_sym_sized_type_specifier_repeat1] = STATE(97), - [anon_sym_SEMI] = ACTIONS(3419), + [anon_sym_SEMI] = ACTIONS(3408), [anon_sym_extern] = ACTIONS(23), - [anon_sym_LPAREN2] = ACTIONS(847), - [anon_sym_STAR] = ACTIONS(849), + [anon_sym_LPAREN2] = ACTIONS(838), + [anon_sym_STAR] = ACTIONS(840), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -48362,28 +48381,28 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_restrict] = ACTIONS(25), [anon_sym_volatile] = ACTIONS(25), [anon_sym__Atomic] = ACTIONS(25), - [anon_sym_unsigned] = ACTIONS(177), - [anon_sym_long] = ACTIONS(177), - [anon_sym_short] = ACTIONS(177), - [sym_primitive_type] = ACTIONS(179), + [anon_sym_unsigned] = ACTIONS(175), + [anon_sym_long] = ACTIONS(175), + [anon_sym_short] = ACTIONS(175), + [sym_primitive_type] = ACTIONS(177), [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), - [anon_sym_AMP] = ACTIONS(849), - [anon_sym_BANG] = ACTIONS(851), - [anon_sym_TILDE] = ACTIONS(853), - [anon_sym_PLUS] = ACTIONS(855), - [anon_sym_DASH] = ACTIONS(855), - [anon_sym_DASH_DASH] = ACTIONS(857), - [anon_sym_PLUS_PLUS] = ACTIONS(857), - [anon_sym_sizeof] = ACTIONS(859), - [sym_number_literal] = ACTIONS(3421), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(3423), - [sym_false] = ACTIONS(3423), - [sym_null] = ACTIONS(3423), - [sym_identifier] = ACTIONS(1670), + [anon_sym_AMP] = ACTIONS(840), + [anon_sym_BANG] = ACTIONS(842), + [anon_sym_TILDE] = ACTIONS(844), + [anon_sym_PLUS] = ACTIONS(846), + [anon_sym_DASH] = ACTIONS(846), + [anon_sym_DASH_DASH] = ACTIONS(848), + [anon_sym_PLUS_PLUS] = ACTIONS(848), + [anon_sym_sizeof] = ACTIONS(850), + [sym_number_literal] = ACTIONS(3410), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(3412), + [sym_false] = ACTIONS(3412), + [sym_null] = ACTIONS(3412), + [sym_identifier] = ACTIONS(1659), [sym_comment] = ACTIONS(39), }, [1207] = { @@ -48421,36 +48440,36 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(872), [sym_concatenated_string] = STATE(872), [sym_string_literal] = STATE(253), - [anon_sym_SEMI] = ACTIONS(2254), - [anon_sym_LBRACE] = ACTIONS(1273), - [anon_sym_LPAREN2] = ACTIONS(554), - [anon_sym_STAR] = ACTIONS(556), - [anon_sym_if] = ACTIONS(3053), - [anon_sym_switch] = ACTIONS(3055), - [anon_sym_case] = ACTIONS(3057), - [anon_sym_default] = ACTIONS(3059), - [anon_sym_while] = ACTIONS(3061), - [anon_sym_do] = ACTIONS(2266), - [anon_sym_for] = ACTIONS(3063), - [anon_sym_return] = ACTIONS(2270), - [anon_sym_break] = ACTIONS(2272), - [anon_sym_continue] = ACTIONS(2274), - [anon_sym_goto] = ACTIONS(2276), - [anon_sym_AMP] = ACTIONS(556), - [anon_sym_BANG] = ACTIONS(580), - [anon_sym_TILDE] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_DASH_DASH] = ACTIONS(586), - [anon_sym_PLUS_PLUS] = ACTIONS(586), - [anon_sym_sizeof] = ACTIONS(588), - [sym_number_literal] = ACTIONS(2278), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2280), - [sym_false] = ACTIONS(2280), - [sym_null] = ACTIONS(2280), - [sym_identifier] = ACTIONS(3065), + [anon_sym_SEMI] = ACTIONS(2243), + [anon_sym_LBRACE] = ACTIONS(1264), + [anon_sym_LPAREN2] = ACTIONS(550), + [anon_sym_STAR] = ACTIONS(552), + [anon_sym_if] = ACTIONS(3042), + [anon_sym_switch] = ACTIONS(3044), + [anon_sym_case] = ACTIONS(3046), + [anon_sym_default] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3050), + [anon_sym_do] = ACTIONS(2255), + [anon_sym_for] = ACTIONS(3052), + [anon_sym_return] = ACTIONS(2259), + [anon_sym_break] = ACTIONS(2261), + [anon_sym_continue] = ACTIONS(2263), + [anon_sym_goto] = ACTIONS(2265), + [anon_sym_AMP] = ACTIONS(552), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_TILDE] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(580), + [anon_sym_DASH] = ACTIONS(580), + [anon_sym_DASH_DASH] = ACTIONS(582), + [anon_sym_PLUS_PLUS] = ACTIONS(582), + [anon_sym_sizeof] = ACTIONS(584), + [sym_number_literal] = ACTIONS(2267), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(2269), + [sym_false] = ACTIONS(2269), + [sym_null] = ACTIONS(2269), + [sym_identifier] = ACTIONS(3054), [sym_comment] = ACTIONS(39), }, [1208] = { @@ -48488,94 +48507,94 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(872), [sym_concatenated_string] = STATE(872), [sym_string_literal] = STATE(253), - [anon_sym_SEMI] = ACTIONS(2254), - [anon_sym_LBRACE] = ACTIONS(1273), - [anon_sym_LPAREN2] = ACTIONS(554), - [anon_sym_STAR] = ACTIONS(556), - [anon_sym_if] = ACTIONS(2256), - [anon_sym_switch] = ACTIONS(2258), - [anon_sym_case] = ACTIONS(2260), - [anon_sym_default] = ACTIONS(2262), - [anon_sym_while] = ACTIONS(2264), - [anon_sym_do] = ACTIONS(2266), - [anon_sym_for] = ACTIONS(2268), - [anon_sym_return] = ACTIONS(2270), - [anon_sym_break] = ACTIONS(2272), - [anon_sym_continue] = ACTIONS(2274), - [anon_sym_goto] = ACTIONS(2276), - [anon_sym_AMP] = ACTIONS(556), - [anon_sym_BANG] = ACTIONS(580), - [anon_sym_TILDE] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_DASH_DASH] = ACTIONS(586), - [anon_sym_PLUS_PLUS] = ACTIONS(586), - [anon_sym_sizeof] = ACTIONS(588), - [sym_number_literal] = ACTIONS(2278), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2280), - [sym_false] = ACTIONS(2280), - [sym_null] = ACTIONS(2280), - [sym_identifier] = ACTIONS(3067), + [anon_sym_SEMI] = ACTIONS(2243), + [anon_sym_LBRACE] = ACTIONS(1264), + [anon_sym_LPAREN2] = ACTIONS(550), + [anon_sym_STAR] = ACTIONS(552), + [anon_sym_if] = ACTIONS(2245), + [anon_sym_switch] = ACTIONS(2247), + [anon_sym_case] = ACTIONS(2249), + [anon_sym_default] = ACTIONS(2251), + [anon_sym_while] = ACTIONS(2253), + [anon_sym_do] = ACTIONS(2255), + [anon_sym_for] = ACTIONS(2257), + [anon_sym_return] = ACTIONS(2259), + [anon_sym_break] = ACTIONS(2261), + [anon_sym_continue] = ACTIONS(2263), + [anon_sym_goto] = ACTIONS(2265), + [anon_sym_AMP] = ACTIONS(552), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_TILDE] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(580), + [anon_sym_DASH] = ACTIONS(580), + [anon_sym_DASH_DASH] = ACTIONS(582), + [anon_sym_PLUS_PLUS] = ACTIONS(582), + [anon_sym_sizeof] = ACTIONS(584), + [sym_number_literal] = ACTIONS(2267), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(2269), + [sym_false] = ACTIONS(2269), + [sym_null] = ACTIONS(2269), + [sym_identifier] = ACTIONS(3056), [sym_comment] = ACTIONS(39), }, [1209] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2908), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2908), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2908), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2908), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2908), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2908), - [sym_preproc_directive] = ACTIONS(2908), - [anon_sym_SEMI] = ACTIONS(2910), - [anon_sym_typedef] = ACTIONS(2908), - [anon_sym_extern] = ACTIONS(2908), - [anon_sym_LBRACE] = ACTIONS(2910), - [anon_sym_LPAREN2] = ACTIONS(2910), - [anon_sym_STAR] = ACTIONS(2910), - [anon_sym_static] = ACTIONS(2908), - [anon_sym_auto] = ACTIONS(2908), - [anon_sym_register] = ACTIONS(2908), - [anon_sym_inline] = ACTIONS(2908), - [anon_sym_const] = ACTIONS(2908), - [anon_sym_restrict] = ACTIONS(2908), - [anon_sym_volatile] = ACTIONS(2908), - [anon_sym__Atomic] = ACTIONS(2908), - [anon_sym_unsigned] = ACTIONS(2908), - [anon_sym_long] = ACTIONS(2908), - [anon_sym_short] = ACTIONS(2908), - [sym_primitive_type] = ACTIONS(2908), - [anon_sym_enum] = ACTIONS(2908), - [anon_sym_struct] = ACTIONS(2908), - [anon_sym_union] = ACTIONS(2908), - [anon_sym_if] = ACTIONS(2908), - [anon_sym_else] = ACTIONS(2908), - [anon_sym_switch] = ACTIONS(2908), - [anon_sym_case] = ACTIONS(2908), - [anon_sym_default] = ACTIONS(2908), - [anon_sym_while] = ACTIONS(2908), - [anon_sym_do] = ACTIONS(2908), - [anon_sym_for] = ACTIONS(2908), - [anon_sym_return] = ACTIONS(2908), - [anon_sym_break] = ACTIONS(2908), - [anon_sym_continue] = ACTIONS(2908), - [anon_sym_goto] = ACTIONS(2908), - [anon_sym_AMP] = ACTIONS(2910), - [anon_sym_BANG] = ACTIONS(2910), - [anon_sym_TILDE] = ACTIONS(2910), - [anon_sym_PLUS] = ACTIONS(2908), - [anon_sym_DASH] = ACTIONS(2908), - [anon_sym_DASH_DASH] = ACTIONS(2910), - [anon_sym_PLUS_PLUS] = ACTIONS(2910), - [anon_sym_sizeof] = ACTIONS(2908), - [sym_number_literal] = ACTIONS(2910), - [anon_sym_SQUOTE] = ACTIONS(2910), - [anon_sym_DQUOTE] = ACTIONS(2910), - [sym_true] = ACTIONS(2908), - [sym_false] = ACTIONS(2908), - [sym_null] = ACTIONS(2908), - [sym_identifier] = ACTIONS(2908), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2897), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2897), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2897), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2897), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2897), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2897), + [sym_preproc_directive] = ACTIONS(2897), + [anon_sym_SEMI] = ACTIONS(2899), + [anon_sym_typedef] = ACTIONS(2897), + [anon_sym_extern] = ACTIONS(2897), + [anon_sym_LBRACE] = ACTIONS(2899), + [anon_sym_LPAREN2] = ACTIONS(2899), + [anon_sym_STAR] = ACTIONS(2899), + [anon_sym_static] = ACTIONS(2897), + [anon_sym_auto] = ACTIONS(2897), + [anon_sym_register] = ACTIONS(2897), + [anon_sym_inline] = ACTIONS(2897), + [anon_sym_const] = ACTIONS(2897), + [anon_sym_restrict] = ACTIONS(2897), + [anon_sym_volatile] = ACTIONS(2897), + [anon_sym__Atomic] = ACTIONS(2897), + [anon_sym_unsigned] = ACTIONS(2897), + [anon_sym_long] = ACTIONS(2897), + [anon_sym_short] = ACTIONS(2897), + [sym_primitive_type] = ACTIONS(2897), + [anon_sym_enum] = ACTIONS(2897), + [anon_sym_struct] = ACTIONS(2897), + [anon_sym_union] = ACTIONS(2897), + [anon_sym_if] = ACTIONS(2897), + [anon_sym_else] = ACTIONS(2897), + [anon_sym_switch] = ACTIONS(2897), + [anon_sym_case] = ACTIONS(2897), + [anon_sym_default] = ACTIONS(2897), + [anon_sym_while] = ACTIONS(2897), + [anon_sym_do] = ACTIONS(2897), + [anon_sym_for] = ACTIONS(2897), + [anon_sym_return] = ACTIONS(2897), + [anon_sym_break] = ACTIONS(2897), + [anon_sym_continue] = ACTIONS(2897), + [anon_sym_goto] = ACTIONS(2897), + [anon_sym_AMP] = ACTIONS(2899), + [anon_sym_BANG] = ACTIONS(2899), + [anon_sym_TILDE] = ACTIONS(2899), + [anon_sym_PLUS] = ACTIONS(2897), + [anon_sym_DASH] = ACTIONS(2897), + [anon_sym_DASH_DASH] = ACTIONS(2899), + [anon_sym_PLUS_PLUS] = ACTIONS(2899), + [anon_sym_sizeof] = ACTIONS(2897), + [sym_number_literal] = ACTIONS(2899), + [anon_sym_SQUOTE] = ACTIONS(2899), + [anon_sym_DQUOTE] = ACTIONS(2899), + [sym_true] = ACTIONS(2897), + [sym_false] = ACTIONS(2897), + [sym_null] = ACTIONS(2897), + [sym_identifier] = ACTIONS(2897), [sym_comment] = ACTIONS(39), }, [1210] = { @@ -48600,81 +48619,81 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(1255), [sym_concatenated_string] = STATE(1255), [sym_string_literal] = STATE(409), - [anon_sym_LPAREN2] = ACTIONS(970), - [anon_sym_STAR] = ACTIONS(972), - [anon_sym_AMP] = ACTIONS(972), - [anon_sym_BANG] = ACTIONS(974), - [anon_sym_TILDE] = ACTIONS(976), - [anon_sym_PLUS] = ACTIONS(978), - [anon_sym_DASH] = ACTIONS(978), - [anon_sym_DASH_DASH] = ACTIONS(980), - [anon_sym_PLUS_PLUS] = ACTIONS(980), - [anon_sym_sizeof] = ACTIONS(982), - [sym_number_literal] = ACTIONS(3425), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(3427), - [sym_false] = ACTIONS(3427), - [sym_null] = ACTIONS(3427), - [sym_identifier] = ACTIONS(3427), + [anon_sym_LPAREN2] = ACTIONS(961), + [anon_sym_STAR] = ACTIONS(963), + [anon_sym_AMP] = ACTIONS(963), + [anon_sym_BANG] = ACTIONS(965), + [anon_sym_TILDE] = ACTIONS(967), + [anon_sym_PLUS] = ACTIONS(969), + [anon_sym_DASH] = ACTIONS(969), + [anon_sym_DASH_DASH] = ACTIONS(971), + [anon_sym_PLUS_PLUS] = ACTIONS(971), + [anon_sym_sizeof] = ACTIONS(973), + [sym_number_literal] = ACTIONS(3414), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(3416), + [sym_false] = ACTIONS(3416), + [sym_null] = ACTIONS(3416), + [sym_identifier] = ACTIONS(3416), [sym_comment] = ACTIONS(39), }, [1211] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2936), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2936), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2936), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2936), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2936), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2936), - [sym_preproc_directive] = ACTIONS(2936), - [anon_sym_SEMI] = ACTIONS(2938), - [anon_sym_typedef] = ACTIONS(2936), - [anon_sym_extern] = ACTIONS(2936), - [anon_sym_LBRACE] = ACTIONS(2938), - [anon_sym_LPAREN2] = ACTIONS(2938), - [anon_sym_STAR] = ACTIONS(2938), - [anon_sym_static] = ACTIONS(2936), - [anon_sym_auto] = ACTIONS(2936), - [anon_sym_register] = ACTIONS(2936), - [anon_sym_inline] = ACTIONS(2936), - [anon_sym_const] = ACTIONS(2936), - [anon_sym_restrict] = ACTIONS(2936), - [anon_sym_volatile] = ACTIONS(2936), - [anon_sym__Atomic] = ACTIONS(2936), - [anon_sym_unsigned] = ACTIONS(2936), - [anon_sym_long] = ACTIONS(2936), - [anon_sym_short] = ACTIONS(2936), - [sym_primitive_type] = ACTIONS(2936), - [anon_sym_enum] = ACTIONS(2936), - [anon_sym_struct] = ACTIONS(2936), - [anon_sym_union] = ACTIONS(2936), - [anon_sym_if] = ACTIONS(2936), - [anon_sym_else] = ACTIONS(2936), - [anon_sym_switch] = ACTIONS(2936), - [anon_sym_case] = ACTIONS(2936), - [anon_sym_default] = ACTIONS(2936), - [anon_sym_while] = ACTIONS(2936), - [anon_sym_do] = ACTIONS(2936), - [anon_sym_for] = ACTIONS(2936), - [anon_sym_return] = ACTIONS(2936), - [anon_sym_break] = ACTIONS(2936), - [anon_sym_continue] = ACTIONS(2936), - [anon_sym_goto] = ACTIONS(2936), - [anon_sym_AMP] = ACTIONS(2938), - [anon_sym_BANG] = ACTIONS(2938), - [anon_sym_TILDE] = ACTIONS(2938), - [anon_sym_PLUS] = ACTIONS(2936), - [anon_sym_DASH] = ACTIONS(2936), - [anon_sym_DASH_DASH] = ACTIONS(2938), - [anon_sym_PLUS_PLUS] = ACTIONS(2938), - [anon_sym_sizeof] = ACTIONS(2936), - [sym_number_literal] = ACTIONS(2938), - [anon_sym_SQUOTE] = ACTIONS(2938), - [anon_sym_DQUOTE] = ACTIONS(2938), - [sym_true] = ACTIONS(2936), - [sym_false] = ACTIONS(2936), - [sym_null] = ACTIONS(2936), - [sym_identifier] = ACTIONS(2936), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2925), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2925), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2925), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2925), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2925), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2925), + [sym_preproc_directive] = ACTIONS(2925), + [anon_sym_SEMI] = ACTIONS(2927), + [anon_sym_typedef] = ACTIONS(2925), + [anon_sym_extern] = ACTIONS(2925), + [anon_sym_LBRACE] = ACTIONS(2927), + [anon_sym_LPAREN2] = ACTIONS(2927), + [anon_sym_STAR] = ACTIONS(2927), + [anon_sym_static] = ACTIONS(2925), + [anon_sym_auto] = ACTIONS(2925), + [anon_sym_register] = ACTIONS(2925), + [anon_sym_inline] = ACTIONS(2925), + [anon_sym_const] = ACTIONS(2925), + [anon_sym_restrict] = ACTIONS(2925), + [anon_sym_volatile] = ACTIONS(2925), + [anon_sym__Atomic] = ACTIONS(2925), + [anon_sym_unsigned] = ACTIONS(2925), + [anon_sym_long] = ACTIONS(2925), + [anon_sym_short] = ACTIONS(2925), + [sym_primitive_type] = ACTIONS(2925), + [anon_sym_enum] = ACTIONS(2925), + [anon_sym_struct] = ACTIONS(2925), + [anon_sym_union] = ACTIONS(2925), + [anon_sym_if] = ACTIONS(2925), + [anon_sym_else] = ACTIONS(2925), + [anon_sym_switch] = ACTIONS(2925), + [anon_sym_case] = ACTIONS(2925), + [anon_sym_default] = ACTIONS(2925), + [anon_sym_while] = ACTIONS(2925), + [anon_sym_do] = ACTIONS(2925), + [anon_sym_for] = ACTIONS(2925), + [anon_sym_return] = ACTIONS(2925), + [anon_sym_break] = ACTIONS(2925), + [anon_sym_continue] = ACTIONS(2925), + [anon_sym_goto] = ACTIONS(2925), + [anon_sym_AMP] = ACTIONS(2927), + [anon_sym_BANG] = ACTIONS(2927), + [anon_sym_TILDE] = ACTIONS(2927), + [anon_sym_PLUS] = ACTIONS(2925), + [anon_sym_DASH] = ACTIONS(2925), + [anon_sym_DASH_DASH] = ACTIONS(2927), + [anon_sym_PLUS_PLUS] = ACTIONS(2927), + [anon_sym_sizeof] = ACTIONS(2925), + [sym_number_literal] = ACTIONS(2927), + [anon_sym_SQUOTE] = ACTIONS(2927), + [anon_sym_DQUOTE] = ACTIONS(2927), + [sym_true] = ACTIONS(2925), + [sym_false] = ACTIONS(2925), + [sym_null] = ACTIONS(2925), + [sym_identifier] = ACTIONS(2925), [sym_comment] = ACTIONS(39), }, [1212] = { @@ -48698,65 +48717,65 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(1258), [sym_concatenated_string] = STATE(1258), [sym_string_literal] = STATE(409), - [anon_sym_RPAREN] = ACTIONS(3429), - [anon_sym_LPAREN2] = ACTIONS(970), - [anon_sym_STAR] = ACTIONS(972), - [anon_sym_AMP] = ACTIONS(972), - [anon_sym_BANG] = ACTIONS(974), - [anon_sym_TILDE] = ACTIONS(976), - [anon_sym_PLUS] = ACTIONS(978), - [anon_sym_DASH] = ACTIONS(978), - [anon_sym_DASH_DASH] = ACTIONS(980), - [anon_sym_PLUS_PLUS] = ACTIONS(980), - [anon_sym_sizeof] = ACTIONS(982), - [sym_number_literal] = ACTIONS(3431), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(3433), - [sym_false] = ACTIONS(3433), - [sym_null] = ACTIONS(3433), - [sym_identifier] = ACTIONS(3433), + [anon_sym_RPAREN] = ACTIONS(3418), + [anon_sym_LPAREN2] = ACTIONS(961), + [anon_sym_STAR] = ACTIONS(963), + [anon_sym_AMP] = ACTIONS(963), + [anon_sym_BANG] = ACTIONS(965), + [anon_sym_TILDE] = ACTIONS(967), + [anon_sym_PLUS] = ACTIONS(969), + [anon_sym_DASH] = ACTIONS(969), + [anon_sym_DASH_DASH] = ACTIONS(971), + [anon_sym_PLUS_PLUS] = ACTIONS(971), + [anon_sym_sizeof] = ACTIONS(973), + [sym_number_literal] = ACTIONS(3420), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(3422), + [sym_false] = ACTIONS(3422), + [sym_null] = ACTIONS(3422), + [sym_identifier] = ACTIONS(3422), [sym_comment] = ACTIONS(39), }, [1213] = { [sym_argument_list] = STATE(465), - [anon_sym_SEMI] = ACTIONS(3435), - [anon_sym_LPAREN2] = ACTIONS(1096), - [anon_sym_STAR] = ACTIONS(1436), - [anon_sym_LBRACK] = ACTIONS(1100), - [anon_sym_EQ] = ACTIONS(1438), - [anon_sym_QMARK] = ACTIONS(1440), - [anon_sym_STAR_EQ] = ACTIONS(1442), - [anon_sym_SLASH_EQ] = ACTIONS(1442), - [anon_sym_PERCENT_EQ] = ACTIONS(1442), - [anon_sym_PLUS_EQ] = ACTIONS(1442), - [anon_sym_DASH_EQ] = ACTIONS(1442), - [anon_sym_LT_LT_EQ] = ACTIONS(1442), - [anon_sym_GT_GT_EQ] = ACTIONS(1442), - [anon_sym_AMP_EQ] = ACTIONS(1442), - [anon_sym_CARET_EQ] = ACTIONS(1442), - [anon_sym_PIPE_EQ] = ACTIONS(1442), - [anon_sym_AMP] = ACTIONS(1444), - [anon_sym_PIPE_PIPE] = ACTIONS(1446), - [anon_sym_AMP_AMP] = ACTIONS(1448), - [anon_sym_PIPE] = ACTIONS(1450), - [anon_sym_CARET] = ACTIONS(1452), - [anon_sym_EQ_EQ] = ACTIONS(1454), - [anon_sym_BANG_EQ] = ACTIONS(1454), - [anon_sym_LT] = ACTIONS(1456), - [anon_sym_GT] = ACTIONS(1456), - [anon_sym_LT_EQ] = ACTIONS(1458), - [anon_sym_GT_EQ] = ACTIONS(1458), - [anon_sym_LT_LT] = ACTIONS(1460), - [anon_sym_GT_GT] = ACTIONS(1460), - [anon_sym_PLUS] = ACTIONS(1462), - [anon_sym_DASH] = ACTIONS(1462), - [anon_sym_SLASH] = ACTIONS(1436), - [anon_sym_PERCENT] = ACTIONS(1436), - [anon_sym_DASH_DASH] = ACTIONS(1128), - [anon_sym_PLUS_PLUS] = ACTIONS(1128), - [anon_sym_DOT] = ACTIONS(1130), - [anon_sym_DASH_GT] = ACTIONS(1130), + [anon_sym_SEMI] = ACTIONS(3424), + [anon_sym_LPAREN2] = ACTIONS(1089), + [anon_sym_STAR] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(1429), + [anon_sym_QMARK] = ACTIONS(1431), + [anon_sym_STAR_EQ] = ACTIONS(1433), + [anon_sym_SLASH_EQ] = ACTIONS(1433), + [anon_sym_PERCENT_EQ] = ACTIONS(1433), + [anon_sym_PLUS_EQ] = ACTIONS(1433), + [anon_sym_DASH_EQ] = ACTIONS(1433), + [anon_sym_LT_LT_EQ] = ACTIONS(1433), + [anon_sym_GT_GT_EQ] = ACTIONS(1433), + [anon_sym_AMP_EQ] = ACTIONS(1433), + [anon_sym_CARET_EQ] = ACTIONS(1433), + [anon_sym_PIPE_EQ] = ACTIONS(1433), + [anon_sym_AMP] = ACTIONS(1435), + [anon_sym_PIPE_PIPE] = ACTIONS(1437), + [anon_sym_AMP_AMP] = ACTIONS(1439), + [anon_sym_PIPE] = ACTIONS(1441), + [anon_sym_CARET] = ACTIONS(1443), + [anon_sym_EQ_EQ] = ACTIONS(1445), + [anon_sym_BANG_EQ] = ACTIONS(1445), + [anon_sym_LT] = ACTIONS(1447), + [anon_sym_GT] = ACTIONS(1447), + [anon_sym_LT_EQ] = ACTIONS(1449), + [anon_sym_GT_EQ] = ACTIONS(1449), + [anon_sym_LT_LT] = ACTIONS(1451), + [anon_sym_GT_GT] = ACTIONS(1451), + [anon_sym_PLUS] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1453), + [anon_sym_SLASH] = ACTIONS(1427), + [anon_sym_PERCENT] = ACTIONS(1427), + [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_PLUS_PLUS] = ACTIONS(1121), + [anon_sym_DOT] = ACTIONS(1123), + [anon_sym_DASH_GT] = ACTIONS(1123), [sym_comment] = ACTIONS(39), }, [1214] = { @@ -48780,84 +48799,84 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(1260), [sym_concatenated_string] = STATE(1260), [sym_string_literal] = STATE(376), - [anon_sym_SEMI] = ACTIONS(3435), - [anon_sym_LPAREN2] = ACTIONS(847), - [anon_sym_STAR] = ACTIONS(849), - [anon_sym_AMP] = ACTIONS(849), - [anon_sym_BANG] = ACTIONS(851), - [anon_sym_TILDE] = ACTIONS(853), - [anon_sym_PLUS] = ACTIONS(855), - [anon_sym_DASH] = ACTIONS(855), - [anon_sym_DASH_DASH] = ACTIONS(857), - [anon_sym_PLUS_PLUS] = ACTIONS(857), - [anon_sym_sizeof] = ACTIONS(859), - [sym_number_literal] = ACTIONS(3437), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(3439), - [sym_false] = ACTIONS(3439), - [sym_null] = ACTIONS(3439), - [sym_identifier] = ACTIONS(3439), + [anon_sym_SEMI] = ACTIONS(3424), + [anon_sym_LPAREN2] = ACTIONS(838), + [anon_sym_STAR] = ACTIONS(840), + [anon_sym_AMP] = ACTIONS(840), + [anon_sym_BANG] = ACTIONS(842), + [anon_sym_TILDE] = ACTIONS(844), + [anon_sym_PLUS] = ACTIONS(846), + [anon_sym_DASH] = ACTIONS(846), + [anon_sym_DASH_DASH] = ACTIONS(848), + [anon_sym_PLUS_PLUS] = ACTIONS(848), + [anon_sym_sizeof] = ACTIONS(850), + [sym_number_literal] = ACTIONS(3426), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(3428), + [sym_false] = ACTIONS(3428), + [sym_null] = ACTIONS(3428), + [sym_identifier] = ACTIONS(3428), [sym_comment] = ACTIONS(39), }, [1215] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2408), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2408), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2408), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2408), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2408), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2408), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2408), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2408), - [sym_preproc_directive] = ACTIONS(2408), - [anon_sym_SEMI] = ACTIONS(2410), - [anon_sym_typedef] = ACTIONS(2408), - [anon_sym_extern] = ACTIONS(2408), - [anon_sym_LBRACE] = ACTIONS(2410), - [anon_sym_LPAREN2] = ACTIONS(2410), - [anon_sym_STAR] = ACTIONS(2410), - [anon_sym_static] = ACTIONS(2408), - [anon_sym_auto] = ACTIONS(2408), - [anon_sym_register] = ACTIONS(2408), - [anon_sym_inline] = ACTIONS(2408), - [anon_sym_const] = ACTIONS(2408), - [anon_sym_restrict] = ACTIONS(2408), - [anon_sym_volatile] = ACTIONS(2408), - [anon_sym__Atomic] = ACTIONS(2408), - [anon_sym_unsigned] = ACTIONS(2408), - [anon_sym_long] = ACTIONS(2408), - [anon_sym_short] = ACTIONS(2408), - [sym_primitive_type] = ACTIONS(2408), - [anon_sym_enum] = ACTIONS(2408), - [anon_sym_struct] = ACTIONS(2408), - [anon_sym_union] = ACTIONS(2408), - [anon_sym_if] = ACTIONS(2408), - [anon_sym_else] = ACTIONS(3441), - [anon_sym_switch] = ACTIONS(2408), - [anon_sym_case] = ACTIONS(2408), - [anon_sym_default] = ACTIONS(2408), - [anon_sym_while] = ACTIONS(2408), - [anon_sym_do] = ACTIONS(2408), - [anon_sym_for] = ACTIONS(2408), - [anon_sym_return] = ACTIONS(2408), - [anon_sym_break] = ACTIONS(2408), - [anon_sym_continue] = ACTIONS(2408), - [anon_sym_goto] = ACTIONS(2408), - [anon_sym_AMP] = ACTIONS(2410), - [anon_sym_BANG] = ACTIONS(2410), - [anon_sym_TILDE] = ACTIONS(2410), - [anon_sym_PLUS] = ACTIONS(2408), - [anon_sym_DASH] = ACTIONS(2408), - [anon_sym_DASH_DASH] = ACTIONS(2410), - [anon_sym_PLUS_PLUS] = ACTIONS(2410), - [anon_sym_sizeof] = ACTIONS(2408), - [sym_number_literal] = ACTIONS(2410), - [anon_sym_SQUOTE] = ACTIONS(2410), - [anon_sym_DQUOTE] = ACTIONS(2410), - [sym_true] = ACTIONS(2408), - [sym_false] = ACTIONS(2408), - [sym_null] = ACTIONS(2408), - [sym_identifier] = ACTIONS(2408), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2397), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2397), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2397), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2397), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2397), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2397), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2397), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2397), + [sym_preproc_directive] = ACTIONS(2397), + [anon_sym_SEMI] = ACTIONS(2399), + [anon_sym_typedef] = ACTIONS(2397), + [anon_sym_extern] = ACTIONS(2397), + [anon_sym_LBRACE] = ACTIONS(2399), + [anon_sym_LPAREN2] = ACTIONS(2399), + [anon_sym_STAR] = ACTIONS(2399), + [anon_sym_static] = ACTIONS(2397), + [anon_sym_auto] = ACTIONS(2397), + [anon_sym_register] = ACTIONS(2397), + [anon_sym_inline] = ACTIONS(2397), + [anon_sym_const] = ACTIONS(2397), + [anon_sym_restrict] = ACTIONS(2397), + [anon_sym_volatile] = ACTIONS(2397), + [anon_sym__Atomic] = ACTIONS(2397), + [anon_sym_unsigned] = ACTIONS(2397), + [anon_sym_long] = ACTIONS(2397), + [anon_sym_short] = ACTIONS(2397), + [sym_primitive_type] = ACTIONS(2397), + [anon_sym_enum] = ACTIONS(2397), + [anon_sym_struct] = ACTIONS(2397), + [anon_sym_union] = ACTIONS(2397), + [anon_sym_if] = ACTIONS(2397), + [anon_sym_else] = ACTIONS(3430), + [anon_sym_switch] = ACTIONS(2397), + [anon_sym_case] = ACTIONS(2397), + [anon_sym_default] = ACTIONS(2397), + [anon_sym_while] = ACTIONS(2397), + [anon_sym_do] = ACTIONS(2397), + [anon_sym_for] = ACTIONS(2397), + [anon_sym_return] = ACTIONS(2397), + [anon_sym_break] = ACTIONS(2397), + [anon_sym_continue] = ACTIONS(2397), + [anon_sym_goto] = ACTIONS(2397), + [anon_sym_AMP] = ACTIONS(2399), + [anon_sym_BANG] = ACTIONS(2399), + [anon_sym_TILDE] = ACTIONS(2399), + [anon_sym_PLUS] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2397), + [anon_sym_DASH_DASH] = ACTIONS(2399), + [anon_sym_PLUS_PLUS] = ACTIONS(2399), + [anon_sym_sizeof] = ACTIONS(2397), + [sym_number_literal] = ACTIONS(2399), + [anon_sym_SQUOTE] = ACTIONS(2399), + [anon_sym_DQUOTE] = ACTIONS(2399), + [sym_true] = ACTIONS(2397), + [sym_false] = ACTIONS(2397), + [sym_null] = ACTIONS(2397), + [sym_identifier] = ACTIONS(2397), [sym_comment] = ACTIONS(39), }, [1216] = { @@ -48908,12 +48927,12 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_macro_type_specifier] = STATE(95), [aux_sym__declaration_specifiers_repeat1] = STATE(96), [aux_sym_sized_type_specifier_repeat1] = STATE(97), - [anon_sym_SEMI] = ACTIONS(1516), - [anon_sym_typedef] = ACTIONS(151), + [anon_sym_SEMI] = ACTIONS(1505), + [anon_sym_typedef] = ACTIONS(149), [anon_sym_extern] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(734), - [anon_sym_LPAREN2] = ACTIONS(554), - [anon_sym_STAR] = ACTIONS(556), + [anon_sym_LBRACE] = ACTIONS(725), + [anon_sym_LPAREN2] = ACTIONS(550), + [anon_sym_STAR] = ACTIONS(552), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -48922,49 +48941,49 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_restrict] = ACTIONS(25), [anon_sym_volatile] = ACTIONS(25), [anon_sym__Atomic] = ACTIONS(25), - [anon_sym_unsigned] = ACTIONS(177), - [anon_sym_long] = ACTIONS(177), - [anon_sym_short] = ACTIONS(177), - [sym_primitive_type] = ACTIONS(179), + [anon_sym_unsigned] = ACTIONS(175), + [anon_sym_long] = ACTIONS(175), + [anon_sym_short] = ACTIONS(175), + [sym_primitive_type] = ACTIONS(177), [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), - [anon_sym_if] = ACTIONS(2733), - [anon_sym_switch] = ACTIONS(2735), - [anon_sym_case] = ACTIONS(2737), - [anon_sym_default] = ACTIONS(2739), - [anon_sym_while] = ACTIONS(2741), - [anon_sym_do] = ACTIONS(1528), - [anon_sym_for] = ACTIONS(2743), - [anon_sym_return] = ACTIONS(1532), - [anon_sym_break] = ACTIONS(1534), - [anon_sym_continue] = ACTIONS(1536), - [anon_sym_goto] = ACTIONS(1538), - [anon_sym_AMP] = ACTIONS(556), - [anon_sym_BANG] = ACTIONS(580), - [anon_sym_TILDE] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_DASH_DASH] = ACTIONS(586), - [anon_sym_PLUS_PLUS] = ACTIONS(586), - [anon_sym_sizeof] = ACTIONS(588), - [sym_number_literal] = ACTIONS(1540), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1542), - [sym_false] = ACTIONS(1542), - [sym_null] = ACTIONS(1542), - [sym_identifier] = ACTIONS(3339), + [anon_sym_if] = ACTIONS(2722), + [anon_sym_switch] = ACTIONS(2724), + [anon_sym_case] = ACTIONS(2726), + [anon_sym_default] = ACTIONS(2728), + [anon_sym_while] = ACTIONS(2730), + [anon_sym_do] = ACTIONS(1517), + [anon_sym_for] = ACTIONS(2732), + [anon_sym_return] = ACTIONS(1521), + [anon_sym_break] = ACTIONS(1523), + [anon_sym_continue] = ACTIONS(1525), + [anon_sym_goto] = ACTIONS(1527), + [anon_sym_AMP] = ACTIONS(552), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_TILDE] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(580), + [anon_sym_DASH] = ACTIONS(580), + [anon_sym_DASH_DASH] = ACTIONS(582), + [anon_sym_PLUS_PLUS] = ACTIONS(582), + [anon_sym_sizeof] = ACTIONS(584), + [sym_number_literal] = ACTIONS(1529), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_null] = ACTIONS(1531), + [sym_identifier] = ACTIONS(3328), [sym_comment] = ACTIONS(39), }, [1217] = { - [anon_sym_COMMA] = ACTIONS(1066), - [anon_sym_SEMI] = ACTIONS(1066), + [anon_sym_COMMA] = ACTIONS(1059), + [anon_sym_SEMI] = ACTIONS(1059), [anon_sym_extern] = ACTIONS(83), - [anon_sym_LPAREN2] = ACTIONS(1071), - [anon_sym_STAR] = ACTIONS(1075), - [anon_sym_LBRACK] = ACTIONS(1066), - [anon_sym_EQ] = ACTIONS(1078), + [anon_sym_LPAREN2] = ACTIONS(1064), + [anon_sym_STAR] = ACTIONS(1068), + [anon_sym_LBRACK] = ACTIONS(1059), + [anon_sym_EQ] = ACTIONS(1071), [anon_sym_static] = ACTIONS(83), [anon_sym_auto] = ACTIONS(83), [anon_sym_register] = ACTIONS(83), @@ -48973,39 +48992,39 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_restrict] = ACTIONS(83), [anon_sym_volatile] = ACTIONS(83), [anon_sym__Atomic] = ACTIONS(83), - [anon_sym_COLON] = ACTIONS(3168), - [anon_sym_QMARK] = ACTIONS(1066), - [anon_sym_STAR_EQ] = ACTIONS(1066), - [anon_sym_SLASH_EQ] = ACTIONS(1066), - [anon_sym_PERCENT_EQ] = ACTIONS(1066), - [anon_sym_PLUS_EQ] = ACTIONS(1066), - [anon_sym_DASH_EQ] = ACTIONS(1066), - [anon_sym_LT_LT_EQ] = ACTIONS(1066), - [anon_sym_GT_GT_EQ] = ACTIONS(1066), - [anon_sym_AMP_EQ] = ACTIONS(1066), - [anon_sym_CARET_EQ] = ACTIONS(1066), - [anon_sym_PIPE_EQ] = ACTIONS(1066), - [anon_sym_AMP] = ACTIONS(1078), - [anon_sym_PIPE_PIPE] = ACTIONS(1066), - [anon_sym_AMP_AMP] = ACTIONS(1066), - [anon_sym_PIPE] = ACTIONS(1078), - [anon_sym_CARET] = ACTIONS(1078), - [anon_sym_EQ_EQ] = ACTIONS(1066), - [anon_sym_BANG_EQ] = ACTIONS(1066), - [anon_sym_LT] = ACTIONS(1078), - [anon_sym_GT] = ACTIONS(1078), - [anon_sym_LT_EQ] = ACTIONS(1066), - [anon_sym_GT_EQ] = ACTIONS(1066), - [anon_sym_LT_LT] = ACTIONS(1078), - [anon_sym_GT_GT] = ACTIONS(1078), - [anon_sym_PLUS] = ACTIONS(1078), - [anon_sym_DASH] = ACTIONS(1078), - [anon_sym_SLASH] = ACTIONS(1078), - [anon_sym_PERCENT] = ACTIONS(1078), - [anon_sym_DASH_DASH] = ACTIONS(1066), - [anon_sym_PLUS_PLUS] = ACTIONS(1066), - [anon_sym_DOT] = ACTIONS(1066), - [anon_sym_DASH_GT] = ACTIONS(1066), + [anon_sym_COLON] = ACTIONS(3157), + [anon_sym_QMARK] = ACTIONS(1059), + [anon_sym_STAR_EQ] = ACTIONS(1059), + [anon_sym_SLASH_EQ] = ACTIONS(1059), + [anon_sym_PERCENT_EQ] = ACTIONS(1059), + [anon_sym_PLUS_EQ] = ACTIONS(1059), + [anon_sym_DASH_EQ] = ACTIONS(1059), + [anon_sym_LT_LT_EQ] = ACTIONS(1059), + [anon_sym_GT_GT_EQ] = ACTIONS(1059), + [anon_sym_AMP_EQ] = ACTIONS(1059), + [anon_sym_CARET_EQ] = ACTIONS(1059), + [anon_sym_PIPE_EQ] = ACTIONS(1059), + [anon_sym_AMP] = ACTIONS(1071), + [anon_sym_PIPE_PIPE] = ACTIONS(1059), + [anon_sym_AMP_AMP] = ACTIONS(1059), + [anon_sym_PIPE] = ACTIONS(1071), + [anon_sym_CARET] = ACTIONS(1071), + [anon_sym_EQ_EQ] = ACTIONS(1059), + [anon_sym_BANG_EQ] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(1071), + [anon_sym_GT] = ACTIONS(1071), + [anon_sym_LT_EQ] = ACTIONS(1059), + [anon_sym_GT_EQ] = ACTIONS(1059), + [anon_sym_LT_LT] = ACTIONS(1071), + [anon_sym_GT_GT] = ACTIONS(1071), + [anon_sym_PLUS] = ACTIONS(1071), + [anon_sym_DASH] = ACTIONS(1071), + [anon_sym_SLASH] = ACTIONS(1071), + [anon_sym_PERCENT] = ACTIONS(1071), + [anon_sym_DASH_DASH] = ACTIONS(1059), + [anon_sym_PLUS_PLUS] = ACTIONS(1059), + [anon_sym_DOT] = ACTIONS(1059), + [anon_sym_DASH_GT] = ACTIONS(1059), [sym_identifier] = ACTIONS(83), [sym_comment] = ACTIONS(39), }, @@ -49030,171 +49049,171 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(1263), [sym_concatenated_string] = STATE(1263), [sym_string_literal] = STATE(376), - [anon_sym_SEMI] = ACTIONS(3443), - [anon_sym_LPAREN2] = ACTIONS(847), - [anon_sym_STAR] = ACTIONS(849), - [anon_sym_AMP] = ACTIONS(849), - [anon_sym_BANG] = ACTIONS(851), - [anon_sym_TILDE] = ACTIONS(853), - [anon_sym_PLUS] = ACTIONS(855), - [anon_sym_DASH] = ACTIONS(855), - [anon_sym_DASH_DASH] = ACTIONS(857), - [anon_sym_PLUS_PLUS] = ACTIONS(857), - [anon_sym_sizeof] = ACTIONS(859), - [sym_number_literal] = ACTIONS(3445), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(3447), - [sym_false] = ACTIONS(3447), - [sym_null] = ACTIONS(3447), - [sym_identifier] = ACTIONS(3447), + [anon_sym_SEMI] = ACTIONS(3432), + [anon_sym_LPAREN2] = ACTIONS(838), + [anon_sym_STAR] = ACTIONS(840), + [anon_sym_AMP] = ACTIONS(840), + [anon_sym_BANG] = ACTIONS(842), + [anon_sym_TILDE] = ACTIONS(844), + [anon_sym_PLUS] = ACTIONS(846), + [anon_sym_DASH] = ACTIONS(846), + [anon_sym_DASH_DASH] = ACTIONS(848), + [anon_sym_PLUS_PLUS] = ACTIONS(848), + [anon_sym_sizeof] = ACTIONS(850), + [sym_number_literal] = ACTIONS(3434), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(3436), + [sym_false] = ACTIONS(3436), + [sym_null] = ACTIONS(3436), + [sym_identifier] = ACTIONS(3436), [sym_comment] = ACTIONS(39), }, [1219] = { [sym_argument_list] = STATE(465), - [anon_sym_SEMI] = ACTIONS(3449), - [anon_sym_LPAREN2] = ACTIONS(1096), - [anon_sym_STAR] = ACTIONS(1436), - [anon_sym_LBRACK] = ACTIONS(1100), - [anon_sym_EQ] = ACTIONS(1438), - [anon_sym_QMARK] = ACTIONS(1440), - [anon_sym_STAR_EQ] = ACTIONS(1442), - [anon_sym_SLASH_EQ] = ACTIONS(1442), - [anon_sym_PERCENT_EQ] = ACTIONS(1442), - [anon_sym_PLUS_EQ] = ACTIONS(1442), - [anon_sym_DASH_EQ] = ACTIONS(1442), - [anon_sym_LT_LT_EQ] = ACTIONS(1442), - [anon_sym_GT_GT_EQ] = ACTIONS(1442), - [anon_sym_AMP_EQ] = ACTIONS(1442), - [anon_sym_CARET_EQ] = ACTIONS(1442), - [anon_sym_PIPE_EQ] = ACTIONS(1442), - [anon_sym_AMP] = ACTIONS(1444), - [anon_sym_PIPE_PIPE] = ACTIONS(1446), - [anon_sym_AMP_AMP] = ACTIONS(1448), - [anon_sym_PIPE] = ACTIONS(1450), - [anon_sym_CARET] = ACTIONS(1452), - [anon_sym_EQ_EQ] = ACTIONS(1454), - [anon_sym_BANG_EQ] = ACTIONS(1454), - [anon_sym_LT] = ACTIONS(1456), - [anon_sym_GT] = ACTIONS(1456), - [anon_sym_LT_EQ] = ACTIONS(1458), - [anon_sym_GT_EQ] = ACTIONS(1458), - [anon_sym_LT_LT] = ACTIONS(1460), - [anon_sym_GT_GT] = ACTIONS(1460), - [anon_sym_PLUS] = ACTIONS(1462), - [anon_sym_DASH] = ACTIONS(1462), - [anon_sym_SLASH] = ACTIONS(1436), - [anon_sym_PERCENT] = ACTIONS(1436), - [anon_sym_DASH_DASH] = ACTIONS(1128), - [anon_sym_PLUS_PLUS] = ACTIONS(1128), - [anon_sym_DOT] = ACTIONS(1130), - [anon_sym_DASH_GT] = ACTIONS(1130), + [anon_sym_SEMI] = ACTIONS(3438), + [anon_sym_LPAREN2] = ACTIONS(1089), + [anon_sym_STAR] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(1429), + [anon_sym_QMARK] = ACTIONS(1431), + [anon_sym_STAR_EQ] = ACTIONS(1433), + [anon_sym_SLASH_EQ] = ACTIONS(1433), + [anon_sym_PERCENT_EQ] = ACTIONS(1433), + [anon_sym_PLUS_EQ] = ACTIONS(1433), + [anon_sym_DASH_EQ] = ACTIONS(1433), + [anon_sym_LT_LT_EQ] = ACTIONS(1433), + [anon_sym_GT_GT_EQ] = ACTIONS(1433), + [anon_sym_AMP_EQ] = ACTIONS(1433), + [anon_sym_CARET_EQ] = ACTIONS(1433), + [anon_sym_PIPE_EQ] = ACTIONS(1433), + [anon_sym_AMP] = ACTIONS(1435), + [anon_sym_PIPE_PIPE] = ACTIONS(1437), + [anon_sym_AMP_AMP] = ACTIONS(1439), + [anon_sym_PIPE] = ACTIONS(1441), + [anon_sym_CARET] = ACTIONS(1443), + [anon_sym_EQ_EQ] = ACTIONS(1445), + [anon_sym_BANG_EQ] = ACTIONS(1445), + [anon_sym_LT] = ACTIONS(1447), + [anon_sym_GT] = ACTIONS(1447), + [anon_sym_LT_EQ] = ACTIONS(1449), + [anon_sym_GT_EQ] = ACTIONS(1449), + [anon_sym_LT_LT] = ACTIONS(1451), + [anon_sym_GT_GT] = ACTIONS(1451), + [anon_sym_PLUS] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1453), + [anon_sym_SLASH] = ACTIONS(1427), + [anon_sym_PERCENT] = ACTIONS(1427), + [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_PLUS_PLUS] = ACTIONS(1121), + [anon_sym_DOT] = ACTIONS(1123), + [anon_sym_DASH_GT] = ACTIONS(1123), [sym_comment] = ACTIONS(39), }, [1220] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3224), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3224), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3224), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3224), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3224), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3224), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(3224), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(3224), - [sym_preproc_directive] = ACTIONS(3224), - [anon_sym_SEMI] = ACTIONS(3226), - [anon_sym_typedef] = ACTIONS(3224), - [anon_sym_extern] = ACTIONS(3224), - [anon_sym_LBRACE] = ACTIONS(3226), - [anon_sym_LPAREN2] = ACTIONS(3226), - [anon_sym_STAR] = ACTIONS(3226), - [anon_sym_static] = ACTIONS(3224), - [anon_sym_auto] = ACTIONS(3224), - [anon_sym_register] = ACTIONS(3224), - [anon_sym_inline] = ACTIONS(3224), - [anon_sym_const] = ACTIONS(3224), - [anon_sym_restrict] = ACTIONS(3224), - [anon_sym_volatile] = ACTIONS(3224), - [anon_sym__Atomic] = ACTIONS(3224), - [anon_sym_unsigned] = ACTIONS(3224), - [anon_sym_long] = ACTIONS(3224), - [anon_sym_short] = ACTIONS(3224), - [sym_primitive_type] = ACTIONS(3224), - [anon_sym_enum] = ACTIONS(3224), - [anon_sym_struct] = ACTIONS(3224), - [anon_sym_union] = ACTIONS(3224), - [anon_sym_if] = ACTIONS(3224), - [anon_sym_else] = ACTIONS(3224), - [anon_sym_switch] = ACTIONS(3224), - [anon_sym_case] = ACTIONS(3224), - [anon_sym_default] = ACTIONS(3224), - [anon_sym_while] = ACTIONS(3224), - [anon_sym_do] = ACTIONS(3224), - [anon_sym_for] = ACTIONS(3224), - [anon_sym_return] = ACTIONS(3224), - [anon_sym_break] = ACTIONS(3224), - [anon_sym_continue] = ACTIONS(3224), - [anon_sym_goto] = ACTIONS(3224), - [anon_sym_AMP] = ACTIONS(3226), - [anon_sym_BANG] = ACTIONS(3226), - [anon_sym_TILDE] = ACTIONS(3226), - [anon_sym_PLUS] = ACTIONS(3224), - [anon_sym_DASH] = ACTIONS(3224), - [anon_sym_DASH_DASH] = ACTIONS(3226), - [anon_sym_PLUS_PLUS] = ACTIONS(3226), - [anon_sym_sizeof] = ACTIONS(3224), - [sym_number_literal] = ACTIONS(3226), - [anon_sym_SQUOTE] = ACTIONS(3226), - [anon_sym_DQUOTE] = ACTIONS(3226), - [sym_true] = ACTIONS(3224), - [sym_false] = ACTIONS(3224), - [sym_null] = ACTIONS(3224), - [sym_identifier] = ACTIONS(3224), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3213), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3213), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3213), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3213), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3213), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3213), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(3213), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(3213), + [sym_preproc_directive] = ACTIONS(3213), + [anon_sym_SEMI] = ACTIONS(3215), + [anon_sym_typedef] = ACTIONS(3213), + [anon_sym_extern] = ACTIONS(3213), + [anon_sym_LBRACE] = ACTIONS(3215), + [anon_sym_LPAREN2] = ACTIONS(3215), + [anon_sym_STAR] = ACTIONS(3215), + [anon_sym_static] = ACTIONS(3213), + [anon_sym_auto] = ACTIONS(3213), + [anon_sym_register] = ACTIONS(3213), + [anon_sym_inline] = ACTIONS(3213), + [anon_sym_const] = ACTIONS(3213), + [anon_sym_restrict] = ACTIONS(3213), + [anon_sym_volatile] = ACTIONS(3213), + [anon_sym__Atomic] = ACTIONS(3213), + [anon_sym_unsigned] = ACTIONS(3213), + [anon_sym_long] = ACTIONS(3213), + [anon_sym_short] = ACTIONS(3213), + [sym_primitive_type] = ACTIONS(3213), + [anon_sym_enum] = ACTIONS(3213), + [anon_sym_struct] = ACTIONS(3213), + [anon_sym_union] = ACTIONS(3213), + [anon_sym_if] = ACTIONS(3213), + [anon_sym_else] = ACTIONS(3213), + [anon_sym_switch] = ACTIONS(3213), + [anon_sym_case] = ACTIONS(3213), + [anon_sym_default] = ACTIONS(3213), + [anon_sym_while] = ACTIONS(3213), + [anon_sym_do] = ACTIONS(3213), + [anon_sym_for] = ACTIONS(3213), + [anon_sym_return] = ACTIONS(3213), + [anon_sym_break] = ACTIONS(3213), + [anon_sym_continue] = ACTIONS(3213), + [anon_sym_goto] = ACTIONS(3213), + [anon_sym_AMP] = ACTIONS(3215), + [anon_sym_BANG] = ACTIONS(3215), + [anon_sym_TILDE] = ACTIONS(3215), + [anon_sym_PLUS] = ACTIONS(3213), + [anon_sym_DASH] = ACTIONS(3213), + [anon_sym_DASH_DASH] = ACTIONS(3215), + [anon_sym_PLUS_PLUS] = ACTIONS(3215), + [anon_sym_sizeof] = ACTIONS(3213), + [sym_number_literal] = ACTIONS(3215), + [anon_sym_SQUOTE] = ACTIONS(3215), + [anon_sym_DQUOTE] = ACTIONS(3215), + [sym_true] = ACTIONS(3213), + [sym_false] = ACTIONS(3213), + [sym_null] = ACTIONS(3213), + [sym_identifier] = ACTIONS(3213), [sym_comment] = ACTIONS(39), }, [1221] = { [sym_argument_list] = STATE(465), - [anon_sym_COMMA] = ACTIONS(1556), - [anon_sym_RPAREN] = ACTIONS(3451), - [anon_sym_LPAREN2] = ACTIONS(1096), - [anon_sym_STAR] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1100), - [anon_sym_EQ] = ACTIONS(1562), - [anon_sym_QMARK] = ACTIONS(1564), - [anon_sym_STAR_EQ] = ACTIONS(1566), - [anon_sym_SLASH_EQ] = ACTIONS(1566), - [anon_sym_PERCENT_EQ] = ACTIONS(1566), - [anon_sym_PLUS_EQ] = ACTIONS(1566), - [anon_sym_DASH_EQ] = ACTIONS(1566), - [anon_sym_LT_LT_EQ] = ACTIONS(1566), - [anon_sym_GT_GT_EQ] = ACTIONS(1566), - [anon_sym_AMP_EQ] = ACTIONS(1566), - [anon_sym_CARET_EQ] = ACTIONS(1566), - [anon_sym_PIPE_EQ] = ACTIONS(1566), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_PIPE_PIPE] = ACTIONS(1570), - [anon_sym_AMP_AMP] = ACTIONS(1572), - [anon_sym_PIPE] = ACTIONS(1574), - [anon_sym_CARET] = ACTIONS(1576), - [anon_sym_EQ_EQ] = ACTIONS(1578), - [anon_sym_BANG_EQ] = ACTIONS(1578), - [anon_sym_LT] = ACTIONS(1580), - [anon_sym_GT] = ACTIONS(1580), - [anon_sym_LT_EQ] = ACTIONS(1582), - [anon_sym_GT_EQ] = ACTIONS(1582), - [anon_sym_LT_LT] = ACTIONS(1584), - [anon_sym_GT_GT] = ACTIONS(1584), - [anon_sym_PLUS] = ACTIONS(1586), - [anon_sym_DASH] = ACTIONS(1586), - [anon_sym_SLASH] = ACTIONS(1560), - [anon_sym_PERCENT] = ACTIONS(1560), - [anon_sym_DASH_DASH] = ACTIONS(1128), - [anon_sym_PLUS_PLUS] = ACTIONS(1128), - [anon_sym_DOT] = ACTIONS(1130), - [anon_sym_DASH_GT] = ACTIONS(1130), + [anon_sym_COMMA] = ACTIONS(1545), + [anon_sym_RPAREN] = ACTIONS(3440), + [anon_sym_LPAREN2] = ACTIONS(1089), + [anon_sym_STAR] = ACTIONS(1549), + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(1551), + [anon_sym_QMARK] = ACTIONS(1553), + [anon_sym_STAR_EQ] = ACTIONS(1555), + [anon_sym_SLASH_EQ] = ACTIONS(1555), + [anon_sym_PERCENT_EQ] = ACTIONS(1555), + [anon_sym_PLUS_EQ] = ACTIONS(1555), + [anon_sym_DASH_EQ] = ACTIONS(1555), + [anon_sym_LT_LT_EQ] = ACTIONS(1555), + [anon_sym_GT_GT_EQ] = ACTIONS(1555), + [anon_sym_AMP_EQ] = ACTIONS(1555), + [anon_sym_CARET_EQ] = ACTIONS(1555), + [anon_sym_PIPE_EQ] = ACTIONS(1555), + [anon_sym_AMP] = ACTIONS(1557), + [anon_sym_PIPE_PIPE] = ACTIONS(1559), + [anon_sym_AMP_AMP] = ACTIONS(1561), + [anon_sym_PIPE] = ACTIONS(1563), + [anon_sym_CARET] = ACTIONS(1565), + [anon_sym_EQ_EQ] = ACTIONS(1567), + [anon_sym_BANG_EQ] = ACTIONS(1567), + [anon_sym_LT] = ACTIONS(1569), + [anon_sym_GT] = ACTIONS(1569), + [anon_sym_LT_EQ] = ACTIONS(1571), + [anon_sym_GT_EQ] = ACTIONS(1571), + [anon_sym_LT_LT] = ACTIONS(1573), + [anon_sym_GT_GT] = ACTIONS(1573), + [anon_sym_PLUS] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(1575), + [anon_sym_SLASH] = ACTIONS(1549), + [anon_sym_PERCENT] = ACTIONS(1549), + [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_PLUS_PLUS] = ACTIONS(1121), + [anon_sym_DOT] = ACTIONS(1123), + [anon_sym_DASH_GT] = ACTIONS(1123), [sym_comment] = ACTIONS(39), }, [1222] = { - [anon_sym_RPAREN] = ACTIONS(3451), + [anon_sym_RPAREN] = ACTIONS(3440), [sym_comment] = ACTIONS(39), }, [1223] = { @@ -49232,79 +49251,79 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(649), [sym_concatenated_string] = STATE(649), [sym_string_literal] = STATE(253), - [anon_sym_SEMI] = ACTIONS(1516), - [anon_sym_LBRACE] = ACTIONS(734), - [anon_sym_LPAREN2] = ACTIONS(554), - [anon_sym_STAR] = ACTIONS(556), - [anon_sym_if] = ACTIONS(1518), - [anon_sym_switch] = ACTIONS(1520), - [anon_sym_case] = ACTIONS(1522), - [anon_sym_default] = ACTIONS(1524), - [anon_sym_while] = ACTIONS(1526), - [anon_sym_do] = ACTIONS(1528), - [anon_sym_for] = ACTIONS(1530), - [anon_sym_return] = ACTIONS(1532), - [anon_sym_break] = ACTIONS(1534), - [anon_sym_continue] = ACTIONS(1536), - [anon_sym_goto] = ACTIONS(1538), - [anon_sym_AMP] = ACTIONS(556), - [anon_sym_BANG] = ACTIONS(580), - [anon_sym_TILDE] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_DASH_DASH] = ACTIONS(586), - [anon_sym_PLUS_PLUS] = ACTIONS(586), - [anon_sym_sizeof] = ACTIONS(588), - [sym_number_literal] = ACTIONS(1540), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1542), - [sym_false] = ACTIONS(1542), - [sym_null] = ACTIONS(1542), - [sym_identifier] = ACTIONS(2747), + [anon_sym_SEMI] = ACTIONS(1505), + [anon_sym_LBRACE] = ACTIONS(725), + [anon_sym_LPAREN2] = ACTIONS(550), + [anon_sym_STAR] = ACTIONS(552), + [anon_sym_if] = ACTIONS(1507), + [anon_sym_switch] = ACTIONS(1509), + [anon_sym_case] = ACTIONS(1511), + [anon_sym_default] = ACTIONS(1513), + [anon_sym_while] = ACTIONS(1515), + [anon_sym_do] = ACTIONS(1517), + [anon_sym_for] = ACTIONS(1519), + [anon_sym_return] = ACTIONS(1521), + [anon_sym_break] = ACTIONS(1523), + [anon_sym_continue] = ACTIONS(1525), + [anon_sym_goto] = ACTIONS(1527), + [anon_sym_AMP] = ACTIONS(552), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_TILDE] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(580), + [anon_sym_DASH] = ACTIONS(580), + [anon_sym_DASH_DASH] = ACTIONS(582), + [anon_sym_PLUS_PLUS] = ACTIONS(582), + [anon_sym_sizeof] = ACTIONS(584), + [sym_number_literal] = ACTIONS(1529), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_null] = ACTIONS(1531), + [sym_identifier] = ACTIONS(2736), [sym_comment] = ACTIONS(39), }, [1224] = { [sym_argument_list] = STATE(465), [aux_sym_for_statement_repeat1] = STATE(1268), - [anon_sym_COMMA] = ACTIONS(2530), - [anon_sym_RPAREN] = ACTIONS(3453), - [anon_sym_LPAREN2] = ACTIONS(1096), - [anon_sym_STAR] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1100), - [anon_sym_EQ] = ACTIONS(1562), - [anon_sym_QMARK] = ACTIONS(1564), - [anon_sym_STAR_EQ] = ACTIONS(1566), - [anon_sym_SLASH_EQ] = ACTIONS(1566), - [anon_sym_PERCENT_EQ] = ACTIONS(1566), - [anon_sym_PLUS_EQ] = ACTIONS(1566), - [anon_sym_DASH_EQ] = ACTIONS(1566), - [anon_sym_LT_LT_EQ] = ACTIONS(1566), - [anon_sym_GT_GT_EQ] = ACTIONS(1566), - [anon_sym_AMP_EQ] = ACTIONS(1566), - [anon_sym_CARET_EQ] = ACTIONS(1566), - [anon_sym_PIPE_EQ] = ACTIONS(1566), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_PIPE_PIPE] = ACTIONS(1570), - [anon_sym_AMP_AMP] = ACTIONS(1572), - [anon_sym_PIPE] = ACTIONS(1574), - [anon_sym_CARET] = ACTIONS(1576), - [anon_sym_EQ_EQ] = ACTIONS(1578), - [anon_sym_BANG_EQ] = ACTIONS(1578), - [anon_sym_LT] = ACTIONS(1580), - [anon_sym_GT] = ACTIONS(1580), - [anon_sym_LT_EQ] = ACTIONS(1582), - [anon_sym_GT_EQ] = ACTIONS(1582), - [anon_sym_LT_LT] = ACTIONS(1584), - [anon_sym_GT_GT] = ACTIONS(1584), - [anon_sym_PLUS] = ACTIONS(1586), - [anon_sym_DASH] = ACTIONS(1586), - [anon_sym_SLASH] = ACTIONS(1560), - [anon_sym_PERCENT] = ACTIONS(1560), - [anon_sym_DASH_DASH] = ACTIONS(1128), - [anon_sym_PLUS_PLUS] = ACTIONS(1128), - [anon_sym_DOT] = ACTIONS(1130), - [anon_sym_DASH_GT] = ACTIONS(1130), + [anon_sym_COMMA] = ACTIONS(2519), + [anon_sym_RPAREN] = ACTIONS(3442), + [anon_sym_LPAREN2] = ACTIONS(1089), + [anon_sym_STAR] = ACTIONS(1549), + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(1551), + [anon_sym_QMARK] = ACTIONS(1553), + [anon_sym_STAR_EQ] = ACTIONS(1555), + [anon_sym_SLASH_EQ] = ACTIONS(1555), + [anon_sym_PERCENT_EQ] = ACTIONS(1555), + [anon_sym_PLUS_EQ] = ACTIONS(1555), + [anon_sym_DASH_EQ] = ACTIONS(1555), + [anon_sym_LT_LT_EQ] = ACTIONS(1555), + [anon_sym_GT_GT_EQ] = ACTIONS(1555), + [anon_sym_AMP_EQ] = ACTIONS(1555), + [anon_sym_CARET_EQ] = ACTIONS(1555), + [anon_sym_PIPE_EQ] = ACTIONS(1555), + [anon_sym_AMP] = ACTIONS(1557), + [anon_sym_PIPE_PIPE] = ACTIONS(1559), + [anon_sym_AMP_AMP] = ACTIONS(1561), + [anon_sym_PIPE] = ACTIONS(1563), + [anon_sym_CARET] = ACTIONS(1565), + [anon_sym_EQ_EQ] = ACTIONS(1567), + [anon_sym_BANG_EQ] = ACTIONS(1567), + [anon_sym_LT] = ACTIONS(1569), + [anon_sym_GT] = ACTIONS(1569), + [anon_sym_LT_EQ] = ACTIONS(1571), + [anon_sym_GT_EQ] = ACTIONS(1571), + [anon_sym_LT_LT] = ACTIONS(1573), + [anon_sym_GT_GT] = ACTIONS(1573), + [anon_sym_PLUS] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(1575), + [anon_sym_SLASH] = ACTIONS(1549), + [anon_sym_PERCENT] = ACTIONS(1549), + [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_PLUS_PLUS] = ACTIONS(1121), + [anon_sym_DOT] = ACTIONS(1123), + [anon_sym_DASH_GT] = ACTIONS(1123), [sym_comment] = ACTIONS(39), }, [1225] = { @@ -49328,65 +49347,65 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(1269), [sym_concatenated_string] = STATE(1269), [sym_string_literal] = STATE(409), - [anon_sym_RPAREN] = ACTIONS(3453), - [anon_sym_LPAREN2] = ACTIONS(970), - [anon_sym_STAR] = ACTIONS(972), - [anon_sym_AMP] = ACTIONS(972), - [anon_sym_BANG] = ACTIONS(974), - [anon_sym_TILDE] = ACTIONS(976), - [anon_sym_PLUS] = ACTIONS(978), - [anon_sym_DASH] = ACTIONS(978), - [anon_sym_DASH_DASH] = ACTIONS(980), - [anon_sym_PLUS_PLUS] = ACTIONS(980), - [anon_sym_sizeof] = ACTIONS(982), - [sym_number_literal] = ACTIONS(3455), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(3457), - [sym_false] = ACTIONS(3457), - [sym_null] = ACTIONS(3457), - [sym_identifier] = ACTIONS(3457), + [anon_sym_RPAREN] = ACTIONS(3442), + [anon_sym_LPAREN2] = ACTIONS(961), + [anon_sym_STAR] = ACTIONS(963), + [anon_sym_AMP] = ACTIONS(963), + [anon_sym_BANG] = ACTIONS(965), + [anon_sym_TILDE] = ACTIONS(967), + [anon_sym_PLUS] = ACTIONS(969), + [anon_sym_DASH] = ACTIONS(969), + [anon_sym_DASH_DASH] = ACTIONS(971), + [anon_sym_PLUS_PLUS] = ACTIONS(971), + [anon_sym_sizeof] = ACTIONS(973), + [sym_number_literal] = ACTIONS(3444), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(3446), + [sym_false] = ACTIONS(3446), + [sym_null] = ACTIONS(3446), + [sym_identifier] = ACTIONS(3446), [sym_comment] = ACTIONS(39), }, [1226] = { [sym_argument_list] = STATE(465), - [anon_sym_SEMI] = ACTIONS(3459), - [anon_sym_LPAREN2] = ACTIONS(1096), - [anon_sym_STAR] = ACTIONS(1436), - [anon_sym_LBRACK] = ACTIONS(1100), - [anon_sym_EQ] = ACTIONS(1438), - [anon_sym_QMARK] = ACTIONS(1440), - [anon_sym_STAR_EQ] = ACTIONS(1442), - [anon_sym_SLASH_EQ] = ACTIONS(1442), - [anon_sym_PERCENT_EQ] = ACTIONS(1442), - [anon_sym_PLUS_EQ] = ACTIONS(1442), - [anon_sym_DASH_EQ] = ACTIONS(1442), - [anon_sym_LT_LT_EQ] = ACTIONS(1442), - [anon_sym_GT_GT_EQ] = ACTIONS(1442), - [anon_sym_AMP_EQ] = ACTIONS(1442), - [anon_sym_CARET_EQ] = ACTIONS(1442), - [anon_sym_PIPE_EQ] = ACTIONS(1442), - [anon_sym_AMP] = ACTIONS(1444), - [anon_sym_PIPE_PIPE] = ACTIONS(1446), - [anon_sym_AMP_AMP] = ACTIONS(1448), - [anon_sym_PIPE] = ACTIONS(1450), - [anon_sym_CARET] = ACTIONS(1452), - [anon_sym_EQ_EQ] = ACTIONS(1454), - [anon_sym_BANG_EQ] = ACTIONS(1454), - [anon_sym_LT] = ACTIONS(1456), - [anon_sym_GT] = ACTIONS(1456), - [anon_sym_LT_EQ] = ACTIONS(1458), - [anon_sym_GT_EQ] = ACTIONS(1458), - [anon_sym_LT_LT] = ACTIONS(1460), - [anon_sym_GT_GT] = ACTIONS(1460), - [anon_sym_PLUS] = ACTIONS(1462), - [anon_sym_DASH] = ACTIONS(1462), - [anon_sym_SLASH] = ACTIONS(1436), - [anon_sym_PERCENT] = ACTIONS(1436), - [anon_sym_DASH_DASH] = ACTIONS(1128), - [anon_sym_PLUS_PLUS] = ACTIONS(1128), - [anon_sym_DOT] = ACTIONS(1130), - [anon_sym_DASH_GT] = ACTIONS(1130), + [anon_sym_SEMI] = ACTIONS(3448), + [anon_sym_LPAREN2] = ACTIONS(1089), + [anon_sym_STAR] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(1429), + [anon_sym_QMARK] = ACTIONS(1431), + [anon_sym_STAR_EQ] = ACTIONS(1433), + [anon_sym_SLASH_EQ] = ACTIONS(1433), + [anon_sym_PERCENT_EQ] = ACTIONS(1433), + [anon_sym_PLUS_EQ] = ACTIONS(1433), + [anon_sym_DASH_EQ] = ACTIONS(1433), + [anon_sym_LT_LT_EQ] = ACTIONS(1433), + [anon_sym_GT_GT_EQ] = ACTIONS(1433), + [anon_sym_AMP_EQ] = ACTIONS(1433), + [anon_sym_CARET_EQ] = ACTIONS(1433), + [anon_sym_PIPE_EQ] = ACTIONS(1433), + [anon_sym_AMP] = ACTIONS(1435), + [anon_sym_PIPE_PIPE] = ACTIONS(1437), + [anon_sym_AMP_AMP] = ACTIONS(1439), + [anon_sym_PIPE] = ACTIONS(1441), + [anon_sym_CARET] = ACTIONS(1443), + [anon_sym_EQ_EQ] = ACTIONS(1445), + [anon_sym_BANG_EQ] = ACTIONS(1445), + [anon_sym_LT] = ACTIONS(1447), + [anon_sym_GT] = ACTIONS(1447), + [anon_sym_LT_EQ] = ACTIONS(1449), + [anon_sym_GT_EQ] = ACTIONS(1449), + [anon_sym_LT_LT] = ACTIONS(1451), + [anon_sym_GT_GT] = ACTIONS(1451), + [anon_sym_PLUS] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1453), + [anon_sym_SLASH] = ACTIONS(1427), + [anon_sym_PERCENT] = ACTIONS(1427), + [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_PLUS_PLUS] = ACTIONS(1121), + [anon_sym_DOT] = ACTIONS(1123), + [anon_sym_DASH_GT] = ACTIONS(1123), [sym_comment] = ACTIONS(39), }, [1227] = { @@ -49424,79 +49443,79 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(251), [sym_concatenated_string] = STATE(251), [sym_string_literal] = STATE(253), - [anon_sym_SEMI] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(241), - [anon_sym_LPAREN2] = ACTIONS(554), - [anon_sym_STAR] = ACTIONS(556), - [anon_sym_if] = ACTIONS(1598), - [anon_sym_switch] = ACTIONS(1600), - [anon_sym_case] = ACTIONS(1602), - [anon_sym_default] = ACTIONS(1604), - [anon_sym_while] = ACTIONS(1606), - [anon_sym_do] = ACTIONS(568), - [anon_sym_for] = ACTIONS(1608), - [anon_sym_return] = ACTIONS(572), - [anon_sym_break] = ACTIONS(574), - [anon_sym_continue] = ACTIONS(576), - [anon_sym_goto] = ACTIONS(578), - [anon_sym_AMP] = ACTIONS(556), - [anon_sym_BANG] = ACTIONS(580), - [anon_sym_TILDE] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_DASH_DASH] = ACTIONS(586), - [anon_sym_PLUS_PLUS] = ACTIONS(586), - [anon_sym_sizeof] = ACTIONS(588), - [sym_number_literal] = ACTIONS(590), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(594), - [sym_false] = ACTIONS(594), - [sym_null] = ACTIONS(594), - [sym_identifier] = ACTIONS(1610), + [anon_sym_SEMI] = ACTIONS(546), + [anon_sym_LBRACE] = ACTIONS(239), + [anon_sym_LPAREN2] = ACTIONS(550), + [anon_sym_STAR] = ACTIONS(552), + [anon_sym_if] = ACTIONS(1587), + [anon_sym_switch] = ACTIONS(1589), + [anon_sym_case] = ACTIONS(1591), + [anon_sym_default] = ACTIONS(1593), + [anon_sym_while] = ACTIONS(1595), + [anon_sym_do] = ACTIONS(564), + [anon_sym_for] = ACTIONS(1597), + [anon_sym_return] = ACTIONS(568), + [anon_sym_break] = ACTIONS(570), + [anon_sym_continue] = ACTIONS(572), + [anon_sym_goto] = ACTIONS(574), + [anon_sym_AMP] = ACTIONS(552), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_TILDE] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(580), + [anon_sym_DASH] = ACTIONS(580), + [anon_sym_DASH_DASH] = ACTIONS(582), + [anon_sym_PLUS_PLUS] = ACTIONS(582), + [anon_sym_sizeof] = ACTIONS(584), + [sym_number_literal] = ACTIONS(586), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(590), + [sym_false] = ACTIONS(590), + [sym_null] = ACTIONS(590), + [sym_identifier] = ACTIONS(1599), [sym_comment] = ACTIONS(39), }, [1228] = { [sym_argument_list] = STATE(465), [aux_sym_for_statement_repeat1] = STATE(1272), - [anon_sym_COMMA] = ACTIONS(2530), - [anon_sym_RPAREN] = ACTIONS(3461), - [anon_sym_LPAREN2] = ACTIONS(1096), - [anon_sym_STAR] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1100), - [anon_sym_EQ] = ACTIONS(1562), - [anon_sym_QMARK] = ACTIONS(1564), - [anon_sym_STAR_EQ] = ACTIONS(1566), - [anon_sym_SLASH_EQ] = ACTIONS(1566), - [anon_sym_PERCENT_EQ] = ACTIONS(1566), - [anon_sym_PLUS_EQ] = ACTIONS(1566), - [anon_sym_DASH_EQ] = ACTIONS(1566), - [anon_sym_LT_LT_EQ] = ACTIONS(1566), - [anon_sym_GT_GT_EQ] = ACTIONS(1566), - [anon_sym_AMP_EQ] = ACTIONS(1566), - [anon_sym_CARET_EQ] = ACTIONS(1566), - [anon_sym_PIPE_EQ] = ACTIONS(1566), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_PIPE_PIPE] = ACTIONS(1570), - [anon_sym_AMP_AMP] = ACTIONS(1572), - [anon_sym_PIPE] = ACTIONS(1574), - [anon_sym_CARET] = ACTIONS(1576), - [anon_sym_EQ_EQ] = ACTIONS(1578), - [anon_sym_BANG_EQ] = ACTIONS(1578), - [anon_sym_LT] = ACTIONS(1580), - [anon_sym_GT] = ACTIONS(1580), - [anon_sym_LT_EQ] = ACTIONS(1582), - [anon_sym_GT_EQ] = ACTIONS(1582), - [anon_sym_LT_LT] = ACTIONS(1584), - [anon_sym_GT_GT] = ACTIONS(1584), - [anon_sym_PLUS] = ACTIONS(1586), - [anon_sym_DASH] = ACTIONS(1586), - [anon_sym_SLASH] = ACTIONS(1560), - [anon_sym_PERCENT] = ACTIONS(1560), - [anon_sym_DASH_DASH] = ACTIONS(1128), - [anon_sym_PLUS_PLUS] = ACTIONS(1128), - [anon_sym_DOT] = ACTIONS(1130), - [anon_sym_DASH_GT] = ACTIONS(1130), + [anon_sym_COMMA] = ACTIONS(2519), + [anon_sym_RPAREN] = ACTIONS(3450), + [anon_sym_LPAREN2] = ACTIONS(1089), + [anon_sym_STAR] = ACTIONS(1549), + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(1551), + [anon_sym_QMARK] = ACTIONS(1553), + [anon_sym_STAR_EQ] = ACTIONS(1555), + [anon_sym_SLASH_EQ] = ACTIONS(1555), + [anon_sym_PERCENT_EQ] = ACTIONS(1555), + [anon_sym_PLUS_EQ] = ACTIONS(1555), + [anon_sym_DASH_EQ] = ACTIONS(1555), + [anon_sym_LT_LT_EQ] = ACTIONS(1555), + [anon_sym_GT_GT_EQ] = ACTIONS(1555), + [anon_sym_AMP_EQ] = ACTIONS(1555), + [anon_sym_CARET_EQ] = ACTIONS(1555), + [anon_sym_PIPE_EQ] = ACTIONS(1555), + [anon_sym_AMP] = ACTIONS(1557), + [anon_sym_PIPE_PIPE] = ACTIONS(1559), + [anon_sym_AMP_AMP] = ACTIONS(1561), + [anon_sym_PIPE] = ACTIONS(1563), + [anon_sym_CARET] = ACTIONS(1565), + [anon_sym_EQ_EQ] = ACTIONS(1567), + [anon_sym_BANG_EQ] = ACTIONS(1567), + [anon_sym_LT] = ACTIONS(1569), + [anon_sym_GT] = ACTIONS(1569), + [anon_sym_LT_EQ] = ACTIONS(1571), + [anon_sym_GT_EQ] = ACTIONS(1571), + [anon_sym_LT_LT] = ACTIONS(1573), + [anon_sym_GT_GT] = ACTIONS(1573), + [anon_sym_PLUS] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(1575), + [anon_sym_SLASH] = ACTIONS(1549), + [anon_sym_PERCENT] = ACTIONS(1549), + [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_PLUS_PLUS] = ACTIONS(1121), + [anon_sym_DOT] = ACTIONS(1123), + [anon_sym_DASH_GT] = ACTIONS(1123), [sym_comment] = ACTIONS(39), }, [1229] = { @@ -49520,65 +49539,65 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(1273), [sym_concatenated_string] = STATE(1273), [sym_string_literal] = STATE(409), - [anon_sym_RPAREN] = ACTIONS(3461), - [anon_sym_LPAREN2] = ACTIONS(970), - [anon_sym_STAR] = ACTIONS(972), - [anon_sym_AMP] = ACTIONS(972), - [anon_sym_BANG] = ACTIONS(974), - [anon_sym_TILDE] = ACTIONS(976), - [anon_sym_PLUS] = ACTIONS(978), - [anon_sym_DASH] = ACTIONS(978), - [anon_sym_DASH_DASH] = ACTIONS(980), - [anon_sym_PLUS_PLUS] = ACTIONS(980), - [anon_sym_sizeof] = ACTIONS(982), - [sym_number_literal] = ACTIONS(3463), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(3465), - [sym_false] = ACTIONS(3465), - [sym_null] = ACTIONS(3465), - [sym_identifier] = ACTIONS(3465), + [anon_sym_RPAREN] = ACTIONS(3450), + [anon_sym_LPAREN2] = ACTIONS(961), + [anon_sym_STAR] = ACTIONS(963), + [anon_sym_AMP] = ACTIONS(963), + [anon_sym_BANG] = ACTIONS(965), + [anon_sym_TILDE] = ACTIONS(967), + [anon_sym_PLUS] = ACTIONS(969), + [anon_sym_DASH] = ACTIONS(969), + [anon_sym_DASH_DASH] = ACTIONS(971), + [anon_sym_PLUS_PLUS] = ACTIONS(971), + [anon_sym_sizeof] = ACTIONS(973), + [sym_number_literal] = ACTIONS(3452), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(3454), + [sym_false] = ACTIONS(3454), + [sym_null] = ACTIONS(3454), + [sym_identifier] = ACTIONS(3454), [sym_comment] = ACTIONS(39), }, [1230] = { [sym_argument_list] = STATE(465), - [anon_sym_SEMI] = ACTIONS(3467), - [anon_sym_LPAREN2] = ACTIONS(1096), - [anon_sym_STAR] = ACTIONS(1436), - [anon_sym_LBRACK] = ACTIONS(1100), - [anon_sym_EQ] = ACTIONS(1438), - [anon_sym_QMARK] = ACTIONS(1440), - [anon_sym_STAR_EQ] = ACTIONS(1442), - [anon_sym_SLASH_EQ] = ACTIONS(1442), - [anon_sym_PERCENT_EQ] = ACTIONS(1442), - [anon_sym_PLUS_EQ] = ACTIONS(1442), - [anon_sym_DASH_EQ] = ACTIONS(1442), - [anon_sym_LT_LT_EQ] = ACTIONS(1442), - [anon_sym_GT_GT_EQ] = ACTIONS(1442), - [anon_sym_AMP_EQ] = ACTIONS(1442), - [anon_sym_CARET_EQ] = ACTIONS(1442), - [anon_sym_PIPE_EQ] = ACTIONS(1442), - [anon_sym_AMP] = ACTIONS(1444), - [anon_sym_PIPE_PIPE] = ACTIONS(1446), - [anon_sym_AMP_AMP] = ACTIONS(1448), - [anon_sym_PIPE] = ACTIONS(1450), - [anon_sym_CARET] = ACTIONS(1452), - [anon_sym_EQ_EQ] = ACTIONS(1454), - [anon_sym_BANG_EQ] = ACTIONS(1454), - [anon_sym_LT] = ACTIONS(1456), - [anon_sym_GT] = ACTIONS(1456), - [anon_sym_LT_EQ] = ACTIONS(1458), - [anon_sym_GT_EQ] = ACTIONS(1458), - [anon_sym_LT_LT] = ACTIONS(1460), - [anon_sym_GT_GT] = ACTIONS(1460), - [anon_sym_PLUS] = ACTIONS(1462), - [anon_sym_DASH] = ACTIONS(1462), - [anon_sym_SLASH] = ACTIONS(1436), - [anon_sym_PERCENT] = ACTIONS(1436), - [anon_sym_DASH_DASH] = ACTIONS(1128), - [anon_sym_PLUS_PLUS] = ACTIONS(1128), - [anon_sym_DOT] = ACTIONS(1130), - [anon_sym_DASH_GT] = ACTIONS(1130), + [anon_sym_SEMI] = ACTIONS(3456), + [anon_sym_LPAREN2] = ACTIONS(1089), + [anon_sym_STAR] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(1429), + [anon_sym_QMARK] = ACTIONS(1431), + [anon_sym_STAR_EQ] = ACTIONS(1433), + [anon_sym_SLASH_EQ] = ACTIONS(1433), + [anon_sym_PERCENT_EQ] = ACTIONS(1433), + [anon_sym_PLUS_EQ] = ACTIONS(1433), + [anon_sym_DASH_EQ] = ACTIONS(1433), + [anon_sym_LT_LT_EQ] = ACTIONS(1433), + [anon_sym_GT_GT_EQ] = ACTIONS(1433), + [anon_sym_AMP_EQ] = ACTIONS(1433), + [anon_sym_CARET_EQ] = ACTIONS(1433), + [anon_sym_PIPE_EQ] = ACTIONS(1433), + [anon_sym_AMP] = ACTIONS(1435), + [anon_sym_PIPE_PIPE] = ACTIONS(1437), + [anon_sym_AMP_AMP] = ACTIONS(1439), + [anon_sym_PIPE] = ACTIONS(1441), + [anon_sym_CARET] = ACTIONS(1443), + [anon_sym_EQ_EQ] = ACTIONS(1445), + [anon_sym_BANG_EQ] = ACTIONS(1445), + [anon_sym_LT] = ACTIONS(1447), + [anon_sym_GT] = ACTIONS(1447), + [anon_sym_LT_EQ] = ACTIONS(1449), + [anon_sym_GT_EQ] = ACTIONS(1449), + [anon_sym_LT_LT] = ACTIONS(1451), + [anon_sym_GT_GT] = ACTIONS(1451), + [anon_sym_PLUS] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1453), + [anon_sym_SLASH] = ACTIONS(1427), + [anon_sym_PERCENT] = ACTIONS(1427), + [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_PLUS_PLUS] = ACTIONS(1121), + [anon_sym_DOT] = ACTIONS(1123), + [anon_sym_DASH_GT] = ACTIONS(1123), [sym_comment] = ACTIONS(39), }, [1231] = { @@ -49616,36 +49635,36 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(251), [sym_concatenated_string] = STATE(251), [sym_string_literal] = STATE(253), - [anon_sym_SEMI] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(241), - [anon_sym_LPAREN2] = ACTIONS(554), - [anon_sym_STAR] = ACTIONS(556), - [anon_sym_if] = ACTIONS(2472), - [anon_sym_switch] = ACTIONS(2474), - [anon_sym_case] = ACTIONS(2476), - [anon_sym_default] = ACTIONS(2478), - [anon_sym_while] = ACTIONS(2480), - [anon_sym_do] = ACTIONS(1026), - [anon_sym_for] = ACTIONS(2482), - [anon_sym_return] = ACTIONS(572), - [anon_sym_break] = ACTIONS(574), - [anon_sym_continue] = ACTIONS(576), - [anon_sym_goto] = ACTIONS(578), - [anon_sym_AMP] = ACTIONS(556), - [anon_sym_BANG] = ACTIONS(580), - [anon_sym_TILDE] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_DASH_DASH] = ACTIONS(586), - [anon_sym_PLUS_PLUS] = ACTIONS(586), - [anon_sym_sizeof] = ACTIONS(588), - [sym_number_literal] = ACTIONS(590), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(594), - [sym_false] = ACTIONS(594), - [sym_null] = ACTIONS(594), - [sym_identifier] = ACTIONS(2484), + [anon_sym_SEMI] = ACTIONS(546), + [anon_sym_LBRACE] = ACTIONS(239), + [anon_sym_LPAREN2] = ACTIONS(550), + [anon_sym_STAR] = ACTIONS(552), + [anon_sym_if] = ACTIONS(2461), + [anon_sym_switch] = ACTIONS(2463), + [anon_sym_case] = ACTIONS(2465), + [anon_sym_default] = ACTIONS(2467), + [anon_sym_while] = ACTIONS(2469), + [anon_sym_do] = ACTIONS(1017), + [anon_sym_for] = ACTIONS(2471), + [anon_sym_return] = ACTIONS(568), + [anon_sym_break] = ACTIONS(570), + [anon_sym_continue] = ACTIONS(572), + [anon_sym_goto] = ACTIONS(574), + [anon_sym_AMP] = ACTIONS(552), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_TILDE] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(580), + [anon_sym_DASH] = ACTIONS(580), + [anon_sym_DASH_DASH] = ACTIONS(582), + [anon_sym_PLUS_PLUS] = ACTIONS(582), + [anon_sym_sizeof] = ACTIONS(584), + [sym_number_literal] = ACTIONS(586), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(590), + [sym_false] = ACTIONS(590), + [sym_null] = ACTIONS(590), + [sym_identifier] = ACTIONS(2473), [sym_comment] = ACTIONS(39), }, [1232] = { @@ -49669,65 +49688,65 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(1276), [sym_concatenated_string] = STATE(1276), [sym_string_literal] = STATE(409), - [anon_sym_RPAREN] = ACTIONS(3469), - [anon_sym_LPAREN2] = ACTIONS(970), - [anon_sym_STAR] = ACTIONS(972), - [anon_sym_AMP] = ACTIONS(972), - [anon_sym_BANG] = ACTIONS(974), - [anon_sym_TILDE] = ACTIONS(976), - [anon_sym_PLUS] = ACTIONS(978), - [anon_sym_DASH] = ACTIONS(978), - [anon_sym_DASH_DASH] = ACTIONS(980), - [anon_sym_PLUS_PLUS] = ACTIONS(980), - [anon_sym_sizeof] = ACTIONS(982), - [sym_number_literal] = ACTIONS(3471), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(3473), - [sym_false] = ACTIONS(3473), - [sym_null] = ACTIONS(3473), - [sym_identifier] = ACTIONS(3473), + [anon_sym_RPAREN] = ACTIONS(3458), + [anon_sym_LPAREN2] = ACTIONS(961), + [anon_sym_STAR] = ACTIONS(963), + [anon_sym_AMP] = ACTIONS(963), + [anon_sym_BANG] = ACTIONS(965), + [anon_sym_TILDE] = ACTIONS(967), + [anon_sym_PLUS] = ACTIONS(969), + [anon_sym_DASH] = ACTIONS(969), + [anon_sym_DASH_DASH] = ACTIONS(971), + [anon_sym_PLUS_PLUS] = ACTIONS(971), + [anon_sym_sizeof] = ACTIONS(973), + [sym_number_literal] = ACTIONS(3460), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(3462), + [sym_false] = ACTIONS(3462), + [sym_null] = ACTIONS(3462), + [sym_identifier] = ACTIONS(3462), [sym_comment] = ACTIONS(39), }, [1233] = { [sym_argument_list] = STATE(465), - [anon_sym_SEMI] = ACTIONS(3475), - [anon_sym_LPAREN2] = ACTIONS(1096), - [anon_sym_STAR] = ACTIONS(1436), - [anon_sym_LBRACK] = ACTIONS(1100), - [anon_sym_EQ] = ACTIONS(1438), - [anon_sym_QMARK] = ACTIONS(1440), - [anon_sym_STAR_EQ] = ACTIONS(1442), - [anon_sym_SLASH_EQ] = ACTIONS(1442), - [anon_sym_PERCENT_EQ] = ACTIONS(1442), - [anon_sym_PLUS_EQ] = ACTIONS(1442), - [anon_sym_DASH_EQ] = ACTIONS(1442), - [anon_sym_LT_LT_EQ] = ACTIONS(1442), - [anon_sym_GT_GT_EQ] = ACTIONS(1442), - [anon_sym_AMP_EQ] = ACTIONS(1442), - [anon_sym_CARET_EQ] = ACTIONS(1442), - [anon_sym_PIPE_EQ] = ACTIONS(1442), - [anon_sym_AMP] = ACTIONS(1444), - [anon_sym_PIPE_PIPE] = ACTIONS(1446), - [anon_sym_AMP_AMP] = ACTIONS(1448), - [anon_sym_PIPE] = ACTIONS(1450), - [anon_sym_CARET] = ACTIONS(1452), - [anon_sym_EQ_EQ] = ACTIONS(1454), - [anon_sym_BANG_EQ] = ACTIONS(1454), - [anon_sym_LT] = ACTIONS(1456), - [anon_sym_GT] = ACTIONS(1456), - [anon_sym_LT_EQ] = ACTIONS(1458), - [anon_sym_GT_EQ] = ACTIONS(1458), - [anon_sym_LT_LT] = ACTIONS(1460), - [anon_sym_GT_GT] = ACTIONS(1460), - [anon_sym_PLUS] = ACTIONS(1462), - [anon_sym_DASH] = ACTIONS(1462), - [anon_sym_SLASH] = ACTIONS(1436), - [anon_sym_PERCENT] = ACTIONS(1436), - [anon_sym_DASH_DASH] = ACTIONS(1128), - [anon_sym_PLUS_PLUS] = ACTIONS(1128), - [anon_sym_DOT] = ACTIONS(1130), - [anon_sym_DASH_GT] = ACTIONS(1130), + [anon_sym_SEMI] = ACTIONS(3464), + [anon_sym_LPAREN2] = ACTIONS(1089), + [anon_sym_STAR] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(1429), + [anon_sym_QMARK] = ACTIONS(1431), + [anon_sym_STAR_EQ] = ACTIONS(1433), + [anon_sym_SLASH_EQ] = ACTIONS(1433), + [anon_sym_PERCENT_EQ] = ACTIONS(1433), + [anon_sym_PLUS_EQ] = ACTIONS(1433), + [anon_sym_DASH_EQ] = ACTIONS(1433), + [anon_sym_LT_LT_EQ] = ACTIONS(1433), + [anon_sym_GT_GT_EQ] = ACTIONS(1433), + [anon_sym_AMP_EQ] = ACTIONS(1433), + [anon_sym_CARET_EQ] = ACTIONS(1433), + [anon_sym_PIPE_EQ] = ACTIONS(1433), + [anon_sym_AMP] = ACTIONS(1435), + [anon_sym_PIPE_PIPE] = ACTIONS(1437), + [anon_sym_AMP_AMP] = ACTIONS(1439), + [anon_sym_PIPE] = ACTIONS(1441), + [anon_sym_CARET] = ACTIONS(1443), + [anon_sym_EQ_EQ] = ACTIONS(1445), + [anon_sym_BANG_EQ] = ACTIONS(1445), + [anon_sym_LT] = ACTIONS(1447), + [anon_sym_GT] = ACTIONS(1447), + [anon_sym_LT_EQ] = ACTIONS(1449), + [anon_sym_GT_EQ] = ACTIONS(1449), + [anon_sym_LT_LT] = ACTIONS(1451), + [anon_sym_GT_GT] = ACTIONS(1451), + [anon_sym_PLUS] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1453), + [anon_sym_SLASH] = ACTIONS(1427), + [anon_sym_PERCENT] = ACTIONS(1427), + [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_PLUS_PLUS] = ACTIONS(1121), + [anon_sym_DOT] = ACTIONS(1123), + [anon_sym_DASH_GT] = ACTIONS(1123), [sym_comment] = ACTIONS(39), }, [1234] = { @@ -49751,24 +49770,24 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(1278), [sym_concatenated_string] = STATE(1278), [sym_string_literal] = STATE(376), - [anon_sym_SEMI] = ACTIONS(3475), - [anon_sym_LPAREN2] = ACTIONS(847), - [anon_sym_STAR] = ACTIONS(849), - [anon_sym_AMP] = ACTIONS(849), - [anon_sym_BANG] = ACTIONS(851), - [anon_sym_TILDE] = ACTIONS(853), - [anon_sym_PLUS] = ACTIONS(855), - [anon_sym_DASH] = ACTIONS(855), - [anon_sym_DASH_DASH] = ACTIONS(857), - [anon_sym_PLUS_PLUS] = ACTIONS(857), - [anon_sym_sizeof] = ACTIONS(859), - [sym_number_literal] = ACTIONS(3477), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(3479), - [sym_false] = ACTIONS(3479), - [sym_null] = ACTIONS(3479), - [sym_identifier] = ACTIONS(3479), + [anon_sym_SEMI] = ACTIONS(3464), + [anon_sym_LPAREN2] = ACTIONS(838), + [anon_sym_STAR] = ACTIONS(840), + [anon_sym_AMP] = ACTIONS(840), + [anon_sym_BANG] = ACTIONS(842), + [anon_sym_TILDE] = ACTIONS(844), + [anon_sym_PLUS] = ACTIONS(846), + [anon_sym_DASH] = ACTIONS(846), + [anon_sym_DASH_DASH] = ACTIONS(848), + [anon_sym_PLUS_PLUS] = ACTIONS(848), + [anon_sym_sizeof] = ACTIONS(850), + [sym_number_literal] = ACTIONS(3466), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(3468), + [sym_false] = ACTIONS(3468), + [sym_null] = ACTIONS(3468), + [sym_identifier] = ACTIONS(3468), [sym_comment] = ACTIONS(39), }, [1235] = { @@ -49806,85 +49825,85 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(251), [sym_concatenated_string] = STATE(251), [sym_string_literal] = STATE(253), - [anon_sym_SEMI] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(241), - [anon_sym_LPAREN2] = ACTIONS(554), - [anon_sym_STAR] = ACTIONS(556), - [anon_sym_if] = ACTIONS(1016), - [anon_sym_switch] = ACTIONS(1018), - [anon_sym_case] = ACTIONS(1020), - [anon_sym_default] = ACTIONS(1022), - [anon_sym_while] = ACTIONS(1024), - [anon_sym_do] = ACTIONS(1026), - [anon_sym_for] = ACTIONS(1028), - [anon_sym_return] = ACTIONS(572), - [anon_sym_break] = ACTIONS(574), - [anon_sym_continue] = ACTIONS(576), - [anon_sym_goto] = ACTIONS(578), - [anon_sym_AMP] = ACTIONS(556), - [anon_sym_BANG] = ACTIONS(580), - [anon_sym_TILDE] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_DASH_DASH] = ACTIONS(586), - [anon_sym_PLUS_PLUS] = ACTIONS(586), - [anon_sym_sizeof] = ACTIONS(588), - [sym_number_literal] = ACTIONS(590), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(594), - [sym_false] = ACTIONS(594), - [sym_null] = ACTIONS(594), - [sym_identifier] = ACTIONS(1030), + [anon_sym_SEMI] = ACTIONS(546), + [anon_sym_LBRACE] = ACTIONS(239), + [anon_sym_LPAREN2] = ACTIONS(550), + [anon_sym_STAR] = ACTIONS(552), + [anon_sym_if] = ACTIONS(1007), + [anon_sym_switch] = ACTIONS(1009), + [anon_sym_case] = ACTIONS(1011), + [anon_sym_default] = ACTIONS(1013), + [anon_sym_while] = ACTIONS(1015), + [anon_sym_do] = ACTIONS(1017), + [anon_sym_for] = ACTIONS(1019), + [anon_sym_return] = ACTIONS(568), + [anon_sym_break] = ACTIONS(570), + [anon_sym_continue] = ACTIONS(572), + [anon_sym_goto] = ACTIONS(574), + [anon_sym_AMP] = ACTIONS(552), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_TILDE] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(580), + [anon_sym_DASH] = ACTIONS(580), + [anon_sym_DASH_DASH] = ACTIONS(582), + [anon_sym_PLUS_PLUS] = ACTIONS(582), + [anon_sym_sizeof] = ACTIONS(584), + [sym_number_literal] = ACTIONS(586), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(590), + [sym_false] = ACTIONS(590), + [sym_null] = ACTIONS(590), + [sym_identifier] = ACTIONS(1021), [sym_comment] = ACTIONS(39), }, [1236] = { [aux_sym_for_statement_repeat1] = STATE(1088), - [anon_sym_COMMA] = ACTIONS(2530), - [anon_sym_RPAREN] = ACTIONS(3481), + [anon_sym_COMMA] = ACTIONS(2519), + [anon_sym_RPAREN] = ACTIONS(3470), [sym_comment] = ACTIONS(39), }, [1237] = { [sym_argument_list] = STATE(465), [aux_sym_for_statement_repeat1] = STATE(1280), - [anon_sym_COMMA] = ACTIONS(2530), - [anon_sym_RPAREN] = ACTIONS(3481), - [anon_sym_LPAREN2] = ACTIONS(1096), - [anon_sym_STAR] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1100), - [anon_sym_EQ] = ACTIONS(1562), - [anon_sym_QMARK] = ACTIONS(1564), - [anon_sym_STAR_EQ] = ACTIONS(1566), - [anon_sym_SLASH_EQ] = ACTIONS(1566), - [anon_sym_PERCENT_EQ] = ACTIONS(1566), - [anon_sym_PLUS_EQ] = ACTIONS(1566), - [anon_sym_DASH_EQ] = ACTIONS(1566), - [anon_sym_LT_LT_EQ] = ACTIONS(1566), - [anon_sym_GT_GT_EQ] = ACTIONS(1566), - [anon_sym_AMP_EQ] = ACTIONS(1566), - [anon_sym_CARET_EQ] = ACTIONS(1566), - [anon_sym_PIPE_EQ] = ACTIONS(1566), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_PIPE_PIPE] = ACTIONS(1570), - [anon_sym_AMP_AMP] = ACTIONS(1572), - [anon_sym_PIPE] = ACTIONS(1574), - [anon_sym_CARET] = ACTIONS(1576), - [anon_sym_EQ_EQ] = ACTIONS(1578), - [anon_sym_BANG_EQ] = ACTIONS(1578), - [anon_sym_LT] = ACTIONS(1580), - [anon_sym_GT] = ACTIONS(1580), - [anon_sym_LT_EQ] = ACTIONS(1582), - [anon_sym_GT_EQ] = ACTIONS(1582), - [anon_sym_LT_LT] = ACTIONS(1584), - [anon_sym_GT_GT] = ACTIONS(1584), - [anon_sym_PLUS] = ACTIONS(1586), - [anon_sym_DASH] = ACTIONS(1586), - [anon_sym_SLASH] = ACTIONS(1560), - [anon_sym_PERCENT] = ACTIONS(1560), - [anon_sym_DASH_DASH] = ACTIONS(1128), - [anon_sym_PLUS_PLUS] = ACTIONS(1128), - [anon_sym_DOT] = ACTIONS(1130), - [anon_sym_DASH_GT] = ACTIONS(1130), + [anon_sym_COMMA] = ACTIONS(2519), + [anon_sym_RPAREN] = ACTIONS(3470), + [anon_sym_LPAREN2] = ACTIONS(1089), + [anon_sym_STAR] = ACTIONS(1549), + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(1551), + [anon_sym_QMARK] = ACTIONS(1553), + [anon_sym_STAR_EQ] = ACTIONS(1555), + [anon_sym_SLASH_EQ] = ACTIONS(1555), + [anon_sym_PERCENT_EQ] = ACTIONS(1555), + [anon_sym_PLUS_EQ] = ACTIONS(1555), + [anon_sym_DASH_EQ] = ACTIONS(1555), + [anon_sym_LT_LT_EQ] = ACTIONS(1555), + [anon_sym_GT_GT_EQ] = ACTIONS(1555), + [anon_sym_AMP_EQ] = ACTIONS(1555), + [anon_sym_CARET_EQ] = ACTIONS(1555), + [anon_sym_PIPE_EQ] = ACTIONS(1555), + [anon_sym_AMP] = ACTIONS(1557), + [anon_sym_PIPE_PIPE] = ACTIONS(1559), + [anon_sym_AMP_AMP] = ACTIONS(1561), + [anon_sym_PIPE] = ACTIONS(1563), + [anon_sym_CARET] = ACTIONS(1565), + [anon_sym_EQ_EQ] = ACTIONS(1567), + [anon_sym_BANG_EQ] = ACTIONS(1567), + [anon_sym_LT] = ACTIONS(1569), + [anon_sym_GT] = ACTIONS(1569), + [anon_sym_LT_EQ] = ACTIONS(1571), + [anon_sym_GT_EQ] = ACTIONS(1571), + [anon_sym_LT_LT] = ACTIONS(1573), + [anon_sym_GT_GT] = ACTIONS(1573), + [anon_sym_PLUS] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(1575), + [anon_sym_SLASH] = ACTIONS(1549), + [anon_sym_PERCENT] = ACTIONS(1549), + [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_PLUS_PLUS] = ACTIONS(1121), + [anon_sym_DOT] = ACTIONS(1123), + [anon_sym_DASH_GT] = ACTIONS(1123), [sym_comment] = ACTIONS(39), }, [1238] = { @@ -49908,82 +49927,82 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(1281), [sym_concatenated_string] = STATE(1281), [sym_string_literal] = STATE(409), - [anon_sym_RPAREN] = ACTIONS(3481), - [anon_sym_LPAREN2] = ACTIONS(970), - [anon_sym_STAR] = ACTIONS(972), - [anon_sym_AMP] = ACTIONS(972), - [anon_sym_BANG] = ACTIONS(974), - [anon_sym_TILDE] = ACTIONS(976), - [anon_sym_PLUS] = ACTIONS(978), - [anon_sym_DASH] = ACTIONS(978), - [anon_sym_DASH_DASH] = ACTIONS(980), - [anon_sym_PLUS_PLUS] = ACTIONS(980), - [anon_sym_sizeof] = ACTIONS(982), - [sym_number_literal] = ACTIONS(3483), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(3485), - [sym_false] = ACTIONS(3485), - [sym_null] = ACTIONS(3485), - [sym_identifier] = ACTIONS(3485), + [anon_sym_RPAREN] = ACTIONS(3470), + [anon_sym_LPAREN2] = ACTIONS(961), + [anon_sym_STAR] = ACTIONS(963), + [anon_sym_AMP] = ACTIONS(963), + [anon_sym_BANG] = ACTIONS(965), + [anon_sym_TILDE] = ACTIONS(967), + [anon_sym_PLUS] = ACTIONS(969), + [anon_sym_DASH] = ACTIONS(969), + [anon_sym_DASH_DASH] = ACTIONS(971), + [anon_sym_PLUS_PLUS] = ACTIONS(971), + [anon_sym_sizeof] = ACTIONS(973), + [sym_number_literal] = ACTIONS(3472), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(3474), + [sym_false] = ACTIONS(3474), + [sym_null] = ACTIONS(3474), + [sym_identifier] = ACTIONS(3474), [sym_comment] = ACTIONS(39), }, [1239] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3487), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3487), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3487), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3487), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3487), - [sym_preproc_directive] = ACTIONS(3487), - [anon_sym_SEMI] = ACTIONS(3489), - [anon_sym_typedef] = ACTIONS(3487), - [anon_sym_extern] = ACTIONS(3487), - [anon_sym_LBRACE] = ACTIONS(3489), - [anon_sym_RBRACE] = ACTIONS(3489), - [anon_sym_LPAREN2] = ACTIONS(3489), - [anon_sym_STAR] = ACTIONS(3489), - [anon_sym_static] = ACTIONS(3487), - [anon_sym_auto] = ACTIONS(3487), - [anon_sym_register] = ACTIONS(3487), - [anon_sym_inline] = ACTIONS(3487), - [anon_sym_const] = ACTIONS(3487), - [anon_sym_restrict] = ACTIONS(3487), - [anon_sym_volatile] = ACTIONS(3487), - [anon_sym__Atomic] = ACTIONS(3487), - [anon_sym_unsigned] = ACTIONS(3487), - [anon_sym_long] = ACTIONS(3487), - [anon_sym_short] = ACTIONS(3487), - [sym_primitive_type] = ACTIONS(3487), - [anon_sym_enum] = ACTIONS(3487), - [anon_sym_struct] = ACTIONS(3487), - [anon_sym_union] = ACTIONS(3487), - [anon_sym_if] = ACTIONS(3487), - [anon_sym_else] = ACTIONS(3487), - [anon_sym_switch] = ACTIONS(3487), - [anon_sym_case] = ACTIONS(3487), - [anon_sym_default] = ACTIONS(3487), - [anon_sym_while] = ACTIONS(3487), - [anon_sym_do] = ACTIONS(3487), - [anon_sym_for] = ACTIONS(3487), - [anon_sym_return] = ACTIONS(3487), - [anon_sym_break] = ACTIONS(3487), - [anon_sym_continue] = ACTIONS(3487), - [anon_sym_goto] = ACTIONS(3487), - [anon_sym_AMP] = ACTIONS(3489), - [anon_sym_BANG] = ACTIONS(3489), - [anon_sym_TILDE] = ACTIONS(3489), - [anon_sym_PLUS] = ACTIONS(3487), - [anon_sym_DASH] = ACTIONS(3487), - [anon_sym_DASH_DASH] = ACTIONS(3489), - [anon_sym_PLUS_PLUS] = ACTIONS(3489), - [anon_sym_sizeof] = ACTIONS(3487), - [sym_number_literal] = ACTIONS(3489), - [anon_sym_SQUOTE] = ACTIONS(3489), - [anon_sym_DQUOTE] = ACTIONS(3489), - [sym_true] = ACTIONS(3487), - [sym_false] = ACTIONS(3487), - [sym_null] = ACTIONS(3487), - [sym_identifier] = ACTIONS(3487), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3476), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3476), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3476), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3476), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3476), + [sym_preproc_directive] = ACTIONS(3476), + [anon_sym_SEMI] = ACTIONS(3478), + [anon_sym_typedef] = ACTIONS(3476), + [anon_sym_extern] = ACTIONS(3476), + [anon_sym_LBRACE] = ACTIONS(3478), + [anon_sym_RBRACE] = ACTIONS(3478), + [anon_sym_LPAREN2] = ACTIONS(3478), + [anon_sym_STAR] = ACTIONS(3478), + [anon_sym_static] = ACTIONS(3476), + [anon_sym_auto] = ACTIONS(3476), + [anon_sym_register] = ACTIONS(3476), + [anon_sym_inline] = ACTIONS(3476), + [anon_sym_const] = ACTIONS(3476), + [anon_sym_restrict] = ACTIONS(3476), + [anon_sym_volatile] = ACTIONS(3476), + [anon_sym__Atomic] = ACTIONS(3476), + [anon_sym_unsigned] = ACTIONS(3476), + [anon_sym_long] = ACTIONS(3476), + [anon_sym_short] = ACTIONS(3476), + [sym_primitive_type] = ACTIONS(3476), + [anon_sym_enum] = ACTIONS(3476), + [anon_sym_struct] = ACTIONS(3476), + [anon_sym_union] = ACTIONS(3476), + [anon_sym_if] = ACTIONS(3476), + [anon_sym_else] = ACTIONS(3476), + [anon_sym_switch] = ACTIONS(3476), + [anon_sym_case] = ACTIONS(3476), + [anon_sym_default] = ACTIONS(3476), + [anon_sym_while] = ACTIONS(3476), + [anon_sym_do] = ACTIONS(3476), + [anon_sym_for] = ACTIONS(3476), + [anon_sym_return] = ACTIONS(3476), + [anon_sym_break] = ACTIONS(3476), + [anon_sym_continue] = ACTIONS(3476), + [anon_sym_goto] = ACTIONS(3476), + [anon_sym_AMP] = ACTIONS(3478), + [anon_sym_BANG] = ACTIONS(3478), + [anon_sym_TILDE] = ACTIONS(3478), + [anon_sym_PLUS] = ACTIONS(3476), + [anon_sym_DASH] = ACTIONS(3476), + [anon_sym_DASH_DASH] = ACTIONS(3478), + [anon_sym_PLUS_PLUS] = ACTIONS(3478), + [anon_sym_sizeof] = ACTIONS(3476), + [sym_number_literal] = ACTIONS(3478), + [anon_sym_SQUOTE] = ACTIONS(3478), + [anon_sym_DQUOTE] = ACTIONS(3478), + [sym_true] = ACTIONS(3476), + [sym_false] = ACTIONS(3476), + [sym_null] = ACTIONS(3476), + [sym_identifier] = ACTIONS(3476), [sym_comment] = ACTIONS(39), }, [1240] = { @@ -50021,485 +50040,485 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(251), [sym_concatenated_string] = STATE(251), [sym_string_literal] = STATE(253), - [anon_sym_SEMI] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(241), - [anon_sym_LPAREN2] = ACTIONS(554), - [anon_sym_STAR] = ACTIONS(556), - [anon_sym_if] = ACTIONS(558), - [anon_sym_switch] = ACTIONS(560), - [anon_sym_case] = ACTIONS(562), - [anon_sym_default] = ACTIONS(564), - [anon_sym_while] = ACTIONS(566), - [anon_sym_do] = ACTIONS(568), - [anon_sym_for] = ACTIONS(570), - [anon_sym_return] = ACTIONS(572), - [anon_sym_break] = ACTIONS(574), - [anon_sym_continue] = ACTIONS(576), - [anon_sym_goto] = ACTIONS(578), - [anon_sym_AMP] = ACTIONS(556), - [anon_sym_BANG] = ACTIONS(580), - [anon_sym_TILDE] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_DASH_DASH] = ACTIONS(586), - [anon_sym_PLUS_PLUS] = ACTIONS(586), - [anon_sym_sizeof] = ACTIONS(588), - [sym_number_literal] = ACTIONS(590), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(594), - [sym_false] = ACTIONS(594), - [sym_null] = ACTIONS(594), - [sym_identifier] = ACTIONS(1612), + [anon_sym_SEMI] = ACTIONS(546), + [anon_sym_LBRACE] = ACTIONS(239), + [anon_sym_LPAREN2] = ACTIONS(550), + [anon_sym_STAR] = ACTIONS(552), + [anon_sym_if] = ACTIONS(554), + [anon_sym_switch] = ACTIONS(556), + [anon_sym_case] = ACTIONS(558), + [anon_sym_default] = ACTIONS(560), + [anon_sym_while] = ACTIONS(562), + [anon_sym_do] = ACTIONS(564), + [anon_sym_for] = ACTIONS(566), + [anon_sym_return] = ACTIONS(568), + [anon_sym_break] = ACTIONS(570), + [anon_sym_continue] = ACTIONS(572), + [anon_sym_goto] = ACTIONS(574), + [anon_sym_AMP] = ACTIONS(552), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_TILDE] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(580), + [anon_sym_DASH] = ACTIONS(580), + [anon_sym_DASH_DASH] = ACTIONS(582), + [anon_sym_PLUS_PLUS] = ACTIONS(582), + [anon_sym_sizeof] = ACTIONS(584), + [sym_number_literal] = ACTIONS(586), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(590), + [sym_false] = ACTIONS(590), + [sym_null] = ACTIONS(590), + [sym_identifier] = ACTIONS(1601), [sym_comment] = ACTIONS(39), }, [1241] = { [aux_sym_for_statement_repeat1] = STATE(1088), - [anon_sym_COMMA] = ACTIONS(2530), - [anon_sym_RPAREN] = ACTIONS(3491), + [anon_sym_COMMA] = ACTIONS(2519), + [anon_sym_RPAREN] = ACTIONS(3480), [sym_comment] = ACTIONS(39), }, [1242] = { [sym_argument_list] = STATE(465), [aux_sym_for_statement_repeat1] = STATE(1284), - [anon_sym_COMMA] = ACTIONS(2530), - [anon_sym_RPAREN] = ACTIONS(3491), - [anon_sym_LPAREN2] = ACTIONS(1096), - [anon_sym_STAR] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1100), - [anon_sym_EQ] = ACTIONS(1562), - [anon_sym_QMARK] = ACTIONS(1564), - [anon_sym_STAR_EQ] = ACTIONS(1566), - [anon_sym_SLASH_EQ] = ACTIONS(1566), - [anon_sym_PERCENT_EQ] = ACTIONS(1566), - [anon_sym_PLUS_EQ] = ACTIONS(1566), - [anon_sym_DASH_EQ] = ACTIONS(1566), - [anon_sym_LT_LT_EQ] = ACTIONS(1566), - [anon_sym_GT_GT_EQ] = ACTIONS(1566), - [anon_sym_AMP_EQ] = ACTIONS(1566), - [anon_sym_CARET_EQ] = ACTIONS(1566), - [anon_sym_PIPE_EQ] = ACTIONS(1566), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_PIPE_PIPE] = ACTIONS(1570), - [anon_sym_AMP_AMP] = ACTIONS(1572), - [anon_sym_PIPE] = ACTIONS(1574), - [anon_sym_CARET] = ACTIONS(1576), - [anon_sym_EQ_EQ] = ACTIONS(1578), - [anon_sym_BANG_EQ] = ACTIONS(1578), - [anon_sym_LT] = ACTIONS(1580), - [anon_sym_GT] = ACTIONS(1580), - [anon_sym_LT_EQ] = ACTIONS(1582), - [anon_sym_GT_EQ] = ACTIONS(1582), - [anon_sym_LT_LT] = ACTIONS(1584), - [anon_sym_GT_GT] = ACTIONS(1584), - [anon_sym_PLUS] = ACTIONS(1586), - [anon_sym_DASH] = ACTIONS(1586), - [anon_sym_SLASH] = ACTIONS(1560), - [anon_sym_PERCENT] = ACTIONS(1560), - [anon_sym_DASH_DASH] = ACTIONS(1128), - [anon_sym_PLUS_PLUS] = ACTIONS(1128), - [anon_sym_DOT] = ACTIONS(1130), - [anon_sym_DASH_GT] = ACTIONS(1130), + [anon_sym_COMMA] = ACTIONS(2519), + [anon_sym_RPAREN] = ACTIONS(3480), + [anon_sym_LPAREN2] = ACTIONS(1089), + [anon_sym_STAR] = ACTIONS(1549), + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(1551), + [anon_sym_QMARK] = ACTIONS(1553), + [anon_sym_STAR_EQ] = ACTIONS(1555), + [anon_sym_SLASH_EQ] = ACTIONS(1555), + [anon_sym_PERCENT_EQ] = ACTIONS(1555), + [anon_sym_PLUS_EQ] = ACTIONS(1555), + [anon_sym_DASH_EQ] = ACTIONS(1555), + [anon_sym_LT_LT_EQ] = ACTIONS(1555), + [anon_sym_GT_GT_EQ] = ACTIONS(1555), + [anon_sym_AMP_EQ] = ACTIONS(1555), + [anon_sym_CARET_EQ] = ACTIONS(1555), + [anon_sym_PIPE_EQ] = ACTIONS(1555), + [anon_sym_AMP] = ACTIONS(1557), + [anon_sym_PIPE_PIPE] = ACTIONS(1559), + [anon_sym_AMP_AMP] = ACTIONS(1561), + [anon_sym_PIPE] = ACTIONS(1563), + [anon_sym_CARET] = ACTIONS(1565), + [anon_sym_EQ_EQ] = ACTIONS(1567), + [anon_sym_BANG_EQ] = ACTIONS(1567), + [anon_sym_LT] = ACTIONS(1569), + [anon_sym_GT] = ACTIONS(1569), + [anon_sym_LT_EQ] = ACTIONS(1571), + [anon_sym_GT_EQ] = ACTIONS(1571), + [anon_sym_LT_LT] = ACTIONS(1573), + [anon_sym_GT_GT] = ACTIONS(1573), + [anon_sym_PLUS] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(1575), + [anon_sym_SLASH] = ACTIONS(1549), + [anon_sym_PERCENT] = ACTIONS(1549), + [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_PLUS_PLUS] = ACTIONS(1121), + [anon_sym_DOT] = ACTIONS(1123), + [anon_sym_DASH_GT] = ACTIONS(1123), [sym_comment] = ACTIONS(39), }, [1243] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3182), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3182), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3182), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3182), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3182), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3182), - [sym_preproc_directive] = ACTIONS(3182), - [anon_sym_SEMI] = ACTIONS(3184), - [anon_sym_typedef] = ACTIONS(3182), - [anon_sym_extern] = ACTIONS(3182), - [anon_sym_LBRACE] = ACTIONS(3184), - [anon_sym_LPAREN2] = ACTIONS(3184), - [anon_sym_STAR] = ACTIONS(3184), - [anon_sym_static] = ACTIONS(3182), - [anon_sym_auto] = ACTIONS(3182), - [anon_sym_register] = ACTIONS(3182), - [anon_sym_inline] = ACTIONS(3182), - [anon_sym_const] = ACTIONS(3182), - [anon_sym_restrict] = ACTIONS(3182), - [anon_sym_volatile] = ACTIONS(3182), - [anon_sym__Atomic] = ACTIONS(3182), - [anon_sym_unsigned] = ACTIONS(3182), - [anon_sym_long] = ACTIONS(3182), - [anon_sym_short] = ACTIONS(3182), - [sym_primitive_type] = ACTIONS(3182), - [anon_sym_enum] = ACTIONS(3182), - [anon_sym_struct] = ACTIONS(3182), - [anon_sym_union] = ACTIONS(3182), - [anon_sym_if] = ACTIONS(3182), - [anon_sym_switch] = ACTIONS(3182), - [anon_sym_case] = ACTIONS(3182), - [anon_sym_default] = ACTIONS(3182), - [anon_sym_while] = ACTIONS(3182), - [anon_sym_do] = ACTIONS(3182), - [anon_sym_for] = ACTIONS(3182), - [anon_sym_return] = ACTIONS(3182), - [anon_sym_break] = ACTIONS(3182), - [anon_sym_continue] = ACTIONS(3182), - [anon_sym_goto] = ACTIONS(3182), - [anon_sym_AMP] = ACTIONS(3184), - [anon_sym_BANG] = ACTIONS(3184), - [anon_sym_TILDE] = ACTIONS(3184), - [anon_sym_PLUS] = ACTIONS(3182), - [anon_sym_DASH] = ACTIONS(3182), - [anon_sym_DASH_DASH] = ACTIONS(3184), - [anon_sym_PLUS_PLUS] = ACTIONS(3184), - [anon_sym_sizeof] = ACTIONS(3182), - [sym_number_literal] = ACTIONS(3184), - [anon_sym_SQUOTE] = ACTIONS(3184), - [anon_sym_DQUOTE] = ACTIONS(3184), - [sym_true] = ACTIONS(3182), - [sym_false] = ACTIONS(3182), - [sym_null] = ACTIONS(3182), - [sym_identifier] = ACTIONS(3182), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3171), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3171), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3171), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3171), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3171), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3171), + [sym_preproc_directive] = ACTIONS(3171), + [anon_sym_SEMI] = ACTIONS(3173), + [anon_sym_typedef] = ACTIONS(3171), + [anon_sym_extern] = ACTIONS(3171), + [anon_sym_LBRACE] = ACTIONS(3173), + [anon_sym_LPAREN2] = ACTIONS(3173), + [anon_sym_STAR] = ACTIONS(3173), + [anon_sym_static] = ACTIONS(3171), + [anon_sym_auto] = ACTIONS(3171), + [anon_sym_register] = ACTIONS(3171), + [anon_sym_inline] = ACTIONS(3171), + [anon_sym_const] = ACTIONS(3171), + [anon_sym_restrict] = ACTIONS(3171), + [anon_sym_volatile] = ACTIONS(3171), + [anon_sym__Atomic] = ACTIONS(3171), + [anon_sym_unsigned] = ACTIONS(3171), + [anon_sym_long] = ACTIONS(3171), + [anon_sym_short] = ACTIONS(3171), + [sym_primitive_type] = ACTIONS(3171), + [anon_sym_enum] = ACTIONS(3171), + [anon_sym_struct] = ACTIONS(3171), + [anon_sym_union] = ACTIONS(3171), + [anon_sym_if] = ACTIONS(3171), + [anon_sym_switch] = ACTIONS(3171), + [anon_sym_case] = ACTIONS(3171), + [anon_sym_default] = ACTIONS(3171), + [anon_sym_while] = ACTIONS(3171), + [anon_sym_do] = ACTIONS(3171), + [anon_sym_for] = ACTIONS(3171), + [anon_sym_return] = ACTIONS(3171), + [anon_sym_break] = ACTIONS(3171), + [anon_sym_continue] = ACTIONS(3171), + [anon_sym_goto] = ACTIONS(3171), + [anon_sym_AMP] = ACTIONS(3173), + [anon_sym_BANG] = ACTIONS(3173), + [anon_sym_TILDE] = ACTIONS(3173), + [anon_sym_PLUS] = ACTIONS(3171), + [anon_sym_DASH] = ACTIONS(3171), + [anon_sym_DASH_DASH] = ACTIONS(3173), + [anon_sym_PLUS_PLUS] = ACTIONS(3173), + [anon_sym_sizeof] = ACTIONS(3171), + [sym_number_literal] = ACTIONS(3173), + [anon_sym_SQUOTE] = ACTIONS(3173), + [anon_sym_DQUOTE] = ACTIONS(3173), + [sym_true] = ACTIONS(3171), + [sym_false] = ACTIONS(3171), + [sym_null] = ACTIONS(3171), + [sym_identifier] = ACTIONS(3171), [sym_comment] = ACTIONS(39), }, [1244] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3186), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3186), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3186), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3186), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3186), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3186), - [sym_preproc_directive] = ACTIONS(3186), - [anon_sym_SEMI] = ACTIONS(3188), - [anon_sym_typedef] = ACTIONS(3186), - [anon_sym_extern] = ACTIONS(3186), - [anon_sym_LBRACE] = ACTIONS(3188), - [anon_sym_LPAREN2] = ACTIONS(3188), - [anon_sym_STAR] = ACTIONS(3188), - [anon_sym_static] = ACTIONS(3186), - [anon_sym_auto] = ACTIONS(3186), - [anon_sym_register] = ACTIONS(3186), - [anon_sym_inline] = ACTIONS(3186), - [anon_sym_const] = ACTIONS(3186), - [anon_sym_restrict] = ACTIONS(3186), - [anon_sym_volatile] = ACTIONS(3186), - [anon_sym__Atomic] = ACTIONS(3186), - [anon_sym_unsigned] = ACTIONS(3186), - [anon_sym_long] = ACTIONS(3186), - [anon_sym_short] = ACTIONS(3186), - [sym_primitive_type] = ACTIONS(3186), - [anon_sym_enum] = ACTIONS(3186), - [anon_sym_struct] = ACTIONS(3186), - [anon_sym_union] = ACTIONS(3186), - [anon_sym_if] = ACTIONS(3186), - [anon_sym_switch] = ACTIONS(3186), - [anon_sym_case] = ACTIONS(3186), - [anon_sym_default] = ACTIONS(3186), - [anon_sym_while] = ACTIONS(3186), - [anon_sym_do] = ACTIONS(3186), - [anon_sym_for] = ACTIONS(3186), - [anon_sym_return] = ACTIONS(3186), - [anon_sym_break] = ACTIONS(3186), - [anon_sym_continue] = ACTIONS(3186), - [anon_sym_goto] = ACTIONS(3186), - [anon_sym_AMP] = ACTIONS(3188), - [anon_sym_BANG] = ACTIONS(3188), - [anon_sym_TILDE] = ACTIONS(3188), - [anon_sym_PLUS] = ACTIONS(3186), - [anon_sym_DASH] = ACTIONS(3186), - [anon_sym_DASH_DASH] = ACTIONS(3188), - [anon_sym_PLUS_PLUS] = ACTIONS(3188), - [anon_sym_sizeof] = ACTIONS(3186), - [sym_number_literal] = ACTIONS(3188), - [anon_sym_SQUOTE] = ACTIONS(3188), - [anon_sym_DQUOTE] = ACTIONS(3188), - [sym_true] = ACTIONS(3186), - [sym_false] = ACTIONS(3186), - [sym_null] = ACTIONS(3186), - [sym_identifier] = ACTIONS(3186), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3175), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3175), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3175), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3175), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3175), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3175), + [sym_preproc_directive] = ACTIONS(3175), + [anon_sym_SEMI] = ACTIONS(3177), + [anon_sym_typedef] = ACTIONS(3175), + [anon_sym_extern] = ACTIONS(3175), + [anon_sym_LBRACE] = ACTIONS(3177), + [anon_sym_LPAREN2] = ACTIONS(3177), + [anon_sym_STAR] = ACTIONS(3177), + [anon_sym_static] = ACTIONS(3175), + [anon_sym_auto] = ACTIONS(3175), + [anon_sym_register] = ACTIONS(3175), + [anon_sym_inline] = ACTIONS(3175), + [anon_sym_const] = ACTIONS(3175), + [anon_sym_restrict] = ACTIONS(3175), + [anon_sym_volatile] = ACTIONS(3175), + [anon_sym__Atomic] = ACTIONS(3175), + [anon_sym_unsigned] = ACTIONS(3175), + [anon_sym_long] = ACTIONS(3175), + [anon_sym_short] = ACTIONS(3175), + [sym_primitive_type] = ACTIONS(3175), + [anon_sym_enum] = ACTIONS(3175), + [anon_sym_struct] = ACTIONS(3175), + [anon_sym_union] = ACTIONS(3175), + [anon_sym_if] = ACTIONS(3175), + [anon_sym_switch] = ACTIONS(3175), + [anon_sym_case] = ACTIONS(3175), + [anon_sym_default] = ACTIONS(3175), + [anon_sym_while] = ACTIONS(3175), + [anon_sym_do] = ACTIONS(3175), + [anon_sym_for] = ACTIONS(3175), + [anon_sym_return] = ACTIONS(3175), + [anon_sym_break] = ACTIONS(3175), + [anon_sym_continue] = ACTIONS(3175), + [anon_sym_goto] = ACTIONS(3175), + [anon_sym_AMP] = ACTIONS(3177), + [anon_sym_BANG] = ACTIONS(3177), + [anon_sym_TILDE] = ACTIONS(3177), + [anon_sym_PLUS] = ACTIONS(3175), + [anon_sym_DASH] = ACTIONS(3175), + [anon_sym_DASH_DASH] = ACTIONS(3177), + [anon_sym_PLUS_PLUS] = ACTIONS(3177), + [anon_sym_sizeof] = ACTIONS(3175), + [sym_number_literal] = ACTIONS(3177), + [anon_sym_SQUOTE] = ACTIONS(3177), + [anon_sym_DQUOTE] = ACTIONS(3177), + [sym_true] = ACTIONS(3175), + [sym_false] = ACTIONS(3175), + [sym_null] = ACTIONS(3175), + [sym_identifier] = ACTIONS(3175), [sym_comment] = ACTIONS(39), }, [1245] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3190), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3190), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3190), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3190), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3190), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3190), - [sym_preproc_directive] = ACTIONS(3190), - [anon_sym_SEMI] = ACTIONS(3192), - [anon_sym_typedef] = ACTIONS(3190), - [anon_sym_extern] = ACTIONS(3190), - [anon_sym_LBRACE] = ACTIONS(3192), - [anon_sym_LPAREN2] = ACTIONS(3192), - [anon_sym_STAR] = ACTIONS(3192), - [anon_sym_static] = ACTIONS(3190), - [anon_sym_auto] = ACTIONS(3190), - [anon_sym_register] = ACTIONS(3190), - [anon_sym_inline] = ACTIONS(3190), - [anon_sym_const] = ACTIONS(3190), - [anon_sym_restrict] = ACTIONS(3190), - [anon_sym_volatile] = ACTIONS(3190), - [anon_sym__Atomic] = ACTIONS(3190), - [anon_sym_unsigned] = ACTIONS(3190), - [anon_sym_long] = ACTIONS(3190), - [anon_sym_short] = ACTIONS(3190), - [sym_primitive_type] = ACTIONS(3190), - [anon_sym_enum] = ACTIONS(3190), - [anon_sym_struct] = ACTIONS(3190), - [anon_sym_union] = ACTIONS(3190), - [anon_sym_if] = ACTIONS(3190), - [anon_sym_switch] = ACTIONS(3190), - [anon_sym_case] = ACTIONS(3190), - [anon_sym_default] = ACTIONS(3190), - [anon_sym_while] = ACTIONS(3190), - [anon_sym_do] = ACTIONS(3190), - [anon_sym_for] = ACTIONS(3190), - [anon_sym_return] = ACTIONS(3190), - [anon_sym_break] = ACTIONS(3190), - [anon_sym_continue] = ACTIONS(3190), - [anon_sym_goto] = ACTIONS(3190), - [anon_sym_AMP] = ACTIONS(3192), - [anon_sym_BANG] = ACTIONS(3192), - [anon_sym_TILDE] = ACTIONS(3192), - [anon_sym_PLUS] = ACTIONS(3190), - [anon_sym_DASH] = ACTIONS(3190), - [anon_sym_DASH_DASH] = ACTIONS(3192), - [anon_sym_PLUS_PLUS] = ACTIONS(3192), - [anon_sym_sizeof] = ACTIONS(3190), - [sym_number_literal] = ACTIONS(3192), - [anon_sym_SQUOTE] = ACTIONS(3192), - [anon_sym_DQUOTE] = ACTIONS(3192), - [sym_true] = ACTIONS(3190), - [sym_false] = ACTIONS(3190), - [sym_null] = ACTIONS(3190), - [sym_identifier] = ACTIONS(3190), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3179), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3179), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3179), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3179), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3179), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3179), + [sym_preproc_directive] = ACTIONS(3179), + [anon_sym_SEMI] = ACTIONS(3181), + [anon_sym_typedef] = ACTIONS(3179), + [anon_sym_extern] = ACTIONS(3179), + [anon_sym_LBRACE] = ACTIONS(3181), + [anon_sym_LPAREN2] = ACTIONS(3181), + [anon_sym_STAR] = ACTIONS(3181), + [anon_sym_static] = ACTIONS(3179), + [anon_sym_auto] = ACTIONS(3179), + [anon_sym_register] = ACTIONS(3179), + [anon_sym_inline] = ACTIONS(3179), + [anon_sym_const] = ACTIONS(3179), + [anon_sym_restrict] = ACTIONS(3179), + [anon_sym_volatile] = ACTIONS(3179), + [anon_sym__Atomic] = ACTIONS(3179), + [anon_sym_unsigned] = ACTIONS(3179), + [anon_sym_long] = ACTIONS(3179), + [anon_sym_short] = ACTIONS(3179), + [sym_primitive_type] = ACTIONS(3179), + [anon_sym_enum] = ACTIONS(3179), + [anon_sym_struct] = ACTIONS(3179), + [anon_sym_union] = ACTIONS(3179), + [anon_sym_if] = ACTIONS(3179), + [anon_sym_switch] = ACTIONS(3179), + [anon_sym_case] = ACTIONS(3179), + [anon_sym_default] = ACTIONS(3179), + [anon_sym_while] = ACTIONS(3179), + [anon_sym_do] = ACTIONS(3179), + [anon_sym_for] = ACTIONS(3179), + [anon_sym_return] = ACTIONS(3179), + [anon_sym_break] = ACTIONS(3179), + [anon_sym_continue] = ACTIONS(3179), + [anon_sym_goto] = ACTIONS(3179), + [anon_sym_AMP] = ACTIONS(3181), + [anon_sym_BANG] = ACTIONS(3181), + [anon_sym_TILDE] = ACTIONS(3181), + [anon_sym_PLUS] = ACTIONS(3179), + [anon_sym_DASH] = ACTIONS(3179), + [anon_sym_DASH_DASH] = ACTIONS(3181), + [anon_sym_PLUS_PLUS] = ACTIONS(3181), + [anon_sym_sizeof] = ACTIONS(3179), + [sym_number_literal] = ACTIONS(3181), + [anon_sym_SQUOTE] = ACTIONS(3181), + [anon_sym_DQUOTE] = ACTIONS(3181), + [sym_true] = ACTIONS(3179), + [sym_false] = ACTIONS(3179), + [sym_null] = ACTIONS(3179), + [sym_identifier] = ACTIONS(3179), [sym_comment] = ACTIONS(39), }, [1246] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3194), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3194), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3194), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3194), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3194), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3194), - [sym_preproc_directive] = ACTIONS(3194), - [anon_sym_SEMI] = ACTIONS(3196), - [anon_sym_typedef] = ACTIONS(3194), - [anon_sym_extern] = ACTIONS(3194), - [anon_sym_LBRACE] = ACTIONS(3196), - [anon_sym_LPAREN2] = ACTIONS(3196), - [anon_sym_STAR] = ACTIONS(3196), - [anon_sym_static] = ACTIONS(3194), - [anon_sym_auto] = ACTIONS(3194), - [anon_sym_register] = ACTIONS(3194), - [anon_sym_inline] = ACTIONS(3194), - [anon_sym_const] = ACTIONS(3194), - [anon_sym_restrict] = ACTIONS(3194), - [anon_sym_volatile] = ACTIONS(3194), - [anon_sym__Atomic] = ACTIONS(3194), - [anon_sym_unsigned] = ACTIONS(3194), - [anon_sym_long] = ACTIONS(3194), - [anon_sym_short] = ACTIONS(3194), - [sym_primitive_type] = ACTIONS(3194), - [anon_sym_enum] = ACTIONS(3194), - [anon_sym_struct] = ACTIONS(3194), - [anon_sym_union] = ACTIONS(3194), - [anon_sym_if] = ACTIONS(3194), - [anon_sym_switch] = ACTIONS(3194), - [anon_sym_case] = ACTIONS(3194), - [anon_sym_default] = ACTIONS(3194), - [anon_sym_while] = ACTIONS(3194), - [anon_sym_do] = ACTIONS(3194), - [anon_sym_for] = ACTIONS(3194), - [anon_sym_return] = ACTIONS(3194), - [anon_sym_break] = ACTIONS(3194), - [anon_sym_continue] = ACTIONS(3194), - [anon_sym_goto] = ACTIONS(3194), - [anon_sym_AMP] = ACTIONS(3196), - [anon_sym_BANG] = ACTIONS(3196), - [anon_sym_TILDE] = ACTIONS(3196), - [anon_sym_PLUS] = ACTIONS(3194), - [anon_sym_DASH] = ACTIONS(3194), - [anon_sym_DASH_DASH] = ACTIONS(3196), - [anon_sym_PLUS_PLUS] = ACTIONS(3196), - [anon_sym_sizeof] = ACTIONS(3194), - [sym_number_literal] = ACTIONS(3196), - [anon_sym_SQUOTE] = ACTIONS(3196), - [anon_sym_DQUOTE] = ACTIONS(3196), - [sym_true] = ACTIONS(3194), - [sym_false] = ACTIONS(3194), - [sym_null] = ACTIONS(3194), - [sym_identifier] = ACTIONS(3194), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3183), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3183), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3183), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3183), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3183), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3183), + [sym_preproc_directive] = ACTIONS(3183), + [anon_sym_SEMI] = ACTIONS(3185), + [anon_sym_typedef] = ACTIONS(3183), + [anon_sym_extern] = ACTIONS(3183), + [anon_sym_LBRACE] = ACTIONS(3185), + [anon_sym_LPAREN2] = ACTIONS(3185), + [anon_sym_STAR] = ACTIONS(3185), + [anon_sym_static] = ACTIONS(3183), + [anon_sym_auto] = ACTIONS(3183), + [anon_sym_register] = ACTIONS(3183), + [anon_sym_inline] = ACTIONS(3183), + [anon_sym_const] = ACTIONS(3183), + [anon_sym_restrict] = ACTIONS(3183), + [anon_sym_volatile] = ACTIONS(3183), + [anon_sym__Atomic] = ACTIONS(3183), + [anon_sym_unsigned] = ACTIONS(3183), + [anon_sym_long] = ACTIONS(3183), + [anon_sym_short] = ACTIONS(3183), + [sym_primitive_type] = ACTIONS(3183), + [anon_sym_enum] = ACTIONS(3183), + [anon_sym_struct] = ACTIONS(3183), + [anon_sym_union] = ACTIONS(3183), + [anon_sym_if] = ACTIONS(3183), + [anon_sym_switch] = ACTIONS(3183), + [anon_sym_case] = ACTIONS(3183), + [anon_sym_default] = ACTIONS(3183), + [anon_sym_while] = ACTIONS(3183), + [anon_sym_do] = ACTIONS(3183), + [anon_sym_for] = ACTIONS(3183), + [anon_sym_return] = ACTIONS(3183), + [anon_sym_break] = ACTIONS(3183), + [anon_sym_continue] = ACTIONS(3183), + [anon_sym_goto] = ACTIONS(3183), + [anon_sym_AMP] = ACTIONS(3185), + [anon_sym_BANG] = ACTIONS(3185), + [anon_sym_TILDE] = ACTIONS(3185), + [anon_sym_PLUS] = ACTIONS(3183), + [anon_sym_DASH] = ACTIONS(3183), + [anon_sym_DASH_DASH] = ACTIONS(3185), + [anon_sym_PLUS_PLUS] = ACTIONS(3185), + [anon_sym_sizeof] = ACTIONS(3183), + [sym_number_literal] = ACTIONS(3185), + [anon_sym_SQUOTE] = ACTIONS(3185), + [anon_sym_DQUOTE] = ACTIONS(3185), + [sym_true] = ACTIONS(3183), + [sym_false] = ACTIONS(3183), + [sym_null] = ACTIONS(3183), + [sym_identifier] = ACTIONS(3183), [sym_comment] = ACTIONS(39), }, [1247] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3198), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3198), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3198), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3198), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3198), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3198), - [sym_preproc_directive] = ACTIONS(3198), - [anon_sym_SEMI] = ACTIONS(3200), - [anon_sym_typedef] = ACTIONS(3198), - [anon_sym_extern] = ACTIONS(3198), - [anon_sym_LBRACE] = ACTIONS(3200), - [anon_sym_LPAREN2] = ACTIONS(3200), - [anon_sym_STAR] = ACTIONS(3200), - [anon_sym_static] = ACTIONS(3198), - [anon_sym_auto] = ACTIONS(3198), - [anon_sym_register] = ACTIONS(3198), - [anon_sym_inline] = ACTIONS(3198), - [anon_sym_const] = ACTIONS(3198), - [anon_sym_restrict] = ACTIONS(3198), - [anon_sym_volatile] = ACTIONS(3198), - [anon_sym__Atomic] = ACTIONS(3198), - [anon_sym_unsigned] = ACTIONS(3198), - [anon_sym_long] = ACTIONS(3198), - [anon_sym_short] = ACTIONS(3198), - [sym_primitive_type] = ACTIONS(3198), - [anon_sym_enum] = ACTIONS(3198), - [anon_sym_struct] = ACTIONS(3198), - [anon_sym_union] = ACTIONS(3198), - [anon_sym_if] = ACTIONS(3198), - [anon_sym_switch] = ACTIONS(3198), - [anon_sym_case] = ACTIONS(3198), - [anon_sym_default] = ACTIONS(3198), - [anon_sym_while] = ACTIONS(3198), - [anon_sym_do] = ACTIONS(3198), - [anon_sym_for] = ACTIONS(3198), - [anon_sym_return] = ACTIONS(3198), - [anon_sym_break] = ACTIONS(3198), - [anon_sym_continue] = ACTIONS(3198), - [anon_sym_goto] = ACTIONS(3198), - [anon_sym_AMP] = ACTIONS(3200), - [anon_sym_BANG] = ACTIONS(3200), - [anon_sym_TILDE] = ACTIONS(3200), - [anon_sym_PLUS] = ACTIONS(3198), - [anon_sym_DASH] = ACTIONS(3198), - [anon_sym_DASH_DASH] = ACTIONS(3200), - [anon_sym_PLUS_PLUS] = ACTIONS(3200), - [anon_sym_sizeof] = ACTIONS(3198), - [sym_number_literal] = ACTIONS(3200), - [anon_sym_SQUOTE] = ACTIONS(3200), - [anon_sym_DQUOTE] = ACTIONS(3200), - [sym_true] = ACTIONS(3198), - [sym_false] = ACTIONS(3198), - [sym_null] = ACTIONS(3198), - [sym_identifier] = ACTIONS(3198), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3187), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3187), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3187), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3187), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3187), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3187), + [sym_preproc_directive] = ACTIONS(3187), + [anon_sym_SEMI] = ACTIONS(3189), + [anon_sym_typedef] = ACTIONS(3187), + [anon_sym_extern] = ACTIONS(3187), + [anon_sym_LBRACE] = ACTIONS(3189), + [anon_sym_LPAREN2] = ACTIONS(3189), + [anon_sym_STAR] = ACTIONS(3189), + [anon_sym_static] = ACTIONS(3187), + [anon_sym_auto] = ACTIONS(3187), + [anon_sym_register] = ACTIONS(3187), + [anon_sym_inline] = ACTIONS(3187), + [anon_sym_const] = ACTIONS(3187), + [anon_sym_restrict] = ACTIONS(3187), + [anon_sym_volatile] = ACTIONS(3187), + [anon_sym__Atomic] = ACTIONS(3187), + [anon_sym_unsigned] = ACTIONS(3187), + [anon_sym_long] = ACTIONS(3187), + [anon_sym_short] = ACTIONS(3187), + [sym_primitive_type] = ACTIONS(3187), + [anon_sym_enum] = ACTIONS(3187), + [anon_sym_struct] = ACTIONS(3187), + [anon_sym_union] = ACTIONS(3187), + [anon_sym_if] = ACTIONS(3187), + [anon_sym_switch] = ACTIONS(3187), + [anon_sym_case] = ACTIONS(3187), + [anon_sym_default] = ACTIONS(3187), + [anon_sym_while] = ACTIONS(3187), + [anon_sym_do] = ACTIONS(3187), + [anon_sym_for] = ACTIONS(3187), + [anon_sym_return] = ACTIONS(3187), + [anon_sym_break] = ACTIONS(3187), + [anon_sym_continue] = ACTIONS(3187), + [anon_sym_goto] = ACTIONS(3187), + [anon_sym_AMP] = ACTIONS(3189), + [anon_sym_BANG] = ACTIONS(3189), + [anon_sym_TILDE] = ACTIONS(3189), + [anon_sym_PLUS] = ACTIONS(3187), + [anon_sym_DASH] = ACTIONS(3187), + [anon_sym_DASH_DASH] = ACTIONS(3189), + [anon_sym_PLUS_PLUS] = ACTIONS(3189), + [anon_sym_sizeof] = ACTIONS(3187), + [sym_number_literal] = ACTIONS(3189), + [anon_sym_SQUOTE] = ACTIONS(3189), + [anon_sym_DQUOTE] = ACTIONS(3189), + [sym_true] = ACTIONS(3187), + [sym_false] = ACTIONS(3187), + [sym_null] = ACTIONS(3187), + [sym_identifier] = ACTIONS(3187), [sym_comment] = ACTIONS(39), }, [1248] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3202), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3202), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3202), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3202), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3202), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3202), - [sym_preproc_directive] = ACTIONS(3202), - [anon_sym_SEMI] = ACTIONS(3204), - [anon_sym_typedef] = ACTIONS(3202), - [anon_sym_extern] = ACTIONS(3202), - [anon_sym_LBRACE] = ACTIONS(3204), - [anon_sym_LPAREN2] = ACTIONS(3204), - [anon_sym_STAR] = ACTIONS(3204), - [anon_sym_static] = ACTIONS(3202), - [anon_sym_auto] = ACTIONS(3202), - [anon_sym_register] = ACTIONS(3202), - [anon_sym_inline] = ACTIONS(3202), - [anon_sym_const] = ACTIONS(3202), - [anon_sym_restrict] = ACTIONS(3202), - [anon_sym_volatile] = ACTIONS(3202), - [anon_sym__Atomic] = ACTIONS(3202), - [anon_sym_unsigned] = ACTIONS(3202), - [anon_sym_long] = ACTIONS(3202), - [anon_sym_short] = ACTIONS(3202), - [sym_primitive_type] = ACTIONS(3202), - [anon_sym_enum] = ACTIONS(3202), - [anon_sym_struct] = ACTIONS(3202), - [anon_sym_union] = ACTIONS(3202), - [anon_sym_if] = ACTIONS(3202), - [anon_sym_switch] = ACTIONS(3202), - [anon_sym_case] = ACTIONS(3202), - [anon_sym_default] = ACTIONS(3202), - [anon_sym_while] = ACTIONS(3202), - [anon_sym_do] = ACTIONS(3202), - [anon_sym_for] = ACTIONS(3202), - [anon_sym_return] = ACTIONS(3202), - [anon_sym_break] = ACTIONS(3202), - [anon_sym_continue] = ACTIONS(3202), - [anon_sym_goto] = ACTIONS(3202), - [anon_sym_AMP] = ACTIONS(3204), - [anon_sym_BANG] = ACTIONS(3204), - [anon_sym_TILDE] = ACTIONS(3204), - [anon_sym_PLUS] = ACTIONS(3202), - [anon_sym_DASH] = ACTIONS(3202), - [anon_sym_DASH_DASH] = ACTIONS(3204), - [anon_sym_PLUS_PLUS] = ACTIONS(3204), - [anon_sym_sizeof] = ACTIONS(3202), - [sym_number_literal] = ACTIONS(3204), - [anon_sym_SQUOTE] = ACTIONS(3204), - [anon_sym_DQUOTE] = ACTIONS(3204), - [sym_true] = ACTIONS(3202), - [sym_false] = ACTIONS(3202), - [sym_null] = ACTIONS(3202), - [sym_identifier] = ACTIONS(3202), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3191), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3191), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3191), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3191), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3191), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3191), + [sym_preproc_directive] = ACTIONS(3191), + [anon_sym_SEMI] = ACTIONS(3193), + [anon_sym_typedef] = ACTIONS(3191), + [anon_sym_extern] = ACTIONS(3191), + [anon_sym_LBRACE] = ACTIONS(3193), + [anon_sym_LPAREN2] = ACTIONS(3193), + [anon_sym_STAR] = ACTIONS(3193), + [anon_sym_static] = ACTIONS(3191), + [anon_sym_auto] = ACTIONS(3191), + [anon_sym_register] = ACTIONS(3191), + [anon_sym_inline] = ACTIONS(3191), + [anon_sym_const] = ACTIONS(3191), + [anon_sym_restrict] = ACTIONS(3191), + [anon_sym_volatile] = ACTIONS(3191), + [anon_sym__Atomic] = ACTIONS(3191), + [anon_sym_unsigned] = ACTIONS(3191), + [anon_sym_long] = ACTIONS(3191), + [anon_sym_short] = ACTIONS(3191), + [sym_primitive_type] = ACTIONS(3191), + [anon_sym_enum] = ACTIONS(3191), + [anon_sym_struct] = ACTIONS(3191), + [anon_sym_union] = ACTIONS(3191), + [anon_sym_if] = ACTIONS(3191), + [anon_sym_switch] = ACTIONS(3191), + [anon_sym_case] = ACTIONS(3191), + [anon_sym_default] = ACTIONS(3191), + [anon_sym_while] = ACTIONS(3191), + [anon_sym_do] = ACTIONS(3191), + [anon_sym_for] = ACTIONS(3191), + [anon_sym_return] = ACTIONS(3191), + [anon_sym_break] = ACTIONS(3191), + [anon_sym_continue] = ACTIONS(3191), + [anon_sym_goto] = ACTIONS(3191), + [anon_sym_AMP] = ACTIONS(3193), + [anon_sym_BANG] = ACTIONS(3193), + [anon_sym_TILDE] = ACTIONS(3193), + [anon_sym_PLUS] = ACTIONS(3191), + [anon_sym_DASH] = ACTIONS(3191), + [anon_sym_DASH_DASH] = ACTIONS(3193), + [anon_sym_PLUS_PLUS] = ACTIONS(3193), + [anon_sym_sizeof] = ACTIONS(3191), + [sym_number_literal] = ACTIONS(3193), + [anon_sym_SQUOTE] = ACTIONS(3193), + [anon_sym_DQUOTE] = ACTIONS(3193), + [sym_true] = ACTIONS(3191), + [sym_false] = ACTIONS(3191), + [sym_null] = ACTIONS(3191), + [sym_identifier] = ACTIONS(3191), [sym_comment] = ACTIONS(39), }, [1249] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2408), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2408), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2408), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2408), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2408), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2408), - [sym_preproc_directive] = ACTIONS(2408), - [anon_sym_SEMI] = ACTIONS(2410), - [anon_sym_typedef] = ACTIONS(2408), - [anon_sym_extern] = ACTIONS(2408), - [anon_sym_LBRACE] = ACTIONS(2410), - [anon_sym_LPAREN2] = ACTIONS(2410), - [anon_sym_STAR] = ACTIONS(2410), - [anon_sym_static] = ACTIONS(2408), - [anon_sym_auto] = ACTIONS(2408), - [anon_sym_register] = ACTIONS(2408), - [anon_sym_inline] = ACTIONS(2408), - [anon_sym_const] = ACTIONS(2408), - [anon_sym_restrict] = ACTIONS(2408), - [anon_sym_volatile] = ACTIONS(2408), - [anon_sym__Atomic] = ACTIONS(2408), - [anon_sym_unsigned] = ACTIONS(2408), - [anon_sym_long] = ACTIONS(2408), - [anon_sym_short] = ACTIONS(2408), - [sym_primitive_type] = ACTIONS(2408), - [anon_sym_enum] = ACTIONS(2408), - [anon_sym_struct] = ACTIONS(2408), - [anon_sym_union] = ACTIONS(2408), - [anon_sym_if] = ACTIONS(2408), - [anon_sym_else] = ACTIONS(3493), - [anon_sym_switch] = ACTIONS(2408), - [anon_sym_case] = ACTIONS(2408), - [anon_sym_default] = ACTIONS(2408), - [anon_sym_while] = ACTIONS(2408), - [anon_sym_do] = ACTIONS(2408), - [anon_sym_for] = ACTIONS(2408), - [anon_sym_return] = ACTIONS(2408), - [anon_sym_break] = ACTIONS(2408), - [anon_sym_continue] = ACTIONS(2408), - [anon_sym_goto] = ACTIONS(2408), - [anon_sym_AMP] = ACTIONS(2410), - [anon_sym_BANG] = ACTIONS(2410), - [anon_sym_TILDE] = ACTIONS(2410), - [anon_sym_PLUS] = ACTIONS(2408), - [anon_sym_DASH] = ACTIONS(2408), - [anon_sym_DASH_DASH] = ACTIONS(2410), - [anon_sym_PLUS_PLUS] = ACTIONS(2410), - [anon_sym_sizeof] = ACTIONS(2408), - [sym_number_literal] = ACTIONS(2410), - [anon_sym_SQUOTE] = ACTIONS(2410), - [anon_sym_DQUOTE] = ACTIONS(2410), - [sym_true] = ACTIONS(2408), - [sym_false] = ACTIONS(2408), - [sym_null] = ACTIONS(2408), - [sym_identifier] = ACTIONS(2408), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2397), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2397), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2397), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2397), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2397), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2397), + [sym_preproc_directive] = ACTIONS(2397), + [anon_sym_SEMI] = ACTIONS(2399), + [anon_sym_typedef] = ACTIONS(2397), + [anon_sym_extern] = ACTIONS(2397), + [anon_sym_LBRACE] = ACTIONS(2399), + [anon_sym_LPAREN2] = ACTIONS(2399), + [anon_sym_STAR] = ACTIONS(2399), + [anon_sym_static] = ACTIONS(2397), + [anon_sym_auto] = ACTIONS(2397), + [anon_sym_register] = ACTIONS(2397), + [anon_sym_inline] = ACTIONS(2397), + [anon_sym_const] = ACTIONS(2397), + [anon_sym_restrict] = ACTIONS(2397), + [anon_sym_volatile] = ACTIONS(2397), + [anon_sym__Atomic] = ACTIONS(2397), + [anon_sym_unsigned] = ACTIONS(2397), + [anon_sym_long] = ACTIONS(2397), + [anon_sym_short] = ACTIONS(2397), + [sym_primitive_type] = ACTIONS(2397), + [anon_sym_enum] = ACTIONS(2397), + [anon_sym_struct] = ACTIONS(2397), + [anon_sym_union] = ACTIONS(2397), + [anon_sym_if] = ACTIONS(2397), + [anon_sym_else] = ACTIONS(3482), + [anon_sym_switch] = ACTIONS(2397), + [anon_sym_case] = ACTIONS(2397), + [anon_sym_default] = ACTIONS(2397), + [anon_sym_while] = ACTIONS(2397), + [anon_sym_do] = ACTIONS(2397), + [anon_sym_for] = ACTIONS(2397), + [anon_sym_return] = ACTIONS(2397), + [anon_sym_break] = ACTIONS(2397), + [anon_sym_continue] = ACTIONS(2397), + [anon_sym_goto] = ACTIONS(2397), + [anon_sym_AMP] = ACTIONS(2399), + [anon_sym_BANG] = ACTIONS(2399), + [anon_sym_TILDE] = ACTIONS(2399), + [anon_sym_PLUS] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2397), + [anon_sym_DASH_DASH] = ACTIONS(2399), + [anon_sym_PLUS_PLUS] = ACTIONS(2399), + [anon_sym_sizeof] = ACTIONS(2397), + [sym_number_literal] = ACTIONS(2399), + [anon_sym_SQUOTE] = ACTIONS(2399), + [anon_sym_DQUOTE] = ACTIONS(2399), + [sym_true] = ACTIONS(2397), + [sym_false] = ACTIONS(2397), + [sym_null] = ACTIONS(2397), + [sym_identifier] = ACTIONS(2397), [sym_comment] = ACTIONS(39), }, [1250] = { @@ -50550,12 +50569,12 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_macro_type_specifier] = STATE(95), [aux_sym__declaration_specifiers_repeat1] = STATE(96), [aux_sym_sized_type_specifier_repeat1] = STATE(97), - [anon_sym_SEMI] = ACTIONS(2254), - [anon_sym_typedef] = ACTIONS(380), + [anon_sym_SEMI] = ACTIONS(2243), + [anon_sym_typedef] = ACTIONS(376), [anon_sym_extern] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(1273), - [anon_sym_LPAREN2] = ACTIONS(554), - [anon_sym_STAR] = ACTIONS(556), + [anon_sym_LBRACE] = ACTIONS(1264), + [anon_sym_LPAREN2] = ACTIONS(550), + [anon_sym_STAR] = ACTIONS(552), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -50564,49 +50583,49 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_restrict] = ACTIONS(25), [anon_sym_volatile] = ACTIONS(25), [anon_sym__Atomic] = ACTIONS(25), - [anon_sym_unsigned] = ACTIONS(177), - [anon_sym_long] = ACTIONS(177), - [anon_sym_short] = ACTIONS(177), - [sym_primitive_type] = ACTIONS(179), + [anon_sym_unsigned] = ACTIONS(175), + [anon_sym_long] = ACTIONS(175), + [anon_sym_short] = ACTIONS(175), + [sym_primitive_type] = ACTIONS(177), [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), - [anon_sym_if] = ACTIONS(3053), - [anon_sym_switch] = ACTIONS(3055), - [anon_sym_case] = ACTIONS(3057), - [anon_sym_default] = ACTIONS(3059), - [anon_sym_while] = ACTIONS(3061), - [anon_sym_do] = ACTIONS(2266), - [anon_sym_for] = ACTIONS(3063), - [anon_sym_return] = ACTIONS(2270), - [anon_sym_break] = ACTIONS(2272), - [anon_sym_continue] = ACTIONS(2274), - [anon_sym_goto] = ACTIONS(2276), - [anon_sym_AMP] = ACTIONS(556), - [anon_sym_BANG] = ACTIONS(580), - [anon_sym_TILDE] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_DASH_DASH] = ACTIONS(586), - [anon_sym_PLUS_PLUS] = ACTIONS(586), - [anon_sym_sizeof] = ACTIONS(588), - [sym_number_literal] = ACTIONS(2278), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2280), - [sym_false] = ACTIONS(2280), - [sym_null] = ACTIONS(2280), - [sym_identifier] = ACTIONS(3417), + [anon_sym_if] = ACTIONS(3042), + [anon_sym_switch] = ACTIONS(3044), + [anon_sym_case] = ACTIONS(3046), + [anon_sym_default] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3050), + [anon_sym_do] = ACTIONS(2255), + [anon_sym_for] = ACTIONS(3052), + [anon_sym_return] = ACTIONS(2259), + [anon_sym_break] = ACTIONS(2261), + [anon_sym_continue] = ACTIONS(2263), + [anon_sym_goto] = ACTIONS(2265), + [anon_sym_AMP] = ACTIONS(552), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_TILDE] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(580), + [anon_sym_DASH] = ACTIONS(580), + [anon_sym_DASH_DASH] = ACTIONS(582), + [anon_sym_PLUS_PLUS] = ACTIONS(582), + [anon_sym_sizeof] = ACTIONS(584), + [sym_number_literal] = ACTIONS(2267), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(2269), + [sym_false] = ACTIONS(2269), + [sym_null] = ACTIONS(2269), + [sym_identifier] = ACTIONS(3406), [sym_comment] = ACTIONS(39), }, [1251] = { - [anon_sym_COMMA] = ACTIONS(1066), - [anon_sym_SEMI] = ACTIONS(1066), + [anon_sym_COMMA] = ACTIONS(1059), + [anon_sym_SEMI] = ACTIONS(1059), [anon_sym_extern] = ACTIONS(83), - [anon_sym_LPAREN2] = ACTIONS(1071), - [anon_sym_STAR] = ACTIONS(1075), - [anon_sym_LBRACK] = ACTIONS(1066), - [anon_sym_EQ] = ACTIONS(1078), + [anon_sym_LPAREN2] = ACTIONS(1064), + [anon_sym_STAR] = ACTIONS(1068), + [anon_sym_LBRACK] = ACTIONS(1059), + [anon_sym_EQ] = ACTIONS(1071), [anon_sym_static] = ACTIONS(83), [anon_sym_auto] = ACTIONS(83), [anon_sym_register] = ACTIONS(83), @@ -50615,39 +50634,39 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_restrict] = ACTIONS(83), [anon_sym_volatile] = ACTIONS(83), [anon_sym__Atomic] = ACTIONS(83), - [anon_sym_COLON] = ACTIONS(3319), - [anon_sym_QMARK] = ACTIONS(1066), - [anon_sym_STAR_EQ] = ACTIONS(1066), - [anon_sym_SLASH_EQ] = ACTIONS(1066), - [anon_sym_PERCENT_EQ] = ACTIONS(1066), - [anon_sym_PLUS_EQ] = ACTIONS(1066), - [anon_sym_DASH_EQ] = ACTIONS(1066), - [anon_sym_LT_LT_EQ] = ACTIONS(1066), - [anon_sym_GT_GT_EQ] = ACTIONS(1066), - [anon_sym_AMP_EQ] = ACTIONS(1066), - [anon_sym_CARET_EQ] = ACTIONS(1066), - [anon_sym_PIPE_EQ] = ACTIONS(1066), - [anon_sym_AMP] = ACTIONS(1078), - [anon_sym_PIPE_PIPE] = ACTIONS(1066), - [anon_sym_AMP_AMP] = ACTIONS(1066), - [anon_sym_PIPE] = ACTIONS(1078), - [anon_sym_CARET] = ACTIONS(1078), - [anon_sym_EQ_EQ] = ACTIONS(1066), - [anon_sym_BANG_EQ] = ACTIONS(1066), - [anon_sym_LT] = ACTIONS(1078), - [anon_sym_GT] = ACTIONS(1078), - [anon_sym_LT_EQ] = ACTIONS(1066), - [anon_sym_GT_EQ] = ACTIONS(1066), - [anon_sym_LT_LT] = ACTIONS(1078), - [anon_sym_GT_GT] = ACTIONS(1078), - [anon_sym_PLUS] = ACTIONS(1078), - [anon_sym_DASH] = ACTIONS(1078), - [anon_sym_SLASH] = ACTIONS(1078), - [anon_sym_PERCENT] = ACTIONS(1078), - [anon_sym_DASH_DASH] = ACTIONS(1066), - [anon_sym_PLUS_PLUS] = ACTIONS(1066), - [anon_sym_DOT] = ACTIONS(1066), - [anon_sym_DASH_GT] = ACTIONS(1066), + [anon_sym_COLON] = ACTIONS(3308), + [anon_sym_QMARK] = ACTIONS(1059), + [anon_sym_STAR_EQ] = ACTIONS(1059), + [anon_sym_SLASH_EQ] = ACTIONS(1059), + [anon_sym_PERCENT_EQ] = ACTIONS(1059), + [anon_sym_PLUS_EQ] = ACTIONS(1059), + [anon_sym_DASH_EQ] = ACTIONS(1059), + [anon_sym_LT_LT_EQ] = ACTIONS(1059), + [anon_sym_GT_GT_EQ] = ACTIONS(1059), + [anon_sym_AMP_EQ] = ACTIONS(1059), + [anon_sym_CARET_EQ] = ACTIONS(1059), + [anon_sym_PIPE_EQ] = ACTIONS(1059), + [anon_sym_AMP] = ACTIONS(1071), + [anon_sym_PIPE_PIPE] = ACTIONS(1059), + [anon_sym_AMP_AMP] = ACTIONS(1059), + [anon_sym_PIPE] = ACTIONS(1071), + [anon_sym_CARET] = ACTIONS(1071), + [anon_sym_EQ_EQ] = ACTIONS(1059), + [anon_sym_BANG_EQ] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(1071), + [anon_sym_GT] = ACTIONS(1071), + [anon_sym_LT_EQ] = ACTIONS(1059), + [anon_sym_GT_EQ] = ACTIONS(1059), + [anon_sym_LT_LT] = ACTIONS(1071), + [anon_sym_GT_GT] = ACTIONS(1071), + [anon_sym_PLUS] = ACTIONS(1071), + [anon_sym_DASH] = ACTIONS(1071), + [anon_sym_SLASH] = ACTIONS(1071), + [anon_sym_PERCENT] = ACTIONS(1071), + [anon_sym_DASH_DASH] = ACTIONS(1059), + [anon_sym_PLUS_PLUS] = ACTIONS(1059), + [anon_sym_DOT] = ACTIONS(1059), + [anon_sym_DASH_GT] = ACTIONS(1059), [sym_identifier] = ACTIONS(83), [sym_comment] = ACTIONS(39), }, @@ -50672,169 +50691,169 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(1287), [sym_concatenated_string] = STATE(1287), [sym_string_literal] = STATE(376), - [anon_sym_SEMI] = ACTIONS(3495), - [anon_sym_LPAREN2] = ACTIONS(847), - [anon_sym_STAR] = ACTIONS(849), - [anon_sym_AMP] = ACTIONS(849), - [anon_sym_BANG] = ACTIONS(851), - [anon_sym_TILDE] = ACTIONS(853), - [anon_sym_PLUS] = ACTIONS(855), - [anon_sym_DASH] = ACTIONS(855), - [anon_sym_DASH_DASH] = ACTIONS(857), - [anon_sym_PLUS_PLUS] = ACTIONS(857), - [anon_sym_sizeof] = ACTIONS(859), - [sym_number_literal] = ACTIONS(3497), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(3499), - [sym_false] = ACTIONS(3499), - [sym_null] = ACTIONS(3499), - [sym_identifier] = ACTIONS(3499), + [anon_sym_SEMI] = ACTIONS(3484), + [anon_sym_LPAREN2] = ACTIONS(838), + [anon_sym_STAR] = ACTIONS(840), + [anon_sym_AMP] = ACTIONS(840), + [anon_sym_BANG] = ACTIONS(842), + [anon_sym_TILDE] = ACTIONS(844), + [anon_sym_PLUS] = ACTIONS(846), + [anon_sym_DASH] = ACTIONS(846), + [anon_sym_DASH_DASH] = ACTIONS(848), + [anon_sym_PLUS_PLUS] = ACTIONS(848), + [anon_sym_sizeof] = ACTIONS(850), + [sym_number_literal] = ACTIONS(3486), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(3488), + [sym_false] = ACTIONS(3488), + [sym_null] = ACTIONS(3488), + [sym_identifier] = ACTIONS(3488), [sym_comment] = ACTIONS(39), }, [1253] = { [sym_argument_list] = STATE(465), - [anon_sym_SEMI] = ACTIONS(3501), - [anon_sym_LPAREN2] = ACTIONS(1096), - [anon_sym_STAR] = ACTIONS(1436), - [anon_sym_LBRACK] = ACTIONS(1100), - [anon_sym_EQ] = ACTIONS(1438), - [anon_sym_QMARK] = ACTIONS(1440), - [anon_sym_STAR_EQ] = ACTIONS(1442), - [anon_sym_SLASH_EQ] = ACTIONS(1442), - [anon_sym_PERCENT_EQ] = ACTIONS(1442), - [anon_sym_PLUS_EQ] = ACTIONS(1442), - [anon_sym_DASH_EQ] = ACTIONS(1442), - [anon_sym_LT_LT_EQ] = ACTIONS(1442), - [anon_sym_GT_GT_EQ] = ACTIONS(1442), - [anon_sym_AMP_EQ] = ACTIONS(1442), - [anon_sym_CARET_EQ] = ACTIONS(1442), - [anon_sym_PIPE_EQ] = ACTIONS(1442), - [anon_sym_AMP] = ACTIONS(1444), - [anon_sym_PIPE_PIPE] = ACTIONS(1446), - [anon_sym_AMP_AMP] = ACTIONS(1448), - [anon_sym_PIPE] = ACTIONS(1450), - [anon_sym_CARET] = ACTIONS(1452), - [anon_sym_EQ_EQ] = ACTIONS(1454), - [anon_sym_BANG_EQ] = ACTIONS(1454), - [anon_sym_LT] = ACTIONS(1456), - [anon_sym_GT] = ACTIONS(1456), - [anon_sym_LT_EQ] = ACTIONS(1458), - [anon_sym_GT_EQ] = ACTIONS(1458), - [anon_sym_LT_LT] = ACTIONS(1460), - [anon_sym_GT_GT] = ACTIONS(1460), - [anon_sym_PLUS] = ACTIONS(1462), - [anon_sym_DASH] = ACTIONS(1462), - [anon_sym_SLASH] = ACTIONS(1436), - [anon_sym_PERCENT] = ACTIONS(1436), - [anon_sym_DASH_DASH] = ACTIONS(1128), - [anon_sym_PLUS_PLUS] = ACTIONS(1128), - [anon_sym_DOT] = ACTIONS(1130), - [anon_sym_DASH_GT] = ACTIONS(1130), + [anon_sym_SEMI] = ACTIONS(3490), + [anon_sym_LPAREN2] = ACTIONS(1089), + [anon_sym_STAR] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(1429), + [anon_sym_QMARK] = ACTIONS(1431), + [anon_sym_STAR_EQ] = ACTIONS(1433), + [anon_sym_SLASH_EQ] = ACTIONS(1433), + [anon_sym_PERCENT_EQ] = ACTIONS(1433), + [anon_sym_PLUS_EQ] = ACTIONS(1433), + [anon_sym_DASH_EQ] = ACTIONS(1433), + [anon_sym_LT_LT_EQ] = ACTIONS(1433), + [anon_sym_GT_GT_EQ] = ACTIONS(1433), + [anon_sym_AMP_EQ] = ACTIONS(1433), + [anon_sym_CARET_EQ] = ACTIONS(1433), + [anon_sym_PIPE_EQ] = ACTIONS(1433), + [anon_sym_AMP] = ACTIONS(1435), + [anon_sym_PIPE_PIPE] = ACTIONS(1437), + [anon_sym_AMP_AMP] = ACTIONS(1439), + [anon_sym_PIPE] = ACTIONS(1441), + [anon_sym_CARET] = ACTIONS(1443), + [anon_sym_EQ_EQ] = ACTIONS(1445), + [anon_sym_BANG_EQ] = ACTIONS(1445), + [anon_sym_LT] = ACTIONS(1447), + [anon_sym_GT] = ACTIONS(1447), + [anon_sym_LT_EQ] = ACTIONS(1449), + [anon_sym_GT_EQ] = ACTIONS(1449), + [anon_sym_LT_LT] = ACTIONS(1451), + [anon_sym_GT_GT] = ACTIONS(1451), + [anon_sym_PLUS] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1453), + [anon_sym_SLASH] = ACTIONS(1427), + [anon_sym_PERCENT] = ACTIONS(1427), + [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_PLUS_PLUS] = ACTIONS(1121), + [anon_sym_DOT] = ACTIONS(1123), + [anon_sym_DASH_GT] = ACTIONS(1123), [sym_comment] = ACTIONS(39), }, [1254] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3224), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3224), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3224), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3224), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3224), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3224), - [sym_preproc_directive] = ACTIONS(3224), - [anon_sym_SEMI] = ACTIONS(3226), - [anon_sym_typedef] = ACTIONS(3224), - [anon_sym_extern] = ACTIONS(3224), - [anon_sym_LBRACE] = ACTIONS(3226), - [anon_sym_LPAREN2] = ACTIONS(3226), - [anon_sym_STAR] = ACTIONS(3226), - [anon_sym_static] = ACTIONS(3224), - [anon_sym_auto] = ACTIONS(3224), - [anon_sym_register] = ACTIONS(3224), - [anon_sym_inline] = ACTIONS(3224), - [anon_sym_const] = ACTIONS(3224), - [anon_sym_restrict] = ACTIONS(3224), - [anon_sym_volatile] = ACTIONS(3224), - [anon_sym__Atomic] = ACTIONS(3224), - [anon_sym_unsigned] = ACTIONS(3224), - [anon_sym_long] = ACTIONS(3224), - [anon_sym_short] = ACTIONS(3224), - [sym_primitive_type] = ACTIONS(3224), - [anon_sym_enum] = ACTIONS(3224), - [anon_sym_struct] = ACTIONS(3224), - [anon_sym_union] = ACTIONS(3224), - [anon_sym_if] = ACTIONS(3224), - [anon_sym_else] = ACTIONS(3224), - [anon_sym_switch] = ACTIONS(3224), - [anon_sym_case] = ACTIONS(3224), - [anon_sym_default] = ACTIONS(3224), - [anon_sym_while] = ACTIONS(3224), - [anon_sym_do] = ACTIONS(3224), - [anon_sym_for] = ACTIONS(3224), - [anon_sym_return] = ACTIONS(3224), - [anon_sym_break] = ACTIONS(3224), - [anon_sym_continue] = ACTIONS(3224), - [anon_sym_goto] = ACTIONS(3224), - [anon_sym_AMP] = ACTIONS(3226), - [anon_sym_BANG] = ACTIONS(3226), - [anon_sym_TILDE] = ACTIONS(3226), - [anon_sym_PLUS] = ACTIONS(3224), - [anon_sym_DASH] = ACTIONS(3224), - [anon_sym_DASH_DASH] = ACTIONS(3226), - [anon_sym_PLUS_PLUS] = ACTIONS(3226), - [anon_sym_sizeof] = ACTIONS(3224), - [sym_number_literal] = ACTIONS(3226), - [anon_sym_SQUOTE] = ACTIONS(3226), - [anon_sym_DQUOTE] = ACTIONS(3226), - [sym_true] = ACTIONS(3224), - [sym_false] = ACTIONS(3224), - [sym_null] = ACTIONS(3224), - [sym_identifier] = ACTIONS(3224), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3213), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3213), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3213), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3213), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3213), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3213), + [sym_preproc_directive] = ACTIONS(3213), + [anon_sym_SEMI] = ACTIONS(3215), + [anon_sym_typedef] = ACTIONS(3213), + [anon_sym_extern] = ACTIONS(3213), + [anon_sym_LBRACE] = ACTIONS(3215), + [anon_sym_LPAREN2] = ACTIONS(3215), + [anon_sym_STAR] = ACTIONS(3215), + [anon_sym_static] = ACTIONS(3213), + [anon_sym_auto] = ACTIONS(3213), + [anon_sym_register] = ACTIONS(3213), + [anon_sym_inline] = ACTIONS(3213), + [anon_sym_const] = ACTIONS(3213), + [anon_sym_restrict] = ACTIONS(3213), + [anon_sym_volatile] = ACTIONS(3213), + [anon_sym__Atomic] = ACTIONS(3213), + [anon_sym_unsigned] = ACTIONS(3213), + [anon_sym_long] = ACTIONS(3213), + [anon_sym_short] = ACTIONS(3213), + [sym_primitive_type] = ACTIONS(3213), + [anon_sym_enum] = ACTIONS(3213), + [anon_sym_struct] = ACTIONS(3213), + [anon_sym_union] = ACTIONS(3213), + [anon_sym_if] = ACTIONS(3213), + [anon_sym_else] = ACTIONS(3213), + [anon_sym_switch] = ACTIONS(3213), + [anon_sym_case] = ACTIONS(3213), + [anon_sym_default] = ACTIONS(3213), + [anon_sym_while] = ACTIONS(3213), + [anon_sym_do] = ACTIONS(3213), + [anon_sym_for] = ACTIONS(3213), + [anon_sym_return] = ACTIONS(3213), + [anon_sym_break] = ACTIONS(3213), + [anon_sym_continue] = ACTIONS(3213), + [anon_sym_goto] = ACTIONS(3213), + [anon_sym_AMP] = ACTIONS(3215), + [anon_sym_BANG] = ACTIONS(3215), + [anon_sym_TILDE] = ACTIONS(3215), + [anon_sym_PLUS] = ACTIONS(3213), + [anon_sym_DASH] = ACTIONS(3213), + [anon_sym_DASH_DASH] = ACTIONS(3215), + [anon_sym_PLUS_PLUS] = ACTIONS(3215), + [anon_sym_sizeof] = ACTIONS(3213), + [sym_number_literal] = ACTIONS(3215), + [anon_sym_SQUOTE] = ACTIONS(3215), + [anon_sym_DQUOTE] = ACTIONS(3215), + [sym_true] = ACTIONS(3213), + [sym_false] = ACTIONS(3213), + [sym_null] = ACTIONS(3213), + [sym_identifier] = ACTIONS(3213), [sym_comment] = ACTIONS(39), }, [1255] = { [sym_argument_list] = STATE(465), - [anon_sym_COMMA] = ACTIONS(1556), - [anon_sym_RPAREN] = ACTIONS(3503), - [anon_sym_LPAREN2] = ACTIONS(1096), - [anon_sym_STAR] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1100), - [anon_sym_EQ] = ACTIONS(1562), - [anon_sym_QMARK] = ACTIONS(1564), - [anon_sym_STAR_EQ] = ACTIONS(1566), - [anon_sym_SLASH_EQ] = ACTIONS(1566), - [anon_sym_PERCENT_EQ] = ACTIONS(1566), - [anon_sym_PLUS_EQ] = ACTIONS(1566), - [anon_sym_DASH_EQ] = ACTIONS(1566), - [anon_sym_LT_LT_EQ] = ACTIONS(1566), - [anon_sym_GT_GT_EQ] = ACTIONS(1566), - [anon_sym_AMP_EQ] = ACTIONS(1566), - [anon_sym_CARET_EQ] = ACTIONS(1566), - [anon_sym_PIPE_EQ] = ACTIONS(1566), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_PIPE_PIPE] = ACTIONS(1570), - [anon_sym_AMP_AMP] = ACTIONS(1572), - [anon_sym_PIPE] = ACTIONS(1574), - [anon_sym_CARET] = ACTIONS(1576), - [anon_sym_EQ_EQ] = ACTIONS(1578), - [anon_sym_BANG_EQ] = ACTIONS(1578), - [anon_sym_LT] = ACTIONS(1580), - [anon_sym_GT] = ACTIONS(1580), - [anon_sym_LT_EQ] = ACTIONS(1582), - [anon_sym_GT_EQ] = ACTIONS(1582), - [anon_sym_LT_LT] = ACTIONS(1584), - [anon_sym_GT_GT] = ACTIONS(1584), - [anon_sym_PLUS] = ACTIONS(1586), - [anon_sym_DASH] = ACTIONS(1586), - [anon_sym_SLASH] = ACTIONS(1560), - [anon_sym_PERCENT] = ACTIONS(1560), - [anon_sym_DASH_DASH] = ACTIONS(1128), - [anon_sym_PLUS_PLUS] = ACTIONS(1128), - [anon_sym_DOT] = ACTIONS(1130), - [anon_sym_DASH_GT] = ACTIONS(1130), + [anon_sym_COMMA] = ACTIONS(1545), + [anon_sym_RPAREN] = ACTIONS(3492), + [anon_sym_LPAREN2] = ACTIONS(1089), + [anon_sym_STAR] = ACTIONS(1549), + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(1551), + [anon_sym_QMARK] = ACTIONS(1553), + [anon_sym_STAR_EQ] = ACTIONS(1555), + [anon_sym_SLASH_EQ] = ACTIONS(1555), + [anon_sym_PERCENT_EQ] = ACTIONS(1555), + [anon_sym_PLUS_EQ] = ACTIONS(1555), + [anon_sym_DASH_EQ] = ACTIONS(1555), + [anon_sym_LT_LT_EQ] = ACTIONS(1555), + [anon_sym_GT_GT_EQ] = ACTIONS(1555), + [anon_sym_AMP_EQ] = ACTIONS(1555), + [anon_sym_CARET_EQ] = ACTIONS(1555), + [anon_sym_PIPE_EQ] = ACTIONS(1555), + [anon_sym_AMP] = ACTIONS(1557), + [anon_sym_PIPE_PIPE] = ACTIONS(1559), + [anon_sym_AMP_AMP] = ACTIONS(1561), + [anon_sym_PIPE] = ACTIONS(1563), + [anon_sym_CARET] = ACTIONS(1565), + [anon_sym_EQ_EQ] = ACTIONS(1567), + [anon_sym_BANG_EQ] = ACTIONS(1567), + [anon_sym_LT] = ACTIONS(1569), + [anon_sym_GT] = ACTIONS(1569), + [anon_sym_LT_EQ] = ACTIONS(1571), + [anon_sym_GT_EQ] = ACTIONS(1571), + [anon_sym_LT_LT] = ACTIONS(1573), + [anon_sym_GT_GT] = ACTIONS(1573), + [anon_sym_PLUS] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(1575), + [anon_sym_SLASH] = ACTIONS(1549), + [anon_sym_PERCENT] = ACTIONS(1549), + [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_PLUS_PLUS] = ACTIONS(1121), + [anon_sym_DOT] = ACTIONS(1123), + [anon_sym_DASH_GT] = ACTIONS(1123), [sym_comment] = ACTIONS(39), }, [1256] = { - [anon_sym_RPAREN] = ACTIONS(3503), + [anon_sym_RPAREN] = ACTIONS(3492), [sym_comment] = ACTIONS(39), }, [1257] = { @@ -50872,79 +50891,79 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(872), [sym_concatenated_string] = STATE(872), [sym_string_literal] = STATE(253), - [anon_sym_SEMI] = ACTIONS(2254), - [anon_sym_LBRACE] = ACTIONS(1273), - [anon_sym_LPAREN2] = ACTIONS(554), - [anon_sym_STAR] = ACTIONS(556), - [anon_sym_if] = ACTIONS(2256), - [anon_sym_switch] = ACTIONS(2258), - [anon_sym_case] = ACTIONS(2260), - [anon_sym_default] = ACTIONS(2262), - [anon_sym_while] = ACTIONS(2264), - [anon_sym_do] = ACTIONS(2266), - [anon_sym_for] = ACTIONS(2268), - [anon_sym_return] = ACTIONS(2270), - [anon_sym_break] = ACTIONS(2272), - [anon_sym_continue] = ACTIONS(2274), - [anon_sym_goto] = ACTIONS(2276), - [anon_sym_AMP] = ACTIONS(556), - [anon_sym_BANG] = ACTIONS(580), - [anon_sym_TILDE] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_DASH_DASH] = ACTIONS(586), - [anon_sym_PLUS_PLUS] = ACTIONS(586), - [anon_sym_sizeof] = ACTIONS(588), - [sym_number_literal] = ACTIONS(2278), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2280), - [sym_false] = ACTIONS(2280), - [sym_null] = ACTIONS(2280), - [sym_identifier] = ACTIONS(3067), + [anon_sym_SEMI] = ACTIONS(2243), + [anon_sym_LBRACE] = ACTIONS(1264), + [anon_sym_LPAREN2] = ACTIONS(550), + [anon_sym_STAR] = ACTIONS(552), + [anon_sym_if] = ACTIONS(2245), + [anon_sym_switch] = ACTIONS(2247), + [anon_sym_case] = ACTIONS(2249), + [anon_sym_default] = ACTIONS(2251), + [anon_sym_while] = ACTIONS(2253), + [anon_sym_do] = ACTIONS(2255), + [anon_sym_for] = ACTIONS(2257), + [anon_sym_return] = ACTIONS(2259), + [anon_sym_break] = ACTIONS(2261), + [anon_sym_continue] = ACTIONS(2263), + [anon_sym_goto] = ACTIONS(2265), + [anon_sym_AMP] = ACTIONS(552), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_TILDE] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(580), + [anon_sym_DASH] = ACTIONS(580), + [anon_sym_DASH_DASH] = ACTIONS(582), + [anon_sym_PLUS_PLUS] = ACTIONS(582), + [anon_sym_sizeof] = ACTIONS(584), + [sym_number_literal] = ACTIONS(2267), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(2269), + [sym_false] = ACTIONS(2269), + [sym_null] = ACTIONS(2269), + [sym_identifier] = ACTIONS(3056), [sym_comment] = ACTIONS(39), }, [1258] = { [sym_argument_list] = STATE(465), [aux_sym_for_statement_repeat1] = STATE(1292), - [anon_sym_COMMA] = ACTIONS(2530), - [anon_sym_RPAREN] = ACTIONS(3505), - [anon_sym_LPAREN2] = ACTIONS(1096), - [anon_sym_STAR] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1100), - [anon_sym_EQ] = ACTIONS(1562), - [anon_sym_QMARK] = ACTIONS(1564), - [anon_sym_STAR_EQ] = ACTIONS(1566), - [anon_sym_SLASH_EQ] = ACTIONS(1566), - [anon_sym_PERCENT_EQ] = ACTIONS(1566), - [anon_sym_PLUS_EQ] = ACTIONS(1566), - [anon_sym_DASH_EQ] = ACTIONS(1566), - [anon_sym_LT_LT_EQ] = ACTIONS(1566), - [anon_sym_GT_GT_EQ] = ACTIONS(1566), - [anon_sym_AMP_EQ] = ACTIONS(1566), - [anon_sym_CARET_EQ] = ACTIONS(1566), - [anon_sym_PIPE_EQ] = ACTIONS(1566), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_PIPE_PIPE] = ACTIONS(1570), - [anon_sym_AMP_AMP] = ACTIONS(1572), - [anon_sym_PIPE] = ACTIONS(1574), - [anon_sym_CARET] = ACTIONS(1576), - [anon_sym_EQ_EQ] = ACTIONS(1578), - [anon_sym_BANG_EQ] = ACTIONS(1578), - [anon_sym_LT] = ACTIONS(1580), - [anon_sym_GT] = ACTIONS(1580), - [anon_sym_LT_EQ] = ACTIONS(1582), - [anon_sym_GT_EQ] = ACTIONS(1582), - [anon_sym_LT_LT] = ACTIONS(1584), - [anon_sym_GT_GT] = ACTIONS(1584), - [anon_sym_PLUS] = ACTIONS(1586), - [anon_sym_DASH] = ACTIONS(1586), - [anon_sym_SLASH] = ACTIONS(1560), - [anon_sym_PERCENT] = ACTIONS(1560), - [anon_sym_DASH_DASH] = ACTIONS(1128), - [anon_sym_PLUS_PLUS] = ACTIONS(1128), - [anon_sym_DOT] = ACTIONS(1130), - [anon_sym_DASH_GT] = ACTIONS(1130), + [anon_sym_COMMA] = ACTIONS(2519), + [anon_sym_RPAREN] = ACTIONS(3494), + [anon_sym_LPAREN2] = ACTIONS(1089), + [anon_sym_STAR] = ACTIONS(1549), + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(1551), + [anon_sym_QMARK] = ACTIONS(1553), + [anon_sym_STAR_EQ] = ACTIONS(1555), + [anon_sym_SLASH_EQ] = ACTIONS(1555), + [anon_sym_PERCENT_EQ] = ACTIONS(1555), + [anon_sym_PLUS_EQ] = ACTIONS(1555), + [anon_sym_DASH_EQ] = ACTIONS(1555), + [anon_sym_LT_LT_EQ] = ACTIONS(1555), + [anon_sym_GT_GT_EQ] = ACTIONS(1555), + [anon_sym_AMP_EQ] = ACTIONS(1555), + [anon_sym_CARET_EQ] = ACTIONS(1555), + [anon_sym_PIPE_EQ] = ACTIONS(1555), + [anon_sym_AMP] = ACTIONS(1557), + [anon_sym_PIPE_PIPE] = ACTIONS(1559), + [anon_sym_AMP_AMP] = ACTIONS(1561), + [anon_sym_PIPE] = ACTIONS(1563), + [anon_sym_CARET] = ACTIONS(1565), + [anon_sym_EQ_EQ] = ACTIONS(1567), + [anon_sym_BANG_EQ] = ACTIONS(1567), + [anon_sym_LT] = ACTIONS(1569), + [anon_sym_GT] = ACTIONS(1569), + [anon_sym_LT_EQ] = ACTIONS(1571), + [anon_sym_GT_EQ] = ACTIONS(1571), + [anon_sym_LT_LT] = ACTIONS(1573), + [anon_sym_GT_GT] = ACTIONS(1573), + [anon_sym_PLUS] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(1575), + [anon_sym_SLASH] = ACTIONS(1549), + [anon_sym_PERCENT] = ACTIONS(1549), + [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_PLUS_PLUS] = ACTIONS(1121), + [anon_sym_DOT] = ACTIONS(1123), + [anon_sym_DASH_GT] = ACTIONS(1123), [sym_comment] = ACTIONS(39), }, [1259] = { @@ -50968,65 +50987,65 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(1293), [sym_concatenated_string] = STATE(1293), [sym_string_literal] = STATE(409), - [anon_sym_RPAREN] = ACTIONS(3505), - [anon_sym_LPAREN2] = ACTIONS(970), - [anon_sym_STAR] = ACTIONS(972), - [anon_sym_AMP] = ACTIONS(972), - [anon_sym_BANG] = ACTIONS(974), - [anon_sym_TILDE] = ACTIONS(976), - [anon_sym_PLUS] = ACTIONS(978), - [anon_sym_DASH] = ACTIONS(978), - [anon_sym_DASH_DASH] = ACTIONS(980), - [anon_sym_PLUS_PLUS] = ACTIONS(980), - [anon_sym_sizeof] = ACTIONS(982), - [sym_number_literal] = ACTIONS(3507), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(3509), - [sym_false] = ACTIONS(3509), - [sym_null] = ACTIONS(3509), - [sym_identifier] = ACTIONS(3509), + [anon_sym_RPAREN] = ACTIONS(3494), + [anon_sym_LPAREN2] = ACTIONS(961), + [anon_sym_STAR] = ACTIONS(963), + [anon_sym_AMP] = ACTIONS(963), + [anon_sym_BANG] = ACTIONS(965), + [anon_sym_TILDE] = ACTIONS(967), + [anon_sym_PLUS] = ACTIONS(969), + [anon_sym_DASH] = ACTIONS(969), + [anon_sym_DASH_DASH] = ACTIONS(971), + [anon_sym_PLUS_PLUS] = ACTIONS(971), + [anon_sym_sizeof] = ACTIONS(973), + [sym_number_literal] = ACTIONS(3496), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(3498), + [sym_false] = ACTIONS(3498), + [sym_null] = ACTIONS(3498), + [sym_identifier] = ACTIONS(3498), [sym_comment] = ACTIONS(39), }, [1260] = { [sym_argument_list] = STATE(465), - [anon_sym_SEMI] = ACTIONS(3511), - [anon_sym_LPAREN2] = ACTIONS(1096), - [anon_sym_STAR] = ACTIONS(1436), - [anon_sym_LBRACK] = ACTIONS(1100), - [anon_sym_EQ] = ACTIONS(1438), - [anon_sym_QMARK] = ACTIONS(1440), - [anon_sym_STAR_EQ] = ACTIONS(1442), - [anon_sym_SLASH_EQ] = ACTIONS(1442), - [anon_sym_PERCENT_EQ] = ACTIONS(1442), - [anon_sym_PLUS_EQ] = ACTIONS(1442), - [anon_sym_DASH_EQ] = ACTIONS(1442), - [anon_sym_LT_LT_EQ] = ACTIONS(1442), - [anon_sym_GT_GT_EQ] = ACTIONS(1442), - [anon_sym_AMP_EQ] = ACTIONS(1442), - [anon_sym_CARET_EQ] = ACTIONS(1442), - [anon_sym_PIPE_EQ] = ACTIONS(1442), - [anon_sym_AMP] = ACTIONS(1444), - [anon_sym_PIPE_PIPE] = ACTIONS(1446), - [anon_sym_AMP_AMP] = ACTIONS(1448), - [anon_sym_PIPE] = ACTIONS(1450), - [anon_sym_CARET] = ACTIONS(1452), - [anon_sym_EQ_EQ] = ACTIONS(1454), - [anon_sym_BANG_EQ] = ACTIONS(1454), - [anon_sym_LT] = ACTIONS(1456), - [anon_sym_GT] = ACTIONS(1456), - [anon_sym_LT_EQ] = ACTIONS(1458), - [anon_sym_GT_EQ] = ACTIONS(1458), - [anon_sym_LT_LT] = ACTIONS(1460), - [anon_sym_GT_GT] = ACTIONS(1460), - [anon_sym_PLUS] = ACTIONS(1462), - [anon_sym_DASH] = ACTIONS(1462), - [anon_sym_SLASH] = ACTIONS(1436), - [anon_sym_PERCENT] = ACTIONS(1436), - [anon_sym_DASH_DASH] = ACTIONS(1128), - [anon_sym_PLUS_PLUS] = ACTIONS(1128), - [anon_sym_DOT] = ACTIONS(1130), - [anon_sym_DASH_GT] = ACTIONS(1130), + [anon_sym_SEMI] = ACTIONS(3500), + [anon_sym_LPAREN2] = ACTIONS(1089), + [anon_sym_STAR] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(1429), + [anon_sym_QMARK] = ACTIONS(1431), + [anon_sym_STAR_EQ] = ACTIONS(1433), + [anon_sym_SLASH_EQ] = ACTIONS(1433), + [anon_sym_PERCENT_EQ] = ACTIONS(1433), + [anon_sym_PLUS_EQ] = ACTIONS(1433), + [anon_sym_DASH_EQ] = ACTIONS(1433), + [anon_sym_LT_LT_EQ] = ACTIONS(1433), + [anon_sym_GT_GT_EQ] = ACTIONS(1433), + [anon_sym_AMP_EQ] = ACTIONS(1433), + [anon_sym_CARET_EQ] = ACTIONS(1433), + [anon_sym_PIPE_EQ] = ACTIONS(1433), + [anon_sym_AMP] = ACTIONS(1435), + [anon_sym_PIPE_PIPE] = ACTIONS(1437), + [anon_sym_AMP_AMP] = ACTIONS(1439), + [anon_sym_PIPE] = ACTIONS(1441), + [anon_sym_CARET] = ACTIONS(1443), + [anon_sym_EQ_EQ] = ACTIONS(1445), + [anon_sym_BANG_EQ] = ACTIONS(1445), + [anon_sym_LT] = ACTIONS(1447), + [anon_sym_GT] = ACTIONS(1447), + [anon_sym_LT_EQ] = ACTIONS(1449), + [anon_sym_GT_EQ] = ACTIONS(1449), + [anon_sym_LT_LT] = ACTIONS(1451), + [anon_sym_GT_GT] = ACTIONS(1451), + [anon_sym_PLUS] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1453), + [anon_sym_SLASH] = ACTIONS(1427), + [anon_sym_PERCENT] = ACTIONS(1427), + [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_PLUS_PLUS] = ACTIONS(1121), + [anon_sym_DOT] = ACTIONS(1123), + [anon_sym_DASH_GT] = ACTIONS(1123), [sym_comment] = ACTIONS(39), }, [1261] = { @@ -51064,36 +51083,36 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(649), [sym_concatenated_string] = STATE(649), [sym_string_literal] = STATE(253), - [anon_sym_SEMI] = ACTIONS(1516), - [anon_sym_LBRACE] = ACTIONS(734), - [anon_sym_LPAREN2] = ACTIONS(554), - [anon_sym_STAR] = ACTIONS(556), - [anon_sym_if] = ACTIONS(2733), - [anon_sym_switch] = ACTIONS(2735), - [anon_sym_case] = ACTIONS(2737), - [anon_sym_default] = ACTIONS(2739), - [anon_sym_while] = ACTIONS(2741), - [anon_sym_do] = ACTIONS(1528), - [anon_sym_for] = ACTIONS(2743), - [anon_sym_return] = ACTIONS(1532), - [anon_sym_break] = ACTIONS(1534), - [anon_sym_continue] = ACTIONS(1536), - [anon_sym_goto] = ACTIONS(1538), - [anon_sym_AMP] = ACTIONS(556), - [anon_sym_BANG] = ACTIONS(580), - [anon_sym_TILDE] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_DASH_DASH] = ACTIONS(586), - [anon_sym_PLUS_PLUS] = ACTIONS(586), - [anon_sym_sizeof] = ACTIONS(588), - [sym_number_literal] = ACTIONS(1540), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1542), - [sym_false] = ACTIONS(1542), - [sym_null] = ACTIONS(1542), - [sym_identifier] = ACTIONS(2745), + [anon_sym_SEMI] = ACTIONS(1505), + [anon_sym_LBRACE] = ACTIONS(725), + [anon_sym_LPAREN2] = ACTIONS(550), + [anon_sym_STAR] = ACTIONS(552), + [anon_sym_if] = ACTIONS(2722), + [anon_sym_switch] = ACTIONS(2724), + [anon_sym_case] = ACTIONS(2726), + [anon_sym_default] = ACTIONS(2728), + [anon_sym_while] = ACTIONS(2730), + [anon_sym_do] = ACTIONS(1517), + [anon_sym_for] = ACTIONS(2732), + [anon_sym_return] = ACTIONS(1521), + [anon_sym_break] = ACTIONS(1523), + [anon_sym_continue] = ACTIONS(1525), + [anon_sym_goto] = ACTIONS(1527), + [anon_sym_AMP] = ACTIONS(552), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_TILDE] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(580), + [anon_sym_DASH] = ACTIONS(580), + [anon_sym_DASH_DASH] = ACTIONS(582), + [anon_sym_PLUS_PLUS] = ACTIONS(582), + [anon_sym_sizeof] = ACTIONS(584), + [sym_number_literal] = ACTIONS(1529), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_null] = ACTIONS(1531), + [sym_identifier] = ACTIONS(2734), [sym_comment] = ACTIONS(39), }, [1262] = { @@ -51117,65 +51136,65 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(1296), [sym_concatenated_string] = STATE(1296), [sym_string_literal] = STATE(409), - [anon_sym_RPAREN] = ACTIONS(3513), - [anon_sym_LPAREN2] = ACTIONS(970), - [anon_sym_STAR] = ACTIONS(972), - [anon_sym_AMP] = ACTIONS(972), - [anon_sym_BANG] = ACTIONS(974), - [anon_sym_TILDE] = ACTIONS(976), - [anon_sym_PLUS] = ACTIONS(978), - [anon_sym_DASH] = ACTIONS(978), - [anon_sym_DASH_DASH] = ACTIONS(980), - [anon_sym_PLUS_PLUS] = ACTIONS(980), - [anon_sym_sizeof] = ACTIONS(982), - [sym_number_literal] = ACTIONS(3515), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(3517), - [sym_false] = ACTIONS(3517), - [sym_null] = ACTIONS(3517), - [sym_identifier] = ACTIONS(3517), + [anon_sym_RPAREN] = ACTIONS(3502), + [anon_sym_LPAREN2] = ACTIONS(961), + [anon_sym_STAR] = ACTIONS(963), + [anon_sym_AMP] = ACTIONS(963), + [anon_sym_BANG] = ACTIONS(965), + [anon_sym_TILDE] = ACTIONS(967), + [anon_sym_PLUS] = ACTIONS(969), + [anon_sym_DASH] = ACTIONS(969), + [anon_sym_DASH_DASH] = ACTIONS(971), + [anon_sym_PLUS_PLUS] = ACTIONS(971), + [anon_sym_sizeof] = ACTIONS(973), + [sym_number_literal] = ACTIONS(3504), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(3506), + [sym_false] = ACTIONS(3506), + [sym_null] = ACTIONS(3506), + [sym_identifier] = ACTIONS(3506), [sym_comment] = ACTIONS(39), }, [1263] = { [sym_argument_list] = STATE(465), - [anon_sym_SEMI] = ACTIONS(3519), - [anon_sym_LPAREN2] = ACTIONS(1096), - [anon_sym_STAR] = ACTIONS(1436), - [anon_sym_LBRACK] = ACTIONS(1100), - [anon_sym_EQ] = ACTIONS(1438), - [anon_sym_QMARK] = ACTIONS(1440), - [anon_sym_STAR_EQ] = ACTIONS(1442), - [anon_sym_SLASH_EQ] = ACTIONS(1442), - [anon_sym_PERCENT_EQ] = ACTIONS(1442), - [anon_sym_PLUS_EQ] = ACTIONS(1442), - [anon_sym_DASH_EQ] = ACTIONS(1442), - [anon_sym_LT_LT_EQ] = ACTIONS(1442), - [anon_sym_GT_GT_EQ] = ACTIONS(1442), - [anon_sym_AMP_EQ] = ACTIONS(1442), - [anon_sym_CARET_EQ] = ACTIONS(1442), - [anon_sym_PIPE_EQ] = ACTIONS(1442), - [anon_sym_AMP] = ACTIONS(1444), - [anon_sym_PIPE_PIPE] = ACTIONS(1446), - [anon_sym_AMP_AMP] = ACTIONS(1448), - [anon_sym_PIPE] = ACTIONS(1450), - [anon_sym_CARET] = ACTIONS(1452), - [anon_sym_EQ_EQ] = ACTIONS(1454), - [anon_sym_BANG_EQ] = ACTIONS(1454), - [anon_sym_LT] = ACTIONS(1456), - [anon_sym_GT] = ACTIONS(1456), - [anon_sym_LT_EQ] = ACTIONS(1458), - [anon_sym_GT_EQ] = ACTIONS(1458), - [anon_sym_LT_LT] = ACTIONS(1460), - [anon_sym_GT_GT] = ACTIONS(1460), - [anon_sym_PLUS] = ACTIONS(1462), - [anon_sym_DASH] = ACTIONS(1462), - [anon_sym_SLASH] = ACTIONS(1436), - [anon_sym_PERCENT] = ACTIONS(1436), - [anon_sym_DASH_DASH] = ACTIONS(1128), - [anon_sym_PLUS_PLUS] = ACTIONS(1128), - [anon_sym_DOT] = ACTIONS(1130), - [anon_sym_DASH_GT] = ACTIONS(1130), + [anon_sym_SEMI] = ACTIONS(3508), + [anon_sym_LPAREN2] = ACTIONS(1089), + [anon_sym_STAR] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(1429), + [anon_sym_QMARK] = ACTIONS(1431), + [anon_sym_STAR_EQ] = ACTIONS(1433), + [anon_sym_SLASH_EQ] = ACTIONS(1433), + [anon_sym_PERCENT_EQ] = ACTIONS(1433), + [anon_sym_PLUS_EQ] = ACTIONS(1433), + [anon_sym_DASH_EQ] = ACTIONS(1433), + [anon_sym_LT_LT_EQ] = ACTIONS(1433), + [anon_sym_GT_GT_EQ] = ACTIONS(1433), + [anon_sym_AMP_EQ] = ACTIONS(1433), + [anon_sym_CARET_EQ] = ACTIONS(1433), + [anon_sym_PIPE_EQ] = ACTIONS(1433), + [anon_sym_AMP] = ACTIONS(1435), + [anon_sym_PIPE_PIPE] = ACTIONS(1437), + [anon_sym_AMP_AMP] = ACTIONS(1439), + [anon_sym_PIPE] = ACTIONS(1441), + [anon_sym_CARET] = ACTIONS(1443), + [anon_sym_EQ_EQ] = ACTIONS(1445), + [anon_sym_BANG_EQ] = ACTIONS(1445), + [anon_sym_LT] = ACTIONS(1447), + [anon_sym_GT] = ACTIONS(1447), + [anon_sym_LT_EQ] = ACTIONS(1449), + [anon_sym_GT_EQ] = ACTIONS(1449), + [anon_sym_LT_LT] = ACTIONS(1451), + [anon_sym_GT_GT] = ACTIONS(1451), + [anon_sym_PLUS] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1453), + [anon_sym_SLASH] = ACTIONS(1427), + [anon_sym_PERCENT] = ACTIONS(1427), + [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_PLUS_PLUS] = ACTIONS(1121), + [anon_sym_DOT] = ACTIONS(1123), + [anon_sym_DASH_GT] = ACTIONS(1123), [sym_comment] = ACTIONS(39), }, [1264] = { @@ -51199,144 +51218,144 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(1298), [sym_concatenated_string] = STATE(1298), [sym_string_literal] = STATE(376), - [anon_sym_SEMI] = ACTIONS(3519), - [anon_sym_LPAREN2] = ACTIONS(847), - [anon_sym_STAR] = ACTIONS(849), - [anon_sym_AMP] = ACTIONS(849), - [anon_sym_BANG] = ACTIONS(851), - [anon_sym_TILDE] = ACTIONS(853), - [anon_sym_PLUS] = ACTIONS(855), - [anon_sym_DASH] = ACTIONS(855), - [anon_sym_DASH_DASH] = ACTIONS(857), - [anon_sym_PLUS_PLUS] = ACTIONS(857), - [anon_sym_sizeof] = ACTIONS(859), - [sym_number_literal] = ACTIONS(3521), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(3523), - [sym_false] = ACTIONS(3523), - [sym_null] = ACTIONS(3523), - [sym_identifier] = ACTIONS(3523), + [anon_sym_SEMI] = ACTIONS(3508), + [anon_sym_LPAREN2] = ACTIONS(838), + [anon_sym_STAR] = ACTIONS(840), + [anon_sym_AMP] = ACTIONS(840), + [anon_sym_BANG] = ACTIONS(842), + [anon_sym_TILDE] = ACTIONS(844), + [anon_sym_PLUS] = ACTIONS(846), + [anon_sym_DASH] = ACTIONS(846), + [anon_sym_DASH_DASH] = ACTIONS(848), + [anon_sym_PLUS_PLUS] = ACTIONS(848), + [anon_sym_sizeof] = ACTIONS(850), + [sym_number_literal] = ACTIONS(3510), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(3512), + [sym_false] = ACTIONS(3512), + [sym_null] = ACTIONS(3512), + [sym_identifier] = ACTIONS(3512), [sym_comment] = ACTIONS(39), }, [1265] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2346), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2346), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2346), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2346), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2346), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2346), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2346), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2346), - [sym_preproc_directive] = ACTIONS(2346), - [anon_sym_SEMI] = ACTIONS(2344), - [anon_sym_typedef] = ACTIONS(2346), - [anon_sym_extern] = ACTIONS(2346), - [anon_sym_LBRACE] = ACTIONS(2344), - [anon_sym_LPAREN2] = ACTIONS(2344), - [anon_sym_STAR] = ACTIONS(2344), - [anon_sym_static] = ACTIONS(2346), - [anon_sym_auto] = ACTIONS(2346), - [anon_sym_register] = ACTIONS(2346), - [anon_sym_inline] = ACTIONS(2346), - [anon_sym_const] = ACTIONS(2346), - [anon_sym_restrict] = ACTIONS(2346), - [anon_sym_volatile] = ACTIONS(2346), - [anon_sym__Atomic] = ACTIONS(2346), - [anon_sym_unsigned] = ACTIONS(2346), - [anon_sym_long] = ACTIONS(2346), - [anon_sym_short] = ACTIONS(2346), - [sym_primitive_type] = ACTIONS(2346), - [anon_sym_enum] = ACTIONS(2346), - [anon_sym_struct] = ACTIONS(2346), - [anon_sym_union] = ACTIONS(2346), - [anon_sym_if] = ACTIONS(2346), - [anon_sym_else] = ACTIONS(2346), - [anon_sym_switch] = ACTIONS(2346), - [anon_sym_case] = ACTIONS(2346), - [anon_sym_default] = ACTIONS(2346), - [anon_sym_while] = ACTIONS(2346), - [anon_sym_do] = ACTIONS(2346), - [anon_sym_for] = ACTIONS(2346), - [anon_sym_return] = ACTIONS(2346), - [anon_sym_break] = ACTIONS(2346), - [anon_sym_continue] = ACTIONS(2346), - [anon_sym_goto] = ACTIONS(2346), - [anon_sym_AMP] = ACTIONS(2344), - [anon_sym_BANG] = ACTIONS(2344), - [anon_sym_TILDE] = ACTIONS(2344), - [anon_sym_PLUS] = ACTIONS(2346), - [anon_sym_DASH] = ACTIONS(2346), - [anon_sym_DASH_DASH] = ACTIONS(2344), - [anon_sym_PLUS_PLUS] = ACTIONS(2344), - [anon_sym_sizeof] = ACTIONS(2346), - [sym_number_literal] = ACTIONS(2344), - [anon_sym_SQUOTE] = ACTIONS(2344), - [anon_sym_DQUOTE] = ACTIONS(2344), - [sym_true] = ACTIONS(2346), - [sym_false] = ACTIONS(2346), - [sym_null] = ACTIONS(2346), - [sym_identifier] = ACTIONS(2346), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2335), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2335), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2335), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2335), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2335), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2335), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2335), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2335), + [sym_preproc_directive] = ACTIONS(2335), + [anon_sym_SEMI] = ACTIONS(2333), + [anon_sym_typedef] = ACTIONS(2335), + [anon_sym_extern] = ACTIONS(2335), + [anon_sym_LBRACE] = ACTIONS(2333), + [anon_sym_LPAREN2] = ACTIONS(2333), + [anon_sym_STAR] = ACTIONS(2333), + [anon_sym_static] = ACTIONS(2335), + [anon_sym_auto] = ACTIONS(2335), + [anon_sym_register] = ACTIONS(2335), + [anon_sym_inline] = ACTIONS(2335), + [anon_sym_const] = ACTIONS(2335), + [anon_sym_restrict] = ACTIONS(2335), + [anon_sym_volatile] = ACTIONS(2335), + [anon_sym__Atomic] = ACTIONS(2335), + [anon_sym_unsigned] = ACTIONS(2335), + [anon_sym_long] = ACTIONS(2335), + [anon_sym_short] = ACTIONS(2335), + [sym_primitive_type] = ACTIONS(2335), + [anon_sym_enum] = ACTIONS(2335), + [anon_sym_struct] = ACTIONS(2335), + [anon_sym_union] = ACTIONS(2335), + [anon_sym_if] = ACTIONS(2335), + [anon_sym_else] = ACTIONS(2335), + [anon_sym_switch] = ACTIONS(2335), + [anon_sym_case] = ACTIONS(2335), + [anon_sym_default] = ACTIONS(2335), + [anon_sym_while] = ACTIONS(2335), + [anon_sym_do] = ACTIONS(2335), + [anon_sym_for] = ACTIONS(2335), + [anon_sym_return] = ACTIONS(2335), + [anon_sym_break] = ACTIONS(2335), + [anon_sym_continue] = ACTIONS(2335), + [anon_sym_goto] = ACTIONS(2335), + [anon_sym_AMP] = ACTIONS(2333), + [anon_sym_BANG] = ACTIONS(2333), + [anon_sym_TILDE] = ACTIONS(2333), + [anon_sym_PLUS] = ACTIONS(2335), + [anon_sym_DASH] = ACTIONS(2335), + [anon_sym_DASH_DASH] = ACTIONS(2333), + [anon_sym_PLUS_PLUS] = ACTIONS(2333), + [anon_sym_sizeof] = ACTIONS(2335), + [sym_number_literal] = ACTIONS(2333), + [anon_sym_SQUOTE] = ACTIONS(2333), + [anon_sym_DQUOTE] = ACTIONS(2333), + [sym_true] = ACTIONS(2335), + [sym_false] = ACTIONS(2335), + [sym_null] = ACTIONS(2335), + [sym_identifier] = ACTIONS(2335), [sym_comment] = ACTIONS(39), }, [1266] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3393), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3393), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3393), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3393), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3393), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3393), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(3393), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(3393), - [sym_preproc_directive] = ACTIONS(3393), - [anon_sym_SEMI] = ACTIONS(3395), - [anon_sym_typedef] = ACTIONS(3393), - [anon_sym_extern] = ACTIONS(3393), - [anon_sym_LBRACE] = ACTIONS(3395), - [anon_sym_LPAREN2] = ACTIONS(3395), - [anon_sym_STAR] = ACTIONS(3395), - [anon_sym_static] = ACTIONS(3393), - [anon_sym_auto] = ACTIONS(3393), - [anon_sym_register] = ACTIONS(3393), - [anon_sym_inline] = ACTIONS(3393), - [anon_sym_const] = ACTIONS(3393), - [anon_sym_restrict] = ACTIONS(3393), - [anon_sym_volatile] = ACTIONS(3393), - [anon_sym__Atomic] = ACTIONS(3393), - [anon_sym_unsigned] = ACTIONS(3393), - [anon_sym_long] = ACTIONS(3393), - [anon_sym_short] = ACTIONS(3393), - [sym_primitive_type] = ACTIONS(3393), - [anon_sym_enum] = ACTIONS(3393), - [anon_sym_struct] = ACTIONS(3393), - [anon_sym_union] = ACTIONS(3393), - [anon_sym_if] = ACTIONS(3393), - [anon_sym_else] = ACTIONS(3393), - [anon_sym_switch] = ACTIONS(3393), - [anon_sym_case] = ACTIONS(3393), - [anon_sym_default] = ACTIONS(3393), - [anon_sym_while] = ACTIONS(3393), - [anon_sym_do] = ACTIONS(3393), - [anon_sym_for] = ACTIONS(3393), - [anon_sym_return] = ACTIONS(3393), - [anon_sym_break] = ACTIONS(3393), - [anon_sym_continue] = ACTIONS(3393), - [anon_sym_goto] = ACTIONS(3393), - [anon_sym_AMP] = ACTIONS(3395), - [anon_sym_BANG] = ACTIONS(3395), - [anon_sym_TILDE] = ACTIONS(3395), - [anon_sym_PLUS] = ACTIONS(3393), - [anon_sym_DASH] = ACTIONS(3393), - [anon_sym_DASH_DASH] = ACTIONS(3395), - [anon_sym_PLUS_PLUS] = ACTIONS(3395), - [anon_sym_sizeof] = ACTIONS(3393), - [sym_number_literal] = ACTIONS(3395), - [anon_sym_SQUOTE] = ACTIONS(3395), - [anon_sym_DQUOTE] = ACTIONS(3395), - [sym_true] = ACTIONS(3393), - [sym_false] = ACTIONS(3393), - [sym_null] = ACTIONS(3393), - [sym_identifier] = ACTIONS(3393), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3382), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3382), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3382), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3382), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3382), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3382), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(3382), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(3382), + [sym_preproc_directive] = ACTIONS(3382), + [anon_sym_SEMI] = ACTIONS(3384), + [anon_sym_typedef] = ACTIONS(3382), + [anon_sym_extern] = ACTIONS(3382), + [anon_sym_LBRACE] = ACTIONS(3384), + [anon_sym_LPAREN2] = ACTIONS(3384), + [anon_sym_STAR] = ACTIONS(3384), + [anon_sym_static] = ACTIONS(3382), + [anon_sym_auto] = ACTIONS(3382), + [anon_sym_register] = ACTIONS(3382), + [anon_sym_inline] = ACTIONS(3382), + [anon_sym_const] = ACTIONS(3382), + [anon_sym_restrict] = ACTIONS(3382), + [anon_sym_volatile] = ACTIONS(3382), + [anon_sym__Atomic] = ACTIONS(3382), + [anon_sym_unsigned] = ACTIONS(3382), + [anon_sym_long] = ACTIONS(3382), + [anon_sym_short] = ACTIONS(3382), + [sym_primitive_type] = ACTIONS(3382), + [anon_sym_enum] = ACTIONS(3382), + [anon_sym_struct] = ACTIONS(3382), + [anon_sym_union] = ACTIONS(3382), + [anon_sym_if] = ACTIONS(3382), + [anon_sym_else] = ACTIONS(3382), + [anon_sym_switch] = ACTIONS(3382), + [anon_sym_case] = ACTIONS(3382), + [anon_sym_default] = ACTIONS(3382), + [anon_sym_while] = ACTIONS(3382), + [anon_sym_do] = ACTIONS(3382), + [anon_sym_for] = ACTIONS(3382), + [anon_sym_return] = ACTIONS(3382), + [anon_sym_break] = ACTIONS(3382), + [anon_sym_continue] = ACTIONS(3382), + [anon_sym_goto] = ACTIONS(3382), + [anon_sym_AMP] = ACTIONS(3384), + [anon_sym_BANG] = ACTIONS(3384), + [anon_sym_TILDE] = ACTIONS(3384), + [anon_sym_PLUS] = ACTIONS(3382), + [anon_sym_DASH] = ACTIONS(3382), + [anon_sym_DASH_DASH] = ACTIONS(3384), + [anon_sym_PLUS_PLUS] = ACTIONS(3384), + [anon_sym_sizeof] = ACTIONS(3382), + [sym_number_literal] = ACTIONS(3384), + [anon_sym_SQUOTE] = ACTIONS(3384), + [anon_sym_DQUOTE] = ACTIONS(3384), + [sym_true] = ACTIONS(3382), + [sym_false] = ACTIONS(3382), + [sym_null] = ACTIONS(3382), + [sym_identifier] = ACTIONS(3382), [sym_comment] = ACTIONS(39), }, [1267] = { @@ -51374,85 +51393,85 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(649), [sym_concatenated_string] = STATE(649), [sym_string_literal] = STATE(253), - [anon_sym_SEMI] = ACTIONS(1516), - [anon_sym_LBRACE] = ACTIONS(734), - [anon_sym_LPAREN2] = ACTIONS(554), - [anon_sym_STAR] = ACTIONS(556), - [anon_sym_if] = ACTIONS(1518), - [anon_sym_switch] = ACTIONS(1520), - [anon_sym_case] = ACTIONS(1522), - [anon_sym_default] = ACTIONS(1524), - [anon_sym_while] = ACTIONS(1526), - [anon_sym_do] = ACTIONS(1528), - [anon_sym_for] = ACTIONS(1530), - [anon_sym_return] = ACTIONS(1532), - [anon_sym_break] = ACTIONS(1534), - [anon_sym_continue] = ACTIONS(1536), - [anon_sym_goto] = ACTIONS(1538), - [anon_sym_AMP] = ACTIONS(556), - [anon_sym_BANG] = ACTIONS(580), - [anon_sym_TILDE] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_DASH_DASH] = ACTIONS(586), - [anon_sym_PLUS_PLUS] = ACTIONS(586), - [anon_sym_sizeof] = ACTIONS(588), - [sym_number_literal] = ACTIONS(1540), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1542), - [sym_false] = ACTIONS(1542), - [sym_null] = ACTIONS(1542), - [sym_identifier] = ACTIONS(2747), + [anon_sym_SEMI] = ACTIONS(1505), + [anon_sym_LBRACE] = ACTIONS(725), + [anon_sym_LPAREN2] = ACTIONS(550), + [anon_sym_STAR] = ACTIONS(552), + [anon_sym_if] = ACTIONS(1507), + [anon_sym_switch] = ACTIONS(1509), + [anon_sym_case] = ACTIONS(1511), + [anon_sym_default] = ACTIONS(1513), + [anon_sym_while] = ACTIONS(1515), + [anon_sym_do] = ACTIONS(1517), + [anon_sym_for] = ACTIONS(1519), + [anon_sym_return] = ACTIONS(1521), + [anon_sym_break] = ACTIONS(1523), + [anon_sym_continue] = ACTIONS(1525), + [anon_sym_goto] = ACTIONS(1527), + [anon_sym_AMP] = ACTIONS(552), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_TILDE] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(580), + [anon_sym_DASH] = ACTIONS(580), + [anon_sym_DASH_DASH] = ACTIONS(582), + [anon_sym_PLUS_PLUS] = ACTIONS(582), + [anon_sym_sizeof] = ACTIONS(584), + [sym_number_literal] = ACTIONS(1529), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_null] = ACTIONS(1531), + [sym_identifier] = ACTIONS(2736), [sym_comment] = ACTIONS(39), }, [1268] = { [aux_sym_for_statement_repeat1] = STATE(1088), - [anon_sym_COMMA] = ACTIONS(2530), - [anon_sym_RPAREN] = ACTIONS(3525), + [anon_sym_COMMA] = ACTIONS(2519), + [anon_sym_RPAREN] = ACTIONS(3514), [sym_comment] = ACTIONS(39), }, [1269] = { [sym_argument_list] = STATE(465), [aux_sym_for_statement_repeat1] = STATE(1301), - [anon_sym_COMMA] = ACTIONS(2530), - [anon_sym_RPAREN] = ACTIONS(3525), - [anon_sym_LPAREN2] = ACTIONS(1096), - [anon_sym_STAR] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1100), - [anon_sym_EQ] = ACTIONS(1562), - [anon_sym_QMARK] = ACTIONS(1564), - [anon_sym_STAR_EQ] = ACTIONS(1566), - [anon_sym_SLASH_EQ] = ACTIONS(1566), - [anon_sym_PERCENT_EQ] = ACTIONS(1566), - [anon_sym_PLUS_EQ] = ACTIONS(1566), - [anon_sym_DASH_EQ] = ACTIONS(1566), - [anon_sym_LT_LT_EQ] = ACTIONS(1566), - [anon_sym_GT_GT_EQ] = ACTIONS(1566), - [anon_sym_AMP_EQ] = ACTIONS(1566), - [anon_sym_CARET_EQ] = ACTIONS(1566), - [anon_sym_PIPE_EQ] = ACTIONS(1566), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_PIPE_PIPE] = ACTIONS(1570), - [anon_sym_AMP_AMP] = ACTIONS(1572), - [anon_sym_PIPE] = ACTIONS(1574), - [anon_sym_CARET] = ACTIONS(1576), - [anon_sym_EQ_EQ] = ACTIONS(1578), - [anon_sym_BANG_EQ] = ACTIONS(1578), - [anon_sym_LT] = ACTIONS(1580), - [anon_sym_GT] = ACTIONS(1580), - [anon_sym_LT_EQ] = ACTIONS(1582), - [anon_sym_GT_EQ] = ACTIONS(1582), - [anon_sym_LT_LT] = ACTIONS(1584), - [anon_sym_GT_GT] = ACTIONS(1584), - [anon_sym_PLUS] = ACTIONS(1586), - [anon_sym_DASH] = ACTIONS(1586), - [anon_sym_SLASH] = ACTIONS(1560), - [anon_sym_PERCENT] = ACTIONS(1560), - [anon_sym_DASH_DASH] = ACTIONS(1128), - [anon_sym_PLUS_PLUS] = ACTIONS(1128), - [anon_sym_DOT] = ACTIONS(1130), - [anon_sym_DASH_GT] = ACTIONS(1130), + [anon_sym_COMMA] = ACTIONS(2519), + [anon_sym_RPAREN] = ACTIONS(3514), + [anon_sym_LPAREN2] = ACTIONS(1089), + [anon_sym_STAR] = ACTIONS(1549), + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(1551), + [anon_sym_QMARK] = ACTIONS(1553), + [anon_sym_STAR_EQ] = ACTIONS(1555), + [anon_sym_SLASH_EQ] = ACTIONS(1555), + [anon_sym_PERCENT_EQ] = ACTIONS(1555), + [anon_sym_PLUS_EQ] = ACTIONS(1555), + [anon_sym_DASH_EQ] = ACTIONS(1555), + [anon_sym_LT_LT_EQ] = ACTIONS(1555), + [anon_sym_GT_GT_EQ] = ACTIONS(1555), + [anon_sym_AMP_EQ] = ACTIONS(1555), + [anon_sym_CARET_EQ] = ACTIONS(1555), + [anon_sym_PIPE_EQ] = ACTIONS(1555), + [anon_sym_AMP] = ACTIONS(1557), + [anon_sym_PIPE_PIPE] = ACTIONS(1559), + [anon_sym_AMP_AMP] = ACTIONS(1561), + [anon_sym_PIPE] = ACTIONS(1563), + [anon_sym_CARET] = ACTIONS(1565), + [anon_sym_EQ_EQ] = ACTIONS(1567), + [anon_sym_BANG_EQ] = ACTIONS(1567), + [anon_sym_LT] = ACTIONS(1569), + [anon_sym_GT] = ACTIONS(1569), + [anon_sym_LT_EQ] = ACTIONS(1571), + [anon_sym_GT_EQ] = ACTIONS(1571), + [anon_sym_LT_LT] = ACTIONS(1573), + [anon_sym_GT_GT] = ACTIONS(1573), + [anon_sym_PLUS] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(1575), + [anon_sym_SLASH] = ACTIONS(1549), + [anon_sym_PERCENT] = ACTIONS(1549), + [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_PLUS_PLUS] = ACTIONS(1121), + [anon_sym_DOT] = ACTIONS(1123), + [anon_sym_DASH_GT] = ACTIONS(1123), [sym_comment] = ACTIONS(39), }, [1270] = { @@ -51476,24 +51495,24 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(1302), [sym_concatenated_string] = STATE(1302), [sym_string_literal] = STATE(409), - [anon_sym_RPAREN] = ACTIONS(3525), - [anon_sym_LPAREN2] = ACTIONS(970), - [anon_sym_STAR] = ACTIONS(972), - [anon_sym_AMP] = ACTIONS(972), - [anon_sym_BANG] = ACTIONS(974), - [anon_sym_TILDE] = ACTIONS(976), - [anon_sym_PLUS] = ACTIONS(978), - [anon_sym_DASH] = ACTIONS(978), - [anon_sym_DASH_DASH] = ACTIONS(980), - [anon_sym_PLUS_PLUS] = ACTIONS(980), - [anon_sym_sizeof] = ACTIONS(982), - [sym_number_literal] = ACTIONS(3527), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(3529), - [sym_false] = ACTIONS(3529), - [sym_null] = ACTIONS(3529), - [sym_identifier] = ACTIONS(3529), + [anon_sym_RPAREN] = ACTIONS(3514), + [anon_sym_LPAREN2] = ACTIONS(961), + [anon_sym_STAR] = ACTIONS(963), + [anon_sym_AMP] = ACTIONS(963), + [anon_sym_BANG] = ACTIONS(965), + [anon_sym_TILDE] = ACTIONS(967), + [anon_sym_PLUS] = ACTIONS(969), + [anon_sym_DASH] = ACTIONS(969), + [anon_sym_DASH_DASH] = ACTIONS(971), + [anon_sym_PLUS_PLUS] = ACTIONS(971), + [anon_sym_sizeof] = ACTIONS(973), + [sym_number_literal] = ACTIONS(3516), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(3518), + [sym_false] = ACTIONS(3518), + [sym_null] = ACTIONS(3518), + [sym_identifier] = ACTIONS(3518), [sym_comment] = ACTIONS(39), }, [1271] = { @@ -51531,85 +51550,85 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(251), [sym_concatenated_string] = STATE(251), [sym_string_literal] = STATE(253), - [anon_sym_SEMI] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(241), - [anon_sym_LPAREN2] = ACTIONS(554), - [anon_sym_STAR] = ACTIONS(556), - [anon_sym_if] = ACTIONS(1598), - [anon_sym_switch] = ACTIONS(1600), - [anon_sym_case] = ACTIONS(1602), - [anon_sym_default] = ACTIONS(1604), - [anon_sym_while] = ACTIONS(1606), - [anon_sym_do] = ACTIONS(568), - [anon_sym_for] = ACTIONS(1608), - [anon_sym_return] = ACTIONS(572), - [anon_sym_break] = ACTIONS(574), - [anon_sym_continue] = ACTIONS(576), - [anon_sym_goto] = ACTIONS(578), - [anon_sym_AMP] = ACTIONS(556), - [anon_sym_BANG] = ACTIONS(580), - [anon_sym_TILDE] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_DASH_DASH] = ACTIONS(586), - [anon_sym_PLUS_PLUS] = ACTIONS(586), - [anon_sym_sizeof] = ACTIONS(588), - [sym_number_literal] = ACTIONS(590), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(594), - [sym_false] = ACTIONS(594), - [sym_null] = ACTIONS(594), - [sym_identifier] = ACTIONS(1610), + [anon_sym_SEMI] = ACTIONS(546), + [anon_sym_LBRACE] = ACTIONS(239), + [anon_sym_LPAREN2] = ACTIONS(550), + [anon_sym_STAR] = ACTIONS(552), + [anon_sym_if] = ACTIONS(1587), + [anon_sym_switch] = ACTIONS(1589), + [anon_sym_case] = ACTIONS(1591), + [anon_sym_default] = ACTIONS(1593), + [anon_sym_while] = ACTIONS(1595), + [anon_sym_do] = ACTIONS(564), + [anon_sym_for] = ACTIONS(1597), + [anon_sym_return] = ACTIONS(568), + [anon_sym_break] = ACTIONS(570), + [anon_sym_continue] = ACTIONS(572), + [anon_sym_goto] = ACTIONS(574), + [anon_sym_AMP] = ACTIONS(552), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_TILDE] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(580), + [anon_sym_DASH] = ACTIONS(580), + [anon_sym_DASH_DASH] = ACTIONS(582), + [anon_sym_PLUS_PLUS] = ACTIONS(582), + [anon_sym_sizeof] = ACTIONS(584), + [sym_number_literal] = ACTIONS(586), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(590), + [sym_false] = ACTIONS(590), + [sym_null] = ACTIONS(590), + [sym_identifier] = ACTIONS(1599), [sym_comment] = ACTIONS(39), }, [1272] = { [aux_sym_for_statement_repeat1] = STATE(1088), - [anon_sym_COMMA] = ACTIONS(2530), - [anon_sym_RPAREN] = ACTIONS(3531), + [anon_sym_COMMA] = ACTIONS(2519), + [anon_sym_RPAREN] = ACTIONS(3520), [sym_comment] = ACTIONS(39), }, [1273] = { [sym_argument_list] = STATE(465), [aux_sym_for_statement_repeat1] = STATE(1304), - [anon_sym_COMMA] = ACTIONS(2530), - [anon_sym_RPAREN] = ACTIONS(3531), - [anon_sym_LPAREN2] = ACTIONS(1096), - [anon_sym_STAR] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1100), - [anon_sym_EQ] = ACTIONS(1562), - [anon_sym_QMARK] = ACTIONS(1564), - [anon_sym_STAR_EQ] = ACTIONS(1566), - [anon_sym_SLASH_EQ] = ACTIONS(1566), - [anon_sym_PERCENT_EQ] = ACTIONS(1566), - [anon_sym_PLUS_EQ] = ACTIONS(1566), - [anon_sym_DASH_EQ] = ACTIONS(1566), - [anon_sym_LT_LT_EQ] = ACTIONS(1566), - [anon_sym_GT_GT_EQ] = ACTIONS(1566), - [anon_sym_AMP_EQ] = ACTIONS(1566), - [anon_sym_CARET_EQ] = ACTIONS(1566), - [anon_sym_PIPE_EQ] = ACTIONS(1566), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_PIPE_PIPE] = ACTIONS(1570), - [anon_sym_AMP_AMP] = ACTIONS(1572), - [anon_sym_PIPE] = ACTIONS(1574), - [anon_sym_CARET] = ACTIONS(1576), - [anon_sym_EQ_EQ] = ACTIONS(1578), - [anon_sym_BANG_EQ] = ACTIONS(1578), - [anon_sym_LT] = ACTIONS(1580), - [anon_sym_GT] = ACTIONS(1580), - [anon_sym_LT_EQ] = ACTIONS(1582), - [anon_sym_GT_EQ] = ACTIONS(1582), - [anon_sym_LT_LT] = ACTIONS(1584), - [anon_sym_GT_GT] = ACTIONS(1584), - [anon_sym_PLUS] = ACTIONS(1586), - [anon_sym_DASH] = ACTIONS(1586), - [anon_sym_SLASH] = ACTIONS(1560), - [anon_sym_PERCENT] = ACTIONS(1560), - [anon_sym_DASH_DASH] = ACTIONS(1128), - [anon_sym_PLUS_PLUS] = ACTIONS(1128), - [anon_sym_DOT] = ACTIONS(1130), - [anon_sym_DASH_GT] = ACTIONS(1130), + [anon_sym_COMMA] = ACTIONS(2519), + [anon_sym_RPAREN] = ACTIONS(3520), + [anon_sym_LPAREN2] = ACTIONS(1089), + [anon_sym_STAR] = ACTIONS(1549), + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(1551), + [anon_sym_QMARK] = ACTIONS(1553), + [anon_sym_STAR_EQ] = ACTIONS(1555), + [anon_sym_SLASH_EQ] = ACTIONS(1555), + [anon_sym_PERCENT_EQ] = ACTIONS(1555), + [anon_sym_PLUS_EQ] = ACTIONS(1555), + [anon_sym_DASH_EQ] = ACTIONS(1555), + [anon_sym_LT_LT_EQ] = ACTIONS(1555), + [anon_sym_GT_GT_EQ] = ACTIONS(1555), + [anon_sym_AMP_EQ] = ACTIONS(1555), + [anon_sym_CARET_EQ] = ACTIONS(1555), + [anon_sym_PIPE_EQ] = ACTIONS(1555), + [anon_sym_AMP] = ACTIONS(1557), + [anon_sym_PIPE_PIPE] = ACTIONS(1559), + [anon_sym_AMP_AMP] = ACTIONS(1561), + [anon_sym_PIPE] = ACTIONS(1563), + [anon_sym_CARET] = ACTIONS(1565), + [anon_sym_EQ_EQ] = ACTIONS(1567), + [anon_sym_BANG_EQ] = ACTIONS(1567), + [anon_sym_LT] = ACTIONS(1569), + [anon_sym_GT] = ACTIONS(1569), + [anon_sym_LT_EQ] = ACTIONS(1571), + [anon_sym_GT_EQ] = ACTIONS(1571), + [anon_sym_LT_LT] = ACTIONS(1573), + [anon_sym_GT_GT] = ACTIONS(1573), + [anon_sym_PLUS] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(1575), + [anon_sym_SLASH] = ACTIONS(1549), + [anon_sym_PERCENT] = ACTIONS(1549), + [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_PLUS_PLUS] = ACTIONS(1121), + [anon_sym_DOT] = ACTIONS(1123), + [anon_sym_DASH_GT] = ACTIONS(1123), [sym_comment] = ACTIONS(39), }, [1274] = { @@ -51633,24 +51652,24 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(1305), [sym_concatenated_string] = STATE(1305), [sym_string_literal] = STATE(409), - [anon_sym_RPAREN] = ACTIONS(3531), - [anon_sym_LPAREN2] = ACTIONS(970), - [anon_sym_STAR] = ACTIONS(972), - [anon_sym_AMP] = ACTIONS(972), - [anon_sym_BANG] = ACTIONS(974), - [anon_sym_TILDE] = ACTIONS(976), - [anon_sym_PLUS] = ACTIONS(978), - [anon_sym_DASH] = ACTIONS(978), - [anon_sym_DASH_DASH] = ACTIONS(980), - [anon_sym_PLUS_PLUS] = ACTIONS(980), - [anon_sym_sizeof] = ACTIONS(982), - [sym_number_literal] = ACTIONS(3533), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(3535), - [sym_false] = ACTIONS(3535), - [sym_null] = ACTIONS(3535), - [sym_identifier] = ACTIONS(3535), + [anon_sym_RPAREN] = ACTIONS(3520), + [anon_sym_LPAREN2] = ACTIONS(961), + [anon_sym_STAR] = ACTIONS(963), + [anon_sym_AMP] = ACTIONS(963), + [anon_sym_BANG] = ACTIONS(965), + [anon_sym_TILDE] = ACTIONS(967), + [anon_sym_PLUS] = ACTIONS(969), + [anon_sym_DASH] = ACTIONS(969), + [anon_sym_DASH_DASH] = ACTIONS(971), + [anon_sym_PLUS_PLUS] = ACTIONS(971), + [anon_sym_sizeof] = ACTIONS(973), + [sym_number_literal] = ACTIONS(3522), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(3524), + [sym_false] = ACTIONS(3524), + [sym_null] = ACTIONS(3524), + [sym_identifier] = ACTIONS(3524), [sym_comment] = ACTIONS(39), }, [1275] = { @@ -51688,79 +51707,79 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(251), [sym_concatenated_string] = STATE(251), [sym_string_literal] = STATE(253), - [anon_sym_SEMI] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(241), - [anon_sym_LPAREN2] = ACTIONS(554), - [anon_sym_STAR] = ACTIONS(556), - [anon_sym_if] = ACTIONS(2472), - [anon_sym_switch] = ACTIONS(2474), - [anon_sym_case] = ACTIONS(2476), - [anon_sym_default] = ACTIONS(2478), - [anon_sym_while] = ACTIONS(2480), - [anon_sym_do] = ACTIONS(1026), - [anon_sym_for] = ACTIONS(2482), - [anon_sym_return] = ACTIONS(572), - [anon_sym_break] = ACTIONS(574), - [anon_sym_continue] = ACTIONS(576), - [anon_sym_goto] = ACTIONS(578), - [anon_sym_AMP] = ACTIONS(556), - [anon_sym_BANG] = ACTIONS(580), - [anon_sym_TILDE] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_DASH_DASH] = ACTIONS(586), - [anon_sym_PLUS_PLUS] = ACTIONS(586), - [anon_sym_sizeof] = ACTIONS(588), - [sym_number_literal] = ACTIONS(590), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(594), - [sym_false] = ACTIONS(594), - [sym_null] = ACTIONS(594), - [sym_identifier] = ACTIONS(2484), + [anon_sym_SEMI] = ACTIONS(546), + [anon_sym_LBRACE] = ACTIONS(239), + [anon_sym_LPAREN2] = ACTIONS(550), + [anon_sym_STAR] = ACTIONS(552), + [anon_sym_if] = ACTIONS(2461), + [anon_sym_switch] = ACTIONS(2463), + [anon_sym_case] = ACTIONS(2465), + [anon_sym_default] = ACTIONS(2467), + [anon_sym_while] = ACTIONS(2469), + [anon_sym_do] = ACTIONS(1017), + [anon_sym_for] = ACTIONS(2471), + [anon_sym_return] = ACTIONS(568), + [anon_sym_break] = ACTIONS(570), + [anon_sym_continue] = ACTIONS(572), + [anon_sym_goto] = ACTIONS(574), + [anon_sym_AMP] = ACTIONS(552), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_TILDE] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(580), + [anon_sym_DASH] = ACTIONS(580), + [anon_sym_DASH_DASH] = ACTIONS(582), + [anon_sym_PLUS_PLUS] = ACTIONS(582), + [anon_sym_sizeof] = ACTIONS(584), + [sym_number_literal] = ACTIONS(586), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(590), + [sym_false] = ACTIONS(590), + [sym_null] = ACTIONS(590), + [sym_identifier] = ACTIONS(2473), [sym_comment] = ACTIONS(39), }, [1276] = { [sym_argument_list] = STATE(465), [aux_sym_for_statement_repeat1] = STATE(1307), - [anon_sym_COMMA] = ACTIONS(2530), - [anon_sym_RPAREN] = ACTIONS(3537), - [anon_sym_LPAREN2] = ACTIONS(1096), - [anon_sym_STAR] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1100), - [anon_sym_EQ] = ACTIONS(1562), - [anon_sym_QMARK] = ACTIONS(1564), - [anon_sym_STAR_EQ] = ACTIONS(1566), - [anon_sym_SLASH_EQ] = ACTIONS(1566), - [anon_sym_PERCENT_EQ] = ACTIONS(1566), - [anon_sym_PLUS_EQ] = ACTIONS(1566), - [anon_sym_DASH_EQ] = ACTIONS(1566), - [anon_sym_LT_LT_EQ] = ACTIONS(1566), - [anon_sym_GT_GT_EQ] = ACTIONS(1566), - [anon_sym_AMP_EQ] = ACTIONS(1566), - [anon_sym_CARET_EQ] = ACTIONS(1566), - [anon_sym_PIPE_EQ] = ACTIONS(1566), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_PIPE_PIPE] = ACTIONS(1570), - [anon_sym_AMP_AMP] = ACTIONS(1572), - [anon_sym_PIPE] = ACTIONS(1574), - [anon_sym_CARET] = ACTIONS(1576), - [anon_sym_EQ_EQ] = ACTIONS(1578), - [anon_sym_BANG_EQ] = ACTIONS(1578), - [anon_sym_LT] = ACTIONS(1580), - [anon_sym_GT] = ACTIONS(1580), - [anon_sym_LT_EQ] = ACTIONS(1582), - [anon_sym_GT_EQ] = ACTIONS(1582), - [anon_sym_LT_LT] = ACTIONS(1584), - [anon_sym_GT_GT] = ACTIONS(1584), - [anon_sym_PLUS] = ACTIONS(1586), - [anon_sym_DASH] = ACTIONS(1586), - [anon_sym_SLASH] = ACTIONS(1560), - [anon_sym_PERCENT] = ACTIONS(1560), - [anon_sym_DASH_DASH] = ACTIONS(1128), - [anon_sym_PLUS_PLUS] = ACTIONS(1128), - [anon_sym_DOT] = ACTIONS(1130), - [anon_sym_DASH_GT] = ACTIONS(1130), + [anon_sym_COMMA] = ACTIONS(2519), + [anon_sym_RPAREN] = ACTIONS(3526), + [anon_sym_LPAREN2] = ACTIONS(1089), + [anon_sym_STAR] = ACTIONS(1549), + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(1551), + [anon_sym_QMARK] = ACTIONS(1553), + [anon_sym_STAR_EQ] = ACTIONS(1555), + [anon_sym_SLASH_EQ] = ACTIONS(1555), + [anon_sym_PERCENT_EQ] = ACTIONS(1555), + [anon_sym_PLUS_EQ] = ACTIONS(1555), + [anon_sym_DASH_EQ] = ACTIONS(1555), + [anon_sym_LT_LT_EQ] = ACTIONS(1555), + [anon_sym_GT_GT_EQ] = ACTIONS(1555), + [anon_sym_AMP_EQ] = ACTIONS(1555), + [anon_sym_CARET_EQ] = ACTIONS(1555), + [anon_sym_PIPE_EQ] = ACTIONS(1555), + [anon_sym_AMP] = ACTIONS(1557), + [anon_sym_PIPE_PIPE] = ACTIONS(1559), + [anon_sym_AMP_AMP] = ACTIONS(1561), + [anon_sym_PIPE] = ACTIONS(1563), + [anon_sym_CARET] = ACTIONS(1565), + [anon_sym_EQ_EQ] = ACTIONS(1567), + [anon_sym_BANG_EQ] = ACTIONS(1567), + [anon_sym_LT] = ACTIONS(1569), + [anon_sym_GT] = ACTIONS(1569), + [anon_sym_LT_EQ] = ACTIONS(1571), + [anon_sym_GT_EQ] = ACTIONS(1571), + [anon_sym_LT_LT] = ACTIONS(1573), + [anon_sym_GT_GT] = ACTIONS(1573), + [anon_sym_PLUS] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(1575), + [anon_sym_SLASH] = ACTIONS(1549), + [anon_sym_PERCENT] = ACTIONS(1549), + [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_PLUS_PLUS] = ACTIONS(1121), + [anon_sym_DOT] = ACTIONS(1123), + [anon_sym_DASH_GT] = ACTIONS(1123), [sym_comment] = ACTIONS(39), }, [1277] = { @@ -51784,65 +51803,65 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(1308), [sym_concatenated_string] = STATE(1308), [sym_string_literal] = STATE(409), - [anon_sym_RPAREN] = ACTIONS(3537), - [anon_sym_LPAREN2] = ACTIONS(970), - [anon_sym_STAR] = ACTIONS(972), - [anon_sym_AMP] = ACTIONS(972), - [anon_sym_BANG] = ACTIONS(974), - [anon_sym_TILDE] = ACTIONS(976), - [anon_sym_PLUS] = ACTIONS(978), - [anon_sym_DASH] = ACTIONS(978), - [anon_sym_DASH_DASH] = ACTIONS(980), - [anon_sym_PLUS_PLUS] = ACTIONS(980), - [anon_sym_sizeof] = ACTIONS(982), - [sym_number_literal] = ACTIONS(3539), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(3541), - [sym_false] = ACTIONS(3541), - [sym_null] = ACTIONS(3541), - [sym_identifier] = ACTIONS(3541), + [anon_sym_RPAREN] = ACTIONS(3526), + [anon_sym_LPAREN2] = ACTIONS(961), + [anon_sym_STAR] = ACTIONS(963), + [anon_sym_AMP] = ACTIONS(963), + [anon_sym_BANG] = ACTIONS(965), + [anon_sym_TILDE] = ACTIONS(967), + [anon_sym_PLUS] = ACTIONS(969), + [anon_sym_DASH] = ACTIONS(969), + [anon_sym_DASH_DASH] = ACTIONS(971), + [anon_sym_PLUS_PLUS] = ACTIONS(971), + [anon_sym_sizeof] = ACTIONS(973), + [sym_number_literal] = ACTIONS(3528), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(3530), + [sym_false] = ACTIONS(3530), + [sym_null] = ACTIONS(3530), + [sym_identifier] = ACTIONS(3530), [sym_comment] = ACTIONS(39), }, [1278] = { [sym_argument_list] = STATE(465), - [anon_sym_SEMI] = ACTIONS(3543), - [anon_sym_LPAREN2] = ACTIONS(1096), - [anon_sym_STAR] = ACTIONS(1436), - [anon_sym_LBRACK] = ACTIONS(1100), - [anon_sym_EQ] = ACTIONS(1438), - [anon_sym_QMARK] = ACTIONS(1440), - [anon_sym_STAR_EQ] = ACTIONS(1442), - [anon_sym_SLASH_EQ] = ACTIONS(1442), - [anon_sym_PERCENT_EQ] = ACTIONS(1442), - [anon_sym_PLUS_EQ] = ACTIONS(1442), - [anon_sym_DASH_EQ] = ACTIONS(1442), - [anon_sym_LT_LT_EQ] = ACTIONS(1442), - [anon_sym_GT_GT_EQ] = ACTIONS(1442), - [anon_sym_AMP_EQ] = ACTIONS(1442), - [anon_sym_CARET_EQ] = ACTIONS(1442), - [anon_sym_PIPE_EQ] = ACTIONS(1442), - [anon_sym_AMP] = ACTIONS(1444), - [anon_sym_PIPE_PIPE] = ACTIONS(1446), - [anon_sym_AMP_AMP] = ACTIONS(1448), - [anon_sym_PIPE] = ACTIONS(1450), - [anon_sym_CARET] = ACTIONS(1452), - [anon_sym_EQ_EQ] = ACTIONS(1454), - [anon_sym_BANG_EQ] = ACTIONS(1454), - [anon_sym_LT] = ACTIONS(1456), - [anon_sym_GT] = ACTIONS(1456), - [anon_sym_LT_EQ] = ACTIONS(1458), - [anon_sym_GT_EQ] = ACTIONS(1458), - [anon_sym_LT_LT] = ACTIONS(1460), - [anon_sym_GT_GT] = ACTIONS(1460), - [anon_sym_PLUS] = ACTIONS(1462), - [anon_sym_DASH] = ACTIONS(1462), - [anon_sym_SLASH] = ACTIONS(1436), - [anon_sym_PERCENT] = ACTIONS(1436), - [anon_sym_DASH_DASH] = ACTIONS(1128), - [anon_sym_PLUS_PLUS] = ACTIONS(1128), - [anon_sym_DOT] = ACTIONS(1130), - [anon_sym_DASH_GT] = ACTIONS(1130), + [anon_sym_SEMI] = ACTIONS(3532), + [anon_sym_LPAREN2] = ACTIONS(1089), + [anon_sym_STAR] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(1429), + [anon_sym_QMARK] = ACTIONS(1431), + [anon_sym_STAR_EQ] = ACTIONS(1433), + [anon_sym_SLASH_EQ] = ACTIONS(1433), + [anon_sym_PERCENT_EQ] = ACTIONS(1433), + [anon_sym_PLUS_EQ] = ACTIONS(1433), + [anon_sym_DASH_EQ] = ACTIONS(1433), + [anon_sym_LT_LT_EQ] = ACTIONS(1433), + [anon_sym_GT_GT_EQ] = ACTIONS(1433), + [anon_sym_AMP_EQ] = ACTIONS(1433), + [anon_sym_CARET_EQ] = ACTIONS(1433), + [anon_sym_PIPE_EQ] = ACTIONS(1433), + [anon_sym_AMP] = ACTIONS(1435), + [anon_sym_PIPE_PIPE] = ACTIONS(1437), + [anon_sym_AMP_AMP] = ACTIONS(1439), + [anon_sym_PIPE] = ACTIONS(1441), + [anon_sym_CARET] = ACTIONS(1443), + [anon_sym_EQ_EQ] = ACTIONS(1445), + [anon_sym_BANG_EQ] = ACTIONS(1445), + [anon_sym_LT] = ACTIONS(1447), + [anon_sym_GT] = ACTIONS(1447), + [anon_sym_LT_EQ] = ACTIONS(1449), + [anon_sym_GT_EQ] = ACTIONS(1449), + [anon_sym_LT_LT] = ACTIONS(1451), + [anon_sym_GT_GT] = ACTIONS(1451), + [anon_sym_PLUS] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1453), + [anon_sym_SLASH] = ACTIONS(1427), + [anon_sym_PERCENT] = ACTIONS(1427), + [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_PLUS_PLUS] = ACTIONS(1121), + [anon_sym_DOT] = ACTIONS(1123), + [anon_sym_DASH_GT] = ACTIONS(1123), [sym_comment] = ACTIONS(39), }, [1279] = { @@ -51880,143 +51899,143 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(251), [sym_concatenated_string] = STATE(251), [sym_string_literal] = STATE(253), - [anon_sym_SEMI] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(241), - [anon_sym_LPAREN2] = ACTIONS(554), - [anon_sym_STAR] = ACTIONS(556), - [anon_sym_if] = ACTIONS(1016), - [anon_sym_switch] = ACTIONS(1018), - [anon_sym_case] = ACTIONS(1020), - [anon_sym_default] = ACTIONS(1022), - [anon_sym_while] = ACTIONS(1024), - [anon_sym_do] = ACTIONS(1026), - [anon_sym_for] = ACTIONS(1028), - [anon_sym_return] = ACTIONS(572), - [anon_sym_break] = ACTIONS(574), - [anon_sym_continue] = ACTIONS(576), - [anon_sym_goto] = ACTIONS(578), - [anon_sym_AMP] = ACTIONS(556), - [anon_sym_BANG] = ACTIONS(580), - [anon_sym_TILDE] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_DASH_DASH] = ACTIONS(586), - [anon_sym_PLUS_PLUS] = ACTIONS(586), - [anon_sym_sizeof] = ACTIONS(588), - [sym_number_literal] = ACTIONS(590), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(594), - [sym_false] = ACTIONS(594), - [sym_null] = ACTIONS(594), - [sym_identifier] = ACTIONS(1030), + [anon_sym_SEMI] = ACTIONS(546), + [anon_sym_LBRACE] = ACTIONS(239), + [anon_sym_LPAREN2] = ACTIONS(550), + [anon_sym_STAR] = ACTIONS(552), + [anon_sym_if] = ACTIONS(1007), + [anon_sym_switch] = ACTIONS(1009), + [anon_sym_case] = ACTIONS(1011), + [anon_sym_default] = ACTIONS(1013), + [anon_sym_while] = ACTIONS(1015), + [anon_sym_do] = ACTIONS(1017), + [anon_sym_for] = ACTIONS(1019), + [anon_sym_return] = ACTIONS(568), + [anon_sym_break] = ACTIONS(570), + [anon_sym_continue] = ACTIONS(572), + [anon_sym_goto] = ACTIONS(574), + [anon_sym_AMP] = ACTIONS(552), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_TILDE] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(580), + [anon_sym_DASH] = ACTIONS(580), + [anon_sym_DASH_DASH] = ACTIONS(582), + [anon_sym_PLUS_PLUS] = ACTIONS(582), + [anon_sym_sizeof] = ACTIONS(584), + [sym_number_literal] = ACTIONS(586), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(590), + [sym_false] = ACTIONS(590), + [sym_null] = ACTIONS(590), + [sym_identifier] = ACTIONS(1021), [sym_comment] = ACTIONS(39), }, [1280] = { [aux_sym_for_statement_repeat1] = STATE(1088), - [anon_sym_COMMA] = ACTIONS(2530), - [anon_sym_RPAREN] = ACTIONS(3545), + [anon_sym_COMMA] = ACTIONS(2519), + [anon_sym_RPAREN] = ACTIONS(3534), [sym_comment] = ACTIONS(39), }, [1281] = { [sym_argument_list] = STATE(465), [aux_sym_for_statement_repeat1] = STATE(1311), - [anon_sym_COMMA] = ACTIONS(2530), - [anon_sym_RPAREN] = ACTIONS(3545), - [anon_sym_LPAREN2] = ACTIONS(1096), - [anon_sym_STAR] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1100), - [anon_sym_EQ] = ACTIONS(1562), - [anon_sym_QMARK] = ACTIONS(1564), - [anon_sym_STAR_EQ] = ACTIONS(1566), - [anon_sym_SLASH_EQ] = ACTIONS(1566), - [anon_sym_PERCENT_EQ] = ACTIONS(1566), - [anon_sym_PLUS_EQ] = ACTIONS(1566), - [anon_sym_DASH_EQ] = ACTIONS(1566), - [anon_sym_LT_LT_EQ] = ACTIONS(1566), - [anon_sym_GT_GT_EQ] = ACTIONS(1566), - [anon_sym_AMP_EQ] = ACTIONS(1566), - [anon_sym_CARET_EQ] = ACTIONS(1566), - [anon_sym_PIPE_EQ] = ACTIONS(1566), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_PIPE_PIPE] = ACTIONS(1570), - [anon_sym_AMP_AMP] = ACTIONS(1572), - [anon_sym_PIPE] = ACTIONS(1574), - [anon_sym_CARET] = ACTIONS(1576), - [anon_sym_EQ_EQ] = ACTIONS(1578), - [anon_sym_BANG_EQ] = ACTIONS(1578), - [anon_sym_LT] = ACTIONS(1580), - [anon_sym_GT] = ACTIONS(1580), - [anon_sym_LT_EQ] = ACTIONS(1582), - [anon_sym_GT_EQ] = ACTIONS(1582), - [anon_sym_LT_LT] = ACTIONS(1584), - [anon_sym_GT_GT] = ACTIONS(1584), - [anon_sym_PLUS] = ACTIONS(1586), - [anon_sym_DASH] = ACTIONS(1586), - [anon_sym_SLASH] = ACTIONS(1560), - [anon_sym_PERCENT] = ACTIONS(1560), - [anon_sym_DASH_DASH] = ACTIONS(1128), - [anon_sym_PLUS_PLUS] = ACTIONS(1128), - [anon_sym_DOT] = ACTIONS(1130), - [anon_sym_DASH_GT] = ACTIONS(1130), + [anon_sym_COMMA] = ACTIONS(2519), + [anon_sym_RPAREN] = ACTIONS(3534), + [anon_sym_LPAREN2] = ACTIONS(1089), + [anon_sym_STAR] = ACTIONS(1549), + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(1551), + [anon_sym_QMARK] = ACTIONS(1553), + [anon_sym_STAR_EQ] = ACTIONS(1555), + [anon_sym_SLASH_EQ] = ACTIONS(1555), + [anon_sym_PERCENT_EQ] = ACTIONS(1555), + [anon_sym_PLUS_EQ] = ACTIONS(1555), + [anon_sym_DASH_EQ] = ACTIONS(1555), + [anon_sym_LT_LT_EQ] = ACTIONS(1555), + [anon_sym_GT_GT_EQ] = ACTIONS(1555), + [anon_sym_AMP_EQ] = ACTIONS(1555), + [anon_sym_CARET_EQ] = ACTIONS(1555), + [anon_sym_PIPE_EQ] = ACTIONS(1555), + [anon_sym_AMP] = ACTIONS(1557), + [anon_sym_PIPE_PIPE] = ACTIONS(1559), + [anon_sym_AMP_AMP] = ACTIONS(1561), + [anon_sym_PIPE] = ACTIONS(1563), + [anon_sym_CARET] = ACTIONS(1565), + [anon_sym_EQ_EQ] = ACTIONS(1567), + [anon_sym_BANG_EQ] = ACTIONS(1567), + [anon_sym_LT] = ACTIONS(1569), + [anon_sym_GT] = ACTIONS(1569), + [anon_sym_LT_EQ] = ACTIONS(1571), + [anon_sym_GT_EQ] = ACTIONS(1571), + [anon_sym_LT_LT] = ACTIONS(1573), + [anon_sym_GT_GT] = ACTIONS(1573), + [anon_sym_PLUS] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(1575), + [anon_sym_SLASH] = ACTIONS(1549), + [anon_sym_PERCENT] = ACTIONS(1549), + [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_PLUS_PLUS] = ACTIONS(1121), + [anon_sym_DOT] = ACTIONS(1123), + [anon_sym_DASH_GT] = ACTIONS(1123), [sym_comment] = ACTIONS(39), }, [1282] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3547), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3547), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3547), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3547), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3547), - [sym_preproc_directive] = ACTIONS(3547), - [anon_sym_SEMI] = ACTIONS(3549), - [anon_sym_typedef] = ACTIONS(3547), - [anon_sym_extern] = ACTIONS(3547), - [anon_sym_LBRACE] = ACTIONS(3549), - [anon_sym_RBRACE] = ACTIONS(3549), - [anon_sym_LPAREN2] = ACTIONS(3549), - [anon_sym_STAR] = ACTIONS(3549), - [anon_sym_static] = ACTIONS(3547), - [anon_sym_auto] = ACTIONS(3547), - [anon_sym_register] = ACTIONS(3547), - [anon_sym_inline] = ACTIONS(3547), - [anon_sym_const] = ACTIONS(3547), - [anon_sym_restrict] = ACTIONS(3547), - [anon_sym_volatile] = ACTIONS(3547), - [anon_sym__Atomic] = ACTIONS(3547), - [anon_sym_unsigned] = ACTIONS(3547), - [anon_sym_long] = ACTIONS(3547), - [anon_sym_short] = ACTIONS(3547), - [sym_primitive_type] = ACTIONS(3547), - [anon_sym_enum] = ACTIONS(3547), - [anon_sym_struct] = ACTIONS(3547), - [anon_sym_union] = ACTIONS(3547), - [anon_sym_if] = ACTIONS(3547), - [anon_sym_else] = ACTIONS(3547), - [anon_sym_switch] = ACTIONS(3547), - [anon_sym_case] = ACTIONS(3547), - [anon_sym_default] = ACTIONS(3547), - [anon_sym_while] = ACTIONS(3547), - [anon_sym_do] = ACTIONS(3547), - [anon_sym_for] = ACTIONS(3547), - [anon_sym_return] = ACTIONS(3547), - [anon_sym_break] = ACTIONS(3547), - [anon_sym_continue] = ACTIONS(3547), - [anon_sym_goto] = ACTIONS(3547), - [anon_sym_AMP] = ACTIONS(3549), - [anon_sym_BANG] = ACTIONS(3549), - [anon_sym_TILDE] = ACTIONS(3549), - [anon_sym_PLUS] = ACTIONS(3547), - [anon_sym_DASH] = ACTIONS(3547), - [anon_sym_DASH_DASH] = ACTIONS(3549), - [anon_sym_PLUS_PLUS] = ACTIONS(3549), - [anon_sym_sizeof] = ACTIONS(3547), - [sym_number_literal] = ACTIONS(3549), - [anon_sym_SQUOTE] = ACTIONS(3549), - [anon_sym_DQUOTE] = ACTIONS(3549), - [sym_true] = ACTIONS(3547), - [sym_false] = ACTIONS(3547), - [sym_null] = ACTIONS(3547), - [sym_identifier] = ACTIONS(3547), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3536), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3536), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3536), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3536), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3536), + [sym_preproc_directive] = ACTIONS(3536), + [anon_sym_SEMI] = ACTIONS(3538), + [anon_sym_typedef] = ACTIONS(3536), + [anon_sym_extern] = ACTIONS(3536), + [anon_sym_LBRACE] = ACTIONS(3538), + [anon_sym_RBRACE] = ACTIONS(3538), + [anon_sym_LPAREN2] = ACTIONS(3538), + [anon_sym_STAR] = ACTIONS(3538), + [anon_sym_static] = ACTIONS(3536), + [anon_sym_auto] = ACTIONS(3536), + [anon_sym_register] = ACTIONS(3536), + [anon_sym_inline] = ACTIONS(3536), + [anon_sym_const] = ACTIONS(3536), + [anon_sym_restrict] = ACTIONS(3536), + [anon_sym_volatile] = ACTIONS(3536), + [anon_sym__Atomic] = ACTIONS(3536), + [anon_sym_unsigned] = ACTIONS(3536), + [anon_sym_long] = ACTIONS(3536), + [anon_sym_short] = ACTIONS(3536), + [sym_primitive_type] = ACTIONS(3536), + [anon_sym_enum] = ACTIONS(3536), + [anon_sym_struct] = ACTIONS(3536), + [anon_sym_union] = ACTIONS(3536), + [anon_sym_if] = ACTIONS(3536), + [anon_sym_else] = ACTIONS(3536), + [anon_sym_switch] = ACTIONS(3536), + [anon_sym_case] = ACTIONS(3536), + [anon_sym_default] = ACTIONS(3536), + [anon_sym_while] = ACTIONS(3536), + [anon_sym_do] = ACTIONS(3536), + [anon_sym_for] = ACTIONS(3536), + [anon_sym_return] = ACTIONS(3536), + [anon_sym_break] = ACTIONS(3536), + [anon_sym_continue] = ACTIONS(3536), + [anon_sym_goto] = ACTIONS(3536), + [anon_sym_AMP] = ACTIONS(3538), + [anon_sym_BANG] = ACTIONS(3538), + [anon_sym_TILDE] = ACTIONS(3538), + [anon_sym_PLUS] = ACTIONS(3536), + [anon_sym_DASH] = ACTIONS(3536), + [anon_sym_DASH_DASH] = ACTIONS(3538), + [anon_sym_PLUS_PLUS] = ACTIONS(3538), + [anon_sym_sizeof] = ACTIONS(3536), + [sym_number_literal] = ACTIONS(3538), + [anon_sym_SQUOTE] = ACTIONS(3538), + [anon_sym_DQUOTE] = ACTIONS(3538), + [sym_true] = ACTIONS(3536), + [sym_false] = ACTIONS(3536), + [sym_null] = ACTIONS(3536), + [sym_identifier] = ACTIONS(3536), [sym_comment] = ACTIONS(39), }, [1283] = { @@ -52054,42 +52073,42 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(251), [sym_concatenated_string] = STATE(251), [sym_string_literal] = STATE(253), - [anon_sym_SEMI] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(241), - [anon_sym_LPAREN2] = ACTIONS(554), - [anon_sym_STAR] = ACTIONS(556), - [anon_sym_if] = ACTIONS(558), - [anon_sym_switch] = ACTIONS(560), - [anon_sym_case] = ACTIONS(562), - [anon_sym_default] = ACTIONS(564), - [anon_sym_while] = ACTIONS(566), - [anon_sym_do] = ACTIONS(568), - [anon_sym_for] = ACTIONS(570), - [anon_sym_return] = ACTIONS(572), - [anon_sym_break] = ACTIONS(574), - [anon_sym_continue] = ACTIONS(576), - [anon_sym_goto] = ACTIONS(578), - [anon_sym_AMP] = ACTIONS(556), - [anon_sym_BANG] = ACTIONS(580), - [anon_sym_TILDE] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_DASH_DASH] = ACTIONS(586), - [anon_sym_PLUS_PLUS] = ACTIONS(586), - [anon_sym_sizeof] = ACTIONS(588), - [sym_number_literal] = ACTIONS(590), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(594), - [sym_false] = ACTIONS(594), - [sym_null] = ACTIONS(594), - [sym_identifier] = ACTIONS(1612), + [anon_sym_SEMI] = ACTIONS(546), + [anon_sym_LBRACE] = ACTIONS(239), + [anon_sym_LPAREN2] = ACTIONS(550), + [anon_sym_STAR] = ACTIONS(552), + [anon_sym_if] = ACTIONS(554), + [anon_sym_switch] = ACTIONS(556), + [anon_sym_case] = ACTIONS(558), + [anon_sym_default] = ACTIONS(560), + [anon_sym_while] = ACTIONS(562), + [anon_sym_do] = ACTIONS(564), + [anon_sym_for] = ACTIONS(566), + [anon_sym_return] = ACTIONS(568), + [anon_sym_break] = ACTIONS(570), + [anon_sym_continue] = ACTIONS(572), + [anon_sym_goto] = ACTIONS(574), + [anon_sym_AMP] = ACTIONS(552), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_TILDE] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(580), + [anon_sym_DASH] = ACTIONS(580), + [anon_sym_DASH_DASH] = ACTIONS(582), + [anon_sym_PLUS_PLUS] = ACTIONS(582), + [anon_sym_sizeof] = ACTIONS(584), + [sym_number_literal] = ACTIONS(586), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(590), + [sym_false] = ACTIONS(590), + [sym_null] = ACTIONS(590), + [sym_identifier] = ACTIONS(1601), [sym_comment] = ACTIONS(39), }, [1284] = { [aux_sym_for_statement_repeat1] = STATE(1088), - [anon_sym_COMMA] = ACTIONS(2530), - [anon_sym_RPAREN] = ACTIONS(3551), + [anon_sym_COMMA] = ACTIONS(2519), + [anon_sym_RPAREN] = ACTIONS(3540), [sym_comment] = ACTIONS(39), }, [1285] = { @@ -52127,36 +52146,36 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(872), [sym_concatenated_string] = STATE(872), [sym_string_literal] = STATE(253), - [anon_sym_SEMI] = ACTIONS(2254), - [anon_sym_LBRACE] = ACTIONS(1273), - [anon_sym_LPAREN2] = ACTIONS(554), - [anon_sym_STAR] = ACTIONS(556), - [anon_sym_if] = ACTIONS(3053), - [anon_sym_switch] = ACTIONS(3055), - [anon_sym_case] = ACTIONS(3057), - [anon_sym_default] = ACTIONS(3059), - [anon_sym_while] = ACTIONS(3061), - [anon_sym_do] = ACTIONS(2266), - [anon_sym_for] = ACTIONS(3063), - [anon_sym_return] = ACTIONS(2270), - [anon_sym_break] = ACTIONS(2272), - [anon_sym_continue] = ACTIONS(2274), - [anon_sym_goto] = ACTIONS(2276), - [anon_sym_AMP] = ACTIONS(556), - [anon_sym_BANG] = ACTIONS(580), - [anon_sym_TILDE] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_DASH_DASH] = ACTIONS(586), - [anon_sym_PLUS_PLUS] = ACTIONS(586), - [anon_sym_sizeof] = ACTIONS(588), - [sym_number_literal] = ACTIONS(2278), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2280), - [sym_false] = ACTIONS(2280), - [sym_null] = ACTIONS(2280), - [sym_identifier] = ACTIONS(3065), + [anon_sym_SEMI] = ACTIONS(2243), + [anon_sym_LBRACE] = ACTIONS(1264), + [anon_sym_LPAREN2] = ACTIONS(550), + [anon_sym_STAR] = ACTIONS(552), + [anon_sym_if] = ACTIONS(3042), + [anon_sym_switch] = ACTIONS(3044), + [anon_sym_case] = ACTIONS(3046), + [anon_sym_default] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3050), + [anon_sym_do] = ACTIONS(2255), + [anon_sym_for] = ACTIONS(3052), + [anon_sym_return] = ACTIONS(2259), + [anon_sym_break] = ACTIONS(2261), + [anon_sym_continue] = ACTIONS(2263), + [anon_sym_goto] = ACTIONS(2265), + [anon_sym_AMP] = ACTIONS(552), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_TILDE] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(580), + [anon_sym_DASH] = ACTIONS(580), + [anon_sym_DASH_DASH] = ACTIONS(582), + [anon_sym_PLUS_PLUS] = ACTIONS(582), + [anon_sym_sizeof] = ACTIONS(584), + [sym_number_literal] = ACTIONS(2267), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(2269), + [sym_false] = ACTIONS(2269), + [sym_null] = ACTIONS(2269), + [sym_identifier] = ACTIONS(3054), [sym_comment] = ACTIONS(39), }, [1286] = { @@ -52180,65 +52199,65 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(1315), [sym_concatenated_string] = STATE(1315), [sym_string_literal] = STATE(409), - [anon_sym_RPAREN] = ACTIONS(3553), - [anon_sym_LPAREN2] = ACTIONS(970), - [anon_sym_STAR] = ACTIONS(972), - [anon_sym_AMP] = ACTIONS(972), - [anon_sym_BANG] = ACTIONS(974), - [anon_sym_TILDE] = ACTIONS(976), - [anon_sym_PLUS] = ACTIONS(978), - [anon_sym_DASH] = ACTIONS(978), - [anon_sym_DASH_DASH] = ACTIONS(980), - [anon_sym_PLUS_PLUS] = ACTIONS(980), - [anon_sym_sizeof] = ACTIONS(982), - [sym_number_literal] = ACTIONS(3555), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(3557), - [sym_false] = ACTIONS(3557), - [sym_null] = ACTIONS(3557), - [sym_identifier] = ACTIONS(3557), + [anon_sym_RPAREN] = ACTIONS(3542), + [anon_sym_LPAREN2] = ACTIONS(961), + [anon_sym_STAR] = ACTIONS(963), + [anon_sym_AMP] = ACTIONS(963), + [anon_sym_BANG] = ACTIONS(965), + [anon_sym_TILDE] = ACTIONS(967), + [anon_sym_PLUS] = ACTIONS(969), + [anon_sym_DASH] = ACTIONS(969), + [anon_sym_DASH_DASH] = ACTIONS(971), + [anon_sym_PLUS_PLUS] = ACTIONS(971), + [anon_sym_sizeof] = ACTIONS(973), + [sym_number_literal] = ACTIONS(3544), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(3546), + [sym_false] = ACTIONS(3546), + [sym_null] = ACTIONS(3546), + [sym_identifier] = ACTIONS(3546), [sym_comment] = ACTIONS(39), }, [1287] = { [sym_argument_list] = STATE(465), - [anon_sym_SEMI] = ACTIONS(3559), - [anon_sym_LPAREN2] = ACTIONS(1096), - [anon_sym_STAR] = ACTIONS(1436), - [anon_sym_LBRACK] = ACTIONS(1100), - [anon_sym_EQ] = ACTIONS(1438), - [anon_sym_QMARK] = ACTIONS(1440), - [anon_sym_STAR_EQ] = ACTIONS(1442), - [anon_sym_SLASH_EQ] = ACTIONS(1442), - [anon_sym_PERCENT_EQ] = ACTIONS(1442), - [anon_sym_PLUS_EQ] = ACTIONS(1442), - [anon_sym_DASH_EQ] = ACTIONS(1442), - [anon_sym_LT_LT_EQ] = ACTIONS(1442), - [anon_sym_GT_GT_EQ] = ACTIONS(1442), - [anon_sym_AMP_EQ] = ACTIONS(1442), - [anon_sym_CARET_EQ] = ACTIONS(1442), - [anon_sym_PIPE_EQ] = ACTIONS(1442), - [anon_sym_AMP] = ACTIONS(1444), - [anon_sym_PIPE_PIPE] = ACTIONS(1446), - [anon_sym_AMP_AMP] = ACTIONS(1448), - [anon_sym_PIPE] = ACTIONS(1450), - [anon_sym_CARET] = ACTIONS(1452), - [anon_sym_EQ_EQ] = ACTIONS(1454), - [anon_sym_BANG_EQ] = ACTIONS(1454), - [anon_sym_LT] = ACTIONS(1456), - [anon_sym_GT] = ACTIONS(1456), - [anon_sym_LT_EQ] = ACTIONS(1458), - [anon_sym_GT_EQ] = ACTIONS(1458), - [anon_sym_LT_LT] = ACTIONS(1460), - [anon_sym_GT_GT] = ACTIONS(1460), - [anon_sym_PLUS] = ACTIONS(1462), - [anon_sym_DASH] = ACTIONS(1462), - [anon_sym_SLASH] = ACTIONS(1436), - [anon_sym_PERCENT] = ACTIONS(1436), - [anon_sym_DASH_DASH] = ACTIONS(1128), - [anon_sym_PLUS_PLUS] = ACTIONS(1128), - [anon_sym_DOT] = ACTIONS(1130), - [anon_sym_DASH_GT] = ACTIONS(1130), + [anon_sym_SEMI] = ACTIONS(3548), + [anon_sym_LPAREN2] = ACTIONS(1089), + [anon_sym_STAR] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(1429), + [anon_sym_QMARK] = ACTIONS(1431), + [anon_sym_STAR_EQ] = ACTIONS(1433), + [anon_sym_SLASH_EQ] = ACTIONS(1433), + [anon_sym_PERCENT_EQ] = ACTIONS(1433), + [anon_sym_PLUS_EQ] = ACTIONS(1433), + [anon_sym_DASH_EQ] = ACTIONS(1433), + [anon_sym_LT_LT_EQ] = ACTIONS(1433), + [anon_sym_GT_GT_EQ] = ACTIONS(1433), + [anon_sym_AMP_EQ] = ACTIONS(1433), + [anon_sym_CARET_EQ] = ACTIONS(1433), + [anon_sym_PIPE_EQ] = ACTIONS(1433), + [anon_sym_AMP] = ACTIONS(1435), + [anon_sym_PIPE_PIPE] = ACTIONS(1437), + [anon_sym_AMP_AMP] = ACTIONS(1439), + [anon_sym_PIPE] = ACTIONS(1441), + [anon_sym_CARET] = ACTIONS(1443), + [anon_sym_EQ_EQ] = ACTIONS(1445), + [anon_sym_BANG_EQ] = ACTIONS(1445), + [anon_sym_LT] = ACTIONS(1447), + [anon_sym_GT] = ACTIONS(1447), + [anon_sym_LT_EQ] = ACTIONS(1449), + [anon_sym_GT_EQ] = ACTIONS(1449), + [anon_sym_LT_LT] = ACTIONS(1451), + [anon_sym_GT_GT] = ACTIONS(1451), + [anon_sym_PLUS] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1453), + [anon_sym_SLASH] = ACTIONS(1427), + [anon_sym_PERCENT] = ACTIONS(1427), + [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_PLUS_PLUS] = ACTIONS(1121), + [anon_sym_DOT] = ACTIONS(1123), + [anon_sym_DASH_GT] = ACTIONS(1123), [sym_comment] = ACTIONS(39), }, [1288] = { @@ -52262,140 +52281,140 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(1317), [sym_concatenated_string] = STATE(1317), [sym_string_literal] = STATE(376), - [anon_sym_SEMI] = ACTIONS(3559), - [anon_sym_LPAREN2] = ACTIONS(847), - [anon_sym_STAR] = ACTIONS(849), - [anon_sym_AMP] = ACTIONS(849), - [anon_sym_BANG] = ACTIONS(851), - [anon_sym_TILDE] = ACTIONS(853), - [anon_sym_PLUS] = ACTIONS(855), - [anon_sym_DASH] = ACTIONS(855), - [anon_sym_DASH_DASH] = ACTIONS(857), - [anon_sym_PLUS_PLUS] = ACTIONS(857), - [anon_sym_sizeof] = ACTIONS(859), - [sym_number_literal] = ACTIONS(3561), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(3563), - [sym_false] = ACTIONS(3563), - [sym_null] = ACTIONS(3563), - [sym_identifier] = ACTIONS(3563), + [anon_sym_SEMI] = ACTIONS(3548), + [anon_sym_LPAREN2] = ACTIONS(838), + [anon_sym_STAR] = ACTIONS(840), + [anon_sym_AMP] = ACTIONS(840), + [anon_sym_BANG] = ACTIONS(842), + [anon_sym_TILDE] = ACTIONS(844), + [anon_sym_PLUS] = ACTIONS(846), + [anon_sym_DASH] = ACTIONS(846), + [anon_sym_DASH_DASH] = ACTIONS(848), + [anon_sym_PLUS_PLUS] = ACTIONS(848), + [anon_sym_sizeof] = ACTIONS(850), + [sym_number_literal] = ACTIONS(3550), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(3552), + [sym_false] = ACTIONS(3552), + [sym_null] = ACTIONS(3552), + [sym_identifier] = ACTIONS(3552), [sym_comment] = ACTIONS(39), }, [1289] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2346), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2346), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2346), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2346), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2346), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2346), - [sym_preproc_directive] = ACTIONS(2346), - [anon_sym_SEMI] = ACTIONS(2344), - [anon_sym_typedef] = ACTIONS(2346), - [anon_sym_extern] = ACTIONS(2346), - [anon_sym_LBRACE] = ACTIONS(2344), - [anon_sym_LPAREN2] = ACTIONS(2344), - [anon_sym_STAR] = ACTIONS(2344), - [anon_sym_static] = ACTIONS(2346), - [anon_sym_auto] = ACTIONS(2346), - [anon_sym_register] = ACTIONS(2346), - [anon_sym_inline] = ACTIONS(2346), - [anon_sym_const] = ACTIONS(2346), - [anon_sym_restrict] = ACTIONS(2346), - [anon_sym_volatile] = ACTIONS(2346), - [anon_sym__Atomic] = ACTIONS(2346), - [anon_sym_unsigned] = ACTIONS(2346), - [anon_sym_long] = ACTIONS(2346), - [anon_sym_short] = ACTIONS(2346), - [sym_primitive_type] = ACTIONS(2346), - [anon_sym_enum] = ACTIONS(2346), - [anon_sym_struct] = ACTIONS(2346), - [anon_sym_union] = ACTIONS(2346), - [anon_sym_if] = ACTIONS(2346), - [anon_sym_else] = ACTIONS(2346), - [anon_sym_switch] = ACTIONS(2346), - [anon_sym_case] = ACTIONS(2346), - [anon_sym_default] = ACTIONS(2346), - [anon_sym_while] = ACTIONS(2346), - [anon_sym_do] = ACTIONS(2346), - [anon_sym_for] = ACTIONS(2346), - [anon_sym_return] = ACTIONS(2346), - [anon_sym_break] = ACTIONS(2346), - [anon_sym_continue] = ACTIONS(2346), - [anon_sym_goto] = ACTIONS(2346), - [anon_sym_AMP] = ACTIONS(2344), - [anon_sym_BANG] = ACTIONS(2344), - [anon_sym_TILDE] = ACTIONS(2344), - [anon_sym_PLUS] = ACTIONS(2346), - [anon_sym_DASH] = ACTIONS(2346), - [anon_sym_DASH_DASH] = ACTIONS(2344), - [anon_sym_PLUS_PLUS] = ACTIONS(2344), - [anon_sym_sizeof] = ACTIONS(2346), - [sym_number_literal] = ACTIONS(2344), - [anon_sym_SQUOTE] = ACTIONS(2344), - [anon_sym_DQUOTE] = ACTIONS(2344), - [sym_true] = ACTIONS(2346), - [sym_false] = ACTIONS(2346), - [sym_null] = ACTIONS(2346), - [sym_identifier] = ACTIONS(2346), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2335), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2335), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2335), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2335), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2335), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2335), + [sym_preproc_directive] = ACTIONS(2335), + [anon_sym_SEMI] = ACTIONS(2333), + [anon_sym_typedef] = ACTIONS(2335), + [anon_sym_extern] = ACTIONS(2335), + [anon_sym_LBRACE] = ACTIONS(2333), + [anon_sym_LPAREN2] = ACTIONS(2333), + [anon_sym_STAR] = ACTIONS(2333), + [anon_sym_static] = ACTIONS(2335), + [anon_sym_auto] = ACTIONS(2335), + [anon_sym_register] = ACTIONS(2335), + [anon_sym_inline] = ACTIONS(2335), + [anon_sym_const] = ACTIONS(2335), + [anon_sym_restrict] = ACTIONS(2335), + [anon_sym_volatile] = ACTIONS(2335), + [anon_sym__Atomic] = ACTIONS(2335), + [anon_sym_unsigned] = ACTIONS(2335), + [anon_sym_long] = ACTIONS(2335), + [anon_sym_short] = ACTIONS(2335), + [sym_primitive_type] = ACTIONS(2335), + [anon_sym_enum] = ACTIONS(2335), + [anon_sym_struct] = ACTIONS(2335), + [anon_sym_union] = ACTIONS(2335), + [anon_sym_if] = ACTIONS(2335), + [anon_sym_else] = ACTIONS(2335), + [anon_sym_switch] = ACTIONS(2335), + [anon_sym_case] = ACTIONS(2335), + [anon_sym_default] = ACTIONS(2335), + [anon_sym_while] = ACTIONS(2335), + [anon_sym_do] = ACTIONS(2335), + [anon_sym_for] = ACTIONS(2335), + [anon_sym_return] = ACTIONS(2335), + [anon_sym_break] = ACTIONS(2335), + [anon_sym_continue] = ACTIONS(2335), + [anon_sym_goto] = ACTIONS(2335), + [anon_sym_AMP] = ACTIONS(2333), + [anon_sym_BANG] = ACTIONS(2333), + [anon_sym_TILDE] = ACTIONS(2333), + [anon_sym_PLUS] = ACTIONS(2335), + [anon_sym_DASH] = ACTIONS(2335), + [anon_sym_DASH_DASH] = ACTIONS(2333), + [anon_sym_PLUS_PLUS] = ACTIONS(2333), + [anon_sym_sizeof] = ACTIONS(2335), + [sym_number_literal] = ACTIONS(2333), + [anon_sym_SQUOTE] = ACTIONS(2333), + [anon_sym_DQUOTE] = ACTIONS(2333), + [sym_true] = ACTIONS(2335), + [sym_false] = ACTIONS(2335), + [sym_null] = ACTIONS(2335), + [sym_identifier] = ACTIONS(2335), [sym_comment] = ACTIONS(39), }, [1290] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3393), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3393), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3393), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3393), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3393), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3393), - [sym_preproc_directive] = ACTIONS(3393), - [anon_sym_SEMI] = ACTIONS(3395), - [anon_sym_typedef] = ACTIONS(3393), - [anon_sym_extern] = ACTIONS(3393), - [anon_sym_LBRACE] = ACTIONS(3395), - [anon_sym_LPAREN2] = ACTIONS(3395), - [anon_sym_STAR] = ACTIONS(3395), - [anon_sym_static] = ACTIONS(3393), - [anon_sym_auto] = ACTIONS(3393), - [anon_sym_register] = ACTIONS(3393), - [anon_sym_inline] = ACTIONS(3393), - [anon_sym_const] = ACTIONS(3393), - [anon_sym_restrict] = ACTIONS(3393), - [anon_sym_volatile] = ACTIONS(3393), - [anon_sym__Atomic] = ACTIONS(3393), - [anon_sym_unsigned] = ACTIONS(3393), - [anon_sym_long] = ACTIONS(3393), - [anon_sym_short] = ACTIONS(3393), - [sym_primitive_type] = ACTIONS(3393), - [anon_sym_enum] = ACTIONS(3393), - [anon_sym_struct] = ACTIONS(3393), - [anon_sym_union] = ACTIONS(3393), - [anon_sym_if] = ACTIONS(3393), - [anon_sym_else] = ACTIONS(3393), - [anon_sym_switch] = ACTIONS(3393), - [anon_sym_case] = ACTIONS(3393), - [anon_sym_default] = ACTIONS(3393), - [anon_sym_while] = ACTIONS(3393), - [anon_sym_do] = ACTIONS(3393), - [anon_sym_for] = ACTIONS(3393), - [anon_sym_return] = ACTIONS(3393), - [anon_sym_break] = ACTIONS(3393), - [anon_sym_continue] = ACTIONS(3393), - [anon_sym_goto] = ACTIONS(3393), - [anon_sym_AMP] = ACTIONS(3395), - [anon_sym_BANG] = ACTIONS(3395), - [anon_sym_TILDE] = ACTIONS(3395), - [anon_sym_PLUS] = ACTIONS(3393), - [anon_sym_DASH] = ACTIONS(3393), - [anon_sym_DASH_DASH] = ACTIONS(3395), - [anon_sym_PLUS_PLUS] = ACTIONS(3395), - [anon_sym_sizeof] = ACTIONS(3393), - [sym_number_literal] = ACTIONS(3395), - [anon_sym_SQUOTE] = ACTIONS(3395), - [anon_sym_DQUOTE] = ACTIONS(3395), - [sym_true] = ACTIONS(3393), - [sym_false] = ACTIONS(3393), - [sym_null] = ACTIONS(3393), - [sym_identifier] = ACTIONS(3393), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3382), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3382), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3382), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3382), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3382), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3382), + [sym_preproc_directive] = ACTIONS(3382), + [anon_sym_SEMI] = ACTIONS(3384), + [anon_sym_typedef] = ACTIONS(3382), + [anon_sym_extern] = ACTIONS(3382), + [anon_sym_LBRACE] = ACTIONS(3384), + [anon_sym_LPAREN2] = ACTIONS(3384), + [anon_sym_STAR] = ACTIONS(3384), + [anon_sym_static] = ACTIONS(3382), + [anon_sym_auto] = ACTIONS(3382), + [anon_sym_register] = ACTIONS(3382), + [anon_sym_inline] = ACTIONS(3382), + [anon_sym_const] = ACTIONS(3382), + [anon_sym_restrict] = ACTIONS(3382), + [anon_sym_volatile] = ACTIONS(3382), + [anon_sym__Atomic] = ACTIONS(3382), + [anon_sym_unsigned] = ACTIONS(3382), + [anon_sym_long] = ACTIONS(3382), + [anon_sym_short] = ACTIONS(3382), + [sym_primitive_type] = ACTIONS(3382), + [anon_sym_enum] = ACTIONS(3382), + [anon_sym_struct] = ACTIONS(3382), + [anon_sym_union] = ACTIONS(3382), + [anon_sym_if] = ACTIONS(3382), + [anon_sym_else] = ACTIONS(3382), + [anon_sym_switch] = ACTIONS(3382), + [anon_sym_case] = ACTIONS(3382), + [anon_sym_default] = ACTIONS(3382), + [anon_sym_while] = ACTIONS(3382), + [anon_sym_do] = ACTIONS(3382), + [anon_sym_for] = ACTIONS(3382), + [anon_sym_return] = ACTIONS(3382), + [anon_sym_break] = ACTIONS(3382), + [anon_sym_continue] = ACTIONS(3382), + [anon_sym_goto] = ACTIONS(3382), + [anon_sym_AMP] = ACTIONS(3384), + [anon_sym_BANG] = ACTIONS(3384), + [anon_sym_TILDE] = ACTIONS(3384), + [anon_sym_PLUS] = ACTIONS(3382), + [anon_sym_DASH] = ACTIONS(3382), + [anon_sym_DASH_DASH] = ACTIONS(3384), + [anon_sym_PLUS_PLUS] = ACTIONS(3384), + [anon_sym_sizeof] = ACTIONS(3382), + [sym_number_literal] = ACTIONS(3384), + [anon_sym_SQUOTE] = ACTIONS(3384), + [anon_sym_DQUOTE] = ACTIONS(3384), + [sym_true] = ACTIONS(3382), + [sym_false] = ACTIONS(3382), + [sym_null] = ACTIONS(3382), + [sym_identifier] = ACTIONS(3382), [sym_comment] = ACTIONS(39), }, [1291] = { @@ -52433,85 +52452,85 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(872), [sym_concatenated_string] = STATE(872), [sym_string_literal] = STATE(253), - [anon_sym_SEMI] = ACTIONS(2254), - [anon_sym_LBRACE] = ACTIONS(1273), - [anon_sym_LPAREN2] = ACTIONS(554), - [anon_sym_STAR] = ACTIONS(556), - [anon_sym_if] = ACTIONS(2256), - [anon_sym_switch] = ACTIONS(2258), - [anon_sym_case] = ACTIONS(2260), - [anon_sym_default] = ACTIONS(2262), - [anon_sym_while] = ACTIONS(2264), - [anon_sym_do] = ACTIONS(2266), - [anon_sym_for] = ACTIONS(2268), - [anon_sym_return] = ACTIONS(2270), - [anon_sym_break] = ACTIONS(2272), - [anon_sym_continue] = ACTIONS(2274), - [anon_sym_goto] = ACTIONS(2276), - [anon_sym_AMP] = ACTIONS(556), - [anon_sym_BANG] = ACTIONS(580), - [anon_sym_TILDE] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_DASH_DASH] = ACTIONS(586), - [anon_sym_PLUS_PLUS] = ACTIONS(586), - [anon_sym_sizeof] = ACTIONS(588), - [sym_number_literal] = ACTIONS(2278), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2280), - [sym_false] = ACTIONS(2280), - [sym_null] = ACTIONS(2280), - [sym_identifier] = ACTIONS(3067), + [anon_sym_SEMI] = ACTIONS(2243), + [anon_sym_LBRACE] = ACTIONS(1264), + [anon_sym_LPAREN2] = ACTIONS(550), + [anon_sym_STAR] = ACTIONS(552), + [anon_sym_if] = ACTIONS(2245), + [anon_sym_switch] = ACTIONS(2247), + [anon_sym_case] = ACTIONS(2249), + [anon_sym_default] = ACTIONS(2251), + [anon_sym_while] = ACTIONS(2253), + [anon_sym_do] = ACTIONS(2255), + [anon_sym_for] = ACTIONS(2257), + [anon_sym_return] = ACTIONS(2259), + [anon_sym_break] = ACTIONS(2261), + [anon_sym_continue] = ACTIONS(2263), + [anon_sym_goto] = ACTIONS(2265), + [anon_sym_AMP] = ACTIONS(552), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_TILDE] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(580), + [anon_sym_DASH] = ACTIONS(580), + [anon_sym_DASH_DASH] = ACTIONS(582), + [anon_sym_PLUS_PLUS] = ACTIONS(582), + [anon_sym_sizeof] = ACTIONS(584), + [sym_number_literal] = ACTIONS(2267), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(2269), + [sym_false] = ACTIONS(2269), + [sym_null] = ACTIONS(2269), + [sym_identifier] = ACTIONS(3056), [sym_comment] = ACTIONS(39), }, [1292] = { [aux_sym_for_statement_repeat1] = STATE(1088), - [anon_sym_COMMA] = ACTIONS(2530), - [anon_sym_RPAREN] = ACTIONS(3565), + [anon_sym_COMMA] = ACTIONS(2519), + [anon_sym_RPAREN] = ACTIONS(3554), [sym_comment] = ACTIONS(39), }, [1293] = { [sym_argument_list] = STATE(465), [aux_sym_for_statement_repeat1] = STATE(1320), - [anon_sym_COMMA] = ACTIONS(2530), - [anon_sym_RPAREN] = ACTIONS(3565), - [anon_sym_LPAREN2] = ACTIONS(1096), - [anon_sym_STAR] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1100), - [anon_sym_EQ] = ACTIONS(1562), - [anon_sym_QMARK] = ACTIONS(1564), - [anon_sym_STAR_EQ] = ACTIONS(1566), - [anon_sym_SLASH_EQ] = ACTIONS(1566), - [anon_sym_PERCENT_EQ] = ACTIONS(1566), - [anon_sym_PLUS_EQ] = ACTIONS(1566), - [anon_sym_DASH_EQ] = ACTIONS(1566), - [anon_sym_LT_LT_EQ] = ACTIONS(1566), - [anon_sym_GT_GT_EQ] = ACTIONS(1566), - [anon_sym_AMP_EQ] = ACTIONS(1566), - [anon_sym_CARET_EQ] = ACTIONS(1566), - [anon_sym_PIPE_EQ] = ACTIONS(1566), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_PIPE_PIPE] = ACTIONS(1570), - [anon_sym_AMP_AMP] = ACTIONS(1572), - [anon_sym_PIPE] = ACTIONS(1574), - [anon_sym_CARET] = ACTIONS(1576), - [anon_sym_EQ_EQ] = ACTIONS(1578), - [anon_sym_BANG_EQ] = ACTIONS(1578), - [anon_sym_LT] = ACTIONS(1580), - [anon_sym_GT] = ACTIONS(1580), - [anon_sym_LT_EQ] = ACTIONS(1582), - [anon_sym_GT_EQ] = ACTIONS(1582), - [anon_sym_LT_LT] = ACTIONS(1584), - [anon_sym_GT_GT] = ACTIONS(1584), - [anon_sym_PLUS] = ACTIONS(1586), - [anon_sym_DASH] = ACTIONS(1586), - [anon_sym_SLASH] = ACTIONS(1560), - [anon_sym_PERCENT] = ACTIONS(1560), - [anon_sym_DASH_DASH] = ACTIONS(1128), - [anon_sym_PLUS_PLUS] = ACTIONS(1128), - [anon_sym_DOT] = ACTIONS(1130), - [anon_sym_DASH_GT] = ACTIONS(1130), + [anon_sym_COMMA] = ACTIONS(2519), + [anon_sym_RPAREN] = ACTIONS(3554), + [anon_sym_LPAREN2] = ACTIONS(1089), + [anon_sym_STAR] = ACTIONS(1549), + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(1551), + [anon_sym_QMARK] = ACTIONS(1553), + [anon_sym_STAR_EQ] = ACTIONS(1555), + [anon_sym_SLASH_EQ] = ACTIONS(1555), + [anon_sym_PERCENT_EQ] = ACTIONS(1555), + [anon_sym_PLUS_EQ] = ACTIONS(1555), + [anon_sym_DASH_EQ] = ACTIONS(1555), + [anon_sym_LT_LT_EQ] = ACTIONS(1555), + [anon_sym_GT_GT_EQ] = ACTIONS(1555), + [anon_sym_AMP_EQ] = ACTIONS(1555), + [anon_sym_CARET_EQ] = ACTIONS(1555), + [anon_sym_PIPE_EQ] = ACTIONS(1555), + [anon_sym_AMP] = ACTIONS(1557), + [anon_sym_PIPE_PIPE] = ACTIONS(1559), + [anon_sym_AMP_AMP] = ACTIONS(1561), + [anon_sym_PIPE] = ACTIONS(1563), + [anon_sym_CARET] = ACTIONS(1565), + [anon_sym_EQ_EQ] = ACTIONS(1567), + [anon_sym_BANG_EQ] = ACTIONS(1567), + [anon_sym_LT] = ACTIONS(1569), + [anon_sym_GT] = ACTIONS(1569), + [anon_sym_LT_EQ] = ACTIONS(1571), + [anon_sym_GT_EQ] = ACTIONS(1571), + [anon_sym_LT_LT] = ACTIONS(1573), + [anon_sym_GT_GT] = ACTIONS(1573), + [anon_sym_PLUS] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(1575), + [anon_sym_SLASH] = ACTIONS(1549), + [anon_sym_PERCENT] = ACTIONS(1549), + [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_PLUS_PLUS] = ACTIONS(1121), + [anon_sym_DOT] = ACTIONS(1123), + [anon_sym_DASH_GT] = ACTIONS(1123), [sym_comment] = ACTIONS(39), }, [1294] = { @@ -52535,24 +52554,24 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(1321), [sym_concatenated_string] = STATE(1321), [sym_string_literal] = STATE(409), - [anon_sym_RPAREN] = ACTIONS(3565), - [anon_sym_LPAREN2] = ACTIONS(970), - [anon_sym_STAR] = ACTIONS(972), - [anon_sym_AMP] = ACTIONS(972), - [anon_sym_BANG] = ACTIONS(974), - [anon_sym_TILDE] = ACTIONS(976), - [anon_sym_PLUS] = ACTIONS(978), - [anon_sym_DASH] = ACTIONS(978), - [anon_sym_DASH_DASH] = ACTIONS(980), - [anon_sym_PLUS_PLUS] = ACTIONS(980), - [anon_sym_sizeof] = ACTIONS(982), - [sym_number_literal] = ACTIONS(3567), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(3569), - [sym_false] = ACTIONS(3569), - [sym_null] = ACTIONS(3569), - [sym_identifier] = ACTIONS(3569), + [anon_sym_RPAREN] = ACTIONS(3554), + [anon_sym_LPAREN2] = ACTIONS(961), + [anon_sym_STAR] = ACTIONS(963), + [anon_sym_AMP] = ACTIONS(963), + [anon_sym_BANG] = ACTIONS(965), + [anon_sym_TILDE] = ACTIONS(967), + [anon_sym_PLUS] = ACTIONS(969), + [anon_sym_DASH] = ACTIONS(969), + [anon_sym_DASH_DASH] = ACTIONS(971), + [anon_sym_PLUS_PLUS] = ACTIONS(971), + [anon_sym_sizeof] = ACTIONS(973), + [sym_number_literal] = ACTIONS(3556), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(3558), + [sym_false] = ACTIONS(3558), + [sym_null] = ACTIONS(3558), + [sym_identifier] = ACTIONS(3558), [sym_comment] = ACTIONS(39), }, [1295] = { @@ -52590,79 +52609,79 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(649), [sym_concatenated_string] = STATE(649), [sym_string_literal] = STATE(253), - [anon_sym_SEMI] = ACTIONS(1516), - [anon_sym_LBRACE] = ACTIONS(734), - [anon_sym_LPAREN2] = ACTIONS(554), - [anon_sym_STAR] = ACTIONS(556), - [anon_sym_if] = ACTIONS(2733), - [anon_sym_switch] = ACTIONS(2735), - [anon_sym_case] = ACTIONS(2737), - [anon_sym_default] = ACTIONS(2739), - [anon_sym_while] = ACTIONS(2741), - [anon_sym_do] = ACTIONS(1528), - [anon_sym_for] = ACTIONS(2743), - [anon_sym_return] = ACTIONS(1532), - [anon_sym_break] = ACTIONS(1534), - [anon_sym_continue] = ACTIONS(1536), - [anon_sym_goto] = ACTIONS(1538), - [anon_sym_AMP] = ACTIONS(556), - [anon_sym_BANG] = ACTIONS(580), - [anon_sym_TILDE] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_DASH_DASH] = ACTIONS(586), - [anon_sym_PLUS_PLUS] = ACTIONS(586), - [anon_sym_sizeof] = ACTIONS(588), - [sym_number_literal] = ACTIONS(1540), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1542), - [sym_false] = ACTIONS(1542), - [sym_null] = ACTIONS(1542), - [sym_identifier] = ACTIONS(2745), + [anon_sym_SEMI] = ACTIONS(1505), + [anon_sym_LBRACE] = ACTIONS(725), + [anon_sym_LPAREN2] = ACTIONS(550), + [anon_sym_STAR] = ACTIONS(552), + [anon_sym_if] = ACTIONS(2722), + [anon_sym_switch] = ACTIONS(2724), + [anon_sym_case] = ACTIONS(2726), + [anon_sym_default] = ACTIONS(2728), + [anon_sym_while] = ACTIONS(2730), + [anon_sym_do] = ACTIONS(1517), + [anon_sym_for] = ACTIONS(2732), + [anon_sym_return] = ACTIONS(1521), + [anon_sym_break] = ACTIONS(1523), + [anon_sym_continue] = ACTIONS(1525), + [anon_sym_goto] = ACTIONS(1527), + [anon_sym_AMP] = ACTIONS(552), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_TILDE] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(580), + [anon_sym_DASH] = ACTIONS(580), + [anon_sym_DASH_DASH] = ACTIONS(582), + [anon_sym_PLUS_PLUS] = ACTIONS(582), + [anon_sym_sizeof] = ACTIONS(584), + [sym_number_literal] = ACTIONS(1529), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_null] = ACTIONS(1531), + [sym_identifier] = ACTIONS(2734), [sym_comment] = ACTIONS(39), }, [1296] = { [sym_argument_list] = STATE(465), [aux_sym_for_statement_repeat1] = STATE(1323), - [anon_sym_COMMA] = ACTIONS(2530), - [anon_sym_RPAREN] = ACTIONS(3571), - [anon_sym_LPAREN2] = ACTIONS(1096), - [anon_sym_STAR] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1100), - [anon_sym_EQ] = ACTIONS(1562), - [anon_sym_QMARK] = ACTIONS(1564), - [anon_sym_STAR_EQ] = ACTIONS(1566), - [anon_sym_SLASH_EQ] = ACTIONS(1566), - [anon_sym_PERCENT_EQ] = ACTIONS(1566), - [anon_sym_PLUS_EQ] = ACTIONS(1566), - [anon_sym_DASH_EQ] = ACTIONS(1566), - [anon_sym_LT_LT_EQ] = ACTIONS(1566), - [anon_sym_GT_GT_EQ] = ACTIONS(1566), - [anon_sym_AMP_EQ] = ACTIONS(1566), - [anon_sym_CARET_EQ] = ACTIONS(1566), - [anon_sym_PIPE_EQ] = ACTIONS(1566), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_PIPE_PIPE] = ACTIONS(1570), - [anon_sym_AMP_AMP] = ACTIONS(1572), - [anon_sym_PIPE] = ACTIONS(1574), - [anon_sym_CARET] = ACTIONS(1576), - [anon_sym_EQ_EQ] = ACTIONS(1578), - [anon_sym_BANG_EQ] = ACTIONS(1578), - [anon_sym_LT] = ACTIONS(1580), - [anon_sym_GT] = ACTIONS(1580), - [anon_sym_LT_EQ] = ACTIONS(1582), - [anon_sym_GT_EQ] = ACTIONS(1582), - [anon_sym_LT_LT] = ACTIONS(1584), - [anon_sym_GT_GT] = ACTIONS(1584), - [anon_sym_PLUS] = ACTIONS(1586), - [anon_sym_DASH] = ACTIONS(1586), - [anon_sym_SLASH] = ACTIONS(1560), - [anon_sym_PERCENT] = ACTIONS(1560), - [anon_sym_DASH_DASH] = ACTIONS(1128), - [anon_sym_PLUS_PLUS] = ACTIONS(1128), - [anon_sym_DOT] = ACTIONS(1130), - [anon_sym_DASH_GT] = ACTIONS(1130), + [anon_sym_COMMA] = ACTIONS(2519), + [anon_sym_RPAREN] = ACTIONS(3560), + [anon_sym_LPAREN2] = ACTIONS(1089), + [anon_sym_STAR] = ACTIONS(1549), + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(1551), + [anon_sym_QMARK] = ACTIONS(1553), + [anon_sym_STAR_EQ] = ACTIONS(1555), + [anon_sym_SLASH_EQ] = ACTIONS(1555), + [anon_sym_PERCENT_EQ] = ACTIONS(1555), + [anon_sym_PLUS_EQ] = ACTIONS(1555), + [anon_sym_DASH_EQ] = ACTIONS(1555), + [anon_sym_LT_LT_EQ] = ACTIONS(1555), + [anon_sym_GT_GT_EQ] = ACTIONS(1555), + [anon_sym_AMP_EQ] = ACTIONS(1555), + [anon_sym_CARET_EQ] = ACTIONS(1555), + [anon_sym_PIPE_EQ] = ACTIONS(1555), + [anon_sym_AMP] = ACTIONS(1557), + [anon_sym_PIPE_PIPE] = ACTIONS(1559), + [anon_sym_AMP_AMP] = ACTIONS(1561), + [anon_sym_PIPE] = ACTIONS(1563), + [anon_sym_CARET] = ACTIONS(1565), + [anon_sym_EQ_EQ] = ACTIONS(1567), + [anon_sym_BANG_EQ] = ACTIONS(1567), + [anon_sym_LT] = ACTIONS(1569), + [anon_sym_GT] = ACTIONS(1569), + [anon_sym_LT_EQ] = ACTIONS(1571), + [anon_sym_GT_EQ] = ACTIONS(1571), + [anon_sym_LT_LT] = ACTIONS(1573), + [anon_sym_GT_GT] = ACTIONS(1573), + [anon_sym_PLUS] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(1575), + [anon_sym_SLASH] = ACTIONS(1549), + [anon_sym_PERCENT] = ACTIONS(1549), + [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_PLUS_PLUS] = ACTIONS(1121), + [anon_sym_DOT] = ACTIONS(1123), + [anon_sym_DASH_GT] = ACTIONS(1123), [sym_comment] = ACTIONS(39), }, [1297] = { @@ -52686,125 +52705,125 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(1324), [sym_concatenated_string] = STATE(1324), [sym_string_literal] = STATE(409), - [anon_sym_RPAREN] = ACTIONS(3571), - [anon_sym_LPAREN2] = ACTIONS(970), - [anon_sym_STAR] = ACTIONS(972), - [anon_sym_AMP] = ACTIONS(972), - [anon_sym_BANG] = ACTIONS(974), - [anon_sym_TILDE] = ACTIONS(976), - [anon_sym_PLUS] = ACTIONS(978), - [anon_sym_DASH] = ACTIONS(978), - [anon_sym_DASH_DASH] = ACTIONS(980), - [anon_sym_PLUS_PLUS] = ACTIONS(980), - [anon_sym_sizeof] = ACTIONS(982), - [sym_number_literal] = ACTIONS(3573), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(3575), - [sym_false] = ACTIONS(3575), - [sym_null] = ACTIONS(3575), - [sym_identifier] = ACTIONS(3575), + [anon_sym_RPAREN] = ACTIONS(3560), + [anon_sym_LPAREN2] = ACTIONS(961), + [anon_sym_STAR] = ACTIONS(963), + [anon_sym_AMP] = ACTIONS(963), + [anon_sym_BANG] = ACTIONS(965), + [anon_sym_TILDE] = ACTIONS(967), + [anon_sym_PLUS] = ACTIONS(969), + [anon_sym_DASH] = ACTIONS(969), + [anon_sym_DASH_DASH] = ACTIONS(971), + [anon_sym_PLUS_PLUS] = ACTIONS(971), + [anon_sym_sizeof] = ACTIONS(973), + [sym_number_literal] = ACTIONS(3562), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(3564), + [sym_false] = ACTIONS(3564), + [sym_null] = ACTIONS(3564), + [sym_identifier] = ACTIONS(3564), [sym_comment] = ACTIONS(39), }, [1298] = { [sym_argument_list] = STATE(465), - [anon_sym_SEMI] = ACTIONS(3577), - [anon_sym_LPAREN2] = ACTIONS(1096), - [anon_sym_STAR] = ACTIONS(1436), - [anon_sym_LBRACK] = ACTIONS(1100), - [anon_sym_EQ] = ACTIONS(1438), - [anon_sym_QMARK] = ACTIONS(1440), - [anon_sym_STAR_EQ] = ACTIONS(1442), - [anon_sym_SLASH_EQ] = ACTIONS(1442), - [anon_sym_PERCENT_EQ] = ACTIONS(1442), - [anon_sym_PLUS_EQ] = ACTIONS(1442), - [anon_sym_DASH_EQ] = ACTIONS(1442), - [anon_sym_LT_LT_EQ] = ACTIONS(1442), - [anon_sym_GT_GT_EQ] = ACTIONS(1442), - [anon_sym_AMP_EQ] = ACTIONS(1442), - [anon_sym_CARET_EQ] = ACTIONS(1442), - [anon_sym_PIPE_EQ] = ACTIONS(1442), - [anon_sym_AMP] = ACTIONS(1444), - [anon_sym_PIPE_PIPE] = ACTIONS(1446), - [anon_sym_AMP_AMP] = ACTIONS(1448), - [anon_sym_PIPE] = ACTIONS(1450), - [anon_sym_CARET] = ACTIONS(1452), - [anon_sym_EQ_EQ] = ACTIONS(1454), - [anon_sym_BANG_EQ] = ACTIONS(1454), - [anon_sym_LT] = ACTIONS(1456), - [anon_sym_GT] = ACTIONS(1456), - [anon_sym_LT_EQ] = ACTIONS(1458), - [anon_sym_GT_EQ] = ACTIONS(1458), - [anon_sym_LT_LT] = ACTIONS(1460), - [anon_sym_GT_GT] = ACTIONS(1460), - [anon_sym_PLUS] = ACTIONS(1462), - [anon_sym_DASH] = ACTIONS(1462), - [anon_sym_SLASH] = ACTIONS(1436), - [anon_sym_PERCENT] = ACTIONS(1436), - [anon_sym_DASH_DASH] = ACTIONS(1128), - [anon_sym_PLUS_PLUS] = ACTIONS(1128), - [anon_sym_DOT] = ACTIONS(1130), - [anon_sym_DASH_GT] = ACTIONS(1130), + [anon_sym_SEMI] = ACTIONS(3566), + [anon_sym_LPAREN2] = ACTIONS(1089), + [anon_sym_STAR] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(1429), + [anon_sym_QMARK] = ACTIONS(1431), + [anon_sym_STAR_EQ] = ACTIONS(1433), + [anon_sym_SLASH_EQ] = ACTIONS(1433), + [anon_sym_PERCENT_EQ] = ACTIONS(1433), + [anon_sym_PLUS_EQ] = ACTIONS(1433), + [anon_sym_DASH_EQ] = ACTIONS(1433), + [anon_sym_LT_LT_EQ] = ACTIONS(1433), + [anon_sym_GT_GT_EQ] = ACTIONS(1433), + [anon_sym_AMP_EQ] = ACTIONS(1433), + [anon_sym_CARET_EQ] = ACTIONS(1433), + [anon_sym_PIPE_EQ] = ACTIONS(1433), + [anon_sym_AMP] = ACTIONS(1435), + [anon_sym_PIPE_PIPE] = ACTIONS(1437), + [anon_sym_AMP_AMP] = ACTIONS(1439), + [anon_sym_PIPE] = ACTIONS(1441), + [anon_sym_CARET] = ACTIONS(1443), + [anon_sym_EQ_EQ] = ACTIONS(1445), + [anon_sym_BANG_EQ] = ACTIONS(1445), + [anon_sym_LT] = ACTIONS(1447), + [anon_sym_GT] = ACTIONS(1447), + [anon_sym_LT_EQ] = ACTIONS(1449), + [anon_sym_GT_EQ] = ACTIONS(1449), + [anon_sym_LT_LT] = ACTIONS(1451), + [anon_sym_GT_GT] = ACTIONS(1451), + [anon_sym_PLUS] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1453), + [anon_sym_SLASH] = ACTIONS(1427), + [anon_sym_PERCENT] = ACTIONS(1427), + [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_PLUS_PLUS] = ACTIONS(1121), + [anon_sym_DOT] = ACTIONS(1123), + [anon_sym_DASH_GT] = ACTIONS(1123), [sym_comment] = ACTIONS(39), }, [1299] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3487), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3487), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3487), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3487), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3487), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3487), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(3487), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(3487), - [sym_preproc_directive] = ACTIONS(3487), - [anon_sym_SEMI] = ACTIONS(3489), - [anon_sym_typedef] = ACTIONS(3487), - [anon_sym_extern] = ACTIONS(3487), - [anon_sym_LBRACE] = ACTIONS(3489), - [anon_sym_LPAREN2] = ACTIONS(3489), - [anon_sym_STAR] = ACTIONS(3489), - [anon_sym_static] = ACTIONS(3487), - [anon_sym_auto] = ACTIONS(3487), - [anon_sym_register] = ACTIONS(3487), - [anon_sym_inline] = ACTIONS(3487), - [anon_sym_const] = ACTIONS(3487), - [anon_sym_restrict] = ACTIONS(3487), - [anon_sym_volatile] = ACTIONS(3487), - [anon_sym__Atomic] = ACTIONS(3487), - [anon_sym_unsigned] = ACTIONS(3487), - [anon_sym_long] = ACTIONS(3487), - [anon_sym_short] = ACTIONS(3487), - [sym_primitive_type] = ACTIONS(3487), - [anon_sym_enum] = ACTIONS(3487), - [anon_sym_struct] = ACTIONS(3487), - [anon_sym_union] = ACTIONS(3487), - [anon_sym_if] = ACTIONS(3487), - [anon_sym_else] = ACTIONS(3487), - [anon_sym_switch] = ACTIONS(3487), - [anon_sym_case] = ACTIONS(3487), - [anon_sym_default] = ACTIONS(3487), - [anon_sym_while] = ACTIONS(3487), - [anon_sym_do] = ACTIONS(3487), - [anon_sym_for] = ACTIONS(3487), - [anon_sym_return] = ACTIONS(3487), - [anon_sym_break] = ACTIONS(3487), - [anon_sym_continue] = ACTIONS(3487), - [anon_sym_goto] = ACTIONS(3487), - [anon_sym_AMP] = ACTIONS(3489), - [anon_sym_BANG] = ACTIONS(3489), - [anon_sym_TILDE] = ACTIONS(3489), - [anon_sym_PLUS] = ACTIONS(3487), - [anon_sym_DASH] = ACTIONS(3487), - [anon_sym_DASH_DASH] = ACTIONS(3489), - [anon_sym_PLUS_PLUS] = ACTIONS(3489), - [anon_sym_sizeof] = ACTIONS(3487), - [sym_number_literal] = ACTIONS(3489), - [anon_sym_SQUOTE] = ACTIONS(3489), - [anon_sym_DQUOTE] = ACTIONS(3489), - [sym_true] = ACTIONS(3487), - [sym_false] = ACTIONS(3487), - [sym_null] = ACTIONS(3487), - [sym_identifier] = ACTIONS(3487), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3476), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3476), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3476), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3476), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3476), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3476), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(3476), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(3476), + [sym_preproc_directive] = ACTIONS(3476), + [anon_sym_SEMI] = ACTIONS(3478), + [anon_sym_typedef] = ACTIONS(3476), + [anon_sym_extern] = ACTIONS(3476), + [anon_sym_LBRACE] = ACTIONS(3478), + [anon_sym_LPAREN2] = ACTIONS(3478), + [anon_sym_STAR] = ACTIONS(3478), + [anon_sym_static] = ACTIONS(3476), + [anon_sym_auto] = ACTIONS(3476), + [anon_sym_register] = ACTIONS(3476), + [anon_sym_inline] = ACTIONS(3476), + [anon_sym_const] = ACTIONS(3476), + [anon_sym_restrict] = ACTIONS(3476), + [anon_sym_volatile] = ACTIONS(3476), + [anon_sym__Atomic] = ACTIONS(3476), + [anon_sym_unsigned] = ACTIONS(3476), + [anon_sym_long] = ACTIONS(3476), + [anon_sym_short] = ACTIONS(3476), + [sym_primitive_type] = ACTIONS(3476), + [anon_sym_enum] = ACTIONS(3476), + [anon_sym_struct] = ACTIONS(3476), + [anon_sym_union] = ACTIONS(3476), + [anon_sym_if] = ACTIONS(3476), + [anon_sym_else] = ACTIONS(3476), + [anon_sym_switch] = ACTIONS(3476), + [anon_sym_case] = ACTIONS(3476), + [anon_sym_default] = ACTIONS(3476), + [anon_sym_while] = ACTIONS(3476), + [anon_sym_do] = ACTIONS(3476), + [anon_sym_for] = ACTIONS(3476), + [anon_sym_return] = ACTIONS(3476), + [anon_sym_break] = ACTIONS(3476), + [anon_sym_continue] = ACTIONS(3476), + [anon_sym_goto] = ACTIONS(3476), + [anon_sym_AMP] = ACTIONS(3478), + [anon_sym_BANG] = ACTIONS(3478), + [anon_sym_TILDE] = ACTIONS(3478), + [anon_sym_PLUS] = ACTIONS(3476), + [anon_sym_DASH] = ACTIONS(3476), + [anon_sym_DASH_DASH] = ACTIONS(3478), + [anon_sym_PLUS_PLUS] = ACTIONS(3478), + [anon_sym_sizeof] = ACTIONS(3476), + [sym_number_literal] = ACTIONS(3478), + [anon_sym_SQUOTE] = ACTIONS(3478), + [anon_sym_DQUOTE] = ACTIONS(3478), + [sym_true] = ACTIONS(3476), + [sym_false] = ACTIONS(3476), + [sym_null] = ACTIONS(3476), + [sym_identifier] = ACTIONS(3476), [sym_comment] = ACTIONS(39), }, [1300] = { @@ -52842,85 +52861,85 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(649), [sym_concatenated_string] = STATE(649), [sym_string_literal] = STATE(253), - [anon_sym_SEMI] = ACTIONS(1516), - [anon_sym_LBRACE] = ACTIONS(734), - [anon_sym_LPAREN2] = ACTIONS(554), - [anon_sym_STAR] = ACTIONS(556), - [anon_sym_if] = ACTIONS(1518), - [anon_sym_switch] = ACTIONS(1520), - [anon_sym_case] = ACTIONS(1522), - [anon_sym_default] = ACTIONS(1524), - [anon_sym_while] = ACTIONS(1526), - [anon_sym_do] = ACTIONS(1528), - [anon_sym_for] = ACTIONS(1530), - [anon_sym_return] = ACTIONS(1532), - [anon_sym_break] = ACTIONS(1534), - [anon_sym_continue] = ACTIONS(1536), - [anon_sym_goto] = ACTIONS(1538), - [anon_sym_AMP] = ACTIONS(556), - [anon_sym_BANG] = ACTIONS(580), - [anon_sym_TILDE] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_DASH_DASH] = ACTIONS(586), - [anon_sym_PLUS_PLUS] = ACTIONS(586), - [anon_sym_sizeof] = ACTIONS(588), - [sym_number_literal] = ACTIONS(1540), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1542), - [sym_false] = ACTIONS(1542), - [sym_null] = ACTIONS(1542), - [sym_identifier] = ACTIONS(2747), + [anon_sym_SEMI] = ACTIONS(1505), + [anon_sym_LBRACE] = ACTIONS(725), + [anon_sym_LPAREN2] = ACTIONS(550), + [anon_sym_STAR] = ACTIONS(552), + [anon_sym_if] = ACTIONS(1507), + [anon_sym_switch] = ACTIONS(1509), + [anon_sym_case] = ACTIONS(1511), + [anon_sym_default] = ACTIONS(1513), + [anon_sym_while] = ACTIONS(1515), + [anon_sym_do] = ACTIONS(1517), + [anon_sym_for] = ACTIONS(1519), + [anon_sym_return] = ACTIONS(1521), + [anon_sym_break] = ACTIONS(1523), + [anon_sym_continue] = ACTIONS(1525), + [anon_sym_goto] = ACTIONS(1527), + [anon_sym_AMP] = ACTIONS(552), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_TILDE] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(580), + [anon_sym_DASH] = ACTIONS(580), + [anon_sym_DASH_DASH] = ACTIONS(582), + [anon_sym_PLUS_PLUS] = ACTIONS(582), + [anon_sym_sizeof] = ACTIONS(584), + [sym_number_literal] = ACTIONS(1529), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_null] = ACTIONS(1531), + [sym_identifier] = ACTIONS(2736), [sym_comment] = ACTIONS(39), }, [1301] = { [aux_sym_for_statement_repeat1] = STATE(1088), - [anon_sym_COMMA] = ACTIONS(2530), - [anon_sym_RPAREN] = ACTIONS(3579), + [anon_sym_COMMA] = ACTIONS(2519), + [anon_sym_RPAREN] = ACTIONS(3568), [sym_comment] = ACTIONS(39), }, [1302] = { [sym_argument_list] = STATE(465), [aux_sym_for_statement_repeat1] = STATE(1328), - [anon_sym_COMMA] = ACTIONS(2530), - [anon_sym_RPAREN] = ACTIONS(3579), - [anon_sym_LPAREN2] = ACTIONS(1096), - [anon_sym_STAR] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1100), - [anon_sym_EQ] = ACTIONS(1562), - [anon_sym_QMARK] = ACTIONS(1564), - [anon_sym_STAR_EQ] = ACTIONS(1566), - [anon_sym_SLASH_EQ] = ACTIONS(1566), - [anon_sym_PERCENT_EQ] = ACTIONS(1566), - [anon_sym_PLUS_EQ] = ACTIONS(1566), - [anon_sym_DASH_EQ] = ACTIONS(1566), - [anon_sym_LT_LT_EQ] = ACTIONS(1566), - [anon_sym_GT_GT_EQ] = ACTIONS(1566), - [anon_sym_AMP_EQ] = ACTIONS(1566), - [anon_sym_CARET_EQ] = ACTIONS(1566), - [anon_sym_PIPE_EQ] = ACTIONS(1566), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_PIPE_PIPE] = ACTIONS(1570), - [anon_sym_AMP_AMP] = ACTIONS(1572), - [anon_sym_PIPE] = ACTIONS(1574), - [anon_sym_CARET] = ACTIONS(1576), - [anon_sym_EQ_EQ] = ACTIONS(1578), - [anon_sym_BANG_EQ] = ACTIONS(1578), - [anon_sym_LT] = ACTIONS(1580), - [anon_sym_GT] = ACTIONS(1580), - [anon_sym_LT_EQ] = ACTIONS(1582), - [anon_sym_GT_EQ] = ACTIONS(1582), - [anon_sym_LT_LT] = ACTIONS(1584), - [anon_sym_GT_GT] = ACTIONS(1584), - [anon_sym_PLUS] = ACTIONS(1586), - [anon_sym_DASH] = ACTIONS(1586), - [anon_sym_SLASH] = ACTIONS(1560), - [anon_sym_PERCENT] = ACTIONS(1560), - [anon_sym_DASH_DASH] = ACTIONS(1128), - [anon_sym_PLUS_PLUS] = ACTIONS(1128), - [anon_sym_DOT] = ACTIONS(1130), - [anon_sym_DASH_GT] = ACTIONS(1130), + [anon_sym_COMMA] = ACTIONS(2519), + [anon_sym_RPAREN] = ACTIONS(3568), + [anon_sym_LPAREN2] = ACTIONS(1089), + [anon_sym_STAR] = ACTIONS(1549), + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(1551), + [anon_sym_QMARK] = ACTIONS(1553), + [anon_sym_STAR_EQ] = ACTIONS(1555), + [anon_sym_SLASH_EQ] = ACTIONS(1555), + [anon_sym_PERCENT_EQ] = ACTIONS(1555), + [anon_sym_PLUS_EQ] = ACTIONS(1555), + [anon_sym_DASH_EQ] = ACTIONS(1555), + [anon_sym_LT_LT_EQ] = ACTIONS(1555), + [anon_sym_GT_GT_EQ] = ACTIONS(1555), + [anon_sym_AMP_EQ] = ACTIONS(1555), + [anon_sym_CARET_EQ] = ACTIONS(1555), + [anon_sym_PIPE_EQ] = ACTIONS(1555), + [anon_sym_AMP] = ACTIONS(1557), + [anon_sym_PIPE_PIPE] = ACTIONS(1559), + [anon_sym_AMP_AMP] = ACTIONS(1561), + [anon_sym_PIPE] = ACTIONS(1563), + [anon_sym_CARET] = ACTIONS(1565), + [anon_sym_EQ_EQ] = ACTIONS(1567), + [anon_sym_BANG_EQ] = ACTIONS(1567), + [anon_sym_LT] = ACTIONS(1569), + [anon_sym_GT] = ACTIONS(1569), + [anon_sym_LT_EQ] = ACTIONS(1571), + [anon_sym_GT_EQ] = ACTIONS(1571), + [anon_sym_LT_LT] = ACTIONS(1573), + [anon_sym_GT_GT] = ACTIONS(1573), + [anon_sym_PLUS] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(1575), + [anon_sym_SLASH] = ACTIONS(1549), + [anon_sym_PERCENT] = ACTIONS(1549), + [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_PLUS_PLUS] = ACTIONS(1121), + [anon_sym_DOT] = ACTIONS(1123), + [anon_sym_DASH_GT] = ACTIONS(1123), [sym_comment] = ACTIONS(39), }, [1303] = { @@ -52958,85 +52977,85 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(251), [sym_concatenated_string] = STATE(251), [sym_string_literal] = STATE(253), - [anon_sym_SEMI] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(241), - [anon_sym_LPAREN2] = ACTIONS(554), - [anon_sym_STAR] = ACTIONS(556), - [anon_sym_if] = ACTIONS(1598), - [anon_sym_switch] = ACTIONS(1600), - [anon_sym_case] = ACTIONS(1602), - [anon_sym_default] = ACTIONS(1604), - [anon_sym_while] = ACTIONS(1606), - [anon_sym_do] = ACTIONS(568), - [anon_sym_for] = ACTIONS(1608), - [anon_sym_return] = ACTIONS(572), - [anon_sym_break] = ACTIONS(574), - [anon_sym_continue] = ACTIONS(576), - [anon_sym_goto] = ACTIONS(578), - [anon_sym_AMP] = ACTIONS(556), - [anon_sym_BANG] = ACTIONS(580), - [anon_sym_TILDE] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_DASH_DASH] = ACTIONS(586), - [anon_sym_PLUS_PLUS] = ACTIONS(586), - [anon_sym_sizeof] = ACTIONS(588), - [sym_number_literal] = ACTIONS(590), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(594), - [sym_false] = ACTIONS(594), - [sym_null] = ACTIONS(594), - [sym_identifier] = ACTIONS(1610), + [anon_sym_SEMI] = ACTIONS(546), + [anon_sym_LBRACE] = ACTIONS(239), + [anon_sym_LPAREN2] = ACTIONS(550), + [anon_sym_STAR] = ACTIONS(552), + [anon_sym_if] = ACTIONS(1587), + [anon_sym_switch] = ACTIONS(1589), + [anon_sym_case] = ACTIONS(1591), + [anon_sym_default] = ACTIONS(1593), + [anon_sym_while] = ACTIONS(1595), + [anon_sym_do] = ACTIONS(564), + [anon_sym_for] = ACTIONS(1597), + [anon_sym_return] = ACTIONS(568), + [anon_sym_break] = ACTIONS(570), + [anon_sym_continue] = ACTIONS(572), + [anon_sym_goto] = ACTIONS(574), + [anon_sym_AMP] = ACTIONS(552), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_TILDE] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(580), + [anon_sym_DASH] = ACTIONS(580), + [anon_sym_DASH_DASH] = ACTIONS(582), + [anon_sym_PLUS_PLUS] = ACTIONS(582), + [anon_sym_sizeof] = ACTIONS(584), + [sym_number_literal] = ACTIONS(586), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(590), + [sym_false] = ACTIONS(590), + [sym_null] = ACTIONS(590), + [sym_identifier] = ACTIONS(1599), [sym_comment] = ACTIONS(39), }, [1304] = { [aux_sym_for_statement_repeat1] = STATE(1088), - [anon_sym_COMMA] = ACTIONS(2530), - [anon_sym_RPAREN] = ACTIONS(3581), + [anon_sym_COMMA] = ACTIONS(2519), + [anon_sym_RPAREN] = ACTIONS(3570), [sym_comment] = ACTIONS(39), }, [1305] = { [sym_argument_list] = STATE(465), [aux_sym_for_statement_repeat1] = STATE(1330), - [anon_sym_COMMA] = ACTIONS(2530), - [anon_sym_RPAREN] = ACTIONS(3581), - [anon_sym_LPAREN2] = ACTIONS(1096), - [anon_sym_STAR] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1100), - [anon_sym_EQ] = ACTIONS(1562), - [anon_sym_QMARK] = ACTIONS(1564), - [anon_sym_STAR_EQ] = ACTIONS(1566), - [anon_sym_SLASH_EQ] = ACTIONS(1566), - [anon_sym_PERCENT_EQ] = ACTIONS(1566), - [anon_sym_PLUS_EQ] = ACTIONS(1566), - [anon_sym_DASH_EQ] = ACTIONS(1566), - [anon_sym_LT_LT_EQ] = ACTIONS(1566), - [anon_sym_GT_GT_EQ] = ACTIONS(1566), - [anon_sym_AMP_EQ] = ACTIONS(1566), - [anon_sym_CARET_EQ] = ACTIONS(1566), - [anon_sym_PIPE_EQ] = ACTIONS(1566), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_PIPE_PIPE] = ACTIONS(1570), - [anon_sym_AMP_AMP] = ACTIONS(1572), - [anon_sym_PIPE] = ACTIONS(1574), - [anon_sym_CARET] = ACTIONS(1576), - [anon_sym_EQ_EQ] = ACTIONS(1578), - [anon_sym_BANG_EQ] = ACTIONS(1578), - [anon_sym_LT] = ACTIONS(1580), - [anon_sym_GT] = ACTIONS(1580), - [anon_sym_LT_EQ] = ACTIONS(1582), - [anon_sym_GT_EQ] = ACTIONS(1582), - [anon_sym_LT_LT] = ACTIONS(1584), - [anon_sym_GT_GT] = ACTIONS(1584), - [anon_sym_PLUS] = ACTIONS(1586), - [anon_sym_DASH] = ACTIONS(1586), - [anon_sym_SLASH] = ACTIONS(1560), - [anon_sym_PERCENT] = ACTIONS(1560), - [anon_sym_DASH_DASH] = ACTIONS(1128), - [anon_sym_PLUS_PLUS] = ACTIONS(1128), - [anon_sym_DOT] = ACTIONS(1130), - [anon_sym_DASH_GT] = ACTIONS(1130), + [anon_sym_COMMA] = ACTIONS(2519), + [anon_sym_RPAREN] = ACTIONS(3570), + [anon_sym_LPAREN2] = ACTIONS(1089), + [anon_sym_STAR] = ACTIONS(1549), + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(1551), + [anon_sym_QMARK] = ACTIONS(1553), + [anon_sym_STAR_EQ] = ACTIONS(1555), + [anon_sym_SLASH_EQ] = ACTIONS(1555), + [anon_sym_PERCENT_EQ] = ACTIONS(1555), + [anon_sym_PLUS_EQ] = ACTIONS(1555), + [anon_sym_DASH_EQ] = ACTIONS(1555), + [anon_sym_LT_LT_EQ] = ACTIONS(1555), + [anon_sym_GT_GT_EQ] = ACTIONS(1555), + [anon_sym_AMP_EQ] = ACTIONS(1555), + [anon_sym_CARET_EQ] = ACTIONS(1555), + [anon_sym_PIPE_EQ] = ACTIONS(1555), + [anon_sym_AMP] = ACTIONS(1557), + [anon_sym_PIPE_PIPE] = ACTIONS(1559), + [anon_sym_AMP_AMP] = ACTIONS(1561), + [anon_sym_PIPE] = ACTIONS(1563), + [anon_sym_CARET] = ACTIONS(1565), + [anon_sym_EQ_EQ] = ACTIONS(1567), + [anon_sym_BANG_EQ] = ACTIONS(1567), + [anon_sym_LT] = ACTIONS(1569), + [anon_sym_GT] = ACTIONS(1569), + [anon_sym_LT_EQ] = ACTIONS(1571), + [anon_sym_GT_EQ] = ACTIONS(1571), + [anon_sym_LT_LT] = ACTIONS(1573), + [anon_sym_GT_GT] = ACTIONS(1573), + [anon_sym_PLUS] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(1575), + [anon_sym_SLASH] = ACTIONS(1549), + [anon_sym_PERCENT] = ACTIONS(1549), + [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_PLUS_PLUS] = ACTIONS(1121), + [anon_sym_DOT] = ACTIONS(1123), + [anon_sym_DASH_GT] = ACTIONS(1123), [sym_comment] = ACTIONS(39), }, [1306] = { @@ -53074,85 +53093,85 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(251), [sym_concatenated_string] = STATE(251), [sym_string_literal] = STATE(253), - [anon_sym_SEMI] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(241), - [anon_sym_LPAREN2] = ACTIONS(554), - [anon_sym_STAR] = ACTIONS(556), - [anon_sym_if] = ACTIONS(2472), - [anon_sym_switch] = ACTIONS(2474), - [anon_sym_case] = ACTIONS(2476), - [anon_sym_default] = ACTIONS(2478), - [anon_sym_while] = ACTIONS(2480), - [anon_sym_do] = ACTIONS(1026), - [anon_sym_for] = ACTIONS(2482), - [anon_sym_return] = ACTIONS(572), - [anon_sym_break] = ACTIONS(574), - [anon_sym_continue] = ACTIONS(576), - [anon_sym_goto] = ACTIONS(578), - [anon_sym_AMP] = ACTIONS(556), - [anon_sym_BANG] = ACTIONS(580), - [anon_sym_TILDE] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_DASH_DASH] = ACTIONS(586), - [anon_sym_PLUS_PLUS] = ACTIONS(586), - [anon_sym_sizeof] = ACTIONS(588), - [sym_number_literal] = ACTIONS(590), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(594), - [sym_false] = ACTIONS(594), - [sym_null] = ACTIONS(594), - [sym_identifier] = ACTIONS(2484), + [anon_sym_SEMI] = ACTIONS(546), + [anon_sym_LBRACE] = ACTIONS(239), + [anon_sym_LPAREN2] = ACTIONS(550), + [anon_sym_STAR] = ACTIONS(552), + [anon_sym_if] = ACTIONS(2461), + [anon_sym_switch] = ACTIONS(2463), + [anon_sym_case] = ACTIONS(2465), + [anon_sym_default] = ACTIONS(2467), + [anon_sym_while] = ACTIONS(2469), + [anon_sym_do] = ACTIONS(1017), + [anon_sym_for] = ACTIONS(2471), + [anon_sym_return] = ACTIONS(568), + [anon_sym_break] = ACTIONS(570), + [anon_sym_continue] = ACTIONS(572), + [anon_sym_goto] = ACTIONS(574), + [anon_sym_AMP] = ACTIONS(552), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_TILDE] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(580), + [anon_sym_DASH] = ACTIONS(580), + [anon_sym_DASH_DASH] = ACTIONS(582), + [anon_sym_PLUS_PLUS] = ACTIONS(582), + [anon_sym_sizeof] = ACTIONS(584), + [sym_number_literal] = ACTIONS(586), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(590), + [sym_false] = ACTIONS(590), + [sym_null] = ACTIONS(590), + [sym_identifier] = ACTIONS(2473), [sym_comment] = ACTIONS(39), }, [1307] = { [aux_sym_for_statement_repeat1] = STATE(1088), - [anon_sym_COMMA] = ACTIONS(2530), - [anon_sym_RPAREN] = ACTIONS(3583), + [anon_sym_COMMA] = ACTIONS(2519), + [anon_sym_RPAREN] = ACTIONS(3572), [sym_comment] = ACTIONS(39), }, [1308] = { [sym_argument_list] = STATE(465), [aux_sym_for_statement_repeat1] = STATE(1332), - [anon_sym_COMMA] = ACTIONS(2530), - [anon_sym_RPAREN] = ACTIONS(3583), - [anon_sym_LPAREN2] = ACTIONS(1096), - [anon_sym_STAR] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1100), - [anon_sym_EQ] = ACTIONS(1562), - [anon_sym_QMARK] = ACTIONS(1564), - [anon_sym_STAR_EQ] = ACTIONS(1566), - [anon_sym_SLASH_EQ] = ACTIONS(1566), - [anon_sym_PERCENT_EQ] = ACTIONS(1566), - [anon_sym_PLUS_EQ] = ACTIONS(1566), - [anon_sym_DASH_EQ] = ACTIONS(1566), - [anon_sym_LT_LT_EQ] = ACTIONS(1566), - [anon_sym_GT_GT_EQ] = ACTIONS(1566), - [anon_sym_AMP_EQ] = ACTIONS(1566), - [anon_sym_CARET_EQ] = ACTIONS(1566), - [anon_sym_PIPE_EQ] = ACTIONS(1566), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_PIPE_PIPE] = ACTIONS(1570), - [anon_sym_AMP_AMP] = ACTIONS(1572), - [anon_sym_PIPE] = ACTIONS(1574), - [anon_sym_CARET] = ACTIONS(1576), - [anon_sym_EQ_EQ] = ACTIONS(1578), - [anon_sym_BANG_EQ] = ACTIONS(1578), - [anon_sym_LT] = ACTIONS(1580), - [anon_sym_GT] = ACTIONS(1580), - [anon_sym_LT_EQ] = ACTIONS(1582), - [anon_sym_GT_EQ] = ACTIONS(1582), - [anon_sym_LT_LT] = ACTIONS(1584), - [anon_sym_GT_GT] = ACTIONS(1584), - [anon_sym_PLUS] = ACTIONS(1586), - [anon_sym_DASH] = ACTIONS(1586), - [anon_sym_SLASH] = ACTIONS(1560), - [anon_sym_PERCENT] = ACTIONS(1560), - [anon_sym_DASH_DASH] = ACTIONS(1128), - [anon_sym_PLUS_PLUS] = ACTIONS(1128), - [anon_sym_DOT] = ACTIONS(1130), - [anon_sym_DASH_GT] = ACTIONS(1130), + [anon_sym_COMMA] = ACTIONS(2519), + [anon_sym_RPAREN] = ACTIONS(3572), + [anon_sym_LPAREN2] = ACTIONS(1089), + [anon_sym_STAR] = ACTIONS(1549), + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(1551), + [anon_sym_QMARK] = ACTIONS(1553), + [anon_sym_STAR_EQ] = ACTIONS(1555), + [anon_sym_SLASH_EQ] = ACTIONS(1555), + [anon_sym_PERCENT_EQ] = ACTIONS(1555), + [anon_sym_PLUS_EQ] = ACTIONS(1555), + [anon_sym_DASH_EQ] = ACTIONS(1555), + [anon_sym_LT_LT_EQ] = ACTIONS(1555), + [anon_sym_GT_GT_EQ] = ACTIONS(1555), + [anon_sym_AMP_EQ] = ACTIONS(1555), + [anon_sym_CARET_EQ] = ACTIONS(1555), + [anon_sym_PIPE_EQ] = ACTIONS(1555), + [anon_sym_AMP] = ACTIONS(1557), + [anon_sym_PIPE_PIPE] = ACTIONS(1559), + [anon_sym_AMP_AMP] = ACTIONS(1561), + [anon_sym_PIPE] = ACTIONS(1563), + [anon_sym_CARET] = ACTIONS(1565), + [anon_sym_EQ_EQ] = ACTIONS(1567), + [anon_sym_BANG_EQ] = ACTIONS(1567), + [anon_sym_LT] = ACTIONS(1569), + [anon_sym_GT] = ACTIONS(1569), + [anon_sym_LT_EQ] = ACTIONS(1571), + [anon_sym_GT_EQ] = ACTIONS(1571), + [anon_sym_LT_LT] = ACTIONS(1573), + [anon_sym_GT_GT] = ACTIONS(1573), + [anon_sym_PLUS] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(1575), + [anon_sym_SLASH] = ACTIONS(1549), + [anon_sym_PERCENT] = ACTIONS(1549), + [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_PLUS_PLUS] = ACTIONS(1121), + [anon_sym_DOT] = ACTIONS(1123), + [anon_sym_DASH_GT] = ACTIONS(1123), [sym_comment] = ACTIONS(39), }, [1309] = { @@ -53176,24 +53195,24 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(1333), [sym_concatenated_string] = STATE(1333), [sym_string_literal] = STATE(409), - [anon_sym_RPAREN] = ACTIONS(3583), - [anon_sym_LPAREN2] = ACTIONS(970), - [anon_sym_STAR] = ACTIONS(972), - [anon_sym_AMP] = ACTIONS(972), - [anon_sym_BANG] = ACTIONS(974), - [anon_sym_TILDE] = ACTIONS(976), - [anon_sym_PLUS] = ACTIONS(978), - [anon_sym_DASH] = ACTIONS(978), - [anon_sym_DASH_DASH] = ACTIONS(980), - [anon_sym_PLUS_PLUS] = ACTIONS(980), - [anon_sym_sizeof] = ACTIONS(982), - [sym_number_literal] = ACTIONS(3585), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(3587), - [sym_false] = ACTIONS(3587), - [sym_null] = ACTIONS(3587), - [sym_identifier] = ACTIONS(3587), + [anon_sym_RPAREN] = ACTIONS(3572), + [anon_sym_LPAREN2] = ACTIONS(961), + [anon_sym_STAR] = ACTIONS(963), + [anon_sym_AMP] = ACTIONS(963), + [anon_sym_BANG] = ACTIONS(965), + [anon_sym_TILDE] = ACTIONS(967), + [anon_sym_PLUS] = ACTIONS(969), + [anon_sym_DASH] = ACTIONS(969), + [anon_sym_DASH_DASH] = ACTIONS(971), + [anon_sym_PLUS_PLUS] = ACTIONS(971), + [anon_sym_sizeof] = ACTIONS(973), + [sym_number_literal] = ACTIONS(3574), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(3576), + [sym_false] = ACTIONS(3576), + [sym_null] = ACTIONS(3576), + [sym_identifier] = ACTIONS(3576), [sym_comment] = ACTIONS(39), }, [1310] = { @@ -53231,100 +53250,100 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(251), [sym_concatenated_string] = STATE(251), [sym_string_literal] = STATE(253), - [anon_sym_SEMI] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(241), - [anon_sym_LPAREN2] = ACTIONS(554), - [anon_sym_STAR] = ACTIONS(556), - [anon_sym_if] = ACTIONS(1016), - [anon_sym_switch] = ACTIONS(1018), - [anon_sym_case] = ACTIONS(1020), - [anon_sym_default] = ACTIONS(1022), - [anon_sym_while] = ACTIONS(1024), - [anon_sym_do] = ACTIONS(1026), - [anon_sym_for] = ACTIONS(1028), - [anon_sym_return] = ACTIONS(572), - [anon_sym_break] = ACTIONS(574), - [anon_sym_continue] = ACTIONS(576), - [anon_sym_goto] = ACTIONS(578), - [anon_sym_AMP] = ACTIONS(556), - [anon_sym_BANG] = ACTIONS(580), - [anon_sym_TILDE] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_DASH_DASH] = ACTIONS(586), - [anon_sym_PLUS_PLUS] = ACTIONS(586), - [anon_sym_sizeof] = ACTIONS(588), - [sym_number_literal] = ACTIONS(590), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(594), - [sym_false] = ACTIONS(594), - [sym_null] = ACTIONS(594), - [sym_identifier] = ACTIONS(1030), + [anon_sym_SEMI] = ACTIONS(546), + [anon_sym_LBRACE] = ACTIONS(239), + [anon_sym_LPAREN2] = ACTIONS(550), + [anon_sym_STAR] = ACTIONS(552), + [anon_sym_if] = ACTIONS(1007), + [anon_sym_switch] = ACTIONS(1009), + [anon_sym_case] = ACTIONS(1011), + [anon_sym_default] = ACTIONS(1013), + [anon_sym_while] = ACTIONS(1015), + [anon_sym_do] = ACTIONS(1017), + [anon_sym_for] = ACTIONS(1019), + [anon_sym_return] = ACTIONS(568), + [anon_sym_break] = ACTIONS(570), + [anon_sym_continue] = ACTIONS(572), + [anon_sym_goto] = ACTIONS(574), + [anon_sym_AMP] = ACTIONS(552), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_TILDE] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(580), + [anon_sym_DASH] = ACTIONS(580), + [anon_sym_DASH_DASH] = ACTIONS(582), + [anon_sym_PLUS_PLUS] = ACTIONS(582), + [anon_sym_sizeof] = ACTIONS(584), + [sym_number_literal] = ACTIONS(586), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(590), + [sym_false] = ACTIONS(590), + [sym_null] = ACTIONS(590), + [sym_identifier] = ACTIONS(1021), [sym_comment] = ACTIONS(39), }, [1311] = { [aux_sym_for_statement_repeat1] = STATE(1088), - [anon_sym_COMMA] = ACTIONS(2530), - [anon_sym_RPAREN] = ACTIONS(3589), + [anon_sym_COMMA] = ACTIONS(2519), + [anon_sym_RPAREN] = ACTIONS(3578), [sym_comment] = ACTIONS(39), }, [1312] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3591), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3591), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3591), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3591), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3591), - [sym_preproc_directive] = ACTIONS(3591), - [anon_sym_SEMI] = ACTIONS(3593), - [anon_sym_typedef] = ACTIONS(3591), - [anon_sym_extern] = ACTIONS(3591), - [anon_sym_LBRACE] = ACTIONS(3593), - [anon_sym_RBRACE] = ACTIONS(3593), - [anon_sym_LPAREN2] = ACTIONS(3593), - [anon_sym_STAR] = ACTIONS(3593), - [anon_sym_static] = ACTIONS(3591), - [anon_sym_auto] = ACTIONS(3591), - [anon_sym_register] = ACTIONS(3591), - [anon_sym_inline] = ACTIONS(3591), - [anon_sym_const] = ACTIONS(3591), - [anon_sym_restrict] = ACTIONS(3591), - [anon_sym_volatile] = ACTIONS(3591), - [anon_sym__Atomic] = ACTIONS(3591), - [anon_sym_unsigned] = ACTIONS(3591), - [anon_sym_long] = ACTIONS(3591), - [anon_sym_short] = ACTIONS(3591), - [sym_primitive_type] = ACTIONS(3591), - [anon_sym_enum] = ACTIONS(3591), - [anon_sym_struct] = ACTIONS(3591), - [anon_sym_union] = ACTIONS(3591), - [anon_sym_if] = ACTIONS(3591), - [anon_sym_else] = ACTIONS(3591), - [anon_sym_switch] = ACTIONS(3591), - [anon_sym_case] = ACTIONS(3591), - [anon_sym_default] = ACTIONS(3591), - [anon_sym_while] = ACTIONS(3591), - [anon_sym_do] = ACTIONS(3591), - [anon_sym_for] = ACTIONS(3591), - [anon_sym_return] = ACTIONS(3591), - [anon_sym_break] = ACTIONS(3591), - [anon_sym_continue] = ACTIONS(3591), - [anon_sym_goto] = ACTIONS(3591), - [anon_sym_AMP] = ACTIONS(3593), - [anon_sym_BANG] = ACTIONS(3593), - [anon_sym_TILDE] = ACTIONS(3593), - [anon_sym_PLUS] = ACTIONS(3591), - [anon_sym_DASH] = ACTIONS(3591), - [anon_sym_DASH_DASH] = ACTIONS(3593), - [anon_sym_PLUS_PLUS] = ACTIONS(3593), - [anon_sym_sizeof] = ACTIONS(3591), - [sym_number_literal] = ACTIONS(3593), - [anon_sym_SQUOTE] = ACTIONS(3593), - [anon_sym_DQUOTE] = ACTIONS(3593), - [sym_true] = ACTIONS(3591), - [sym_false] = ACTIONS(3591), - [sym_null] = ACTIONS(3591), - [sym_identifier] = ACTIONS(3591), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3580), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3580), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3580), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3580), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3580), + [sym_preproc_directive] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3582), + [anon_sym_typedef] = ACTIONS(3580), + [anon_sym_extern] = ACTIONS(3580), + [anon_sym_LBRACE] = ACTIONS(3582), + [anon_sym_RBRACE] = ACTIONS(3582), + [anon_sym_LPAREN2] = ACTIONS(3582), + [anon_sym_STAR] = ACTIONS(3582), + [anon_sym_static] = ACTIONS(3580), + [anon_sym_auto] = ACTIONS(3580), + [anon_sym_register] = ACTIONS(3580), + [anon_sym_inline] = ACTIONS(3580), + [anon_sym_const] = ACTIONS(3580), + [anon_sym_restrict] = ACTIONS(3580), + [anon_sym_volatile] = ACTIONS(3580), + [anon_sym__Atomic] = ACTIONS(3580), + [anon_sym_unsigned] = ACTIONS(3580), + [anon_sym_long] = ACTIONS(3580), + [anon_sym_short] = ACTIONS(3580), + [sym_primitive_type] = ACTIONS(3580), + [anon_sym_enum] = ACTIONS(3580), + [anon_sym_struct] = ACTIONS(3580), + [anon_sym_union] = ACTIONS(3580), + [anon_sym_if] = ACTIONS(3580), + [anon_sym_else] = ACTIONS(3580), + [anon_sym_switch] = ACTIONS(3580), + [anon_sym_case] = ACTIONS(3580), + [anon_sym_default] = ACTIONS(3580), + [anon_sym_while] = ACTIONS(3580), + [anon_sym_do] = ACTIONS(3580), + [anon_sym_for] = ACTIONS(3580), + [anon_sym_return] = ACTIONS(3580), + [anon_sym_break] = ACTIONS(3580), + [anon_sym_continue] = ACTIONS(3580), + [anon_sym_goto] = ACTIONS(3580), + [anon_sym_AMP] = ACTIONS(3582), + [anon_sym_BANG] = ACTIONS(3582), + [anon_sym_TILDE] = ACTIONS(3582), + [anon_sym_PLUS] = ACTIONS(3580), + [anon_sym_DASH] = ACTIONS(3580), + [anon_sym_DASH_DASH] = ACTIONS(3582), + [anon_sym_PLUS_PLUS] = ACTIONS(3582), + [anon_sym_sizeof] = ACTIONS(3580), + [sym_number_literal] = ACTIONS(3582), + [anon_sym_SQUOTE] = ACTIONS(3582), + [anon_sym_DQUOTE] = ACTIONS(3582), + [sym_true] = ACTIONS(3580), + [sym_false] = ACTIONS(3580), + [sym_null] = ACTIONS(3580), + [sym_identifier] = ACTIONS(3580), [sym_comment] = ACTIONS(39), }, [1313] = { @@ -53362,36 +53381,36 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(251), [sym_concatenated_string] = STATE(251), [sym_string_literal] = STATE(253), - [anon_sym_SEMI] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(241), - [anon_sym_LPAREN2] = ACTIONS(554), - [anon_sym_STAR] = ACTIONS(556), - [anon_sym_if] = ACTIONS(558), - [anon_sym_switch] = ACTIONS(560), - [anon_sym_case] = ACTIONS(562), - [anon_sym_default] = ACTIONS(564), - [anon_sym_while] = ACTIONS(566), - [anon_sym_do] = ACTIONS(568), - [anon_sym_for] = ACTIONS(570), - [anon_sym_return] = ACTIONS(572), - [anon_sym_break] = ACTIONS(574), - [anon_sym_continue] = ACTIONS(576), - [anon_sym_goto] = ACTIONS(578), - [anon_sym_AMP] = ACTIONS(556), - [anon_sym_BANG] = ACTIONS(580), - [anon_sym_TILDE] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_DASH_DASH] = ACTIONS(586), - [anon_sym_PLUS_PLUS] = ACTIONS(586), - [anon_sym_sizeof] = ACTIONS(588), - [sym_number_literal] = ACTIONS(590), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(594), - [sym_false] = ACTIONS(594), - [sym_null] = ACTIONS(594), - [sym_identifier] = ACTIONS(1612), + [anon_sym_SEMI] = ACTIONS(546), + [anon_sym_LBRACE] = ACTIONS(239), + [anon_sym_LPAREN2] = ACTIONS(550), + [anon_sym_STAR] = ACTIONS(552), + [anon_sym_if] = ACTIONS(554), + [anon_sym_switch] = ACTIONS(556), + [anon_sym_case] = ACTIONS(558), + [anon_sym_default] = ACTIONS(560), + [anon_sym_while] = ACTIONS(562), + [anon_sym_do] = ACTIONS(564), + [anon_sym_for] = ACTIONS(566), + [anon_sym_return] = ACTIONS(568), + [anon_sym_break] = ACTIONS(570), + [anon_sym_continue] = ACTIONS(572), + [anon_sym_goto] = ACTIONS(574), + [anon_sym_AMP] = ACTIONS(552), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_TILDE] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(580), + [anon_sym_DASH] = ACTIONS(580), + [anon_sym_DASH_DASH] = ACTIONS(582), + [anon_sym_PLUS_PLUS] = ACTIONS(582), + [anon_sym_sizeof] = ACTIONS(584), + [sym_number_literal] = ACTIONS(586), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(590), + [sym_false] = ACTIONS(590), + [sym_null] = ACTIONS(590), + [sym_identifier] = ACTIONS(1601), [sym_comment] = ACTIONS(39), }, [1314] = { @@ -53429,79 +53448,79 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(872), [sym_concatenated_string] = STATE(872), [sym_string_literal] = STATE(253), - [anon_sym_SEMI] = ACTIONS(2254), - [anon_sym_LBRACE] = ACTIONS(1273), - [anon_sym_LPAREN2] = ACTIONS(554), - [anon_sym_STAR] = ACTIONS(556), - [anon_sym_if] = ACTIONS(3053), - [anon_sym_switch] = ACTIONS(3055), - [anon_sym_case] = ACTIONS(3057), - [anon_sym_default] = ACTIONS(3059), - [anon_sym_while] = ACTIONS(3061), - [anon_sym_do] = ACTIONS(2266), - [anon_sym_for] = ACTIONS(3063), - [anon_sym_return] = ACTIONS(2270), - [anon_sym_break] = ACTIONS(2272), - [anon_sym_continue] = ACTIONS(2274), - [anon_sym_goto] = ACTIONS(2276), - [anon_sym_AMP] = ACTIONS(556), - [anon_sym_BANG] = ACTIONS(580), - [anon_sym_TILDE] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_DASH_DASH] = ACTIONS(586), - [anon_sym_PLUS_PLUS] = ACTIONS(586), - [anon_sym_sizeof] = ACTIONS(588), - [sym_number_literal] = ACTIONS(2278), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2280), - [sym_false] = ACTIONS(2280), - [sym_null] = ACTIONS(2280), - [sym_identifier] = ACTIONS(3065), + [anon_sym_SEMI] = ACTIONS(2243), + [anon_sym_LBRACE] = ACTIONS(1264), + [anon_sym_LPAREN2] = ACTIONS(550), + [anon_sym_STAR] = ACTIONS(552), + [anon_sym_if] = ACTIONS(3042), + [anon_sym_switch] = ACTIONS(3044), + [anon_sym_case] = ACTIONS(3046), + [anon_sym_default] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3050), + [anon_sym_do] = ACTIONS(2255), + [anon_sym_for] = ACTIONS(3052), + [anon_sym_return] = ACTIONS(2259), + [anon_sym_break] = ACTIONS(2261), + [anon_sym_continue] = ACTIONS(2263), + [anon_sym_goto] = ACTIONS(2265), + [anon_sym_AMP] = ACTIONS(552), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_TILDE] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(580), + [anon_sym_DASH] = ACTIONS(580), + [anon_sym_DASH_DASH] = ACTIONS(582), + [anon_sym_PLUS_PLUS] = ACTIONS(582), + [anon_sym_sizeof] = ACTIONS(584), + [sym_number_literal] = ACTIONS(2267), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(2269), + [sym_false] = ACTIONS(2269), + [sym_null] = ACTIONS(2269), + [sym_identifier] = ACTIONS(3054), [sym_comment] = ACTIONS(39), }, [1315] = { [sym_argument_list] = STATE(465), [aux_sym_for_statement_repeat1] = STATE(1337), - [anon_sym_COMMA] = ACTIONS(2530), - [anon_sym_RPAREN] = ACTIONS(3595), - [anon_sym_LPAREN2] = ACTIONS(1096), - [anon_sym_STAR] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1100), - [anon_sym_EQ] = ACTIONS(1562), - [anon_sym_QMARK] = ACTIONS(1564), - [anon_sym_STAR_EQ] = ACTIONS(1566), - [anon_sym_SLASH_EQ] = ACTIONS(1566), - [anon_sym_PERCENT_EQ] = ACTIONS(1566), - [anon_sym_PLUS_EQ] = ACTIONS(1566), - [anon_sym_DASH_EQ] = ACTIONS(1566), - [anon_sym_LT_LT_EQ] = ACTIONS(1566), - [anon_sym_GT_GT_EQ] = ACTIONS(1566), - [anon_sym_AMP_EQ] = ACTIONS(1566), - [anon_sym_CARET_EQ] = ACTIONS(1566), - [anon_sym_PIPE_EQ] = ACTIONS(1566), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_PIPE_PIPE] = ACTIONS(1570), - [anon_sym_AMP_AMP] = ACTIONS(1572), - [anon_sym_PIPE] = ACTIONS(1574), - [anon_sym_CARET] = ACTIONS(1576), - [anon_sym_EQ_EQ] = ACTIONS(1578), - [anon_sym_BANG_EQ] = ACTIONS(1578), - [anon_sym_LT] = ACTIONS(1580), - [anon_sym_GT] = ACTIONS(1580), - [anon_sym_LT_EQ] = ACTIONS(1582), - [anon_sym_GT_EQ] = ACTIONS(1582), - [anon_sym_LT_LT] = ACTIONS(1584), - [anon_sym_GT_GT] = ACTIONS(1584), - [anon_sym_PLUS] = ACTIONS(1586), - [anon_sym_DASH] = ACTIONS(1586), - [anon_sym_SLASH] = ACTIONS(1560), - [anon_sym_PERCENT] = ACTIONS(1560), - [anon_sym_DASH_DASH] = ACTIONS(1128), - [anon_sym_PLUS_PLUS] = ACTIONS(1128), - [anon_sym_DOT] = ACTIONS(1130), - [anon_sym_DASH_GT] = ACTIONS(1130), + [anon_sym_COMMA] = ACTIONS(2519), + [anon_sym_RPAREN] = ACTIONS(3584), + [anon_sym_LPAREN2] = ACTIONS(1089), + [anon_sym_STAR] = ACTIONS(1549), + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(1551), + [anon_sym_QMARK] = ACTIONS(1553), + [anon_sym_STAR_EQ] = ACTIONS(1555), + [anon_sym_SLASH_EQ] = ACTIONS(1555), + [anon_sym_PERCENT_EQ] = ACTIONS(1555), + [anon_sym_PLUS_EQ] = ACTIONS(1555), + [anon_sym_DASH_EQ] = ACTIONS(1555), + [anon_sym_LT_LT_EQ] = ACTIONS(1555), + [anon_sym_GT_GT_EQ] = ACTIONS(1555), + [anon_sym_AMP_EQ] = ACTIONS(1555), + [anon_sym_CARET_EQ] = ACTIONS(1555), + [anon_sym_PIPE_EQ] = ACTIONS(1555), + [anon_sym_AMP] = ACTIONS(1557), + [anon_sym_PIPE_PIPE] = ACTIONS(1559), + [anon_sym_AMP_AMP] = ACTIONS(1561), + [anon_sym_PIPE] = ACTIONS(1563), + [anon_sym_CARET] = ACTIONS(1565), + [anon_sym_EQ_EQ] = ACTIONS(1567), + [anon_sym_BANG_EQ] = ACTIONS(1567), + [anon_sym_LT] = ACTIONS(1569), + [anon_sym_GT] = ACTIONS(1569), + [anon_sym_LT_EQ] = ACTIONS(1571), + [anon_sym_GT_EQ] = ACTIONS(1571), + [anon_sym_LT_LT] = ACTIONS(1573), + [anon_sym_GT_GT] = ACTIONS(1573), + [anon_sym_PLUS] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(1575), + [anon_sym_SLASH] = ACTIONS(1549), + [anon_sym_PERCENT] = ACTIONS(1549), + [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_PLUS_PLUS] = ACTIONS(1121), + [anon_sym_DOT] = ACTIONS(1123), + [anon_sym_DASH_GT] = ACTIONS(1123), [sym_comment] = ACTIONS(39), }, [1316] = { @@ -53525,123 +53544,123 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(1338), [sym_concatenated_string] = STATE(1338), [sym_string_literal] = STATE(409), - [anon_sym_RPAREN] = ACTIONS(3595), - [anon_sym_LPAREN2] = ACTIONS(970), - [anon_sym_STAR] = ACTIONS(972), - [anon_sym_AMP] = ACTIONS(972), - [anon_sym_BANG] = ACTIONS(974), - [anon_sym_TILDE] = ACTIONS(976), - [anon_sym_PLUS] = ACTIONS(978), - [anon_sym_DASH] = ACTIONS(978), - [anon_sym_DASH_DASH] = ACTIONS(980), - [anon_sym_PLUS_PLUS] = ACTIONS(980), - [anon_sym_sizeof] = ACTIONS(982), - [sym_number_literal] = ACTIONS(3597), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(3599), - [sym_false] = ACTIONS(3599), - [sym_null] = ACTIONS(3599), - [sym_identifier] = ACTIONS(3599), + [anon_sym_RPAREN] = ACTIONS(3584), + [anon_sym_LPAREN2] = ACTIONS(961), + [anon_sym_STAR] = ACTIONS(963), + [anon_sym_AMP] = ACTIONS(963), + [anon_sym_BANG] = ACTIONS(965), + [anon_sym_TILDE] = ACTIONS(967), + [anon_sym_PLUS] = ACTIONS(969), + [anon_sym_DASH] = ACTIONS(969), + [anon_sym_DASH_DASH] = ACTIONS(971), + [anon_sym_PLUS_PLUS] = ACTIONS(971), + [anon_sym_sizeof] = ACTIONS(973), + [sym_number_literal] = ACTIONS(3586), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(3588), + [sym_false] = ACTIONS(3588), + [sym_null] = ACTIONS(3588), + [sym_identifier] = ACTIONS(3588), [sym_comment] = ACTIONS(39), }, [1317] = { [sym_argument_list] = STATE(465), - [anon_sym_SEMI] = ACTIONS(3601), - [anon_sym_LPAREN2] = ACTIONS(1096), - [anon_sym_STAR] = ACTIONS(1436), - [anon_sym_LBRACK] = ACTIONS(1100), - [anon_sym_EQ] = ACTIONS(1438), - [anon_sym_QMARK] = ACTIONS(1440), - [anon_sym_STAR_EQ] = ACTIONS(1442), - [anon_sym_SLASH_EQ] = ACTIONS(1442), - [anon_sym_PERCENT_EQ] = ACTIONS(1442), - [anon_sym_PLUS_EQ] = ACTIONS(1442), - [anon_sym_DASH_EQ] = ACTIONS(1442), - [anon_sym_LT_LT_EQ] = ACTIONS(1442), - [anon_sym_GT_GT_EQ] = ACTIONS(1442), - [anon_sym_AMP_EQ] = ACTIONS(1442), - [anon_sym_CARET_EQ] = ACTIONS(1442), - [anon_sym_PIPE_EQ] = ACTIONS(1442), - [anon_sym_AMP] = ACTIONS(1444), - [anon_sym_PIPE_PIPE] = ACTIONS(1446), - [anon_sym_AMP_AMP] = ACTIONS(1448), - [anon_sym_PIPE] = ACTIONS(1450), - [anon_sym_CARET] = ACTIONS(1452), - [anon_sym_EQ_EQ] = ACTIONS(1454), - [anon_sym_BANG_EQ] = ACTIONS(1454), - [anon_sym_LT] = ACTIONS(1456), - [anon_sym_GT] = ACTIONS(1456), - [anon_sym_LT_EQ] = ACTIONS(1458), - [anon_sym_GT_EQ] = ACTIONS(1458), - [anon_sym_LT_LT] = ACTIONS(1460), - [anon_sym_GT_GT] = ACTIONS(1460), - [anon_sym_PLUS] = ACTIONS(1462), - [anon_sym_DASH] = ACTIONS(1462), - [anon_sym_SLASH] = ACTIONS(1436), - [anon_sym_PERCENT] = ACTIONS(1436), - [anon_sym_DASH_DASH] = ACTIONS(1128), - [anon_sym_PLUS_PLUS] = ACTIONS(1128), - [anon_sym_DOT] = ACTIONS(1130), - [anon_sym_DASH_GT] = ACTIONS(1130), + [anon_sym_SEMI] = ACTIONS(3590), + [anon_sym_LPAREN2] = ACTIONS(1089), + [anon_sym_STAR] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(1429), + [anon_sym_QMARK] = ACTIONS(1431), + [anon_sym_STAR_EQ] = ACTIONS(1433), + [anon_sym_SLASH_EQ] = ACTIONS(1433), + [anon_sym_PERCENT_EQ] = ACTIONS(1433), + [anon_sym_PLUS_EQ] = ACTIONS(1433), + [anon_sym_DASH_EQ] = ACTIONS(1433), + [anon_sym_LT_LT_EQ] = ACTIONS(1433), + [anon_sym_GT_GT_EQ] = ACTIONS(1433), + [anon_sym_AMP_EQ] = ACTIONS(1433), + [anon_sym_CARET_EQ] = ACTIONS(1433), + [anon_sym_PIPE_EQ] = ACTIONS(1433), + [anon_sym_AMP] = ACTIONS(1435), + [anon_sym_PIPE_PIPE] = ACTIONS(1437), + [anon_sym_AMP_AMP] = ACTIONS(1439), + [anon_sym_PIPE] = ACTIONS(1441), + [anon_sym_CARET] = ACTIONS(1443), + [anon_sym_EQ_EQ] = ACTIONS(1445), + [anon_sym_BANG_EQ] = ACTIONS(1445), + [anon_sym_LT] = ACTIONS(1447), + [anon_sym_GT] = ACTIONS(1447), + [anon_sym_LT_EQ] = ACTIONS(1449), + [anon_sym_GT_EQ] = ACTIONS(1449), + [anon_sym_LT_LT] = ACTIONS(1451), + [anon_sym_GT_GT] = ACTIONS(1451), + [anon_sym_PLUS] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1453), + [anon_sym_SLASH] = ACTIONS(1427), + [anon_sym_PERCENT] = ACTIONS(1427), + [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_PLUS_PLUS] = ACTIONS(1121), + [anon_sym_DOT] = ACTIONS(1123), + [anon_sym_DASH_GT] = ACTIONS(1123), [sym_comment] = ACTIONS(39), }, [1318] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3487), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3487), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3487), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3487), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3487), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3487), - [sym_preproc_directive] = ACTIONS(3487), - [anon_sym_SEMI] = ACTIONS(3489), - [anon_sym_typedef] = ACTIONS(3487), - [anon_sym_extern] = ACTIONS(3487), - [anon_sym_LBRACE] = ACTIONS(3489), - [anon_sym_LPAREN2] = ACTIONS(3489), - [anon_sym_STAR] = ACTIONS(3489), - [anon_sym_static] = ACTIONS(3487), - [anon_sym_auto] = ACTIONS(3487), - [anon_sym_register] = ACTIONS(3487), - [anon_sym_inline] = ACTIONS(3487), - [anon_sym_const] = ACTIONS(3487), - [anon_sym_restrict] = ACTIONS(3487), - [anon_sym_volatile] = ACTIONS(3487), - [anon_sym__Atomic] = ACTIONS(3487), - [anon_sym_unsigned] = ACTIONS(3487), - [anon_sym_long] = ACTIONS(3487), - [anon_sym_short] = ACTIONS(3487), - [sym_primitive_type] = ACTIONS(3487), - [anon_sym_enum] = ACTIONS(3487), - [anon_sym_struct] = ACTIONS(3487), - [anon_sym_union] = ACTIONS(3487), - [anon_sym_if] = ACTIONS(3487), - [anon_sym_else] = ACTIONS(3487), - [anon_sym_switch] = ACTIONS(3487), - [anon_sym_case] = ACTIONS(3487), - [anon_sym_default] = ACTIONS(3487), - [anon_sym_while] = ACTIONS(3487), - [anon_sym_do] = ACTIONS(3487), - [anon_sym_for] = ACTIONS(3487), - [anon_sym_return] = ACTIONS(3487), - [anon_sym_break] = ACTIONS(3487), - [anon_sym_continue] = ACTIONS(3487), - [anon_sym_goto] = ACTIONS(3487), - [anon_sym_AMP] = ACTIONS(3489), - [anon_sym_BANG] = ACTIONS(3489), - [anon_sym_TILDE] = ACTIONS(3489), - [anon_sym_PLUS] = ACTIONS(3487), - [anon_sym_DASH] = ACTIONS(3487), - [anon_sym_DASH_DASH] = ACTIONS(3489), - [anon_sym_PLUS_PLUS] = ACTIONS(3489), - [anon_sym_sizeof] = ACTIONS(3487), - [sym_number_literal] = ACTIONS(3489), - [anon_sym_SQUOTE] = ACTIONS(3489), - [anon_sym_DQUOTE] = ACTIONS(3489), - [sym_true] = ACTIONS(3487), - [sym_false] = ACTIONS(3487), - [sym_null] = ACTIONS(3487), - [sym_identifier] = ACTIONS(3487), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3476), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3476), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3476), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3476), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3476), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3476), + [sym_preproc_directive] = ACTIONS(3476), + [anon_sym_SEMI] = ACTIONS(3478), + [anon_sym_typedef] = ACTIONS(3476), + [anon_sym_extern] = ACTIONS(3476), + [anon_sym_LBRACE] = ACTIONS(3478), + [anon_sym_LPAREN2] = ACTIONS(3478), + [anon_sym_STAR] = ACTIONS(3478), + [anon_sym_static] = ACTIONS(3476), + [anon_sym_auto] = ACTIONS(3476), + [anon_sym_register] = ACTIONS(3476), + [anon_sym_inline] = ACTIONS(3476), + [anon_sym_const] = ACTIONS(3476), + [anon_sym_restrict] = ACTIONS(3476), + [anon_sym_volatile] = ACTIONS(3476), + [anon_sym__Atomic] = ACTIONS(3476), + [anon_sym_unsigned] = ACTIONS(3476), + [anon_sym_long] = ACTIONS(3476), + [anon_sym_short] = ACTIONS(3476), + [sym_primitive_type] = ACTIONS(3476), + [anon_sym_enum] = ACTIONS(3476), + [anon_sym_struct] = ACTIONS(3476), + [anon_sym_union] = ACTIONS(3476), + [anon_sym_if] = ACTIONS(3476), + [anon_sym_else] = ACTIONS(3476), + [anon_sym_switch] = ACTIONS(3476), + [anon_sym_case] = ACTIONS(3476), + [anon_sym_default] = ACTIONS(3476), + [anon_sym_while] = ACTIONS(3476), + [anon_sym_do] = ACTIONS(3476), + [anon_sym_for] = ACTIONS(3476), + [anon_sym_return] = ACTIONS(3476), + [anon_sym_break] = ACTIONS(3476), + [anon_sym_continue] = ACTIONS(3476), + [anon_sym_goto] = ACTIONS(3476), + [anon_sym_AMP] = ACTIONS(3478), + [anon_sym_BANG] = ACTIONS(3478), + [anon_sym_TILDE] = ACTIONS(3478), + [anon_sym_PLUS] = ACTIONS(3476), + [anon_sym_DASH] = ACTIONS(3476), + [anon_sym_DASH_DASH] = ACTIONS(3478), + [anon_sym_PLUS_PLUS] = ACTIONS(3478), + [anon_sym_sizeof] = ACTIONS(3476), + [sym_number_literal] = ACTIONS(3478), + [anon_sym_SQUOTE] = ACTIONS(3478), + [anon_sym_DQUOTE] = ACTIONS(3478), + [sym_true] = ACTIONS(3476), + [sym_false] = ACTIONS(3476), + [sym_null] = ACTIONS(3476), + [sym_identifier] = ACTIONS(3476), [sym_comment] = ACTIONS(39), }, [1319] = { @@ -53679,85 +53698,85 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(872), [sym_concatenated_string] = STATE(872), [sym_string_literal] = STATE(253), - [anon_sym_SEMI] = ACTIONS(2254), - [anon_sym_LBRACE] = ACTIONS(1273), - [anon_sym_LPAREN2] = ACTIONS(554), - [anon_sym_STAR] = ACTIONS(556), - [anon_sym_if] = ACTIONS(2256), - [anon_sym_switch] = ACTIONS(2258), - [anon_sym_case] = ACTIONS(2260), - [anon_sym_default] = ACTIONS(2262), - [anon_sym_while] = ACTIONS(2264), - [anon_sym_do] = ACTIONS(2266), - [anon_sym_for] = ACTIONS(2268), - [anon_sym_return] = ACTIONS(2270), - [anon_sym_break] = ACTIONS(2272), - [anon_sym_continue] = ACTIONS(2274), - [anon_sym_goto] = ACTIONS(2276), - [anon_sym_AMP] = ACTIONS(556), - [anon_sym_BANG] = ACTIONS(580), - [anon_sym_TILDE] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_DASH_DASH] = ACTIONS(586), - [anon_sym_PLUS_PLUS] = ACTIONS(586), - [anon_sym_sizeof] = ACTIONS(588), - [sym_number_literal] = ACTIONS(2278), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2280), - [sym_false] = ACTIONS(2280), - [sym_null] = ACTIONS(2280), - [sym_identifier] = ACTIONS(3067), + [anon_sym_SEMI] = ACTIONS(2243), + [anon_sym_LBRACE] = ACTIONS(1264), + [anon_sym_LPAREN2] = ACTIONS(550), + [anon_sym_STAR] = ACTIONS(552), + [anon_sym_if] = ACTIONS(2245), + [anon_sym_switch] = ACTIONS(2247), + [anon_sym_case] = ACTIONS(2249), + [anon_sym_default] = ACTIONS(2251), + [anon_sym_while] = ACTIONS(2253), + [anon_sym_do] = ACTIONS(2255), + [anon_sym_for] = ACTIONS(2257), + [anon_sym_return] = ACTIONS(2259), + [anon_sym_break] = ACTIONS(2261), + [anon_sym_continue] = ACTIONS(2263), + [anon_sym_goto] = ACTIONS(2265), + [anon_sym_AMP] = ACTIONS(552), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_TILDE] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(580), + [anon_sym_DASH] = ACTIONS(580), + [anon_sym_DASH_DASH] = ACTIONS(582), + [anon_sym_PLUS_PLUS] = ACTIONS(582), + [anon_sym_sizeof] = ACTIONS(584), + [sym_number_literal] = ACTIONS(2267), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(2269), + [sym_false] = ACTIONS(2269), + [sym_null] = ACTIONS(2269), + [sym_identifier] = ACTIONS(3056), [sym_comment] = ACTIONS(39), }, [1320] = { [aux_sym_for_statement_repeat1] = STATE(1088), - [anon_sym_COMMA] = ACTIONS(2530), - [anon_sym_RPAREN] = ACTIONS(3603), + [anon_sym_COMMA] = ACTIONS(2519), + [anon_sym_RPAREN] = ACTIONS(3592), [sym_comment] = ACTIONS(39), }, [1321] = { [sym_argument_list] = STATE(465), [aux_sym_for_statement_repeat1] = STATE(1342), - [anon_sym_COMMA] = ACTIONS(2530), - [anon_sym_RPAREN] = ACTIONS(3603), - [anon_sym_LPAREN2] = ACTIONS(1096), - [anon_sym_STAR] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1100), - [anon_sym_EQ] = ACTIONS(1562), - [anon_sym_QMARK] = ACTIONS(1564), - [anon_sym_STAR_EQ] = ACTIONS(1566), - [anon_sym_SLASH_EQ] = ACTIONS(1566), - [anon_sym_PERCENT_EQ] = ACTIONS(1566), - [anon_sym_PLUS_EQ] = ACTIONS(1566), - [anon_sym_DASH_EQ] = ACTIONS(1566), - [anon_sym_LT_LT_EQ] = ACTIONS(1566), - [anon_sym_GT_GT_EQ] = ACTIONS(1566), - [anon_sym_AMP_EQ] = ACTIONS(1566), - [anon_sym_CARET_EQ] = ACTIONS(1566), - [anon_sym_PIPE_EQ] = ACTIONS(1566), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_PIPE_PIPE] = ACTIONS(1570), - [anon_sym_AMP_AMP] = ACTIONS(1572), - [anon_sym_PIPE] = ACTIONS(1574), - [anon_sym_CARET] = ACTIONS(1576), - [anon_sym_EQ_EQ] = ACTIONS(1578), - [anon_sym_BANG_EQ] = ACTIONS(1578), - [anon_sym_LT] = ACTIONS(1580), - [anon_sym_GT] = ACTIONS(1580), - [anon_sym_LT_EQ] = ACTIONS(1582), - [anon_sym_GT_EQ] = ACTIONS(1582), - [anon_sym_LT_LT] = ACTIONS(1584), - [anon_sym_GT_GT] = ACTIONS(1584), - [anon_sym_PLUS] = ACTIONS(1586), - [anon_sym_DASH] = ACTIONS(1586), - [anon_sym_SLASH] = ACTIONS(1560), - [anon_sym_PERCENT] = ACTIONS(1560), - [anon_sym_DASH_DASH] = ACTIONS(1128), - [anon_sym_PLUS_PLUS] = ACTIONS(1128), - [anon_sym_DOT] = ACTIONS(1130), - [anon_sym_DASH_GT] = ACTIONS(1130), + [anon_sym_COMMA] = ACTIONS(2519), + [anon_sym_RPAREN] = ACTIONS(3592), + [anon_sym_LPAREN2] = ACTIONS(1089), + [anon_sym_STAR] = ACTIONS(1549), + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(1551), + [anon_sym_QMARK] = ACTIONS(1553), + [anon_sym_STAR_EQ] = ACTIONS(1555), + [anon_sym_SLASH_EQ] = ACTIONS(1555), + [anon_sym_PERCENT_EQ] = ACTIONS(1555), + [anon_sym_PLUS_EQ] = ACTIONS(1555), + [anon_sym_DASH_EQ] = ACTIONS(1555), + [anon_sym_LT_LT_EQ] = ACTIONS(1555), + [anon_sym_GT_GT_EQ] = ACTIONS(1555), + [anon_sym_AMP_EQ] = ACTIONS(1555), + [anon_sym_CARET_EQ] = ACTIONS(1555), + [anon_sym_PIPE_EQ] = ACTIONS(1555), + [anon_sym_AMP] = ACTIONS(1557), + [anon_sym_PIPE_PIPE] = ACTIONS(1559), + [anon_sym_AMP_AMP] = ACTIONS(1561), + [anon_sym_PIPE] = ACTIONS(1563), + [anon_sym_CARET] = ACTIONS(1565), + [anon_sym_EQ_EQ] = ACTIONS(1567), + [anon_sym_BANG_EQ] = ACTIONS(1567), + [anon_sym_LT] = ACTIONS(1569), + [anon_sym_GT] = ACTIONS(1569), + [anon_sym_LT_EQ] = ACTIONS(1571), + [anon_sym_GT_EQ] = ACTIONS(1571), + [anon_sym_LT_LT] = ACTIONS(1573), + [anon_sym_GT_GT] = ACTIONS(1573), + [anon_sym_PLUS] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(1575), + [anon_sym_SLASH] = ACTIONS(1549), + [anon_sym_PERCENT] = ACTIONS(1549), + [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_PLUS_PLUS] = ACTIONS(1121), + [anon_sym_DOT] = ACTIONS(1123), + [anon_sym_DASH_GT] = ACTIONS(1123), [sym_comment] = ACTIONS(39), }, [1322] = { @@ -53795,85 +53814,85 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(649), [sym_concatenated_string] = STATE(649), [sym_string_literal] = STATE(253), - [anon_sym_SEMI] = ACTIONS(1516), - [anon_sym_LBRACE] = ACTIONS(734), - [anon_sym_LPAREN2] = ACTIONS(554), - [anon_sym_STAR] = ACTIONS(556), - [anon_sym_if] = ACTIONS(2733), - [anon_sym_switch] = ACTIONS(2735), - [anon_sym_case] = ACTIONS(2737), - [anon_sym_default] = ACTIONS(2739), - [anon_sym_while] = ACTIONS(2741), - [anon_sym_do] = ACTIONS(1528), - [anon_sym_for] = ACTIONS(2743), - [anon_sym_return] = ACTIONS(1532), - [anon_sym_break] = ACTIONS(1534), - [anon_sym_continue] = ACTIONS(1536), - [anon_sym_goto] = ACTIONS(1538), - [anon_sym_AMP] = ACTIONS(556), - [anon_sym_BANG] = ACTIONS(580), - [anon_sym_TILDE] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_DASH_DASH] = ACTIONS(586), - [anon_sym_PLUS_PLUS] = ACTIONS(586), - [anon_sym_sizeof] = ACTIONS(588), - [sym_number_literal] = ACTIONS(1540), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1542), - [sym_false] = ACTIONS(1542), - [sym_null] = ACTIONS(1542), - [sym_identifier] = ACTIONS(2745), + [anon_sym_SEMI] = ACTIONS(1505), + [anon_sym_LBRACE] = ACTIONS(725), + [anon_sym_LPAREN2] = ACTIONS(550), + [anon_sym_STAR] = ACTIONS(552), + [anon_sym_if] = ACTIONS(2722), + [anon_sym_switch] = ACTIONS(2724), + [anon_sym_case] = ACTIONS(2726), + [anon_sym_default] = ACTIONS(2728), + [anon_sym_while] = ACTIONS(2730), + [anon_sym_do] = ACTIONS(1517), + [anon_sym_for] = ACTIONS(2732), + [anon_sym_return] = ACTIONS(1521), + [anon_sym_break] = ACTIONS(1523), + [anon_sym_continue] = ACTIONS(1525), + [anon_sym_goto] = ACTIONS(1527), + [anon_sym_AMP] = ACTIONS(552), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_TILDE] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(580), + [anon_sym_DASH] = ACTIONS(580), + [anon_sym_DASH_DASH] = ACTIONS(582), + [anon_sym_PLUS_PLUS] = ACTIONS(582), + [anon_sym_sizeof] = ACTIONS(584), + [sym_number_literal] = ACTIONS(1529), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_null] = ACTIONS(1531), + [sym_identifier] = ACTIONS(2734), [sym_comment] = ACTIONS(39), }, [1323] = { [aux_sym_for_statement_repeat1] = STATE(1088), - [anon_sym_COMMA] = ACTIONS(2530), - [anon_sym_RPAREN] = ACTIONS(3605), + [anon_sym_COMMA] = ACTIONS(2519), + [anon_sym_RPAREN] = ACTIONS(3594), [sym_comment] = ACTIONS(39), }, [1324] = { [sym_argument_list] = STATE(465), [aux_sym_for_statement_repeat1] = STATE(1344), - [anon_sym_COMMA] = ACTIONS(2530), - [anon_sym_RPAREN] = ACTIONS(3605), - [anon_sym_LPAREN2] = ACTIONS(1096), - [anon_sym_STAR] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1100), - [anon_sym_EQ] = ACTIONS(1562), - [anon_sym_QMARK] = ACTIONS(1564), - [anon_sym_STAR_EQ] = ACTIONS(1566), - [anon_sym_SLASH_EQ] = ACTIONS(1566), - [anon_sym_PERCENT_EQ] = ACTIONS(1566), - [anon_sym_PLUS_EQ] = ACTIONS(1566), - [anon_sym_DASH_EQ] = ACTIONS(1566), - [anon_sym_LT_LT_EQ] = ACTIONS(1566), - [anon_sym_GT_GT_EQ] = ACTIONS(1566), - [anon_sym_AMP_EQ] = ACTIONS(1566), - [anon_sym_CARET_EQ] = ACTIONS(1566), - [anon_sym_PIPE_EQ] = ACTIONS(1566), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_PIPE_PIPE] = ACTIONS(1570), - [anon_sym_AMP_AMP] = ACTIONS(1572), - [anon_sym_PIPE] = ACTIONS(1574), - [anon_sym_CARET] = ACTIONS(1576), - [anon_sym_EQ_EQ] = ACTIONS(1578), - [anon_sym_BANG_EQ] = ACTIONS(1578), - [anon_sym_LT] = ACTIONS(1580), - [anon_sym_GT] = ACTIONS(1580), - [anon_sym_LT_EQ] = ACTIONS(1582), - [anon_sym_GT_EQ] = ACTIONS(1582), - [anon_sym_LT_LT] = ACTIONS(1584), - [anon_sym_GT_GT] = ACTIONS(1584), - [anon_sym_PLUS] = ACTIONS(1586), - [anon_sym_DASH] = ACTIONS(1586), - [anon_sym_SLASH] = ACTIONS(1560), - [anon_sym_PERCENT] = ACTIONS(1560), - [anon_sym_DASH_DASH] = ACTIONS(1128), - [anon_sym_PLUS_PLUS] = ACTIONS(1128), - [anon_sym_DOT] = ACTIONS(1130), - [anon_sym_DASH_GT] = ACTIONS(1130), + [anon_sym_COMMA] = ACTIONS(2519), + [anon_sym_RPAREN] = ACTIONS(3594), + [anon_sym_LPAREN2] = ACTIONS(1089), + [anon_sym_STAR] = ACTIONS(1549), + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(1551), + [anon_sym_QMARK] = ACTIONS(1553), + [anon_sym_STAR_EQ] = ACTIONS(1555), + [anon_sym_SLASH_EQ] = ACTIONS(1555), + [anon_sym_PERCENT_EQ] = ACTIONS(1555), + [anon_sym_PLUS_EQ] = ACTIONS(1555), + [anon_sym_DASH_EQ] = ACTIONS(1555), + [anon_sym_LT_LT_EQ] = ACTIONS(1555), + [anon_sym_GT_GT_EQ] = ACTIONS(1555), + [anon_sym_AMP_EQ] = ACTIONS(1555), + [anon_sym_CARET_EQ] = ACTIONS(1555), + [anon_sym_PIPE_EQ] = ACTIONS(1555), + [anon_sym_AMP] = ACTIONS(1557), + [anon_sym_PIPE_PIPE] = ACTIONS(1559), + [anon_sym_AMP_AMP] = ACTIONS(1561), + [anon_sym_PIPE] = ACTIONS(1563), + [anon_sym_CARET] = ACTIONS(1565), + [anon_sym_EQ_EQ] = ACTIONS(1567), + [anon_sym_BANG_EQ] = ACTIONS(1567), + [anon_sym_LT] = ACTIONS(1569), + [anon_sym_GT] = ACTIONS(1569), + [anon_sym_LT_EQ] = ACTIONS(1571), + [anon_sym_GT_EQ] = ACTIONS(1571), + [anon_sym_LT_LT] = ACTIONS(1573), + [anon_sym_GT_GT] = ACTIONS(1573), + [anon_sym_PLUS] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(1575), + [anon_sym_SLASH] = ACTIONS(1549), + [anon_sym_PERCENT] = ACTIONS(1549), + [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_PLUS_PLUS] = ACTIONS(1121), + [anon_sym_DOT] = ACTIONS(1123), + [anon_sym_DASH_GT] = ACTIONS(1123), [sym_comment] = ACTIONS(39), }, [1325] = { @@ -53897,84 +53916,84 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(1345), [sym_concatenated_string] = STATE(1345), [sym_string_literal] = STATE(409), - [anon_sym_RPAREN] = ACTIONS(3605), - [anon_sym_LPAREN2] = ACTIONS(970), - [anon_sym_STAR] = ACTIONS(972), - [anon_sym_AMP] = ACTIONS(972), - [anon_sym_BANG] = ACTIONS(974), - [anon_sym_TILDE] = ACTIONS(976), - [anon_sym_PLUS] = ACTIONS(978), - [anon_sym_DASH] = ACTIONS(978), - [anon_sym_DASH_DASH] = ACTIONS(980), - [anon_sym_PLUS_PLUS] = ACTIONS(980), - [anon_sym_sizeof] = ACTIONS(982), - [sym_number_literal] = ACTIONS(3607), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(3609), - [sym_false] = ACTIONS(3609), - [sym_null] = ACTIONS(3609), - [sym_identifier] = ACTIONS(3609), + [anon_sym_RPAREN] = ACTIONS(3594), + [anon_sym_LPAREN2] = ACTIONS(961), + [anon_sym_STAR] = ACTIONS(963), + [anon_sym_AMP] = ACTIONS(963), + [anon_sym_BANG] = ACTIONS(965), + [anon_sym_TILDE] = ACTIONS(967), + [anon_sym_PLUS] = ACTIONS(969), + [anon_sym_DASH] = ACTIONS(969), + [anon_sym_DASH_DASH] = ACTIONS(971), + [anon_sym_PLUS_PLUS] = ACTIONS(971), + [anon_sym_sizeof] = ACTIONS(973), + [sym_number_literal] = ACTIONS(3596), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(3598), + [sym_false] = ACTIONS(3598), + [sym_null] = ACTIONS(3598), + [sym_identifier] = ACTIONS(3598), [sym_comment] = ACTIONS(39), }, [1326] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3547), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3547), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3547), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3547), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3547), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3547), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(3547), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(3547), - [sym_preproc_directive] = ACTIONS(3547), - [anon_sym_SEMI] = ACTIONS(3549), - [anon_sym_typedef] = ACTIONS(3547), - [anon_sym_extern] = ACTIONS(3547), - [anon_sym_LBRACE] = ACTIONS(3549), - [anon_sym_LPAREN2] = ACTIONS(3549), - [anon_sym_STAR] = ACTIONS(3549), - [anon_sym_static] = ACTIONS(3547), - [anon_sym_auto] = ACTIONS(3547), - [anon_sym_register] = ACTIONS(3547), - [anon_sym_inline] = ACTIONS(3547), - [anon_sym_const] = ACTIONS(3547), - [anon_sym_restrict] = ACTIONS(3547), - [anon_sym_volatile] = ACTIONS(3547), - [anon_sym__Atomic] = ACTIONS(3547), - [anon_sym_unsigned] = ACTIONS(3547), - [anon_sym_long] = ACTIONS(3547), - [anon_sym_short] = ACTIONS(3547), - [sym_primitive_type] = ACTIONS(3547), - [anon_sym_enum] = ACTIONS(3547), - [anon_sym_struct] = ACTIONS(3547), - [anon_sym_union] = ACTIONS(3547), - [anon_sym_if] = ACTIONS(3547), - [anon_sym_else] = ACTIONS(3547), - [anon_sym_switch] = ACTIONS(3547), - [anon_sym_case] = ACTIONS(3547), - [anon_sym_default] = ACTIONS(3547), - [anon_sym_while] = ACTIONS(3547), - [anon_sym_do] = ACTIONS(3547), - [anon_sym_for] = ACTIONS(3547), - [anon_sym_return] = ACTIONS(3547), - [anon_sym_break] = ACTIONS(3547), - [anon_sym_continue] = ACTIONS(3547), - [anon_sym_goto] = ACTIONS(3547), - [anon_sym_AMP] = ACTIONS(3549), - [anon_sym_BANG] = ACTIONS(3549), - [anon_sym_TILDE] = ACTIONS(3549), - [anon_sym_PLUS] = ACTIONS(3547), - [anon_sym_DASH] = ACTIONS(3547), - [anon_sym_DASH_DASH] = ACTIONS(3549), - [anon_sym_PLUS_PLUS] = ACTIONS(3549), - [anon_sym_sizeof] = ACTIONS(3547), - [sym_number_literal] = ACTIONS(3549), - [anon_sym_SQUOTE] = ACTIONS(3549), - [anon_sym_DQUOTE] = ACTIONS(3549), - [sym_true] = ACTIONS(3547), - [sym_false] = ACTIONS(3547), - [sym_null] = ACTIONS(3547), - [sym_identifier] = ACTIONS(3547), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3536), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3536), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3536), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3536), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3536), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3536), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(3536), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(3536), + [sym_preproc_directive] = ACTIONS(3536), + [anon_sym_SEMI] = ACTIONS(3538), + [anon_sym_typedef] = ACTIONS(3536), + [anon_sym_extern] = ACTIONS(3536), + [anon_sym_LBRACE] = ACTIONS(3538), + [anon_sym_LPAREN2] = ACTIONS(3538), + [anon_sym_STAR] = ACTIONS(3538), + [anon_sym_static] = ACTIONS(3536), + [anon_sym_auto] = ACTIONS(3536), + [anon_sym_register] = ACTIONS(3536), + [anon_sym_inline] = ACTIONS(3536), + [anon_sym_const] = ACTIONS(3536), + [anon_sym_restrict] = ACTIONS(3536), + [anon_sym_volatile] = ACTIONS(3536), + [anon_sym__Atomic] = ACTIONS(3536), + [anon_sym_unsigned] = ACTIONS(3536), + [anon_sym_long] = ACTIONS(3536), + [anon_sym_short] = ACTIONS(3536), + [sym_primitive_type] = ACTIONS(3536), + [anon_sym_enum] = ACTIONS(3536), + [anon_sym_struct] = ACTIONS(3536), + [anon_sym_union] = ACTIONS(3536), + [anon_sym_if] = ACTIONS(3536), + [anon_sym_else] = ACTIONS(3536), + [anon_sym_switch] = ACTIONS(3536), + [anon_sym_case] = ACTIONS(3536), + [anon_sym_default] = ACTIONS(3536), + [anon_sym_while] = ACTIONS(3536), + [anon_sym_do] = ACTIONS(3536), + [anon_sym_for] = ACTIONS(3536), + [anon_sym_return] = ACTIONS(3536), + [anon_sym_break] = ACTIONS(3536), + [anon_sym_continue] = ACTIONS(3536), + [anon_sym_goto] = ACTIONS(3536), + [anon_sym_AMP] = ACTIONS(3538), + [anon_sym_BANG] = ACTIONS(3538), + [anon_sym_TILDE] = ACTIONS(3538), + [anon_sym_PLUS] = ACTIONS(3536), + [anon_sym_DASH] = ACTIONS(3536), + [anon_sym_DASH_DASH] = ACTIONS(3538), + [anon_sym_PLUS_PLUS] = ACTIONS(3538), + [anon_sym_sizeof] = ACTIONS(3536), + [sym_number_literal] = ACTIONS(3538), + [anon_sym_SQUOTE] = ACTIONS(3538), + [anon_sym_DQUOTE] = ACTIONS(3538), + [sym_true] = ACTIONS(3536), + [sym_false] = ACTIONS(3536), + [sym_null] = ACTIONS(3536), + [sym_identifier] = ACTIONS(3536), [sym_comment] = ACTIONS(39), }, [1327] = { @@ -54012,42 +54031,42 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(649), [sym_concatenated_string] = STATE(649), [sym_string_literal] = STATE(253), - [anon_sym_SEMI] = ACTIONS(1516), - [anon_sym_LBRACE] = ACTIONS(734), - [anon_sym_LPAREN2] = ACTIONS(554), - [anon_sym_STAR] = ACTIONS(556), - [anon_sym_if] = ACTIONS(1518), - [anon_sym_switch] = ACTIONS(1520), - [anon_sym_case] = ACTIONS(1522), - [anon_sym_default] = ACTIONS(1524), - [anon_sym_while] = ACTIONS(1526), - [anon_sym_do] = ACTIONS(1528), - [anon_sym_for] = ACTIONS(1530), - [anon_sym_return] = ACTIONS(1532), - [anon_sym_break] = ACTIONS(1534), - [anon_sym_continue] = ACTIONS(1536), - [anon_sym_goto] = ACTIONS(1538), - [anon_sym_AMP] = ACTIONS(556), - [anon_sym_BANG] = ACTIONS(580), - [anon_sym_TILDE] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_DASH_DASH] = ACTIONS(586), - [anon_sym_PLUS_PLUS] = ACTIONS(586), - [anon_sym_sizeof] = ACTIONS(588), - [sym_number_literal] = ACTIONS(1540), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1542), - [sym_false] = ACTIONS(1542), - [sym_null] = ACTIONS(1542), - [sym_identifier] = ACTIONS(2747), + [anon_sym_SEMI] = ACTIONS(1505), + [anon_sym_LBRACE] = ACTIONS(725), + [anon_sym_LPAREN2] = ACTIONS(550), + [anon_sym_STAR] = ACTIONS(552), + [anon_sym_if] = ACTIONS(1507), + [anon_sym_switch] = ACTIONS(1509), + [anon_sym_case] = ACTIONS(1511), + [anon_sym_default] = ACTIONS(1513), + [anon_sym_while] = ACTIONS(1515), + [anon_sym_do] = ACTIONS(1517), + [anon_sym_for] = ACTIONS(1519), + [anon_sym_return] = ACTIONS(1521), + [anon_sym_break] = ACTIONS(1523), + [anon_sym_continue] = ACTIONS(1525), + [anon_sym_goto] = ACTIONS(1527), + [anon_sym_AMP] = ACTIONS(552), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_TILDE] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(580), + [anon_sym_DASH] = ACTIONS(580), + [anon_sym_DASH_DASH] = ACTIONS(582), + [anon_sym_PLUS_PLUS] = ACTIONS(582), + [anon_sym_sizeof] = ACTIONS(584), + [sym_number_literal] = ACTIONS(1529), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_null] = ACTIONS(1531), + [sym_identifier] = ACTIONS(2736), [sym_comment] = ACTIONS(39), }, [1328] = { [aux_sym_for_statement_repeat1] = STATE(1088), - [anon_sym_COMMA] = ACTIONS(2530), - [anon_sym_RPAREN] = ACTIONS(3611), + [anon_sym_COMMA] = ACTIONS(2519), + [anon_sym_RPAREN] = ACTIONS(3600), [sym_comment] = ACTIONS(39), }, [1329] = { @@ -54085,42 +54104,42 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(251), [sym_concatenated_string] = STATE(251), [sym_string_literal] = STATE(253), - [anon_sym_SEMI] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(241), - [anon_sym_LPAREN2] = ACTIONS(554), - [anon_sym_STAR] = ACTIONS(556), - [anon_sym_if] = ACTIONS(1598), - [anon_sym_switch] = ACTIONS(1600), - [anon_sym_case] = ACTIONS(1602), - [anon_sym_default] = ACTIONS(1604), - [anon_sym_while] = ACTIONS(1606), - [anon_sym_do] = ACTIONS(568), - [anon_sym_for] = ACTIONS(1608), - [anon_sym_return] = ACTIONS(572), - [anon_sym_break] = ACTIONS(574), - [anon_sym_continue] = ACTIONS(576), - [anon_sym_goto] = ACTIONS(578), - [anon_sym_AMP] = ACTIONS(556), - [anon_sym_BANG] = ACTIONS(580), - [anon_sym_TILDE] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_DASH_DASH] = ACTIONS(586), - [anon_sym_PLUS_PLUS] = ACTIONS(586), - [anon_sym_sizeof] = ACTIONS(588), - [sym_number_literal] = ACTIONS(590), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(594), - [sym_false] = ACTIONS(594), - [sym_null] = ACTIONS(594), - [sym_identifier] = ACTIONS(1610), + [anon_sym_SEMI] = ACTIONS(546), + [anon_sym_LBRACE] = ACTIONS(239), + [anon_sym_LPAREN2] = ACTIONS(550), + [anon_sym_STAR] = ACTIONS(552), + [anon_sym_if] = ACTIONS(1587), + [anon_sym_switch] = ACTIONS(1589), + [anon_sym_case] = ACTIONS(1591), + [anon_sym_default] = ACTIONS(1593), + [anon_sym_while] = ACTIONS(1595), + [anon_sym_do] = ACTIONS(564), + [anon_sym_for] = ACTIONS(1597), + [anon_sym_return] = ACTIONS(568), + [anon_sym_break] = ACTIONS(570), + [anon_sym_continue] = ACTIONS(572), + [anon_sym_goto] = ACTIONS(574), + [anon_sym_AMP] = ACTIONS(552), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_TILDE] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(580), + [anon_sym_DASH] = ACTIONS(580), + [anon_sym_DASH_DASH] = ACTIONS(582), + [anon_sym_PLUS_PLUS] = ACTIONS(582), + [anon_sym_sizeof] = ACTIONS(584), + [sym_number_literal] = ACTIONS(586), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(590), + [sym_false] = ACTIONS(590), + [sym_null] = ACTIONS(590), + [sym_identifier] = ACTIONS(1599), [sym_comment] = ACTIONS(39), }, [1330] = { [aux_sym_for_statement_repeat1] = STATE(1088), - [anon_sym_COMMA] = ACTIONS(2530), - [anon_sym_RPAREN] = ACTIONS(3613), + [anon_sym_COMMA] = ACTIONS(2519), + [anon_sym_RPAREN] = ACTIONS(3602), [sym_comment] = ACTIONS(39), }, [1331] = { @@ -54158,85 +54177,85 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(251), [sym_concatenated_string] = STATE(251), [sym_string_literal] = STATE(253), - [anon_sym_SEMI] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(241), - [anon_sym_LPAREN2] = ACTIONS(554), - [anon_sym_STAR] = ACTIONS(556), - [anon_sym_if] = ACTIONS(2472), - [anon_sym_switch] = ACTIONS(2474), - [anon_sym_case] = ACTIONS(2476), - [anon_sym_default] = ACTIONS(2478), - [anon_sym_while] = ACTIONS(2480), - [anon_sym_do] = ACTIONS(1026), - [anon_sym_for] = ACTIONS(2482), - [anon_sym_return] = ACTIONS(572), - [anon_sym_break] = ACTIONS(574), - [anon_sym_continue] = ACTIONS(576), - [anon_sym_goto] = ACTIONS(578), - [anon_sym_AMP] = ACTIONS(556), - [anon_sym_BANG] = ACTIONS(580), - [anon_sym_TILDE] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_DASH_DASH] = ACTIONS(586), - [anon_sym_PLUS_PLUS] = ACTIONS(586), - [anon_sym_sizeof] = ACTIONS(588), - [sym_number_literal] = ACTIONS(590), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(594), - [sym_false] = ACTIONS(594), - [sym_null] = ACTIONS(594), - [sym_identifier] = ACTIONS(2484), + [anon_sym_SEMI] = ACTIONS(546), + [anon_sym_LBRACE] = ACTIONS(239), + [anon_sym_LPAREN2] = ACTIONS(550), + [anon_sym_STAR] = ACTIONS(552), + [anon_sym_if] = ACTIONS(2461), + [anon_sym_switch] = ACTIONS(2463), + [anon_sym_case] = ACTIONS(2465), + [anon_sym_default] = ACTIONS(2467), + [anon_sym_while] = ACTIONS(2469), + [anon_sym_do] = ACTIONS(1017), + [anon_sym_for] = ACTIONS(2471), + [anon_sym_return] = ACTIONS(568), + [anon_sym_break] = ACTIONS(570), + [anon_sym_continue] = ACTIONS(572), + [anon_sym_goto] = ACTIONS(574), + [anon_sym_AMP] = ACTIONS(552), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_TILDE] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(580), + [anon_sym_DASH] = ACTIONS(580), + [anon_sym_DASH_DASH] = ACTIONS(582), + [anon_sym_PLUS_PLUS] = ACTIONS(582), + [anon_sym_sizeof] = ACTIONS(584), + [sym_number_literal] = ACTIONS(586), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(590), + [sym_false] = ACTIONS(590), + [sym_null] = ACTIONS(590), + [sym_identifier] = ACTIONS(2473), [sym_comment] = ACTIONS(39), }, [1332] = { [aux_sym_for_statement_repeat1] = STATE(1088), - [anon_sym_COMMA] = ACTIONS(2530), - [anon_sym_RPAREN] = ACTIONS(3615), + [anon_sym_COMMA] = ACTIONS(2519), + [anon_sym_RPAREN] = ACTIONS(3604), [sym_comment] = ACTIONS(39), }, [1333] = { [sym_argument_list] = STATE(465), [aux_sym_for_statement_repeat1] = STATE(1350), - [anon_sym_COMMA] = ACTIONS(2530), - [anon_sym_RPAREN] = ACTIONS(3615), - [anon_sym_LPAREN2] = ACTIONS(1096), - [anon_sym_STAR] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1100), - [anon_sym_EQ] = ACTIONS(1562), - [anon_sym_QMARK] = ACTIONS(1564), - [anon_sym_STAR_EQ] = ACTIONS(1566), - [anon_sym_SLASH_EQ] = ACTIONS(1566), - [anon_sym_PERCENT_EQ] = ACTIONS(1566), - [anon_sym_PLUS_EQ] = ACTIONS(1566), - [anon_sym_DASH_EQ] = ACTIONS(1566), - [anon_sym_LT_LT_EQ] = ACTIONS(1566), - [anon_sym_GT_GT_EQ] = ACTIONS(1566), - [anon_sym_AMP_EQ] = ACTIONS(1566), - [anon_sym_CARET_EQ] = ACTIONS(1566), - [anon_sym_PIPE_EQ] = ACTIONS(1566), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_PIPE_PIPE] = ACTIONS(1570), - [anon_sym_AMP_AMP] = ACTIONS(1572), - [anon_sym_PIPE] = ACTIONS(1574), - [anon_sym_CARET] = ACTIONS(1576), - [anon_sym_EQ_EQ] = ACTIONS(1578), - [anon_sym_BANG_EQ] = ACTIONS(1578), - [anon_sym_LT] = ACTIONS(1580), - [anon_sym_GT] = ACTIONS(1580), - [anon_sym_LT_EQ] = ACTIONS(1582), - [anon_sym_GT_EQ] = ACTIONS(1582), - [anon_sym_LT_LT] = ACTIONS(1584), - [anon_sym_GT_GT] = ACTIONS(1584), - [anon_sym_PLUS] = ACTIONS(1586), - [anon_sym_DASH] = ACTIONS(1586), - [anon_sym_SLASH] = ACTIONS(1560), - [anon_sym_PERCENT] = ACTIONS(1560), - [anon_sym_DASH_DASH] = ACTIONS(1128), - [anon_sym_PLUS_PLUS] = ACTIONS(1128), - [anon_sym_DOT] = ACTIONS(1130), - [anon_sym_DASH_GT] = ACTIONS(1130), + [anon_sym_COMMA] = ACTIONS(2519), + [anon_sym_RPAREN] = ACTIONS(3604), + [anon_sym_LPAREN2] = ACTIONS(1089), + [anon_sym_STAR] = ACTIONS(1549), + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(1551), + [anon_sym_QMARK] = ACTIONS(1553), + [anon_sym_STAR_EQ] = ACTIONS(1555), + [anon_sym_SLASH_EQ] = ACTIONS(1555), + [anon_sym_PERCENT_EQ] = ACTIONS(1555), + [anon_sym_PLUS_EQ] = ACTIONS(1555), + [anon_sym_DASH_EQ] = ACTIONS(1555), + [anon_sym_LT_LT_EQ] = ACTIONS(1555), + [anon_sym_GT_GT_EQ] = ACTIONS(1555), + [anon_sym_AMP_EQ] = ACTIONS(1555), + [anon_sym_CARET_EQ] = ACTIONS(1555), + [anon_sym_PIPE_EQ] = ACTIONS(1555), + [anon_sym_AMP] = ACTIONS(1557), + [anon_sym_PIPE_PIPE] = ACTIONS(1559), + [anon_sym_AMP_AMP] = ACTIONS(1561), + [anon_sym_PIPE] = ACTIONS(1563), + [anon_sym_CARET] = ACTIONS(1565), + [anon_sym_EQ_EQ] = ACTIONS(1567), + [anon_sym_BANG_EQ] = ACTIONS(1567), + [anon_sym_LT] = ACTIONS(1569), + [anon_sym_GT] = ACTIONS(1569), + [anon_sym_LT_EQ] = ACTIONS(1571), + [anon_sym_GT_EQ] = ACTIONS(1571), + [anon_sym_LT_LT] = ACTIONS(1573), + [anon_sym_GT_GT] = ACTIONS(1573), + [anon_sym_PLUS] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(1575), + [anon_sym_SLASH] = ACTIONS(1549), + [anon_sym_PERCENT] = ACTIONS(1549), + [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_PLUS_PLUS] = ACTIONS(1121), + [anon_sym_DOT] = ACTIONS(1123), + [anon_sym_DASH_GT] = ACTIONS(1123), [sym_comment] = ACTIONS(39), }, [1334] = { @@ -54274,94 +54293,94 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(251), [sym_concatenated_string] = STATE(251), [sym_string_literal] = STATE(253), - [anon_sym_SEMI] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(241), - [anon_sym_LPAREN2] = ACTIONS(554), - [anon_sym_STAR] = ACTIONS(556), - [anon_sym_if] = ACTIONS(1016), - [anon_sym_switch] = ACTIONS(1018), - [anon_sym_case] = ACTIONS(1020), - [anon_sym_default] = ACTIONS(1022), - [anon_sym_while] = ACTIONS(1024), - [anon_sym_do] = ACTIONS(1026), - [anon_sym_for] = ACTIONS(1028), - [anon_sym_return] = ACTIONS(572), - [anon_sym_break] = ACTIONS(574), - [anon_sym_continue] = ACTIONS(576), - [anon_sym_goto] = ACTIONS(578), - [anon_sym_AMP] = ACTIONS(556), - [anon_sym_BANG] = ACTIONS(580), - [anon_sym_TILDE] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_DASH_DASH] = ACTIONS(586), - [anon_sym_PLUS_PLUS] = ACTIONS(586), - [anon_sym_sizeof] = ACTIONS(588), - [sym_number_literal] = ACTIONS(590), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(594), - [sym_false] = ACTIONS(594), - [sym_null] = ACTIONS(594), - [sym_identifier] = ACTIONS(1030), + [anon_sym_SEMI] = ACTIONS(546), + [anon_sym_LBRACE] = ACTIONS(239), + [anon_sym_LPAREN2] = ACTIONS(550), + [anon_sym_STAR] = ACTIONS(552), + [anon_sym_if] = ACTIONS(1007), + [anon_sym_switch] = ACTIONS(1009), + [anon_sym_case] = ACTIONS(1011), + [anon_sym_default] = ACTIONS(1013), + [anon_sym_while] = ACTIONS(1015), + [anon_sym_do] = ACTIONS(1017), + [anon_sym_for] = ACTIONS(1019), + [anon_sym_return] = ACTIONS(568), + [anon_sym_break] = ACTIONS(570), + [anon_sym_continue] = ACTIONS(572), + [anon_sym_goto] = ACTIONS(574), + [anon_sym_AMP] = ACTIONS(552), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_TILDE] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(580), + [anon_sym_DASH] = ACTIONS(580), + [anon_sym_DASH_DASH] = ACTIONS(582), + [anon_sym_PLUS_PLUS] = ACTIONS(582), + [anon_sym_sizeof] = ACTIONS(584), + [sym_number_literal] = ACTIONS(586), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(590), + [sym_false] = ACTIONS(590), + [sym_null] = ACTIONS(590), + [sym_identifier] = ACTIONS(1021), [sym_comment] = ACTIONS(39), }, [1335] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3617), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3617), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3617), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3617), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3617), - [sym_preproc_directive] = ACTIONS(3617), - [anon_sym_SEMI] = ACTIONS(3619), - [anon_sym_typedef] = ACTIONS(3617), - [anon_sym_extern] = ACTIONS(3617), - [anon_sym_LBRACE] = ACTIONS(3619), - [anon_sym_RBRACE] = ACTIONS(3619), - [anon_sym_LPAREN2] = ACTIONS(3619), - [anon_sym_STAR] = ACTIONS(3619), - [anon_sym_static] = ACTIONS(3617), - [anon_sym_auto] = ACTIONS(3617), - [anon_sym_register] = ACTIONS(3617), - [anon_sym_inline] = ACTIONS(3617), - [anon_sym_const] = ACTIONS(3617), - [anon_sym_restrict] = ACTIONS(3617), - [anon_sym_volatile] = ACTIONS(3617), - [anon_sym__Atomic] = ACTIONS(3617), - [anon_sym_unsigned] = ACTIONS(3617), - [anon_sym_long] = ACTIONS(3617), - [anon_sym_short] = ACTIONS(3617), - [sym_primitive_type] = ACTIONS(3617), - [anon_sym_enum] = ACTIONS(3617), - [anon_sym_struct] = ACTIONS(3617), - [anon_sym_union] = ACTIONS(3617), - [anon_sym_if] = ACTIONS(3617), - [anon_sym_else] = ACTIONS(3617), - [anon_sym_switch] = ACTIONS(3617), - [anon_sym_case] = ACTIONS(3617), - [anon_sym_default] = ACTIONS(3617), - [anon_sym_while] = ACTIONS(3617), - [anon_sym_do] = ACTIONS(3617), - [anon_sym_for] = ACTIONS(3617), - [anon_sym_return] = ACTIONS(3617), - [anon_sym_break] = ACTIONS(3617), - [anon_sym_continue] = ACTIONS(3617), - [anon_sym_goto] = ACTIONS(3617), - [anon_sym_AMP] = ACTIONS(3619), - [anon_sym_BANG] = ACTIONS(3619), - [anon_sym_TILDE] = ACTIONS(3619), - [anon_sym_PLUS] = ACTIONS(3617), - [anon_sym_DASH] = ACTIONS(3617), - [anon_sym_DASH_DASH] = ACTIONS(3619), - [anon_sym_PLUS_PLUS] = ACTIONS(3619), - [anon_sym_sizeof] = ACTIONS(3617), - [sym_number_literal] = ACTIONS(3619), - [anon_sym_SQUOTE] = ACTIONS(3619), - [anon_sym_DQUOTE] = ACTIONS(3619), - [sym_true] = ACTIONS(3617), - [sym_false] = ACTIONS(3617), - [sym_null] = ACTIONS(3617), - [sym_identifier] = ACTIONS(3617), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3606), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3606), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3606), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3606), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3606), + [sym_preproc_directive] = ACTIONS(3606), + [anon_sym_SEMI] = ACTIONS(3608), + [anon_sym_typedef] = ACTIONS(3606), + [anon_sym_extern] = ACTIONS(3606), + [anon_sym_LBRACE] = ACTIONS(3608), + [anon_sym_RBRACE] = ACTIONS(3608), + [anon_sym_LPAREN2] = ACTIONS(3608), + [anon_sym_STAR] = ACTIONS(3608), + [anon_sym_static] = ACTIONS(3606), + [anon_sym_auto] = ACTIONS(3606), + [anon_sym_register] = ACTIONS(3606), + [anon_sym_inline] = ACTIONS(3606), + [anon_sym_const] = ACTIONS(3606), + [anon_sym_restrict] = ACTIONS(3606), + [anon_sym_volatile] = ACTIONS(3606), + [anon_sym__Atomic] = ACTIONS(3606), + [anon_sym_unsigned] = ACTIONS(3606), + [anon_sym_long] = ACTIONS(3606), + [anon_sym_short] = ACTIONS(3606), + [sym_primitive_type] = ACTIONS(3606), + [anon_sym_enum] = ACTIONS(3606), + [anon_sym_struct] = ACTIONS(3606), + [anon_sym_union] = ACTIONS(3606), + [anon_sym_if] = ACTIONS(3606), + [anon_sym_else] = ACTIONS(3606), + [anon_sym_switch] = ACTIONS(3606), + [anon_sym_case] = ACTIONS(3606), + [anon_sym_default] = ACTIONS(3606), + [anon_sym_while] = ACTIONS(3606), + [anon_sym_do] = ACTIONS(3606), + [anon_sym_for] = ACTIONS(3606), + [anon_sym_return] = ACTIONS(3606), + [anon_sym_break] = ACTIONS(3606), + [anon_sym_continue] = ACTIONS(3606), + [anon_sym_goto] = ACTIONS(3606), + [anon_sym_AMP] = ACTIONS(3608), + [anon_sym_BANG] = ACTIONS(3608), + [anon_sym_TILDE] = ACTIONS(3608), + [anon_sym_PLUS] = ACTIONS(3606), + [anon_sym_DASH] = ACTIONS(3606), + [anon_sym_DASH_DASH] = ACTIONS(3608), + [anon_sym_PLUS_PLUS] = ACTIONS(3608), + [anon_sym_sizeof] = ACTIONS(3606), + [sym_number_literal] = ACTIONS(3608), + [anon_sym_SQUOTE] = ACTIONS(3608), + [anon_sym_DQUOTE] = ACTIONS(3608), + [sym_true] = ACTIONS(3606), + [sym_false] = ACTIONS(3606), + [sym_null] = ACTIONS(3606), + [sym_identifier] = ACTIONS(3606), [sym_comment] = ACTIONS(39), }, [1336] = { @@ -54399,85 +54418,85 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(872), [sym_concatenated_string] = STATE(872), [sym_string_literal] = STATE(253), - [anon_sym_SEMI] = ACTIONS(2254), - [anon_sym_LBRACE] = ACTIONS(1273), - [anon_sym_LPAREN2] = ACTIONS(554), - [anon_sym_STAR] = ACTIONS(556), - [anon_sym_if] = ACTIONS(3053), - [anon_sym_switch] = ACTIONS(3055), - [anon_sym_case] = ACTIONS(3057), - [anon_sym_default] = ACTIONS(3059), - [anon_sym_while] = ACTIONS(3061), - [anon_sym_do] = ACTIONS(2266), - [anon_sym_for] = ACTIONS(3063), - [anon_sym_return] = ACTIONS(2270), - [anon_sym_break] = ACTIONS(2272), - [anon_sym_continue] = ACTIONS(2274), - [anon_sym_goto] = ACTIONS(2276), - [anon_sym_AMP] = ACTIONS(556), - [anon_sym_BANG] = ACTIONS(580), - [anon_sym_TILDE] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_DASH_DASH] = ACTIONS(586), - [anon_sym_PLUS_PLUS] = ACTIONS(586), - [anon_sym_sizeof] = ACTIONS(588), - [sym_number_literal] = ACTIONS(2278), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2280), - [sym_false] = ACTIONS(2280), - [sym_null] = ACTIONS(2280), - [sym_identifier] = ACTIONS(3065), + [anon_sym_SEMI] = ACTIONS(2243), + [anon_sym_LBRACE] = ACTIONS(1264), + [anon_sym_LPAREN2] = ACTIONS(550), + [anon_sym_STAR] = ACTIONS(552), + [anon_sym_if] = ACTIONS(3042), + [anon_sym_switch] = ACTIONS(3044), + [anon_sym_case] = ACTIONS(3046), + [anon_sym_default] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3050), + [anon_sym_do] = ACTIONS(2255), + [anon_sym_for] = ACTIONS(3052), + [anon_sym_return] = ACTIONS(2259), + [anon_sym_break] = ACTIONS(2261), + [anon_sym_continue] = ACTIONS(2263), + [anon_sym_goto] = ACTIONS(2265), + [anon_sym_AMP] = ACTIONS(552), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_TILDE] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(580), + [anon_sym_DASH] = ACTIONS(580), + [anon_sym_DASH_DASH] = ACTIONS(582), + [anon_sym_PLUS_PLUS] = ACTIONS(582), + [anon_sym_sizeof] = ACTIONS(584), + [sym_number_literal] = ACTIONS(2267), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(2269), + [sym_false] = ACTIONS(2269), + [sym_null] = ACTIONS(2269), + [sym_identifier] = ACTIONS(3054), [sym_comment] = ACTIONS(39), }, [1337] = { [aux_sym_for_statement_repeat1] = STATE(1088), - [anon_sym_COMMA] = ACTIONS(2530), - [anon_sym_RPAREN] = ACTIONS(3621), + [anon_sym_COMMA] = ACTIONS(2519), + [anon_sym_RPAREN] = ACTIONS(3610), [sym_comment] = ACTIONS(39), }, [1338] = { [sym_argument_list] = STATE(465), [aux_sym_for_statement_repeat1] = STATE(1352), - [anon_sym_COMMA] = ACTIONS(2530), - [anon_sym_RPAREN] = ACTIONS(3621), - [anon_sym_LPAREN2] = ACTIONS(1096), - [anon_sym_STAR] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1100), - [anon_sym_EQ] = ACTIONS(1562), - [anon_sym_QMARK] = ACTIONS(1564), - [anon_sym_STAR_EQ] = ACTIONS(1566), - [anon_sym_SLASH_EQ] = ACTIONS(1566), - [anon_sym_PERCENT_EQ] = ACTIONS(1566), - [anon_sym_PLUS_EQ] = ACTIONS(1566), - [anon_sym_DASH_EQ] = ACTIONS(1566), - [anon_sym_LT_LT_EQ] = ACTIONS(1566), - [anon_sym_GT_GT_EQ] = ACTIONS(1566), - [anon_sym_AMP_EQ] = ACTIONS(1566), - [anon_sym_CARET_EQ] = ACTIONS(1566), - [anon_sym_PIPE_EQ] = ACTIONS(1566), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_PIPE_PIPE] = ACTIONS(1570), - [anon_sym_AMP_AMP] = ACTIONS(1572), - [anon_sym_PIPE] = ACTIONS(1574), - [anon_sym_CARET] = ACTIONS(1576), - [anon_sym_EQ_EQ] = ACTIONS(1578), - [anon_sym_BANG_EQ] = ACTIONS(1578), - [anon_sym_LT] = ACTIONS(1580), - [anon_sym_GT] = ACTIONS(1580), - [anon_sym_LT_EQ] = ACTIONS(1582), - [anon_sym_GT_EQ] = ACTIONS(1582), - [anon_sym_LT_LT] = ACTIONS(1584), - [anon_sym_GT_GT] = ACTIONS(1584), - [anon_sym_PLUS] = ACTIONS(1586), - [anon_sym_DASH] = ACTIONS(1586), - [anon_sym_SLASH] = ACTIONS(1560), - [anon_sym_PERCENT] = ACTIONS(1560), - [anon_sym_DASH_DASH] = ACTIONS(1128), - [anon_sym_PLUS_PLUS] = ACTIONS(1128), - [anon_sym_DOT] = ACTIONS(1130), - [anon_sym_DASH_GT] = ACTIONS(1130), + [anon_sym_COMMA] = ACTIONS(2519), + [anon_sym_RPAREN] = ACTIONS(3610), + [anon_sym_LPAREN2] = ACTIONS(1089), + [anon_sym_STAR] = ACTIONS(1549), + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(1551), + [anon_sym_QMARK] = ACTIONS(1553), + [anon_sym_STAR_EQ] = ACTIONS(1555), + [anon_sym_SLASH_EQ] = ACTIONS(1555), + [anon_sym_PERCENT_EQ] = ACTIONS(1555), + [anon_sym_PLUS_EQ] = ACTIONS(1555), + [anon_sym_DASH_EQ] = ACTIONS(1555), + [anon_sym_LT_LT_EQ] = ACTIONS(1555), + [anon_sym_GT_GT_EQ] = ACTIONS(1555), + [anon_sym_AMP_EQ] = ACTIONS(1555), + [anon_sym_CARET_EQ] = ACTIONS(1555), + [anon_sym_PIPE_EQ] = ACTIONS(1555), + [anon_sym_AMP] = ACTIONS(1557), + [anon_sym_PIPE_PIPE] = ACTIONS(1559), + [anon_sym_AMP_AMP] = ACTIONS(1561), + [anon_sym_PIPE] = ACTIONS(1563), + [anon_sym_CARET] = ACTIONS(1565), + [anon_sym_EQ_EQ] = ACTIONS(1567), + [anon_sym_BANG_EQ] = ACTIONS(1567), + [anon_sym_LT] = ACTIONS(1569), + [anon_sym_GT] = ACTIONS(1569), + [anon_sym_LT_EQ] = ACTIONS(1571), + [anon_sym_GT_EQ] = ACTIONS(1571), + [anon_sym_LT_LT] = ACTIONS(1573), + [anon_sym_GT_GT] = ACTIONS(1573), + [anon_sym_PLUS] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(1575), + [anon_sym_SLASH] = ACTIONS(1549), + [anon_sym_PERCENT] = ACTIONS(1549), + [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_PLUS_PLUS] = ACTIONS(1121), + [anon_sym_DOT] = ACTIONS(1123), + [anon_sym_DASH_GT] = ACTIONS(1123), [sym_comment] = ACTIONS(39), }, [1339] = { @@ -54501,82 +54520,82 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(1353), [sym_concatenated_string] = STATE(1353), [sym_string_literal] = STATE(409), - [anon_sym_RPAREN] = ACTIONS(3621), - [anon_sym_LPAREN2] = ACTIONS(970), - [anon_sym_STAR] = ACTIONS(972), - [anon_sym_AMP] = ACTIONS(972), - [anon_sym_BANG] = ACTIONS(974), - [anon_sym_TILDE] = ACTIONS(976), - [anon_sym_PLUS] = ACTIONS(978), - [anon_sym_DASH] = ACTIONS(978), - [anon_sym_DASH_DASH] = ACTIONS(980), - [anon_sym_PLUS_PLUS] = ACTIONS(980), - [anon_sym_sizeof] = ACTIONS(982), - [sym_number_literal] = ACTIONS(3623), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(3625), - [sym_false] = ACTIONS(3625), - [sym_null] = ACTIONS(3625), - [sym_identifier] = ACTIONS(3625), + [anon_sym_RPAREN] = ACTIONS(3610), + [anon_sym_LPAREN2] = ACTIONS(961), + [anon_sym_STAR] = ACTIONS(963), + [anon_sym_AMP] = ACTIONS(963), + [anon_sym_BANG] = ACTIONS(965), + [anon_sym_TILDE] = ACTIONS(967), + [anon_sym_PLUS] = ACTIONS(969), + [anon_sym_DASH] = ACTIONS(969), + [anon_sym_DASH_DASH] = ACTIONS(971), + [anon_sym_PLUS_PLUS] = ACTIONS(971), + [anon_sym_sizeof] = ACTIONS(973), + [sym_number_literal] = ACTIONS(3612), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(3614), + [sym_false] = ACTIONS(3614), + [sym_null] = ACTIONS(3614), + [sym_identifier] = ACTIONS(3614), [sym_comment] = ACTIONS(39), }, [1340] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3547), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3547), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3547), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3547), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3547), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3547), - [sym_preproc_directive] = ACTIONS(3547), - [anon_sym_SEMI] = ACTIONS(3549), - [anon_sym_typedef] = ACTIONS(3547), - [anon_sym_extern] = ACTIONS(3547), - [anon_sym_LBRACE] = ACTIONS(3549), - [anon_sym_LPAREN2] = ACTIONS(3549), - [anon_sym_STAR] = ACTIONS(3549), - [anon_sym_static] = ACTIONS(3547), - [anon_sym_auto] = ACTIONS(3547), - [anon_sym_register] = ACTIONS(3547), - [anon_sym_inline] = ACTIONS(3547), - [anon_sym_const] = ACTIONS(3547), - [anon_sym_restrict] = ACTIONS(3547), - [anon_sym_volatile] = ACTIONS(3547), - [anon_sym__Atomic] = ACTIONS(3547), - [anon_sym_unsigned] = ACTIONS(3547), - [anon_sym_long] = ACTIONS(3547), - [anon_sym_short] = ACTIONS(3547), - [sym_primitive_type] = ACTIONS(3547), - [anon_sym_enum] = ACTIONS(3547), - [anon_sym_struct] = ACTIONS(3547), - [anon_sym_union] = ACTIONS(3547), - [anon_sym_if] = ACTIONS(3547), - [anon_sym_else] = ACTIONS(3547), - [anon_sym_switch] = ACTIONS(3547), - [anon_sym_case] = ACTIONS(3547), - [anon_sym_default] = ACTIONS(3547), - [anon_sym_while] = ACTIONS(3547), - [anon_sym_do] = ACTIONS(3547), - [anon_sym_for] = ACTIONS(3547), - [anon_sym_return] = ACTIONS(3547), - [anon_sym_break] = ACTIONS(3547), - [anon_sym_continue] = ACTIONS(3547), - [anon_sym_goto] = ACTIONS(3547), - [anon_sym_AMP] = ACTIONS(3549), - [anon_sym_BANG] = ACTIONS(3549), - [anon_sym_TILDE] = ACTIONS(3549), - [anon_sym_PLUS] = ACTIONS(3547), - [anon_sym_DASH] = ACTIONS(3547), - [anon_sym_DASH_DASH] = ACTIONS(3549), - [anon_sym_PLUS_PLUS] = ACTIONS(3549), - [anon_sym_sizeof] = ACTIONS(3547), - [sym_number_literal] = ACTIONS(3549), - [anon_sym_SQUOTE] = ACTIONS(3549), - [anon_sym_DQUOTE] = ACTIONS(3549), - [sym_true] = ACTIONS(3547), - [sym_false] = ACTIONS(3547), - [sym_null] = ACTIONS(3547), - [sym_identifier] = ACTIONS(3547), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3536), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3536), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3536), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3536), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3536), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3536), + [sym_preproc_directive] = ACTIONS(3536), + [anon_sym_SEMI] = ACTIONS(3538), + [anon_sym_typedef] = ACTIONS(3536), + [anon_sym_extern] = ACTIONS(3536), + [anon_sym_LBRACE] = ACTIONS(3538), + [anon_sym_LPAREN2] = ACTIONS(3538), + [anon_sym_STAR] = ACTIONS(3538), + [anon_sym_static] = ACTIONS(3536), + [anon_sym_auto] = ACTIONS(3536), + [anon_sym_register] = ACTIONS(3536), + [anon_sym_inline] = ACTIONS(3536), + [anon_sym_const] = ACTIONS(3536), + [anon_sym_restrict] = ACTIONS(3536), + [anon_sym_volatile] = ACTIONS(3536), + [anon_sym__Atomic] = ACTIONS(3536), + [anon_sym_unsigned] = ACTIONS(3536), + [anon_sym_long] = ACTIONS(3536), + [anon_sym_short] = ACTIONS(3536), + [sym_primitive_type] = ACTIONS(3536), + [anon_sym_enum] = ACTIONS(3536), + [anon_sym_struct] = ACTIONS(3536), + [anon_sym_union] = ACTIONS(3536), + [anon_sym_if] = ACTIONS(3536), + [anon_sym_else] = ACTIONS(3536), + [anon_sym_switch] = ACTIONS(3536), + [anon_sym_case] = ACTIONS(3536), + [anon_sym_default] = ACTIONS(3536), + [anon_sym_while] = ACTIONS(3536), + [anon_sym_do] = ACTIONS(3536), + [anon_sym_for] = ACTIONS(3536), + [anon_sym_return] = ACTIONS(3536), + [anon_sym_break] = ACTIONS(3536), + [anon_sym_continue] = ACTIONS(3536), + [anon_sym_goto] = ACTIONS(3536), + [anon_sym_AMP] = ACTIONS(3538), + [anon_sym_BANG] = ACTIONS(3538), + [anon_sym_TILDE] = ACTIONS(3538), + [anon_sym_PLUS] = ACTIONS(3536), + [anon_sym_DASH] = ACTIONS(3536), + [anon_sym_DASH_DASH] = ACTIONS(3538), + [anon_sym_PLUS_PLUS] = ACTIONS(3538), + [anon_sym_sizeof] = ACTIONS(3536), + [sym_number_literal] = ACTIONS(3538), + [anon_sym_SQUOTE] = ACTIONS(3538), + [anon_sym_DQUOTE] = ACTIONS(3538), + [sym_true] = ACTIONS(3536), + [sym_false] = ACTIONS(3536), + [sym_null] = ACTIONS(3536), + [sym_identifier] = ACTIONS(3536), [sym_comment] = ACTIONS(39), }, [1341] = { @@ -54614,42 +54633,42 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(872), [sym_concatenated_string] = STATE(872), [sym_string_literal] = STATE(253), - [anon_sym_SEMI] = ACTIONS(2254), - [anon_sym_LBRACE] = ACTIONS(1273), - [anon_sym_LPAREN2] = ACTIONS(554), - [anon_sym_STAR] = ACTIONS(556), - [anon_sym_if] = ACTIONS(2256), - [anon_sym_switch] = ACTIONS(2258), - [anon_sym_case] = ACTIONS(2260), - [anon_sym_default] = ACTIONS(2262), - [anon_sym_while] = ACTIONS(2264), - [anon_sym_do] = ACTIONS(2266), - [anon_sym_for] = ACTIONS(2268), - [anon_sym_return] = ACTIONS(2270), - [anon_sym_break] = ACTIONS(2272), - [anon_sym_continue] = ACTIONS(2274), - [anon_sym_goto] = ACTIONS(2276), - [anon_sym_AMP] = ACTIONS(556), - [anon_sym_BANG] = ACTIONS(580), - [anon_sym_TILDE] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_DASH_DASH] = ACTIONS(586), - [anon_sym_PLUS_PLUS] = ACTIONS(586), - [anon_sym_sizeof] = ACTIONS(588), - [sym_number_literal] = ACTIONS(2278), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2280), - [sym_false] = ACTIONS(2280), - [sym_null] = ACTIONS(2280), - [sym_identifier] = ACTIONS(3067), + [anon_sym_SEMI] = ACTIONS(2243), + [anon_sym_LBRACE] = ACTIONS(1264), + [anon_sym_LPAREN2] = ACTIONS(550), + [anon_sym_STAR] = ACTIONS(552), + [anon_sym_if] = ACTIONS(2245), + [anon_sym_switch] = ACTIONS(2247), + [anon_sym_case] = ACTIONS(2249), + [anon_sym_default] = ACTIONS(2251), + [anon_sym_while] = ACTIONS(2253), + [anon_sym_do] = ACTIONS(2255), + [anon_sym_for] = ACTIONS(2257), + [anon_sym_return] = ACTIONS(2259), + [anon_sym_break] = ACTIONS(2261), + [anon_sym_continue] = ACTIONS(2263), + [anon_sym_goto] = ACTIONS(2265), + [anon_sym_AMP] = ACTIONS(552), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_TILDE] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(580), + [anon_sym_DASH] = ACTIONS(580), + [anon_sym_DASH_DASH] = ACTIONS(582), + [anon_sym_PLUS_PLUS] = ACTIONS(582), + [anon_sym_sizeof] = ACTIONS(584), + [sym_number_literal] = ACTIONS(2267), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(2269), + [sym_false] = ACTIONS(2269), + [sym_null] = ACTIONS(2269), + [sym_identifier] = ACTIONS(3056), [sym_comment] = ACTIONS(39), }, [1342] = { [aux_sym_for_statement_repeat1] = STATE(1088), - [anon_sym_COMMA] = ACTIONS(2530), - [anon_sym_RPAREN] = ACTIONS(3627), + [anon_sym_COMMA] = ACTIONS(2519), + [anon_sym_RPAREN] = ACTIONS(3616), [sym_comment] = ACTIONS(39), }, [1343] = { @@ -54687,145 +54706,145 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(649), [sym_concatenated_string] = STATE(649), [sym_string_literal] = STATE(253), - [anon_sym_SEMI] = ACTIONS(1516), - [anon_sym_LBRACE] = ACTIONS(734), - [anon_sym_LPAREN2] = ACTIONS(554), - [anon_sym_STAR] = ACTIONS(556), - [anon_sym_if] = ACTIONS(2733), - [anon_sym_switch] = ACTIONS(2735), - [anon_sym_case] = ACTIONS(2737), - [anon_sym_default] = ACTIONS(2739), - [anon_sym_while] = ACTIONS(2741), - [anon_sym_do] = ACTIONS(1528), - [anon_sym_for] = ACTIONS(2743), - [anon_sym_return] = ACTIONS(1532), - [anon_sym_break] = ACTIONS(1534), - [anon_sym_continue] = ACTIONS(1536), - [anon_sym_goto] = ACTIONS(1538), - [anon_sym_AMP] = ACTIONS(556), - [anon_sym_BANG] = ACTIONS(580), - [anon_sym_TILDE] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_DASH_DASH] = ACTIONS(586), - [anon_sym_PLUS_PLUS] = ACTIONS(586), - [anon_sym_sizeof] = ACTIONS(588), - [sym_number_literal] = ACTIONS(1540), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1542), - [sym_false] = ACTIONS(1542), - [sym_null] = ACTIONS(1542), - [sym_identifier] = ACTIONS(2745), + [anon_sym_SEMI] = ACTIONS(1505), + [anon_sym_LBRACE] = ACTIONS(725), + [anon_sym_LPAREN2] = ACTIONS(550), + [anon_sym_STAR] = ACTIONS(552), + [anon_sym_if] = ACTIONS(2722), + [anon_sym_switch] = ACTIONS(2724), + [anon_sym_case] = ACTIONS(2726), + [anon_sym_default] = ACTIONS(2728), + [anon_sym_while] = ACTIONS(2730), + [anon_sym_do] = ACTIONS(1517), + [anon_sym_for] = ACTIONS(2732), + [anon_sym_return] = ACTIONS(1521), + [anon_sym_break] = ACTIONS(1523), + [anon_sym_continue] = ACTIONS(1525), + [anon_sym_goto] = ACTIONS(1527), + [anon_sym_AMP] = ACTIONS(552), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_TILDE] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(580), + [anon_sym_DASH] = ACTIONS(580), + [anon_sym_DASH_DASH] = ACTIONS(582), + [anon_sym_PLUS_PLUS] = ACTIONS(582), + [anon_sym_sizeof] = ACTIONS(584), + [sym_number_literal] = ACTIONS(1529), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_null] = ACTIONS(1531), + [sym_identifier] = ACTIONS(2734), [sym_comment] = ACTIONS(39), }, [1344] = { [aux_sym_for_statement_repeat1] = STATE(1088), - [anon_sym_COMMA] = ACTIONS(2530), - [anon_sym_RPAREN] = ACTIONS(3629), + [anon_sym_COMMA] = ACTIONS(2519), + [anon_sym_RPAREN] = ACTIONS(3618), [sym_comment] = ACTIONS(39), }, [1345] = { [sym_argument_list] = STATE(465), [aux_sym_for_statement_repeat1] = STATE(1357), - [anon_sym_COMMA] = ACTIONS(2530), - [anon_sym_RPAREN] = ACTIONS(3629), - [anon_sym_LPAREN2] = ACTIONS(1096), - [anon_sym_STAR] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1100), - [anon_sym_EQ] = ACTIONS(1562), - [anon_sym_QMARK] = ACTIONS(1564), - [anon_sym_STAR_EQ] = ACTIONS(1566), - [anon_sym_SLASH_EQ] = ACTIONS(1566), - [anon_sym_PERCENT_EQ] = ACTIONS(1566), - [anon_sym_PLUS_EQ] = ACTIONS(1566), - [anon_sym_DASH_EQ] = ACTIONS(1566), - [anon_sym_LT_LT_EQ] = ACTIONS(1566), - [anon_sym_GT_GT_EQ] = ACTIONS(1566), - [anon_sym_AMP_EQ] = ACTIONS(1566), - [anon_sym_CARET_EQ] = ACTIONS(1566), - [anon_sym_PIPE_EQ] = ACTIONS(1566), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_PIPE_PIPE] = ACTIONS(1570), - [anon_sym_AMP_AMP] = ACTIONS(1572), - [anon_sym_PIPE] = ACTIONS(1574), - [anon_sym_CARET] = ACTIONS(1576), - [anon_sym_EQ_EQ] = ACTIONS(1578), - [anon_sym_BANG_EQ] = ACTIONS(1578), - [anon_sym_LT] = ACTIONS(1580), - [anon_sym_GT] = ACTIONS(1580), - [anon_sym_LT_EQ] = ACTIONS(1582), - [anon_sym_GT_EQ] = ACTIONS(1582), - [anon_sym_LT_LT] = ACTIONS(1584), - [anon_sym_GT_GT] = ACTIONS(1584), - [anon_sym_PLUS] = ACTIONS(1586), - [anon_sym_DASH] = ACTIONS(1586), - [anon_sym_SLASH] = ACTIONS(1560), - [anon_sym_PERCENT] = ACTIONS(1560), - [anon_sym_DASH_DASH] = ACTIONS(1128), - [anon_sym_PLUS_PLUS] = ACTIONS(1128), - [anon_sym_DOT] = ACTIONS(1130), - [anon_sym_DASH_GT] = ACTIONS(1130), + [anon_sym_COMMA] = ACTIONS(2519), + [anon_sym_RPAREN] = ACTIONS(3618), + [anon_sym_LPAREN2] = ACTIONS(1089), + [anon_sym_STAR] = ACTIONS(1549), + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(1551), + [anon_sym_QMARK] = ACTIONS(1553), + [anon_sym_STAR_EQ] = ACTIONS(1555), + [anon_sym_SLASH_EQ] = ACTIONS(1555), + [anon_sym_PERCENT_EQ] = ACTIONS(1555), + [anon_sym_PLUS_EQ] = ACTIONS(1555), + [anon_sym_DASH_EQ] = ACTIONS(1555), + [anon_sym_LT_LT_EQ] = ACTIONS(1555), + [anon_sym_GT_GT_EQ] = ACTIONS(1555), + [anon_sym_AMP_EQ] = ACTIONS(1555), + [anon_sym_CARET_EQ] = ACTIONS(1555), + [anon_sym_PIPE_EQ] = ACTIONS(1555), + [anon_sym_AMP] = ACTIONS(1557), + [anon_sym_PIPE_PIPE] = ACTIONS(1559), + [anon_sym_AMP_AMP] = ACTIONS(1561), + [anon_sym_PIPE] = ACTIONS(1563), + [anon_sym_CARET] = ACTIONS(1565), + [anon_sym_EQ_EQ] = ACTIONS(1567), + [anon_sym_BANG_EQ] = ACTIONS(1567), + [anon_sym_LT] = ACTIONS(1569), + [anon_sym_GT] = ACTIONS(1569), + [anon_sym_LT_EQ] = ACTIONS(1571), + [anon_sym_GT_EQ] = ACTIONS(1571), + [anon_sym_LT_LT] = ACTIONS(1573), + [anon_sym_GT_GT] = ACTIONS(1573), + [anon_sym_PLUS] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(1575), + [anon_sym_SLASH] = ACTIONS(1549), + [anon_sym_PERCENT] = ACTIONS(1549), + [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_PLUS_PLUS] = ACTIONS(1121), + [anon_sym_DOT] = ACTIONS(1123), + [anon_sym_DASH_GT] = ACTIONS(1123), [sym_comment] = ACTIONS(39), }, [1346] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3591), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3591), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3591), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3591), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3591), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3591), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(3591), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(3591), - [sym_preproc_directive] = ACTIONS(3591), - [anon_sym_SEMI] = ACTIONS(3593), - [anon_sym_typedef] = ACTIONS(3591), - [anon_sym_extern] = ACTIONS(3591), - [anon_sym_LBRACE] = ACTIONS(3593), - [anon_sym_LPAREN2] = ACTIONS(3593), - [anon_sym_STAR] = ACTIONS(3593), - [anon_sym_static] = ACTIONS(3591), - [anon_sym_auto] = ACTIONS(3591), - [anon_sym_register] = ACTIONS(3591), - [anon_sym_inline] = ACTIONS(3591), - [anon_sym_const] = ACTIONS(3591), - [anon_sym_restrict] = ACTIONS(3591), - [anon_sym_volatile] = ACTIONS(3591), - [anon_sym__Atomic] = ACTIONS(3591), - [anon_sym_unsigned] = ACTIONS(3591), - [anon_sym_long] = ACTIONS(3591), - [anon_sym_short] = ACTIONS(3591), - [sym_primitive_type] = ACTIONS(3591), - [anon_sym_enum] = ACTIONS(3591), - [anon_sym_struct] = ACTIONS(3591), - [anon_sym_union] = ACTIONS(3591), - [anon_sym_if] = ACTIONS(3591), - [anon_sym_else] = ACTIONS(3591), - [anon_sym_switch] = ACTIONS(3591), - [anon_sym_case] = ACTIONS(3591), - [anon_sym_default] = ACTIONS(3591), - [anon_sym_while] = ACTIONS(3591), - [anon_sym_do] = ACTIONS(3591), - [anon_sym_for] = ACTIONS(3591), - [anon_sym_return] = ACTIONS(3591), - [anon_sym_break] = ACTIONS(3591), - [anon_sym_continue] = ACTIONS(3591), - [anon_sym_goto] = ACTIONS(3591), - [anon_sym_AMP] = ACTIONS(3593), - [anon_sym_BANG] = ACTIONS(3593), - [anon_sym_TILDE] = ACTIONS(3593), - [anon_sym_PLUS] = ACTIONS(3591), - [anon_sym_DASH] = ACTIONS(3591), - [anon_sym_DASH_DASH] = ACTIONS(3593), - [anon_sym_PLUS_PLUS] = ACTIONS(3593), - [anon_sym_sizeof] = ACTIONS(3591), - [sym_number_literal] = ACTIONS(3593), - [anon_sym_SQUOTE] = ACTIONS(3593), - [anon_sym_DQUOTE] = ACTIONS(3593), - [sym_true] = ACTIONS(3591), - [sym_false] = ACTIONS(3591), - [sym_null] = ACTIONS(3591), - [sym_identifier] = ACTIONS(3591), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3580), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3580), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3580), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3580), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3580), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3580), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(3580), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(3580), + [sym_preproc_directive] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3582), + [anon_sym_typedef] = ACTIONS(3580), + [anon_sym_extern] = ACTIONS(3580), + [anon_sym_LBRACE] = ACTIONS(3582), + [anon_sym_LPAREN2] = ACTIONS(3582), + [anon_sym_STAR] = ACTIONS(3582), + [anon_sym_static] = ACTIONS(3580), + [anon_sym_auto] = ACTIONS(3580), + [anon_sym_register] = ACTIONS(3580), + [anon_sym_inline] = ACTIONS(3580), + [anon_sym_const] = ACTIONS(3580), + [anon_sym_restrict] = ACTIONS(3580), + [anon_sym_volatile] = ACTIONS(3580), + [anon_sym__Atomic] = ACTIONS(3580), + [anon_sym_unsigned] = ACTIONS(3580), + [anon_sym_long] = ACTIONS(3580), + [anon_sym_short] = ACTIONS(3580), + [sym_primitive_type] = ACTIONS(3580), + [anon_sym_enum] = ACTIONS(3580), + [anon_sym_struct] = ACTIONS(3580), + [anon_sym_union] = ACTIONS(3580), + [anon_sym_if] = ACTIONS(3580), + [anon_sym_else] = ACTIONS(3580), + [anon_sym_switch] = ACTIONS(3580), + [anon_sym_case] = ACTIONS(3580), + [anon_sym_default] = ACTIONS(3580), + [anon_sym_while] = ACTIONS(3580), + [anon_sym_do] = ACTIONS(3580), + [anon_sym_for] = ACTIONS(3580), + [anon_sym_return] = ACTIONS(3580), + [anon_sym_break] = ACTIONS(3580), + [anon_sym_continue] = ACTIONS(3580), + [anon_sym_goto] = ACTIONS(3580), + [anon_sym_AMP] = ACTIONS(3582), + [anon_sym_BANG] = ACTIONS(3582), + [anon_sym_TILDE] = ACTIONS(3582), + [anon_sym_PLUS] = ACTIONS(3580), + [anon_sym_DASH] = ACTIONS(3580), + [anon_sym_DASH_DASH] = ACTIONS(3582), + [anon_sym_PLUS_PLUS] = ACTIONS(3582), + [anon_sym_sizeof] = ACTIONS(3580), + [sym_number_literal] = ACTIONS(3582), + [anon_sym_SQUOTE] = ACTIONS(3582), + [anon_sym_DQUOTE] = ACTIONS(3582), + [sym_true] = ACTIONS(3580), + [sym_false] = ACTIONS(3580), + [sym_null] = ACTIONS(3580), + [sym_identifier] = ACTIONS(3580), [sym_comment] = ACTIONS(39), }, [1347] = { @@ -54863,36 +54882,36 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(649), [sym_concatenated_string] = STATE(649), [sym_string_literal] = STATE(253), - [anon_sym_SEMI] = ACTIONS(1516), - [anon_sym_LBRACE] = ACTIONS(734), - [anon_sym_LPAREN2] = ACTIONS(554), - [anon_sym_STAR] = ACTIONS(556), - [anon_sym_if] = ACTIONS(1518), - [anon_sym_switch] = ACTIONS(1520), - [anon_sym_case] = ACTIONS(1522), - [anon_sym_default] = ACTIONS(1524), - [anon_sym_while] = ACTIONS(1526), - [anon_sym_do] = ACTIONS(1528), - [anon_sym_for] = ACTIONS(1530), - [anon_sym_return] = ACTIONS(1532), - [anon_sym_break] = ACTIONS(1534), - [anon_sym_continue] = ACTIONS(1536), - [anon_sym_goto] = ACTIONS(1538), - [anon_sym_AMP] = ACTIONS(556), - [anon_sym_BANG] = ACTIONS(580), - [anon_sym_TILDE] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_DASH_DASH] = ACTIONS(586), - [anon_sym_PLUS_PLUS] = ACTIONS(586), - [anon_sym_sizeof] = ACTIONS(588), - [sym_number_literal] = ACTIONS(1540), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1542), - [sym_false] = ACTIONS(1542), - [sym_null] = ACTIONS(1542), - [sym_identifier] = ACTIONS(2747), + [anon_sym_SEMI] = ACTIONS(1505), + [anon_sym_LBRACE] = ACTIONS(725), + [anon_sym_LPAREN2] = ACTIONS(550), + [anon_sym_STAR] = ACTIONS(552), + [anon_sym_if] = ACTIONS(1507), + [anon_sym_switch] = ACTIONS(1509), + [anon_sym_case] = ACTIONS(1511), + [anon_sym_default] = ACTIONS(1513), + [anon_sym_while] = ACTIONS(1515), + [anon_sym_do] = ACTIONS(1517), + [anon_sym_for] = ACTIONS(1519), + [anon_sym_return] = ACTIONS(1521), + [anon_sym_break] = ACTIONS(1523), + [anon_sym_continue] = ACTIONS(1525), + [anon_sym_goto] = ACTIONS(1527), + [anon_sym_AMP] = ACTIONS(552), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_TILDE] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(580), + [anon_sym_DASH] = ACTIONS(580), + [anon_sym_DASH_DASH] = ACTIONS(582), + [anon_sym_PLUS_PLUS] = ACTIONS(582), + [anon_sym_sizeof] = ACTIONS(584), + [sym_number_literal] = ACTIONS(1529), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_null] = ACTIONS(1531), + [sym_identifier] = ACTIONS(2736), [sym_comment] = ACTIONS(39), }, [1348] = { @@ -54930,36 +54949,36 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(251), [sym_concatenated_string] = STATE(251), [sym_string_literal] = STATE(253), - [anon_sym_SEMI] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(241), - [anon_sym_LPAREN2] = ACTIONS(554), - [anon_sym_STAR] = ACTIONS(556), - [anon_sym_if] = ACTIONS(1598), - [anon_sym_switch] = ACTIONS(1600), - [anon_sym_case] = ACTIONS(1602), - [anon_sym_default] = ACTIONS(1604), - [anon_sym_while] = ACTIONS(1606), - [anon_sym_do] = ACTIONS(568), - [anon_sym_for] = ACTIONS(1608), - [anon_sym_return] = ACTIONS(572), - [anon_sym_break] = ACTIONS(574), - [anon_sym_continue] = ACTIONS(576), - [anon_sym_goto] = ACTIONS(578), - [anon_sym_AMP] = ACTIONS(556), - [anon_sym_BANG] = ACTIONS(580), - [anon_sym_TILDE] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_DASH_DASH] = ACTIONS(586), - [anon_sym_PLUS_PLUS] = ACTIONS(586), - [anon_sym_sizeof] = ACTIONS(588), - [sym_number_literal] = ACTIONS(590), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(594), - [sym_false] = ACTIONS(594), - [sym_null] = ACTIONS(594), - [sym_identifier] = ACTIONS(1610), + [anon_sym_SEMI] = ACTIONS(546), + [anon_sym_LBRACE] = ACTIONS(239), + [anon_sym_LPAREN2] = ACTIONS(550), + [anon_sym_STAR] = ACTIONS(552), + [anon_sym_if] = ACTIONS(1587), + [anon_sym_switch] = ACTIONS(1589), + [anon_sym_case] = ACTIONS(1591), + [anon_sym_default] = ACTIONS(1593), + [anon_sym_while] = ACTIONS(1595), + [anon_sym_do] = ACTIONS(564), + [anon_sym_for] = ACTIONS(1597), + [anon_sym_return] = ACTIONS(568), + [anon_sym_break] = ACTIONS(570), + [anon_sym_continue] = ACTIONS(572), + [anon_sym_goto] = ACTIONS(574), + [anon_sym_AMP] = ACTIONS(552), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_TILDE] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(580), + [anon_sym_DASH] = ACTIONS(580), + [anon_sym_DASH_DASH] = ACTIONS(582), + [anon_sym_PLUS_PLUS] = ACTIONS(582), + [anon_sym_sizeof] = ACTIONS(584), + [sym_number_literal] = ACTIONS(586), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(590), + [sym_false] = ACTIONS(590), + [sym_null] = ACTIONS(590), + [sym_identifier] = ACTIONS(1599), [sym_comment] = ACTIONS(39), }, [1349] = { @@ -54997,42 +55016,42 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(251), [sym_concatenated_string] = STATE(251), [sym_string_literal] = STATE(253), - [anon_sym_SEMI] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(241), - [anon_sym_LPAREN2] = ACTIONS(554), - [anon_sym_STAR] = ACTIONS(556), - [anon_sym_if] = ACTIONS(2472), - [anon_sym_switch] = ACTIONS(2474), - [anon_sym_case] = ACTIONS(2476), - [anon_sym_default] = ACTIONS(2478), - [anon_sym_while] = ACTIONS(2480), - [anon_sym_do] = ACTIONS(1026), - [anon_sym_for] = ACTIONS(2482), - [anon_sym_return] = ACTIONS(572), - [anon_sym_break] = ACTIONS(574), - [anon_sym_continue] = ACTIONS(576), - [anon_sym_goto] = ACTIONS(578), - [anon_sym_AMP] = ACTIONS(556), - [anon_sym_BANG] = ACTIONS(580), - [anon_sym_TILDE] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_DASH_DASH] = ACTIONS(586), - [anon_sym_PLUS_PLUS] = ACTIONS(586), - [anon_sym_sizeof] = ACTIONS(588), - [sym_number_literal] = ACTIONS(590), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(594), - [sym_false] = ACTIONS(594), - [sym_null] = ACTIONS(594), - [sym_identifier] = ACTIONS(2484), + [anon_sym_SEMI] = ACTIONS(546), + [anon_sym_LBRACE] = ACTIONS(239), + [anon_sym_LPAREN2] = ACTIONS(550), + [anon_sym_STAR] = ACTIONS(552), + [anon_sym_if] = ACTIONS(2461), + [anon_sym_switch] = ACTIONS(2463), + [anon_sym_case] = ACTIONS(2465), + [anon_sym_default] = ACTIONS(2467), + [anon_sym_while] = ACTIONS(2469), + [anon_sym_do] = ACTIONS(1017), + [anon_sym_for] = ACTIONS(2471), + [anon_sym_return] = ACTIONS(568), + [anon_sym_break] = ACTIONS(570), + [anon_sym_continue] = ACTIONS(572), + [anon_sym_goto] = ACTIONS(574), + [anon_sym_AMP] = ACTIONS(552), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_TILDE] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(580), + [anon_sym_DASH] = ACTIONS(580), + [anon_sym_DASH_DASH] = ACTIONS(582), + [anon_sym_PLUS_PLUS] = ACTIONS(582), + [anon_sym_sizeof] = ACTIONS(584), + [sym_number_literal] = ACTIONS(586), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(590), + [sym_false] = ACTIONS(590), + [sym_null] = ACTIONS(590), + [sym_identifier] = ACTIONS(2473), [sym_comment] = ACTIONS(39), }, [1350] = { [aux_sym_for_statement_repeat1] = STATE(1088), - [anon_sym_COMMA] = ACTIONS(2530), - [anon_sym_RPAREN] = ACTIONS(3631), + [anon_sym_COMMA] = ACTIONS(2519), + [anon_sym_RPAREN] = ACTIONS(3620), [sym_comment] = ACTIONS(39), }, [1351] = { @@ -55070,143 +55089,143 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(872), [sym_concatenated_string] = STATE(872), [sym_string_literal] = STATE(253), - [anon_sym_SEMI] = ACTIONS(2254), - [anon_sym_LBRACE] = ACTIONS(1273), - [anon_sym_LPAREN2] = ACTIONS(554), - [anon_sym_STAR] = ACTIONS(556), - [anon_sym_if] = ACTIONS(3053), - [anon_sym_switch] = ACTIONS(3055), - [anon_sym_case] = ACTIONS(3057), - [anon_sym_default] = ACTIONS(3059), - [anon_sym_while] = ACTIONS(3061), - [anon_sym_do] = ACTIONS(2266), - [anon_sym_for] = ACTIONS(3063), - [anon_sym_return] = ACTIONS(2270), - [anon_sym_break] = ACTIONS(2272), - [anon_sym_continue] = ACTIONS(2274), - [anon_sym_goto] = ACTIONS(2276), - [anon_sym_AMP] = ACTIONS(556), - [anon_sym_BANG] = ACTIONS(580), - [anon_sym_TILDE] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_DASH_DASH] = ACTIONS(586), - [anon_sym_PLUS_PLUS] = ACTIONS(586), - [anon_sym_sizeof] = ACTIONS(588), - [sym_number_literal] = ACTIONS(2278), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2280), - [sym_false] = ACTIONS(2280), - [sym_null] = ACTIONS(2280), - [sym_identifier] = ACTIONS(3065), + [anon_sym_SEMI] = ACTIONS(2243), + [anon_sym_LBRACE] = ACTIONS(1264), + [anon_sym_LPAREN2] = ACTIONS(550), + [anon_sym_STAR] = ACTIONS(552), + [anon_sym_if] = ACTIONS(3042), + [anon_sym_switch] = ACTIONS(3044), + [anon_sym_case] = ACTIONS(3046), + [anon_sym_default] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3050), + [anon_sym_do] = ACTIONS(2255), + [anon_sym_for] = ACTIONS(3052), + [anon_sym_return] = ACTIONS(2259), + [anon_sym_break] = ACTIONS(2261), + [anon_sym_continue] = ACTIONS(2263), + [anon_sym_goto] = ACTIONS(2265), + [anon_sym_AMP] = ACTIONS(552), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_TILDE] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(580), + [anon_sym_DASH] = ACTIONS(580), + [anon_sym_DASH_DASH] = ACTIONS(582), + [anon_sym_PLUS_PLUS] = ACTIONS(582), + [anon_sym_sizeof] = ACTIONS(584), + [sym_number_literal] = ACTIONS(2267), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(2269), + [sym_false] = ACTIONS(2269), + [sym_null] = ACTIONS(2269), + [sym_identifier] = ACTIONS(3054), [sym_comment] = ACTIONS(39), }, [1352] = { [aux_sym_for_statement_repeat1] = STATE(1088), - [anon_sym_COMMA] = ACTIONS(2530), - [anon_sym_RPAREN] = ACTIONS(3633), + [anon_sym_COMMA] = ACTIONS(2519), + [anon_sym_RPAREN] = ACTIONS(3622), [sym_comment] = ACTIONS(39), }, [1353] = { [sym_argument_list] = STATE(465), [aux_sym_for_statement_repeat1] = STATE(1361), - [anon_sym_COMMA] = ACTIONS(2530), - [anon_sym_RPAREN] = ACTIONS(3633), - [anon_sym_LPAREN2] = ACTIONS(1096), - [anon_sym_STAR] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1100), - [anon_sym_EQ] = ACTIONS(1562), - [anon_sym_QMARK] = ACTIONS(1564), - [anon_sym_STAR_EQ] = ACTIONS(1566), - [anon_sym_SLASH_EQ] = ACTIONS(1566), - [anon_sym_PERCENT_EQ] = ACTIONS(1566), - [anon_sym_PLUS_EQ] = ACTIONS(1566), - [anon_sym_DASH_EQ] = ACTIONS(1566), - [anon_sym_LT_LT_EQ] = ACTIONS(1566), - [anon_sym_GT_GT_EQ] = ACTIONS(1566), - [anon_sym_AMP_EQ] = ACTIONS(1566), - [anon_sym_CARET_EQ] = ACTIONS(1566), - [anon_sym_PIPE_EQ] = ACTIONS(1566), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_PIPE_PIPE] = ACTIONS(1570), - [anon_sym_AMP_AMP] = ACTIONS(1572), - [anon_sym_PIPE] = ACTIONS(1574), - [anon_sym_CARET] = ACTIONS(1576), - [anon_sym_EQ_EQ] = ACTIONS(1578), - [anon_sym_BANG_EQ] = ACTIONS(1578), - [anon_sym_LT] = ACTIONS(1580), - [anon_sym_GT] = ACTIONS(1580), - [anon_sym_LT_EQ] = ACTIONS(1582), - [anon_sym_GT_EQ] = ACTIONS(1582), - [anon_sym_LT_LT] = ACTIONS(1584), - [anon_sym_GT_GT] = ACTIONS(1584), - [anon_sym_PLUS] = ACTIONS(1586), - [anon_sym_DASH] = ACTIONS(1586), - [anon_sym_SLASH] = ACTIONS(1560), - [anon_sym_PERCENT] = ACTIONS(1560), - [anon_sym_DASH_DASH] = ACTIONS(1128), - [anon_sym_PLUS_PLUS] = ACTIONS(1128), - [anon_sym_DOT] = ACTIONS(1130), - [anon_sym_DASH_GT] = ACTIONS(1130), + [anon_sym_COMMA] = ACTIONS(2519), + [anon_sym_RPAREN] = ACTIONS(3622), + [anon_sym_LPAREN2] = ACTIONS(1089), + [anon_sym_STAR] = ACTIONS(1549), + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(1551), + [anon_sym_QMARK] = ACTIONS(1553), + [anon_sym_STAR_EQ] = ACTIONS(1555), + [anon_sym_SLASH_EQ] = ACTIONS(1555), + [anon_sym_PERCENT_EQ] = ACTIONS(1555), + [anon_sym_PLUS_EQ] = ACTIONS(1555), + [anon_sym_DASH_EQ] = ACTIONS(1555), + [anon_sym_LT_LT_EQ] = ACTIONS(1555), + [anon_sym_GT_GT_EQ] = ACTIONS(1555), + [anon_sym_AMP_EQ] = ACTIONS(1555), + [anon_sym_CARET_EQ] = ACTIONS(1555), + [anon_sym_PIPE_EQ] = ACTIONS(1555), + [anon_sym_AMP] = ACTIONS(1557), + [anon_sym_PIPE_PIPE] = ACTIONS(1559), + [anon_sym_AMP_AMP] = ACTIONS(1561), + [anon_sym_PIPE] = ACTIONS(1563), + [anon_sym_CARET] = ACTIONS(1565), + [anon_sym_EQ_EQ] = ACTIONS(1567), + [anon_sym_BANG_EQ] = ACTIONS(1567), + [anon_sym_LT] = ACTIONS(1569), + [anon_sym_GT] = ACTIONS(1569), + [anon_sym_LT_EQ] = ACTIONS(1571), + [anon_sym_GT_EQ] = ACTIONS(1571), + [anon_sym_LT_LT] = ACTIONS(1573), + [anon_sym_GT_GT] = ACTIONS(1573), + [anon_sym_PLUS] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(1575), + [anon_sym_SLASH] = ACTIONS(1549), + [anon_sym_PERCENT] = ACTIONS(1549), + [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_PLUS_PLUS] = ACTIONS(1121), + [anon_sym_DOT] = ACTIONS(1123), + [anon_sym_DASH_GT] = ACTIONS(1123), [sym_comment] = ACTIONS(39), }, [1354] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3591), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3591), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3591), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3591), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3591), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3591), - [sym_preproc_directive] = ACTIONS(3591), - [anon_sym_SEMI] = ACTIONS(3593), - [anon_sym_typedef] = ACTIONS(3591), - [anon_sym_extern] = ACTIONS(3591), - [anon_sym_LBRACE] = ACTIONS(3593), - [anon_sym_LPAREN2] = ACTIONS(3593), - [anon_sym_STAR] = ACTIONS(3593), - [anon_sym_static] = ACTIONS(3591), - [anon_sym_auto] = ACTIONS(3591), - [anon_sym_register] = ACTIONS(3591), - [anon_sym_inline] = ACTIONS(3591), - [anon_sym_const] = ACTIONS(3591), - [anon_sym_restrict] = ACTIONS(3591), - [anon_sym_volatile] = ACTIONS(3591), - [anon_sym__Atomic] = ACTIONS(3591), - [anon_sym_unsigned] = ACTIONS(3591), - [anon_sym_long] = ACTIONS(3591), - [anon_sym_short] = ACTIONS(3591), - [sym_primitive_type] = ACTIONS(3591), - [anon_sym_enum] = ACTIONS(3591), - [anon_sym_struct] = ACTIONS(3591), - [anon_sym_union] = ACTIONS(3591), - [anon_sym_if] = ACTIONS(3591), - [anon_sym_else] = ACTIONS(3591), - [anon_sym_switch] = ACTIONS(3591), - [anon_sym_case] = ACTIONS(3591), - [anon_sym_default] = ACTIONS(3591), - [anon_sym_while] = ACTIONS(3591), - [anon_sym_do] = ACTIONS(3591), - [anon_sym_for] = ACTIONS(3591), - [anon_sym_return] = ACTIONS(3591), - [anon_sym_break] = ACTIONS(3591), - [anon_sym_continue] = ACTIONS(3591), - [anon_sym_goto] = ACTIONS(3591), - [anon_sym_AMP] = ACTIONS(3593), - [anon_sym_BANG] = ACTIONS(3593), - [anon_sym_TILDE] = ACTIONS(3593), - [anon_sym_PLUS] = ACTIONS(3591), - [anon_sym_DASH] = ACTIONS(3591), - [anon_sym_DASH_DASH] = ACTIONS(3593), - [anon_sym_PLUS_PLUS] = ACTIONS(3593), - [anon_sym_sizeof] = ACTIONS(3591), - [sym_number_literal] = ACTIONS(3593), - [anon_sym_SQUOTE] = ACTIONS(3593), - [anon_sym_DQUOTE] = ACTIONS(3593), - [sym_true] = ACTIONS(3591), - [sym_false] = ACTIONS(3591), - [sym_null] = ACTIONS(3591), - [sym_identifier] = ACTIONS(3591), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3580), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3580), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3580), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3580), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3580), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3580), + [sym_preproc_directive] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3582), + [anon_sym_typedef] = ACTIONS(3580), + [anon_sym_extern] = ACTIONS(3580), + [anon_sym_LBRACE] = ACTIONS(3582), + [anon_sym_LPAREN2] = ACTIONS(3582), + [anon_sym_STAR] = ACTIONS(3582), + [anon_sym_static] = ACTIONS(3580), + [anon_sym_auto] = ACTIONS(3580), + [anon_sym_register] = ACTIONS(3580), + [anon_sym_inline] = ACTIONS(3580), + [anon_sym_const] = ACTIONS(3580), + [anon_sym_restrict] = ACTIONS(3580), + [anon_sym_volatile] = ACTIONS(3580), + [anon_sym__Atomic] = ACTIONS(3580), + [anon_sym_unsigned] = ACTIONS(3580), + [anon_sym_long] = ACTIONS(3580), + [anon_sym_short] = ACTIONS(3580), + [sym_primitive_type] = ACTIONS(3580), + [anon_sym_enum] = ACTIONS(3580), + [anon_sym_struct] = ACTIONS(3580), + [anon_sym_union] = ACTIONS(3580), + [anon_sym_if] = ACTIONS(3580), + [anon_sym_else] = ACTIONS(3580), + [anon_sym_switch] = ACTIONS(3580), + [anon_sym_case] = ACTIONS(3580), + [anon_sym_default] = ACTIONS(3580), + [anon_sym_while] = ACTIONS(3580), + [anon_sym_do] = ACTIONS(3580), + [anon_sym_for] = ACTIONS(3580), + [anon_sym_return] = ACTIONS(3580), + [anon_sym_break] = ACTIONS(3580), + [anon_sym_continue] = ACTIONS(3580), + [anon_sym_goto] = ACTIONS(3580), + [anon_sym_AMP] = ACTIONS(3582), + [anon_sym_BANG] = ACTIONS(3582), + [anon_sym_TILDE] = ACTIONS(3582), + [anon_sym_PLUS] = ACTIONS(3580), + [anon_sym_DASH] = ACTIONS(3580), + [anon_sym_DASH_DASH] = ACTIONS(3582), + [anon_sym_PLUS_PLUS] = ACTIONS(3582), + [anon_sym_sizeof] = ACTIONS(3580), + [sym_number_literal] = ACTIONS(3582), + [anon_sym_SQUOTE] = ACTIONS(3582), + [anon_sym_DQUOTE] = ACTIONS(3582), + [sym_true] = ACTIONS(3580), + [sym_false] = ACTIONS(3580), + [sym_null] = ACTIONS(3580), + [sym_identifier] = ACTIONS(3580), [sym_comment] = ACTIONS(39), }, [1355] = { @@ -55244,36 +55263,36 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(872), [sym_concatenated_string] = STATE(872), [sym_string_literal] = STATE(253), - [anon_sym_SEMI] = ACTIONS(2254), - [anon_sym_LBRACE] = ACTIONS(1273), - [anon_sym_LPAREN2] = ACTIONS(554), - [anon_sym_STAR] = ACTIONS(556), - [anon_sym_if] = ACTIONS(2256), - [anon_sym_switch] = ACTIONS(2258), - [anon_sym_case] = ACTIONS(2260), - [anon_sym_default] = ACTIONS(2262), - [anon_sym_while] = ACTIONS(2264), - [anon_sym_do] = ACTIONS(2266), - [anon_sym_for] = ACTIONS(2268), - [anon_sym_return] = ACTIONS(2270), - [anon_sym_break] = ACTIONS(2272), - [anon_sym_continue] = ACTIONS(2274), - [anon_sym_goto] = ACTIONS(2276), - [anon_sym_AMP] = ACTIONS(556), - [anon_sym_BANG] = ACTIONS(580), - [anon_sym_TILDE] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_DASH_DASH] = ACTIONS(586), - [anon_sym_PLUS_PLUS] = ACTIONS(586), - [anon_sym_sizeof] = ACTIONS(588), - [sym_number_literal] = ACTIONS(2278), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2280), - [sym_false] = ACTIONS(2280), - [sym_null] = ACTIONS(2280), - [sym_identifier] = ACTIONS(3067), + [anon_sym_SEMI] = ACTIONS(2243), + [anon_sym_LBRACE] = ACTIONS(1264), + [anon_sym_LPAREN2] = ACTIONS(550), + [anon_sym_STAR] = ACTIONS(552), + [anon_sym_if] = ACTIONS(2245), + [anon_sym_switch] = ACTIONS(2247), + [anon_sym_case] = ACTIONS(2249), + [anon_sym_default] = ACTIONS(2251), + [anon_sym_while] = ACTIONS(2253), + [anon_sym_do] = ACTIONS(2255), + [anon_sym_for] = ACTIONS(2257), + [anon_sym_return] = ACTIONS(2259), + [anon_sym_break] = ACTIONS(2261), + [anon_sym_continue] = ACTIONS(2263), + [anon_sym_goto] = ACTIONS(2265), + [anon_sym_AMP] = ACTIONS(552), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_TILDE] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(580), + [anon_sym_DASH] = ACTIONS(580), + [anon_sym_DASH_DASH] = ACTIONS(582), + [anon_sym_PLUS_PLUS] = ACTIONS(582), + [anon_sym_sizeof] = ACTIONS(584), + [sym_number_literal] = ACTIONS(2267), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(2269), + [sym_false] = ACTIONS(2269), + [sym_null] = ACTIONS(2269), + [sym_identifier] = ACTIONS(3056), [sym_comment] = ACTIONS(39), }, [1356] = { @@ -55311,102 +55330,102 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(649), [sym_concatenated_string] = STATE(649), [sym_string_literal] = STATE(253), - [anon_sym_SEMI] = ACTIONS(1516), - [anon_sym_LBRACE] = ACTIONS(734), - [anon_sym_LPAREN2] = ACTIONS(554), - [anon_sym_STAR] = ACTIONS(556), - [anon_sym_if] = ACTIONS(2733), - [anon_sym_switch] = ACTIONS(2735), - [anon_sym_case] = ACTIONS(2737), - [anon_sym_default] = ACTIONS(2739), - [anon_sym_while] = ACTIONS(2741), - [anon_sym_do] = ACTIONS(1528), - [anon_sym_for] = ACTIONS(2743), - [anon_sym_return] = ACTIONS(1532), - [anon_sym_break] = ACTIONS(1534), - [anon_sym_continue] = ACTIONS(1536), - [anon_sym_goto] = ACTIONS(1538), - [anon_sym_AMP] = ACTIONS(556), - [anon_sym_BANG] = ACTIONS(580), - [anon_sym_TILDE] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_DASH_DASH] = ACTIONS(586), - [anon_sym_PLUS_PLUS] = ACTIONS(586), - [anon_sym_sizeof] = ACTIONS(588), - [sym_number_literal] = ACTIONS(1540), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1542), - [sym_false] = ACTIONS(1542), - [sym_null] = ACTIONS(1542), - [sym_identifier] = ACTIONS(2745), + [anon_sym_SEMI] = ACTIONS(1505), + [anon_sym_LBRACE] = ACTIONS(725), + [anon_sym_LPAREN2] = ACTIONS(550), + [anon_sym_STAR] = ACTIONS(552), + [anon_sym_if] = ACTIONS(2722), + [anon_sym_switch] = ACTIONS(2724), + [anon_sym_case] = ACTIONS(2726), + [anon_sym_default] = ACTIONS(2728), + [anon_sym_while] = ACTIONS(2730), + [anon_sym_do] = ACTIONS(1517), + [anon_sym_for] = ACTIONS(2732), + [anon_sym_return] = ACTIONS(1521), + [anon_sym_break] = ACTIONS(1523), + [anon_sym_continue] = ACTIONS(1525), + [anon_sym_goto] = ACTIONS(1527), + [anon_sym_AMP] = ACTIONS(552), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_TILDE] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(580), + [anon_sym_DASH] = ACTIONS(580), + [anon_sym_DASH_DASH] = ACTIONS(582), + [anon_sym_PLUS_PLUS] = ACTIONS(582), + [anon_sym_sizeof] = ACTIONS(584), + [sym_number_literal] = ACTIONS(1529), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_null] = ACTIONS(1531), + [sym_identifier] = ACTIONS(2734), [sym_comment] = ACTIONS(39), }, [1357] = { [aux_sym_for_statement_repeat1] = STATE(1088), - [anon_sym_COMMA] = ACTIONS(2530), - [anon_sym_RPAREN] = ACTIONS(3635), + [anon_sym_COMMA] = ACTIONS(2519), + [anon_sym_RPAREN] = ACTIONS(3624), [sym_comment] = ACTIONS(39), }, [1358] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3617), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3617), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3617), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3617), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3617), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3617), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(3617), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(3617), - [sym_preproc_directive] = ACTIONS(3617), - [anon_sym_SEMI] = ACTIONS(3619), - [anon_sym_typedef] = ACTIONS(3617), - [anon_sym_extern] = ACTIONS(3617), - [anon_sym_LBRACE] = ACTIONS(3619), - [anon_sym_LPAREN2] = ACTIONS(3619), - [anon_sym_STAR] = ACTIONS(3619), - [anon_sym_static] = ACTIONS(3617), - [anon_sym_auto] = ACTIONS(3617), - [anon_sym_register] = ACTIONS(3617), - [anon_sym_inline] = ACTIONS(3617), - [anon_sym_const] = ACTIONS(3617), - [anon_sym_restrict] = ACTIONS(3617), - [anon_sym_volatile] = ACTIONS(3617), - [anon_sym__Atomic] = ACTIONS(3617), - [anon_sym_unsigned] = ACTIONS(3617), - [anon_sym_long] = ACTIONS(3617), - [anon_sym_short] = ACTIONS(3617), - [sym_primitive_type] = ACTIONS(3617), - [anon_sym_enum] = ACTIONS(3617), - [anon_sym_struct] = ACTIONS(3617), - [anon_sym_union] = ACTIONS(3617), - [anon_sym_if] = ACTIONS(3617), - [anon_sym_else] = ACTIONS(3617), - [anon_sym_switch] = ACTIONS(3617), - [anon_sym_case] = ACTIONS(3617), - [anon_sym_default] = ACTIONS(3617), - [anon_sym_while] = ACTIONS(3617), - [anon_sym_do] = ACTIONS(3617), - [anon_sym_for] = ACTIONS(3617), - [anon_sym_return] = ACTIONS(3617), - [anon_sym_break] = ACTIONS(3617), - [anon_sym_continue] = ACTIONS(3617), - [anon_sym_goto] = ACTIONS(3617), - [anon_sym_AMP] = ACTIONS(3619), - [anon_sym_BANG] = ACTIONS(3619), - [anon_sym_TILDE] = ACTIONS(3619), - [anon_sym_PLUS] = ACTIONS(3617), - [anon_sym_DASH] = ACTIONS(3617), - [anon_sym_DASH_DASH] = ACTIONS(3619), - [anon_sym_PLUS_PLUS] = ACTIONS(3619), - [anon_sym_sizeof] = ACTIONS(3617), - [sym_number_literal] = ACTIONS(3619), - [anon_sym_SQUOTE] = ACTIONS(3619), - [anon_sym_DQUOTE] = ACTIONS(3619), - [sym_true] = ACTIONS(3617), - [sym_false] = ACTIONS(3617), - [sym_null] = ACTIONS(3617), - [sym_identifier] = ACTIONS(3617), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3606), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3606), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3606), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3606), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3606), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3606), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(3606), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(3606), + [sym_preproc_directive] = ACTIONS(3606), + [anon_sym_SEMI] = ACTIONS(3608), + [anon_sym_typedef] = ACTIONS(3606), + [anon_sym_extern] = ACTIONS(3606), + [anon_sym_LBRACE] = ACTIONS(3608), + [anon_sym_LPAREN2] = ACTIONS(3608), + [anon_sym_STAR] = ACTIONS(3608), + [anon_sym_static] = ACTIONS(3606), + [anon_sym_auto] = ACTIONS(3606), + [anon_sym_register] = ACTIONS(3606), + [anon_sym_inline] = ACTIONS(3606), + [anon_sym_const] = ACTIONS(3606), + [anon_sym_restrict] = ACTIONS(3606), + [anon_sym_volatile] = ACTIONS(3606), + [anon_sym__Atomic] = ACTIONS(3606), + [anon_sym_unsigned] = ACTIONS(3606), + [anon_sym_long] = ACTIONS(3606), + [anon_sym_short] = ACTIONS(3606), + [sym_primitive_type] = ACTIONS(3606), + [anon_sym_enum] = ACTIONS(3606), + [anon_sym_struct] = ACTIONS(3606), + [anon_sym_union] = ACTIONS(3606), + [anon_sym_if] = ACTIONS(3606), + [anon_sym_else] = ACTIONS(3606), + [anon_sym_switch] = ACTIONS(3606), + [anon_sym_case] = ACTIONS(3606), + [anon_sym_default] = ACTIONS(3606), + [anon_sym_while] = ACTIONS(3606), + [anon_sym_do] = ACTIONS(3606), + [anon_sym_for] = ACTIONS(3606), + [anon_sym_return] = ACTIONS(3606), + [anon_sym_break] = ACTIONS(3606), + [anon_sym_continue] = ACTIONS(3606), + [anon_sym_goto] = ACTIONS(3606), + [anon_sym_AMP] = ACTIONS(3608), + [anon_sym_BANG] = ACTIONS(3608), + [anon_sym_TILDE] = ACTIONS(3608), + [anon_sym_PLUS] = ACTIONS(3606), + [anon_sym_DASH] = ACTIONS(3606), + [anon_sym_DASH_DASH] = ACTIONS(3608), + [anon_sym_PLUS_PLUS] = ACTIONS(3608), + [anon_sym_sizeof] = ACTIONS(3606), + [sym_number_literal] = ACTIONS(3608), + [anon_sym_SQUOTE] = ACTIONS(3608), + [anon_sym_DQUOTE] = ACTIONS(3608), + [sym_true] = ACTIONS(3606), + [sym_false] = ACTIONS(3606), + [sym_null] = ACTIONS(3606), + [sym_identifier] = ACTIONS(3606), [sym_comment] = ACTIONS(39), }, [1359] = { @@ -55444,36 +55463,36 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(251), [sym_concatenated_string] = STATE(251), [sym_string_literal] = STATE(253), - [anon_sym_SEMI] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(241), - [anon_sym_LPAREN2] = ACTIONS(554), - [anon_sym_STAR] = ACTIONS(556), - [anon_sym_if] = ACTIONS(2472), - [anon_sym_switch] = ACTIONS(2474), - [anon_sym_case] = ACTIONS(2476), - [anon_sym_default] = ACTIONS(2478), - [anon_sym_while] = ACTIONS(2480), - [anon_sym_do] = ACTIONS(1026), - [anon_sym_for] = ACTIONS(2482), - [anon_sym_return] = ACTIONS(572), - [anon_sym_break] = ACTIONS(574), - [anon_sym_continue] = ACTIONS(576), - [anon_sym_goto] = ACTIONS(578), - [anon_sym_AMP] = ACTIONS(556), - [anon_sym_BANG] = ACTIONS(580), - [anon_sym_TILDE] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_DASH_DASH] = ACTIONS(586), - [anon_sym_PLUS_PLUS] = ACTIONS(586), - [anon_sym_sizeof] = ACTIONS(588), - [sym_number_literal] = ACTIONS(590), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(594), - [sym_false] = ACTIONS(594), - [sym_null] = ACTIONS(594), - [sym_identifier] = ACTIONS(2484), + [anon_sym_SEMI] = ACTIONS(546), + [anon_sym_LBRACE] = ACTIONS(239), + [anon_sym_LPAREN2] = ACTIONS(550), + [anon_sym_STAR] = ACTIONS(552), + [anon_sym_if] = ACTIONS(2461), + [anon_sym_switch] = ACTIONS(2463), + [anon_sym_case] = ACTIONS(2465), + [anon_sym_default] = ACTIONS(2467), + [anon_sym_while] = ACTIONS(2469), + [anon_sym_do] = ACTIONS(1017), + [anon_sym_for] = ACTIONS(2471), + [anon_sym_return] = ACTIONS(568), + [anon_sym_break] = ACTIONS(570), + [anon_sym_continue] = ACTIONS(572), + [anon_sym_goto] = ACTIONS(574), + [anon_sym_AMP] = ACTIONS(552), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_TILDE] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(580), + [anon_sym_DASH] = ACTIONS(580), + [anon_sym_DASH_DASH] = ACTIONS(582), + [anon_sym_PLUS_PLUS] = ACTIONS(582), + [anon_sym_sizeof] = ACTIONS(584), + [sym_number_literal] = ACTIONS(586), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(590), + [sym_false] = ACTIONS(590), + [sym_null] = ACTIONS(590), + [sym_identifier] = ACTIONS(2473), [sym_comment] = ACTIONS(39), }, [1360] = { @@ -55511,100 +55530,100 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(872), [sym_concatenated_string] = STATE(872), [sym_string_literal] = STATE(253), - [anon_sym_SEMI] = ACTIONS(2254), - [anon_sym_LBRACE] = ACTIONS(1273), - [anon_sym_LPAREN2] = ACTIONS(554), - [anon_sym_STAR] = ACTIONS(556), - [anon_sym_if] = ACTIONS(3053), - [anon_sym_switch] = ACTIONS(3055), - [anon_sym_case] = ACTIONS(3057), - [anon_sym_default] = ACTIONS(3059), - [anon_sym_while] = ACTIONS(3061), - [anon_sym_do] = ACTIONS(2266), - [anon_sym_for] = ACTIONS(3063), - [anon_sym_return] = ACTIONS(2270), - [anon_sym_break] = ACTIONS(2272), - [anon_sym_continue] = ACTIONS(2274), - [anon_sym_goto] = ACTIONS(2276), - [anon_sym_AMP] = ACTIONS(556), - [anon_sym_BANG] = ACTIONS(580), - [anon_sym_TILDE] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_DASH_DASH] = ACTIONS(586), - [anon_sym_PLUS_PLUS] = ACTIONS(586), - [anon_sym_sizeof] = ACTIONS(588), - [sym_number_literal] = ACTIONS(2278), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2280), - [sym_false] = ACTIONS(2280), - [sym_null] = ACTIONS(2280), - [sym_identifier] = ACTIONS(3065), + [anon_sym_SEMI] = ACTIONS(2243), + [anon_sym_LBRACE] = ACTIONS(1264), + [anon_sym_LPAREN2] = ACTIONS(550), + [anon_sym_STAR] = ACTIONS(552), + [anon_sym_if] = ACTIONS(3042), + [anon_sym_switch] = ACTIONS(3044), + [anon_sym_case] = ACTIONS(3046), + [anon_sym_default] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3050), + [anon_sym_do] = ACTIONS(2255), + [anon_sym_for] = ACTIONS(3052), + [anon_sym_return] = ACTIONS(2259), + [anon_sym_break] = ACTIONS(2261), + [anon_sym_continue] = ACTIONS(2263), + [anon_sym_goto] = ACTIONS(2265), + [anon_sym_AMP] = ACTIONS(552), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_TILDE] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(580), + [anon_sym_DASH] = ACTIONS(580), + [anon_sym_DASH_DASH] = ACTIONS(582), + [anon_sym_PLUS_PLUS] = ACTIONS(582), + [anon_sym_sizeof] = ACTIONS(584), + [sym_number_literal] = ACTIONS(2267), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(2269), + [sym_false] = ACTIONS(2269), + [sym_null] = ACTIONS(2269), + [sym_identifier] = ACTIONS(3054), [sym_comment] = ACTIONS(39), }, [1361] = { [aux_sym_for_statement_repeat1] = STATE(1088), - [anon_sym_COMMA] = ACTIONS(2530), - [anon_sym_RPAREN] = ACTIONS(3637), + [anon_sym_COMMA] = ACTIONS(2519), + [anon_sym_RPAREN] = ACTIONS(3626), [sym_comment] = ACTIONS(39), }, [1362] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3617), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3617), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3617), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3617), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3617), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3617), - [sym_preproc_directive] = ACTIONS(3617), - [anon_sym_SEMI] = ACTIONS(3619), - [anon_sym_typedef] = ACTIONS(3617), - [anon_sym_extern] = ACTIONS(3617), - [anon_sym_LBRACE] = ACTIONS(3619), - [anon_sym_LPAREN2] = ACTIONS(3619), - [anon_sym_STAR] = ACTIONS(3619), - [anon_sym_static] = ACTIONS(3617), - [anon_sym_auto] = ACTIONS(3617), - [anon_sym_register] = ACTIONS(3617), - [anon_sym_inline] = ACTIONS(3617), - [anon_sym_const] = ACTIONS(3617), - [anon_sym_restrict] = ACTIONS(3617), - [anon_sym_volatile] = ACTIONS(3617), - [anon_sym__Atomic] = ACTIONS(3617), - [anon_sym_unsigned] = ACTIONS(3617), - [anon_sym_long] = ACTIONS(3617), - [anon_sym_short] = ACTIONS(3617), - [sym_primitive_type] = ACTIONS(3617), - [anon_sym_enum] = ACTIONS(3617), - [anon_sym_struct] = ACTIONS(3617), - [anon_sym_union] = ACTIONS(3617), - [anon_sym_if] = ACTIONS(3617), - [anon_sym_else] = ACTIONS(3617), - [anon_sym_switch] = ACTIONS(3617), - [anon_sym_case] = ACTIONS(3617), - [anon_sym_default] = ACTIONS(3617), - [anon_sym_while] = ACTIONS(3617), - [anon_sym_do] = ACTIONS(3617), - [anon_sym_for] = ACTIONS(3617), - [anon_sym_return] = ACTIONS(3617), - [anon_sym_break] = ACTIONS(3617), - [anon_sym_continue] = ACTIONS(3617), - [anon_sym_goto] = ACTIONS(3617), - [anon_sym_AMP] = ACTIONS(3619), - [anon_sym_BANG] = ACTIONS(3619), - [anon_sym_TILDE] = ACTIONS(3619), - [anon_sym_PLUS] = ACTIONS(3617), - [anon_sym_DASH] = ACTIONS(3617), - [anon_sym_DASH_DASH] = ACTIONS(3619), - [anon_sym_PLUS_PLUS] = ACTIONS(3619), - [anon_sym_sizeof] = ACTIONS(3617), - [sym_number_literal] = ACTIONS(3619), - [anon_sym_SQUOTE] = ACTIONS(3619), - [anon_sym_DQUOTE] = ACTIONS(3619), - [sym_true] = ACTIONS(3617), - [sym_false] = ACTIONS(3617), - [sym_null] = ACTIONS(3617), - [sym_identifier] = ACTIONS(3617), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3606), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3606), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3606), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3606), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3606), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3606), + [sym_preproc_directive] = ACTIONS(3606), + [anon_sym_SEMI] = ACTIONS(3608), + [anon_sym_typedef] = ACTIONS(3606), + [anon_sym_extern] = ACTIONS(3606), + [anon_sym_LBRACE] = ACTIONS(3608), + [anon_sym_LPAREN2] = ACTIONS(3608), + [anon_sym_STAR] = ACTIONS(3608), + [anon_sym_static] = ACTIONS(3606), + [anon_sym_auto] = ACTIONS(3606), + [anon_sym_register] = ACTIONS(3606), + [anon_sym_inline] = ACTIONS(3606), + [anon_sym_const] = ACTIONS(3606), + [anon_sym_restrict] = ACTIONS(3606), + [anon_sym_volatile] = ACTIONS(3606), + [anon_sym__Atomic] = ACTIONS(3606), + [anon_sym_unsigned] = ACTIONS(3606), + [anon_sym_long] = ACTIONS(3606), + [anon_sym_short] = ACTIONS(3606), + [sym_primitive_type] = ACTIONS(3606), + [anon_sym_enum] = ACTIONS(3606), + [anon_sym_struct] = ACTIONS(3606), + [anon_sym_union] = ACTIONS(3606), + [anon_sym_if] = ACTIONS(3606), + [anon_sym_else] = ACTIONS(3606), + [anon_sym_switch] = ACTIONS(3606), + [anon_sym_case] = ACTIONS(3606), + [anon_sym_default] = ACTIONS(3606), + [anon_sym_while] = ACTIONS(3606), + [anon_sym_do] = ACTIONS(3606), + [anon_sym_for] = ACTIONS(3606), + [anon_sym_return] = ACTIONS(3606), + [anon_sym_break] = ACTIONS(3606), + [anon_sym_continue] = ACTIONS(3606), + [anon_sym_goto] = ACTIONS(3606), + [anon_sym_AMP] = ACTIONS(3608), + [anon_sym_BANG] = ACTIONS(3608), + [anon_sym_TILDE] = ACTIONS(3608), + [anon_sym_PLUS] = ACTIONS(3606), + [anon_sym_DASH] = ACTIONS(3606), + [anon_sym_DASH_DASH] = ACTIONS(3608), + [anon_sym_PLUS_PLUS] = ACTIONS(3608), + [anon_sym_sizeof] = ACTIONS(3606), + [sym_number_literal] = ACTIONS(3608), + [anon_sym_SQUOTE] = ACTIONS(3608), + [anon_sym_DQUOTE] = ACTIONS(3608), + [sym_true] = ACTIONS(3606), + [sym_false] = ACTIONS(3606), + [sym_null] = ACTIONS(3606), + [sym_identifier] = ACTIONS(3606), [sym_comment] = ACTIONS(39), }, [1363] = { @@ -55642,36 +55661,36 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(649), [sym_concatenated_string] = STATE(649), [sym_string_literal] = STATE(253), - [anon_sym_SEMI] = ACTIONS(1516), - [anon_sym_LBRACE] = ACTIONS(734), - [anon_sym_LPAREN2] = ACTIONS(554), - [anon_sym_STAR] = ACTIONS(556), - [anon_sym_if] = ACTIONS(2733), - [anon_sym_switch] = ACTIONS(2735), - [anon_sym_case] = ACTIONS(2737), - [anon_sym_default] = ACTIONS(2739), - [anon_sym_while] = ACTIONS(2741), - [anon_sym_do] = ACTIONS(1528), - [anon_sym_for] = ACTIONS(2743), - [anon_sym_return] = ACTIONS(1532), - [anon_sym_break] = ACTIONS(1534), - [anon_sym_continue] = ACTIONS(1536), - [anon_sym_goto] = ACTIONS(1538), - [anon_sym_AMP] = ACTIONS(556), - [anon_sym_BANG] = ACTIONS(580), - [anon_sym_TILDE] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_DASH_DASH] = ACTIONS(586), - [anon_sym_PLUS_PLUS] = ACTIONS(586), - [anon_sym_sizeof] = ACTIONS(588), - [sym_number_literal] = ACTIONS(1540), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1542), - [sym_false] = ACTIONS(1542), - [sym_null] = ACTIONS(1542), - [sym_identifier] = ACTIONS(2745), + [anon_sym_SEMI] = ACTIONS(1505), + [anon_sym_LBRACE] = ACTIONS(725), + [anon_sym_LPAREN2] = ACTIONS(550), + [anon_sym_STAR] = ACTIONS(552), + [anon_sym_if] = ACTIONS(2722), + [anon_sym_switch] = ACTIONS(2724), + [anon_sym_case] = ACTIONS(2726), + [anon_sym_default] = ACTIONS(2728), + [anon_sym_while] = ACTIONS(2730), + [anon_sym_do] = ACTIONS(1517), + [anon_sym_for] = ACTIONS(2732), + [anon_sym_return] = ACTIONS(1521), + [anon_sym_break] = ACTIONS(1523), + [anon_sym_continue] = ACTIONS(1525), + [anon_sym_goto] = ACTIONS(1527), + [anon_sym_AMP] = ACTIONS(552), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_TILDE] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(580), + [anon_sym_DASH] = ACTIONS(580), + [anon_sym_DASH_DASH] = ACTIONS(582), + [anon_sym_PLUS_PLUS] = ACTIONS(582), + [anon_sym_sizeof] = ACTIONS(584), + [sym_number_literal] = ACTIONS(1529), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_null] = ACTIONS(1531), + [sym_identifier] = ACTIONS(2734), [sym_comment] = ACTIONS(39), }, [1364] = { @@ -55709,36 +55728,36 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(872), [sym_concatenated_string] = STATE(872), [sym_string_literal] = STATE(253), - [anon_sym_SEMI] = ACTIONS(2254), - [anon_sym_LBRACE] = ACTIONS(1273), - [anon_sym_LPAREN2] = ACTIONS(554), - [anon_sym_STAR] = ACTIONS(556), - [anon_sym_if] = ACTIONS(3053), - [anon_sym_switch] = ACTIONS(3055), - [anon_sym_case] = ACTIONS(3057), - [anon_sym_default] = ACTIONS(3059), - [anon_sym_while] = ACTIONS(3061), - [anon_sym_do] = ACTIONS(2266), - [anon_sym_for] = ACTIONS(3063), - [anon_sym_return] = ACTIONS(2270), - [anon_sym_break] = ACTIONS(2272), - [anon_sym_continue] = ACTIONS(2274), - [anon_sym_goto] = ACTIONS(2276), - [anon_sym_AMP] = ACTIONS(556), - [anon_sym_BANG] = ACTIONS(580), - [anon_sym_TILDE] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_DASH_DASH] = ACTIONS(586), - [anon_sym_PLUS_PLUS] = ACTIONS(586), - [anon_sym_sizeof] = ACTIONS(588), - [sym_number_literal] = ACTIONS(2278), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2280), - [sym_false] = ACTIONS(2280), - [sym_null] = ACTIONS(2280), - [sym_identifier] = ACTIONS(3065), + [anon_sym_SEMI] = ACTIONS(2243), + [anon_sym_LBRACE] = ACTIONS(1264), + [anon_sym_LPAREN2] = ACTIONS(550), + [anon_sym_STAR] = ACTIONS(552), + [anon_sym_if] = ACTIONS(3042), + [anon_sym_switch] = ACTIONS(3044), + [anon_sym_case] = ACTIONS(3046), + [anon_sym_default] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3050), + [anon_sym_do] = ACTIONS(2255), + [anon_sym_for] = ACTIONS(3052), + [anon_sym_return] = ACTIONS(2259), + [anon_sym_break] = ACTIONS(2261), + [anon_sym_continue] = ACTIONS(2263), + [anon_sym_goto] = ACTIONS(2265), + [anon_sym_AMP] = ACTIONS(552), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_TILDE] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(580), + [anon_sym_DASH] = ACTIONS(580), + [anon_sym_DASH_DASH] = ACTIONS(582), + [anon_sym_PLUS_PLUS] = ACTIONS(582), + [anon_sym_sizeof] = ACTIONS(584), + [sym_number_literal] = ACTIONS(2267), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(2269), + [sym_false] = ACTIONS(2269), + [sym_null] = ACTIONS(2269), + [sym_identifier] = ACTIONS(3054), [sym_comment] = ACTIONS(39), }, }; @@ -55804,1686 +55823,1681 @@ static TSParseActionEntry ts_parse_actions[] = { [114] = {.count = 2, .reusable = false}, REDUCE(sym_sized_type_specifier, 1), SHIFT(53), [117] = {.count = 1, .reusable = false}, SHIFT(55), [119] = {.count = 1, .reusable = true}, SHIFT(56), - [121] = {.count = 1, .reusable = false}, SHIFT(56), - [123] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_include, 2, .alias_sequence_id = 2), - [125] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_include, 2, .alias_sequence_id = 2), - [127] = {.count = 1, .reusable = false}, SHIFT(57), - [129] = {.count = 1, .reusable = true}, SHIFT(58), - [131] = {.count = 1, .reusable = false}, SHIFT(59), - [133] = {.count = 1, .reusable = false}, SHIFT(61), - [135] = {.count = 1, .reusable = false}, SHIFT(62), - [137] = {.count = 1, .reusable = false}, SHIFT(63), - [139] = {.count = 1, .reusable = false}, SHIFT(64), - [141] = {.count = 1, .reusable = false}, SHIFT(65), - [143] = {.count = 1, .reusable = false}, SHIFT(66), - [145] = {.count = 1, .reusable = false}, SHIFT(67), - [147] = {.count = 1, .reusable = false}, SHIFT(68), - [149] = {.count = 1, .reusable = false}, SHIFT(69), - [151] = {.count = 1, .reusable = false}, SHIFT(70), - [153] = {.count = 1, .reusable = false}, SHIFT(71), - [155] = {.count = 1, .reusable = false}, SHIFT(75), - [157] = {.count = 1, .reusable = false}, SHIFT(78), - [159] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_call, 2), - [161] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_call, 2), - [163] = {.count = 1, .reusable = true}, SHIFT(81), - [165] = {.count = 1, .reusable = true}, SHIFT(82), - [167] = {.count = 1, .reusable = true}, SHIFT(83), - [169] = {.count = 1, .reusable = true}, SHIFT(84), - [171] = {.count = 1, .reusable = false}, SHIFT(89), - [173] = {.count = 1, .reusable = false}, SHIFT(91), - [175] = {.count = 1, .reusable = true}, SHIFT(92), - [177] = {.count = 1, .reusable = false}, SHIFT(97), - [179] = {.count = 1, .reusable = false}, SHIFT(95), - [181] = {.count = 1, .reusable = true}, SHIFT(98), - [183] = {.count = 1, .reusable = true}, SHIFT(99), - [185] = {.count = 1, .reusable = true}, SHIFT(100), - [187] = {.count = 1, .reusable = true}, REDUCE(sym_enum_specifier, 2, .alias_sequence_id = 3), - [189] = {.count = 1, .reusable = false}, REDUCE(sym_enum_specifier, 2, .alias_sequence_id = 3), - [191] = {.count = 1, .reusable = true}, REDUCE(sym_enum_specifier, 2), - [193] = {.count = 1, .reusable = false}, REDUCE(sym_enum_specifier, 2), - [195] = {.count = 1, .reusable = false}, SHIFT(103), - [197] = {.count = 1, .reusable = true}, SHIFT(104), - [199] = {.count = 1, .reusable = true}, SHIFT(105), - [201] = {.count = 1, .reusable = true}, SHIFT(106), - [203] = {.count = 1, .reusable = false}, SHIFT(113), - [205] = {.count = 1, .reusable = false}, SHIFT(110), - [207] = {.count = 1, .reusable = true}, REDUCE(sym_struct_specifier, 2, .alias_sequence_id = 3), - [209] = {.count = 1, .reusable = false}, REDUCE(sym_struct_specifier, 2, .alias_sequence_id = 3), - [211] = {.count = 1, .reusable = true}, REDUCE(sym_struct_specifier, 2), - [213] = {.count = 1, .reusable = false}, REDUCE(sym_struct_specifier, 2), - [215] = {.count = 1, .reusable = true}, REDUCE(sym_union_specifier, 2, .alias_sequence_id = 3), - [217] = {.count = 1, .reusable = false}, REDUCE(sym_union_specifier, 2, .alias_sequence_id = 3), - [219] = {.count = 1, .reusable = true}, REDUCE(sym_union_specifier, 2), - [221] = {.count = 1, .reusable = false}, REDUCE(sym_union_specifier, 2), - [223] = {.count = 1, .reusable = false}, SHIFT(119), - [225] = {.count = 1, .reusable = false}, SHIFT(116), - [227] = {.count = 1, .reusable = true}, REDUCE(sym__empty_declaration, 2), - [229] = {.count = 1, .reusable = false}, REDUCE(sym__empty_declaration, 2), - [231] = {.count = 1, .reusable = true}, SHIFT(120), - [233] = {.count = 1, .reusable = true}, SHIFT(121), - [235] = {.count = 1, .reusable = false}, SHIFT(122), - [237] = {.count = 1, .reusable = true}, SHIFT(124), - [239] = {.count = 1, .reusable = true}, SHIFT(125), - [241] = {.count = 1, .reusable = true}, SHIFT(126), - [243] = {.count = 1, .reusable = true}, SHIFT(127), - [245] = {.count = 1, .reusable = true}, SHIFT(128), - [247] = {.count = 1, .reusable = true}, SHIFT(129), - [249] = {.count = 1, .reusable = true}, REDUCE(sym__declaration_specifiers, 2), - [251] = {.count = 1, .reusable = false}, REDUCE(sym__declaration_specifiers, 2), - [253] = {.count = 1, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), - [255] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2), - [258] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3), - [261] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4), - [264] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5), - [267] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6), - [270] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(7), - [273] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(8), - [276] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(9), - [279] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(10), - [282] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(11), - [285] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(21), - [288] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(18), - [291] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(12), - [294] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(13), - [297] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(14), - [300] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(15), - [303] = {.count = 2, .reusable = false}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(10), - [306] = {.count = 2, .reusable = false}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(11), - [309] = {.count = 1, .reusable = false}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), - [311] = {.count = 1, .reusable = true}, REDUCE(sym_sized_type_specifier, 2), - [313] = {.count = 1, .reusable = false}, REDUCE(sym_sized_type_specifier, 2), - [315] = {.count = 1, .reusable = true}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .alias_sequence_id = 3), - [317] = {.count = 1, .reusable = false}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .alias_sequence_id = 3), - [319] = {.count = 1, .reusable = true}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), - [321] = {.count = 1, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), - [323] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(54), - [326] = {.count = 1, .reusable = true}, REDUCE(sym_string_literal, 2), - [328] = {.count = 1, .reusable = false}, REDUCE(sym_string_literal, 2), - [330] = {.count = 1, .reusable = false}, SHIFT(135), - [332] = {.count = 1, .reusable = true}, SHIFT(136), - [334] = {.count = 1, .reusable = false}, SHIFT(136), - [336] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_def, 3, .alias_sequence_id = 4), - [338] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_def, 3, .alias_sequence_id = 4), - [340] = {.count = 1, .reusable = true}, SHIFT(137), - [342] = {.count = 1, .reusable = true}, SHIFT(138), - [344] = {.count = 1, .reusable = true}, SHIFT(139), - [346] = {.count = 1, .reusable = false}, SHIFT(140), - [348] = {.count = 1, .reusable = false}, SHIFT(141), - [350] = {.count = 1, .reusable = true}, SHIFT(142), - [352] = {.count = 1, .reusable = true}, SHIFT(143), - [354] = {.count = 1, .reusable = true}, SHIFT(144), - [356] = {.count = 1, .reusable = false}, SHIFT(145), - [358] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if, 3, .alias_sequence_id = 5), - [360] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if, 3, .alias_sequence_id = 5), - [362] = {.count = 1, .reusable = true}, SHIFT(146), - [364] = {.count = 1, .reusable = true}, SHIFT(147), - [366] = {.count = 1, .reusable = false}, SHIFT(148), - [368] = {.count = 1, .reusable = false}, SHIFT(149), - [370] = {.count = 1, .reusable = false}, SHIFT(150), - [372] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_else, 1, .alias_sequence_id = 6), - [374] = {.count = 1, .reusable = false}, SHIFT(151), - [376] = {.count = 1, .reusable = false}, SHIFT(152), - [378] = {.count = 1, .reusable = false}, SHIFT(153), - [380] = {.count = 1, .reusable = false}, SHIFT(154), - [382] = {.count = 1, .reusable = false}, SHIFT(155), - [384] = {.count = 1, .reusable = false}, SHIFT(158), - [386] = {.count = 1, .reusable = false}, SHIFT(159), - [388] = {.count = 1, .reusable = false}, SHIFT(160), - [390] = {.count = 1, .reusable = false}, SHIFT(161), - [392] = {.count = 1, .reusable = true}, SHIFT(164), - [394] = {.count = 1, .reusable = true}, SHIFT(165), - [396] = {.count = 1, .reusable = true}, SHIFT(166), - [398] = {.count = 1, .reusable = false}, SHIFT(164), - [400] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef, 3, .alias_sequence_id = 7), - [402] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef, 3, .alias_sequence_id = 7), - [404] = {.count = 1, .reusable = true}, SHIFT(170), - [406] = {.count = 1, .reusable = false}, SHIFT(170), - [408] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef, 3, .alias_sequence_id = 8), - [410] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef, 3, .alias_sequence_id = 8), - [412] = {.count = 1, .reusable = true}, SHIFT(172), - [414] = {.count = 1, .reusable = false}, SHIFT(172), - [416] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_call, 3), - [418] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_call, 3), - [420] = {.count = 1, .reusable = true}, SHIFT(174), - [422] = {.count = 1, .reusable = false}, SHIFT(84), - [424] = {.count = 1, .reusable = true}, REDUCE(sym__type_declarator, 1, .alias_sequence_id = 1), - [426] = {.count = 1, .reusable = true}, SHIFT(178), - [428] = {.count = 1, .reusable = true}, SHIFT(179), - [430] = {.count = 1, .reusable = true}, REDUCE(sym__type_declarator, 1, .alias_sequence_id = 9), - [432] = {.count = 1, .reusable = true}, REDUCE(sym__type_declarator, 1, .alias_sequence_id = 10), - [434] = {.count = 1, .reusable = true}, REDUCE(sym__type_declarator, 1, .alias_sequence_id = 11), - [436] = {.count = 2, .reusable = false}, REDUCE(aux_sym_type_definition_repeat1, 2), SHIFT_REPEAT(11), - [439] = {.count = 1, .reusable = false}, REDUCE(aux_sym_type_definition_repeat1, 2), - [441] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(91), - [444] = {.count = 1, .reusable = true}, SHIFT(182), - [446] = {.count = 1, .reusable = true}, REDUCE(sym_linkage_specification, 3), - [448] = {.count = 1, .reusable = false}, REDUCE(sym_linkage_specification, 3), - [450] = {.count = 1, .reusable = false}, SHIFT(185), - [452] = {.count = 1, .reusable = false}, SHIFT(186), - [454] = {.count = 1, .reusable = true}, SHIFT(187), - [456] = {.count = 1, .reusable = true}, REDUCE(sym_enumerator_list, 2), - [458] = {.count = 1, .reusable = false}, REDUCE(sym_enumerator_list, 2), - [460] = {.count = 1, .reusable = true}, REDUCE(sym_enumerator, 1), - [462] = {.count = 1, .reusable = true}, SHIFT(188), - [464] = {.count = 1, .reusable = true}, SHIFT(189), - [466] = {.count = 1, .reusable = true}, REDUCE(sym_enum_specifier, 3, .alias_sequence_id = 3), - [468] = {.count = 1, .reusable = false}, REDUCE(sym_enum_specifier, 3, .alias_sequence_id = 3), - [470] = {.count = 1, .reusable = false}, SHIFT(191), - [472] = {.count = 1, .reusable = true}, SHIFT(192), - [474] = {.count = 1, .reusable = true}, SHIFT(193), - [476] = {.count = 1, .reusable = true}, REDUCE(sym_field_declaration_list, 2), - [478] = {.count = 1, .reusable = false}, REDUCE(sym_field_declaration_list, 2), - [480] = {.count = 1, .reusable = false}, REDUCE(sym__field_declaration_list_item, 1, .alias_sequence_id = 12), - [482] = {.count = 1, .reusable = true}, REDUCE(sym__field_declaration_list_item, 1, .alias_sequence_id = 12), - [484] = {.count = 1, .reusable = false}, REDUCE(sym__field_declaration_list_item, 1, .alias_sequence_id = 13), - [486] = {.count = 1, .reusable = true}, REDUCE(sym__field_declaration_list_item, 1, .alias_sequence_id = 13), - [488] = {.count = 1, .reusable = true}, SHIFT(194), - [490] = {.count = 1, .reusable = true}, SHIFT(195), - [492] = {.count = 1, .reusable = true}, SHIFT(196), - [494] = {.count = 1, .reusable = true}, SHIFT(197), - [496] = {.count = 1, .reusable = true}, SHIFT(198), - [498] = {.count = 1, .reusable = true}, SHIFT(204), - [500] = {.count = 1, .reusable = false}, SHIFT(206), - [502] = {.count = 1, .reusable = false}, SHIFT(207), - [504] = {.count = 1, .reusable = true}, REDUCE(sym_struct_specifier, 3, .alias_sequence_id = 3), - [506] = {.count = 1, .reusable = false}, REDUCE(sym_struct_specifier, 3, .alias_sequence_id = 3), - [508] = {.count = 1, .reusable = true}, REDUCE(sym_union_specifier, 3, .alias_sequence_id = 3), - [510] = {.count = 1, .reusable = false}, REDUCE(sym_union_specifier, 3, .alias_sequence_id = 3), - [512] = {.count = 1, .reusable = true}, REDUCE(sym_type_descriptor, 1), - [514] = {.count = 1, .reusable = true}, SHIFT(208), - [516] = {.count = 1, .reusable = true}, SHIFT(209), - [518] = {.count = 1, .reusable = true}, SHIFT(210), - [520] = {.count = 1, .reusable = true}, SHIFT(213), - [522] = {.count = 1, .reusable = false}, SHIFT(214), - [524] = {.count = 1, .reusable = false}, SHIFT(215), - [526] = {.count = 1, .reusable = false}, SHIFT(53), - [528] = {.count = 1, .reusable = true}, SHIFT(217), - [530] = {.count = 1, .reusable = true}, REDUCE(sym_pointer_declarator, 2), - [532] = {.count = 1, .reusable = false}, SHIFT(218), - [534] = {.count = 1, .reusable = true}, SHIFT(220), - [536] = {.count = 1, .reusable = true}, SHIFT(221), - [538] = {.count = 1, .reusable = true}, REDUCE(sym_declaration, 3), - [540] = {.count = 1, .reusable = false}, REDUCE(sym_declaration, 3), - [542] = {.count = 1, .reusable = false}, SHIFT(223), - [544] = {.count = 1, .reusable = false}, SHIFT(224), - [546] = {.count = 1, .reusable = false}, SHIFT(225), - [548] = {.count = 1, .reusable = false}, SHIFT(226), - [550] = {.count = 1, .reusable = true}, SHIFT(227), - [552] = {.count = 1, .reusable = true}, SHIFT(228), - [554] = {.count = 1, .reusable = true}, SHIFT(229), - [556] = {.count = 1, .reusable = true}, SHIFT(230), - [558] = {.count = 1, .reusable = false}, SHIFT(231), - [560] = {.count = 1, .reusable = false}, SHIFT(232), - [562] = {.count = 1, .reusable = false}, SHIFT(233), - [564] = {.count = 1, .reusable = false}, SHIFT(234), - [566] = {.count = 1, .reusable = false}, SHIFT(235), - [568] = {.count = 1, .reusable = false}, SHIFT(236), - [570] = {.count = 1, .reusable = false}, SHIFT(237), - [572] = {.count = 1, .reusable = false}, SHIFT(238), - [574] = {.count = 1, .reusable = false}, SHIFT(239), - [576] = {.count = 1, .reusable = false}, SHIFT(240), - [578] = {.count = 1, .reusable = false}, SHIFT(241), - [580] = {.count = 1, .reusable = true}, SHIFT(242), - [582] = {.count = 1, .reusable = true}, SHIFT(243), - [584] = {.count = 1, .reusable = false}, SHIFT(244), - [586] = {.count = 1, .reusable = true}, SHIFT(244), - [588] = {.count = 1, .reusable = false}, SHIFT(245), - [590] = {.count = 1, .reusable = true}, SHIFT(251), - [592] = {.count = 1, .reusable = true}, SHIFT(246), - [594] = {.count = 1, .reusable = false}, SHIFT(251), - [596] = {.count = 1, .reusable = false}, SHIFT(247), - [598] = {.count = 1, .reusable = true}, SHIFT(255), - [600] = {.count = 1, .reusable = true}, SHIFT(256), - [602] = {.count = 1, .reusable = false}, SHIFT(260), - [604] = {.count = 1, .reusable = false}, SHIFT(258), - [606] = {.count = 1, .reusable = true}, SHIFT(261), - [608] = {.count = 1, .reusable = true}, SHIFT(262), - [610] = {.count = 1, .reusable = true}, SHIFT(263), - [612] = {.count = 1, .reusable = false}, SHIFT(274), - [614] = {.count = 1, .reusable = false}, SHIFT(270), - [616] = {.count = 1, .reusable = true}, SHIFT(264), - [618] = {.count = 1, .reusable = true}, SHIFT(265), - [620] = {.count = 1, .reusable = false}, SHIFT(266), - [622] = {.count = 1, .reusable = true}, SHIFT(266), - [624] = {.count = 1, .reusable = false}, SHIFT(267), - [626] = {.count = 1, .reusable = true}, SHIFT(271), - [628] = {.count = 1, .reusable = false}, SHIFT(271), - [630] = {.count = 1, .reusable = false}, SHIFT(268), - [632] = {.count = 1, .reusable = true}, SHIFT(275), - [634] = {.count = 1, .reusable = true}, SHIFT(276), - [636] = {.count = 1, .reusable = false}, SHIFT(276), - [638] = {.count = 1, .reusable = true}, REDUCE(sym_function_definition, 3), - [640] = {.count = 1, .reusable = false}, REDUCE(sym_function_definition, 3), - [642] = {.count = 1, .reusable = true}, REDUCE(sym_function_declarator, 2), - [644] = {.count = 1, .reusable = true}, SHIFT(278), - [646] = {.count = 1, .reusable = true}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), - [648] = {.count = 1, .reusable = true}, REDUCE(sym__declaration_specifiers, 3), - [650] = {.count = 1, .reusable = false}, REDUCE(sym__declaration_specifiers, 3), - [652] = {.count = 1, .reusable = true}, REDUCE(sym_string_literal, 3), - [654] = {.count = 1, .reusable = false}, REDUCE(sym_string_literal, 3), - [656] = {.count = 1, .reusable = false}, REDUCE(aux_sym_string_literal_repeat1, 2), - [658] = {.count = 2, .reusable = true}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(136), - [661] = {.count = 2, .reusable = false}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(136), - [664] = {.count = 1, .reusable = true}, SHIFT(280), - [666] = {.count = 1, .reusable = true}, SHIFT(281), - [668] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_params, 2), - [670] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_def, 4, .alias_sequence_id = 4), - [672] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_def, 4, .alias_sequence_id = 4), - [674] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_function_def, 4, .alias_sequence_id = 4), - [676] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_function_def, 4, .alias_sequence_id = 4), - [678] = {.count = 1, .reusable = true}, SHIFT(283), - [680] = {.count = 1, .reusable = false}, SHIFT(284), - [682] = {.count = 1, .reusable = true}, SHIFT(285), - [684] = {.count = 1, .reusable = false}, SHIFT(285), - [686] = {.count = 1, .reusable = false}, SHIFT(286), - [688] = {.count = 1, .reusable = false}, SHIFT(287), - [690] = {.count = 1, .reusable = false}, SHIFT(289), - [692] = {.count = 1, .reusable = false}, SHIFT(292), - [694] = {.count = 1, .reusable = false}, SHIFT(295), - [696] = {.count = 1, .reusable = true}, SHIFT(298), - [698] = {.count = 1, .reusable = true}, SHIFT(299), - [700] = {.count = 1, .reusable = true}, SHIFT(300), - [702] = {.count = 1, .reusable = false}, SHIFT(301), - [704] = {.count = 1, .reusable = true}, SHIFT(302), - [706] = {.count = 1, .reusable = true}, SHIFT(303), - [708] = {.count = 1, .reusable = false}, SHIFT(304), - [710] = {.count = 1, .reusable = false}, SHIFT(305), - [712] = {.count = 1, .reusable = false}, SHIFT(306), - [714] = {.count = 1, .reusable = true}, SHIFT(309), - [716] = {.count = 1, .reusable = true}, SHIFT(310), - [718] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_else, 2, .alias_sequence_id = 6), - [720] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_elif, 2, .alias_sequence_id = 14), - [722] = {.count = 1, .reusable = true}, SHIFT(315), - [724] = {.count = 1, .reusable = false}, SHIFT(317), - [726] = {.count = 1, .reusable = true}, SHIFT(318), - [728] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if, 4, .alias_sequence_id = 15), - [730] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if, 4, .alias_sequence_id = 15), - [732] = {.count = 1, .reusable = true}, SHIFT(321), - [734] = {.count = 1, .reusable = true}, SHIFT(322), - [736] = {.count = 1, .reusable = true}, SHIFT(325), - [738] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(61), - [741] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(62), - [744] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(63), - [747] = {.count = 1, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), - [749] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(65), - [752] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(66), - [755] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(69), - [758] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(70), - [761] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(71), - [764] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef, 4, .alias_sequence_id = 16), - [766] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef, 4, .alias_sequence_id = 16), - [768] = {.count = 1, .reusable = true}, SHIFT(326), - [770] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef, 4, .alias_sequence_id = 17), - [772] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef, 4, .alias_sequence_id = 17), - [774] = {.count = 1, .reusable = true}, SHIFT(327), - [776] = {.count = 1, .reusable = true}, SHIFT(329), - [778] = {.count = 1, .reusable = true}, REDUCE(sym_pointer_type_declarator, 2), - [780] = {.count = 1, .reusable = true}, REDUCE(sym_type_definition, 4), - [782] = {.count = 1, .reusable = false}, REDUCE(sym_type_definition, 4), - [784] = {.count = 1, .reusable = true}, SHIFT(331), - [786] = {.count = 1, .reusable = true}, SHIFT(333), - [788] = {.count = 1, .reusable = false}, SHIFT(333), - [790] = {.count = 1, .reusable = true}, REDUCE(sym_function_type_declarator, 2), - [792] = {.count = 1, .reusable = true}, SHIFT(334), - [794] = {.count = 1, .reusable = true}, REDUCE(sym_declaration_list, 2), - [796] = {.count = 1, .reusable = false}, REDUCE(sym_declaration_list, 2), - [798] = {.count = 1, .reusable = true}, SHIFT(335), - [800] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(186), - [803] = {.count = 1, .reusable = true}, REDUCE(sym_enumerator_list, 3), - [805] = {.count = 1, .reusable = false}, REDUCE(sym_enumerator_list, 3), - [807] = {.count = 1, .reusable = true}, SHIFT(339), - [809] = {.count = 1, .reusable = true}, SHIFT(340), - [811] = {.count = 1, .reusable = true}, SHIFT(341), - [813] = {.count = 1, .reusable = true}, SHIFT(342), - [815] = {.count = 1, .reusable = false}, SHIFT(343), - [817] = {.count = 1, .reusable = true}, SHIFT(343), - [819] = {.count = 1, .reusable = false}, SHIFT(344), - [821] = {.count = 1, .reusable = true}, SHIFT(345), - [823] = {.count = 1, .reusable = false}, SHIFT(345), - [825] = {.count = 1, .reusable = true}, SHIFT(347), - [827] = {.count = 1, .reusable = true}, SHIFT(349), - [829] = {.count = 1, .reusable = true}, SHIFT(351), - [831] = {.count = 1, .reusable = true}, SHIFT(352), - [833] = {.count = 1, .reusable = true}, SHIFT(353), - [835] = {.count = 1, .reusable = true}, SHIFT(357), - [837] = {.count = 1, .reusable = true}, SHIFT(361), - [839] = {.count = 1, .reusable = false}, REDUCE(sym_field_declaration, 2), - [841] = {.count = 1, .reusable = true}, REDUCE(sym_field_declaration, 2), - [843] = {.count = 1, .reusable = true}, SHIFT(365), - [845] = {.count = 1, .reusable = false}, SHIFT(198), - [847] = {.count = 1, .reusable = true}, SHIFT(369), - [849] = {.count = 1, .reusable = true}, SHIFT(370), - [851] = {.count = 1, .reusable = true}, SHIFT(371), - [853] = {.count = 1, .reusable = true}, SHIFT(372), - [855] = {.count = 1, .reusable = false}, SHIFT(373), - [857] = {.count = 1, .reusable = true}, SHIFT(373), - [859] = {.count = 1, .reusable = false}, SHIFT(374), - [861] = {.count = 1, .reusable = true}, SHIFT(375), - [863] = {.count = 1, .reusable = false}, SHIFT(375), - [865] = {.count = 1, .reusable = true}, REDUCE(sym__field_declarator, 1, .alias_sequence_id = 18), - [867] = {.count = 1, .reusable = true}, SHIFT(377), - [869] = {.count = 1, .reusable = true}, SHIFT(378), - [871] = {.count = 1, .reusable = true}, SHIFT(379), - [873] = {.count = 1, .reusable = true}, SHIFT(380), - [875] = {.count = 1, .reusable = true}, REDUCE(sym__field_declarator, 1, .alias_sequence_id = 9), - [877] = {.count = 1, .reusable = true}, REDUCE(sym__field_declarator, 1, .alias_sequence_id = 10), - [879] = {.count = 1, .reusable = true}, REDUCE(sym__field_declarator, 1, .alias_sequence_id = 11), - [881] = {.count = 1, .reusable = true}, REDUCE(sym_field_declaration_list, 3), - [883] = {.count = 1, .reusable = false}, REDUCE(sym_field_declaration_list, 3), - [885] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(103), - [888] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(104), - [891] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(105), - [894] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(10), - [897] = {.count = 1, .reusable = true}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), - [899] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(11), - [902] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(113), - [905] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(110), - [908] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(12), - [911] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(13), - [914] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(14), - [917] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(15), - [920] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(207), - [923] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_pointer_declarator, 1), - [925] = {.count = 1, .reusable = true}, SHIFT(11), - [927] = {.count = 1, .reusable = true}, SHIFT(388), - [929] = {.count = 1, .reusable = true}, SHIFT(390), - [931] = {.count = 1, .reusable = false}, SHIFT(390), - [933] = {.count = 1, .reusable = true}, REDUCE(sym_type_descriptor, 2), - [935] = {.count = 1, .reusable = true}, SHIFT(391), - [937] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_function_declarator, 1), - [939] = {.count = 1, .reusable = true}, REDUCE(sym_macro_type_specifier, 4), - [941] = {.count = 1, .reusable = false}, REDUCE(sym_macro_type_specifier, 4), - [943] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(215), - [946] = {.count = 1, .reusable = true}, REDUCE(sym__declarator, 3), - [948] = {.count = 1, .reusable = true}, REDUCE(sym_pointer_declarator, 3), - [950] = {.count = 1, .reusable = true}, REDUCE(aux_sym_type_definition_repeat1, 2), - [952] = {.count = 1, .reusable = true}, REDUCE(aux_sym_declaration_repeat1, 2), - [954] = {.count = 1, .reusable = true}, SHIFT(395), - [956] = {.count = 1, .reusable = false}, SHIFT(396), - [958] = {.count = 1, .reusable = true}, SHIFT(397), - [960] = {.count = 1, .reusable = true}, SHIFT(398), - [962] = {.count = 1, .reusable = false}, REDUCE(sym_expression_statement, 1), - [964] = {.count = 1, .reusable = true}, REDUCE(sym_expression_statement, 1), - [966] = {.count = 1, .reusable = true}, REDUCE(sym_compound_statement, 2), - [968] = {.count = 1, .reusable = false}, REDUCE(sym_compound_statement, 2), - [970] = {.count = 1, .reusable = true}, SHIFT(399), - [972] = {.count = 1, .reusable = true}, SHIFT(400), - [974] = {.count = 1, .reusable = true}, SHIFT(401), - [976] = {.count = 1, .reusable = true}, SHIFT(402), - [978] = {.count = 1, .reusable = false}, SHIFT(403), - [980] = {.count = 1, .reusable = true}, SHIFT(403), - [982] = {.count = 1, .reusable = false}, SHIFT(404), - [984] = {.count = 1, .reusable = true}, SHIFT(406), - [986] = {.count = 1, .reusable = false}, SHIFT(406), - [988] = {.count = 1, .reusable = false}, SHIFT(405), - [990] = {.count = 1, .reusable = true}, SHIFT(410), - [992] = {.count = 1, .reusable = false}, SHIFT(410), - [994] = {.count = 1, .reusable = true}, SHIFT(411), - [996] = {.count = 1, .reusable = true}, SHIFT(414), - [998] = {.count = 1, .reusable = true}, SHIFT(415), - [1000] = {.count = 1, .reusable = true}, SHIFT(416), - [1002] = {.count = 1, .reusable = true}, SHIFT(417), - [1004] = {.count = 1, .reusable = false}, SHIFT(418), - [1006] = {.count = 1, .reusable = true}, SHIFT(418), - [1008] = {.count = 1, .reusable = false}, SHIFT(419), - [1010] = {.count = 1, .reusable = true}, SHIFT(420), - [1012] = {.count = 1, .reusable = false}, SHIFT(420), - [1014] = {.count = 1, .reusable = true}, SHIFT(422), - [1016] = {.count = 1, .reusable = false}, SHIFT(424), - [1018] = {.count = 1, .reusable = false}, SHIFT(425), - [1020] = {.count = 1, .reusable = false}, SHIFT(426), - [1022] = {.count = 1, .reusable = false}, SHIFT(427), - [1024] = {.count = 1, .reusable = false}, SHIFT(428), - [1026] = {.count = 1, .reusable = false}, SHIFT(429), - [1028] = {.count = 1, .reusable = false}, SHIFT(430), - [1030] = {.count = 1, .reusable = false}, SHIFT(431), - [1032] = {.count = 1, .reusable = true}, SHIFT(433), - [1034] = {.count = 1, .reusable = true}, SHIFT(434), - [1036] = {.count = 1, .reusable = true}, SHIFT(435), - [1038] = {.count = 1, .reusable = false}, SHIFT(435), - [1040] = {.count = 1, .reusable = true}, SHIFT(436), - [1042] = {.count = 1, .reusable = true}, SHIFT(437), - [1044] = {.count = 1, .reusable = true}, SHIFT(438), - [1046] = {.count = 1, .reusable = true}, SHIFT(439), - [1048] = {.count = 1, .reusable = false}, SHIFT(439), - [1050] = {.count = 1, .reusable = true}, SHIFT(440), - [1052] = {.count = 1, .reusable = false}, SHIFT(440), - [1054] = {.count = 1, .reusable = true}, SHIFT(441), - [1056] = {.count = 1, .reusable = false}, SHIFT(441), - [1058] = {.count = 1, .reusable = true}, SHIFT(442), - [1060] = {.count = 1, .reusable = true}, SHIFT(443), - [1062] = {.count = 1, .reusable = false}, SHIFT(443), - [1064] = {.count = 1, .reusable = false}, SHIFT(444), - [1066] = {.count = 1, .reusable = true}, REDUCE(sym__expression, 1), - [1068] = {.count = 2, .reusable = true}, REDUCE(sym__type_specifier, 1, .alias_sequence_id = 1), REDUCE(sym__expression, 1), - [1071] = {.count = 3, .reusable = true}, REDUCE(sym__type_specifier, 1, .alias_sequence_id = 1), REDUCE(sym__expression, 1), SHIFT(42), - [1075] = {.count = 2, .reusable = false}, REDUCE(sym__type_specifier, 1, .alias_sequence_id = 1), REDUCE(sym__expression, 1), - [1078] = {.count = 1, .reusable = false}, REDUCE(sym__expression, 1), - [1080] = {.count = 1, .reusable = true}, SHIFT(445), - [1082] = {.count = 1, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 1, .alias_sequence_id = 12), - [1084] = {.count = 1, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 1, .alias_sequence_id = 12), - [1086] = {.count = 1, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 1, .alias_sequence_id = 13), - [1088] = {.count = 1, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 1, .alias_sequence_id = 13), - [1090] = {.count = 1, .reusable = true}, SHIFT(446), - [1092] = {.count = 1, .reusable = true}, SHIFT(447), - [1094] = {.count = 1, .reusable = true}, SHIFT(448), - [1096] = {.count = 1, .reusable = true}, SHIFT(449), - [1098] = {.count = 1, .reusable = false}, SHIFT(450), - [1100] = {.count = 1, .reusable = true}, SHIFT(451), - [1102] = {.count = 1, .reusable = false}, SHIFT(452), - [1104] = {.count = 1, .reusable = true}, SHIFT(453), - [1106] = {.count = 1, .reusable = true}, SHIFT(452), - [1108] = {.count = 1, .reusable = false}, SHIFT(454), - [1110] = {.count = 1, .reusable = true}, SHIFT(455), - [1112] = {.count = 1, .reusable = true}, SHIFT(456), - [1114] = {.count = 1, .reusable = false}, SHIFT(457), - [1116] = {.count = 1, .reusable = false}, SHIFT(458), - [1118] = {.count = 1, .reusable = true}, SHIFT(459), - [1120] = {.count = 1, .reusable = false}, SHIFT(460), - [1122] = {.count = 1, .reusable = true}, SHIFT(460), - [1124] = {.count = 1, .reusable = false}, SHIFT(461), - [1126] = {.count = 1, .reusable = false}, SHIFT(462), - [1128] = {.count = 1, .reusable = true}, SHIFT(463), - [1130] = {.count = 1, .reusable = true}, SHIFT(464), - [1132] = {.count = 1, .reusable = true}, SHIFT(467), - [1134] = {.count = 1, .reusable = true}, SHIFT(469), - [1136] = {.count = 1, .reusable = true}, SHIFT(470), - [1138] = {.count = 1, .reusable = true}, REDUCE(sym_parameter_list, 2, .dynamic_precedence = 1), - [1140] = {.count = 1, .reusable = true}, REDUCE(sym_parameter_declaration, 1), - [1142] = {.count = 1, .reusable = true}, SHIFT(472), - [1144] = {.count = 1, .reusable = true}, SHIFT(473), - [1146] = {.count = 1, .reusable = true}, SHIFT(474), - [1148] = {.count = 1, .reusable = false}, SHIFT(477), - [1150] = {.count = 1, .reusable = false}, SHIFT(478), - [1152] = {.count = 1, .reusable = true}, REDUCE(sym_array_declarator, 3), - [1154] = {.count = 1, .reusable = true}, SHIFT(480), - [1156] = {.count = 1, .reusable = true}, SHIFT(481), - [1158] = {.count = 1, .reusable = false}, SHIFT(481), - [1160] = {.count = 1, .reusable = true}, SHIFT(482), - [1162] = {.count = 1, .reusable = true}, SHIFT(483), - [1164] = {.count = 1, .reusable = false}, SHIFT(483), - [1166] = {.count = 1, .reusable = false}, SHIFT(485), - [1168] = {.count = 1, .reusable = false}, SHIFT(486), - [1170] = {.count = 1, .reusable = true}, SHIFT(487), - [1172] = {.count = 1, .reusable = true}, SHIFT(486), - [1174] = {.count = 1, .reusable = false}, SHIFT(488), - [1176] = {.count = 1, .reusable = true}, SHIFT(489), - [1178] = {.count = 1, .reusable = true}, SHIFT(490), - [1180] = {.count = 1, .reusable = false}, SHIFT(491), - [1182] = {.count = 1, .reusable = false}, SHIFT(492), - [1184] = {.count = 1, .reusable = true}, SHIFT(493), - [1186] = {.count = 1, .reusable = false}, SHIFT(494), - [1188] = {.count = 1, .reusable = true}, SHIFT(494), - [1190] = {.count = 1, .reusable = false}, SHIFT(495), - [1192] = {.count = 1, .reusable = false}, SHIFT(496), - [1194] = {.count = 1, .reusable = false}, SHIFT(498), - [1196] = {.count = 1, .reusable = false}, SHIFT(499), - [1198] = {.count = 1, .reusable = true}, SHIFT(500), - [1200] = {.count = 1, .reusable = true}, SHIFT(501), - [1202] = {.count = 1, .reusable = true}, SHIFT(502), - [1204] = {.count = 1, .reusable = true}, SHIFT(503), - [1206] = {.count = 1, .reusable = true}, SHIFT(504), - [1208] = {.count = 1, .reusable = false}, SHIFT(504), - [1210] = {.count = 1, .reusable = true}, REDUCE(sym_init_declarator, 3), - [1212] = {.count = 1, .reusable = true}, REDUCE(sym_declaration, 4), - [1214] = {.count = 1, .reusable = false}, REDUCE(sym_declaration, 4), - [1216] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_repeat1, 2), SHIFT_REPEAT(124), - [1219] = {.count = 1, .reusable = true}, SHIFT(507), - [1221] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_params, 3), - [1223] = {.count = 1, .reusable = true}, SHIFT(508), - [1225] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_function_def, 5, .alias_sequence_id = 4), - [1227] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_function_def, 5, .alias_sequence_id = 4), - [1229] = {.count = 1, .reusable = false}, SHIFT(510), - [1231] = {.count = 1, .reusable = true}, SHIFT(511), - [1233] = {.count = 1, .reusable = false}, SHIFT(512), - [1235] = {.count = 1, .reusable = false}, SHIFT(513), - [1237] = {.count = 1, .reusable = true}, SHIFT(514), - [1239] = {.count = 1, .reusable = false}, SHIFT(514), - [1241] = {.count = 1, .reusable = true}, SHIFT(516), - [1243] = {.count = 1, .reusable = false}, SHIFT(516), - [1245] = {.count = 1, .reusable = true}, SHIFT(518), - [1247] = {.count = 1, .reusable = false}, SHIFT(518), - [1249] = {.count = 1, .reusable = false}, SHIFT(520), - [1251] = {.count = 1, .reusable = true}, SHIFT(521), - [1253] = {.count = 1, .reusable = false}, SHIFT(521), - [1255] = {.count = 1, .reusable = false}, SHIFT(522), - [1257] = {.count = 1, .reusable = false}, SHIFT(523), - [1259] = {.count = 1, .reusable = false}, SHIFT(525), - [1261] = {.count = 1, .reusable = false}, SHIFT(528), - [1263] = {.count = 1, .reusable = false}, SHIFT(531), - [1265] = {.count = 1, .reusable = true}, SHIFT(534), - [1267] = {.count = 1, .reusable = false}, SHIFT(536), - [1269] = {.count = 1, .reusable = true}, SHIFT(537), - [1271] = {.count = 1, .reusable = true}, SHIFT(540), - [1273] = {.count = 1, .reusable = true}, SHIFT(541), - [1275] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(148), - [1278] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(149), - [1281] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(150), - [1284] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(151), - [1287] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(152), - [1290] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(153), - [1293] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(154), - [1296] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(155), - [1299] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_elif, 3, .alias_sequence_id = 14), - [1301] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_elif, 3, .alias_sequence_id = 14), - [1303] = {.count = 1, .reusable = true}, SHIFT(545), - [1305] = {.count = 1, .reusable = true}, SHIFT(547), - [1307] = {.count = 1, .reusable = true}, SHIFT(549), - [1309] = {.count = 1, .reusable = true}, SHIFT(551), - [1311] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if, 5, .alias_sequence_id = 19), - [1313] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if, 5, .alias_sequence_id = 19), - [1315] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef, 5, .alias_sequence_id = 20), - [1317] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef, 5, .alias_sequence_id = 20), - [1319] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef, 5, .alias_sequence_id = 21), - [1321] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef, 5, .alias_sequence_id = 21), - [1323] = {.count = 1, .reusable = true}, REDUCE(sym__type_declarator, 3), - [1325] = {.count = 1, .reusable = true}, REDUCE(sym_pointer_type_declarator, 3), - [1327] = {.count = 1, .reusable = true}, REDUCE(sym_array_type_declarator, 3), - [1329] = {.count = 1, .reusable = true}, SHIFT(552), - [1331] = {.count = 1, .reusable = true}, SHIFT(553), - [1333] = {.count = 1, .reusable = false}, SHIFT(553), - [1335] = {.count = 1, .reusable = true}, REDUCE(sym_type_definition, 5), - [1337] = {.count = 1, .reusable = false}, REDUCE(sym_type_definition, 5), - [1339] = {.count = 1, .reusable = true}, REDUCE(sym_declaration_list, 3), - [1341] = {.count = 1, .reusable = false}, REDUCE(sym_declaration_list, 3), - [1343] = {.count = 1, .reusable = true}, SHIFT(555), - [1345] = {.count = 1, .reusable = true}, SHIFT(556), - [1347] = {.count = 1, .reusable = false}, SHIFT(556), - [1349] = {.count = 1, .reusable = true}, REDUCE(sym_enumerator, 3), - [1351] = {.count = 1, .reusable = false}, SHIFT(557), - [1353] = {.count = 1, .reusable = false}, SHIFT(558), - [1355] = {.count = 1, .reusable = true}, SHIFT(559), - [1357] = {.count = 1, .reusable = true}, SHIFT(558), - [1359] = {.count = 1, .reusable = false}, SHIFT(560), - [1361] = {.count = 1, .reusable = true}, SHIFT(561), - [1363] = {.count = 1, .reusable = true}, SHIFT(562), - [1365] = {.count = 1, .reusable = false}, SHIFT(563), - [1367] = {.count = 1, .reusable = false}, SHIFT(564), - [1369] = {.count = 1, .reusable = true}, SHIFT(565), - [1371] = {.count = 1, .reusable = false}, SHIFT(566), - [1373] = {.count = 1, .reusable = true}, SHIFT(566), - [1375] = {.count = 1, .reusable = false}, SHIFT(567), - [1377] = {.count = 1, .reusable = false}, SHIFT(568), - [1379] = {.count = 1, .reusable = true}, REDUCE(sym_enumerator_list, 4), - [1381] = {.count = 1, .reusable = false}, REDUCE(sym_enumerator_list, 4), - [1383] = {.count = 1, .reusable = true}, REDUCE(aux_sym_enumerator_list_repeat1, 2), - [1385] = {.count = 1, .reusable = true}, SHIFT(570), - [1387] = {.count = 2, .reusable = true}, REDUCE(aux_sym_enumerator_list_repeat1, 2), SHIFT_REPEAT(571), - [1390] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if_in_field_declaration_list, 3, .alias_sequence_id = 5), - [1392] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if_in_field_declaration_list, 3, .alias_sequence_id = 5), - [1394] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_else_in_field_declaration_list, 1, .alias_sequence_id = 6), - [1396] = {.count = 1, .reusable = false}, SHIFT(573), - [1398] = {.count = 1, .reusable = true}, SHIFT(574), - [1400] = {.count = 1, .reusable = true}, SHIFT(575), - [1402] = {.count = 1, .reusable = true}, SHIFT(576), - [1404] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, .alias_sequence_id = 7), - [1406] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, .alias_sequence_id = 7), - [1408] = {.count = 1, .reusable = true}, SHIFT(580), - [1410] = {.count = 1, .reusable = true}, SHIFT(581), - [1412] = {.count = 1, .reusable = true}, SHIFT(582), - [1414] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, .alias_sequence_id = 8), - [1416] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, .alias_sequence_id = 8), - [1418] = {.count = 1, .reusable = true}, SHIFT(585), - [1420] = {.count = 1, .reusable = true}, SHIFT(586), - [1422] = {.count = 1, .reusable = true}, SHIFT(587), - [1424] = {.count = 1, .reusable = true}, SHIFT(591), - [1426] = {.count = 1, .reusable = true}, REDUCE(sym_pointer_field_declarator, 2), - [1428] = {.count = 1, .reusable = true}, SHIFT(594), - [1430] = {.count = 1, .reusable = true}, SHIFT(595), - [1432] = {.count = 1, .reusable = false}, SHIFT(595), - [1434] = {.count = 1, .reusable = true}, SHIFT(596), - [1436] = {.count = 1, .reusable = false}, SHIFT(597), - [1438] = {.count = 1, .reusable = false}, SHIFT(598), - [1440] = {.count = 1, .reusable = true}, SHIFT(599), - [1442] = {.count = 1, .reusable = true}, SHIFT(598), - [1444] = {.count = 1, .reusable = false}, SHIFT(600), - [1446] = {.count = 1, .reusable = true}, SHIFT(601), - [1448] = {.count = 1, .reusable = true}, SHIFT(602), - [1450] = {.count = 1, .reusable = false}, SHIFT(603), - [1452] = {.count = 1, .reusable = false}, SHIFT(604), - [1454] = {.count = 1, .reusable = true}, SHIFT(605), - [1456] = {.count = 1, .reusable = false}, SHIFT(606), - [1458] = {.count = 1, .reusable = true}, SHIFT(606), - [1460] = {.count = 1, .reusable = false}, SHIFT(607), - [1462] = {.count = 1, .reusable = false}, SHIFT(608), - [1464] = {.count = 1, .reusable = false}, REDUCE(sym_field_declaration, 3), - [1466] = {.count = 1, .reusable = true}, REDUCE(sym_field_declaration, 3), - [1468] = {.count = 1, .reusable = true}, SHIFT(611), - [1470] = {.count = 1, .reusable = true}, SHIFT(613), - [1472] = {.count = 1, .reusable = false}, SHIFT(613), - [1474] = {.count = 1, .reusable = true}, SHIFT(614), - [1476] = {.count = 1, .reusable = false}, SHIFT(614), - [1478] = {.count = 1, .reusable = true}, REDUCE(sym_function_field_declarator, 2), - [1480] = {.count = 1, .reusable = true}, SHIFT(615), - [1482] = {.count = 1, .reusable = true}, SHIFT(617), - [1484] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_pointer_declarator, 2), - [1486] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_array_declarator, 2), - [1488] = {.count = 1, .reusable = true}, SHIFT(620), - [1490] = {.count = 1, .reusable = true}, SHIFT(621), - [1492] = {.count = 1, .reusable = false}, SHIFT(621), - [1494] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_function_declarator, 2), - [1496] = {.count = 1, .reusable = true}, REDUCE(sym_type_descriptor, 3), - [1498] = {.count = 1, .reusable = false}, SHIFT(623), - [1500] = {.count = 1, .reusable = true}, SHIFT(624), - [1502] = {.count = 1, .reusable = false}, SHIFT(624), - [1504] = {.count = 1, .reusable = false}, SHIFT(625), - [1506] = {.count = 1, .reusable = false}, SHIFT(626), - [1508] = {.count = 1, .reusable = false}, SHIFT(627), - [1510] = {.count = 1, .reusable = false}, SHIFT(628), - [1512] = {.count = 1, .reusable = false}, SHIFT(629), - [1514] = {.count = 1, .reusable = false}, SHIFT(630), - [1516] = {.count = 1, .reusable = true}, SHIFT(631), - [1518] = {.count = 1, .reusable = false}, SHIFT(632), - [1520] = {.count = 1, .reusable = false}, SHIFT(633), - [1522] = {.count = 1, .reusable = false}, SHIFT(634), - [1524] = {.count = 1, .reusable = false}, SHIFT(635), - [1526] = {.count = 1, .reusable = false}, SHIFT(636), - [1528] = {.count = 1, .reusable = false}, SHIFT(637), - [1530] = {.count = 1, .reusable = false}, SHIFT(638), - [1532] = {.count = 1, .reusable = false}, SHIFT(639), - [1534] = {.count = 1, .reusable = false}, SHIFT(640), - [1536] = {.count = 1, .reusable = false}, SHIFT(641), - [1538] = {.count = 1, .reusable = false}, SHIFT(642), - [1540] = {.count = 1, .reusable = true}, SHIFT(649), - [1542] = {.count = 1, .reusable = false}, SHIFT(649), - [1544] = {.count = 1, .reusable = false}, SHIFT(643), - [1546] = {.count = 1, .reusable = false}, SHIFT(652), - [1548] = {.count = 1, .reusable = false}, SHIFT(656), - [1550] = {.count = 1, .reusable = true}, SHIFT(661), - [1552] = {.count = 1, .reusable = true}, SHIFT(662), - [1554] = {.count = 1, .reusable = false}, SHIFT(662), - [1556] = {.count = 1, .reusable = true}, SHIFT(663), - [1558] = {.count = 1, .reusable = true}, SHIFT(664), - [1560] = {.count = 1, .reusable = false}, SHIFT(665), - [1562] = {.count = 1, .reusable = false}, SHIFT(666), - [1564] = {.count = 1, .reusable = true}, SHIFT(667), - [1566] = {.count = 1, .reusable = true}, SHIFT(666), - [1568] = {.count = 1, .reusable = false}, SHIFT(668), - [1570] = {.count = 1, .reusable = true}, SHIFT(669), - [1572] = {.count = 1, .reusable = true}, SHIFT(670), - [1574] = {.count = 1, .reusable = false}, SHIFT(671), - [1576] = {.count = 1, .reusable = false}, SHIFT(672), - [1578] = {.count = 1, .reusable = true}, SHIFT(673), - [1580] = {.count = 1, .reusable = false}, SHIFT(674), - [1582] = {.count = 1, .reusable = true}, SHIFT(674), - [1584] = {.count = 1, .reusable = false}, SHIFT(675), - [1586] = {.count = 1, .reusable = false}, SHIFT(676), - [1588] = {.count = 1, .reusable = true}, SHIFT(677), - [1590] = {.count = 1, .reusable = true}, REDUCE(sym_pointer_expression, 2), - [1592] = {.count = 1, .reusable = false}, REDUCE(sym_pointer_expression, 2), - [1594] = {.count = 1, .reusable = true}, SHIFT(679), - [1596] = {.count = 1, .reusable = false}, SHIFT(679), - [1598] = {.count = 1, .reusable = false}, SHIFT(681), - [1600] = {.count = 1, .reusable = false}, SHIFT(682), - [1602] = {.count = 1, .reusable = false}, SHIFT(683), - [1604] = {.count = 1, .reusable = false}, SHIFT(684), - [1606] = {.count = 1, .reusable = false}, SHIFT(685), - [1608] = {.count = 1, .reusable = false}, SHIFT(686), - [1610] = {.count = 1, .reusable = false}, SHIFT(687), - [1612] = {.count = 1, .reusable = false}, SHIFT(689), - [1614] = {.count = 1, .reusable = true}, SHIFT(692), - [1616] = {.count = 1, .reusable = true}, SHIFT(693), - [1618] = {.count = 1, .reusable = false}, SHIFT(693), - [1620] = {.count = 1, .reusable = false}, SHIFT(694), - [1622] = {.count = 1, .reusable = false}, SHIFT(695), - [1624] = {.count = 1, .reusable = true}, SHIFT(696), - [1626] = {.count = 1, .reusable = true}, SHIFT(697), - [1628] = {.count = 1, .reusable = true}, SHIFT(695), - [1630] = {.count = 1, .reusable = false}, SHIFT(698), - [1632] = {.count = 1, .reusable = true}, SHIFT(699), - [1634] = {.count = 1, .reusable = true}, SHIFT(700), - [1636] = {.count = 1, .reusable = false}, SHIFT(701), - [1638] = {.count = 1, .reusable = false}, SHIFT(702), - [1640] = {.count = 1, .reusable = true}, SHIFT(703), - [1642] = {.count = 1, .reusable = false}, SHIFT(704), - [1644] = {.count = 1, .reusable = true}, SHIFT(704), - [1646] = {.count = 1, .reusable = false}, SHIFT(705), - [1648] = {.count = 1, .reusable = false}, SHIFT(706), - [1650] = {.count = 1, .reusable = false}, SHIFT(708), - [1652] = {.count = 1, .reusable = true}, SHIFT(714), - [1654] = {.count = 1, .reusable = false}, SHIFT(714), - [1656] = {.count = 1, .reusable = true}, SHIFT(715), - [1658] = {.count = 1, .reusable = true}, SHIFT(718), - [1660] = {.count = 1, .reusable = true}, SHIFT(719), - [1662] = {.count = 1, .reusable = true}, SHIFT(720), - [1664] = {.count = 1, .reusable = true}, SHIFT(721), - [1666] = {.count = 1, .reusable = true}, SHIFT(723), - [1668] = {.count = 1, .reusable = false}, SHIFT(723), - [1670] = {.count = 1, .reusable = false}, SHIFT(722), - [1672] = {.count = 1, .reusable = false}, REDUCE(sym_return_statement, 2), - [1674] = {.count = 1, .reusable = true}, REDUCE(sym_return_statement, 2), - [1676] = {.count = 1, .reusable = true}, SHIFT(724), - [1678] = {.count = 1, .reusable = false}, REDUCE(sym_break_statement, 2), - [1680] = {.count = 1, .reusable = true}, REDUCE(sym_break_statement, 2), - [1682] = {.count = 1, .reusable = false}, REDUCE(sym_continue_statement, 2), - [1684] = {.count = 1, .reusable = true}, REDUCE(sym_continue_statement, 2), - [1686] = {.count = 1, .reusable = true}, SHIFT(725), - [1688] = {.count = 1, .reusable = true}, REDUCE(sym_logical_expression, 2), - [1690] = {.count = 1, .reusable = false}, REDUCE(sym_logical_expression, 2), - [1692] = {.count = 1, .reusable = true}, REDUCE(sym_bitwise_expression, 2), - [1694] = {.count = 1, .reusable = false}, REDUCE(sym_bitwise_expression, 2), - [1696] = {.count = 1, .reusable = true}, REDUCE(sym_math_expression, 2), - [1698] = {.count = 1, .reusable = false}, REDUCE(sym_math_expression, 2), - [1700] = {.count = 1, .reusable = true}, REDUCE(sym_sizeof_expression, 2), - [1702] = {.count = 1, .reusable = false}, REDUCE(sym_sizeof_expression, 2), - [1704] = {.count = 1, .reusable = true}, SHIFT(727), - [1706] = {.count = 1, .reusable = true}, SHIFT(729), - [1708] = {.count = 1, .reusable = false}, SHIFT(729), - [1710] = {.count = 1, .reusable = false}, REDUCE(sym_expression_statement, 2), - [1712] = {.count = 1, .reusable = true}, REDUCE(sym_expression_statement, 2), - [1714] = {.count = 1, .reusable = true}, SHIFT(731), - [1716] = {.count = 1, .reusable = true}, SHIFT(732), - [1718] = {.count = 1, .reusable = false}, SHIFT(732), - [1720] = {.count = 1, .reusable = true}, SHIFT(733), - [1722] = {.count = 1, .reusable = false}, SHIFT(733), - [1724] = {.count = 1, .reusable = true}, SHIFT(734), - [1726] = {.count = 1, .reusable = false}, SHIFT(734), - [1728] = {.count = 1, .reusable = true}, SHIFT(735), - [1730] = {.count = 1, .reusable = false}, SHIFT(735), - [1732] = {.count = 1, .reusable = true}, SHIFT(736), - [1734] = {.count = 1, .reusable = false}, SHIFT(736), - [1736] = {.count = 1, .reusable = true}, SHIFT(737), - [1738] = {.count = 1, .reusable = false}, SHIFT(737), - [1740] = {.count = 1, .reusable = true}, SHIFT(738), - [1742] = {.count = 1, .reusable = false}, SHIFT(738), - [1744] = {.count = 1, .reusable = true}, SHIFT(739), - [1746] = {.count = 1, .reusable = false}, SHIFT(739), - [1748] = {.count = 1, .reusable = true}, SHIFT(740), - [1750] = {.count = 1, .reusable = false}, SHIFT(740), - [1752] = {.count = 1, .reusable = true}, SHIFT(741), - [1754] = {.count = 1, .reusable = false}, SHIFT(741), - [1756] = {.count = 1, .reusable = true}, SHIFT(742), - [1758] = {.count = 1, .reusable = false}, SHIFT(742), - [1760] = {.count = 1, .reusable = true}, SHIFT(743), - [1762] = {.count = 1, .reusable = false}, SHIFT(743), - [1764] = {.count = 1, .reusable = true}, SHIFT(744), - [1766] = {.count = 1, .reusable = false}, SHIFT(744), - [1768] = {.count = 1, .reusable = true}, SHIFT(745), - [1770] = {.count = 1, .reusable = false}, SHIFT(745), - [1772] = {.count = 1, .reusable = true}, SHIFT(746), - [1774] = {.count = 1, .reusable = true}, REDUCE(sym_call_expression, 2), - [1776] = {.count = 1, .reusable = false}, REDUCE(sym_call_expression, 2), - [1778] = {.count = 1, .reusable = true}, REDUCE(sym_concatenated_string, 2), - [1780] = {.count = 1, .reusable = false}, REDUCE(sym_concatenated_string, 2), - [1782] = {.count = 1, .reusable = true}, REDUCE(sym_compound_statement, 3), - [1784] = {.count = 1, .reusable = false}, REDUCE(sym_compound_statement, 3), - [1786] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(223), - [1789] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(3), - [1792] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(224), - [1795] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(225), - [1798] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(226), - [1801] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(7), - [1804] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(227), - [1807] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(8), - [1810] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(10), - [1813] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(126), - [1816] = {.count = 1, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), - [1818] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(229), - [1821] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(230), - [1824] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(11), - [1827] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(21), - [1830] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(18), - [1833] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(12), - [1836] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(13), - [1839] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(14), - [1842] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(231), - [1845] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(232), - [1848] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(233), - [1851] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(234), - [1854] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(235), - [1857] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(236), - [1860] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(237), - [1863] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(238), - [1866] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(239), - [1869] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(240), - [1872] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(241), - [1875] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(242), - [1878] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(243), - [1881] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(244), - [1884] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(244), - [1887] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(245), - [1890] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(251), - [1893] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(246), - [1896] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(22), - [1899] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(251), - [1902] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(247), - [1905] = {.count = 1, .reusable = true}, SHIFT(748), - [1907] = {.count = 1, .reusable = true}, REDUCE(sym_parameter_list, 3, .dynamic_precedence = 1), - [1909] = {.count = 1, .reusable = true}, SHIFT(749), - [1911] = {.count = 1, .reusable = true}, SHIFT(751), - [1913] = {.count = 1, .reusable = false}, SHIFT(752), - [1915] = {.count = 1, .reusable = true}, REDUCE(sym_parameter_declaration, 2), - [1917] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(478), - [1920] = {.count = 1, .reusable = true}, SHIFT(756), - [1922] = {.count = 1, .reusable = true}, REDUCE(sym_array_declarator, 4), - [1924] = {.count = 1, .reusable = true}, SHIFT(758), - [1926] = {.count = 1, .reusable = true}, SHIFT(760), - [1928] = {.count = 1, .reusable = false}, SHIFT(760), - [1930] = {.count = 1, .reusable = true}, SHIFT(761), - [1932] = {.count = 1, .reusable = false}, SHIFT(761), - [1934] = {.count = 1, .reusable = true}, SHIFT(762), - [1936] = {.count = 1, .reusable = false}, SHIFT(762), - [1938] = {.count = 1, .reusable = true}, SHIFT(763), - [1940] = {.count = 1, .reusable = false}, SHIFT(763), - [1942] = {.count = 1, .reusable = true}, SHIFT(764), - [1944] = {.count = 1, .reusable = false}, SHIFT(764), - [1946] = {.count = 1, .reusable = true}, SHIFT(765), - [1948] = {.count = 1, .reusable = false}, SHIFT(765), - [1950] = {.count = 1, .reusable = true}, SHIFT(766), - [1952] = {.count = 1, .reusable = false}, SHIFT(766), - [1954] = {.count = 1, .reusable = true}, SHIFT(767), - [1956] = {.count = 1, .reusable = false}, SHIFT(767), - [1958] = {.count = 1, .reusable = true}, SHIFT(768), - [1960] = {.count = 1, .reusable = false}, SHIFT(768), - [1962] = {.count = 1, .reusable = true}, SHIFT(769), - [1964] = {.count = 1, .reusable = false}, SHIFT(769), - [1966] = {.count = 1, .reusable = true}, SHIFT(770), - [1968] = {.count = 1, .reusable = false}, SHIFT(770), - [1970] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(499), - [1973] = {.count = 1, .reusable = true}, SHIFT(773), - [1975] = {.count = 1, .reusable = true}, REDUCE(sym_initializer_list, 2), - [1977] = {.count = 1, .reusable = false}, REDUCE(sym_initializer_list, 2), - [1979] = {.count = 1, .reusable = true}, SHIFT(774), - [1981] = {.count = 1, .reusable = false}, SHIFT(774), - [1983] = {.count = 1, .reusable = true}, SHIFT(775), - [1985] = {.count = 1, .reusable = true}, SHIFT(776), - [1987] = {.count = 1, .reusable = true}, SHIFT(778), - [1989] = {.count = 1, .reusable = true}, REDUCE(aux_sym_preproc_params_repeat1, 2), - [1991] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_params, 4), - [1993] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_params_repeat1, 2), SHIFT_REPEAT(280), - [1996] = {.count = 1, .reusable = true}, SHIFT(780), - [1998] = {.count = 1, .reusable = true}, SHIFT(781), - [2000] = {.count = 1, .reusable = true}, SHIFT(782), - [2002] = {.count = 1, .reusable = true}, SHIFT(783), - [2004] = {.count = 1, .reusable = false}, SHIFT(784), - [2006] = {.count = 1, .reusable = true}, SHIFT(785), - [2008] = {.count = 1, .reusable = false}, SHIFT(786), - [2010] = {.count = 1, .reusable = false}, SHIFT(787), - [2012] = {.count = 1, .reusable = true}, SHIFT(788), - [2014] = {.count = 1, .reusable = false}, SHIFT(788), - [2016] = {.count = 1, .reusable = true}, SHIFT(790), - [2018] = {.count = 1, .reusable = false}, SHIFT(790), - [2020] = {.count = 1, .reusable = true}, SHIFT(792), - [2022] = {.count = 1, .reusable = false}, SHIFT(792), - [2024] = {.count = 1, .reusable = true}, SHIFT(794), - [2026] = {.count = 1, .reusable = true}, SHIFT(796), - [2028] = {.count = 1, .reusable = true}, SHIFT(798), - [2030] = {.count = 1, .reusable = true}, SHIFT(800), - [2032] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_elif, 4, .alias_sequence_id = 14), - [2034] = {.count = 1, .reusable = true}, SHIFT(801), - [2036] = {.count = 1, .reusable = true}, SHIFT(802), - [2038] = {.count = 1, .reusable = true}, SHIFT(803), - [2040] = {.count = 1, .reusable = true}, REDUCE(sym_array_type_declarator, 4), - [2042] = {.count = 1, .reusable = true}, SHIFT(804), - [2044] = {.count = 1, .reusable = true}, SHIFT(805), - [2046] = {.count = 1, .reusable = true}, SHIFT(807), - [2048] = {.count = 1, .reusable = false}, SHIFT(807), - [2050] = {.count = 1, .reusable = true}, SHIFT(808), - [2052] = {.count = 1, .reusable = false}, SHIFT(808), - [2054] = {.count = 1, .reusable = true}, SHIFT(809), - [2056] = {.count = 1, .reusable = false}, SHIFT(809), - [2058] = {.count = 1, .reusable = true}, SHIFT(810), - [2060] = {.count = 1, .reusable = false}, SHIFT(810), - [2062] = {.count = 1, .reusable = true}, SHIFT(811), - [2064] = {.count = 1, .reusable = false}, SHIFT(811), - [2066] = {.count = 1, .reusable = true}, SHIFT(812), - [2068] = {.count = 1, .reusable = false}, SHIFT(812), - [2070] = {.count = 1, .reusable = true}, SHIFT(813), - [2072] = {.count = 1, .reusable = false}, SHIFT(813), - [2074] = {.count = 1, .reusable = true}, SHIFT(814), - [2076] = {.count = 1, .reusable = false}, SHIFT(814), - [2078] = {.count = 1, .reusable = true}, SHIFT(815), - [2080] = {.count = 1, .reusable = false}, SHIFT(815), - [2082] = {.count = 1, .reusable = true}, SHIFT(816), - [2084] = {.count = 1, .reusable = false}, SHIFT(816), - [2086] = {.count = 1, .reusable = true}, SHIFT(817), - [2088] = {.count = 1, .reusable = false}, SHIFT(817), - [2090] = {.count = 1, .reusable = true}, REDUCE(sym_enumerator_list, 5), - [2092] = {.count = 1, .reusable = false}, REDUCE(sym_enumerator_list, 5), - [2094] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_else_in_field_declaration_list, 2, .alias_sequence_id = 6), - [2096] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_elif_in_field_declaration_list, 2, .alias_sequence_id = 14), - [2098] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, .alias_sequence_id = 22), - [2100] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, .alias_sequence_id = 22), - [2102] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, .alias_sequence_id = 23), - [2104] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, .alias_sequence_id = 23), - [2106] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, .alias_sequence_id = 15), - [2108] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, .alias_sequence_id = 15), - [2110] = {.count = 1, .reusable = true}, SHIFT(823), - [2112] = {.count = 1, .reusable = true}, SHIFT(824), - [2114] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .alias_sequence_id = 24), - [2116] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .alias_sequence_id = 24), - [2118] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .alias_sequence_id = 25), - [2120] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .alias_sequence_id = 25), - [2122] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .alias_sequence_id = 16), - [2124] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .alias_sequence_id = 16), - [2126] = {.count = 1, .reusable = true}, SHIFT(825), - [2128] = {.count = 1, .reusable = true}, SHIFT(826), - [2130] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .alias_sequence_id = 26), - [2132] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .alias_sequence_id = 26), - [2134] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .alias_sequence_id = 27), - [2136] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .alias_sequence_id = 27), - [2138] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .alias_sequence_id = 17), - [2140] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .alias_sequence_id = 17), - [2142] = {.count = 1, .reusable = true}, SHIFT(827), - [2144] = {.count = 1, .reusable = true}, SHIFT(828), - [2146] = {.count = 1, .reusable = true}, REDUCE(sym__field_declarator, 3), - [2148] = {.count = 1, .reusable = true}, REDUCE(sym_pointer_field_declarator, 3), - [2150] = {.count = 1, .reusable = true}, SHIFT(829), - [2152] = {.count = 1, .reusable = false}, REDUCE(sym_field_declaration, 4), - [2154] = {.count = 1, .reusable = true}, REDUCE(sym_field_declaration, 4), - [2156] = {.count = 1, .reusable = true}, SHIFT(831), - [2158] = {.count = 1, .reusable = false}, SHIFT(831), - [2160] = {.count = 1, .reusable = true}, SHIFT(832), - [2162] = {.count = 1, .reusable = false}, SHIFT(832), - [2164] = {.count = 1, .reusable = true}, SHIFT(833), - [2166] = {.count = 1, .reusable = false}, SHIFT(833), - [2168] = {.count = 1, .reusable = true}, SHIFT(834), - [2170] = {.count = 1, .reusable = false}, SHIFT(834), - [2172] = {.count = 1, .reusable = true}, SHIFT(835), - [2174] = {.count = 1, .reusable = false}, SHIFT(835), - [2176] = {.count = 1, .reusable = true}, SHIFT(836), - [2178] = {.count = 1, .reusable = false}, SHIFT(836), - [2180] = {.count = 1, .reusable = true}, SHIFT(837), - [2182] = {.count = 1, .reusable = false}, SHIFT(837), - [2184] = {.count = 1, .reusable = true}, SHIFT(838), - [2186] = {.count = 1, .reusable = false}, SHIFT(838), - [2188] = {.count = 1, .reusable = true}, SHIFT(839), - [2190] = {.count = 1, .reusable = false}, SHIFT(839), - [2192] = {.count = 1, .reusable = true}, SHIFT(840), - [2194] = {.count = 1, .reusable = false}, SHIFT(840), - [2196] = {.count = 1, .reusable = true}, SHIFT(841), - [2198] = {.count = 1, .reusable = false}, SHIFT(841), - [2200] = {.count = 1, .reusable = true}, REDUCE(aux_sym_field_declaration_repeat1, 2), - [2202] = {.count = 1, .reusable = true}, REDUCE(sym_array_field_declarator, 3), - [2204] = {.count = 1, .reusable = true}, SHIFT(843), - [2206] = {.count = 1, .reusable = true}, SHIFT(844), - [2208] = {.count = 1, .reusable = false}, SHIFT(844), - [2210] = {.count = 1, .reusable = true}, SHIFT(845), - [2212] = {.count = 1, .reusable = true}, SHIFT(846), - [2214] = {.count = 1, .reusable = false}, SHIFT(846), - [2216] = {.count = 2, .reusable = true}, REDUCE(aux_sym_field_declaration_repeat1, 2), SHIFT_REPEAT(377), - [2219] = {.count = 1, .reusable = true}, REDUCE(sym__abstract_declarator, 3), - [2221] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_pointer_declarator, 3), - [2223] = {.count = 2, .reusable = true}, REDUCE(aux_sym_type_definition_repeat1, 2), SHIFT_REPEAT(11), - [2226] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_array_declarator, 3), - [2228] = {.count = 1, .reusable = true}, SHIFT(847), - [2230] = {.count = 1, .reusable = true}, SHIFT(848), - [2232] = {.count = 1, .reusable = false}, SHIFT(848), - [2234] = {.count = 1, .reusable = false}, SHIFT(849), - [2236] = {.count = 1, .reusable = false}, SHIFT(850), - [2238] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if_in_compound_statement, 3, .alias_sequence_id = 5), - [2240] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if_in_compound_statement, 3, .alias_sequence_id = 5), - [2242] = {.count = 1, .reusable = true}, SHIFT(851), - [2244] = {.count = 1, .reusable = true}, SHIFT(852), - [2246] = {.count = 1, .reusable = false}, SHIFT(853), - [2248] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_else_in_compound_statement, 1, .alias_sequence_id = 6), - [2250] = {.count = 1, .reusable = false}, SHIFT(854), - [2252] = {.count = 1, .reusable = false}, SHIFT(855), - [2254] = {.count = 1, .reusable = true}, SHIFT(856), - [2256] = {.count = 1, .reusable = false}, SHIFT(857), - [2258] = {.count = 1, .reusable = false}, SHIFT(858), - [2260] = {.count = 1, .reusable = false}, SHIFT(859), - [2262] = {.count = 1, .reusable = false}, SHIFT(860), - [2264] = {.count = 1, .reusable = false}, SHIFT(861), - [2266] = {.count = 1, .reusable = false}, SHIFT(862), - [2268] = {.count = 1, .reusable = false}, SHIFT(863), - [2270] = {.count = 1, .reusable = false}, SHIFT(864), - [2272] = {.count = 1, .reusable = false}, SHIFT(865), - [2274] = {.count = 1, .reusable = false}, SHIFT(866), - [2276] = {.count = 1, .reusable = false}, SHIFT(867), - [2278] = {.count = 1, .reusable = true}, SHIFT(872), - [2280] = {.count = 1, .reusable = false}, SHIFT(872), - [2282] = {.count = 1, .reusable = false}, SHIFT(868), - [2284] = {.count = 1, .reusable = false}, SHIFT(875), - [2286] = {.count = 1, .reusable = true}, SHIFT(878), - [2288] = {.count = 1, .reusable = false}, SHIFT(878), - [2290] = {.count = 1, .reusable = true}, SHIFT(879), - [2292] = {.count = 1, .reusable = true}, SHIFT(882), - [2294] = {.count = 1, .reusable = true}, SHIFT(883), - [2296] = {.count = 1, .reusable = true}, SHIFT(884), - [2298] = {.count = 1, .reusable = false}, SHIFT(884), - [2300] = {.count = 1, .reusable = true}, SHIFT(885), - [2302] = {.count = 1, .reusable = true}, SHIFT(886), - [2304] = {.count = 1, .reusable = true}, SHIFT(887), - [2306] = {.count = 1, .reusable = true}, SHIFT(888), - [2308] = {.count = 1, .reusable = true}, SHIFT(889), - [2310] = {.count = 1, .reusable = true}, SHIFT(890), - [2312] = {.count = 1, .reusable = true}, SHIFT(891), - [2314] = {.count = 1, .reusable = true}, SHIFT(892), - [2316] = {.count = 1, .reusable = false}, SHIFT(893), - [2318] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_compound_statement, 3, .alias_sequence_id = 7), - [2320] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_compound_statement, 3, .alias_sequence_id = 7), - [2322] = {.count = 1, .reusable = true}, SHIFT(897), - [2324] = {.count = 1, .reusable = true}, SHIFT(898), - [2326] = {.count = 1, .reusable = false}, SHIFT(899), - [2328] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_compound_statement, 3, .alias_sequence_id = 8), - [2330] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_compound_statement, 3, .alias_sequence_id = 8), - [2332] = {.count = 1, .reusable = true}, SHIFT(902), - [2334] = {.count = 1, .reusable = true}, SHIFT(903), - [2336] = {.count = 1, .reusable = false}, SHIFT(904), - [2338] = {.count = 1, .reusable = true}, SHIFT(907), - [2340] = {.count = 1, .reusable = true}, SHIFT(909), - [2342] = {.count = 1, .reusable = false}, SHIFT(909), - [2344] = {.count = 1, .reusable = true}, REDUCE(sym_parenthesized_expression, 3), - [2346] = {.count = 1, .reusable = false}, REDUCE(sym_parenthesized_expression, 3), - [2348] = {.count = 1, .reusable = true}, SHIFT(910), - [2350] = {.count = 1, .reusable = false}, SHIFT(910), - [2352] = {.count = 1, .reusable = true}, SHIFT(911), - [2354] = {.count = 1, .reusable = false}, SHIFT(911), - [2356] = {.count = 1, .reusable = true}, SHIFT(912), - [2358] = {.count = 1, .reusable = false}, SHIFT(912), - [2360] = {.count = 1, .reusable = true}, SHIFT(913), - [2362] = {.count = 1, .reusable = false}, SHIFT(913), - [2364] = {.count = 1, .reusable = true}, SHIFT(914), - [2366] = {.count = 1, .reusable = false}, SHIFT(914), - [2368] = {.count = 1, .reusable = true}, SHIFT(915), - [2370] = {.count = 1, .reusable = false}, SHIFT(915), - [2372] = {.count = 1, .reusable = true}, SHIFT(916), - [2374] = {.count = 1, .reusable = false}, SHIFT(916), - [2376] = {.count = 1, .reusable = true}, SHIFT(917), - [2378] = {.count = 1, .reusable = false}, SHIFT(917), - [2380] = {.count = 1, .reusable = true}, SHIFT(918), - [2382] = {.count = 1, .reusable = false}, SHIFT(918), - [2384] = {.count = 1, .reusable = true}, SHIFT(919), - [2386] = {.count = 1, .reusable = false}, SHIFT(919), - [2388] = {.count = 1, .reusable = true}, SHIFT(920), - [2390] = {.count = 1, .reusable = false}, SHIFT(920), - [2392] = {.count = 1, .reusable = true}, SHIFT(921), - [2394] = {.count = 1, .reusable = false}, SHIFT(921), - [2396] = {.count = 1, .reusable = true}, SHIFT(924), - [2398] = {.count = 1, .reusable = true}, SHIFT(927), - [2400] = {.count = 1, .reusable = false}, SHIFT(927), - [2402] = {.count = 1, .reusable = true}, SHIFT(928), - [2404] = {.count = 1, .reusable = true}, SHIFT(930), - [2406] = {.count = 1, .reusable = true}, SHIFT(931), - [2408] = {.count = 1, .reusable = false}, REDUCE(sym_if_statement, 3), - [2410] = {.count = 1, .reusable = true}, REDUCE(sym_if_statement, 3), - [2412] = {.count = 1, .reusable = false}, SHIFT(932), - [2414] = {.count = 1, .reusable = false}, REDUCE(sym_switch_statement, 3), - [2416] = {.count = 1, .reusable = true}, REDUCE(sym_switch_statement, 3), - [2418] = {.count = 1, .reusable = true}, SHIFT(933), - [2420] = {.count = 1, .reusable = true}, SHIFT(935), - [2422] = {.count = 1, .reusable = false}, SHIFT(935), - [2424] = {.count = 1, .reusable = true}, SHIFT(937), - [2426] = {.count = 1, .reusable = false}, SHIFT(937), - [2428] = {.count = 1, .reusable = true}, SHIFT(938), - [2430] = {.count = 1, .reusable = false}, SHIFT(938), - [2432] = {.count = 1, .reusable = true}, SHIFT(939), - [2434] = {.count = 1, .reusable = false}, SHIFT(939), - [2436] = {.count = 1, .reusable = true}, SHIFT(940), - [2438] = {.count = 1, .reusable = false}, SHIFT(940), - [2440] = {.count = 1, .reusable = true}, SHIFT(941), - [2442] = {.count = 1, .reusable = false}, SHIFT(941), - [2444] = {.count = 1, .reusable = true}, SHIFT(942), - [2446] = {.count = 1, .reusable = false}, SHIFT(942), - [2448] = {.count = 1, .reusable = true}, SHIFT(943), - [2450] = {.count = 1, .reusable = false}, SHIFT(943), - [2452] = {.count = 1, .reusable = true}, SHIFT(944), - [2454] = {.count = 1, .reusable = false}, SHIFT(944), - [2456] = {.count = 1, .reusable = true}, SHIFT(945), - [2458] = {.count = 1, .reusable = false}, SHIFT(945), - [2460] = {.count = 1, .reusable = true}, SHIFT(946), - [2462] = {.count = 1, .reusable = false}, SHIFT(946), - [2464] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 3), - [2466] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 3), - [2468] = {.count = 1, .reusable = false}, REDUCE(sym_while_statement, 3), - [2470] = {.count = 1, .reusable = true}, REDUCE(sym_while_statement, 3), - [2472] = {.count = 1, .reusable = false}, SHIFT(948), - [2474] = {.count = 1, .reusable = false}, SHIFT(949), - [2476] = {.count = 1, .reusable = false}, SHIFT(950), - [2478] = {.count = 1, .reusable = false}, SHIFT(951), - [2480] = {.count = 1, .reusable = false}, SHIFT(952), - [2482] = {.count = 1, .reusable = false}, SHIFT(953), - [2484] = {.count = 1, .reusable = false}, SHIFT(954), - [2486] = {.count = 1, .reusable = true}, SHIFT(956), - [2488] = {.count = 1, .reusable = false}, SHIFT(957), - [2490] = {.count = 1, .reusable = true}, SHIFT(958), - [2492] = {.count = 1, .reusable = true}, SHIFT(959), - [2494] = {.count = 1, .reusable = true}, SHIFT(960), - [2496] = {.count = 1, .reusable = false}, SHIFT(960), - [2498] = {.count = 1, .reusable = true}, SHIFT(962), - [2500] = {.count = 1, .reusable = true}, SHIFT(963), - [2502] = {.count = 1, .reusable = false}, SHIFT(963), - [2504] = {.count = 1, .reusable = true}, SHIFT(964), - [2506] = {.count = 1, .reusable = false}, REDUCE(sym_return_statement, 3), - [2508] = {.count = 1, .reusable = true}, REDUCE(sym_return_statement, 3), - [2510] = {.count = 1, .reusable = false}, REDUCE(sym_goto_statement, 3, .alias_sequence_id = 28), - [2512] = {.count = 1, .reusable = true}, REDUCE(sym_goto_statement, 3, .alias_sequence_id = 28), - [2514] = {.count = 1, .reusable = true}, SHIFT(965), - [2516] = {.count = 1, .reusable = true}, REDUCE(sym_char_literal, 3), - [2518] = {.count = 1, .reusable = false}, REDUCE(sym_char_literal, 3), - [2520] = {.count = 1, .reusable = false}, REDUCE(sym_labeled_statement, 3, .alias_sequence_id = 29), - [2522] = {.count = 1, .reusable = true}, REDUCE(sym_labeled_statement, 3, .alias_sequence_id = 29), - [2524] = {.count = 1, .reusable = true}, REDUCE(sym_comma_expression, 3), - [2526] = {.count = 1, .reusable = true}, REDUCE(sym_argument_list, 2, .dynamic_precedence = 1), - [2528] = {.count = 1, .reusable = false}, REDUCE(sym_argument_list, 2, .dynamic_precedence = 1), - [2530] = {.count = 1, .reusable = true}, SHIFT(966), - [2532] = {.count = 1, .reusable = true}, SHIFT(967), - [2534] = {.count = 1, .reusable = true}, REDUCE(sym_math_expression, 3), - [2536] = {.count = 1, .reusable = false}, REDUCE(sym_math_expression, 3), - [2538] = {.count = 1, .reusable = true}, SHIFT(969), - [2540] = {.count = 1, .reusable = true}, REDUCE(sym_assignment_expression, 3), - [2542] = {.count = 1, .reusable = true}, SHIFT(970), - [2544] = {.count = 1, .reusable = true}, REDUCE(sym_bitwise_expression, 3), - [2546] = {.count = 1, .reusable = false}, REDUCE(sym_bitwise_expression, 3), - [2548] = {.count = 1, .reusable = true}, REDUCE(sym_logical_expression, 3), - [2550] = {.count = 1, .reusable = false}, REDUCE(sym_logical_expression, 3), - [2552] = {.count = 1, .reusable = true}, REDUCE(sym_equality_expression, 3), - [2554] = {.count = 1, .reusable = false}, REDUCE(sym_equality_expression, 3), - [2556] = {.count = 1, .reusable = true}, REDUCE(sym_relational_expression, 3), - [2558] = {.count = 1, .reusable = false}, REDUCE(sym_relational_expression, 3), - [2560] = {.count = 1, .reusable = true}, REDUCE(sym_shift_expression, 3), - [2562] = {.count = 1, .reusable = false}, REDUCE(sym_shift_expression, 3), - [2564] = {.count = 1, .reusable = true}, REDUCE(sym_field_expression, 3, .alias_sequence_id = 30), - [2566] = {.count = 1, .reusable = false}, REDUCE(sym_field_expression, 3, .alias_sequence_id = 30), - [2568] = {.count = 1, .reusable = true}, REDUCE(aux_sym_concatenated_string_repeat1, 2), - [2570] = {.count = 1, .reusable = false}, REDUCE(aux_sym_concatenated_string_repeat1, 2), - [2572] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(22), - [2575] = {.count = 1, .reusable = true}, REDUCE(aux_sym_parameter_list_repeat1, 2), - [2577] = {.count = 1, .reusable = true}, REDUCE(sym_parameter_list, 4, .dynamic_precedence = 1), - [2579] = {.count = 2, .reusable = true}, REDUCE(aux_sym_parameter_list_repeat1, 2), SHIFT_REPEAT(469), - [2582] = {.count = 2, .reusable = true}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .alias_sequence_id = 1), - [2585] = {.count = 3, .reusable = true}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .alias_sequence_id = 1), SHIFT(42), - [2589] = {.count = 1, .reusable = true}, SHIFT(973), - [2591] = {.count = 1, .reusable = true}, REDUCE(sym_array_declarator, 5), - [2593] = {.count = 1, .reusable = true}, SHIFT(974), - [2595] = {.count = 1, .reusable = true}, REDUCE(sym_initializer_list, 3), - [2597] = {.count = 1, .reusable = false}, REDUCE(sym_initializer_list, 3), - [2599] = {.count = 1, .reusable = true}, SHIFT(975), - [2601] = {.count = 1, .reusable = true}, REDUCE(sym_field_designator, 2, .alias_sequence_id = 31), - [2603] = {.count = 1, .reusable = true}, SHIFT(976), - [2605] = {.count = 1, .reusable = true}, SHIFT(977), - [2607] = {.count = 1, .reusable = false}, SHIFT(977), - [2609] = {.count = 1, .reusable = true}, SHIFT(979), - [2611] = {.count = 1, .reusable = true}, SHIFT(981), - [2613] = {.count = 1, .reusable = false}, SHIFT(981), - [2615] = {.count = 2, .reusable = true}, REDUCE(aux_sym_initializer_pair_repeat1, 2), SHIFT_REPEAT(502), - [2618] = {.count = 1, .reusable = true}, REDUCE(aux_sym_initializer_pair_repeat1, 2), - [2620] = {.count = 2, .reusable = true}, REDUCE(aux_sym_initializer_pair_repeat1, 2), SHIFT_REPEAT(503), - [2623] = {.count = 1, .reusable = true}, SHIFT(983), - [2625] = {.count = 1, .reusable = true}, SHIFT(984), - [2627] = {.count = 1, .reusable = true}, SHIFT(985), - [2629] = {.count = 1, .reusable = true}, SHIFT(986), - [2631] = {.count = 1, .reusable = true}, SHIFT(987), - [2633] = {.count = 1, .reusable = true}, SHIFT(988), - [2635] = {.count = 1, .reusable = true}, SHIFT(989), - [2637] = {.count = 1, .reusable = true}, REDUCE(sym_array_type_declarator, 5), - [2639] = {.count = 1, .reusable = true}, SHIFT(990), - [2641] = {.count = 1, .reusable = true}, SHIFT(991), - [2643] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_elif_in_field_declaration_list, 3, .alias_sequence_id = 32), - [2645] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_elif_in_field_declaration_list, 3, .alias_sequence_id = 33), - [2647] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_elif_in_field_declaration_list, 3, .alias_sequence_id = 14), - [2649] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .alias_sequence_id = 34), - [2651] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .alias_sequence_id = 34), - [2653] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .alias_sequence_id = 35), - [2655] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .alias_sequence_id = 35), - [2657] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, .alias_sequence_id = 36), - [2659] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, .alias_sequence_id = 36), - [2661] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, .alias_sequence_id = 37), - [2663] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, .alias_sequence_id = 37), - [2665] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, .alias_sequence_id = 38), - [2667] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, .alias_sequence_id = 38), - [2669] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, .alias_sequence_id = 39), - [2671] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, .alias_sequence_id = 39), - [2673] = {.count = 1, .reusable = true}, SHIFT(994), - [2675] = {.count = 1, .reusable = true}, SHIFT(995), - [2677] = {.count = 1, .reusable = true}, REDUCE(sym_array_field_declarator, 4), - [2679] = {.count = 1, .reusable = true}, SHIFT(996), - [2681] = {.count = 1, .reusable = false}, REDUCE(sym_field_declaration, 5), - [2683] = {.count = 1, .reusable = true}, REDUCE(sym_field_declaration, 5), - [2685] = {.count = 1, .reusable = true}, SHIFT(997), - [2687] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_array_declarator, 4), - [2689] = {.count = 1, .reusable = true}, SHIFT(998), - [2691] = {.count = 1, .reusable = false}, SHIFT(999), - [2693] = {.count = 1, .reusable = false}, SHIFT(1003), - [2695] = {.count = 1, .reusable = false}, SHIFT(1007), - [2697] = {.count = 1, .reusable = false}, SHIFT(1011), - [2699] = {.count = 1, .reusable = true}, SHIFT(1012), - [2701] = {.count = 1, .reusable = true}, SHIFT(1013), - [2703] = {.count = 1, .reusable = true}, SHIFT(1016), - [2705] = {.count = 1, .reusable = false}, SHIFT(1016), - [2707] = {.count = 1, .reusable = true}, SHIFT(1017), - [2709] = {.count = 1, .reusable = true}, SHIFT(1020), - [2711] = {.count = 1, .reusable = true}, SHIFT(1021), - [2713] = {.count = 1, .reusable = true}, SHIFT(1022), - [2715] = {.count = 1, .reusable = false}, SHIFT(1022), - [2717] = {.count = 1, .reusable = true}, SHIFT(1023), - [2719] = {.count = 1, .reusable = true}, SHIFT(1024), - [2721] = {.count = 1, .reusable = true}, SHIFT(1025), - [2723] = {.count = 1, .reusable = true}, SHIFT(1026), - [2725] = {.count = 1, .reusable = true}, SHIFT(1027), - [2727] = {.count = 1, .reusable = true}, SHIFT(1028), - [2729] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_else_in_compound_statement, 2, .alias_sequence_id = 6), - [2731] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_elif_in_compound_statement, 2, .alias_sequence_id = 14), - [2733] = {.count = 1, .reusable = false}, SHIFT(1033), - [2735] = {.count = 1, .reusable = false}, SHIFT(1034), - [2737] = {.count = 1, .reusable = false}, SHIFT(1035), - [2739] = {.count = 1, .reusable = false}, SHIFT(1036), - [2741] = {.count = 1, .reusable = false}, SHIFT(1037), - [2743] = {.count = 1, .reusable = false}, SHIFT(1038), - [2745] = {.count = 1, .reusable = false}, SHIFT(1039), - [2747] = {.count = 1, .reusable = false}, SHIFT(1041), - [2749] = {.count = 1, .reusable = true}, SHIFT(1043), - [2751] = {.count = 1, .reusable = false}, SHIFT(1044), - [2753] = {.count = 1, .reusable = true}, SHIFT(1048), - [2755] = {.count = 1, .reusable = true}, SHIFT(1049), - [2757] = {.count = 1, .reusable = true}, SHIFT(1050), - [2759] = {.count = 1, .reusable = false}, SHIFT(1050), - [2761] = {.count = 1, .reusable = true}, SHIFT(1051), - [2763] = {.count = 1, .reusable = true}, SHIFT(1052), - [2765] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if_in_compound_statement, 4, .alias_sequence_id = 22), - [2767] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if_in_compound_statement, 4, .alias_sequence_id = 22), - [2769] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if_in_compound_statement, 4, .alias_sequence_id = 23), - [2771] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if_in_compound_statement, 4, .alias_sequence_id = 23), - [2773] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if_in_compound_statement, 4, .alias_sequence_id = 15), - [2775] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if_in_compound_statement, 4, .alias_sequence_id = 15), - [2777] = {.count = 1, .reusable = true}, SHIFT(1054), - [2779] = {.count = 1, .reusable = true}, SHIFT(1055), - [2781] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(61), - [2784] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(62), - [2787] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(625), - [2790] = {.count = 1, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), - [2792] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(627), - [2795] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(628), - [2798] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(69), - [2801] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(631), - [2804] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(70), - [2807] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(322), - [2810] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(632), - [2813] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(633), - [2816] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(634), - [2819] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(635), - [2822] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(636), - [2825] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(637), - [2828] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(638), - [2831] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(639), - [2834] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(640), - [2837] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(641), - [2840] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(642), - [2843] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(649), - [2846] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(649), - [2849] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(643), - [2852] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_compound_statement, 4, .alias_sequence_id = 24), - [2854] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_compound_statement, 4, .alias_sequence_id = 24), - [2856] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_compound_statement, 4, .alias_sequence_id = 25), - [2858] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_compound_statement, 4, .alias_sequence_id = 25), - [2860] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_compound_statement, 4, .alias_sequence_id = 16), - [2862] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_compound_statement, 4, .alias_sequence_id = 16), - [2864] = {.count = 1, .reusable = true}, SHIFT(1056), - [2866] = {.count = 1, .reusable = true}, SHIFT(1057), - [2868] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_compound_statement, 4, .alias_sequence_id = 26), - [2870] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_compound_statement, 4, .alias_sequence_id = 26), - [2872] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_compound_statement, 4, .alias_sequence_id = 27), - [2874] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_compound_statement, 4, .alias_sequence_id = 27), - [2876] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_compound_statement, 4, .alias_sequence_id = 17), - [2878] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_compound_statement, 4, .alias_sequence_id = 17), - [2880] = {.count = 1, .reusable = true}, SHIFT(1058), - [2882] = {.count = 1, .reusable = true}, SHIFT(1059), - [2884] = {.count = 1, .reusable = true}, SHIFT(1060), - [2886] = {.count = 1, .reusable = true}, SHIFT(1061), - [2888] = {.count = 1, .reusable = true}, REDUCE(sym_cast_expression, 4), - [2890] = {.count = 1, .reusable = false}, REDUCE(sym_cast_expression, 4), - [2892] = {.count = 1, .reusable = true}, REDUCE(sym_compound_literal_expression, 4), - [2894] = {.count = 1, .reusable = false}, REDUCE(sym_compound_literal_expression, 4), - [2896] = {.count = 1, .reusable = true}, SHIFT(1063), - [2898] = {.count = 1, .reusable = false}, SHIFT(1064), - [2900] = {.count = 1, .reusable = true}, SHIFT(1065), - [2902] = {.count = 1, .reusable = true}, SHIFT(1066), - [2904] = {.count = 1, .reusable = false}, SHIFT(1066), - [2906] = {.count = 1, .reusable = true}, SHIFT(1068), - [2908] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 4), - [2910] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 4), - [2912] = {.count = 1, .reusable = true}, SHIFT(1069), - [2914] = {.count = 1, .reusable = true}, SHIFT(1072), - [2916] = {.count = 1, .reusable = false}, SHIFT(1072), - [2918] = {.count = 1, .reusable = true}, SHIFT(1073), - [2920] = {.count = 1, .reusable = true}, SHIFT(1075), - [2922] = {.count = 1, .reusable = true}, SHIFT(1076), - [2924] = {.count = 1, .reusable = true}, SHIFT(1077), - [2926] = {.count = 1, .reusable = true}, SHIFT(1078), - [2928] = {.count = 1, .reusable = true}, SHIFT(1079), - [2930] = {.count = 1, .reusable = true}, SHIFT(1080), - [2932] = {.count = 1, .reusable = false}, SHIFT(1080), - [2934] = {.count = 1, .reusable = true}, SHIFT(1081), - [2936] = {.count = 1, .reusable = false}, REDUCE(sym_do_statement, 4), - [2938] = {.count = 1, .reusable = true}, REDUCE(sym_do_statement, 4), - [2940] = {.count = 1, .reusable = true}, SHIFT(1082), - [2942] = {.count = 1, .reusable = true}, SHIFT(1083), - [2944] = {.count = 1, .reusable = false}, SHIFT(1083), - [2946] = {.count = 1, .reusable = true}, SHIFT(1084), - [2948] = {.count = 1, .reusable = true}, SHIFT(1085), - [2950] = {.count = 1, .reusable = false}, SHIFT(1085), - [2952] = {.count = 1, .reusable = true}, REDUCE(sym_sizeof_expression, 4), - [2954] = {.count = 1, .reusable = false}, SHIFT(230), - [2956] = {.count = 1, .reusable = false}, REDUCE(sym_sizeof_expression, 4), - [2958] = {.count = 1, .reusable = false}, SHIFT(242), - [2960] = {.count = 1, .reusable = true}, SHIFT(1086), - [2962] = {.count = 1, .reusable = false}, SHIFT(1086), - [2964] = {.count = 1, .reusable = true}, REDUCE(sym_argument_list, 3, .dynamic_precedence = 1), - [2966] = {.count = 1, .reusable = false}, REDUCE(sym_argument_list, 3, .dynamic_precedence = 1), - [2968] = {.count = 1, .reusable = true}, SHIFT(1087), - [2970] = {.count = 1, .reusable = true}, REDUCE(sym_subscript_expression, 4), - [2972] = {.count = 1, .reusable = false}, REDUCE(sym_subscript_expression, 4), - [2974] = {.count = 1, .reusable = true}, SHIFT(1089), - [2976] = {.count = 1, .reusable = false}, SHIFT(1089), - [2978] = {.count = 1, .reusable = false}, SHIFT(262), - [2980] = {.count = 1, .reusable = false}, SHIFT(264), - [2982] = {.count = 1, .reusable = true}, SHIFT(1091), - [2984] = {.count = 1, .reusable = false}, SHIFT(1091), - [2986] = {.count = 1, .reusable = true}, REDUCE(sym_subscript_designator, 3), - [2988] = {.count = 1, .reusable = true}, REDUCE(sym_initializer_list, 4), - [2990] = {.count = 1, .reusable = false}, REDUCE(sym_initializer_list, 4), - [2992] = {.count = 1, .reusable = true}, REDUCE(aux_sym_initializer_list_repeat1, 2), - [2994] = {.count = 1, .reusable = true}, SHIFT(1092), - [2996] = {.count = 2, .reusable = true}, REDUCE(aux_sym_initializer_list_repeat1, 2), SHIFT_REPEAT(1093), - [2999] = {.count = 1, .reusable = true}, REDUCE(sym_initializer_pair, 3), - [3001] = {.count = 1, .reusable = false}, SHIFT(340), - [3003] = {.count = 1, .reusable = false}, SHIFT(341), - [3005] = {.count = 1, .reusable = true}, SHIFT(1094), - [3007] = {.count = 1, .reusable = false}, SHIFT(1094), - [3009] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_elif_in_field_declaration_list, 4, .alias_sequence_id = 40), - [3011] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_elif_in_field_declaration_list, 4, .alias_sequence_id = 41), - [3013] = {.count = 1, .reusable = false}, SHIFT(370), - [3015] = {.count = 1, .reusable = false}, SHIFT(371), - [3017] = {.count = 1, .reusable = true}, SHIFT(1095), - [3019] = {.count = 1, .reusable = false}, SHIFT(1095), - [3021] = {.count = 1, .reusable = true}, REDUCE(sym_array_field_declarator, 5), - [3023] = {.count = 1, .reusable = false}, REDUCE(sym_field_declaration, 6), - [3025] = {.count = 1, .reusable = true}, REDUCE(sym_field_declaration, 6), - [3027] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_array_declarator, 5), - [3029] = {.count = 1, .reusable = true}, SHIFT(1096), - [3031] = {.count = 1, .reusable = true}, SHIFT(1097), - [3033] = {.count = 1, .reusable = false}, SHIFT(1098), - [3035] = {.count = 1, .reusable = true}, SHIFT(1101), - [3037] = {.count = 1, .reusable = true}, SHIFT(1102), - [3039] = {.count = 1, .reusable = false}, SHIFT(1103), - [3041] = {.count = 1, .reusable = true}, SHIFT(1106), - [3043] = {.count = 1, .reusable = true}, SHIFT(1107), - [3045] = {.count = 1, .reusable = false}, SHIFT(1108), - [3047] = {.count = 1, .reusable = false}, SHIFT(1111), - [3049] = {.count = 1, .reusable = false}, SHIFT(1115), - [3051] = {.count = 1, .reusable = false}, SHIFT(1119), - [3053] = {.count = 1, .reusable = false}, SHIFT(1123), - [3055] = {.count = 1, .reusable = false}, SHIFT(1124), - [3057] = {.count = 1, .reusable = false}, SHIFT(1125), - [3059] = {.count = 1, .reusable = false}, SHIFT(1126), - [3061] = {.count = 1, .reusable = false}, SHIFT(1127), - [3063] = {.count = 1, .reusable = false}, SHIFT(1128), - [3065] = {.count = 1, .reusable = false}, SHIFT(1129), - [3067] = {.count = 1, .reusable = false}, SHIFT(1131), - [3069] = {.count = 1, .reusable = true}, SHIFT(1133), - [3071] = {.count = 1, .reusable = false}, SHIFT(1134), - [3073] = {.count = 1, .reusable = true}, SHIFT(1138), - [3075] = {.count = 1, .reusable = true}, SHIFT(1139), - [3077] = {.count = 1, .reusable = true}, SHIFT(1140), - [3079] = {.count = 1, .reusable = false}, SHIFT(1140), - [3081] = {.count = 1, .reusable = true}, SHIFT(1141), - [3083] = {.count = 1, .reusable = true}, SHIFT(1142), - [3085] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(148), - [3088] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(149), - [3091] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(853), - [3094] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(854), - [3097] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(855), - [3100] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(153), - [3103] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(856), - [3106] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(154), - [3109] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(541), - [3112] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(857), - [3115] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(858), - [3118] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(859), - [3121] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(860), - [3124] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(861), - [3127] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(862), - [3130] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(863), - [3133] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(864), - [3136] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(865), - [3139] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(866), - [3142] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(867), - [3145] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(872), - [3148] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(872), - [3151] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(868), - [3154] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_elif_in_compound_statement, 3, .alias_sequence_id = 32), - [3156] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_elif_in_compound_statement, 3, .alias_sequence_id = 33), - [3158] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_elif_in_compound_statement, 3, .alias_sequence_id = 14), - [3160] = {.count = 1, .reusable = true}, SHIFT(1148), - [3162] = {.count = 1, .reusable = false}, SHIFT(1148), - [3164] = {.count = 1, .reusable = true}, SHIFT(1149), - [3166] = {.count = 1, .reusable = true}, SHIFT(1151), - [3168] = {.count = 1, .reusable = true}, SHIFT(1152), - [3170] = {.count = 1, .reusable = false}, SHIFT(1153), - [3172] = {.count = 1, .reusable = true}, SHIFT(1155), - [3174] = {.count = 1, .reusable = true}, SHIFT(1157), - [3176] = {.count = 1, .reusable = true}, SHIFT(1158), - [3178] = {.count = 1, .reusable = false}, SHIFT(1158), - [3180] = {.count = 1, .reusable = true}, SHIFT(1159), - [3182] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if_in_compound_statement, 5, .alias_sequence_id = 34), - [3184] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if_in_compound_statement, 5, .alias_sequence_id = 34), - [3186] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if_in_compound_statement, 5, .alias_sequence_id = 35), - [3188] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if_in_compound_statement, 5, .alias_sequence_id = 35), - [3190] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_compound_statement, 5, .alias_sequence_id = 36), - [3192] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_compound_statement, 5, .alias_sequence_id = 36), - [3194] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_compound_statement, 5, .alias_sequence_id = 37), - [3196] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_compound_statement, 5, .alias_sequence_id = 37), - [3198] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_compound_statement, 5, .alias_sequence_id = 38), - [3200] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_compound_statement, 5, .alias_sequence_id = 38), - [3202] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_compound_statement, 5, .alias_sequence_id = 39), - [3204] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_compound_statement, 5, .alias_sequence_id = 39), - [3206] = {.count = 1, .reusable = false}, SHIFT(400), - [3208] = {.count = 1, .reusable = false}, SHIFT(401), - [3210] = {.count = 1, .reusable = true}, SHIFT(1160), - [3212] = {.count = 1, .reusable = false}, SHIFT(1160), - [3214] = {.count = 1, .reusable = false}, SHIFT(1161), - [3216] = {.count = 1, .reusable = true}, SHIFT(1162), - [3218] = {.count = 1, .reusable = true}, SHIFT(1163), - [3220] = {.count = 1, .reusable = false}, SHIFT(1163), - [3222] = {.count = 1, .reusable = true}, SHIFT(1164), - [3224] = {.count = 1, .reusable = false}, REDUCE(sym_if_statement, 5), - [3226] = {.count = 1, .reusable = true}, REDUCE(sym_if_statement, 5), - [3228] = {.count = 1, .reusable = false}, SHIFT(415), - [3230] = {.count = 1, .reusable = false}, SHIFT(416), - [3232] = {.count = 1, .reusable = true}, SHIFT(1165), - [3234] = {.count = 1, .reusable = false}, SHIFT(1165), - [3236] = {.count = 1, .reusable = true}, SHIFT(1167), - [3238] = {.count = 1, .reusable = false}, SHIFT(1168), - [3240] = {.count = 1, .reusable = true}, SHIFT(1169), - [3242] = {.count = 1, .reusable = true}, SHIFT(1170), - [3244] = {.count = 1, .reusable = false}, SHIFT(1170), - [3246] = {.count = 1, .reusable = true}, SHIFT(1171), - [3248] = {.count = 1, .reusable = true}, SHIFT(1172), - [3250] = {.count = 1, .reusable = false}, SHIFT(1172), - [3252] = {.count = 1, .reusable = true}, SHIFT(1173), - [3254] = {.count = 1, .reusable = true}, SHIFT(1174), - [3256] = {.count = 1, .reusable = false}, SHIFT(1174), - [3258] = {.count = 1, .reusable = true}, SHIFT(1176), - [3260] = {.count = 1, .reusable = true}, SHIFT(1178), - [3262] = {.count = 1, .reusable = false}, SHIFT(1178), - [3264] = {.count = 1, .reusable = true}, SHIFT(1179), - [3266] = {.count = 1, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), - [3268] = {.count = 1, .reusable = true}, REDUCE(sym_argument_list, 4, .dynamic_precedence = 1), - [3270] = {.count = 1, .reusable = false}, REDUCE(sym_argument_list, 4, .dynamic_precedence = 1), - [3272] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(966), - [3275] = {.count = 1, .reusable = true}, REDUCE(sym_conditional_expression, 5), - [3277] = {.count = 1, .reusable = true}, REDUCE(sym_initializer_list, 5), - [3279] = {.count = 1, .reusable = false}, REDUCE(sym_initializer_list, 5), - [3281] = {.count = 1, .reusable = true}, SHIFT(1180), - [3283] = {.count = 1, .reusable = true}, SHIFT(1181), - [3285] = {.count = 1, .reusable = true}, SHIFT(1182), - [3287] = {.count = 1, .reusable = true}, SHIFT(1183), - [3289] = {.count = 1, .reusable = true}, SHIFT(1184), - [3291] = {.count = 1, .reusable = true}, SHIFT(1185), - [3293] = {.count = 1, .reusable = true}, SHIFT(1186), - [3295] = {.count = 1, .reusable = true}, SHIFT(1187), - [3297] = {.count = 1, .reusable = false}, SHIFT(1188), - [3299] = {.count = 1, .reusable = true}, SHIFT(1191), - [3301] = {.count = 1, .reusable = true}, SHIFT(1192), - [3303] = {.count = 1, .reusable = false}, SHIFT(1193), - [3305] = {.count = 1, .reusable = true}, SHIFT(1196), - [3307] = {.count = 1, .reusable = true}, SHIFT(1197), - [3309] = {.count = 1, .reusable = false}, SHIFT(1198), - [3311] = {.count = 1, .reusable = true}, SHIFT(1203), - [3313] = {.count = 1, .reusable = false}, SHIFT(1203), - [3315] = {.count = 1, .reusable = true}, SHIFT(1204), - [3317] = {.count = 1, .reusable = true}, SHIFT(1206), - [3319] = {.count = 1, .reusable = true}, SHIFT(1207), - [3321] = {.count = 1, .reusable = false}, SHIFT(1208), - [3323] = {.count = 1, .reusable = true}, SHIFT(1210), - [3325] = {.count = 1, .reusable = true}, SHIFT(1212), - [3327] = {.count = 1, .reusable = true}, SHIFT(1213), - [3329] = {.count = 1, .reusable = false}, SHIFT(1213), - [3331] = {.count = 1, .reusable = true}, SHIFT(1214), - [3333] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_elif_in_compound_statement, 4, .alias_sequence_id = 40), - [3335] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_elif_in_compound_statement, 4, .alias_sequence_id = 41), - [3337] = {.count = 1, .reusable = true}, SHIFT(1216), - [3339] = {.count = 1, .reusable = false}, SHIFT(1217), - [3341] = {.count = 1, .reusable = true}, SHIFT(1218), - [3343] = {.count = 1, .reusable = true}, SHIFT(1219), - [3345] = {.count = 1, .reusable = false}, SHIFT(1219), - [3347] = {.count = 1, .reusable = true}, SHIFT(1221), - [3349] = {.count = 1, .reusable = false}, SHIFT(1221), - [3351] = {.count = 1, .reusable = true}, SHIFT(1223), - [3353] = {.count = 1, .reusable = true}, SHIFT(1224), - [3355] = {.count = 1, .reusable = false}, SHIFT(1224), - [3357] = {.count = 1, .reusable = true}, SHIFT(1225), - [3359] = {.count = 1, .reusable = true}, SHIFT(1226), - [3361] = {.count = 1, .reusable = false}, SHIFT(1226), - [3363] = {.count = 1, .reusable = true}, SHIFT(1227), - [3365] = {.count = 1, .reusable = true}, SHIFT(1228), - [3367] = {.count = 1, .reusable = false}, SHIFT(1228), - [3369] = {.count = 1, .reusable = true}, SHIFT(1229), - [3371] = {.count = 1, .reusable = true}, SHIFT(1230), - [3373] = {.count = 1, .reusable = false}, SHIFT(1230), - [3375] = {.count = 1, .reusable = true}, SHIFT(1231), - [3377] = {.count = 1, .reusable = true}, SHIFT(1232), - [3379] = {.count = 1, .reusable = true}, SHIFT(1233), - [3381] = {.count = 1, .reusable = false}, SHIFT(1233), - [3383] = {.count = 1, .reusable = true}, SHIFT(1234), - [3385] = {.count = 1, .reusable = true}, SHIFT(1235), - [3387] = {.count = 1, .reusable = true}, SHIFT(1237), - [3389] = {.count = 1, .reusable = false}, SHIFT(1237), - [3391] = {.count = 1, .reusable = true}, SHIFT(1238), - [3393] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 6), - [3395] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 6), - [3397] = {.count = 1, .reusable = true}, SHIFT(1240), - [3399] = {.count = 1, .reusable = true}, SHIFT(1242), - [3401] = {.count = 1, .reusable = false}, SHIFT(1242), - [3403] = {.count = 1, .reusable = true}, SHIFT(1243), - [3405] = {.count = 1, .reusable = true}, SHIFT(1244), - [3407] = {.count = 1, .reusable = true}, SHIFT(1245), - [3409] = {.count = 1, .reusable = true}, SHIFT(1246), - [3411] = {.count = 1, .reusable = true}, SHIFT(1247), - [3413] = {.count = 1, .reusable = true}, SHIFT(1248), - [3415] = {.count = 1, .reusable = true}, SHIFT(1250), - [3417] = {.count = 1, .reusable = false}, SHIFT(1251), - [3419] = {.count = 1, .reusable = true}, SHIFT(1252), - [3421] = {.count = 1, .reusable = true}, SHIFT(1253), - [3423] = {.count = 1, .reusable = false}, SHIFT(1253), - [3425] = {.count = 1, .reusable = true}, SHIFT(1255), - [3427] = {.count = 1, .reusable = false}, SHIFT(1255), - [3429] = {.count = 1, .reusable = true}, SHIFT(1257), - [3431] = {.count = 1, .reusable = true}, SHIFT(1258), - [3433] = {.count = 1, .reusable = false}, SHIFT(1258), - [3435] = {.count = 1, .reusable = true}, SHIFT(1259), - [3437] = {.count = 1, .reusable = true}, SHIFT(1260), - [3439] = {.count = 1, .reusable = false}, SHIFT(1260), - [3441] = {.count = 1, .reusable = false}, SHIFT(1261), - [3443] = {.count = 1, .reusable = true}, SHIFT(1262), - [3445] = {.count = 1, .reusable = true}, SHIFT(1263), - [3447] = {.count = 1, .reusable = false}, SHIFT(1263), - [3449] = {.count = 1, .reusable = true}, SHIFT(1264), - [3451] = {.count = 1, .reusable = true}, SHIFT(1265), - [3453] = {.count = 1, .reusable = true}, SHIFT(1267), - [3455] = {.count = 1, .reusable = true}, SHIFT(1269), - [3457] = {.count = 1, .reusable = false}, SHIFT(1269), - [3459] = {.count = 1, .reusable = true}, SHIFT(1270), - [3461] = {.count = 1, .reusable = true}, SHIFT(1271), - [3463] = {.count = 1, .reusable = true}, SHIFT(1273), - [3465] = {.count = 1, .reusable = false}, SHIFT(1273), - [3467] = {.count = 1, .reusable = true}, SHIFT(1274), - [3469] = {.count = 1, .reusable = true}, SHIFT(1275), - [3471] = {.count = 1, .reusable = true}, SHIFT(1276), - [3473] = {.count = 1, .reusable = false}, SHIFT(1276), - [3475] = {.count = 1, .reusable = true}, SHIFT(1277), - [3477] = {.count = 1, .reusable = true}, SHIFT(1278), - [3479] = {.count = 1, .reusable = false}, SHIFT(1278), - [3481] = {.count = 1, .reusable = true}, SHIFT(1279), - [3483] = {.count = 1, .reusable = true}, SHIFT(1281), - [3485] = {.count = 1, .reusable = false}, SHIFT(1281), - [3487] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 7), - [3489] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 7), - [3491] = {.count = 1, .reusable = true}, SHIFT(1283), - [3493] = {.count = 1, .reusable = false}, SHIFT(1285), - [3495] = {.count = 1, .reusable = true}, SHIFT(1286), - [3497] = {.count = 1, .reusable = true}, SHIFT(1287), - [3499] = {.count = 1, .reusable = false}, SHIFT(1287), - [3501] = {.count = 1, .reusable = true}, SHIFT(1288), - [3503] = {.count = 1, .reusable = true}, SHIFT(1289), - [3505] = {.count = 1, .reusable = true}, SHIFT(1291), - [3507] = {.count = 1, .reusable = true}, SHIFT(1293), - [3509] = {.count = 1, .reusable = false}, SHIFT(1293), - [3511] = {.count = 1, .reusable = true}, SHIFT(1294), - [3513] = {.count = 1, .reusable = true}, SHIFT(1295), - [3515] = {.count = 1, .reusable = true}, SHIFT(1296), - [3517] = {.count = 1, .reusable = false}, SHIFT(1296), - [3519] = {.count = 1, .reusable = true}, SHIFT(1297), - [3521] = {.count = 1, .reusable = true}, SHIFT(1298), - [3523] = {.count = 1, .reusable = false}, SHIFT(1298), - [3525] = {.count = 1, .reusable = true}, SHIFT(1300), - [3527] = {.count = 1, .reusable = true}, SHIFT(1302), - [3529] = {.count = 1, .reusable = false}, SHIFT(1302), - [3531] = {.count = 1, .reusable = true}, SHIFT(1303), - [3533] = {.count = 1, .reusable = true}, SHIFT(1305), - [3535] = {.count = 1, .reusable = false}, SHIFT(1305), - [3537] = {.count = 1, .reusable = true}, SHIFT(1306), - [3539] = {.count = 1, .reusable = true}, SHIFT(1308), - [3541] = {.count = 1, .reusable = false}, SHIFT(1308), - [3543] = {.count = 1, .reusable = true}, SHIFT(1309), - [3545] = {.count = 1, .reusable = true}, SHIFT(1310), - [3547] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 8), - [3549] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 8), - [3551] = {.count = 1, .reusable = true}, SHIFT(1313), - [3553] = {.count = 1, .reusable = true}, SHIFT(1314), - [3555] = {.count = 1, .reusable = true}, SHIFT(1315), - [3557] = {.count = 1, .reusable = false}, SHIFT(1315), - [3559] = {.count = 1, .reusable = true}, SHIFT(1316), - [3561] = {.count = 1, .reusable = true}, SHIFT(1317), - [3563] = {.count = 1, .reusable = false}, SHIFT(1317), - [3565] = {.count = 1, .reusable = true}, SHIFT(1319), - [3567] = {.count = 1, .reusable = true}, SHIFT(1321), - [3569] = {.count = 1, .reusable = false}, SHIFT(1321), - [3571] = {.count = 1, .reusable = true}, SHIFT(1322), - [3573] = {.count = 1, .reusable = true}, SHIFT(1324), - [3575] = {.count = 1, .reusable = false}, SHIFT(1324), - [3577] = {.count = 1, .reusable = true}, SHIFT(1325), - [3579] = {.count = 1, .reusable = true}, SHIFT(1327), - [3581] = {.count = 1, .reusable = true}, SHIFT(1329), - [3583] = {.count = 1, .reusable = true}, SHIFT(1331), - [3585] = {.count = 1, .reusable = true}, SHIFT(1333), - [3587] = {.count = 1, .reusable = false}, SHIFT(1333), - [3589] = {.count = 1, .reusable = true}, SHIFT(1334), - [3591] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 9), - [3593] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 9), - [3595] = {.count = 1, .reusable = true}, SHIFT(1336), - [3597] = {.count = 1, .reusable = true}, SHIFT(1338), - [3599] = {.count = 1, .reusable = false}, SHIFT(1338), - [3601] = {.count = 1, .reusable = true}, SHIFT(1339), - [3603] = {.count = 1, .reusable = true}, SHIFT(1341), - [3605] = {.count = 1, .reusable = true}, SHIFT(1343), - [3607] = {.count = 1, .reusable = true}, SHIFT(1345), - [3609] = {.count = 1, .reusable = false}, SHIFT(1345), - [3611] = {.count = 1, .reusable = true}, SHIFT(1347), - [3613] = {.count = 1, .reusable = true}, SHIFT(1348), - [3615] = {.count = 1, .reusable = true}, SHIFT(1349), - [3617] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 10), - [3619] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 10), - [3621] = {.count = 1, .reusable = true}, SHIFT(1351), - [3623] = {.count = 1, .reusable = true}, SHIFT(1353), - [3625] = {.count = 1, .reusable = false}, SHIFT(1353), - [3627] = {.count = 1, .reusable = true}, SHIFT(1355), - [3629] = {.count = 1, .reusable = true}, SHIFT(1356), - [3631] = {.count = 1, .reusable = true}, SHIFT(1359), - [3633] = {.count = 1, .reusable = true}, SHIFT(1360), - [3635] = {.count = 1, .reusable = true}, SHIFT(1363), - [3637] = {.count = 1, .reusable = true}, SHIFT(1364), + [121] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_include, 2, .alias_sequence_id = 2), + [123] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_include, 2, .alias_sequence_id = 2), + [125] = {.count = 1, .reusable = false}, SHIFT(57), + [127] = {.count = 1, .reusable = true}, SHIFT(58), + [129] = {.count = 1, .reusable = false}, SHIFT(59), + [131] = {.count = 1, .reusable = false}, SHIFT(61), + [133] = {.count = 1, .reusable = false}, SHIFT(62), + [135] = {.count = 1, .reusable = false}, SHIFT(63), + [137] = {.count = 1, .reusable = false}, SHIFT(64), + [139] = {.count = 1, .reusable = false}, SHIFT(65), + [141] = {.count = 1, .reusable = false}, SHIFT(66), + [143] = {.count = 1, .reusable = false}, SHIFT(67), + [145] = {.count = 1, .reusable = false}, SHIFT(68), + [147] = {.count = 1, .reusable = false}, SHIFT(69), + [149] = {.count = 1, .reusable = false}, SHIFT(70), + [151] = {.count = 1, .reusable = false}, SHIFT(71), + [153] = {.count = 1, .reusable = false}, SHIFT(75), + [155] = {.count = 1, .reusable = false}, SHIFT(78), + [157] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_call, 2), + [159] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_call, 2), + [161] = {.count = 1, .reusable = true}, SHIFT(81), + [163] = {.count = 1, .reusable = true}, SHIFT(82), + [165] = {.count = 1, .reusable = true}, SHIFT(83), + [167] = {.count = 1, .reusable = true}, SHIFT(84), + [169] = {.count = 1, .reusable = false}, SHIFT(89), + [171] = {.count = 1, .reusable = false}, SHIFT(91), + [173] = {.count = 1, .reusable = true}, SHIFT(92), + [175] = {.count = 1, .reusable = false}, SHIFT(97), + [177] = {.count = 1, .reusable = false}, SHIFT(95), + [179] = {.count = 1, .reusable = true}, SHIFT(98), + [181] = {.count = 1, .reusable = true}, SHIFT(99), + [183] = {.count = 1, .reusable = true}, SHIFT(100), + [185] = {.count = 1, .reusable = true}, REDUCE(sym_enum_specifier, 2, .alias_sequence_id = 3), + [187] = {.count = 1, .reusable = false}, REDUCE(sym_enum_specifier, 2, .alias_sequence_id = 3), + [189] = {.count = 1, .reusable = true}, REDUCE(sym_enum_specifier, 2), + [191] = {.count = 1, .reusable = false}, REDUCE(sym_enum_specifier, 2), + [193] = {.count = 1, .reusable = false}, SHIFT(103), + [195] = {.count = 1, .reusable = true}, SHIFT(104), + [197] = {.count = 1, .reusable = true}, SHIFT(105), + [199] = {.count = 1, .reusable = true}, SHIFT(106), + [201] = {.count = 1, .reusable = false}, SHIFT(113), + [203] = {.count = 1, .reusable = false}, SHIFT(110), + [205] = {.count = 1, .reusable = true}, REDUCE(sym_struct_specifier, 2, .alias_sequence_id = 3), + [207] = {.count = 1, .reusable = false}, REDUCE(sym_struct_specifier, 2, .alias_sequence_id = 3), + [209] = {.count = 1, .reusable = true}, REDUCE(sym_struct_specifier, 2), + [211] = {.count = 1, .reusable = false}, REDUCE(sym_struct_specifier, 2), + [213] = {.count = 1, .reusable = true}, REDUCE(sym_union_specifier, 2, .alias_sequence_id = 3), + [215] = {.count = 1, .reusable = false}, REDUCE(sym_union_specifier, 2, .alias_sequence_id = 3), + [217] = {.count = 1, .reusable = true}, REDUCE(sym_union_specifier, 2), + [219] = {.count = 1, .reusable = false}, REDUCE(sym_union_specifier, 2), + [221] = {.count = 1, .reusable = false}, SHIFT(119), + [223] = {.count = 1, .reusable = false}, SHIFT(116), + [225] = {.count = 1, .reusable = true}, REDUCE(sym__empty_declaration, 2), + [227] = {.count = 1, .reusable = false}, REDUCE(sym__empty_declaration, 2), + [229] = {.count = 1, .reusable = true}, SHIFT(120), + [231] = {.count = 1, .reusable = true}, SHIFT(121), + [233] = {.count = 1, .reusable = false}, SHIFT(122), + [235] = {.count = 1, .reusable = true}, SHIFT(124), + [237] = {.count = 1, .reusable = true}, SHIFT(125), + [239] = {.count = 1, .reusable = true}, SHIFT(126), + [241] = {.count = 1, .reusable = true}, SHIFT(127), + [243] = {.count = 1, .reusable = true}, SHIFT(128), + [245] = {.count = 1, .reusable = true}, SHIFT(129), + [247] = {.count = 1, .reusable = true}, REDUCE(sym__declaration_specifiers, 2), + [249] = {.count = 1, .reusable = false}, REDUCE(sym__declaration_specifiers, 2), + [251] = {.count = 1, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), + [253] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2), + [256] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3), + [259] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4), + [262] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5), + [265] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6), + [268] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(7), + [271] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(8), + [274] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(9), + [277] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(10), + [280] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(11), + [283] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(21), + [286] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(18), + [289] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(12), + [292] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(13), + [295] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(14), + [298] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(15), + [301] = {.count = 2, .reusable = false}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(10), + [304] = {.count = 2, .reusable = false}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(11), + [307] = {.count = 1, .reusable = false}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), + [309] = {.count = 1, .reusable = true}, REDUCE(sym_sized_type_specifier, 2), + [311] = {.count = 1, .reusable = false}, REDUCE(sym_sized_type_specifier, 2), + [313] = {.count = 1, .reusable = true}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .alias_sequence_id = 3), + [315] = {.count = 1, .reusable = false}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .alias_sequence_id = 3), + [317] = {.count = 1, .reusable = true}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), + [319] = {.count = 1, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), + [321] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(54), + [324] = {.count = 1, .reusable = true}, REDUCE(sym_string_literal, 2), + [326] = {.count = 1, .reusable = false}, REDUCE(sym_string_literal, 2), + [328] = {.count = 1, .reusable = false}, SHIFT(135), + [330] = {.count = 1, .reusable = true}, SHIFT(136), + [332] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_def, 3, .alias_sequence_id = 4), + [334] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_def, 3, .alias_sequence_id = 4), + [336] = {.count = 1, .reusable = true}, SHIFT(137), + [338] = {.count = 1, .reusable = true}, SHIFT(138), + [340] = {.count = 1, .reusable = true}, SHIFT(139), + [342] = {.count = 1, .reusable = false}, SHIFT(140), + [344] = {.count = 1, .reusable = false}, SHIFT(141), + [346] = {.count = 1, .reusable = true}, SHIFT(142), + [348] = {.count = 1, .reusable = true}, SHIFT(143), + [350] = {.count = 1, .reusable = true}, SHIFT(144), + [352] = {.count = 1, .reusable = false}, SHIFT(145), + [354] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if, 3, .alias_sequence_id = 5), + [356] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if, 3, .alias_sequence_id = 5), + [358] = {.count = 1, .reusable = true}, SHIFT(146), + [360] = {.count = 1, .reusable = true}, SHIFT(147), + [362] = {.count = 1, .reusable = false}, SHIFT(148), + [364] = {.count = 1, .reusable = false}, SHIFT(149), + [366] = {.count = 1, .reusable = false}, SHIFT(150), + [368] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_else, 1, .alias_sequence_id = 6), + [370] = {.count = 1, .reusable = false}, SHIFT(151), + [372] = {.count = 1, .reusable = false}, SHIFT(152), + [374] = {.count = 1, .reusable = false}, SHIFT(153), + [376] = {.count = 1, .reusable = false}, SHIFT(154), + [378] = {.count = 1, .reusable = false}, SHIFT(155), + [380] = {.count = 1, .reusable = false}, SHIFT(158), + [382] = {.count = 1, .reusable = false}, SHIFT(159), + [384] = {.count = 1, .reusable = false}, SHIFT(160), + [386] = {.count = 1, .reusable = false}, SHIFT(161), + [388] = {.count = 1, .reusable = true}, SHIFT(164), + [390] = {.count = 1, .reusable = true}, SHIFT(165), + [392] = {.count = 1, .reusable = true}, SHIFT(166), + [394] = {.count = 1, .reusable = false}, SHIFT(164), + [396] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef, 3, .alias_sequence_id = 7), + [398] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef, 3, .alias_sequence_id = 7), + [400] = {.count = 1, .reusable = true}, SHIFT(170), + [402] = {.count = 1, .reusable = false}, SHIFT(170), + [404] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef, 3, .alias_sequence_id = 8), + [406] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef, 3, .alias_sequence_id = 8), + [408] = {.count = 1, .reusable = true}, SHIFT(172), + [410] = {.count = 1, .reusable = false}, SHIFT(172), + [412] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_call, 3), + [414] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_call, 3), + [416] = {.count = 1, .reusable = true}, SHIFT(174), + [418] = {.count = 1, .reusable = false}, SHIFT(84), + [420] = {.count = 1, .reusable = true}, REDUCE(sym__type_declarator, 1, .alias_sequence_id = 1), + [422] = {.count = 1, .reusable = true}, SHIFT(178), + [424] = {.count = 1, .reusable = true}, SHIFT(179), + [426] = {.count = 1, .reusable = true}, REDUCE(sym__type_declarator, 1, .alias_sequence_id = 9), + [428] = {.count = 1, .reusable = true}, REDUCE(sym__type_declarator, 1, .alias_sequence_id = 10), + [430] = {.count = 1, .reusable = true}, REDUCE(sym__type_declarator, 1, .alias_sequence_id = 11), + [432] = {.count = 2, .reusable = false}, REDUCE(aux_sym_type_definition_repeat1, 2), SHIFT_REPEAT(11), + [435] = {.count = 1, .reusable = false}, REDUCE(aux_sym_type_definition_repeat1, 2), + [437] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(91), + [440] = {.count = 1, .reusable = true}, SHIFT(182), + [442] = {.count = 1, .reusable = true}, REDUCE(sym_linkage_specification, 3), + [444] = {.count = 1, .reusable = false}, REDUCE(sym_linkage_specification, 3), + [446] = {.count = 1, .reusable = false}, SHIFT(185), + [448] = {.count = 1, .reusable = false}, SHIFT(186), + [450] = {.count = 1, .reusable = true}, SHIFT(187), + [452] = {.count = 1, .reusable = true}, REDUCE(sym_enumerator_list, 2), + [454] = {.count = 1, .reusable = false}, REDUCE(sym_enumerator_list, 2), + [456] = {.count = 1, .reusable = true}, REDUCE(sym_enumerator, 1), + [458] = {.count = 1, .reusable = true}, SHIFT(188), + [460] = {.count = 1, .reusable = true}, SHIFT(189), + [462] = {.count = 1, .reusable = true}, REDUCE(sym_enum_specifier, 3, .alias_sequence_id = 3), + [464] = {.count = 1, .reusable = false}, REDUCE(sym_enum_specifier, 3, .alias_sequence_id = 3), + [466] = {.count = 1, .reusable = false}, SHIFT(191), + [468] = {.count = 1, .reusable = true}, SHIFT(192), + [470] = {.count = 1, .reusable = true}, SHIFT(193), + [472] = {.count = 1, .reusable = true}, REDUCE(sym_field_declaration_list, 2), + [474] = {.count = 1, .reusable = false}, REDUCE(sym_field_declaration_list, 2), + [476] = {.count = 1, .reusable = false}, REDUCE(sym__field_declaration_list_item, 1, .alias_sequence_id = 12), + [478] = {.count = 1, .reusable = true}, REDUCE(sym__field_declaration_list_item, 1, .alias_sequence_id = 12), + [480] = {.count = 1, .reusable = false}, REDUCE(sym__field_declaration_list_item, 1, .alias_sequence_id = 13), + [482] = {.count = 1, .reusable = true}, REDUCE(sym__field_declaration_list_item, 1, .alias_sequence_id = 13), + [484] = {.count = 1, .reusable = true}, SHIFT(194), + [486] = {.count = 1, .reusable = true}, SHIFT(195), + [488] = {.count = 1, .reusable = true}, SHIFT(196), + [490] = {.count = 1, .reusable = true}, SHIFT(197), + [492] = {.count = 1, .reusable = true}, SHIFT(198), + [494] = {.count = 1, .reusable = true}, SHIFT(204), + [496] = {.count = 1, .reusable = false}, SHIFT(206), + [498] = {.count = 1, .reusable = false}, SHIFT(207), + [500] = {.count = 1, .reusable = true}, REDUCE(sym_struct_specifier, 3, .alias_sequence_id = 3), + [502] = {.count = 1, .reusable = false}, REDUCE(sym_struct_specifier, 3, .alias_sequence_id = 3), + [504] = {.count = 1, .reusable = true}, REDUCE(sym_union_specifier, 3, .alias_sequence_id = 3), + [506] = {.count = 1, .reusable = false}, REDUCE(sym_union_specifier, 3, .alias_sequence_id = 3), + [508] = {.count = 1, .reusable = true}, REDUCE(sym_type_descriptor, 1), + [510] = {.count = 1, .reusable = true}, SHIFT(208), + [512] = {.count = 1, .reusable = true}, SHIFT(209), + [514] = {.count = 1, .reusable = true}, SHIFT(210), + [516] = {.count = 1, .reusable = true}, SHIFT(213), + [518] = {.count = 1, .reusable = false}, SHIFT(214), + [520] = {.count = 1, .reusable = false}, SHIFT(215), + [522] = {.count = 1, .reusable = false}, SHIFT(53), + [524] = {.count = 1, .reusable = true}, SHIFT(217), + [526] = {.count = 1, .reusable = true}, REDUCE(sym_pointer_declarator, 2), + [528] = {.count = 1, .reusable = false}, SHIFT(218), + [530] = {.count = 1, .reusable = true}, SHIFT(220), + [532] = {.count = 1, .reusable = true}, SHIFT(221), + [534] = {.count = 1, .reusable = true}, REDUCE(sym_declaration, 3), + [536] = {.count = 1, .reusable = false}, REDUCE(sym_declaration, 3), + [538] = {.count = 1, .reusable = false}, SHIFT(223), + [540] = {.count = 1, .reusable = false}, SHIFT(224), + [542] = {.count = 1, .reusable = false}, SHIFT(225), + [544] = {.count = 1, .reusable = false}, SHIFT(226), + [546] = {.count = 1, .reusable = true}, SHIFT(227), + [548] = {.count = 1, .reusable = true}, SHIFT(228), + [550] = {.count = 1, .reusable = true}, SHIFT(229), + [552] = {.count = 1, .reusable = true}, SHIFT(230), + [554] = {.count = 1, .reusable = false}, SHIFT(231), + [556] = {.count = 1, .reusable = false}, SHIFT(232), + [558] = {.count = 1, .reusable = false}, SHIFT(233), + [560] = {.count = 1, .reusable = false}, SHIFT(234), + [562] = {.count = 1, .reusable = false}, SHIFT(235), + [564] = {.count = 1, .reusable = false}, SHIFT(236), + [566] = {.count = 1, .reusable = false}, SHIFT(237), + [568] = {.count = 1, .reusable = false}, SHIFT(238), + [570] = {.count = 1, .reusable = false}, SHIFT(239), + [572] = {.count = 1, .reusable = false}, SHIFT(240), + [574] = {.count = 1, .reusable = false}, SHIFT(241), + [576] = {.count = 1, .reusable = true}, SHIFT(242), + [578] = {.count = 1, .reusable = true}, SHIFT(243), + [580] = {.count = 1, .reusable = false}, SHIFT(244), + [582] = {.count = 1, .reusable = true}, SHIFT(244), + [584] = {.count = 1, .reusable = false}, SHIFT(245), + [586] = {.count = 1, .reusable = true}, SHIFT(251), + [588] = {.count = 1, .reusable = true}, SHIFT(246), + [590] = {.count = 1, .reusable = false}, SHIFT(251), + [592] = {.count = 1, .reusable = false}, SHIFT(247), + [594] = {.count = 1, .reusable = true}, SHIFT(255), + [596] = {.count = 1, .reusable = true}, SHIFT(256), + [598] = {.count = 1, .reusable = false}, SHIFT(260), + [600] = {.count = 1, .reusable = false}, SHIFT(258), + [602] = {.count = 1, .reusable = true}, SHIFT(261), + [604] = {.count = 1, .reusable = true}, SHIFT(262), + [606] = {.count = 1, .reusable = true}, SHIFT(263), + [608] = {.count = 1, .reusable = false}, SHIFT(274), + [610] = {.count = 1, .reusable = false}, SHIFT(270), + [612] = {.count = 1, .reusable = true}, SHIFT(264), + [614] = {.count = 1, .reusable = true}, SHIFT(265), + [616] = {.count = 1, .reusable = false}, SHIFT(266), + [618] = {.count = 1, .reusable = true}, SHIFT(266), + [620] = {.count = 1, .reusable = false}, SHIFT(267), + [622] = {.count = 1, .reusable = true}, SHIFT(271), + [624] = {.count = 1, .reusable = false}, SHIFT(271), + [626] = {.count = 1, .reusable = false}, SHIFT(268), + [628] = {.count = 1, .reusable = true}, SHIFT(275), + [630] = {.count = 1, .reusable = true}, SHIFT(276), + [632] = {.count = 1, .reusable = false}, SHIFT(276), + [634] = {.count = 1, .reusable = true}, REDUCE(sym_function_definition, 3), + [636] = {.count = 1, .reusable = false}, REDUCE(sym_function_definition, 3), + [638] = {.count = 1, .reusable = true}, REDUCE(sym_function_declarator, 2), + [640] = {.count = 1, .reusable = true}, SHIFT(278), + [642] = {.count = 1, .reusable = true}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), + [644] = {.count = 1, .reusable = true}, REDUCE(sym__declaration_specifiers, 3), + [646] = {.count = 1, .reusable = false}, REDUCE(sym__declaration_specifiers, 3), + [648] = {.count = 1, .reusable = true}, REDUCE(sym_string_literal, 3), + [650] = {.count = 1, .reusable = false}, REDUCE(sym_string_literal, 3), + [652] = {.count = 1, .reusable = false}, REDUCE(aux_sym_string_literal_repeat1, 2), + [654] = {.count = 2, .reusable = true}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(136), + [657] = {.count = 1, .reusable = true}, SHIFT(280), + [659] = {.count = 1, .reusable = true}, SHIFT(281), + [661] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_params, 2), + [663] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_def, 4, .alias_sequence_id = 4), + [665] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_def, 4, .alias_sequence_id = 4), + [667] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_function_def, 4, .alias_sequence_id = 4), + [669] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_function_def, 4, .alias_sequence_id = 4), + [671] = {.count = 1, .reusable = true}, SHIFT(283), + [673] = {.count = 1, .reusable = false}, SHIFT(284), + [675] = {.count = 1, .reusable = true}, SHIFT(285), + [677] = {.count = 1, .reusable = false}, SHIFT(286), + [679] = {.count = 1, .reusable = false}, SHIFT(287), + [681] = {.count = 1, .reusable = false}, SHIFT(289), + [683] = {.count = 1, .reusable = false}, SHIFT(292), + [685] = {.count = 1, .reusable = false}, SHIFT(295), + [687] = {.count = 1, .reusable = true}, SHIFT(298), + [689] = {.count = 1, .reusable = true}, SHIFT(299), + [691] = {.count = 1, .reusable = true}, SHIFT(300), + [693] = {.count = 1, .reusable = false}, SHIFT(301), + [695] = {.count = 1, .reusable = true}, SHIFT(302), + [697] = {.count = 1, .reusable = true}, SHIFT(303), + [699] = {.count = 1, .reusable = false}, SHIFT(304), + [701] = {.count = 1, .reusable = false}, SHIFT(305), + [703] = {.count = 1, .reusable = false}, SHIFT(306), + [705] = {.count = 1, .reusable = true}, SHIFT(309), + [707] = {.count = 1, .reusable = true}, SHIFT(310), + [709] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_else, 2, .alias_sequence_id = 6), + [711] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_elif, 2, .alias_sequence_id = 14), + [713] = {.count = 1, .reusable = true}, SHIFT(315), + [715] = {.count = 1, .reusable = false}, SHIFT(317), + [717] = {.count = 1, .reusable = true}, SHIFT(318), + [719] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if, 4, .alias_sequence_id = 15), + [721] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if, 4, .alias_sequence_id = 15), + [723] = {.count = 1, .reusable = true}, SHIFT(321), + [725] = {.count = 1, .reusable = true}, SHIFT(322), + [727] = {.count = 1, .reusable = true}, SHIFT(325), + [729] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(61), + [732] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(62), + [735] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(63), + [738] = {.count = 1, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), + [740] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(65), + [743] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(66), + [746] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(69), + [749] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(70), + [752] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(71), + [755] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef, 4, .alias_sequence_id = 16), + [757] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef, 4, .alias_sequence_id = 16), + [759] = {.count = 1, .reusable = true}, SHIFT(326), + [761] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef, 4, .alias_sequence_id = 17), + [763] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef, 4, .alias_sequence_id = 17), + [765] = {.count = 1, .reusable = true}, SHIFT(327), + [767] = {.count = 1, .reusable = true}, SHIFT(329), + [769] = {.count = 1, .reusable = true}, REDUCE(sym_pointer_type_declarator, 2), + [771] = {.count = 1, .reusable = true}, REDUCE(sym_type_definition, 4), + [773] = {.count = 1, .reusable = false}, REDUCE(sym_type_definition, 4), + [775] = {.count = 1, .reusable = true}, SHIFT(331), + [777] = {.count = 1, .reusable = true}, SHIFT(333), + [779] = {.count = 1, .reusable = false}, SHIFT(333), + [781] = {.count = 1, .reusable = true}, REDUCE(sym_function_type_declarator, 2), + [783] = {.count = 1, .reusable = true}, SHIFT(334), + [785] = {.count = 1, .reusable = true}, REDUCE(sym_declaration_list, 2), + [787] = {.count = 1, .reusable = false}, REDUCE(sym_declaration_list, 2), + [789] = {.count = 1, .reusable = true}, SHIFT(335), + [791] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(186), + [794] = {.count = 1, .reusable = true}, REDUCE(sym_enumerator_list, 3), + [796] = {.count = 1, .reusable = false}, REDUCE(sym_enumerator_list, 3), + [798] = {.count = 1, .reusable = true}, SHIFT(339), + [800] = {.count = 1, .reusable = true}, SHIFT(340), + [802] = {.count = 1, .reusable = true}, SHIFT(341), + [804] = {.count = 1, .reusable = true}, SHIFT(342), + [806] = {.count = 1, .reusable = false}, SHIFT(343), + [808] = {.count = 1, .reusable = true}, SHIFT(343), + [810] = {.count = 1, .reusable = false}, SHIFT(344), + [812] = {.count = 1, .reusable = true}, SHIFT(345), + [814] = {.count = 1, .reusable = false}, SHIFT(345), + [816] = {.count = 1, .reusable = true}, SHIFT(347), + [818] = {.count = 1, .reusable = true}, SHIFT(349), + [820] = {.count = 1, .reusable = true}, SHIFT(351), + [822] = {.count = 1, .reusable = true}, SHIFT(352), + [824] = {.count = 1, .reusable = true}, SHIFT(353), + [826] = {.count = 1, .reusable = true}, SHIFT(357), + [828] = {.count = 1, .reusable = true}, SHIFT(361), + [830] = {.count = 1, .reusable = false}, REDUCE(sym_field_declaration, 2), + [832] = {.count = 1, .reusable = true}, REDUCE(sym_field_declaration, 2), + [834] = {.count = 1, .reusable = true}, SHIFT(365), + [836] = {.count = 1, .reusable = false}, SHIFT(198), + [838] = {.count = 1, .reusable = true}, SHIFT(369), + [840] = {.count = 1, .reusable = true}, SHIFT(370), + [842] = {.count = 1, .reusable = true}, SHIFT(371), + [844] = {.count = 1, .reusable = true}, SHIFT(372), + [846] = {.count = 1, .reusable = false}, SHIFT(373), + [848] = {.count = 1, .reusable = true}, SHIFT(373), + [850] = {.count = 1, .reusable = false}, SHIFT(374), + [852] = {.count = 1, .reusable = true}, SHIFT(375), + [854] = {.count = 1, .reusable = false}, SHIFT(375), + [856] = {.count = 1, .reusable = true}, REDUCE(sym__field_declarator, 1, .alias_sequence_id = 18), + [858] = {.count = 1, .reusable = true}, SHIFT(377), + [860] = {.count = 1, .reusable = true}, SHIFT(378), + [862] = {.count = 1, .reusable = true}, SHIFT(379), + [864] = {.count = 1, .reusable = true}, SHIFT(380), + [866] = {.count = 1, .reusable = true}, REDUCE(sym__field_declarator, 1, .alias_sequence_id = 9), + [868] = {.count = 1, .reusable = true}, REDUCE(sym__field_declarator, 1, .alias_sequence_id = 10), + [870] = {.count = 1, .reusable = true}, REDUCE(sym__field_declarator, 1, .alias_sequence_id = 11), + [872] = {.count = 1, .reusable = true}, REDUCE(sym_field_declaration_list, 3), + [874] = {.count = 1, .reusable = false}, REDUCE(sym_field_declaration_list, 3), + [876] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(103), + [879] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(104), + [882] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(105), + [885] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(10), + [888] = {.count = 1, .reusable = true}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), + [890] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(11), + [893] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(113), + [896] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(110), + [899] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(12), + [902] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(13), + [905] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(14), + [908] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(15), + [911] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(207), + [914] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_pointer_declarator, 1), + [916] = {.count = 1, .reusable = true}, SHIFT(11), + [918] = {.count = 1, .reusable = true}, SHIFT(388), + [920] = {.count = 1, .reusable = true}, SHIFT(390), + [922] = {.count = 1, .reusable = false}, SHIFT(390), + [924] = {.count = 1, .reusable = true}, REDUCE(sym_type_descriptor, 2), + [926] = {.count = 1, .reusable = true}, SHIFT(391), + [928] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_function_declarator, 1), + [930] = {.count = 1, .reusable = true}, REDUCE(sym_macro_type_specifier, 4), + [932] = {.count = 1, .reusable = false}, REDUCE(sym_macro_type_specifier, 4), + [934] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(215), + [937] = {.count = 1, .reusable = true}, REDUCE(sym__declarator, 3), + [939] = {.count = 1, .reusable = true}, REDUCE(sym_pointer_declarator, 3), + [941] = {.count = 1, .reusable = true}, REDUCE(aux_sym_type_definition_repeat1, 2), + [943] = {.count = 1, .reusable = true}, REDUCE(aux_sym_declaration_repeat1, 2), + [945] = {.count = 1, .reusable = true}, SHIFT(395), + [947] = {.count = 1, .reusable = false}, SHIFT(396), + [949] = {.count = 1, .reusable = true}, SHIFT(397), + [951] = {.count = 1, .reusable = true}, SHIFT(398), + [953] = {.count = 1, .reusable = false}, REDUCE(sym_expression_statement, 1), + [955] = {.count = 1, .reusable = true}, REDUCE(sym_expression_statement, 1), + [957] = {.count = 1, .reusable = true}, REDUCE(sym_compound_statement, 2), + [959] = {.count = 1, .reusable = false}, REDUCE(sym_compound_statement, 2), + [961] = {.count = 1, .reusable = true}, SHIFT(399), + [963] = {.count = 1, .reusable = true}, SHIFT(400), + [965] = {.count = 1, .reusable = true}, SHIFT(401), + [967] = {.count = 1, .reusable = true}, SHIFT(402), + [969] = {.count = 1, .reusable = false}, SHIFT(403), + [971] = {.count = 1, .reusable = true}, SHIFT(403), + [973] = {.count = 1, .reusable = false}, SHIFT(404), + [975] = {.count = 1, .reusable = true}, SHIFT(406), + [977] = {.count = 1, .reusable = false}, SHIFT(406), + [979] = {.count = 1, .reusable = false}, SHIFT(405), + [981] = {.count = 1, .reusable = true}, SHIFT(410), + [983] = {.count = 1, .reusable = false}, SHIFT(410), + [985] = {.count = 1, .reusable = true}, SHIFT(411), + [987] = {.count = 1, .reusable = true}, SHIFT(414), + [989] = {.count = 1, .reusable = true}, SHIFT(415), + [991] = {.count = 1, .reusable = true}, SHIFT(416), + [993] = {.count = 1, .reusable = true}, SHIFT(417), + [995] = {.count = 1, .reusable = false}, SHIFT(418), + [997] = {.count = 1, .reusable = true}, SHIFT(418), + [999] = {.count = 1, .reusable = false}, SHIFT(419), + [1001] = {.count = 1, .reusable = true}, SHIFT(420), + [1003] = {.count = 1, .reusable = false}, SHIFT(420), + [1005] = {.count = 1, .reusable = true}, SHIFT(422), + [1007] = {.count = 1, .reusable = false}, SHIFT(424), + [1009] = {.count = 1, .reusable = false}, SHIFT(425), + [1011] = {.count = 1, .reusable = false}, SHIFT(426), + [1013] = {.count = 1, .reusable = false}, SHIFT(427), + [1015] = {.count = 1, .reusable = false}, SHIFT(428), + [1017] = {.count = 1, .reusable = false}, SHIFT(429), + [1019] = {.count = 1, .reusable = false}, SHIFT(430), + [1021] = {.count = 1, .reusable = false}, SHIFT(431), + [1023] = {.count = 1, .reusable = true}, SHIFT(433), + [1025] = {.count = 1, .reusable = true}, SHIFT(434), + [1027] = {.count = 1, .reusable = true}, SHIFT(435), + [1029] = {.count = 1, .reusable = false}, SHIFT(435), + [1031] = {.count = 1, .reusable = true}, SHIFT(436), + [1033] = {.count = 1, .reusable = true}, SHIFT(437), + [1035] = {.count = 1, .reusable = true}, SHIFT(438), + [1037] = {.count = 1, .reusable = true}, SHIFT(439), + [1039] = {.count = 1, .reusable = false}, SHIFT(439), + [1041] = {.count = 1, .reusable = true}, SHIFT(440), + [1043] = {.count = 1, .reusable = false}, SHIFT(440), + [1045] = {.count = 1, .reusable = true}, SHIFT(441), + [1047] = {.count = 1, .reusable = false}, SHIFT(441), + [1049] = {.count = 1, .reusable = true}, SHIFT(442), + [1051] = {.count = 1, .reusable = true}, SHIFT(443), + [1053] = {.count = 1, .reusable = false}, SHIFT(443), + [1055] = {.count = 1, .reusable = false}, SHIFT(444), + [1057] = {.count = 1, .reusable = true}, SHIFT(444), + [1059] = {.count = 1, .reusable = true}, REDUCE(sym__expression, 1), + [1061] = {.count = 2, .reusable = true}, REDUCE(sym__type_specifier, 1, .alias_sequence_id = 1), REDUCE(sym__expression, 1), + [1064] = {.count = 3, .reusable = true}, REDUCE(sym__type_specifier, 1, .alias_sequence_id = 1), REDUCE(sym__expression, 1), SHIFT(42), + [1068] = {.count = 2, .reusable = false}, REDUCE(sym__type_specifier, 1, .alias_sequence_id = 1), REDUCE(sym__expression, 1), + [1071] = {.count = 1, .reusable = false}, REDUCE(sym__expression, 1), + [1073] = {.count = 1, .reusable = true}, SHIFT(445), + [1075] = {.count = 1, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 1, .alias_sequence_id = 12), + [1077] = {.count = 1, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 1, .alias_sequence_id = 12), + [1079] = {.count = 1, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 1, .alias_sequence_id = 13), + [1081] = {.count = 1, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 1, .alias_sequence_id = 13), + [1083] = {.count = 1, .reusable = true}, SHIFT(446), + [1085] = {.count = 1, .reusable = true}, SHIFT(447), + [1087] = {.count = 1, .reusable = true}, SHIFT(448), + [1089] = {.count = 1, .reusable = true}, SHIFT(449), + [1091] = {.count = 1, .reusable = false}, SHIFT(450), + [1093] = {.count = 1, .reusable = true}, SHIFT(451), + [1095] = {.count = 1, .reusable = false}, SHIFT(452), + [1097] = {.count = 1, .reusable = true}, SHIFT(453), + [1099] = {.count = 1, .reusable = true}, SHIFT(452), + [1101] = {.count = 1, .reusable = false}, SHIFT(454), + [1103] = {.count = 1, .reusable = true}, SHIFT(455), + [1105] = {.count = 1, .reusable = true}, SHIFT(456), + [1107] = {.count = 1, .reusable = false}, SHIFT(457), + [1109] = {.count = 1, .reusable = false}, SHIFT(458), + [1111] = {.count = 1, .reusable = true}, SHIFT(459), + [1113] = {.count = 1, .reusable = false}, SHIFT(460), + [1115] = {.count = 1, .reusable = true}, SHIFT(460), + [1117] = {.count = 1, .reusable = false}, SHIFT(461), + [1119] = {.count = 1, .reusable = false}, SHIFT(462), + [1121] = {.count = 1, .reusable = true}, SHIFT(463), + [1123] = {.count = 1, .reusable = true}, SHIFT(464), + [1125] = {.count = 1, .reusable = true}, SHIFT(467), + [1127] = {.count = 1, .reusable = true}, SHIFT(469), + [1129] = {.count = 1, .reusable = true}, SHIFT(470), + [1131] = {.count = 1, .reusable = true}, REDUCE(sym_parameter_list, 2, .dynamic_precedence = 1), + [1133] = {.count = 1, .reusable = true}, REDUCE(sym_parameter_declaration, 1), + [1135] = {.count = 1, .reusable = true}, SHIFT(472), + [1137] = {.count = 1, .reusable = true}, SHIFT(473), + [1139] = {.count = 1, .reusable = true}, SHIFT(474), + [1141] = {.count = 1, .reusable = false}, SHIFT(477), + [1143] = {.count = 1, .reusable = false}, SHIFT(478), + [1145] = {.count = 1, .reusable = true}, REDUCE(sym_array_declarator, 3), + [1147] = {.count = 1, .reusable = true}, SHIFT(480), + [1149] = {.count = 1, .reusable = true}, SHIFT(481), + [1151] = {.count = 1, .reusable = false}, SHIFT(481), + [1153] = {.count = 1, .reusable = true}, SHIFT(482), + [1155] = {.count = 1, .reusable = true}, SHIFT(483), + [1157] = {.count = 1, .reusable = false}, SHIFT(483), + [1159] = {.count = 1, .reusable = false}, SHIFT(485), + [1161] = {.count = 1, .reusable = false}, SHIFT(486), + [1163] = {.count = 1, .reusable = true}, SHIFT(487), + [1165] = {.count = 1, .reusable = true}, SHIFT(486), + [1167] = {.count = 1, .reusable = false}, SHIFT(488), + [1169] = {.count = 1, .reusable = true}, SHIFT(489), + [1171] = {.count = 1, .reusable = true}, SHIFT(490), + [1173] = {.count = 1, .reusable = false}, SHIFT(491), + [1175] = {.count = 1, .reusable = false}, SHIFT(492), + [1177] = {.count = 1, .reusable = true}, SHIFT(493), + [1179] = {.count = 1, .reusable = false}, SHIFT(494), + [1181] = {.count = 1, .reusable = true}, SHIFT(494), + [1183] = {.count = 1, .reusable = false}, SHIFT(495), + [1185] = {.count = 1, .reusable = false}, SHIFT(496), + [1187] = {.count = 1, .reusable = false}, SHIFT(498), + [1189] = {.count = 1, .reusable = false}, SHIFT(499), + [1191] = {.count = 1, .reusable = true}, SHIFT(500), + [1193] = {.count = 1, .reusable = true}, SHIFT(501), + [1195] = {.count = 1, .reusable = true}, SHIFT(502), + [1197] = {.count = 1, .reusable = true}, SHIFT(503), + [1199] = {.count = 1, .reusable = true}, SHIFT(504), + [1201] = {.count = 1, .reusable = false}, SHIFT(504), + [1203] = {.count = 1, .reusable = true}, REDUCE(sym_init_declarator, 3), + [1205] = {.count = 1, .reusable = true}, REDUCE(sym_declaration, 4), + [1207] = {.count = 1, .reusable = false}, REDUCE(sym_declaration, 4), + [1209] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_repeat1, 2), SHIFT_REPEAT(124), + [1212] = {.count = 1, .reusable = true}, SHIFT(507), + [1214] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_params, 3), + [1216] = {.count = 1, .reusable = true}, SHIFT(508), + [1218] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_function_def, 5, .alias_sequence_id = 4), + [1220] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_function_def, 5, .alias_sequence_id = 4), + [1222] = {.count = 1, .reusable = false}, SHIFT(510), + [1224] = {.count = 1, .reusable = true}, SHIFT(511), + [1226] = {.count = 1, .reusable = false}, SHIFT(512), + [1228] = {.count = 1, .reusable = false}, SHIFT(513), + [1230] = {.count = 1, .reusable = true}, SHIFT(514), + [1232] = {.count = 1, .reusable = false}, SHIFT(514), + [1234] = {.count = 1, .reusable = true}, SHIFT(516), + [1236] = {.count = 1, .reusable = false}, SHIFT(516), + [1238] = {.count = 1, .reusable = true}, SHIFT(518), + [1240] = {.count = 1, .reusable = false}, SHIFT(518), + [1242] = {.count = 1, .reusable = false}, SHIFT(520), + [1244] = {.count = 1, .reusable = true}, SHIFT(521), + [1246] = {.count = 1, .reusable = false}, SHIFT(522), + [1248] = {.count = 1, .reusable = false}, SHIFT(523), + [1250] = {.count = 1, .reusable = false}, SHIFT(525), + [1252] = {.count = 1, .reusable = false}, SHIFT(528), + [1254] = {.count = 1, .reusable = false}, SHIFT(531), + [1256] = {.count = 1, .reusable = true}, SHIFT(534), + [1258] = {.count = 1, .reusable = false}, SHIFT(536), + [1260] = {.count = 1, .reusable = true}, SHIFT(537), + [1262] = {.count = 1, .reusable = true}, SHIFT(540), + [1264] = {.count = 1, .reusable = true}, SHIFT(541), + [1266] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(148), + [1269] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(149), + [1272] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(150), + [1275] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(151), + [1278] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(152), + [1281] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(153), + [1284] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(154), + [1287] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(155), + [1290] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_elif, 3, .alias_sequence_id = 14), + [1292] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_elif, 3, .alias_sequence_id = 14), + [1294] = {.count = 1, .reusable = true}, SHIFT(545), + [1296] = {.count = 1, .reusable = true}, SHIFT(547), + [1298] = {.count = 1, .reusable = true}, SHIFT(549), + [1300] = {.count = 1, .reusable = true}, SHIFT(551), + [1302] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if, 5, .alias_sequence_id = 19), + [1304] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if, 5, .alias_sequence_id = 19), + [1306] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef, 5, .alias_sequence_id = 20), + [1308] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef, 5, .alias_sequence_id = 20), + [1310] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef, 5, .alias_sequence_id = 21), + [1312] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef, 5, .alias_sequence_id = 21), + [1314] = {.count = 1, .reusable = true}, REDUCE(sym__type_declarator, 3), + [1316] = {.count = 1, .reusable = true}, REDUCE(sym_pointer_type_declarator, 3), + [1318] = {.count = 1, .reusable = true}, REDUCE(sym_array_type_declarator, 3), + [1320] = {.count = 1, .reusable = true}, SHIFT(552), + [1322] = {.count = 1, .reusable = true}, SHIFT(553), + [1324] = {.count = 1, .reusable = false}, SHIFT(553), + [1326] = {.count = 1, .reusable = true}, REDUCE(sym_type_definition, 5), + [1328] = {.count = 1, .reusable = false}, REDUCE(sym_type_definition, 5), + [1330] = {.count = 1, .reusable = true}, REDUCE(sym_declaration_list, 3), + [1332] = {.count = 1, .reusable = false}, REDUCE(sym_declaration_list, 3), + [1334] = {.count = 1, .reusable = true}, SHIFT(555), + [1336] = {.count = 1, .reusable = true}, SHIFT(556), + [1338] = {.count = 1, .reusable = false}, SHIFT(556), + [1340] = {.count = 1, .reusable = true}, REDUCE(sym_enumerator, 3), + [1342] = {.count = 1, .reusable = false}, SHIFT(557), + [1344] = {.count = 1, .reusable = false}, SHIFT(558), + [1346] = {.count = 1, .reusable = true}, SHIFT(559), + [1348] = {.count = 1, .reusable = true}, SHIFT(558), + [1350] = {.count = 1, .reusable = false}, SHIFT(560), + [1352] = {.count = 1, .reusable = true}, SHIFT(561), + [1354] = {.count = 1, .reusable = true}, SHIFT(562), + [1356] = {.count = 1, .reusable = false}, SHIFT(563), + [1358] = {.count = 1, .reusable = false}, SHIFT(564), + [1360] = {.count = 1, .reusable = true}, SHIFT(565), + [1362] = {.count = 1, .reusable = false}, SHIFT(566), + [1364] = {.count = 1, .reusable = true}, SHIFT(566), + [1366] = {.count = 1, .reusable = false}, SHIFT(567), + [1368] = {.count = 1, .reusable = false}, SHIFT(568), + [1370] = {.count = 1, .reusable = true}, REDUCE(sym_enumerator_list, 4), + [1372] = {.count = 1, .reusable = false}, REDUCE(sym_enumerator_list, 4), + [1374] = {.count = 1, .reusable = true}, REDUCE(aux_sym_enumerator_list_repeat1, 2), + [1376] = {.count = 1, .reusable = true}, SHIFT(570), + [1378] = {.count = 2, .reusable = true}, REDUCE(aux_sym_enumerator_list_repeat1, 2), SHIFT_REPEAT(571), + [1381] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if_in_field_declaration_list, 3, .alias_sequence_id = 5), + [1383] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if_in_field_declaration_list, 3, .alias_sequence_id = 5), + [1385] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_else_in_field_declaration_list, 1, .alias_sequence_id = 6), + [1387] = {.count = 1, .reusable = false}, SHIFT(573), + [1389] = {.count = 1, .reusable = true}, SHIFT(574), + [1391] = {.count = 1, .reusable = true}, SHIFT(575), + [1393] = {.count = 1, .reusable = true}, SHIFT(576), + [1395] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, .alias_sequence_id = 7), + [1397] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, .alias_sequence_id = 7), + [1399] = {.count = 1, .reusable = true}, SHIFT(580), + [1401] = {.count = 1, .reusable = true}, SHIFT(581), + [1403] = {.count = 1, .reusable = true}, SHIFT(582), + [1405] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, .alias_sequence_id = 8), + [1407] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, .alias_sequence_id = 8), + [1409] = {.count = 1, .reusable = true}, SHIFT(585), + [1411] = {.count = 1, .reusable = true}, SHIFT(586), + [1413] = {.count = 1, .reusable = true}, SHIFT(587), + [1415] = {.count = 1, .reusable = true}, SHIFT(591), + [1417] = {.count = 1, .reusable = true}, REDUCE(sym_pointer_field_declarator, 2), + [1419] = {.count = 1, .reusable = true}, SHIFT(594), + [1421] = {.count = 1, .reusable = true}, SHIFT(595), + [1423] = {.count = 1, .reusable = false}, SHIFT(595), + [1425] = {.count = 1, .reusable = true}, SHIFT(596), + [1427] = {.count = 1, .reusable = false}, SHIFT(597), + [1429] = {.count = 1, .reusable = false}, SHIFT(598), + [1431] = {.count = 1, .reusable = true}, SHIFT(599), + [1433] = {.count = 1, .reusable = true}, SHIFT(598), + [1435] = {.count = 1, .reusable = false}, SHIFT(600), + [1437] = {.count = 1, .reusable = true}, SHIFT(601), + [1439] = {.count = 1, .reusable = true}, SHIFT(602), + [1441] = {.count = 1, .reusable = false}, SHIFT(603), + [1443] = {.count = 1, .reusable = false}, SHIFT(604), + [1445] = {.count = 1, .reusable = true}, SHIFT(605), + [1447] = {.count = 1, .reusable = false}, SHIFT(606), + [1449] = {.count = 1, .reusable = true}, SHIFT(606), + [1451] = {.count = 1, .reusable = false}, SHIFT(607), + [1453] = {.count = 1, .reusable = false}, SHIFT(608), + [1455] = {.count = 1, .reusable = false}, REDUCE(sym_field_declaration, 3), + [1457] = {.count = 1, .reusable = true}, REDUCE(sym_field_declaration, 3), + [1459] = {.count = 1, .reusable = true}, SHIFT(611), + [1461] = {.count = 1, .reusable = true}, SHIFT(613), + [1463] = {.count = 1, .reusable = false}, SHIFT(613), + [1465] = {.count = 1, .reusable = true}, SHIFT(614), + [1467] = {.count = 1, .reusable = false}, SHIFT(614), + [1469] = {.count = 1, .reusable = true}, REDUCE(sym_function_field_declarator, 2), + [1471] = {.count = 1, .reusable = true}, SHIFT(615), + [1473] = {.count = 1, .reusable = true}, SHIFT(617), + [1475] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_pointer_declarator, 2), + [1477] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_array_declarator, 2), + [1479] = {.count = 1, .reusable = true}, SHIFT(620), + [1481] = {.count = 1, .reusable = true}, SHIFT(621), + [1483] = {.count = 1, .reusable = false}, SHIFT(621), + [1485] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_function_declarator, 2), + [1487] = {.count = 1, .reusable = true}, REDUCE(sym_type_descriptor, 3), + [1489] = {.count = 1, .reusable = false}, SHIFT(623), + [1491] = {.count = 1, .reusable = true}, SHIFT(624), + [1493] = {.count = 1, .reusable = false}, SHIFT(625), + [1495] = {.count = 1, .reusable = false}, SHIFT(626), + [1497] = {.count = 1, .reusable = false}, SHIFT(627), + [1499] = {.count = 1, .reusable = false}, SHIFT(628), + [1501] = {.count = 1, .reusable = false}, SHIFT(629), + [1503] = {.count = 1, .reusable = false}, SHIFT(630), + [1505] = {.count = 1, .reusable = true}, SHIFT(631), + [1507] = {.count = 1, .reusable = false}, SHIFT(632), + [1509] = {.count = 1, .reusable = false}, SHIFT(633), + [1511] = {.count = 1, .reusable = false}, SHIFT(634), + [1513] = {.count = 1, .reusable = false}, SHIFT(635), + [1515] = {.count = 1, .reusable = false}, SHIFT(636), + [1517] = {.count = 1, .reusable = false}, SHIFT(637), + [1519] = {.count = 1, .reusable = false}, SHIFT(638), + [1521] = {.count = 1, .reusable = false}, SHIFT(639), + [1523] = {.count = 1, .reusable = false}, SHIFT(640), + [1525] = {.count = 1, .reusable = false}, SHIFT(641), + [1527] = {.count = 1, .reusable = false}, SHIFT(642), + [1529] = {.count = 1, .reusable = true}, SHIFT(649), + [1531] = {.count = 1, .reusable = false}, SHIFT(649), + [1533] = {.count = 1, .reusable = false}, SHIFT(643), + [1535] = {.count = 1, .reusable = false}, SHIFT(652), + [1537] = {.count = 1, .reusable = false}, SHIFT(656), + [1539] = {.count = 1, .reusable = true}, SHIFT(661), + [1541] = {.count = 1, .reusable = true}, SHIFT(662), + [1543] = {.count = 1, .reusable = false}, SHIFT(662), + [1545] = {.count = 1, .reusable = true}, SHIFT(663), + [1547] = {.count = 1, .reusable = true}, SHIFT(664), + [1549] = {.count = 1, .reusable = false}, SHIFT(665), + [1551] = {.count = 1, .reusable = false}, SHIFT(666), + [1553] = {.count = 1, .reusable = true}, SHIFT(667), + [1555] = {.count = 1, .reusable = true}, SHIFT(666), + [1557] = {.count = 1, .reusable = false}, SHIFT(668), + [1559] = {.count = 1, .reusable = true}, SHIFT(669), + [1561] = {.count = 1, .reusable = true}, SHIFT(670), + [1563] = {.count = 1, .reusable = false}, SHIFT(671), + [1565] = {.count = 1, .reusable = false}, SHIFT(672), + [1567] = {.count = 1, .reusable = true}, SHIFT(673), + [1569] = {.count = 1, .reusable = false}, SHIFT(674), + [1571] = {.count = 1, .reusable = true}, SHIFT(674), + [1573] = {.count = 1, .reusable = false}, SHIFT(675), + [1575] = {.count = 1, .reusable = false}, SHIFT(676), + [1577] = {.count = 1, .reusable = true}, SHIFT(677), + [1579] = {.count = 1, .reusable = true}, REDUCE(sym_pointer_expression, 2), + [1581] = {.count = 1, .reusable = false}, REDUCE(sym_pointer_expression, 2), + [1583] = {.count = 1, .reusable = true}, SHIFT(679), + [1585] = {.count = 1, .reusable = false}, SHIFT(679), + [1587] = {.count = 1, .reusable = false}, SHIFT(681), + [1589] = {.count = 1, .reusable = false}, SHIFT(682), + [1591] = {.count = 1, .reusable = false}, SHIFT(683), + [1593] = {.count = 1, .reusable = false}, SHIFT(684), + [1595] = {.count = 1, .reusable = false}, SHIFT(685), + [1597] = {.count = 1, .reusable = false}, SHIFT(686), + [1599] = {.count = 1, .reusable = false}, SHIFT(687), + [1601] = {.count = 1, .reusable = false}, SHIFT(689), + [1603] = {.count = 1, .reusable = true}, SHIFT(692), + [1605] = {.count = 1, .reusable = true}, SHIFT(693), + [1607] = {.count = 1, .reusable = false}, SHIFT(693), + [1609] = {.count = 1, .reusable = false}, SHIFT(694), + [1611] = {.count = 1, .reusable = false}, SHIFT(695), + [1613] = {.count = 1, .reusable = true}, SHIFT(696), + [1615] = {.count = 1, .reusable = true}, SHIFT(697), + [1617] = {.count = 1, .reusable = true}, SHIFT(695), + [1619] = {.count = 1, .reusable = false}, SHIFT(698), + [1621] = {.count = 1, .reusable = true}, SHIFT(699), + [1623] = {.count = 1, .reusable = true}, SHIFT(700), + [1625] = {.count = 1, .reusable = false}, SHIFT(701), + [1627] = {.count = 1, .reusable = false}, SHIFT(702), + [1629] = {.count = 1, .reusable = true}, SHIFT(703), + [1631] = {.count = 1, .reusable = false}, SHIFT(704), + [1633] = {.count = 1, .reusable = true}, SHIFT(704), + [1635] = {.count = 1, .reusable = false}, SHIFT(705), + [1637] = {.count = 1, .reusable = false}, SHIFT(706), + [1639] = {.count = 1, .reusable = false}, SHIFT(708), + [1641] = {.count = 1, .reusable = true}, SHIFT(714), + [1643] = {.count = 1, .reusable = false}, SHIFT(714), + [1645] = {.count = 1, .reusable = true}, SHIFT(715), + [1647] = {.count = 1, .reusable = true}, SHIFT(718), + [1649] = {.count = 1, .reusable = true}, SHIFT(719), + [1651] = {.count = 1, .reusable = true}, SHIFT(720), + [1653] = {.count = 1, .reusable = true}, SHIFT(721), + [1655] = {.count = 1, .reusable = true}, SHIFT(723), + [1657] = {.count = 1, .reusable = false}, SHIFT(723), + [1659] = {.count = 1, .reusable = false}, SHIFT(722), + [1661] = {.count = 1, .reusable = false}, REDUCE(sym_return_statement, 2), + [1663] = {.count = 1, .reusable = true}, REDUCE(sym_return_statement, 2), + [1665] = {.count = 1, .reusable = true}, SHIFT(724), + [1667] = {.count = 1, .reusable = false}, REDUCE(sym_break_statement, 2), + [1669] = {.count = 1, .reusable = true}, REDUCE(sym_break_statement, 2), + [1671] = {.count = 1, .reusable = false}, REDUCE(sym_continue_statement, 2), + [1673] = {.count = 1, .reusable = true}, REDUCE(sym_continue_statement, 2), + [1675] = {.count = 1, .reusable = true}, SHIFT(725), + [1677] = {.count = 1, .reusable = true}, REDUCE(sym_logical_expression, 2), + [1679] = {.count = 1, .reusable = false}, REDUCE(sym_logical_expression, 2), + [1681] = {.count = 1, .reusable = true}, REDUCE(sym_bitwise_expression, 2), + [1683] = {.count = 1, .reusable = false}, REDUCE(sym_bitwise_expression, 2), + [1685] = {.count = 1, .reusable = true}, REDUCE(sym_math_expression, 2), + [1687] = {.count = 1, .reusable = false}, REDUCE(sym_math_expression, 2), + [1689] = {.count = 1, .reusable = true}, REDUCE(sym_sizeof_expression, 2), + [1691] = {.count = 1, .reusable = false}, REDUCE(sym_sizeof_expression, 2), + [1693] = {.count = 1, .reusable = true}, SHIFT(727), + [1695] = {.count = 1, .reusable = true}, SHIFT(729), + [1697] = {.count = 1, .reusable = false}, SHIFT(729), + [1699] = {.count = 1, .reusable = false}, REDUCE(sym_expression_statement, 2), + [1701] = {.count = 1, .reusable = true}, REDUCE(sym_expression_statement, 2), + [1703] = {.count = 1, .reusable = true}, SHIFT(731), + [1705] = {.count = 1, .reusable = true}, SHIFT(732), + [1707] = {.count = 1, .reusable = false}, SHIFT(732), + [1709] = {.count = 1, .reusable = true}, SHIFT(733), + [1711] = {.count = 1, .reusable = false}, SHIFT(733), + [1713] = {.count = 1, .reusable = true}, SHIFT(734), + [1715] = {.count = 1, .reusable = false}, SHIFT(734), + [1717] = {.count = 1, .reusable = true}, SHIFT(735), + [1719] = {.count = 1, .reusable = false}, SHIFT(735), + [1721] = {.count = 1, .reusable = true}, SHIFT(736), + [1723] = {.count = 1, .reusable = false}, SHIFT(736), + [1725] = {.count = 1, .reusable = true}, SHIFT(737), + [1727] = {.count = 1, .reusable = false}, SHIFT(737), + [1729] = {.count = 1, .reusable = true}, SHIFT(738), + [1731] = {.count = 1, .reusable = false}, SHIFT(738), + [1733] = {.count = 1, .reusable = true}, SHIFT(739), + [1735] = {.count = 1, .reusable = false}, SHIFT(739), + [1737] = {.count = 1, .reusable = true}, SHIFT(740), + [1739] = {.count = 1, .reusable = false}, SHIFT(740), + [1741] = {.count = 1, .reusable = true}, SHIFT(741), + [1743] = {.count = 1, .reusable = false}, SHIFT(741), + [1745] = {.count = 1, .reusable = true}, SHIFT(742), + [1747] = {.count = 1, .reusable = false}, SHIFT(742), + [1749] = {.count = 1, .reusable = true}, SHIFT(743), + [1751] = {.count = 1, .reusable = false}, SHIFT(743), + [1753] = {.count = 1, .reusable = true}, SHIFT(744), + [1755] = {.count = 1, .reusable = false}, SHIFT(744), + [1757] = {.count = 1, .reusable = true}, SHIFT(745), + [1759] = {.count = 1, .reusable = false}, SHIFT(745), + [1761] = {.count = 1, .reusable = true}, SHIFT(746), + [1763] = {.count = 1, .reusable = true}, REDUCE(sym_call_expression, 2), + [1765] = {.count = 1, .reusable = false}, REDUCE(sym_call_expression, 2), + [1767] = {.count = 1, .reusable = true}, REDUCE(sym_concatenated_string, 2), + [1769] = {.count = 1, .reusable = false}, REDUCE(sym_concatenated_string, 2), + [1771] = {.count = 1, .reusable = true}, REDUCE(sym_compound_statement, 3), + [1773] = {.count = 1, .reusable = false}, REDUCE(sym_compound_statement, 3), + [1775] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(223), + [1778] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(3), + [1781] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(224), + [1784] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(225), + [1787] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(226), + [1790] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(7), + [1793] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(227), + [1796] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(8), + [1799] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(10), + [1802] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(126), + [1805] = {.count = 1, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), + [1807] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(229), + [1810] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(230), + [1813] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(11), + [1816] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(21), + [1819] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(18), + [1822] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(12), + [1825] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(13), + [1828] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(14), + [1831] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(231), + [1834] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(232), + [1837] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(233), + [1840] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(234), + [1843] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(235), + [1846] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(236), + [1849] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(237), + [1852] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(238), + [1855] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(239), + [1858] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(240), + [1861] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(241), + [1864] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(242), + [1867] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(243), + [1870] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(244), + [1873] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(244), + [1876] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(245), + [1879] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(251), + [1882] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(246), + [1885] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(22), + [1888] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(251), + [1891] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(247), + [1894] = {.count = 1, .reusable = true}, SHIFT(748), + [1896] = {.count = 1, .reusable = true}, REDUCE(sym_parameter_list, 3, .dynamic_precedence = 1), + [1898] = {.count = 1, .reusable = true}, SHIFT(749), + [1900] = {.count = 1, .reusable = true}, SHIFT(751), + [1902] = {.count = 1, .reusable = false}, SHIFT(752), + [1904] = {.count = 1, .reusable = true}, REDUCE(sym_parameter_declaration, 2), + [1906] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(478), + [1909] = {.count = 1, .reusable = true}, SHIFT(756), + [1911] = {.count = 1, .reusable = true}, REDUCE(sym_array_declarator, 4), + [1913] = {.count = 1, .reusable = true}, SHIFT(758), + [1915] = {.count = 1, .reusable = true}, SHIFT(760), + [1917] = {.count = 1, .reusable = false}, SHIFT(760), + [1919] = {.count = 1, .reusable = true}, SHIFT(761), + [1921] = {.count = 1, .reusable = false}, SHIFT(761), + [1923] = {.count = 1, .reusable = true}, SHIFT(762), + [1925] = {.count = 1, .reusable = false}, SHIFT(762), + [1927] = {.count = 1, .reusable = true}, SHIFT(763), + [1929] = {.count = 1, .reusable = false}, SHIFT(763), + [1931] = {.count = 1, .reusable = true}, SHIFT(764), + [1933] = {.count = 1, .reusable = false}, SHIFT(764), + [1935] = {.count = 1, .reusable = true}, SHIFT(765), + [1937] = {.count = 1, .reusable = false}, SHIFT(765), + [1939] = {.count = 1, .reusable = true}, SHIFT(766), + [1941] = {.count = 1, .reusable = false}, SHIFT(766), + [1943] = {.count = 1, .reusable = true}, SHIFT(767), + [1945] = {.count = 1, .reusable = false}, SHIFT(767), + [1947] = {.count = 1, .reusable = true}, SHIFT(768), + [1949] = {.count = 1, .reusable = false}, SHIFT(768), + [1951] = {.count = 1, .reusable = true}, SHIFT(769), + [1953] = {.count = 1, .reusable = false}, SHIFT(769), + [1955] = {.count = 1, .reusable = true}, SHIFT(770), + [1957] = {.count = 1, .reusable = false}, SHIFT(770), + [1959] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(499), + [1962] = {.count = 1, .reusable = true}, SHIFT(773), + [1964] = {.count = 1, .reusable = true}, REDUCE(sym_initializer_list, 2), + [1966] = {.count = 1, .reusable = false}, REDUCE(sym_initializer_list, 2), + [1968] = {.count = 1, .reusable = true}, SHIFT(774), + [1970] = {.count = 1, .reusable = false}, SHIFT(774), + [1972] = {.count = 1, .reusable = true}, SHIFT(775), + [1974] = {.count = 1, .reusable = true}, SHIFT(776), + [1976] = {.count = 1, .reusable = true}, SHIFT(778), + [1978] = {.count = 1, .reusable = true}, REDUCE(aux_sym_preproc_params_repeat1, 2), + [1980] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_params, 4), + [1982] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_params_repeat1, 2), SHIFT_REPEAT(280), + [1985] = {.count = 1, .reusable = true}, SHIFT(780), + [1987] = {.count = 1, .reusable = true}, SHIFT(781), + [1989] = {.count = 1, .reusable = true}, SHIFT(782), + [1991] = {.count = 1, .reusable = true}, SHIFT(783), + [1993] = {.count = 1, .reusable = false}, SHIFT(784), + [1995] = {.count = 1, .reusable = true}, SHIFT(785), + [1997] = {.count = 1, .reusable = false}, SHIFT(786), + [1999] = {.count = 1, .reusable = false}, SHIFT(787), + [2001] = {.count = 1, .reusable = true}, SHIFT(788), + [2003] = {.count = 1, .reusable = false}, SHIFT(788), + [2005] = {.count = 1, .reusable = true}, SHIFT(790), + [2007] = {.count = 1, .reusable = false}, SHIFT(790), + [2009] = {.count = 1, .reusable = true}, SHIFT(792), + [2011] = {.count = 1, .reusable = false}, SHIFT(792), + [2013] = {.count = 1, .reusable = true}, SHIFT(794), + [2015] = {.count = 1, .reusable = true}, SHIFT(796), + [2017] = {.count = 1, .reusable = true}, SHIFT(798), + [2019] = {.count = 1, .reusable = true}, SHIFT(800), + [2021] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_elif, 4, .alias_sequence_id = 14), + [2023] = {.count = 1, .reusable = true}, SHIFT(801), + [2025] = {.count = 1, .reusable = true}, SHIFT(802), + [2027] = {.count = 1, .reusable = true}, SHIFT(803), + [2029] = {.count = 1, .reusable = true}, REDUCE(sym_array_type_declarator, 4), + [2031] = {.count = 1, .reusable = true}, SHIFT(804), + [2033] = {.count = 1, .reusable = true}, SHIFT(805), + [2035] = {.count = 1, .reusable = true}, SHIFT(807), + [2037] = {.count = 1, .reusable = false}, SHIFT(807), + [2039] = {.count = 1, .reusable = true}, SHIFT(808), + [2041] = {.count = 1, .reusable = false}, SHIFT(808), + [2043] = {.count = 1, .reusable = true}, SHIFT(809), + [2045] = {.count = 1, .reusable = false}, SHIFT(809), + [2047] = {.count = 1, .reusable = true}, SHIFT(810), + [2049] = {.count = 1, .reusable = false}, SHIFT(810), + [2051] = {.count = 1, .reusable = true}, SHIFT(811), + [2053] = {.count = 1, .reusable = false}, SHIFT(811), + [2055] = {.count = 1, .reusable = true}, SHIFT(812), + [2057] = {.count = 1, .reusable = false}, SHIFT(812), + [2059] = {.count = 1, .reusable = true}, SHIFT(813), + [2061] = {.count = 1, .reusable = false}, SHIFT(813), + [2063] = {.count = 1, .reusable = true}, SHIFT(814), + [2065] = {.count = 1, .reusable = false}, SHIFT(814), + [2067] = {.count = 1, .reusable = true}, SHIFT(815), + [2069] = {.count = 1, .reusable = false}, SHIFT(815), + [2071] = {.count = 1, .reusable = true}, SHIFT(816), + [2073] = {.count = 1, .reusable = false}, SHIFT(816), + [2075] = {.count = 1, .reusable = true}, SHIFT(817), + [2077] = {.count = 1, .reusable = false}, SHIFT(817), + [2079] = {.count = 1, .reusable = true}, REDUCE(sym_enumerator_list, 5), + [2081] = {.count = 1, .reusable = false}, REDUCE(sym_enumerator_list, 5), + [2083] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_else_in_field_declaration_list, 2, .alias_sequence_id = 6), + [2085] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_elif_in_field_declaration_list, 2, .alias_sequence_id = 14), + [2087] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, .alias_sequence_id = 22), + [2089] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, .alias_sequence_id = 22), + [2091] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, .alias_sequence_id = 23), + [2093] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, .alias_sequence_id = 23), + [2095] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, .alias_sequence_id = 15), + [2097] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, .alias_sequence_id = 15), + [2099] = {.count = 1, .reusable = true}, SHIFT(823), + [2101] = {.count = 1, .reusable = true}, SHIFT(824), + [2103] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .alias_sequence_id = 24), + [2105] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .alias_sequence_id = 24), + [2107] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .alias_sequence_id = 25), + [2109] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .alias_sequence_id = 25), + [2111] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .alias_sequence_id = 16), + [2113] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .alias_sequence_id = 16), + [2115] = {.count = 1, .reusable = true}, SHIFT(825), + [2117] = {.count = 1, .reusable = true}, SHIFT(826), + [2119] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .alias_sequence_id = 26), + [2121] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .alias_sequence_id = 26), + [2123] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .alias_sequence_id = 27), + [2125] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .alias_sequence_id = 27), + [2127] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .alias_sequence_id = 17), + [2129] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .alias_sequence_id = 17), + [2131] = {.count = 1, .reusable = true}, SHIFT(827), + [2133] = {.count = 1, .reusable = true}, SHIFT(828), + [2135] = {.count = 1, .reusable = true}, REDUCE(sym__field_declarator, 3), + [2137] = {.count = 1, .reusable = true}, REDUCE(sym_pointer_field_declarator, 3), + [2139] = {.count = 1, .reusable = true}, SHIFT(829), + [2141] = {.count = 1, .reusable = false}, REDUCE(sym_field_declaration, 4), + [2143] = {.count = 1, .reusable = true}, REDUCE(sym_field_declaration, 4), + [2145] = {.count = 1, .reusable = true}, SHIFT(831), + [2147] = {.count = 1, .reusable = false}, SHIFT(831), + [2149] = {.count = 1, .reusable = true}, SHIFT(832), + [2151] = {.count = 1, .reusable = false}, SHIFT(832), + [2153] = {.count = 1, .reusable = true}, SHIFT(833), + [2155] = {.count = 1, .reusable = false}, SHIFT(833), + [2157] = {.count = 1, .reusable = true}, SHIFT(834), + [2159] = {.count = 1, .reusable = false}, SHIFT(834), + [2161] = {.count = 1, .reusable = true}, SHIFT(835), + [2163] = {.count = 1, .reusable = false}, SHIFT(835), + [2165] = {.count = 1, .reusable = true}, SHIFT(836), + [2167] = {.count = 1, .reusable = false}, SHIFT(836), + [2169] = {.count = 1, .reusable = true}, SHIFT(837), + [2171] = {.count = 1, .reusable = false}, SHIFT(837), + [2173] = {.count = 1, .reusable = true}, SHIFT(838), + [2175] = {.count = 1, .reusable = false}, SHIFT(838), + [2177] = {.count = 1, .reusable = true}, SHIFT(839), + [2179] = {.count = 1, .reusable = false}, SHIFT(839), + [2181] = {.count = 1, .reusable = true}, SHIFT(840), + [2183] = {.count = 1, .reusable = false}, SHIFT(840), + [2185] = {.count = 1, .reusable = true}, SHIFT(841), + [2187] = {.count = 1, .reusable = false}, SHIFT(841), + [2189] = {.count = 1, .reusable = true}, REDUCE(aux_sym_field_declaration_repeat1, 2), + [2191] = {.count = 1, .reusable = true}, REDUCE(sym_array_field_declarator, 3), + [2193] = {.count = 1, .reusable = true}, SHIFT(843), + [2195] = {.count = 1, .reusable = true}, SHIFT(844), + [2197] = {.count = 1, .reusable = false}, SHIFT(844), + [2199] = {.count = 1, .reusable = true}, SHIFT(845), + [2201] = {.count = 1, .reusable = true}, SHIFT(846), + [2203] = {.count = 1, .reusable = false}, SHIFT(846), + [2205] = {.count = 2, .reusable = true}, REDUCE(aux_sym_field_declaration_repeat1, 2), SHIFT_REPEAT(377), + [2208] = {.count = 1, .reusable = true}, REDUCE(sym__abstract_declarator, 3), + [2210] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_pointer_declarator, 3), + [2212] = {.count = 2, .reusable = true}, REDUCE(aux_sym_type_definition_repeat1, 2), SHIFT_REPEAT(11), + [2215] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_array_declarator, 3), + [2217] = {.count = 1, .reusable = true}, SHIFT(847), + [2219] = {.count = 1, .reusable = true}, SHIFT(848), + [2221] = {.count = 1, .reusable = false}, SHIFT(848), + [2223] = {.count = 1, .reusable = false}, SHIFT(849), + [2225] = {.count = 1, .reusable = false}, SHIFT(850), + [2227] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if_in_compound_statement, 3, .alias_sequence_id = 5), + [2229] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if_in_compound_statement, 3, .alias_sequence_id = 5), + [2231] = {.count = 1, .reusable = true}, SHIFT(851), + [2233] = {.count = 1, .reusable = true}, SHIFT(852), + [2235] = {.count = 1, .reusable = false}, SHIFT(853), + [2237] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_else_in_compound_statement, 1, .alias_sequence_id = 6), + [2239] = {.count = 1, .reusable = false}, SHIFT(854), + [2241] = {.count = 1, .reusable = false}, SHIFT(855), + [2243] = {.count = 1, .reusable = true}, SHIFT(856), + [2245] = {.count = 1, .reusable = false}, SHIFT(857), + [2247] = {.count = 1, .reusable = false}, SHIFT(858), + [2249] = {.count = 1, .reusable = false}, SHIFT(859), + [2251] = {.count = 1, .reusable = false}, SHIFT(860), + [2253] = {.count = 1, .reusable = false}, SHIFT(861), + [2255] = {.count = 1, .reusable = false}, SHIFT(862), + [2257] = {.count = 1, .reusable = false}, SHIFT(863), + [2259] = {.count = 1, .reusable = false}, SHIFT(864), + [2261] = {.count = 1, .reusable = false}, SHIFT(865), + [2263] = {.count = 1, .reusable = false}, SHIFT(866), + [2265] = {.count = 1, .reusable = false}, SHIFT(867), + [2267] = {.count = 1, .reusable = true}, SHIFT(872), + [2269] = {.count = 1, .reusable = false}, SHIFT(872), + [2271] = {.count = 1, .reusable = false}, SHIFT(868), + [2273] = {.count = 1, .reusable = false}, SHIFT(875), + [2275] = {.count = 1, .reusable = true}, SHIFT(878), + [2277] = {.count = 1, .reusable = false}, SHIFT(878), + [2279] = {.count = 1, .reusable = true}, SHIFT(879), + [2281] = {.count = 1, .reusable = true}, SHIFT(882), + [2283] = {.count = 1, .reusable = true}, SHIFT(883), + [2285] = {.count = 1, .reusable = true}, SHIFT(884), + [2287] = {.count = 1, .reusable = false}, SHIFT(884), + [2289] = {.count = 1, .reusable = true}, SHIFT(885), + [2291] = {.count = 1, .reusable = true}, SHIFT(886), + [2293] = {.count = 1, .reusable = true}, SHIFT(887), + [2295] = {.count = 1, .reusable = true}, SHIFT(888), + [2297] = {.count = 1, .reusable = true}, SHIFT(889), + [2299] = {.count = 1, .reusable = true}, SHIFT(890), + [2301] = {.count = 1, .reusable = true}, SHIFT(891), + [2303] = {.count = 1, .reusable = true}, SHIFT(892), + [2305] = {.count = 1, .reusable = false}, SHIFT(893), + [2307] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_compound_statement, 3, .alias_sequence_id = 7), + [2309] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_compound_statement, 3, .alias_sequence_id = 7), + [2311] = {.count = 1, .reusable = true}, SHIFT(897), + [2313] = {.count = 1, .reusable = true}, SHIFT(898), + [2315] = {.count = 1, .reusable = false}, SHIFT(899), + [2317] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_compound_statement, 3, .alias_sequence_id = 8), + [2319] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_compound_statement, 3, .alias_sequence_id = 8), + [2321] = {.count = 1, .reusable = true}, SHIFT(902), + [2323] = {.count = 1, .reusable = true}, SHIFT(903), + [2325] = {.count = 1, .reusable = false}, SHIFT(904), + [2327] = {.count = 1, .reusable = true}, SHIFT(907), + [2329] = {.count = 1, .reusable = true}, SHIFT(909), + [2331] = {.count = 1, .reusable = false}, SHIFT(909), + [2333] = {.count = 1, .reusable = true}, REDUCE(sym_parenthesized_expression, 3), + [2335] = {.count = 1, .reusable = false}, REDUCE(sym_parenthesized_expression, 3), + [2337] = {.count = 1, .reusable = true}, SHIFT(910), + [2339] = {.count = 1, .reusable = false}, SHIFT(910), + [2341] = {.count = 1, .reusable = true}, SHIFT(911), + [2343] = {.count = 1, .reusable = false}, SHIFT(911), + [2345] = {.count = 1, .reusable = true}, SHIFT(912), + [2347] = {.count = 1, .reusable = false}, SHIFT(912), + [2349] = {.count = 1, .reusable = true}, SHIFT(913), + [2351] = {.count = 1, .reusable = false}, SHIFT(913), + [2353] = {.count = 1, .reusable = true}, SHIFT(914), + [2355] = {.count = 1, .reusable = false}, SHIFT(914), + [2357] = {.count = 1, .reusable = true}, SHIFT(915), + [2359] = {.count = 1, .reusable = false}, SHIFT(915), + [2361] = {.count = 1, .reusable = true}, SHIFT(916), + [2363] = {.count = 1, .reusable = false}, SHIFT(916), + [2365] = {.count = 1, .reusable = true}, SHIFT(917), + [2367] = {.count = 1, .reusable = false}, SHIFT(917), + [2369] = {.count = 1, .reusable = true}, SHIFT(918), + [2371] = {.count = 1, .reusable = false}, SHIFT(918), + [2373] = {.count = 1, .reusable = true}, SHIFT(919), + [2375] = {.count = 1, .reusable = false}, SHIFT(919), + [2377] = {.count = 1, .reusable = true}, SHIFT(920), + [2379] = {.count = 1, .reusable = false}, SHIFT(920), + [2381] = {.count = 1, .reusable = true}, SHIFT(921), + [2383] = {.count = 1, .reusable = false}, SHIFT(921), + [2385] = {.count = 1, .reusable = true}, SHIFT(924), + [2387] = {.count = 1, .reusable = true}, SHIFT(927), + [2389] = {.count = 1, .reusable = false}, SHIFT(927), + [2391] = {.count = 1, .reusable = true}, SHIFT(928), + [2393] = {.count = 1, .reusable = true}, SHIFT(930), + [2395] = {.count = 1, .reusable = true}, SHIFT(931), + [2397] = {.count = 1, .reusable = false}, REDUCE(sym_if_statement, 3), + [2399] = {.count = 1, .reusable = true}, REDUCE(sym_if_statement, 3), + [2401] = {.count = 1, .reusable = false}, SHIFT(932), + [2403] = {.count = 1, .reusable = false}, REDUCE(sym_switch_statement, 3), + [2405] = {.count = 1, .reusable = true}, REDUCE(sym_switch_statement, 3), + [2407] = {.count = 1, .reusable = true}, SHIFT(933), + [2409] = {.count = 1, .reusable = true}, SHIFT(935), + [2411] = {.count = 1, .reusable = false}, SHIFT(935), + [2413] = {.count = 1, .reusable = true}, SHIFT(937), + [2415] = {.count = 1, .reusable = false}, SHIFT(937), + [2417] = {.count = 1, .reusable = true}, SHIFT(938), + [2419] = {.count = 1, .reusable = false}, SHIFT(938), + [2421] = {.count = 1, .reusable = true}, SHIFT(939), + [2423] = {.count = 1, .reusable = false}, SHIFT(939), + [2425] = {.count = 1, .reusable = true}, SHIFT(940), + [2427] = {.count = 1, .reusable = false}, SHIFT(940), + [2429] = {.count = 1, .reusable = true}, SHIFT(941), + [2431] = {.count = 1, .reusable = false}, SHIFT(941), + [2433] = {.count = 1, .reusable = true}, SHIFT(942), + [2435] = {.count = 1, .reusable = false}, SHIFT(942), + [2437] = {.count = 1, .reusable = true}, SHIFT(943), + [2439] = {.count = 1, .reusable = false}, SHIFT(943), + [2441] = {.count = 1, .reusable = true}, SHIFT(944), + [2443] = {.count = 1, .reusable = false}, SHIFT(944), + [2445] = {.count = 1, .reusable = true}, SHIFT(945), + [2447] = {.count = 1, .reusable = false}, SHIFT(945), + [2449] = {.count = 1, .reusable = true}, SHIFT(946), + [2451] = {.count = 1, .reusable = false}, SHIFT(946), + [2453] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 3), + [2455] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 3), + [2457] = {.count = 1, .reusable = false}, REDUCE(sym_while_statement, 3), + [2459] = {.count = 1, .reusable = true}, REDUCE(sym_while_statement, 3), + [2461] = {.count = 1, .reusable = false}, SHIFT(948), + [2463] = {.count = 1, .reusable = false}, SHIFT(949), + [2465] = {.count = 1, .reusable = false}, SHIFT(950), + [2467] = {.count = 1, .reusable = false}, SHIFT(951), + [2469] = {.count = 1, .reusable = false}, SHIFT(952), + [2471] = {.count = 1, .reusable = false}, SHIFT(953), + [2473] = {.count = 1, .reusable = false}, SHIFT(954), + [2475] = {.count = 1, .reusable = true}, SHIFT(956), + [2477] = {.count = 1, .reusable = false}, SHIFT(957), + [2479] = {.count = 1, .reusable = true}, SHIFT(958), + [2481] = {.count = 1, .reusable = true}, SHIFT(959), + [2483] = {.count = 1, .reusable = true}, SHIFT(960), + [2485] = {.count = 1, .reusable = false}, SHIFT(960), + [2487] = {.count = 1, .reusable = true}, SHIFT(962), + [2489] = {.count = 1, .reusable = true}, SHIFT(963), + [2491] = {.count = 1, .reusable = false}, SHIFT(963), + [2493] = {.count = 1, .reusable = true}, SHIFT(964), + [2495] = {.count = 1, .reusable = false}, REDUCE(sym_return_statement, 3), + [2497] = {.count = 1, .reusable = true}, REDUCE(sym_return_statement, 3), + [2499] = {.count = 1, .reusable = false}, REDUCE(sym_goto_statement, 3, .alias_sequence_id = 28), + [2501] = {.count = 1, .reusable = true}, REDUCE(sym_goto_statement, 3, .alias_sequence_id = 28), + [2503] = {.count = 1, .reusable = true}, SHIFT(965), + [2505] = {.count = 1, .reusable = true}, REDUCE(sym_char_literal, 3), + [2507] = {.count = 1, .reusable = false}, REDUCE(sym_char_literal, 3), + [2509] = {.count = 1, .reusable = false}, REDUCE(sym_labeled_statement, 3, .alias_sequence_id = 29), + [2511] = {.count = 1, .reusable = true}, REDUCE(sym_labeled_statement, 3, .alias_sequence_id = 29), + [2513] = {.count = 1, .reusable = true}, REDUCE(sym_comma_expression, 3), + [2515] = {.count = 1, .reusable = true}, REDUCE(sym_argument_list, 2, .dynamic_precedence = 1), + [2517] = {.count = 1, .reusable = false}, REDUCE(sym_argument_list, 2, .dynamic_precedence = 1), + [2519] = {.count = 1, .reusable = true}, SHIFT(966), + [2521] = {.count = 1, .reusable = true}, SHIFT(967), + [2523] = {.count = 1, .reusable = true}, REDUCE(sym_math_expression, 3), + [2525] = {.count = 1, .reusable = false}, REDUCE(sym_math_expression, 3), + [2527] = {.count = 1, .reusable = true}, SHIFT(969), + [2529] = {.count = 1, .reusable = true}, REDUCE(sym_assignment_expression, 3), + [2531] = {.count = 1, .reusable = true}, SHIFT(970), + [2533] = {.count = 1, .reusable = true}, REDUCE(sym_bitwise_expression, 3), + [2535] = {.count = 1, .reusable = false}, REDUCE(sym_bitwise_expression, 3), + [2537] = {.count = 1, .reusable = true}, REDUCE(sym_logical_expression, 3), + [2539] = {.count = 1, .reusable = false}, REDUCE(sym_logical_expression, 3), + [2541] = {.count = 1, .reusable = true}, REDUCE(sym_equality_expression, 3), + [2543] = {.count = 1, .reusable = false}, REDUCE(sym_equality_expression, 3), + [2545] = {.count = 1, .reusable = true}, REDUCE(sym_relational_expression, 3), + [2547] = {.count = 1, .reusable = false}, REDUCE(sym_relational_expression, 3), + [2549] = {.count = 1, .reusable = true}, REDUCE(sym_shift_expression, 3), + [2551] = {.count = 1, .reusable = false}, REDUCE(sym_shift_expression, 3), + [2553] = {.count = 1, .reusable = true}, REDUCE(sym_field_expression, 3, .alias_sequence_id = 30), + [2555] = {.count = 1, .reusable = false}, REDUCE(sym_field_expression, 3, .alias_sequence_id = 30), + [2557] = {.count = 1, .reusable = true}, REDUCE(aux_sym_concatenated_string_repeat1, 2), + [2559] = {.count = 1, .reusable = false}, REDUCE(aux_sym_concatenated_string_repeat1, 2), + [2561] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(22), + [2564] = {.count = 1, .reusable = true}, REDUCE(aux_sym_parameter_list_repeat1, 2), + [2566] = {.count = 1, .reusable = true}, REDUCE(sym_parameter_list, 4, .dynamic_precedence = 1), + [2568] = {.count = 2, .reusable = true}, REDUCE(aux_sym_parameter_list_repeat1, 2), SHIFT_REPEAT(469), + [2571] = {.count = 2, .reusable = true}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .alias_sequence_id = 1), + [2574] = {.count = 3, .reusable = true}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .alias_sequence_id = 1), SHIFT(42), + [2578] = {.count = 1, .reusable = true}, SHIFT(973), + [2580] = {.count = 1, .reusable = true}, REDUCE(sym_array_declarator, 5), + [2582] = {.count = 1, .reusable = true}, SHIFT(974), + [2584] = {.count = 1, .reusable = true}, REDUCE(sym_initializer_list, 3), + [2586] = {.count = 1, .reusable = false}, REDUCE(sym_initializer_list, 3), + [2588] = {.count = 1, .reusable = true}, SHIFT(975), + [2590] = {.count = 1, .reusable = true}, REDUCE(sym_field_designator, 2, .alias_sequence_id = 31), + [2592] = {.count = 1, .reusable = true}, SHIFT(976), + [2594] = {.count = 1, .reusable = true}, SHIFT(977), + [2596] = {.count = 1, .reusable = false}, SHIFT(977), + [2598] = {.count = 1, .reusable = true}, SHIFT(979), + [2600] = {.count = 1, .reusable = true}, SHIFT(981), + [2602] = {.count = 1, .reusable = false}, SHIFT(981), + [2604] = {.count = 2, .reusable = true}, REDUCE(aux_sym_initializer_pair_repeat1, 2), SHIFT_REPEAT(502), + [2607] = {.count = 1, .reusable = true}, REDUCE(aux_sym_initializer_pair_repeat1, 2), + [2609] = {.count = 2, .reusable = true}, REDUCE(aux_sym_initializer_pair_repeat1, 2), SHIFT_REPEAT(503), + [2612] = {.count = 1, .reusable = true}, SHIFT(983), + [2614] = {.count = 1, .reusable = true}, SHIFT(984), + [2616] = {.count = 1, .reusable = true}, SHIFT(985), + [2618] = {.count = 1, .reusable = true}, SHIFT(986), + [2620] = {.count = 1, .reusable = true}, SHIFT(987), + [2622] = {.count = 1, .reusable = true}, SHIFT(988), + [2624] = {.count = 1, .reusable = true}, SHIFT(989), + [2626] = {.count = 1, .reusable = true}, REDUCE(sym_array_type_declarator, 5), + [2628] = {.count = 1, .reusable = true}, SHIFT(990), + [2630] = {.count = 1, .reusable = true}, SHIFT(991), + [2632] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_elif_in_field_declaration_list, 3, .alias_sequence_id = 32), + [2634] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_elif_in_field_declaration_list, 3, .alias_sequence_id = 33), + [2636] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_elif_in_field_declaration_list, 3, .alias_sequence_id = 14), + [2638] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .alias_sequence_id = 34), + [2640] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .alias_sequence_id = 34), + [2642] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .alias_sequence_id = 35), + [2644] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .alias_sequence_id = 35), + [2646] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, .alias_sequence_id = 36), + [2648] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, .alias_sequence_id = 36), + [2650] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, .alias_sequence_id = 37), + [2652] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, .alias_sequence_id = 37), + [2654] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, .alias_sequence_id = 38), + [2656] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, .alias_sequence_id = 38), + [2658] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, .alias_sequence_id = 39), + [2660] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, .alias_sequence_id = 39), + [2662] = {.count = 1, .reusable = true}, SHIFT(994), + [2664] = {.count = 1, .reusable = true}, SHIFT(995), + [2666] = {.count = 1, .reusable = true}, REDUCE(sym_array_field_declarator, 4), + [2668] = {.count = 1, .reusable = true}, SHIFT(996), + [2670] = {.count = 1, .reusable = false}, REDUCE(sym_field_declaration, 5), + [2672] = {.count = 1, .reusable = true}, REDUCE(sym_field_declaration, 5), + [2674] = {.count = 1, .reusable = true}, SHIFT(997), + [2676] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_array_declarator, 4), + [2678] = {.count = 1, .reusable = true}, SHIFT(998), + [2680] = {.count = 1, .reusable = false}, SHIFT(999), + [2682] = {.count = 1, .reusable = false}, SHIFT(1003), + [2684] = {.count = 1, .reusable = false}, SHIFT(1007), + [2686] = {.count = 1, .reusable = false}, SHIFT(1011), + [2688] = {.count = 1, .reusable = true}, SHIFT(1012), + [2690] = {.count = 1, .reusable = true}, SHIFT(1013), + [2692] = {.count = 1, .reusable = true}, SHIFT(1016), + [2694] = {.count = 1, .reusable = false}, SHIFT(1016), + [2696] = {.count = 1, .reusable = true}, SHIFT(1017), + [2698] = {.count = 1, .reusable = true}, SHIFT(1020), + [2700] = {.count = 1, .reusable = true}, SHIFT(1021), + [2702] = {.count = 1, .reusable = true}, SHIFT(1022), + [2704] = {.count = 1, .reusable = false}, SHIFT(1022), + [2706] = {.count = 1, .reusable = true}, SHIFT(1023), + [2708] = {.count = 1, .reusable = true}, SHIFT(1024), + [2710] = {.count = 1, .reusable = true}, SHIFT(1025), + [2712] = {.count = 1, .reusable = true}, SHIFT(1026), + [2714] = {.count = 1, .reusable = true}, SHIFT(1027), + [2716] = {.count = 1, .reusable = true}, SHIFT(1028), + [2718] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_else_in_compound_statement, 2, .alias_sequence_id = 6), + [2720] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_elif_in_compound_statement, 2, .alias_sequence_id = 14), + [2722] = {.count = 1, .reusable = false}, SHIFT(1033), + [2724] = {.count = 1, .reusable = false}, SHIFT(1034), + [2726] = {.count = 1, .reusable = false}, SHIFT(1035), + [2728] = {.count = 1, .reusable = false}, SHIFT(1036), + [2730] = {.count = 1, .reusable = false}, SHIFT(1037), + [2732] = {.count = 1, .reusable = false}, SHIFT(1038), + [2734] = {.count = 1, .reusable = false}, SHIFT(1039), + [2736] = {.count = 1, .reusable = false}, SHIFT(1041), + [2738] = {.count = 1, .reusable = true}, SHIFT(1043), + [2740] = {.count = 1, .reusable = false}, SHIFT(1044), + [2742] = {.count = 1, .reusable = true}, SHIFT(1048), + [2744] = {.count = 1, .reusable = true}, SHIFT(1049), + [2746] = {.count = 1, .reusable = true}, SHIFT(1050), + [2748] = {.count = 1, .reusable = false}, SHIFT(1050), + [2750] = {.count = 1, .reusable = true}, SHIFT(1051), + [2752] = {.count = 1, .reusable = true}, SHIFT(1052), + [2754] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if_in_compound_statement, 4, .alias_sequence_id = 22), + [2756] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if_in_compound_statement, 4, .alias_sequence_id = 22), + [2758] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if_in_compound_statement, 4, .alias_sequence_id = 23), + [2760] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if_in_compound_statement, 4, .alias_sequence_id = 23), + [2762] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if_in_compound_statement, 4, .alias_sequence_id = 15), + [2764] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if_in_compound_statement, 4, .alias_sequence_id = 15), + [2766] = {.count = 1, .reusable = true}, SHIFT(1054), + [2768] = {.count = 1, .reusable = true}, SHIFT(1055), + [2770] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(61), + [2773] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(62), + [2776] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(625), + [2779] = {.count = 1, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), + [2781] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(627), + [2784] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(628), + [2787] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(69), + [2790] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(631), + [2793] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(70), + [2796] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(322), + [2799] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(632), + [2802] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(633), + [2805] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(634), + [2808] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(635), + [2811] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(636), + [2814] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(637), + [2817] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(638), + [2820] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(639), + [2823] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(640), + [2826] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(641), + [2829] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(642), + [2832] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(649), + [2835] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(649), + [2838] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(643), + [2841] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_compound_statement, 4, .alias_sequence_id = 24), + [2843] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_compound_statement, 4, .alias_sequence_id = 24), + [2845] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_compound_statement, 4, .alias_sequence_id = 25), + [2847] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_compound_statement, 4, .alias_sequence_id = 25), + [2849] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_compound_statement, 4, .alias_sequence_id = 16), + [2851] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_compound_statement, 4, .alias_sequence_id = 16), + [2853] = {.count = 1, .reusable = true}, SHIFT(1056), + [2855] = {.count = 1, .reusable = true}, SHIFT(1057), + [2857] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_compound_statement, 4, .alias_sequence_id = 26), + [2859] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_compound_statement, 4, .alias_sequence_id = 26), + [2861] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_compound_statement, 4, .alias_sequence_id = 27), + [2863] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_compound_statement, 4, .alias_sequence_id = 27), + [2865] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_compound_statement, 4, .alias_sequence_id = 17), + [2867] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_compound_statement, 4, .alias_sequence_id = 17), + [2869] = {.count = 1, .reusable = true}, SHIFT(1058), + [2871] = {.count = 1, .reusable = true}, SHIFT(1059), + [2873] = {.count = 1, .reusable = true}, SHIFT(1060), + [2875] = {.count = 1, .reusable = true}, SHIFT(1061), + [2877] = {.count = 1, .reusable = true}, REDUCE(sym_cast_expression, 4), + [2879] = {.count = 1, .reusable = false}, REDUCE(sym_cast_expression, 4), + [2881] = {.count = 1, .reusable = true}, REDUCE(sym_compound_literal_expression, 4), + [2883] = {.count = 1, .reusable = false}, REDUCE(sym_compound_literal_expression, 4), + [2885] = {.count = 1, .reusable = true}, SHIFT(1063), + [2887] = {.count = 1, .reusable = false}, SHIFT(1064), + [2889] = {.count = 1, .reusable = true}, SHIFT(1065), + [2891] = {.count = 1, .reusable = true}, SHIFT(1066), + [2893] = {.count = 1, .reusable = false}, SHIFT(1066), + [2895] = {.count = 1, .reusable = true}, SHIFT(1068), + [2897] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 4), + [2899] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 4), + [2901] = {.count = 1, .reusable = true}, SHIFT(1069), + [2903] = {.count = 1, .reusable = true}, SHIFT(1072), + [2905] = {.count = 1, .reusable = false}, SHIFT(1072), + [2907] = {.count = 1, .reusable = true}, SHIFT(1073), + [2909] = {.count = 1, .reusable = true}, SHIFT(1075), + [2911] = {.count = 1, .reusable = true}, SHIFT(1076), + [2913] = {.count = 1, .reusable = true}, SHIFT(1077), + [2915] = {.count = 1, .reusable = true}, SHIFT(1078), + [2917] = {.count = 1, .reusable = true}, SHIFT(1079), + [2919] = {.count = 1, .reusable = true}, SHIFT(1080), + [2921] = {.count = 1, .reusable = false}, SHIFT(1080), + [2923] = {.count = 1, .reusable = true}, SHIFT(1081), + [2925] = {.count = 1, .reusable = false}, REDUCE(sym_do_statement, 4), + [2927] = {.count = 1, .reusable = true}, REDUCE(sym_do_statement, 4), + [2929] = {.count = 1, .reusable = true}, SHIFT(1082), + [2931] = {.count = 1, .reusable = true}, SHIFT(1083), + [2933] = {.count = 1, .reusable = false}, SHIFT(1083), + [2935] = {.count = 1, .reusable = true}, SHIFT(1084), + [2937] = {.count = 1, .reusable = true}, SHIFT(1085), + [2939] = {.count = 1, .reusable = false}, SHIFT(1085), + [2941] = {.count = 1, .reusable = true}, REDUCE(sym_sizeof_expression, 4), + [2943] = {.count = 1, .reusable = false}, SHIFT(230), + [2945] = {.count = 1, .reusable = false}, REDUCE(sym_sizeof_expression, 4), + [2947] = {.count = 1, .reusable = false}, SHIFT(242), + [2949] = {.count = 1, .reusable = true}, SHIFT(1086), + [2951] = {.count = 1, .reusable = false}, SHIFT(1086), + [2953] = {.count = 1, .reusable = true}, REDUCE(sym_argument_list, 3, .dynamic_precedence = 1), + [2955] = {.count = 1, .reusable = false}, REDUCE(sym_argument_list, 3, .dynamic_precedence = 1), + [2957] = {.count = 1, .reusable = true}, SHIFT(1087), + [2959] = {.count = 1, .reusable = true}, REDUCE(sym_subscript_expression, 4), + [2961] = {.count = 1, .reusable = false}, REDUCE(sym_subscript_expression, 4), + [2963] = {.count = 1, .reusable = true}, SHIFT(1089), + [2965] = {.count = 1, .reusable = false}, SHIFT(1089), + [2967] = {.count = 1, .reusable = false}, SHIFT(262), + [2969] = {.count = 1, .reusable = false}, SHIFT(264), + [2971] = {.count = 1, .reusable = true}, SHIFT(1091), + [2973] = {.count = 1, .reusable = false}, SHIFT(1091), + [2975] = {.count = 1, .reusable = true}, REDUCE(sym_subscript_designator, 3), + [2977] = {.count = 1, .reusable = true}, REDUCE(sym_initializer_list, 4), + [2979] = {.count = 1, .reusable = false}, REDUCE(sym_initializer_list, 4), + [2981] = {.count = 1, .reusable = true}, REDUCE(aux_sym_initializer_list_repeat1, 2), + [2983] = {.count = 1, .reusable = true}, SHIFT(1092), + [2985] = {.count = 2, .reusable = true}, REDUCE(aux_sym_initializer_list_repeat1, 2), SHIFT_REPEAT(1093), + [2988] = {.count = 1, .reusable = true}, REDUCE(sym_initializer_pair, 3), + [2990] = {.count = 1, .reusable = false}, SHIFT(340), + [2992] = {.count = 1, .reusable = false}, SHIFT(341), + [2994] = {.count = 1, .reusable = true}, SHIFT(1094), + [2996] = {.count = 1, .reusable = false}, SHIFT(1094), + [2998] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_elif_in_field_declaration_list, 4, .alias_sequence_id = 40), + [3000] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_elif_in_field_declaration_list, 4, .alias_sequence_id = 41), + [3002] = {.count = 1, .reusable = false}, SHIFT(370), + [3004] = {.count = 1, .reusable = false}, SHIFT(371), + [3006] = {.count = 1, .reusable = true}, SHIFT(1095), + [3008] = {.count = 1, .reusable = false}, SHIFT(1095), + [3010] = {.count = 1, .reusable = true}, REDUCE(sym_array_field_declarator, 5), + [3012] = {.count = 1, .reusable = false}, REDUCE(sym_field_declaration, 6), + [3014] = {.count = 1, .reusable = true}, REDUCE(sym_field_declaration, 6), + [3016] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_array_declarator, 5), + [3018] = {.count = 1, .reusable = true}, SHIFT(1096), + [3020] = {.count = 1, .reusable = true}, SHIFT(1097), + [3022] = {.count = 1, .reusable = false}, SHIFT(1098), + [3024] = {.count = 1, .reusable = true}, SHIFT(1101), + [3026] = {.count = 1, .reusable = true}, SHIFT(1102), + [3028] = {.count = 1, .reusable = false}, SHIFT(1103), + [3030] = {.count = 1, .reusable = true}, SHIFT(1106), + [3032] = {.count = 1, .reusable = true}, SHIFT(1107), + [3034] = {.count = 1, .reusable = false}, SHIFT(1108), + [3036] = {.count = 1, .reusable = false}, SHIFT(1111), + [3038] = {.count = 1, .reusable = false}, SHIFT(1115), + [3040] = {.count = 1, .reusable = false}, SHIFT(1119), + [3042] = {.count = 1, .reusable = false}, SHIFT(1123), + [3044] = {.count = 1, .reusable = false}, SHIFT(1124), + [3046] = {.count = 1, .reusable = false}, SHIFT(1125), + [3048] = {.count = 1, .reusable = false}, SHIFT(1126), + [3050] = {.count = 1, .reusable = false}, SHIFT(1127), + [3052] = {.count = 1, .reusable = false}, SHIFT(1128), + [3054] = {.count = 1, .reusable = false}, SHIFT(1129), + [3056] = {.count = 1, .reusable = false}, SHIFT(1131), + [3058] = {.count = 1, .reusable = true}, SHIFT(1133), + [3060] = {.count = 1, .reusable = false}, SHIFT(1134), + [3062] = {.count = 1, .reusable = true}, SHIFT(1138), + [3064] = {.count = 1, .reusable = true}, SHIFT(1139), + [3066] = {.count = 1, .reusable = true}, SHIFT(1140), + [3068] = {.count = 1, .reusable = false}, SHIFT(1140), + [3070] = {.count = 1, .reusable = true}, SHIFT(1141), + [3072] = {.count = 1, .reusable = true}, SHIFT(1142), + [3074] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(148), + [3077] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(149), + [3080] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(853), + [3083] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(854), + [3086] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(855), + [3089] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(153), + [3092] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(856), + [3095] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(154), + [3098] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(541), + [3101] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(857), + [3104] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(858), + [3107] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(859), + [3110] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(860), + [3113] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(861), + [3116] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(862), + [3119] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(863), + [3122] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(864), + [3125] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(865), + [3128] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(866), + [3131] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(867), + [3134] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(872), + [3137] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(872), + [3140] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(868), + [3143] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_elif_in_compound_statement, 3, .alias_sequence_id = 32), + [3145] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_elif_in_compound_statement, 3, .alias_sequence_id = 33), + [3147] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_elif_in_compound_statement, 3, .alias_sequence_id = 14), + [3149] = {.count = 1, .reusable = true}, SHIFT(1148), + [3151] = {.count = 1, .reusable = false}, SHIFT(1148), + [3153] = {.count = 1, .reusable = true}, SHIFT(1149), + [3155] = {.count = 1, .reusable = true}, SHIFT(1151), + [3157] = {.count = 1, .reusable = true}, SHIFT(1152), + [3159] = {.count = 1, .reusable = false}, SHIFT(1153), + [3161] = {.count = 1, .reusable = true}, SHIFT(1155), + [3163] = {.count = 1, .reusable = true}, SHIFT(1157), + [3165] = {.count = 1, .reusable = true}, SHIFT(1158), + [3167] = {.count = 1, .reusable = false}, SHIFT(1158), + [3169] = {.count = 1, .reusable = true}, SHIFT(1159), + [3171] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if_in_compound_statement, 5, .alias_sequence_id = 34), + [3173] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if_in_compound_statement, 5, .alias_sequence_id = 34), + [3175] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if_in_compound_statement, 5, .alias_sequence_id = 35), + [3177] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if_in_compound_statement, 5, .alias_sequence_id = 35), + [3179] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_compound_statement, 5, .alias_sequence_id = 36), + [3181] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_compound_statement, 5, .alias_sequence_id = 36), + [3183] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_compound_statement, 5, .alias_sequence_id = 37), + [3185] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_compound_statement, 5, .alias_sequence_id = 37), + [3187] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_compound_statement, 5, .alias_sequence_id = 38), + [3189] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_compound_statement, 5, .alias_sequence_id = 38), + [3191] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_compound_statement, 5, .alias_sequence_id = 39), + [3193] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_compound_statement, 5, .alias_sequence_id = 39), + [3195] = {.count = 1, .reusable = false}, SHIFT(400), + [3197] = {.count = 1, .reusable = false}, SHIFT(401), + [3199] = {.count = 1, .reusable = true}, SHIFT(1160), + [3201] = {.count = 1, .reusable = false}, SHIFT(1160), + [3203] = {.count = 1, .reusable = false}, SHIFT(1161), + [3205] = {.count = 1, .reusable = true}, SHIFT(1162), + [3207] = {.count = 1, .reusable = true}, SHIFT(1163), + [3209] = {.count = 1, .reusable = false}, SHIFT(1163), + [3211] = {.count = 1, .reusable = true}, SHIFT(1164), + [3213] = {.count = 1, .reusable = false}, REDUCE(sym_if_statement, 5), + [3215] = {.count = 1, .reusable = true}, REDUCE(sym_if_statement, 5), + [3217] = {.count = 1, .reusable = false}, SHIFT(415), + [3219] = {.count = 1, .reusable = false}, SHIFT(416), + [3221] = {.count = 1, .reusable = true}, SHIFT(1165), + [3223] = {.count = 1, .reusable = false}, SHIFT(1165), + [3225] = {.count = 1, .reusable = true}, SHIFT(1167), + [3227] = {.count = 1, .reusable = false}, SHIFT(1168), + [3229] = {.count = 1, .reusable = true}, SHIFT(1169), + [3231] = {.count = 1, .reusable = true}, SHIFT(1170), + [3233] = {.count = 1, .reusable = false}, SHIFT(1170), + [3235] = {.count = 1, .reusable = true}, SHIFT(1171), + [3237] = {.count = 1, .reusable = true}, SHIFT(1172), + [3239] = {.count = 1, .reusable = false}, SHIFT(1172), + [3241] = {.count = 1, .reusable = true}, SHIFT(1173), + [3243] = {.count = 1, .reusable = true}, SHIFT(1174), + [3245] = {.count = 1, .reusable = false}, SHIFT(1174), + [3247] = {.count = 1, .reusable = true}, SHIFT(1176), + [3249] = {.count = 1, .reusable = true}, SHIFT(1178), + [3251] = {.count = 1, .reusable = false}, SHIFT(1178), + [3253] = {.count = 1, .reusable = true}, SHIFT(1179), + [3255] = {.count = 1, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), + [3257] = {.count = 1, .reusable = true}, REDUCE(sym_argument_list, 4, .dynamic_precedence = 1), + [3259] = {.count = 1, .reusable = false}, REDUCE(sym_argument_list, 4, .dynamic_precedence = 1), + [3261] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(966), + [3264] = {.count = 1, .reusable = true}, REDUCE(sym_conditional_expression, 5), + [3266] = {.count = 1, .reusable = true}, REDUCE(sym_initializer_list, 5), + [3268] = {.count = 1, .reusable = false}, REDUCE(sym_initializer_list, 5), + [3270] = {.count = 1, .reusable = true}, SHIFT(1180), + [3272] = {.count = 1, .reusable = true}, SHIFT(1181), + [3274] = {.count = 1, .reusable = true}, SHIFT(1182), + [3276] = {.count = 1, .reusable = true}, SHIFT(1183), + [3278] = {.count = 1, .reusable = true}, SHIFT(1184), + [3280] = {.count = 1, .reusable = true}, SHIFT(1185), + [3282] = {.count = 1, .reusable = true}, SHIFT(1186), + [3284] = {.count = 1, .reusable = true}, SHIFT(1187), + [3286] = {.count = 1, .reusable = false}, SHIFT(1188), + [3288] = {.count = 1, .reusable = true}, SHIFT(1191), + [3290] = {.count = 1, .reusable = true}, SHIFT(1192), + [3292] = {.count = 1, .reusable = false}, SHIFT(1193), + [3294] = {.count = 1, .reusable = true}, SHIFT(1196), + [3296] = {.count = 1, .reusable = true}, SHIFT(1197), + [3298] = {.count = 1, .reusable = false}, SHIFT(1198), + [3300] = {.count = 1, .reusable = true}, SHIFT(1203), + [3302] = {.count = 1, .reusable = false}, SHIFT(1203), + [3304] = {.count = 1, .reusable = true}, SHIFT(1204), + [3306] = {.count = 1, .reusable = true}, SHIFT(1206), + [3308] = {.count = 1, .reusable = true}, SHIFT(1207), + [3310] = {.count = 1, .reusable = false}, SHIFT(1208), + [3312] = {.count = 1, .reusable = true}, SHIFT(1210), + [3314] = {.count = 1, .reusable = true}, SHIFT(1212), + [3316] = {.count = 1, .reusable = true}, SHIFT(1213), + [3318] = {.count = 1, .reusable = false}, SHIFT(1213), + [3320] = {.count = 1, .reusable = true}, SHIFT(1214), + [3322] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_elif_in_compound_statement, 4, .alias_sequence_id = 40), + [3324] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_elif_in_compound_statement, 4, .alias_sequence_id = 41), + [3326] = {.count = 1, .reusable = true}, SHIFT(1216), + [3328] = {.count = 1, .reusable = false}, SHIFT(1217), + [3330] = {.count = 1, .reusable = true}, SHIFT(1218), + [3332] = {.count = 1, .reusable = true}, SHIFT(1219), + [3334] = {.count = 1, .reusable = false}, SHIFT(1219), + [3336] = {.count = 1, .reusable = true}, SHIFT(1221), + [3338] = {.count = 1, .reusable = false}, SHIFT(1221), + [3340] = {.count = 1, .reusable = true}, SHIFT(1223), + [3342] = {.count = 1, .reusable = true}, SHIFT(1224), + [3344] = {.count = 1, .reusable = false}, SHIFT(1224), + [3346] = {.count = 1, .reusable = true}, SHIFT(1225), + [3348] = {.count = 1, .reusable = true}, SHIFT(1226), + [3350] = {.count = 1, .reusable = false}, SHIFT(1226), + [3352] = {.count = 1, .reusable = true}, SHIFT(1227), + [3354] = {.count = 1, .reusable = true}, SHIFT(1228), + [3356] = {.count = 1, .reusable = false}, SHIFT(1228), + [3358] = {.count = 1, .reusable = true}, SHIFT(1229), + [3360] = {.count = 1, .reusable = true}, SHIFT(1230), + [3362] = {.count = 1, .reusable = false}, SHIFT(1230), + [3364] = {.count = 1, .reusable = true}, SHIFT(1231), + [3366] = {.count = 1, .reusable = true}, SHIFT(1232), + [3368] = {.count = 1, .reusable = true}, SHIFT(1233), + [3370] = {.count = 1, .reusable = false}, SHIFT(1233), + [3372] = {.count = 1, .reusable = true}, SHIFT(1234), + [3374] = {.count = 1, .reusable = true}, SHIFT(1235), + [3376] = {.count = 1, .reusable = true}, SHIFT(1237), + [3378] = {.count = 1, .reusable = false}, SHIFT(1237), + [3380] = {.count = 1, .reusable = true}, SHIFT(1238), + [3382] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 6), + [3384] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 6), + [3386] = {.count = 1, .reusable = true}, SHIFT(1240), + [3388] = {.count = 1, .reusable = true}, SHIFT(1242), + [3390] = {.count = 1, .reusable = false}, SHIFT(1242), + [3392] = {.count = 1, .reusable = true}, SHIFT(1243), + [3394] = {.count = 1, .reusable = true}, SHIFT(1244), + [3396] = {.count = 1, .reusable = true}, SHIFT(1245), + [3398] = {.count = 1, .reusable = true}, SHIFT(1246), + [3400] = {.count = 1, .reusable = true}, SHIFT(1247), + [3402] = {.count = 1, .reusable = true}, SHIFT(1248), + [3404] = {.count = 1, .reusable = true}, SHIFT(1250), + [3406] = {.count = 1, .reusable = false}, SHIFT(1251), + [3408] = {.count = 1, .reusable = true}, SHIFT(1252), + [3410] = {.count = 1, .reusable = true}, SHIFT(1253), + [3412] = {.count = 1, .reusable = false}, SHIFT(1253), + [3414] = {.count = 1, .reusable = true}, SHIFT(1255), + [3416] = {.count = 1, .reusable = false}, SHIFT(1255), + [3418] = {.count = 1, .reusable = true}, SHIFT(1257), + [3420] = {.count = 1, .reusable = true}, SHIFT(1258), + [3422] = {.count = 1, .reusable = false}, SHIFT(1258), + [3424] = {.count = 1, .reusable = true}, SHIFT(1259), + [3426] = {.count = 1, .reusable = true}, SHIFT(1260), + [3428] = {.count = 1, .reusable = false}, SHIFT(1260), + [3430] = {.count = 1, .reusable = false}, SHIFT(1261), + [3432] = {.count = 1, .reusable = true}, SHIFT(1262), + [3434] = {.count = 1, .reusable = true}, SHIFT(1263), + [3436] = {.count = 1, .reusable = false}, SHIFT(1263), + [3438] = {.count = 1, .reusable = true}, SHIFT(1264), + [3440] = {.count = 1, .reusable = true}, SHIFT(1265), + [3442] = {.count = 1, .reusable = true}, SHIFT(1267), + [3444] = {.count = 1, .reusable = true}, SHIFT(1269), + [3446] = {.count = 1, .reusable = false}, SHIFT(1269), + [3448] = {.count = 1, .reusable = true}, SHIFT(1270), + [3450] = {.count = 1, .reusable = true}, SHIFT(1271), + [3452] = {.count = 1, .reusable = true}, SHIFT(1273), + [3454] = {.count = 1, .reusable = false}, SHIFT(1273), + [3456] = {.count = 1, .reusable = true}, SHIFT(1274), + [3458] = {.count = 1, .reusable = true}, SHIFT(1275), + [3460] = {.count = 1, .reusable = true}, SHIFT(1276), + [3462] = {.count = 1, .reusable = false}, SHIFT(1276), + [3464] = {.count = 1, .reusable = true}, SHIFT(1277), + [3466] = {.count = 1, .reusable = true}, SHIFT(1278), + [3468] = {.count = 1, .reusable = false}, SHIFT(1278), + [3470] = {.count = 1, .reusable = true}, SHIFT(1279), + [3472] = {.count = 1, .reusable = true}, SHIFT(1281), + [3474] = {.count = 1, .reusable = false}, SHIFT(1281), + [3476] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 7), + [3478] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 7), + [3480] = {.count = 1, .reusable = true}, SHIFT(1283), + [3482] = {.count = 1, .reusable = false}, SHIFT(1285), + [3484] = {.count = 1, .reusable = true}, SHIFT(1286), + [3486] = {.count = 1, .reusable = true}, SHIFT(1287), + [3488] = {.count = 1, .reusable = false}, SHIFT(1287), + [3490] = {.count = 1, .reusable = true}, SHIFT(1288), + [3492] = {.count = 1, .reusable = true}, SHIFT(1289), + [3494] = {.count = 1, .reusable = true}, SHIFT(1291), + [3496] = {.count = 1, .reusable = true}, SHIFT(1293), + [3498] = {.count = 1, .reusable = false}, SHIFT(1293), + [3500] = {.count = 1, .reusable = true}, SHIFT(1294), + [3502] = {.count = 1, .reusable = true}, SHIFT(1295), + [3504] = {.count = 1, .reusable = true}, SHIFT(1296), + [3506] = {.count = 1, .reusable = false}, SHIFT(1296), + [3508] = {.count = 1, .reusable = true}, SHIFT(1297), + [3510] = {.count = 1, .reusable = true}, SHIFT(1298), + [3512] = {.count = 1, .reusable = false}, SHIFT(1298), + [3514] = {.count = 1, .reusable = true}, SHIFT(1300), + [3516] = {.count = 1, .reusable = true}, SHIFT(1302), + [3518] = {.count = 1, .reusable = false}, SHIFT(1302), + [3520] = {.count = 1, .reusable = true}, SHIFT(1303), + [3522] = {.count = 1, .reusable = true}, SHIFT(1305), + [3524] = {.count = 1, .reusable = false}, SHIFT(1305), + [3526] = {.count = 1, .reusable = true}, SHIFT(1306), + [3528] = {.count = 1, .reusable = true}, SHIFT(1308), + [3530] = {.count = 1, .reusable = false}, SHIFT(1308), + [3532] = {.count = 1, .reusable = true}, SHIFT(1309), + [3534] = {.count = 1, .reusable = true}, SHIFT(1310), + [3536] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 8), + [3538] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 8), + [3540] = {.count = 1, .reusable = true}, SHIFT(1313), + [3542] = {.count = 1, .reusable = true}, SHIFT(1314), + [3544] = {.count = 1, .reusable = true}, SHIFT(1315), + [3546] = {.count = 1, .reusable = false}, SHIFT(1315), + [3548] = {.count = 1, .reusable = true}, SHIFT(1316), + [3550] = {.count = 1, .reusable = true}, SHIFT(1317), + [3552] = {.count = 1, .reusable = false}, SHIFT(1317), + [3554] = {.count = 1, .reusable = true}, SHIFT(1319), + [3556] = {.count = 1, .reusable = true}, SHIFT(1321), + [3558] = {.count = 1, .reusable = false}, SHIFT(1321), + [3560] = {.count = 1, .reusable = true}, SHIFT(1322), + [3562] = {.count = 1, .reusable = true}, SHIFT(1324), + [3564] = {.count = 1, .reusable = false}, SHIFT(1324), + [3566] = {.count = 1, .reusable = true}, SHIFT(1325), + [3568] = {.count = 1, .reusable = true}, SHIFT(1327), + [3570] = {.count = 1, .reusable = true}, SHIFT(1329), + [3572] = {.count = 1, .reusable = true}, SHIFT(1331), + [3574] = {.count = 1, .reusable = true}, SHIFT(1333), + [3576] = {.count = 1, .reusable = false}, SHIFT(1333), + [3578] = {.count = 1, .reusable = true}, SHIFT(1334), + [3580] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 9), + [3582] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 9), + [3584] = {.count = 1, .reusable = true}, SHIFT(1336), + [3586] = {.count = 1, .reusable = true}, SHIFT(1338), + [3588] = {.count = 1, .reusable = false}, SHIFT(1338), + [3590] = {.count = 1, .reusable = true}, SHIFT(1339), + [3592] = {.count = 1, .reusable = true}, SHIFT(1341), + [3594] = {.count = 1, .reusable = true}, SHIFT(1343), + [3596] = {.count = 1, .reusable = true}, SHIFT(1345), + [3598] = {.count = 1, .reusable = false}, SHIFT(1345), + [3600] = {.count = 1, .reusable = true}, SHIFT(1347), + [3602] = {.count = 1, .reusable = true}, SHIFT(1348), + [3604] = {.count = 1, .reusable = true}, SHIFT(1349), + [3606] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 10), + [3608] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 10), + [3610] = {.count = 1, .reusable = true}, SHIFT(1351), + [3612] = {.count = 1, .reusable = true}, SHIFT(1353), + [3614] = {.count = 1, .reusable = false}, SHIFT(1353), + [3616] = {.count = 1, .reusable = true}, SHIFT(1355), + [3618] = {.count = 1, .reusable = true}, SHIFT(1356), + [3620] = {.count = 1, .reusable = true}, SHIFT(1359), + [3622] = {.count = 1, .reusable = true}, SHIFT(1360), + [3624] = {.count = 1, .reusable = true}, SHIFT(1363), + [3626] = {.count = 1, .reusable = true}, SHIFT(1364), }; #ifdef _WIN32