diff --git a/grammar.js b/grammar.js index ef67480..6be945f 100644 --- a/grammar.js +++ b/grammar.js @@ -71,7 +71,13 @@ module.exports = grammar({ preproc_include: $ => seq( preprocessor('include'), - field('path', choice($.string_literal, $.system_lib_string)) + field('path', choice( + $.string_literal, + $.system_lib_string, + $.identifier, + alias($.preproc_call_expression, $.call_expression), + )), + '\n' ), preproc_def: $ => seq( diff --git a/src/grammar.json b/src/grammar.json index cc04b47..3ba4b8c 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -87,9 +87,26 @@ { "type": "SYMBOL", "name": "system_lib_string" + }, + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "preproc_call_expression" + }, + "named": true, + "value": "call_expression" } ] } + }, + { + "type": "STRING", + "value": "\n" } ] }, diff --git a/src/node-types.json b/src/node-types.json index c7d7260..98445df 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -2471,6 +2471,14 @@ "multiple": false, "required": true, "types": [ + { + "type": "call_expression", + "named": true + }, + { + "type": "identifier", + "named": true + }, { "type": "string_literal", "named": true diff --git a/src/parser.c b/src/parser.c index 99bbcb7..fec11b1 100644 --- a/src/parser.c +++ b/src/parser.c @@ -6,8 +6,8 @@ #endif #define LANGUAGE_VERSION 11 -#define STATE_COUNT 1255 -#define LARGE_STATE_COUNT 361 +#define STATE_COUNT 1251 +#define LARGE_STATE_COUNT 353 #define SYMBOL_COUNT 234 #define ALIAS_COUNT 3 #define TOKEN_COUNT 112 @@ -18,8 +18,8 @@ enum { sym_identifier = 1, aux_sym_preproc_include_token1 = 2, - aux_sym_preproc_def_token1 = 3, - anon_sym_LF = 4, + anon_sym_LF = 3, + aux_sym_preproc_def_token1 = 4, anon_sym_LPAREN = 5, anon_sym_DOT_DOT_DOT = 6, anon_sym_COMMA = 7, @@ -258,8 +258,8 @@ static const char *ts_symbol_names[] = { [ts_builtin_sym_end] = "end", [sym_identifier] = "identifier", [aux_sym_preproc_include_token1] = "#include", - [aux_sym_preproc_def_token1] = "#define", [anon_sym_LF] = "\n", + [aux_sym_preproc_def_token1] = "#define", [anon_sym_LPAREN] = "(", [anon_sym_DOT_DOT_DOT] = "...", [anon_sym_COMMA] = ",", @@ -498,8 +498,8 @@ static TSSymbol ts_symbol_map[] = { [ts_builtin_sym_end] = ts_builtin_sym_end, [sym_identifier] = sym_identifier, [aux_sym_preproc_include_token1] = aux_sym_preproc_include_token1, - [aux_sym_preproc_def_token1] = aux_sym_preproc_def_token1, [anon_sym_LF] = anon_sym_LF, + [aux_sym_preproc_def_token1] = aux_sym_preproc_def_token1, [anon_sym_LPAREN] = anon_sym_LPAREN, [anon_sym_DOT_DOT_DOT] = anon_sym_DOT_DOT_DOT, [anon_sym_COMMA] = anon_sym_COMMA, @@ -747,11 +747,11 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [aux_sym_preproc_def_token1] = { + [anon_sym_LF] = { .visible = true, .named = false, }, - [anon_sym_LF] = { + [aux_sym_preproc_def_token1] = { .visible = true, .named = false, }, @@ -1743,16 +1743,16 @@ static const char *ts_field_names[] = { static const TSFieldMapSlice ts_field_map_slices[76] = { [2] = {.index = 0, .length = 1}, [3] = {.index = 1, .length = 1}, - [4] = {.index = 2, .length = 1}, - [5] = {.index = 3, .length = 2}, + [4] = {.index = 2, .length = 2}, + [5] = {.index = 4, .length = 1}, [6] = {.index = 5, .length = 1}, [7] = {.index = 6, .length = 1}, - [8] = {.index = 7, .length = 1}, - [9] = {.index = 8, .length = 2}, - [10] = {.index = 10, .length = 2}, - [11] = {.index = 12, .length = 1}, + [8] = {.index = 7, .length = 2}, + [9] = {.index = 9, .length = 2}, + [10] = {.index = 11, .length = 1}, + [11] = {.index = 11, .length = 1}, [12] = {.index = 12, .length = 1}, - [13] = {.index = 5, .length = 1}, + [13] = {.index = 4, .length = 1}, [14] = {.index = 13, .length = 2}, [15] = {.index = 15, .length = 2}, [16] = {.index = 17, .length = 1}, @@ -1819,26 +1819,26 @@ static const TSFieldMapEntry ts_field_map_entries[] = { [0] = {field_type, 0}, [1] = - {field_path, 1}, - [2] = {field_directive, 0}, - [3] = + [2] = {field_argument, 1}, {field_operator, 0}, - [5] = + [4] = {field_name, 1}, - [6] = + [5] = {field_body, 1}, - [7] = + [6] = {field_value, 1}, - [8] = + [7] = {field_argument, 0}, {field_operator, 1}, - [10] = + [9] = {field_arguments, 1}, {field_function, 0}, - [12] = + [11] = {field_type, 1}, + [12] = + {field_path, 1}, [13] = {field_argument, 1}, {field_directive, 0}, @@ -2021,10 +2021,10 @@ static TSSymbol ts_alias_sequences[76][MAX_ALIAS_SEQUENCE_LENGTH] = { [1] = { [0] = alias_sym_type_identifier, }, - [6] = { + [5] = { [1] = alias_sym_type_identifier, }, - [12] = { + [11] = { [1] = alias_sym_type_identifier, }, [19] = { @@ -2052,94 +2052,94 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { eof = lexer->eof(lexer); switch (state) { case 0: - if (eof) ADVANCE(78); - if (lookahead == '!') ADVANCE(134); - if (lookahead == '"') ADVANCE(226); - if (lookahead == '#') ADVANCE(46); - if (lookahead == '%') ADVANCE(151); - if (lookahead == '&') ADVANCE(160); - if (lookahead == '\'') ADVANCE(217); - if (lookahead == '(') ADVANCE(83); - if (lookahead == ')') ADVANCE(86); - if (lookahead == '*') ADVANCE(147); - if (lookahead == '+') ADVANCE(142); - if (lookahead == ',') ADVANCE(85); - if (lookahead == '-') ADVANCE(137); - if (lookahead == '.') ADVANCE(195); - if (lookahead == '/') ADVANCE(149); - if (lookahead == '0') ADVANCE(202); - if (lookahead == ':') ADVANCE(180); - if (lookahead == ';') ADVANCE(173); - if (lookahead == '<') ADVANCE(167); - if (lookahead == '=') ADVANCE(179); - if (lookahead == '>') ADVANCE(163); - if (lookahead == '?') ADVANCE(181); - if (lookahead == 'L') ADVANCE(238); - if (lookahead == 'U') ADVANCE(240); - if (lookahead == '[') ADVANCE(176); - if (lookahead == '\\') SKIP(73) - if (lookahead == ']') ADVANCE(177); - if (lookahead == '^') ADVANCE(157); - if (lookahead == 'u') ADVANCE(242); - if (lookahead == '{') ADVANCE(174); - if (lookahead == '|') ADVANCE(154); - if (lookahead == '}') ADVANCE(175); - if (lookahead == '~') ADVANCE(135); + if (eof) ADVANCE(81); + if (lookahead == '!') ADVANCE(137); + if (lookahead == '"') ADVANCE(229); + if (lookahead == '#') ADVANCE(49); + if (lookahead == '%') ADVANCE(154); + if (lookahead == '&') ADVANCE(163); + if (lookahead == '\'') ADVANCE(220); + if (lookahead == '(') ADVANCE(86); + if (lookahead == ')') ADVANCE(89); + if (lookahead == '*') ADVANCE(150); + if (lookahead == '+') ADVANCE(145); + if (lookahead == ',') ADVANCE(88); + if (lookahead == '-') ADVANCE(140); + if (lookahead == '.') ADVANCE(198); + if (lookahead == '/') ADVANCE(152); + if (lookahead == '0') ADVANCE(205); + if (lookahead == ':') ADVANCE(183); + if (lookahead == ';') ADVANCE(176); + if (lookahead == '<') ADVANCE(170); + if (lookahead == '=') ADVANCE(182); + if (lookahead == '>') ADVANCE(166); + if (lookahead == '?') ADVANCE(184); + if (lookahead == 'L') ADVANCE(241); + if (lookahead == 'U') ADVANCE(243); + if (lookahead == '[') ADVANCE(179); + if (lookahead == '\\') SKIP(76) + if (lookahead == ']') ADVANCE(180); + if (lookahead == '^') ADVANCE(160); + if (lookahead == 'u') ADVANCE(245); + if (lookahead == '{') ADVANCE(177); + if (lookahead == '|') ADVANCE(157); + if (lookahead == '}') ADVANCE(178); + if (lookahead == '~') ADVANCE(138); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(76) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(204); + lookahead == ' ') SKIP(79) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(207); if (('A' <= lookahead && lookahead <= '_') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(250); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(253); END_STATE(); case 1: - if (lookahead == '\n') SKIP(26) + if (lookahead == '\n') SKIP(28) END_STATE(); case 2: - if (lookahead == '\n') SKIP(26) + if (lookahead == '\n') SKIP(28) if (lookahead == '\r') SKIP(1) END_STATE(); case 3: - if (lookahead == '\n') SKIP(25) + if (lookahead == '\n') SKIP(27) END_STATE(); case 4: - if (lookahead == '\n') SKIP(25) + if (lookahead == '\n') SKIP(27) if (lookahead == '\r') SKIP(3) END_STATE(); case 5: - if (lookahead == '\n') SKIP(30) + if (lookahead == '\n') SKIP(33) END_STATE(); case 6: - if (lookahead == '\n') SKIP(30) + if (lookahead == '\n') SKIP(33) if (lookahead == '\r') SKIP(5) END_STATE(); case 7: - if (lookahead == '\n') SKIP(29) + if (lookahead == '\n') SKIP(31) END_STATE(); case 8: - if (lookahead == '\n') SKIP(29) + if (lookahead == '\n') SKIP(31) if (lookahead == '\r') SKIP(7) END_STATE(); case 9: - if (lookahead == '\n') SKIP(31) + if (lookahead == '\n') SKIP(32) END_STATE(); case 10: - if (lookahead == '\n') SKIP(31) + if (lookahead == '\n') SKIP(32) if (lookahead == '\r') SKIP(9) END_STATE(); case 11: - if (lookahead == '\n') SKIP(33) + if (lookahead == '\n') SKIP(36) END_STATE(); case 12: - if (lookahead == '\n') SKIP(33) + if (lookahead == '\n') SKIP(36) if (lookahead == '\r') SKIP(11) END_STATE(); case 13: - if (lookahead == '\n') SKIP(28) + if (lookahead == '\n') SKIP(30) END_STATE(); case 14: - if (lookahead == '\n') SKIP(28) + if (lookahead == '\n') SKIP(30) if (lookahead == '\r') SKIP(13) END_STATE(); case 15: @@ -2150,492 +2150,500 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\r') SKIP(15) END_STATE(); case 17: - if (lookahead == '\n') ADVANCE(81); - if (lookahead == '!') ADVANCE(42); - if (lookahead == '%') ADVANCE(150); - if (lookahead == '&') ADVANCE(159); - if (lookahead == '(') ADVANCE(132); - if (lookahead == '*') ADVANCE(146); - if (lookahead == '+') ADVANCE(141); - if (lookahead == '-') ADVANCE(136); - if (lookahead == '/') ADVANCE(148); - if (lookahead == '<') ADVANCE(168); - if (lookahead == '=') ADVANCE(43); - if (lookahead == '>') ADVANCE(164); + if (lookahead == '\n') ADVANCE(83); + if (lookahead == '!') ADVANCE(45); + if (lookahead == '%') ADVANCE(153); + if (lookahead == '&') ADVANCE(162); + if (lookahead == '(') ADVANCE(135); + if (lookahead == '*') ADVANCE(149); + if (lookahead == '+') ADVANCE(144); + if (lookahead == '-') ADVANCE(139); + if (lookahead == '/') ADVANCE(151); + if (lookahead == '<') ADVANCE(171); + if (lookahead == '=') ADVANCE(46); + if (lookahead == '>') ADVANCE(167); if (lookahead == '\\') SKIP(16) - if (lookahead == '^') ADVANCE(156); - if (lookahead == '|') ADVANCE(155); + if (lookahead == '^') ADVANCE(159); + if (lookahead == '|') ADVANCE(158); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') SKIP(17) END_STATE(); case 18: - if (lookahead == '\n') ADVANCE(82); - if (lookahead == '(') ADVANCE(83); - if (lookahead == '/') ADVANCE(125); - if (lookahead == '\\') ADVANCE(123); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(122); - if (lookahead != 0) ADVANCE(126); + if (lookahead == '\n') SKIP(34) END_STATE(); case 19: - if (lookahead == '\n') ADVANCE(82); - if (lookahead == '/') ADVANCE(125); - if (lookahead == '\\') ADVANCE(123); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(122); - if (lookahead != 0) ADVANCE(126); + if (lookahead == '\n') SKIP(34) + if (lookahead == '\r') SKIP(18) END_STATE(); case 20: - if (lookahead == '\n') SKIP(32) - if (lookahead == '"') ADVANCE(226); - if (lookahead == '/') ADVANCE(227); - if (lookahead == '\\') ADVANCE(21); + if (lookahead == '\n') ADVANCE(84); + if (lookahead == '(') ADVANCE(86); + if (lookahead == '/') ADVANCE(128); + if (lookahead == '\\') ADVANCE(126); if (lookahead == '\t' || lookahead == '\r' || - lookahead == ' ') ADVANCE(230); - if (lookahead != 0) ADVANCE(231); + lookahead == ' ') ADVANCE(125); + if (lookahead != 0) ADVANCE(129); END_STATE(); case 21: - if (lookahead == '\n') ADVANCE(233); - if (lookahead == '\r') ADVANCE(232); - if (lookahead == 'U') ADVANCE(70); - if (lookahead == 'u') ADVANCE(66); - if (lookahead == 'x') ADVANCE(64); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(235); - if (lookahead != 0) ADVANCE(232); + if (lookahead == '\n') ADVANCE(84); + if (lookahead == '/') ADVANCE(128); + if (lookahead == '\\') ADVANCE(126); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') ADVANCE(125); + if (lookahead != 0) ADVANCE(129); END_STATE(); case 22: - if (lookahead == '\n') SKIP(41) - if (lookahead == '/') ADVANCE(220); - if (lookahead == '\\') ADVANCE(219); + if (lookahead == '\n') SKIP(35) + if (lookahead == '"') ADVANCE(229); + if (lookahead == '/') ADVANCE(230); + if (lookahead == '\\') ADVANCE(23); if (lookahead == '\t' || lookahead == '\r' || - lookahead == ' ') ADVANCE(221); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(218); + lookahead == ' ') ADVANCE(233); + if (lookahead != 0) ADVANCE(234); END_STATE(); case 23: - if (lookahead == '\n') SKIP(27) + if (lookahead == '\n') ADVANCE(236); + if (lookahead == '\r') ADVANCE(235); + if (lookahead == 'U') ADVANCE(73); + if (lookahead == 'u') ADVANCE(69); + if (lookahead == 'x') ADVANCE(67); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(238); + if (lookahead != 0) ADVANCE(235); END_STATE(); case 24: - if (lookahead == '\n') SKIP(27) - if (lookahead == '\r') SKIP(23) + if (lookahead == '\n') SKIP(44) + if (lookahead == '/') ADVANCE(223); + if (lookahead == '\\') ADVANCE(222); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') ADVANCE(224); + if (lookahead != 0 && + lookahead != '\'') ADVANCE(221); END_STATE(); case 25: - if (lookahead == '!') ADVANCE(134); - if (lookahead == '"') ADVANCE(226); - if (lookahead == '#') ADVANCE(53); - if (lookahead == '%') ADVANCE(151); - if (lookahead == '&') ADVANCE(160); - if (lookahead == '\'') ADVANCE(217); - if (lookahead == '(') ADVANCE(132); - if (lookahead == ')') ADVANCE(86); - if (lookahead == '*') ADVANCE(147); - if (lookahead == '+') ADVANCE(142); - if (lookahead == ',') ADVANCE(85); - if (lookahead == '-') ADVANCE(137); - if (lookahead == '.') ADVANCE(196); - if (lookahead == '/') ADVANCE(149); - if (lookahead == '0') ADVANCE(202); - if (lookahead == ':') ADVANCE(180); - if (lookahead == ';') ADVANCE(173); - if (lookahead == '<') ADVANCE(167); - if (lookahead == '=') ADVANCE(179); - if (lookahead == '>') ADVANCE(163); - if (lookahead == '?') ADVANCE(181); - if (lookahead == 'L') ADVANCE(238); - if (lookahead == 'U') ADVANCE(240); - if (lookahead == '[') ADVANCE(176); + if (lookahead == '\n') SKIP(29) + END_STATE(); + case 26: + if (lookahead == '\n') SKIP(29) + if (lookahead == '\r') SKIP(25) + END_STATE(); + case 27: + if (lookahead == '!') ADVANCE(137); + if (lookahead == '"') ADVANCE(229); + if (lookahead == '#') ADVANCE(56); + if (lookahead == '%') ADVANCE(154); + if (lookahead == '&') ADVANCE(163); + if (lookahead == '\'') ADVANCE(220); + if (lookahead == '(') ADVANCE(135); + if (lookahead == ')') ADVANCE(89); + if (lookahead == '*') ADVANCE(150); + if (lookahead == '+') ADVANCE(145); + if (lookahead == ',') ADVANCE(88); + if (lookahead == '-') ADVANCE(140); + if (lookahead == '.') ADVANCE(199); + if (lookahead == '/') ADVANCE(152); + if (lookahead == '0') ADVANCE(205); + if (lookahead == ':') ADVANCE(183); + if (lookahead == ';') ADVANCE(176); + if (lookahead == '<') ADVANCE(170); + if (lookahead == '=') ADVANCE(182); + if (lookahead == '>') ADVANCE(166); + if (lookahead == '?') ADVANCE(184); + if (lookahead == 'L') ADVANCE(241); + if (lookahead == 'U') ADVANCE(243); + if (lookahead == '[') ADVANCE(179); if (lookahead == '\\') SKIP(4) - if (lookahead == ']') ADVANCE(177); - if (lookahead == '^') ADVANCE(157); - if (lookahead == 'u') ADVANCE(242); - if (lookahead == '{') ADVANCE(174); - if (lookahead == '|') ADVANCE(154); - if (lookahead == '}') ADVANCE(175); - if (lookahead == '~') ADVANCE(135); + if (lookahead == ']') ADVANCE(180); + if (lookahead == '^') ADVANCE(160); + if (lookahead == 'u') ADVANCE(245); + if (lookahead == '{') ADVANCE(177); + if (lookahead == '|') ADVANCE(157); + if (lookahead == '}') ADVANCE(178); + if (lookahead == '~') ADVANCE(138); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(25) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(204); + lookahead == ' ') SKIP(27) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(207); if (('A' <= lookahead && lookahead <= '_') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(250); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(253); END_STATE(); - case 26: - if (lookahead == '!') ADVANCE(133); - if (lookahead == '"') ADVANCE(226); - if (lookahead == '#') ADVANCE(46); - if (lookahead == '&') ADVANCE(158); - if (lookahead == '\'') ADVANCE(217); - if (lookahead == '(') ADVANCE(132); - if (lookahead == '*') ADVANCE(146); - if (lookahead == '+') ADVANCE(143); - if (lookahead == '-') ADVANCE(138); - if (lookahead == '.') ADVANCE(58); - if (lookahead == '/') ADVANCE(34); - if (lookahead == '0') ADVANCE(202); - if (lookahead == ';') ADVANCE(173); - if (lookahead == 'L') ADVANCE(238); - if (lookahead == 'U') ADVANCE(240); + case 28: + if (lookahead == '!') ADVANCE(136); + if (lookahead == '"') ADVANCE(229); + if (lookahead == '#') ADVANCE(49); + if (lookahead == '&') ADVANCE(161); + if (lookahead == '\'') ADVANCE(220); + if (lookahead == '(') ADVANCE(135); + if (lookahead == '*') ADVANCE(149); + if (lookahead == '+') ADVANCE(146); + if (lookahead == '-') ADVANCE(141); + if (lookahead == '.') ADVANCE(61); + if (lookahead == '/') ADVANCE(37); + if (lookahead == '0') ADVANCE(205); + if (lookahead == ';') ADVANCE(176); + if (lookahead == 'L') ADVANCE(241); + if (lookahead == 'U') ADVANCE(243); if (lookahead == '\\') SKIP(2) - if (lookahead == 'u') ADVANCE(242); - if (lookahead == '{') ADVANCE(174); - if (lookahead == '~') ADVANCE(135); + if (lookahead == 'u') ADVANCE(245); + if (lookahead == '{') ADVANCE(177); + if (lookahead == '~') ADVANCE(138); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(26) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(204); + lookahead == ' ') SKIP(28) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(207); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(250); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(253); END_STATE(); - case 27: - if (lookahead == '!') ADVANCE(133); - if (lookahead == '"') ADVANCE(226); - if (lookahead == '#') ADVANCE(48); - if (lookahead == '&') ADVANCE(158); - if (lookahead == '\'') ADVANCE(217); - if (lookahead == '(') ADVANCE(132); - if (lookahead == '*') ADVANCE(146); - if (lookahead == '+') ADVANCE(143); - if (lookahead == '-') ADVANCE(138); - if (lookahead == '.') ADVANCE(58); - if (lookahead == '/') ADVANCE(34); - if (lookahead == '0') ADVANCE(202); - if (lookahead == ';') ADVANCE(173); - if (lookahead == 'L') ADVANCE(238); - if (lookahead == 'U') ADVANCE(240); - if (lookahead == '\\') SKIP(24) - if (lookahead == 'u') ADVANCE(242); - if (lookahead == '{') ADVANCE(174); - if (lookahead == '~') ADVANCE(135); + case 29: + if (lookahead == '!') ADVANCE(136); + if (lookahead == '"') ADVANCE(229); + if (lookahead == '#') ADVANCE(51); + if (lookahead == '&') ADVANCE(161); + if (lookahead == '\'') ADVANCE(220); + if (lookahead == '(') ADVANCE(135); + if (lookahead == '*') ADVANCE(149); + if (lookahead == '+') ADVANCE(146); + if (lookahead == '-') ADVANCE(141); + if (lookahead == '.') ADVANCE(61); + if (lookahead == '/') ADVANCE(37); + if (lookahead == '0') ADVANCE(205); + if (lookahead == ';') ADVANCE(176); + if (lookahead == 'L') ADVANCE(241); + if (lookahead == 'U') ADVANCE(243); + if (lookahead == '\\') SKIP(26) + if (lookahead == 'u') ADVANCE(245); + if (lookahead == '{') ADVANCE(177); + if (lookahead == '~') ADVANCE(138); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(27) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(204); + lookahead == ' ') SKIP(29) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(207); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(250); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(253); END_STATE(); - case 28: - if (lookahead == '!') ADVANCE(133); - if (lookahead == '\'') ADVANCE(217); - if (lookahead == '(') ADVANCE(132); - if (lookahead == ')') ADVANCE(86); - if (lookahead == '+') ADVANCE(145); - if (lookahead == '-') ADVANCE(140); - if (lookahead == '.') ADVANCE(58); - if (lookahead == '/') ADVANCE(34); - if (lookahead == '0') ADVANCE(202); - if (lookahead == 'L') ADVANCE(246); - if (lookahead == 'U') ADVANCE(247); + case 30: + if (lookahead == '!') ADVANCE(136); + if (lookahead == '\'') ADVANCE(220); + if (lookahead == '(') ADVANCE(135); + if (lookahead == ')') ADVANCE(89); + if (lookahead == '+') ADVANCE(148); + if (lookahead == '-') ADVANCE(143); + if (lookahead == '.') ADVANCE(61); + if (lookahead == '/') ADVANCE(37); + if (lookahead == '0') ADVANCE(205); + if (lookahead == 'L') ADVANCE(249); + if (lookahead == 'U') ADVANCE(250); if (lookahead == '\\') SKIP(14) - if (lookahead == 'u') ADVANCE(248); - if (lookahead == '~') ADVANCE(135); + if (lookahead == 'u') ADVANCE(251); + if (lookahead == '~') ADVANCE(138); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(28) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(204); + lookahead == ' ') SKIP(30) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(207); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(250); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(253); END_STATE(); - case 29: - if (lookahead == '!') ADVANCE(42); - if (lookahead == '"') ADVANCE(226); - if (lookahead == '%') ADVANCE(151); - if (lookahead == '&') ADVANCE(160); - if (lookahead == '(') ADVANCE(132); - if (lookahead == ')') ADVANCE(86); - if (lookahead == '*') ADVANCE(147); - if (lookahead == '+') ADVANCE(144); - if (lookahead == ',') ADVANCE(85); - if (lookahead == '-') ADVANCE(139); - if (lookahead == '.') ADVANCE(194); - if (lookahead == '/') ADVANCE(149); - if (lookahead == ':') ADVANCE(180); - if (lookahead == ';') ADVANCE(173); - if (lookahead == '<') ADVANCE(167); - if (lookahead == '=') ADVANCE(179); - if (lookahead == '>') ADVANCE(163); - if (lookahead == '?') ADVANCE(181); - if (lookahead == 'L') ADVANCE(239); - if (lookahead == 'U') ADVANCE(241); - if (lookahead == '[') ADVANCE(176); + case 31: + if (lookahead == '!') ADVANCE(45); + if (lookahead == '"') ADVANCE(229); + if (lookahead == '%') ADVANCE(154); + if (lookahead == '&') ADVANCE(163); + if (lookahead == '(') ADVANCE(135); + if (lookahead == ')') ADVANCE(89); + if (lookahead == '*') ADVANCE(150); + if (lookahead == '+') ADVANCE(147); + if (lookahead == ',') ADVANCE(88); + if (lookahead == '-') ADVANCE(142); + if (lookahead == '.') ADVANCE(197); + if (lookahead == '/') ADVANCE(152); + if (lookahead == ':') ADVANCE(183); + if (lookahead == ';') ADVANCE(176); + if (lookahead == '<') ADVANCE(170); + if (lookahead == '=') ADVANCE(182); + if (lookahead == '>') ADVANCE(166); + if (lookahead == '?') ADVANCE(184); + if (lookahead == 'L') ADVANCE(242); + if (lookahead == 'U') ADVANCE(244); + if (lookahead == '[') ADVANCE(179); if (lookahead == '\\') SKIP(8) - if (lookahead == ']') ADVANCE(177); - if (lookahead == '^') ADVANCE(157); - if (lookahead == 'u') ADVANCE(243); - if (lookahead == '|') ADVANCE(154); - if (lookahead == '}') ADVANCE(175); + if (lookahead == ']') ADVANCE(180); + if (lookahead == '^') ADVANCE(160); + if (lookahead == 'u') ADVANCE(246); + if (lookahead == '|') ADVANCE(157); + if (lookahead == '}') ADVANCE(178); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(29) + lookahead == ' ') SKIP(31) if (('A' <= lookahead && lookahead <= '_') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(250); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(253); END_STATE(); - case 30: - if (lookahead == '!') ADVANCE(42); - if (lookahead == '#') ADVANCE(47); - if (lookahead == '%') ADVANCE(151); - if (lookahead == '&') ADVANCE(160); - if (lookahead == '(') ADVANCE(132); - if (lookahead == ')') ADVANCE(86); - if (lookahead == '*') ADVANCE(147); + case 32: + if (lookahead == '!') ADVANCE(45); + if (lookahead == '#') ADVANCE(54); + if (lookahead == '%') ADVANCE(153); + if (lookahead == '&') ADVANCE(162); + if (lookahead == '(') ADVANCE(135); + if (lookahead == ')') ADVANCE(89); + if (lookahead == '*') ADVANCE(149); if (lookahead == '+') ADVANCE(144); - if (lookahead == ',') ADVANCE(85); + if (lookahead == ',') ADVANCE(88); if (lookahead == '-') ADVANCE(139); - if (lookahead == '.') ADVANCE(194); - if (lookahead == '/') ADVANCE(149); - if (lookahead == ':') ADVANCE(180); - if (lookahead == ';') ADVANCE(173); - if (lookahead == '<') ADVANCE(167); - if (lookahead == '=') ADVANCE(179); - if (lookahead == '>') ADVANCE(163); - if (lookahead == '?') ADVANCE(181); - if (lookahead == '[') ADVANCE(176); + if (lookahead == '.') ADVANCE(42); + if (lookahead == '/') ADVANCE(151); + if (lookahead == '<') ADVANCE(171); + if (lookahead == '=') ADVANCE(46); + if (lookahead == '>') ADVANCE(167); + if (lookahead == '[') ADVANCE(179); + if (lookahead == '\\') SKIP(10) + if (lookahead == '^') ADVANCE(159); + if (lookahead == '|') ADVANCE(158); + if (lookahead == '}') ADVANCE(178); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(32) + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(253); + END_STATE(); + case 33: + if (lookahead == '!') ADVANCE(45); + if (lookahead == '#') ADVANCE(50); + if (lookahead == '%') ADVANCE(154); + if (lookahead == '&') ADVANCE(163); + if (lookahead == '(') ADVANCE(135); + if (lookahead == ')') ADVANCE(89); + if (lookahead == '*') ADVANCE(150); + if (lookahead == '+') ADVANCE(147); + if (lookahead == ',') ADVANCE(88); + if (lookahead == '-') ADVANCE(142); + if (lookahead == '.') ADVANCE(197); + if (lookahead == '/') ADVANCE(152); + if (lookahead == ':') ADVANCE(183); + if (lookahead == ';') ADVANCE(176); + if (lookahead == '<') ADVANCE(170); + if (lookahead == '=') ADVANCE(182); + if (lookahead == '>') ADVANCE(166); + if (lookahead == '?') ADVANCE(184); + if (lookahead == '[') ADVANCE(179); if (lookahead == '\\') SKIP(6) - if (lookahead == ']') ADVANCE(177); - if (lookahead == '^') ADVANCE(157); - if (lookahead == '{') ADVANCE(174); - if (lookahead == '|') ADVANCE(154); - if (lookahead == '}') ADVANCE(175); + if (lookahead == ']') ADVANCE(180); + if (lookahead == '^') ADVANCE(160); + if (lookahead == '{') ADVANCE(177); + if (lookahead == '|') ADVANCE(157); + if (lookahead == '}') ADVANCE(178); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(30) + lookahead == ' ') SKIP(33) if (('A' <= lookahead && lookahead <= '_') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(250); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(253); END_STATE(); - case 31: - if (lookahead == '!') ADVANCE(42); - if (lookahead == '#') ADVANCE(49); - if (lookahead == '%') ADVANCE(150); - if (lookahead == '&') ADVANCE(159); - if (lookahead == '(') ADVANCE(132); - if (lookahead == ')') ADVANCE(86); - if (lookahead == '*') ADVANCE(146); - if (lookahead == '+') ADVANCE(141); - if (lookahead == ',') ADVANCE(85); - if (lookahead == '-') ADVANCE(136); - if (lookahead == '.') ADVANCE(39); - if (lookahead == '/') ADVANCE(148); - if (lookahead == '<') ADVANCE(168); - if (lookahead == '=') ADVANCE(43); - if (lookahead == '>') ADVANCE(164); - if (lookahead == '[') ADVANCE(176); - if (lookahead == '\\') SKIP(10) - if (lookahead == '^') ADVANCE(156); - if (lookahead == '|') ADVANCE(155); + case 34: + if (lookahead == '"') ADVANCE(229); + if (lookahead == '/') ADVANCE(37); + if (lookahead == '<') ADVANCE(47); + if (lookahead == 'L') ADVANCE(242); + if (lookahead == 'U') ADVANCE(244); + if (lookahead == '\\') SKIP(19) + if (lookahead == 'u') ADVANCE(246); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(31) + lookahead == ' ') SKIP(34) if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(250); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(253); END_STATE(); - case 32: - if (lookahead == '"') ADVANCE(226); - if (lookahead == '/') ADVANCE(34); - if (lookahead == '\\') ADVANCE(21); + case 35: + if (lookahead == '"') ADVANCE(229); + if (lookahead == '/') ADVANCE(37); + if (lookahead == '\\') ADVANCE(23); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(32) + lookahead == ' ') SKIP(35) END_STATE(); - case 33: - if (lookahead == '#') ADVANCE(51); - if (lookahead == '/') ADVANCE(34); + case 36: + if (lookahead == '#') ADVANCE(52); + if (lookahead == '/') ADVANCE(37); if (lookahead == '\\') SKIP(12) - if (lookahead == '}') ADVANCE(175); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(33) + lookahead == ' ') SKIP(36) if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(250); - END_STATE(); - case 34: - if (lookahead == '*') ADVANCE(36); - if (lookahead == '/') ADVANCE(253); - END_STATE(); - case 35: - if (lookahead == '*') ADVANCE(35); - if (lookahead == '/') ADVANCE(251); - if (lookahead != 0) ADVANCE(36); - END_STATE(); - case 36: - if (lookahead == '*') ADVANCE(35); - if (lookahead != 0) ADVANCE(36); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(253); END_STATE(); case 37: - if (lookahead == '.') ADVANCE(58); - if (lookahead == '0') ADVANCE(200); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(201); - if (('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(209); + if (lookahead == '*') ADVANCE(39); + if (lookahead == '/') ADVANCE(256); END_STATE(); case 38: - if (lookahead == '.') ADVANCE(58); - if (lookahead == '0') ADVANCE(203); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(204); + if (lookahead == '*') ADVANCE(38); + if (lookahead == '/') ADVANCE(254); + if (lookahead != 0) ADVANCE(39); END_STATE(); case 39: - if (lookahead == '.') ADVANCE(40); + if (lookahead == '*') ADVANCE(38); + if (lookahead != 0) ADVANCE(39); END_STATE(); case 40: - if (lookahead == '.') ADVANCE(84); + if (lookahead == '.') ADVANCE(61); + if (lookahead == '0') ADVANCE(203); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(204); + if (('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(212); END_STATE(); case 41: - if (lookahead == '/') ADVANCE(34); - if (lookahead == '\\') ADVANCE(21); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(41) + if (lookahead == '.') ADVANCE(61); + if (lookahead == '0') ADVANCE(206); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(207); END_STATE(); case 42: - if (lookahead == '=') ADVANCE(162); + if (lookahead == '.') ADVANCE(43); END_STATE(); case 43: - if (lookahead == '=') ADVANCE(161); + if (lookahead == '.') ADVANCE(87); END_STATE(); case 44: - if (lookahead == '>') ADVANCE(236); - if (lookahead == '\\') ADVANCE(45); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(44); + if (lookahead == '/') ADVANCE(37); + if (lookahead == '\\') ADVANCE(23); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(44) END_STATE(); case 45: - if (lookahead == '>') ADVANCE(237); - if (lookahead == '\\') ADVANCE(45); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(44); + if (lookahead == '=') ADVANCE(165); END_STATE(); case 46: - if (lookahead == 'd') ADVANCE(98); - if (lookahead == 'e') ADVANCE(114); - if (lookahead == 'i') ADVANCE(104); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(46); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(119); + if (lookahead == '=') ADVANCE(164); END_STATE(); case 47: - if (lookahead == 'd') ADVANCE(98); - if (lookahead == 'e') ADVANCE(114); - if (lookahead == 'i') ADVANCE(105); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(47); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(119); + if (lookahead == '>') ADVANCE(239); + if (lookahead == '\\') ADVANCE(48); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(47); END_STATE(); case 48: - if (lookahead == 'd') ADVANCE(98); - if (lookahead == 'e') ADVANCE(116); - if (lookahead == 'i') ADVANCE(104); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(48); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(119); + if (lookahead == '>') ADVANCE(240); + if (lookahead == '\\') ADVANCE(48); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(47); END_STATE(); case 49: - if (lookahead == 'd') ADVANCE(98); - if (lookahead == 'e') ADVANCE(116); - if (lookahead == 'i') ADVANCE(105); + if (lookahead == 'd') ADVANCE(101); + if (lookahead == 'e') ADVANCE(117); + if (lookahead == 'i') ADVANCE(107); if (lookahead == '\t' || lookahead == ' ') ADVANCE(49); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(119); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(122); END_STATE(); case 50: - if (lookahead == 'd') ADVANCE(98); - if (lookahead == 'i') ADVANCE(104); + if (lookahead == 'd') ADVANCE(101); + if (lookahead == 'e') ADVANCE(117); + if (lookahead == 'i') ADVANCE(108); if (lookahead == '\t' || lookahead == ' ') ADVANCE(50); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(119); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(122); END_STATE(); case 51: - if (lookahead == 'd') ADVANCE(98); - if (lookahead == 'i') ADVANCE(105); + if (lookahead == 'd') ADVANCE(101); + if (lookahead == 'e') ADVANCE(119); + if (lookahead == 'i') ADVANCE(107); if (lookahead == '\t' || lookahead == ' ') ADVANCE(51); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(119); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(122); END_STATE(); case 52: - if (lookahead == 'd') ADVANCE(55); + if (lookahead == 'd') ADVANCE(101); + if (lookahead == 'e') ADVANCE(119); + if (lookahead == 'i') ADVANCE(108); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(52); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(122); END_STATE(); case 53: - if (lookahead == 'e') ADVANCE(56); + if (lookahead == 'd') ADVANCE(101); + if (lookahead == 'i') ADVANCE(107); if (lookahead == '\t' || lookahead == ' ') ADVANCE(53); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(122); END_STATE(); case 54: - if (lookahead == 'f') ADVANCE(88); + if (lookahead == 'd') ADVANCE(101); + if (lookahead == 'i') ADVANCE(108); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(54); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(122); END_STATE(); case 55: - if (lookahead == 'i') ADVANCE(54); + if (lookahead == 'd') ADVANCE(58); END_STATE(); case 56: - if (lookahead == 'n') ADVANCE(52); + if (lookahead == 'e') ADVANCE(59); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(56); END_STATE(); case 57: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(204); + if (lookahead == 'f') ADVANCE(91); END_STATE(); case 58: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(198); + if (lookahead == 'i') ADVANCE(57); END_STATE(); case 59: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(201); - if (('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(209); + if (lookahead == 'n') ADVANCE(55); END_STATE(); case 60: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(206); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(207); END_STATE(); case 61: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(209); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(201); END_STATE(); case 62: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(199); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(204); + if (('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(212); END_STATE(); case 63: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(232); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(209); END_STATE(); case 64: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(63); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(212); END_STATE(); case 65: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(64); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(202); END_STATE(); case 66: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(65); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(235); END_STATE(); case 67: if (('0' <= lookahead && lookahead <= '9') || @@ -2658,1268 +2666,1282 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'f')) ADVANCE(69); END_STATE(); case 71: - if (lookahead != 0 && - lookahead != '\r') ADVANCE(253); - if (lookahead == '\r') ADVANCE(255); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(70); END_STATE(); case 72: - if (eof) ADVANCE(78); - if (lookahead == '\n') SKIP(76) + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(71); END_STATE(); case 73: - if (eof) ADVANCE(78); - if (lookahead == '\n') SKIP(76) - if (lookahead == '\r') SKIP(72) + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(72); END_STATE(); case 74: - if (eof) ADVANCE(78); - if (lookahead == '\n') SKIP(77) + if (lookahead != 0 && + lookahead != '\r') ADVANCE(256); + if (lookahead == '\r') ADVANCE(258); END_STATE(); case 75: - if (eof) ADVANCE(78); - if (lookahead == '\n') SKIP(77) - if (lookahead == '\r') SKIP(74) + if (eof) ADVANCE(81); + if (lookahead == '\n') SKIP(79) END_STATE(); case 76: - if (eof) ADVANCE(78); - if (lookahead == '!') ADVANCE(134); - if (lookahead == '"') ADVANCE(226); - if (lookahead == '#') ADVANCE(46); - if (lookahead == '%') ADVANCE(151); - if (lookahead == '&') ADVANCE(160); - if (lookahead == '\'') ADVANCE(217); - if (lookahead == '(') ADVANCE(132); - if (lookahead == ')') ADVANCE(86); - if (lookahead == '*') ADVANCE(147); - if (lookahead == '+') ADVANCE(142); - if (lookahead == ',') ADVANCE(85); - if (lookahead == '-') ADVANCE(137); - if (lookahead == '.') ADVANCE(195); - if (lookahead == '/') ADVANCE(149); - if (lookahead == '0') ADVANCE(202); - if (lookahead == ':') ADVANCE(180); - if (lookahead == ';') ADVANCE(173); - if (lookahead == '<') ADVANCE(167); - if (lookahead == '=') ADVANCE(179); - if (lookahead == '>') ADVANCE(163); - if (lookahead == '?') ADVANCE(181); - if (lookahead == 'L') ADVANCE(238); - if (lookahead == 'U') ADVANCE(240); - if (lookahead == '[') ADVANCE(176); - if (lookahead == '\\') SKIP(73) - if (lookahead == ']') ADVANCE(177); - if (lookahead == '^') ADVANCE(157); - if (lookahead == 'u') ADVANCE(242); - if (lookahead == '{') ADVANCE(174); - if (lookahead == '|') ADVANCE(154); - if (lookahead == '}') ADVANCE(175); - if (lookahead == '~') ADVANCE(135); + if (eof) ADVANCE(81); + if (lookahead == '\n') SKIP(79) + if (lookahead == '\r') SKIP(75) + END_STATE(); + case 77: + if (eof) ADVANCE(81); + if (lookahead == '\n') SKIP(80) + END_STATE(); + case 78: + if (eof) ADVANCE(81); + if (lookahead == '\n') SKIP(80) + if (lookahead == '\r') SKIP(77) + END_STATE(); + case 79: + if (eof) ADVANCE(81); + if (lookahead == '!') ADVANCE(137); + if (lookahead == '"') ADVANCE(229); + if (lookahead == '#') ADVANCE(49); + if (lookahead == '%') ADVANCE(154); + if (lookahead == '&') ADVANCE(163); + if (lookahead == '\'') ADVANCE(220); + if (lookahead == '(') ADVANCE(135); + if (lookahead == ')') ADVANCE(89); + if (lookahead == '*') ADVANCE(150); + if (lookahead == '+') ADVANCE(145); + if (lookahead == ',') ADVANCE(88); + if (lookahead == '-') ADVANCE(140); + if (lookahead == '.') ADVANCE(198); + if (lookahead == '/') ADVANCE(152); + if (lookahead == '0') ADVANCE(205); + if (lookahead == ':') ADVANCE(183); + if (lookahead == ';') ADVANCE(176); + if (lookahead == '<') ADVANCE(170); + if (lookahead == '=') ADVANCE(182); + if (lookahead == '>') ADVANCE(166); + if (lookahead == '?') ADVANCE(184); + if (lookahead == 'L') ADVANCE(241); + if (lookahead == 'U') ADVANCE(243); + if (lookahead == '[') ADVANCE(179); + if (lookahead == '\\') SKIP(76) + if (lookahead == ']') ADVANCE(180); + if (lookahead == '^') ADVANCE(160); + if (lookahead == 'u') ADVANCE(245); + if (lookahead == '{') ADVANCE(177); + if (lookahead == '|') ADVANCE(157); + if (lookahead == '}') ADVANCE(178); + if (lookahead == '~') ADVANCE(138); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(76) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(204); + lookahead == ' ') SKIP(79) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(207); if (('A' <= lookahead && lookahead <= '_') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(250); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(253); END_STATE(); - case 77: - if (eof) ADVANCE(78); - if (lookahead == '!') ADVANCE(133); - if (lookahead == '"') ADVANCE(226); - if (lookahead == '#') ADVANCE(50); - if (lookahead == '&') ADVANCE(158); - if (lookahead == '\'') ADVANCE(217); - if (lookahead == '(') ADVANCE(132); - if (lookahead == ')') ADVANCE(86); - if (lookahead == '*') ADVANCE(146); - if (lookahead == '+') ADVANCE(143); - if (lookahead == ',') ADVANCE(85); - if (lookahead == '-') ADVANCE(138); - if (lookahead == '.') ADVANCE(196); - if (lookahead == '/') ADVANCE(34); - if (lookahead == '0') ADVANCE(202); - if (lookahead == ':') ADVANCE(180); - if (lookahead == ';') ADVANCE(173); - if (lookahead == '<') ADVANCE(44); - if (lookahead == '=') ADVANCE(178); - if (lookahead == 'L') ADVANCE(238); - if (lookahead == 'U') ADVANCE(240); - if (lookahead == '[') ADVANCE(176); - if (lookahead == '\\') SKIP(75) - if (lookahead == ']') ADVANCE(177); - if (lookahead == 'u') ADVANCE(242); - if (lookahead == '{') ADVANCE(174); - if (lookahead == '}') ADVANCE(175); - if (lookahead == '~') ADVANCE(135); + case 80: + if (eof) ADVANCE(81); + if (lookahead == '!') ADVANCE(136); + if (lookahead == '"') ADVANCE(229); + if (lookahead == '#') ADVANCE(53); + if (lookahead == '&') ADVANCE(161); + if (lookahead == '\'') ADVANCE(220); + if (lookahead == '(') ADVANCE(135); + if (lookahead == ')') ADVANCE(89); + if (lookahead == '*') ADVANCE(149); + if (lookahead == '+') ADVANCE(146); + if (lookahead == ',') ADVANCE(88); + if (lookahead == '-') ADVANCE(141); + if (lookahead == '.') ADVANCE(199); + if (lookahead == '/') ADVANCE(37); + if (lookahead == '0') ADVANCE(205); + if (lookahead == ':') ADVANCE(183); + if (lookahead == ';') ADVANCE(176); + if (lookahead == '=') ADVANCE(181); + if (lookahead == 'L') ADVANCE(241); + if (lookahead == 'U') ADVANCE(243); + if (lookahead == '[') ADVANCE(179); + if (lookahead == '\\') SKIP(78) + if (lookahead == ']') ADVANCE(180); + if (lookahead == 'u') ADVANCE(245); + if (lookahead == '{') ADVANCE(177); + if (lookahead == '}') ADVANCE(178); + if (lookahead == '~') ADVANCE(138); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(77) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(204); + lookahead == ' ') SKIP(80) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(207); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(250); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(253); END_STATE(); - case 78: + case 81: ACCEPT_TOKEN(ts_builtin_sym_end); END_STATE(); - case 79: + case 82: ACCEPT_TOKEN(aux_sym_preproc_include_token1); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(119); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(122); END_STATE(); - case 80: - ACCEPT_TOKEN(aux_sym_preproc_def_token1); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(119); - END_STATE(); - case 81: + case 83: ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(81); + if (lookahead == '\n') ADVANCE(83); END_STATE(); - case 82: + case 84: ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(82); - if (lookahead == '\\') ADVANCE(123); + if (lookahead == '\n') ADVANCE(84); + if (lookahead == '\\') ADVANCE(126); if (lookahead == '\t' || lookahead == '\r' || - lookahead == ' ') ADVANCE(122); - END_STATE(); - case 83: - ACCEPT_TOKEN(anon_sym_LPAREN); - END_STATE(); - case 84: - ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); + lookahead == ' ') ADVANCE(125); END_STATE(); case 85: - ACCEPT_TOKEN(anon_sym_COMMA); + ACCEPT_TOKEN(aux_sym_preproc_def_token1); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(122); END_STATE(); case 86: - ACCEPT_TOKEN(anon_sym_RPAREN); + ACCEPT_TOKEN(anon_sym_LPAREN); END_STATE(); case 87: - ACCEPT_TOKEN(aux_sym_preproc_if_token1); - if (lookahead == 'd') ADVANCE(102); - if (lookahead == 'n') ADVANCE(97); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(119); + ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); END_STATE(); case 88: - ACCEPT_TOKEN(aux_sym_preproc_if_token2); + ACCEPT_TOKEN(anon_sym_COMMA); END_STATE(); case 89: - ACCEPT_TOKEN(aux_sym_preproc_if_token2); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(119); + ACCEPT_TOKEN(anon_sym_RPAREN); END_STATE(); case 90: - ACCEPT_TOKEN(aux_sym_preproc_ifdef_token1); + ACCEPT_TOKEN(aux_sym_preproc_if_token1); + if (lookahead == 'd') ADVANCE(105); + if (lookahead == 'n') ADVANCE(100); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(119); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(122); END_STATE(); case 91: - ACCEPT_TOKEN(aux_sym_preproc_ifdef_token2); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(119); + ACCEPT_TOKEN(aux_sym_preproc_if_token2); END_STATE(); case 92: - ACCEPT_TOKEN(aux_sym_preproc_else_token1); + ACCEPT_TOKEN(aux_sym_preproc_if_token2); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(119); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(122); END_STATE(); case 93: - ACCEPT_TOKEN(aux_sym_preproc_elif_token1); + ACCEPT_TOKEN(aux_sym_preproc_ifdef_token1); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(119); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(122); END_STATE(); case 94: - ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'c') ADVANCE(115); + ACCEPT_TOKEN(aux_sym_preproc_ifdef_token2); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(119); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(122); END_STATE(); case 95: - ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'd') ADVANCE(113); + ACCEPT_TOKEN(aux_sym_preproc_else_token1); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(119); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(122); END_STATE(); case 96: - ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'd') ADVANCE(101); + ACCEPT_TOKEN(aux_sym_preproc_elif_token1); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(119); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(122); END_STATE(); case 97: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'd') ADVANCE(103); + if (lookahead == 'c') ADVANCE(118); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(119); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(122); END_STATE(); case 98: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'e') ADVANCE(106); + if (lookahead == 'd') ADVANCE(116); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(119); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(122); END_STATE(); case 99: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'e') ADVANCE(92); + if (lookahead == 'd') ADVANCE(104); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(119); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(122); END_STATE(); case 100: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'e') ADVANCE(80); + if (lookahead == 'd') ADVANCE(106); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(119); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(122); END_STATE(); case 101: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'e') ADVANCE(79); + if (lookahead == 'e') ADVANCE(109); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(119); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(122); END_STATE(); case 102: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'e') ADVANCE(109); + if (lookahead == 'e') ADVANCE(95); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(119); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(122); END_STATE(); case 103: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'e') ADVANCE(110); + if (lookahead == 'e') ADVANCE(85); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(119); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(122); END_STATE(); case 104: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'f') ADVANCE(87); - if (lookahead == 'n') ADVANCE(94); + if (lookahead == 'e') ADVANCE(82); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(119); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(122); END_STATE(); case 105: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'f') ADVANCE(87); + if (lookahead == 'e') ADVANCE(112); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(119); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(122); END_STATE(); case 106: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'f') ADVANCE(111); + if (lookahead == 'e') ADVANCE(113); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(119); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(122); END_STATE(); case 107: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'f') ADVANCE(93); + if (lookahead == 'f') ADVANCE(90); + if (lookahead == 'n') ADVANCE(97); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(119); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(122); END_STATE(); case 108: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'f') ADVANCE(89); + if (lookahead == 'f') ADVANCE(90); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(119); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(122); END_STATE(); case 109: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'f') ADVANCE(90); + if (lookahead == 'f') ADVANCE(114); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(119); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(122); END_STATE(); case 110: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'f') ADVANCE(91); + if (lookahead == 'f') ADVANCE(96); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(119); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(122); END_STATE(); case 111: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'i') ADVANCE(117); + if (lookahead == 'f') ADVANCE(92); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(119); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(122); END_STATE(); case 112: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'i') ADVANCE(107); - if (lookahead == 's') ADVANCE(99); + if (lookahead == 'f') ADVANCE(93); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(119); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(122); END_STATE(); case 113: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'i') ADVANCE(108); + if (lookahead == 'f') ADVANCE(94); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(119); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(122); END_STATE(); case 114: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'l') ADVANCE(112); - if (lookahead == 'n') ADVANCE(95); + if (lookahead == 'i') ADVANCE(120); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(119); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(122); END_STATE(); case 115: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'l') ADVANCE(118); + if (lookahead == 'i') ADVANCE(110); + if (lookahead == 's') ADVANCE(102); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(119); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(122); END_STATE(); case 116: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'n') ADVANCE(95); + if (lookahead == 'i') ADVANCE(111); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(119); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(122); END_STATE(); case 117: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'n') ADVANCE(100); + if (lookahead == 'l') ADVANCE(115); + if (lookahead == 'n') ADVANCE(98); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(119); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(122); END_STATE(); case 118: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'u') ADVANCE(96); + if (lookahead == 'l') ADVANCE(121); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(119); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(122); END_STATE(); case 119: ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'n') ADVANCE(98); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(119); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(122); END_STATE(); case 120: - ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '\n') ADVANCE(36); - if (lookahead == '*') ADVANCE(120); - if (lookahead == '/') ADVANCE(251); - if (lookahead == '\\') ADVANCE(131); - if (lookahead != 0) ADVANCE(121); + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'n') ADVANCE(103); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(122); END_STATE(); case 121: - ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '\n') ADVANCE(36); - if (lookahead == '*') ADVANCE(120); - if (lookahead == '\\') ADVANCE(131); - if (lookahead != 0) ADVANCE(121); + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'u') ADVANCE(99); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(122); END_STATE(); case 122: - ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '\n') ADVANCE(82); - if (lookahead == '/') ADVANCE(125); - if (lookahead == '\\') ADVANCE(123); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(122); - if (lookahead != 0) ADVANCE(126); + ACCEPT_TOKEN(sym_preproc_directive); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(122); END_STATE(); case 123: ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '\n') ADVANCE(122); - if (lookahead == '\r') ADVANCE(124); - if (lookahead == '\\') ADVANCE(128); - if (lookahead != 0) ADVANCE(126); + if (lookahead == '\n') ADVANCE(39); + if (lookahead == '*') ADVANCE(123); + if (lookahead == '/') ADVANCE(254); + if (lookahead == '\\') ADVANCE(134); + if (lookahead != 0) ADVANCE(124); END_STATE(); case 124: ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '\n') ADVANCE(122); - if (lookahead == '\\') ADVANCE(128); - if (lookahead != 0) ADVANCE(126); + if (lookahead == '\n') ADVANCE(39); + if (lookahead == '*') ADVANCE(123); + if (lookahead == '\\') ADVANCE(134); + if (lookahead != 0) ADVANCE(124); END_STATE(); case 125: ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '*') ADVANCE(121); - if (lookahead == '/') ADVANCE(254); - if (lookahead == '\\') ADVANCE(128); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(126); + if (lookahead == '\n') ADVANCE(84); + if (lookahead == '/') ADVANCE(128); + if (lookahead == '\\') ADVANCE(126); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') ADVANCE(125); + if (lookahead != 0) ADVANCE(129); END_STATE(); case 126: ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '\\') ADVANCE(128); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(126); + if (lookahead == '\n') ADVANCE(125); + if (lookahead == '\r') ADVANCE(127); + if (lookahead == '\\') ADVANCE(131); + if (lookahead != 0) ADVANCE(129); END_STATE(); case 127: ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead != 0 && - lookahead != '\\') ADVANCE(126); - if (lookahead == '\\') ADVANCE(128); + if (lookahead == '\n') ADVANCE(125); + if (lookahead == '\\') ADVANCE(131); + if (lookahead != 0) ADVANCE(129); END_STATE(); case 128: ACCEPT_TOKEN(sym_preproc_arg); + if (lookahead == '*') ADVANCE(124); + if (lookahead == '/') ADVANCE(257); + if (lookahead == '\\') ADVANCE(131); if (lookahead != 0 && - lookahead != '\r' && - lookahead != '\\') ADVANCE(126); - if (lookahead == '\r') ADVANCE(127); - if (lookahead == '\\') ADVANCE(128); + lookahead != '\n') ADVANCE(129); END_STATE(); case 129: ACCEPT_TOKEN(sym_preproc_arg); + if (lookahead == '\\') ADVANCE(131); if (lookahead != 0 && - lookahead != '\r' && - lookahead != '\\') ADVANCE(254); - if (lookahead == '\r') ADVANCE(256); - if (lookahead == '\\') ADVANCE(252); + lookahead != '\n') ADVANCE(129); END_STATE(); case 130: ACCEPT_TOKEN(sym_preproc_arg); if (lookahead != 0 && - lookahead != '*' && - lookahead != '\\') ADVANCE(121); - if (lookahead == '*') ADVANCE(120); + lookahead != '\\') ADVANCE(129); if (lookahead == '\\') ADVANCE(131); END_STATE(); case 131: ACCEPT_TOKEN(sym_preproc_arg); if (lookahead != 0 && lookahead != '\r' && - lookahead != '*' && - lookahead != '\\') ADVANCE(121); + lookahead != '\\') ADVANCE(129); if (lookahead == '\r') ADVANCE(130); - if (lookahead == '*') ADVANCE(120); if (lookahead == '\\') ADVANCE(131); END_STATE(); case 132: - ACCEPT_TOKEN(anon_sym_LPAREN2); + ACCEPT_TOKEN(sym_preproc_arg); + if (lookahead != 0 && + lookahead != '\r' && + lookahead != '\\') ADVANCE(257); + if (lookahead == '\r') ADVANCE(259); + if (lookahead == '\\') ADVANCE(255); END_STATE(); case 133: - ACCEPT_TOKEN(anon_sym_BANG); + ACCEPT_TOKEN(sym_preproc_arg); + if (lookahead != 0 && + lookahead != '*' && + lookahead != '\\') ADVANCE(124); + if (lookahead == '*') ADVANCE(123); + if (lookahead == '\\') ADVANCE(134); END_STATE(); case 134: - ACCEPT_TOKEN(anon_sym_BANG); - if (lookahead == '=') ADVANCE(162); + ACCEPT_TOKEN(sym_preproc_arg); + if (lookahead != 0 && + lookahead != '\r' && + lookahead != '*' && + lookahead != '\\') ADVANCE(124); + if (lookahead == '\r') ADVANCE(133); + if (lookahead == '*') ADVANCE(123); + if (lookahead == '\\') ADVANCE(134); END_STATE(); case 135: - ACCEPT_TOKEN(anon_sym_TILDE); + ACCEPT_TOKEN(anon_sym_LPAREN2); END_STATE(); case 136: - ACCEPT_TOKEN(anon_sym_DASH); + ACCEPT_TOKEN(anon_sym_BANG); END_STATE(); case 137: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(192); - if (lookahead == '.') ADVANCE(58); - if (lookahead == '0') ADVANCE(202); - if (lookahead == '=') ADVANCE(186); - if (lookahead == '>') ADVANCE(197); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(204); + ACCEPT_TOKEN(anon_sym_BANG); + if (lookahead == '=') ADVANCE(165); END_STATE(); case 138: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(192); - if (lookahead == '.') ADVANCE(58); - if (lookahead == '0') ADVANCE(202); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(204); + ACCEPT_TOKEN(anon_sym_TILDE); END_STATE(); case 139: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(192); - if (lookahead == '=') ADVANCE(186); - if (lookahead == '>') ADVANCE(197); END_STATE(); case 140: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '.') ADVANCE(58); - if (lookahead == '0') ADVANCE(202); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(204); + if (lookahead == '-') ADVANCE(195); + if (lookahead == '.') ADVANCE(61); + if (lookahead == '0') ADVANCE(205); + if (lookahead == '=') ADVANCE(189); + if (lookahead == '>') ADVANCE(200); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(207); END_STATE(); case 141: - ACCEPT_TOKEN(anon_sym_PLUS); + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '-') ADVANCE(195); + if (lookahead == '.') ADVANCE(61); + if (lookahead == '0') ADVANCE(205); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(207); END_STATE(); case 142: - ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(193); - if (lookahead == '.') ADVANCE(58); - if (lookahead == '0') ADVANCE(202); - if (lookahead == '=') ADVANCE(185); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(204); + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '-') ADVANCE(195); + if (lookahead == '=') ADVANCE(189); + if (lookahead == '>') ADVANCE(200); END_STATE(); case 143: - ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(193); - if (lookahead == '.') ADVANCE(58); - if (lookahead == '0') ADVANCE(202); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(204); + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '.') ADVANCE(61); + if (lookahead == '0') ADVANCE(205); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(207); END_STATE(); case 144: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(193); - if (lookahead == '=') ADVANCE(185); END_STATE(); case 145: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '.') ADVANCE(58); - if (lookahead == '0') ADVANCE(202); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(204); + if (lookahead == '+') ADVANCE(196); + if (lookahead == '.') ADVANCE(61); + if (lookahead == '0') ADVANCE(205); + if (lookahead == '=') ADVANCE(188); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(207); END_STATE(); case 146: - ACCEPT_TOKEN(anon_sym_STAR); + ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == '+') ADVANCE(196); + if (lookahead == '.') ADVANCE(61); + if (lookahead == '0') ADVANCE(205); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(207); END_STATE(); case 147: - ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '=') ADVANCE(182); + ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == '+') ADVANCE(196); + if (lookahead == '=') ADVANCE(188); END_STATE(); case 148: - ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '*') ADVANCE(36); - if (lookahead == '/') ADVANCE(253); + ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == '.') ADVANCE(61); + if (lookahead == '0') ADVANCE(205); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(207); END_STATE(); case 149: - ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '*') ADVANCE(36); - if (lookahead == '/') ADVANCE(253); - if (lookahead == '=') ADVANCE(183); + ACCEPT_TOKEN(anon_sym_STAR); END_STATE(); case 150: - ACCEPT_TOKEN(anon_sym_PERCENT); + ACCEPT_TOKEN(anon_sym_STAR); + if (lookahead == '=') ADVANCE(185); END_STATE(); case 151: - ACCEPT_TOKEN(anon_sym_PERCENT); - if (lookahead == '=') ADVANCE(184); + ACCEPT_TOKEN(anon_sym_SLASH); + if (lookahead == '*') ADVANCE(39); + if (lookahead == '/') ADVANCE(256); END_STATE(); case 152: - ACCEPT_TOKEN(anon_sym_PIPE_PIPE); + ACCEPT_TOKEN(anon_sym_SLASH); + if (lookahead == '*') ADVANCE(39); + if (lookahead == '/') ADVANCE(256); + if (lookahead == '=') ADVANCE(186); END_STATE(); case 153: - ACCEPT_TOKEN(anon_sym_AMP_AMP); + ACCEPT_TOKEN(anon_sym_PERCENT); END_STATE(); case 154: - ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '=') ADVANCE(191); - if (lookahead == '|') ADVANCE(152); + ACCEPT_TOKEN(anon_sym_PERCENT); + if (lookahead == '=') ADVANCE(187); END_STATE(); case 155: - ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '|') ADVANCE(152); + ACCEPT_TOKEN(anon_sym_PIPE_PIPE); END_STATE(); case 156: - ACCEPT_TOKEN(anon_sym_CARET); + ACCEPT_TOKEN(anon_sym_AMP_AMP); END_STATE(); case 157: - ACCEPT_TOKEN(anon_sym_CARET); - if (lookahead == '=') ADVANCE(190); + ACCEPT_TOKEN(anon_sym_PIPE); + if (lookahead == '=') ADVANCE(194); + if (lookahead == '|') ADVANCE(155); END_STATE(); case 158: - ACCEPT_TOKEN(anon_sym_AMP); + ACCEPT_TOKEN(anon_sym_PIPE); + if (lookahead == '|') ADVANCE(155); END_STATE(); case 159: - ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '&') ADVANCE(153); + ACCEPT_TOKEN(anon_sym_CARET); END_STATE(); case 160: - ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '&') ADVANCE(153); - if (lookahead == '=') ADVANCE(189); + ACCEPT_TOKEN(anon_sym_CARET); + if (lookahead == '=') ADVANCE(193); END_STATE(); case 161: - ACCEPT_TOKEN(anon_sym_EQ_EQ); + ACCEPT_TOKEN(anon_sym_AMP); END_STATE(); case 162: - ACCEPT_TOKEN(anon_sym_BANG_EQ); + ACCEPT_TOKEN(anon_sym_AMP); + if (lookahead == '&') ADVANCE(156); END_STATE(); case 163: - ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(165); - if (lookahead == '>') ADVANCE(172); + ACCEPT_TOKEN(anon_sym_AMP); + if (lookahead == '&') ADVANCE(156); + if (lookahead == '=') ADVANCE(192); END_STATE(); case 164: - ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(165); - if (lookahead == '>') ADVANCE(171); + ACCEPT_TOKEN(anon_sym_EQ_EQ); END_STATE(); case 165: - ACCEPT_TOKEN(anon_sym_GT_EQ); + ACCEPT_TOKEN(anon_sym_BANG_EQ); END_STATE(); case 166: - ACCEPT_TOKEN(anon_sym_LT_EQ); + ACCEPT_TOKEN(anon_sym_GT); + if (lookahead == '=') ADVANCE(168); + if (lookahead == '>') ADVANCE(175); END_STATE(); case 167: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(170); - if (lookahead == '=') ADVANCE(166); + ACCEPT_TOKEN(anon_sym_GT); + if (lookahead == '=') ADVANCE(168); + if (lookahead == '>') ADVANCE(174); END_STATE(); case 168: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(169); - if (lookahead == '=') ADVANCE(166); + ACCEPT_TOKEN(anon_sym_GT_EQ); END_STATE(); case 169: - ACCEPT_TOKEN(anon_sym_LT_LT); + ACCEPT_TOKEN(anon_sym_LT_EQ); END_STATE(); case 170: - ACCEPT_TOKEN(anon_sym_LT_LT); - if (lookahead == '=') ADVANCE(187); + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '<') ADVANCE(173); + if (lookahead == '=') ADVANCE(169); END_STATE(); case 171: - ACCEPT_TOKEN(anon_sym_GT_GT); + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '<') ADVANCE(172); + if (lookahead == '=') ADVANCE(169); END_STATE(); case 172: - ACCEPT_TOKEN(anon_sym_GT_GT); - if (lookahead == '=') ADVANCE(188); + ACCEPT_TOKEN(anon_sym_LT_LT); END_STATE(); case 173: - ACCEPT_TOKEN(anon_sym_SEMI); + ACCEPT_TOKEN(anon_sym_LT_LT); + if (lookahead == '=') ADVANCE(190); END_STATE(); case 174: - ACCEPT_TOKEN(anon_sym_LBRACE); + ACCEPT_TOKEN(anon_sym_GT_GT); END_STATE(); case 175: - ACCEPT_TOKEN(anon_sym_RBRACE); + ACCEPT_TOKEN(anon_sym_GT_GT); + if (lookahead == '=') ADVANCE(191); END_STATE(); case 176: - ACCEPT_TOKEN(anon_sym_LBRACK); + ACCEPT_TOKEN(anon_sym_SEMI); END_STATE(); case 177: - ACCEPT_TOKEN(anon_sym_RBRACK); + ACCEPT_TOKEN(anon_sym_LBRACE); END_STATE(); case 178: - ACCEPT_TOKEN(anon_sym_EQ); + ACCEPT_TOKEN(anon_sym_RBRACE); END_STATE(); case 179: - ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(161); + ACCEPT_TOKEN(anon_sym_LBRACK); END_STATE(); case 180: - ACCEPT_TOKEN(anon_sym_COLON); + ACCEPT_TOKEN(anon_sym_RBRACK); END_STATE(); case 181: - ACCEPT_TOKEN(anon_sym_QMARK); + ACCEPT_TOKEN(anon_sym_EQ); END_STATE(); case 182: - ACCEPT_TOKEN(anon_sym_STAR_EQ); + ACCEPT_TOKEN(anon_sym_EQ); + if (lookahead == '=') ADVANCE(164); END_STATE(); case 183: - ACCEPT_TOKEN(anon_sym_SLASH_EQ); + ACCEPT_TOKEN(anon_sym_COLON); END_STATE(); case 184: - ACCEPT_TOKEN(anon_sym_PERCENT_EQ); + ACCEPT_TOKEN(anon_sym_QMARK); END_STATE(); case 185: - ACCEPT_TOKEN(anon_sym_PLUS_EQ); + ACCEPT_TOKEN(anon_sym_STAR_EQ); END_STATE(); case 186: - ACCEPT_TOKEN(anon_sym_DASH_EQ); + ACCEPT_TOKEN(anon_sym_SLASH_EQ); END_STATE(); case 187: - ACCEPT_TOKEN(anon_sym_LT_LT_EQ); + ACCEPT_TOKEN(anon_sym_PERCENT_EQ); END_STATE(); case 188: - ACCEPT_TOKEN(anon_sym_GT_GT_EQ); + ACCEPT_TOKEN(anon_sym_PLUS_EQ); END_STATE(); case 189: - ACCEPT_TOKEN(anon_sym_AMP_EQ); + ACCEPT_TOKEN(anon_sym_DASH_EQ); END_STATE(); case 190: - ACCEPT_TOKEN(anon_sym_CARET_EQ); + ACCEPT_TOKEN(anon_sym_LT_LT_EQ); END_STATE(); case 191: - ACCEPT_TOKEN(anon_sym_PIPE_EQ); + ACCEPT_TOKEN(anon_sym_GT_GT_EQ); END_STATE(); case 192: - ACCEPT_TOKEN(anon_sym_DASH_DASH); + ACCEPT_TOKEN(anon_sym_AMP_EQ); END_STATE(); case 193: - ACCEPT_TOKEN(anon_sym_PLUS_PLUS); + ACCEPT_TOKEN(anon_sym_CARET_EQ); END_STATE(); case 194: - ACCEPT_TOKEN(anon_sym_DOT); + ACCEPT_TOKEN(anon_sym_PIPE_EQ); END_STATE(); case 195: - ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(40); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(198); + ACCEPT_TOKEN(anon_sym_DASH_DASH); END_STATE(); case 196: - ACCEPT_TOKEN(anon_sym_DOT); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(198); + ACCEPT_TOKEN(anon_sym_PLUS_PLUS); END_STATE(); case 197: - ACCEPT_TOKEN(anon_sym_DASH_GT); + ACCEPT_TOKEN(anon_sym_DOT); END_STATE(); case 198: + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '.') ADVANCE(43); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(201); + END_STATE(); + case 199: + ACCEPT_TOKEN(anon_sym_DOT); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(201); + END_STATE(); + case 200: + ACCEPT_TOKEN(anon_sym_DASH_GT); + END_STATE(); + case 201: ACCEPT_TOKEN(sym_number_literal); - if (lookahead == '\'') ADVANCE(58); + if (lookahead == '\'') ADVANCE(61); if (lookahead == 'F' || lookahead == 'L' || lookahead == 'U' || lookahead == 'f' || lookahead == 'l' || - lookahead == 'u') ADVANCE(212); + lookahead == 'u') ADVANCE(215); if (lookahead == 'E' || lookahead == 'P' || lookahead == 'e' || - lookahead == 'p') ADVANCE(211); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(198); + lookahead == 'p') ADVANCE(214); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(201); END_STATE(); - case 199: + case 202: ACCEPT_TOKEN(sym_number_literal); - if (lookahead == '\'') ADVANCE(62); + if (lookahead == '\'') ADVANCE(65); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(199); + lookahead == 'f') ADVANCE(202); if (lookahead == 'L' || lookahead == 'U' || lookahead == 'l' || - lookahead == 'u') ADVANCE(212); + lookahead == 'u') ADVANCE(215); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'E') || - ('a' <= lookahead && lookahead <= 'e')) ADVANCE(199); + ('a' <= lookahead && lookahead <= 'e')) ADVANCE(202); END_STATE(); - case 200: + case 203: ACCEPT_TOKEN(sym_number_literal); - if (lookahead == '\'') ADVANCE(59); - if (lookahead == '.') ADVANCE(210); + if (lookahead == '\'') ADVANCE(62); + if (lookahead == '.') ADVANCE(213); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(209); + lookahead == 'f') ADVANCE(212); if (lookahead == 'L' || lookahead == 'U' || lookahead == 'l' || - lookahead == 'u') ADVANCE(212); - if (lookahead == 'b') ADVANCE(208); - if (lookahead == 'x') ADVANCE(61); + lookahead == 'u') ADVANCE(215); + if (lookahead == 'b') ADVANCE(211); + if (lookahead == 'x') ADVANCE(64); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(207); + lookahead == 'e') ADVANCE(210); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(211); + lookahead == 'p') ADVANCE(214); if (('A' <= lookahead && lookahead <= 'D') || - ('a' <= lookahead && lookahead <= 'd')) ADVANCE(209); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(201); + ('a' <= lookahead && lookahead <= 'd')) ADVANCE(212); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(204); END_STATE(); - case 201: + case 204: ACCEPT_TOKEN(sym_number_literal); - if (lookahead == '\'') ADVANCE(59); - if (lookahead == '.') ADVANCE(210); + if (lookahead == '\'') ADVANCE(62); + if (lookahead == '.') ADVANCE(213); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(209); + lookahead == 'f') ADVANCE(212); if (lookahead == 'L' || lookahead == 'U' || lookahead == 'l' || - lookahead == 'u') ADVANCE(212); + lookahead == 'u') ADVANCE(215); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(207); + lookahead == 'e') ADVANCE(210); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(211); + lookahead == 'p') ADVANCE(214); if (('A' <= lookahead && lookahead <= 'D') || - ('a' <= lookahead && lookahead <= 'd')) ADVANCE(209); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(201); + ('a' <= lookahead && lookahead <= 'd')) ADVANCE(212); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(204); END_STATE(); - case 202: + case 205: ACCEPT_TOKEN(sym_number_literal); - if (lookahead == '\'') ADVANCE(57); - if (lookahead == '.') ADVANCE(210); + if (lookahead == '\'') ADVANCE(60); + if (lookahead == '.') ADVANCE(213); if (lookahead == 'F' || lookahead == 'L' || lookahead == 'U' || lookahead == 'f' || lookahead == 'l' || - lookahead == 'u') ADVANCE(212); - if (lookahead == 'b') ADVANCE(38); - if (lookahead == 'x') ADVANCE(37); + lookahead == 'u') ADVANCE(215); + if (lookahead == 'b') ADVANCE(41); + if (lookahead == 'x') ADVANCE(40); if (lookahead == 'E' || lookahead == 'P' || lookahead == 'e' || - lookahead == 'p') ADVANCE(211); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(204); + lookahead == 'p') ADVANCE(214); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(207); END_STATE(); - case 203: + case 206: ACCEPT_TOKEN(sym_number_literal); - if (lookahead == '\'') ADVANCE(57); - if (lookahead == '.') ADVANCE(210); + if (lookahead == '\'') ADVANCE(60); + if (lookahead == '.') ADVANCE(213); if (lookahead == 'F' || lookahead == 'L' || lookahead == 'U' || lookahead == 'f' || lookahead == 'l' || - lookahead == 'u') ADVANCE(212); - if (lookahead == 'b') ADVANCE(57); - if (lookahead == 'x') ADVANCE(61); + lookahead == 'u') ADVANCE(215); + if (lookahead == 'b') ADVANCE(60); + if (lookahead == 'x') ADVANCE(64); if (lookahead == 'E' || lookahead == 'P' || lookahead == 'e' || - lookahead == 'p') ADVANCE(211); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(204); + lookahead == 'p') ADVANCE(214); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(207); END_STATE(); - case 204: + case 207: ACCEPT_TOKEN(sym_number_literal); - if (lookahead == '\'') ADVANCE(57); - if (lookahead == '.') ADVANCE(210); + if (lookahead == '\'') ADVANCE(60); + if (lookahead == '.') ADVANCE(213); if (lookahead == 'F' || lookahead == 'L' || lookahead == 'U' || lookahead == 'f' || lookahead == 'l' || - lookahead == 'u') ADVANCE(212); + lookahead == 'u') ADVANCE(215); if (lookahead == 'E' || lookahead == 'P' || lookahead == 'e' || - lookahead == 'p') ADVANCE(211); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(204); + lookahead == 'p') ADVANCE(214); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(207); END_STATE(); - case 205: + case 208: ACCEPT_TOKEN(sym_number_literal); - if (lookahead == '\'') ADVANCE(60); + if (lookahead == '\'') ADVANCE(63); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(206); + lookahead == 'f') ADVANCE(209); if (lookahead == 'L' || lookahead == 'U' || lookahead == 'l' || - lookahead == 'u') ADVANCE(212); + lookahead == 'u') ADVANCE(215); if (lookahead == '+' || - lookahead == '-') ADVANCE(62); + lookahead == '-') ADVANCE(65); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(205); + lookahead == 'e') ADVANCE(208); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(211); + lookahead == 'p') ADVANCE(214); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'D') || - ('a' <= lookahead && lookahead <= 'd')) ADVANCE(206); + ('a' <= lookahead && lookahead <= 'd')) ADVANCE(209); END_STATE(); - case 206: + case 209: ACCEPT_TOKEN(sym_number_literal); - if (lookahead == '\'') ADVANCE(60); + if (lookahead == '\'') ADVANCE(63); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(206); + lookahead == 'f') ADVANCE(209); if (lookahead == 'L' || lookahead == 'U' || lookahead == 'l' || - lookahead == 'u') ADVANCE(212); + lookahead == 'u') ADVANCE(215); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(205); + lookahead == 'e') ADVANCE(208); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(211); + lookahead == 'p') ADVANCE(214); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'D') || - ('a' <= lookahead && lookahead <= 'd')) ADVANCE(206); + ('a' <= lookahead && lookahead <= 'd')) ADVANCE(209); END_STATE(); - case 207: + case 210: ACCEPT_TOKEN(sym_number_literal); - if (lookahead == '\'') ADVANCE(61); - if (lookahead == '.') ADVANCE(210); + if (lookahead == '\'') ADVANCE(64); + if (lookahead == '.') ADVANCE(213); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(209); + lookahead == 'f') ADVANCE(212); if (lookahead == 'L' || lookahead == 'U' || lookahead == 'l' || - lookahead == 'u') ADVANCE(212); + lookahead == 'u') ADVANCE(215); if (lookahead == '+' || - lookahead == '-') ADVANCE(62); + lookahead == '-') ADVANCE(65); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(207); + lookahead == 'e') ADVANCE(210); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(211); + lookahead == 'p') ADVANCE(214); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'D') || - ('a' <= lookahead && lookahead <= 'd')) ADVANCE(209); + ('a' <= lookahead && lookahead <= 'd')) ADVANCE(212); END_STATE(); - case 208: + case 211: ACCEPT_TOKEN(sym_number_literal); - if (lookahead == '\'') ADVANCE(61); - if (lookahead == '.') ADVANCE(210); + if (lookahead == '\'') ADVANCE(64); + if (lookahead == '.') ADVANCE(213); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(209); + lookahead == 'f') ADVANCE(212); if (lookahead == 'L' || lookahead == 'U' || lookahead == 'l' || - lookahead == 'u') ADVANCE(212); + lookahead == 'u') ADVANCE(215); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(207); + lookahead == 'e') ADVANCE(210); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(211); + lookahead == 'p') ADVANCE(214); if (('A' <= lookahead && lookahead <= 'D') || - ('a' <= lookahead && lookahead <= 'd')) ADVANCE(209); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(201); + ('a' <= lookahead && lookahead <= 'd')) ADVANCE(212); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(204); END_STATE(); - case 209: + case 212: ACCEPT_TOKEN(sym_number_literal); - if (lookahead == '\'') ADVANCE(61); - if (lookahead == '.') ADVANCE(210); + if (lookahead == '\'') ADVANCE(64); + if (lookahead == '.') ADVANCE(213); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(209); + lookahead == 'f') ADVANCE(212); if (lookahead == 'L' || lookahead == 'U' || lookahead == 'l' || - lookahead == 'u') ADVANCE(212); + lookahead == 'u') ADVANCE(215); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(207); + lookahead == 'e') ADVANCE(210); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(211); + lookahead == 'p') ADVANCE(214); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'D') || - ('a' <= lookahead && lookahead <= 'd')) ADVANCE(209); + ('a' <= lookahead && lookahead <= 'd')) ADVANCE(212); END_STATE(); - case 210: + case 213: ACCEPT_TOKEN(sym_number_literal); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(206); + lookahead == 'f') ADVANCE(209); if (lookahead == 'L' || lookahead == 'U' || lookahead == 'l' || - lookahead == 'u') ADVANCE(212); + lookahead == 'u') ADVANCE(215); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(205); + lookahead == 'e') ADVANCE(208); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(211); + lookahead == 'p') ADVANCE(214); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'D') || - ('a' <= lookahead && lookahead <= 'd')) ADVANCE(206); + ('a' <= lookahead && lookahead <= 'd')) ADVANCE(209); END_STATE(); - case 211: + case 214: ACCEPT_TOKEN(sym_number_literal); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(199); + lookahead == 'f') ADVANCE(202); if (lookahead == 'L' || lookahead == 'U' || lookahead == 'l' || - lookahead == 'u') ADVANCE(212); + lookahead == 'u') ADVANCE(215); if (lookahead == '+' || - lookahead == '-') ADVANCE(62); + lookahead == '-') ADVANCE(65); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'E') || - ('a' <= lookahead && lookahead <= 'e')) ADVANCE(199); + ('a' <= lookahead && lookahead <= 'e')) ADVANCE(202); END_STATE(); - case 212: + case 215: ACCEPT_TOKEN(sym_number_literal); if (lookahead == 'F' || lookahead == 'L' || lookahead == 'U' || lookahead == 'f' || lookahead == 'l' || - lookahead == 'u') ADVANCE(212); + lookahead == 'u') ADVANCE(215); END_STATE(); - case 213: + case 216: ACCEPT_TOKEN(anon_sym_L_SQUOTE); END_STATE(); - case 214: + case 217: ACCEPT_TOKEN(anon_sym_u_SQUOTE); END_STATE(); - case 215: + case 218: ACCEPT_TOKEN(anon_sym_U_SQUOTE); END_STATE(); - case 216: + case 219: ACCEPT_TOKEN(anon_sym_u8_SQUOTE); END_STATE(); - case 217: + case 220: ACCEPT_TOKEN(anon_sym_SQUOTE); END_STATE(); - case 218: + case 221: ACCEPT_TOKEN(aux_sym_char_literal_token1); END_STATE(); - case 219: + case 222: ACCEPT_TOKEN(aux_sym_char_literal_token1); - if (lookahead == '\n') ADVANCE(233); - if (lookahead == '\r') ADVANCE(232); - if (lookahead == 'U') ADVANCE(70); - if (lookahead == 'u') ADVANCE(66); - if (lookahead == 'x') ADVANCE(64); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(235); - if (lookahead != 0) ADVANCE(232); + if (lookahead == '\n') ADVANCE(236); + if (lookahead == '\r') ADVANCE(235); + if (lookahead == 'U') ADVANCE(73); + if (lookahead == 'u') ADVANCE(69); + if (lookahead == 'x') ADVANCE(67); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(238); + if (lookahead != 0) ADVANCE(235); END_STATE(); - case 220: + case 223: ACCEPT_TOKEN(aux_sym_char_literal_token1); - if (lookahead == '*') ADVANCE(36); - if (lookahead == '/') ADVANCE(253); + if (lookahead == '*') ADVANCE(39); + if (lookahead == '/') ADVANCE(256); END_STATE(); - case 221: + case 224: ACCEPT_TOKEN(aux_sym_char_literal_token1); - if (lookahead == '\\') ADVANCE(21); + if (lookahead == '\\') ADVANCE(23); END_STATE(); - case 222: + case 225: ACCEPT_TOKEN(anon_sym_L_DQUOTE); END_STATE(); - case 223: + case 226: ACCEPT_TOKEN(anon_sym_u_DQUOTE); END_STATE(); - case 224: + case 227: ACCEPT_TOKEN(anon_sym_U_DQUOTE); END_STATE(); - case 225: + case 228: ACCEPT_TOKEN(anon_sym_u8_DQUOTE); END_STATE(); - case 226: + case 229: ACCEPT_TOKEN(anon_sym_DQUOTE); END_STATE(); - case 227: + case 230: ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == '*') ADVANCE(229); - if (lookahead == '/') ADVANCE(231); + if (lookahead == '*') ADVANCE(232); + if (lookahead == '/') ADVANCE(234); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(231); + lookahead != '\\') ADVANCE(234); END_STATE(); - case 228: + case 231: ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == '*') ADVANCE(228); - if (lookahead == '/') ADVANCE(231); + if (lookahead == '*') ADVANCE(231); + if (lookahead == '/') ADVANCE(234); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(229); + lookahead != '\\') ADVANCE(232); END_STATE(); - case 229: + case 232: ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == '*') ADVANCE(228); + if (lookahead == '*') ADVANCE(231); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(229); + lookahead != '\\') ADVANCE(232); END_STATE(); - case 230: + case 233: ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == '/') ADVANCE(227); + if (lookahead == '/') ADVANCE(230); if (lookahead == '\t' || lookahead == '\r' || - lookahead == ' ') ADVANCE(230); + lookahead == ' ') ADVANCE(233); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(231); + lookahead != '\\') ADVANCE(234); END_STATE(); - case 231: + case 234: ACCEPT_TOKEN(aux_sym_string_literal_token1); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(231); + lookahead != '\\') ADVANCE(234); END_STATE(); - case 232: + case 235: ACCEPT_TOKEN(sym_escape_sequence); END_STATE(); - case 233: + case 236: ACCEPT_TOKEN(sym_escape_sequence); - if (lookahead == '\\') ADVANCE(21); + if (lookahead == '\\') ADVANCE(23); END_STATE(); - case 234: + case 237: ACCEPT_TOKEN(sym_escape_sequence); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(232); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(235); END_STATE(); - case 235: + case 238: ACCEPT_TOKEN(sym_escape_sequence); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(234); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(237); END_STATE(); - case 236: + case 239: ACCEPT_TOKEN(sym_system_lib_string); END_STATE(); - case 237: + case 240: ACCEPT_TOKEN(sym_system_lib_string); - if (lookahead == '>') ADVANCE(236); - if (lookahead == '\\') ADVANCE(45); + if (lookahead == '>') ADVANCE(239); + if (lookahead == '\\') ADVANCE(48); if (lookahead != 0 && - lookahead != '\n') ADVANCE(44); + lookahead != '\n') ADVANCE(47); END_STATE(); - case 238: + case 241: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(222); - if (lookahead == '\'') ADVANCE(213); + if (lookahead == '"') ADVANCE(225); + if (lookahead == '\'') ADVANCE(216); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(250); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(253); END_STATE(); - case 239: + case 242: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(222); + if (lookahead == '"') ADVANCE(225); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(250); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(253); END_STATE(); - case 240: + case 243: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(224); - if (lookahead == '\'') ADVANCE(215); + if (lookahead == '"') ADVANCE(227); + if (lookahead == '\'') ADVANCE(218); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(250); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(253); END_STATE(); - case 241: + case 244: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(224); + if (lookahead == '"') ADVANCE(227); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(250); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(253); END_STATE(); - case 242: + case 245: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(223); - if (lookahead == '\'') ADVANCE(214); - if (lookahead == '8') ADVANCE(244); + if (lookahead == '"') ADVANCE(226); + if (lookahead == '\'') ADVANCE(217); + if (lookahead == '8') ADVANCE(247); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(250); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(253); END_STATE(); - case 243: + case 246: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(223); - if (lookahead == '8') ADVANCE(245); + if (lookahead == '"') ADVANCE(226); + if (lookahead == '8') ADVANCE(248); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(250); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(253); END_STATE(); - case 244: + case 247: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(225); - if (lookahead == '\'') ADVANCE(216); + if (lookahead == '"') ADVANCE(228); + if (lookahead == '\'') ADVANCE(219); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(250); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(253); END_STATE(); - case 245: + case 248: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(225); + if (lookahead == '"') ADVANCE(228); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(250); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(253); END_STATE(); - case 246: + case 249: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\'') ADVANCE(213); + if (lookahead == '\'') ADVANCE(216); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(250); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(253); END_STATE(); - case 247: + case 250: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\'') ADVANCE(215); + if (lookahead == '\'') ADVANCE(218); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(250); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(253); END_STATE(); - case 248: + case 251: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\'') ADVANCE(214); - if (lookahead == '8') ADVANCE(249); + if (lookahead == '\'') ADVANCE(217); + if (lookahead == '8') ADVANCE(252); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(250); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(253); END_STATE(); - case 249: + case 252: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\'') ADVANCE(216); + if (lookahead == '\'') ADVANCE(219); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(250); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(253); END_STATE(); - case 250: + case 253: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(250); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(253); END_STATE(); - case 251: + case 254: ACCEPT_TOKEN(sym_comment); END_STATE(); - case 252: + case 255: ACCEPT_TOKEN(sym_comment); - if (lookahead == '\r') ADVANCE(254); - if (lookahead == '\\') ADVANCE(129); + if (lookahead == '\r') ADVANCE(257); + if (lookahead == '\\') ADVANCE(132); if (lookahead != 0 && - lookahead != '\n') ADVANCE(254); + lookahead != '\n') ADVANCE(257); END_STATE(); - case 253: + case 256: ACCEPT_TOKEN(sym_comment); - if (lookahead == '\\') ADVANCE(71); + if (lookahead == '\\') ADVANCE(74); if (lookahead != 0 && - lookahead != '\n') ADVANCE(253); + lookahead != '\n') ADVANCE(256); END_STATE(); - case 254: + case 257: ACCEPT_TOKEN(sym_comment); - if (lookahead == '\\') ADVANCE(129); + if (lookahead == '\\') ADVANCE(132); if (lookahead != 0 && - lookahead != '\n') ADVANCE(254); + lookahead != '\n') ADVANCE(257); END_STATE(); - case 255: + case 258: ACCEPT_TOKEN(sym_comment); if (lookahead != 0 && - lookahead != '\\') ADVANCE(253); - if (lookahead == '\\') ADVANCE(71); + lookahead != '\\') ADVANCE(256); + if (lookahead == '\\') ADVANCE(74); END_STATE(); - case 256: + case 259: ACCEPT_TOKEN(sym_comment); if (lookahead != 0 && - lookahead != '\\') ADVANCE(254); - if (lookahead == '\\') ADVANCE(129); + lookahead != '\\') ADVANCE(257); + if (lookahead == '\\') ADVANCE(132); END_STATE(); default: return false; @@ -4749,801 +4771,801 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { static TSLexMode ts_lex_modes[STATE_COUNT] = { [0] = {.lex_state = 0}, - [1] = {.lex_state = 77}, - [2] = {.lex_state = 26}, - [3] = {.lex_state = 26}, - [4] = {.lex_state = 26}, - [5] = {.lex_state = 26}, - [6] = {.lex_state = 26}, - [7] = {.lex_state = 26}, - [8] = {.lex_state = 26}, - [9] = {.lex_state = 26}, - [10] = {.lex_state = 26}, - [11] = {.lex_state = 26}, - [12] = {.lex_state = 26}, - [13] = {.lex_state = 26}, - [14] = {.lex_state = 26}, - [15] = {.lex_state = 26}, - [16] = {.lex_state = 26}, - [17] = {.lex_state = 26}, - [18] = {.lex_state = 26}, - [19] = {.lex_state = 26}, - [20] = {.lex_state = 26}, - [21] = {.lex_state = 77}, - [22] = {.lex_state = 27}, - [23] = {.lex_state = 77}, - [24] = {.lex_state = 77}, - [25] = {.lex_state = 77}, - [26] = {.lex_state = 77}, - [27] = {.lex_state = 77}, - [28] = {.lex_state = 77}, - [29] = {.lex_state = 77}, - [30] = {.lex_state = 77}, - [31] = {.lex_state = 27}, - [32] = {.lex_state = 77}, - [33] = {.lex_state = 77}, - [34] = {.lex_state = 77}, - [35] = {.lex_state = 27}, - [36] = {.lex_state = 77}, - [37] = {.lex_state = 77}, - [38] = {.lex_state = 77}, - [39] = {.lex_state = 77}, - [40] = {.lex_state = 77}, - [41] = {.lex_state = 77}, - [42] = {.lex_state = 77}, - [43] = {.lex_state = 26}, - [44] = {.lex_state = 26}, - [45] = {.lex_state = 26}, - [46] = {.lex_state = 26}, - [47] = {.lex_state = 26}, - [48] = {.lex_state = 77}, - [49] = {.lex_state = 77}, - [50] = {.lex_state = 77}, - [51] = {.lex_state = 77}, - [52] = {.lex_state = 77}, - [53] = {.lex_state = 77}, - [54] = {.lex_state = 77}, - [55] = {.lex_state = 77}, - [56] = {.lex_state = 77}, - [57] = {.lex_state = 27}, - [58] = {.lex_state = 27}, - [59] = {.lex_state = 27}, - [60] = {.lex_state = 27}, - [61] = {.lex_state = 77}, - [62] = {.lex_state = 27}, - [63] = {.lex_state = 25}, - [64] = {.lex_state = 77}, - [65] = {.lex_state = 77}, - [66] = {.lex_state = 77}, - [67] = {.lex_state = 77}, - [68] = {.lex_state = 77}, - [69] = {.lex_state = 77}, - [70] = {.lex_state = 77}, - [71] = {.lex_state = 77}, - [72] = {.lex_state = 77}, - [73] = {.lex_state = 77}, - [74] = {.lex_state = 77}, - [75] = {.lex_state = 77}, - [76] = {.lex_state = 77}, - [77] = {.lex_state = 77}, - [78] = {.lex_state = 77}, - [79] = {.lex_state = 77}, - [80] = {.lex_state = 77}, - [81] = {.lex_state = 77}, - [82] = {.lex_state = 77}, - [83] = {.lex_state = 77}, - [84] = {.lex_state = 77}, - [85] = {.lex_state = 77}, - [86] = {.lex_state = 77}, - [87] = {.lex_state = 77}, - [88] = {.lex_state = 77}, - [89] = {.lex_state = 77}, - [90] = {.lex_state = 77}, - [91] = {.lex_state = 77}, - [92] = {.lex_state = 77}, - [93] = {.lex_state = 77}, - [94] = {.lex_state = 77}, - [95] = {.lex_state = 77}, - [96] = {.lex_state = 77}, - [97] = {.lex_state = 77}, - [98] = {.lex_state = 77}, - [99] = {.lex_state = 77}, - [100] = {.lex_state = 77}, - [101] = {.lex_state = 77}, - [102] = {.lex_state = 77}, - [103] = {.lex_state = 77}, - [104] = {.lex_state = 77}, - [105] = {.lex_state = 77}, - [106] = {.lex_state = 77}, - [107] = {.lex_state = 77}, - [108] = {.lex_state = 77}, - [109] = {.lex_state = 77}, - [110] = {.lex_state = 77}, - [111] = {.lex_state = 77}, - [112] = {.lex_state = 77}, - [113] = {.lex_state = 77}, - [114] = {.lex_state = 77}, - [115] = {.lex_state = 77}, - [116] = {.lex_state = 77}, - [117] = {.lex_state = 77}, - [118] = {.lex_state = 77}, - [119] = {.lex_state = 77}, - [120] = {.lex_state = 77}, - [121] = {.lex_state = 77}, - [122] = {.lex_state = 77}, - [123] = {.lex_state = 77}, - [124] = {.lex_state = 77}, - [125] = {.lex_state = 77}, - [126] = {.lex_state = 77}, - [127] = {.lex_state = 77}, - [128] = {.lex_state = 77}, - [129] = {.lex_state = 77}, - [130] = {.lex_state = 77}, - [131] = {.lex_state = 77}, - [132] = {.lex_state = 77}, - [133] = {.lex_state = 77}, - [134] = {.lex_state = 77}, - [135] = {.lex_state = 77}, - [136] = {.lex_state = 25}, - [137] = {.lex_state = 26}, - [138] = {.lex_state = 26}, - [139] = {.lex_state = 26}, - [140] = {.lex_state = 26}, - [141] = {.lex_state = 26}, - [142] = {.lex_state = 26}, - [143] = {.lex_state = 26}, - [144] = {.lex_state = 26}, - [145] = {.lex_state = 26}, - [146] = {.lex_state = 26}, - [147] = {.lex_state = 26}, - [148] = {.lex_state = 26}, - [149] = {.lex_state = 26}, - [150] = {.lex_state = 26}, - [151] = {.lex_state = 26}, - [152] = {.lex_state = 26}, - [153] = {.lex_state = 26}, - [154] = {.lex_state = 26}, - [155] = {.lex_state = 26}, - [156] = {.lex_state = 26}, - [157] = {.lex_state = 26}, - [158] = {.lex_state = 26}, - [159] = {.lex_state = 26}, - [160] = {.lex_state = 26}, - [161] = {.lex_state = 26}, - [162] = {.lex_state = 26}, - [163] = {.lex_state = 26}, - [164] = {.lex_state = 26}, - [165] = {.lex_state = 26}, - [166] = {.lex_state = 26}, - [167] = {.lex_state = 26}, - [168] = {.lex_state = 26}, - [169] = {.lex_state = 26}, - [170] = {.lex_state = 26}, - [171] = {.lex_state = 26}, - [172] = {.lex_state = 26}, - [173] = {.lex_state = 26}, - [174] = {.lex_state = 26}, - [175] = {.lex_state = 26}, - [176] = {.lex_state = 26}, - [177] = {.lex_state = 26}, - [178] = {.lex_state = 26}, - [179] = {.lex_state = 26}, - [180] = {.lex_state = 26}, - [181] = {.lex_state = 26}, - [182] = {.lex_state = 26}, - [183] = {.lex_state = 26}, - [184] = {.lex_state = 26}, - [185] = {.lex_state = 26}, - [186] = {.lex_state = 26}, - [187] = {.lex_state = 26}, - [188] = {.lex_state = 26}, - [189] = {.lex_state = 26}, - [190] = {.lex_state = 26}, - [191] = {.lex_state = 26}, - [192] = {.lex_state = 27}, - [193] = {.lex_state = 77}, - [194] = {.lex_state = 77}, - [195] = {.lex_state = 77}, - [196] = {.lex_state = 77}, - [197] = {.lex_state = 77}, - [198] = {.lex_state = 77}, - [199] = {.lex_state = 77}, - [200] = {.lex_state = 77}, - [201] = {.lex_state = 77}, - [202] = {.lex_state = 77}, - [203] = {.lex_state = 77}, - [204] = {.lex_state = 77}, - [205] = {.lex_state = 77}, - [206] = {.lex_state = 77}, - [207] = {.lex_state = 77}, - [208] = {.lex_state = 77}, - [209] = {.lex_state = 77}, - [210] = {.lex_state = 77}, - [211] = {.lex_state = 77}, - [212] = {.lex_state = 77}, - [213] = {.lex_state = 27}, - [214] = {.lex_state = 77}, - [215] = {.lex_state = 27}, - [216] = {.lex_state = 77}, - [217] = {.lex_state = 77}, - [218] = {.lex_state = 77}, - [219] = {.lex_state = 77}, - [220] = {.lex_state = 77}, - [221] = {.lex_state = 27}, - [222] = {.lex_state = 27}, - [223] = {.lex_state = 27}, - [224] = {.lex_state = 77}, - [225] = {.lex_state = 27}, - [226] = {.lex_state = 77}, - [227] = {.lex_state = 77}, - [228] = {.lex_state = 27}, - [229] = {.lex_state = 27}, - [230] = {.lex_state = 27}, - [231] = {.lex_state = 77}, - [232] = {.lex_state = 27}, - [233] = {.lex_state = 27}, - [234] = {.lex_state = 77}, - [235] = {.lex_state = 27}, - [236] = {.lex_state = 77}, - [237] = {.lex_state = 77}, - [238] = {.lex_state = 77}, - [239] = {.lex_state = 27}, - [240] = {.lex_state = 27}, - [241] = {.lex_state = 77}, - [242] = {.lex_state = 77}, - [243] = {.lex_state = 77}, - [244] = {.lex_state = 27}, - [245] = {.lex_state = 77}, - [246] = {.lex_state = 77}, - [247] = {.lex_state = 27}, - [248] = {.lex_state = 27}, - [249] = {.lex_state = 27}, - [250] = {.lex_state = 77}, - [251] = {.lex_state = 27}, - [252] = {.lex_state = 77}, - [253] = {.lex_state = 77}, - [254] = {.lex_state = 77}, - [255] = {.lex_state = 77}, - [256] = {.lex_state = 27}, - [257] = {.lex_state = 77}, - [258] = {.lex_state = 77}, - [259] = {.lex_state = 77}, - [260] = {.lex_state = 27}, - [261] = {.lex_state = 77}, - [262] = {.lex_state = 77}, - [263] = {.lex_state = 27}, - [264] = {.lex_state = 77}, - [265] = {.lex_state = 77}, - [266] = {.lex_state = 77}, - [267] = {.lex_state = 77}, - [268] = {.lex_state = 77}, - [269] = {.lex_state = 77}, - [270] = {.lex_state = 27}, - [271] = {.lex_state = 27}, - [272] = {.lex_state = 77}, - [273] = {.lex_state = 77}, - [274] = {.lex_state = 77}, - [275] = {.lex_state = 77}, - [276] = {.lex_state = 27}, - [277] = {.lex_state = 27}, - [278] = {.lex_state = 27}, - [279] = {.lex_state = 77}, - [280] = {.lex_state = 27}, - [281] = {.lex_state = 77}, - [282] = {.lex_state = 77}, - [283] = {.lex_state = 77}, - [284] = {.lex_state = 77}, - [285] = {.lex_state = 77}, - [286] = {.lex_state = 77}, - [287] = {.lex_state = 27}, - [288] = {.lex_state = 77}, - [289] = {.lex_state = 27}, - [290] = {.lex_state = 27}, - [291] = {.lex_state = 77}, - [292] = {.lex_state = 77}, - [293] = {.lex_state = 27}, - [294] = {.lex_state = 77}, - [295] = {.lex_state = 77}, - [296] = {.lex_state = 27}, - [297] = {.lex_state = 27}, - [298] = {.lex_state = 27}, - [299] = {.lex_state = 77}, - [300] = {.lex_state = 27}, - [301] = {.lex_state = 77}, - [302] = {.lex_state = 27}, - [303] = {.lex_state = 77}, - [304] = {.lex_state = 77}, - [305] = {.lex_state = 77}, - [306] = {.lex_state = 77}, - [307] = {.lex_state = 27}, - [308] = {.lex_state = 77}, - [309] = {.lex_state = 77}, - [310] = {.lex_state = 77}, - [311] = {.lex_state = 77}, - [312] = {.lex_state = 77}, - [313] = {.lex_state = 77}, - [314] = {.lex_state = 27}, - [315] = {.lex_state = 77}, - [316] = {.lex_state = 27}, - [317] = {.lex_state = 77}, - [318] = {.lex_state = 77}, - [319] = {.lex_state = 27}, - [320] = {.lex_state = 77}, - [321] = {.lex_state = 27}, - [322] = {.lex_state = 27}, - [323] = {.lex_state = 27}, - [324] = {.lex_state = 77}, - [325] = {.lex_state = 77}, - [326] = {.lex_state = 77}, - [327] = {.lex_state = 27}, - [328] = {.lex_state = 27}, - [329] = {.lex_state = 27}, - [330] = {.lex_state = 77}, - [331] = {.lex_state = 27}, - [332] = {.lex_state = 27}, - [333] = {.lex_state = 27}, - [334] = {.lex_state = 77}, - [335] = {.lex_state = 27}, - [336] = {.lex_state = 77}, - [337] = {.lex_state = 77}, - [338] = {.lex_state = 27}, - [339] = {.lex_state = 27}, - [340] = {.lex_state = 77}, - [341] = {.lex_state = 77}, - [342] = {.lex_state = 77}, - [343] = {.lex_state = 77}, - [344] = {.lex_state = 77}, - [345] = {.lex_state = 77}, - [346] = {.lex_state = 77}, - [347] = {.lex_state = 77}, - [348] = {.lex_state = 77}, - [349] = {.lex_state = 27}, - [350] = {.lex_state = 77}, - [351] = {.lex_state = 77}, - [352] = {.lex_state = 77}, - [353] = {.lex_state = 77}, - [354] = {.lex_state = 77}, - [355] = {.lex_state = 77}, - [356] = {.lex_state = 77}, - [357] = {.lex_state = 77}, - [358] = {.lex_state = 77}, - [359] = {.lex_state = 77}, - [360] = {.lex_state = 77}, - [361] = {.lex_state = 77}, - [362] = {.lex_state = 77}, - [363] = {.lex_state = 77}, - [364] = {.lex_state = 30}, - [365] = {.lex_state = 30}, - [366] = {.lex_state = 30}, - [367] = {.lex_state = 30}, - [368] = {.lex_state = 30}, - [369] = {.lex_state = 30}, - [370] = {.lex_state = 30}, - [371] = {.lex_state = 30}, - [372] = {.lex_state = 77}, - [373] = {.lex_state = 30}, - [374] = {.lex_state = 77}, - [375] = {.lex_state = 77}, - [376] = {.lex_state = 29}, - [377] = {.lex_state = 30}, - [378] = {.lex_state = 30}, - [379] = {.lex_state = 77}, - [380] = {.lex_state = 77}, - [381] = {.lex_state = 77}, - [382] = {.lex_state = 77}, - [383] = {.lex_state = 29}, - [384] = {.lex_state = 30}, - [385] = {.lex_state = 29}, - [386] = {.lex_state = 30}, - [387] = {.lex_state = 77}, - [388] = {.lex_state = 30}, - [389] = {.lex_state = 77}, - [390] = {.lex_state = 30}, - [391] = {.lex_state = 77}, - [392] = {.lex_state = 77}, - [393] = {.lex_state = 30}, - [394] = {.lex_state = 30}, - [395] = {.lex_state = 30}, - [396] = {.lex_state = 30}, - [397] = {.lex_state = 30}, - [398] = {.lex_state = 30}, - [399] = {.lex_state = 30}, - [400] = {.lex_state = 30}, - [401] = {.lex_state = 31}, - [402] = {.lex_state = 29}, - [403] = {.lex_state = 29}, - [404] = {.lex_state = 30}, - [405] = {.lex_state = 31}, - [406] = {.lex_state = 33}, - [407] = {.lex_state = 31}, - [408] = {.lex_state = 31}, - [409] = {.lex_state = 33}, - [410] = {.lex_state = 33}, - [411] = {.lex_state = 77}, - [412] = {.lex_state = 77}, - [413] = {.lex_state = 77}, - [414] = {.lex_state = 77}, - [415] = {.lex_state = 77}, - [416] = {.lex_state = 77}, - [417] = {.lex_state = 77}, - [418] = {.lex_state = 77}, - [419] = {.lex_state = 77}, - [420] = {.lex_state = 77}, - [421] = {.lex_state = 77}, - [422] = {.lex_state = 77}, - [423] = {.lex_state = 77}, - [424] = {.lex_state = 77}, - [425] = {.lex_state = 77}, - [426] = {.lex_state = 77}, - [427] = {.lex_state = 77}, - [428] = {.lex_state = 77}, - [429] = {.lex_state = 77}, - [430] = {.lex_state = 77}, - [431] = {.lex_state = 77}, - [432] = {.lex_state = 77}, - [433] = {.lex_state = 77}, - [434] = {.lex_state = 77}, - [435] = {.lex_state = 77}, - [436] = {.lex_state = 77}, - [437] = {.lex_state = 77}, - [438] = {.lex_state = 77}, - [439] = {.lex_state = 77}, - [440] = {.lex_state = 77}, - [441] = {.lex_state = 77}, - [442] = {.lex_state = 77}, - [443] = {.lex_state = 77}, - [444] = {.lex_state = 77}, - [445] = {.lex_state = 77}, - [446] = {.lex_state = 77}, - [447] = {.lex_state = 77}, - [448] = {.lex_state = 77}, - [449] = {.lex_state = 30}, - [450] = {.lex_state = 30}, - [451] = {.lex_state = 77}, - [452] = {.lex_state = 77}, - [453] = {.lex_state = 77}, - [454] = {.lex_state = 30}, - [455] = {.lex_state = 30}, - [456] = {.lex_state = 77}, - [457] = {.lex_state = 77}, - [458] = {.lex_state = 77}, - [459] = {.lex_state = 77}, - [460] = {.lex_state = 30}, - [461] = {.lex_state = 77}, - [462] = {.lex_state = 30}, - [463] = {.lex_state = 77}, - [464] = {.lex_state = 77}, - [465] = {.lex_state = 77}, - [466] = {.lex_state = 30}, - [467] = {.lex_state = 30}, - [468] = {.lex_state = 30}, - [469] = {.lex_state = 30}, - [470] = {.lex_state = 30}, - [471] = {.lex_state = 30}, - [472] = {.lex_state = 77}, - [473] = {.lex_state = 30}, - [474] = {.lex_state = 30}, - [475] = {.lex_state = 30}, - [476] = {.lex_state = 30}, - [477] = {.lex_state = 77}, - [478] = {.lex_state = 30}, - [479] = {.lex_state = 31}, - [480] = {.lex_state = 77}, - [481] = {.lex_state = 77}, - [482] = {.lex_state = 77}, - [483] = {.lex_state = 77}, - [484] = {.lex_state = 77}, - [485] = {.lex_state = 77}, - [486] = {.lex_state = 77}, - [487] = {.lex_state = 30}, - [488] = {.lex_state = 77}, - [489] = {.lex_state = 30}, - [490] = {.lex_state = 77}, - [491] = {.lex_state = 77}, - [492] = {.lex_state = 77}, - [493] = {.lex_state = 77}, - [494] = {.lex_state = 77}, - [495] = {.lex_state = 30}, - [496] = {.lex_state = 30}, - [497] = {.lex_state = 77}, - [498] = {.lex_state = 77}, - [499] = {.lex_state = 77}, - [500] = {.lex_state = 77}, - [501] = {.lex_state = 77}, - [502] = {.lex_state = 77}, - [503] = {.lex_state = 77}, - [504] = {.lex_state = 77}, - [505] = {.lex_state = 30}, - [506] = {.lex_state = 77}, - [507] = {.lex_state = 77}, - [508] = {.lex_state = 77}, - [509] = {.lex_state = 30}, - [510] = {.lex_state = 77}, - [511] = {.lex_state = 77}, - [512] = {.lex_state = 77}, - [513] = {.lex_state = 30}, - [514] = {.lex_state = 30}, - [515] = {.lex_state = 30}, - [516] = {.lex_state = 30}, - [517] = {.lex_state = 77}, - [518] = {.lex_state = 30}, - [519] = {.lex_state = 30}, - [520] = {.lex_state = 77}, - [521] = {.lex_state = 77}, - [522] = {.lex_state = 30}, - [523] = {.lex_state = 77}, - [524] = {.lex_state = 77}, - [525] = {.lex_state = 77}, - [526] = {.lex_state = 77}, - [527] = {.lex_state = 77}, - [528] = {.lex_state = 77}, - [529] = {.lex_state = 77}, - [530] = {.lex_state = 77}, - [531] = {.lex_state = 77}, - [532] = {.lex_state = 77}, - [533] = {.lex_state = 77}, - [534] = {.lex_state = 77}, - [535] = {.lex_state = 77}, - [536] = {.lex_state = 77}, - [537] = {.lex_state = 30}, - [538] = {.lex_state = 77}, - [539] = {.lex_state = 77}, - [540] = {.lex_state = 77}, - [541] = {.lex_state = 30}, - [542] = {.lex_state = 77}, - [543] = {.lex_state = 30}, - [544] = {.lex_state = 30}, - [545] = {.lex_state = 30}, - [546] = {.lex_state = 30}, - [547] = {.lex_state = 30}, - [548] = {.lex_state = 77}, - [549] = {.lex_state = 30}, - [550] = {.lex_state = 30}, - [551] = {.lex_state = 30}, - [552] = {.lex_state = 30}, - [553] = {.lex_state = 31}, - [554] = {.lex_state = 31}, - [555] = {.lex_state = 30}, - [556] = {.lex_state = 30}, - [557] = {.lex_state = 30}, - [558] = {.lex_state = 30}, - [559] = {.lex_state = 77}, - [560] = {.lex_state = 30}, - [561] = {.lex_state = 30}, - [562] = {.lex_state = 30}, - [563] = {.lex_state = 30}, - [564] = {.lex_state = 30}, - [565] = {.lex_state = 30}, - [566] = {.lex_state = 30}, - [567] = {.lex_state = 30}, - [568] = {.lex_state = 30}, - [569] = {.lex_state = 77}, - [570] = {.lex_state = 30}, - [571] = {.lex_state = 30}, - [572] = {.lex_state = 30}, - [573] = {.lex_state = 30}, - [574] = {.lex_state = 30}, - [575] = {.lex_state = 30}, - [576] = {.lex_state = 30}, - [577] = {.lex_state = 30}, - [578] = {.lex_state = 30}, - [579] = {.lex_state = 30}, - [580] = {.lex_state = 30}, - [581] = {.lex_state = 30}, - [582] = {.lex_state = 30}, - [583] = {.lex_state = 30}, - [584] = {.lex_state = 30}, - [585] = {.lex_state = 30}, - [586] = {.lex_state = 30}, - [587] = {.lex_state = 30}, - [588] = {.lex_state = 30}, - [589] = {.lex_state = 30}, - [590] = {.lex_state = 30}, - [591] = {.lex_state = 30}, - [592] = {.lex_state = 30}, - [593] = {.lex_state = 30}, - [594] = {.lex_state = 30}, - [595] = {.lex_state = 30}, - [596] = {.lex_state = 30}, - [597] = {.lex_state = 30}, - [598] = {.lex_state = 30}, - [599] = {.lex_state = 30}, - [600] = {.lex_state = 30}, - [601] = {.lex_state = 30}, - [602] = {.lex_state = 30}, - [603] = {.lex_state = 30}, - [604] = {.lex_state = 30}, - [605] = {.lex_state = 30}, - [606] = {.lex_state = 30}, - [607] = {.lex_state = 30}, - [608] = {.lex_state = 30}, - [609] = {.lex_state = 30}, - [610] = {.lex_state = 30}, - [611] = {.lex_state = 30}, - [612] = {.lex_state = 30}, - [613] = {.lex_state = 30}, - [614] = {.lex_state = 30}, - [615] = {.lex_state = 30}, - [616] = {.lex_state = 30}, - [617] = {.lex_state = 30}, - [618] = {.lex_state = 30}, - [619] = {.lex_state = 30}, - [620] = {.lex_state = 30}, - [621] = {.lex_state = 30}, - [622] = {.lex_state = 30}, - [623] = {.lex_state = 30}, - [624] = {.lex_state = 30}, - [625] = {.lex_state = 30}, - [626] = {.lex_state = 30}, - [627] = {.lex_state = 30}, - [628] = {.lex_state = 30}, - [629] = {.lex_state = 30}, - [630] = {.lex_state = 30}, - [631] = {.lex_state = 30}, - [632] = {.lex_state = 30}, - [633] = {.lex_state = 30}, - [634] = {.lex_state = 30}, - [635] = {.lex_state = 30}, - [636] = {.lex_state = 30}, - [637] = {.lex_state = 30}, - [638] = {.lex_state = 30}, - [639] = {.lex_state = 30}, - [640] = {.lex_state = 30}, - [641] = {.lex_state = 30}, - [642] = {.lex_state = 30}, - [643] = {.lex_state = 30}, - [644] = {.lex_state = 30}, - [645] = {.lex_state = 30}, - [646] = {.lex_state = 30}, - [647] = {.lex_state = 30}, - [648] = {.lex_state = 30}, - [649] = {.lex_state = 30}, - [650] = {.lex_state = 30}, - [651] = {.lex_state = 30}, - [652] = {.lex_state = 30}, - [653] = {.lex_state = 30}, - [654] = {.lex_state = 30}, - [655] = {.lex_state = 30}, - [656] = {.lex_state = 30}, - [657] = {.lex_state = 30}, - [658] = {.lex_state = 30}, - [659] = {.lex_state = 30}, - [660] = {.lex_state = 30}, - [661] = {.lex_state = 30}, - [662] = {.lex_state = 30}, - [663] = {.lex_state = 30}, - [664] = {.lex_state = 30}, - [665] = {.lex_state = 30}, - [666] = {.lex_state = 30}, - [667] = {.lex_state = 30}, - [668] = {.lex_state = 30}, - [669] = {.lex_state = 30}, - [670] = {.lex_state = 31}, - [671] = {.lex_state = 33}, - [672] = {.lex_state = 31}, - [673] = {.lex_state = 31}, - [674] = {.lex_state = 33}, - [675] = {.lex_state = 31}, - [676] = {.lex_state = 33}, - [677] = {.lex_state = 29}, - [678] = {.lex_state = 31}, - [679] = {.lex_state = 33}, - [680] = {.lex_state = 29}, - [681] = {.lex_state = 33}, - [682] = {.lex_state = 31}, + [1] = {.lex_state = 80}, + [2] = {.lex_state = 28}, + [3] = {.lex_state = 28}, + [4] = {.lex_state = 28}, + [5] = {.lex_state = 28}, + [6] = {.lex_state = 28}, + [7] = {.lex_state = 28}, + [8] = {.lex_state = 28}, + [9] = {.lex_state = 28}, + [10] = {.lex_state = 28}, + [11] = {.lex_state = 28}, + [12] = {.lex_state = 28}, + [13] = {.lex_state = 28}, + [14] = {.lex_state = 28}, + [15] = {.lex_state = 28}, + [16] = {.lex_state = 28}, + [17] = {.lex_state = 28}, + [18] = {.lex_state = 28}, + [19] = {.lex_state = 28}, + [20] = {.lex_state = 28}, + [21] = {.lex_state = 80}, + [22] = {.lex_state = 80}, + [23] = {.lex_state = 80}, + [24] = {.lex_state = 80}, + [25] = {.lex_state = 80}, + [26] = {.lex_state = 29}, + [27] = {.lex_state = 80}, + [28] = {.lex_state = 80}, + [29] = {.lex_state = 80}, + [30] = {.lex_state = 80}, + [31] = {.lex_state = 80}, + [32] = {.lex_state = 80}, + [33] = {.lex_state = 80}, + [34] = {.lex_state = 80}, + [35] = {.lex_state = 29}, + [36] = {.lex_state = 29}, + [37] = {.lex_state = 80}, + [38] = {.lex_state = 80}, + [39] = {.lex_state = 80}, + [40] = {.lex_state = 80}, + [41] = {.lex_state = 80}, + [42] = {.lex_state = 80}, + [43] = {.lex_state = 28}, + [44] = {.lex_state = 28}, + [45] = {.lex_state = 28}, + [46] = {.lex_state = 28}, + [47] = {.lex_state = 28}, + [48] = {.lex_state = 80}, + [49] = {.lex_state = 29}, + [50] = {.lex_state = 29}, + [51] = {.lex_state = 80}, + [52] = {.lex_state = 80}, + [53] = {.lex_state = 29}, + [54] = {.lex_state = 80}, + [55] = {.lex_state = 29}, + [56] = {.lex_state = 29}, + [57] = {.lex_state = 80}, + [58] = {.lex_state = 80}, + [59] = {.lex_state = 80}, + [60] = {.lex_state = 80}, + [61] = {.lex_state = 80}, + [62] = {.lex_state = 80}, + [63] = {.lex_state = 27}, + [64] = {.lex_state = 80}, + [65] = {.lex_state = 80}, + [66] = {.lex_state = 80}, + [67] = {.lex_state = 80}, + [68] = {.lex_state = 80}, + [69] = {.lex_state = 80}, + [70] = {.lex_state = 80}, + [71] = {.lex_state = 80}, + [72] = {.lex_state = 80}, + [73] = {.lex_state = 80}, + [74] = {.lex_state = 80}, + [75] = {.lex_state = 80}, + [76] = {.lex_state = 80}, + [77] = {.lex_state = 80}, + [78] = {.lex_state = 80}, + [79] = {.lex_state = 80}, + [80] = {.lex_state = 80}, + [81] = {.lex_state = 80}, + [82] = {.lex_state = 80}, + [83] = {.lex_state = 80}, + [84] = {.lex_state = 80}, + [85] = {.lex_state = 80}, + [86] = {.lex_state = 80}, + [87] = {.lex_state = 80}, + [88] = {.lex_state = 80}, + [89] = {.lex_state = 80}, + [90] = {.lex_state = 80}, + [91] = {.lex_state = 80}, + [92] = {.lex_state = 80}, + [93] = {.lex_state = 80}, + [94] = {.lex_state = 80}, + [95] = {.lex_state = 80}, + [96] = {.lex_state = 80}, + [97] = {.lex_state = 80}, + [98] = {.lex_state = 80}, + [99] = {.lex_state = 80}, + [100] = {.lex_state = 80}, + [101] = {.lex_state = 80}, + [102] = {.lex_state = 80}, + [103] = {.lex_state = 80}, + [104] = {.lex_state = 80}, + [105] = {.lex_state = 80}, + [106] = {.lex_state = 80}, + [107] = {.lex_state = 80}, + [108] = {.lex_state = 80}, + [109] = {.lex_state = 80}, + [110] = {.lex_state = 80}, + [111] = {.lex_state = 80}, + [112] = {.lex_state = 80}, + [113] = {.lex_state = 80}, + [114] = {.lex_state = 80}, + [115] = {.lex_state = 80}, + [116] = {.lex_state = 80}, + [117] = {.lex_state = 80}, + [118] = {.lex_state = 80}, + [119] = {.lex_state = 80}, + [120] = {.lex_state = 80}, + [121] = {.lex_state = 80}, + [122] = {.lex_state = 80}, + [123] = {.lex_state = 80}, + [124] = {.lex_state = 80}, + [125] = {.lex_state = 80}, + [126] = {.lex_state = 80}, + [127] = {.lex_state = 80}, + [128] = {.lex_state = 80}, + [129] = {.lex_state = 80}, + [130] = {.lex_state = 80}, + [131] = {.lex_state = 80}, + [132] = {.lex_state = 80}, + [133] = {.lex_state = 80}, + [134] = {.lex_state = 80}, + [135] = {.lex_state = 80}, + [136] = {.lex_state = 27}, + [137] = {.lex_state = 28}, + [138] = {.lex_state = 28}, + [139] = {.lex_state = 28}, + [140] = {.lex_state = 28}, + [141] = {.lex_state = 28}, + [142] = {.lex_state = 28}, + [143] = {.lex_state = 28}, + [144] = {.lex_state = 28}, + [145] = {.lex_state = 28}, + [146] = {.lex_state = 28}, + [147] = {.lex_state = 28}, + [148] = {.lex_state = 28}, + [149] = {.lex_state = 28}, + [150] = {.lex_state = 28}, + [151] = {.lex_state = 28}, + [152] = {.lex_state = 28}, + [153] = {.lex_state = 28}, + [154] = {.lex_state = 28}, + [155] = {.lex_state = 28}, + [156] = {.lex_state = 28}, + [157] = {.lex_state = 28}, + [158] = {.lex_state = 28}, + [159] = {.lex_state = 28}, + [160] = {.lex_state = 28}, + [161] = {.lex_state = 28}, + [162] = {.lex_state = 28}, + [163] = {.lex_state = 28}, + [164] = {.lex_state = 28}, + [165] = {.lex_state = 28}, + [166] = {.lex_state = 28}, + [167] = {.lex_state = 28}, + [168] = {.lex_state = 28}, + [169] = {.lex_state = 28}, + [170] = {.lex_state = 28}, + [171] = {.lex_state = 28}, + [172] = {.lex_state = 28}, + [173] = {.lex_state = 28}, + [174] = {.lex_state = 28}, + [175] = {.lex_state = 28}, + [176] = {.lex_state = 28}, + [177] = {.lex_state = 28}, + [178] = {.lex_state = 28}, + [179] = {.lex_state = 28}, + [180] = {.lex_state = 28}, + [181] = {.lex_state = 28}, + [182] = {.lex_state = 28}, + [183] = {.lex_state = 28}, + [184] = {.lex_state = 28}, + [185] = {.lex_state = 28}, + [186] = {.lex_state = 28}, + [187] = {.lex_state = 28}, + [188] = {.lex_state = 28}, + [189] = {.lex_state = 28}, + [190] = {.lex_state = 29}, + [191] = {.lex_state = 80}, + [192] = {.lex_state = 29}, + [193] = {.lex_state = 80}, + [194] = {.lex_state = 80}, + [195] = {.lex_state = 29}, + [196] = {.lex_state = 80}, + [197] = {.lex_state = 29}, + [198] = {.lex_state = 80}, + [199] = {.lex_state = 29}, + [200] = {.lex_state = 80}, + [201] = {.lex_state = 80}, + [202] = {.lex_state = 29}, + [203] = {.lex_state = 80}, + [204] = {.lex_state = 29}, + [205] = {.lex_state = 80}, + [206] = {.lex_state = 80}, + [207] = {.lex_state = 80}, + [208] = {.lex_state = 80}, + [209] = {.lex_state = 80}, + [210] = {.lex_state = 80}, + [211] = {.lex_state = 80}, + [212] = {.lex_state = 80}, + [213] = {.lex_state = 29}, + [214] = {.lex_state = 80}, + [215] = {.lex_state = 80}, + [216] = {.lex_state = 80}, + [217] = {.lex_state = 80}, + [218] = {.lex_state = 29}, + [219] = {.lex_state = 29}, + [220] = {.lex_state = 29}, + [221] = {.lex_state = 29}, + [222] = {.lex_state = 80}, + [223] = {.lex_state = 29}, + [224] = {.lex_state = 29}, + [225] = {.lex_state = 80}, + [226] = {.lex_state = 29}, + [227] = {.lex_state = 80}, + [228] = {.lex_state = 80}, + [229] = {.lex_state = 29}, + [230] = {.lex_state = 29}, + [231] = {.lex_state = 29}, + [232] = {.lex_state = 80}, + [233] = {.lex_state = 29}, + [234] = {.lex_state = 80}, + [235] = {.lex_state = 80}, + [236] = {.lex_state = 29}, + [237] = {.lex_state = 80}, + [238] = {.lex_state = 80}, + [239] = {.lex_state = 80}, + [240] = {.lex_state = 80}, + [241] = {.lex_state = 80}, + [242] = {.lex_state = 80}, + [243] = {.lex_state = 80}, + [244] = {.lex_state = 80}, + [245] = {.lex_state = 80}, + [246] = {.lex_state = 29}, + [247] = {.lex_state = 80}, + [248] = {.lex_state = 29}, + [249] = {.lex_state = 80}, + [250] = {.lex_state = 80}, + [251] = {.lex_state = 80}, + [252] = {.lex_state = 29}, + [253] = {.lex_state = 29}, + [254] = {.lex_state = 80}, + [255] = {.lex_state = 80}, + [256] = {.lex_state = 29}, + [257] = {.lex_state = 80}, + [258] = {.lex_state = 80}, + [259] = {.lex_state = 29}, + [260] = {.lex_state = 29}, + [261] = {.lex_state = 80}, + [262] = {.lex_state = 80}, + [263] = {.lex_state = 80}, + [264] = {.lex_state = 80}, + [265] = {.lex_state = 29}, + [266] = {.lex_state = 80}, + [267] = {.lex_state = 80}, + [268] = {.lex_state = 29}, + [269] = {.lex_state = 29}, + [270] = {.lex_state = 29}, + [271] = {.lex_state = 80}, + [272] = {.lex_state = 80}, + [273] = {.lex_state = 80}, + [274] = {.lex_state = 80}, + [275] = {.lex_state = 80}, + [276] = {.lex_state = 29}, + [277] = {.lex_state = 80}, + [278] = {.lex_state = 80}, + [279] = {.lex_state = 80}, + [280] = {.lex_state = 80}, + [281] = {.lex_state = 80}, + [282] = {.lex_state = 80}, + [283] = {.lex_state = 80}, + [284] = {.lex_state = 80}, + [285] = {.lex_state = 80}, + [286] = {.lex_state = 80}, + [287] = {.lex_state = 80}, + [288] = {.lex_state = 80}, + [289] = {.lex_state = 80}, + [290] = {.lex_state = 80}, + [291] = {.lex_state = 29}, + [292] = {.lex_state = 80}, + [293] = {.lex_state = 80}, + [294] = {.lex_state = 80}, + [295] = {.lex_state = 29}, + [296] = {.lex_state = 80}, + [297] = {.lex_state = 80}, + [298] = {.lex_state = 80}, + [299] = {.lex_state = 80}, + [300] = {.lex_state = 80}, + [301] = {.lex_state = 80}, + [302] = {.lex_state = 80}, + [303] = {.lex_state = 29}, + [304] = {.lex_state = 80}, + [305] = {.lex_state = 80}, + [306] = {.lex_state = 80}, + [307] = {.lex_state = 80}, + [308] = {.lex_state = 29}, + [309] = {.lex_state = 80}, + [310] = {.lex_state = 29}, + [311] = {.lex_state = 29}, + [312] = {.lex_state = 80}, + [313] = {.lex_state = 80}, + [314] = {.lex_state = 29}, + [315] = {.lex_state = 80}, + [316] = {.lex_state = 29}, + [317] = {.lex_state = 29}, + [318] = {.lex_state = 80}, + [319] = {.lex_state = 29}, + [320] = {.lex_state = 80}, + [321] = {.lex_state = 29}, + [322] = {.lex_state = 29}, + [323] = {.lex_state = 80}, + [324] = {.lex_state = 80}, + [325] = {.lex_state = 29}, + [326] = {.lex_state = 29}, + [327] = {.lex_state = 80}, + [328] = {.lex_state = 29}, + [329] = {.lex_state = 29}, + [330] = {.lex_state = 80}, + [331] = {.lex_state = 80}, + [332] = {.lex_state = 80}, + [333] = {.lex_state = 29}, + [334] = {.lex_state = 29}, + [335] = {.lex_state = 80}, + [336] = {.lex_state = 80}, + [337] = {.lex_state = 80}, + [338] = {.lex_state = 80}, + [339] = {.lex_state = 80}, + [340] = {.lex_state = 80}, + [341] = {.lex_state = 80}, + [342] = {.lex_state = 80}, + [343] = {.lex_state = 80}, + [344] = {.lex_state = 80}, + [345] = {.lex_state = 29}, + [346] = {.lex_state = 80}, + [347] = {.lex_state = 80}, + [348] = {.lex_state = 80}, + [349] = {.lex_state = 29}, + [350] = {.lex_state = 29}, + [351] = {.lex_state = 80}, + [352] = {.lex_state = 80}, + [353] = {.lex_state = 80}, + [354] = {.lex_state = 80}, + [355] = {.lex_state = 80}, + [356] = {.lex_state = 33}, + [357] = {.lex_state = 80}, + [358] = {.lex_state = 33}, + [359] = {.lex_state = 33}, + [360] = {.lex_state = 33}, + [361] = {.lex_state = 33}, + [362] = {.lex_state = 33}, + [363] = {.lex_state = 33}, + [364] = {.lex_state = 33}, + [365] = {.lex_state = 33}, + [366] = {.lex_state = 33}, + [367] = {.lex_state = 33}, + [368] = {.lex_state = 33}, + [369] = {.lex_state = 80}, + [370] = {.lex_state = 80}, + [371] = {.lex_state = 31}, + [372] = {.lex_state = 31}, + [373] = {.lex_state = 33}, + [374] = {.lex_state = 33}, + [375] = {.lex_state = 80}, + [376] = {.lex_state = 33}, + [377] = {.lex_state = 80}, + [378] = {.lex_state = 33}, + [379] = {.lex_state = 31}, + [380] = {.lex_state = 33}, + [381] = {.lex_state = 33}, + [382] = {.lex_state = 33}, + [383] = {.lex_state = 80}, + [384] = {.lex_state = 33}, + [385] = {.lex_state = 33}, + [386] = {.lex_state = 80}, + [387] = {.lex_state = 33}, + [388] = {.lex_state = 80}, + [389] = {.lex_state = 33}, + [390] = {.lex_state = 80}, + [391] = {.lex_state = 80}, + [392] = {.lex_state = 80}, + [393] = {.lex_state = 32}, + [394] = {.lex_state = 31}, + [395] = {.lex_state = 33}, + [396] = {.lex_state = 31}, + [397] = {.lex_state = 32}, + [398] = {.lex_state = 36}, + [399] = {.lex_state = 32}, + [400] = {.lex_state = 32}, + [401] = {.lex_state = 36}, + [402] = {.lex_state = 36}, + [403] = {.lex_state = 80}, + [404] = {.lex_state = 80}, + [405] = {.lex_state = 80}, + [406] = {.lex_state = 80}, + [407] = {.lex_state = 80}, + [408] = {.lex_state = 80}, + [409] = {.lex_state = 80}, + [410] = {.lex_state = 80}, + [411] = {.lex_state = 80}, + [412] = {.lex_state = 80}, + [413] = {.lex_state = 80}, + [414] = {.lex_state = 80}, + [415] = {.lex_state = 80}, + [416] = {.lex_state = 80}, + [417] = {.lex_state = 80}, + [418] = {.lex_state = 80}, + [419] = {.lex_state = 80}, + [420] = {.lex_state = 80}, + [421] = {.lex_state = 80}, + [422] = {.lex_state = 80}, + [423] = {.lex_state = 80}, + [424] = {.lex_state = 80}, + [425] = {.lex_state = 80}, + [426] = {.lex_state = 80}, + [427] = {.lex_state = 80}, + [428] = {.lex_state = 80}, + [429] = {.lex_state = 80}, + [430] = {.lex_state = 80}, + [431] = {.lex_state = 80}, + [432] = {.lex_state = 80}, + [433] = {.lex_state = 80}, + [434] = {.lex_state = 80}, + [435] = {.lex_state = 80}, + [436] = {.lex_state = 33}, + [437] = {.lex_state = 33}, + [438] = {.lex_state = 33}, + [439] = {.lex_state = 33}, + [440] = {.lex_state = 33}, + [441] = {.lex_state = 33}, + [442] = {.lex_state = 33}, + [443] = {.lex_state = 33}, + [444] = {.lex_state = 33}, + [445] = {.lex_state = 80}, + [446] = {.lex_state = 80}, + [447] = {.lex_state = 80}, + [448] = {.lex_state = 33}, + [449] = {.lex_state = 33}, + [450] = {.lex_state = 80}, + [451] = {.lex_state = 33}, + [452] = {.lex_state = 80}, + [453] = {.lex_state = 80}, + [454] = {.lex_state = 80}, + [455] = {.lex_state = 33}, + [456] = {.lex_state = 80}, + [457] = {.lex_state = 80}, + [458] = {.lex_state = 33}, + [459] = {.lex_state = 80}, + [460] = {.lex_state = 33}, + [461] = {.lex_state = 80}, + [462] = {.lex_state = 33}, + [463] = {.lex_state = 33}, + [464] = {.lex_state = 80}, + [465] = {.lex_state = 80}, + [466] = {.lex_state = 80}, + [467] = {.lex_state = 80}, + [468] = {.lex_state = 80}, + [469] = {.lex_state = 33}, + [470] = {.lex_state = 80}, + [471] = {.lex_state = 80}, + [472] = {.lex_state = 80}, + [473] = {.lex_state = 80}, + [474] = {.lex_state = 80}, + [475] = {.lex_state = 80}, + [476] = {.lex_state = 32}, + [477] = {.lex_state = 80}, + [478] = {.lex_state = 80}, + [479] = {.lex_state = 80}, + [480] = {.lex_state = 80}, + [481] = {.lex_state = 80}, + [482] = {.lex_state = 33}, + [483] = {.lex_state = 80}, + [484] = {.lex_state = 33}, + [485] = {.lex_state = 80}, + [486] = {.lex_state = 33}, + [487] = {.lex_state = 80}, + [488] = {.lex_state = 33}, + [489] = {.lex_state = 80}, + [490] = {.lex_state = 80}, + [491] = {.lex_state = 33}, + [492] = {.lex_state = 80}, + [493] = {.lex_state = 80}, + [494] = {.lex_state = 80}, + [495] = {.lex_state = 80}, + [496] = {.lex_state = 80}, + [497] = {.lex_state = 80}, + [498] = {.lex_state = 80}, + [499] = {.lex_state = 80}, + [500] = {.lex_state = 80}, + [501] = {.lex_state = 80}, + [502] = {.lex_state = 80}, + [503] = {.lex_state = 80}, + [504] = {.lex_state = 33}, + [505] = {.lex_state = 33}, + [506] = {.lex_state = 80}, + [507] = {.lex_state = 80}, + [508] = {.lex_state = 80}, + [509] = {.lex_state = 80}, + [510] = {.lex_state = 33}, + [511] = {.lex_state = 80}, + [512] = {.lex_state = 80}, + [513] = {.lex_state = 33}, + [514] = {.lex_state = 33}, + [515] = {.lex_state = 80}, + [516] = {.lex_state = 80}, + [517] = {.lex_state = 80}, + [518] = {.lex_state = 33}, + [519] = {.lex_state = 80}, + [520] = {.lex_state = 80}, + [521] = {.lex_state = 80}, + [522] = {.lex_state = 80}, + [523] = {.lex_state = 80}, + [524] = {.lex_state = 80}, + [525] = {.lex_state = 80}, + [526] = {.lex_state = 80}, + [527] = {.lex_state = 33}, + [528] = {.lex_state = 33}, + [529] = {.lex_state = 80}, + [530] = {.lex_state = 80}, + [531] = {.lex_state = 80}, + [532] = {.lex_state = 33}, + [533] = {.lex_state = 33}, + [534] = {.lex_state = 80}, + [535] = {.lex_state = 80}, + [536] = {.lex_state = 33}, + [537] = {.lex_state = 33}, + [538] = {.lex_state = 33}, + [539] = {.lex_state = 33}, + [540] = {.lex_state = 80}, + [541] = {.lex_state = 33}, + [542] = {.lex_state = 33}, + [543] = {.lex_state = 33}, + [544] = {.lex_state = 33}, + [545] = {.lex_state = 32}, + [546] = {.lex_state = 32}, + [547] = {.lex_state = 33}, + [548] = {.lex_state = 33}, + [549] = {.lex_state = 33}, + [550] = {.lex_state = 33}, + [551] = {.lex_state = 33}, + [552] = {.lex_state = 33}, + [553] = {.lex_state = 33}, + [554] = {.lex_state = 80}, + [555] = {.lex_state = 33}, + [556] = {.lex_state = 33}, + [557] = {.lex_state = 33}, + [558] = {.lex_state = 33}, + [559] = {.lex_state = 33}, + [560] = {.lex_state = 80}, + [561] = {.lex_state = 33}, + [562] = {.lex_state = 33}, + [563] = {.lex_state = 33}, + [564] = {.lex_state = 33}, + [565] = {.lex_state = 33}, + [566] = {.lex_state = 33}, + [567] = {.lex_state = 33}, + [568] = {.lex_state = 33}, + [569] = {.lex_state = 33}, + [570] = {.lex_state = 33}, + [571] = {.lex_state = 33}, + [572] = {.lex_state = 33}, + [573] = {.lex_state = 33}, + [574] = {.lex_state = 33}, + [575] = {.lex_state = 33}, + [576] = {.lex_state = 33}, + [577] = {.lex_state = 33}, + [578] = {.lex_state = 33}, + [579] = {.lex_state = 33}, + [580] = {.lex_state = 33}, + [581] = {.lex_state = 33}, + [582] = {.lex_state = 33}, + [583] = {.lex_state = 33}, + [584] = {.lex_state = 33}, + [585] = {.lex_state = 33}, + [586] = {.lex_state = 33}, + [587] = {.lex_state = 33}, + [588] = {.lex_state = 33}, + [589] = {.lex_state = 33}, + [590] = {.lex_state = 33}, + [591] = {.lex_state = 33}, + [592] = {.lex_state = 33}, + [593] = {.lex_state = 33}, + [594] = {.lex_state = 33}, + [595] = {.lex_state = 33}, + [596] = {.lex_state = 33}, + [597] = {.lex_state = 33}, + [598] = {.lex_state = 33}, + [599] = {.lex_state = 33}, + [600] = {.lex_state = 33}, + [601] = {.lex_state = 33}, + [602] = {.lex_state = 33}, + [603] = {.lex_state = 33}, + [604] = {.lex_state = 33}, + [605] = {.lex_state = 33}, + [606] = {.lex_state = 33}, + [607] = {.lex_state = 33}, + [608] = {.lex_state = 33}, + [609] = {.lex_state = 33}, + [610] = {.lex_state = 33}, + [611] = {.lex_state = 33}, + [612] = {.lex_state = 33}, + [613] = {.lex_state = 33}, + [614] = {.lex_state = 33}, + [615] = {.lex_state = 33}, + [616] = {.lex_state = 33}, + [617] = {.lex_state = 33}, + [618] = {.lex_state = 33}, + [619] = {.lex_state = 33}, + [620] = {.lex_state = 33}, + [621] = {.lex_state = 33}, + [622] = {.lex_state = 33}, + [623] = {.lex_state = 33}, + [624] = {.lex_state = 33}, + [625] = {.lex_state = 33}, + [626] = {.lex_state = 33}, + [627] = {.lex_state = 33}, + [628] = {.lex_state = 33}, + [629] = {.lex_state = 33}, + [630] = {.lex_state = 33}, + [631] = {.lex_state = 33}, + [632] = {.lex_state = 33}, + [633] = {.lex_state = 33}, + [634] = {.lex_state = 33}, + [635] = {.lex_state = 33}, + [636] = {.lex_state = 33}, + [637] = {.lex_state = 33}, + [638] = {.lex_state = 33}, + [639] = {.lex_state = 33}, + [640] = {.lex_state = 33}, + [641] = {.lex_state = 33}, + [642] = {.lex_state = 33}, + [643] = {.lex_state = 33}, + [644] = {.lex_state = 33}, + [645] = {.lex_state = 33}, + [646] = {.lex_state = 33}, + [647] = {.lex_state = 33}, + [648] = {.lex_state = 33}, + [649] = {.lex_state = 33}, + [650] = {.lex_state = 33}, + [651] = {.lex_state = 33}, + [652] = {.lex_state = 33}, + [653] = {.lex_state = 33}, + [654] = {.lex_state = 33}, + [655] = {.lex_state = 33}, + [656] = {.lex_state = 33}, + [657] = {.lex_state = 33}, + [658] = {.lex_state = 33}, + [659] = {.lex_state = 33}, + [660] = {.lex_state = 33}, + [661] = {.lex_state = 33}, + [662] = {.lex_state = 32}, + [663] = {.lex_state = 36}, + [664] = {.lex_state = 31}, + [665] = {.lex_state = 36}, + [666] = {.lex_state = 36}, + [667] = {.lex_state = 36}, + [668] = {.lex_state = 36}, + [669] = {.lex_state = 36}, + [670] = {.lex_state = 32}, + [671] = {.lex_state = 36}, + [672] = {.lex_state = 36}, + [673] = {.lex_state = 36}, + [674] = {.lex_state = 36}, + [675] = {.lex_state = 36}, + [676] = {.lex_state = 36}, + [677] = {.lex_state = 36}, + [678] = {.lex_state = 36}, + [679] = {.lex_state = 36}, + [680] = {.lex_state = 36}, + [681] = {.lex_state = 36}, + [682] = {.lex_state = 36}, [683] = {.lex_state = 31}, - [684] = {.lex_state = 31}, - [685] = {.lex_state = 33}, - [686] = {.lex_state = 33}, - [687] = {.lex_state = 31}, - [688] = {.lex_state = 29}, - [689] = {.lex_state = 33}, - [690] = {.lex_state = 33}, - [691] = {.lex_state = 33}, - [692] = {.lex_state = 31}, - [693] = {.lex_state = 31}, - [694] = {.lex_state = 33}, - [695] = {.lex_state = 33}, - [696] = {.lex_state = 31}, - [697] = {.lex_state = 31}, - [698] = {.lex_state = 31}, - [699] = {.lex_state = 31}, - [700] = {.lex_state = 33}, - [701] = {.lex_state = 31}, - [702] = {.lex_state = 33}, - [703] = {.lex_state = 31}, + [684] = {.lex_state = 36}, + [685] = {.lex_state = 31}, + [686] = {.lex_state = 32}, + [687] = {.lex_state = 32}, + [688] = {.lex_state = 32}, + [689] = {.lex_state = 32}, + [690] = {.lex_state = 32}, + [691] = {.lex_state = 32}, + [692] = {.lex_state = 32}, + [693] = {.lex_state = 32}, + [694] = {.lex_state = 31}, + [695] = {.lex_state = 32}, + [696] = {.lex_state = 32}, + [697] = {.lex_state = 32}, + [698] = {.lex_state = 32}, + [699] = {.lex_state = 32}, + [700] = {.lex_state = 32}, + [701] = {.lex_state = 32}, + [702] = {.lex_state = 32}, + [703] = {.lex_state = 32}, [704] = {.lex_state = 33}, [705] = {.lex_state = 33}, [706] = {.lex_state = 33}, - [707] = {.lex_state = 29}, - [708] = {.lex_state = 31}, + [707] = {.lex_state = 33}, + [708] = {.lex_state = 33}, [709] = {.lex_state = 33}, [710] = {.lex_state = 33}, - [711] = {.lex_state = 31}, - [712] = {.lex_state = 30}, - [713] = {.lex_state = 30}, - [714] = {.lex_state = 30}, - [715] = {.lex_state = 30}, - [716] = {.lex_state = 30}, - [717] = {.lex_state = 30}, - [718] = {.lex_state = 30}, - [719] = {.lex_state = 30}, - [720] = {.lex_state = 30}, - [721] = {.lex_state = 30}, - [722] = {.lex_state = 30}, + [711] = {.lex_state = 33}, + [712] = {.lex_state = 33}, + [713] = {.lex_state = 32}, + [714] = {.lex_state = 33}, + [715] = {.lex_state = 33}, + [716] = {.lex_state = 33}, + [717] = {.lex_state = 33}, + [718] = {.lex_state = 33}, + [719] = {.lex_state = 33}, + [720] = {.lex_state = 33}, + [721] = {.lex_state = 33}, + [722] = {.lex_state = 33}, [723] = {.lex_state = 30}, - [724] = {.lex_state = 30}, - [725] = {.lex_state = 31}, + [724] = {.lex_state = 32}, + [725] = {.lex_state = 32}, [726] = {.lex_state = 30}, - [727] = {.lex_state = 30}, + [727] = {.lex_state = 17}, [728] = {.lex_state = 30}, - [729] = {.lex_state = 30}, + [729] = {.lex_state = 32}, [730] = {.lex_state = 30}, - [731] = {.lex_state = 28}, - [732] = {.lex_state = 28}, - [733] = {.lex_state = 31}, - [734] = {.lex_state = 17}, - [735] = {.lex_state = 31}, - [736] = {.lex_state = 31}, - [737] = {.lex_state = 28}, - [738] = {.lex_state = 31}, + [731] = {.lex_state = 30}, + [732] = {.lex_state = 30}, + [733] = {.lex_state = 30}, + [734] = {.lex_state = 30}, + [735] = {.lex_state = 32}, + [736] = {.lex_state = 33}, + [737] = {.lex_state = 30}, + [738] = {.lex_state = 30}, [739] = {.lex_state = 30}, - [740] = {.lex_state = 31}, + [740] = {.lex_state = 30}, [741] = {.lex_state = 30}, - [742] = {.lex_state = 28}, - [743] = {.lex_state = 31}, - [744] = {.lex_state = 28}, - [745] = {.lex_state = 28}, - [746] = {.lex_state = 31}, - [747] = {.lex_state = 31}, - [748] = {.lex_state = 31}, - [749] = {.lex_state = 31}, - [750] = {.lex_state = 31}, - [751] = {.lex_state = 31}, - [752] = {.lex_state = 31}, - [753] = {.lex_state = 31}, - [754] = {.lex_state = 31}, - [755] = {.lex_state = 31}, - [756] = {.lex_state = 31}, - [757] = {.lex_state = 28}, - [758] = {.lex_state = 28}, - [759] = {.lex_state = 28}, - [760] = {.lex_state = 28}, - [761] = {.lex_state = 28}, - [762] = {.lex_state = 28}, - [763] = {.lex_state = 28}, - [764] = {.lex_state = 28}, - [765] = {.lex_state = 28}, - [766] = {.lex_state = 28}, - [767] = {.lex_state = 28}, - [768] = {.lex_state = 31}, - [769] = {.lex_state = 31}, - [770] = {.lex_state = 31}, - [771] = {.lex_state = 28}, - [772] = {.lex_state = 28}, + [742] = {.lex_state = 30}, + [743] = {.lex_state = 30}, + [744] = {.lex_state = 30}, + [745] = {.lex_state = 30}, + [746] = {.lex_state = 30}, + [747] = {.lex_state = 30}, + [748] = {.lex_state = 32}, + [749] = {.lex_state = 32}, + [750] = {.lex_state = 30}, + [751] = {.lex_state = 33}, + [752] = {.lex_state = 32}, + [753] = {.lex_state = 32}, + [754] = {.lex_state = 32}, + [755] = {.lex_state = 32}, + [756] = {.lex_state = 32}, + [757] = {.lex_state = 30}, + [758] = {.lex_state = 32}, + [759] = {.lex_state = 30}, + [760] = {.lex_state = 30}, + [761] = {.lex_state = 30}, + [762] = {.lex_state = 30}, + [763] = {.lex_state = 30}, + [764] = {.lex_state = 30}, + [765] = {.lex_state = 32}, + [766] = {.lex_state = 32}, + [767] = {.lex_state = 32}, + [768] = {.lex_state = 32}, + [769] = {.lex_state = 30}, + [770] = {.lex_state = 30}, + [771] = {.lex_state = 30}, + [772] = {.lex_state = 30}, [773] = {.lex_state = 30}, - [774] = {.lex_state = 28}, - [775] = {.lex_state = 31}, - [776] = {.lex_state = 28}, - [777] = {.lex_state = 28}, - [778] = {.lex_state = 28}, - [779] = {.lex_state = 31}, - [780] = {.lex_state = 28}, - [781] = {.lex_state = 28}, - [782] = {.lex_state = 28}, - [783] = {.lex_state = 28}, - [784] = {.lex_state = 28}, - [785] = {.lex_state = 28}, - [786] = {.lex_state = 28}, + [774] = {.lex_state = 30}, + [775] = {.lex_state = 32}, + [776] = {.lex_state = 32}, + [777] = {.lex_state = 30}, + [778] = {.lex_state = 30}, + [779] = {.lex_state = 32}, + [780] = {.lex_state = 33}, + [781] = {.lex_state = 32}, + [782] = {.lex_state = 33}, + [783] = {.lex_state = 33}, + [784] = {.lex_state = 32}, + [785] = {.lex_state = 32}, + [786] = {.lex_state = 33}, [787] = {.lex_state = 30}, - [788] = {.lex_state = 28}, - [789] = {.lex_state = 28}, - [790] = {.lex_state = 30}, - [791] = {.lex_state = 30}, - [792] = {.lex_state = 28}, - [793] = {.lex_state = 28}, - [794] = {.lex_state = 28}, - [795] = {.lex_state = 28}, + [788] = {.lex_state = 32}, + [789] = {.lex_state = 17}, + [790] = {.lex_state = 17}, + [791] = {.lex_state = 17}, + [792] = {.lex_state = 17}, + [793] = {.lex_state = 17}, + [794] = {.lex_state = 17}, + [795] = {.lex_state = 17}, [796] = {.lex_state = 17}, [797] = {.lex_state = 17}, [798] = {.lex_state = 17}, @@ -5557,452 +5579,448 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [806] = {.lex_state = 17}, [807] = {.lex_state = 17}, [808] = {.lex_state = 17}, - [809] = {.lex_state = 31}, + [809] = {.lex_state = 17}, [810] = {.lex_state = 17}, [811] = {.lex_state = 17}, [812] = {.lex_state = 17}, - [813] = {.lex_state = 31}, - [814] = {.lex_state = 17}, + [813] = {.lex_state = 17}, + [814] = {.lex_state = 32}, [815] = {.lex_state = 17}, [816] = {.lex_state = 17}, [817] = {.lex_state = 17}, - [818] = {.lex_state = 17}, - [819] = {.lex_state = 17}, - [820] = {.lex_state = 17}, - [821] = {.lex_state = 17}, - [822] = {.lex_state = 17}, - [823] = {.lex_state = 17}, - [824] = {.lex_state = 17}, - [825] = {.lex_state = 17}, - [826] = {.lex_state = 30}, - [827] = {.lex_state = 30}, - [828] = {.lex_state = 30}, - [829] = {.lex_state = 30}, - [830] = {.lex_state = 30}, - [831] = {.lex_state = 30}, - [832] = {.lex_state = 30}, - [833] = {.lex_state = 30}, - [834] = {.lex_state = 30}, - [835] = {.lex_state = 30}, - [836] = {.lex_state = 30}, - [837] = {.lex_state = 30}, - [838] = {.lex_state = 30}, - [839] = {.lex_state = 30}, - [840] = {.lex_state = 30}, - [841] = {.lex_state = 30}, - [842] = {.lex_state = 30}, - [843] = {.lex_state = 30}, - [844] = {.lex_state = 30}, - [845] = {.lex_state = 30}, - [846] = {.lex_state = 30}, - [847] = {.lex_state = 30}, - [848] = {.lex_state = 30}, - [849] = {.lex_state = 30}, - [850] = {.lex_state = 30}, - [851] = {.lex_state = 30}, - [852] = {.lex_state = 30}, - [853] = {.lex_state = 30}, - [854] = {.lex_state = 30}, - [855] = {.lex_state = 30}, - [856] = {.lex_state = 30}, - [857] = {.lex_state = 30}, - [858] = {.lex_state = 30}, - [859] = {.lex_state = 30}, - [860] = {.lex_state = 30}, - [861] = {.lex_state = 30}, - [862] = {.lex_state = 30}, - [863] = {.lex_state = 30}, - [864] = {.lex_state = 30}, - [865] = {.lex_state = 30}, - [866] = {.lex_state = 30}, - [867] = {.lex_state = 30}, - [868] = {.lex_state = 30}, - [869] = {.lex_state = 30}, - [870] = {.lex_state = 30}, - [871] = {.lex_state = 77}, - [872] = {.lex_state = 30}, - [873] = {.lex_state = 30}, - [874] = {.lex_state = 30}, - [875] = {.lex_state = 30}, - [876] = {.lex_state = 77}, - [877] = {.lex_state = 30}, - [878] = {.lex_state = 30}, - [879] = {.lex_state = 30}, - [880] = {.lex_state = 77}, - [881] = {.lex_state = 77}, - [882] = {.lex_state = 30}, - [883] = {.lex_state = 77}, - [884] = {.lex_state = 30}, - [885] = {.lex_state = 30}, - [886] = {.lex_state = 30}, - [887] = {.lex_state = 30}, - [888] = {.lex_state = 30}, - [889] = {.lex_state = 30}, - [890] = {.lex_state = 77}, - [891] = {.lex_state = 77}, - [892] = {.lex_state = 30}, - [893] = {.lex_state = 30}, - [894] = {.lex_state = 30}, - [895] = {.lex_state = 30}, - [896] = {.lex_state = 30}, - [897] = {.lex_state = 30}, - [898] = {.lex_state = 77}, - [899] = {.lex_state = 77}, - [900] = {.lex_state = 30}, - [901] = {.lex_state = 77}, - [902] = {.lex_state = 77}, - [903] = {.lex_state = 77}, - [904] = {.lex_state = 77}, - [905] = {.lex_state = 77}, - [906] = {.lex_state = 77}, - [907] = {.lex_state = 77}, - [908] = {.lex_state = 77}, - [909] = {.lex_state = 77}, - [910] = {.lex_state = 77}, - [911] = {.lex_state = 77}, - [912] = {.lex_state = 77}, - [913] = {.lex_state = 77}, - [914] = {.lex_state = 77}, - [915] = {.lex_state = 77}, - [916] = {.lex_state = 77}, - [917] = {.lex_state = 77}, - [918] = {.lex_state = 77}, - [919] = {.lex_state = 77}, - [920] = {.lex_state = 77}, - [921] = {.lex_state = 77}, - [922] = {.lex_state = 77}, - [923] = {.lex_state = 77}, - [924] = {.lex_state = 77}, - [925] = {.lex_state = 77}, - [926] = {.lex_state = 77}, - [927] = {.lex_state = 77}, - [928] = {.lex_state = 77}, - [929] = {.lex_state = 77}, - [930] = {.lex_state = 77}, - [931] = {.lex_state = 77}, - [932] = {.lex_state = 77}, - [933] = {.lex_state = 77}, - [934] = {.lex_state = 77}, - [935] = {.lex_state = 77}, - [936] = {.lex_state = 77}, - [937] = {.lex_state = 77}, - [938] = {.lex_state = 77}, - [939] = {.lex_state = 77}, - [940] = {.lex_state = 77}, - [941] = {.lex_state = 77}, - [942] = {.lex_state = 0}, - [943] = {.lex_state = 0}, - [944] = {.lex_state = 77}, - [945] = {.lex_state = 77}, - [946] = {.lex_state = 77}, - [947] = {.lex_state = 77}, - [948] = {.lex_state = 0}, - [949] = {.lex_state = 77}, - [950] = {.lex_state = 77}, - [951] = {.lex_state = 77}, - [952] = {.lex_state = 18}, + [818] = {.lex_state = 33}, + [819] = {.lex_state = 33}, + [820] = {.lex_state = 33}, + [821] = {.lex_state = 33}, + [822] = {.lex_state = 33}, + [823] = {.lex_state = 33}, + [824] = {.lex_state = 33}, + [825] = {.lex_state = 33}, + [826] = {.lex_state = 33}, + [827] = {.lex_state = 33}, + [828] = {.lex_state = 33}, + [829] = {.lex_state = 33}, + [830] = {.lex_state = 33}, + [831] = {.lex_state = 33}, + [832] = {.lex_state = 33}, + [833] = {.lex_state = 33}, + [834] = {.lex_state = 33}, + [835] = {.lex_state = 33}, + [836] = {.lex_state = 33}, + [837] = {.lex_state = 33}, + [838] = {.lex_state = 33}, + [839] = {.lex_state = 33}, + [840] = {.lex_state = 33}, + [841] = {.lex_state = 33}, + [842] = {.lex_state = 33}, + [843] = {.lex_state = 33}, + [844] = {.lex_state = 33}, + [845] = {.lex_state = 33}, + [846] = {.lex_state = 33}, + [847] = {.lex_state = 33}, + [848] = {.lex_state = 33}, + [849] = {.lex_state = 33}, + [850] = {.lex_state = 33}, + [851] = {.lex_state = 33}, + [852] = {.lex_state = 33}, + [853] = {.lex_state = 33}, + [854] = {.lex_state = 33}, + [855] = {.lex_state = 33}, + [856] = {.lex_state = 33}, + [857] = {.lex_state = 33}, + [858] = {.lex_state = 33}, + [859] = {.lex_state = 80}, + [860] = {.lex_state = 33}, + [861] = {.lex_state = 80}, + [862] = {.lex_state = 33}, + [863] = {.lex_state = 34}, + [864] = {.lex_state = 33}, + [865] = {.lex_state = 33}, + [866] = {.lex_state = 33}, + [867] = {.lex_state = 80}, + [868] = {.lex_state = 80}, + [869] = {.lex_state = 34}, + [870] = {.lex_state = 33}, + [871] = {.lex_state = 34}, + [872] = {.lex_state = 33}, + [873] = {.lex_state = 33}, + [874] = {.lex_state = 34}, + [875] = {.lex_state = 33}, + [876] = {.lex_state = 33}, + [877] = {.lex_state = 33}, + [878] = {.lex_state = 33}, + [879] = {.lex_state = 33}, + [880] = {.lex_state = 80}, + [881] = {.lex_state = 33}, + [882] = {.lex_state = 80}, + [883] = {.lex_state = 33}, + [884] = {.lex_state = 33}, + [885] = {.lex_state = 33}, + [886] = {.lex_state = 33}, + [887] = {.lex_state = 33}, + [888] = {.lex_state = 33}, + [889] = {.lex_state = 33}, + [890] = {.lex_state = 33}, + [891] = {.lex_state = 33}, + [892] = {.lex_state = 80}, + [893] = {.lex_state = 80}, + [894] = {.lex_state = 80}, + [895] = {.lex_state = 33}, + [896] = {.lex_state = 33}, + [897] = {.lex_state = 80}, + [898] = {.lex_state = 80}, + [899] = {.lex_state = 80}, + [900] = {.lex_state = 80}, + [901] = {.lex_state = 80}, + [902] = {.lex_state = 80}, + [903] = {.lex_state = 80}, + [904] = {.lex_state = 80}, + [905] = {.lex_state = 80}, + [906] = {.lex_state = 80}, + [907] = {.lex_state = 80}, + [908] = {.lex_state = 80}, + [909] = {.lex_state = 80}, + [910] = {.lex_state = 80}, + [911] = {.lex_state = 80}, + [912] = {.lex_state = 80}, + [913] = {.lex_state = 80}, + [914] = {.lex_state = 80}, + [915] = {.lex_state = 80}, + [916] = {.lex_state = 80}, + [917] = {.lex_state = 80}, + [918] = {.lex_state = 80}, + [919] = {.lex_state = 80}, + [920] = {.lex_state = 80}, + [921] = {.lex_state = 80}, + [922] = {.lex_state = 80}, + [923] = {.lex_state = 80}, + [924] = {.lex_state = 80}, + [925] = {.lex_state = 80}, + [926] = {.lex_state = 80}, + [927] = {.lex_state = 80}, + [928] = {.lex_state = 80}, + [929] = {.lex_state = 80}, + [930] = {.lex_state = 0}, + [931] = {.lex_state = 80}, + [932] = {.lex_state = 0}, + [933] = {.lex_state = 80}, + [934] = {.lex_state = 0}, + [935] = {.lex_state = 80}, + [936] = {.lex_state = 80}, + [937] = {.lex_state = 80}, + [938] = {.lex_state = 80}, + [939] = {.lex_state = 80}, + [940] = {.lex_state = 80}, + [941] = {.lex_state = 80}, + [942] = {.lex_state = 80}, + [943] = {.lex_state = 80}, + [944] = {.lex_state = 33}, + [945] = {.lex_state = 80}, + [946] = {.lex_state = 80}, + [947] = {.lex_state = 20}, + [948] = {.lex_state = 22}, + [949] = {.lex_state = 20}, + [950] = {.lex_state = 80}, + [951] = {.lex_state = 80}, + [952] = {.lex_state = 80}, [953] = {.lex_state = 20}, - [954] = {.lex_state = 20}, - [955] = {.lex_state = 77}, - [956] = {.lex_state = 20}, - [957] = {.lex_state = 77}, - [958] = {.lex_state = 18}, + [954] = {.lex_state = 80}, + [955] = {.lex_state = 0}, + [956] = {.lex_state = 80}, + [957] = {.lex_state = 80}, + [958] = {.lex_state = 22}, [959] = {.lex_state = 20}, - [960] = {.lex_state = 20}, + [960] = {.lex_state = 80}, [961] = {.lex_state = 20}, - [962] = {.lex_state = 77}, - [963] = {.lex_state = 18}, - [964] = {.lex_state = 20}, - [965] = {.lex_state = 77}, - [966] = {.lex_state = 77}, - [967] = {.lex_state = 77}, - [968] = {.lex_state = 77}, - [969] = {.lex_state = 77}, - [970] = {.lex_state = 77}, - [971] = {.lex_state = 18}, - [972] = {.lex_state = 77}, - [973] = {.lex_state = 77}, - [974] = {.lex_state = 18}, - [975] = {.lex_state = 77}, - [976] = {.lex_state = 20}, + [962] = {.lex_state = 80}, + [963] = {.lex_state = 80}, + [964] = {.lex_state = 22}, + [965] = {.lex_state = 80}, + [966] = {.lex_state = 80}, + [967] = {.lex_state = 20}, + [968] = {.lex_state = 80}, + [969] = {.lex_state = 22}, + [970] = {.lex_state = 22}, + [971] = {.lex_state = 22}, + [972] = {.lex_state = 80}, + [973] = {.lex_state = 80}, + [974] = {.lex_state = 22}, + [975] = {.lex_state = 80}, + [976] = {.lex_state = 80}, [977] = {.lex_state = 20}, - [978] = {.lex_state = 77}, - [979] = {.lex_state = 20}, - [980] = {.lex_state = 20}, - [981] = {.lex_state = 18}, - [982] = {.lex_state = 18}, - [983] = {.lex_state = 77}, - [984] = {.lex_state = 77}, - [985] = {.lex_state = 77}, - [986] = {.lex_state = 77}, - [987] = {.lex_state = 77}, - [988] = {.lex_state = 0}, - [989] = {.lex_state = 20}, - [990] = {.lex_state = 20}, - [991] = {.lex_state = 77}, - [992] = {.lex_state = 30}, - [993] = {.lex_state = 0}, + [978] = {.lex_state = 80}, + [979] = {.lex_state = 0}, + [980] = {.lex_state = 0}, + [981] = {.lex_state = 0}, + [982] = {.lex_state = 0}, + [983] = {.lex_state = 0}, + [984] = {.lex_state = 33}, + [985] = {.lex_state = 0}, + [986] = {.lex_state = 0}, + [987] = {.lex_state = 0}, + [988] = {.lex_state = 80}, + [989] = {.lex_state = 0}, + [990] = {.lex_state = 0}, + [991] = {.lex_state = 0}, + [992] = {.lex_state = 0}, + [993] = {.lex_state = 17}, [994] = {.lex_state = 0}, [995] = {.lex_state = 0}, [996] = {.lex_state = 0}, [997] = {.lex_state = 0}, [998] = {.lex_state = 0}, - [999] = {.lex_state = 0}, + [999] = {.lex_state = 32}, [1000] = {.lex_state = 0}, [1001] = {.lex_state = 0}, [1002] = {.lex_state = 0}, [1003] = {.lex_state = 0}, [1004] = {.lex_state = 0}, - [1005] = {.lex_state = 0}, - [1006] = {.lex_state = 31}, + [1005] = {.lex_state = 17}, + [1006] = {.lex_state = 0}, [1007] = {.lex_state = 0}, - [1008] = {.lex_state = 30}, + [1008] = {.lex_state = 33}, [1009] = {.lex_state = 0}, - [1010] = {.lex_state = 30}, + [1010] = {.lex_state = 0}, [1011] = {.lex_state = 0}, - [1012] = {.lex_state = 0}, + [1012] = {.lex_state = 80}, [1013] = {.lex_state = 0}, [1014] = {.lex_state = 0}, [1015] = {.lex_state = 0}, - [1016] = {.lex_state = 0}, - [1017] = {.lex_state = 0}, - [1018] = {.lex_state = 0}, - [1019] = {.lex_state = 30}, + [1016] = {.lex_state = 17}, + [1017] = {.lex_state = 17}, + [1018] = {.lex_state = 33}, + [1019] = {.lex_state = 0}, [1020] = {.lex_state = 0}, - [1021] = {.lex_state = 0}, + [1021] = {.lex_state = 33}, [1022] = {.lex_state = 0}, [1023] = {.lex_state = 0}, [1024] = {.lex_state = 0}, [1025] = {.lex_state = 0}, - [1026] = {.lex_state = 0}, - [1027] = {.lex_state = 0}, - [1028] = {.lex_state = 0}, - [1029] = {.lex_state = 77}, - [1030] = {.lex_state = 0}, - [1031] = {.lex_state = 77}, - [1032] = {.lex_state = 0}, + [1026] = {.lex_state = 33}, + [1027] = {.lex_state = 24}, + [1028] = {.lex_state = 80}, + [1029] = {.lex_state = 21}, + [1030] = {.lex_state = 80}, + [1031] = {.lex_state = 80}, + [1032] = {.lex_state = 80}, [1033] = {.lex_state = 0}, - [1034] = {.lex_state = 0}, - [1035] = {.lex_state = 30}, - [1036] = {.lex_state = 30}, - [1037] = {.lex_state = 19}, - [1038] = {.lex_state = 19}, - [1039] = {.lex_state = 19}, + [1034] = {.lex_state = 80}, + [1035] = {.lex_state = 21}, + [1036] = {.lex_state = 21}, + [1037] = {.lex_state = 80}, + [1038] = {.lex_state = 0}, + [1039] = {.lex_state = 24}, [1040] = {.lex_state = 0}, - [1041] = {.lex_state = 0}, - [1042] = {.lex_state = 77}, - [1043] = {.lex_state = 77}, - [1044] = {.lex_state = 77}, - [1045] = {.lex_state = 22}, - [1046] = {.lex_state = 77}, - [1047] = {.lex_state = 30}, - [1048] = {.lex_state = 19}, + [1041] = {.lex_state = 33}, + [1042] = {.lex_state = 80}, + [1043] = {.lex_state = 80}, + [1044] = {.lex_state = 33}, + [1045] = {.lex_state = 80}, + [1046] = {.lex_state = 80}, + [1047] = {.lex_state = 0}, + [1048] = {.lex_state = 21}, [1049] = {.lex_state = 0}, - [1050] = {.lex_state = 19}, - [1051] = {.lex_state = 77}, - [1052] = {.lex_state = 0}, - [1053] = {.lex_state = 30}, + [1050] = {.lex_state = 0}, + [1051] = {.lex_state = 24}, + [1052] = {.lex_state = 80}, + [1053] = {.lex_state = 0}, [1054] = {.lex_state = 0}, - [1055] = {.lex_state = 77}, - [1056] = {.lex_state = 19}, - [1057] = {.lex_state = 22}, - [1058] = {.lex_state = 0}, - [1059] = {.lex_state = 77}, - [1060] = {.lex_state = 31}, - [1061] = {.lex_state = 0}, - [1062] = {.lex_state = 77}, - [1063] = {.lex_state = 0}, - [1064] = {.lex_state = 19}, - [1065] = {.lex_state = 77}, - [1066] = {.lex_state = 77}, - [1067] = {.lex_state = 30}, - [1068] = {.lex_state = 22}, - [1069] = {.lex_state = 77}, - [1070] = {.lex_state = 77}, - [1071] = {.lex_state = 0}, - [1072] = {.lex_state = 19}, - [1073] = {.lex_state = 19}, - [1074] = {.lex_state = 77}, - [1075] = {.lex_state = 19}, - [1076] = {.lex_state = 19}, - [1077] = {.lex_state = 77}, - [1078] = {.lex_state = 0}, - [1079] = {.lex_state = 77}, - [1080] = {.lex_state = 19}, - [1081] = {.lex_state = 19}, - [1082] = {.lex_state = 77}, - [1083] = {.lex_state = 19}, - [1084] = {.lex_state = 0}, - [1085] = {.lex_state = 19}, - [1086] = {.lex_state = 19}, + [1055] = {.lex_state = 80}, + [1056] = {.lex_state = 21}, + [1057] = {.lex_state = 80}, + [1058] = {.lex_state = 32}, + [1059] = {.lex_state = 80}, + [1060] = {.lex_state = 21}, + [1061] = {.lex_state = 21}, + [1062] = {.lex_state = 21}, + [1063] = {.lex_state = 21}, + [1064] = {.lex_state = 21}, + [1065] = {.lex_state = 21}, + [1066] = {.lex_state = 0}, + [1067] = {.lex_state = 21}, + [1068] = {.lex_state = 21}, + [1069] = {.lex_state = 33}, + [1070] = {.lex_state = 21}, + [1071] = {.lex_state = 80}, + [1072] = {.lex_state = 21}, + [1073] = {.lex_state = 0}, + [1074] = {.lex_state = 80}, + [1075] = {.lex_state = 21}, + [1076] = {.lex_state = 80}, + [1077] = {.lex_state = 0}, + [1078] = {.lex_state = 21}, + [1079] = {.lex_state = 0}, + [1080] = {.lex_state = 17}, + [1081] = {.lex_state = 17}, + [1082] = {.lex_state = 0}, + [1083] = {.lex_state = 0}, + [1084] = {.lex_state = 27}, + [1085] = {.lex_state = 33}, + [1086] = {.lex_state = 0}, [1087] = {.lex_state = 0}, - [1088] = {.lex_state = 77}, - [1089] = {.lex_state = 19}, + [1088] = {.lex_state = 0}, + [1089] = {.lex_state = 0}, [1090] = {.lex_state = 0}, [1091] = {.lex_state = 0}, [1092] = {.lex_state = 0}, - [1093] = {.lex_state = 25}, + [1093] = {.lex_state = 17}, [1094] = {.lex_state = 0}, [1095] = {.lex_state = 0}, - [1096] = {.lex_state = 0}, + [1096] = {.lex_state = 17}, [1097] = {.lex_state = 0}, [1098] = {.lex_state = 0}, - [1099] = {.lex_state = 17}, - [1100] = {.lex_state = 25}, - [1101] = {.lex_state = 25}, - [1102] = {.lex_state = 25}, - [1103] = {.lex_state = 0}, + [1099] = {.lex_state = 33}, + [1100] = {.lex_state = 27}, + [1101] = {.lex_state = 0}, + [1102] = {.lex_state = 0}, + [1103] = {.lex_state = 27}, [1104] = {.lex_state = 0}, - [1105] = {.lex_state = 0}, + [1105] = {.lex_state = 17}, [1106] = {.lex_state = 0}, - [1107] = {.lex_state = 0}, - [1108] = {.lex_state = 17}, - [1109] = {.lex_state = 30}, - [1110] = {.lex_state = 25}, - [1111] = {.lex_state = 25}, - [1112] = {.lex_state = 17}, - [1113] = {.lex_state = 25}, - [1114] = {.lex_state = 0}, - [1115] = {.lex_state = 17}, - [1116] = {.lex_state = 25}, - [1117] = {.lex_state = 17}, - [1118] = {.lex_state = 25}, + [1107] = {.lex_state = 27}, + [1108] = {.lex_state = 0}, + [1109] = {.lex_state = 0}, + [1110] = {.lex_state = 0}, + [1111] = {.lex_state = 27}, + [1112] = {.lex_state = 27}, + [1113] = {.lex_state = 17}, + [1114] = {.lex_state = 27}, + [1115] = {.lex_state = 27}, + [1116] = {.lex_state = 27}, + [1117] = {.lex_state = 0}, + [1118] = {.lex_state = 0}, [1119] = {.lex_state = 0}, - [1120] = {.lex_state = 0}, - [1121] = {.lex_state = 25}, - [1122] = {.lex_state = 0}, - [1123] = {.lex_state = 25}, - [1124] = {.lex_state = 25}, - [1125] = {.lex_state = 25}, - [1126] = {.lex_state = 0}, - [1127] = {.lex_state = 30}, + [1120] = {.lex_state = 27}, + [1121] = {.lex_state = 27}, + [1122] = {.lex_state = 27}, + [1123] = {.lex_state = 27}, + [1124] = {.lex_state = 0}, + [1125] = {.lex_state = 0}, + [1126] = {.lex_state = 33}, + [1127] = {.lex_state = 0}, [1128] = {.lex_state = 0}, - [1129] = {.lex_state = 0}, + [1129] = {.lex_state = 17}, [1130] = {.lex_state = 0}, - [1131] = {.lex_state = 25}, + [1131] = {.lex_state = 27}, [1132] = {.lex_state = 0}, - [1133] = {.lex_state = 0}, + [1133] = {.lex_state = 27}, [1134] = {.lex_state = 0}, [1135] = {.lex_state = 0}, [1136] = {.lex_state = 0}, - [1137] = {.lex_state = 0}, - [1138] = {.lex_state = 30}, - [1139] = {.lex_state = 0}, - [1140] = {.lex_state = 17}, - [1141] = {.lex_state = 0}, - [1142] = {.lex_state = 17}, - [1143] = {.lex_state = 0}, + [1137] = {.lex_state = 17}, + [1138] = {.lex_state = 0}, + [1139] = {.lex_state = 17}, + [1140] = {.lex_state = 27}, + [1141] = {.lex_state = 17}, + [1142] = {.lex_state = 0}, + [1143] = {.lex_state = 27}, [1144] = {.lex_state = 17}, - [1145] = {.lex_state = 0}, + [1145] = {.lex_state = 17}, [1146] = {.lex_state = 17}, - [1147] = {.lex_state = 0}, + [1147] = {.lex_state = 17}, [1148] = {.lex_state = 0}, [1149] = {.lex_state = 0}, [1150] = {.lex_state = 17}, - [1151] = {.lex_state = 25}, - [1152] = {.lex_state = 17}, - [1153] = {.lex_state = 0}, - [1154] = {.lex_state = 17}, - [1155] = {.lex_state = 0}, - [1156] = {.lex_state = 0}, - [1157] = {.lex_state = 17}, - [1158] = {.lex_state = 17}, - [1159] = {.lex_state = 0}, - [1160] = {.lex_state = 17}, - [1161] = {.lex_state = 30}, - [1162] = {.lex_state = 30}, - [1163] = {.lex_state = 0}, - [1164] = {.lex_state = 0}, - [1165] = {.lex_state = 25}, - [1166] = {.lex_state = 17}, - [1167] = {.lex_state = 30}, + [1151] = {.lex_state = 17}, + [1152] = {.lex_state = 0}, + [1153] = {.lex_state = 17}, + [1154] = {.lex_state = 27}, + [1155] = {.lex_state = 33}, + [1156] = {.lex_state = 33}, + [1157] = {.lex_state = 33}, + [1158] = {.lex_state = 0}, + [1159] = {.lex_state = 27}, + [1160] = {.lex_state = 27}, + [1161] = {.lex_state = 33}, + [1162] = {.lex_state = 0}, + [1163] = {.lex_state = 27}, + [1164] = {.lex_state = 27}, + [1165] = {.lex_state = 17}, + [1166] = {.lex_state = 0}, + [1167] = {.lex_state = 0}, [1168] = {.lex_state = 0}, - [1169] = {.lex_state = 0}, + [1169] = {.lex_state = 33}, [1170] = {.lex_state = 0}, - [1171] = {.lex_state = 0}, + [1171] = {.lex_state = 33}, [1172] = {.lex_state = 0}, [1173] = {.lex_state = 0}, [1174] = {.lex_state = 0}, - [1175] = {.lex_state = 30}, - [1176] = {.lex_state = 25}, - [1177] = {.lex_state = 30}, + [1175] = {.lex_state = 0}, + [1176] = {.lex_state = 0}, + [1177] = {.lex_state = 33}, [1178] = {.lex_state = 0}, [1179] = {.lex_state = 0}, [1180] = {.lex_state = 0}, - [1181] = {.lex_state = 0}, - [1182] = {.lex_state = 25}, + [1181] = {.lex_state = 33}, + [1182] = {.lex_state = 33}, [1183] = {.lex_state = 0}, - [1184] = {.lex_state = 25}, - [1185] = {.lex_state = 0}, - [1186] = {.lex_state = 30}, - [1187] = {.lex_state = 30}, + [1184] = {.lex_state = 27}, + [1185] = {.lex_state = 27}, + [1186] = {.lex_state = 33}, + [1187] = {.lex_state = 0}, [1188] = {.lex_state = 0}, - [1189] = {.lex_state = 25}, + [1189] = {.lex_state = 0}, [1190] = {.lex_state = 0}, - [1191] = {.lex_state = 30}, - [1192] = {.lex_state = 17}, - [1193] = {.lex_state = 0}, - [1194] = {.lex_state = 25}, - [1195] = {.lex_state = 0}, - [1196] = {.lex_state = 30}, - [1197] = {.lex_state = 30}, - [1198] = {.lex_state = 30}, + [1191] = {.lex_state = 0}, + [1192] = {.lex_state = 33}, + [1193] = {.lex_state = 27}, + [1194] = {.lex_state = 0}, + [1195] = {.lex_state = 17}, + [1196] = {.lex_state = 0}, + [1197] = {.lex_state = 17}, + [1198] = {.lex_state = 27}, [1199] = {.lex_state = 0}, - [1200] = {.lex_state = 17}, - [1201] = {.lex_state = 25}, - [1202] = {.lex_state = 0}, - [1203] = {.lex_state = 0}, - [1204] = {.lex_state = 0}, - [1205] = {.lex_state = 0}, - [1206] = {.lex_state = 30}, - [1207] = {.lex_state = 30}, + [1200] = {.lex_state = 0}, + [1201] = {.lex_state = 0}, + [1202] = {.lex_state = 33}, + [1203] = {.lex_state = 33}, + [1204] = {.lex_state = 17}, + [1205] = {.lex_state = 27}, + [1206] = {.lex_state = 17}, + [1207] = {.lex_state = 33}, [1208] = {.lex_state = 0}, - [1209] = {.lex_state = 0}, + [1209] = {.lex_state = 27}, [1210] = {.lex_state = 0}, - [1211] = {.lex_state = 30}, + [1211] = {.lex_state = 27}, [1212] = {.lex_state = 0}, - [1213] = {.lex_state = 25}, - [1214] = {.lex_state = 17}, - [1215] = {.lex_state = 25}, - [1216] = {.lex_state = 25}, - [1217] = {.lex_state = 25}, - [1218] = {.lex_state = 25}, - [1219] = {.lex_state = 0}, - [1220] = {.lex_state = 0}, - [1221] = {.lex_state = 25}, - [1222] = {.lex_state = 30}, - [1223] = {.lex_state = 30}, - [1224] = {.lex_state = 30}, - [1225] = {.lex_state = 30}, + [1213] = {.lex_state = 17}, + [1214] = {.lex_state = 0}, + [1215] = {.lex_state = 0}, + [1216] = {.lex_state = 0}, + [1217] = {.lex_state = 17}, + [1218] = {.lex_state = 0}, + [1219] = {.lex_state = 33}, + [1220] = {.lex_state = 33}, + [1221] = {.lex_state = 33}, + [1222] = {.lex_state = 17}, + [1223] = {.lex_state = 0}, + [1224] = {.lex_state = 0}, + [1225] = {.lex_state = 33}, [1226] = {.lex_state = 0}, [1227] = {.lex_state = 0}, - [1228] = {.lex_state = 0}, - [1229] = {.lex_state = 30}, - [1230] = {.lex_state = 77}, + [1228] = {.lex_state = 33}, + [1229] = {.lex_state = 0}, + [1230] = {.lex_state = 0}, [1231] = {.lex_state = 0}, - [1232] = {.lex_state = 17}, - [1233] = {.lex_state = 0}, + [1232] = {.lex_state = 80}, + [1233] = {.lex_state = 33}, [1234] = {.lex_state = 0}, [1235] = {.lex_state = 0}, [1236] = {.lex_state = 17}, - [1237] = {.lex_state = 30}, - [1238] = {.lex_state = 0}, - [1239] = {.lex_state = 25}, + [1237] = {.lex_state = 0}, + [1238] = {.lex_state = 27}, + [1239] = {.lex_state = 27}, [1240] = {.lex_state = 0}, - [1241] = {.lex_state = 0}, - [1242] = {.lex_state = 25}, - [1243] = {.lex_state = 25}, + [1241] = {.lex_state = 33}, + [1242] = {.lex_state = 17}, + [1243] = {.lex_state = 80}, [1244] = {.lex_state = 0}, - [1245] = {.lex_state = 30}, - [1246] = {.lex_state = 77}, - [1247] = {.lex_state = 0}, - [1248] = {.lex_state = 0}, - [1249] = {.lex_state = 30}, - [1250] = {.lex_state = 77}, - [1251] = {.lex_state = 25}, - [1252] = {.lex_state = 77}, - [1253] = {.lex_state = 30}, - [1254] = {.lex_state = 77}, + [1245] = {.lex_state = 27}, + [1246] = {.lex_state = 80}, + [1247] = {.lex_state = 33}, + [1248] = {.lex_state = 80}, + [1249] = {.lex_state = 33}, + [1250] = {.lex_state = 80}, }; static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -6115,62 +6133,62 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [1] = { - [sym_translation_unit] = STATE(1219), - [sym_preproc_include] = STATE(39), - [sym_preproc_def] = STATE(39), - [sym_preproc_function_def] = STATE(39), - [sym_preproc_call] = STATE(39), - [sym_preproc_if] = STATE(39), - [sym_preproc_ifdef] = STATE(39), - [sym_function_definition] = STATE(39), - [sym_declaration] = STATE(39), - [sym_type_definition] = STATE(39), - [sym__declaration_specifiers] = STATE(872), - [sym_linkage_specification] = STATE(39), - [sym_attribute_specifier] = STATE(570), - [sym_compound_statement] = STATE(39), - [sym_storage_class_specifier] = STATE(570), - [sym_type_qualifier] = STATE(570), - [sym__type_specifier] = STATE(840), - [sym_sized_type_specifier] = STATE(840), - [sym_enum_specifier] = STATE(840), - [sym_struct_specifier] = STATE(840), - [sym_union_specifier] = STATE(840), - [sym_labeled_statement] = STATE(39), - [sym_expression_statement] = STATE(39), - [sym_if_statement] = STATE(39), - [sym_switch_statement] = STATE(39), - [sym_case_statement] = STATE(39), - [sym_while_statement] = STATE(39), - [sym_do_statement] = STATE(39), - [sym_for_statement] = STATE(39), - [sym_return_statement] = STATE(39), - [sym_break_statement] = STATE(39), - [sym_continue_statement] = STATE(39), - [sym_goto_statement] = STATE(39), - [sym__expression] = STATE(614), - [sym_comma_expression] = STATE(1210), - [sym_conditional_expression] = STATE(614), - [sym_assignment_expression] = STATE(614), - [sym_pointer_expression] = STATE(505), - [sym_unary_expression] = STATE(614), - [sym_binary_expression] = STATE(614), - [sym_update_expression] = STATE(614), - [sym_cast_expression] = STATE(614), - [sym_sizeof_expression] = STATE(614), - [sym_subscript_expression] = STATE(505), - [sym_call_expression] = STATE(505), - [sym_field_expression] = STATE(505), - [sym_compound_literal_expression] = STATE(614), - [sym_parenthesized_expression] = STATE(505), - [sym_char_literal] = STATE(614), - [sym_concatenated_string] = STATE(614), - [sym_string_literal] = STATE(376), - [sym__empty_declaration] = STATE(39), - [sym_macro_type_specifier] = STATE(840), - [aux_sym_translation_unit_repeat1] = STATE(39), - [aux_sym__declaration_specifiers_repeat1] = STATE(570), - [aux_sym_sized_type_specifier_repeat1] = STATE(712), + [sym_translation_unit] = STATE(1224), + [sym_preproc_include] = STATE(42), + [sym_preproc_def] = STATE(42), + [sym_preproc_function_def] = STATE(42), + [sym_preproc_call] = STATE(42), + [sym_preproc_if] = STATE(42), + [sym_preproc_ifdef] = STATE(42), + [sym_function_definition] = STATE(42), + [sym_declaration] = STATE(42), + [sym_type_definition] = STATE(42), + [sym__declaration_specifiers] = STATE(864), + [sym_linkage_specification] = STATE(42), + [sym_attribute_specifier] = STATE(561), + [sym_compound_statement] = STATE(42), + [sym_storage_class_specifier] = STATE(561), + [sym_type_qualifier] = STATE(561), + [sym__type_specifier] = STATE(822), + [sym_sized_type_specifier] = STATE(822), + [sym_enum_specifier] = STATE(822), + [sym_struct_specifier] = STATE(822), + [sym_union_specifier] = STATE(822), + [sym_labeled_statement] = STATE(42), + [sym_expression_statement] = STATE(42), + [sym_if_statement] = STATE(42), + [sym_switch_statement] = STATE(42), + [sym_case_statement] = STATE(42), + [sym_while_statement] = STATE(42), + [sym_do_statement] = STATE(42), + [sym_for_statement] = STATE(42), + [sym_return_statement] = STATE(42), + [sym_break_statement] = STATE(42), + [sym_continue_statement] = STATE(42), + [sym_goto_statement] = STATE(42), + [sym__expression] = STATE(606), + [sym_comma_expression] = STATE(1218), + [sym_conditional_expression] = STATE(606), + [sym_assignment_expression] = STATE(606), + [sym_pointer_expression] = STATE(532), + [sym_unary_expression] = STATE(606), + [sym_binary_expression] = STATE(606), + [sym_update_expression] = STATE(606), + [sym_cast_expression] = STATE(606), + [sym_sizeof_expression] = STATE(606), + [sym_subscript_expression] = STATE(532), + [sym_call_expression] = STATE(532), + [sym_field_expression] = STATE(532), + [sym_compound_literal_expression] = STATE(606), + [sym_parenthesized_expression] = STATE(532), + [sym_char_literal] = STATE(606), + [sym_concatenated_string] = STATE(606), + [sym_string_literal] = STATE(379), + [sym__empty_declaration] = STATE(42), + [sym_macro_type_specifier] = STATE(822), + [aux_sym_translation_unit_repeat1] = STATE(42), + [aux_sym__declaration_specifiers_repeat1] = STATE(561), + [aux_sym_sized_type_specifier_repeat1] = STATE(704), [ts_builtin_sym_end] = ACTIONS(5), [sym_identifier] = ACTIONS(7), [aux_sym_preproc_include_token1] = ACTIONS(9), @@ -6238,63 +6256,63 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [2] = { - [sym_preproc_include] = STATE(20), - [sym_preproc_def] = STATE(20), - [sym_preproc_function_def] = STATE(20), - [sym_preproc_call] = STATE(20), - [sym_preproc_if] = STATE(20), - [sym_preproc_ifdef] = STATE(20), - [sym_preproc_else] = STATE(1194), - [sym_preproc_elif] = STATE(1194), - [sym_function_definition] = STATE(20), - [sym_declaration] = STATE(20), - [sym_type_definition] = STATE(20), - [sym__declaration_specifiers] = STATE(870), - [sym_linkage_specification] = STATE(20), - [sym_attribute_specifier] = STATE(570), - [sym_compound_statement] = STATE(20), - [sym_storage_class_specifier] = STATE(570), - [sym_type_qualifier] = STATE(570), - [sym__type_specifier] = STATE(835), - [sym_sized_type_specifier] = STATE(835), - [sym_enum_specifier] = STATE(835), - [sym_struct_specifier] = STATE(835), - [sym_union_specifier] = STATE(835), - [sym_labeled_statement] = STATE(20), - [sym_expression_statement] = STATE(20), - [sym_if_statement] = STATE(20), - [sym_switch_statement] = STATE(20), - [sym_case_statement] = STATE(20), - [sym_while_statement] = STATE(20), - [sym_do_statement] = STATE(20), - [sym_for_statement] = STATE(20), - [sym_return_statement] = STATE(20), - [sym_break_statement] = STATE(20), - [sym_continue_statement] = STATE(20), - [sym_goto_statement] = STATE(20), - [sym__expression] = STATE(613), - [sym_comma_expression] = STATE(1185), - [sym_conditional_expression] = STATE(613), - [sym_assignment_expression] = STATE(613), - [sym_pointer_expression] = STATE(505), - [sym_unary_expression] = STATE(613), - [sym_binary_expression] = STATE(613), - [sym_update_expression] = STATE(613), - [sym_cast_expression] = STATE(613), - [sym_sizeof_expression] = STATE(613), - [sym_subscript_expression] = STATE(505), - [sym_call_expression] = STATE(505), - [sym_field_expression] = STATE(505), - [sym_compound_literal_expression] = STATE(613), - [sym_parenthesized_expression] = STATE(505), - [sym_char_literal] = STATE(613), - [sym_concatenated_string] = STATE(613), - [sym_string_literal] = STATE(376), - [sym__empty_declaration] = STATE(20), - [sym_macro_type_specifier] = STATE(835), - [aux_sym_translation_unit_repeat1] = STATE(20), - [aux_sym__declaration_specifiers_repeat1] = STATE(570), - [aux_sym_sized_type_specifier_repeat1] = STATE(712), + [sym_preproc_include] = STATE(8), + [sym_preproc_def] = STATE(8), + [sym_preproc_function_def] = STATE(8), + [sym_preproc_call] = STATE(8), + [sym_preproc_if] = STATE(8), + [sym_preproc_ifdef] = STATE(8), + [sym_preproc_else] = STATE(1184), + [sym_preproc_elif] = STATE(1184), + [sym_function_definition] = STATE(8), + [sym_declaration] = STATE(8), + [sym_type_definition] = STATE(8), + [sym__declaration_specifiers] = STATE(866), + [sym_linkage_specification] = STATE(8), + [sym_attribute_specifier] = STATE(561), + [sym_compound_statement] = STATE(8), + [sym_storage_class_specifier] = STATE(561), + [sym_type_qualifier] = STATE(561), + [sym__type_specifier] = STATE(837), + [sym_sized_type_specifier] = STATE(837), + [sym_enum_specifier] = STATE(837), + [sym_struct_specifier] = STATE(837), + [sym_union_specifier] = STATE(837), + [sym_labeled_statement] = STATE(8), + [sym_expression_statement] = STATE(8), + [sym_if_statement] = STATE(8), + [sym_switch_statement] = STATE(8), + [sym_case_statement] = STATE(8), + [sym_while_statement] = STATE(8), + [sym_do_statement] = STATE(8), + [sym_for_statement] = STATE(8), + [sym_return_statement] = STATE(8), + [sym_break_statement] = STATE(8), + [sym_continue_statement] = STATE(8), + [sym_goto_statement] = STATE(8), + [sym__expression] = STATE(582), + [sym_comma_expression] = STATE(1083), + [sym_conditional_expression] = STATE(582), + [sym_assignment_expression] = STATE(582), + [sym_pointer_expression] = STATE(532), + [sym_unary_expression] = STATE(582), + [sym_binary_expression] = STATE(582), + [sym_update_expression] = STATE(582), + [sym_cast_expression] = STATE(582), + [sym_sizeof_expression] = STATE(582), + [sym_subscript_expression] = STATE(532), + [sym_call_expression] = STATE(532), + [sym_field_expression] = STATE(532), + [sym_compound_literal_expression] = STATE(582), + [sym_parenthesized_expression] = STATE(532), + [sym_char_literal] = STATE(582), + [sym_concatenated_string] = STATE(582), + [sym_string_literal] = STATE(379), + [sym__empty_declaration] = STATE(8), + [sym_macro_type_specifier] = STATE(837), + [aux_sym_translation_unit_repeat1] = STATE(8), + [aux_sym__declaration_specifiers_repeat1] = STATE(561), + [aux_sym_sized_type_specifier_repeat1] = STATE(704), [sym_identifier] = ACTIONS(85), [aux_sym_preproc_include_token1] = ACTIONS(87), [aux_sym_preproc_def_token1] = ACTIONS(89), @@ -6364,63 +6382,63 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [3] = { - [sym_preproc_include] = STATE(20), - [sym_preproc_def] = STATE(20), - [sym_preproc_function_def] = STATE(20), - [sym_preproc_call] = STATE(20), - [sym_preproc_if] = STATE(20), - [sym_preproc_ifdef] = STATE(20), - [sym_preproc_else] = STATE(1125), - [sym_preproc_elif] = STATE(1125), - [sym_function_definition] = STATE(20), - [sym_declaration] = STATE(20), - [sym_type_definition] = STATE(20), - [sym__declaration_specifiers] = STATE(870), - [sym_linkage_specification] = STATE(20), - [sym_attribute_specifier] = STATE(570), - [sym_compound_statement] = STATE(20), - [sym_storage_class_specifier] = STATE(570), - [sym_type_qualifier] = STATE(570), - [sym__type_specifier] = STATE(835), - [sym_sized_type_specifier] = STATE(835), - [sym_enum_specifier] = STATE(835), - [sym_struct_specifier] = STATE(835), - [sym_union_specifier] = STATE(835), - [sym_labeled_statement] = STATE(20), - [sym_expression_statement] = STATE(20), - [sym_if_statement] = STATE(20), - [sym_switch_statement] = STATE(20), - [sym_case_statement] = STATE(20), - [sym_while_statement] = STATE(20), - [sym_do_statement] = STATE(20), - [sym_for_statement] = STATE(20), - [sym_return_statement] = STATE(20), - [sym_break_statement] = STATE(20), - [sym_continue_statement] = STATE(20), - [sym_goto_statement] = STATE(20), - [sym__expression] = STATE(613), - [sym_comma_expression] = STATE(1185), - [sym_conditional_expression] = STATE(613), - [sym_assignment_expression] = STATE(613), - [sym_pointer_expression] = STATE(505), - [sym_unary_expression] = STATE(613), - [sym_binary_expression] = STATE(613), - [sym_update_expression] = STATE(613), - [sym_cast_expression] = STATE(613), - [sym_sizeof_expression] = STATE(613), - [sym_subscript_expression] = STATE(505), - [sym_call_expression] = STATE(505), - [sym_field_expression] = STATE(505), - [sym_compound_literal_expression] = STATE(613), - [sym_parenthesized_expression] = STATE(505), - [sym_char_literal] = STATE(613), - [sym_concatenated_string] = STATE(613), - [sym_string_literal] = STATE(376), - [sym__empty_declaration] = STATE(20), - [sym_macro_type_specifier] = STATE(835), - [aux_sym_translation_unit_repeat1] = STATE(20), - [aux_sym__declaration_specifiers_repeat1] = STATE(570), - [aux_sym_sized_type_specifier_repeat1] = STATE(712), + [sym_preproc_include] = STATE(18), + [sym_preproc_def] = STATE(18), + [sym_preproc_function_def] = STATE(18), + [sym_preproc_call] = STATE(18), + [sym_preproc_if] = STATE(18), + [sym_preproc_ifdef] = STATE(18), + [sym_preproc_else] = STATE(1120), + [sym_preproc_elif] = STATE(1120), + [sym_function_definition] = STATE(18), + [sym_declaration] = STATE(18), + [sym_type_definition] = STATE(18), + [sym__declaration_specifiers] = STATE(866), + [sym_linkage_specification] = STATE(18), + [sym_attribute_specifier] = STATE(561), + [sym_compound_statement] = STATE(18), + [sym_storage_class_specifier] = STATE(561), + [sym_type_qualifier] = STATE(561), + [sym__type_specifier] = STATE(837), + [sym_sized_type_specifier] = STATE(837), + [sym_enum_specifier] = STATE(837), + [sym_struct_specifier] = STATE(837), + [sym_union_specifier] = STATE(837), + [sym_labeled_statement] = STATE(18), + [sym_expression_statement] = STATE(18), + [sym_if_statement] = STATE(18), + [sym_switch_statement] = STATE(18), + [sym_case_statement] = STATE(18), + [sym_while_statement] = STATE(18), + [sym_do_statement] = STATE(18), + [sym_for_statement] = STATE(18), + [sym_return_statement] = STATE(18), + [sym_break_statement] = STATE(18), + [sym_continue_statement] = STATE(18), + [sym_goto_statement] = STATE(18), + [sym__expression] = STATE(582), + [sym_comma_expression] = STATE(1083), + [sym_conditional_expression] = STATE(582), + [sym_assignment_expression] = STATE(582), + [sym_pointer_expression] = STATE(532), + [sym_unary_expression] = STATE(582), + [sym_binary_expression] = STATE(582), + [sym_update_expression] = STATE(582), + [sym_cast_expression] = STATE(582), + [sym_sizeof_expression] = STATE(582), + [sym_subscript_expression] = STATE(532), + [sym_call_expression] = STATE(532), + [sym_field_expression] = STATE(532), + [sym_compound_literal_expression] = STATE(582), + [sym_parenthesized_expression] = STATE(532), + [sym_char_literal] = STATE(582), + [sym_concatenated_string] = STATE(582), + [sym_string_literal] = STATE(379), + [sym__empty_declaration] = STATE(18), + [sym_macro_type_specifier] = STATE(837), + [aux_sym_translation_unit_repeat1] = STATE(18), + [aux_sym__declaration_specifiers_repeat1] = STATE(561), + [aux_sym_sized_type_specifier_repeat1] = STATE(704), [sym_identifier] = ACTIONS(85), [aux_sym_preproc_include_token1] = ACTIONS(87), [aux_sym_preproc_def_token1] = ACTIONS(89), @@ -6490,63 +6508,63 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [4] = { - [sym_preproc_include] = STATE(5), - [sym_preproc_def] = STATE(5), - [sym_preproc_function_def] = STATE(5), - [sym_preproc_call] = STATE(5), - [sym_preproc_if] = STATE(5), - [sym_preproc_ifdef] = STATE(5), - [sym_preproc_else] = STATE(1124), - [sym_preproc_elif] = STATE(1124), - [sym_function_definition] = STATE(5), - [sym_declaration] = STATE(5), - [sym_type_definition] = STATE(5), - [sym__declaration_specifiers] = STATE(870), - [sym_linkage_specification] = STATE(5), - [sym_attribute_specifier] = STATE(570), - [sym_compound_statement] = STATE(5), - [sym_storage_class_specifier] = STATE(570), - [sym_type_qualifier] = STATE(570), - [sym__type_specifier] = STATE(835), - [sym_sized_type_specifier] = STATE(835), - [sym_enum_specifier] = STATE(835), - [sym_struct_specifier] = STATE(835), - [sym_union_specifier] = STATE(835), - [sym_labeled_statement] = STATE(5), - [sym_expression_statement] = STATE(5), - [sym_if_statement] = STATE(5), - [sym_switch_statement] = STATE(5), - [sym_case_statement] = STATE(5), - [sym_while_statement] = STATE(5), - [sym_do_statement] = STATE(5), - [sym_for_statement] = STATE(5), - [sym_return_statement] = STATE(5), - [sym_break_statement] = STATE(5), - [sym_continue_statement] = STATE(5), - [sym_goto_statement] = STATE(5), - [sym__expression] = STATE(613), - [sym_comma_expression] = STATE(1185), - [sym_conditional_expression] = STATE(613), - [sym_assignment_expression] = STATE(613), - [sym_pointer_expression] = STATE(505), - [sym_unary_expression] = STATE(613), - [sym_binary_expression] = STATE(613), - [sym_update_expression] = STATE(613), - [sym_cast_expression] = STATE(613), - [sym_sizeof_expression] = STATE(613), - [sym_subscript_expression] = STATE(505), - [sym_call_expression] = STATE(505), - [sym_field_expression] = STATE(505), - [sym_compound_literal_expression] = STATE(613), - [sym_parenthesized_expression] = STATE(505), - [sym_char_literal] = STATE(613), - [sym_concatenated_string] = STATE(613), - [sym_string_literal] = STATE(376), - [sym__empty_declaration] = STATE(5), - [sym_macro_type_specifier] = STATE(835), - [aux_sym_translation_unit_repeat1] = STATE(5), - [aux_sym__declaration_specifiers_repeat1] = STATE(570), - [aux_sym_sized_type_specifier_repeat1] = STATE(712), + [sym_preproc_include] = STATE(20), + [sym_preproc_def] = STATE(20), + [sym_preproc_function_def] = STATE(20), + [sym_preproc_call] = STATE(20), + [sym_preproc_if] = STATE(20), + [sym_preproc_ifdef] = STATE(20), + [sym_preproc_else] = STATE(1185), + [sym_preproc_elif] = STATE(1185), + [sym_function_definition] = STATE(20), + [sym_declaration] = STATE(20), + [sym_type_definition] = STATE(20), + [sym__declaration_specifiers] = STATE(866), + [sym_linkage_specification] = STATE(20), + [sym_attribute_specifier] = STATE(561), + [sym_compound_statement] = STATE(20), + [sym_storage_class_specifier] = STATE(561), + [sym_type_qualifier] = STATE(561), + [sym__type_specifier] = STATE(837), + [sym_sized_type_specifier] = STATE(837), + [sym_enum_specifier] = STATE(837), + [sym_struct_specifier] = STATE(837), + [sym_union_specifier] = STATE(837), + [sym_labeled_statement] = STATE(20), + [sym_expression_statement] = STATE(20), + [sym_if_statement] = STATE(20), + [sym_switch_statement] = STATE(20), + [sym_case_statement] = STATE(20), + [sym_while_statement] = STATE(20), + [sym_do_statement] = STATE(20), + [sym_for_statement] = STATE(20), + [sym_return_statement] = STATE(20), + [sym_break_statement] = STATE(20), + [sym_continue_statement] = STATE(20), + [sym_goto_statement] = STATE(20), + [sym__expression] = STATE(582), + [sym_comma_expression] = STATE(1083), + [sym_conditional_expression] = STATE(582), + [sym_assignment_expression] = STATE(582), + [sym_pointer_expression] = STATE(532), + [sym_unary_expression] = STATE(582), + [sym_binary_expression] = STATE(582), + [sym_update_expression] = STATE(582), + [sym_cast_expression] = STATE(582), + [sym_sizeof_expression] = STATE(582), + [sym_subscript_expression] = STATE(532), + [sym_call_expression] = STATE(532), + [sym_field_expression] = STATE(532), + [sym_compound_literal_expression] = STATE(582), + [sym_parenthesized_expression] = STATE(532), + [sym_char_literal] = STATE(582), + [sym_concatenated_string] = STATE(582), + [sym_string_literal] = STATE(379), + [sym__empty_declaration] = STATE(20), + [sym_macro_type_specifier] = STATE(837), + [aux_sym_translation_unit_repeat1] = STATE(20), + [aux_sym__declaration_specifiers_repeat1] = STATE(561), + [aux_sym_sized_type_specifier_repeat1] = STATE(704), [sym_identifier] = ACTIONS(85), [aux_sym_preproc_include_token1] = ACTIONS(87), [aux_sym_preproc_def_token1] = ACTIONS(89), @@ -6622,22 +6640,22 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_call] = STATE(20), [sym_preproc_if] = STATE(20), [sym_preproc_ifdef] = STATE(20), - [sym_preproc_else] = STATE(1113), - [sym_preproc_elif] = STATE(1113), + [sym_preproc_else] = STATE(1121), + [sym_preproc_elif] = STATE(1121), [sym_function_definition] = STATE(20), [sym_declaration] = STATE(20), [sym_type_definition] = STATE(20), - [sym__declaration_specifiers] = STATE(870), + [sym__declaration_specifiers] = STATE(866), [sym_linkage_specification] = STATE(20), - [sym_attribute_specifier] = STATE(570), + [sym_attribute_specifier] = STATE(561), [sym_compound_statement] = STATE(20), - [sym_storage_class_specifier] = STATE(570), - [sym_type_qualifier] = STATE(570), - [sym__type_specifier] = STATE(835), - [sym_sized_type_specifier] = STATE(835), - [sym_enum_specifier] = STATE(835), - [sym_struct_specifier] = STATE(835), - [sym_union_specifier] = STATE(835), + [sym_storage_class_specifier] = STATE(561), + [sym_type_qualifier] = STATE(561), + [sym__type_specifier] = STATE(837), + [sym_sized_type_specifier] = STATE(837), + [sym_enum_specifier] = STATE(837), + [sym_struct_specifier] = STATE(837), + [sym_union_specifier] = STATE(837), [sym_labeled_statement] = STATE(20), [sym_expression_statement] = STATE(20), [sym_if_statement] = STATE(20), @@ -6650,29 +6668,29 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(20), [sym_continue_statement] = STATE(20), [sym_goto_statement] = STATE(20), - [sym__expression] = STATE(613), - [sym_comma_expression] = STATE(1185), - [sym_conditional_expression] = STATE(613), - [sym_assignment_expression] = STATE(613), - [sym_pointer_expression] = STATE(505), - [sym_unary_expression] = STATE(613), - [sym_binary_expression] = STATE(613), - [sym_update_expression] = STATE(613), - [sym_cast_expression] = STATE(613), - [sym_sizeof_expression] = STATE(613), - [sym_subscript_expression] = STATE(505), - [sym_call_expression] = STATE(505), - [sym_field_expression] = STATE(505), - [sym_compound_literal_expression] = STATE(613), - [sym_parenthesized_expression] = STATE(505), - [sym_char_literal] = STATE(613), - [sym_concatenated_string] = STATE(613), - [sym_string_literal] = STATE(376), + [sym__expression] = STATE(582), + [sym_comma_expression] = STATE(1083), + [sym_conditional_expression] = STATE(582), + [sym_assignment_expression] = STATE(582), + [sym_pointer_expression] = STATE(532), + [sym_unary_expression] = STATE(582), + [sym_binary_expression] = STATE(582), + [sym_update_expression] = STATE(582), + [sym_cast_expression] = STATE(582), + [sym_sizeof_expression] = STATE(582), + [sym_subscript_expression] = STATE(532), + [sym_call_expression] = STATE(532), + [sym_field_expression] = STATE(532), + [sym_compound_literal_expression] = STATE(582), + [sym_parenthesized_expression] = STATE(532), + [sym_char_literal] = STATE(582), + [sym_concatenated_string] = STATE(582), + [sym_string_literal] = STATE(379), [sym__empty_declaration] = STATE(20), - [sym_macro_type_specifier] = STATE(835), + [sym_macro_type_specifier] = STATE(837), [aux_sym_translation_unit_repeat1] = STATE(20), - [aux_sym__declaration_specifiers_repeat1] = STATE(570), - [aux_sym_sized_type_specifier_repeat1] = STATE(712), + [aux_sym__declaration_specifiers_repeat1] = STATE(561), + [aux_sym_sized_type_specifier_repeat1] = STATE(704), [sym_identifier] = ACTIONS(85), [aux_sym_preproc_include_token1] = ACTIONS(87), [aux_sym_preproc_def_token1] = ACTIONS(89), @@ -6748,22 +6766,22 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_call] = STATE(20), [sym_preproc_if] = STATE(20), [sym_preproc_ifdef] = STATE(20), - [sym_preproc_else] = STATE(1221), - [sym_preproc_elif] = STATE(1221), + [sym_preproc_else] = STATE(1238), + [sym_preproc_elif] = STATE(1238), [sym_function_definition] = STATE(20), [sym_declaration] = STATE(20), [sym_type_definition] = STATE(20), - [sym__declaration_specifiers] = STATE(870), + [sym__declaration_specifiers] = STATE(866), [sym_linkage_specification] = STATE(20), - [sym_attribute_specifier] = STATE(570), + [sym_attribute_specifier] = STATE(561), [sym_compound_statement] = STATE(20), - [sym_storage_class_specifier] = STATE(570), - [sym_type_qualifier] = STATE(570), - [sym__type_specifier] = STATE(835), - [sym_sized_type_specifier] = STATE(835), - [sym_enum_specifier] = STATE(835), - [sym_struct_specifier] = STATE(835), - [sym_union_specifier] = STATE(835), + [sym_storage_class_specifier] = STATE(561), + [sym_type_qualifier] = STATE(561), + [sym__type_specifier] = STATE(837), + [sym_sized_type_specifier] = STATE(837), + [sym_enum_specifier] = STATE(837), + [sym_struct_specifier] = STATE(837), + [sym_union_specifier] = STATE(837), [sym_labeled_statement] = STATE(20), [sym_expression_statement] = STATE(20), [sym_if_statement] = STATE(20), @@ -6776,29 +6794,29 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(20), [sym_continue_statement] = STATE(20), [sym_goto_statement] = STATE(20), - [sym__expression] = STATE(613), - [sym_comma_expression] = STATE(1185), - [sym_conditional_expression] = STATE(613), - [sym_assignment_expression] = STATE(613), - [sym_pointer_expression] = STATE(505), - [sym_unary_expression] = STATE(613), - [sym_binary_expression] = STATE(613), - [sym_update_expression] = STATE(613), - [sym_cast_expression] = STATE(613), - [sym_sizeof_expression] = STATE(613), - [sym_subscript_expression] = STATE(505), - [sym_call_expression] = STATE(505), - [sym_field_expression] = STATE(505), - [sym_compound_literal_expression] = STATE(613), - [sym_parenthesized_expression] = STATE(505), - [sym_char_literal] = STATE(613), - [sym_concatenated_string] = STATE(613), - [sym_string_literal] = STATE(376), + [sym__expression] = STATE(582), + [sym_comma_expression] = STATE(1083), + [sym_conditional_expression] = STATE(582), + [sym_assignment_expression] = STATE(582), + [sym_pointer_expression] = STATE(532), + [sym_unary_expression] = STATE(582), + [sym_binary_expression] = STATE(582), + [sym_update_expression] = STATE(582), + [sym_cast_expression] = STATE(582), + [sym_sizeof_expression] = STATE(582), + [sym_subscript_expression] = STATE(532), + [sym_call_expression] = STATE(532), + [sym_field_expression] = STATE(532), + [sym_compound_literal_expression] = STATE(582), + [sym_parenthesized_expression] = STATE(532), + [sym_char_literal] = STATE(582), + [sym_concatenated_string] = STATE(582), + [sym_string_literal] = STATE(379), [sym__empty_declaration] = STATE(20), - [sym_macro_type_specifier] = STATE(835), + [sym_macro_type_specifier] = STATE(837), [aux_sym_translation_unit_repeat1] = STATE(20), - [aux_sym__declaration_specifiers_repeat1] = STATE(570), - [aux_sym_sized_type_specifier_repeat1] = STATE(712), + [aux_sym__declaration_specifiers_repeat1] = STATE(561), + [aux_sym_sized_type_specifier_repeat1] = STATE(704), [sym_identifier] = ACTIONS(85), [aux_sym_preproc_include_token1] = ACTIONS(87), [aux_sym_preproc_def_token1] = ACTIONS(89), @@ -6868,63 +6886,63 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [7] = { - [sym_preproc_include] = STATE(19), - [sym_preproc_def] = STATE(19), - [sym_preproc_function_def] = STATE(19), - [sym_preproc_call] = STATE(19), - [sym_preproc_if] = STATE(19), - [sym_preproc_ifdef] = STATE(19), - [sym_preproc_else] = STATE(1213), - [sym_preproc_elif] = STATE(1213), - [sym_function_definition] = STATE(19), - [sym_declaration] = STATE(19), - [sym_type_definition] = STATE(19), - [sym__declaration_specifiers] = STATE(870), - [sym_linkage_specification] = STATE(19), - [sym_attribute_specifier] = STATE(570), - [sym_compound_statement] = STATE(19), - [sym_storage_class_specifier] = STATE(570), - [sym_type_qualifier] = STATE(570), - [sym__type_specifier] = STATE(835), - [sym_sized_type_specifier] = STATE(835), - [sym_enum_specifier] = STATE(835), - [sym_struct_specifier] = STATE(835), - [sym_union_specifier] = STATE(835), - [sym_labeled_statement] = STATE(19), - [sym_expression_statement] = STATE(19), - [sym_if_statement] = STATE(19), - [sym_switch_statement] = STATE(19), - [sym_case_statement] = STATE(19), - [sym_while_statement] = STATE(19), - [sym_do_statement] = STATE(19), - [sym_for_statement] = STATE(19), - [sym_return_statement] = STATE(19), - [sym_break_statement] = STATE(19), - [sym_continue_statement] = STATE(19), - [sym_goto_statement] = STATE(19), - [sym__expression] = STATE(613), - [sym_comma_expression] = STATE(1185), - [sym_conditional_expression] = STATE(613), - [sym_assignment_expression] = STATE(613), - [sym_pointer_expression] = STATE(505), - [sym_unary_expression] = STATE(613), - [sym_binary_expression] = STATE(613), - [sym_update_expression] = STATE(613), - [sym_cast_expression] = STATE(613), - [sym_sizeof_expression] = STATE(613), - [sym_subscript_expression] = STATE(505), - [sym_call_expression] = STATE(505), - [sym_field_expression] = STATE(505), - [sym_compound_literal_expression] = STATE(613), - [sym_parenthesized_expression] = STATE(505), - [sym_char_literal] = STATE(613), - [sym_concatenated_string] = STATE(613), - [sym_string_literal] = STATE(376), - [sym__empty_declaration] = STATE(19), - [sym_macro_type_specifier] = STATE(835), - [aux_sym_translation_unit_repeat1] = STATE(19), - [aux_sym__declaration_specifiers_repeat1] = STATE(570), - [aux_sym_sized_type_specifier_repeat1] = STATE(712), + [sym_preproc_include] = STATE(6), + [sym_preproc_def] = STATE(6), + [sym_preproc_function_def] = STATE(6), + [sym_preproc_call] = STATE(6), + [sym_preproc_if] = STATE(6), + [sym_preproc_ifdef] = STATE(6), + [sym_preproc_else] = STATE(1245), + [sym_preproc_elif] = STATE(1245), + [sym_function_definition] = STATE(6), + [sym_declaration] = STATE(6), + [sym_type_definition] = STATE(6), + [sym__declaration_specifiers] = STATE(866), + [sym_linkage_specification] = STATE(6), + [sym_attribute_specifier] = STATE(561), + [sym_compound_statement] = STATE(6), + [sym_storage_class_specifier] = STATE(561), + [sym_type_qualifier] = STATE(561), + [sym__type_specifier] = STATE(837), + [sym_sized_type_specifier] = STATE(837), + [sym_enum_specifier] = STATE(837), + [sym_struct_specifier] = STATE(837), + [sym_union_specifier] = STATE(837), + [sym_labeled_statement] = STATE(6), + [sym_expression_statement] = STATE(6), + [sym_if_statement] = STATE(6), + [sym_switch_statement] = STATE(6), + [sym_case_statement] = STATE(6), + [sym_while_statement] = STATE(6), + [sym_do_statement] = STATE(6), + [sym_for_statement] = STATE(6), + [sym_return_statement] = STATE(6), + [sym_break_statement] = STATE(6), + [sym_continue_statement] = STATE(6), + [sym_goto_statement] = STATE(6), + [sym__expression] = STATE(582), + [sym_comma_expression] = STATE(1083), + [sym_conditional_expression] = STATE(582), + [sym_assignment_expression] = STATE(582), + [sym_pointer_expression] = STATE(532), + [sym_unary_expression] = STATE(582), + [sym_binary_expression] = STATE(582), + [sym_update_expression] = STATE(582), + [sym_cast_expression] = STATE(582), + [sym_sizeof_expression] = STATE(582), + [sym_subscript_expression] = STATE(532), + [sym_call_expression] = STATE(532), + [sym_field_expression] = STATE(532), + [sym_compound_literal_expression] = STATE(582), + [sym_parenthesized_expression] = STATE(532), + [sym_char_literal] = STATE(582), + [sym_concatenated_string] = STATE(582), + [sym_string_literal] = STATE(379), + [sym__empty_declaration] = STATE(6), + [sym_macro_type_specifier] = STATE(837), + [aux_sym_translation_unit_repeat1] = STATE(6), + [aux_sym__declaration_specifiers_repeat1] = STATE(561), + [aux_sym_sized_type_specifier_repeat1] = STATE(704), [sym_identifier] = ACTIONS(85), [aux_sym_preproc_include_token1] = ACTIONS(87), [aux_sym_preproc_def_token1] = ACTIONS(89), @@ -6994,63 +7012,63 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [8] = { - [sym_preproc_include] = STATE(14), - [sym_preproc_def] = STATE(14), - [sym_preproc_function_def] = STATE(14), - [sym_preproc_call] = STATE(14), - [sym_preproc_if] = STATE(14), - [sym_preproc_ifdef] = STATE(14), - [sym_preproc_else] = STATE(1182), - [sym_preproc_elif] = STATE(1182), - [sym_function_definition] = STATE(14), - [sym_declaration] = STATE(14), - [sym_type_definition] = STATE(14), - [sym__declaration_specifiers] = STATE(870), - [sym_linkage_specification] = STATE(14), - [sym_attribute_specifier] = STATE(570), - [sym_compound_statement] = STATE(14), - [sym_storage_class_specifier] = STATE(570), - [sym_type_qualifier] = STATE(570), - [sym__type_specifier] = STATE(835), - [sym_sized_type_specifier] = STATE(835), - [sym_enum_specifier] = STATE(835), - [sym_struct_specifier] = STATE(835), - [sym_union_specifier] = STATE(835), - [sym_labeled_statement] = STATE(14), - [sym_expression_statement] = STATE(14), - [sym_if_statement] = STATE(14), - [sym_switch_statement] = STATE(14), - [sym_case_statement] = STATE(14), - [sym_while_statement] = STATE(14), - [sym_do_statement] = STATE(14), - [sym_for_statement] = STATE(14), - [sym_return_statement] = STATE(14), - [sym_break_statement] = STATE(14), - [sym_continue_statement] = STATE(14), - [sym_goto_statement] = STATE(14), - [sym__expression] = STATE(613), - [sym_comma_expression] = STATE(1185), - [sym_conditional_expression] = STATE(613), - [sym_assignment_expression] = STATE(613), - [sym_pointer_expression] = STATE(505), - [sym_unary_expression] = STATE(613), - [sym_binary_expression] = STATE(613), - [sym_update_expression] = STATE(613), - [sym_cast_expression] = STATE(613), - [sym_sizeof_expression] = STATE(613), - [sym_subscript_expression] = STATE(505), - [sym_call_expression] = STATE(505), - [sym_field_expression] = STATE(505), - [sym_compound_literal_expression] = STATE(613), - [sym_parenthesized_expression] = STATE(505), - [sym_char_literal] = STATE(613), - [sym_concatenated_string] = STATE(613), - [sym_string_literal] = STATE(376), - [sym__empty_declaration] = STATE(14), - [sym_macro_type_specifier] = STATE(835), - [aux_sym_translation_unit_repeat1] = STATE(14), - [aux_sym__declaration_specifiers_repeat1] = STATE(570), - [aux_sym_sized_type_specifier_repeat1] = STATE(712), + [sym_preproc_include] = STATE(20), + [sym_preproc_def] = STATE(20), + [sym_preproc_function_def] = STATE(20), + [sym_preproc_call] = STATE(20), + [sym_preproc_if] = STATE(20), + [sym_preproc_ifdef] = STATE(20), + [sym_preproc_else] = STATE(1143), + [sym_preproc_elif] = STATE(1143), + [sym_function_definition] = STATE(20), + [sym_declaration] = STATE(20), + [sym_type_definition] = STATE(20), + [sym__declaration_specifiers] = STATE(866), + [sym_linkage_specification] = STATE(20), + [sym_attribute_specifier] = STATE(561), + [sym_compound_statement] = STATE(20), + [sym_storage_class_specifier] = STATE(561), + [sym_type_qualifier] = STATE(561), + [sym__type_specifier] = STATE(837), + [sym_sized_type_specifier] = STATE(837), + [sym_enum_specifier] = STATE(837), + [sym_struct_specifier] = STATE(837), + [sym_union_specifier] = STATE(837), + [sym_labeled_statement] = STATE(20), + [sym_expression_statement] = STATE(20), + [sym_if_statement] = STATE(20), + [sym_switch_statement] = STATE(20), + [sym_case_statement] = STATE(20), + [sym_while_statement] = STATE(20), + [sym_do_statement] = STATE(20), + [sym_for_statement] = STATE(20), + [sym_return_statement] = STATE(20), + [sym_break_statement] = STATE(20), + [sym_continue_statement] = STATE(20), + [sym_goto_statement] = STATE(20), + [sym__expression] = STATE(582), + [sym_comma_expression] = STATE(1083), + [sym_conditional_expression] = STATE(582), + [sym_assignment_expression] = STATE(582), + [sym_pointer_expression] = STATE(532), + [sym_unary_expression] = STATE(582), + [sym_binary_expression] = STATE(582), + [sym_update_expression] = STATE(582), + [sym_cast_expression] = STATE(582), + [sym_sizeof_expression] = STATE(582), + [sym_subscript_expression] = STATE(532), + [sym_call_expression] = STATE(532), + [sym_field_expression] = STATE(532), + [sym_compound_literal_expression] = STATE(582), + [sym_parenthesized_expression] = STATE(532), + [sym_char_literal] = STATE(582), + [sym_concatenated_string] = STATE(582), + [sym_string_literal] = STATE(379), + [sym__empty_declaration] = STATE(20), + [sym_macro_type_specifier] = STATE(837), + [aux_sym_translation_unit_repeat1] = STATE(20), + [aux_sym__declaration_specifiers_repeat1] = STATE(561), + [aux_sym_sized_type_specifier_repeat1] = STATE(704), [sym_identifier] = ACTIONS(85), [aux_sym_preproc_include_token1] = ACTIONS(87), [aux_sym_preproc_def_token1] = ACTIONS(89), @@ -7120,63 +7138,63 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [9] = { - [sym_preproc_include] = STATE(20), - [sym_preproc_def] = STATE(20), - [sym_preproc_function_def] = STATE(20), - [sym_preproc_call] = STATE(20), - [sym_preproc_if] = STATE(20), - [sym_preproc_ifdef] = STATE(20), - [sym_preproc_else] = STATE(1242), - [sym_preproc_elif] = STATE(1242), - [sym_function_definition] = STATE(20), - [sym_declaration] = STATE(20), - [sym_type_definition] = STATE(20), - [sym__declaration_specifiers] = STATE(870), - [sym_linkage_specification] = STATE(20), - [sym_attribute_specifier] = STATE(570), - [sym_compound_statement] = STATE(20), - [sym_storage_class_specifier] = STATE(570), - [sym_type_qualifier] = STATE(570), - [sym__type_specifier] = STATE(835), - [sym_sized_type_specifier] = STATE(835), - [sym_enum_specifier] = STATE(835), - [sym_struct_specifier] = STATE(835), - [sym_union_specifier] = STATE(835), - [sym_labeled_statement] = STATE(20), - [sym_expression_statement] = STATE(20), - [sym_if_statement] = STATE(20), - [sym_switch_statement] = STATE(20), - [sym_case_statement] = STATE(20), - [sym_while_statement] = STATE(20), - [sym_do_statement] = STATE(20), - [sym_for_statement] = STATE(20), - [sym_return_statement] = STATE(20), - [sym_break_statement] = STATE(20), - [sym_continue_statement] = STATE(20), - [sym_goto_statement] = STATE(20), - [sym__expression] = STATE(613), - [sym_comma_expression] = STATE(1185), - [sym_conditional_expression] = STATE(613), - [sym_assignment_expression] = STATE(613), - [sym_pointer_expression] = STATE(505), - [sym_unary_expression] = STATE(613), - [sym_binary_expression] = STATE(613), - [sym_update_expression] = STATE(613), - [sym_cast_expression] = STATE(613), - [sym_sizeof_expression] = STATE(613), - [sym_subscript_expression] = STATE(505), - [sym_call_expression] = STATE(505), - [sym_field_expression] = STATE(505), - [sym_compound_literal_expression] = STATE(613), - [sym_parenthesized_expression] = STATE(505), - [sym_char_literal] = STATE(613), - [sym_concatenated_string] = STATE(613), - [sym_string_literal] = STATE(376), - [sym__empty_declaration] = STATE(20), - [sym_macro_type_specifier] = STATE(835), - [aux_sym_translation_unit_repeat1] = STATE(20), - [aux_sym__declaration_specifiers_repeat1] = STATE(570), - [aux_sym_sized_type_specifier_repeat1] = STATE(712), + [sym_preproc_include] = STATE(4), + [sym_preproc_def] = STATE(4), + [sym_preproc_function_def] = STATE(4), + [sym_preproc_call] = STATE(4), + [sym_preproc_if] = STATE(4), + [sym_preproc_ifdef] = STATE(4), + [sym_preproc_else] = STATE(1100), + [sym_preproc_elif] = STATE(1100), + [sym_function_definition] = STATE(4), + [sym_declaration] = STATE(4), + [sym_type_definition] = STATE(4), + [sym__declaration_specifiers] = STATE(866), + [sym_linkage_specification] = STATE(4), + [sym_attribute_specifier] = STATE(561), + [sym_compound_statement] = STATE(4), + [sym_storage_class_specifier] = STATE(561), + [sym_type_qualifier] = STATE(561), + [sym__type_specifier] = STATE(837), + [sym_sized_type_specifier] = STATE(837), + [sym_enum_specifier] = STATE(837), + [sym_struct_specifier] = STATE(837), + [sym_union_specifier] = STATE(837), + [sym_labeled_statement] = STATE(4), + [sym_expression_statement] = STATE(4), + [sym_if_statement] = STATE(4), + [sym_switch_statement] = STATE(4), + [sym_case_statement] = STATE(4), + [sym_while_statement] = STATE(4), + [sym_do_statement] = STATE(4), + [sym_for_statement] = STATE(4), + [sym_return_statement] = STATE(4), + [sym_break_statement] = STATE(4), + [sym_continue_statement] = STATE(4), + [sym_goto_statement] = STATE(4), + [sym__expression] = STATE(582), + [sym_comma_expression] = STATE(1083), + [sym_conditional_expression] = STATE(582), + [sym_assignment_expression] = STATE(582), + [sym_pointer_expression] = STATE(532), + [sym_unary_expression] = STATE(582), + [sym_binary_expression] = STATE(582), + [sym_update_expression] = STATE(582), + [sym_cast_expression] = STATE(582), + [sym_sizeof_expression] = STATE(582), + [sym_subscript_expression] = STATE(532), + [sym_call_expression] = STATE(532), + [sym_field_expression] = STATE(532), + [sym_compound_literal_expression] = STATE(582), + [sym_parenthesized_expression] = STATE(532), + [sym_char_literal] = STATE(582), + [sym_concatenated_string] = STATE(582), + [sym_string_literal] = STATE(379), + [sym__empty_declaration] = STATE(4), + [sym_macro_type_specifier] = STATE(837), + [aux_sym_translation_unit_repeat1] = STATE(4), + [aux_sym__declaration_specifiers_repeat1] = STATE(561), + [aux_sym_sized_type_specifier_repeat1] = STATE(704), [sym_identifier] = ACTIONS(85), [aux_sym_preproc_include_token1] = ACTIONS(87), [aux_sym_preproc_def_token1] = ACTIONS(89), @@ -7252,22 +7270,22 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_call] = STATE(17), [sym_preproc_if] = STATE(17), [sym_preproc_ifdef] = STATE(17), - [sym_preproc_else] = STATE(1110), - [sym_preproc_elif] = STATE(1110), + [sym_preproc_else] = STATE(1107), + [sym_preproc_elif] = STATE(1107), [sym_function_definition] = STATE(17), [sym_declaration] = STATE(17), [sym_type_definition] = STATE(17), - [sym__declaration_specifiers] = STATE(870), + [sym__declaration_specifiers] = STATE(866), [sym_linkage_specification] = STATE(17), - [sym_attribute_specifier] = STATE(570), + [sym_attribute_specifier] = STATE(561), [sym_compound_statement] = STATE(17), - [sym_storage_class_specifier] = STATE(570), - [sym_type_qualifier] = STATE(570), - [sym__type_specifier] = STATE(835), - [sym_sized_type_specifier] = STATE(835), - [sym_enum_specifier] = STATE(835), - [sym_struct_specifier] = STATE(835), - [sym_union_specifier] = STATE(835), + [sym_storage_class_specifier] = STATE(561), + [sym_type_qualifier] = STATE(561), + [sym__type_specifier] = STATE(837), + [sym_sized_type_specifier] = STATE(837), + [sym_enum_specifier] = STATE(837), + [sym_struct_specifier] = STATE(837), + [sym_union_specifier] = STATE(837), [sym_labeled_statement] = STATE(17), [sym_expression_statement] = STATE(17), [sym_if_statement] = STATE(17), @@ -7280,29 +7298,29 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(17), [sym_continue_statement] = STATE(17), [sym_goto_statement] = STATE(17), - [sym__expression] = STATE(613), - [sym_comma_expression] = STATE(1185), - [sym_conditional_expression] = STATE(613), - [sym_assignment_expression] = STATE(613), - [sym_pointer_expression] = STATE(505), - [sym_unary_expression] = STATE(613), - [sym_binary_expression] = STATE(613), - [sym_update_expression] = STATE(613), - [sym_cast_expression] = STATE(613), - [sym_sizeof_expression] = STATE(613), - [sym_subscript_expression] = STATE(505), - [sym_call_expression] = STATE(505), - [sym_field_expression] = STATE(505), - [sym_compound_literal_expression] = STATE(613), - [sym_parenthesized_expression] = STATE(505), - [sym_char_literal] = STATE(613), - [sym_concatenated_string] = STATE(613), - [sym_string_literal] = STATE(376), + [sym__expression] = STATE(582), + [sym_comma_expression] = STATE(1083), + [sym_conditional_expression] = STATE(582), + [sym_assignment_expression] = STATE(582), + [sym_pointer_expression] = STATE(532), + [sym_unary_expression] = STATE(582), + [sym_binary_expression] = STATE(582), + [sym_update_expression] = STATE(582), + [sym_cast_expression] = STATE(582), + [sym_sizeof_expression] = STATE(582), + [sym_subscript_expression] = STATE(532), + [sym_call_expression] = STATE(532), + [sym_field_expression] = STATE(532), + [sym_compound_literal_expression] = STATE(582), + [sym_parenthesized_expression] = STATE(532), + [sym_char_literal] = STATE(582), + [sym_concatenated_string] = STATE(582), + [sym_string_literal] = STATE(379), [sym__empty_declaration] = STATE(17), - [sym_macro_type_specifier] = STATE(835), + [sym_macro_type_specifier] = STATE(837), [aux_sym_translation_unit_repeat1] = STATE(17), - [aux_sym__declaration_specifiers_repeat1] = STATE(570), - [aux_sym_sized_type_specifier_repeat1] = STATE(712), + [aux_sym__declaration_specifiers_repeat1] = STATE(561), + [aux_sym_sized_type_specifier_repeat1] = STATE(704), [sym_identifier] = ACTIONS(85), [aux_sym_preproc_include_token1] = ACTIONS(87), [aux_sym_preproc_def_token1] = ACTIONS(89), @@ -7372,63 +7390,63 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [11] = { - [sym_preproc_include] = STATE(6), - [sym_preproc_def] = STATE(6), - [sym_preproc_function_def] = STATE(6), - [sym_preproc_call] = STATE(6), - [sym_preproc_if] = STATE(6), - [sym_preproc_ifdef] = STATE(6), - [sym_preproc_else] = STATE(1100), - [sym_preproc_elif] = STATE(1100), - [sym_function_definition] = STATE(6), - [sym_declaration] = STATE(6), - [sym_type_definition] = STATE(6), - [sym__declaration_specifiers] = STATE(870), - [sym_linkage_specification] = STATE(6), - [sym_attribute_specifier] = STATE(570), - [sym_compound_statement] = STATE(6), - [sym_storage_class_specifier] = STATE(570), - [sym_type_qualifier] = STATE(570), - [sym__type_specifier] = STATE(835), - [sym_sized_type_specifier] = STATE(835), - [sym_enum_specifier] = STATE(835), - [sym_struct_specifier] = STATE(835), - [sym_union_specifier] = STATE(835), - [sym_labeled_statement] = STATE(6), - [sym_expression_statement] = STATE(6), - [sym_if_statement] = STATE(6), - [sym_switch_statement] = STATE(6), - [sym_case_statement] = STATE(6), - [sym_while_statement] = STATE(6), - [sym_do_statement] = STATE(6), - [sym_for_statement] = STATE(6), - [sym_return_statement] = STATE(6), - [sym_break_statement] = STATE(6), - [sym_continue_statement] = STATE(6), - [sym_goto_statement] = STATE(6), - [sym__expression] = STATE(613), - [sym_comma_expression] = STATE(1185), - [sym_conditional_expression] = STATE(613), - [sym_assignment_expression] = STATE(613), - [sym_pointer_expression] = STATE(505), - [sym_unary_expression] = STATE(613), - [sym_binary_expression] = STATE(613), - [sym_update_expression] = STATE(613), - [sym_cast_expression] = STATE(613), - [sym_sizeof_expression] = STATE(613), - [sym_subscript_expression] = STATE(505), - [sym_call_expression] = STATE(505), - [sym_field_expression] = STATE(505), - [sym_compound_literal_expression] = STATE(613), - [sym_parenthesized_expression] = STATE(505), - [sym_char_literal] = STATE(613), - [sym_concatenated_string] = STATE(613), - [sym_string_literal] = STATE(376), - [sym__empty_declaration] = STATE(6), - [sym_macro_type_specifier] = STATE(835), - [aux_sym_translation_unit_repeat1] = STATE(6), - [aux_sym__declaration_specifiers_repeat1] = STATE(570), - [aux_sym_sized_type_specifier_repeat1] = STATE(712), + [sym_preproc_include] = STATE(12), + [sym_preproc_def] = STATE(12), + [sym_preproc_function_def] = STATE(12), + [sym_preproc_call] = STATE(12), + [sym_preproc_if] = STATE(12), + [sym_preproc_ifdef] = STATE(12), + [sym_preproc_else] = STATE(1239), + [sym_preproc_elif] = STATE(1239), + [sym_function_definition] = STATE(12), + [sym_declaration] = STATE(12), + [sym_type_definition] = STATE(12), + [sym__declaration_specifiers] = STATE(866), + [sym_linkage_specification] = STATE(12), + [sym_attribute_specifier] = STATE(561), + [sym_compound_statement] = STATE(12), + [sym_storage_class_specifier] = STATE(561), + [sym_type_qualifier] = STATE(561), + [sym__type_specifier] = STATE(837), + [sym_sized_type_specifier] = STATE(837), + [sym_enum_specifier] = STATE(837), + [sym_struct_specifier] = STATE(837), + [sym_union_specifier] = STATE(837), + [sym_labeled_statement] = STATE(12), + [sym_expression_statement] = STATE(12), + [sym_if_statement] = STATE(12), + [sym_switch_statement] = STATE(12), + [sym_case_statement] = STATE(12), + [sym_while_statement] = STATE(12), + [sym_do_statement] = STATE(12), + [sym_for_statement] = STATE(12), + [sym_return_statement] = STATE(12), + [sym_break_statement] = STATE(12), + [sym_continue_statement] = STATE(12), + [sym_goto_statement] = STATE(12), + [sym__expression] = STATE(582), + [sym_comma_expression] = STATE(1083), + [sym_conditional_expression] = STATE(582), + [sym_assignment_expression] = STATE(582), + [sym_pointer_expression] = STATE(532), + [sym_unary_expression] = STATE(582), + [sym_binary_expression] = STATE(582), + [sym_update_expression] = STATE(582), + [sym_cast_expression] = STATE(582), + [sym_sizeof_expression] = STATE(582), + [sym_subscript_expression] = STATE(532), + [sym_call_expression] = STATE(532), + [sym_field_expression] = STATE(532), + [sym_compound_literal_expression] = STATE(582), + [sym_parenthesized_expression] = STATE(532), + [sym_char_literal] = STATE(582), + [sym_concatenated_string] = STATE(582), + [sym_string_literal] = STATE(379), + [sym__empty_declaration] = STATE(12), + [sym_macro_type_specifier] = STATE(837), + [aux_sym_translation_unit_repeat1] = STATE(12), + [aux_sym__declaration_specifiers_repeat1] = STATE(561), + [aux_sym_sized_type_specifier_repeat1] = STATE(704), [sym_identifier] = ACTIONS(85), [aux_sym_preproc_include_token1] = ACTIONS(87), [aux_sym_preproc_def_token1] = ACTIONS(89), @@ -7498,63 +7516,63 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [12] = { - [sym_preproc_include] = STATE(2), - [sym_preproc_def] = STATE(2), - [sym_preproc_function_def] = STATE(2), - [sym_preproc_call] = STATE(2), - [sym_preproc_if] = STATE(2), - [sym_preproc_ifdef] = STATE(2), - [sym_preproc_else] = STATE(1121), - [sym_preproc_elif] = STATE(1121), - [sym_function_definition] = STATE(2), - [sym_declaration] = STATE(2), - [sym_type_definition] = STATE(2), - [sym__declaration_specifiers] = STATE(870), - [sym_linkage_specification] = STATE(2), - [sym_attribute_specifier] = STATE(570), - [sym_compound_statement] = STATE(2), - [sym_storage_class_specifier] = STATE(570), - [sym_type_qualifier] = STATE(570), - [sym__type_specifier] = STATE(835), - [sym_sized_type_specifier] = STATE(835), - [sym_enum_specifier] = STATE(835), - [sym_struct_specifier] = STATE(835), - [sym_union_specifier] = STATE(835), - [sym_labeled_statement] = STATE(2), - [sym_expression_statement] = STATE(2), - [sym_if_statement] = STATE(2), - [sym_switch_statement] = STATE(2), - [sym_case_statement] = STATE(2), - [sym_while_statement] = STATE(2), - [sym_do_statement] = STATE(2), - [sym_for_statement] = STATE(2), - [sym_return_statement] = STATE(2), - [sym_break_statement] = STATE(2), - [sym_continue_statement] = STATE(2), - [sym_goto_statement] = STATE(2), - [sym__expression] = STATE(613), - [sym_comma_expression] = STATE(1185), - [sym_conditional_expression] = STATE(613), - [sym_assignment_expression] = STATE(613), - [sym_pointer_expression] = STATE(505), - [sym_unary_expression] = STATE(613), - [sym_binary_expression] = STATE(613), - [sym_update_expression] = STATE(613), - [sym_cast_expression] = STATE(613), - [sym_sizeof_expression] = STATE(613), - [sym_subscript_expression] = STATE(505), - [sym_call_expression] = STATE(505), - [sym_field_expression] = STATE(505), - [sym_compound_literal_expression] = STATE(613), - [sym_parenthesized_expression] = STATE(505), - [sym_char_literal] = STATE(613), - [sym_concatenated_string] = STATE(613), - [sym_string_literal] = STATE(376), - [sym__empty_declaration] = STATE(2), - [sym_macro_type_specifier] = STATE(835), - [aux_sym_translation_unit_repeat1] = STATE(2), - [aux_sym__declaration_specifiers_repeat1] = STATE(570), - [aux_sym_sized_type_specifier_repeat1] = STATE(712), + [sym_preproc_include] = STATE(20), + [sym_preproc_def] = STATE(20), + [sym_preproc_function_def] = STATE(20), + [sym_preproc_call] = STATE(20), + [sym_preproc_if] = STATE(20), + [sym_preproc_ifdef] = STATE(20), + [sym_preproc_else] = STATE(1205), + [sym_preproc_elif] = STATE(1205), + [sym_function_definition] = STATE(20), + [sym_declaration] = STATE(20), + [sym_type_definition] = STATE(20), + [sym__declaration_specifiers] = STATE(866), + [sym_linkage_specification] = STATE(20), + [sym_attribute_specifier] = STATE(561), + [sym_compound_statement] = STATE(20), + [sym_storage_class_specifier] = STATE(561), + [sym_type_qualifier] = STATE(561), + [sym__type_specifier] = STATE(837), + [sym_sized_type_specifier] = STATE(837), + [sym_enum_specifier] = STATE(837), + [sym_struct_specifier] = STATE(837), + [sym_union_specifier] = STATE(837), + [sym_labeled_statement] = STATE(20), + [sym_expression_statement] = STATE(20), + [sym_if_statement] = STATE(20), + [sym_switch_statement] = STATE(20), + [sym_case_statement] = STATE(20), + [sym_while_statement] = STATE(20), + [sym_do_statement] = STATE(20), + [sym_for_statement] = STATE(20), + [sym_return_statement] = STATE(20), + [sym_break_statement] = STATE(20), + [sym_continue_statement] = STATE(20), + [sym_goto_statement] = STATE(20), + [sym__expression] = STATE(582), + [sym_comma_expression] = STATE(1083), + [sym_conditional_expression] = STATE(582), + [sym_assignment_expression] = STATE(582), + [sym_pointer_expression] = STATE(532), + [sym_unary_expression] = STATE(582), + [sym_binary_expression] = STATE(582), + [sym_update_expression] = STATE(582), + [sym_cast_expression] = STATE(582), + [sym_sizeof_expression] = STATE(582), + [sym_subscript_expression] = STATE(532), + [sym_call_expression] = STATE(532), + [sym_field_expression] = STATE(532), + [sym_compound_literal_expression] = STATE(582), + [sym_parenthesized_expression] = STATE(532), + [sym_char_literal] = STATE(582), + [sym_concatenated_string] = STATE(582), + [sym_string_literal] = STATE(379), + [sym__empty_declaration] = STATE(20), + [sym_macro_type_specifier] = STATE(837), + [aux_sym_translation_unit_repeat1] = STATE(20), + [aux_sym__declaration_specifiers_repeat1] = STATE(561), + [aux_sym_sized_type_specifier_repeat1] = STATE(704), [sym_identifier] = ACTIONS(85), [aux_sym_preproc_include_token1] = ACTIONS(87), [aux_sym_preproc_def_token1] = ACTIONS(89), @@ -7624,63 +7642,63 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [13] = { - [sym_preproc_include] = STATE(9), - [sym_preproc_def] = STATE(9), - [sym_preproc_function_def] = STATE(9), - [sym_preproc_call] = STATE(9), - [sym_preproc_if] = STATE(9), - [sym_preproc_ifdef] = STATE(9), - [sym_preproc_else] = STATE(1216), - [sym_preproc_elif] = STATE(1216), - [sym_function_definition] = STATE(9), - [sym_declaration] = STATE(9), - [sym_type_definition] = STATE(9), - [sym__declaration_specifiers] = STATE(870), - [sym_linkage_specification] = STATE(9), - [sym_attribute_specifier] = STATE(570), - [sym_compound_statement] = STATE(9), - [sym_storage_class_specifier] = STATE(570), - [sym_type_qualifier] = STATE(570), - [sym__type_specifier] = STATE(835), - [sym_sized_type_specifier] = STATE(835), - [sym_enum_specifier] = STATE(835), - [sym_struct_specifier] = STATE(835), - [sym_union_specifier] = STATE(835), - [sym_labeled_statement] = STATE(9), - [sym_expression_statement] = STATE(9), - [sym_if_statement] = STATE(9), - [sym_switch_statement] = STATE(9), - [sym_case_statement] = STATE(9), - [sym_while_statement] = STATE(9), - [sym_do_statement] = STATE(9), - [sym_for_statement] = STATE(9), - [sym_return_statement] = STATE(9), - [sym_break_statement] = STATE(9), - [sym_continue_statement] = STATE(9), - [sym_goto_statement] = STATE(9), - [sym__expression] = STATE(613), - [sym_comma_expression] = STATE(1185), - [sym_conditional_expression] = STATE(613), - [sym_assignment_expression] = STATE(613), - [sym_pointer_expression] = STATE(505), - [sym_unary_expression] = STATE(613), - [sym_binary_expression] = STATE(613), - [sym_update_expression] = STATE(613), - [sym_cast_expression] = STATE(613), - [sym_sizeof_expression] = STATE(613), - [sym_subscript_expression] = STATE(505), - [sym_call_expression] = STATE(505), - [sym_field_expression] = STATE(505), - [sym_compound_literal_expression] = STATE(613), - [sym_parenthesized_expression] = STATE(505), - [sym_char_literal] = STATE(613), - [sym_concatenated_string] = STATE(613), - [sym_string_literal] = STATE(376), - [sym__empty_declaration] = STATE(9), - [sym_macro_type_specifier] = STATE(835), - [aux_sym_translation_unit_repeat1] = STATE(9), - [aux_sym__declaration_specifiers_repeat1] = STATE(570), - [aux_sym_sized_type_specifier_repeat1] = STATE(712), + [sym_preproc_include] = STATE(15), + [sym_preproc_def] = STATE(15), + [sym_preproc_function_def] = STATE(15), + [sym_preproc_call] = STATE(15), + [sym_preproc_if] = STATE(15), + [sym_preproc_ifdef] = STATE(15), + [sym_preproc_else] = STATE(1163), + [sym_preproc_elif] = STATE(1163), + [sym_function_definition] = STATE(15), + [sym_declaration] = STATE(15), + [sym_type_definition] = STATE(15), + [sym__declaration_specifiers] = STATE(866), + [sym_linkage_specification] = STATE(15), + [sym_attribute_specifier] = STATE(561), + [sym_compound_statement] = STATE(15), + [sym_storage_class_specifier] = STATE(561), + [sym_type_qualifier] = STATE(561), + [sym__type_specifier] = STATE(837), + [sym_sized_type_specifier] = STATE(837), + [sym_enum_specifier] = STATE(837), + [sym_struct_specifier] = STATE(837), + [sym_union_specifier] = STATE(837), + [sym_labeled_statement] = STATE(15), + [sym_expression_statement] = STATE(15), + [sym_if_statement] = STATE(15), + [sym_switch_statement] = STATE(15), + [sym_case_statement] = STATE(15), + [sym_while_statement] = STATE(15), + [sym_do_statement] = STATE(15), + [sym_for_statement] = STATE(15), + [sym_return_statement] = STATE(15), + [sym_break_statement] = STATE(15), + [sym_continue_statement] = STATE(15), + [sym_goto_statement] = STATE(15), + [sym__expression] = STATE(582), + [sym_comma_expression] = STATE(1083), + [sym_conditional_expression] = STATE(582), + [sym_assignment_expression] = STATE(582), + [sym_pointer_expression] = STATE(532), + [sym_unary_expression] = STATE(582), + [sym_binary_expression] = STATE(582), + [sym_update_expression] = STATE(582), + [sym_cast_expression] = STATE(582), + [sym_sizeof_expression] = STATE(582), + [sym_subscript_expression] = STATE(532), + [sym_call_expression] = STATE(532), + [sym_field_expression] = STATE(532), + [sym_compound_literal_expression] = STATE(582), + [sym_parenthesized_expression] = STATE(532), + [sym_char_literal] = STATE(582), + [sym_concatenated_string] = STATE(582), + [sym_string_literal] = STATE(379), + [sym__empty_declaration] = STATE(15), + [sym_macro_type_specifier] = STATE(837), + [aux_sym_translation_unit_repeat1] = STATE(15), + [aux_sym__declaration_specifiers_repeat1] = STATE(561), + [aux_sym_sized_type_specifier_repeat1] = STATE(704), [sym_identifier] = ACTIONS(85), [aux_sym_preproc_include_token1] = ACTIONS(87), [aux_sym_preproc_def_token1] = ACTIONS(89), @@ -7750,63 +7768,63 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [14] = { - [sym_preproc_include] = STATE(20), - [sym_preproc_def] = STATE(20), - [sym_preproc_function_def] = STATE(20), - [sym_preproc_call] = STATE(20), - [sym_preproc_if] = STATE(20), - [sym_preproc_ifdef] = STATE(20), - [sym_preproc_else] = STATE(1151), - [sym_preproc_elif] = STATE(1151), - [sym_function_definition] = STATE(20), - [sym_declaration] = STATE(20), - [sym_type_definition] = STATE(20), - [sym__declaration_specifiers] = STATE(870), - [sym_linkage_specification] = STATE(20), - [sym_attribute_specifier] = STATE(570), - [sym_compound_statement] = STATE(20), - [sym_storage_class_specifier] = STATE(570), - [sym_type_qualifier] = STATE(570), - [sym__type_specifier] = STATE(835), - [sym_sized_type_specifier] = STATE(835), - [sym_enum_specifier] = STATE(835), - [sym_struct_specifier] = STATE(835), - [sym_union_specifier] = STATE(835), - [sym_labeled_statement] = STATE(20), - [sym_expression_statement] = STATE(20), - [sym_if_statement] = STATE(20), - [sym_switch_statement] = STATE(20), - [sym_case_statement] = STATE(20), - [sym_while_statement] = STATE(20), - [sym_do_statement] = STATE(20), - [sym_for_statement] = STATE(20), - [sym_return_statement] = STATE(20), - [sym_break_statement] = STATE(20), - [sym_continue_statement] = STATE(20), - [sym_goto_statement] = STATE(20), - [sym__expression] = STATE(613), - [sym_comma_expression] = STATE(1185), - [sym_conditional_expression] = STATE(613), - [sym_assignment_expression] = STATE(613), - [sym_pointer_expression] = STATE(505), - [sym_unary_expression] = STATE(613), - [sym_binary_expression] = STATE(613), - [sym_update_expression] = STATE(613), - [sym_cast_expression] = STATE(613), - [sym_sizeof_expression] = STATE(613), - [sym_subscript_expression] = STATE(505), - [sym_call_expression] = STATE(505), - [sym_field_expression] = STATE(505), - [sym_compound_literal_expression] = STATE(613), - [sym_parenthesized_expression] = STATE(505), - [sym_char_literal] = STATE(613), - [sym_concatenated_string] = STATE(613), - [sym_string_literal] = STATE(376), - [sym__empty_declaration] = STATE(20), - [sym_macro_type_specifier] = STATE(835), - [aux_sym_translation_unit_repeat1] = STATE(20), - [aux_sym__declaration_specifiers_repeat1] = STATE(570), - [aux_sym_sized_type_specifier_repeat1] = STATE(712), + [sym_preproc_include] = STATE(5), + [sym_preproc_def] = STATE(5), + [sym_preproc_function_def] = STATE(5), + [sym_preproc_call] = STATE(5), + [sym_preproc_if] = STATE(5), + [sym_preproc_ifdef] = STATE(5), + [sym_preproc_else] = STATE(1114), + [sym_preproc_elif] = STATE(1114), + [sym_function_definition] = STATE(5), + [sym_declaration] = STATE(5), + [sym_type_definition] = STATE(5), + [sym__declaration_specifiers] = STATE(866), + [sym_linkage_specification] = STATE(5), + [sym_attribute_specifier] = STATE(561), + [sym_compound_statement] = STATE(5), + [sym_storage_class_specifier] = STATE(561), + [sym_type_qualifier] = STATE(561), + [sym__type_specifier] = STATE(837), + [sym_sized_type_specifier] = STATE(837), + [sym_enum_specifier] = STATE(837), + [sym_struct_specifier] = STATE(837), + [sym_union_specifier] = STATE(837), + [sym_labeled_statement] = STATE(5), + [sym_expression_statement] = STATE(5), + [sym_if_statement] = STATE(5), + [sym_switch_statement] = STATE(5), + [sym_case_statement] = STATE(5), + [sym_while_statement] = STATE(5), + [sym_do_statement] = STATE(5), + [sym_for_statement] = STATE(5), + [sym_return_statement] = STATE(5), + [sym_break_statement] = STATE(5), + [sym_continue_statement] = STATE(5), + [sym_goto_statement] = STATE(5), + [sym__expression] = STATE(582), + [sym_comma_expression] = STATE(1083), + [sym_conditional_expression] = STATE(582), + [sym_assignment_expression] = STATE(582), + [sym_pointer_expression] = STATE(532), + [sym_unary_expression] = STATE(582), + [sym_binary_expression] = STATE(582), + [sym_update_expression] = STATE(582), + [sym_cast_expression] = STATE(582), + [sym_sizeof_expression] = STATE(582), + [sym_subscript_expression] = STATE(532), + [sym_call_expression] = STATE(532), + [sym_field_expression] = STATE(532), + [sym_compound_literal_expression] = STATE(582), + [sym_parenthesized_expression] = STATE(532), + [sym_char_literal] = STATE(582), + [sym_concatenated_string] = STATE(582), + [sym_string_literal] = STATE(379), + [sym__empty_declaration] = STATE(5), + [sym_macro_type_specifier] = STATE(837), + [aux_sym_translation_unit_repeat1] = STATE(5), + [aux_sym__declaration_specifiers_repeat1] = STATE(561), + [aux_sym_sized_type_specifier_repeat1] = STATE(704), [sym_identifier] = ACTIONS(85), [aux_sym_preproc_include_token1] = ACTIONS(87), [aux_sym_preproc_def_token1] = ACTIONS(89), @@ -7882,22 +7900,22 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_call] = STATE(20), [sym_preproc_if] = STATE(20), [sym_preproc_ifdef] = STATE(20), - [sym_preproc_else] = STATE(1123), - [sym_preproc_elif] = STATE(1123), + [sym_preproc_else] = STATE(1131), + [sym_preproc_elif] = STATE(1131), [sym_function_definition] = STATE(20), [sym_declaration] = STATE(20), [sym_type_definition] = STATE(20), - [sym__declaration_specifiers] = STATE(870), + [sym__declaration_specifiers] = STATE(866), [sym_linkage_specification] = STATE(20), - [sym_attribute_specifier] = STATE(570), + [sym_attribute_specifier] = STATE(561), [sym_compound_statement] = STATE(20), - [sym_storage_class_specifier] = STATE(570), - [sym_type_qualifier] = STATE(570), - [sym__type_specifier] = STATE(835), - [sym_sized_type_specifier] = STATE(835), - [sym_enum_specifier] = STATE(835), - [sym_struct_specifier] = STATE(835), - [sym_union_specifier] = STATE(835), + [sym_storage_class_specifier] = STATE(561), + [sym_type_qualifier] = STATE(561), + [sym__type_specifier] = STATE(837), + [sym_sized_type_specifier] = STATE(837), + [sym_enum_specifier] = STATE(837), + [sym_struct_specifier] = STATE(837), + [sym_union_specifier] = STATE(837), [sym_labeled_statement] = STATE(20), [sym_expression_statement] = STATE(20), [sym_if_statement] = STATE(20), @@ -7910,29 +7928,29 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(20), [sym_continue_statement] = STATE(20), [sym_goto_statement] = STATE(20), - [sym__expression] = STATE(613), - [sym_comma_expression] = STATE(1185), - [sym_conditional_expression] = STATE(613), - [sym_assignment_expression] = STATE(613), - [sym_pointer_expression] = STATE(505), - [sym_unary_expression] = STATE(613), - [sym_binary_expression] = STATE(613), - [sym_update_expression] = STATE(613), - [sym_cast_expression] = STATE(613), - [sym_sizeof_expression] = STATE(613), - [sym_subscript_expression] = STATE(505), - [sym_call_expression] = STATE(505), - [sym_field_expression] = STATE(505), - [sym_compound_literal_expression] = STATE(613), - [sym_parenthesized_expression] = STATE(505), - [sym_char_literal] = STATE(613), - [sym_concatenated_string] = STATE(613), - [sym_string_literal] = STATE(376), + [sym__expression] = STATE(582), + [sym_comma_expression] = STATE(1083), + [sym_conditional_expression] = STATE(582), + [sym_assignment_expression] = STATE(582), + [sym_pointer_expression] = STATE(532), + [sym_unary_expression] = STATE(582), + [sym_binary_expression] = STATE(582), + [sym_update_expression] = STATE(582), + [sym_cast_expression] = STATE(582), + [sym_sizeof_expression] = STATE(582), + [sym_subscript_expression] = STATE(532), + [sym_call_expression] = STATE(532), + [sym_field_expression] = STATE(532), + [sym_compound_literal_expression] = STATE(582), + [sym_parenthesized_expression] = STATE(532), + [sym_char_literal] = STATE(582), + [sym_concatenated_string] = STATE(582), + [sym_string_literal] = STATE(379), [sym__empty_declaration] = STATE(20), - [sym_macro_type_specifier] = STATE(835), + [sym_macro_type_specifier] = STATE(837), [aux_sym_translation_unit_repeat1] = STATE(20), - [aux_sym__declaration_specifiers_repeat1] = STATE(570), - [aux_sym_sized_type_specifier_repeat1] = STATE(712), + [aux_sym__declaration_specifiers_repeat1] = STATE(561), + [aux_sym_sized_type_specifier_repeat1] = STATE(704), [sym_identifier] = ACTIONS(85), [aux_sym_preproc_include_token1] = ACTIONS(87), [aux_sym_preproc_def_token1] = ACTIONS(89), @@ -8002,63 +8020,63 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [16] = { - [sym_preproc_include] = STATE(3), - [sym_preproc_def] = STATE(3), - [sym_preproc_function_def] = STATE(3), - [sym_preproc_call] = STATE(3), - [sym_preproc_if] = STATE(3), - [sym_preproc_ifdef] = STATE(3), - [sym_preproc_else] = STATE(1116), - [sym_preproc_elif] = STATE(1116), - [sym_function_definition] = STATE(3), - [sym_declaration] = STATE(3), - [sym_type_definition] = STATE(3), - [sym__declaration_specifiers] = STATE(870), - [sym_linkage_specification] = STATE(3), - [sym_attribute_specifier] = STATE(570), - [sym_compound_statement] = STATE(3), - [sym_storage_class_specifier] = STATE(570), - [sym_type_qualifier] = STATE(570), - [sym__type_specifier] = STATE(835), - [sym_sized_type_specifier] = STATE(835), - [sym_enum_specifier] = STATE(835), - [sym_struct_specifier] = STATE(835), - [sym_union_specifier] = STATE(835), - [sym_labeled_statement] = STATE(3), - [sym_expression_statement] = STATE(3), - [sym_if_statement] = STATE(3), - [sym_switch_statement] = STATE(3), - [sym_case_statement] = STATE(3), - [sym_while_statement] = STATE(3), - [sym_do_statement] = STATE(3), - [sym_for_statement] = STATE(3), - [sym_return_statement] = STATE(3), - [sym_break_statement] = STATE(3), - [sym_continue_statement] = STATE(3), - [sym_goto_statement] = STATE(3), - [sym__expression] = STATE(613), - [sym_comma_expression] = STATE(1185), - [sym_conditional_expression] = STATE(613), - [sym_assignment_expression] = STATE(613), - [sym_pointer_expression] = STATE(505), - [sym_unary_expression] = STATE(613), - [sym_binary_expression] = STATE(613), - [sym_update_expression] = STATE(613), - [sym_cast_expression] = STATE(613), - [sym_sizeof_expression] = STATE(613), - [sym_subscript_expression] = STATE(505), - [sym_call_expression] = STATE(505), - [sym_field_expression] = STATE(505), - [sym_compound_literal_expression] = STATE(613), - [sym_parenthesized_expression] = STATE(505), - [sym_char_literal] = STATE(613), - [sym_concatenated_string] = STATE(613), - [sym_string_literal] = STATE(376), - [sym__empty_declaration] = STATE(3), - [sym_macro_type_specifier] = STATE(835), - [aux_sym_translation_unit_repeat1] = STATE(3), - [aux_sym__declaration_specifiers_repeat1] = STATE(570), - [aux_sym_sized_type_specifier_repeat1] = STATE(712), + [sym_preproc_include] = STATE(19), + [sym_preproc_def] = STATE(19), + [sym_preproc_function_def] = STATE(19), + [sym_preproc_call] = STATE(19), + [sym_preproc_if] = STATE(19), + [sym_preproc_ifdef] = STATE(19), + [sym_preproc_else] = STATE(1133), + [sym_preproc_elif] = STATE(1133), + [sym_function_definition] = STATE(19), + [sym_declaration] = STATE(19), + [sym_type_definition] = STATE(19), + [sym__declaration_specifiers] = STATE(866), + [sym_linkage_specification] = STATE(19), + [sym_attribute_specifier] = STATE(561), + [sym_compound_statement] = STATE(19), + [sym_storage_class_specifier] = STATE(561), + [sym_type_qualifier] = STATE(561), + [sym__type_specifier] = STATE(837), + [sym_sized_type_specifier] = STATE(837), + [sym_enum_specifier] = STATE(837), + [sym_struct_specifier] = STATE(837), + [sym_union_specifier] = STATE(837), + [sym_labeled_statement] = STATE(19), + [sym_expression_statement] = STATE(19), + [sym_if_statement] = STATE(19), + [sym_switch_statement] = STATE(19), + [sym_case_statement] = STATE(19), + [sym_while_statement] = STATE(19), + [sym_do_statement] = STATE(19), + [sym_for_statement] = STATE(19), + [sym_return_statement] = STATE(19), + [sym_break_statement] = STATE(19), + [sym_continue_statement] = STATE(19), + [sym_goto_statement] = STATE(19), + [sym__expression] = STATE(582), + [sym_comma_expression] = STATE(1083), + [sym_conditional_expression] = STATE(582), + [sym_assignment_expression] = STATE(582), + [sym_pointer_expression] = STATE(532), + [sym_unary_expression] = STATE(582), + [sym_binary_expression] = STATE(582), + [sym_update_expression] = STATE(582), + [sym_cast_expression] = STATE(582), + [sym_sizeof_expression] = STATE(582), + [sym_subscript_expression] = STATE(532), + [sym_call_expression] = STATE(532), + [sym_field_expression] = STATE(532), + [sym_compound_literal_expression] = STATE(582), + [sym_parenthesized_expression] = STATE(532), + [sym_char_literal] = STATE(582), + [sym_concatenated_string] = STATE(582), + [sym_string_literal] = STATE(379), + [sym__empty_declaration] = STATE(19), + [sym_macro_type_specifier] = STATE(837), + [aux_sym_translation_unit_repeat1] = STATE(19), + [aux_sym__declaration_specifiers_repeat1] = STATE(561), + [aux_sym_sized_type_specifier_repeat1] = STATE(704), [sym_identifier] = ACTIONS(85), [aux_sym_preproc_include_token1] = ACTIONS(87), [aux_sym_preproc_def_token1] = ACTIONS(89), @@ -8134,22 +8152,22 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_call] = STATE(20), [sym_preproc_if] = STATE(20), [sym_preproc_ifdef] = STATE(20), - [sym_preproc_else] = STATE(1118), - [sym_preproc_elif] = STATE(1118), + [sym_preproc_else] = STATE(1116), + [sym_preproc_elif] = STATE(1116), [sym_function_definition] = STATE(20), [sym_declaration] = STATE(20), [sym_type_definition] = STATE(20), - [sym__declaration_specifiers] = STATE(870), + [sym__declaration_specifiers] = STATE(866), [sym_linkage_specification] = STATE(20), - [sym_attribute_specifier] = STATE(570), + [sym_attribute_specifier] = STATE(561), [sym_compound_statement] = STATE(20), - [sym_storage_class_specifier] = STATE(570), - [sym_type_qualifier] = STATE(570), - [sym__type_specifier] = STATE(835), - [sym_sized_type_specifier] = STATE(835), - [sym_enum_specifier] = STATE(835), - [sym_struct_specifier] = STATE(835), - [sym_union_specifier] = STATE(835), + [sym_storage_class_specifier] = STATE(561), + [sym_type_qualifier] = STATE(561), + [sym__type_specifier] = STATE(837), + [sym_sized_type_specifier] = STATE(837), + [sym_enum_specifier] = STATE(837), + [sym_struct_specifier] = STATE(837), + [sym_union_specifier] = STATE(837), [sym_labeled_statement] = STATE(20), [sym_expression_statement] = STATE(20), [sym_if_statement] = STATE(20), @@ -8162,29 +8180,29 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(20), [sym_continue_statement] = STATE(20), [sym_goto_statement] = STATE(20), - [sym__expression] = STATE(613), - [sym_comma_expression] = STATE(1185), - [sym_conditional_expression] = STATE(613), - [sym_assignment_expression] = STATE(613), - [sym_pointer_expression] = STATE(505), - [sym_unary_expression] = STATE(613), - [sym_binary_expression] = STATE(613), - [sym_update_expression] = STATE(613), - [sym_cast_expression] = STATE(613), - [sym_sizeof_expression] = STATE(613), - [sym_subscript_expression] = STATE(505), - [sym_call_expression] = STATE(505), - [sym_field_expression] = STATE(505), - [sym_compound_literal_expression] = STATE(613), - [sym_parenthesized_expression] = STATE(505), - [sym_char_literal] = STATE(613), - [sym_concatenated_string] = STATE(613), - [sym_string_literal] = STATE(376), + [sym__expression] = STATE(582), + [sym_comma_expression] = STATE(1083), + [sym_conditional_expression] = STATE(582), + [sym_assignment_expression] = STATE(582), + [sym_pointer_expression] = STATE(532), + [sym_unary_expression] = STATE(582), + [sym_binary_expression] = STATE(582), + [sym_update_expression] = STATE(582), + [sym_cast_expression] = STATE(582), + [sym_sizeof_expression] = STATE(582), + [sym_subscript_expression] = STATE(532), + [sym_call_expression] = STATE(532), + [sym_field_expression] = STATE(532), + [sym_compound_literal_expression] = STATE(582), + [sym_parenthesized_expression] = STATE(532), + [sym_char_literal] = STATE(582), + [sym_concatenated_string] = STATE(582), + [sym_string_literal] = STATE(379), [sym__empty_declaration] = STATE(20), - [sym_macro_type_specifier] = STATE(835), + [sym_macro_type_specifier] = STATE(837), [aux_sym_translation_unit_repeat1] = STATE(20), - [aux_sym__declaration_specifiers_repeat1] = STATE(570), - [aux_sym_sized_type_specifier_repeat1] = STATE(712), + [aux_sym__declaration_specifiers_repeat1] = STATE(561), + [aux_sym_sized_type_specifier_repeat1] = STATE(704), [sym_identifier] = ACTIONS(85), [aux_sym_preproc_include_token1] = ACTIONS(87), [aux_sym_preproc_def_token1] = ACTIONS(89), @@ -8254,63 +8272,63 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [18] = { - [sym_preproc_include] = STATE(15), - [sym_preproc_def] = STATE(15), - [sym_preproc_function_def] = STATE(15), - [sym_preproc_call] = STATE(15), - [sym_preproc_if] = STATE(15), - [sym_preproc_ifdef] = STATE(15), - [sym_preproc_else] = STATE(1131), - [sym_preproc_elif] = STATE(1131), - [sym_function_definition] = STATE(15), - [sym_declaration] = STATE(15), - [sym_type_definition] = STATE(15), - [sym__declaration_specifiers] = STATE(870), - [sym_linkage_specification] = STATE(15), - [sym_attribute_specifier] = STATE(570), - [sym_compound_statement] = STATE(15), - [sym_storage_class_specifier] = STATE(570), - [sym_type_qualifier] = STATE(570), - [sym__type_specifier] = STATE(835), - [sym_sized_type_specifier] = STATE(835), - [sym_enum_specifier] = STATE(835), - [sym_struct_specifier] = STATE(835), - [sym_union_specifier] = STATE(835), - [sym_labeled_statement] = STATE(15), - [sym_expression_statement] = STATE(15), - [sym_if_statement] = STATE(15), - [sym_switch_statement] = STATE(15), - [sym_case_statement] = STATE(15), - [sym_while_statement] = STATE(15), - [sym_do_statement] = STATE(15), - [sym_for_statement] = STATE(15), - [sym_return_statement] = STATE(15), - [sym_break_statement] = STATE(15), - [sym_continue_statement] = STATE(15), - [sym_goto_statement] = STATE(15), - [sym__expression] = STATE(613), - [sym_comma_expression] = STATE(1185), - [sym_conditional_expression] = STATE(613), - [sym_assignment_expression] = STATE(613), - [sym_pointer_expression] = STATE(505), - [sym_unary_expression] = STATE(613), - [sym_binary_expression] = STATE(613), - [sym_update_expression] = STATE(613), - [sym_cast_expression] = STATE(613), - [sym_sizeof_expression] = STATE(613), - [sym_subscript_expression] = STATE(505), - [sym_call_expression] = STATE(505), - [sym_field_expression] = STATE(505), - [sym_compound_literal_expression] = STATE(613), - [sym_parenthesized_expression] = STATE(505), - [sym_char_literal] = STATE(613), - [sym_concatenated_string] = STATE(613), - [sym_string_literal] = STATE(376), - [sym__empty_declaration] = STATE(15), - [sym_macro_type_specifier] = STATE(835), - [aux_sym_translation_unit_repeat1] = STATE(15), - [aux_sym__declaration_specifiers_repeat1] = STATE(570), - [aux_sym_sized_type_specifier_repeat1] = STATE(712), + [sym_preproc_include] = STATE(20), + [sym_preproc_def] = STATE(20), + [sym_preproc_function_def] = STATE(20), + [sym_preproc_call] = STATE(20), + [sym_preproc_if] = STATE(20), + [sym_preproc_ifdef] = STATE(20), + [sym_preproc_else] = STATE(1112), + [sym_preproc_elif] = STATE(1112), + [sym_function_definition] = STATE(20), + [sym_declaration] = STATE(20), + [sym_type_definition] = STATE(20), + [sym__declaration_specifiers] = STATE(866), + [sym_linkage_specification] = STATE(20), + [sym_attribute_specifier] = STATE(561), + [sym_compound_statement] = STATE(20), + [sym_storage_class_specifier] = STATE(561), + [sym_type_qualifier] = STATE(561), + [sym__type_specifier] = STATE(837), + [sym_sized_type_specifier] = STATE(837), + [sym_enum_specifier] = STATE(837), + [sym_struct_specifier] = STATE(837), + [sym_union_specifier] = STATE(837), + [sym_labeled_statement] = STATE(20), + [sym_expression_statement] = STATE(20), + [sym_if_statement] = STATE(20), + [sym_switch_statement] = STATE(20), + [sym_case_statement] = STATE(20), + [sym_while_statement] = STATE(20), + [sym_do_statement] = STATE(20), + [sym_for_statement] = STATE(20), + [sym_return_statement] = STATE(20), + [sym_break_statement] = STATE(20), + [sym_continue_statement] = STATE(20), + [sym_goto_statement] = STATE(20), + [sym__expression] = STATE(582), + [sym_comma_expression] = STATE(1083), + [sym_conditional_expression] = STATE(582), + [sym_assignment_expression] = STATE(582), + [sym_pointer_expression] = STATE(532), + [sym_unary_expression] = STATE(582), + [sym_binary_expression] = STATE(582), + [sym_update_expression] = STATE(582), + [sym_cast_expression] = STATE(582), + [sym_sizeof_expression] = STATE(582), + [sym_subscript_expression] = STATE(532), + [sym_call_expression] = STATE(532), + [sym_field_expression] = STATE(532), + [sym_compound_literal_expression] = STATE(582), + [sym_parenthesized_expression] = STATE(532), + [sym_char_literal] = STATE(582), + [sym_concatenated_string] = STATE(582), + [sym_string_literal] = STATE(379), + [sym__empty_declaration] = STATE(20), + [sym_macro_type_specifier] = STATE(837), + [aux_sym_translation_unit_repeat1] = STATE(20), + [aux_sym__declaration_specifiers_repeat1] = STATE(561), + [aux_sym_sized_type_specifier_repeat1] = STATE(704), [sym_identifier] = ACTIONS(85), [aux_sym_preproc_include_token1] = ACTIONS(87), [aux_sym_preproc_def_token1] = ACTIONS(89), @@ -8386,22 +8404,22 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_call] = STATE(20), [sym_preproc_if] = STATE(20), [sym_preproc_ifdef] = STATE(20), - [sym_preproc_else] = STATE(1239), - [sym_preproc_elif] = STATE(1239), + [sym_preproc_else] = STATE(1123), + [sym_preproc_elif] = STATE(1123), [sym_function_definition] = STATE(20), [sym_declaration] = STATE(20), [sym_type_definition] = STATE(20), - [sym__declaration_specifiers] = STATE(870), + [sym__declaration_specifiers] = STATE(866), [sym_linkage_specification] = STATE(20), - [sym_attribute_specifier] = STATE(570), + [sym_attribute_specifier] = STATE(561), [sym_compound_statement] = STATE(20), - [sym_storage_class_specifier] = STATE(570), - [sym_type_qualifier] = STATE(570), - [sym__type_specifier] = STATE(835), - [sym_sized_type_specifier] = STATE(835), - [sym_enum_specifier] = STATE(835), - [sym_struct_specifier] = STATE(835), - [sym_union_specifier] = STATE(835), + [sym_storage_class_specifier] = STATE(561), + [sym_type_qualifier] = STATE(561), + [sym__type_specifier] = STATE(837), + [sym_sized_type_specifier] = STATE(837), + [sym_enum_specifier] = STATE(837), + [sym_struct_specifier] = STATE(837), + [sym_union_specifier] = STATE(837), [sym_labeled_statement] = STATE(20), [sym_expression_statement] = STATE(20), [sym_if_statement] = STATE(20), @@ -8414,29 +8432,29 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(20), [sym_continue_statement] = STATE(20), [sym_goto_statement] = STATE(20), - [sym__expression] = STATE(613), - [sym_comma_expression] = STATE(1185), - [sym_conditional_expression] = STATE(613), - [sym_assignment_expression] = STATE(613), - [sym_pointer_expression] = STATE(505), - [sym_unary_expression] = STATE(613), - [sym_binary_expression] = STATE(613), - [sym_update_expression] = STATE(613), - [sym_cast_expression] = STATE(613), - [sym_sizeof_expression] = STATE(613), - [sym_subscript_expression] = STATE(505), - [sym_call_expression] = STATE(505), - [sym_field_expression] = STATE(505), - [sym_compound_literal_expression] = STATE(613), - [sym_parenthesized_expression] = STATE(505), - [sym_char_literal] = STATE(613), - [sym_concatenated_string] = STATE(613), - [sym_string_literal] = STATE(376), + [sym__expression] = STATE(582), + [sym_comma_expression] = STATE(1083), + [sym_conditional_expression] = STATE(582), + [sym_assignment_expression] = STATE(582), + [sym_pointer_expression] = STATE(532), + [sym_unary_expression] = STATE(582), + [sym_binary_expression] = STATE(582), + [sym_update_expression] = STATE(582), + [sym_cast_expression] = STATE(582), + [sym_sizeof_expression] = STATE(582), + [sym_subscript_expression] = STATE(532), + [sym_call_expression] = STATE(532), + [sym_field_expression] = STATE(532), + [sym_compound_literal_expression] = STATE(582), + [sym_parenthesized_expression] = STATE(532), + [sym_char_literal] = STATE(582), + [sym_concatenated_string] = STATE(582), + [sym_string_literal] = STATE(379), [sym__empty_declaration] = STATE(20), - [sym_macro_type_specifier] = STATE(835), + [sym_macro_type_specifier] = STATE(837), [aux_sym_translation_unit_repeat1] = STATE(20), - [aux_sym__declaration_specifiers_repeat1] = STATE(570), - [aux_sym_sized_type_specifier_repeat1] = STATE(712), + [aux_sym__declaration_specifiers_repeat1] = STATE(561), + [aux_sym_sized_type_specifier_repeat1] = STATE(704), [sym_identifier] = ACTIONS(85), [aux_sym_preproc_include_token1] = ACTIONS(87), [aux_sym_preproc_def_token1] = ACTIONS(89), @@ -8515,17 +8533,17 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_definition] = STATE(20), [sym_declaration] = STATE(20), [sym_type_definition] = STATE(20), - [sym__declaration_specifiers] = STATE(870), + [sym__declaration_specifiers] = STATE(866), [sym_linkage_specification] = STATE(20), - [sym_attribute_specifier] = STATE(570), + [sym_attribute_specifier] = STATE(561), [sym_compound_statement] = STATE(20), - [sym_storage_class_specifier] = STATE(570), - [sym_type_qualifier] = STATE(570), - [sym__type_specifier] = STATE(835), - [sym_sized_type_specifier] = STATE(835), - [sym_enum_specifier] = STATE(835), - [sym_struct_specifier] = STATE(835), - [sym_union_specifier] = STATE(835), + [sym_storage_class_specifier] = STATE(561), + [sym_type_qualifier] = STATE(561), + [sym__type_specifier] = STATE(837), + [sym_sized_type_specifier] = STATE(837), + [sym_enum_specifier] = STATE(837), + [sym_struct_specifier] = STATE(837), + [sym_union_specifier] = STATE(837), [sym_labeled_statement] = STATE(20), [sym_expression_statement] = STATE(20), [sym_if_statement] = STATE(20), @@ -8538,29 +8556,29 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(20), [sym_continue_statement] = STATE(20), [sym_goto_statement] = STATE(20), - [sym__expression] = STATE(613), - [sym_comma_expression] = STATE(1185), - [sym_conditional_expression] = STATE(613), - [sym_assignment_expression] = STATE(613), - [sym_pointer_expression] = STATE(505), - [sym_unary_expression] = STATE(613), - [sym_binary_expression] = STATE(613), - [sym_update_expression] = STATE(613), - [sym_cast_expression] = STATE(613), - [sym_sizeof_expression] = STATE(613), - [sym_subscript_expression] = STATE(505), - [sym_call_expression] = STATE(505), - [sym_field_expression] = STATE(505), - [sym_compound_literal_expression] = STATE(613), - [sym_parenthesized_expression] = STATE(505), - [sym_char_literal] = STATE(613), - [sym_concatenated_string] = STATE(613), - [sym_string_literal] = STATE(376), + [sym__expression] = STATE(582), + [sym_comma_expression] = STATE(1083), + [sym_conditional_expression] = STATE(582), + [sym_assignment_expression] = STATE(582), + [sym_pointer_expression] = STATE(532), + [sym_unary_expression] = STATE(582), + [sym_binary_expression] = STATE(582), + [sym_update_expression] = STATE(582), + [sym_cast_expression] = STATE(582), + [sym_sizeof_expression] = STATE(582), + [sym_subscript_expression] = STATE(532), + [sym_call_expression] = STATE(532), + [sym_field_expression] = STATE(532), + [sym_compound_literal_expression] = STATE(582), + [sym_parenthesized_expression] = STATE(532), + [sym_char_literal] = STATE(582), + [sym_concatenated_string] = STATE(582), + [sym_string_literal] = STATE(379), [sym__empty_declaration] = STATE(20), - [sym_macro_type_specifier] = STATE(835), + [sym_macro_type_specifier] = STATE(837), [aux_sym_translation_unit_repeat1] = STATE(20), - [aux_sym__declaration_specifiers_repeat1] = STATE(570), - [aux_sym_sized_type_specifier_repeat1] = STATE(712), + [aux_sym__declaration_specifiers_repeat1] = STATE(561), + [aux_sym_sized_type_specifier_repeat1] = STATE(704), [sym_identifier] = ACTIONS(173), [aux_sym_preproc_include_token1] = ACTIONS(176), [aux_sym_preproc_def_token1] = ACTIONS(179), @@ -8630,61 +8648,61 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [21] = { - [sym_preproc_include] = STATE(38), - [sym_preproc_def] = STATE(38), - [sym_preproc_function_def] = STATE(38), - [sym_preproc_call] = STATE(38), - [sym_preproc_if] = STATE(38), - [sym_preproc_ifdef] = STATE(38), - [sym_function_definition] = STATE(38), - [sym_declaration] = STATE(38), - [sym_type_definition] = STATE(38), - [sym__declaration_specifiers] = STATE(874), - [sym_linkage_specification] = STATE(38), - [sym_attribute_specifier] = STATE(570), - [sym_compound_statement] = STATE(38), - [sym_storage_class_specifier] = STATE(570), - [sym_type_qualifier] = STATE(570), - [sym__type_specifier] = STATE(845), - [sym_sized_type_specifier] = STATE(845), - [sym_enum_specifier] = STATE(845), - [sym_struct_specifier] = STATE(845), - [sym_union_specifier] = STATE(845), - [sym_labeled_statement] = STATE(38), - [sym_expression_statement] = STATE(38), - [sym_if_statement] = STATE(38), - [sym_switch_statement] = STATE(38), - [sym_case_statement] = STATE(38), - [sym_while_statement] = STATE(38), - [sym_do_statement] = STATE(38), - [sym_for_statement] = STATE(38), - [sym_return_statement] = STATE(38), - [sym_break_statement] = STATE(38), - [sym_continue_statement] = STATE(38), - [sym_goto_statement] = STATE(38), - [sym__expression] = STATE(616), - [sym_comma_expression] = STATE(1170), - [sym_conditional_expression] = STATE(616), - [sym_assignment_expression] = STATE(616), - [sym_pointer_expression] = STATE(505), - [sym_unary_expression] = STATE(616), - [sym_binary_expression] = STATE(616), - [sym_update_expression] = STATE(616), - [sym_cast_expression] = STATE(616), - [sym_sizeof_expression] = STATE(616), - [sym_subscript_expression] = STATE(505), - [sym_call_expression] = STATE(505), - [sym_field_expression] = STATE(505), - [sym_compound_literal_expression] = STATE(616), - [sym_parenthesized_expression] = STATE(505), - [sym_char_literal] = STATE(616), - [sym_concatenated_string] = STATE(616), - [sym_string_literal] = STATE(376), - [sym__empty_declaration] = STATE(38), - [sym_macro_type_specifier] = STATE(845), - [aux_sym_translation_unit_repeat1] = STATE(38), - [aux_sym__declaration_specifiers_repeat1] = STATE(570), - [aux_sym_sized_type_specifier_repeat1] = STATE(712), + [sym_preproc_include] = STATE(34), + [sym_preproc_def] = STATE(34), + [sym_preproc_function_def] = STATE(34), + [sym_preproc_call] = STATE(34), + [sym_preproc_if] = STATE(34), + [sym_preproc_ifdef] = STATE(34), + [sym_function_definition] = STATE(34), + [sym_declaration] = STATE(34), + [sym_type_definition] = STATE(34), + [sym__declaration_specifiers] = STATE(865), + [sym_linkage_specification] = STATE(34), + [sym_attribute_specifier] = STATE(561), + [sym_compound_statement] = STATE(34), + [sym_storage_class_specifier] = STATE(561), + [sym_type_qualifier] = STATE(561), + [sym__type_specifier] = STATE(821), + [sym_sized_type_specifier] = STATE(821), + [sym_enum_specifier] = STATE(821), + [sym_struct_specifier] = STATE(821), + [sym_union_specifier] = STATE(821), + [sym_labeled_statement] = STATE(34), + [sym_expression_statement] = STATE(34), + [sym_if_statement] = STATE(34), + [sym_switch_statement] = STATE(34), + [sym_case_statement] = STATE(34), + [sym_while_statement] = STATE(34), + [sym_do_statement] = STATE(34), + [sym_for_statement] = STATE(34), + [sym_return_statement] = STATE(34), + [sym_break_statement] = STATE(34), + [sym_continue_statement] = STATE(34), + [sym_goto_statement] = STATE(34), + [sym__expression] = STATE(568), + [sym_comma_expression] = STATE(1210), + [sym_conditional_expression] = STATE(568), + [sym_assignment_expression] = STATE(568), + [sym_pointer_expression] = STATE(532), + [sym_unary_expression] = STATE(568), + [sym_binary_expression] = STATE(568), + [sym_update_expression] = STATE(568), + [sym_cast_expression] = STATE(568), + [sym_sizeof_expression] = STATE(568), + [sym_subscript_expression] = STATE(532), + [sym_call_expression] = STATE(532), + [sym_field_expression] = STATE(532), + [sym_compound_literal_expression] = STATE(568), + [sym_parenthesized_expression] = STATE(532), + [sym_char_literal] = STATE(568), + [sym_concatenated_string] = STATE(568), + [sym_string_literal] = STATE(379), + [sym__empty_declaration] = STATE(34), + [sym_macro_type_specifier] = STATE(821), + [aux_sym_translation_unit_repeat1] = STATE(34), + [aux_sym__declaration_specifiers_repeat1] = STATE(561), + [aux_sym_sized_type_specifier_repeat1] = STATE(704), [sym_identifier] = ACTIONS(292), [aux_sym_preproc_include_token1] = ACTIONS(294), [aux_sym_preproc_def_token1] = ACTIONS(296), @@ -8752,183 +8770,61 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [22] = { - [sym_preproc_include] = STATE(22), - [sym_preproc_def] = STATE(22), - [sym_preproc_function_def] = STATE(22), - [sym_preproc_call] = STATE(22), - [sym_preproc_if] = STATE(22), - [sym_preproc_ifdef] = STATE(22), - [sym_function_definition] = STATE(22), - [sym_declaration] = STATE(22), - [sym_type_definition] = STATE(22), - [sym__declaration_specifiers] = STATE(877), - [sym_linkage_specification] = STATE(22), - [sym_attribute_specifier] = STATE(570), - [sym_compound_statement] = STATE(22), - [sym_storage_class_specifier] = STATE(570), - [sym_type_qualifier] = STATE(570), - [sym__type_specifier] = STATE(837), - [sym_sized_type_specifier] = STATE(837), - [sym_enum_specifier] = STATE(837), - [sym_struct_specifier] = STATE(837), - [sym_union_specifier] = STATE(837), - [sym_labeled_statement] = STATE(22), - [sym_expression_statement] = STATE(22), - [sym_if_statement] = STATE(22), - [sym_switch_statement] = STATE(22), - [sym_case_statement] = STATE(22), - [sym_while_statement] = STATE(22), - [sym_do_statement] = STATE(22), - [sym_for_statement] = STATE(22), - [sym_return_statement] = STATE(22), - [sym_break_statement] = STATE(22), - [sym_continue_statement] = STATE(22), - [sym_goto_statement] = STATE(22), - [sym__expression] = STATE(596), - [sym_comma_expression] = STATE(1096), - [sym_conditional_expression] = STATE(596), - [sym_assignment_expression] = STATE(596), - [sym_pointer_expression] = STATE(505), - [sym_unary_expression] = STATE(596), - [sym_binary_expression] = STATE(596), - [sym_update_expression] = STATE(596), - [sym_cast_expression] = STATE(596), - [sym_sizeof_expression] = STATE(596), - [sym_subscript_expression] = STATE(505), - [sym_call_expression] = STATE(505), - [sym_field_expression] = STATE(505), - [sym_compound_literal_expression] = STATE(596), - [sym_parenthesized_expression] = STATE(505), - [sym_char_literal] = STATE(596), - [sym_concatenated_string] = STATE(596), - [sym_string_literal] = STATE(376), - [sym__empty_declaration] = STATE(22), - [sym_macro_type_specifier] = STATE(837), - [aux_sym_translation_unit_repeat1] = STATE(22), - [aux_sym__declaration_specifiers_repeat1] = STATE(570), - [aux_sym_sized_type_specifier_repeat1] = STATE(712), - [sym_identifier] = ACTIONS(342), - [aux_sym_preproc_include_token1] = ACTIONS(345), - [aux_sym_preproc_def_token1] = ACTIONS(348), - [aux_sym_preproc_if_token1] = ACTIONS(351), - [aux_sym_preproc_if_token2] = ACTIONS(185), - [aux_sym_preproc_ifdef_token1] = ACTIONS(354), - [aux_sym_preproc_ifdef_token2] = ACTIONS(354), - [sym_preproc_directive] = ACTIONS(357), - [anon_sym_LPAREN2] = ACTIONS(193), - [anon_sym_BANG] = ACTIONS(196), - [anon_sym_TILDE] = ACTIONS(196), - [anon_sym_DASH] = ACTIONS(199), - [anon_sym_PLUS] = ACTIONS(199), - [anon_sym_STAR] = ACTIONS(202), - [anon_sym_AMP] = ACTIONS(202), - [anon_sym_SEMI] = ACTIONS(360), - [anon_sym_typedef] = ACTIONS(363), - [anon_sym_extern] = ACTIONS(366), - [anon_sym___attribute__] = ACTIONS(214), - [anon_sym_LBRACE] = ACTIONS(369), - [anon_sym_static] = ACTIONS(220), - [anon_sym_auto] = ACTIONS(220), - [anon_sym_register] = ACTIONS(220), - [anon_sym_inline] = ACTIONS(220), - [anon_sym_const] = ACTIONS(223), - [anon_sym_volatile] = ACTIONS(223), - [anon_sym_restrict] = ACTIONS(223), - [anon_sym__Atomic] = ACTIONS(223), - [anon_sym_signed] = ACTIONS(226), - [anon_sym_unsigned] = ACTIONS(226), - [anon_sym_long] = ACTIONS(226), - [anon_sym_short] = ACTIONS(226), - [sym_primitive_type] = ACTIONS(372), - [anon_sym_enum] = ACTIONS(232), - [anon_sym_struct] = ACTIONS(235), - [anon_sym_union] = ACTIONS(238), - [anon_sym_if] = ACTIONS(375), - [anon_sym_switch] = ACTIONS(378), - [anon_sym_case] = ACTIONS(381), - [anon_sym_default] = ACTIONS(384), - [anon_sym_while] = ACTIONS(387), - [anon_sym_do] = ACTIONS(390), - [anon_sym_for] = ACTIONS(393), - [anon_sym_return] = ACTIONS(396), - [anon_sym_break] = ACTIONS(399), - [anon_sym_continue] = ACTIONS(402), - [anon_sym_goto] = ACTIONS(405), - [anon_sym_DASH_DASH] = ACTIONS(274), - [anon_sym_PLUS_PLUS] = ACTIONS(274), - [anon_sym_sizeof] = ACTIONS(277), - [sym_number_literal] = ACTIONS(408), - [anon_sym_L_SQUOTE] = ACTIONS(283), - [anon_sym_u_SQUOTE] = ACTIONS(283), - [anon_sym_U_SQUOTE] = ACTIONS(283), - [anon_sym_u8_SQUOTE] = ACTIONS(283), - [anon_sym_SQUOTE] = ACTIONS(283), - [anon_sym_L_DQUOTE] = ACTIONS(286), - [anon_sym_u_DQUOTE] = ACTIONS(286), - [anon_sym_U_DQUOTE] = ACTIONS(286), - [anon_sym_u8_DQUOTE] = ACTIONS(286), - [anon_sym_DQUOTE] = ACTIONS(286), - [sym_true] = ACTIONS(411), - [sym_false] = ACTIONS(411), - [sym_null] = ACTIONS(411), - [sym_comment] = ACTIONS(3), - }, - [23] = { - [sym_preproc_include] = STATE(33), - [sym_preproc_def] = STATE(33), - [sym_preproc_function_def] = STATE(33), - [sym_preproc_call] = STATE(33), - [sym_preproc_if] = STATE(33), - [sym_preproc_ifdef] = STATE(33), - [sym_function_definition] = STATE(33), - [sym_declaration] = STATE(33), - [sym_type_definition] = STATE(33), - [sym__declaration_specifiers] = STATE(874), - [sym_linkage_specification] = STATE(33), - [sym_attribute_specifier] = STATE(570), - [sym_compound_statement] = STATE(33), - [sym_storage_class_specifier] = STATE(570), - [sym_type_qualifier] = STATE(570), - [sym__type_specifier] = STATE(845), - [sym_sized_type_specifier] = STATE(845), - [sym_enum_specifier] = STATE(845), - [sym_struct_specifier] = STATE(845), - [sym_union_specifier] = STATE(845), - [sym_labeled_statement] = STATE(33), - [sym_expression_statement] = STATE(33), - [sym_if_statement] = STATE(33), - [sym_switch_statement] = STATE(33), - [sym_case_statement] = STATE(33), - [sym_while_statement] = STATE(33), - [sym_do_statement] = STATE(33), - [sym_for_statement] = STATE(33), - [sym_return_statement] = STATE(33), - [sym_break_statement] = STATE(33), - [sym_continue_statement] = STATE(33), - [sym_goto_statement] = STATE(33), - [sym__expression] = STATE(616), - [sym_comma_expression] = STATE(1170), - [sym_conditional_expression] = STATE(616), - [sym_assignment_expression] = STATE(616), - [sym_pointer_expression] = STATE(505), - [sym_unary_expression] = STATE(616), - [sym_binary_expression] = STATE(616), - [sym_update_expression] = STATE(616), - [sym_cast_expression] = STATE(616), - [sym_sizeof_expression] = STATE(616), - [sym_subscript_expression] = STATE(505), - [sym_call_expression] = STATE(505), - [sym_field_expression] = STATE(505), - [sym_compound_literal_expression] = STATE(616), - [sym_parenthesized_expression] = STATE(505), - [sym_char_literal] = STATE(616), - [sym_concatenated_string] = STATE(616), - [sym_string_literal] = STATE(376), - [sym__empty_declaration] = STATE(33), - [sym_macro_type_specifier] = STATE(845), - [aux_sym_translation_unit_repeat1] = STATE(33), - [aux_sym__declaration_specifiers_repeat1] = STATE(570), - [aux_sym_sized_type_specifier_repeat1] = STATE(712), + [sym_preproc_include] = STATE(39), + [sym_preproc_def] = STATE(39), + [sym_preproc_function_def] = STATE(39), + [sym_preproc_call] = STATE(39), + [sym_preproc_if] = STATE(39), + [sym_preproc_ifdef] = STATE(39), + [sym_function_definition] = STATE(39), + [sym_declaration] = STATE(39), + [sym_type_definition] = STATE(39), + [sym__declaration_specifiers] = STATE(865), + [sym_linkage_specification] = STATE(39), + [sym_attribute_specifier] = STATE(561), + [sym_compound_statement] = STATE(39), + [sym_storage_class_specifier] = STATE(561), + [sym_type_qualifier] = STATE(561), + [sym__type_specifier] = STATE(821), + [sym_sized_type_specifier] = STATE(821), + [sym_enum_specifier] = STATE(821), + [sym_struct_specifier] = STATE(821), + [sym_union_specifier] = STATE(821), + [sym_labeled_statement] = STATE(39), + [sym_expression_statement] = STATE(39), + [sym_if_statement] = STATE(39), + [sym_switch_statement] = STATE(39), + [sym_case_statement] = STATE(39), + [sym_while_statement] = STATE(39), + [sym_do_statement] = STATE(39), + [sym_for_statement] = STATE(39), + [sym_return_statement] = STATE(39), + [sym_break_statement] = STATE(39), + [sym_continue_statement] = STATE(39), + [sym_goto_statement] = STATE(39), + [sym__expression] = STATE(568), + [sym_comma_expression] = STATE(1210), + [sym_conditional_expression] = STATE(568), + [sym_assignment_expression] = STATE(568), + [sym_pointer_expression] = STATE(532), + [sym_unary_expression] = STATE(568), + [sym_binary_expression] = STATE(568), + [sym_update_expression] = STATE(568), + [sym_cast_expression] = STATE(568), + [sym_sizeof_expression] = STATE(568), + [sym_subscript_expression] = STATE(532), + [sym_call_expression] = STATE(532), + [sym_field_expression] = STATE(532), + [sym_compound_literal_expression] = STATE(568), + [sym_parenthesized_expression] = STATE(532), + [sym_char_literal] = STATE(568), + [sym_concatenated_string] = STATE(568), + [sym_string_literal] = STATE(379), + [sym__empty_declaration] = STATE(39), + [sym_macro_type_specifier] = STATE(821), + [aux_sym_translation_unit_repeat1] = STATE(39), + [aux_sym__declaration_specifiers_repeat1] = STATE(561), + [aux_sym_sized_type_specifier_repeat1] = STATE(704), [sym_identifier] = ACTIONS(292), [aux_sym_preproc_include_token1] = ACTIONS(294), [aux_sym_preproc_def_token1] = ACTIONS(296), @@ -8948,7 +8844,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_extern] = ACTIONS(308), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACE] = ACTIONS(310), - [anon_sym_RBRACE] = ACTIONS(414), + [anon_sym_RBRACE] = ACTIONS(342), [anon_sym_static] = ACTIONS(37), [anon_sym_auto] = ACTIONS(37), [anon_sym_register] = ACTIONS(37), @@ -8995,62 +8891,62 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(340), [sym_comment] = ACTIONS(3), }, - [24] = { - [sym_preproc_include] = STATE(33), - [sym_preproc_def] = STATE(33), - [sym_preproc_function_def] = STATE(33), - [sym_preproc_call] = STATE(33), - [sym_preproc_if] = STATE(33), - [sym_preproc_ifdef] = STATE(33), - [sym_function_definition] = STATE(33), - [sym_declaration] = STATE(33), - [sym_type_definition] = STATE(33), - [sym__declaration_specifiers] = STATE(874), - [sym_linkage_specification] = STATE(33), - [sym_attribute_specifier] = STATE(570), - [sym_compound_statement] = STATE(33), - [sym_storage_class_specifier] = STATE(570), - [sym_type_qualifier] = STATE(570), - [sym__type_specifier] = STATE(845), - [sym_sized_type_specifier] = STATE(845), - [sym_enum_specifier] = STATE(845), - [sym_struct_specifier] = STATE(845), - [sym_union_specifier] = STATE(845), - [sym_labeled_statement] = STATE(33), - [sym_expression_statement] = STATE(33), - [sym_if_statement] = STATE(33), - [sym_switch_statement] = STATE(33), - [sym_case_statement] = STATE(33), - [sym_while_statement] = STATE(33), - [sym_do_statement] = STATE(33), - [sym_for_statement] = STATE(33), - [sym_return_statement] = STATE(33), - [sym_break_statement] = STATE(33), - [sym_continue_statement] = STATE(33), - [sym_goto_statement] = STATE(33), - [sym__expression] = STATE(616), - [sym_comma_expression] = STATE(1170), - [sym_conditional_expression] = STATE(616), - [sym_assignment_expression] = STATE(616), - [sym_pointer_expression] = STATE(505), - [sym_unary_expression] = STATE(616), - [sym_binary_expression] = STATE(616), - [sym_update_expression] = STATE(616), - [sym_cast_expression] = STATE(616), - [sym_sizeof_expression] = STATE(616), - [sym_subscript_expression] = STATE(505), - [sym_call_expression] = STATE(505), - [sym_field_expression] = STATE(505), - [sym_compound_literal_expression] = STATE(616), - [sym_parenthesized_expression] = STATE(505), - [sym_char_literal] = STATE(616), - [sym_concatenated_string] = STATE(616), - [sym_string_literal] = STATE(376), - [sym__empty_declaration] = STATE(33), - [sym_macro_type_specifier] = STATE(845), - [aux_sym_translation_unit_repeat1] = STATE(33), - [aux_sym__declaration_specifiers_repeat1] = STATE(570), - [aux_sym_sized_type_specifier_repeat1] = STATE(712), + [23] = { + [sym_preproc_include] = STATE(32), + [sym_preproc_def] = STATE(32), + [sym_preproc_function_def] = STATE(32), + [sym_preproc_call] = STATE(32), + [sym_preproc_if] = STATE(32), + [sym_preproc_ifdef] = STATE(32), + [sym_function_definition] = STATE(32), + [sym_declaration] = STATE(32), + [sym_type_definition] = STATE(32), + [sym__declaration_specifiers] = STATE(865), + [sym_linkage_specification] = STATE(32), + [sym_attribute_specifier] = STATE(561), + [sym_compound_statement] = STATE(32), + [sym_storage_class_specifier] = STATE(561), + [sym_type_qualifier] = STATE(561), + [sym__type_specifier] = STATE(821), + [sym_sized_type_specifier] = STATE(821), + [sym_enum_specifier] = STATE(821), + [sym_struct_specifier] = STATE(821), + [sym_union_specifier] = STATE(821), + [sym_labeled_statement] = STATE(32), + [sym_expression_statement] = STATE(32), + [sym_if_statement] = STATE(32), + [sym_switch_statement] = STATE(32), + [sym_case_statement] = STATE(32), + [sym_while_statement] = STATE(32), + [sym_do_statement] = STATE(32), + [sym_for_statement] = STATE(32), + [sym_return_statement] = STATE(32), + [sym_break_statement] = STATE(32), + [sym_continue_statement] = STATE(32), + [sym_goto_statement] = STATE(32), + [sym__expression] = STATE(568), + [sym_comma_expression] = STATE(1210), + [sym_conditional_expression] = STATE(568), + [sym_assignment_expression] = STATE(568), + [sym_pointer_expression] = STATE(532), + [sym_unary_expression] = STATE(568), + [sym_binary_expression] = STATE(568), + [sym_update_expression] = STATE(568), + [sym_cast_expression] = STATE(568), + [sym_sizeof_expression] = STATE(568), + [sym_subscript_expression] = STATE(532), + [sym_call_expression] = STATE(532), + [sym_field_expression] = STATE(532), + [sym_compound_literal_expression] = STATE(568), + [sym_parenthesized_expression] = STATE(532), + [sym_char_literal] = STATE(568), + [sym_concatenated_string] = STATE(568), + [sym_string_literal] = STATE(379), + [sym__empty_declaration] = STATE(32), + [sym_macro_type_specifier] = STATE(821), + [aux_sym_translation_unit_repeat1] = STATE(32), + [aux_sym__declaration_specifiers_repeat1] = STATE(561), + [aux_sym_sized_type_specifier_repeat1] = STATE(704), [sym_identifier] = ACTIONS(292), [aux_sym_preproc_include_token1] = ACTIONS(294), [aux_sym_preproc_def_token1] = ACTIONS(296), @@ -9070,7 +8966,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_extern] = ACTIONS(308), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACE] = ACTIONS(310), - [anon_sym_RBRACE] = ACTIONS(416), + [anon_sym_RBRACE] = ACTIONS(344), [anon_sym_static] = ACTIONS(37), [anon_sym_auto] = ACTIONS(37), [anon_sym_register] = ACTIONS(37), @@ -9117,62 +9013,62 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(340), [sym_comment] = ACTIONS(3), }, - [25] = { - [sym_preproc_include] = STATE(37), - [sym_preproc_def] = STATE(37), - [sym_preproc_function_def] = STATE(37), - [sym_preproc_call] = STATE(37), - [sym_preproc_if] = STATE(37), - [sym_preproc_ifdef] = STATE(37), - [sym_function_definition] = STATE(37), - [sym_declaration] = STATE(37), - [sym_type_definition] = STATE(37), - [sym__declaration_specifiers] = STATE(874), - [sym_linkage_specification] = STATE(37), - [sym_attribute_specifier] = STATE(570), - [sym_compound_statement] = STATE(37), - [sym_storage_class_specifier] = STATE(570), - [sym_type_qualifier] = STATE(570), - [sym__type_specifier] = STATE(845), - [sym_sized_type_specifier] = STATE(845), - [sym_enum_specifier] = STATE(845), - [sym_struct_specifier] = STATE(845), - [sym_union_specifier] = STATE(845), - [sym_labeled_statement] = STATE(37), - [sym_expression_statement] = STATE(37), - [sym_if_statement] = STATE(37), - [sym_switch_statement] = STATE(37), - [sym_case_statement] = STATE(37), - [sym_while_statement] = STATE(37), - [sym_do_statement] = STATE(37), - [sym_for_statement] = STATE(37), - [sym_return_statement] = STATE(37), - [sym_break_statement] = STATE(37), - [sym_continue_statement] = STATE(37), - [sym_goto_statement] = STATE(37), - [sym__expression] = STATE(616), - [sym_comma_expression] = STATE(1170), - [sym_conditional_expression] = STATE(616), - [sym_assignment_expression] = STATE(616), - [sym_pointer_expression] = STATE(505), - [sym_unary_expression] = STATE(616), - [sym_binary_expression] = STATE(616), - [sym_update_expression] = STATE(616), - [sym_cast_expression] = STATE(616), - [sym_sizeof_expression] = STATE(616), - [sym_subscript_expression] = STATE(505), - [sym_call_expression] = STATE(505), - [sym_field_expression] = STATE(505), - [sym_compound_literal_expression] = STATE(616), - [sym_parenthesized_expression] = STATE(505), - [sym_char_literal] = STATE(616), - [sym_concatenated_string] = STATE(616), - [sym_string_literal] = STATE(376), - [sym__empty_declaration] = STATE(37), - [sym_macro_type_specifier] = STATE(845), - [aux_sym_translation_unit_repeat1] = STATE(37), - [aux_sym__declaration_specifiers_repeat1] = STATE(570), - [aux_sym_sized_type_specifier_repeat1] = STATE(712), + [24] = { + [sym_preproc_include] = STATE(25), + [sym_preproc_def] = STATE(25), + [sym_preproc_function_def] = STATE(25), + [sym_preproc_call] = STATE(25), + [sym_preproc_if] = STATE(25), + [sym_preproc_ifdef] = STATE(25), + [sym_function_definition] = STATE(25), + [sym_declaration] = STATE(25), + [sym_type_definition] = STATE(25), + [sym__declaration_specifiers] = STATE(865), + [sym_linkage_specification] = STATE(25), + [sym_attribute_specifier] = STATE(561), + [sym_compound_statement] = STATE(25), + [sym_storage_class_specifier] = STATE(561), + [sym_type_qualifier] = STATE(561), + [sym__type_specifier] = STATE(821), + [sym_sized_type_specifier] = STATE(821), + [sym_enum_specifier] = STATE(821), + [sym_struct_specifier] = STATE(821), + [sym_union_specifier] = STATE(821), + [sym_labeled_statement] = STATE(25), + [sym_expression_statement] = STATE(25), + [sym_if_statement] = STATE(25), + [sym_switch_statement] = STATE(25), + [sym_case_statement] = STATE(25), + [sym_while_statement] = STATE(25), + [sym_do_statement] = STATE(25), + [sym_for_statement] = STATE(25), + [sym_return_statement] = STATE(25), + [sym_break_statement] = STATE(25), + [sym_continue_statement] = STATE(25), + [sym_goto_statement] = STATE(25), + [sym__expression] = STATE(568), + [sym_comma_expression] = STATE(1210), + [sym_conditional_expression] = STATE(568), + [sym_assignment_expression] = STATE(568), + [sym_pointer_expression] = STATE(532), + [sym_unary_expression] = STATE(568), + [sym_binary_expression] = STATE(568), + [sym_update_expression] = STATE(568), + [sym_cast_expression] = STATE(568), + [sym_sizeof_expression] = STATE(568), + [sym_subscript_expression] = STATE(532), + [sym_call_expression] = STATE(532), + [sym_field_expression] = STATE(532), + [sym_compound_literal_expression] = STATE(568), + [sym_parenthesized_expression] = STATE(532), + [sym_char_literal] = STATE(568), + [sym_concatenated_string] = STATE(568), + [sym_string_literal] = STATE(379), + [sym__empty_declaration] = STATE(25), + [sym_macro_type_specifier] = STATE(821), + [aux_sym_translation_unit_repeat1] = STATE(25), + [aux_sym__declaration_specifiers_repeat1] = STATE(561), + [aux_sym_sized_type_specifier_repeat1] = STATE(704), [sym_identifier] = ACTIONS(292), [aux_sym_preproc_include_token1] = ACTIONS(294), [aux_sym_preproc_def_token1] = ACTIONS(296), @@ -9192,7 +9088,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_extern] = ACTIONS(308), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACE] = ACTIONS(310), - [anon_sym_RBRACE] = ACTIONS(418), + [anon_sym_RBRACE] = ACTIONS(346), [anon_sym_static] = ACTIONS(37), [anon_sym_auto] = ACTIONS(37), [anon_sym_register] = ACTIONS(37), @@ -9239,62 +9135,62 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(340), [sym_comment] = ACTIONS(3), }, - [26] = { - [sym_preproc_include] = STATE(41), - [sym_preproc_def] = STATE(41), - [sym_preproc_function_def] = STATE(41), - [sym_preproc_call] = STATE(41), - [sym_preproc_if] = STATE(41), - [sym_preproc_ifdef] = STATE(41), - [sym_function_definition] = STATE(41), - [sym_declaration] = STATE(41), - [sym_type_definition] = STATE(41), - [sym__declaration_specifiers] = STATE(874), - [sym_linkage_specification] = STATE(41), - [sym_attribute_specifier] = STATE(570), - [sym_compound_statement] = STATE(41), - [sym_storage_class_specifier] = STATE(570), - [sym_type_qualifier] = STATE(570), - [sym__type_specifier] = STATE(845), - [sym_sized_type_specifier] = STATE(845), - [sym_enum_specifier] = STATE(845), - [sym_struct_specifier] = STATE(845), - [sym_union_specifier] = STATE(845), - [sym_labeled_statement] = STATE(41), - [sym_expression_statement] = STATE(41), - [sym_if_statement] = STATE(41), - [sym_switch_statement] = STATE(41), - [sym_case_statement] = STATE(41), - [sym_while_statement] = STATE(41), - [sym_do_statement] = STATE(41), - [sym_for_statement] = STATE(41), - [sym_return_statement] = STATE(41), - [sym_break_statement] = STATE(41), - [sym_continue_statement] = STATE(41), - [sym_goto_statement] = STATE(41), - [sym__expression] = STATE(616), - [sym_comma_expression] = STATE(1170), - [sym_conditional_expression] = STATE(616), - [sym_assignment_expression] = STATE(616), - [sym_pointer_expression] = STATE(505), - [sym_unary_expression] = STATE(616), - [sym_binary_expression] = STATE(616), - [sym_update_expression] = STATE(616), - [sym_cast_expression] = STATE(616), - [sym_sizeof_expression] = STATE(616), - [sym_subscript_expression] = STATE(505), - [sym_call_expression] = STATE(505), - [sym_field_expression] = STATE(505), - [sym_compound_literal_expression] = STATE(616), - [sym_parenthesized_expression] = STATE(505), - [sym_char_literal] = STATE(616), - [sym_concatenated_string] = STATE(616), - [sym_string_literal] = STATE(376), - [sym__empty_declaration] = STATE(41), - [sym_macro_type_specifier] = STATE(845), - [aux_sym_translation_unit_repeat1] = STATE(41), - [aux_sym__declaration_specifiers_repeat1] = STATE(570), - [aux_sym_sized_type_specifier_repeat1] = STATE(712), + [25] = { + [sym_preproc_include] = STATE(34), + [sym_preproc_def] = STATE(34), + [sym_preproc_function_def] = STATE(34), + [sym_preproc_call] = STATE(34), + [sym_preproc_if] = STATE(34), + [sym_preproc_ifdef] = STATE(34), + [sym_function_definition] = STATE(34), + [sym_declaration] = STATE(34), + [sym_type_definition] = STATE(34), + [sym__declaration_specifiers] = STATE(865), + [sym_linkage_specification] = STATE(34), + [sym_attribute_specifier] = STATE(561), + [sym_compound_statement] = STATE(34), + [sym_storage_class_specifier] = STATE(561), + [sym_type_qualifier] = STATE(561), + [sym__type_specifier] = STATE(821), + [sym_sized_type_specifier] = STATE(821), + [sym_enum_specifier] = STATE(821), + [sym_struct_specifier] = STATE(821), + [sym_union_specifier] = STATE(821), + [sym_labeled_statement] = STATE(34), + [sym_expression_statement] = STATE(34), + [sym_if_statement] = STATE(34), + [sym_switch_statement] = STATE(34), + [sym_case_statement] = STATE(34), + [sym_while_statement] = STATE(34), + [sym_do_statement] = STATE(34), + [sym_for_statement] = STATE(34), + [sym_return_statement] = STATE(34), + [sym_break_statement] = STATE(34), + [sym_continue_statement] = STATE(34), + [sym_goto_statement] = STATE(34), + [sym__expression] = STATE(568), + [sym_comma_expression] = STATE(1210), + [sym_conditional_expression] = STATE(568), + [sym_assignment_expression] = STATE(568), + [sym_pointer_expression] = STATE(532), + [sym_unary_expression] = STATE(568), + [sym_binary_expression] = STATE(568), + [sym_update_expression] = STATE(568), + [sym_cast_expression] = STATE(568), + [sym_sizeof_expression] = STATE(568), + [sym_subscript_expression] = STATE(532), + [sym_call_expression] = STATE(532), + [sym_field_expression] = STATE(532), + [sym_compound_literal_expression] = STATE(568), + [sym_parenthesized_expression] = STATE(532), + [sym_char_literal] = STATE(568), + [sym_concatenated_string] = STATE(568), + [sym_string_literal] = STATE(379), + [sym__empty_declaration] = STATE(34), + [sym_macro_type_specifier] = STATE(821), + [aux_sym_translation_unit_repeat1] = STATE(34), + [aux_sym__declaration_specifiers_repeat1] = STATE(561), + [aux_sym_sized_type_specifier_repeat1] = STATE(704), [sym_identifier] = ACTIONS(292), [aux_sym_preproc_include_token1] = ACTIONS(294), [aux_sym_preproc_def_token1] = ACTIONS(296), @@ -9314,7 +9210,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_extern] = ACTIONS(308), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACE] = ACTIONS(310), - [anon_sym_RBRACE] = ACTIONS(420), + [anon_sym_RBRACE] = ACTIONS(348), [anon_sym_static] = ACTIONS(37), [anon_sym_auto] = ACTIONS(37), [anon_sym_register] = ACTIONS(37), @@ -9361,69 +9257,70 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(340), [sym_comment] = ACTIONS(3), }, - [27] = { - [sym_preproc_include] = STATE(33), - [sym_preproc_def] = STATE(33), - [sym_preproc_function_def] = STATE(33), - [sym_preproc_call] = STATE(33), - [sym_preproc_if] = STATE(33), - [sym_preproc_ifdef] = STATE(33), - [sym_function_definition] = STATE(33), - [sym_declaration] = STATE(33), - [sym_type_definition] = STATE(33), - [sym__declaration_specifiers] = STATE(874), - [sym_linkage_specification] = STATE(33), - [sym_attribute_specifier] = STATE(570), - [sym_compound_statement] = STATE(33), - [sym_storage_class_specifier] = STATE(570), - [sym_type_qualifier] = STATE(570), - [sym__type_specifier] = STATE(845), - [sym_sized_type_specifier] = STATE(845), - [sym_enum_specifier] = STATE(845), - [sym_struct_specifier] = STATE(845), - [sym_union_specifier] = STATE(845), - [sym_labeled_statement] = STATE(33), - [sym_expression_statement] = STATE(33), - [sym_if_statement] = STATE(33), - [sym_switch_statement] = STATE(33), - [sym_case_statement] = STATE(33), - [sym_while_statement] = STATE(33), - [sym_do_statement] = STATE(33), - [sym_for_statement] = STATE(33), - [sym_return_statement] = STATE(33), - [sym_break_statement] = STATE(33), - [sym_continue_statement] = STATE(33), - [sym_goto_statement] = STATE(33), - [sym__expression] = STATE(616), - [sym_comma_expression] = STATE(1170), - [sym_conditional_expression] = STATE(616), - [sym_assignment_expression] = STATE(616), - [sym_pointer_expression] = STATE(505), - [sym_unary_expression] = STATE(616), - [sym_binary_expression] = STATE(616), - [sym_update_expression] = STATE(616), - [sym_cast_expression] = STATE(616), - [sym_sizeof_expression] = STATE(616), - [sym_subscript_expression] = STATE(505), - [sym_call_expression] = STATE(505), - [sym_field_expression] = STATE(505), - [sym_compound_literal_expression] = STATE(616), - [sym_parenthesized_expression] = STATE(505), - [sym_char_literal] = STATE(616), - [sym_concatenated_string] = STATE(616), - [sym_string_literal] = STATE(376), - [sym__empty_declaration] = STATE(33), - [sym_macro_type_specifier] = STATE(845), - [aux_sym_translation_unit_repeat1] = STATE(33), - [aux_sym__declaration_specifiers_repeat1] = STATE(570), - [aux_sym_sized_type_specifier_repeat1] = STATE(712), - [sym_identifier] = ACTIONS(292), - [aux_sym_preproc_include_token1] = ACTIONS(294), - [aux_sym_preproc_def_token1] = ACTIONS(296), - [aux_sym_preproc_if_token1] = ACTIONS(298), - [aux_sym_preproc_ifdef_token1] = ACTIONS(300), - [aux_sym_preproc_ifdef_token2] = ACTIONS(300), - [sym_preproc_directive] = ACTIONS(302), + [26] = { + [sym_preproc_include] = STATE(35), + [sym_preproc_def] = STATE(35), + [sym_preproc_function_def] = STATE(35), + [sym_preproc_call] = STATE(35), + [sym_preproc_if] = STATE(35), + [sym_preproc_ifdef] = STATE(35), + [sym_function_definition] = STATE(35), + [sym_declaration] = STATE(35), + [sym_type_definition] = STATE(35), + [sym__declaration_specifiers] = STATE(873), + [sym_linkage_specification] = STATE(35), + [sym_attribute_specifier] = STATE(561), + [sym_compound_statement] = STATE(35), + [sym_storage_class_specifier] = STATE(561), + [sym_type_qualifier] = STATE(561), + [sym__type_specifier] = STATE(819), + [sym_sized_type_specifier] = STATE(819), + [sym_enum_specifier] = STATE(819), + [sym_struct_specifier] = STATE(819), + [sym_union_specifier] = STATE(819), + [sym_labeled_statement] = STATE(35), + [sym_expression_statement] = STATE(35), + [sym_if_statement] = STATE(35), + [sym_switch_statement] = STATE(35), + [sym_case_statement] = STATE(35), + [sym_while_statement] = STATE(35), + [sym_do_statement] = STATE(35), + [sym_for_statement] = STATE(35), + [sym_return_statement] = STATE(35), + [sym_break_statement] = STATE(35), + [sym_continue_statement] = STATE(35), + [sym_goto_statement] = STATE(35), + [sym__expression] = STATE(607), + [sym_comma_expression] = STATE(1092), + [sym_conditional_expression] = STATE(607), + [sym_assignment_expression] = STATE(607), + [sym_pointer_expression] = STATE(532), + [sym_unary_expression] = STATE(607), + [sym_binary_expression] = STATE(607), + [sym_update_expression] = STATE(607), + [sym_cast_expression] = STATE(607), + [sym_sizeof_expression] = STATE(607), + [sym_subscript_expression] = STATE(532), + [sym_call_expression] = STATE(532), + [sym_field_expression] = STATE(532), + [sym_compound_literal_expression] = STATE(607), + [sym_parenthesized_expression] = STATE(532), + [sym_char_literal] = STATE(607), + [sym_concatenated_string] = STATE(607), + [sym_string_literal] = STATE(379), + [sym__empty_declaration] = STATE(35), + [sym_macro_type_specifier] = STATE(819), + [aux_sym_translation_unit_repeat1] = STATE(35), + [aux_sym__declaration_specifiers_repeat1] = STATE(561), + [aux_sym_sized_type_specifier_repeat1] = STATE(704), + [sym_identifier] = ACTIONS(350), + [aux_sym_preproc_include_token1] = ACTIONS(352), + [aux_sym_preproc_def_token1] = ACTIONS(354), + [aux_sym_preproc_if_token1] = ACTIONS(356), + [aux_sym_preproc_if_token2] = ACTIONS(358), + [aux_sym_preproc_ifdef_token1] = ACTIONS(360), + [aux_sym_preproc_ifdef_token2] = ACTIONS(360), + [sym_preproc_directive] = ACTIONS(362), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -9431,12 +9328,11 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(304), - [anon_sym_typedef] = ACTIONS(306), - [anon_sym_extern] = ACTIONS(308), + [anon_sym_SEMI] = ACTIONS(364), + [anon_sym_typedef] = ACTIONS(366), + [anon_sym_extern] = ACTIONS(368), [anon_sym___attribute__] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(310), - [anon_sym_RBRACE] = ACTIONS(422), + [anon_sym_LBRACE] = ACTIONS(370), [anon_sym_static] = ACTIONS(37), [anon_sym_auto] = ACTIONS(37), [anon_sym_register] = ACTIONS(37), @@ -9449,25 +9345,25 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsigned] = ACTIONS(41), [anon_sym_long] = ACTIONS(41), [anon_sym_short] = ACTIONS(41), - [sym_primitive_type] = ACTIONS(314), + [sym_primitive_type] = ACTIONS(372), [anon_sym_enum] = ACTIONS(45), [anon_sym_struct] = ACTIONS(47), [anon_sym_union] = ACTIONS(49), - [anon_sym_if] = ACTIONS(316), - [anon_sym_switch] = ACTIONS(318), - [anon_sym_case] = ACTIONS(320), - [anon_sym_default] = ACTIONS(322), - [anon_sym_while] = ACTIONS(324), - [anon_sym_do] = ACTIONS(326), - [anon_sym_for] = ACTIONS(328), - [anon_sym_return] = ACTIONS(330), - [anon_sym_break] = ACTIONS(332), - [anon_sym_continue] = ACTIONS(334), - [anon_sym_goto] = ACTIONS(336), + [anon_sym_if] = ACTIONS(374), + [anon_sym_switch] = ACTIONS(376), + [anon_sym_case] = ACTIONS(378), + [anon_sym_default] = ACTIONS(380), + [anon_sym_while] = ACTIONS(382), + [anon_sym_do] = ACTIONS(384), + [anon_sym_for] = ACTIONS(386), + [anon_sym_return] = ACTIONS(388), + [anon_sym_break] = ACTIONS(390), + [anon_sym_continue] = ACTIONS(392), + [anon_sym_goto] = ACTIONS(394), [anon_sym_DASH_DASH] = ACTIONS(73), [anon_sym_PLUS_PLUS] = ACTIONS(73), [anon_sym_sizeof] = ACTIONS(75), - [sym_number_literal] = ACTIONS(338), + [sym_number_literal] = ACTIONS(396), [anon_sym_L_SQUOTE] = ACTIONS(79), [anon_sym_u_SQUOTE] = ACTIONS(79), [anon_sym_U_SQUOTE] = ACTIONS(79), @@ -9478,67 +9374,67 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_U_DQUOTE] = ACTIONS(81), [anon_sym_u8_DQUOTE] = ACTIONS(81), [anon_sym_DQUOTE] = ACTIONS(81), - [sym_true] = ACTIONS(340), - [sym_false] = ACTIONS(340), - [sym_null] = ACTIONS(340), + [sym_true] = ACTIONS(398), + [sym_false] = ACTIONS(398), + [sym_null] = ACTIONS(398), [sym_comment] = ACTIONS(3), }, - [28] = { - [sym_preproc_include] = STATE(24), - [sym_preproc_def] = STATE(24), - [sym_preproc_function_def] = STATE(24), - [sym_preproc_call] = STATE(24), - [sym_preproc_if] = STATE(24), - [sym_preproc_ifdef] = STATE(24), - [sym_function_definition] = STATE(24), - [sym_declaration] = STATE(24), - [sym_type_definition] = STATE(24), - [sym__declaration_specifiers] = STATE(874), - [sym_linkage_specification] = STATE(24), - [sym_attribute_specifier] = STATE(570), - [sym_compound_statement] = STATE(24), - [sym_storage_class_specifier] = STATE(570), - [sym_type_qualifier] = STATE(570), - [sym__type_specifier] = STATE(845), - [sym_sized_type_specifier] = STATE(845), - [sym_enum_specifier] = STATE(845), - [sym_struct_specifier] = STATE(845), - [sym_union_specifier] = STATE(845), - [sym_labeled_statement] = STATE(24), - [sym_expression_statement] = STATE(24), - [sym_if_statement] = STATE(24), - [sym_switch_statement] = STATE(24), - [sym_case_statement] = STATE(24), - [sym_while_statement] = STATE(24), - [sym_do_statement] = STATE(24), - [sym_for_statement] = STATE(24), - [sym_return_statement] = STATE(24), - [sym_break_statement] = STATE(24), - [sym_continue_statement] = STATE(24), - [sym_goto_statement] = STATE(24), - [sym__expression] = STATE(616), - [sym_comma_expression] = STATE(1170), - [sym_conditional_expression] = STATE(616), - [sym_assignment_expression] = STATE(616), - [sym_pointer_expression] = STATE(505), - [sym_unary_expression] = STATE(616), - [sym_binary_expression] = STATE(616), - [sym_update_expression] = STATE(616), - [sym_cast_expression] = STATE(616), - [sym_sizeof_expression] = STATE(616), - [sym_subscript_expression] = STATE(505), - [sym_call_expression] = STATE(505), - [sym_field_expression] = STATE(505), - [sym_compound_literal_expression] = STATE(616), - [sym_parenthesized_expression] = STATE(505), - [sym_char_literal] = STATE(616), - [sym_concatenated_string] = STATE(616), - [sym_string_literal] = STATE(376), - [sym__empty_declaration] = STATE(24), - [sym_macro_type_specifier] = STATE(845), - [aux_sym_translation_unit_repeat1] = STATE(24), - [aux_sym__declaration_specifiers_repeat1] = STATE(570), - [aux_sym_sized_type_specifier_repeat1] = STATE(712), + [27] = { + [sym_preproc_include] = STATE(34), + [sym_preproc_def] = STATE(34), + [sym_preproc_function_def] = STATE(34), + [sym_preproc_call] = STATE(34), + [sym_preproc_if] = STATE(34), + [sym_preproc_ifdef] = STATE(34), + [sym_function_definition] = STATE(34), + [sym_declaration] = STATE(34), + [sym_type_definition] = STATE(34), + [sym__declaration_specifiers] = STATE(865), + [sym_linkage_specification] = STATE(34), + [sym_attribute_specifier] = STATE(561), + [sym_compound_statement] = STATE(34), + [sym_storage_class_specifier] = STATE(561), + [sym_type_qualifier] = STATE(561), + [sym__type_specifier] = STATE(821), + [sym_sized_type_specifier] = STATE(821), + [sym_enum_specifier] = STATE(821), + [sym_struct_specifier] = STATE(821), + [sym_union_specifier] = STATE(821), + [sym_labeled_statement] = STATE(34), + [sym_expression_statement] = STATE(34), + [sym_if_statement] = STATE(34), + [sym_switch_statement] = STATE(34), + [sym_case_statement] = STATE(34), + [sym_while_statement] = STATE(34), + [sym_do_statement] = STATE(34), + [sym_for_statement] = STATE(34), + [sym_return_statement] = STATE(34), + [sym_break_statement] = STATE(34), + [sym_continue_statement] = STATE(34), + [sym_goto_statement] = STATE(34), + [sym__expression] = STATE(568), + [sym_comma_expression] = STATE(1210), + [sym_conditional_expression] = STATE(568), + [sym_assignment_expression] = STATE(568), + [sym_pointer_expression] = STATE(532), + [sym_unary_expression] = STATE(568), + [sym_binary_expression] = STATE(568), + [sym_update_expression] = STATE(568), + [sym_cast_expression] = STATE(568), + [sym_sizeof_expression] = STATE(568), + [sym_subscript_expression] = STATE(532), + [sym_call_expression] = STATE(532), + [sym_field_expression] = STATE(532), + [sym_compound_literal_expression] = STATE(568), + [sym_parenthesized_expression] = STATE(532), + [sym_char_literal] = STATE(568), + [sym_concatenated_string] = STATE(568), + [sym_string_literal] = STATE(379), + [sym__empty_declaration] = STATE(34), + [sym_macro_type_specifier] = STATE(821), + [aux_sym_translation_unit_repeat1] = STATE(34), + [aux_sym__declaration_specifiers_repeat1] = STATE(561), + [aux_sym_sized_type_specifier_repeat1] = STATE(704), [sym_identifier] = ACTIONS(292), [aux_sym_preproc_include_token1] = ACTIONS(294), [aux_sym_preproc_def_token1] = ACTIONS(296), @@ -9558,7 +9454,129 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_extern] = ACTIONS(308), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACE] = ACTIONS(310), - [anon_sym_RBRACE] = ACTIONS(424), + [anon_sym_RBRACE] = ACTIONS(400), + [anon_sym_static] = ACTIONS(37), + [anon_sym_auto] = ACTIONS(37), + [anon_sym_register] = ACTIONS(37), + [anon_sym_inline] = ACTIONS(37), + [anon_sym_const] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym_signed] = ACTIONS(41), + [anon_sym_unsigned] = ACTIONS(41), + [anon_sym_long] = ACTIONS(41), + [anon_sym_short] = ACTIONS(41), + [sym_primitive_type] = ACTIONS(314), + [anon_sym_enum] = ACTIONS(45), + [anon_sym_struct] = ACTIONS(47), + [anon_sym_union] = ACTIONS(49), + [anon_sym_if] = ACTIONS(316), + [anon_sym_switch] = ACTIONS(318), + [anon_sym_case] = ACTIONS(320), + [anon_sym_default] = ACTIONS(322), + [anon_sym_while] = ACTIONS(324), + [anon_sym_do] = ACTIONS(326), + [anon_sym_for] = ACTIONS(328), + [anon_sym_return] = ACTIONS(330), + [anon_sym_break] = ACTIONS(332), + [anon_sym_continue] = ACTIONS(334), + [anon_sym_goto] = ACTIONS(336), + [anon_sym_DASH_DASH] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(73), + [anon_sym_sizeof] = ACTIONS(75), + [sym_number_literal] = ACTIONS(338), + [anon_sym_L_SQUOTE] = ACTIONS(79), + [anon_sym_u_SQUOTE] = ACTIONS(79), + [anon_sym_U_SQUOTE] = ACTIONS(79), + [anon_sym_u8_SQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_L_DQUOTE] = ACTIONS(81), + [anon_sym_u_DQUOTE] = ACTIONS(81), + [anon_sym_U_DQUOTE] = ACTIONS(81), + [anon_sym_u8_DQUOTE] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(81), + [sym_true] = ACTIONS(340), + [sym_false] = ACTIONS(340), + [sym_null] = ACTIONS(340), + [sym_comment] = ACTIONS(3), + }, + [28] = { + [sym_preproc_include] = STATE(27), + [sym_preproc_def] = STATE(27), + [sym_preproc_function_def] = STATE(27), + [sym_preproc_call] = STATE(27), + [sym_preproc_if] = STATE(27), + [sym_preproc_ifdef] = STATE(27), + [sym_function_definition] = STATE(27), + [sym_declaration] = STATE(27), + [sym_type_definition] = STATE(27), + [sym__declaration_specifiers] = STATE(865), + [sym_linkage_specification] = STATE(27), + [sym_attribute_specifier] = STATE(561), + [sym_compound_statement] = STATE(27), + [sym_storage_class_specifier] = STATE(561), + [sym_type_qualifier] = STATE(561), + [sym__type_specifier] = STATE(821), + [sym_sized_type_specifier] = STATE(821), + [sym_enum_specifier] = STATE(821), + [sym_struct_specifier] = STATE(821), + [sym_union_specifier] = STATE(821), + [sym_labeled_statement] = STATE(27), + [sym_expression_statement] = STATE(27), + [sym_if_statement] = STATE(27), + [sym_switch_statement] = STATE(27), + [sym_case_statement] = STATE(27), + [sym_while_statement] = STATE(27), + [sym_do_statement] = STATE(27), + [sym_for_statement] = STATE(27), + [sym_return_statement] = STATE(27), + [sym_break_statement] = STATE(27), + [sym_continue_statement] = STATE(27), + [sym_goto_statement] = STATE(27), + [sym__expression] = STATE(568), + [sym_comma_expression] = STATE(1210), + [sym_conditional_expression] = STATE(568), + [sym_assignment_expression] = STATE(568), + [sym_pointer_expression] = STATE(532), + [sym_unary_expression] = STATE(568), + [sym_binary_expression] = STATE(568), + [sym_update_expression] = STATE(568), + [sym_cast_expression] = STATE(568), + [sym_sizeof_expression] = STATE(568), + [sym_subscript_expression] = STATE(532), + [sym_call_expression] = STATE(532), + [sym_field_expression] = STATE(532), + [sym_compound_literal_expression] = STATE(568), + [sym_parenthesized_expression] = STATE(532), + [sym_char_literal] = STATE(568), + [sym_concatenated_string] = STATE(568), + [sym_string_literal] = STATE(379), + [sym__empty_declaration] = STATE(27), + [sym_macro_type_specifier] = STATE(821), + [aux_sym_translation_unit_repeat1] = STATE(27), + [aux_sym__declaration_specifiers_repeat1] = STATE(561), + [aux_sym_sized_type_specifier_repeat1] = STATE(704), + [sym_identifier] = ACTIONS(292), + [aux_sym_preproc_include_token1] = ACTIONS(294), + [aux_sym_preproc_def_token1] = ACTIONS(296), + [aux_sym_preproc_if_token1] = ACTIONS(298), + [aux_sym_preproc_ifdef_token1] = ACTIONS(300), + [aux_sym_preproc_ifdef_token2] = ACTIONS(300), + [sym_preproc_directive] = ACTIONS(302), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(304), + [anon_sym_typedef] = ACTIONS(306), + [anon_sym_extern] = ACTIONS(308), + [anon_sym___attribute__] = ACTIONS(33), + [anon_sym_LBRACE] = ACTIONS(310), + [anon_sym_RBRACE] = ACTIONS(402), [anon_sym_static] = ACTIONS(37), [anon_sym_auto] = ACTIONS(37), [anon_sym_register] = ACTIONS(37), @@ -9606,61 +9624,61 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [29] = { - [sym_preproc_include] = STATE(33), - [sym_preproc_def] = STATE(33), - [sym_preproc_function_def] = STATE(33), - [sym_preproc_call] = STATE(33), - [sym_preproc_if] = STATE(33), - [sym_preproc_ifdef] = STATE(33), - [sym_function_definition] = STATE(33), - [sym_declaration] = STATE(33), - [sym_type_definition] = STATE(33), - [sym__declaration_specifiers] = STATE(874), - [sym_linkage_specification] = STATE(33), - [sym_attribute_specifier] = STATE(570), - [sym_compound_statement] = STATE(33), - [sym_storage_class_specifier] = STATE(570), - [sym_type_qualifier] = STATE(570), - [sym__type_specifier] = STATE(845), - [sym_sized_type_specifier] = STATE(845), - [sym_enum_specifier] = STATE(845), - [sym_struct_specifier] = STATE(845), - [sym_union_specifier] = STATE(845), - [sym_labeled_statement] = STATE(33), - [sym_expression_statement] = STATE(33), - [sym_if_statement] = STATE(33), - [sym_switch_statement] = STATE(33), - [sym_case_statement] = STATE(33), - [sym_while_statement] = STATE(33), - [sym_do_statement] = STATE(33), - [sym_for_statement] = STATE(33), - [sym_return_statement] = STATE(33), - [sym_break_statement] = STATE(33), - [sym_continue_statement] = STATE(33), - [sym_goto_statement] = STATE(33), - [sym__expression] = STATE(616), - [sym_comma_expression] = STATE(1170), - [sym_conditional_expression] = STATE(616), - [sym_assignment_expression] = STATE(616), - [sym_pointer_expression] = STATE(505), - [sym_unary_expression] = STATE(616), - [sym_binary_expression] = STATE(616), - [sym_update_expression] = STATE(616), - [sym_cast_expression] = STATE(616), - [sym_sizeof_expression] = STATE(616), - [sym_subscript_expression] = STATE(505), - [sym_call_expression] = STATE(505), - [sym_field_expression] = STATE(505), - [sym_compound_literal_expression] = STATE(616), - [sym_parenthesized_expression] = STATE(505), - [sym_char_literal] = STATE(616), - [sym_concatenated_string] = STATE(616), - [sym_string_literal] = STATE(376), - [sym__empty_declaration] = STATE(33), - [sym_macro_type_specifier] = STATE(845), - [aux_sym_translation_unit_repeat1] = STATE(33), - [aux_sym__declaration_specifiers_repeat1] = STATE(570), - [aux_sym_sized_type_specifier_repeat1] = STATE(712), + [sym_preproc_include] = STATE(34), + [sym_preproc_def] = STATE(34), + [sym_preproc_function_def] = STATE(34), + [sym_preproc_call] = STATE(34), + [sym_preproc_if] = STATE(34), + [sym_preproc_ifdef] = STATE(34), + [sym_function_definition] = STATE(34), + [sym_declaration] = STATE(34), + [sym_type_definition] = STATE(34), + [sym__declaration_specifiers] = STATE(865), + [sym_linkage_specification] = STATE(34), + [sym_attribute_specifier] = STATE(561), + [sym_compound_statement] = STATE(34), + [sym_storage_class_specifier] = STATE(561), + [sym_type_qualifier] = STATE(561), + [sym__type_specifier] = STATE(821), + [sym_sized_type_specifier] = STATE(821), + [sym_enum_specifier] = STATE(821), + [sym_struct_specifier] = STATE(821), + [sym_union_specifier] = STATE(821), + [sym_labeled_statement] = STATE(34), + [sym_expression_statement] = STATE(34), + [sym_if_statement] = STATE(34), + [sym_switch_statement] = STATE(34), + [sym_case_statement] = STATE(34), + [sym_while_statement] = STATE(34), + [sym_do_statement] = STATE(34), + [sym_for_statement] = STATE(34), + [sym_return_statement] = STATE(34), + [sym_break_statement] = STATE(34), + [sym_continue_statement] = STATE(34), + [sym_goto_statement] = STATE(34), + [sym__expression] = STATE(568), + [sym_comma_expression] = STATE(1210), + [sym_conditional_expression] = STATE(568), + [sym_assignment_expression] = STATE(568), + [sym_pointer_expression] = STATE(532), + [sym_unary_expression] = STATE(568), + [sym_binary_expression] = STATE(568), + [sym_update_expression] = STATE(568), + [sym_cast_expression] = STATE(568), + [sym_sizeof_expression] = STATE(568), + [sym_subscript_expression] = STATE(532), + [sym_call_expression] = STATE(532), + [sym_field_expression] = STATE(532), + [sym_compound_literal_expression] = STATE(568), + [sym_parenthesized_expression] = STATE(532), + [sym_char_literal] = STATE(568), + [sym_concatenated_string] = STATE(568), + [sym_string_literal] = STATE(379), + [sym__empty_declaration] = STATE(34), + [sym_macro_type_specifier] = STATE(821), + [aux_sym_translation_unit_repeat1] = STATE(34), + [aux_sym__declaration_specifiers_repeat1] = STATE(561), + [aux_sym_sized_type_specifier_repeat1] = STATE(704), [sym_identifier] = ACTIONS(292), [aux_sym_preproc_include_token1] = ACTIONS(294), [aux_sym_preproc_def_token1] = ACTIONS(296), @@ -9680,7 +9698,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_extern] = ACTIONS(308), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACE] = ACTIONS(310), - [anon_sym_RBRACE] = ACTIONS(426), + [anon_sym_RBRACE] = ACTIONS(404), [anon_sym_static] = ACTIONS(37), [anon_sym_auto] = ACTIONS(37), [anon_sym_register] = ACTIONS(37), @@ -9728,61 +9746,61 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [30] = { - [sym_preproc_include] = STATE(27), - [sym_preproc_def] = STATE(27), - [sym_preproc_function_def] = STATE(27), - [sym_preproc_call] = STATE(27), - [sym_preproc_if] = STATE(27), - [sym_preproc_ifdef] = STATE(27), - [sym_function_definition] = STATE(27), - [sym_declaration] = STATE(27), - [sym_type_definition] = STATE(27), - [sym__declaration_specifiers] = STATE(874), - [sym_linkage_specification] = STATE(27), - [sym_attribute_specifier] = STATE(570), - [sym_compound_statement] = STATE(27), - [sym_storage_class_specifier] = STATE(570), - [sym_type_qualifier] = STATE(570), - [sym__type_specifier] = STATE(845), - [sym_sized_type_specifier] = STATE(845), - [sym_enum_specifier] = STATE(845), - [sym_struct_specifier] = STATE(845), - [sym_union_specifier] = STATE(845), - [sym_labeled_statement] = STATE(27), - [sym_expression_statement] = STATE(27), - [sym_if_statement] = STATE(27), - [sym_switch_statement] = STATE(27), - [sym_case_statement] = STATE(27), - [sym_while_statement] = STATE(27), - [sym_do_statement] = STATE(27), - [sym_for_statement] = STATE(27), - [sym_return_statement] = STATE(27), - [sym_break_statement] = STATE(27), - [sym_continue_statement] = STATE(27), - [sym_goto_statement] = STATE(27), - [sym__expression] = STATE(616), - [sym_comma_expression] = STATE(1170), - [sym_conditional_expression] = STATE(616), - [sym_assignment_expression] = STATE(616), - [sym_pointer_expression] = STATE(505), - [sym_unary_expression] = STATE(616), - [sym_binary_expression] = STATE(616), - [sym_update_expression] = STATE(616), - [sym_cast_expression] = STATE(616), - [sym_sizeof_expression] = STATE(616), - [sym_subscript_expression] = STATE(505), - [sym_call_expression] = STATE(505), - [sym_field_expression] = STATE(505), - [sym_compound_literal_expression] = STATE(616), - [sym_parenthesized_expression] = STATE(505), - [sym_char_literal] = STATE(616), - [sym_concatenated_string] = STATE(616), - [sym_string_literal] = STATE(376), - [sym__empty_declaration] = STATE(27), - [sym_macro_type_specifier] = STATE(845), - [aux_sym_translation_unit_repeat1] = STATE(27), - [aux_sym__declaration_specifiers_repeat1] = STATE(570), - [aux_sym_sized_type_specifier_repeat1] = STATE(712), + [sym_preproc_include] = STATE(31), + [sym_preproc_def] = STATE(31), + [sym_preproc_function_def] = STATE(31), + [sym_preproc_call] = STATE(31), + [sym_preproc_if] = STATE(31), + [sym_preproc_ifdef] = STATE(31), + [sym_function_definition] = STATE(31), + [sym_declaration] = STATE(31), + [sym_type_definition] = STATE(31), + [sym__declaration_specifiers] = STATE(865), + [sym_linkage_specification] = STATE(31), + [sym_attribute_specifier] = STATE(561), + [sym_compound_statement] = STATE(31), + [sym_storage_class_specifier] = STATE(561), + [sym_type_qualifier] = STATE(561), + [sym__type_specifier] = STATE(821), + [sym_sized_type_specifier] = STATE(821), + [sym_enum_specifier] = STATE(821), + [sym_struct_specifier] = STATE(821), + [sym_union_specifier] = STATE(821), + [sym_labeled_statement] = STATE(31), + [sym_expression_statement] = STATE(31), + [sym_if_statement] = STATE(31), + [sym_switch_statement] = STATE(31), + [sym_case_statement] = STATE(31), + [sym_while_statement] = STATE(31), + [sym_do_statement] = STATE(31), + [sym_for_statement] = STATE(31), + [sym_return_statement] = STATE(31), + [sym_break_statement] = STATE(31), + [sym_continue_statement] = STATE(31), + [sym_goto_statement] = STATE(31), + [sym__expression] = STATE(568), + [sym_comma_expression] = STATE(1210), + [sym_conditional_expression] = STATE(568), + [sym_assignment_expression] = STATE(568), + [sym_pointer_expression] = STATE(532), + [sym_unary_expression] = STATE(568), + [sym_binary_expression] = STATE(568), + [sym_update_expression] = STATE(568), + [sym_cast_expression] = STATE(568), + [sym_sizeof_expression] = STATE(568), + [sym_subscript_expression] = STATE(532), + [sym_call_expression] = STATE(532), + [sym_field_expression] = STATE(532), + [sym_compound_literal_expression] = STATE(568), + [sym_parenthesized_expression] = STATE(532), + [sym_char_literal] = STATE(568), + [sym_concatenated_string] = STATE(568), + [sym_string_literal] = STATE(379), + [sym__empty_declaration] = STATE(31), + [sym_macro_type_specifier] = STATE(821), + [aux_sym_translation_unit_repeat1] = STATE(31), + [aux_sym__declaration_specifiers_repeat1] = STATE(561), + [aux_sym_sized_type_specifier_repeat1] = STATE(704), [sym_identifier] = ACTIONS(292), [aux_sym_preproc_include_token1] = ACTIONS(294), [aux_sym_preproc_def_token1] = ACTIONS(296), @@ -9802,7 +9820,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_extern] = ACTIONS(308), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACE] = ACTIONS(310), - [anon_sym_RBRACE] = ACTIONS(428), + [anon_sym_RBRACE] = ACTIONS(406), [anon_sym_static] = ACTIONS(37), [anon_sym_auto] = ACTIONS(37), [anon_sym_register] = ACTIONS(37), @@ -9850,69 +9868,68 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [31] = { - [sym_preproc_include] = STATE(35), - [sym_preproc_def] = STATE(35), - [sym_preproc_function_def] = STATE(35), - [sym_preproc_call] = STATE(35), - [sym_preproc_if] = STATE(35), - [sym_preproc_ifdef] = STATE(35), - [sym_function_definition] = STATE(35), - [sym_declaration] = STATE(35), - [sym_type_definition] = STATE(35), - [sym__declaration_specifiers] = STATE(877), - [sym_linkage_specification] = STATE(35), - [sym_attribute_specifier] = STATE(570), - [sym_compound_statement] = STATE(35), - [sym_storage_class_specifier] = STATE(570), - [sym_type_qualifier] = STATE(570), - [sym__type_specifier] = STATE(837), - [sym_sized_type_specifier] = STATE(837), - [sym_enum_specifier] = STATE(837), - [sym_struct_specifier] = STATE(837), - [sym_union_specifier] = STATE(837), - [sym_labeled_statement] = STATE(35), - [sym_expression_statement] = STATE(35), - [sym_if_statement] = STATE(35), - [sym_switch_statement] = STATE(35), - [sym_case_statement] = STATE(35), - [sym_while_statement] = STATE(35), - [sym_do_statement] = STATE(35), - [sym_for_statement] = STATE(35), - [sym_return_statement] = STATE(35), - [sym_break_statement] = STATE(35), - [sym_continue_statement] = STATE(35), - [sym_goto_statement] = STATE(35), - [sym__expression] = STATE(596), - [sym_comma_expression] = STATE(1096), - [sym_conditional_expression] = STATE(596), - [sym_assignment_expression] = STATE(596), - [sym_pointer_expression] = STATE(505), - [sym_unary_expression] = STATE(596), - [sym_binary_expression] = STATE(596), - [sym_update_expression] = STATE(596), - [sym_cast_expression] = STATE(596), - [sym_sizeof_expression] = STATE(596), - [sym_subscript_expression] = STATE(505), - [sym_call_expression] = STATE(505), - [sym_field_expression] = STATE(505), - [sym_compound_literal_expression] = STATE(596), - [sym_parenthesized_expression] = STATE(505), - [sym_char_literal] = STATE(596), - [sym_concatenated_string] = STATE(596), - [sym_string_literal] = STATE(376), - [sym__empty_declaration] = STATE(35), - [sym_macro_type_specifier] = STATE(837), - [aux_sym_translation_unit_repeat1] = STATE(35), - [aux_sym__declaration_specifiers_repeat1] = STATE(570), - [aux_sym_sized_type_specifier_repeat1] = STATE(712), - [sym_identifier] = ACTIONS(430), - [aux_sym_preproc_include_token1] = ACTIONS(432), - [aux_sym_preproc_def_token1] = ACTIONS(434), - [aux_sym_preproc_if_token1] = ACTIONS(436), - [aux_sym_preproc_if_token2] = ACTIONS(438), - [aux_sym_preproc_ifdef_token1] = ACTIONS(440), - [aux_sym_preproc_ifdef_token2] = ACTIONS(440), - [sym_preproc_directive] = ACTIONS(442), + [sym_preproc_include] = STATE(34), + [sym_preproc_def] = STATE(34), + [sym_preproc_function_def] = STATE(34), + [sym_preproc_call] = STATE(34), + [sym_preproc_if] = STATE(34), + [sym_preproc_ifdef] = STATE(34), + [sym_function_definition] = STATE(34), + [sym_declaration] = STATE(34), + [sym_type_definition] = STATE(34), + [sym__declaration_specifiers] = STATE(865), + [sym_linkage_specification] = STATE(34), + [sym_attribute_specifier] = STATE(561), + [sym_compound_statement] = STATE(34), + [sym_storage_class_specifier] = STATE(561), + [sym_type_qualifier] = STATE(561), + [sym__type_specifier] = STATE(821), + [sym_sized_type_specifier] = STATE(821), + [sym_enum_specifier] = STATE(821), + [sym_struct_specifier] = STATE(821), + [sym_union_specifier] = STATE(821), + [sym_labeled_statement] = STATE(34), + [sym_expression_statement] = STATE(34), + [sym_if_statement] = STATE(34), + [sym_switch_statement] = STATE(34), + [sym_case_statement] = STATE(34), + [sym_while_statement] = STATE(34), + [sym_do_statement] = STATE(34), + [sym_for_statement] = STATE(34), + [sym_return_statement] = STATE(34), + [sym_break_statement] = STATE(34), + [sym_continue_statement] = STATE(34), + [sym_goto_statement] = STATE(34), + [sym__expression] = STATE(568), + [sym_comma_expression] = STATE(1210), + [sym_conditional_expression] = STATE(568), + [sym_assignment_expression] = STATE(568), + [sym_pointer_expression] = STATE(532), + [sym_unary_expression] = STATE(568), + [sym_binary_expression] = STATE(568), + [sym_update_expression] = STATE(568), + [sym_cast_expression] = STATE(568), + [sym_sizeof_expression] = STATE(568), + [sym_subscript_expression] = STATE(532), + [sym_call_expression] = STATE(532), + [sym_field_expression] = STATE(532), + [sym_compound_literal_expression] = STATE(568), + [sym_parenthesized_expression] = STATE(532), + [sym_char_literal] = STATE(568), + [sym_concatenated_string] = STATE(568), + [sym_string_literal] = STATE(379), + [sym__empty_declaration] = STATE(34), + [sym_macro_type_specifier] = STATE(821), + [aux_sym_translation_unit_repeat1] = STATE(34), + [aux_sym__declaration_specifiers_repeat1] = STATE(561), + [aux_sym_sized_type_specifier_repeat1] = STATE(704), + [sym_identifier] = ACTIONS(292), + [aux_sym_preproc_include_token1] = ACTIONS(294), + [aux_sym_preproc_def_token1] = ACTIONS(296), + [aux_sym_preproc_if_token1] = ACTIONS(298), + [aux_sym_preproc_ifdef_token1] = ACTIONS(300), + [aux_sym_preproc_ifdef_token2] = ACTIONS(300), + [sym_preproc_directive] = ACTIONS(302), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -9920,11 +9937,12 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(444), - [anon_sym_typedef] = ACTIONS(446), - [anon_sym_extern] = ACTIONS(448), + [anon_sym_SEMI] = ACTIONS(304), + [anon_sym_typedef] = ACTIONS(306), + [anon_sym_extern] = ACTIONS(308), [anon_sym___attribute__] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(450), + [anon_sym_LBRACE] = ACTIONS(310), + [anon_sym_RBRACE] = ACTIONS(408), [anon_sym_static] = ACTIONS(37), [anon_sym_auto] = ACTIONS(37), [anon_sym_register] = ACTIONS(37), @@ -9937,25 +9955,25 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsigned] = ACTIONS(41), [anon_sym_long] = ACTIONS(41), [anon_sym_short] = ACTIONS(41), - [sym_primitive_type] = ACTIONS(452), + [sym_primitive_type] = ACTIONS(314), [anon_sym_enum] = ACTIONS(45), [anon_sym_struct] = ACTIONS(47), [anon_sym_union] = ACTIONS(49), - [anon_sym_if] = ACTIONS(454), - [anon_sym_switch] = ACTIONS(456), - [anon_sym_case] = ACTIONS(458), - [anon_sym_default] = ACTIONS(460), - [anon_sym_while] = ACTIONS(462), - [anon_sym_do] = ACTIONS(464), - [anon_sym_for] = ACTIONS(466), - [anon_sym_return] = ACTIONS(468), - [anon_sym_break] = ACTIONS(470), - [anon_sym_continue] = ACTIONS(472), - [anon_sym_goto] = ACTIONS(474), + [anon_sym_if] = ACTIONS(316), + [anon_sym_switch] = ACTIONS(318), + [anon_sym_case] = ACTIONS(320), + [anon_sym_default] = ACTIONS(322), + [anon_sym_while] = ACTIONS(324), + [anon_sym_do] = ACTIONS(326), + [anon_sym_for] = ACTIONS(328), + [anon_sym_return] = ACTIONS(330), + [anon_sym_break] = ACTIONS(332), + [anon_sym_continue] = ACTIONS(334), + [anon_sym_goto] = ACTIONS(336), [anon_sym_DASH_DASH] = ACTIONS(73), [anon_sym_PLUS_PLUS] = ACTIONS(73), [anon_sym_sizeof] = ACTIONS(75), - [sym_number_literal] = ACTIONS(476), + [sym_number_literal] = ACTIONS(338), [anon_sym_L_SQUOTE] = ACTIONS(79), [anon_sym_u_SQUOTE] = ACTIONS(79), [anon_sym_U_SQUOTE] = ACTIONS(79), @@ -9966,67 +9984,67 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_U_DQUOTE] = ACTIONS(81), [anon_sym_u8_DQUOTE] = ACTIONS(81), [anon_sym_DQUOTE] = ACTIONS(81), - [sym_true] = ACTIONS(478), - [sym_false] = ACTIONS(478), - [sym_null] = ACTIONS(478), + [sym_true] = ACTIONS(340), + [sym_false] = ACTIONS(340), + [sym_null] = ACTIONS(340), [sym_comment] = ACTIONS(3), }, [32] = { - [sym_preproc_include] = STATE(23), - [sym_preproc_def] = STATE(23), - [sym_preproc_function_def] = STATE(23), - [sym_preproc_call] = STATE(23), - [sym_preproc_if] = STATE(23), - [sym_preproc_ifdef] = STATE(23), - [sym_function_definition] = STATE(23), - [sym_declaration] = STATE(23), - [sym_type_definition] = STATE(23), - [sym__declaration_specifiers] = STATE(874), - [sym_linkage_specification] = STATE(23), - [sym_attribute_specifier] = STATE(570), - [sym_compound_statement] = STATE(23), - [sym_storage_class_specifier] = STATE(570), - [sym_type_qualifier] = STATE(570), - [sym__type_specifier] = STATE(845), - [sym_sized_type_specifier] = STATE(845), - [sym_enum_specifier] = STATE(845), - [sym_struct_specifier] = STATE(845), - [sym_union_specifier] = STATE(845), - [sym_labeled_statement] = STATE(23), - [sym_expression_statement] = STATE(23), - [sym_if_statement] = STATE(23), - [sym_switch_statement] = STATE(23), - [sym_case_statement] = STATE(23), - [sym_while_statement] = STATE(23), - [sym_do_statement] = STATE(23), - [sym_for_statement] = STATE(23), - [sym_return_statement] = STATE(23), - [sym_break_statement] = STATE(23), - [sym_continue_statement] = STATE(23), - [sym_goto_statement] = STATE(23), - [sym__expression] = STATE(616), - [sym_comma_expression] = STATE(1170), - [sym_conditional_expression] = STATE(616), - [sym_assignment_expression] = STATE(616), - [sym_pointer_expression] = STATE(505), - [sym_unary_expression] = STATE(616), - [sym_binary_expression] = STATE(616), - [sym_update_expression] = STATE(616), - [sym_cast_expression] = STATE(616), - [sym_sizeof_expression] = STATE(616), - [sym_subscript_expression] = STATE(505), - [sym_call_expression] = STATE(505), - [sym_field_expression] = STATE(505), - [sym_compound_literal_expression] = STATE(616), - [sym_parenthesized_expression] = STATE(505), - [sym_char_literal] = STATE(616), - [sym_concatenated_string] = STATE(616), - [sym_string_literal] = STATE(376), - [sym__empty_declaration] = STATE(23), - [sym_macro_type_specifier] = STATE(845), - [aux_sym_translation_unit_repeat1] = STATE(23), - [aux_sym__declaration_specifiers_repeat1] = STATE(570), - [aux_sym_sized_type_specifier_repeat1] = STATE(712), + [sym_preproc_include] = STATE(34), + [sym_preproc_def] = STATE(34), + [sym_preproc_function_def] = STATE(34), + [sym_preproc_call] = STATE(34), + [sym_preproc_if] = STATE(34), + [sym_preproc_ifdef] = STATE(34), + [sym_function_definition] = STATE(34), + [sym_declaration] = STATE(34), + [sym_type_definition] = STATE(34), + [sym__declaration_specifiers] = STATE(865), + [sym_linkage_specification] = STATE(34), + [sym_attribute_specifier] = STATE(561), + [sym_compound_statement] = STATE(34), + [sym_storage_class_specifier] = STATE(561), + [sym_type_qualifier] = STATE(561), + [sym__type_specifier] = STATE(821), + [sym_sized_type_specifier] = STATE(821), + [sym_enum_specifier] = STATE(821), + [sym_struct_specifier] = STATE(821), + [sym_union_specifier] = STATE(821), + [sym_labeled_statement] = STATE(34), + [sym_expression_statement] = STATE(34), + [sym_if_statement] = STATE(34), + [sym_switch_statement] = STATE(34), + [sym_case_statement] = STATE(34), + [sym_while_statement] = STATE(34), + [sym_do_statement] = STATE(34), + [sym_for_statement] = STATE(34), + [sym_return_statement] = STATE(34), + [sym_break_statement] = STATE(34), + [sym_continue_statement] = STATE(34), + [sym_goto_statement] = STATE(34), + [sym__expression] = STATE(568), + [sym_comma_expression] = STATE(1210), + [sym_conditional_expression] = STATE(568), + [sym_assignment_expression] = STATE(568), + [sym_pointer_expression] = STATE(532), + [sym_unary_expression] = STATE(568), + [sym_binary_expression] = STATE(568), + [sym_update_expression] = STATE(568), + [sym_cast_expression] = STATE(568), + [sym_sizeof_expression] = STATE(568), + [sym_subscript_expression] = STATE(532), + [sym_call_expression] = STATE(532), + [sym_field_expression] = STATE(532), + [sym_compound_literal_expression] = STATE(568), + [sym_parenthesized_expression] = STATE(532), + [sym_char_literal] = STATE(568), + [sym_concatenated_string] = STATE(568), + [sym_string_literal] = STATE(379), + [sym__empty_declaration] = STATE(34), + [sym_macro_type_specifier] = STATE(821), + [aux_sym_translation_unit_repeat1] = STATE(34), + [aux_sym__declaration_specifiers_repeat1] = STATE(561), + [aux_sym_sized_type_specifier_repeat1] = STATE(704), [sym_identifier] = ACTIONS(292), [aux_sym_preproc_include_token1] = ACTIONS(294), [aux_sym_preproc_def_token1] = ACTIONS(296), @@ -10046,7 +10064,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_extern] = ACTIONS(308), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACE] = ACTIONS(310), - [anon_sym_RBRACE] = ACTIONS(480), + [anon_sym_RBRACE] = ACTIONS(410), [anon_sym_static] = ACTIONS(37), [anon_sym_auto] = ACTIONS(37), [anon_sym_register] = ACTIONS(37), @@ -10094,183 +10112,61 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [33] = { - [sym_preproc_include] = STATE(33), - [sym_preproc_def] = STATE(33), - [sym_preproc_function_def] = STATE(33), - [sym_preproc_call] = STATE(33), - [sym_preproc_if] = STATE(33), - [sym_preproc_ifdef] = STATE(33), - [sym_function_definition] = STATE(33), - [sym_declaration] = STATE(33), - [sym_type_definition] = STATE(33), - [sym__declaration_specifiers] = STATE(874), - [sym_linkage_specification] = STATE(33), - [sym_attribute_specifier] = STATE(570), - [sym_compound_statement] = STATE(33), - [sym_storage_class_specifier] = STATE(570), - [sym_type_qualifier] = STATE(570), - [sym__type_specifier] = STATE(845), - [sym_sized_type_specifier] = STATE(845), - [sym_enum_specifier] = STATE(845), - [sym_struct_specifier] = STATE(845), - [sym_union_specifier] = STATE(845), - [sym_labeled_statement] = STATE(33), - [sym_expression_statement] = STATE(33), - [sym_if_statement] = STATE(33), - [sym_switch_statement] = STATE(33), - [sym_case_statement] = STATE(33), - [sym_while_statement] = STATE(33), - [sym_do_statement] = STATE(33), - [sym_for_statement] = STATE(33), - [sym_return_statement] = STATE(33), - [sym_break_statement] = STATE(33), - [sym_continue_statement] = STATE(33), - [sym_goto_statement] = STATE(33), - [sym__expression] = STATE(616), - [sym_comma_expression] = STATE(1170), - [sym_conditional_expression] = STATE(616), - [sym_assignment_expression] = STATE(616), - [sym_pointer_expression] = STATE(505), - [sym_unary_expression] = STATE(616), - [sym_binary_expression] = STATE(616), - [sym_update_expression] = STATE(616), - [sym_cast_expression] = STATE(616), - [sym_sizeof_expression] = STATE(616), - [sym_subscript_expression] = STATE(505), - [sym_call_expression] = STATE(505), - [sym_field_expression] = STATE(505), - [sym_compound_literal_expression] = STATE(616), - [sym_parenthesized_expression] = STATE(505), - [sym_char_literal] = STATE(616), - [sym_concatenated_string] = STATE(616), - [sym_string_literal] = STATE(376), - [sym__empty_declaration] = STATE(33), - [sym_macro_type_specifier] = STATE(845), - [aux_sym_translation_unit_repeat1] = STATE(33), - [aux_sym__declaration_specifiers_repeat1] = STATE(570), - [aux_sym_sized_type_specifier_repeat1] = STATE(712), - [sym_identifier] = ACTIONS(482), - [aux_sym_preproc_include_token1] = ACTIONS(485), - [aux_sym_preproc_def_token1] = ACTIONS(488), - [aux_sym_preproc_if_token1] = ACTIONS(491), - [aux_sym_preproc_ifdef_token1] = ACTIONS(494), - [aux_sym_preproc_ifdef_token2] = ACTIONS(494), - [sym_preproc_directive] = ACTIONS(497), - [anon_sym_LPAREN2] = ACTIONS(193), - [anon_sym_BANG] = ACTIONS(196), - [anon_sym_TILDE] = ACTIONS(196), - [anon_sym_DASH] = ACTIONS(199), - [anon_sym_PLUS] = ACTIONS(199), - [anon_sym_STAR] = ACTIONS(202), - [anon_sym_AMP] = ACTIONS(202), - [anon_sym_SEMI] = ACTIONS(500), - [anon_sym_typedef] = ACTIONS(503), - [anon_sym_extern] = ACTIONS(506), - [anon_sym___attribute__] = ACTIONS(214), - [anon_sym_LBRACE] = ACTIONS(509), - [anon_sym_RBRACE] = ACTIONS(512), - [anon_sym_static] = ACTIONS(220), - [anon_sym_auto] = ACTIONS(220), - [anon_sym_register] = ACTIONS(220), - [anon_sym_inline] = ACTIONS(220), - [anon_sym_const] = ACTIONS(223), - [anon_sym_volatile] = ACTIONS(223), - [anon_sym_restrict] = ACTIONS(223), - [anon_sym__Atomic] = ACTIONS(223), - [anon_sym_signed] = ACTIONS(226), - [anon_sym_unsigned] = ACTIONS(226), - [anon_sym_long] = ACTIONS(226), - [anon_sym_short] = ACTIONS(226), - [sym_primitive_type] = ACTIONS(514), - [anon_sym_enum] = ACTIONS(232), - [anon_sym_struct] = ACTIONS(235), - [anon_sym_union] = ACTIONS(238), - [anon_sym_if] = ACTIONS(517), - [anon_sym_switch] = ACTIONS(520), - [anon_sym_case] = ACTIONS(523), - [anon_sym_default] = ACTIONS(526), - [anon_sym_while] = ACTIONS(529), - [anon_sym_do] = ACTIONS(532), - [anon_sym_for] = ACTIONS(535), - [anon_sym_return] = ACTIONS(538), - [anon_sym_break] = ACTIONS(541), - [anon_sym_continue] = ACTIONS(544), - [anon_sym_goto] = ACTIONS(547), - [anon_sym_DASH_DASH] = ACTIONS(274), - [anon_sym_PLUS_PLUS] = ACTIONS(274), - [anon_sym_sizeof] = ACTIONS(277), - [sym_number_literal] = ACTIONS(550), - [anon_sym_L_SQUOTE] = ACTIONS(283), - [anon_sym_u_SQUOTE] = ACTIONS(283), - [anon_sym_U_SQUOTE] = ACTIONS(283), - [anon_sym_u8_SQUOTE] = ACTIONS(283), - [anon_sym_SQUOTE] = ACTIONS(283), - [anon_sym_L_DQUOTE] = ACTIONS(286), - [anon_sym_u_DQUOTE] = ACTIONS(286), - [anon_sym_U_DQUOTE] = ACTIONS(286), - [anon_sym_u8_DQUOTE] = ACTIONS(286), - [anon_sym_DQUOTE] = ACTIONS(286), - [sym_true] = ACTIONS(553), - [sym_false] = ACTIONS(553), - [sym_null] = ACTIONS(553), - [sym_comment] = ACTIONS(3), - }, - [34] = { - [sym_preproc_include] = STATE(29), - [sym_preproc_def] = STATE(29), - [sym_preproc_function_def] = STATE(29), - [sym_preproc_call] = STATE(29), - [sym_preproc_if] = STATE(29), - [sym_preproc_ifdef] = STATE(29), - [sym_function_definition] = STATE(29), - [sym_declaration] = STATE(29), - [sym_type_definition] = STATE(29), - [sym__declaration_specifiers] = STATE(874), - [sym_linkage_specification] = STATE(29), - [sym_attribute_specifier] = STATE(570), - [sym_compound_statement] = STATE(29), - [sym_storage_class_specifier] = STATE(570), - [sym_type_qualifier] = STATE(570), - [sym__type_specifier] = STATE(845), - [sym_sized_type_specifier] = STATE(845), - [sym_enum_specifier] = STATE(845), - [sym_struct_specifier] = STATE(845), - [sym_union_specifier] = STATE(845), - [sym_labeled_statement] = STATE(29), - [sym_expression_statement] = STATE(29), - [sym_if_statement] = STATE(29), - [sym_switch_statement] = STATE(29), - [sym_case_statement] = STATE(29), - [sym_while_statement] = STATE(29), - [sym_do_statement] = STATE(29), - [sym_for_statement] = STATE(29), - [sym_return_statement] = STATE(29), - [sym_break_statement] = STATE(29), - [sym_continue_statement] = STATE(29), - [sym_goto_statement] = STATE(29), - [sym__expression] = STATE(616), - [sym_comma_expression] = STATE(1170), - [sym_conditional_expression] = STATE(616), - [sym_assignment_expression] = STATE(616), - [sym_pointer_expression] = STATE(505), - [sym_unary_expression] = STATE(616), - [sym_binary_expression] = STATE(616), - [sym_update_expression] = STATE(616), - [sym_cast_expression] = STATE(616), - [sym_sizeof_expression] = STATE(616), - [sym_subscript_expression] = STATE(505), - [sym_call_expression] = STATE(505), - [sym_field_expression] = STATE(505), - [sym_compound_literal_expression] = STATE(616), - [sym_parenthesized_expression] = STATE(505), - [sym_char_literal] = STATE(616), - [sym_concatenated_string] = STATE(616), - [sym_string_literal] = STATE(376), - [sym__empty_declaration] = STATE(29), - [sym_macro_type_specifier] = STATE(845), - [aux_sym_translation_unit_repeat1] = STATE(29), - [aux_sym__declaration_specifiers_repeat1] = STATE(570), - [aux_sym_sized_type_specifier_repeat1] = STATE(712), + [sym_preproc_include] = STATE(34), + [sym_preproc_def] = STATE(34), + [sym_preproc_function_def] = STATE(34), + [sym_preproc_call] = STATE(34), + [sym_preproc_if] = STATE(34), + [sym_preproc_ifdef] = STATE(34), + [sym_function_definition] = STATE(34), + [sym_declaration] = STATE(34), + [sym_type_definition] = STATE(34), + [sym__declaration_specifiers] = STATE(865), + [sym_linkage_specification] = STATE(34), + [sym_attribute_specifier] = STATE(561), + [sym_compound_statement] = STATE(34), + [sym_storage_class_specifier] = STATE(561), + [sym_type_qualifier] = STATE(561), + [sym__type_specifier] = STATE(821), + [sym_sized_type_specifier] = STATE(821), + [sym_enum_specifier] = STATE(821), + [sym_struct_specifier] = STATE(821), + [sym_union_specifier] = STATE(821), + [sym_labeled_statement] = STATE(34), + [sym_expression_statement] = STATE(34), + [sym_if_statement] = STATE(34), + [sym_switch_statement] = STATE(34), + [sym_case_statement] = STATE(34), + [sym_while_statement] = STATE(34), + [sym_do_statement] = STATE(34), + [sym_for_statement] = STATE(34), + [sym_return_statement] = STATE(34), + [sym_break_statement] = STATE(34), + [sym_continue_statement] = STATE(34), + [sym_goto_statement] = STATE(34), + [sym__expression] = STATE(568), + [sym_comma_expression] = STATE(1210), + [sym_conditional_expression] = STATE(568), + [sym_assignment_expression] = STATE(568), + [sym_pointer_expression] = STATE(532), + [sym_unary_expression] = STATE(568), + [sym_binary_expression] = STATE(568), + [sym_update_expression] = STATE(568), + [sym_cast_expression] = STATE(568), + [sym_sizeof_expression] = STATE(568), + [sym_subscript_expression] = STATE(532), + [sym_call_expression] = STATE(532), + [sym_field_expression] = STATE(532), + [sym_compound_literal_expression] = STATE(568), + [sym_parenthesized_expression] = STATE(532), + [sym_char_literal] = STATE(568), + [sym_concatenated_string] = STATE(568), + [sym_string_literal] = STATE(379), + [sym__empty_declaration] = STATE(34), + [sym_macro_type_specifier] = STATE(821), + [aux_sym_translation_unit_repeat1] = STATE(34), + [aux_sym__declaration_specifiers_repeat1] = STATE(561), + [aux_sym_sized_type_specifier_repeat1] = STATE(704), [sym_identifier] = ACTIONS(292), [aux_sym_preproc_include_token1] = ACTIONS(294), [aux_sym_preproc_def_token1] = ACTIONS(296), @@ -10290,7 +10186,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_extern] = ACTIONS(308), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACE] = ACTIONS(310), - [anon_sym_RBRACE] = ACTIONS(556), + [anon_sym_RBRACE] = ACTIONS(412), [anon_sym_static] = ACTIONS(37), [anon_sym_auto] = ACTIONS(37), [anon_sym_register] = ACTIONS(37), @@ -10337,70 +10233,314 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(340), [sym_comment] = ACTIONS(3), }, + [34] = { + [sym_preproc_include] = STATE(34), + [sym_preproc_def] = STATE(34), + [sym_preproc_function_def] = STATE(34), + [sym_preproc_call] = STATE(34), + [sym_preproc_if] = STATE(34), + [sym_preproc_ifdef] = STATE(34), + [sym_function_definition] = STATE(34), + [sym_declaration] = STATE(34), + [sym_type_definition] = STATE(34), + [sym__declaration_specifiers] = STATE(865), + [sym_linkage_specification] = STATE(34), + [sym_attribute_specifier] = STATE(561), + [sym_compound_statement] = STATE(34), + [sym_storage_class_specifier] = STATE(561), + [sym_type_qualifier] = STATE(561), + [sym__type_specifier] = STATE(821), + [sym_sized_type_specifier] = STATE(821), + [sym_enum_specifier] = STATE(821), + [sym_struct_specifier] = STATE(821), + [sym_union_specifier] = STATE(821), + [sym_labeled_statement] = STATE(34), + [sym_expression_statement] = STATE(34), + [sym_if_statement] = STATE(34), + [sym_switch_statement] = STATE(34), + [sym_case_statement] = STATE(34), + [sym_while_statement] = STATE(34), + [sym_do_statement] = STATE(34), + [sym_for_statement] = STATE(34), + [sym_return_statement] = STATE(34), + [sym_break_statement] = STATE(34), + [sym_continue_statement] = STATE(34), + [sym_goto_statement] = STATE(34), + [sym__expression] = STATE(568), + [sym_comma_expression] = STATE(1210), + [sym_conditional_expression] = STATE(568), + [sym_assignment_expression] = STATE(568), + [sym_pointer_expression] = STATE(532), + [sym_unary_expression] = STATE(568), + [sym_binary_expression] = STATE(568), + [sym_update_expression] = STATE(568), + [sym_cast_expression] = STATE(568), + [sym_sizeof_expression] = STATE(568), + [sym_subscript_expression] = STATE(532), + [sym_call_expression] = STATE(532), + [sym_field_expression] = STATE(532), + [sym_compound_literal_expression] = STATE(568), + [sym_parenthesized_expression] = STATE(532), + [sym_char_literal] = STATE(568), + [sym_concatenated_string] = STATE(568), + [sym_string_literal] = STATE(379), + [sym__empty_declaration] = STATE(34), + [sym_macro_type_specifier] = STATE(821), + [aux_sym_translation_unit_repeat1] = STATE(34), + [aux_sym__declaration_specifiers_repeat1] = STATE(561), + [aux_sym_sized_type_specifier_repeat1] = STATE(704), + [sym_identifier] = ACTIONS(414), + [aux_sym_preproc_include_token1] = ACTIONS(417), + [aux_sym_preproc_def_token1] = ACTIONS(420), + [aux_sym_preproc_if_token1] = ACTIONS(423), + [aux_sym_preproc_ifdef_token1] = ACTIONS(426), + [aux_sym_preproc_ifdef_token2] = ACTIONS(426), + [sym_preproc_directive] = ACTIONS(429), + [anon_sym_LPAREN2] = ACTIONS(193), + [anon_sym_BANG] = ACTIONS(196), + [anon_sym_TILDE] = ACTIONS(196), + [anon_sym_DASH] = ACTIONS(199), + [anon_sym_PLUS] = ACTIONS(199), + [anon_sym_STAR] = ACTIONS(202), + [anon_sym_AMP] = ACTIONS(202), + [anon_sym_SEMI] = ACTIONS(432), + [anon_sym_typedef] = ACTIONS(435), + [anon_sym_extern] = ACTIONS(438), + [anon_sym___attribute__] = ACTIONS(214), + [anon_sym_LBRACE] = ACTIONS(441), + [anon_sym_RBRACE] = ACTIONS(444), + [anon_sym_static] = ACTIONS(220), + [anon_sym_auto] = ACTIONS(220), + [anon_sym_register] = ACTIONS(220), + [anon_sym_inline] = ACTIONS(220), + [anon_sym_const] = ACTIONS(223), + [anon_sym_volatile] = ACTIONS(223), + [anon_sym_restrict] = ACTIONS(223), + [anon_sym__Atomic] = ACTIONS(223), + [anon_sym_signed] = ACTIONS(226), + [anon_sym_unsigned] = ACTIONS(226), + [anon_sym_long] = ACTIONS(226), + [anon_sym_short] = ACTIONS(226), + [sym_primitive_type] = ACTIONS(446), + [anon_sym_enum] = ACTIONS(232), + [anon_sym_struct] = ACTIONS(235), + [anon_sym_union] = ACTIONS(238), + [anon_sym_if] = ACTIONS(449), + [anon_sym_switch] = ACTIONS(452), + [anon_sym_case] = ACTIONS(455), + [anon_sym_default] = ACTIONS(458), + [anon_sym_while] = ACTIONS(461), + [anon_sym_do] = ACTIONS(464), + [anon_sym_for] = ACTIONS(467), + [anon_sym_return] = ACTIONS(470), + [anon_sym_break] = ACTIONS(473), + [anon_sym_continue] = ACTIONS(476), + [anon_sym_goto] = ACTIONS(479), + [anon_sym_DASH_DASH] = ACTIONS(274), + [anon_sym_PLUS_PLUS] = ACTIONS(274), + [anon_sym_sizeof] = ACTIONS(277), + [sym_number_literal] = ACTIONS(482), + [anon_sym_L_SQUOTE] = ACTIONS(283), + [anon_sym_u_SQUOTE] = ACTIONS(283), + [anon_sym_U_SQUOTE] = ACTIONS(283), + [anon_sym_u8_SQUOTE] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_L_DQUOTE] = ACTIONS(286), + [anon_sym_u_DQUOTE] = ACTIONS(286), + [anon_sym_U_DQUOTE] = ACTIONS(286), + [anon_sym_u8_DQUOTE] = ACTIONS(286), + [anon_sym_DQUOTE] = ACTIONS(286), + [sym_true] = ACTIONS(485), + [sym_false] = ACTIONS(485), + [sym_null] = ACTIONS(485), + [sym_comment] = ACTIONS(3), + }, [35] = { - [sym_preproc_include] = STATE(22), - [sym_preproc_def] = STATE(22), - [sym_preproc_function_def] = STATE(22), - [sym_preproc_call] = STATE(22), - [sym_preproc_if] = STATE(22), - [sym_preproc_ifdef] = STATE(22), - [sym_function_definition] = STATE(22), - [sym_declaration] = STATE(22), - [sym_type_definition] = STATE(22), - [sym__declaration_specifiers] = STATE(877), - [sym_linkage_specification] = STATE(22), - [sym_attribute_specifier] = STATE(570), - [sym_compound_statement] = STATE(22), - [sym_storage_class_specifier] = STATE(570), - [sym_type_qualifier] = STATE(570), - [sym__type_specifier] = STATE(837), - [sym_sized_type_specifier] = STATE(837), - [sym_enum_specifier] = STATE(837), - [sym_struct_specifier] = STATE(837), - [sym_union_specifier] = STATE(837), - [sym_labeled_statement] = STATE(22), - [sym_expression_statement] = STATE(22), - [sym_if_statement] = STATE(22), - [sym_switch_statement] = STATE(22), - [sym_case_statement] = STATE(22), - [sym_while_statement] = STATE(22), - [sym_do_statement] = STATE(22), - [sym_for_statement] = STATE(22), - [sym_return_statement] = STATE(22), - [sym_break_statement] = STATE(22), - [sym_continue_statement] = STATE(22), - [sym_goto_statement] = STATE(22), - [sym__expression] = STATE(596), - [sym_comma_expression] = STATE(1096), - [sym_conditional_expression] = STATE(596), - [sym_assignment_expression] = STATE(596), - [sym_pointer_expression] = STATE(505), - [sym_unary_expression] = STATE(596), - [sym_binary_expression] = STATE(596), - [sym_update_expression] = STATE(596), - [sym_cast_expression] = STATE(596), - [sym_sizeof_expression] = STATE(596), - [sym_subscript_expression] = STATE(505), - [sym_call_expression] = STATE(505), - [sym_field_expression] = STATE(505), - [sym_compound_literal_expression] = STATE(596), - [sym_parenthesized_expression] = STATE(505), - [sym_char_literal] = STATE(596), - [sym_concatenated_string] = STATE(596), - [sym_string_literal] = STATE(376), - [sym__empty_declaration] = STATE(22), - [sym_macro_type_specifier] = STATE(837), - [aux_sym_translation_unit_repeat1] = STATE(22), - [aux_sym__declaration_specifiers_repeat1] = STATE(570), - [aux_sym_sized_type_specifier_repeat1] = STATE(712), - [sym_identifier] = ACTIONS(430), - [aux_sym_preproc_include_token1] = ACTIONS(432), - [aux_sym_preproc_def_token1] = ACTIONS(434), - [aux_sym_preproc_if_token1] = ACTIONS(436), - [aux_sym_preproc_if_token2] = ACTIONS(558), - [aux_sym_preproc_ifdef_token1] = ACTIONS(440), - [aux_sym_preproc_ifdef_token2] = ACTIONS(440), - [sym_preproc_directive] = ACTIONS(442), + [sym_preproc_include] = STATE(35), + [sym_preproc_def] = STATE(35), + [sym_preproc_function_def] = STATE(35), + [sym_preproc_call] = STATE(35), + [sym_preproc_if] = STATE(35), + [sym_preproc_ifdef] = STATE(35), + [sym_function_definition] = STATE(35), + [sym_declaration] = STATE(35), + [sym_type_definition] = STATE(35), + [sym__declaration_specifiers] = STATE(873), + [sym_linkage_specification] = STATE(35), + [sym_attribute_specifier] = STATE(561), + [sym_compound_statement] = STATE(35), + [sym_storage_class_specifier] = STATE(561), + [sym_type_qualifier] = STATE(561), + [sym__type_specifier] = STATE(819), + [sym_sized_type_specifier] = STATE(819), + [sym_enum_specifier] = STATE(819), + [sym_struct_specifier] = STATE(819), + [sym_union_specifier] = STATE(819), + [sym_labeled_statement] = STATE(35), + [sym_expression_statement] = STATE(35), + [sym_if_statement] = STATE(35), + [sym_switch_statement] = STATE(35), + [sym_case_statement] = STATE(35), + [sym_while_statement] = STATE(35), + [sym_do_statement] = STATE(35), + [sym_for_statement] = STATE(35), + [sym_return_statement] = STATE(35), + [sym_break_statement] = STATE(35), + [sym_continue_statement] = STATE(35), + [sym_goto_statement] = STATE(35), + [sym__expression] = STATE(607), + [sym_comma_expression] = STATE(1092), + [sym_conditional_expression] = STATE(607), + [sym_assignment_expression] = STATE(607), + [sym_pointer_expression] = STATE(532), + [sym_unary_expression] = STATE(607), + [sym_binary_expression] = STATE(607), + [sym_update_expression] = STATE(607), + [sym_cast_expression] = STATE(607), + [sym_sizeof_expression] = STATE(607), + [sym_subscript_expression] = STATE(532), + [sym_call_expression] = STATE(532), + [sym_field_expression] = STATE(532), + [sym_compound_literal_expression] = STATE(607), + [sym_parenthesized_expression] = STATE(532), + [sym_char_literal] = STATE(607), + [sym_concatenated_string] = STATE(607), + [sym_string_literal] = STATE(379), + [sym__empty_declaration] = STATE(35), + [sym_macro_type_specifier] = STATE(819), + [aux_sym_translation_unit_repeat1] = STATE(35), + [aux_sym__declaration_specifiers_repeat1] = STATE(561), + [aux_sym_sized_type_specifier_repeat1] = STATE(704), + [sym_identifier] = ACTIONS(488), + [aux_sym_preproc_include_token1] = ACTIONS(491), + [aux_sym_preproc_def_token1] = ACTIONS(494), + [aux_sym_preproc_if_token1] = ACTIONS(497), + [aux_sym_preproc_if_token2] = ACTIONS(185), + [aux_sym_preproc_ifdef_token1] = ACTIONS(500), + [aux_sym_preproc_ifdef_token2] = ACTIONS(500), + [sym_preproc_directive] = ACTIONS(503), + [anon_sym_LPAREN2] = ACTIONS(193), + [anon_sym_BANG] = ACTIONS(196), + [anon_sym_TILDE] = ACTIONS(196), + [anon_sym_DASH] = ACTIONS(199), + [anon_sym_PLUS] = ACTIONS(199), + [anon_sym_STAR] = ACTIONS(202), + [anon_sym_AMP] = ACTIONS(202), + [anon_sym_SEMI] = ACTIONS(506), + [anon_sym_typedef] = ACTIONS(509), + [anon_sym_extern] = ACTIONS(512), + [anon_sym___attribute__] = ACTIONS(214), + [anon_sym_LBRACE] = ACTIONS(515), + [anon_sym_static] = ACTIONS(220), + [anon_sym_auto] = ACTIONS(220), + [anon_sym_register] = ACTIONS(220), + [anon_sym_inline] = ACTIONS(220), + [anon_sym_const] = ACTIONS(223), + [anon_sym_volatile] = ACTIONS(223), + [anon_sym_restrict] = ACTIONS(223), + [anon_sym__Atomic] = ACTIONS(223), + [anon_sym_signed] = ACTIONS(226), + [anon_sym_unsigned] = ACTIONS(226), + [anon_sym_long] = ACTIONS(226), + [anon_sym_short] = ACTIONS(226), + [sym_primitive_type] = ACTIONS(518), + [anon_sym_enum] = ACTIONS(232), + [anon_sym_struct] = ACTIONS(235), + [anon_sym_union] = ACTIONS(238), + [anon_sym_if] = ACTIONS(521), + [anon_sym_switch] = ACTIONS(524), + [anon_sym_case] = ACTIONS(527), + [anon_sym_default] = ACTIONS(530), + [anon_sym_while] = ACTIONS(533), + [anon_sym_do] = ACTIONS(536), + [anon_sym_for] = ACTIONS(539), + [anon_sym_return] = ACTIONS(542), + [anon_sym_break] = ACTIONS(545), + [anon_sym_continue] = ACTIONS(548), + [anon_sym_goto] = ACTIONS(551), + [anon_sym_DASH_DASH] = ACTIONS(274), + [anon_sym_PLUS_PLUS] = ACTIONS(274), + [anon_sym_sizeof] = ACTIONS(277), + [sym_number_literal] = ACTIONS(554), + [anon_sym_L_SQUOTE] = ACTIONS(283), + [anon_sym_u_SQUOTE] = ACTIONS(283), + [anon_sym_U_SQUOTE] = ACTIONS(283), + [anon_sym_u8_SQUOTE] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_L_DQUOTE] = ACTIONS(286), + [anon_sym_u_DQUOTE] = ACTIONS(286), + [anon_sym_U_DQUOTE] = ACTIONS(286), + [anon_sym_u8_DQUOTE] = ACTIONS(286), + [anon_sym_DQUOTE] = ACTIONS(286), + [sym_true] = ACTIONS(557), + [sym_false] = ACTIONS(557), + [sym_null] = ACTIONS(557), + [sym_comment] = ACTIONS(3), + }, + [36] = { + [sym_preproc_include] = STATE(26), + [sym_preproc_def] = STATE(26), + [sym_preproc_function_def] = STATE(26), + [sym_preproc_call] = STATE(26), + [sym_preproc_if] = STATE(26), + [sym_preproc_ifdef] = STATE(26), + [sym_function_definition] = STATE(26), + [sym_declaration] = STATE(26), + [sym_type_definition] = STATE(26), + [sym__declaration_specifiers] = STATE(873), + [sym_linkage_specification] = STATE(26), + [sym_attribute_specifier] = STATE(561), + [sym_compound_statement] = STATE(26), + [sym_storage_class_specifier] = STATE(561), + [sym_type_qualifier] = STATE(561), + [sym__type_specifier] = STATE(819), + [sym_sized_type_specifier] = STATE(819), + [sym_enum_specifier] = STATE(819), + [sym_struct_specifier] = STATE(819), + [sym_union_specifier] = STATE(819), + [sym_labeled_statement] = STATE(26), + [sym_expression_statement] = STATE(26), + [sym_if_statement] = STATE(26), + [sym_switch_statement] = STATE(26), + [sym_case_statement] = STATE(26), + [sym_while_statement] = STATE(26), + [sym_do_statement] = STATE(26), + [sym_for_statement] = STATE(26), + [sym_return_statement] = STATE(26), + [sym_break_statement] = STATE(26), + [sym_continue_statement] = STATE(26), + [sym_goto_statement] = STATE(26), + [sym__expression] = STATE(607), + [sym_comma_expression] = STATE(1092), + [sym_conditional_expression] = STATE(607), + [sym_assignment_expression] = STATE(607), + [sym_pointer_expression] = STATE(532), + [sym_unary_expression] = STATE(607), + [sym_binary_expression] = STATE(607), + [sym_update_expression] = STATE(607), + [sym_cast_expression] = STATE(607), + [sym_sizeof_expression] = STATE(607), + [sym_subscript_expression] = STATE(532), + [sym_call_expression] = STATE(532), + [sym_field_expression] = STATE(532), + [sym_compound_literal_expression] = STATE(607), + [sym_parenthesized_expression] = STATE(532), + [sym_char_literal] = STATE(607), + [sym_concatenated_string] = STATE(607), + [sym_string_literal] = STATE(379), + [sym__empty_declaration] = STATE(26), + [sym_macro_type_specifier] = STATE(819), + [aux_sym_translation_unit_repeat1] = STATE(26), + [aux_sym__declaration_specifiers_repeat1] = STATE(561), + [aux_sym_sized_type_specifier_repeat1] = STATE(704), + [sym_identifier] = ACTIONS(350), + [aux_sym_preproc_include_token1] = ACTIONS(352), + [aux_sym_preproc_def_token1] = ACTIONS(354), + [aux_sym_preproc_if_token1] = ACTIONS(356), + [aux_sym_preproc_if_token2] = ACTIONS(560), + [aux_sym_preproc_ifdef_token1] = ACTIONS(360), + [aux_sym_preproc_ifdef_token2] = ACTIONS(360), + [sym_preproc_directive] = ACTIONS(362), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -10408,11 +10548,11 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(444), - [anon_sym_typedef] = ACTIONS(446), - [anon_sym_extern] = ACTIONS(448), + [anon_sym_SEMI] = ACTIONS(364), + [anon_sym_typedef] = ACTIONS(366), + [anon_sym_extern] = ACTIONS(368), [anon_sym___attribute__] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(450), + [anon_sym_LBRACE] = ACTIONS(370), [anon_sym_static] = ACTIONS(37), [anon_sym_auto] = ACTIONS(37), [anon_sym_register] = ACTIONS(37), @@ -10425,25 +10565,25 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsigned] = ACTIONS(41), [anon_sym_long] = ACTIONS(41), [anon_sym_short] = ACTIONS(41), - [sym_primitive_type] = ACTIONS(452), + [sym_primitive_type] = ACTIONS(372), [anon_sym_enum] = ACTIONS(45), [anon_sym_struct] = ACTIONS(47), [anon_sym_union] = ACTIONS(49), - [anon_sym_if] = ACTIONS(454), - [anon_sym_switch] = ACTIONS(456), - [anon_sym_case] = ACTIONS(458), - [anon_sym_default] = ACTIONS(460), - [anon_sym_while] = ACTIONS(462), - [anon_sym_do] = ACTIONS(464), - [anon_sym_for] = ACTIONS(466), - [anon_sym_return] = ACTIONS(468), - [anon_sym_break] = ACTIONS(470), - [anon_sym_continue] = ACTIONS(472), - [anon_sym_goto] = ACTIONS(474), + [anon_sym_if] = ACTIONS(374), + [anon_sym_switch] = ACTIONS(376), + [anon_sym_case] = ACTIONS(378), + [anon_sym_default] = ACTIONS(380), + [anon_sym_while] = ACTIONS(382), + [anon_sym_do] = ACTIONS(384), + [anon_sym_for] = ACTIONS(386), + [anon_sym_return] = ACTIONS(388), + [anon_sym_break] = ACTIONS(390), + [anon_sym_continue] = ACTIONS(392), + [anon_sym_goto] = ACTIONS(394), [anon_sym_DASH_DASH] = ACTIONS(73), [anon_sym_PLUS_PLUS] = ACTIONS(73), [anon_sym_sizeof] = ACTIONS(75), - [sym_number_literal] = ACTIONS(476), + [sym_number_literal] = ACTIONS(396), [anon_sym_L_SQUOTE] = ACTIONS(79), [anon_sym_u_SQUOTE] = ACTIONS(79), [anon_sym_U_SQUOTE] = ACTIONS(79), @@ -10454,75 +10594,75 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_U_DQUOTE] = ACTIONS(81), [anon_sym_u8_DQUOTE] = ACTIONS(81), [anon_sym_DQUOTE] = ACTIONS(81), - [sym_true] = ACTIONS(478), - [sym_false] = ACTIONS(478), - [sym_null] = ACTIONS(478), + [sym_true] = ACTIONS(398), + [sym_false] = ACTIONS(398), + [sym_null] = ACTIONS(398), [sym_comment] = ACTIONS(3), }, - [36] = { - [sym_preproc_include] = STATE(36), - [sym_preproc_def] = STATE(36), - [sym_preproc_function_def] = STATE(36), - [sym_preproc_call] = STATE(36), - [sym_preproc_if] = STATE(36), - [sym_preproc_ifdef] = STATE(36), - [sym_function_definition] = STATE(36), - [sym_declaration] = STATE(36), - [sym_type_definition] = STATE(36), - [sym__declaration_specifiers] = STATE(872), - [sym_linkage_specification] = STATE(36), - [sym_attribute_specifier] = STATE(570), - [sym_compound_statement] = STATE(36), - [sym_storage_class_specifier] = STATE(570), - [sym_type_qualifier] = STATE(570), - [sym__type_specifier] = STATE(840), - [sym_sized_type_specifier] = STATE(840), - [sym_enum_specifier] = STATE(840), - [sym_struct_specifier] = STATE(840), - [sym_union_specifier] = STATE(840), - [sym_labeled_statement] = STATE(36), - [sym_expression_statement] = STATE(36), - [sym_if_statement] = STATE(36), - [sym_switch_statement] = STATE(36), - [sym_case_statement] = STATE(36), - [sym_while_statement] = STATE(36), - [sym_do_statement] = STATE(36), - [sym_for_statement] = STATE(36), - [sym_return_statement] = STATE(36), - [sym_break_statement] = STATE(36), - [sym_continue_statement] = STATE(36), - [sym_goto_statement] = STATE(36), - [sym__expression] = STATE(614), - [sym_comma_expression] = STATE(1210), - [sym_conditional_expression] = STATE(614), - [sym_assignment_expression] = STATE(614), - [sym_pointer_expression] = STATE(505), - [sym_unary_expression] = STATE(614), - [sym_binary_expression] = STATE(614), - [sym_update_expression] = STATE(614), - [sym_cast_expression] = STATE(614), - [sym_sizeof_expression] = STATE(614), - [sym_subscript_expression] = STATE(505), - [sym_call_expression] = STATE(505), - [sym_field_expression] = STATE(505), - [sym_compound_literal_expression] = STATE(614), - [sym_parenthesized_expression] = STATE(505), - [sym_char_literal] = STATE(614), - [sym_concatenated_string] = STATE(614), - [sym_string_literal] = STATE(376), - [sym__empty_declaration] = STATE(36), - [sym_macro_type_specifier] = STATE(840), - [aux_sym_translation_unit_repeat1] = STATE(36), - [aux_sym__declaration_specifiers_repeat1] = STATE(570), - [aux_sym_sized_type_specifier_repeat1] = STATE(712), - [ts_builtin_sym_end] = ACTIONS(512), - [sym_identifier] = ACTIONS(560), - [aux_sym_preproc_include_token1] = ACTIONS(563), - [aux_sym_preproc_def_token1] = ACTIONS(566), - [aux_sym_preproc_if_token1] = ACTIONS(569), - [aux_sym_preproc_ifdef_token1] = ACTIONS(572), - [aux_sym_preproc_ifdef_token2] = ACTIONS(572), - [sym_preproc_directive] = ACTIONS(575), + [37] = { + [sym_preproc_include] = STATE(37), + [sym_preproc_def] = STATE(37), + [sym_preproc_function_def] = STATE(37), + [sym_preproc_call] = STATE(37), + [sym_preproc_if] = STATE(37), + [sym_preproc_ifdef] = STATE(37), + [sym_function_definition] = STATE(37), + [sym_declaration] = STATE(37), + [sym_type_definition] = STATE(37), + [sym__declaration_specifiers] = STATE(864), + [sym_linkage_specification] = STATE(37), + [sym_attribute_specifier] = STATE(561), + [sym_compound_statement] = STATE(37), + [sym_storage_class_specifier] = STATE(561), + [sym_type_qualifier] = STATE(561), + [sym__type_specifier] = STATE(822), + [sym_sized_type_specifier] = STATE(822), + [sym_enum_specifier] = STATE(822), + [sym_struct_specifier] = STATE(822), + [sym_union_specifier] = STATE(822), + [sym_labeled_statement] = STATE(37), + [sym_expression_statement] = STATE(37), + [sym_if_statement] = STATE(37), + [sym_switch_statement] = STATE(37), + [sym_case_statement] = STATE(37), + [sym_while_statement] = STATE(37), + [sym_do_statement] = STATE(37), + [sym_for_statement] = STATE(37), + [sym_return_statement] = STATE(37), + [sym_break_statement] = STATE(37), + [sym_continue_statement] = STATE(37), + [sym_goto_statement] = STATE(37), + [sym__expression] = STATE(606), + [sym_comma_expression] = STATE(1218), + [sym_conditional_expression] = STATE(606), + [sym_assignment_expression] = STATE(606), + [sym_pointer_expression] = STATE(532), + [sym_unary_expression] = STATE(606), + [sym_binary_expression] = STATE(606), + [sym_update_expression] = STATE(606), + [sym_cast_expression] = STATE(606), + [sym_sizeof_expression] = STATE(606), + [sym_subscript_expression] = STATE(532), + [sym_call_expression] = STATE(532), + [sym_field_expression] = STATE(532), + [sym_compound_literal_expression] = STATE(606), + [sym_parenthesized_expression] = STATE(532), + [sym_char_literal] = STATE(606), + [sym_concatenated_string] = STATE(606), + [sym_string_literal] = STATE(379), + [sym__empty_declaration] = STATE(37), + [sym_macro_type_specifier] = STATE(822), + [aux_sym_translation_unit_repeat1] = STATE(37), + [aux_sym__declaration_specifiers_repeat1] = STATE(561), + [aux_sym_sized_type_specifier_repeat1] = STATE(704), + [ts_builtin_sym_end] = ACTIONS(444), + [sym_identifier] = ACTIONS(562), + [aux_sym_preproc_include_token1] = ACTIONS(565), + [aux_sym_preproc_def_token1] = ACTIONS(568), + [aux_sym_preproc_if_token1] = ACTIONS(571), + [aux_sym_preproc_ifdef_token1] = ACTIONS(574), + [aux_sym_preproc_ifdef_token2] = ACTIONS(574), + [sym_preproc_directive] = ACTIONS(577), [anon_sym_LPAREN2] = ACTIONS(193), [anon_sym_BANG] = ACTIONS(196), [anon_sym_TILDE] = ACTIONS(196), @@ -10530,11 +10670,11 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(199), [anon_sym_STAR] = ACTIONS(202), [anon_sym_AMP] = ACTIONS(202), - [anon_sym_SEMI] = ACTIONS(578), - [anon_sym_typedef] = ACTIONS(581), - [anon_sym_extern] = ACTIONS(584), + [anon_sym_SEMI] = ACTIONS(580), + [anon_sym_typedef] = ACTIONS(583), + [anon_sym_extern] = ACTIONS(586), [anon_sym___attribute__] = ACTIONS(214), - [anon_sym_LBRACE] = ACTIONS(587), + [anon_sym_LBRACE] = ACTIONS(589), [anon_sym_static] = ACTIONS(220), [anon_sym_auto] = ACTIONS(220), [anon_sym_register] = ACTIONS(220), @@ -10547,25 +10687,25 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsigned] = ACTIONS(226), [anon_sym_long] = ACTIONS(226), [anon_sym_short] = ACTIONS(226), - [sym_primitive_type] = ACTIONS(590), + [sym_primitive_type] = ACTIONS(592), [anon_sym_enum] = ACTIONS(232), [anon_sym_struct] = ACTIONS(235), [anon_sym_union] = ACTIONS(238), - [anon_sym_if] = ACTIONS(593), - [anon_sym_switch] = ACTIONS(596), - [anon_sym_case] = ACTIONS(599), - [anon_sym_default] = ACTIONS(602), - [anon_sym_while] = ACTIONS(605), - [anon_sym_do] = ACTIONS(608), - [anon_sym_for] = ACTIONS(611), - [anon_sym_return] = ACTIONS(614), - [anon_sym_break] = ACTIONS(617), - [anon_sym_continue] = ACTIONS(620), - [anon_sym_goto] = ACTIONS(623), + [anon_sym_if] = ACTIONS(595), + [anon_sym_switch] = ACTIONS(598), + [anon_sym_case] = ACTIONS(601), + [anon_sym_default] = ACTIONS(604), + [anon_sym_while] = ACTIONS(607), + [anon_sym_do] = ACTIONS(610), + [anon_sym_for] = ACTIONS(613), + [anon_sym_return] = ACTIONS(616), + [anon_sym_break] = ACTIONS(619), + [anon_sym_continue] = ACTIONS(622), + [anon_sym_goto] = ACTIONS(625), [anon_sym_DASH_DASH] = ACTIONS(274), [anon_sym_PLUS_PLUS] = ACTIONS(274), [anon_sym_sizeof] = ACTIONS(277), - [sym_number_literal] = ACTIONS(626), + [sym_number_literal] = ACTIONS(628), [anon_sym_L_SQUOTE] = ACTIONS(283), [anon_sym_u_SQUOTE] = ACTIONS(283), [anon_sym_U_SQUOTE] = ACTIONS(283), @@ -10576,67 +10716,67 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_U_DQUOTE] = ACTIONS(286), [anon_sym_u8_DQUOTE] = ACTIONS(286), [anon_sym_DQUOTE] = ACTIONS(286), - [sym_true] = ACTIONS(629), - [sym_false] = ACTIONS(629), - [sym_null] = ACTIONS(629), + [sym_true] = ACTIONS(631), + [sym_false] = ACTIONS(631), + [sym_null] = ACTIONS(631), [sym_comment] = ACTIONS(3), }, - [37] = { - [sym_preproc_include] = STATE(33), - [sym_preproc_def] = STATE(33), - [sym_preproc_function_def] = STATE(33), - [sym_preproc_call] = STATE(33), - [sym_preproc_if] = STATE(33), - [sym_preproc_ifdef] = STATE(33), - [sym_function_definition] = STATE(33), - [sym_declaration] = STATE(33), - [sym_type_definition] = STATE(33), - [sym__declaration_specifiers] = STATE(874), - [sym_linkage_specification] = STATE(33), - [sym_attribute_specifier] = STATE(570), - [sym_compound_statement] = STATE(33), - [sym_storage_class_specifier] = STATE(570), - [sym_type_qualifier] = STATE(570), - [sym__type_specifier] = STATE(845), - [sym_sized_type_specifier] = STATE(845), - [sym_enum_specifier] = STATE(845), - [sym_struct_specifier] = STATE(845), - [sym_union_specifier] = STATE(845), - [sym_labeled_statement] = STATE(33), - [sym_expression_statement] = STATE(33), - [sym_if_statement] = STATE(33), - [sym_switch_statement] = STATE(33), - [sym_case_statement] = STATE(33), - [sym_while_statement] = STATE(33), - [sym_do_statement] = STATE(33), - [sym_for_statement] = STATE(33), - [sym_return_statement] = STATE(33), - [sym_break_statement] = STATE(33), - [sym_continue_statement] = STATE(33), - [sym_goto_statement] = STATE(33), - [sym__expression] = STATE(616), - [sym_comma_expression] = STATE(1170), - [sym_conditional_expression] = STATE(616), - [sym_assignment_expression] = STATE(616), - [sym_pointer_expression] = STATE(505), - [sym_unary_expression] = STATE(616), - [sym_binary_expression] = STATE(616), - [sym_update_expression] = STATE(616), - [sym_cast_expression] = STATE(616), - [sym_sizeof_expression] = STATE(616), - [sym_subscript_expression] = STATE(505), - [sym_call_expression] = STATE(505), - [sym_field_expression] = STATE(505), - [sym_compound_literal_expression] = STATE(616), - [sym_parenthesized_expression] = STATE(505), - [sym_char_literal] = STATE(616), - [sym_concatenated_string] = STATE(616), - [sym_string_literal] = STATE(376), - [sym__empty_declaration] = STATE(33), - [sym_macro_type_specifier] = STATE(845), - [aux_sym_translation_unit_repeat1] = STATE(33), - [aux_sym__declaration_specifiers_repeat1] = STATE(570), - [aux_sym_sized_type_specifier_repeat1] = STATE(712), + [38] = { + [sym_preproc_include] = STATE(21), + [sym_preproc_def] = STATE(21), + [sym_preproc_function_def] = STATE(21), + [sym_preproc_call] = STATE(21), + [sym_preproc_if] = STATE(21), + [sym_preproc_ifdef] = STATE(21), + [sym_function_definition] = STATE(21), + [sym_declaration] = STATE(21), + [sym_type_definition] = STATE(21), + [sym__declaration_specifiers] = STATE(865), + [sym_linkage_specification] = STATE(21), + [sym_attribute_specifier] = STATE(561), + [sym_compound_statement] = STATE(21), + [sym_storage_class_specifier] = STATE(561), + [sym_type_qualifier] = STATE(561), + [sym__type_specifier] = STATE(821), + [sym_sized_type_specifier] = STATE(821), + [sym_enum_specifier] = STATE(821), + [sym_struct_specifier] = STATE(821), + [sym_union_specifier] = STATE(821), + [sym_labeled_statement] = STATE(21), + [sym_expression_statement] = STATE(21), + [sym_if_statement] = STATE(21), + [sym_switch_statement] = STATE(21), + [sym_case_statement] = STATE(21), + [sym_while_statement] = STATE(21), + [sym_do_statement] = STATE(21), + [sym_for_statement] = STATE(21), + [sym_return_statement] = STATE(21), + [sym_break_statement] = STATE(21), + [sym_continue_statement] = STATE(21), + [sym_goto_statement] = STATE(21), + [sym__expression] = STATE(568), + [sym_comma_expression] = STATE(1210), + [sym_conditional_expression] = STATE(568), + [sym_assignment_expression] = STATE(568), + [sym_pointer_expression] = STATE(532), + [sym_unary_expression] = STATE(568), + [sym_binary_expression] = STATE(568), + [sym_update_expression] = STATE(568), + [sym_cast_expression] = STATE(568), + [sym_sizeof_expression] = STATE(568), + [sym_subscript_expression] = STATE(532), + [sym_call_expression] = STATE(532), + [sym_field_expression] = STATE(532), + [sym_compound_literal_expression] = STATE(568), + [sym_parenthesized_expression] = STATE(532), + [sym_char_literal] = STATE(568), + [sym_concatenated_string] = STATE(568), + [sym_string_literal] = STATE(379), + [sym__empty_declaration] = STATE(21), + [sym_macro_type_specifier] = STATE(821), + [aux_sym_translation_unit_repeat1] = STATE(21), + [aux_sym__declaration_specifiers_repeat1] = STATE(561), + [aux_sym_sized_type_specifier_repeat1] = STATE(704), [sym_identifier] = ACTIONS(292), [aux_sym_preproc_include_token1] = ACTIONS(294), [aux_sym_preproc_def_token1] = ACTIONS(296), @@ -10656,7 +10796,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_extern] = ACTIONS(308), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACE] = ACTIONS(310), - [anon_sym_RBRACE] = ACTIONS(632), + [anon_sym_RBRACE] = ACTIONS(634), [anon_sym_static] = ACTIONS(37), [anon_sym_auto] = ACTIONS(37), [anon_sym_register] = ACTIONS(37), @@ -10703,62 +10843,62 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(340), [sym_comment] = ACTIONS(3), }, - [38] = { - [sym_preproc_include] = STATE(33), - [sym_preproc_def] = STATE(33), - [sym_preproc_function_def] = STATE(33), - [sym_preproc_call] = STATE(33), - [sym_preproc_if] = STATE(33), - [sym_preproc_ifdef] = STATE(33), - [sym_function_definition] = STATE(33), - [sym_declaration] = STATE(33), - [sym_type_definition] = STATE(33), - [sym__declaration_specifiers] = STATE(874), - [sym_linkage_specification] = STATE(33), - [sym_attribute_specifier] = STATE(570), - [sym_compound_statement] = STATE(33), - [sym_storage_class_specifier] = STATE(570), - [sym_type_qualifier] = STATE(570), - [sym__type_specifier] = STATE(845), - [sym_sized_type_specifier] = STATE(845), - [sym_enum_specifier] = STATE(845), - [sym_struct_specifier] = STATE(845), - [sym_union_specifier] = STATE(845), - [sym_labeled_statement] = STATE(33), - [sym_expression_statement] = STATE(33), - [sym_if_statement] = STATE(33), - [sym_switch_statement] = STATE(33), - [sym_case_statement] = STATE(33), - [sym_while_statement] = STATE(33), - [sym_do_statement] = STATE(33), - [sym_for_statement] = STATE(33), - [sym_return_statement] = STATE(33), - [sym_break_statement] = STATE(33), - [sym_continue_statement] = STATE(33), - [sym_goto_statement] = STATE(33), - [sym__expression] = STATE(616), - [sym_comma_expression] = STATE(1170), - [sym_conditional_expression] = STATE(616), - [sym_assignment_expression] = STATE(616), - [sym_pointer_expression] = STATE(505), - [sym_unary_expression] = STATE(616), - [sym_binary_expression] = STATE(616), - [sym_update_expression] = STATE(616), - [sym_cast_expression] = STATE(616), - [sym_sizeof_expression] = STATE(616), - [sym_subscript_expression] = STATE(505), - [sym_call_expression] = STATE(505), - [sym_field_expression] = STATE(505), - [sym_compound_literal_expression] = STATE(616), - [sym_parenthesized_expression] = STATE(505), - [sym_char_literal] = STATE(616), - [sym_concatenated_string] = STATE(616), - [sym_string_literal] = STATE(376), - [sym__empty_declaration] = STATE(33), - [sym_macro_type_specifier] = STATE(845), - [aux_sym_translation_unit_repeat1] = STATE(33), - [aux_sym__declaration_specifiers_repeat1] = STATE(570), - [aux_sym_sized_type_specifier_repeat1] = STATE(712), + [39] = { + [sym_preproc_include] = STATE(34), + [sym_preproc_def] = STATE(34), + [sym_preproc_function_def] = STATE(34), + [sym_preproc_call] = STATE(34), + [sym_preproc_if] = STATE(34), + [sym_preproc_ifdef] = STATE(34), + [sym_function_definition] = STATE(34), + [sym_declaration] = STATE(34), + [sym_type_definition] = STATE(34), + [sym__declaration_specifiers] = STATE(865), + [sym_linkage_specification] = STATE(34), + [sym_attribute_specifier] = STATE(561), + [sym_compound_statement] = STATE(34), + [sym_storage_class_specifier] = STATE(561), + [sym_type_qualifier] = STATE(561), + [sym__type_specifier] = STATE(821), + [sym_sized_type_specifier] = STATE(821), + [sym_enum_specifier] = STATE(821), + [sym_struct_specifier] = STATE(821), + [sym_union_specifier] = STATE(821), + [sym_labeled_statement] = STATE(34), + [sym_expression_statement] = STATE(34), + [sym_if_statement] = STATE(34), + [sym_switch_statement] = STATE(34), + [sym_case_statement] = STATE(34), + [sym_while_statement] = STATE(34), + [sym_do_statement] = STATE(34), + [sym_for_statement] = STATE(34), + [sym_return_statement] = STATE(34), + [sym_break_statement] = STATE(34), + [sym_continue_statement] = STATE(34), + [sym_goto_statement] = STATE(34), + [sym__expression] = STATE(568), + [sym_comma_expression] = STATE(1210), + [sym_conditional_expression] = STATE(568), + [sym_assignment_expression] = STATE(568), + [sym_pointer_expression] = STATE(532), + [sym_unary_expression] = STATE(568), + [sym_binary_expression] = STATE(568), + [sym_update_expression] = STATE(568), + [sym_cast_expression] = STATE(568), + [sym_sizeof_expression] = STATE(568), + [sym_subscript_expression] = STATE(532), + [sym_call_expression] = STATE(532), + [sym_field_expression] = STATE(532), + [sym_compound_literal_expression] = STATE(568), + [sym_parenthesized_expression] = STATE(532), + [sym_char_literal] = STATE(568), + [sym_concatenated_string] = STATE(568), + [sym_string_literal] = STATE(379), + [sym__empty_declaration] = STATE(34), + [sym_macro_type_specifier] = STATE(821), + [aux_sym_translation_unit_repeat1] = STATE(34), + [aux_sym__declaration_specifiers_repeat1] = STATE(561), + [aux_sym_sized_type_specifier_repeat1] = STATE(704), [sym_identifier] = ACTIONS(292), [aux_sym_preproc_include_token1] = ACTIONS(294), [aux_sym_preproc_def_token1] = ACTIONS(296), @@ -10778,7 +10918,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_extern] = ACTIONS(308), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACE] = ACTIONS(310), - [anon_sym_RBRACE] = ACTIONS(634), + [anon_sym_RBRACE] = ACTIONS(636), [anon_sym_static] = ACTIONS(37), [anon_sym_auto] = ACTIONS(37), [anon_sym_register] = ACTIONS(37), @@ -10825,184 +10965,62 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(340), [sym_comment] = ACTIONS(3), }, - [39] = { - [sym_preproc_include] = STATE(36), - [sym_preproc_def] = STATE(36), - [sym_preproc_function_def] = STATE(36), - [sym_preproc_call] = STATE(36), - [sym_preproc_if] = STATE(36), - [sym_preproc_ifdef] = STATE(36), - [sym_function_definition] = STATE(36), - [sym_declaration] = STATE(36), - [sym_type_definition] = STATE(36), - [sym__declaration_specifiers] = STATE(872), - [sym_linkage_specification] = STATE(36), - [sym_attribute_specifier] = STATE(570), - [sym_compound_statement] = STATE(36), - [sym_storage_class_specifier] = STATE(570), - [sym_type_qualifier] = STATE(570), - [sym__type_specifier] = STATE(840), - [sym_sized_type_specifier] = STATE(840), - [sym_enum_specifier] = STATE(840), - [sym_struct_specifier] = STATE(840), - [sym_union_specifier] = STATE(840), - [sym_labeled_statement] = STATE(36), - [sym_expression_statement] = STATE(36), - [sym_if_statement] = STATE(36), - [sym_switch_statement] = STATE(36), - [sym_case_statement] = STATE(36), - [sym_while_statement] = STATE(36), - [sym_do_statement] = STATE(36), - [sym_for_statement] = STATE(36), - [sym_return_statement] = STATE(36), - [sym_break_statement] = STATE(36), - [sym_continue_statement] = STATE(36), - [sym_goto_statement] = STATE(36), - [sym__expression] = STATE(614), - [sym_comma_expression] = STATE(1210), - [sym_conditional_expression] = STATE(614), - [sym_assignment_expression] = STATE(614), - [sym_pointer_expression] = STATE(505), - [sym_unary_expression] = STATE(614), - [sym_binary_expression] = STATE(614), - [sym_update_expression] = STATE(614), - [sym_cast_expression] = STATE(614), - [sym_sizeof_expression] = STATE(614), - [sym_subscript_expression] = STATE(505), - [sym_call_expression] = STATE(505), - [sym_field_expression] = STATE(505), - [sym_compound_literal_expression] = STATE(614), - [sym_parenthesized_expression] = STATE(505), - [sym_char_literal] = STATE(614), - [sym_concatenated_string] = STATE(614), - [sym_string_literal] = STATE(376), - [sym__empty_declaration] = STATE(36), - [sym_macro_type_specifier] = STATE(840), - [aux_sym_translation_unit_repeat1] = STATE(36), - [aux_sym__declaration_specifiers_repeat1] = STATE(570), - [aux_sym_sized_type_specifier_repeat1] = STATE(712), - [ts_builtin_sym_end] = ACTIONS(636), - [sym_identifier] = ACTIONS(7), - [aux_sym_preproc_include_token1] = ACTIONS(9), - [aux_sym_preproc_def_token1] = ACTIONS(11), - [aux_sym_preproc_if_token1] = ACTIONS(13), - [aux_sym_preproc_ifdef_token1] = ACTIONS(15), - [aux_sym_preproc_ifdef_token2] = ACTIONS(15), - [sym_preproc_directive] = ACTIONS(17), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(27), - [anon_sym_typedef] = ACTIONS(29), - [anon_sym_extern] = ACTIONS(31), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(35), - [anon_sym_static] = ACTIONS(37), - [anon_sym_auto] = ACTIONS(37), - [anon_sym_register] = ACTIONS(37), - [anon_sym_inline] = ACTIONS(37), - [anon_sym_const] = ACTIONS(39), - [anon_sym_volatile] = ACTIONS(39), - [anon_sym_restrict] = ACTIONS(39), - [anon_sym__Atomic] = ACTIONS(39), - [anon_sym_signed] = ACTIONS(41), - [anon_sym_unsigned] = ACTIONS(41), - [anon_sym_long] = ACTIONS(41), - [anon_sym_short] = ACTIONS(41), - [sym_primitive_type] = ACTIONS(43), - [anon_sym_enum] = ACTIONS(45), - [anon_sym_struct] = ACTIONS(47), - [anon_sym_union] = ACTIONS(49), - [anon_sym_if] = ACTIONS(51), - [anon_sym_switch] = ACTIONS(53), - [anon_sym_case] = ACTIONS(55), - [anon_sym_default] = ACTIONS(57), - [anon_sym_while] = ACTIONS(59), - [anon_sym_do] = ACTIONS(61), - [anon_sym_for] = ACTIONS(63), - [anon_sym_return] = ACTIONS(65), - [anon_sym_break] = ACTIONS(67), - [anon_sym_continue] = ACTIONS(69), - [anon_sym_goto] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(73), - [anon_sym_PLUS_PLUS] = ACTIONS(73), - [anon_sym_sizeof] = ACTIONS(75), - [sym_number_literal] = ACTIONS(77), - [anon_sym_L_SQUOTE] = ACTIONS(79), - [anon_sym_u_SQUOTE] = ACTIONS(79), - [anon_sym_U_SQUOTE] = ACTIONS(79), - [anon_sym_u8_SQUOTE] = ACTIONS(79), - [anon_sym_SQUOTE] = ACTIONS(79), - [anon_sym_L_DQUOTE] = ACTIONS(81), - [anon_sym_u_DQUOTE] = ACTIONS(81), - [anon_sym_U_DQUOTE] = ACTIONS(81), - [anon_sym_u8_DQUOTE] = ACTIONS(81), - [anon_sym_DQUOTE] = ACTIONS(81), - [sym_true] = ACTIONS(83), - [sym_false] = ACTIONS(83), - [sym_null] = ACTIONS(83), - [sym_comment] = ACTIONS(3), - }, [40] = { - [sym_preproc_include] = STATE(42), - [sym_preproc_def] = STATE(42), - [sym_preproc_function_def] = STATE(42), - [sym_preproc_call] = STATE(42), - [sym_preproc_if] = STATE(42), - [sym_preproc_ifdef] = STATE(42), - [sym_function_definition] = STATE(42), - [sym_declaration] = STATE(42), - [sym_type_definition] = STATE(42), - [sym__declaration_specifiers] = STATE(874), - [sym_linkage_specification] = STATE(42), - [sym_attribute_specifier] = STATE(570), - [sym_compound_statement] = STATE(42), - [sym_storage_class_specifier] = STATE(570), - [sym_type_qualifier] = STATE(570), - [sym__type_specifier] = STATE(845), - [sym_sized_type_specifier] = STATE(845), - [sym_enum_specifier] = STATE(845), - [sym_struct_specifier] = STATE(845), - [sym_union_specifier] = STATE(845), - [sym_labeled_statement] = STATE(42), - [sym_expression_statement] = STATE(42), - [sym_if_statement] = STATE(42), - [sym_switch_statement] = STATE(42), - [sym_case_statement] = STATE(42), - [sym_while_statement] = STATE(42), - [sym_do_statement] = STATE(42), - [sym_for_statement] = STATE(42), - [sym_return_statement] = STATE(42), - [sym_break_statement] = STATE(42), - [sym_continue_statement] = STATE(42), - [sym_goto_statement] = STATE(42), - [sym__expression] = STATE(616), - [sym_comma_expression] = STATE(1170), - [sym_conditional_expression] = STATE(616), - [sym_assignment_expression] = STATE(616), - [sym_pointer_expression] = STATE(505), - [sym_unary_expression] = STATE(616), - [sym_binary_expression] = STATE(616), - [sym_update_expression] = STATE(616), - [sym_cast_expression] = STATE(616), - [sym_sizeof_expression] = STATE(616), - [sym_subscript_expression] = STATE(505), - [sym_call_expression] = STATE(505), - [sym_field_expression] = STATE(505), - [sym_compound_literal_expression] = STATE(616), - [sym_parenthesized_expression] = STATE(505), - [sym_char_literal] = STATE(616), - [sym_concatenated_string] = STATE(616), - [sym_string_literal] = STATE(376), - [sym__empty_declaration] = STATE(42), - [sym_macro_type_specifier] = STATE(845), - [aux_sym_translation_unit_repeat1] = STATE(42), - [aux_sym__declaration_specifiers_repeat1] = STATE(570), - [aux_sym_sized_type_specifier_repeat1] = STATE(712), + [sym_preproc_include] = STATE(29), + [sym_preproc_def] = STATE(29), + [sym_preproc_function_def] = STATE(29), + [sym_preproc_call] = STATE(29), + [sym_preproc_if] = STATE(29), + [sym_preproc_ifdef] = STATE(29), + [sym_function_definition] = STATE(29), + [sym_declaration] = STATE(29), + [sym_type_definition] = STATE(29), + [sym__declaration_specifiers] = STATE(865), + [sym_linkage_specification] = STATE(29), + [sym_attribute_specifier] = STATE(561), + [sym_compound_statement] = STATE(29), + [sym_storage_class_specifier] = STATE(561), + [sym_type_qualifier] = STATE(561), + [sym__type_specifier] = STATE(821), + [sym_sized_type_specifier] = STATE(821), + [sym_enum_specifier] = STATE(821), + [sym_struct_specifier] = STATE(821), + [sym_union_specifier] = STATE(821), + [sym_labeled_statement] = STATE(29), + [sym_expression_statement] = STATE(29), + [sym_if_statement] = STATE(29), + [sym_switch_statement] = STATE(29), + [sym_case_statement] = STATE(29), + [sym_while_statement] = STATE(29), + [sym_do_statement] = STATE(29), + [sym_for_statement] = STATE(29), + [sym_return_statement] = STATE(29), + [sym_break_statement] = STATE(29), + [sym_continue_statement] = STATE(29), + [sym_goto_statement] = STATE(29), + [sym__expression] = STATE(568), + [sym_comma_expression] = STATE(1210), + [sym_conditional_expression] = STATE(568), + [sym_assignment_expression] = STATE(568), + [sym_pointer_expression] = STATE(532), + [sym_unary_expression] = STATE(568), + [sym_binary_expression] = STATE(568), + [sym_update_expression] = STATE(568), + [sym_cast_expression] = STATE(568), + [sym_sizeof_expression] = STATE(568), + [sym_subscript_expression] = STATE(532), + [sym_call_expression] = STATE(532), + [sym_field_expression] = STATE(532), + [sym_compound_literal_expression] = STATE(568), + [sym_parenthesized_expression] = STATE(532), + [sym_char_literal] = STATE(568), + [sym_concatenated_string] = STATE(568), + [sym_string_literal] = STATE(379), + [sym__empty_declaration] = STATE(29), + [sym_macro_type_specifier] = STATE(821), + [aux_sym_translation_unit_repeat1] = STATE(29), + [aux_sym__declaration_specifiers_repeat1] = STATE(561), + [aux_sym_sized_type_specifier_repeat1] = STATE(704), [sym_identifier] = ACTIONS(292), [aux_sym_preproc_include_token1] = ACTIONS(294), [aux_sym_preproc_def_token1] = ACTIONS(296), @@ -11079,17 +11097,17 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_definition] = STATE(33), [sym_declaration] = STATE(33), [sym_type_definition] = STATE(33), - [sym__declaration_specifiers] = STATE(874), + [sym__declaration_specifiers] = STATE(865), [sym_linkage_specification] = STATE(33), - [sym_attribute_specifier] = STATE(570), + [sym_attribute_specifier] = STATE(561), [sym_compound_statement] = STATE(33), - [sym_storage_class_specifier] = STATE(570), - [sym_type_qualifier] = STATE(570), - [sym__type_specifier] = STATE(845), - [sym_sized_type_specifier] = STATE(845), - [sym_enum_specifier] = STATE(845), - [sym_struct_specifier] = STATE(845), - [sym_union_specifier] = STATE(845), + [sym_storage_class_specifier] = STATE(561), + [sym_type_qualifier] = STATE(561), + [sym__type_specifier] = STATE(821), + [sym_sized_type_specifier] = STATE(821), + [sym_enum_specifier] = STATE(821), + [sym_struct_specifier] = STATE(821), + [sym_union_specifier] = STATE(821), [sym_labeled_statement] = STATE(33), [sym_expression_statement] = STATE(33), [sym_if_statement] = STATE(33), @@ -11102,29 +11120,29 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(33), [sym_continue_statement] = STATE(33), [sym_goto_statement] = STATE(33), - [sym__expression] = STATE(616), - [sym_comma_expression] = STATE(1170), - [sym_conditional_expression] = STATE(616), - [sym_assignment_expression] = STATE(616), - [sym_pointer_expression] = STATE(505), - [sym_unary_expression] = STATE(616), - [sym_binary_expression] = STATE(616), - [sym_update_expression] = STATE(616), - [sym_cast_expression] = STATE(616), - [sym_sizeof_expression] = STATE(616), - [sym_subscript_expression] = STATE(505), - [sym_call_expression] = STATE(505), - [sym_field_expression] = STATE(505), - [sym_compound_literal_expression] = STATE(616), - [sym_parenthesized_expression] = STATE(505), - [sym_char_literal] = STATE(616), - [sym_concatenated_string] = STATE(616), - [sym_string_literal] = STATE(376), + [sym__expression] = STATE(568), + [sym_comma_expression] = STATE(1210), + [sym_conditional_expression] = STATE(568), + [sym_assignment_expression] = STATE(568), + [sym_pointer_expression] = STATE(532), + [sym_unary_expression] = STATE(568), + [sym_binary_expression] = STATE(568), + [sym_update_expression] = STATE(568), + [sym_cast_expression] = STATE(568), + [sym_sizeof_expression] = STATE(568), + [sym_subscript_expression] = STATE(532), + [sym_call_expression] = STATE(532), + [sym_field_expression] = STATE(532), + [sym_compound_literal_expression] = STATE(568), + [sym_parenthesized_expression] = STATE(532), + [sym_char_literal] = STATE(568), + [sym_concatenated_string] = STATE(568), + [sym_string_literal] = STATE(379), [sym__empty_declaration] = STATE(33), - [sym_macro_type_specifier] = STATE(845), + [sym_macro_type_specifier] = STATE(821), [aux_sym_translation_unit_repeat1] = STATE(33), - [aux_sym__declaration_specifiers_repeat1] = STATE(570), - [aux_sym_sized_type_specifier_repeat1] = STATE(712), + [aux_sym__declaration_specifiers_repeat1] = STATE(561), + [aux_sym_sized_type_specifier_repeat1] = STATE(704), [sym_identifier] = ACTIONS(292), [aux_sym_preproc_include_token1] = ACTIONS(294), [aux_sym_preproc_def_token1] = ACTIONS(296), @@ -11192,68 +11210,69 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [42] = { - [sym_preproc_include] = STATE(33), - [sym_preproc_def] = STATE(33), - [sym_preproc_function_def] = STATE(33), - [sym_preproc_call] = STATE(33), - [sym_preproc_if] = STATE(33), - [sym_preproc_ifdef] = STATE(33), - [sym_function_definition] = STATE(33), - [sym_declaration] = STATE(33), - [sym_type_definition] = STATE(33), - [sym__declaration_specifiers] = STATE(874), - [sym_linkage_specification] = STATE(33), - [sym_attribute_specifier] = STATE(570), - [sym_compound_statement] = STATE(33), - [sym_storage_class_specifier] = STATE(570), - [sym_type_qualifier] = STATE(570), - [sym__type_specifier] = STATE(845), - [sym_sized_type_specifier] = STATE(845), - [sym_enum_specifier] = STATE(845), - [sym_struct_specifier] = STATE(845), - [sym_union_specifier] = STATE(845), - [sym_labeled_statement] = STATE(33), - [sym_expression_statement] = STATE(33), - [sym_if_statement] = STATE(33), - [sym_switch_statement] = STATE(33), - [sym_case_statement] = STATE(33), - [sym_while_statement] = STATE(33), - [sym_do_statement] = STATE(33), - [sym_for_statement] = STATE(33), - [sym_return_statement] = STATE(33), - [sym_break_statement] = STATE(33), - [sym_continue_statement] = STATE(33), - [sym_goto_statement] = STATE(33), - [sym__expression] = STATE(616), - [sym_comma_expression] = STATE(1170), - [sym_conditional_expression] = STATE(616), - [sym_assignment_expression] = STATE(616), - [sym_pointer_expression] = STATE(505), - [sym_unary_expression] = STATE(616), - [sym_binary_expression] = STATE(616), - [sym_update_expression] = STATE(616), - [sym_cast_expression] = STATE(616), - [sym_sizeof_expression] = STATE(616), - [sym_subscript_expression] = STATE(505), - [sym_call_expression] = STATE(505), - [sym_field_expression] = STATE(505), - [sym_compound_literal_expression] = STATE(616), - [sym_parenthesized_expression] = STATE(505), - [sym_char_literal] = STATE(616), - [sym_concatenated_string] = STATE(616), - [sym_string_literal] = STATE(376), - [sym__empty_declaration] = STATE(33), - [sym_macro_type_specifier] = STATE(845), - [aux_sym_translation_unit_repeat1] = STATE(33), - [aux_sym__declaration_specifiers_repeat1] = STATE(570), - [aux_sym_sized_type_specifier_repeat1] = STATE(712), - [sym_identifier] = ACTIONS(292), - [aux_sym_preproc_include_token1] = ACTIONS(294), - [aux_sym_preproc_def_token1] = ACTIONS(296), - [aux_sym_preproc_if_token1] = ACTIONS(298), - [aux_sym_preproc_ifdef_token1] = ACTIONS(300), - [aux_sym_preproc_ifdef_token2] = ACTIONS(300), - [sym_preproc_directive] = ACTIONS(302), + [sym_preproc_include] = STATE(37), + [sym_preproc_def] = STATE(37), + [sym_preproc_function_def] = STATE(37), + [sym_preproc_call] = STATE(37), + [sym_preproc_if] = STATE(37), + [sym_preproc_ifdef] = STATE(37), + [sym_function_definition] = STATE(37), + [sym_declaration] = STATE(37), + [sym_type_definition] = STATE(37), + [sym__declaration_specifiers] = STATE(864), + [sym_linkage_specification] = STATE(37), + [sym_attribute_specifier] = STATE(561), + [sym_compound_statement] = STATE(37), + [sym_storage_class_specifier] = STATE(561), + [sym_type_qualifier] = STATE(561), + [sym__type_specifier] = STATE(822), + [sym_sized_type_specifier] = STATE(822), + [sym_enum_specifier] = STATE(822), + [sym_struct_specifier] = STATE(822), + [sym_union_specifier] = STATE(822), + [sym_labeled_statement] = STATE(37), + [sym_expression_statement] = STATE(37), + [sym_if_statement] = STATE(37), + [sym_switch_statement] = STATE(37), + [sym_case_statement] = STATE(37), + [sym_while_statement] = STATE(37), + [sym_do_statement] = STATE(37), + [sym_for_statement] = STATE(37), + [sym_return_statement] = STATE(37), + [sym_break_statement] = STATE(37), + [sym_continue_statement] = STATE(37), + [sym_goto_statement] = STATE(37), + [sym__expression] = STATE(606), + [sym_comma_expression] = STATE(1218), + [sym_conditional_expression] = STATE(606), + [sym_assignment_expression] = STATE(606), + [sym_pointer_expression] = STATE(532), + [sym_unary_expression] = STATE(606), + [sym_binary_expression] = STATE(606), + [sym_update_expression] = STATE(606), + [sym_cast_expression] = STATE(606), + [sym_sizeof_expression] = STATE(606), + [sym_subscript_expression] = STATE(532), + [sym_call_expression] = STATE(532), + [sym_field_expression] = STATE(532), + [sym_compound_literal_expression] = STATE(606), + [sym_parenthesized_expression] = STATE(532), + [sym_char_literal] = STATE(606), + [sym_concatenated_string] = STATE(606), + [sym_string_literal] = STATE(379), + [sym__empty_declaration] = STATE(37), + [sym_macro_type_specifier] = STATE(822), + [aux_sym_translation_unit_repeat1] = STATE(37), + [aux_sym__declaration_specifiers_repeat1] = STATE(561), + [aux_sym_sized_type_specifier_repeat1] = STATE(704), + [ts_builtin_sym_end] = ACTIONS(642), + [sym_identifier] = ACTIONS(7), + [aux_sym_preproc_include_token1] = ACTIONS(9), + [aux_sym_preproc_def_token1] = ACTIONS(11), + [aux_sym_preproc_if_token1] = ACTIONS(13), + [aux_sym_preproc_ifdef_token1] = ACTIONS(15), + [aux_sym_preproc_ifdef_token2] = ACTIONS(15), + [sym_preproc_directive] = ACTIONS(17), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -11261,12 +11280,11 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(304), - [anon_sym_typedef] = ACTIONS(306), - [anon_sym_extern] = ACTIONS(308), + [anon_sym_SEMI] = ACTIONS(27), + [anon_sym_typedef] = ACTIONS(29), + [anon_sym_extern] = ACTIONS(31), [anon_sym___attribute__] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(310), - [anon_sym_RBRACE] = ACTIONS(642), + [anon_sym_LBRACE] = ACTIONS(35), [anon_sym_static] = ACTIONS(37), [anon_sym_auto] = ACTIONS(37), [anon_sym_register] = ACTIONS(37), @@ -11279,25 +11297,25 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsigned] = ACTIONS(41), [anon_sym_long] = ACTIONS(41), [anon_sym_short] = ACTIONS(41), - [sym_primitive_type] = ACTIONS(314), + [sym_primitive_type] = ACTIONS(43), [anon_sym_enum] = ACTIONS(45), [anon_sym_struct] = ACTIONS(47), [anon_sym_union] = ACTIONS(49), - [anon_sym_if] = ACTIONS(316), - [anon_sym_switch] = ACTIONS(318), - [anon_sym_case] = ACTIONS(320), - [anon_sym_default] = ACTIONS(322), - [anon_sym_while] = ACTIONS(324), - [anon_sym_do] = ACTIONS(326), - [anon_sym_for] = ACTIONS(328), - [anon_sym_return] = ACTIONS(330), - [anon_sym_break] = ACTIONS(332), - [anon_sym_continue] = ACTIONS(334), - [anon_sym_goto] = ACTIONS(336), + [anon_sym_if] = ACTIONS(51), + [anon_sym_switch] = ACTIONS(53), + [anon_sym_case] = ACTIONS(55), + [anon_sym_default] = ACTIONS(57), + [anon_sym_while] = ACTIONS(59), + [anon_sym_do] = ACTIONS(61), + [anon_sym_for] = ACTIONS(63), + [anon_sym_return] = ACTIONS(65), + [anon_sym_break] = ACTIONS(67), + [anon_sym_continue] = ACTIONS(69), + [anon_sym_goto] = ACTIONS(71), [anon_sym_DASH_DASH] = ACTIONS(73), [anon_sym_PLUS_PLUS] = ACTIONS(73), [anon_sym_sizeof] = ACTIONS(75), - [sym_number_literal] = ACTIONS(338), + [sym_number_literal] = ACTIONS(77), [anon_sym_L_SQUOTE] = ACTIONS(79), [anon_sym_u_SQUOTE] = ACTIONS(79), [anon_sym_U_SQUOTE] = ACTIONS(79), @@ -11308,57 +11326,57 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_U_DQUOTE] = ACTIONS(81), [anon_sym_u8_DQUOTE] = ACTIONS(81), [anon_sym_DQUOTE] = ACTIONS(81), - [sym_true] = ACTIONS(340), - [sym_false] = ACTIONS(340), - [sym_null] = ACTIONS(340), + [sym_true] = ACTIONS(83), + [sym_false] = ACTIONS(83), + [sym_null] = ACTIONS(83), [sym_comment] = ACTIONS(3), }, [43] = { - [sym_declaration] = STATE(44), - [sym_type_definition] = STATE(44), - [sym__declaration_specifiers] = STATE(878), - [sym_attribute_specifier] = STATE(570), - [sym_compound_statement] = STATE(44), - [sym_storage_class_specifier] = STATE(570), - [sym_type_qualifier] = STATE(570), - [sym__type_specifier] = STATE(718), - [sym_sized_type_specifier] = STATE(718), - [sym_enum_specifier] = STATE(718), - [sym_struct_specifier] = STATE(718), - [sym_union_specifier] = STATE(718), - [sym_labeled_statement] = STATE(44), - [sym_expression_statement] = STATE(44), - [sym_if_statement] = STATE(44), - [sym_switch_statement] = STATE(44), - [sym_while_statement] = STATE(44), - [sym_do_statement] = STATE(44), - [sym_for_statement] = STATE(44), - [sym_return_statement] = STATE(44), - [sym_break_statement] = STATE(44), - [sym_continue_statement] = STATE(44), - [sym_goto_statement] = STATE(44), - [sym__expression] = STATE(613), - [sym_comma_expression] = STATE(1185), - [sym_conditional_expression] = STATE(613), - [sym_assignment_expression] = STATE(613), - [sym_pointer_expression] = STATE(505), - [sym_unary_expression] = STATE(613), - [sym_binary_expression] = STATE(613), - [sym_update_expression] = STATE(613), - [sym_cast_expression] = STATE(613), - [sym_sizeof_expression] = STATE(613), - [sym_subscript_expression] = STATE(505), - [sym_call_expression] = STATE(505), - [sym_field_expression] = STATE(505), - [sym_compound_literal_expression] = STATE(613), - [sym_parenthesized_expression] = STATE(505), - [sym_char_literal] = STATE(613), - [sym_concatenated_string] = STATE(613), - [sym_string_literal] = STATE(376), - [sym_macro_type_specifier] = STATE(718), - [aux_sym__declaration_specifiers_repeat1] = STATE(570), - [aux_sym_sized_type_specifier_repeat1] = STATE(712), - [aux_sym_case_statement_repeat1] = STATE(44), + [sym_declaration] = STATE(45), + [sym_type_definition] = STATE(45), + [sym__declaration_specifiers] = STATE(870), + [sym_attribute_specifier] = STATE(561), + [sym_compound_statement] = STATE(45), + [sym_storage_class_specifier] = STATE(561), + [sym_type_qualifier] = STATE(561), + [sym__type_specifier] = STATE(709), + [sym_sized_type_specifier] = STATE(709), + [sym_enum_specifier] = STATE(709), + [sym_struct_specifier] = STATE(709), + [sym_union_specifier] = STATE(709), + [sym_labeled_statement] = STATE(45), + [sym_expression_statement] = STATE(45), + [sym_if_statement] = STATE(45), + [sym_switch_statement] = STATE(45), + [sym_while_statement] = STATE(45), + [sym_do_statement] = STATE(45), + [sym_for_statement] = STATE(45), + [sym_return_statement] = STATE(45), + [sym_break_statement] = STATE(45), + [sym_continue_statement] = STATE(45), + [sym_goto_statement] = STATE(45), + [sym__expression] = STATE(582), + [sym_comma_expression] = STATE(1083), + [sym_conditional_expression] = STATE(582), + [sym_assignment_expression] = STATE(582), + [sym_pointer_expression] = STATE(532), + [sym_unary_expression] = STATE(582), + [sym_binary_expression] = STATE(582), + [sym_update_expression] = STATE(582), + [sym_cast_expression] = STATE(582), + [sym_sizeof_expression] = STATE(582), + [sym_subscript_expression] = STATE(532), + [sym_call_expression] = STATE(532), + [sym_field_expression] = STATE(532), + [sym_compound_literal_expression] = STATE(582), + [sym_parenthesized_expression] = STATE(532), + [sym_char_literal] = STATE(582), + [sym_concatenated_string] = STATE(582), + [sym_string_literal] = STATE(379), + [sym_macro_type_specifier] = STATE(709), + [aux_sym__declaration_specifiers_repeat1] = STATE(561), + [aux_sym_sized_type_specifier_repeat1] = STATE(704), + [aux_sym_case_statement_repeat1] = STATE(45), [sym_identifier] = ACTIONS(644), [aux_sym_preproc_include_token1] = ACTIONS(646), [aux_sym_preproc_def_token1] = ACTIONS(646), @@ -11429,51 +11447,51 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [44] = { - [sym_declaration] = STATE(47), - [sym_type_definition] = STATE(47), - [sym__declaration_specifiers] = STATE(878), - [sym_attribute_specifier] = STATE(570), - [sym_compound_statement] = STATE(47), - [sym_storage_class_specifier] = STATE(570), - [sym_type_qualifier] = STATE(570), - [sym__type_specifier] = STATE(718), - [sym_sized_type_specifier] = STATE(718), - [sym_enum_specifier] = STATE(718), - [sym_struct_specifier] = STATE(718), - [sym_union_specifier] = STATE(718), - [sym_labeled_statement] = STATE(47), - [sym_expression_statement] = STATE(47), - [sym_if_statement] = STATE(47), - [sym_switch_statement] = STATE(47), - [sym_while_statement] = STATE(47), - [sym_do_statement] = STATE(47), - [sym_for_statement] = STATE(47), - [sym_return_statement] = STATE(47), - [sym_break_statement] = STATE(47), - [sym_continue_statement] = STATE(47), - [sym_goto_statement] = STATE(47), - [sym__expression] = STATE(613), - [sym_comma_expression] = STATE(1185), - [sym_conditional_expression] = STATE(613), - [sym_assignment_expression] = STATE(613), - [sym_pointer_expression] = STATE(505), - [sym_unary_expression] = STATE(613), - [sym_binary_expression] = STATE(613), - [sym_update_expression] = STATE(613), - [sym_cast_expression] = STATE(613), - [sym_sizeof_expression] = STATE(613), - [sym_subscript_expression] = STATE(505), - [sym_call_expression] = STATE(505), - [sym_field_expression] = STATE(505), - [sym_compound_literal_expression] = STATE(613), - [sym_parenthesized_expression] = STATE(505), - [sym_char_literal] = STATE(613), - [sym_concatenated_string] = STATE(613), - [sym_string_literal] = STATE(376), - [sym_macro_type_specifier] = STATE(718), - [aux_sym__declaration_specifiers_repeat1] = STATE(570), - [aux_sym_sized_type_specifier_repeat1] = STATE(712), - [aux_sym_case_statement_repeat1] = STATE(47), + [sym_declaration] = STATE(45), + [sym_type_definition] = STATE(45), + [sym__declaration_specifiers] = STATE(870), + [sym_attribute_specifier] = STATE(561), + [sym_compound_statement] = STATE(45), + [sym_storage_class_specifier] = STATE(561), + [sym_type_qualifier] = STATE(561), + [sym__type_specifier] = STATE(709), + [sym_sized_type_specifier] = STATE(709), + [sym_enum_specifier] = STATE(709), + [sym_struct_specifier] = STATE(709), + [sym_union_specifier] = STATE(709), + [sym_labeled_statement] = STATE(45), + [sym_expression_statement] = STATE(45), + [sym_if_statement] = STATE(45), + [sym_switch_statement] = STATE(45), + [sym_while_statement] = STATE(45), + [sym_do_statement] = STATE(45), + [sym_for_statement] = STATE(45), + [sym_return_statement] = STATE(45), + [sym_break_statement] = STATE(45), + [sym_continue_statement] = STATE(45), + [sym_goto_statement] = STATE(45), + [sym__expression] = STATE(582), + [sym_comma_expression] = STATE(1083), + [sym_conditional_expression] = STATE(582), + [sym_assignment_expression] = STATE(582), + [sym_pointer_expression] = STATE(532), + [sym_unary_expression] = STATE(582), + [sym_binary_expression] = STATE(582), + [sym_update_expression] = STATE(582), + [sym_cast_expression] = STATE(582), + [sym_sizeof_expression] = STATE(582), + [sym_subscript_expression] = STATE(532), + [sym_call_expression] = STATE(532), + [sym_field_expression] = STATE(532), + [sym_compound_literal_expression] = STATE(582), + [sym_parenthesized_expression] = STATE(532), + [sym_char_literal] = STATE(582), + [sym_concatenated_string] = STATE(582), + [sym_string_literal] = STATE(379), + [sym_macro_type_specifier] = STATE(709), + [aux_sym__declaration_specifiers_repeat1] = STATE(561), + [aux_sym_sized_type_specifier_repeat1] = STATE(704), + [aux_sym_case_statement_repeat1] = STATE(45), [sym_identifier] = ACTIONS(644), [aux_sym_preproc_include_token1] = ACTIONS(650), [aux_sym_preproc_def_token1] = ACTIONS(650), @@ -11544,61 +11562,176 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [45] = { - [sym_declaration] = STATE(46), - [sym_type_definition] = STATE(46), - [sym__declaration_specifiers] = STATE(878), - [sym_attribute_specifier] = STATE(570), - [sym_compound_statement] = STATE(46), - [sym_storage_class_specifier] = STATE(570), - [sym_type_qualifier] = STATE(570), - [sym__type_specifier] = STATE(718), - [sym_sized_type_specifier] = STATE(718), - [sym_enum_specifier] = STATE(718), - [sym_struct_specifier] = STATE(718), - [sym_union_specifier] = STATE(718), - [sym_labeled_statement] = STATE(46), - [sym_expression_statement] = STATE(46), - [sym_if_statement] = STATE(46), - [sym_switch_statement] = STATE(46), - [sym_while_statement] = STATE(46), - [sym_do_statement] = STATE(46), - [sym_for_statement] = STATE(46), - [sym_return_statement] = STATE(46), - [sym_break_statement] = STATE(46), - [sym_continue_statement] = STATE(46), - [sym_goto_statement] = STATE(46), - [sym__expression] = STATE(613), - [sym_comma_expression] = STATE(1185), - [sym_conditional_expression] = STATE(613), - [sym_assignment_expression] = STATE(613), - [sym_pointer_expression] = STATE(505), - [sym_unary_expression] = STATE(613), - [sym_binary_expression] = STATE(613), - [sym_update_expression] = STATE(613), - [sym_cast_expression] = STATE(613), - [sym_sizeof_expression] = STATE(613), - [sym_subscript_expression] = STATE(505), - [sym_call_expression] = STATE(505), - [sym_field_expression] = STATE(505), - [sym_compound_literal_expression] = STATE(613), - [sym_parenthesized_expression] = STATE(505), - [sym_char_literal] = STATE(613), - [sym_concatenated_string] = STATE(613), - [sym_string_literal] = STATE(376), - [sym_macro_type_specifier] = STATE(718), - [aux_sym__declaration_specifiers_repeat1] = STATE(570), - [aux_sym_sized_type_specifier_repeat1] = STATE(712), - [aux_sym_case_statement_repeat1] = STATE(46), + [sym_declaration] = STATE(45), + [sym_type_definition] = STATE(45), + [sym__declaration_specifiers] = STATE(870), + [sym_attribute_specifier] = STATE(561), + [sym_compound_statement] = STATE(45), + [sym_storage_class_specifier] = STATE(561), + [sym_type_qualifier] = STATE(561), + [sym__type_specifier] = STATE(709), + [sym_sized_type_specifier] = STATE(709), + [sym_enum_specifier] = STATE(709), + [sym_struct_specifier] = STATE(709), + [sym_union_specifier] = STATE(709), + [sym_labeled_statement] = STATE(45), + [sym_expression_statement] = STATE(45), + [sym_if_statement] = STATE(45), + [sym_switch_statement] = STATE(45), + [sym_while_statement] = STATE(45), + [sym_do_statement] = STATE(45), + [sym_for_statement] = STATE(45), + [sym_return_statement] = STATE(45), + [sym_break_statement] = STATE(45), + [sym_continue_statement] = STATE(45), + [sym_goto_statement] = STATE(45), + [sym__expression] = STATE(582), + [sym_comma_expression] = STATE(1083), + [sym_conditional_expression] = STATE(582), + [sym_assignment_expression] = STATE(582), + [sym_pointer_expression] = STATE(532), + [sym_unary_expression] = STATE(582), + [sym_binary_expression] = STATE(582), + [sym_update_expression] = STATE(582), + [sym_cast_expression] = STATE(582), + [sym_sizeof_expression] = STATE(582), + [sym_subscript_expression] = STATE(532), + [sym_call_expression] = STATE(532), + [sym_field_expression] = STATE(532), + [sym_compound_literal_expression] = STATE(582), + [sym_parenthesized_expression] = STATE(532), + [sym_char_literal] = STATE(582), + [sym_concatenated_string] = STATE(582), + [sym_string_literal] = STATE(379), + [sym_macro_type_specifier] = STATE(709), + [aux_sym__declaration_specifiers_repeat1] = STATE(561), + [aux_sym_sized_type_specifier_repeat1] = STATE(704), + [aux_sym_case_statement_repeat1] = STATE(45), + [sym_identifier] = ACTIONS(652), + [aux_sym_preproc_include_token1] = ACTIONS(655), + [aux_sym_preproc_def_token1] = ACTIONS(655), + [aux_sym_preproc_if_token1] = ACTIONS(655), + [aux_sym_preproc_if_token2] = ACTIONS(655), + [aux_sym_preproc_ifdef_token1] = ACTIONS(655), + [aux_sym_preproc_ifdef_token2] = ACTIONS(655), + [aux_sym_preproc_else_token1] = ACTIONS(655), + [aux_sym_preproc_elif_token1] = ACTIONS(655), + [sym_preproc_directive] = ACTIONS(655), + [anon_sym_LPAREN2] = ACTIONS(657), + [anon_sym_BANG] = ACTIONS(660), + [anon_sym_TILDE] = ACTIONS(660), + [anon_sym_DASH] = ACTIONS(663), + [anon_sym_PLUS] = ACTIONS(663), + [anon_sym_STAR] = ACTIONS(666), + [anon_sym_AMP] = ACTIONS(666), + [anon_sym_SEMI] = ACTIONS(669), + [anon_sym_typedef] = ACTIONS(672), + [anon_sym_extern] = ACTIONS(675), + [anon_sym___attribute__] = ACTIONS(678), + [anon_sym_LBRACE] = ACTIONS(681), + [anon_sym_static] = ACTIONS(675), + [anon_sym_auto] = ACTIONS(675), + [anon_sym_register] = ACTIONS(675), + [anon_sym_inline] = ACTIONS(675), + [anon_sym_const] = ACTIONS(684), + [anon_sym_volatile] = ACTIONS(684), + [anon_sym_restrict] = ACTIONS(684), + [anon_sym__Atomic] = ACTIONS(684), + [anon_sym_signed] = ACTIONS(687), + [anon_sym_unsigned] = ACTIONS(687), + [anon_sym_long] = ACTIONS(687), + [anon_sym_short] = ACTIONS(687), + [sym_primitive_type] = ACTIONS(690), + [anon_sym_enum] = ACTIONS(693), + [anon_sym_struct] = ACTIONS(696), + [anon_sym_union] = ACTIONS(699), + [anon_sym_if] = ACTIONS(702), + [anon_sym_else] = ACTIONS(655), + [anon_sym_switch] = ACTIONS(705), + [anon_sym_case] = ACTIONS(655), + [anon_sym_default] = ACTIONS(655), + [anon_sym_while] = ACTIONS(708), + [anon_sym_do] = ACTIONS(711), + [anon_sym_for] = ACTIONS(714), + [anon_sym_return] = ACTIONS(717), + [anon_sym_break] = ACTIONS(720), + [anon_sym_continue] = ACTIONS(723), + [anon_sym_goto] = ACTIONS(726), + [anon_sym_DASH_DASH] = ACTIONS(729), + [anon_sym_PLUS_PLUS] = ACTIONS(729), + [anon_sym_sizeof] = ACTIONS(732), + [sym_number_literal] = ACTIONS(735), + [anon_sym_L_SQUOTE] = ACTIONS(738), + [anon_sym_u_SQUOTE] = ACTIONS(738), + [anon_sym_U_SQUOTE] = ACTIONS(738), + [anon_sym_u8_SQUOTE] = ACTIONS(738), + [anon_sym_SQUOTE] = ACTIONS(738), + [anon_sym_L_DQUOTE] = ACTIONS(741), + [anon_sym_u_DQUOTE] = ACTIONS(741), + [anon_sym_U_DQUOTE] = ACTIONS(741), + [anon_sym_u8_DQUOTE] = ACTIONS(741), + [anon_sym_DQUOTE] = ACTIONS(741), + [sym_true] = ACTIONS(744), + [sym_false] = ACTIONS(744), + [sym_null] = ACTIONS(744), + [sym_comment] = ACTIONS(3), + }, + [46] = { + [sym_declaration] = STATE(43), + [sym_type_definition] = STATE(43), + [sym__declaration_specifiers] = STATE(870), + [sym_attribute_specifier] = STATE(561), + [sym_compound_statement] = STATE(43), + [sym_storage_class_specifier] = STATE(561), + [sym_type_qualifier] = STATE(561), + [sym__type_specifier] = STATE(709), + [sym_sized_type_specifier] = STATE(709), + [sym_enum_specifier] = STATE(709), + [sym_struct_specifier] = STATE(709), + [sym_union_specifier] = STATE(709), + [sym_labeled_statement] = STATE(43), + [sym_expression_statement] = STATE(43), + [sym_if_statement] = STATE(43), + [sym_switch_statement] = STATE(43), + [sym_while_statement] = STATE(43), + [sym_do_statement] = STATE(43), + [sym_for_statement] = STATE(43), + [sym_return_statement] = STATE(43), + [sym_break_statement] = STATE(43), + [sym_continue_statement] = STATE(43), + [sym_goto_statement] = STATE(43), + [sym__expression] = STATE(582), + [sym_comma_expression] = STATE(1083), + [sym_conditional_expression] = STATE(582), + [sym_assignment_expression] = STATE(582), + [sym_pointer_expression] = STATE(532), + [sym_unary_expression] = STATE(582), + [sym_binary_expression] = STATE(582), + [sym_update_expression] = STATE(582), + [sym_cast_expression] = STATE(582), + [sym_sizeof_expression] = STATE(582), + [sym_subscript_expression] = STATE(532), + [sym_call_expression] = STATE(532), + [sym_field_expression] = STATE(532), + [sym_compound_literal_expression] = STATE(582), + [sym_parenthesized_expression] = STATE(532), + [sym_char_literal] = STATE(582), + [sym_concatenated_string] = STATE(582), + [sym_string_literal] = STATE(379), + [sym_macro_type_specifier] = STATE(709), + [aux_sym__declaration_specifiers_repeat1] = STATE(561), + [aux_sym_sized_type_specifier_repeat1] = STATE(704), + [aux_sym_case_statement_repeat1] = STATE(43), [sym_identifier] = ACTIONS(644), - [aux_sym_preproc_include_token1] = ACTIONS(652), - [aux_sym_preproc_def_token1] = ACTIONS(652), - [aux_sym_preproc_if_token1] = ACTIONS(652), - [aux_sym_preproc_if_token2] = ACTIONS(652), - [aux_sym_preproc_ifdef_token1] = ACTIONS(652), - [aux_sym_preproc_ifdef_token2] = ACTIONS(652), - [aux_sym_preproc_else_token1] = ACTIONS(652), - [aux_sym_preproc_elif_token1] = ACTIONS(652), - [sym_preproc_directive] = ACTIONS(652), + [aux_sym_preproc_include_token1] = ACTIONS(747), + [aux_sym_preproc_def_token1] = ACTIONS(747), + [aux_sym_preproc_if_token1] = ACTIONS(747), + [aux_sym_preproc_if_token2] = ACTIONS(747), + [aux_sym_preproc_ifdef_token1] = ACTIONS(747), + [aux_sym_preproc_ifdef_token2] = ACTIONS(747), + [aux_sym_preproc_else_token1] = ACTIONS(747), + [aux_sym_preproc_elif_token1] = ACTIONS(747), + [sym_preproc_directive] = ACTIONS(747), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -11628,10 +11761,10 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(47), [anon_sym_union] = ACTIONS(49), [anon_sym_if] = ACTIONS(113), - [anon_sym_else] = ACTIONS(652), + [anon_sym_else] = ACTIONS(747), [anon_sym_switch] = ACTIONS(115), - [anon_sym_case] = ACTIONS(652), - [anon_sym_default] = ACTIONS(652), + [anon_sym_case] = ACTIONS(747), + [anon_sym_default] = ACTIONS(747), [anon_sym_while] = ACTIONS(121), [anon_sym_do] = ACTIONS(123), [anon_sym_for] = ACTIONS(125), @@ -11658,62 +11791,62 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(137), [sym_comment] = ACTIONS(3), }, - [46] = { - [sym_declaration] = STATE(47), - [sym_type_definition] = STATE(47), - [sym__declaration_specifiers] = STATE(878), - [sym_attribute_specifier] = STATE(570), - [sym_compound_statement] = STATE(47), - [sym_storage_class_specifier] = STATE(570), - [sym_type_qualifier] = STATE(570), - [sym__type_specifier] = STATE(718), - [sym_sized_type_specifier] = STATE(718), - [sym_enum_specifier] = STATE(718), - [sym_struct_specifier] = STATE(718), - [sym_union_specifier] = STATE(718), - [sym_labeled_statement] = STATE(47), - [sym_expression_statement] = STATE(47), - [sym_if_statement] = STATE(47), - [sym_switch_statement] = STATE(47), - [sym_while_statement] = STATE(47), - [sym_do_statement] = STATE(47), - [sym_for_statement] = STATE(47), - [sym_return_statement] = STATE(47), - [sym_break_statement] = STATE(47), - [sym_continue_statement] = STATE(47), - [sym_goto_statement] = STATE(47), - [sym__expression] = STATE(613), - [sym_comma_expression] = STATE(1185), - [sym_conditional_expression] = STATE(613), - [sym_assignment_expression] = STATE(613), - [sym_pointer_expression] = STATE(505), - [sym_unary_expression] = STATE(613), - [sym_binary_expression] = STATE(613), - [sym_update_expression] = STATE(613), - [sym_cast_expression] = STATE(613), - [sym_sizeof_expression] = STATE(613), - [sym_subscript_expression] = STATE(505), - [sym_call_expression] = STATE(505), - [sym_field_expression] = STATE(505), - [sym_compound_literal_expression] = STATE(613), - [sym_parenthesized_expression] = STATE(505), - [sym_char_literal] = STATE(613), - [sym_concatenated_string] = STATE(613), - [sym_string_literal] = STATE(376), - [sym_macro_type_specifier] = STATE(718), - [aux_sym__declaration_specifiers_repeat1] = STATE(570), - [aux_sym_sized_type_specifier_repeat1] = STATE(712), - [aux_sym_case_statement_repeat1] = STATE(47), + [47] = { + [sym_declaration] = STATE(44), + [sym_type_definition] = STATE(44), + [sym__declaration_specifiers] = STATE(870), + [sym_attribute_specifier] = STATE(561), + [sym_compound_statement] = STATE(44), + [sym_storage_class_specifier] = STATE(561), + [sym_type_qualifier] = STATE(561), + [sym__type_specifier] = STATE(709), + [sym_sized_type_specifier] = STATE(709), + [sym_enum_specifier] = STATE(709), + [sym_struct_specifier] = STATE(709), + [sym_union_specifier] = STATE(709), + [sym_labeled_statement] = STATE(44), + [sym_expression_statement] = STATE(44), + [sym_if_statement] = STATE(44), + [sym_switch_statement] = STATE(44), + [sym_while_statement] = STATE(44), + [sym_do_statement] = STATE(44), + [sym_for_statement] = STATE(44), + [sym_return_statement] = STATE(44), + [sym_break_statement] = STATE(44), + [sym_continue_statement] = STATE(44), + [sym_goto_statement] = STATE(44), + [sym__expression] = STATE(582), + [sym_comma_expression] = STATE(1083), + [sym_conditional_expression] = STATE(582), + [sym_assignment_expression] = STATE(582), + [sym_pointer_expression] = STATE(532), + [sym_unary_expression] = STATE(582), + [sym_binary_expression] = STATE(582), + [sym_update_expression] = STATE(582), + [sym_cast_expression] = STATE(582), + [sym_sizeof_expression] = STATE(582), + [sym_subscript_expression] = STATE(532), + [sym_call_expression] = STATE(532), + [sym_field_expression] = STATE(532), + [sym_compound_literal_expression] = STATE(582), + [sym_parenthesized_expression] = STATE(532), + [sym_char_literal] = STATE(582), + [sym_concatenated_string] = STATE(582), + [sym_string_literal] = STATE(379), + [sym_macro_type_specifier] = STATE(709), + [aux_sym__declaration_specifiers_repeat1] = STATE(561), + [aux_sym_sized_type_specifier_repeat1] = STATE(704), + [aux_sym_case_statement_repeat1] = STATE(44), [sym_identifier] = ACTIONS(644), - [aux_sym_preproc_include_token1] = ACTIONS(654), - [aux_sym_preproc_def_token1] = ACTIONS(654), - [aux_sym_preproc_if_token1] = ACTIONS(654), - [aux_sym_preproc_if_token2] = ACTIONS(654), - [aux_sym_preproc_ifdef_token1] = ACTIONS(654), - [aux_sym_preproc_ifdef_token2] = ACTIONS(654), - [aux_sym_preproc_else_token1] = ACTIONS(654), - [aux_sym_preproc_elif_token1] = ACTIONS(654), - [sym_preproc_directive] = ACTIONS(654), + [aux_sym_preproc_include_token1] = ACTIONS(749), + [aux_sym_preproc_def_token1] = ACTIONS(749), + [aux_sym_preproc_if_token1] = ACTIONS(749), + [aux_sym_preproc_if_token2] = ACTIONS(749), + [aux_sym_preproc_ifdef_token1] = ACTIONS(749), + [aux_sym_preproc_ifdef_token2] = ACTIONS(749), + [aux_sym_preproc_else_token1] = ACTIONS(749), + [aux_sym_preproc_elif_token1] = ACTIONS(749), + [sym_preproc_directive] = ACTIONS(749), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -11743,10 +11876,10 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(47), [anon_sym_union] = ACTIONS(49), [anon_sym_if] = ACTIONS(113), - [anon_sym_else] = ACTIONS(654), + [anon_sym_else] = ACTIONS(749), [anon_sym_switch] = ACTIONS(115), - [anon_sym_case] = ACTIONS(654), - [anon_sym_default] = ACTIONS(654), + [anon_sym_case] = ACTIONS(749), + [anon_sym_default] = ACTIONS(749), [anon_sym_while] = ACTIONS(121), [anon_sym_do] = ACTIONS(123), [anon_sym_for] = ACTIONS(125), @@ -11773,175 +11906,59 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(137), [sym_comment] = ACTIONS(3), }, - [47] = { - [sym_declaration] = STATE(47), - [sym_type_definition] = STATE(47), - [sym__declaration_specifiers] = STATE(878), - [sym_attribute_specifier] = STATE(570), - [sym_compound_statement] = STATE(47), - [sym_storage_class_specifier] = STATE(570), - [sym_type_qualifier] = STATE(570), - [sym__type_specifier] = STATE(718), - [sym_sized_type_specifier] = STATE(718), - [sym_enum_specifier] = STATE(718), - [sym_struct_specifier] = STATE(718), - [sym_union_specifier] = STATE(718), - [sym_labeled_statement] = STATE(47), - [sym_expression_statement] = STATE(47), - [sym_if_statement] = STATE(47), - [sym_switch_statement] = STATE(47), - [sym_while_statement] = STATE(47), - [sym_do_statement] = STATE(47), - [sym_for_statement] = STATE(47), - [sym_return_statement] = STATE(47), - [sym_break_statement] = STATE(47), - [sym_continue_statement] = STATE(47), - [sym_goto_statement] = STATE(47), - [sym__expression] = STATE(613), - [sym_comma_expression] = STATE(1185), - [sym_conditional_expression] = STATE(613), - [sym_assignment_expression] = STATE(613), - [sym_pointer_expression] = STATE(505), - [sym_unary_expression] = STATE(613), - [sym_binary_expression] = STATE(613), - [sym_update_expression] = STATE(613), - [sym_cast_expression] = STATE(613), - [sym_sizeof_expression] = STATE(613), - [sym_subscript_expression] = STATE(505), - [sym_call_expression] = STATE(505), - [sym_field_expression] = STATE(505), - [sym_compound_literal_expression] = STATE(613), - [sym_parenthesized_expression] = STATE(505), - [sym_char_literal] = STATE(613), - [sym_concatenated_string] = STATE(613), - [sym_string_literal] = STATE(376), - [sym_macro_type_specifier] = STATE(718), - [aux_sym__declaration_specifiers_repeat1] = STATE(570), - [aux_sym_sized_type_specifier_repeat1] = STATE(712), - [aux_sym_case_statement_repeat1] = STATE(47), - [sym_identifier] = ACTIONS(656), - [aux_sym_preproc_include_token1] = ACTIONS(659), - [aux_sym_preproc_def_token1] = ACTIONS(659), - [aux_sym_preproc_if_token1] = ACTIONS(659), - [aux_sym_preproc_if_token2] = ACTIONS(659), - [aux_sym_preproc_ifdef_token1] = ACTIONS(659), - [aux_sym_preproc_ifdef_token2] = ACTIONS(659), - [aux_sym_preproc_else_token1] = ACTIONS(659), - [aux_sym_preproc_elif_token1] = ACTIONS(659), - [sym_preproc_directive] = ACTIONS(659), - [anon_sym_LPAREN2] = ACTIONS(661), - [anon_sym_BANG] = ACTIONS(664), - [anon_sym_TILDE] = ACTIONS(664), - [anon_sym_DASH] = ACTIONS(667), - [anon_sym_PLUS] = ACTIONS(667), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_AMP] = ACTIONS(670), - [anon_sym_SEMI] = ACTIONS(673), - [anon_sym_typedef] = ACTIONS(676), - [anon_sym_extern] = ACTIONS(679), - [anon_sym___attribute__] = ACTIONS(682), - [anon_sym_LBRACE] = ACTIONS(685), - [anon_sym_static] = ACTIONS(679), - [anon_sym_auto] = ACTIONS(679), - [anon_sym_register] = ACTIONS(679), - [anon_sym_inline] = ACTIONS(679), - [anon_sym_const] = ACTIONS(688), - [anon_sym_volatile] = ACTIONS(688), - [anon_sym_restrict] = ACTIONS(688), - [anon_sym__Atomic] = ACTIONS(688), - [anon_sym_signed] = ACTIONS(691), - [anon_sym_unsigned] = ACTIONS(691), - [anon_sym_long] = ACTIONS(691), - [anon_sym_short] = ACTIONS(691), - [sym_primitive_type] = ACTIONS(694), - [anon_sym_enum] = ACTIONS(697), - [anon_sym_struct] = ACTIONS(700), - [anon_sym_union] = ACTIONS(703), - [anon_sym_if] = ACTIONS(706), - [anon_sym_else] = ACTIONS(659), - [anon_sym_switch] = ACTIONS(709), - [anon_sym_case] = ACTIONS(659), - [anon_sym_default] = ACTIONS(659), - [anon_sym_while] = ACTIONS(712), - [anon_sym_do] = ACTIONS(715), - [anon_sym_for] = ACTIONS(718), - [anon_sym_return] = ACTIONS(721), - [anon_sym_break] = ACTIONS(724), - [anon_sym_continue] = ACTIONS(727), - [anon_sym_goto] = ACTIONS(730), - [anon_sym_DASH_DASH] = ACTIONS(733), - [anon_sym_PLUS_PLUS] = ACTIONS(733), - [anon_sym_sizeof] = ACTIONS(736), - [sym_number_literal] = ACTIONS(739), - [anon_sym_L_SQUOTE] = ACTIONS(742), - [anon_sym_u_SQUOTE] = ACTIONS(742), - [anon_sym_U_SQUOTE] = ACTIONS(742), - [anon_sym_u8_SQUOTE] = ACTIONS(742), - [anon_sym_SQUOTE] = ACTIONS(742), - [anon_sym_L_DQUOTE] = ACTIONS(745), - [anon_sym_u_DQUOTE] = ACTIONS(745), - [anon_sym_U_DQUOTE] = ACTIONS(745), - [anon_sym_u8_DQUOTE] = ACTIONS(745), - [anon_sym_DQUOTE] = ACTIONS(745), - [sym_true] = ACTIONS(748), - [sym_false] = ACTIONS(748), - [sym_null] = ACTIONS(748), - [sym_comment] = ACTIONS(3), - }, [48] = { - [sym_declaration] = STATE(56), - [sym_type_definition] = STATE(56), - [sym__declaration_specifiers] = STATE(867), - [sym_attribute_specifier] = STATE(570), - [sym_compound_statement] = STATE(56), - [sym_storage_class_specifier] = STATE(570), - [sym_type_qualifier] = STATE(570), - [sym__type_specifier] = STATE(718), - [sym_sized_type_specifier] = STATE(718), - [sym_enum_specifier] = STATE(718), - [sym_struct_specifier] = STATE(718), - [sym_union_specifier] = STATE(718), - [sym_labeled_statement] = STATE(56), - [sym_expression_statement] = STATE(56), - [sym_if_statement] = STATE(56), - [sym_switch_statement] = STATE(56), - [sym_while_statement] = STATE(56), - [sym_do_statement] = STATE(56), - [sym_for_statement] = STATE(56), - [sym_return_statement] = STATE(56), - [sym_break_statement] = STATE(56), - [sym_continue_statement] = STATE(56), - [sym_goto_statement] = STATE(56), - [sym__expression] = STATE(614), + [sym_declaration] = STATE(58), + [sym_type_definition] = STATE(58), + [sym__declaration_specifiers] = STATE(877), + [sym_attribute_specifier] = STATE(561), + [sym_compound_statement] = STATE(58), + [sym_storage_class_specifier] = STATE(561), + [sym_type_qualifier] = STATE(561), + [sym__type_specifier] = STATE(709), + [sym_sized_type_specifier] = STATE(709), + [sym_enum_specifier] = STATE(709), + [sym_struct_specifier] = STATE(709), + [sym_union_specifier] = STATE(709), + [sym_labeled_statement] = STATE(58), + [sym_expression_statement] = STATE(58), + [sym_if_statement] = STATE(58), + [sym_switch_statement] = STATE(58), + [sym_while_statement] = STATE(58), + [sym_do_statement] = STATE(58), + [sym_for_statement] = STATE(58), + [sym_return_statement] = STATE(58), + [sym_break_statement] = STATE(58), + [sym_continue_statement] = STATE(58), + [sym_goto_statement] = STATE(58), + [sym__expression] = STATE(568), [sym_comma_expression] = STATE(1210), - [sym_conditional_expression] = STATE(614), - [sym_assignment_expression] = STATE(614), - [sym_pointer_expression] = STATE(505), - [sym_unary_expression] = STATE(614), - [sym_binary_expression] = STATE(614), - [sym_update_expression] = STATE(614), - [sym_cast_expression] = STATE(614), - [sym_sizeof_expression] = STATE(614), - [sym_subscript_expression] = STATE(505), - [sym_call_expression] = STATE(505), - [sym_field_expression] = STATE(505), - [sym_compound_literal_expression] = STATE(614), - [sym_parenthesized_expression] = STATE(505), - [sym_char_literal] = STATE(614), - [sym_concatenated_string] = STATE(614), - [sym_string_literal] = STATE(376), - [sym_macro_type_specifier] = STATE(718), - [aux_sym__declaration_specifiers_repeat1] = STATE(570), - [aux_sym_sized_type_specifier_repeat1] = STATE(712), - [aux_sym_case_statement_repeat1] = STATE(56), - [ts_builtin_sym_end] = ACTIONS(751), - [sym_identifier] = ACTIONS(753), - [aux_sym_preproc_include_token1] = ACTIONS(646), - [aux_sym_preproc_def_token1] = ACTIONS(646), - [aux_sym_preproc_if_token1] = ACTIONS(646), - [aux_sym_preproc_ifdef_token1] = ACTIONS(646), - [aux_sym_preproc_ifdef_token2] = ACTIONS(646), - [sym_preproc_directive] = ACTIONS(646), + [sym_conditional_expression] = STATE(568), + [sym_assignment_expression] = STATE(568), + [sym_pointer_expression] = STATE(532), + [sym_unary_expression] = STATE(568), + [sym_binary_expression] = STATE(568), + [sym_update_expression] = STATE(568), + [sym_cast_expression] = STATE(568), + [sym_sizeof_expression] = STATE(568), + [sym_subscript_expression] = STATE(532), + [sym_call_expression] = STATE(532), + [sym_field_expression] = STATE(532), + [sym_compound_literal_expression] = STATE(568), + [sym_parenthesized_expression] = STATE(532), + [sym_char_literal] = STATE(568), + [sym_concatenated_string] = STATE(568), + [sym_string_literal] = STATE(379), + [sym_macro_type_specifier] = STATE(709), + [aux_sym__declaration_specifiers_repeat1] = STATE(561), + [aux_sym_sized_type_specifier_repeat1] = STATE(704), + [aux_sym_case_statement_repeat1] = STATE(58), + [sym_identifier] = ACTIONS(751), + [aux_sym_preproc_include_token1] = ACTIONS(747), + [aux_sym_preproc_def_token1] = ACTIONS(747), + [aux_sym_preproc_if_token1] = ACTIONS(747), + [aux_sym_preproc_ifdef_token1] = ACTIONS(747), + [aux_sym_preproc_ifdef_token2] = ACTIONS(747), + [sym_preproc_directive] = ACTIONS(747), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -11949,11 +11966,12 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(27), - [anon_sym_typedef] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(304), + [anon_sym_typedef] = ACTIONS(306), [anon_sym_extern] = ACTIONS(37), [anon_sym___attribute__] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(35), + [anon_sym_LBRACE] = ACTIONS(310), + [anon_sym_RBRACE] = ACTIONS(753), [anon_sym_static] = ACTIONS(37), [anon_sym_auto] = ACTIONS(37), [anon_sym_register] = ACTIONS(37), @@ -11970,22 +11988,22 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(45), [anon_sym_struct] = ACTIONS(47), [anon_sym_union] = ACTIONS(49), - [anon_sym_if] = ACTIONS(51), - [anon_sym_else] = ACTIONS(646), - [anon_sym_switch] = ACTIONS(53), - [anon_sym_case] = ACTIONS(646), - [anon_sym_default] = ACTIONS(646), - [anon_sym_while] = ACTIONS(59), - [anon_sym_do] = ACTIONS(61), - [anon_sym_for] = ACTIONS(63), - [anon_sym_return] = ACTIONS(65), - [anon_sym_break] = ACTIONS(67), - [anon_sym_continue] = ACTIONS(69), - [anon_sym_goto] = ACTIONS(71), + [anon_sym_if] = ACTIONS(316), + [anon_sym_else] = ACTIONS(747), + [anon_sym_switch] = ACTIONS(318), + [anon_sym_case] = ACTIONS(747), + [anon_sym_default] = ACTIONS(747), + [anon_sym_while] = ACTIONS(324), + [anon_sym_do] = ACTIONS(326), + [anon_sym_for] = ACTIONS(328), + [anon_sym_return] = ACTIONS(330), + [anon_sym_break] = ACTIONS(332), + [anon_sym_continue] = ACTIONS(334), + [anon_sym_goto] = ACTIONS(336), [anon_sym_DASH_DASH] = ACTIONS(73), [anon_sym_PLUS_PLUS] = ACTIONS(73), [anon_sym_sizeof] = ACTIONS(75), - [sym_number_literal] = ACTIONS(77), + [sym_number_literal] = ACTIONS(338), [anon_sym_L_SQUOTE] = ACTIONS(79), [anon_sym_u_SQUOTE] = ACTIONS(79), [anon_sym_U_SQUOTE] = ACTIONS(79), @@ -11996,178 +12014,65 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_U_DQUOTE] = ACTIONS(81), [anon_sym_u8_DQUOTE] = ACTIONS(81), [anon_sym_DQUOTE] = ACTIONS(81), - [sym_true] = ACTIONS(83), - [sym_false] = ACTIONS(83), - [sym_null] = ACTIONS(83), + [sym_true] = ACTIONS(340), + [sym_false] = ACTIONS(340), + [sym_null] = ACTIONS(340), [sym_comment] = ACTIONS(3), }, [49] = { - [sym_declaration] = STATE(49), - [sym_type_definition] = STATE(49), - [sym__declaration_specifiers] = STATE(868), - [sym_attribute_specifier] = STATE(570), - [sym_compound_statement] = STATE(49), - [sym_storage_class_specifier] = STATE(570), - [sym_type_qualifier] = STATE(570), - [sym__type_specifier] = STATE(718), - [sym_sized_type_specifier] = STATE(718), - [sym_enum_specifier] = STATE(718), - [sym_struct_specifier] = STATE(718), - [sym_union_specifier] = STATE(718), - [sym_labeled_statement] = STATE(49), - [sym_expression_statement] = STATE(49), - [sym_if_statement] = STATE(49), - [sym_switch_statement] = STATE(49), - [sym_while_statement] = STATE(49), - [sym_do_statement] = STATE(49), - [sym_for_statement] = STATE(49), - [sym_return_statement] = STATE(49), - [sym_break_statement] = STATE(49), - [sym_continue_statement] = STATE(49), - [sym_goto_statement] = STATE(49), - [sym__expression] = STATE(616), - [sym_comma_expression] = STATE(1170), - [sym_conditional_expression] = STATE(616), - [sym_assignment_expression] = STATE(616), - [sym_pointer_expression] = STATE(505), - [sym_unary_expression] = STATE(616), - [sym_binary_expression] = STATE(616), - [sym_update_expression] = STATE(616), - [sym_cast_expression] = STATE(616), - [sym_sizeof_expression] = STATE(616), - [sym_subscript_expression] = STATE(505), - [sym_call_expression] = STATE(505), - [sym_field_expression] = STATE(505), - [sym_compound_literal_expression] = STATE(616), - [sym_parenthesized_expression] = STATE(505), - [sym_char_literal] = STATE(616), - [sym_concatenated_string] = STATE(616), - [sym_string_literal] = STATE(376), - [sym_macro_type_specifier] = STATE(718), - [aux_sym__declaration_specifiers_repeat1] = STATE(570), - [aux_sym_sized_type_specifier_repeat1] = STATE(712), - [aux_sym_case_statement_repeat1] = STATE(49), + [sym_declaration] = STATE(55), + [sym_type_definition] = STATE(55), + [sym__declaration_specifiers] = STATE(860), + [sym_attribute_specifier] = STATE(561), + [sym_compound_statement] = STATE(55), + [sym_storage_class_specifier] = STATE(561), + [sym_type_qualifier] = STATE(561), + [sym__type_specifier] = STATE(709), + [sym_sized_type_specifier] = STATE(709), + [sym_enum_specifier] = STATE(709), + [sym_struct_specifier] = STATE(709), + [sym_union_specifier] = STATE(709), + [sym_labeled_statement] = STATE(55), + [sym_expression_statement] = STATE(55), + [sym_if_statement] = STATE(55), + [sym_switch_statement] = STATE(55), + [sym_while_statement] = STATE(55), + [sym_do_statement] = STATE(55), + [sym_for_statement] = STATE(55), + [sym_return_statement] = STATE(55), + [sym_break_statement] = STATE(55), + [sym_continue_statement] = STATE(55), + [sym_goto_statement] = STATE(55), + [sym__expression] = STATE(607), + [sym_comma_expression] = STATE(1092), + [sym_conditional_expression] = STATE(607), + [sym_assignment_expression] = STATE(607), + [sym_pointer_expression] = STATE(532), + [sym_unary_expression] = STATE(607), + [sym_binary_expression] = STATE(607), + [sym_update_expression] = STATE(607), + [sym_cast_expression] = STATE(607), + [sym_sizeof_expression] = STATE(607), + [sym_subscript_expression] = STATE(532), + [sym_call_expression] = STATE(532), + [sym_field_expression] = STATE(532), + [sym_compound_literal_expression] = STATE(607), + [sym_parenthesized_expression] = STATE(532), + [sym_char_literal] = STATE(607), + [sym_concatenated_string] = STATE(607), + [sym_string_literal] = STATE(379), + [sym_macro_type_specifier] = STATE(709), + [aux_sym__declaration_specifiers_repeat1] = STATE(561), + [aux_sym_sized_type_specifier_repeat1] = STATE(704), + [aux_sym_case_statement_repeat1] = STATE(55), [sym_identifier] = ACTIONS(755), - [aux_sym_preproc_include_token1] = ACTIONS(659), - [aux_sym_preproc_def_token1] = ACTIONS(659), - [aux_sym_preproc_if_token1] = ACTIONS(659), - [aux_sym_preproc_ifdef_token1] = ACTIONS(659), - [aux_sym_preproc_ifdef_token2] = ACTIONS(659), - [sym_preproc_directive] = ACTIONS(659), - [anon_sym_LPAREN2] = ACTIONS(661), - [anon_sym_BANG] = ACTIONS(664), - [anon_sym_TILDE] = ACTIONS(664), - [anon_sym_DASH] = ACTIONS(667), - [anon_sym_PLUS] = ACTIONS(667), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_AMP] = ACTIONS(670), - [anon_sym_SEMI] = ACTIONS(758), - [anon_sym_typedef] = ACTIONS(761), - [anon_sym_extern] = ACTIONS(679), - [anon_sym___attribute__] = ACTIONS(682), - [anon_sym_LBRACE] = ACTIONS(764), - [anon_sym_RBRACE] = ACTIONS(767), - [anon_sym_static] = ACTIONS(679), - [anon_sym_auto] = ACTIONS(679), - [anon_sym_register] = ACTIONS(679), - [anon_sym_inline] = ACTIONS(679), - [anon_sym_const] = ACTIONS(688), - [anon_sym_volatile] = ACTIONS(688), - [anon_sym_restrict] = ACTIONS(688), - [anon_sym__Atomic] = ACTIONS(688), - [anon_sym_signed] = ACTIONS(691), - [anon_sym_unsigned] = ACTIONS(691), - [anon_sym_long] = ACTIONS(691), - [anon_sym_short] = ACTIONS(691), - [sym_primitive_type] = ACTIONS(694), - [anon_sym_enum] = ACTIONS(697), - [anon_sym_struct] = ACTIONS(700), - [anon_sym_union] = ACTIONS(703), - [anon_sym_if] = ACTIONS(769), - [anon_sym_else] = ACTIONS(659), - [anon_sym_switch] = ACTIONS(772), - [anon_sym_case] = ACTIONS(659), - [anon_sym_default] = ACTIONS(659), - [anon_sym_while] = ACTIONS(775), - [anon_sym_do] = ACTIONS(778), - [anon_sym_for] = ACTIONS(781), - [anon_sym_return] = ACTIONS(784), - [anon_sym_break] = ACTIONS(787), - [anon_sym_continue] = ACTIONS(790), - [anon_sym_goto] = ACTIONS(793), - [anon_sym_DASH_DASH] = ACTIONS(733), - [anon_sym_PLUS_PLUS] = ACTIONS(733), - [anon_sym_sizeof] = ACTIONS(736), - [sym_number_literal] = ACTIONS(796), - [anon_sym_L_SQUOTE] = ACTIONS(742), - [anon_sym_u_SQUOTE] = ACTIONS(742), - [anon_sym_U_SQUOTE] = ACTIONS(742), - [anon_sym_u8_SQUOTE] = ACTIONS(742), - [anon_sym_SQUOTE] = ACTIONS(742), - [anon_sym_L_DQUOTE] = ACTIONS(745), - [anon_sym_u_DQUOTE] = ACTIONS(745), - [anon_sym_U_DQUOTE] = ACTIONS(745), - [anon_sym_u8_DQUOTE] = ACTIONS(745), - [anon_sym_DQUOTE] = ACTIONS(745), - [sym_true] = ACTIONS(799), - [sym_false] = ACTIONS(799), - [sym_null] = ACTIONS(799), - [sym_comment] = ACTIONS(3), - }, - [50] = { - [sym_declaration] = STATE(52), - [sym_type_definition] = STATE(52), - [sym__declaration_specifiers] = STATE(867), - [sym_attribute_specifier] = STATE(570), - [sym_compound_statement] = STATE(52), - [sym_storage_class_specifier] = STATE(570), - [sym_type_qualifier] = STATE(570), - [sym__type_specifier] = STATE(718), - [sym_sized_type_specifier] = STATE(718), - [sym_enum_specifier] = STATE(718), - [sym_struct_specifier] = STATE(718), - [sym_union_specifier] = STATE(718), - [sym_labeled_statement] = STATE(52), - [sym_expression_statement] = STATE(52), - [sym_if_statement] = STATE(52), - [sym_switch_statement] = STATE(52), - [sym_while_statement] = STATE(52), - [sym_do_statement] = STATE(52), - [sym_for_statement] = STATE(52), - [sym_return_statement] = STATE(52), - [sym_break_statement] = STATE(52), - [sym_continue_statement] = STATE(52), - [sym_goto_statement] = STATE(52), - [sym__expression] = STATE(614), - [sym_comma_expression] = STATE(1210), - [sym_conditional_expression] = STATE(614), - [sym_assignment_expression] = STATE(614), - [sym_pointer_expression] = STATE(505), - [sym_unary_expression] = STATE(614), - [sym_binary_expression] = STATE(614), - [sym_update_expression] = STATE(614), - [sym_cast_expression] = STATE(614), - [sym_sizeof_expression] = STATE(614), - [sym_subscript_expression] = STATE(505), - [sym_call_expression] = STATE(505), - [sym_field_expression] = STATE(505), - [sym_compound_literal_expression] = STATE(614), - [sym_parenthesized_expression] = STATE(505), - [sym_char_literal] = STATE(614), - [sym_concatenated_string] = STATE(614), - [sym_string_literal] = STATE(376), - [sym_macro_type_specifier] = STATE(718), - [aux_sym__declaration_specifiers_repeat1] = STATE(570), - [aux_sym_sized_type_specifier_repeat1] = STATE(712), - [aux_sym_case_statement_repeat1] = STATE(52), - [ts_builtin_sym_end] = ACTIONS(802), - [sym_identifier] = ACTIONS(753), - [aux_sym_preproc_include_token1] = ACTIONS(654), - [aux_sym_preproc_def_token1] = ACTIONS(654), - [aux_sym_preproc_if_token1] = ACTIONS(654), - [aux_sym_preproc_ifdef_token1] = ACTIONS(654), - [aux_sym_preproc_ifdef_token2] = ACTIONS(654), - [sym_preproc_directive] = ACTIONS(654), + [aux_sym_preproc_include_token1] = ACTIONS(646), + [aux_sym_preproc_def_token1] = ACTIONS(646), + [aux_sym_preproc_if_token1] = ACTIONS(646), + [aux_sym_preproc_if_token2] = ACTIONS(646), + [aux_sym_preproc_ifdef_token1] = ACTIONS(646), + [aux_sym_preproc_ifdef_token2] = ACTIONS(646), + [sym_preproc_directive] = ACTIONS(646), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -12175,11 +12080,11 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(27), - [anon_sym_typedef] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(364), + [anon_sym_typedef] = ACTIONS(366), [anon_sym_extern] = ACTIONS(37), [anon_sym___attribute__] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(35), + [anon_sym_LBRACE] = ACTIONS(370), [anon_sym_static] = ACTIONS(37), [anon_sym_auto] = ACTIONS(37), [anon_sym_register] = ACTIONS(37), @@ -12196,22 +12101,22 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(45), [anon_sym_struct] = ACTIONS(47), [anon_sym_union] = ACTIONS(49), - [anon_sym_if] = ACTIONS(51), - [anon_sym_else] = ACTIONS(654), - [anon_sym_switch] = ACTIONS(53), - [anon_sym_case] = ACTIONS(654), - [anon_sym_default] = ACTIONS(654), - [anon_sym_while] = ACTIONS(59), - [anon_sym_do] = ACTIONS(61), - [anon_sym_for] = ACTIONS(63), - [anon_sym_return] = ACTIONS(65), - [anon_sym_break] = ACTIONS(67), - [anon_sym_continue] = ACTIONS(69), - [anon_sym_goto] = ACTIONS(71), + [anon_sym_if] = ACTIONS(374), + [anon_sym_else] = ACTIONS(646), + [anon_sym_switch] = ACTIONS(376), + [anon_sym_case] = ACTIONS(646), + [anon_sym_default] = ACTIONS(646), + [anon_sym_while] = ACTIONS(382), + [anon_sym_do] = ACTIONS(384), + [anon_sym_for] = ACTIONS(386), + [anon_sym_return] = ACTIONS(388), + [anon_sym_break] = ACTIONS(390), + [anon_sym_continue] = ACTIONS(392), + [anon_sym_goto] = ACTIONS(394), [anon_sym_DASH_DASH] = ACTIONS(73), [anon_sym_PLUS_PLUS] = ACTIONS(73), [anon_sym_sizeof] = ACTIONS(75), - [sym_number_literal] = ACTIONS(77), + [sym_number_literal] = ACTIONS(396), [anon_sym_L_SQUOTE] = ACTIONS(79), [anon_sym_u_SQUOTE] = ACTIONS(79), [anon_sym_U_SQUOTE] = ACTIONS(79), @@ -12222,64 +12127,65 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_U_DQUOTE] = ACTIONS(81), [anon_sym_u8_DQUOTE] = ACTIONS(81), [anon_sym_DQUOTE] = ACTIONS(81), - [sym_true] = ACTIONS(83), - [sym_false] = ACTIONS(83), - [sym_null] = ACTIONS(83), + [sym_true] = ACTIONS(398), + [sym_false] = ACTIONS(398), + [sym_null] = ACTIONS(398), [sym_comment] = ACTIONS(3), }, - [51] = { - [sym_declaration] = STATE(54), - [sym_type_definition] = STATE(54), - [sym__declaration_specifiers] = STATE(868), - [sym_attribute_specifier] = STATE(570), - [sym_compound_statement] = STATE(54), - [sym_storage_class_specifier] = STATE(570), - [sym_type_qualifier] = STATE(570), - [sym__type_specifier] = STATE(718), - [sym_sized_type_specifier] = STATE(718), - [sym_enum_specifier] = STATE(718), - [sym_struct_specifier] = STATE(718), - [sym_union_specifier] = STATE(718), - [sym_labeled_statement] = STATE(54), - [sym_expression_statement] = STATE(54), - [sym_if_statement] = STATE(54), - [sym_switch_statement] = STATE(54), - [sym_while_statement] = STATE(54), - [sym_do_statement] = STATE(54), - [sym_for_statement] = STATE(54), - [sym_return_statement] = STATE(54), - [sym_break_statement] = STATE(54), - [sym_continue_statement] = STATE(54), - [sym_goto_statement] = STATE(54), - [sym__expression] = STATE(616), - [sym_comma_expression] = STATE(1170), - [sym_conditional_expression] = STATE(616), - [sym_assignment_expression] = STATE(616), - [sym_pointer_expression] = STATE(505), - [sym_unary_expression] = STATE(616), - [sym_binary_expression] = STATE(616), - [sym_update_expression] = STATE(616), - [sym_cast_expression] = STATE(616), - [sym_sizeof_expression] = STATE(616), - [sym_subscript_expression] = STATE(505), - [sym_call_expression] = STATE(505), - [sym_field_expression] = STATE(505), - [sym_compound_literal_expression] = STATE(616), - [sym_parenthesized_expression] = STATE(505), - [sym_char_literal] = STATE(616), - [sym_concatenated_string] = STATE(616), - [sym_string_literal] = STATE(376), - [sym_macro_type_specifier] = STATE(718), - [aux_sym__declaration_specifiers_repeat1] = STATE(570), - [aux_sym_sized_type_specifier_repeat1] = STATE(712), - [aux_sym_case_statement_repeat1] = STATE(54), - [sym_identifier] = ACTIONS(804), - [aux_sym_preproc_include_token1] = ACTIONS(646), - [aux_sym_preproc_def_token1] = ACTIONS(646), - [aux_sym_preproc_if_token1] = ACTIONS(646), - [aux_sym_preproc_ifdef_token1] = ACTIONS(646), - [aux_sym_preproc_ifdef_token2] = ACTIONS(646), - [sym_preproc_directive] = ACTIONS(646), + [50] = { + [sym_declaration] = STATE(56), + [sym_type_definition] = STATE(56), + [sym__declaration_specifiers] = STATE(860), + [sym_attribute_specifier] = STATE(561), + [sym_compound_statement] = STATE(56), + [sym_storage_class_specifier] = STATE(561), + [sym_type_qualifier] = STATE(561), + [sym__type_specifier] = STATE(709), + [sym_sized_type_specifier] = STATE(709), + [sym_enum_specifier] = STATE(709), + [sym_struct_specifier] = STATE(709), + [sym_union_specifier] = STATE(709), + [sym_labeled_statement] = STATE(56), + [sym_expression_statement] = STATE(56), + [sym_if_statement] = STATE(56), + [sym_switch_statement] = STATE(56), + [sym_while_statement] = STATE(56), + [sym_do_statement] = STATE(56), + [sym_for_statement] = STATE(56), + [sym_return_statement] = STATE(56), + [sym_break_statement] = STATE(56), + [sym_continue_statement] = STATE(56), + [sym_goto_statement] = STATE(56), + [sym__expression] = STATE(607), + [sym_comma_expression] = STATE(1092), + [sym_conditional_expression] = STATE(607), + [sym_assignment_expression] = STATE(607), + [sym_pointer_expression] = STATE(532), + [sym_unary_expression] = STATE(607), + [sym_binary_expression] = STATE(607), + [sym_update_expression] = STATE(607), + [sym_cast_expression] = STATE(607), + [sym_sizeof_expression] = STATE(607), + [sym_subscript_expression] = STATE(532), + [sym_call_expression] = STATE(532), + [sym_field_expression] = STATE(532), + [sym_compound_literal_expression] = STATE(607), + [sym_parenthesized_expression] = STATE(532), + [sym_char_literal] = STATE(607), + [sym_concatenated_string] = STATE(607), + [sym_string_literal] = STATE(379), + [sym_macro_type_specifier] = STATE(709), + [aux_sym__declaration_specifiers_repeat1] = STATE(561), + [aux_sym_sized_type_specifier_repeat1] = STATE(704), + [aux_sym_case_statement_repeat1] = STATE(56), + [sym_identifier] = ACTIONS(755), + [aux_sym_preproc_include_token1] = ACTIONS(749), + [aux_sym_preproc_def_token1] = ACTIONS(749), + [aux_sym_preproc_if_token1] = ACTIONS(749), + [aux_sym_preproc_if_token2] = ACTIONS(749), + [aux_sym_preproc_ifdef_token1] = ACTIONS(749), + [aux_sym_preproc_ifdef_token2] = ACTIONS(749), + [sym_preproc_directive] = ACTIONS(749), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -12287,12 +12193,11 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(304), - [anon_sym_typedef] = ACTIONS(306), + [anon_sym_SEMI] = ACTIONS(364), + [anon_sym_typedef] = ACTIONS(366), [anon_sym_extern] = ACTIONS(37), [anon_sym___attribute__] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(310), - [anon_sym_RBRACE] = ACTIONS(751), + [anon_sym_LBRACE] = ACTIONS(370), [anon_sym_static] = ACTIONS(37), [anon_sym_auto] = ACTIONS(37), [anon_sym_register] = ACTIONS(37), @@ -12309,22 +12214,22 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(45), [anon_sym_struct] = ACTIONS(47), [anon_sym_union] = ACTIONS(49), - [anon_sym_if] = ACTIONS(316), - [anon_sym_else] = ACTIONS(646), - [anon_sym_switch] = ACTIONS(318), - [anon_sym_case] = ACTIONS(646), - [anon_sym_default] = ACTIONS(646), - [anon_sym_while] = ACTIONS(324), - [anon_sym_do] = ACTIONS(326), - [anon_sym_for] = ACTIONS(328), - [anon_sym_return] = ACTIONS(330), - [anon_sym_break] = ACTIONS(332), - [anon_sym_continue] = ACTIONS(334), - [anon_sym_goto] = ACTIONS(336), + [anon_sym_if] = ACTIONS(374), + [anon_sym_else] = ACTIONS(749), + [anon_sym_switch] = ACTIONS(376), + [anon_sym_case] = ACTIONS(749), + [anon_sym_default] = ACTIONS(749), + [anon_sym_while] = ACTIONS(382), + [anon_sym_do] = ACTIONS(384), + [anon_sym_for] = ACTIONS(386), + [anon_sym_return] = ACTIONS(388), + [anon_sym_break] = ACTIONS(390), + [anon_sym_continue] = ACTIONS(392), + [anon_sym_goto] = ACTIONS(394), [anon_sym_DASH_DASH] = ACTIONS(73), [anon_sym_PLUS_PLUS] = ACTIONS(73), [anon_sym_sizeof] = ACTIONS(75), - [sym_number_literal] = ACTIONS(338), + [sym_number_literal] = ACTIONS(396), [anon_sym_L_SQUOTE] = ACTIONS(79), [anon_sym_u_SQUOTE] = ACTIONS(79), [anon_sym_U_SQUOTE] = ACTIONS(79), @@ -12335,137 +12240,24 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_U_DQUOTE] = ACTIONS(81), [anon_sym_u8_DQUOTE] = ACTIONS(81), [anon_sym_DQUOTE] = ACTIONS(81), - [sym_true] = ACTIONS(340), - [sym_false] = ACTIONS(340), - [sym_null] = ACTIONS(340), - [sym_comment] = ACTIONS(3), - }, - [52] = { - [sym_declaration] = STATE(52), - [sym_type_definition] = STATE(52), - [sym__declaration_specifiers] = STATE(867), - [sym_attribute_specifier] = STATE(570), - [sym_compound_statement] = STATE(52), - [sym_storage_class_specifier] = STATE(570), - [sym_type_qualifier] = STATE(570), - [sym__type_specifier] = STATE(718), - [sym_sized_type_specifier] = STATE(718), - [sym_enum_specifier] = STATE(718), - [sym_struct_specifier] = STATE(718), - [sym_union_specifier] = STATE(718), - [sym_labeled_statement] = STATE(52), - [sym_expression_statement] = STATE(52), - [sym_if_statement] = STATE(52), - [sym_switch_statement] = STATE(52), - [sym_while_statement] = STATE(52), - [sym_do_statement] = STATE(52), - [sym_for_statement] = STATE(52), - [sym_return_statement] = STATE(52), - [sym_break_statement] = STATE(52), - [sym_continue_statement] = STATE(52), - [sym_goto_statement] = STATE(52), - [sym__expression] = STATE(614), - [sym_comma_expression] = STATE(1210), - [sym_conditional_expression] = STATE(614), - [sym_assignment_expression] = STATE(614), - [sym_pointer_expression] = STATE(505), - [sym_unary_expression] = STATE(614), - [sym_binary_expression] = STATE(614), - [sym_update_expression] = STATE(614), - [sym_cast_expression] = STATE(614), - [sym_sizeof_expression] = STATE(614), - [sym_subscript_expression] = STATE(505), - [sym_call_expression] = STATE(505), - [sym_field_expression] = STATE(505), - [sym_compound_literal_expression] = STATE(614), - [sym_parenthesized_expression] = STATE(505), - [sym_char_literal] = STATE(614), - [sym_concatenated_string] = STATE(614), - [sym_string_literal] = STATE(376), - [sym_macro_type_specifier] = STATE(718), - [aux_sym__declaration_specifiers_repeat1] = STATE(570), - [aux_sym_sized_type_specifier_repeat1] = STATE(712), - [aux_sym_case_statement_repeat1] = STATE(52), - [ts_builtin_sym_end] = ACTIONS(767), - [sym_identifier] = ACTIONS(806), - [aux_sym_preproc_include_token1] = ACTIONS(659), - [aux_sym_preproc_def_token1] = ACTIONS(659), - [aux_sym_preproc_if_token1] = ACTIONS(659), - [aux_sym_preproc_ifdef_token1] = ACTIONS(659), - [aux_sym_preproc_ifdef_token2] = ACTIONS(659), - [sym_preproc_directive] = ACTIONS(659), - [anon_sym_LPAREN2] = ACTIONS(661), - [anon_sym_BANG] = ACTIONS(664), - [anon_sym_TILDE] = ACTIONS(664), - [anon_sym_DASH] = ACTIONS(667), - [anon_sym_PLUS] = ACTIONS(667), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_AMP] = ACTIONS(670), - [anon_sym_SEMI] = ACTIONS(809), - [anon_sym_typedef] = ACTIONS(812), - [anon_sym_extern] = ACTIONS(679), - [anon_sym___attribute__] = ACTIONS(682), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_static] = ACTIONS(679), - [anon_sym_auto] = ACTIONS(679), - [anon_sym_register] = ACTIONS(679), - [anon_sym_inline] = ACTIONS(679), - [anon_sym_const] = ACTIONS(688), - [anon_sym_volatile] = ACTIONS(688), - [anon_sym_restrict] = ACTIONS(688), - [anon_sym__Atomic] = ACTIONS(688), - [anon_sym_signed] = ACTIONS(691), - [anon_sym_unsigned] = ACTIONS(691), - [anon_sym_long] = ACTIONS(691), - [anon_sym_short] = ACTIONS(691), - [sym_primitive_type] = ACTIONS(694), - [anon_sym_enum] = ACTIONS(697), - [anon_sym_struct] = ACTIONS(700), - [anon_sym_union] = ACTIONS(703), - [anon_sym_if] = ACTIONS(818), - [anon_sym_else] = ACTIONS(659), - [anon_sym_switch] = ACTIONS(821), - [anon_sym_case] = ACTIONS(659), - [anon_sym_default] = ACTIONS(659), - [anon_sym_while] = ACTIONS(824), - [anon_sym_do] = ACTIONS(827), - [anon_sym_for] = ACTIONS(830), - [anon_sym_return] = ACTIONS(833), - [anon_sym_break] = ACTIONS(836), - [anon_sym_continue] = ACTIONS(839), - [anon_sym_goto] = ACTIONS(842), - [anon_sym_DASH_DASH] = ACTIONS(733), - [anon_sym_PLUS_PLUS] = ACTIONS(733), - [anon_sym_sizeof] = ACTIONS(736), - [sym_number_literal] = ACTIONS(845), - [anon_sym_L_SQUOTE] = ACTIONS(742), - [anon_sym_u_SQUOTE] = ACTIONS(742), - [anon_sym_U_SQUOTE] = ACTIONS(742), - [anon_sym_u8_SQUOTE] = ACTIONS(742), - [anon_sym_SQUOTE] = ACTIONS(742), - [anon_sym_L_DQUOTE] = ACTIONS(745), - [anon_sym_u_DQUOTE] = ACTIONS(745), - [anon_sym_U_DQUOTE] = ACTIONS(745), - [anon_sym_u8_DQUOTE] = ACTIONS(745), - [anon_sym_DQUOTE] = ACTIONS(745), - [sym_true] = ACTIONS(848), - [sym_false] = ACTIONS(848), - [sym_null] = ACTIONS(848), + [sym_true] = ACTIONS(398), + [sym_false] = ACTIONS(398), + [sym_null] = ACTIONS(398), [sym_comment] = ACTIONS(3), }, - [53] = { + [51] = { [sym_declaration] = STATE(61), [sym_type_definition] = STATE(61), - [sym__declaration_specifiers] = STATE(868), - [sym_attribute_specifier] = STATE(570), + [sym__declaration_specifiers] = STATE(872), + [sym_attribute_specifier] = STATE(561), [sym_compound_statement] = STATE(61), - [sym_storage_class_specifier] = STATE(570), - [sym_type_qualifier] = STATE(570), - [sym__type_specifier] = STATE(718), - [sym_sized_type_specifier] = STATE(718), - [sym_enum_specifier] = STATE(718), - [sym_struct_specifier] = STATE(718), - [sym_union_specifier] = STATE(718), + [sym_storage_class_specifier] = STATE(561), + [sym_type_qualifier] = STATE(561), + [sym__type_specifier] = STATE(709), + [sym_sized_type_specifier] = STATE(709), + [sym_enum_specifier] = STATE(709), + [sym_struct_specifier] = STATE(709), + [sym_union_specifier] = STATE(709), [sym_labeled_statement] = STATE(61), [sym_expression_statement] = STATE(61), [sym_if_statement] = STATE(61), @@ -12477,35 +12269,36 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(61), [sym_continue_statement] = STATE(61), [sym_goto_statement] = STATE(61), - [sym__expression] = STATE(616), - [sym_comma_expression] = STATE(1170), - [sym_conditional_expression] = STATE(616), - [sym_assignment_expression] = STATE(616), - [sym_pointer_expression] = STATE(505), - [sym_unary_expression] = STATE(616), - [sym_binary_expression] = STATE(616), - [sym_update_expression] = STATE(616), - [sym_cast_expression] = STATE(616), - [sym_sizeof_expression] = STATE(616), - [sym_subscript_expression] = STATE(505), - [sym_call_expression] = STATE(505), - [sym_field_expression] = STATE(505), - [sym_compound_literal_expression] = STATE(616), - [sym_parenthesized_expression] = STATE(505), - [sym_char_literal] = STATE(616), - [sym_concatenated_string] = STATE(616), - [sym_string_literal] = STATE(376), - [sym_macro_type_specifier] = STATE(718), - [aux_sym__declaration_specifiers_repeat1] = STATE(570), - [aux_sym_sized_type_specifier_repeat1] = STATE(712), + [sym__expression] = STATE(606), + [sym_comma_expression] = STATE(1218), + [sym_conditional_expression] = STATE(606), + [sym_assignment_expression] = STATE(606), + [sym_pointer_expression] = STATE(532), + [sym_unary_expression] = STATE(606), + [sym_binary_expression] = STATE(606), + [sym_update_expression] = STATE(606), + [sym_cast_expression] = STATE(606), + [sym_sizeof_expression] = STATE(606), + [sym_subscript_expression] = STATE(532), + [sym_call_expression] = STATE(532), + [sym_field_expression] = STATE(532), + [sym_compound_literal_expression] = STATE(606), + [sym_parenthesized_expression] = STATE(532), + [sym_char_literal] = STATE(606), + [sym_concatenated_string] = STATE(606), + [sym_string_literal] = STATE(379), + [sym_macro_type_specifier] = STATE(709), + [aux_sym__declaration_specifiers_repeat1] = STATE(561), + [aux_sym_sized_type_specifier_repeat1] = STATE(704), [aux_sym_case_statement_repeat1] = STATE(61), - [sym_identifier] = ACTIONS(804), - [aux_sym_preproc_include_token1] = ACTIONS(652), - [aux_sym_preproc_def_token1] = ACTIONS(652), - [aux_sym_preproc_if_token1] = ACTIONS(652), - [aux_sym_preproc_ifdef_token1] = ACTIONS(652), - [aux_sym_preproc_ifdef_token2] = ACTIONS(652), - [sym_preproc_directive] = ACTIONS(652), + [ts_builtin_sym_end] = ACTIONS(757), + [sym_identifier] = ACTIONS(759), + [aux_sym_preproc_include_token1] = ACTIONS(650), + [aux_sym_preproc_def_token1] = ACTIONS(650), + [aux_sym_preproc_if_token1] = ACTIONS(650), + [aux_sym_preproc_ifdef_token1] = ACTIONS(650), + [aux_sym_preproc_ifdef_token2] = ACTIONS(650), + [sym_preproc_directive] = ACTIONS(650), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -12513,12 +12306,11 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(304), - [anon_sym_typedef] = ACTIONS(306), + [anon_sym_SEMI] = ACTIONS(27), + [anon_sym_typedef] = ACTIONS(29), [anon_sym_extern] = ACTIONS(37), [anon_sym___attribute__] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(310), - [anon_sym_RBRACE] = ACTIONS(851), + [anon_sym_LBRACE] = ACTIONS(35), [anon_sym_static] = ACTIONS(37), [anon_sym_auto] = ACTIONS(37), [anon_sym_register] = ACTIONS(37), @@ -12535,22 +12327,22 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(45), [anon_sym_struct] = ACTIONS(47), [anon_sym_union] = ACTIONS(49), - [anon_sym_if] = ACTIONS(316), - [anon_sym_else] = ACTIONS(652), - [anon_sym_switch] = ACTIONS(318), - [anon_sym_case] = ACTIONS(652), - [anon_sym_default] = ACTIONS(652), - [anon_sym_while] = ACTIONS(324), - [anon_sym_do] = ACTIONS(326), - [anon_sym_for] = ACTIONS(328), - [anon_sym_return] = ACTIONS(330), - [anon_sym_break] = ACTIONS(332), - [anon_sym_continue] = ACTIONS(334), - [anon_sym_goto] = ACTIONS(336), + [anon_sym_if] = ACTIONS(51), + [anon_sym_else] = ACTIONS(650), + [anon_sym_switch] = ACTIONS(53), + [anon_sym_case] = ACTIONS(650), + [anon_sym_default] = ACTIONS(650), + [anon_sym_while] = ACTIONS(59), + [anon_sym_do] = ACTIONS(61), + [anon_sym_for] = ACTIONS(63), + [anon_sym_return] = ACTIONS(65), + [anon_sym_break] = ACTIONS(67), + [anon_sym_continue] = ACTIONS(69), + [anon_sym_goto] = ACTIONS(71), [anon_sym_DASH_DASH] = ACTIONS(73), [anon_sym_PLUS_PLUS] = ACTIONS(73), [anon_sym_sizeof] = ACTIONS(75), - [sym_number_literal] = ACTIONS(338), + [sym_number_literal] = ACTIONS(77), [anon_sym_L_SQUOTE] = ACTIONS(79), [anon_sym_u_SQUOTE] = ACTIONS(79), [anon_sym_U_SQUOTE] = ACTIONS(79), @@ -12561,64 +12353,65 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_U_DQUOTE] = ACTIONS(81), [anon_sym_u8_DQUOTE] = ACTIONS(81), [anon_sym_DQUOTE] = ACTIONS(81), - [sym_true] = ACTIONS(340), - [sym_false] = ACTIONS(340), - [sym_null] = ACTIONS(340), + [sym_true] = ACTIONS(83), + [sym_false] = ACTIONS(83), + [sym_null] = ACTIONS(83), [sym_comment] = ACTIONS(3), }, - [54] = { - [sym_declaration] = STATE(49), - [sym_type_definition] = STATE(49), - [sym__declaration_specifiers] = STATE(868), - [sym_attribute_specifier] = STATE(570), - [sym_compound_statement] = STATE(49), - [sym_storage_class_specifier] = STATE(570), - [sym_type_qualifier] = STATE(570), - [sym__type_specifier] = STATE(718), - [sym_sized_type_specifier] = STATE(718), - [sym_enum_specifier] = STATE(718), - [sym_struct_specifier] = STATE(718), - [sym_union_specifier] = STATE(718), - [sym_labeled_statement] = STATE(49), - [sym_expression_statement] = STATE(49), - [sym_if_statement] = STATE(49), - [sym_switch_statement] = STATE(49), - [sym_while_statement] = STATE(49), - [sym_do_statement] = STATE(49), - [sym_for_statement] = STATE(49), - [sym_return_statement] = STATE(49), - [sym_break_statement] = STATE(49), - [sym_continue_statement] = STATE(49), - [sym_goto_statement] = STATE(49), - [sym__expression] = STATE(616), - [sym_comma_expression] = STATE(1170), - [sym_conditional_expression] = STATE(616), - [sym_assignment_expression] = STATE(616), - [sym_pointer_expression] = STATE(505), - [sym_unary_expression] = STATE(616), - [sym_binary_expression] = STATE(616), - [sym_update_expression] = STATE(616), - [sym_cast_expression] = STATE(616), - [sym_sizeof_expression] = STATE(616), - [sym_subscript_expression] = STATE(505), - [sym_call_expression] = STATE(505), - [sym_field_expression] = STATE(505), - [sym_compound_literal_expression] = STATE(616), - [sym_parenthesized_expression] = STATE(505), - [sym_char_literal] = STATE(616), - [sym_concatenated_string] = STATE(616), - [sym_string_literal] = STATE(376), - [sym_macro_type_specifier] = STATE(718), - [aux_sym__declaration_specifiers_repeat1] = STATE(570), - [aux_sym_sized_type_specifier_repeat1] = STATE(712), - [aux_sym_case_statement_repeat1] = STATE(49), - [sym_identifier] = ACTIONS(804), - [aux_sym_preproc_include_token1] = ACTIONS(650), - [aux_sym_preproc_def_token1] = ACTIONS(650), - [aux_sym_preproc_if_token1] = ACTIONS(650), - [aux_sym_preproc_ifdef_token1] = ACTIONS(650), - [aux_sym_preproc_ifdef_token2] = ACTIONS(650), - [sym_preproc_directive] = ACTIONS(650), + [52] = { + [sym_declaration] = STATE(61), + [sym_type_definition] = STATE(61), + [sym__declaration_specifiers] = STATE(872), + [sym_attribute_specifier] = STATE(561), + [sym_compound_statement] = STATE(61), + [sym_storage_class_specifier] = STATE(561), + [sym_type_qualifier] = STATE(561), + [sym__type_specifier] = STATE(709), + [sym_sized_type_specifier] = STATE(709), + [sym_enum_specifier] = STATE(709), + [sym_struct_specifier] = STATE(709), + [sym_union_specifier] = STATE(709), + [sym_labeled_statement] = STATE(61), + [sym_expression_statement] = STATE(61), + [sym_if_statement] = STATE(61), + [sym_switch_statement] = STATE(61), + [sym_while_statement] = STATE(61), + [sym_do_statement] = STATE(61), + [sym_for_statement] = STATE(61), + [sym_return_statement] = STATE(61), + [sym_break_statement] = STATE(61), + [sym_continue_statement] = STATE(61), + [sym_goto_statement] = STATE(61), + [sym__expression] = STATE(606), + [sym_comma_expression] = STATE(1218), + [sym_conditional_expression] = STATE(606), + [sym_assignment_expression] = STATE(606), + [sym_pointer_expression] = STATE(532), + [sym_unary_expression] = STATE(606), + [sym_binary_expression] = STATE(606), + [sym_update_expression] = STATE(606), + [sym_cast_expression] = STATE(606), + [sym_sizeof_expression] = STATE(606), + [sym_subscript_expression] = STATE(532), + [sym_call_expression] = STATE(532), + [sym_field_expression] = STATE(532), + [sym_compound_literal_expression] = STATE(606), + [sym_parenthesized_expression] = STATE(532), + [sym_char_literal] = STATE(606), + [sym_concatenated_string] = STATE(606), + [sym_string_literal] = STATE(379), + [sym_macro_type_specifier] = STATE(709), + [aux_sym__declaration_specifiers_repeat1] = STATE(561), + [aux_sym_sized_type_specifier_repeat1] = STATE(704), + [aux_sym_case_statement_repeat1] = STATE(61), + [ts_builtin_sym_end] = ACTIONS(761), + [sym_identifier] = ACTIONS(759), + [aux_sym_preproc_include_token1] = ACTIONS(646), + [aux_sym_preproc_def_token1] = ACTIONS(646), + [aux_sym_preproc_if_token1] = ACTIONS(646), + [aux_sym_preproc_ifdef_token1] = ACTIONS(646), + [aux_sym_preproc_ifdef_token2] = ACTIONS(646), + [sym_preproc_directive] = ACTIONS(646), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -12626,12 +12419,11 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(304), - [anon_sym_typedef] = ACTIONS(306), + [anon_sym_SEMI] = ACTIONS(27), + [anon_sym_typedef] = ACTIONS(29), [anon_sym_extern] = ACTIONS(37), [anon_sym___attribute__] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(310), - [anon_sym_RBRACE] = ACTIONS(853), + [anon_sym_LBRACE] = ACTIONS(35), [anon_sym_static] = ACTIONS(37), [anon_sym_auto] = ACTIONS(37), [anon_sym_register] = ACTIONS(37), @@ -12648,22 +12440,22 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(45), [anon_sym_struct] = ACTIONS(47), [anon_sym_union] = ACTIONS(49), - [anon_sym_if] = ACTIONS(316), - [anon_sym_else] = ACTIONS(650), - [anon_sym_switch] = ACTIONS(318), - [anon_sym_case] = ACTIONS(650), - [anon_sym_default] = ACTIONS(650), - [anon_sym_while] = ACTIONS(324), - [anon_sym_do] = ACTIONS(326), - [anon_sym_for] = ACTIONS(328), - [anon_sym_return] = ACTIONS(330), - [anon_sym_break] = ACTIONS(332), - [anon_sym_continue] = ACTIONS(334), - [anon_sym_goto] = ACTIONS(336), + [anon_sym_if] = ACTIONS(51), + [anon_sym_else] = ACTIONS(646), + [anon_sym_switch] = ACTIONS(53), + [anon_sym_case] = ACTIONS(646), + [anon_sym_default] = ACTIONS(646), + [anon_sym_while] = ACTIONS(59), + [anon_sym_do] = ACTIONS(61), + [anon_sym_for] = ACTIONS(63), + [anon_sym_return] = ACTIONS(65), + [anon_sym_break] = ACTIONS(67), + [anon_sym_continue] = ACTIONS(69), + [anon_sym_goto] = ACTIONS(71), [anon_sym_DASH_DASH] = ACTIONS(73), [anon_sym_PLUS_PLUS] = ACTIONS(73), [anon_sym_sizeof] = ACTIONS(75), - [sym_number_literal] = ACTIONS(338), + [sym_number_literal] = ACTIONS(77), [anon_sym_L_SQUOTE] = ACTIONS(79), [anon_sym_u_SQUOTE] = ACTIONS(79), [anon_sym_U_SQUOTE] = ACTIONS(79), @@ -12674,65 +12466,65 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_U_DQUOTE] = ACTIONS(81), [anon_sym_u8_DQUOTE] = ACTIONS(81), [anon_sym_DQUOTE] = ACTIONS(81), - [sym_true] = ACTIONS(340), - [sym_false] = ACTIONS(340), - [sym_null] = ACTIONS(340), + [sym_true] = ACTIONS(83), + [sym_false] = ACTIONS(83), + [sym_null] = ACTIONS(83), [sym_comment] = ACTIONS(3), }, - [55] = { - [sym_declaration] = STATE(50), - [sym_type_definition] = STATE(50), - [sym__declaration_specifiers] = STATE(867), - [sym_attribute_specifier] = STATE(570), - [sym_compound_statement] = STATE(50), - [sym_storage_class_specifier] = STATE(570), - [sym_type_qualifier] = STATE(570), - [sym__type_specifier] = STATE(718), - [sym_sized_type_specifier] = STATE(718), - [sym_enum_specifier] = STATE(718), - [sym_struct_specifier] = STATE(718), - [sym_union_specifier] = STATE(718), - [sym_labeled_statement] = STATE(50), - [sym_expression_statement] = STATE(50), - [sym_if_statement] = STATE(50), - [sym_switch_statement] = STATE(50), - [sym_while_statement] = STATE(50), - [sym_do_statement] = STATE(50), - [sym_for_statement] = STATE(50), - [sym_return_statement] = STATE(50), - [sym_break_statement] = STATE(50), - [sym_continue_statement] = STATE(50), - [sym_goto_statement] = STATE(50), - [sym__expression] = STATE(614), - [sym_comma_expression] = STATE(1210), - [sym_conditional_expression] = STATE(614), - [sym_assignment_expression] = STATE(614), - [sym_pointer_expression] = STATE(505), - [sym_unary_expression] = STATE(614), - [sym_binary_expression] = STATE(614), - [sym_update_expression] = STATE(614), - [sym_cast_expression] = STATE(614), - [sym_sizeof_expression] = STATE(614), - [sym_subscript_expression] = STATE(505), - [sym_call_expression] = STATE(505), - [sym_field_expression] = STATE(505), - [sym_compound_literal_expression] = STATE(614), - [sym_parenthesized_expression] = STATE(505), - [sym_char_literal] = STATE(614), - [sym_concatenated_string] = STATE(614), - [sym_string_literal] = STATE(376), - [sym_macro_type_specifier] = STATE(718), - [aux_sym__declaration_specifiers_repeat1] = STATE(570), - [aux_sym_sized_type_specifier_repeat1] = STATE(712), - [aux_sym_case_statement_repeat1] = STATE(50), - [ts_builtin_sym_end] = ACTIONS(851), - [sym_identifier] = ACTIONS(753), - [aux_sym_preproc_include_token1] = ACTIONS(652), - [aux_sym_preproc_def_token1] = ACTIONS(652), - [aux_sym_preproc_if_token1] = ACTIONS(652), - [aux_sym_preproc_ifdef_token1] = ACTIONS(652), - [aux_sym_preproc_ifdef_token2] = ACTIONS(652), - [sym_preproc_directive] = ACTIONS(652), + [53] = { + [sym_declaration] = STATE(49), + [sym_type_definition] = STATE(49), + [sym__declaration_specifiers] = STATE(860), + [sym_attribute_specifier] = STATE(561), + [sym_compound_statement] = STATE(49), + [sym_storage_class_specifier] = STATE(561), + [sym_type_qualifier] = STATE(561), + [sym__type_specifier] = STATE(709), + [sym_sized_type_specifier] = STATE(709), + [sym_enum_specifier] = STATE(709), + [sym_struct_specifier] = STATE(709), + [sym_union_specifier] = STATE(709), + [sym_labeled_statement] = STATE(49), + [sym_expression_statement] = STATE(49), + [sym_if_statement] = STATE(49), + [sym_switch_statement] = STATE(49), + [sym_while_statement] = STATE(49), + [sym_do_statement] = STATE(49), + [sym_for_statement] = STATE(49), + [sym_return_statement] = STATE(49), + [sym_break_statement] = STATE(49), + [sym_continue_statement] = STATE(49), + [sym_goto_statement] = STATE(49), + [sym__expression] = STATE(607), + [sym_comma_expression] = STATE(1092), + [sym_conditional_expression] = STATE(607), + [sym_assignment_expression] = STATE(607), + [sym_pointer_expression] = STATE(532), + [sym_unary_expression] = STATE(607), + [sym_binary_expression] = STATE(607), + [sym_update_expression] = STATE(607), + [sym_cast_expression] = STATE(607), + [sym_sizeof_expression] = STATE(607), + [sym_subscript_expression] = STATE(532), + [sym_call_expression] = STATE(532), + [sym_field_expression] = STATE(532), + [sym_compound_literal_expression] = STATE(607), + [sym_parenthesized_expression] = STATE(532), + [sym_char_literal] = STATE(607), + [sym_concatenated_string] = STATE(607), + [sym_string_literal] = STATE(379), + [sym_macro_type_specifier] = STATE(709), + [aux_sym__declaration_specifiers_repeat1] = STATE(561), + [aux_sym_sized_type_specifier_repeat1] = STATE(704), + [aux_sym_case_statement_repeat1] = STATE(49), + [sym_identifier] = ACTIONS(755), + [aux_sym_preproc_include_token1] = ACTIONS(747), + [aux_sym_preproc_def_token1] = ACTIONS(747), + [aux_sym_preproc_if_token1] = ACTIONS(747), + [aux_sym_preproc_if_token2] = ACTIONS(747), + [aux_sym_preproc_ifdef_token1] = ACTIONS(747), + [aux_sym_preproc_ifdef_token2] = ACTIONS(747), + [sym_preproc_directive] = ACTIONS(747), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -12740,11 +12532,11 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(27), - [anon_sym_typedef] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(364), + [anon_sym_typedef] = ACTIONS(366), [anon_sym_extern] = ACTIONS(37), [anon_sym___attribute__] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(35), + [anon_sym_LBRACE] = ACTIONS(370), [anon_sym_static] = ACTIONS(37), [anon_sym_auto] = ACTIONS(37), [anon_sym_register] = ACTIONS(37), @@ -12761,22 +12553,22 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(45), [anon_sym_struct] = ACTIONS(47), [anon_sym_union] = ACTIONS(49), - [anon_sym_if] = ACTIONS(51), - [anon_sym_else] = ACTIONS(652), - [anon_sym_switch] = ACTIONS(53), - [anon_sym_case] = ACTIONS(652), - [anon_sym_default] = ACTIONS(652), - [anon_sym_while] = ACTIONS(59), - [anon_sym_do] = ACTIONS(61), - [anon_sym_for] = ACTIONS(63), - [anon_sym_return] = ACTIONS(65), - [anon_sym_break] = ACTIONS(67), - [anon_sym_continue] = ACTIONS(69), - [anon_sym_goto] = ACTIONS(71), + [anon_sym_if] = ACTIONS(374), + [anon_sym_else] = ACTIONS(747), + [anon_sym_switch] = ACTIONS(376), + [anon_sym_case] = ACTIONS(747), + [anon_sym_default] = ACTIONS(747), + [anon_sym_while] = ACTIONS(382), + [anon_sym_do] = ACTIONS(384), + [anon_sym_for] = ACTIONS(386), + [anon_sym_return] = ACTIONS(388), + [anon_sym_break] = ACTIONS(390), + [anon_sym_continue] = ACTIONS(392), + [anon_sym_goto] = ACTIONS(394), [anon_sym_DASH_DASH] = ACTIONS(73), [anon_sym_PLUS_PLUS] = ACTIONS(73), [anon_sym_sizeof] = ACTIONS(75), - [sym_number_literal] = ACTIONS(77), + [sym_number_literal] = ACTIONS(396), [anon_sym_L_SQUOTE] = ACTIONS(79), [anon_sym_u_SQUOTE] = ACTIONS(79), [anon_sym_U_SQUOTE] = ACTIONS(79), @@ -12787,65 +12579,65 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_U_DQUOTE] = ACTIONS(81), [anon_sym_u8_DQUOTE] = ACTIONS(81), [anon_sym_DQUOTE] = ACTIONS(81), - [sym_true] = ACTIONS(83), - [sym_false] = ACTIONS(83), - [sym_null] = ACTIONS(83), + [sym_true] = ACTIONS(398), + [sym_false] = ACTIONS(398), + [sym_null] = ACTIONS(398), [sym_comment] = ACTIONS(3), }, - [56] = { - [sym_declaration] = STATE(52), - [sym_type_definition] = STATE(52), - [sym__declaration_specifiers] = STATE(867), - [sym_attribute_specifier] = STATE(570), - [sym_compound_statement] = STATE(52), - [sym_storage_class_specifier] = STATE(570), - [sym_type_qualifier] = STATE(570), - [sym__type_specifier] = STATE(718), - [sym_sized_type_specifier] = STATE(718), - [sym_enum_specifier] = STATE(718), - [sym_struct_specifier] = STATE(718), - [sym_union_specifier] = STATE(718), - [sym_labeled_statement] = STATE(52), - [sym_expression_statement] = STATE(52), - [sym_if_statement] = STATE(52), - [sym_switch_statement] = STATE(52), - [sym_while_statement] = STATE(52), - [sym_do_statement] = STATE(52), - [sym_for_statement] = STATE(52), - [sym_return_statement] = STATE(52), - [sym_break_statement] = STATE(52), - [sym_continue_statement] = STATE(52), - [sym_goto_statement] = STATE(52), - [sym__expression] = STATE(614), - [sym_comma_expression] = STATE(1210), - [sym_conditional_expression] = STATE(614), - [sym_assignment_expression] = STATE(614), - [sym_pointer_expression] = STATE(505), - [sym_unary_expression] = STATE(614), - [sym_binary_expression] = STATE(614), - [sym_update_expression] = STATE(614), - [sym_cast_expression] = STATE(614), - [sym_sizeof_expression] = STATE(614), - [sym_subscript_expression] = STATE(505), - [sym_call_expression] = STATE(505), - [sym_field_expression] = STATE(505), - [sym_compound_literal_expression] = STATE(614), - [sym_parenthesized_expression] = STATE(505), - [sym_char_literal] = STATE(614), - [sym_concatenated_string] = STATE(614), - [sym_string_literal] = STATE(376), - [sym_macro_type_specifier] = STATE(718), - [aux_sym__declaration_specifiers_repeat1] = STATE(570), - [aux_sym_sized_type_specifier_repeat1] = STATE(712), - [aux_sym_case_statement_repeat1] = STATE(52), - [ts_builtin_sym_end] = ACTIONS(853), - [sym_identifier] = ACTIONS(753), - [aux_sym_preproc_include_token1] = ACTIONS(650), - [aux_sym_preproc_def_token1] = ACTIONS(650), - [aux_sym_preproc_if_token1] = ACTIONS(650), - [aux_sym_preproc_ifdef_token1] = ACTIONS(650), - [aux_sym_preproc_ifdef_token2] = ACTIONS(650), - [sym_preproc_directive] = ACTIONS(650), + [54] = { + [sym_declaration] = STATE(51), + [sym_type_definition] = STATE(51), + [sym__declaration_specifiers] = STATE(872), + [sym_attribute_specifier] = STATE(561), + [sym_compound_statement] = STATE(51), + [sym_storage_class_specifier] = STATE(561), + [sym_type_qualifier] = STATE(561), + [sym__type_specifier] = STATE(709), + [sym_sized_type_specifier] = STATE(709), + [sym_enum_specifier] = STATE(709), + [sym_struct_specifier] = STATE(709), + [sym_union_specifier] = STATE(709), + [sym_labeled_statement] = STATE(51), + [sym_expression_statement] = STATE(51), + [sym_if_statement] = STATE(51), + [sym_switch_statement] = STATE(51), + [sym_while_statement] = STATE(51), + [sym_do_statement] = STATE(51), + [sym_for_statement] = STATE(51), + [sym_return_statement] = STATE(51), + [sym_break_statement] = STATE(51), + [sym_continue_statement] = STATE(51), + [sym_goto_statement] = STATE(51), + [sym__expression] = STATE(606), + [sym_comma_expression] = STATE(1218), + [sym_conditional_expression] = STATE(606), + [sym_assignment_expression] = STATE(606), + [sym_pointer_expression] = STATE(532), + [sym_unary_expression] = STATE(606), + [sym_binary_expression] = STATE(606), + [sym_update_expression] = STATE(606), + [sym_cast_expression] = STATE(606), + [sym_sizeof_expression] = STATE(606), + [sym_subscript_expression] = STATE(532), + [sym_call_expression] = STATE(532), + [sym_field_expression] = STATE(532), + [sym_compound_literal_expression] = STATE(606), + [sym_parenthesized_expression] = STATE(532), + [sym_char_literal] = STATE(606), + [sym_concatenated_string] = STATE(606), + [sym_string_literal] = STATE(379), + [sym_macro_type_specifier] = STATE(709), + [aux_sym__declaration_specifiers_repeat1] = STATE(561), + [aux_sym_sized_type_specifier_repeat1] = STATE(704), + [aux_sym_case_statement_repeat1] = STATE(51), + [ts_builtin_sym_end] = ACTIONS(763), + [sym_identifier] = ACTIONS(759), + [aux_sym_preproc_include_token1] = ACTIONS(749), + [aux_sym_preproc_def_token1] = ACTIONS(749), + [aux_sym_preproc_if_token1] = ACTIONS(749), + [aux_sym_preproc_ifdef_token1] = ACTIONS(749), + [aux_sym_preproc_ifdef_token2] = ACTIONS(749), + [sym_preproc_directive] = ACTIONS(749), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -12875,10 +12667,10 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(47), [anon_sym_union] = ACTIONS(49), [anon_sym_if] = ACTIONS(51), - [anon_sym_else] = ACTIONS(650), + [anon_sym_else] = ACTIONS(749), [anon_sym_switch] = ACTIONS(53), - [anon_sym_case] = ACTIONS(650), - [anon_sym_default] = ACTIONS(650), + [anon_sym_case] = ACTIONS(749), + [anon_sym_default] = ACTIONS(749), [anon_sym_while] = ACTIONS(59), [anon_sym_do] = ACTIONS(61), [anon_sym_for] = ACTIONS(63), @@ -12905,60 +12697,173 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(83), [sym_comment] = ACTIONS(3), }, - [57] = { - [sym_declaration] = STATE(58), - [sym_type_definition] = STATE(58), - [sym__declaration_specifiers] = STATE(873), - [sym_attribute_specifier] = STATE(570), - [sym_compound_statement] = STATE(58), - [sym_storage_class_specifier] = STATE(570), - [sym_type_qualifier] = STATE(570), - [sym__type_specifier] = STATE(718), - [sym_sized_type_specifier] = STATE(718), - [sym_enum_specifier] = STATE(718), - [sym_struct_specifier] = STATE(718), - [sym_union_specifier] = STATE(718), - [sym_labeled_statement] = STATE(58), - [sym_expression_statement] = STATE(58), - [sym_if_statement] = STATE(58), - [sym_switch_statement] = STATE(58), - [sym_while_statement] = STATE(58), - [sym_do_statement] = STATE(58), - [sym_for_statement] = STATE(58), - [sym_return_statement] = STATE(58), - [sym_break_statement] = STATE(58), - [sym_continue_statement] = STATE(58), - [sym_goto_statement] = STATE(58), - [sym__expression] = STATE(596), - [sym_comma_expression] = STATE(1096), - [sym_conditional_expression] = STATE(596), - [sym_assignment_expression] = STATE(596), - [sym_pointer_expression] = STATE(505), - [sym_unary_expression] = STATE(596), - [sym_binary_expression] = STATE(596), - [sym_update_expression] = STATE(596), - [sym_cast_expression] = STATE(596), - [sym_sizeof_expression] = STATE(596), - [sym_subscript_expression] = STATE(505), - [sym_call_expression] = STATE(505), - [sym_field_expression] = STATE(505), - [sym_compound_literal_expression] = STATE(596), - [sym_parenthesized_expression] = STATE(505), - [sym_char_literal] = STATE(596), - [sym_concatenated_string] = STATE(596), - [sym_string_literal] = STATE(376), - [sym_macro_type_specifier] = STATE(718), - [aux_sym__declaration_specifiers_repeat1] = STATE(570), - [aux_sym_sized_type_specifier_repeat1] = STATE(712), - [aux_sym_case_statement_repeat1] = STATE(58), - [sym_identifier] = ACTIONS(855), - [aux_sym_preproc_include_token1] = ACTIONS(646), - [aux_sym_preproc_def_token1] = ACTIONS(646), - [aux_sym_preproc_if_token1] = ACTIONS(646), - [aux_sym_preproc_if_token2] = ACTIONS(646), - [aux_sym_preproc_ifdef_token1] = ACTIONS(646), - [aux_sym_preproc_ifdef_token2] = ACTIONS(646), - [sym_preproc_directive] = ACTIONS(646), + [55] = { + [sym_declaration] = STATE(55), + [sym_type_definition] = STATE(55), + [sym__declaration_specifiers] = STATE(860), + [sym_attribute_specifier] = STATE(561), + [sym_compound_statement] = STATE(55), + [sym_storage_class_specifier] = STATE(561), + [sym_type_qualifier] = STATE(561), + [sym__type_specifier] = STATE(709), + [sym_sized_type_specifier] = STATE(709), + [sym_enum_specifier] = STATE(709), + [sym_struct_specifier] = STATE(709), + [sym_union_specifier] = STATE(709), + [sym_labeled_statement] = STATE(55), + [sym_expression_statement] = STATE(55), + [sym_if_statement] = STATE(55), + [sym_switch_statement] = STATE(55), + [sym_while_statement] = STATE(55), + [sym_do_statement] = STATE(55), + [sym_for_statement] = STATE(55), + [sym_return_statement] = STATE(55), + [sym_break_statement] = STATE(55), + [sym_continue_statement] = STATE(55), + [sym_goto_statement] = STATE(55), + [sym__expression] = STATE(607), + [sym_comma_expression] = STATE(1092), + [sym_conditional_expression] = STATE(607), + [sym_assignment_expression] = STATE(607), + [sym_pointer_expression] = STATE(532), + [sym_unary_expression] = STATE(607), + [sym_binary_expression] = STATE(607), + [sym_update_expression] = STATE(607), + [sym_cast_expression] = STATE(607), + [sym_sizeof_expression] = STATE(607), + [sym_subscript_expression] = STATE(532), + [sym_call_expression] = STATE(532), + [sym_field_expression] = STATE(532), + [sym_compound_literal_expression] = STATE(607), + [sym_parenthesized_expression] = STATE(532), + [sym_char_literal] = STATE(607), + [sym_concatenated_string] = STATE(607), + [sym_string_literal] = STATE(379), + [sym_macro_type_specifier] = STATE(709), + [aux_sym__declaration_specifiers_repeat1] = STATE(561), + [aux_sym_sized_type_specifier_repeat1] = STATE(704), + [aux_sym_case_statement_repeat1] = STATE(55), + [sym_identifier] = ACTIONS(765), + [aux_sym_preproc_include_token1] = ACTIONS(655), + [aux_sym_preproc_def_token1] = ACTIONS(655), + [aux_sym_preproc_if_token1] = ACTIONS(655), + [aux_sym_preproc_if_token2] = ACTIONS(655), + [aux_sym_preproc_ifdef_token1] = ACTIONS(655), + [aux_sym_preproc_ifdef_token2] = ACTIONS(655), + [sym_preproc_directive] = ACTIONS(655), + [anon_sym_LPAREN2] = ACTIONS(657), + [anon_sym_BANG] = ACTIONS(660), + [anon_sym_TILDE] = ACTIONS(660), + [anon_sym_DASH] = ACTIONS(663), + [anon_sym_PLUS] = ACTIONS(663), + [anon_sym_STAR] = ACTIONS(666), + [anon_sym_AMP] = ACTIONS(666), + [anon_sym_SEMI] = ACTIONS(768), + [anon_sym_typedef] = ACTIONS(771), + [anon_sym_extern] = ACTIONS(675), + [anon_sym___attribute__] = ACTIONS(678), + [anon_sym_LBRACE] = ACTIONS(774), + [anon_sym_static] = ACTIONS(675), + [anon_sym_auto] = ACTIONS(675), + [anon_sym_register] = ACTIONS(675), + [anon_sym_inline] = ACTIONS(675), + [anon_sym_const] = ACTIONS(684), + [anon_sym_volatile] = ACTIONS(684), + [anon_sym_restrict] = ACTIONS(684), + [anon_sym__Atomic] = ACTIONS(684), + [anon_sym_signed] = ACTIONS(687), + [anon_sym_unsigned] = ACTIONS(687), + [anon_sym_long] = ACTIONS(687), + [anon_sym_short] = ACTIONS(687), + [sym_primitive_type] = ACTIONS(690), + [anon_sym_enum] = ACTIONS(693), + [anon_sym_struct] = ACTIONS(696), + [anon_sym_union] = ACTIONS(699), + [anon_sym_if] = ACTIONS(777), + [anon_sym_else] = ACTIONS(655), + [anon_sym_switch] = ACTIONS(780), + [anon_sym_case] = ACTIONS(655), + [anon_sym_default] = ACTIONS(655), + [anon_sym_while] = ACTIONS(783), + [anon_sym_do] = ACTIONS(786), + [anon_sym_for] = ACTIONS(789), + [anon_sym_return] = ACTIONS(792), + [anon_sym_break] = ACTIONS(795), + [anon_sym_continue] = ACTIONS(798), + [anon_sym_goto] = ACTIONS(801), + [anon_sym_DASH_DASH] = ACTIONS(729), + [anon_sym_PLUS_PLUS] = ACTIONS(729), + [anon_sym_sizeof] = ACTIONS(732), + [sym_number_literal] = ACTIONS(804), + [anon_sym_L_SQUOTE] = ACTIONS(738), + [anon_sym_u_SQUOTE] = ACTIONS(738), + [anon_sym_U_SQUOTE] = ACTIONS(738), + [anon_sym_u8_SQUOTE] = ACTIONS(738), + [anon_sym_SQUOTE] = ACTIONS(738), + [anon_sym_L_DQUOTE] = ACTIONS(741), + [anon_sym_u_DQUOTE] = ACTIONS(741), + [anon_sym_U_DQUOTE] = ACTIONS(741), + [anon_sym_u8_DQUOTE] = ACTIONS(741), + [anon_sym_DQUOTE] = ACTIONS(741), + [sym_true] = ACTIONS(807), + [sym_false] = ACTIONS(807), + [sym_null] = ACTIONS(807), + [sym_comment] = ACTIONS(3), + }, + [56] = { + [sym_declaration] = STATE(55), + [sym_type_definition] = STATE(55), + [sym__declaration_specifiers] = STATE(860), + [sym_attribute_specifier] = STATE(561), + [sym_compound_statement] = STATE(55), + [sym_storage_class_specifier] = STATE(561), + [sym_type_qualifier] = STATE(561), + [sym__type_specifier] = STATE(709), + [sym_sized_type_specifier] = STATE(709), + [sym_enum_specifier] = STATE(709), + [sym_struct_specifier] = STATE(709), + [sym_union_specifier] = STATE(709), + [sym_labeled_statement] = STATE(55), + [sym_expression_statement] = STATE(55), + [sym_if_statement] = STATE(55), + [sym_switch_statement] = STATE(55), + [sym_while_statement] = STATE(55), + [sym_do_statement] = STATE(55), + [sym_for_statement] = STATE(55), + [sym_return_statement] = STATE(55), + [sym_break_statement] = STATE(55), + [sym_continue_statement] = STATE(55), + [sym_goto_statement] = STATE(55), + [sym__expression] = STATE(607), + [sym_comma_expression] = STATE(1092), + [sym_conditional_expression] = STATE(607), + [sym_assignment_expression] = STATE(607), + [sym_pointer_expression] = STATE(532), + [sym_unary_expression] = STATE(607), + [sym_binary_expression] = STATE(607), + [sym_update_expression] = STATE(607), + [sym_cast_expression] = STATE(607), + [sym_sizeof_expression] = STATE(607), + [sym_subscript_expression] = STATE(532), + [sym_call_expression] = STATE(532), + [sym_field_expression] = STATE(532), + [sym_compound_literal_expression] = STATE(607), + [sym_parenthesized_expression] = STATE(532), + [sym_char_literal] = STATE(607), + [sym_concatenated_string] = STATE(607), + [sym_string_literal] = STATE(379), + [sym_macro_type_specifier] = STATE(709), + [aux_sym__declaration_specifiers_repeat1] = STATE(561), + [aux_sym_sized_type_specifier_repeat1] = STATE(704), + [aux_sym_case_statement_repeat1] = STATE(55), + [sym_identifier] = ACTIONS(755), + [aux_sym_preproc_include_token1] = ACTIONS(650), + [aux_sym_preproc_def_token1] = ACTIONS(650), + [aux_sym_preproc_if_token1] = ACTIONS(650), + [aux_sym_preproc_if_token2] = ACTIONS(650), + [aux_sym_preproc_ifdef_token1] = ACTIONS(650), + [aux_sym_preproc_ifdef_token2] = ACTIONS(650), + [sym_preproc_directive] = ACTIONS(650), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -12966,11 +12871,11 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(444), - [anon_sym_typedef] = ACTIONS(446), + [anon_sym_SEMI] = ACTIONS(364), + [anon_sym_typedef] = ACTIONS(366), [anon_sym_extern] = ACTIONS(37), [anon_sym___attribute__] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(450), + [anon_sym_LBRACE] = ACTIONS(370), [anon_sym_static] = ACTIONS(37), [anon_sym_auto] = ACTIONS(37), [anon_sym_register] = ACTIONS(37), @@ -12987,22 +12892,22 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(45), [anon_sym_struct] = ACTIONS(47), [anon_sym_union] = ACTIONS(49), - [anon_sym_if] = ACTIONS(454), - [anon_sym_else] = ACTIONS(646), - [anon_sym_switch] = ACTIONS(456), - [anon_sym_case] = ACTIONS(646), - [anon_sym_default] = ACTIONS(646), - [anon_sym_while] = ACTIONS(462), - [anon_sym_do] = ACTIONS(464), - [anon_sym_for] = ACTIONS(466), - [anon_sym_return] = ACTIONS(468), - [anon_sym_break] = ACTIONS(470), - [anon_sym_continue] = ACTIONS(472), - [anon_sym_goto] = ACTIONS(474), + [anon_sym_if] = ACTIONS(374), + [anon_sym_else] = ACTIONS(650), + [anon_sym_switch] = ACTIONS(376), + [anon_sym_case] = ACTIONS(650), + [anon_sym_default] = ACTIONS(650), + [anon_sym_while] = ACTIONS(382), + [anon_sym_do] = ACTIONS(384), + [anon_sym_for] = ACTIONS(386), + [anon_sym_return] = ACTIONS(388), + [anon_sym_break] = ACTIONS(390), + [anon_sym_continue] = ACTIONS(392), + [anon_sym_goto] = ACTIONS(394), [anon_sym_DASH_DASH] = ACTIONS(73), [anon_sym_PLUS_PLUS] = ACTIONS(73), [anon_sym_sizeof] = ACTIONS(75), - [sym_number_literal] = ACTIONS(476), + [sym_number_literal] = ACTIONS(396), [anon_sym_L_SQUOTE] = ACTIONS(79), [anon_sym_u_SQUOTE] = ACTIONS(79), [anon_sym_U_SQUOTE] = ACTIONS(79), @@ -13013,24 +12918,24 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_U_DQUOTE] = ACTIONS(81), [anon_sym_u8_DQUOTE] = ACTIONS(81), [anon_sym_DQUOTE] = ACTIONS(81), - [sym_true] = ACTIONS(478), - [sym_false] = ACTIONS(478), - [sym_null] = ACTIONS(478), + [sym_true] = ACTIONS(398), + [sym_false] = ACTIONS(398), + [sym_null] = ACTIONS(398), [sym_comment] = ACTIONS(3), }, - [58] = { + [57] = { [sym_declaration] = STATE(59), [sym_type_definition] = STATE(59), - [sym__declaration_specifiers] = STATE(873), - [sym_attribute_specifier] = STATE(570), + [sym__declaration_specifiers] = STATE(877), + [sym_attribute_specifier] = STATE(561), [sym_compound_statement] = STATE(59), - [sym_storage_class_specifier] = STATE(570), - [sym_type_qualifier] = STATE(570), - [sym__type_specifier] = STATE(718), - [sym_sized_type_specifier] = STATE(718), - [sym_enum_specifier] = STATE(718), - [sym_struct_specifier] = STATE(718), - [sym_union_specifier] = STATE(718), + [sym_storage_class_specifier] = STATE(561), + [sym_type_qualifier] = STATE(561), + [sym__type_specifier] = STATE(709), + [sym_sized_type_specifier] = STATE(709), + [sym_enum_specifier] = STATE(709), + [sym_struct_specifier] = STATE(709), + [sym_union_specifier] = STATE(709), [sym_labeled_statement] = STATE(59), [sym_expression_statement] = STATE(59), [sym_if_statement] = STATE(59), @@ -13042,36 +12947,35 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(59), [sym_continue_statement] = STATE(59), [sym_goto_statement] = STATE(59), - [sym__expression] = STATE(596), - [sym_comma_expression] = STATE(1096), - [sym_conditional_expression] = STATE(596), - [sym_assignment_expression] = STATE(596), - [sym_pointer_expression] = STATE(505), - [sym_unary_expression] = STATE(596), - [sym_binary_expression] = STATE(596), - [sym_update_expression] = STATE(596), - [sym_cast_expression] = STATE(596), - [sym_sizeof_expression] = STATE(596), - [sym_subscript_expression] = STATE(505), - [sym_call_expression] = STATE(505), - [sym_field_expression] = STATE(505), - [sym_compound_literal_expression] = STATE(596), - [sym_parenthesized_expression] = STATE(505), - [sym_char_literal] = STATE(596), - [sym_concatenated_string] = STATE(596), - [sym_string_literal] = STATE(376), - [sym_macro_type_specifier] = STATE(718), - [aux_sym__declaration_specifiers_repeat1] = STATE(570), - [aux_sym_sized_type_specifier_repeat1] = STATE(712), + [sym__expression] = STATE(568), + [sym_comma_expression] = STATE(1210), + [sym_conditional_expression] = STATE(568), + [sym_assignment_expression] = STATE(568), + [sym_pointer_expression] = STATE(532), + [sym_unary_expression] = STATE(568), + [sym_binary_expression] = STATE(568), + [sym_update_expression] = STATE(568), + [sym_cast_expression] = STATE(568), + [sym_sizeof_expression] = STATE(568), + [sym_subscript_expression] = STATE(532), + [sym_call_expression] = STATE(532), + [sym_field_expression] = STATE(532), + [sym_compound_literal_expression] = STATE(568), + [sym_parenthesized_expression] = STATE(532), + [sym_char_literal] = STATE(568), + [sym_concatenated_string] = STATE(568), + [sym_string_literal] = STATE(379), + [sym_macro_type_specifier] = STATE(709), + [aux_sym__declaration_specifiers_repeat1] = STATE(561), + [aux_sym_sized_type_specifier_repeat1] = STATE(704), [aux_sym_case_statement_repeat1] = STATE(59), - [sym_identifier] = ACTIONS(855), - [aux_sym_preproc_include_token1] = ACTIONS(650), - [aux_sym_preproc_def_token1] = ACTIONS(650), - [aux_sym_preproc_if_token1] = ACTIONS(650), - [aux_sym_preproc_if_token2] = ACTIONS(650), - [aux_sym_preproc_ifdef_token1] = ACTIONS(650), - [aux_sym_preproc_ifdef_token2] = ACTIONS(650), - [sym_preproc_directive] = ACTIONS(650), + [sym_identifier] = ACTIONS(751), + [aux_sym_preproc_include_token1] = ACTIONS(749), + [aux_sym_preproc_def_token1] = ACTIONS(749), + [aux_sym_preproc_if_token1] = ACTIONS(749), + [aux_sym_preproc_ifdef_token1] = ACTIONS(749), + [aux_sym_preproc_ifdef_token2] = ACTIONS(749), + [sym_preproc_directive] = ACTIONS(749), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -13079,11 +12983,12 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(444), - [anon_sym_typedef] = ACTIONS(446), + [anon_sym_SEMI] = ACTIONS(304), + [anon_sym_typedef] = ACTIONS(306), [anon_sym_extern] = ACTIONS(37), [anon_sym___attribute__] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(450), + [anon_sym_LBRACE] = ACTIONS(310), + [anon_sym_RBRACE] = ACTIONS(763), [anon_sym_static] = ACTIONS(37), [anon_sym_auto] = ACTIONS(37), [anon_sym_register] = ACTIONS(37), @@ -13100,22 +13005,22 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(45), [anon_sym_struct] = ACTIONS(47), [anon_sym_union] = ACTIONS(49), - [anon_sym_if] = ACTIONS(454), - [anon_sym_else] = ACTIONS(650), - [anon_sym_switch] = ACTIONS(456), - [anon_sym_case] = ACTIONS(650), - [anon_sym_default] = ACTIONS(650), - [anon_sym_while] = ACTIONS(462), - [anon_sym_do] = ACTIONS(464), - [anon_sym_for] = ACTIONS(466), - [anon_sym_return] = ACTIONS(468), - [anon_sym_break] = ACTIONS(470), - [anon_sym_continue] = ACTIONS(472), - [anon_sym_goto] = ACTIONS(474), + [anon_sym_if] = ACTIONS(316), + [anon_sym_else] = ACTIONS(749), + [anon_sym_switch] = ACTIONS(318), + [anon_sym_case] = ACTIONS(749), + [anon_sym_default] = ACTIONS(749), + [anon_sym_while] = ACTIONS(324), + [anon_sym_do] = ACTIONS(326), + [anon_sym_for] = ACTIONS(328), + [anon_sym_return] = ACTIONS(330), + [anon_sym_break] = ACTIONS(332), + [anon_sym_continue] = ACTIONS(334), + [anon_sym_goto] = ACTIONS(336), [anon_sym_DASH_DASH] = ACTIONS(73), [anon_sym_PLUS_PLUS] = ACTIONS(73), [anon_sym_sizeof] = ACTIONS(75), - [sym_number_literal] = ACTIONS(476), + [sym_number_literal] = ACTIONS(338), [anon_sym_L_SQUOTE] = ACTIONS(79), [anon_sym_u_SQUOTE] = ACTIONS(79), [anon_sym_U_SQUOTE] = ACTIONS(79), @@ -13126,178 +13031,64 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_U_DQUOTE] = ACTIONS(81), [anon_sym_u8_DQUOTE] = ACTIONS(81), [anon_sym_DQUOTE] = ACTIONS(81), - [sym_true] = ACTIONS(478), - [sym_false] = ACTIONS(478), - [sym_null] = ACTIONS(478), - [sym_comment] = ACTIONS(3), - }, - [59] = { - [sym_declaration] = STATE(59), - [sym_type_definition] = STATE(59), - [sym__declaration_specifiers] = STATE(873), - [sym_attribute_specifier] = STATE(570), - [sym_compound_statement] = STATE(59), - [sym_storage_class_specifier] = STATE(570), - [sym_type_qualifier] = STATE(570), - [sym__type_specifier] = STATE(718), - [sym_sized_type_specifier] = STATE(718), - [sym_enum_specifier] = STATE(718), - [sym_struct_specifier] = STATE(718), - [sym_union_specifier] = STATE(718), - [sym_labeled_statement] = STATE(59), - [sym_expression_statement] = STATE(59), - [sym_if_statement] = STATE(59), - [sym_switch_statement] = STATE(59), - [sym_while_statement] = STATE(59), - [sym_do_statement] = STATE(59), - [sym_for_statement] = STATE(59), - [sym_return_statement] = STATE(59), - [sym_break_statement] = STATE(59), - [sym_continue_statement] = STATE(59), - [sym_goto_statement] = STATE(59), - [sym__expression] = STATE(596), - [sym_comma_expression] = STATE(1096), - [sym_conditional_expression] = STATE(596), - [sym_assignment_expression] = STATE(596), - [sym_pointer_expression] = STATE(505), - [sym_unary_expression] = STATE(596), - [sym_binary_expression] = STATE(596), - [sym_update_expression] = STATE(596), - [sym_cast_expression] = STATE(596), - [sym_sizeof_expression] = STATE(596), - [sym_subscript_expression] = STATE(505), - [sym_call_expression] = STATE(505), - [sym_field_expression] = STATE(505), - [sym_compound_literal_expression] = STATE(596), - [sym_parenthesized_expression] = STATE(505), - [sym_char_literal] = STATE(596), - [sym_concatenated_string] = STATE(596), - [sym_string_literal] = STATE(376), - [sym_macro_type_specifier] = STATE(718), - [aux_sym__declaration_specifiers_repeat1] = STATE(570), - [aux_sym_sized_type_specifier_repeat1] = STATE(712), - [aux_sym_case_statement_repeat1] = STATE(59), - [sym_identifier] = ACTIONS(857), - [aux_sym_preproc_include_token1] = ACTIONS(659), - [aux_sym_preproc_def_token1] = ACTIONS(659), - [aux_sym_preproc_if_token1] = ACTIONS(659), - [aux_sym_preproc_if_token2] = ACTIONS(659), - [aux_sym_preproc_ifdef_token1] = ACTIONS(659), - [aux_sym_preproc_ifdef_token2] = ACTIONS(659), - [sym_preproc_directive] = ACTIONS(659), - [anon_sym_LPAREN2] = ACTIONS(661), - [anon_sym_BANG] = ACTIONS(664), - [anon_sym_TILDE] = ACTIONS(664), - [anon_sym_DASH] = ACTIONS(667), - [anon_sym_PLUS] = ACTIONS(667), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_AMP] = ACTIONS(670), - [anon_sym_SEMI] = ACTIONS(860), - [anon_sym_typedef] = ACTIONS(863), - [anon_sym_extern] = ACTIONS(679), - [anon_sym___attribute__] = ACTIONS(682), - [anon_sym_LBRACE] = ACTIONS(866), - [anon_sym_static] = ACTIONS(679), - [anon_sym_auto] = ACTIONS(679), - [anon_sym_register] = ACTIONS(679), - [anon_sym_inline] = ACTIONS(679), - [anon_sym_const] = ACTIONS(688), - [anon_sym_volatile] = ACTIONS(688), - [anon_sym_restrict] = ACTIONS(688), - [anon_sym__Atomic] = ACTIONS(688), - [anon_sym_signed] = ACTIONS(691), - [anon_sym_unsigned] = ACTIONS(691), - [anon_sym_long] = ACTIONS(691), - [anon_sym_short] = ACTIONS(691), - [sym_primitive_type] = ACTIONS(694), - [anon_sym_enum] = ACTIONS(697), - [anon_sym_struct] = ACTIONS(700), - [anon_sym_union] = ACTIONS(703), - [anon_sym_if] = ACTIONS(869), - [anon_sym_else] = ACTIONS(659), - [anon_sym_switch] = ACTIONS(872), - [anon_sym_case] = ACTIONS(659), - [anon_sym_default] = ACTIONS(659), - [anon_sym_while] = ACTIONS(875), - [anon_sym_do] = ACTIONS(878), - [anon_sym_for] = ACTIONS(881), - [anon_sym_return] = ACTIONS(884), - [anon_sym_break] = ACTIONS(887), - [anon_sym_continue] = ACTIONS(890), - [anon_sym_goto] = ACTIONS(893), - [anon_sym_DASH_DASH] = ACTIONS(733), - [anon_sym_PLUS_PLUS] = ACTIONS(733), - [anon_sym_sizeof] = ACTIONS(736), - [sym_number_literal] = ACTIONS(896), - [anon_sym_L_SQUOTE] = ACTIONS(742), - [anon_sym_u_SQUOTE] = ACTIONS(742), - [anon_sym_U_SQUOTE] = ACTIONS(742), - [anon_sym_u8_SQUOTE] = ACTIONS(742), - [anon_sym_SQUOTE] = ACTIONS(742), - [anon_sym_L_DQUOTE] = ACTIONS(745), - [anon_sym_u_DQUOTE] = ACTIONS(745), - [anon_sym_U_DQUOTE] = ACTIONS(745), - [anon_sym_u8_DQUOTE] = ACTIONS(745), - [anon_sym_DQUOTE] = ACTIONS(745), - [sym_true] = ACTIONS(899), - [sym_false] = ACTIONS(899), - [sym_null] = ACTIONS(899), + [sym_true] = ACTIONS(340), + [sym_false] = ACTIONS(340), + [sym_null] = ACTIONS(340), [sym_comment] = ACTIONS(3), }, - [60] = { - [sym_declaration] = STATE(62), - [sym_type_definition] = STATE(62), - [sym__declaration_specifiers] = STATE(873), - [sym_attribute_specifier] = STATE(570), - [sym_compound_statement] = STATE(62), - [sym_storage_class_specifier] = STATE(570), - [sym_type_qualifier] = STATE(570), - [sym__type_specifier] = STATE(718), - [sym_sized_type_specifier] = STATE(718), - [sym_enum_specifier] = STATE(718), - [sym_struct_specifier] = STATE(718), - [sym_union_specifier] = STATE(718), - [sym_labeled_statement] = STATE(62), - [sym_expression_statement] = STATE(62), - [sym_if_statement] = STATE(62), - [sym_switch_statement] = STATE(62), - [sym_while_statement] = STATE(62), - [sym_do_statement] = STATE(62), - [sym_for_statement] = STATE(62), - [sym_return_statement] = STATE(62), - [sym_break_statement] = STATE(62), - [sym_continue_statement] = STATE(62), - [sym_goto_statement] = STATE(62), - [sym__expression] = STATE(596), - [sym_comma_expression] = STATE(1096), - [sym_conditional_expression] = STATE(596), - [sym_assignment_expression] = STATE(596), - [sym_pointer_expression] = STATE(505), - [sym_unary_expression] = STATE(596), - [sym_binary_expression] = STATE(596), - [sym_update_expression] = STATE(596), - [sym_cast_expression] = STATE(596), - [sym_sizeof_expression] = STATE(596), - [sym_subscript_expression] = STATE(505), - [sym_call_expression] = STATE(505), - [sym_field_expression] = STATE(505), - [sym_compound_literal_expression] = STATE(596), - [sym_parenthesized_expression] = STATE(505), - [sym_char_literal] = STATE(596), - [sym_concatenated_string] = STATE(596), - [sym_string_literal] = STATE(376), - [sym_macro_type_specifier] = STATE(718), - [aux_sym__declaration_specifiers_repeat1] = STATE(570), - [aux_sym_sized_type_specifier_repeat1] = STATE(712), - [aux_sym_case_statement_repeat1] = STATE(62), - [sym_identifier] = ACTIONS(855), - [aux_sym_preproc_include_token1] = ACTIONS(652), - [aux_sym_preproc_def_token1] = ACTIONS(652), - [aux_sym_preproc_if_token1] = ACTIONS(652), - [aux_sym_preproc_if_token2] = ACTIONS(652), - [aux_sym_preproc_ifdef_token1] = ACTIONS(652), - [aux_sym_preproc_ifdef_token2] = ACTIONS(652), - [sym_preproc_directive] = ACTIONS(652), + [58] = { + [sym_declaration] = STATE(60), + [sym_type_definition] = STATE(60), + [sym__declaration_specifiers] = STATE(877), + [sym_attribute_specifier] = STATE(561), + [sym_compound_statement] = STATE(60), + [sym_storage_class_specifier] = STATE(561), + [sym_type_qualifier] = STATE(561), + [sym__type_specifier] = STATE(709), + [sym_sized_type_specifier] = STATE(709), + [sym_enum_specifier] = STATE(709), + [sym_struct_specifier] = STATE(709), + [sym_union_specifier] = STATE(709), + [sym_labeled_statement] = STATE(60), + [sym_expression_statement] = STATE(60), + [sym_if_statement] = STATE(60), + [sym_switch_statement] = STATE(60), + [sym_while_statement] = STATE(60), + [sym_do_statement] = STATE(60), + [sym_for_statement] = STATE(60), + [sym_return_statement] = STATE(60), + [sym_break_statement] = STATE(60), + [sym_continue_statement] = STATE(60), + [sym_goto_statement] = STATE(60), + [sym__expression] = STATE(568), + [sym_comma_expression] = STATE(1210), + [sym_conditional_expression] = STATE(568), + [sym_assignment_expression] = STATE(568), + [sym_pointer_expression] = STATE(532), + [sym_unary_expression] = STATE(568), + [sym_binary_expression] = STATE(568), + [sym_update_expression] = STATE(568), + [sym_cast_expression] = STATE(568), + [sym_sizeof_expression] = STATE(568), + [sym_subscript_expression] = STATE(532), + [sym_call_expression] = STATE(532), + [sym_field_expression] = STATE(532), + [sym_compound_literal_expression] = STATE(568), + [sym_parenthesized_expression] = STATE(532), + [sym_char_literal] = STATE(568), + [sym_concatenated_string] = STATE(568), + [sym_string_literal] = STATE(379), + [sym_macro_type_specifier] = STATE(709), + [aux_sym__declaration_specifiers_repeat1] = STATE(561), + [aux_sym_sized_type_specifier_repeat1] = STATE(704), + [aux_sym_case_statement_repeat1] = STATE(60), + [sym_identifier] = ACTIONS(751), + [aux_sym_preproc_include_token1] = ACTIONS(646), + [aux_sym_preproc_def_token1] = ACTIONS(646), + [aux_sym_preproc_if_token1] = ACTIONS(646), + [aux_sym_preproc_ifdef_token1] = ACTIONS(646), + [aux_sym_preproc_ifdef_token2] = ACTIONS(646), + [sym_preproc_directive] = ACTIONS(646), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -13305,11 +13096,12 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(444), - [anon_sym_typedef] = ACTIONS(446), + [anon_sym_SEMI] = ACTIONS(304), + [anon_sym_typedef] = ACTIONS(306), [anon_sym_extern] = ACTIONS(37), [anon_sym___attribute__] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(450), + [anon_sym_LBRACE] = ACTIONS(310), + [anon_sym_RBRACE] = ACTIONS(761), [anon_sym_static] = ACTIONS(37), [anon_sym_auto] = ACTIONS(37), [anon_sym_register] = ACTIONS(37), @@ -13326,22 +13118,22 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(45), [anon_sym_struct] = ACTIONS(47), [anon_sym_union] = ACTIONS(49), - [anon_sym_if] = ACTIONS(454), - [anon_sym_else] = ACTIONS(652), - [anon_sym_switch] = ACTIONS(456), - [anon_sym_case] = ACTIONS(652), - [anon_sym_default] = ACTIONS(652), - [anon_sym_while] = ACTIONS(462), - [anon_sym_do] = ACTIONS(464), - [anon_sym_for] = ACTIONS(466), - [anon_sym_return] = ACTIONS(468), - [anon_sym_break] = ACTIONS(470), - [anon_sym_continue] = ACTIONS(472), - [anon_sym_goto] = ACTIONS(474), + [anon_sym_if] = ACTIONS(316), + [anon_sym_else] = ACTIONS(646), + [anon_sym_switch] = ACTIONS(318), + [anon_sym_case] = ACTIONS(646), + [anon_sym_default] = ACTIONS(646), + [anon_sym_while] = ACTIONS(324), + [anon_sym_do] = ACTIONS(326), + [anon_sym_for] = ACTIONS(328), + [anon_sym_return] = ACTIONS(330), + [anon_sym_break] = ACTIONS(332), + [anon_sym_continue] = ACTIONS(334), + [anon_sym_goto] = ACTIONS(336), [anon_sym_DASH_DASH] = ACTIONS(73), [anon_sym_PLUS_PLUS] = ACTIONS(73), [anon_sym_sizeof] = ACTIONS(75), - [sym_number_literal] = ACTIONS(476), + [sym_number_literal] = ACTIONS(338), [anon_sym_L_SQUOTE] = ACTIONS(79), [anon_sym_u_SQUOTE] = ACTIONS(79), [anon_sym_U_SQUOTE] = ACTIONS(79), @@ -13352,64 +13144,64 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_U_DQUOTE] = ACTIONS(81), [anon_sym_u8_DQUOTE] = ACTIONS(81), [anon_sym_DQUOTE] = ACTIONS(81), - [sym_true] = ACTIONS(478), - [sym_false] = ACTIONS(478), - [sym_null] = ACTIONS(478), + [sym_true] = ACTIONS(340), + [sym_false] = ACTIONS(340), + [sym_null] = ACTIONS(340), [sym_comment] = ACTIONS(3), }, - [61] = { - [sym_declaration] = STATE(49), - [sym_type_definition] = STATE(49), - [sym__declaration_specifiers] = STATE(868), - [sym_attribute_specifier] = STATE(570), - [sym_compound_statement] = STATE(49), - [sym_storage_class_specifier] = STATE(570), - [sym_type_qualifier] = STATE(570), - [sym__type_specifier] = STATE(718), - [sym_sized_type_specifier] = STATE(718), - [sym_enum_specifier] = STATE(718), - [sym_struct_specifier] = STATE(718), - [sym_union_specifier] = STATE(718), - [sym_labeled_statement] = STATE(49), - [sym_expression_statement] = STATE(49), - [sym_if_statement] = STATE(49), - [sym_switch_statement] = STATE(49), - [sym_while_statement] = STATE(49), - [sym_do_statement] = STATE(49), - [sym_for_statement] = STATE(49), - [sym_return_statement] = STATE(49), - [sym_break_statement] = STATE(49), - [sym_continue_statement] = STATE(49), - [sym_goto_statement] = STATE(49), - [sym__expression] = STATE(616), - [sym_comma_expression] = STATE(1170), - [sym_conditional_expression] = STATE(616), - [sym_assignment_expression] = STATE(616), - [sym_pointer_expression] = STATE(505), - [sym_unary_expression] = STATE(616), - [sym_binary_expression] = STATE(616), - [sym_update_expression] = STATE(616), - [sym_cast_expression] = STATE(616), - [sym_sizeof_expression] = STATE(616), - [sym_subscript_expression] = STATE(505), - [sym_call_expression] = STATE(505), - [sym_field_expression] = STATE(505), - [sym_compound_literal_expression] = STATE(616), - [sym_parenthesized_expression] = STATE(505), - [sym_char_literal] = STATE(616), - [sym_concatenated_string] = STATE(616), - [sym_string_literal] = STATE(376), - [sym_macro_type_specifier] = STATE(718), - [aux_sym__declaration_specifiers_repeat1] = STATE(570), - [aux_sym_sized_type_specifier_repeat1] = STATE(712), - [aux_sym_case_statement_repeat1] = STATE(49), - [sym_identifier] = ACTIONS(804), - [aux_sym_preproc_include_token1] = ACTIONS(654), - [aux_sym_preproc_def_token1] = ACTIONS(654), - [aux_sym_preproc_if_token1] = ACTIONS(654), - [aux_sym_preproc_ifdef_token1] = ACTIONS(654), - [aux_sym_preproc_ifdef_token2] = ACTIONS(654), - [sym_preproc_directive] = ACTIONS(654), + [59] = { + [sym_declaration] = STATE(60), + [sym_type_definition] = STATE(60), + [sym__declaration_specifiers] = STATE(877), + [sym_attribute_specifier] = STATE(561), + [sym_compound_statement] = STATE(60), + [sym_storage_class_specifier] = STATE(561), + [sym_type_qualifier] = STATE(561), + [sym__type_specifier] = STATE(709), + [sym_sized_type_specifier] = STATE(709), + [sym_enum_specifier] = STATE(709), + [sym_struct_specifier] = STATE(709), + [sym_union_specifier] = STATE(709), + [sym_labeled_statement] = STATE(60), + [sym_expression_statement] = STATE(60), + [sym_if_statement] = STATE(60), + [sym_switch_statement] = STATE(60), + [sym_while_statement] = STATE(60), + [sym_do_statement] = STATE(60), + [sym_for_statement] = STATE(60), + [sym_return_statement] = STATE(60), + [sym_break_statement] = STATE(60), + [sym_continue_statement] = STATE(60), + [sym_goto_statement] = STATE(60), + [sym__expression] = STATE(568), + [sym_comma_expression] = STATE(1210), + [sym_conditional_expression] = STATE(568), + [sym_assignment_expression] = STATE(568), + [sym_pointer_expression] = STATE(532), + [sym_unary_expression] = STATE(568), + [sym_binary_expression] = STATE(568), + [sym_update_expression] = STATE(568), + [sym_cast_expression] = STATE(568), + [sym_sizeof_expression] = STATE(568), + [sym_subscript_expression] = STATE(532), + [sym_call_expression] = STATE(532), + [sym_field_expression] = STATE(532), + [sym_compound_literal_expression] = STATE(568), + [sym_parenthesized_expression] = STATE(532), + [sym_char_literal] = STATE(568), + [sym_concatenated_string] = STATE(568), + [sym_string_literal] = STATE(379), + [sym_macro_type_specifier] = STATE(709), + [aux_sym__declaration_specifiers_repeat1] = STATE(561), + [aux_sym_sized_type_specifier_repeat1] = STATE(704), + [aux_sym_case_statement_repeat1] = STATE(60), + [sym_identifier] = ACTIONS(751), + [aux_sym_preproc_include_token1] = ACTIONS(650), + [aux_sym_preproc_def_token1] = ACTIONS(650), + [aux_sym_preproc_if_token1] = ACTIONS(650), + [aux_sym_preproc_ifdef_token1] = ACTIONS(650), + [aux_sym_preproc_ifdef_token2] = ACTIONS(650), + [sym_preproc_directive] = ACTIONS(650), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -13422,7 +13214,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_extern] = ACTIONS(37), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACE] = ACTIONS(310), - [anon_sym_RBRACE] = ACTIONS(802), + [anon_sym_RBRACE] = ACTIONS(757), [anon_sym_static] = ACTIONS(37), [anon_sym_auto] = ACTIONS(37), [anon_sym_register] = ACTIONS(37), @@ -13440,10 +13232,10 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(47), [anon_sym_union] = ACTIONS(49), [anon_sym_if] = ACTIONS(316), - [anon_sym_else] = ACTIONS(654), + [anon_sym_else] = ACTIONS(650), [anon_sym_switch] = ACTIONS(318), - [anon_sym_case] = ACTIONS(654), - [anon_sym_default] = ACTIONS(654), + [anon_sym_case] = ACTIONS(650), + [anon_sym_default] = ACTIONS(650), [anon_sym_while] = ACTIONS(324), [anon_sym_do] = ACTIONS(326), [anon_sym_for] = ACTIONS(328), @@ -13470,60 +13262,286 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(340), [sym_comment] = ACTIONS(3), }, + [60] = { + [sym_declaration] = STATE(60), + [sym_type_definition] = STATE(60), + [sym__declaration_specifiers] = STATE(877), + [sym_attribute_specifier] = STATE(561), + [sym_compound_statement] = STATE(60), + [sym_storage_class_specifier] = STATE(561), + [sym_type_qualifier] = STATE(561), + [sym__type_specifier] = STATE(709), + [sym_sized_type_specifier] = STATE(709), + [sym_enum_specifier] = STATE(709), + [sym_struct_specifier] = STATE(709), + [sym_union_specifier] = STATE(709), + [sym_labeled_statement] = STATE(60), + [sym_expression_statement] = STATE(60), + [sym_if_statement] = STATE(60), + [sym_switch_statement] = STATE(60), + [sym_while_statement] = STATE(60), + [sym_do_statement] = STATE(60), + [sym_for_statement] = STATE(60), + [sym_return_statement] = STATE(60), + [sym_break_statement] = STATE(60), + [sym_continue_statement] = STATE(60), + [sym_goto_statement] = STATE(60), + [sym__expression] = STATE(568), + [sym_comma_expression] = STATE(1210), + [sym_conditional_expression] = STATE(568), + [sym_assignment_expression] = STATE(568), + [sym_pointer_expression] = STATE(532), + [sym_unary_expression] = STATE(568), + [sym_binary_expression] = STATE(568), + [sym_update_expression] = STATE(568), + [sym_cast_expression] = STATE(568), + [sym_sizeof_expression] = STATE(568), + [sym_subscript_expression] = STATE(532), + [sym_call_expression] = STATE(532), + [sym_field_expression] = STATE(532), + [sym_compound_literal_expression] = STATE(568), + [sym_parenthesized_expression] = STATE(532), + [sym_char_literal] = STATE(568), + [sym_concatenated_string] = STATE(568), + [sym_string_literal] = STATE(379), + [sym_macro_type_specifier] = STATE(709), + [aux_sym__declaration_specifiers_repeat1] = STATE(561), + [aux_sym_sized_type_specifier_repeat1] = STATE(704), + [aux_sym_case_statement_repeat1] = STATE(60), + [sym_identifier] = ACTIONS(810), + [aux_sym_preproc_include_token1] = ACTIONS(655), + [aux_sym_preproc_def_token1] = ACTIONS(655), + [aux_sym_preproc_if_token1] = ACTIONS(655), + [aux_sym_preproc_ifdef_token1] = ACTIONS(655), + [aux_sym_preproc_ifdef_token2] = ACTIONS(655), + [sym_preproc_directive] = ACTIONS(655), + [anon_sym_LPAREN2] = ACTIONS(657), + [anon_sym_BANG] = ACTIONS(660), + [anon_sym_TILDE] = ACTIONS(660), + [anon_sym_DASH] = ACTIONS(663), + [anon_sym_PLUS] = ACTIONS(663), + [anon_sym_STAR] = ACTIONS(666), + [anon_sym_AMP] = ACTIONS(666), + [anon_sym_SEMI] = ACTIONS(813), + [anon_sym_typedef] = ACTIONS(816), + [anon_sym_extern] = ACTIONS(675), + [anon_sym___attribute__] = ACTIONS(678), + [anon_sym_LBRACE] = ACTIONS(819), + [anon_sym_RBRACE] = ACTIONS(822), + [anon_sym_static] = ACTIONS(675), + [anon_sym_auto] = ACTIONS(675), + [anon_sym_register] = ACTIONS(675), + [anon_sym_inline] = ACTIONS(675), + [anon_sym_const] = ACTIONS(684), + [anon_sym_volatile] = ACTIONS(684), + [anon_sym_restrict] = ACTIONS(684), + [anon_sym__Atomic] = ACTIONS(684), + [anon_sym_signed] = ACTIONS(687), + [anon_sym_unsigned] = ACTIONS(687), + [anon_sym_long] = ACTIONS(687), + [anon_sym_short] = ACTIONS(687), + [sym_primitive_type] = ACTIONS(690), + [anon_sym_enum] = ACTIONS(693), + [anon_sym_struct] = ACTIONS(696), + [anon_sym_union] = ACTIONS(699), + [anon_sym_if] = ACTIONS(824), + [anon_sym_else] = ACTIONS(655), + [anon_sym_switch] = ACTIONS(827), + [anon_sym_case] = ACTIONS(655), + [anon_sym_default] = ACTIONS(655), + [anon_sym_while] = ACTIONS(830), + [anon_sym_do] = ACTIONS(833), + [anon_sym_for] = ACTIONS(836), + [anon_sym_return] = ACTIONS(839), + [anon_sym_break] = ACTIONS(842), + [anon_sym_continue] = ACTIONS(845), + [anon_sym_goto] = ACTIONS(848), + [anon_sym_DASH_DASH] = ACTIONS(729), + [anon_sym_PLUS_PLUS] = ACTIONS(729), + [anon_sym_sizeof] = ACTIONS(732), + [sym_number_literal] = ACTIONS(851), + [anon_sym_L_SQUOTE] = ACTIONS(738), + [anon_sym_u_SQUOTE] = ACTIONS(738), + [anon_sym_U_SQUOTE] = ACTIONS(738), + [anon_sym_u8_SQUOTE] = ACTIONS(738), + [anon_sym_SQUOTE] = ACTIONS(738), + [anon_sym_L_DQUOTE] = ACTIONS(741), + [anon_sym_u_DQUOTE] = ACTIONS(741), + [anon_sym_U_DQUOTE] = ACTIONS(741), + [anon_sym_u8_DQUOTE] = ACTIONS(741), + [anon_sym_DQUOTE] = ACTIONS(741), + [sym_true] = ACTIONS(854), + [sym_false] = ACTIONS(854), + [sym_null] = ACTIONS(854), + [sym_comment] = ACTIONS(3), + }, + [61] = { + [sym_declaration] = STATE(61), + [sym_type_definition] = STATE(61), + [sym__declaration_specifiers] = STATE(872), + [sym_attribute_specifier] = STATE(561), + [sym_compound_statement] = STATE(61), + [sym_storage_class_specifier] = STATE(561), + [sym_type_qualifier] = STATE(561), + [sym__type_specifier] = STATE(709), + [sym_sized_type_specifier] = STATE(709), + [sym_enum_specifier] = STATE(709), + [sym_struct_specifier] = STATE(709), + [sym_union_specifier] = STATE(709), + [sym_labeled_statement] = STATE(61), + [sym_expression_statement] = STATE(61), + [sym_if_statement] = STATE(61), + [sym_switch_statement] = STATE(61), + [sym_while_statement] = STATE(61), + [sym_do_statement] = STATE(61), + [sym_for_statement] = STATE(61), + [sym_return_statement] = STATE(61), + [sym_break_statement] = STATE(61), + [sym_continue_statement] = STATE(61), + [sym_goto_statement] = STATE(61), + [sym__expression] = STATE(606), + [sym_comma_expression] = STATE(1218), + [sym_conditional_expression] = STATE(606), + [sym_assignment_expression] = STATE(606), + [sym_pointer_expression] = STATE(532), + [sym_unary_expression] = STATE(606), + [sym_binary_expression] = STATE(606), + [sym_update_expression] = STATE(606), + [sym_cast_expression] = STATE(606), + [sym_sizeof_expression] = STATE(606), + [sym_subscript_expression] = STATE(532), + [sym_call_expression] = STATE(532), + [sym_field_expression] = STATE(532), + [sym_compound_literal_expression] = STATE(606), + [sym_parenthesized_expression] = STATE(532), + [sym_char_literal] = STATE(606), + [sym_concatenated_string] = STATE(606), + [sym_string_literal] = STATE(379), + [sym_macro_type_specifier] = STATE(709), + [aux_sym__declaration_specifiers_repeat1] = STATE(561), + [aux_sym_sized_type_specifier_repeat1] = STATE(704), + [aux_sym_case_statement_repeat1] = STATE(61), + [ts_builtin_sym_end] = ACTIONS(822), + [sym_identifier] = ACTIONS(857), + [aux_sym_preproc_include_token1] = ACTIONS(655), + [aux_sym_preproc_def_token1] = ACTIONS(655), + [aux_sym_preproc_if_token1] = ACTIONS(655), + [aux_sym_preproc_ifdef_token1] = ACTIONS(655), + [aux_sym_preproc_ifdef_token2] = ACTIONS(655), + [sym_preproc_directive] = ACTIONS(655), + [anon_sym_LPAREN2] = ACTIONS(657), + [anon_sym_BANG] = ACTIONS(660), + [anon_sym_TILDE] = ACTIONS(660), + [anon_sym_DASH] = ACTIONS(663), + [anon_sym_PLUS] = ACTIONS(663), + [anon_sym_STAR] = ACTIONS(666), + [anon_sym_AMP] = ACTIONS(666), + [anon_sym_SEMI] = ACTIONS(860), + [anon_sym_typedef] = ACTIONS(863), + [anon_sym_extern] = ACTIONS(675), + [anon_sym___attribute__] = ACTIONS(678), + [anon_sym_LBRACE] = ACTIONS(866), + [anon_sym_static] = ACTIONS(675), + [anon_sym_auto] = ACTIONS(675), + [anon_sym_register] = ACTIONS(675), + [anon_sym_inline] = ACTIONS(675), + [anon_sym_const] = ACTIONS(684), + [anon_sym_volatile] = ACTIONS(684), + [anon_sym_restrict] = ACTIONS(684), + [anon_sym__Atomic] = ACTIONS(684), + [anon_sym_signed] = ACTIONS(687), + [anon_sym_unsigned] = ACTIONS(687), + [anon_sym_long] = ACTIONS(687), + [anon_sym_short] = ACTIONS(687), + [sym_primitive_type] = ACTIONS(690), + [anon_sym_enum] = ACTIONS(693), + [anon_sym_struct] = ACTIONS(696), + [anon_sym_union] = ACTIONS(699), + [anon_sym_if] = ACTIONS(869), + [anon_sym_else] = ACTIONS(655), + [anon_sym_switch] = ACTIONS(872), + [anon_sym_case] = ACTIONS(655), + [anon_sym_default] = ACTIONS(655), + [anon_sym_while] = ACTIONS(875), + [anon_sym_do] = ACTIONS(878), + [anon_sym_for] = ACTIONS(881), + [anon_sym_return] = ACTIONS(884), + [anon_sym_break] = ACTIONS(887), + [anon_sym_continue] = ACTIONS(890), + [anon_sym_goto] = ACTIONS(893), + [anon_sym_DASH_DASH] = ACTIONS(729), + [anon_sym_PLUS_PLUS] = ACTIONS(729), + [anon_sym_sizeof] = ACTIONS(732), + [sym_number_literal] = ACTIONS(896), + [anon_sym_L_SQUOTE] = ACTIONS(738), + [anon_sym_u_SQUOTE] = ACTIONS(738), + [anon_sym_U_SQUOTE] = ACTIONS(738), + [anon_sym_u8_SQUOTE] = ACTIONS(738), + [anon_sym_SQUOTE] = ACTIONS(738), + [anon_sym_L_DQUOTE] = ACTIONS(741), + [anon_sym_u_DQUOTE] = ACTIONS(741), + [anon_sym_U_DQUOTE] = ACTIONS(741), + [anon_sym_u8_DQUOTE] = ACTIONS(741), + [anon_sym_DQUOTE] = ACTIONS(741), + [sym_true] = ACTIONS(899), + [sym_false] = ACTIONS(899), + [sym_null] = ACTIONS(899), + [sym_comment] = ACTIONS(3), + }, [62] = { - [sym_declaration] = STATE(59), - [sym_type_definition] = STATE(59), - [sym__declaration_specifiers] = STATE(873), - [sym_attribute_specifier] = STATE(570), - [sym_compound_statement] = STATE(59), - [sym_storage_class_specifier] = STATE(570), - [sym_type_qualifier] = STATE(570), - [sym__type_specifier] = STATE(718), - [sym_sized_type_specifier] = STATE(718), - [sym_enum_specifier] = STATE(718), - [sym_struct_specifier] = STATE(718), - [sym_union_specifier] = STATE(718), - [sym_labeled_statement] = STATE(59), - [sym_expression_statement] = STATE(59), - [sym_if_statement] = STATE(59), - [sym_switch_statement] = STATE(59), - [sym_while_statement] = STATE(59), - [sym_do_statement] = STATE(59), - [sym_for_statement] = STATE(59), - [sym_return_statement] = STATE(59), - [sym_break_statement] = STATE(59), - [sym_continue_statement] = STATE(59), - [sym_goto_statement] = STATE(59), - [sym__expression] = STATE(596), - [sym_comma_expression] = STATE(1096), - [sym_conditional_expression] = STATE(596), - [sym_assignment_expression] = STATE(596), - [sym_pointer_expression] = STATE(505), - [sym_unary_expression] = STATE(596), - [sym_binary_expression] = STATE(596), - [sym_update_expression] = STATE(596), - [sym_cast_expression] = STATE(596), - [sym_sizeof_expression] = STATE(596), - [sym_subscript_expression] = STATE(505), - [sym_call_expression] = STATE(505), - [sym_field_expression] = STATE(505), - [sym_compound_literal_expression] = STATE(596), - [sym_parenthesized_expression] = STATE(505), - [sym_char_literal] = STATE(596), - [sym_concatenated_string] = STATE(596), - [sym_string_literal] = STATE(376), - [sym_macro_type_specifier] = STATE(718), - [aux_sym__declaration_specifiers_repeat1] = STATE(570), - [aux_sym_sized_type_specifier_repeat1] = STATE(712), - [aux_sym_case_statement_repeat1] = STATE(59), - [sym_identifier] = ACTIONS(855), - [aux_sym_preproc_include_token1] = ACTIONS(654), - [aux_sym_preproc_def_token1] = ACTIONS(654), - [aux_sym_preproc_if_token1] = ACTIONS(654), - [aux_sym_preproc_if_token2] = ACTIONS(654), - [aux_sym_preproc_ifdef_token1] = ACTIONS(654), - [aux_sym_preproc_ifdef_token2] = ACTIONS(654), - [sym_preproc_directive] = ACTIONS(654), + [sym_declaration] = STATE(52), + [sym_type_definition] = STATE(52), + [sym__declaration_specifiers] = STATE(872), + [sym_attribute_specifier] = STATE(561), + [sym_compound_statement] = STATE(52), + [sym_storage_class_specifier] = STATE(561), + [sym_type_qualifier] = STATE(561), + [sym__type_specifier] = STATE(709), + [sym_sized_type_specifier] = STATE(709), + [sym_enum_specifier] = STATE(709), + [sym_struct_specifier] = STATE(709), + [sym_union_specifier] = STATE(709), + [sym_labeled_statement] = STATE(52), + [sym_expression_statement] = STATE(52), + [sym_if_statement] = STATE(52), + [sym_switch_statement] = STATE(52), + [sym_while_statement] = STATE(52), + [sym_do_statement] = STATE(52), + [sym_for_statement] = STATE(52), + [sym_return_statement] = STATE(52), + [sym_break_statement] = STATE(52), + [sym_continue_statement] = STATE(52), + [sym_goto_statement] = STATE(52), + [sym__expression] = STATE(606), + [sym_comma_expression] = STATE(1218), + [sym_conditional_expression] = STATE(606), + [sym_assignment_expression] = STATE(606), + [sym_pointer_expression] = STATE(532), + [sym_unary_expression] = STATE(606), + [sym_binary_expression] = STATE(606), + [sym_update_expression] = STATE(606), + [sym_cast_expression] = STATE(606), + [sym_sizeof_expression] = STATE(606), + [sym_subscript_expression] = STATE(532), + [sym_call_expression] = STATE(532), + [sym_field_expression] = STATE(532), + [sym_compound_literal_expression] = STATE(606), + [sym_parenthesized_expression] = STATE(532), + [sym_char_literal] = STATE(606), + [sym_concatenated_string] = STATE(606), + [sym_string_literal] = STATE(379), + [sym_macro_type_specifier] = STATE(709), + [aux_sym__declaration_specifiers_repeat1] = STATE(561), + [aux_sym_sized_type_specifier_repeat1] = STATE(704), + [aux_sym_case_statement_repeat1] = STATE(52), + [ts_builtin_sym_end] = ACTIONS(753), + [sym_identifier] = ACTIONS(759), + [aux_sym_preproc_include_token1] = ACTIONS(747), + [aux_sym_preproc_def_token1] = ACTIONS(747), + [aux_sym_preproc_if_token1] = ACTIONS(747), + [aux_sym_preproc_ifdef_token1] = ACTIONS(747), + [aux_sym_preproc_ifdef_token2] = ACTIONS(747), + [sym_preproc_directive] = ACTIONS(747), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -13531,11 +13549,11 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(444), - [anon_sym_typedef] = ACTIONS(446), + [anon_sym_SEMI] = ACTIONS(27), + [anon_sym_typedef] = ACTIONS(29), [anon_sym_extern] = ACTIONS(37), [anon_sym___attribute__] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(450), + [anon_sym_LBRACE] = ACTIONS(35), [anon_sym_static] = ACTIONS(37), [anon_sym_auto] = ACTIONS(37), [anon_sym_register] = ACTIONS(37), @@ -13552,22 +13570,22 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(45), [anon_sym_struct] = ACTIONS(47), [anon_sym_union] = ACTIONS(49), - [anon_sym_if] = ACTIONS(454), - [anon_sym_else] = ACTIONS(654), - [anon_sym_switch] = ACTIONS(456), - [anon_sym_case] = ACTIONS(654), - [anon_sym_default] = ACTIONS(654), - [anon_sym_while] = ACTIONS(462), - [anon_sym_do] = ACTIONS(464), - [anon_sym_for] = ACTIONS(466), - [anon_sym_return] = ACTIONS(468), - [anon_sym_break] = ACTIONS(470), - [anon_sym_continue] = ACTIONS(472), - [anon_sym_goto] = ACTIONS(474), + [anon_sym_if] = ACTIONS(51), + [anon_sym_else] = ACTIONS(747), + [anon_sym_switch] = ACTIONS(53), + [anon_sym_case] = ACTIONS(747), + [anon_sym_default] = ACTIONS(747), + [anon_sym_while] = ACTIONS(59), + [anon_sym_do] = ACTIONS(61), + [anon_sym_for] = ACTIONS(63), + [anon_sym_return] = ACTIONS(65), + [anon_sym_break] = ACTIONS(67), + [anon_sym_continue] = ACTIONS(69), + [anon_sym_goto] = ACTIONS(71), [anon_sym_DASH_DASH] = ACTIONS(73), [anon_sym_PLUS_PLUS] = ACTIONS(73), [anon_sym_sizeof] = ACTIONS(75), - [sym_number_literal] = ACTIONS(476), + [sym_number_literal] = ACTIONS(77), [anon_sym_L_SQUOTE] = ACTIONS(79), [anon_sym_u_SQUOTE] = ACTIONS(79), [anon_sym_U_SQUOTE] = ACTIONS(79), @@ -13578,30 +13596,30 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_U_DQUOTE] = ACTIONS(81), [anon_sym_u8_DQUOTE] = ACTIONS(81), [anon_sym_DQUOTE] = ACTIONS(81), - [sym_true] = ACTIONS(478), - [sym_false] = ACTIONS(478), - [sym_null] = ACTIONS(478), + [sym_true] = ACTIONS(83), + [sym_false] = ACTIONS(83), + [sym_null] = ACTIONS(83), [sym_comment] = ACTIONS(3), }, [63] = { - [sym__expression] = STATE(449), - [sym_conditional_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_pointer_expression] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_update_expression] = STATE(449), - [sym_cast_expression] = STATE(449), - [sym_sizeof_expression] = STATE(449), - [sym_subscript_expression] = STATE(449), - [sym_call_expression] = STATE(449), - [sym_field_expression] = STATE(449), - [sym_compound_literal_expression] = STATE(449), - [sym_parenthesized_expression] = STATE(449), - [sym_initializer_list] = STATE(509), - [sym_char_literal] = STATE(449), - [sym_concatenated_string] = STATE(449), - [sym_string_literal] = STATE(376), + [sym__expression] = STATE(460), + [sym_conditional_expression] = STATE(460), + [sym_assignment_expression] = STATE(460), + [sym_pointer_expression] = STATE(460), + [sym_unary_expression] = STATE(460), + [sym_binary_expression] = STATE(460), + [sym_update_expression] = STATE(460), + [sym_cast_expression] = STATE(460), + [sym_sizeof_expression] = STATE(460), + [sym_subscript_expression] = STATE(460), + [sym_call_expression] = STATE(460), + [sym_field_expression] = STATE(460), + [sym_compound_literal_expression] = STATE(460), + [sym_parenthesized_expression] = STATE(460), + [sym_initializer_list] = STATE(528), + [sym_char_literal] = STATE(460), + [sym_concatenated_string] = STATE(460), + [sym_string_literal] = STATE(379), [sym_identifier] = ACTIONS(902), [anon_sym_COMMA] = ACTIONS(904), [anon_sym_RPAREN] = ACTIONS(904), @@ -13666,37 +13684,37 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [64] = { - [sym_declaration] = STATE(447), - [sym__declaration_specifiers] = STATE(867), - [sym_attribute_specifier] = STATE(570), - [sym_storage_class_specifier] = STATE(570), - [sym_type_qualifier] = STATE(570), - [sym__type_specifier] = STATE(718), - [sym_sized_type_specifier] = STATE(718), - [sym_enum_specifier] = STATE(718), - [sym_struct_specifier] = STATE(718), - [sym_union_specifier] = STATE(718), - [sym__expression] = STATE(611), - [sym_comma_expression] = STATE(1248), - [sym_conditional_expression] = STATE(611), - [sym_assignment_expression] = STATE(611), - [sym_pointer_expression] = STATE(505), - [sym_unary_expression] = STATE(611), - [sym_binary_expression] = STATE(611), - [sym_update_expression] = STATE(611), - [sym_cast_expression] = STATE(611), - [sym_sizeof_expression] = STATE(611), - [sym_subscript_expression] = STATE(505), - [sym_call_expression] = STATE(505), - [sym_field_expression] = STATE(505), - [sym_compound_literal_expression] = STATE(611), - [sym_parenthesized_expression] = STATE(505), - [sym_char_literal] = STATE(611), - [sym_concatenated_string] = STATE(611), - [sym_string_literal] = STATE(376), - [sym_macro_type_specifier] = STATE(718), - [aux_sym__declaration_specifiers_repeat1] = STATE(570), - [aux_sym_sized_type_specifier_repeat1] = STATE(712), + [sym_declaration] = STATE(464), + [sym__declaration_specifiers] = STATE(872), + [sym_attribute_specifier] = STATE(561), + [sym_storage_class_specifier] = STATE(561), + [sym_type_qualifier] = STATE(561), + [sym__type_specifier] = STATE(709), + [sym_sized_type_specifier] = STATE(709), + [sym_enum_specifier] = STATE(709), + [sym_struct_specifier] = STATE(709), + [sym_union_specifier] = STATE(709), + [sym__expression] = STATE(609), + [sym_comma_expression] = STATE(1244), + [sym_conditional_expression] = STATE(609), + [sym_assignment_expression] = STATE(609), + [sym_pointer_expression] = STATE(532), + [sym_unary_expression] = STATE(609), + [sym_binary_expression] = STATE(609), + [sym_update_expression] = STATE(609), + [sym_cast_expression] = STATE(609), + [sym_sizeof_expression] = STATE(609), + [sym_subscript_expression] = STATE(532), + [sym_call_expression] = STATE(532), + [sym_field_expression] = STATE(532), + [sym_compound_literal_expression] = STATE(609), + [sym_parenthesized_expression] = STATE(532), + [sym_char_literal] = STATE(609), + [sym_concatenated_string] = STATE(609), + [sym_string_literal] = STATE(379), + [sym_macro_type_specifier] = STATE(709), + [aux_sym__declaration_specifiers_repeat1] = STATE(561), + [aux_sym_sized_type_specifier_repeat1] = STATE(704), [sym_identifier] = ACTIONS(924), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -13744,37 +13762,37 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [65] = { - [sym_declaration] = STATE(452), - [sym__declaration_specifiers] = STATE(867), - [sym_attribute_specifier] = STATE(570), - [sym_storage_class_specifier] = STATE(570), - [sym_type_qualifier] = STATE(570), - [sym__type_specifier] = STATE(718), - [sym_sized_type_specifier] = STATE(718), - [sym_enum_specifier] = STATE(718), - [sym_struct_specifier] = STATE(718), - [sym_union_specifier] = STATE(718), - [sym__expression] = STATE(592), - [sym_comma_expression] = STATE(1241), - [sym_conditional_expression] = STATE(592), - [sym_assignment_expression] = STATE(592), - [sym_pointer_expression] = STATE(505), - [sym_unary_expression] = STATE(592), - [sym_binary_expression] = STATE(592), - [sym_update_expression] = STATE(592), - [sym_cast_expression] = STATE(592), - [sym_sizeof_expression] = STATE(592), - [sym_subscript_expression] = STATE(505), - [sym_call_expression] = STATE(505), - [sym_field_expression] = STATE(505), - [sym_compound_literal_expression] = STATE(592), - [sym_parenthesized_expression] = STATE(505), - [sym_char_literal] = STATE(592), - [sym_concatenated_string] = STATE(592), - [sym_string_literal] = STATE(376), - [sym_macro_type_specifier] = STATE(718), - [aux_sym__declaration_specifiers_repeat1] = STATE(570), - [aux_sym_sized_type_specifier_repeat1] = STATE(712), + [sym_declaration] = STATE(446), + [sym__declaration_specifiers] = STATE(872), + [sym_attribute_specifier] = STATE(561), + [sym_storage_class_specifier] = STATE(561), + [sym_type_qualifier] = STATE(561), + [sym__type_specifier] = STATE(709), + [sym_sized_type_specifier] = STATE(709), + [sym_enum_specifier] = STATE(709), + [sym_struct_specifier] = STATE(709), + [sym_union_specifier] = STATE(709), + [sym__expression] = STATE(575), + [sym_comma_expression] = STATE(1229), + [sym_conditional_expression] = STATE(575), + [sym_assignment_expression] = STATE(575), + [sym_pointer_expression] = STATE(532), + [sym_unary_expression] = STATE(575), + [sym_binary_expression] = STATE(575), + [sym_update_expression] = STATE(575), + [sym_cast_expression] = STATE(575), + [sym_sizeof_expression] = STATE(575), + [sym_subscript_expression] = STATE(532), + [sym_call_expression] = STATE(532), + [sym_field_expression] = STATE(532), + [sym_compound_literal_expression] = STATE(575), + [sym_parenthesized_expression] = STATE(532), + [sym_char_literal] = STATE(575), + [sym_concatenated_string] = STATE(575), + [sym_string_literal] = STATE(379), + [sym_macro_type_specifier] = STATE(709), + [aux_sym__declaration_specifiers_repeat1] = STATE(561), + [aux_sym_sized_type_specifier_repeat1] = STATE(704), [sym_identifier] = ACTIONS(924), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -13822,37 +13840,37 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [66] = { - [sym_declaration] = STATE(457), - [sym__declaration_specifiers] = STATE(867), - [sym_attribute_specifier] = STATE(570), - [sym_storage_class_specifier] = STATE(570), - [sym_type_qualifier] = STATE(570), - [sym__type_specifier] = STATE(718), - [sym_sized_type_specifier] = STATE(718), - [sym_enum_specifier] = STATE(718), - [sym_struct_specifier] = STATE(718), - [sym_union_specifier] = STATE(718), - [sym__expression] = STATE(593), - [sym_comma_expression] = STATE(1233), - [sym_conditional_expression] = STATE(593), - [sym_assignment_expression] = STATE(593), - [sym_pointer_expression] = STATE(505), - [sym_unary_expression] = STATE(593), - [sym_binary_expression] = STATE(593), - [sym_update_expression] = STATE(593), - [sym_cast_expression] = STATE(593), - [sym_sizeof_expression] = STATE(593), - [sym_subscript_expression] = STATE(505), - [sym_call_expression] = STATE(505), - [sym_field_expression] = STATE(505), - [sym_compound_literal_expression] = STATE(593), - [sym_parenthesized_expression] = STATE(505), - [sym_char_literal] = STATE(593), - [sym_concatenated_string] = STATE(593), - [sym_string_literal] = STATE(376), - [sym_macro_type_specifier] = STATE(718), - [aux_sym__declaration_specifiers_repeat1] = STATE(570), - [aux_sym_sized_type_specifier_repeat1] = STATE(712), + [sym_declaration] = STATE(474), + [sym__declaration_specifiers] = STATE(872), + [sym_attribute_specifier] = STATE(561), + [sym_storage_class_specifier] = STATE(561), + [sym_type_qualifier] = STATE(561), + [sym__type_specifier] = STATE(709), + [sym_sized_type_specifier] = STATE(709), + [sym_enum_specifier] = STATE(709), + [sym_struct_specifier] = STATE(709), + [sym_union_specifier] = STATE(709), + [sym__expression] = STATE(608), + [sym_comma_expression] = STATE(1172), + [sym_conditional_expression] = STATE(608), + [sym_assignment_expression] = STATE(608), + [sym_pointer_expression] = STATE(532), + [sym_unary_expression] = STATE(608), + [sym_binary_expression] = STATE(608), + [sym_update_expression] = STATE(608), + [sym_cast_expression] = STATE(608), + [sym_sizeof_expression] = STATE(608), + [sym_subscript_expression] = STATE(532), + [sym_call_expression] = STATE(532), + [sym_field_expression] = STATE(532), + [sym_compound_literal_expression] = STATE(608), + [sym_parenthesized_expression] = STATE(532), + [sym_char_literal] = STATE(608), + [sym_concatenated_string] = STATE(608), + [sym_string_literal] = STATE(379), + [sym_macro_type_specifier] = STATE(709), + [aux_sym__declaration_specifiers_repeat1] = STATE(561), + [aux_sym_sized_type_specifier_repeat1] = STATE(704), [sym_identifier] = ACTIONS(924), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -13900,37 +13918,37 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [67] = { - [sym_declaration] = STATE(481), - [sym__declaration_specifiers] = STATE(867), - [sym_attribute_specifier] = STATE(570), - [sym_storage_class_specifier] = STATE(570), - [sym_type_qualifier] = STATE(570), - [sym__type_specifier] = STATE(718), - [sym_sized_type_specifier] = STATE(718), - [sym_enum_specifier] = STATE(718), - [sym_struct_specifier] = STATE(718), - [sym_union_specifier] = STATE(718), - [sym__expression] = STATE(603), - [sym_comma_expression] = STATE(1155), - [sym_conditional_expression] = STATE(603), - [sym_assignment_expression] = STATE(603), - [sym_pointer_expression] = STATE(505), - [sym_unary_expression] = STATE(603), - [sym_binary_expression] = STATE(603), - [sym_update_expression] = STATE(603), - [sym_cast_expression] = STATE(603), - [sym_sizeof_expression] = STATE(603), - [sym_subscript_expression] = STATE(505), - [sym_call_expression] = STATE(505), - [sym_field_expression] = STATE(505), - [sym_compound_literal_expression] = STATE(603), - [sym_parenthesized_expression] = STATE(505), - [sym_char_literal] = STATE(603), - [sym_concatenated_string] = STATE(603), - [sym_string_literal] = STATE(376), - [sym_macro_type_specifier] = STATE(718), - [aux_sym__declaration_specifiers_repeat1] = STATE(570), - [aux_sym_sized_type_specifier_repeat1] = STATE(712), + [sym_declaration] = STATE(450), + [sym__declaration_specifiers] = STATE(872), + [sym_attribute_specifier] = STATE(561), + [sym_storage_class_specifier] = STATE(561), + [sym_type_qualifier] = STATE(561), + [sym__type_specifier] = STATE(709), + [sym_sized_type_specifier] = STATE(709), + [sym_enum_specifier] = STATE(709), + [sym_struct_specifier] = STATE(709), + [sym_union_specifier] = STATE(709), + [sym__expression] = STATE(597), + [sym_comma_expression] = STATE(1237), + [sym_conditional_expression] = STATE(597), + [sym_assignment_expression] = STATE(597), + [sym_pointer_expression] = STATE(532), + [sym_unary_expression] = STATE(597), + [sym_binary_expression] = STATE(597), + [sym_update_expression] = STATE(597), + [sym_cast_expression] = STATE(597), + [sym_sizeof_expression] = STATE(597), + [sym_subscript_expression] = STATE(532), + [sym_call_expression] = STATE(532), + [sym_field_expression] = STATE(532), + [sym_compound_literal_expression] = STATE(597), + [sym_parenthesized_expression] = STATE(532), + [sym_char_literal] = STATE(597), + [sym_concatenated_string] = STATE(597), + [sym_string_literal] = STATE(379), + [sym_macro_type_specifier] = STATE(709), + [aux_sym__declaration_specifiers_repeat1] = STATE(561), + [aux_sym_sized_type_specifier_repeat1] = STATE(704), [sym_identifier] = ACTIONS(924), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -13978,37 +13996,37 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [68] = { - [sym_compound_statement] = STATE(286), - [sym_labeled_statement] = STATE(286), - [sym_expression_statement] = STATE(286), - [sym_if_statement] = STATE(286), - [sym_switch_statement] = STATE(286), - [sym_case_statement] = STATE(286), - [sym_while_statement] = STATE(286), - [sym_do_statement] = STATE(286), - [sym_for_statement] = STATE(286), - [sym_return_statement] = STATE(286), - [sym_break_statement] = STATE(286), - [sym_continue_statement] = STATE(286), - [sym_goto_statement] = STATE(286), - [sym__expression] = STATE(614), - [sym_comma_expression] = STATE(1210), - [sym_conditional_expression] = STATE(614), - [sym_assignment_expression] = STATE(614), - [sym_pointer_expression] = STATE(505), - [sym_unary_expression] = STATE(614), - [sym_binary_expression] = STATE(614), - [sym_update_expression] = STATE(614), - [sym_cast_expression] = STATE(614), - [sym_sizeof_expression] = STATE(614), - [sym_subscript_expression] = STATE(505), - [sym_call_expression] = STATE(505), - [sym_field_expression] = STATE(505), - [sym_compound_literal_expression] = STATE(614), - [sym_parenthesized_expression] = STATE(505), - [sym_char_literal] = STATE(614), - [sym_concatenated_string] = STATE(614), - [sym_string_literal] = STATE(376), + [sym_compound_statement] = STATE(195), + [sym_labeled_statement] = STATE(195), + [sym_expression_statement] = STATE(195), + [sym_if_statement] = STATE(195), + [sym_switch_statement] = STATE(195), + [sym_case_statement] = STATE(195), + [sym_while_statement] = STATE(195), + [sym_do_statement] = STATE(195), + [sym_for_statement] = STATE(195), + [sym_return_statement] = STATE(195), + [sym_break_statement] = STATE(195), + [sym_continue_statement] = STATE(195), + [sym_goto_statement] = STATE(195), + [sym__expression] = STATE(607), + [sym_comma_expression] = STATE(1092), + [sym_conditional_expression] = STATE(607), + [sym_assignment_expression] = STATE(607), + [sym_pointer_expression] = STATE(532), + [sym_unary_expression] = STATE(607), + [sym_binary_expression] = STATE(607), + [sym_update_expression] = STATE(607), + [sym_cast_expression] = STATE(607), + [sym_sizeof_expression] = STATE(607), + [sym_subscript_expression] = STATE(532), + [sym_call_expression] = STATE(532), + [sym_field_expression] = STATE(532), + [sym_compound_literal_expression] = STATE(607), + [sym_parenthesized_expression] = STATE(532), + [sym_char_literal] = STATE(607), + [sym_concatenated_string] = STATE(607), + [sym_string_literal] = STATE(379), [sym_identifier] = ACTIONS(950), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -14017,23 +14035,23 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(27), - [anon_sym_LBRACE] = ACTIONS(35), - [anon_sym_if] = ACTIONS(51), - [anon_sym_switch] = ACTIONS(53), - [anon_sym_case] = ACTIONS(55), - [anon_sym_default] = ACTIONS(57), - [anon_sym_while] = ACTIONS(59), - [anon_sym_do] = ACTIONS(61), - [anon_sym_for] = ACTIONS(63), - [anon_sym_return] = ACTIONS(65), - [anon_sym_break] = ACTIONS(67), - [anon_sym_continue] = ACTIONS(69), - [anon_sym_goto] = ACTIONS(71), + [anon_sym_SEMI] = ACTIONS(364), + [anon_sym_LBRACE] = ACTIONS(370), + [anon_sym_if] = ACTIONS(374), + [anon_sym_switch] = ACTIONS(376), + [anon_sym_case] = ACTIONS(378), + [anon_sym_default] = ACTIONS(380), + [anon_sym_while] = ACTIONS(382), + [anon_sym_do] = ACTIONS(384), + [anon_sym_for] = ACTIONS(386), + [anon_sym_return] = ACTIONS(388), + [anon_sym_break] = ACTIONS(390), + [anon_sym_continue] = ACTIONS(392), + [anon_sym_goto] = ACTIONS(394), [anon_sym_DASH_DASH] = ACTIONS(73), [anon_sym_PLUS_PLUS] = ACTIONS(73), [anon_sym_sizeof] = ACTIONS(75), - [sym_number_literal] = ACTIONS(77), + [sym_number_literal] = ACTIONS(396), [anon_sym_L_SQUOTE] = ACTIONS(79), [anon_sym_u_SQUOTE] = ACTIONS(79), [anon_sym_U_SQUOTE] = ACTIONS(79), @@ -14044,44 +14062,44 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_U_DQUOTE] = ACTIONS(81), [anon_sym_u8_DQUOTE] = ACTIONS(81), [anon_sym_DQUOTE] = ACTIONS(81), - [sym_true] = ACTIONS(83), - [sym_false] = ACTIONS(83), - [sym_null] = ACTIONS(83), + [sym_true] = ACTIONS(398), + [sym_false] = ACTIONS(398), + [sym_null] = ACTIONS(398), [sym_comment] = ACTIONS(3), }, [69] = { - [sym_compound_statement] = STATE(273), - [sym_labeled_statement] = STATE(273), - [sym_expression_statement] = STATE(273), - [sym_if_statement] = STATE(273), - [sym_switch_statement] = STATE(273), - [sym_case_statement] = STATE(273), - [sym_while_statement] = STATE(273), - [sym_do_statement] = STATE(273), - [sym_for_statement] = STATE(273), - [sym_return_statement] = STATE(273), - [sym_break_statement] = STATE(273), - [sym_continue_statement] = STATE(273), - [sym_goto_statement] = STATE(273), - [sym__expression] = STATE(614), - [sym_comma_expression] = STATE(1210), - [sym_conditional_expression] = STATE(614), - [sym_assignment_expression] = STATE(614), - [sym_pointer_expression] = STATE(505), - [sym_unary_expression] = STATE(614), - [sym_binary_expression] = STATE(614), - [sym_update_expression] = STATE(614), - [sym_cast_expression] = STATE(614), - [sym_sizeof_expression] = STATE(614), - [sym_subscript_expression] = STATE(505), - [sym_call_expression] = STATE(505), - [sym_field_expression] = STATE(505), - [sym_compound_literal_expression] = STATE(614), - [sym_parenthesized_expression] = STATE(505), - [sym_char_literal] = STATE(614), - [sym_concatenated_string] = STATE(614), - [sym_string_literal] = STATE(376), - [sym_identifier] = ACTIONS(950), + [sym_compound_statement] = STATE(288), + [sym_labeled_statement] = STATE(288), + [sym_expression_statement] = STATE(288), + [sym_if_statement] = STATE(288), + [sym_switch_statement] = STATE(288), + [sym_case_statement] = STATE(288), + [sym_while_statement] = STATE(288), + [sym_do_statement] = STATE(288), + [sym_for_statement] = STATE(288), + [sym_return_statement] = STATE(288), + [sym_break_statement] = STATE(288), + [sym_continue_statement] = STATE(288), + [sym_goto_statement] = STATE(288), + [sym__expression] = STATE(606), + [sym_comma_expression] = STATE(1218), + [sym_conditional_expression] = STATE(606), + [sym_assignment_expression] = STATE(606), + [sym_pointer_expression] = STATE(532), + [sym_unary_expression] = STATE(606), + [sym_binary_expression] = STATE(606), + [sym_update_expression] = STATE(606), + [sym_cast_expression] = STATE(606), + [sym_sizeof_expression] = STATE(606), + [sym_subscript_expression] = STATE(532), + [sym_call_expression] = STATE(532), + [sym_field_expression] = STATE(532), + [sym_compound_literal_expression] = STATE(606), + [sym_parenthesized_expression] = STATE(532), + [sym_char_literal] = STATE(606), + [sym_concatenated_string] = STATE(606), + [sym_string_literal] = STATE(379), + [sym_identifier] = ACTIONS(952), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -14122,37 +14140,37 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [70] = { - [sym_compound_statement] = STATE(267), - [sym_labeled_statement] = STATE(267), - [sym_expression_statement] = STATE(267), - [sym_if_statement] = STATE(267), - [sym_switch_statement] = STATE(267), - [sym_case_statement] = STATE(267), - [sym_while_statement] = STATE(267), - [sym_do_statement] = STATE(267), - [sym_for_statement] = STATE(267), - [sym_return_statement] = STATE(267), - [sym_break_statement] = STATE(267), - [sym_continue_statement] = STATE(267), - [sym_goto_statement] = STATE(267), - [sym__expression] = STATE(616), - [sym_comma_expression] = STATE(1170), - [sym_conditional_expression] = STATE(616), - [sym_assignment_expression] = STATE(616), - [sym_pointer_expression] = STATE(505), - [sym_unary_expression] = STATE(616), - [sym_binary_expression] = STATE(616), - [sym_update_expression] = STATE(616), - [sym_cast_expression] = STATE(616), - [sym_sizeof_expression] = STATE(616), - [sym_subscript_expression] = STATE(505), - [sym_call_expression] = STATE(505), - [sym_field_expression] = STATE(505), - [sym_compound_literal_expression] = STATE(616), - [sym_parenthesized_expression] = STATE(505), - [sym_char_literal] = STATE(616), - [sym_concatenated_string] = STATE(616), - [sym_string_literal] = STATE(376), + [sym_compound_statement] = STATE(1233), + [sym_labeled_statement] = STATE(1233), + [sym_expression_statement] = STATE(1233), + [sym_if_statement] = STATE(1233), + [sym_switch_statement] = STATE(1233), + [sym_case_statement] = STATE(1233), + [sym_while_statement] = STATE(1233), + [sym_do_statement] = STATE(1233), + [sym_for_statement] = STATE(1233), + [sym_return_statement] = STATE(1233), + [sym_break_statement] = STATE(1233), + [sym_continue_statement] = STATE(1233), + [sym_goto_statement] = STATE(1233), + [sym__expression] = STATE(606), + [sym_comma_expression] = STATE(1218), + [sym_conditional_expression] = STATE(606), + [sym_assignment_expression] = STATE(606), + [sym_pointer_expression] = STATE(532), + [sym_unary_expression] = STATE(606), + [sym_binary_expression] = STATE(606), + [sym_update_expression] = STATE(606), + [sym_cast_expression] = STATE(606), + [sym_sizeof_expression] = STATE(606), + [sym_subscript_expression] = STATE(532), + [sym_call_expression] = STATE(532), + [sym_field_expression] = STATE(532), + [sym_compound_literal_expression] = STATE(606), + [sym_parenthesized_expression] = STATE(532), + [sym_char_literal] = STATE(606), + [sym_concatenated_string] = STATE(606), + [sym_string_literal] = STATE(379), [sym_identifier] = ACTIONS(952), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -14161,23 +14179,23 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(304), - [anon_sym_LBRACE] = ACTIONS(310), - [anon_sym_if] = ACTIONS(316), - [anon_sym_switch] = ACTIONS(318), - [anon_sym_case] = ACTIONS(320), - [anon_sym_default] = ACTIONS(322), - [anon_sym_while] = ACTIONS(324), - [anon_sym_do] = ACTIONS(326), - [anon_sym_for] = ACTIONS(328), - [anon_sym_return] = ACTIONS(330), - [anon_sym_break] = ACTIONS(332), - [anon_sym_continue] = ACTIONS(334), - [anon_sym_goto] = ACTIONS(336), + [anon_sym_SEMI] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(35), + [anon_sym_if] = ACTIONS(51), + [anon_sym_switch] = ACTIONS(53), + [anon_sym_case] = ACTIONS(55), + [anon_sym_default] = ACTIONS(57), + [anon_sym_while] = ACTIONS(59), + [anon_sym_do] = ACTIONS(61), + [anon_sym_for] = ACTIONS(63), + [anon_sym_return] = ACTIONS(65), + [anon_sym_break] = ACTIONS(67), + [anon_sym_continue] = ACTIONS(69), + [anon_sym_goto] = ACTIONS(71), [anon_sym_DASH_DASH] = ACTIONS(73), [anon_sym_PLUS_PLUS] = ACTIONS(73), [anon_sym_sizeof] = ACTIONS(75), - [sym_number_literal] = ACTIONS(338), + [sym_number_literal] = ACTIONS(77), [anon_sym_L_SQUOTE] = ACTIONS(79), [anon_sym_u_SQUOTE] = ACTIONS(79), [anon_sym_U_SQUOTE] = ACTIONS(79), @@ -14188,44 +14206,44 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_U_DQUOTE] = ACTIONS(81), [anon_sym_u8_DQUOTE] = ACTIONS(81), [anon_sym_DQUOTE] = ACTIONS(81), - [sym_true] = ACTIONS(340), - [sym_false] = ACTIONS(340), - [sym_null] = ACTIONS(340), + [sym_true] = ACTIONS(83), + [sym_false] = ACTIONS(83), + [sym_null] = ACTIONS(83), [sym_comment] = ACTIONS(3), }, [71] = { - [sym_compound_statement] = STATE(266), - [sym_labeled_statement] = STATE(266), - [sym_expression_statement] = STATE(266), - [sym_if_statement] = STATE(266), - [sym_switch_statement] = STATE(266), - [sym_case_statement] = STATE(266), - [sym_while_statement] = STATE(266), - [sym_do_statement] = STATE(266), - [sym_for_statement] = STATE(266), - [sym_return_statement] = STATE(266), - [sym_break_statement] = STATE(266), - [sym_continue_statement] = STATE(266), - [sym_goto_statement] = STATE(266), - [sym__expression] = STATE(616), - [sym_comma_expression] = STATE(1170), - [sym_conditional_expression] = STATE(616), - [sym_assignment_expression] = STATE(616), - [sym_pointer_expression] = STATE(505), - [sym_unary_expression] = STATE(616), - [sym_binary_expression] = STATE(616), - [sym_update_expression] = STATE(616), - [sym_cast_expression] = STATE(616), - [sym_sizeof_expression] = STATE(616), - [sym_subscript_expression] = STATE(505), - [sym_call_expression] = STATE(505), - [sym_field_expression] = STATE(505), - [sym_compound_literal_expression] = STATE(616), - [sym_parenthesized_expression] = STATE(505), - [sym_char_literal] = STATE(616), - [sym_concatenated_string] = STATE(616), - [sym_string_literal] = STATE(376), - [sym_identifier] = ACTIONS(952), + [sym_compound_statement] = STATE(153), + [sym_labeled_statement] = STATE(153), + [sym_expression_statement] = STATE(153), + [sym_if_statement] = STATE(153), + [sym_switch_statement] = STATE(153), + [sym_case_statement] = STATE(153), + [sym_while_statement] = STATE(153), + [sym_do_statement] = STATE(153), + [sym_for_statement] = STATE(153), + [sym_return_statement] = STATE(153), + [sym_break_statement] = STATE(153), + [sym_continue_statement] = STATE(153), + [sym_goto_statement] = STATE(153), + [sym__expression] = STATE(582), + [sym_comma_expression] = STATE(1083), + [sym_conditional_expression] = STATE(582), + [sym_assignment_expression] = STATE(582), + [sym_pointer_expression] = STATE(532), + [sym_unary_expression] = STATE(582), + [sym_binary_expression] = STATE(582), + [sym_update_expression] = STATE(582), + [sym_cast_expression] = STATE(582), + [sym_sizeof_expression] = STATE(582), + [sym_subscript_expression] = STATE(532), + [sym_call_expression] = STATE(532), + [sym_field_expression] = STATE(532), + [sym_compound_literal_expression] = STATE(582), + [sym_parenthesized_expression] = STATE(532), + [sym_char_literal] = STATE(582), + [sym_concatenated_string] = STATE(582), + [sym_string_literal] = STATE(379), + [sym_identifier] = ACTIONS(954), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -14233,23 +14251,23 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(304), - [anon_sym_LBRACE] = ACTIONS(310), - [anon_sym_if] = ACTIONS(316), - [anon_sym_switch] = ACTIONS(318), - [anon_sym_case] = ACTIONS(320), - [anon_sym_default] = ACTIONS(322), - [anon_sym_while] = ACTIONS(324), - [anon_sym_do] = ACTIONS(326), - [anon_sym_for] = ACTIONS(328), - [anon_sym_return] = ACTIONS(330), - [anon_sym_break] = ACTIONS(332), - [anon_sym_continue] = ACTIONS(334), - [anon_sym_goto] = ACTIONS(336), + [anon_sym_SEMI] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(109), + [anon_sym_if] = ACTIONS(113), + [anon_sym_switch] = ACTIONS(115), + [anon_sym_case] = ACTIONS(117), + [anon_sym_default] = ACTIONS(119), + [anon_sym_while] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_return] = ACTIONS(127), + [anon_sym_break] = ACTIONS(129), + [anon_sym_continue] = ACTIONS(131), + [anon_sym_goto] = ACTIONS(133), [anon_sym_DASH_DASH] = ACTIONS(73), [anon_sym_PLUS_PLUS] = ACTIONS(73), [anon_sym_sizeof] = ACTIONS(75), - [sym_number_literal] = ACTIONS(338), + [sym_number_literal] = ACTIONS(135), [anon_sym_L_SQUOTE] = ACTIONS(79), [anon_sym_u_SQUOTE] = ACTIONS(79), [anon_sym_U_SQUOTE] = ACTIONS(79), @@ -14260,43 +14278,43 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_U_DQUOTE] = ACTIONS(81), [anon_sym_u8_DQUOTE] = ACTIONS(81), [anon_sym_DQUOTE] = ACTIONS(81), - [sym_true] = ACTIONS(340), - [sym_false] = ACTIONS(340), - [sym_null] = ACTIONS(340), + [sym_true] = ACTIONS(137), + [sym_false] = ACTIONS(137), + [sym_null] = ACTIONS(137), [sym_comment] = ACTIONS(3), }, [72] = { - [sym_compound_statement] = STATE(270), - [sym_labeled_statement] = STATE(270), - [sym_expression_statement] = STATE(270), - [sym_if_statement] = STATE(270), - [sym_switch_statement] = STATE(270), - [sym_case_statement] = STATE(270), - [sym_while_statement] = STATE(270), - [sym_do_statement] = STATE(270), - [sym_for_statement] = STATE(270), - [sym_return_statement] = STATE(270), - [sym_break_statement] = STATE(270), - [sym_continue_statement] = STATE(270), - [sym_goto_statement] = STATE(270), - [sym__expression] = STATE(596), - [sym_comma_expression] = STATE(1096), - [sym_conditional_expression] = STATE(596), - [sym_assignment_expression] = STATE(596), - [sym_pointer_expression] = STATE(505), - [sym_unary_expression] = STATE(596), - [sym_binary_expression] = STATE(596), - [sym_update_expression] = STATE(596), - [sym_cast_expression] = STATE(596), - [sym_sizeof_expression] = STATE(596), - [sym_subscript_expression] = STATE(505), - [sym_call_expression] = STATE(505), - [sym_field_expression] = STATE(505), - [sym_compound_literal_expression] = STATE(596), - [sym_parenthesized_expression] = STATE(505), - [sym_char_literal] = STATE(596), - [sym_concatenated_string] = STATE(596), - [sym_string_literal] = STATE(376), + [sym_compound_statement] = STATE(156), + [sym_labeled_statement] = STATE(156), + [sym_expression_statement] = STATE(156), + [sym_if_statement] = STATE(156), + [sym_switch_statement] = STATE(156), + [sym_case_statement] = STATE(156), + [sym_while_statement] = STATE(156), + [sym_do_statement] = STATE(156), + [sym_for_statement] = STATE(156), + [sym_return_statement] = STATE(156), + [sym_break_statement] = STATE(156), + [sym_continue_statement] = STATE(156), + [sym_goto_statement] = STATE(156), + [sym__expression] = STATE(582), + [sym_comma_expression] = STATE(1083), + [sym_conditional_expression] = STATE(582), + [sym_assignment_expression] = STATE(582), + [sym_pointer_expression] = STATE(532), + [sym_unary_expression] = STATE(582), + [sym_binary_expression] = STATE(582), + [sym_update_expression] = STATE(582), + [sym_cast_expression] = STATE(582), + [sym_sizeof_expression] = STATE(582), + [sym_subscript_expression] = STATE(532), + [sym_call_expression] = STATE(532), + [sym_field_expression] = STATE(532), + [sym_compound_literal_expression] = STATE(582), + [sym_parenthesized_expression] = STATE(532), + [sym_char_literal] = STATE(582), + [sym_concatenated_string] = STATE(582), + [sym_string_literal] = STATE(379), [sym_identifier] = ACTIONS(954), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -14305,23 +14323,23 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(444), - [anon_sym_LBRACE] = ACTIONS(450), - [anon_sym_if] = ACTIONS(454), - [anon_sym_switch] = ACTIONS(456), - [anon_sym_case] = ACTIONS(458), - [anon_sym_default] = ACTIONS(460), - [anon_sym_while] = ACTIONS(462), - [anon_sym_do] = ACTIONS(464), - [anon_sym_for] = ACTIONS(466), - [anon_sym_return] = ACTIONS(468), - [anon_sym_break] = ACTIONS(470), - [anon_sym_continue] = ACTIONS(472), - [anon_sym_goto] = ACTIONS(474), + [anon_sym_SEMI] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(109), + [anon_sym_if] = ACTIONS(113), + [anon_sym_switch] = ACTIONS(115), + [anon_sym_case] = ACTIONS(117), + [anon_sym_default] = ACTIONS(119), + [anon_sym_while] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_return] = ACTIONS(127), + [anon_sym_break] = ACTIONS(129), + [anon_sym_continue] = ACTIONS(131), + [anon_sym_goto] = ACTIONS(133), [anon_sym_DASH_DASH] = ACTIONS(73), [anon_sym_PLUS_PLUS] = ACTIONS(73), [anon_sym_sizeof] = ACTIONS(75), - [sym_number_literal] = ACTIONS(476), + [sym_number_literal] = ACTIONS(135), [anon_sym_L_SQUOTE] = ACTIONS(79), [anon_sym_u_SQUOTE] = ACTIONS(79), [anon_sym_U_SQUOTE] = ACTIONS(79), @@ -14332,43 +14350,43 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_U_DQUOTE] = ACTIONS(81), [anon_sym_u8_DQUOTE] = ACTIONS(81), [anon_sym_DQUOTE] = ACTIONS(81), - [sym_true] = ACTIONS(478), - [sym_false] = ACTIONS(478), - [sym_null] = ACTIONS(478), + [sym_true] = ACTIONS(137), + [sym_false] = ACTIONS(137), + [sym_null] = ACTIONS(137), [sym_comment] = ACTIONS(3), }, [73] = { - [sym_compound_statement] = STATE(265), - [sym_labeled_statement] = STATE(265), - [sym_expression_statement] = STATE(265), - [sym_if_statement] = STATE(265), - [sym_switch_statement] = STATE(265), - [sym_case_statement] = STATE(265), - [sym_while_statement] = STATE(265), - [sym_do_statement] = STATE(265), - [sym_for_statement] = STATE(265), - [sym_return_statement] = STATE(265), - [sym_break_statement] = STATE(265), - [sym_continue_statement] = STATE(265), - [sym_goto_statement] = STATE(265), - [sym__expression] = STATE(616), - [sym_comma_expression] = STATE(1170), - [sym_conditional_expression] = STATE(616), - [sym_assignment_expression] = STATE(616), - [sym_pointer_expression] = STATE(505), - [sym_unary_expression] = STATE(616), - [sym_binary_expression] = STATE(616), - [sym_update_expression] = STATE(616), - [sym_cast_expression] = STATE(616), - [sym_sizeof_expression] = STATE(616), - [sym_subscript_expression] = STATE(505), - [sym_call_expression] = STATE(505), - [sym_field_expression] = STATE(505), - [sym_compound_literal_expression] = STATE(616), - [sym_parenthesized_expression] = STATE(505), - [sym_char_literal] = STATE(616), - [sym_concatenated_string] = STATE(616), - [sym_string_literal] = STATE(376), + [sym_compound_statement] = STATE(1225), + [sym_labeled_statement] = STATE(1225), + [sym_expression_statement] = STATE(1225), + [sym_if_statement] = STATE(1225), + [sym_switch_statement] = STATE(1225), + [sym_case_statement] = STATE(1225), + [sym_while_statement] = STATE(1225), + [sym_do_statement] = STATE(1225), + [sym_for_statement] = STATE(1225), + [sym_return_statement] = STATE(1225), + [sym_break_statement] = STATE(1225), + [sym_continue_statement] = STATE(1225), + [sym_goto_statement] = STATE(1225), + [sym__expression] = STATE(606), + [sym_comma_expression] = STATE(1218), + [sym_conditional_expression] = STATE(606), + [sym_assignment_expression] = STATE(606), + [sym_pointer_expression] = STATE(532), + [sym_unary_expression] = STATE(606), + [sym_binary_expression] = STATE(606), + [sym_update_expression] = STATE(606), + [sym_cast_expression] = STATE(606), + [sym_sizeof_expression] = STATE(606), + [sym_subscript_expression] = STATE(532), + [sym_call_expression] = STATE(532), + [sym_field_expression] = STATE(532), + [sym_compound_literal_expression] = STATE(606), + [sym_parenthesized_expression] = STATE(532), + [sym_char_literal] = STATE(606), + [sym_concatenated_string] = STATE(606), + [sym_string_literal] = STATE(379), [sym_identifier] = ACTIONS(952), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -14377,23 +14395,23 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(304), - [anon_sym_LBRACE] = ACTIONS(310), - [anon_sym_if] = ACTIONS(316), - [anon_sym_switch] = ACTIONS(318), - [anon_sym_case] = ACTIONS(320), - [anon_sym_default] = ACTIONS(322), - [anon_sym_while] = ACTIONS(324), - [anon_sym_do] = ACTIONS(326), - [anon_sym_for] = ACTIONS(328), - [anon_sym_return] = ACTIONS(330), - [anon_sym_break] = ACTIONS(332), - [anon_sym_continue] = ACTIONS(334), - [anon_sym_goto] = ACTIONS(336), + [anon_sym_SEMI] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(35), + [anon_sym_if] = ACTIONS(51), + [anon_sym_switch] = ACTIONS(53), + [anon_sym_case] = ACTIONS(55), + [anon_sym_default] = ACTIONS(57), + [anon_sym_while] = ACTIONS(59), + [anon_sym_do] = ACTIONS(61), + [anon_sym_for] = ACTIONS(63), + [anon_sym_return] = ACTIONS(65), + [anon_sym_break] = ACTIONS(67), + [anon_sym_continue] = ACTIONS(69), + [anon_sym_goto] = ACTIONS(71), [anon_sym_DASH_DASH] = ACTIONS(73), [anon_sym_PLUS_PLUS] = ACTIONS(73), [anon_sym_sizeof] = ACTIONS(75), - [sym_number_literal] = ACTIONS(338), + [sym_number_literal] = ACTIONS(77), [anon_sym_L_SQUOTE] = ACTIONS(79), [anon_sym_u_SQUOTE] = ACTIONS(79), [anon_sym_U_SQUOTE] = ACTIONS(79), @@ -14404,44 +14422,44 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_U_DQUOTE] = ACTIONS(81), [anon_sym_u8_DQUOTE] = ACTIONS(81), [anon_sym_DQUOTE] = ACTIONS(81), - [sym_true] = ACTIONS(340), - [sym_false] = ACTIONS(340), - [sym_null] = ACTIONS(340), + [sym_true] = ACTIONS(83), + [sym_false] = ACTIONS(83), + [sym_null] = ACTIONS(83), [sym_comment] = ACTIONS(3), }, [74] = { - [sym_compound_statement] = STATE(264), - [sym_labeled_statement] = STATE(264), - [sym_expression_statement] = STATE(264), - [sym_if_statement] = STATE(264), - [sym_switch_statement] = STATE(264), - [sym_case_statement] = STATE(264), - [sym_while_statement] = STATE(264), - [sym_do_statement] = STATE(264), - [sym_for_statement] = STATE(264), - [sym_return_statement] = STATE(264), - [sym_break_statement] = STATE(264), - [sym_continue_statement] = STATE(264), - [sym_goto_statement] = STATE(264), - [sym__expression] = STATE(616), - [sym_comma_expression] = STATE(1170), - [sym_conditional_expression] = STATE(616), - [sym_assignment_expression] = STATE(616), - [sym_pointer_expression] = STATE(505), - [sym_unary_expression] = STATE(616), - [sym_binary_expression] = STATE(616), - [sym_update_expression] = STATE(616), - [sym_cast_expression] = STATE(616), - [sym_sizeof_expression] = STATE(616), - [sym_subscript_expression] = STATE(505), - [sym_call_expression] = STATE(505), - [sym_field_expression] = STATE(505), - [sym_compound_literal_expression] = STATE(616), - [sym_parenthesized_expression] = STATE(505), - [sym_char_literal] = STATE(616), - [sym_concatenated_string] = STATE(616), - [sym_string_literal] = STATE(376), - [sym_identifier] = ACTIONS(952), + [sym_compound_statement] = STATE(148), + [sym_labeled_statement] = STATE(148), + [sym_expression_statement] = STATE(148), + [sym_if_statement] = STATE(148), + [sym_switch_statement] = STATE(148), + [sym_case_statement] = STATE(148), + [sym_while_statement] = STATE(148), + [sym_do_statement] = STATE(148), + [sym_for_statement] = STATE(148), + [sym_return_statement] = STATE(148), + [sym_break_statement] = STATE(148), + [sym_continue_statement] = STATE(148), + [sym_goto_statement] = STATE(148), + [sym__expression] = STATE(582), + [sym_comma_expression] = STATE(1083), + [sym_conditional_expression] = STATE(582), + [sym_assignment_expression] = STATE(582), + [sym_pointer_expression] = STATE(532), + [sym_unary_expression] = STATE(582), + [sym_binary_expression] = STATE(582), + [sym_update_expression] = STATE(582), + [sym_cast_expression] = STATE(582), + [sym_sizeof_expression] = STATE(582), + [sym_subscript_expression] = STATE(532), + [sym_call_expression] = STATE(532), + [sym_field_expression] = STATE(532), + [sym_compound_literal_expression] = STATE(582), + [sym_parenthesized_expression] = STATE(532), + [sym_char_literal] = STATE(582), + [sym_concatenated_string] = STATE(582), + [sym_string_literal] = STATE(379), + [sym_identifier] = ACTIONS(954), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -14449,23 +14467,23 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(304), - [anon_sym_LBRACE] = ACTIONS(310), - [anon_sym_if] = ACTIONS(316), - [anon_sym_switch] = ACTIONS(318), - [anon_sym_case] = ACTIONS(320), - [anon_sym_default] = ACTIONS(322), - [anon_sym_while] = ACTIONS(324), - [anon_sym_do] = ACTIONS(326), - [anon_sym_for] = ACTIONS(328), - [anon_sym_return] = ACTIONS(330), - [anon_sym_break] = ACTIONS(332), - [anon_sym_continue] = ACTIONS(334), - [anon_sym_goto] = ACTIONS(336), + [anon_sym_SEMI] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(109), + [anon_sym_if] = ACTIONS(113), + [anon_sym_switch] = ACTIONS(115), + [anon_sym_case] = ACTIONS(117), + [anon_sym_default] = ACTIONS(119), + [anon_sym_while] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_return] = ACTIONS(127), + [anon_sym_break] = ACTIONS(129), + [anon_sym_continue] = ACTIONS(131), + [anon_sym_goto] = ACTIONS(133), [anon_sym_DASH_DASH] = ACTIONS(73), [anon_sym_PLUS_PLUS] = ACTIONS(73), [anon_sym_sizeof] = ACTIONS(75), - [sym_number_literal] = ACTIONS(338), + [sym_number_literal] = ACTIONS(135), [anon_sym_L_SQUOTE] = ACTIONS(79), [anon_sym_u_SQUOTE] = ACTIONS(79), [anon_sym_U_SQUOTE] = ACTIONS(79), @@ -14476,43 +14494,43 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_U_DQUOTE] = ACTIONS(81), [anon_sym_u8_DQUOTE] = ACTIONS(81), [anon_sym_DQUOTE] = ACTIONS(81), - [sym_true] = ACTIONS(340), - [sym_false] = ACTIONS(340), - [sym_null] = ACTIONS(340), + [sym_true] = ACTIONS(137), + [sym_false] = ACTIONS(137), + [sym_null] = ACTIONS(137), [sym_comment] = ACTIONS(3), }, [75] = { - [sym_compound_statement] = STATE(263), - [sym_labeled_statement] = STATE(263), - [sym_expression_statement] = STATE(263), - [sym_if_statement] = STATE(263), - [sym_switch_statement] = STATE(263), - [sym_case_statement] = STATE(263), - [sym_while_statement] = STATE(263), - [sym_do_statement] = STATE(263), - [sym_for_statement] = STATE(263), - [sym_return_statement] = STATE(263), - [sym_break_statement] = STATE(263), - [sym_continue_statement] = STATE(263), - [sym_goto_statement] = STATE(263), - [sym__expression] = STATE(596), - [sym_comma_expression] = STATE(1096), - [sym_conditional_expression] = STATE(596), - [sym_assignment_expression] = STATE(596), - [sym_pointer_expression] = STATE(505), - [sym_unary_expression] = STATE(596), - [sym_binary_expression] = STATE(596), - [sym_update_expression] = STATE(596), - [sym_cast_expression] = STATE(596), - [sym_sizeof_expression] = STATE(596), - [sym_subscript_expression] = STATE(505), - [sym_call_expression] = STATE(505), - [sym_field_expression] = STATE(505), - [sym_compound_literal_expression] = STATE(596), - [sym_parenthesized_expression] = STATE(505), - [sym_char_literal] = STATE(596), - [sym_concatenated_string] = STATE(596), - [sym_string_literal] = STATE(376), + [sym_compound_statement] = STATE(161), + [sym_labeled_statement] = STATE(161), + [sym_expression_statement] = STATE(161), + [sym_if_statement] = STATE(161), + [sym_switch_statement] = STATE(161), + [sym_case_statement] = STATE(161), + [sym_while_statement] = STATE(161), + [sym_do_statement] = STATE(161), + [sym_for_statement] = STATE(161), + [sym_return_statement] = STATE(161), + [sym_break_statement] = STATE(161), + [sym_continue_statement] = STATE(161), + [sym_goto_statement] = STATE(161), + [sym__expression] = STATE(582), + [sym_comma_expression] = STATE(1083), + [sym_conditional_expression] = STATE(582), + [sym_assignment_expression] = STATE(582), + [sym_pointer_expression] = STATE(532), + [sym_unary_expression] = STATE(582), + [sym_binary_expression] = STATE(582), + [sym_update_expression] = STATE(582), + [sym_cast_expression] = STATE(582), + [sym_sizeof_expression] = STATE(582), + [sym_subscript_expression] = STATE(532), + [sym_call_expression] = STATE(532), + [sym_field_expression] = STATE(532), + [sym_compound_literal_expression] = STATE(582), + [sym_parenthesized_expression] = STATE(532), + [sym_char_literal] = STATE(582), + [sym_concatenated_string] = STATE(582), + [sym_string_literal] = STATE(379), [sym_identifier] = ACTIONS(954), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -14521,23 +14539,23 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(444), - [anon_sym_LBRACE] = ACTIONS(450), - [anon_sym_if] = ACTIONS(454), - [anon_sym_switch] = ACTIONS(456), - [anon_sym_case] = ACTIONS(458), - [anon_sym_default] = ACTIONS(460), - [anon_sym_while] = ACTIONS(462), - [anon_sym_do] = ACTIONS(464), - [anon_sym_for] = ACTIONS(466), - [anon_sym_return] = ACTIONS(468), - [anon_sym_break] = ACTIONS(470), - [anon_sym_continue] = ACTIONS(472), - [anon_sym_goto] = ACTIONS(474), + [anon_sym_SEMI] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(109), + [anon_sym_if] = ACTIONS(113), + [anon_sym_switch] = ACTIONS(115), + [anon_sym_case] = ACTIONS(117), + [anon_sym_default] = ACTIONS(119), + [anon_sym_while] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_return] = ACTIONS(127), + [anon_sym_break] = ACTIONS(129), + [anon_sym_continue] = ACTIONS(131), + [anon_sym_goto] = ACTIONS(133), [anon_sym_DASH_DASH] = ACTIONS(73), [anon_sym_PLUS_PLUS] = ACTIONS(73), [anon_sym_sizeof] = ACTIONS(75), - [sym_number_literal] = ACTIONS(476), + [sym_number_literal] = ACTIONS(135), [anon_sym_L_SQUOTE] = ACTIONS(79), [anon_sym_u_SQUOTE] = ACTIONS(79), [anon_sym_U_SQUOTE] = ACTIONS(79), @@ -14548,44 +14566,44 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_U_DQUOTE] = ACTIONS(81), [anon_sym_u8_DQUOTE] = ACTIONS(81), [anon_sym_DQUOTE] = ACTIONS(81), - [sym_true] = ACTIONS(478), - [sym_false] = ACTIONS(478), - [sym_null] = ACTIONS(478), + [sym_true] = ACTIONS(137), + [sym_false] = ACTIONS(137), + [sym_null] = ACTIONS(137), [sym_comment] = ACTIONS(3), }, [76] = { - [sym_compound_statement] = STATE(262), - [sym_labeled_statement] = STATE(262), - [sym_expression_statement] = STATE(262), - [sym_if_statement] = STATE(262), - [sym_switch_statement] = STATE(262), - [sym_case_statement] = STATE(262), - [sym_while_statement] = STATE(262), - [sym_do_statement] = STATE(262), - [sym_for_statement] = STATE(262), - [sym_return_statement] = STATE(262), - [sym_break_statement] = STATE(262), - [sym_continue_statement] = STATE(262), - [sym_goto_statement] = STATE(262), - [sym__expression] = STATE(616), - [sym_comma_expression] = STATE(1170), - [sym_conditional_expression] = STATE(616), - [sym_assignment_expression] = STATE(616), - [sym_pointer_expression] = STATE(505), - [sym_unary_expression] = STATE(616), - [sym_binary_expression] = STATE(616), - [sym_update_expression] = STATE(616), - [sym_cast_expression] = STATE(616), - [sym_sizeof_expression] = STATE(616), - [sym_subscript_expression] = STATE(505), - [sym_call_expression] = STATE(505), - [sym_field_expression] = STATE(505), - [sym_compound_literal_expression] = STATE(616), - [sym_parenthesized_expression] = STATE(505), - [sym_char_literal] = STATE(616), - [sym_concatenated_string] = STATE(616), - [sym_string_literal] = STATE(376), - [sym_identifier] = ACTIONS(952), + [sym_compound_statement] = STATE(157), + [sym_labeled_statement] = STATE(157), + [sym_expression_statement] = STATE(157), + [sym_if_statement] = STATE(157), + [sym_switch_statement] = STATE(157), + [sym_case_statement] = STATE(157), + [sym_while_statement] = STATE(157), + [sym_do_statement] = STATE(157), + [sym_for_statement] = STATE(157), + [sym_return_statement] = STATE(157), + [sym_break_statement] = STATE(157), + [sym_continue_statement] = STATE(157), + [sym_goto_statement] = STATE(157), + [sym__expression] = STATE(582), + [sym_comma_expression] = STATE(1083), + [sym_conditional_expression] = STATE(582), + [sym_assignment_expression] = STATE(582), + [sym_pointer_expression] = STATE(532), + [sym_unary_expression] = STATE(582), + [sym_binary_expression] = STATE(582), + [sym_update_expression] = STATE(582), + [sym_cast_expression] = STATE(582), + [sym_sizeof_expression] = STATE(582), + [sym_subscript_expression] = STATE(532), + [sym_call_expression] = STATE(532), + [sym_field_expression] = STATE(532), + [sym_compound_literal_expression] = STATE(582), + [sym_parenthesized_expression] = STATE(532), + [sym_char_literal] = STATE(582), + [sym_concatenated_string] = STATE(582), + [sym_string_literal] = STATE(379), + [sym_identifier] = ACTIONS(954), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -14593,23 +14611,23 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(304), - [anon_sym_LBRACE] = ACTIONS(310), - [anon_sym_if] = ACTIONS(316), - [anon_sym_switch] = ACTIONS(318), - [anon_sym_case] = ACTIONS(320), - [anon_sym_default] = ACTIONS(322), - [anon_sym_while] = ACTIONS(324), - [anon_sym_do] = ACTIONS(326), - [anon_sym_for] = ACTIONS(328), - [anon_sym_return] = ACTIONS(330), - [anon_sym_break] = ACTIONS(332), - [anon_sym_continue] = ACTIONS(334), - [anon_sym_goto] = ACTIONS(336), + [anon_sym_SEMI] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(109), + [anon_sym_if] = ACTIONS(113), + [anon_sym_switch] = ACTIONS(115), + [anon_sym_case] = ACTIONS(117), + [anon_sym_default] = ACTIONS(119), + [anon_sym_while] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_return] = ACTIONS(127), + [anon_sym_break] = ACTIONS(129), + [anon_sym_continue] = ACTIONS(131), + [anon_sym_goto] = ACTIONS(133), [anon_sym_DASH_DASH] = ACTIONS(73), [anon_sym_PLUS_PLUS] = ACTIONS(73), [anon_sym_sizeof] = ACTIONS(75), - [sym_number_literal] = ACTIONS(338), + [sym_number_literal] = ACTIONS(135), [anon_sym_L_SQUOTE] = ACTIONS(79), [anon_sym_u_SQUOTE] = ACTIONS(79), [anon_sym_U_SQUOTE] = ACTIONS(79), @@ -14620,44 +14638,44 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_U_DQUOTE] = ACTIONS(81), [anon_sym_u8_DQUOTE] = ACTIONS(81), [anon_sym_DQUOTE] = ACTIONS(81), - [sym_true] = ACTIONS(340), - [sym_false] = ACTIONS(340), - [sym_null] = ACTIONS(340), + [sym_true] = ACTIONS(137), + [sym_false] = ACTIONS(137), + [sym_null] = ACTIONS(137), [sym_comment] = ACTIONS(3), }, [77] = { - [sym_compound_statement] = STATE(261), - [sym_labeled_statement] = STATE(261), - [sym_expression_statement] = STATE(261), - [sym_if_statement] = STATE(261), - [sym_switch_statement] = STATE(261), - [sym_case_statement] = STATE(261), - [sym_while_statement] = STATE(261), - [sym_do_statement] = STATE(261), - [sym_for_statement] = STATE(261), - [sym_return_statement] = STATE(261), - [sym_break_statement] = STATE(261), - [sym_continue_statement] = STATE(261), - [sym_goto_statement] = STATE(261), - [sym__expression] = STATE(616), - [sym_comma_expression] = STATE(1170), - [sym_conditional_expression] = STATE(616), - [sym_assignment_expression] = STATE(616), - [sym_pointer_expression] = STATE(505), - [sym_unary_expression] = STATE(616), - [sym_binary_expression] = STATE(616), - [sym_update_expression] = STATE(616), - [sym_cast_expression] = STATE(616), - [sym_sizeof_expression] = STATE(616), - [sym_subscript_expression] = STATE(505), - [sym_call_expression] = STATE(505), - [sym_field_expression] = STATE(505), - [sym_compound_literal_expression] = STATE(616), - [sym_parenthesized_expression] = STATE(505), - [sym_char_literal] = STATE(616), - [sym_concatenated_string] = STATE(616), - [sym_string_literal] = STATE(376), - [sym_identifier] = ACTIONS(952), + [sym_compound_statement] = STATE(140), + [sym_labeled_statement] = STATE(140), + [sym_expression_statement] = STATE(140), + [sym_if_statement] = STATE(140), + [sym_switch_statement] = STATE(140), + [sym_case_statement] = STATE(140), + [sym_while_statement] = STATE(140), + [sym_do_statement] = STATE(140), + [sym_for_statement] = STATE(140), + [sym_return_statement] = STATE(140), + [sym_break_statement] = STATE(140), + [sym_continue_statement] = STATE(140), + [sym_goto_statement] = STATE(140), + [sym__expression] = STATE(582), + [sym_comma_expression] = STATE(1083), + [sym_conditional_expression] = STATE(582), + [sym_assignment_expression] = STATE(582), + [sym_pointer_expression] = STATE(532), + [sym_unary_expression] = STATE(582), + [sym_binary_expression] = STATE(582), + [sym_update_expression] = STATE(582), + [sym_cast_expression] = STATE(582), + [sym_sizeof_expression] = STATE(582), + [sym_subscript_expression] = STATE(532), + [sym_call_expression] = STATE(532), + [sym_field_expression] = STATE(532), + [sym_compound_literal_expression] = STATE(582), + [sym_parenthesized_expression] = STATE(532), + [sym_char_literal] = STATE(582), + [sym_concatenated_string] = STATE(582), + [sym_string_literal] = STATE(379), + [sym_identifier] = ACTIONS(954), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -14665,23 +14683,23 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(304), - [anon_sym_LBRACE] = ACTIONS(310), - [anon_sym_if] = ACTIONS(316), - [anon_sym_switch] = ACTIONS(318), - [anon_sym_case] = ACTIONS(320), - [anon_sym_default] = ACTIONS(322), - [anon_sym_while] = ACTIONS(324), - [anon_sym_do] = ACTIONS(326), - [anon_sym_for] = ACTIONS(328), - [anon_sym_return] = ACTIONS(330), - [anon_sym_break] = ACTIONS(332), - [anon_sym_continue] = ACTIONS(334), - [anon_sym_goto] = ACTIONS(336), + [anon_sym_SEMI] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(109), + [anon_sym_if] = ACTIONS(113), + [anon_sym_switch] = ACTIONS(115), + [anon_sym_case] = ACTIONS(117), + [anon_sym_default] = ACTIONS(119), + [anon_sym_while] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_return] = ACTIONS(127), + [anon_sym_break] = ACTIONS(129), + [anon_sym_continue] = ACTIONS(131), + [anon_sym_goto] = ACTIONS(133), [anon_sym_DASH_DASH] = ACTIONS(73), [anon_sym_PLUS_PLUS] = ACTIONS(73), [anon_sym_sizeof] = ACTIONS(75), - [sym_number_literal] = ACTIONS(338), + [sym_number_literal] = ACTIONS(135), [anon_sym_L_SQUOTE] = ACTIONS(79), [anon_sym_u_SQUOTE] = ACTIONS(79), [anon_sym_U_SQUOTE] = ACTIONS(79), @@ -14692,44 +14710,44 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_U_DQUOTE] = ACTIONS(81), [anon_sym_u8_DQUOTE] = ACTIONS(81), [anon_sym_DQUOTE] = ACTIONS(81), - [sym_true] = ACTIONS(340), - [sym_false] = ACTIONS(340), - [sym_null] = ACTIONS(340), + [sym_true] = ACTIONS(137), + [sym_false] = ACTIONS(137), + [sym_null] = ACTIONS(137), [sym_comment] = ACTIONS(3), }, [78] = { - [sym_compound_statement] = STATE(259), - [sym_labeled_statement] = STATE(259), - [sym_expression_statement] = STATE(259), - [sym_if_statement] = STATE(259), - [sym_switch_statement] = STATE(259), - [sym_case_statement] = STATE(259), - [sym_while_statement] = STATE(259), - [sym_do_statement] = STATE(259), - [sym_for_statement] = STATE(259), - [sym_return_statement] = STATE(259), - [sym_break_statement] = STATE(259), - [sym_continue_statement] = STATE(259), - [sym_goto_statement] = STATE(259), - [sym__expression] = STATE(616), - [sym_comma_expression] = STATE(1170), - [sym_conditional_expression] = STATE(616), - [sym_assignment_expression] = STATE(616), - [sym_pointer_expression] = STATE(505), - [sym_unary_expression] = STATE(616), - [sym_binary_expression] = STATE(616), - [sym_update_expression] = STATE(616), - [sym_cast_expression] = STATE(616), - [sym_sizeof_expression] = STATE(616), - [sym_subscript_expression] = STATE(505), - [sym_call_expression] = STATE(505), - [sym_field_expression] = STATE(505), - [sym_compound_literal_expression] = STATE(616), - [sym_parenthesized_expression] = STATE(505), - [sym_char_literal] = STATE(616), - [sym_concatenated_string] = STATE(616), - [sym_string_literal] = STATE(376), - [sym_identifier] = ACTIONS(952), + [sym_compound_statement] = STATE(143), + [sym_labeled_statement] = STATE(143), + [sym_expression_statement] = STATE(143), + [sym_if_statement] = STATE(143), + [sym_switch_statement] = STATE(143), + [sym_case_statement] = STATE(143), + [sym_while_statement] = STATE(143), + [sym_do_statement] = STATE(143), + [sym_for_statement] = STATE(143), + [sym_return_statement] = STATE(143), + [sym_break_statement] = STATE(143), + [sym_continue_statement] = STATE(143), + [sym_goto_statement] = STATE(143), + [sym__expression] = STATE(582), + [sym_comma_expression] = STATE(1083), + [sym_conditional_expression] = STATE(582), + [sym_assignment_expression] = STATE(582), + [sym_pointer_expression] = STATE(532), + [sym_unary_expression] = STATE(582), + [sym_binary_expression] = STATE(582), + [sym_update_expression] = STATE(582), + [sym_cast_expression] = STATE(582), + [sym_sizeof_expression] = STATE(582), + [sym_subscript_expression] = STATE(532), + [sym_call_expression] = STATE(532), + [sym_field_expression] = STATE(532), + [sym_compound_literal_expression] = STATE(582), + [sym_parenthesized_expression] = STATE(532), + [sym_char_literal] = STATE(582), + [sym_concatenated_string] = STATE(582), + [sym_string_literal] = STATE(379), + [sym_identifier] = ACTIONS(954), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -14737,23 +14755,23 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(304), - [anon_sym_LBRACE] = ACTIONS(310), - [anon_sym_if] = ACTIONS(316), - [anon_sym_switch] = ACTIONS(318), - [anon_sym_case] = ACTIONS(320), - [anon_sym_default] = ACTIONS(322), - [anon_sym_while] = ACTIONS(324), - [anon_sym_do] = ACTIONS(326), - [anon_sym_for] = ACTIONS(328), - [anon_sym_return] = ACTIONS(330), - [anon_sym_break] = ACTIONS(332), - [anon_sym_continue] = ACTIONS(334), - [anon_sym_goto] = ACTIONS(336), + [anon_sym_SEMI] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(109), + [anon_sym_if] = ACTIONS(113), + [anon_sym_switch] = ACTIONS(115), + [anon_sym_case] = ACTIONS(117), + [anon_sym_default] = ACTIONS(119), + [anon_sym_while] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_return] = ACTIONS(127), + [anon_sym_break] = ACTIONS(129), + [anon_sym_continue] = ACTIONS(131), + [anon_sym_goto] = ACTIONS(133), [anon_sym_DASH_DASH] = ACTIONS(73), [anon_sym_PLUS_PLUS] = ACTIONS(73), [anon_sym_sizeof] = ACTIONS(75), - [sym_number_literal] = ACTIONS(338), + [sym_number_literal] = ACTIONS(135), [anon_sym_L_SQUOTE] = ACTIONS(79), [anon_sym_u_SQUOTE] = ACTIONS(79), [anon_sym_U_SQUOTE] = ACTIONS(79), @@ -14764,44 +14782,44 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_U_DQUOTE] = ACTIONS(81), [anon_sym_u8_DQUOTE] = ACTIONS(81), [anon_sym_DQUOTE] = ACTIONS(81), - [sym_true] = ACTIONS(340), - [sym_false] = ACTIONS(340), - [sym_null] = ACTIONS(340), + [sym_true] = ACTIONS(137), + [sym_false] = ACTIONS(137), + [sym_null] = ACTIONS(137), [sym_comment] = ACTIONS(3), }, [79] = { - [sym_compound_statement] = STATE(258), - [sym_labeled_statement] = STATE(258), - [sym_expression_statement] = STATE(258), - [sym_if_statement] = STATE(258), - [sym_switch_statement] = STATE(258), - [sym_case_statement] = STATE(258), - [sym_while_statement] = STATE(258), - [sym_do_statement] = STATE(258), - [sym_for_statement] = STATE(258), - [sym_return_statement] = STATE(258), - [sym_break_statement] = STATE(258), - [sym_continue_statement] = STATE(258), - [sym_goto_statement] = STATE(258), - [sym__expression] = STATE(616), - [sym_comma_expression] = STATE(1170), - [sym_conditional_expression] = STATE(616), - [sym_assignment_expression] = STATE(616), - [sym_pointer_expression] = STATE(505), - [sym_unary_expression] = STATE(616), - [sym_binary_expression] = STATE(616), - [sym_update_expression] = STATE(616), - [sym_cast_expression] = STATE(616), - [sym_sizeof_expression] = STATE(616), - [sym_subscript_expression] = STATE(505), - [sym_call_expression] = STATE(505), - [sym_field_expression] = STATE(505), - [sym_compound_literal_expression] = STATE(616), - [sym_parenthesized_expression] = STATE(505), - [sym_char_literal] = STATE(616), - [sym_concatenated_string] = STATE(616), - [sym_string_literal] = STATE(376), - [sym_identifier] = ACTIONS(952), + [sym_compound_statement] = STATE(146), + [sym_labeled_statement] = STATE(146), + [sym_expression_statement] = STATE(146), + [sym_if_statement] = STATE(146), + [sym_switch_statement] = STATE(146), + [sym_case_statement] = STATE(146), + [sym_while_statement] = STATE(146), + [sym_do_statement] = STATE(146), + [sym_for_statement] = STATE(146), + [sym_return_statement] = STATE(146), + [sym_break_statement] = STATE(146), + [sym_continue_statement] = STATE(146), + [sym_goto_statement] = STATE(146), + [sym__expression] = STATE(582), + [sym_comma_expression] = STATE(1083), + [sym_conditional_expression] = STATE(582), + [sym_assignment_expression] = STATE(582), + [sym_pointer_expression] = STATE(532), + [sym_unary_expression] = STATE(582), + [sym_binary_expression] = STATE(582), + [sym_update_expression] = STATE(582), + [sym_cast_expression] = STATE(582), + [sym_sizeof_expression] = STATE(582), + [sym_subscript_expression] = STATE(532), + [sym_call_expression] = STATE(532), + [sym_field_expression] = STATE(532), + [sym_compound_literal_expression] = STATE(582), + [sym_parenthesized_expression] = STATE(532), + [sym_char_literal] = STATE(582), + [sym_concatenated_string] = STATE(582), + [sym_string_literal] = STATE(379), + [sym_identifier] = ACTIONS(954), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -14809,23 +14827,23 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(304), - [anon_sym_LBRACE] = ACTIONS(310), - [anon_sym_if] = ACTIONS(316), - [anon_sym_switch] = ACTIONS(318), - [anon_sym_case] = ACTIONS(320), - [anon_sym_default] = ACTIONS(322), - [anon_sym_while] = ACTIONS(324), - [anon_sym_do] = ACTIONS(326), - [anon_sym_for] = ACTIONS(328), - [anon_sym_return] = ACTIONS(330), - [anon_sym_break] = ACTIONS(332), - [anon_sym_continue] = ACTIONS(334), - [anon_sym_goto] = ACTIONS(336), + [anon_sym_SEMI] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(109), + [anon_sym_if] = ACTIONS(113), + [anon_sym_switch] = ACTIONS(115), + [anon_sym_case] = ACTIONS(117), + [anon_sym_default] = ACTIONS(119), + [anon_sym_while] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_return] = ACTIONS(127), + [anon_sym_break] = ACTIONS(129), + [anon_sym_continue] = ACTIONS(131), + [anon_sym_goto] = ACTIONS(133), [anon_sym_DASH_DASH] = ACTIONS(73), [anon_sym_PLUS_PLUS] = ACTIONS(73), [anon_sym_sizeof] = ACTIONS(75), - [sym_number_literal] = ACTIONS(338), + [sym_number_literal] = ACTIONS(135), [anon_sym_L_SQUOTE] = ACTIONS(79), [anon_sym_u_SQUOTE] = ACTIONS(79), [anon_sym_U_SQUOTE] = ACTIONS(79), @@ -14836,44 +14854,44 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_U_DQUOTE] = ACTIONS(81), [anon_sym_u8_DQUOTE] = ACTIONS(81), [anon_sym_DQUOTE] = ACTIONS(81), - [sym_true] = ACTIONS(340), - [sym_false] = ACTIONS(340), - [sym_null] = ACTIONS(340), + [sym_true] = ACTIONS(137), + [sym_false] = ACTIONS(137), + [sym_null] = ACTIONS(137), [sym_comment] = ACTIONS(3), }, [80] = { - [sym_compound_statement] = STATE(257), - [sym_labeled_statement] = STATE(257), - [sym_expression_statement] = STATE(257), - [sym_if_statement] = STATE(257), - [sym_switch_statement] = STATE(257), - [sym_case_statement] = STATE(257), - [sym_while_statement] = STATE(257), - [sym_do_statement] = STATE(257), - [sym_for_statement] = STATE(257), - [sym_return_statement] = STATE(257), - [sym_break_statement] = STATE(257), - [sym_continue_statement] = STATE(257), - [sym_goto_statement] = STATE(257), - [sym__expression] = STATE(616), - [sym_comma_expression] = STATE(1170), - [sym_conditional_expression] = STATE(616), - [sym_assignment_expression] = STATE(616), - [sym_pointer_expression] = STATE(505), - [sym_unary_expression] = STATE(616), - [sym_binary_expression] = STATE(616), - [sym_update_expression] = STATE(616), - [sym_cast_expression] = STATE(616), - [sym_sizeof_expression] = STATE(616), - [sym_subscript_expression] = STATE(505), - [sym_call_expression] = STATE(505), - [sym_field_expression] = STATE(505), - [sym_compound_literal_expression] = STATE(616), - [sym_parenthesized_expression] = STATE(505), - [sym_char_literal] = STATE(616), - [sym_concatenated_string] = STATE(616), - [sym_string_literal] = STATE(376), - [sym_identifier] = ACTIONS(952), + [sym_compound_statement] = STATE(168), + [sym_labeled_statement] = STATE(168), + [sym_expression_statement] = STATE(168), + [sym_if_statement] = STATE(168), + [sym_switch_statement] = STATE(168), + [sym_case_statement] = STATE(168), + [sym_while_statement] = STATE(168), + [sym_do_statement] = STATE(168), + [sym_for_statement] = STATE(168), + [sym_return_statement] = STATE(168), + [sym_break_statement] = STATE(168), + [sym_continue_statement] = STATE(168), + [sym_goto_statement] = STATE(168), + [sym__expression] = STATE(582), + [sym_comma_expression] = STATE(1083), + [sym_conditional_expression] = STATE(582), + [sym_assignment_expression] = STATE(582), + [sym_pointer_expression] = STATE(532), + [sym_unary_expression] = STATE(582), + [sym_binary_expression] = STATE(582), + [sym_update_expression] = STATE(582), + [sym_cast_expression] = STATE(582), + [sym_sizeof_expression] = STATE(582), + [sym_subscript_expression] = STATE(532), + [sym_call_expression] = STATE(532), + [sym_field_expression] = STATE(532), + [sym_compound_literal_expression] = STATE(582), + [sym_parenthesized_expression] = STATE(532), + [sym_char_literal] = STATE(582), + [sym_concatenated_string] = STATE(582), + [sym_string_literal] = STATE(379), + [sym_identifier] = ACTIONS(954), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -14881,23 +14899,23 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(304), - [anon_sym_LBRACE] = ACTIONS(310), - [anon_sym_if] = ACTIONS(316), - [anon_sym_switch] = ACTIONS(318), - [anon_sym_case] = ACTIONS(320), - [anon_sym_default] = ACTIONS(322), - [anon_sym_while] = ACTIONS(324), - [anon_sym_do] = ACTIONS(326), - [anon_sym_for] = ACTIONS(328), - [anon_sym_return] = ACTIONS(330), - [anon_sym_break] = ACTIONS(332), - [anon_sym_continue] = ACTIONS(334), - [anon_sym_goto] = ACTIONS(336), + [anon_sym_SEMI] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(109), + [anon_sym_if] = ACTIONS(113), + [anon_sym_switch] = ACTIONS(115), + [anon_sym_case] = ACTIONS(117), + [anon_sym_default] = ACTIONS(119), + [anon_sym_while] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_return] = ACTIONS(127), + [anon_sym_break] = ACTIONS(129), + [anon_sym_continue] = ACTIONS(131), + [anon_sym_goto] = ACTIONS(133), [anon_sym_DASH_DASH] = ACTIONS(73), [anon_sym_PLUS_PLUS] = ACTIONS(73), [anon_sym_sizeof] = ACTIONS(75), - [sym_number_literal] = ACTIONS(338), + [sym_number_literal] = ACTIONS(135), [anon_sym_L_SQUOTE] = ACTIONS(79), [anon_sym_u_SQUOTE] = ACTIONS(79), [anon_sym_U_SQUOTE] = ACTIONS(79), @@ -14908,43 +14926,43 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_U_DQUOTE] = ACTIONS(81), [anon_sym_u8_DQUOTE] = ACTIONS(81), [anon_sym_DQUOTE] = ACTIONS(81), - [sym_true] = ACTIONS(340), - [sym_false] = ACTIONS(340), - [sym_null] = ACTIONS(340), + [sym_true] = ACTIONS(137), + [sym_false] = ACTIONS(137), + [sym_null] = ACTIONS(137), [sym_comment] = ACTIONS(3), }, [81] = { - [sym_compound_statement] = STATE(260), - [sym_labeled_statement] = STATE(260), - [sym_expression_statement] = STATE(260), - [sym_if_statement] = STATE(260), - [sym_switch_statement] = STATE(260), - [sym_case_statement] = STATE(260), - [sym_while_statement] = STATE(260), - [sym_do_statement] = STATE(260), - [sym_for_statement] = STATE(260), - [sym_return_statement] = STATE(260), - [sym_break_statement] = STATE(260), - [sym_continue_statement] = STATE(260), - [sym_goto_statement] = STATE(260), - [sym__expression] = STATE(596), - [sym_comma_expression] = STATE(1096), - [sym_conditional_expression] = STATE(596), - [sym_assignment_expression] = STATE(596), - [sym_pointer_expression] = STATE(505), - [sym_unary_expression] = STATE(596), - [sym_binary_expression] = STATE(596), - [sym_update_expression] = STATE(596), - [sym_cast_expression] = STATE(596), - [sym_sizeof_expression] = STATE(596), - [sym_subscript_expression] = STATE(505), - [sym_call_expression] = STATE(505), - [sym_field_expression] = STATE(505), - [sym_compound_literal_expression] = STATE(596), - [sym_parenthesized_expression] = STATE(505), - [sym_char_literal] = STATE(596), - [sym_concatenated_string] = STATE(596), - [sym_string_literal] = STATE(376), + [sym_compound_statement] = STATE(167), + [sym_labeled_statement] = STATE(167), + [sym_expression_statement] = STATE(167), + [sym_if_statement] = STATE(167), + [sym_switch_statement] = STATE(167), + [sym_case_statement] = STATE(167), + [sym_while_statement] = STATE(167), + [sym_do_statement] = STATE(167), + [sym_for_statement] = STATE(167), + [sym_return_statement] = STATE(167), + [sym_break_statement] = STATE(167), + [sym_continue_statement] = STATE(167), + [sym_goto_statement] = STATE(167), + [sym__expression] = STATE(582), + [sym_comma_expression] = STATE(1083), + [sym_conditional_expression] = STATE(582), + [sym_assignment_expression] = STATE(582), + [sym_pointer_expression] = STATE(532), + [sym_unary_expression] = STATE(582), + [sym_binary_expression] = STATE(582), + [sym_update_expression] = STATE(582), + [sym_cast_expression] = STATE(582), + [sym_sizeof_expression] = STATE(582), + [sym_subscript_expression] = STATE(532), + [sym_call_expression] = STATE(532), + [sym_field_expression] = STATE(532), + [sym_compound_literal_expression] = STATE(582), + [sym_parenthesized_expression] = STATE(532), + [sym_char_literal] = STATE(582), + [sym_concatenated_string] = STATE(582), + [sym_string_literal] = STATE(379), [sym_identifier] = ACTIONS(954), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -14953,95 +14971,23 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(444), - [anon_sym_LBRACE] = ACTIONS(450), - [anon_sym_if] = ACTIONS(454), - [anon_sym_switch] = ACTIONS(456), - [anon_sym_case] = ACTIONS(458), - [anon_sym_default] = ACTIONS(460), - [anon_sym_while] = ACTIONS(462), - [anon_sym_do] = ACTIONS(464), - [anon_sym_for] = ACTIONS(466), - [anon_sym_return] = ACTIONS(468), - [anon_sym_break] = ACTIONS(470), - [anon_sym_continue] = ACTIONS(472), - [anon_sym_goto] = ACTIONS(474), - [anon_sym_DASH_DASH] = ACTIONS(73), - [anon_sym_PLUS_PLUS] = ACTIONS(73), - [anon_sym_sizeof] = ACTIONS(75), - [sym_number_literal] = ACTIONS(476), - [anon_sym_L_SQUOTE] = ACTIONS(79), - [anon_sym_u_SQUOTE] = ACTIONS(79), - [anon_sym_U_SQUOTE] = ACTIONS(79), - [anon_sym_u8_SQUOTE] = ACTIONS(79), - [anon_sym_SQUOTE] = ACTIONS(79), - [anon_sym_L_DQUOTE] = ACTIONS(81), - [anon_sym_u_DQUOTE] = ACTIONS(81), - [anon_sym_U_DQUOTE] = ACTIONS(81), - [anon_sym_u8_DQUOTE] = ACTIONS(81), - [anon_sym_DQUOTE] = ACTIONS(81), - [sym_true] = ACTIONS(478), - [sym_false] = ACTIONS(478), - [sym_null] = ACTIONS(478), - [sym_comment] = ACTIONS(3), - }, - [82] = { - [sym_compound_statement] = STATE(255), - [sym_labeled_statement] = STATE(255), - [sym_expression_statement] = STATE(255), - [sym_if_statement] = STATE(255), - [sym_switch_statement] = STATE(255), - [sym_case_statement] = STATE(255), - [sym_while_statement] = STATE(255), - [sym_do_statement] = STATE(255), - [sym_for_statement] = STATE(255), - [sym_return_statement] = STATE(255), - [sym_break_statement] = STATE(255), - [sym_continue_statement] = STATE(255), - [sym_goto_statement] = STATE(255), - [sym__expression] = STATE(616), - [sym_comma_expression] = STATE(1170), - [sym_conditional_expression] = STATE(616), - [sym_assignment_expression] = STATE(616), - [sym_pointer_expression] = STATE(505), - [sym_unary_expression] = STATE(616), - [sym_binary_expression] = STATE(616), - [sym_update_expression] = STATE(616), - [sym_cast_expression] = STATE(616), - [sym_sizeof_expression] = STATE(616), - [sym_subscript_expression] = STATE(505), - [sym_call_expression] = STATE(505), - [sym_field_expression] = STATE(505), - [sym_compound_literal_expression] = STATE(616), - [sym_parenthesized_expression] = STATE(505), - [sym_char_literal] = STATE(616), - [sym_concatenated_string] = STATE(616), - [sym_string_literal] = STATE(376), - [sym_identifier] = ACTIONS(952), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(304), - [anon_sym_LBRACE] = ACTIONS(310), - [anon_sym_if] = ACTIONS(316), - [anon_sym_switch] = ACTIONS(318), - [anon_sym_case] = ACTIONS(320), - [anon_sym_default] = ACTIONS(322), - [anon_sym_while] = ACTIONS(324), - [anon_sym_do] = ACTIONS(326), - [anon_sym_for] = ACTIONS(328), - [anon_sym_return] = ACTIONS(330), - [anon_sym_break] = ACTIONS(332), - [anon_sym_continue] = ACTIONS(334), - [anon_sym_goto] = ACTIONS(336), + [anon_sym_SEMI] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(109), + [anon_sym_if] = ACTIONS(113), + [anon_sym_switch] = ACTIONS(115), + [anon_sym_case] = ACTIONS(117), + [anon_sym_default] = ACTIONS(119), + [anon_sym_while] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_return] = ACTIONS(127), + [anon_sym_break] = ACTIONS(129), + [anon_sym_continue] = ACTIONS(131), + [anon_sym_goto] = ACTIONS(133), [anon_sym_DASH_DASH] = ACTIONS(73), [anon_sym_PLUS_PLUS] = ACTIONS(73), [anon_sym_sizeof] = ACTIONS(75), - [sym_number_literal] = ACTIONS(338), + [sym_number_literal] = ACTIONS(135), [anon_sym_L_SQUOTE] = ACTIONS(79), [anon_sym_u_SQUOTE] = ACTIONS(79), [anon_sym_U_SQUOTE] = ACTIONS(79), @@ -15052,43 +14998,43 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_U_DQUOTE] = ACTIONS(81), [anon_sym_u8_DQUOTE] = ACTIONS(81), [anon_sym_DQUOTE] = ACTIONS(81), - [sym_true] = ACTIONS(340), - [sym_false] = ACTIONS(340), - [sym_null] = ACTIONS(340), + [sym_true] = ACTIONS(137), + [sym_false] = ACTIONS(137), + [sym_null] = ACTIONS(137), [sym_comment] = ACTIONS(3), }, - [83] = { - [sym_compound_statement] = STATE(254), - [sym_labeled_statement] = STATE(254), - [sym_expression_statement] = STATE(254), - [sym_if_statement] = STATE(254), - [sym_switch_statement] = STATE(254), - [sym_case_statement] = STATE(254), - [sym_while_statement] = STATE(254), - [sym_do_statement] = STATE(254), - [sym_for_statement] = STATE(254), - [sym_return_statement] = STATE(254), - [sym_break_statement] = STATE(254), - [sym_continue_statement] = STATE(254), - [sym_goto_statement] = STATE(254), - [sym__expression] = STATE(616), - [sym_comma_expression] = STATE(1170), - [sym_conditional_expression] = STATE(616), - [sym_assignment_expression] = STATE(616), - [sym_pointer_expression] = STATE(505), - [sym_unary_expression] = STATE(616), - [sym_binary_expression] = STATE(616), - [sym_update_expression] = STATE(616), - [sym_cast_expression] = STATE(616), - [sym_sizeof_expression] = STATE(616), - [sym_subscript_expression] = STATE(505), - [sym_call_expression] = STATE(505), - [sym_field_expression] = STATE(505), - [sym_compound_literal_expression] = STATE(616), - [sym_parenthesized_expression] = STATE(505), - [sym_char_literal] = STATE(616), - [sym_concatenated_string] = STATE(616), - [sym_string_literal] = STATE(376), + [82] = { + [sym_compound_statement] = STATE(1177), + [sym_labeled_statement] = STATE(1177), + [sym_expression_statement] = STATE(1177), + [sym_if_statement] = STATE(1177), + [sym_switch_statement] = STATE(1177), + [sym_case_statement] = STATE(1177), + [sym_while_statement] = STATE(1177), + [sym_do_statement] = STATE(1177), + [sym_for_statement] = STATE(1177), + [sym_return_statement] = STATE(1177), + [sym_break_statement] = STATE(1177), + [sym_continue_statement] = STATE(1177), + [sym_goto_statement] = STATE(1177), + [sym__expression] = STATE(606), + [sym_comma_expression] = STATE(1218), + [sym_conditional_expression] = STATE(606), + [sym_assignment_expression] = STATE(606), + [sym_pointer_expression] = STATE(532), + [sym_unary_expression] = STATE(606), + [sym_binary_expression] = STATE(606), + [sym_update_expression] = STATE(606), + [sym_cast_expression] = STATE(606), + [sym_sizeof_expression] = STATE(606), + [sym_subscript_expression] = STATE(532), + [sym_call_expression] = STATE(532), + [sym_field_expression] = STATE(532), + [sym_compound_literal_expression] = STATE(606), + [sym_parenthesized_expression] = STATE(532), + [sym_char_literal] = STATE(606), + [sym_concatenated_string] = STATE(606), + [sym_string_literal] = STATE(379), [sym_identifier] = ACTIONS(952), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -15097,150 +15043,6 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(304), - [anon_sym_LBRACE] = ACTIONS(310), - [anon_sym_if] = ACTIONS(316), - [anon_sym_switch] = ACTIONS(318), - [anon_sym_case] = ACTIONS(320), - [anon_sym_default] = ACTIONS(322), - [anon_sym_while] = ACTIONS(324), - [anon_sym_do] = ACTIONS(326), - [anon_sym_for] = ACTIONS(328), - [anon_sym_return] = ACTIONS(330), - [anon_sym_break] = ACTIONS(332), - [anon_sym_continue] = ACTIONS(334), - [anon_sym_goto] = ACTIONS(336), - [anon_sym_DASH_DASH] = ACTIONS(73), - [anon_sym_PLUS_PLUS] = ACTIONS(73), - [anon_sym_sizeof] = ACTIONS(75), - [sym_number_literal] = ACTIONS(338), - [anon_sym_L_SQUOTE] = ACTIONS(79), - [anon_sym_u_SQUOTE] = ACTIONS(79), - [anon_sym_U_SQUOTE] = ACTIONS(79), - [anon_sym_u8_SQUOTE] = ACTIONS(79), - [anon_sym_SQUOTE] = ACTIONS(79), - [anon_sym_L_DQUOTE] = ACTIONS(81), - [anon_sym_u_DQUOTE] = ACTIONS(81), - [anon_sym_U_DQUOTE] = ACTIONS(81), - [anon_sym_u8_DQUOTE] = ACTIONS(81), - [anon_sym_DQUOTE] = ACTIONS(81), - [sym_true] = ACTIONS(340), - [sym_false] = ACTIONS(340), - [sym_null] = ACTIONS(340), - [sym_comment] = ACTIONS(3), - }, - [84] = { - [sym_compound_statement] = STATE(249), - [sym_labeled_statement] = STATE(249), - [sym_expression_statement] = STATE(249), - [sym_if_statement] = STATE(249), - [sym_switch_statement] = STATE(249), - [sym_case_statement] = STATE(249), - [sym_while_statement] = STATE(249), - [sym_do_statement] = STATE(249), - [sym_for_statement] = STATE(249), - [sym_return_statement] = STATE(249), - [sym_break_statement] = STATE(249), - [sym_continue_statement] = STATE(249), - [sym_goto_statement] = STATE(249), - [sym__expression] = STATE(596), - [sym_comma_expression] = STATE(1096), - [sym_conditional_expression] = STATE(596), - [sym_assignment_expression] = STATE(596), - [sym_pointer_expression] = STATE(505), - [sym_unary_expression] = STATE(596), - [sym_binary_expression] = STATE(596), - [sym_update_expression] = STATE(596), - [sym_cast_expression] = STATE(596), - [sym_sizeof_expression] = STATE(596), - [sym_subscript_expression] = STATE(505), - [sym_call_expression] = STATE(505), - [sym_field_expression] = STATE(505), - [sym_compound_literal_expression] = STATE(596), - [sym_parenthesized_expression] = STATE(505), - [sym_char_literal] = STATE(596), - [sym_concatenated_string] = STATE(596), - [sym_string_literal] = STATE(376), - [sym_identifier] = ACTIONS(954), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(444), - [anon_sym_LBRACE] = ACTIONS(450), - [anon_sym_if] = ACTIONS(454), - [anon_sym_switch] = ACTIONS(456), - [anon_sym_case] = ACTIONS(458), - [anon_sym_default] = ACTIONS(460), - [anon_sym_while] = ACTIONS(462), - [anon_sym_do] = ACTIONS(464), - [anon_sym_for] = ACTIONS(466), - [anon_sym_return] = ACTIONS(468), - [anon_sym_break] = ACTIONS(470), - [anon_sym_continue] = ACTIONS(472), - [anon_sym_goto] = ACTIONS(474), - [anon_sym_DASH_DASH] = ACTIONS(73), - [anon_sym_PLUS_PLUS] = ACTIONS(73), - [anon_sym_sizeof] = ACTIONS(75), - [sym_number_literal] = ACTIONS(476), - [anon_sym_L_SQUOTE] = ACTIONS(79), - [anon_sym_u_SQUOTE] = ACTIONS(79), - [anon_sym_U_SQUOTE] = ACTIONS(79), - [anon_sym_u8_SQUOTE] = ACTIONS(79), - [anon_sym_SQUOTE] = ACTIONS(79), - [anon_sym_L_DQUOTE] = ACTIONS(81), - [anon_sym_u_DQUOTE] = ACTIONS(81), - [anon_sym_U_DQUOTE] = ACTIONS(81), - [anon_sym_u8_DQUOTE] = ACTIONS(81), - [anon_sym_DQUOTE] = ACTIONS(81), - [sym_true] = ACTIONS(478), - [sym_false] = ACTIONS(478), - [sym_null] = ACTIONS(478), - [sym_comment] = ACTIONS(3), - }, - [85] = { - [sym_compound_statement] = STATE(209), - [sym_labeled_statement] = STATE(209), - [sym_expression_statement] = STATE(209), - [sym_if_statement] = STATE(209), - [sym_switch_statement] = STATE(209), - [sym_case_statement] = STATE(209), - [sym_while_statement] = STATE(209), - [sym_do_statement] = STATE(209), - [sym_for_statement] = STATE(209), - [sym_return_statement] = STATE(209), - [sym_break_statement] = STATE(209), - [sym_continue_statement] = STATE(209), - [sym_goto_statement] = STATE(209), - [sym__expression] = STATE(614), - [sym_comma_expression] = STATE(1210), - [sym_conditional_expression] = STATE(614), - [sym_assignment_expression] = STATE(614), - [sym_pointer_expression] = STATE(505), - [sym_unary_expression] = STATE(614), - [sym_binary_expression] = STATE(614), - [sym_update_expression] = STATE(614), - [sym_cast_expression] = STATE(614), - [sym_sizeof_expression] = STATE(614), - [sym_subscript_expression] = STATE(505), - [sym_call_expression] = STATE(505), - [sym_field_expression] = STATE(505), - [sym_compound_literal_expression] = STATE(614), - [sym_parenthesized_expression] = STATE(505), - [sym_char_literal] = STATE(614), - [sym_concatenated_string] = STATE(614), - [sym_string_literal] = STATE(376), - [sym_identifier] = ACTIONS(950), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), [anon_sym_SEMI] = ACTIONS(27), [anon_sym_LBRACE] = ACTIONS(35), [anon_sym_if] = ACTIONS(51), @@ -15273,39 +15075,39 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(83), [sym_comment] = ACTIONS(3), }, - [86] = { - [sym_compound_statement] = STATE(203), - [sym_labeled_statement] = STATE(203), - [sym_expression_statement] = STATE(203), - [sym_if_statement] = STATE(203), - [sym_switch_statement] = STATE(203), - [sym_case_statement] = STATE(203), - [sym_while_statement] = STATE(203), - [sym_do_statement] = STATE(203), - [sym_for_statement] = STATE(203), - [sym_return_statement] = STATE(203), - [sym_break_statement] = STATE(203), - [sym_continue_statement] = STATE(203), - [sym_goto_statement] = STATE(203), - [sym__expression] = STATE(614), - [sym_comma_expression] = STATE(1210), - [sym_conditional_expression] = STATE(614), - [sym_assignment_expression] = STATE(614), - [sym_pointer_expression] = STATE(505), - [sym_unary_expression] = STATE(614), - [sym_binary_expression] = STATE(614), - [sym_update_expression] = STATE(614), - [sym_cast_expression] = STATE(614), - [sym_sizeof_expression] = STATE(614), - [sym_subscript_expression] = STATE(505), - [sym_call_expression] = STATE(505), - [sym_field_expression] = STATE(505), - [sym_compound_literal_expression] = STATE(614), - [sym_parenthesized_expression] = STATE(505), - [sym_char_literal] = STATE(614), - [sym_concatenated_string] = STATE(614), - [sym_string_literal] = STATE(376), - [sym_identifier] = ACTIONS(950), + [83] = { + [sym_compound_statement] = STATE(205), + [sym_labeled_statement] = STATE(205), + [sym_expression_statement] = STATE(205), + [sym_if_statement] = STATE(205), + [sym_switch_statement] = STATE(205), + [sym_case_statement] = STATE(205), + [sym_while_statement] = STATE(205), + [sym_do_statement] = STATE(205), + [sym_for_statement] = STATE(205), + [sym_return_statement] = STATE(205), + [sym_break_statement] = STATE(205), + [sym_continue_statement] = STATE(205), + [sym_goto_statement] = STATE(205), + [sym__expression] = STATE(606), + [sym_comma_expression] = STATE(1218), + [sym_conditional_expression] = STATE(606), + [sym_assignment_expression] = STATE(606), + [sym_pointer_expression] = STATE(532), + [sym_unary_expression] = STATE(606), + [sym_binary_expression] = STATE(606), + [sym_update_expression] = STATE(606), + [sym_cast_expression] = STATE(606), + [sym_sizeof_expression] = STATE(606), + [sym_subscript_expression] = STATE(532), + [sym_call_expression] = STATE(532), + [sym_field_expression] = STATE(532), + [sym_compound_literal_expression] = STATE(606), + [sym_parenthesized_expression] = STATE(532), + [sym_char_literal] = STATE(606), + [sym_concatenated_string] = STATE(606), + [sym_string_literal] = STATE(379), + [sym_identifier] = ACTIONS(952), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -15345,110 +15147,38 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(83), [sym_comment] = ACTIONS(3), }, - [87] = { - [sym_compound_statement] = STATE(200), - [sym_labeled_statement] = STATE(200), - [sym_expression_statement] = STATE(200), - [sym_if_statement] = STATE(200), - [sym_switch_statement] = STATE(200), - [sym_case_statement] = STATE(200), - [sym_while_statement] = STATE(200), - [sym_do_statement] = STATE(200), - [sym_for_statement] = STATE(200), - [sym_return_statement] = STATE(200), - [sym_break_statement] = STATE(200), - [sym_continue_statement] = STATE(200), - [sym_goto_statement] = STATE(200), - [sym__expression] = STATE(614), + [84] = { + [sym_compound_statement] = STATE(274), + [sym_labeled_statement] = STATE(274), + [sym_expression_statement] = STATE(274), + [sym_if_statement] = STATE(274), + [sym_switch_statement] = STATE(274), + [sym_case_statement] = STATE(274), + [sym_while_statement] = STATE(274), + [sym_do_statement] = STATE(274), + [sym_for_statement] = STATE(274), + [sym_return_statement] = STATE(274), + [sym_break_statement] = STATE(274), + [sym_continue_statement] = STATE(274), + [sym_goto_statement] = STATE(274), + [sym__expression] = STATE(568), [sym_comma_expression] = STATE(1210), - [sym_conditional_expression] = STATE(614), - [sym_assignment_expression] = STATE(614), - [sym_pointer_expression] = STATE(505), - [sym_unary_expression] = STATE(614), - [sym_binary_expression] = STATE(614), - [sym_update_expression] = STATE(614), - [sym_cast_expression] = STATE(614), - [sym_sizeof_expression] = STATE(614), - [sym_subscript_expression] = STATE(505), - [sym_call_expression] = STATE(505), - [sym_field_expression] = STATE(505), - [sym_compound_literal_expression] = STATE(614), - [sym_parenthesized_expression] = STATE(505), - [sym_char_literal] = STATE(614), - [sym_concatenated_string] = STATE(614), - [sym_string_literal] = STATE(376), - [sym_identifier] = ACTIONS(950), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(27), - [anon_sym_LBRACE] = ACTIONS(35), - [anon_sym_if] = ACTIONS(51), - [anon_sym_switch] = ACTIONS(53), - [anon_sym_case] = ACTIONS(55), - [anon_sym_default] = ACTIONS(57), - [anon_sym_while] = ACTIONS(59), - [anon_sym_do] = ACTIONS(61), - [anon_sym_for] = ACTIONS(63), - [anon_sym_return] = ACTIONS(65), - [anon_sym_break] = ACTIONS(67), - [anon_sym_continue] = ACTIONS(69), - [anon_sym_goto] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(73), - [anon_sym_PLUS_PLUS] = ACTIONS(73), - [anon_sym_sizeof] = ACTIONS(75), - [sym_number_literal] = ACTIONS(77), - [anon_sym_L_SQUOTE] = ACTIONS(79), - [anon_sym_u_SQUOTE] = ACTIONS(79), - [anon_sym_U_SQUOTE] = ACTIONS(79), - [anon_sym_u8_SQUOTE] = ACTIONS(79), - [anon_sym_SQUOTE] = ACTIONS(79), - [anon_sym_L_DQUOTE] = ACTIONS(81), - [anon_sym_u_DQUOTE] = ACTIONS(81), - [anon_sym_U_DQUOTE] = ACTIONS(81), - [anon_sym_u8_DQUOTE] = ACTIONS(81), - [anon_sym_DQUOTE] = ACTIONS(81), - [sym_true] = ACTIONS(83), - [sym_false] = ACTIONS(83), - [sym_null] = ACTIONS(83), - [sym_comment] = ACTIONS(3), - }, - [88] = { - [sym_compound_statement] = STATE(160), - [sym_labeled_statement] = STATE(160), - [sym_expression_statement] = STATE(160), - [sym_if_statement] = STATE(160), - [sym_switch_statement] = STATE(160), - [sym_case_statement] = STATE(160), - [sym_while_statement] = STATE(160), - [sym_do_statement] = STATE(160), - [sym_for_statement] = STATE(160), - [sym_return_statement] = STATE(160), - [sym_break_statement] = STATE(160), - [sym_continue_statement] = STATE(160), - [sym_goto_statement] = STATE(160), - [sym__expression] = STATE(613), - [sym_comma_expression] = STATE(1185), - [sym_conditional_expression] = STATE(613), - [sym_assignment_expression] = STATE(613), - [sym_pointer_expression] = STATE(505), - [sym_unary_expression] = STATE(613), - [sym_binary_expression] = STATE(613), - [sym_update_expression] = STATE(613), - [sym_cast_expression] = STATE(613), - [sym_sizeof_expression] = STATE(613), - [sym_subscript_expression] = STATE(505), - [sym_call_expression] = STATE(505), - [sym_field_expression] = STATE(505), - [sym_compound_literal_expression] = STATE(613), - [sym_parenthesized_expression] = STATE(505), - [sym_char_literal] = STATE(613), - [sym_concatenated_string] = STATE(613), - [sym_string_literal] = STATE(376), + [sym_conditional_expression] = STATE(568), + [sym_assignment_expression] = STATE(568), + [sym_pointer_expression] = STATE(532), + [sym_unary_expression] = STATE(568), + [sym_binary_expression] = STATE(568), + [sym_update_expression] = STATE(568), + [sym_cast_expression] = STATE(568), + [sym_sizeof_expression] = STATE(568), + [sym_subscript_expression] = STATE(532), + [sym_call_expression] = STATE(532), + [sym_field_expression] = STATE(532), + [sym_compound_literal_expression] = STATE(568), + [sym_parenthesized_expression] = STATE(532), + [sym_char_literal] = STATE(568), + [sym_concatenated_string] = STATE(568), + [sym_string_literal] = STATE(379), [sym_identifier] = ACTIONS(956), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -15457,23 +15187,23 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(103), - [anon_sym_LBRACE] = ACTIONS(109), - [anon_sym_if] = ACTIONS(113), - [anon_sym_switch] = ACTIONS(115), - [anon_sym_case] = ACTIONS(117), - [anon_sym_default] = ACTIONS(119), - [anon_sym_while] = ACTIONS(121), - [anon_sym_do] = ACTIONS(123), - [anon_sym_for] = ACTIONS(125), - [anon_sym_return] = ACTIONS(127), - [anon_sym_break] = ACTIONS(129), - [anon_sym_continue] = ACTIONS(131), - [anon_sym_goto] = ACTIONS(133), + [anon_sym_SEMI] = ACTIONS(304), + [anon_sym_LBRACE] = ACTIONS(310), + [anon_sym_if] = ACTIONS(316), + [anon_sym_switch] = ACTIONS(318), + [anon_sym_case] = ACTIONS(320), + [anon_sym_default] = ACTIONS(322), + [anon_sym_while] = ACTIONS(324), + [anon_sym_do] = ACTIONS(326), + [anon_sym_for] = ACTIONS(328), + [anon_sym_return] = ACTIONS(330), + [anon_sym_break] = ACTIONS(332), + [anon_sym_continue] = ACTIONS(334), + [anon_sym_goto] = ACTIONS(336), [anon_sym_DASH_DASH] = ACTIONS(73), [anon_sym_PLUS_PLUS] = ACTIONS(73), [anon_sym_sizeof] = ACTIONS(75), - [sym_number_literal] = ACTIONS(135), + [sym_number_literal] = ACTIONS(338), [anon_sym_L_SQUOTE] = ACTIONS(79), [anon_sym_u_SQUOTE] = ACTIONS(79), [anon_sym_U_SQUOTE] = ACTIONS(79), @@ -15484,44 +15214,44 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_U_DQUOTE] = ACTIONS(81), [anon_sym_u8_DQUOTE] = ACTIONS(81), [anon_sym_DQUOTE] = ACTIONS(81), - [sym_true] = ACTIONS(137), - [sym_false] = ACTIONS(137), - [sym_null] = ACTIONS(137), + [sym_true] = ACTIONS(340), + [sym_false] = ACTIONS(340), + [sym_null] = ACTIONS(340), [sym_comment] = ACTIONS(3), }, - [89] = { - [sym_compound_statement] = STATE(205), - [sym_labeled_statement] = STATE(205), - [sym_expression_statement] = STATE(205), - [sym_if_statement] = STATE(205), - [sym_switch_statement] = STATE(205), - [sym_case_statement] = STATE(205), - [sym_while_statement] = STATE(205), - [sym_do_statement] = STATE(205), - [sym_for_statement] = STATE(205), - [sym_return_statement] = STATE(205), - [sym_break_statement] = STATE(205), - [sym_continue_statement] = STATE(205), - [sym_goto_statement] = STATE(205), - [sym__expression] = STATE(614), + [85] = { + [sym_compound_statement] = STATE(277), + [sym_labeled_statement] = STATE(277), + [sym_expression_statement] = STATE(277), + [sym_if_statement] = STATE(277), + [sym_switch_statement] = STATE(277), + [sym_case_statement] = STATE(277), + [sym_while_statement] = STATE(277), + [sym_do_statement] = STATE(277), + [sym_for_statement] = STATE(277), + [sym_return_statement] = STATE(277), + [sym_break_statement] = STATE(277), + [sym_continue_statement] = STATE(277), + [sym_goto_statement] = STATE(277), + [sym__expression] = STATE(568), [sym_comma_expression] = STATE(1210), - [sym_conditional_expression] = STATE(614), - [sym_assignment_expression] = STATE(614), - [sym_pointer_expression] = STATE(505), - [sym_unary_expression] = STATE(614), - [sym_binary_expression] = STATE(614), - [sym_update_expression] = STATE(614), - [sym_cast_expression] = STATE(614), - [sym_sizeof_expression] = STATE(614), - [sym_subscript_expression] = STATE(505), - [sym_call_expression] = STATE(505), - [sym_field_expression] = STATE(505), - [sym_compound_literal_expression] = STATE(614), - [sym_parenthesized_expression] = STATE(505), - [sym_char_literal] = STATE(614), - [sym_concatenated_string] = STATE(614), - [sym_string_literal] = STATE(376), - [sym_identifier] = ACTIONS(950), + [sym_conditional_expression] = STATE(568), + [sym_assignment_expression] = STATE(568), + [sym_pointer_expression] = STATE(532), + [sym_unary_expression] = STATE(568), + [sym_binary_expression] = STATE(568), + [sym_update_expression] = STATE(568), + [sym_cast_expression] = STATE(568), + [sym_sizeof_expression] = STATE(568), + [sym_subscript_expression] = STATE(532), + [sym_call_expression] = STATE(532), + [sym_field_expression] = STATE(532), + [sym_compound_literal_expression] = STATE(568), + [sym_parenthesized_expression] = STATE(532), + [sym_char_literal] = STATE(568), + [sym_concatenated_string] = STATE(568), + [sym_string_literal] = STATE(379), + [sym_identifier] = ACTIONS(956), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -15529,23 +15259,23 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(27), - [anon_sym_LBRACE] = ACTIONS(35), - [anon_sym_if] = ACTIONS(51), - [anon_sym_switch] = ACTIONS(53), - [anon_sym_case] = ACTIONS(55), - [anon_sym_default] = ACTIONS(57), - [anon_sym_while] = ACTIONS(59), - [anon_sym_do] = ACTIONS(61), - [anon_sym_for] = ACTIONS(63), - [anon_sym_return] = ACTIONS(65), - [anon_sym_break] = ACTIONS(67), - [anon_sym_continue] = ACTIONS(69), - [anon_sym_goto] = ACTIONS(71), + [anon_sym_SEMI] = ACTIONS(304), + [anon_sym_LBRACE] = ACTIONS(310), + [anon_sym_if] = ACTIONS(316), + [anon_sym_switch] = ACTIONS(318), + [anon_sym_case] = ACTIONS(320), + [anon_sym_default] = ACTIONS(322), + [anon_sym_while] = ACTIONS(324), + [anon_sym_do] = ACTIONS(326), + [anon_sym_for] = ACTIONS(328), + [anon_sym_return] = ACTIONS(330), + [anon_sym_break] = ACTIONS(332), + [anon_sym_continue] = ACTIONS(334), + [anon_sym_goto] = ACTIONS(336), [anon_sym_DASH_DASH] = ACTIONS(73), [anon_sym_PLUS_PLUS] = ACTIONS(73), [anon_sym_sizeof] = ACTIONS(75), - [sym_number_literal] = ACTIONS(77), + [sym_number_literal] = ACTIONS(338), [anon_sym_L_SQUOTE] = ACTIONS(79), [anon_sym_u_SQUOTE] = ACTIONS(79), [anon_sym_U_SQUOTE] = ACTIONS(79), @@ -15556,44 +15286,44 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_U_DQUOTE] = ACTIONS(81), [anon_sym_u8_DQUOTE] = ACTIONS(81), [anon_sym_DQUOTE] = ACTIONS(81), - [sym_true] = ACTIONS(83), - [sym_false] = ACTIONS(83), - [sym_null] = ACTIONS(83), + [sym_true] = ACTIONS(340), + [sym_false] = ACTIONS(340), + [sym_null] = ACTIONS(340), [sym_comment] = ACTIONS(3), }, - [90] = { - [sym_compound_statement] = STATE(1245), - [sym_labeled_statement] = STATE(1245), - [sym_expression_statement] = STATE(1245), - [sym_if_statement] = STATE(1245), - [sym_switch_statement] = STATE(1245), - [sym_case_statement] = STATE(1245), - [sym_while_statement] = STATE(1245), - [sym_do_statement] = STATE(1245), - [sym_for_statement] = STATE(1245), - [sym_return_statement] = STATE(1245), - [sym_break_statement] = STATE(1245), - [sym_continue_statement] = STATE(1245), - [sym_goto_statement] = STATE(1245), - [sym__expression] = STATE(614), - [sym_comma_expression] = STATE(1210), - [sym_conditional_expression] = STATE(614), - [sym_assignment_expression] = STATE(614), - [sym_pointer_expression] = STATE(505), - [sym_unary_expression] = STATE(614), - [sym_binary_expression] = STATE(614), - [sym_update_expression] = STATE(614), - [sym_cast_expression] = STATE(614), - [sym_sizeof_expression] = STATE(614), - [sym_subscript_expression] = STATE(505), - [sym_call_expression] = STATE(505), - [sym_field_expression] = STATE(505), - [sym_compound_literal_expression] = STATE(614), - [sym_parenthesized_expression] = STATE(505), - [sym_char_literal] = STATE(614), - [sym_concatenated_string] = STATE(614), - [sym_string_literal] = STATE(376), - [sym_identifier] = ACTIONS(950), + [86] = { + [sym_compound_statement] = STATE(208), + [sym_labeled_statement] = STATE(208), + [sym_expression_statement] = STATE(208), + [sym_if_statement] = STATE(208), + [sym_switch_statement] = STATE(208), + [sym_case_statement] = STATE(208), + [sym_while_statement] = STATE(208), + [sym_do_statement] = STATE(208), + [sym_for_statement] = STATE(208), + [sym_return_statement] = STATE(208), + [sym_break_statement] = STATE(208), + [sym_continue_statement] = STATE(208), + [sym_goto_statement] = STATE(208), + [sym__expression] = STATE(606), + [sym_comma_expression] = STATE(1218), + [sym_conditional_expression] = STATE(606), + [sym_assignment_expression] = STATE(606), + [sym_pointer_expression] = STATE(532), + [sym_unary_expression] = STATE(606), + [sym_binary_expression] = STATE(606), + [sym_update_expression] = STATE(606), + [sym_cast_expression] = STATE(606), + [sym_sizeof_expression] = STATE(606), + [sym_subscript_expression] = STATE(532), + [sym_call_expression] = STATE(532), + [sym_field_expression] = STATE(532), + [sym_compound_literal_expression] = STATE(606), + [sym_parenthesized_expression] = STATE(532), + [sym_char_literal] = STATE(606), + [sym_concatenated_string] = STATE(606), + [sym_string_literal] = STATE(379), + [sym_identifier] = ACTIONS(952), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -15633,39 +15363,39 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(83), [sym_comment] = ACTIONS(3), }, - [91] = { - [sym_compound_statement] = STATE(235), - [sym_labeled_statement] = STATE(235), - [sym_expression_statement] = STATE(235), - [sym_if_statement] = STATE(235), - [sym_switch_statement] = STATE(235), - [sym_case_statement] = STATE(235), - [sym_while_statement] = STATE(235), - [sym_do_statement] = STATE(235), - [sym_for_statement] = STATE(235), - [sym_return_statement] = STATE(235), - [sym_break_statement] = STATE(235), - [sym_continue_statement] = STATE(235), - [sym_goto_statement] = STATE(235), - [sym__expression] = STATE(596), - [sym_comma_expression] = STATE(1096), - [sym_conditional_expression] = STATE(596), - [sym_assignment_expression] = STATE(596), - [sym_pointer_expression] = STATE(505), - [sym_unary_expression] = STATE(596), - [sym_binary_expression] = STATE(596), - [sym_update_expression] = STATE(596), - [sym_cast_expression] = STATE(596), - [sym_sizeof_expression] = STATE(596), - [sym_subscript_expression] = STATE(505), - [sym_call_expression] = STATE(505), - [sym_field_expression] = STATE(505), - [sym_compound_literal_expression] = STATE(596), - [sym_parenthesized_expression] = STATE(505), - [sym_char_literal] = STATE(596), - [sym_concatenated_string] = STATE(596), - [sym_string_literal] = STATE(376), - [sym_identifier] = ACTIONS(954), + [87] = { + [sym_compound_statement] = STATE(278), + [sym_labeled_statement] = STATE(278), + [sym_expression_statement] = STATE(278), + [sym_if_statement] = STATE(278), + [sym_switch_statement] = STATE(278), + [sym_case_statement] = STATE(278), + [sym_while_statement] = STATE(278), + [sym_do_statement] = STATE(278), + [sym_for_statement] = STATE(278), + [sym_return_statement] = STATE(278), + [sym_break_statement] = STATE(278), + [sym_continue_statement] = STATE(278), + [sym_goto_statement] = STATE(278), + [sym__expression] = STATE(568), + [sym_comma_expression] = STATE(1210), + [sym_conditional_expression] = STATE(568), + [sym_assignment_expression] = STATE(568), + [sym_pointer_expression] = STATE(532), + [sym_unary_expression] = STATE(568), + [sym_binary_expression] = STATE(568), + [sym_update_expression] = STATE(568), + [sym_cast_expression] = STATE(568), + [sym_sizeof_expression] = STATE(568), + [sym_subscript_expression] = STATE(532), + [sym_call_expression] = STATE(532), + [sym_field_expression] = STATE(532), + [sym_compound_literal_expression] = STATE(568), + [sym_parenthesized_expression] = STATE(532), + [sym_char_literal] = STATE(568), + [sym_concatenated_string] = STATE(568), + [sym_string_literal] = STATE(379), + [sym_identifier] = ACTIONS(956), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -15673,23 +15403,23 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(444), - [anon_sym_LBRACE] = ACTIONS(450), - [anon_sym_if] = ACTIONS(454), - [anon_sym_switch] = ACTIONS(456), - [anon_sym_case] = ACTIONS(458), - [anon_sym_default] = ACTIONS(460), - [anon_sym_while] = ACTIONS(462), - [anon_sym_do] = ACTIONS(464), - [anon_sym_for] = ACTIONS(466), - [anon_sym_return] = ACTIONS(468), - [anon_sym_break] = ACTIONS(470), - [anon_sym_continue] = ACTIONS(472), - [anon_sym_goto] = ACTIONS(474), + [anon_sym_SEMI] = ACTIONS(304), + [anon_sym_LBRACE] = ACTIONS(310), + [anon_sym_if] = ACTIONS(316), + [anon_sym_switch] = ACTIONS(318), + [anon_sym_case] = ACTIONS(320), + [anon_sym_default] = ACTIONS(322), + [anon_sym_while] = ACTIONS(324), + [anon_sym_do] = ACTIONS(326), + [anon_sym_for] = ACTIONS(328), + [anon_sym_return] = ACTIONS(330), + [anon_sym_break] = ACTIONS(332), + [anon_sym_continue] = ACTIONS(334), + [anon_sym_goto] = ACTIONS(336), [anon_sym_DASH_DASH] = ACTIONS(73), [anon_sym_PLUS_PLUS] = ACTIONS(73), [anon_sym_sizeof] = ACTIONS(75), - [sym_number_literal] = ACTIONS(476), + [sym_number_literal] = ACTIONS(338), [anon_sym_L_SQUOTE] = ACTIONS(79), [anon_sym_u_SQUOTE] = ACTIONS(79), [anon_sym_U_SQUOTE] = ACTIONS(79), @@ -15700,43 +15430,43 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_U_DQUOTE] = ACTIONS(81), [anon_sym_u8_DQUOTE] = ACTIONS(81), [anon_sym_DQUOTE] = ACTIONS(81), - [sym_true] = ACTIONS(478), - [sym_false] = ACTIONS(478), - [sym_null] = ACTIONS(478), + [sym_true] = ACTIONS(340), + [sym_false] = ACTIONS(340), + [sym_null] = ACTIONS(340), [sym_comment] = ACTIONS(3), }, - [92] = { - [sym_compound_statement] = STATE(137), - [sym_labeled_statement] = STATE(137), - [sym_expression_statement] = STATE(137), - [sym_if_statement] = STATE(137), - [sym_switch_statement] = STATE(137), - [sym_case_statement] = STATE(137), - [sym_while_statement] = STATE(137), - [sym_do_statement] = STATE(137), - [sym_for_statement] = STATE(137), - [sym_return_statement] = STATE(137), - [sym_break_statement] = STATE(137), - [sym_continue_statement] = STATE(137), - [sym_goto_statement] = STATE(137), - [sym__expression] = STATE(613), - [sym_comma_expression] = STATE(1185), - [sym_conditional_expression] = STATE(613), - [sym_assignment_expression] = STATE(613), - [sym_pointer_expression] = STATE(505), - [sym_unary_expression] = STATE(613), - [sym_binary_expression] = STATE(613), - [sym_update_expression] = STATE(613), - [sym_cast_expression] = STATE(613), - [sym_sizeof_expression] = STATE(613), - [sym_subscript_expression] = STATE(505), - [sym_call_expression] = STATE(505), - [sym_field_expression] = STATE(505), - [sym_compound_literal_expression] = STATE(613), - [sym_parenthesized_expression] = STATE(505), - [sym_char_literal] = STATE(613), - [sym_concatenated_string] = STATE(613), - [sym_string_literal] = STATE(376), + [88] = { + [sym_compound_statement] = STATE(292), + [sym_labeled_statement] = STATE(292), + [sym_expression_statement] = STATE(292), + [sym_if_statement] = STATE(292), + [sym_switch_statement] = STATE(292), + [sym_case_statement] = STATE(292), + [sym_while_statement] = STATE(292), + [sym_do_statement] = STATE(292), + [sym_for_statement] = STATE(292), + [sym_return_statement] = STATE(292), + [sym_break_statement] = STATE(292), + [sym_continue_statement] = STATE(292), + [sym_goto_statement] = STATE(292), + [sym__expression] = STATE(568), + [sym_comma_expression] = STATE(1210), + [sym_conditional_expression] = STATE(568), + [sym_assignment_expression] = STATE(568), + [sym_pointer_expression] = STATE(532), + [sym_unary_expression] = STATE(568), + [sym_binary_expression] = STATE(568), + [sym_update_expression] = STATE(568), + [sym_cast_expression] = STATE(568), + [sym_sizeof_expression] = STATE(568), + [sym_subscript_expression] = STATE(532), + [sym_call_expression] = STATE(532), + [sym_field_expression] = STATE(532), + [sym_compound_literal_expression] = STATE(568), + [sym_parenthesized_expression] = STATE(532), + [sym_char_literal] = STATE(568), + [sym_concatenated_string] = STATE(568), + [sym_string_literal] = STATE(379), [sym_identifier] = ACTIONS(956), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -15745,23 +15475,23 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(103), - [anon_sym_LBRACE] = ACTIONS(109), - [anon_sym_if] = ACTIONS(113), - [anon_sym_switch] = ACTIONS(115), - [anon_sym_case] = ACTIONS(117), - [anon_sym_default] = ACTIONS(119), - [anon_sym_while] = ACTIONS(121), - [anon_sym_do] = ACTIONS(123), - [anon_sym_for] = ACTIONS(125), - [anon_sym_return] = ACTIONS(127), - [anon_sym_break] = ACTIONS(129), - [anon_sym_continue] = ACTIONS(131), - [anon_sym_goto] = ACTIONS(133), + [anon_sym_SEMI] = ACTIONS(304), + [anon_sym_LBRACE] = ACTIONS(310), + [anon_sym_if] = ACTIONS(316), + [anon_sym_switch] = ACTIONS(318), + [anon_sym_case] = ACTIONS(320), + [anon_sym_default] = ACTIONS(322), + [anon_sym_while] = ACTIONS(324), + [anon_sym_do] = ACTIONS(326), + [anon_sym_for] = ACTIONS(328), + [anon_sym_return] = ACTIONS(330), + [anon_sym_break] = ACTIONS(332), + [anon_sym_continue] = ACTIONS(334), + [anon_sym_goto] = ACTIONS(336), [anon_sym_DASH_DASH] = ACTIONS(73), [anon_sym_PLUS_PLUS] = ACTIONS(73), [anon_sym_sizeof] = ACTIONS(75), - [sym_number_literal] = ACTIONS(135), + [sym_number_literal] = ACTIONS(338), [anon_sym_L_SQUOTE] = ACTIONS(79), [anon_sym_u_SQUOTE] = ACTIONS(79), [anon_sym_U_SQUOTE] = ACTIONS(79), @@ -15772,44 +15502,44 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_U_DQUOTE] = ACTIONS(81), [anon_sym_u8_DQUOTE] = ACTIONS(81), [anon_sym_DQUOTE] = ACTIONS(81), - [sym_true] = ACTIONS(137), - [sym_false] = ACTIONS(137), - [sym_null] = ACTIONS(137), + [sym_true] = ACTIONS(340), + [sym_false] = ACTIONS(340), + [sym_null] = ACTIONS(340), [sym_comment] = ACTIONS(3), }, - [93] = { - [sym_compound_statement] = STATE(232), - [sym_labeled_statement] = STATE(232), - [sym_expression_statement] = STATE(232), - [sym_if_statement] = STATE(232), - [sym_switch_statement] = STATE(232), - [sym_case_statement] = STATE(232), - [sym_while_statement] = STATE(232), - [sym_do_statement] = STATE(232), - [sym_for_statement] = STATE(232), - [sym_return_statement] = STATE(232), - [sym_break_statement] = STATE(232), - [sym_continue_statement] = STATE(232), - [sym_goto_statement] = STATE(232), - [sym__expression] = STATE(596), - [sym_comma_expression] = STATE(1096), - [sym_conditional_expression] = STATE(596), - [sym_assignment_expression] = STATE(596), - [sym_pointer_expression] = STATE(505), - [sym_unary_expression] = STATE(596), - [sym_binary_expression] = STATE(596), - [sym_update_expression] = STATE(596), - [sym_cast_expression] = STATE(596), - [sym_sizeof_expression] = STATE(596), - [sym_subscript_expression] = STATE(505), - [sym_call_expression] = STATE(505), - [sym_field_expression] = STATE(505), - [sym_compound_literal_expression] = STATE(596), - [sym_parenthesized_expression] = STATE(505), - [sym_char_literal] = STATE(596), - [sym_concatenated_string] = STATE(596), - [sym_string_literal] = STATE(376), - [sym_identifier] = ACTIONS(954), + [89] = { + [sym_compound_statement] = STATE(275), + [sym_labeled_statement] = STATE(275), + [sym_expression_statement] = STATE(275), + [sym_if_statement] = STATE(275), + [sym_switch_statement] = STATE(275), + [sym_case_statement] = STATE(275), + [sym_while_statement] = STATE(275), + [sym_do_statement] = STATE(275), + [sym_for_statement] = STATE(275), + [sym_return_statement] = STATE(275), + [sym_break_statement] = STATE(275), + [sym_continue_statement] = STATE(275), + [sym_goto_statement] = STATE(275), + [sym__expression] = STATE(568), + [sym_comma_expression] = STATE(1210), + [sym_conditional_expression] = STATE(568), + [sym_assignment_expression] = STATE(568), + [sym_pointer_expression] = STATE(532), + [sym_unary_expression] = STATE(568), + [sym_binary_expression] = STATE(568), + [sym_update_expression] = STATE(568), + [sym_cast_expression] = STATE(568), + [sym_sizeof_expression] = STATE(568), + [sym_subscript_expression] = STATE(532), + [sym_call_expression] = STATE(532), + [sym_field_expression] = STATE(532), + [sym_compound_literal_expression] = STATE(568), + [sym_parenthesized_expression] = STATE(532), + [sym_char_literal] = STATE(568), + [sym_concatenated_string] = STATE(568), + [sym_string_literal] = STATE(379), + [sym_identifier] = ACTIONS(956), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -15817,23 +15547,23 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(444), - [anon_sym_LBRACE] = ACTIONS(450), - [anon_sym_if] = ACTIONS(454), - [anon_sym_switch] = ACTIONS(456), - [anon_sym_case] = ACTIONS(458), - [anon_sym_default] = ACTIONS(460), - [anon_sym_while] = ACTIONS(462), - [anon_sym_do] = ACTIONS(464), - [anon_sym_for] = ACTIONS(466), - [anon_sym_return] = ACTIONS(468), - [anon_sym_break] = ACTIONS(470), - [anon_sym_continue] = ACTIONS(472), - [anon_sym_goto] = ACTIONS(474), + [anon_sym_SEMI] = ACTIONS(304), + [anon_sym_LBRACE] = ACTIONS(310), + [anon_sym_if] = ACTIONS(316), + [anon_sym_switch] = ACTIONS(318), + [anon_sym_case] = ACTIONS(320), + [anon_sym_default] = ACTIONS(322), + [anon_sym_while] = ACTIONS(324), + [anon_sym_do] = ACTIONS(326), + [anon_sym_for] = ACTIONS(328), + [anon_sym_return] = ACTIONS(330), + [anon_sym_break] = ACTIONS(332), + [anon_sym_continue] = ACTIONS(334), + [anon_sym_goto] = ACTIONS(336), [anon_sym_DASH_DASH] = ACTIONS(73), [anon_sym_PLUS_PLUS] = ACTIONS(73), [anon_sym_sizeof] = ACTIONS(75), - [sym_number_literal] = ACTIONS(476), + [sym_number_literal] = ACTIONS(338), [anon_sym_L_SQUOTE] = ACTIONS(79), [anon_sym_u_SQUOTE] = ACTIONS(79), [anon_sym_U_SQUOTE] = ACTIONS(79), @@ -15844,44 +15574,44 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_U_DQUOTE] = ACTIONS(81), [anon_sym_u8_DQUOTE] = ACTIONS(81), [anon_sym_DQUOTE] = ACTIONS(81), - [sym_true] = ACTIONS(478), - [sym_false] = ACTIONS(478), - [sym_null] = ACTIONS(478), + [sym_true] = ACTIONS(340), + [sym_false] = ACTIONS(340), + [sym_null] = ACTIONS(340), [sym_comment] = ACTIONS(3), }, - [94] = { - [sym_compound_statement] = STATE(241), - [sym_labeled_statement] = STATE(241), - [sym_expression_statement] = STATE(241), - [sym_if_statement] = STATE(241), - [sym_switch_statement] = STATE(241), - [sym_case_statement] = STATE(241), - [sym_while_statement] = STATE(241), - [sym_do_statement] = STATE(241), - [sym_for_statement] = STATE(241), - [sym_return_statement] = STATE(241), - [sym_break_statement] = STATE(241), - [sym_continue_statement] = STATE(241), - [sym_goto_statement] = STATE(241), - [sym__expression] = STATE(616), - [sym_comma_expression] = STATE(1170), - [sym_conditional_expression] = STATE(616), - [sym_assignment_expression] = STATE(616), - [sym_pointer_expression] = STATE(505), - [sym_unary_expression] = STATE(616), - [sym_binary_expression] = STATE(616), - [sym_update_expression] = STATE(616), - [sym_cast_expression] = STATE(616), - [sym_sizeof_expression] = STATE(616), - [sym_subscript_expression] = STATE(505), - [sym_call_expression] = STATE(505), - [sym_field_expression] = STATE(505), - [sym_compound_literal_expression] = STATE(616), - [sym_parenthesized_expression] = STATE(505), - [sym_char_literal] = STATE(616), - [sym_concatenated_string] = STATE(616), - [sym_string_literal] = STATE(376), - [sym_identifier] = ACTIONS(952), + [90] = { + [sym_compound_statement] = STATE(258), + [sym_labeled_statement] = STATE(258), + [sym_expression_statement] = STATE(258), + [sym_if_statement] = STATE(258), + [sym_switch_statement] = STATE(258), + [sym_case_statement] = STATE(258), + [sym_while_statement] = STATE(258), + [sym_do_statement] = STATE(258), + [sym_for_statement] = STATE(258), + [sym_return_statement] = STATE(258), + [sym_break_statement] = STATE(258), + [sym_continue_statement] = STATE(258), + [sym_goto_statement] = STATE(258), + [sym__expression] = STATE(568), + [sym_comma_expression] = STATE(1210), + [sym_conditional_expression] = STATE(568), + [sym_assignment_expression] = STATE(568), + [sym_pointer_expression] = STATE(532), + [sym_unary_expression] = STATE(568), + [sym_binary_expression] = STATE(568), + [sym_update_expression] = STATE(568), + [sym_cast_expression] = STATE(568), + [sym_sizeof_expression] = STATE(568), + [sym_subscript_expression] = STATE(532), + [sym_call_expression] = STATE(532), + [sym_field_expression] = STATE(532), + [sym_compound_literal_expression] = STATE(568), + [sym_parenthesized_expression] = STATE(532), + [sym_char_literal] = STATE(568), + [sym_concatenated_string] = STATE(568), + [sym_string_literal] = STATE(379), + [sym_identifier] = ACTIONS(956), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -15921,111 +15651,39 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(340), [sym_comment] = ACTIONS(3), }, - [95] = { - [sym_compound_statement] = STATE(229), - [sym_labeled_statement] = STATE(229), - [sym_expression_statement] = STATE(229), - [sym_if_statement] = STATE(229), - [sym_switch_statement] = STATE(229), - [sym_case_statement] = STATE(229), - [sym_while_statement] = STATE(229), - [sym_do_statement] = STATE(229), - [sym_for_statement] = STATE(229), - [sym_return_statement] = STATE(229), - [sym_break_statement] = STATE(229), - [sym_continue_statement] = STATE(229), - [sym_goto_statement] = STATE(229), - [sym__expression] = STATE(596), - [sym_comma_expression] = STATE(1096), - [sym_conditional_expression] = STATE(596), - [sym_assignment_expression] = STATE(596), - [sym_pointer_expression] = STATE(505), - [sym_unary_expression] = STATE(596), - [sym_binary_expression] = STATE(596), - [sym_update_expression] = STATE(596), - [sym_cast_expression] = STATE(596), - [sym_sizeof_expression] = STATE(596), - [sym_subscript_expression] = STATE(505), - [sym_call_expression] = STATE(505), - [sym_field_expression] = STATE(505), - [sym_compound_literal_expression] = STATE(596), - [sym_parenthesized_expression] = STATE(505), - [sym_char_literal] = STATE(596), - [sym_concatenated_string] = STATE(596), - [sym_string_literal] = STATE(376), - [sym_identifier] = ACTIONS(954), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(444), - [anon_sym_LBRACE] = ACTIONS(450), - [anon_sym_if] = ACTIONS(454), - [anon_sym_switch] = ACTIONS(456), - [anon_sym_case] = ACTIONS(458), - [anon_sym_default] = ACTIONS(460), - [anon_sym_while] = ACTIONS(462), - [anon_sym_do] = ACTIONS(464), - [anon_sym_for] = ACTIONS(466), - [anon_sym_return] = ACTIONS(468), - [anon_sym_break] = ACTIONS(470), - [anon_sym_continue] = ACTIONS(472), - [anon_sym_goto] = ACTIONS(474), - [anon_sym_DASH_DASH] = ACTIONS(73), - [anon_sym_PLUS_PLUS] = ACTIONS(73), - [anon_sym_sizeof] = ACTIONS(75), - [sym_number_literal] = ACTIONS(476), - [anon_sym_L_SQUOTE] = ACTIONS(79), - [anon_sym_u_SQUOTE] = ACTIONS(79), - [anon_sym_U_SQUOTE] = ACTIONS(79), - [anon_sym_u8_SQUOTE] = ACTIONS(79), - [anon_sym_SQUOTE] = ACTIONS(79), - [anon_sym_L_DQUOTE] = ACTIONS(81), - [anon_sym_u_DQUOTE] = ACTIONS(81), - [anon_sym_U_DQUOTE] = ACTIONS(81), - [anon_sym_u8_DQUOTE] = ACTIONS(81), - [anon_sym_DQUOTE] = ACTIONS(81), - [sym_true] = ACTIONS(478), - [sym_false] = ACTIONS(478), - [sym_null] = ACTIONS(478), - [sym_comment] = ACTIONS(3), - }, - [96] = { - [sym_compound_statement] = STATE(282), - [sym_labeled_statement] = STATE(282), - [sym_expression_statement] = STATE(282), - [sym_if_statement] = STATE(282), - [sym_switch_statement] = STATE(282), - [sym_case_statement] = STATE(282), - [sym_while_statement] = STATE(282), - [sym_do_statement] = STATE(282), - [sym_for_statement] = STATE(282), - [sym_return_statement] = STATE(282), - [sym_break_statement] = STATE(282), - [sym_continue_statement] = STATE(282), - [sym_goto_statement] = STATE(282), - [sym__expression] = STATE(614), + [91] = { + [sym_compound_statement] = STATE(255), + [sym_labeled_statement] = STATE(255), + [sym_expression_statement] = STATE(255), + [sym_if_statement] = STATE(255), + [sym_switch_statement] = STATE(255), + [sym_case_statement] = STATE(255), + [sym_while_statement] = STATE(255), + [sym_do_statement] = STATE(255), + [sym_for_statement] = STATE(255), + [sym_return_statement] = STATE(255), + [sym_break_statement] = STATE(255), + [sym_continue_statement] = STATE(255), + [sym_goto_statement] = STATE(255), + [sym__expression] = STATE(568), [sym_comma_expression] = STATE(1210), - [sym_conditional_expression] = STATE(614), - [sym_assignment_expression] = STATE(614), - [sym_pointer_expression] = STATE(505), - [sym_unary_expression] = STATE(614), - [sym_binary_expression] = STATE(614), - [sym_update_expression] = STATE(614), - [sym_cast_expression] = STATE(614), - [sym_sizeof_expression] = STATE(614), - [sym_subscript_expression] = STATE(505), - [sym_call_expression] = STATE(505), - [sym_field_expression] = STATE(505), - [sym_compound_literal_expression] = STATE(614), - [sym_parenthesized_expression] = STATE(505), - [sym_char_literal] = STATE(614), - [sym_concatenated_string] = STATE(614), - [sym_string_literal] = STATE(376), - [sym_identifier] = ACTIONS(950), + [sym_conditional_expression] = STATE(568), + [sym_assignment_expression] = STATE(568), + [sym_pointer_expression] = STATE(532), + [sym_unary_expression] = STATE(568), + [sym_binary_expression] = STATE(568), + [sym_update_expression] = STATE(568), + [sym_cast_expression] = STATE(568), + [sym_sizeof_expression] = STATE(568), + [sym_subscript_expression] = STATE(532), + [sym_call_expression] = STATE(532), + [sym_field_expression] = STATE(532), + [sym_compound_literal_expression] = STATE(568), + [sym_parenthesized_expression] = STATE(532), + [sym_char_literal] = STATE(568), + [sym_concatenated_string] = STATE(568), + [sym_string_literal] = STATE(379), + [sym_identifier] = ACTIONS(956), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -16033,23 +15691,23 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(27), - [anon_sym_LBRACE] = ACTIONS(35), - [anon_sym_if] = ACTIONS(51), - [anon_sym_switch] = ACTIONS(53), - [anon_sym_case] = ACTIONS(55), - [anon_sym_default] = ACTIONS(57), - [anon_sym_while] = ACTIONS(59), - [anon_sym_do] = ACTIONS(61), - [anon_sym_for] = ACTIONS(63), - [anon_sym_return] = ACTIONS(65), - [anon_sym_break] = ACTIONS(67), - [anon_sym_continue] = ACTIONS(69), - [anon_sym_goto] = ACTIONS(71), + [anon_sym_SEMI] = ACTIONS(304), + [anon_sym_LBRACE] = ACTIONS(310), + [anon_sym_if] = ACTIONS(316), + [anon_sym_switch] = ACTIONS(318), + [anon_sym_case] = ACTIONS(320), + [anon_sym_default] = ACTIONS(322), + [anon_sym_while] = ACTIONS(324), + [anon_sym_do] = ACTIONS(326), + [anon_sym_for] = ACTIONS(328), + [anon_sym_return] = ACTIONS(330), + [anon_sym_break] = ACTIONS(332), + [anon_sym_continue] = ACTIONS(334), + [anon_sym_goto] = ACTIONS(336), [anon_sym_DASH_DASH] = ACTIONS(73), [anon_sym_PLUS_PLUS] = ACTIONS(73), [anon_sym_sizeof] = ACTIONS(75), - [sym_number_literal] = ACTIONS(77), + [sym_number_literal] = ACTIONS(338), [anon_sym_L_SQUOTE] = ACTIONS(79), [anon_sym_u_SQUOTE] = ACTIONS(79), [anon_sym_U_SQUOTE] = ACTIONS(79), @@ -16060,44 +15718,44 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_U_DQUOTE] = ACTIONS(81), [anon_sym_u8_DQUOTE] = ACTIONS(81), [anon_sym_DQUOTE] = ACTIONS(81), - [sym_true] = ACTIONS(83), - [sym_false] = ACTIONS(83), - [sym_null] = ACTIONS(83), + [sym_true] = ACTIONS(340), + [sym_false] = ACTIONS(340), + [sym_null] = ACTIONS(340), [sym_comment] = ACTIONS(3), }, - [97] = { - [sym_compound_statement] = STATE(281), - [sym_labeled_statement] = STATE(281), - [sym_expression_statement] = STATE(281), - [sym_if_statement] = STATE(281), - [sym_switch_statement] = STATE(281), - [sym_case_statement] = STATE(281), - [sym_while_statement] = STATE(281), - [sym_do_statement] = STATE(281), - [sym_for_statement] = STATE(281), - [sym_return_statement] = STATE(281), - [sym_break_statement] = STATE(281), - [sym_continue_statement] = STATE(281), - [sym_goto_statement] = STATE(281), - [sym__expression] = STATE(614), + [92] = { + [sym_compound_statement] = STATE(254), + [sym_labeled_statement] = STATE(254), + [sym_expression_statement] = STATE(254), + [sym_if_statement] = STATE(254), + [sym_switch_statement] = STATE(254), + [sym_case_statement] = STATE(254), + [sym_while_statement] = STATE(254), + [sym_do_statement] = STATE(254), + [sym_for_statement] = STATE(254), + [sym_return_statement] = STATE(254), + [sym_break_statement] = STATE(254), + [sym_continue_statement] = STATE(254), + [sym_goto_statement] = STATE(254), + [sym__expression] = STATE(568), [sym_comma_expression] = STATE(1210), - [sym_conditional_expression] = STATE(614), - [sym_assignment_expression] = STATE(614), - [sym_pointer_expression] = STATE(505), - [sym_unary_expression] = STATE(614), - [sym_binary_expression] = STATE(614), - [sym_update_expression] = STATE(614), - [sym_cast_expression] = STATE(614), - [sym_sizeof_expression] = STATE(614), - [sym_subscript_expression] = STATE(505), - [sym_call_expression] = STATE(505), - [sym_field_expression] = STATE(505), - [sym_compound_literal_expression] = STATE(614), - [sym_parenthesized_expression] = STATE(505), - [sym_char_literal] = STATE(614), - [sym_concatenated_string] = STATE(614), - [sym_string_literal] = STATE(376), - [sym_identifier] = ACTIONS(950), + [sym_conditional_expression] = STATE(568), + [sym_assignment_expression] = STATE(568), + [sym_pointer_expression] = STATE(532), + [sym_unary_expression] = STATE(568), + [sym_binary_expression] = STATE(568), + [sym_update_expression] = STATE(568), + [sym_cast_expression] = STATE(568), + [sym_sizeof_expression] = STATE(568), + [sym_subscript_expression] = STATE(532), + [sym_call_expression] = STATE(532), + [sym_field_expression] = STATE(532), + [sym_compound_literal_expression] = STATE(568), + [sym_parenthesized_expression] = STATE(532), + [sym_char_literal] = STATE(568), + [sym_concatenated_string] = STATE(568), + [sym_string_literal] = STATE(379), + [sym_identifier] = ACTIONS(956), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -16105,23 +15763,23 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(27), - [anon_sym_LBRACE] = ACTIONS(35), - [anon_sym_if] = ACTIONS(51), - [anon_sym_switch] = ACTIONS(53), - [anon_sym_case] = ACTIONS(55), - [anon_sym_default] = ACTIONS(57), - [anon_sym_while] = ACTIONS(59), - [anon_sym_do] = ACTIONS(61), - [anon_sym_for] = ACTIONS(63), - [anon_sym_return] = ACTIONS(65), - [anon_sym_break] = ACTIONS(67), - [anon_sym_continue] = ACTIONS(69), - [anon_sym_goto] = ACTIONS(71), + [anon_sym_SEMI] = ACTIONS(304), + [anon_sym_LBRACE] = ACTIONS(310), + [anon_sym_if] = ACTIONS(316), + [anon_sym_switch] = ACTIONS(318), + [anon_sym_case] = ACTIONS(320), + [anon_sym_default] = ACTIONS(322), + [anon_sym_while] = ACTIONS(324), + [anon_sym_do] = ACTIONS(326), + [anon_sym_for] = ACTIONS(328), + [anon_sym_return] = ACTIONS(330), + [anon_sym_break] = ACTIONS(332), + [anon_sym_continue] = ACTIONS(334), + [anon_sym_goto] = ACTIONS(336), [anon_sym_DASH_DASH] = ACTIONS(73), [anon_sym_PLUS_PLUS] = ACTIONS(73), [anon_sym_sizeof] = ACTIONS(75), - [sym_number_literal] = ACTIONS(77), + [sym_number_literal] = ACTIONS(338), [anon_sym_L_SQUOTE] = ACTIONS(79), [anon_sym_u_SQUOTE] = ACTIONS(79), [anon_sym_U_SQUOTE] = ACTIONS(79), @@ -16132,43 +15790,43 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_U_DQUOTE] = ACTIONS(81), [anon_sym_u8_DQUOTE] = ACTIONS(81), [anon_sym_DQUOTE] = ACTIONS(81), - [sym_true] = ACTIONS(83), - [sym_false] = ACTIONS(83), - [sym_null] = ACTIONS(83), + [sym_true] = ACTIONS(340), + [sym_false] = ACTIONS(340), + [sym_null] = ACTIONS(340), [sym_comment] = ACTIONS(3), }, - [98] = { - [sym_compound_statement] = STATE(145), - [sym_labeled_statement] = STATE(145), - [sym_expression_statement] = STATE(145), - [sym_if_statement] = STATE(145), - [sym_switch_statement] = STATE(145), - [sym_case_statement] = STATE(145), - [sym_while_statement] = STATE(145), - [sym_do_statement] = STATE(145), - [sym_for_statement] = STATE(145), - [sym_return_statement] = STATE(145), - [sym_break_statement] = STATE(145), - [sym_continue_statement] = STATE(145), - [sym_goto_statement] = STATE(145), - [sym__expression] = STATE(613), - [sym_comma_expression] = STATE(1185), - [sym_conditional_expression] = STATE(613), - [sym_assignment_expression] = STATE(613), - [sym_pointer_expression] = STATE(505), - [sym_unary_expression] = STATE(613), - [sym_binary_expression] = STATE(613), - [sym_update_expression] = STATE(613), - [sym_cast_expression] = STATE(613), - [sym_sizeof_expression] = STATE(613), - [sym_subscript_expression] = STATE(505), - [sym_call_expression] = STATE(505), - [sym_field_expression] = STATE(505), - [sym_compound_literal_expression] = STATE(613), - [sym_parenthesized_expression] = STATE(505), - [sym_char_literal] = STATE(613), - [sym_concatenated_string] = STATE(613), - [sym_string_literal] = STATE(376), + [93] = { + [sym_compound_statement] = STATE(251), + [sym_labeled_statement] = STATE(251), + [sym_expression_statement] = STATE(251), + [sym_if_statement] = STATE(251), + [sym_switch_statement] = STATE(251), + [sym_case_statement] = STATE(251), + [sym_while_statement] = STATE(251), + [sym_do_statement] = STATE(251), + [sym_for_statement] = STATE(251), + [sym_return_statement] = STATE(251), + [sym_break_statement] = STATE(251), + [sym_continue_statement] = STATE(251), + [sym_goto_statement] = STATE(251), + [sym__expression] = STATE(568), + [sym_comma_expression] = STATE(1210), + [sym_conditional_expression] = STATE(568), + [sym_assignment_expression] = STATE(568), + [sym_pointer_expression] = STATE(532), + [sym_unary_expression] = STATE(568), + [sym_binary_expression] = STATE(568), + [sym_update_expression] = STATE(568), + [sym_cast_expression] = STATE(568), + [sym_sizeof_expression] = STATE(568), + [sym_subscript_expression] = STATE(532), + [sym_call_expression] = STATE(532), + [sym_field_expression] = STATE(532), + [sym_compound_literal_expression] = STATE(568), + [sym_parenthesized_expression] = STATE(532), + [sym_char_literal] = STATE(568), + [sym_concatenated_string] = STATE(568), + [sym_string_literal] = STATE(379), [sym_identifier] = ACTIONS(956), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -16177,23 +15835,23 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(103), - [anon_sym_LBRACE] = ACTIONS(109), - [anon_sym_if] = ACTIONS(113), - [anon_sym_switch] = ACTIONS(115), - [anon_sym_case] = ACTIONS(117), - [anon_sym_default] = ACTIONS(119), - [anon_sym_while] = ACTIONS(121), - [anon_sym_do] = ACTIONS(123), - [anon_sym_for] = ACTIONS(125), - [anon_sym_return] = ACTIONS(127), - [anon_sym_break] = ACTIONS(129), - [anon_sym_continue] = ACTIONS(131), - [anon_sym_goto] = ACTIONS(133), + [anon_sym_SEMI] = ACTIONS(304), + [anon_sym_LBRACE] = ACTIONS(310), + [anon_sym_if] = ACTIONS(316), + [anon_sym_switch] = ACTIONS(318), + [anon_sym_case] = ACTIONS(320), + [anon_sym_default] = ACTIONS(322), + [anon_sym_while] = ACTIONS(324), + [anon_sym_do] = ACTIONS(326), + [anon_sym_for] = ACTIONS(328), + [anon_sym_return] = ACTIONS(330), + [anon_sym_break] = ACTIONS(332), + [anon_sym_continue] = ACTIONS(334), + [anon_sym_goto] = ACTIONS(336), [anon_sym_DASH_DASH] = ACTIONS(73), [anon_sym_PLUS_PLUS] = ACTIONS(73), [anon_sym_sizeof] = ACTIONS(75), - [sym_number_literal] = ACTIONS(135), + [sym_number_literal] = ACTIONS(338), [anon_sym_L_SQUOTE] = ACTIONS(79), [anon_sym_u_SQUOTE] = ACTIONS(79), [anon_sym_U_SQUOTE] = ACTIONS(79), @@ -16204,44 +15862,44 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_U_DQUOTE] = ACTIONS(81), [anon_sym_u8_DQUOTE] = ACTIONS(81), [anon_sym_DQUOTE] = ACTIONS(81), - [sym_true] = ACTIONS(137), - [sym_false] = ACTIONS(137), - [sym_null] = ACTIONS(137), + [sym_true] = ACTIONS(340), + [sym_false] = ACTIONS(340), + [sym_null] = ACTIONS(340), [sym_comment] = ACTIONS(3), }, - [99] = { - [sym_compound_statement] = STATE(1237), - [sym_labeled_statement] = STATE(1237), - [sym_expression_statement] = STATE(1237), - [sym_if_statement] = STATE(1237), - [sym_switch_statement] = STATE(1237), - [sym_case_statement] = STATE(1237), - [sym_while_statement] = STATE(1237), - [sym_do_statement] = STATE(1237), - [sym_for_statement] = STATE(1237), - [sym_return_statement] = STATE(1237), - [sym_break_statement] = STATE(1237), - [sym_continue_statement] = STATE(1237), - [sym_goto_statement] = STATE(1237), - [sym__expression] = STATE(614), + [94] = { + [sym_compound_statement] = STATE(250), + [sym_labeled_statement] = STATE(250), + [sym_expression_statement] = STATE(250), + [sym_if_statement] = STATE(250), + [sym_switch_statement] = STATE(250), + [sym_case_statement] = STATE(250), + [sym_while_statement] = STATE(250), + [sym_do_statement] = STATE(250), + [sym_for_statement] = STATE(250), + [sym_return_statement] = STATE(250), + [sym_break_statement] = STATE(250), + [sym_continue_statement] = STATE(250), + [sym_goto_statement] = STATE(250), + [sym__expression] = STATE(568), [sym_comma_expression] = STATE(1210), - [sym_conditional_expression] = STATE(614), - [sym_assignment_expression] = STATE(614), - [sym_pointer_expression] = STATE(505), - [sym_unary_expression] = STATE(614), - [sym_binary_expression] = STATE(614), - [sym_update_expression] = STATE(614), - [sym_cast_expression] = STATE(614), - [sym_sizeof_expression] = STATE(614), - [sym_subscript_expression] = STATE(505), - [sym_call_expression] = STATE(505), - [sym_field_expression] = STATE(505), - [sym_compound_literal_expression] = STATE(614), - [sym_parenthesized_expression] = STATE(505), - [sym_char_literal] = STATE(614), - [sym_concatenated_string] = STATE(614), - [sym_string_literal] = STATE(376), - [sym_identifier] = ACTIONS(950), + [sym_conditional_expression] = STATE(568), + [sym_assignment_expression] = STATE(568), + [sym_pointer_expression] = STATE(532), + [sym_unary_expression] = STATE(568), + [sym_binary_expression] = STATE(568), + [sym_update_expression] = STATE(568), + [sym_cast_expression] = STATE(568), + [sym_sizeof_expression] = STATE(568), + [sym_subscript_expression] = STATE(532), + [sym_call_expression] = STATE(532), + [sym_field_expression] = STATE(532), + [sym_compound_literal_expression] = STATE(568), + [sym_parenthesized_expression] = STATE(532), + [sym_char_literal] = STATE(568), + [sym_concatenated_string] = STATE(568), + [sym_string_literal] = STATE(379), + [sym_identifier] = ACTIONS(956), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -16249,23 +15907,23 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(27), - [anon_sym_LBRACE] = ACTIONS(35), - [anon_sym_if] = ACTIONS(51), - [anon_sym_switch] = ACTIONS(53), - [anon_sym_case] = ACTIONS(55), - [anon_sym_default] = ACTIONS(57), - [anon_sym_while] = ACTIONS(59), - [anon_sym_do] = ACTIONS(61), - [anon_sym_for] = ACTIONS(63), - [anon_sym_return] = ACTIONS(65), - [anon_sym_break] = ACTIONS(67), - [anon_sym_continue] = ACTIONS(69), - [anon_sym_goto] = ACTIONS(71), + [anon_sym_SEMI] = ACTIONS(304), + [anon_sym_LBRACE] = ACTIONS(310), + [anon_sym_if] = ACTIONS(316), + [anon_sym_switch] = ACTIONS(318), + [anon_sym_case] = ACTIONS(320), + [anon_sym_default] = ACTIONS(322), + [anon_sym_while] = ACTIONS(324), + [anon_sym_do] = ACTIONS(326), + [anon_sym_for] = ACTIONS(328), + [anon_sym_return] = ACTIONS(330), + [anon_sym_break] = ACTIONS(332), + [anon_sym_continue] = ACTIONS(334), + [anon_sym_goto] = ACTIONS(336), [anon_sym_DASH_DASH] = ACTIONS(73), [anon_sym_PLUS_PLUS] = ACTIONS(73), [anon_sym_sizeof] = ACTIONS(75), - [sym_number_literal] = ACTIONS(77), + [sym_number_literal] = ACTIONS(338), [anon_sym_L_SQUOTE] = ACTIONS(79), [anon_sym_u_SQUOTE] = ACTIONS(79), [anon_sym_U_SQUOTE] = ACTIONS(79), @@ -16276,43 +15934,43 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_U_DQUOTE] = ACTIONS(81), [anon_sym_u8_DQUOTE] = ACTIONS(81), [anon_sym_DQUOTE] = ACTIONS(81), - [sym_true] = ACTIONS(83), - [sym_false] = ACTIONS(83), - [sym_null] = ACTIONS(83), + [sym_true] = ACTIONS(340), + [sym_false] = ACTIONS(340), + [sym_null] = ACTIONS(340), [sym_comment] = ACTIONS(3), }, - [100] = { - [sym_compound_statement] = STATE(148), - [sym_labeled_statement] = STATE(148), - [sym_expression_statement] = STATE(148), - [sym_if_statement] = STATE(148), - [sym_switch_statement] = STATE(148), - [sym_case_statement] = STATE(148), - [sym_while_statement] = STATE(148), - [sym_do_statement] = STATE(148), - [sym_for_statement] = STATE(148), - [sym_return_statement] = STATE(148), - [sym_break_statement] = STATE(148), - [sym_continue_statement] = STATE(148), - [sym_goto_statement] = STATE(148), - [sym__expression] = STATE(613), - [sym_comma_expression] = STATE(1185), - [sym_conditional_expression] = STATE(613), - [sym_assignment_expression] = STATE(613), - [sym_pointer_expression] = STATE(505), - [sym_unary_expression] = STATE(613), - [sym_binary_expression] = STATE(613), - [sym_update_expression] = STATE(613), - [sym_cast_expression] = STATE(613), - [sym_sizeof_expression] = STATE(613), - [sym_subscript_expression] = STATE(505), - [sym_call_expression] = STATE(505), - [sym_field_expression] = STATE(505), - [sym_compound_literal_expression] = STATE(613), - [sym_parenthesized_expression] = STATE(505), - [sym_char_literal] = STATE(613), - [sym_concatenated_string] = STATE(613), - [sym_string_literal] = STATE(376), + [95] = { + [sym_compound_statement] = STATE(232), + [sym_labeled_statement] = STATE(232), + [sym_expression_statement] = STATE(232), + [sym_if_statement] = STATE(232), + [sym_switch_statement] = STATE(232), + [sym_case_statement] = STATE(232), + [sym_while_statement] = STATE(232), + [sym_do_statement] = STATE(232), + [sym_for_statement] = STATE(232), + [sym_return_statement] = STATE(232), + [sym_break_statement] = STATE(232), + [sym_continue_statement] = STATE(232), + [sym_goto_statement] = STATE(232), + [sym__expression] = STATE(568), + [sym_comma_expression] = STATE(1210), + [sym_conditional_expression] = STATE(568), + [sym_assignment_expression] = STATE(568), + [sym_pointer_expression] = STATE(532), + [sym_unary_expression] = STATE(568), + [sym_binary_expression] = STATE(568), + [sym_update_expression] = STATE(568), + [sym_cast_expression] = STATE(568), + [sym_sizeof_expression] = STATE(568), + [sym_subscript_expression] = STATE(532), + [sym_call_expression] = STATE(532), + [sym_field_expression] = STATE(532), + [sym_compound_literal_expression] = STATE(568), + [sym_parenthesized_expression] = STATE(532), + [sym_char_literal] = STATE(568), + [sym_concatenated_string] = STATE(568), + [sym_string_literal] = STATE(379), [sym_identifier] = ACTIONS(956), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -16321,23 +15979,23 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(103), - [anon_sym_LBRACE] = ACTIONS(109), - [anon_sym_if] = ACTIONS(113), - [anon_sym_switch] = ACTIONS(115), - [anon_sym_case] = ACTIONS(117), - [anon_sym_default] = ACTIONS(119), - [anon_sym_while] = ACTIONS(121), - [anon_sym_do] = ACTIONS(123), - [anon_sym_for] = ACTIONS(125), - [anon_sym_return] = ACTIONS(127), - [anon_sym_break] = ACTIONS(129), - [anon_sym_continue] = ACTIONS(131), - [anon_sym_goto] = ACTIONS(133), + [anon_sym_SEMI] = ACTIONS(304), + [anon_sym_LBRACE] = ACTIONS(310), + [anon_sym_if] = ACTIONS(316), + [anon_sym_switch] = ACTIONS(318), + [anon_sym_case] = ACTIONS(320), + [anon_sym_default] = ACTIONS(322), + [anon_sym_while] = ACTIONS(324), + [anon_sym_do] = ACTIONS(326), + [anon_sym_for] = ACTIONS(328), + [anon_sym_return] = ACTIONS(330), + [anon_sym_break] = ACTIONS(332), + [anon_sym_continue] = ACTIONS(334), + [anon_sym_goto] = ACTIONS(336), [anon_sym_DASH_DASH] = ACTIONS(73), [anon_sym_PLUS_PLUS] = ACTIONS(73), [anon_sym_sizeof] = ACTIONS(75), - [sym_number_literal] = ACTIONS(135), + [sym_number_literal] = ACTIONS(338), [anon_sym_L_SQUOTE] = ACTIONS(79), [anon_sym_u_SQUOTE] = ACTIONS(79), [anon_sym_U_SQUOTE] = ACTIONS(79), @@ -16348,44 +16006,44 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_U_DQUOTE] = ACTIONS(81), [anon_sym_u8_DQUOTE] = ACTIONS(81), [anon_sym_DQUOTE] = ACTIONS(81), - [sym_true] = ACTIONS(137), - [sym_false] = ACTIONS(137), - [sym_null] = ACTIONS(137), + [sym_true] = ACTIONS(340), + [sym_false] = ACTIONS(340), + [sym_null] = ACTIONS(340), [sym_comment] = ACTIONS(3), }, - [101] = { - [sym_compound_statement] = STATE(275), - [sym_labeled_statement] = STATE(275), - [sym_expression_statement] = STATE(275), - [sym_if_statement] = STATE(275), - [sym_switch_statement] = STATE(275), - [sym_case_statement] = STATE(275), - [sym_while_statement] = STATE(275), - [sym_do_statement] = STATE(275), - [sym_for_statement] = STATE(275), - [sym_return_statement] = STATE(275), - [sym_break_statement] = STATE(275), - [sym_continue_statement] = STATE(275), - [sym_goto_statement] = STATE(275), - [sym__expression] = STATE(614), + [96] = { + [sym_compound_statement] = STATE(227), + [sym_labeled_statement] = STATE(227), + [sym_expression_statement] = STATE(227), + [sym_if_statement] = STATE(227), + [sym_switch_statement] = STATE(227), + [sym_case_statement] = STATE(227), + [sym_while_statement] = STATE(227), + [sym_do_statement] = STATE(227), + [sym_for_statement] = STATE(227), + [sym_return_statement] = STATE(227), + [sym_break_statement] = STATE(227), + [sym_continue_statement] = STATE(227), + [sym_goto_statement] = STATE(227), + [sym__expression] = STATE(568), [sym_comma_expression] = STATE(1210), - [sym_conditional_expression] = STATE(614), - [sym_assignment_expression] = STATE(614), - [sym_pointer_expression] = STATE(505), - [sym_unary_expression] = STATE(614), - [sym_binary_expression] = STATE(614), - [sym_update_expression] = STATE(614), - [sym_cast_expression] = STATE(614), - [sym_sizeof_expression] = STATE(614), - [sym_subscript_expression] = STATE(505), - [sym_call_expression] = STATE(505), - [sym_field_expression] = STATE(505), - [sym_compound_literal_expression] = STATE(614), - [sym_parenthesized_expression] = STATE(505), - [sym_char_literal] = STATE(614), - [sym_concatenated_string] = STATE(614), - [sym_string_literal] = STATE(376), - [sym_identifier] = ACTIONS(950), + [sym_conditional_expression] = STATE(568), + [sym_assignment_expression] = STATE(568), + [sym_pointer_expression] = STATE(532), + [sym_unary_expression] = STATE(568), + [sym_binary_expression] = STATE(568), + [sym_update_expression] = STATE(568), + [sym_cast_expression] = STATE(568), + [sym_sizeof_expression] = STATE(568), + [sym_subscript_expression] = STATE(532), + [sym_call_expression] = STATE(532), + [sym_field_expression] = STATE(532), + [sym_compound_literal_expression] = STATE(568), + [sym_parenthesized_expression] = STATE(532), + [sym_char_literal] = STATE(568), + [sym_concatenated_string] = STATE(568), + [sym_string_literal] = STATE(379), + [sym_identifier] = ACTIONS(956), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -16393,23 +16051,23 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(27), - [anon_sym_LBRACE] = ACTIONS(35), - [anon_sym_if] = ACTIONS(51), - [anon_sym_switch] = ACTIONS(53), - [anon_sym_case] = ACTIONS(55), - [anon_sym_default] = ACTIONS(57), - [anon_sym_while] = ACTIONS(59), - [anon_sym_do] = ACTIONS(61), - [anon_sym_for] = ACTIONS(63), - [anon_sym_return] = ACTIONS(65), - [anon_sym_break] = ACTIONS(67), - [anon_sym_continue] = ACTIONS(69), - [anon_sym_goto] = ACTIONS(71), + [anon_sym_SEMI] = ACTIONS(304), + [anon_sym_LBRACE] = ACTIONS(310), + [anon_sym_if] = ACTIONS(316), + [anon_sym_switch] = ACTIONS(318), + [anon_sym_case] = ACTIONS(320), + [anon_sym_default] = ACTIONS(322), + [anon_sym_while] = ACTIONS(324), + [anon_sym_do] = ACTIONS(326), + [anon_sym_for] = ACTIONS(328), + [anon_sym_return] = ACTIONS(330), + [anon_sym_break] = ACTIONS(332), + [anon_sym_continue] = ACTIONS(334), + [anon_sym_goto] = ACTIONS(336), [anon_sym_DASH_DASH] = ACTIONS(73), [anon_sym_PLUS_PLUS] = ACTIONS(73), [anon_sym_sizeof] = ACTIONS(75), - [sym_number_literal] = ACTIONS(77), + [sym_number_literal] = ACTIONS(338), [anon_sym_L_SQUOTE] = ACTIONS(79), [anon_sym_u_SQUOTE] = ACTIONS(79), [anon_sym_U_SQUOTE] = ACTIONS(79), @@ -16420,44 +16078,44 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_U_DQUOTE] = ACTIONS(81), [anon_sym_u8_DQUOTE] = ACTIONS(81), [anon_sym_DQUOTE] = ACTIONS(81), - [sym_true] = ACTIONS(83), - [sym_false] = ACTIONS(83), - [sym_null] = ACTIONS(83), + [sym_true] = ACTIONS(340), + [sym_false] = ACTIONS(340), + [sym_null] = ACTIONS(340), [sym_comment] = ACTIONS(3), }, - [102] = { - [sym_compound_statement] = STATE(214), - [sym_labeled_statement] = STATE(214), - [sym_expression_statement] = STATE(214), - [sym_if_statement] = STATE(214), - [sym_switch_statement] = STATE(214), - [sym_case_statement] = STATE(214), - [sym_while_statement] = STATE(214), - [sym_do_statement] = STATE(214), - [sym_for_statement] = STATE(214), - [sym_return_statement] = STATE(214), - [sym_break_statement] = STATE(214), - [sym_continue_statement] = STATE(214), - [sym_goto_statement] = STATE(214), - [sym__expression] = STATE(614), - [sym_comma_expression] = STATE(1210), - [sym_conditional_expression] = STATE(614), - [sym_assignment_expression] = STATE(614), - [sym_pointer_expression] = STATE(505), - [sym_unary_expression] = STATE(614), - [sym_binary_expression] = STATE(614), - [sym_update_expression] = STATE(614), - [sym_cast_expression] = STATE(614), - [sym_sizeof_expression] = STATE(614), - [sym_subscript_expression] = STATE(505), - [sym_call_expression] = STATE(505), - [sym_field_expression] = STATE(505), - [sym_compound_literal_expression] = STATE(614), - [sym_parenthesized_expression] = STATE(505), - [sym_char_literal] = STATE(614), - [sym_concatenated_string] = STATE(614), - [sym_string_literal] = STATE(376), - [sym_identifier] = ACTIONS(950), + [97] = { + [sym_compound_statement] = STATE(1241), + [sym_labeled_statement] = STATE(1241), + [sym_expression_statement] = STATE(1241), + [sym_if_statement] = STATE(1241), + [sym_switch_statement] = STATE(1241), + [sym_case_statement] = STATE(1241), + [sym_while_statement] = STATE(1241), + [sym_do_statement] = STATE(1241), + [sym_for_statement] = STATE(1241), + [sym_return_statement] = STATE(1241), + [sym_break_statement] = STATE(1241), + [sym_continue_statement] = STATE(1241), + [sym_goto_statement] = STATE(1241), + [sym__expression] = STATE(606), + [sym_comma_expression] = STATE(1218), + [sym_conditional_expression] = STATE(606), + [sym_assignment_expression] = STATE(606), + [sym_pointer_expression] = STATE(532), + [sym_unary_expression] = STATE(606), + [sym_binary_expression] = STATE(606), + [sym_update_expression] = STATE(606), + [sym_cast_expression] = STATE(606), + [sym_sizeof_expression] = STATE(606), + [sym_subscript_expression] = STATE(532), + [sym_call_expression] = STATE(532), + [sym_field_expression] = STATE(532), + [sym_compound_literal_expression] = STATE(606), + [sym_parenthesized_expression] = STATE(532), + [sym_char_literal] = STATE(606), + [sym_concatenated_string] = STATE(606), + [sym_string_literal] = STATE(379), + [sym_identifier] = ACTIONS(952), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -16497,39 +16155,39 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(83), [sym_comment] = ACTIONS(3), }, - [103] = { - [sym_compound_statement] = STATE(138), - [sym_labeled_statement] = STATE(138), - [sym_expression_statement] = STATE(138), - [sym_if_statement] = STATE(138), - [sym_switch_statement] = STATE(138), - [sym_case_statement] = STATE(138), - [sym_while_statement] = STATE(138), - [sym_do_statement] = STATE(138), - [sym_for_statement] = STATE(138), - [sym_return_statement] = STATE(138), - [sym_break_statement] = STATE(138), - [sym_continue_statement] = STATE(138), - [sym_goto_statement] = STATE(138), - [sym__expression] = STATE(613), - [sym_comma_expression] = STATE(1185), - [sym_conditional_expression] = STATE(613), - [sym_assignment_expression] = STATE(613), - [sym_pointer_expression] = STATE(505), - [sym_unary_expression] = STATE(613), - [sym_binary_expression] = STATE(613), - [sym_update_expression] = STATE(613), - [sym_cast_expression] = STATE(613), - [sym_sizeof_expression] = STATE(613), - [sym_subscript_expression] = STATE(505), - [sym_call_expression] = STATE(505), - [sym_field_expression] = STATE(505), - [sym_compound_literal_expression] = STATE(613), - [sym_parenthesized_expression] = STATE(505), - [sym_char_literal] = STATE(613), - [sym_concatenated_string] = STATE(613), - [sym_string_literal] = STATE(376), - [sym_identifier] = ACTIONS(956), + [98] = { + [sym_compound_statement] = STATE(151), + [sym_labeled_statement] = STATE(151), + [sym_expression_statement] = STATE(151), + [sym_if_statement] = STATE(151), + [sym_switch_statement] = STATE(151), + [sym_case_statement] = STATE(151), + [sym_while_statement] = STATE(151), + [sym_do_statement] = STATE(151), + [sym_for_statement] = STATE(151), + [sym_return_statement] = STATE(151), + [sym_break_statement] = STATE(151), + [sym_continue_statement] = STATE(151), + [sym_goto_statement] = STATE(151), + [sym__expression] = STATE(582), + [sym_comma_expression] = STATE(1083), + [sym_conditional_expression] = STATE(582), + [sym_assignment_expression] = STATE(582), + [sym_pointer_expression] = STATE(532), + [sym_unary_expression] = STATE(582), + [sym_binary_expression] = STATE(582), + [sym_update_expression] = STATE(582), + [sym_cast_expression] = STATE(582), + [sym_sizeof_expression] = STATE(582), + [sym_subscript_expression] = STATE(532), + [sym_call_expression] = STATE(532), + [sym_field_expression] = STATE(532), + [sym_compound_literal_expression] = STATE(582), + [sym_parenthesized_expression] = STATE(532), + [sym_char_literal] = STATE(582), + [sym_concatenated_string] = STATE(582), + [sym_string_literal] = STATE(379), + [sym_identifier] = ACTIONS(954), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -16569,39 +16227,39 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(137), [sym_comment] = ACTIONS(3), }, - [104] = { - [sym_compound_statement] = STATE(140), - [sym_labeled_statement] = STATE(140), - [sym_expression_statement] = STATE(140), - [sym_if_statement] = STATE(140), - [sym_switch_statement] = STATE(140), - [sym_case_statement] = STATE(140), - [sym_while_statement] = STATE(140), - [sym_do_statement] = STATE(140), - [sym_for_statement] = STATE(140), - [sym_return_statement] = STATE(140), - [sym_break_statement] = STATE(140), - [sym_continue_statement] = STATE(140), - [sym_goto_statement] = STATE(140), - [sym__expression] = STATE(613), - [sym_comma_expression] = STATE(1185), - [sym_conditional_expression] = STATE(613), - [sym_assignment_expression] = STATE(613), - [sym_pointer_expression] = STATE(505), - [sym_unary_expression] = STATE(613), - [sym_binary_expression] = STATE(613), - [sym_update_expression] = STATE(613), - [sym_cast_expression] = STATE(613), - [sym_sizeof_expression] = STATE(613), - [sym_subscript_expression] = STATE(505), - [sym_call_expression] = STATE(505), - [sym_field_expression] = STATE(505), - [sym_compound_literal_expression] = STATE(613), - [sym_parenthesized_expression] = STATE(505), - [sym_char_literal] = STATE(613), - [sym_concatenated_string] = STATE(613), - [sym_string_literal] = STATE(376), - [sym_identifier] = ACTIONS(956), + [99] = { + [sym_compound_statement] = STATE(155), + [sym_labeled_statement] = STATE(155), + [sym_expression_statement] = STATE(155), + [sym_if_statement] = STATE(155), + [sym_switch_statement] = STATE(155), + [sym_case_statement] = STATE(155), + [sym_while_statement] = STATE(155), + [sym_do_statement] = STATE(155), + [sym_for_statement] = STATE(155), + [sym_return_statement] = STATE(155), + [sym_break_statement] = STATE(155), + [sym_continue_statement] = STATE(155), + [sym_goto_statement] = STATE(155), + [sym__expression] = STATE(582), + [sym_comma_expression] = STATE(1083), + [sym_conditional_expression] = STATE(582), + [sym_assignment_expression] = STATE(582), + [sym_pointer_expression] = STATE(532), + [sym_unary_expression] = STATE(582), + [sym_binary_expression] = STATE(582), + [sym_update_expression] = STATE(582), + [sym_cast_expression] = STATE(582), + [sym_sizeof_expression] = STATE(582), + [sym_subscript_expression] = STATE(532), + [sym_call_expression] = STATE(532), + [sym_field_expression] = STATE(532), + [sym_compound_literal_expression] = STATE(582), + [sym_parenthesized_expression] = STATE(532), + [sym_char_literal] = STATE(582), + [sym_concatenated_string] = STATE(582), + [sym_string_literal] = STATE(379), + [sym_identifier] = ACTIONS(954), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -16641,38 +16299,38 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(137), [sym_comment] = ACTIONS(3), }, - [105] = { - [sym_compound_statement] = STATE(155), - [sym_labeled_statement] = STATE(155), - [sym_expression_statement] = STATE(155), - [sym_if_statement] = STATE(155), - [sym_switch_statement] = STATE(155), - [sym_case_statement] = STATE(155), - [sym_while_statement] = STATE(155), - [sym_do_statement] = STATE(155), - [sym_for_statement] = STATE(155), - [sym_return_statement] = STATE(155), - [sym_break_statement] = STATE(155), - [sym_continue_statement] = STATE(155), - [sym_goto_statement] = STATE(155), - [sym__expression] = STATE(613), - [sym_comma_expression] = STATE(1185), - [sym_conditional_expression] = STATE(613), - [sym_assignment_expression] = STATE(613), - [sym_pointer_expression] = STATE(505), - [sym_unary_expression] = STATE(613), - [sym_binary_expression] = STATE(613), - [sym_update_expression] = STATE(613), - [sym_cast_expression] = STATE(613), - [sym_sizeof_expression] = STATE(613), - [sym_subscript_expression] = STATE(505), - [sym_call_expression] = STATE(505), - [sym_field_expression] = STATE(505), - [sym_compound_literal_expression] = STATE(613), - [sym_parenthesized_expression] = STATE(505), - [sym_char_literal] = STATE(613), - [sym_concatenated_string] = STATE(613), - [sym_string_literal] = STATE(376), + [100] = { + [sym_compound_statement] = STATE(203), + [sym_labeled_statement] = STATE(203), + [sym_expression_statement] = STATE(203), + [sym_if_statement] = STATE(203), + [sym_switch_statement] = STATE(203), + [sym_case_statement] = STATE(203), + [sym_while_statement] = STATE(203), + [sym_do_statement] = STATE(203), + [sym_for_statement] = STATE(203), + [sym_return_statement] = STATE(203), + [sym_break_statement] = STATE(203), + [sym_continue_statement] = STATE(203), + [sym_goto_statement] = STATE(203), + [sym__expression] = STATE(568), + [sym_comma_expression] = STATE(1210), + [sym_conditional_expression] = STATE(568), + [sym_assignment_expression] = STATE(568), + [sym_pointer_expression] = STATE(532), + [sym_unary_expression] = STATE(568), + [sym_binary_expression] = STATE(568), + [sym_update_expression] = STATE(568), + [sym_cast_expression] = STATE(568), + [sym_sizeof_expression] = STATE(568), + [sym_subscript_expression] = STATE(532), + [sym_call_expression] = STATE(532), + [sym_field_expression] = STATE(532), + [sym_compound_literal_expression] = STATE(568), + [sym_parenthesized_expression] = STATE(532), + [sym_char_literal] = STATE(568), + [sym_concatenated_string] = STATE(568), + [sym_string_literal] = STATE(379), [sym_identifier] = ACTIONS(956), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -16681,23 +16339,23 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(103), - [anon_sym_LBRACE] = ACTIONS(109), - [anon_sym_if] = ACTIONS(113), - [anon_sym_switch] = ACTIONS(115), - [anon_sym_case] = ACTIONS(117), - [anon_sym_default] = ACTIONS(119), - [anon_sym_while] = ACTIONS(121), - [anon_sym_do] = ACTIONS(123), - [anon_sym_for] = ACTIONS(125), - [anon_sym_return] = ACTIONS(127), - [anon_sym_break] = ACTIONS(129), - [anon_sym_continue] = ACTIONS(131), - [anon_sym_goto] = ACTIONS(133), + [anon_sym_SEMI] = ACTIONS(304), + [anon_sym_LBRACE] = ACTIONS(310), + [anon_sym_if] = ACTIONS(316), + [anon_sym_switch] = ACTIONS(318), + [anon_sym_case] = ACTIONS(320), + [anon_sym_default] = ACTIONS(322), + [anon_sym_while] = ACTIONS(324), + [anon_sym_do] = ACTIONS(326), + [anon_sym_for] = ACTIONS(328), + [anon_sym_return] = ACTIONS(330), + [anon_sym_break] = ACTIONS(332), + [anon_sym_continue] = ACTIONS(334), + [anon_sym_goto] = ACTIONS(336), [anon_sym_DASH_DASH] = ACTIONS(73), [anon_sym_PLUS_PLUS] = ACTIONS(73), [anon_sym_sizeof] = ACTIONS(75), - [sym_number_literal] = ACTIONS(135), + [sym_number_literal] = ACTIONS(338), [anon_sym_L_SQUOTE] = ACTIONS(79), [anon_sym_u_SQUOTE] = ACTIONS(79), [anon_sym_U_SQUOTE] = ACTIONS(79), @@ -16708,44 +16366,44 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_U_DQUOTE] = ACTIONS(81), [anon_sym_u8_DQUOTE] = ACTIONS(81), [anon_sym_DQUOTE] = ACTIONS(81), - [sym_true] = ACTIONS(137), - [sym_false] = ACTIONS(137), - [sym_null] = ACTIONS(137), + [sym_true] = ACTIONS(340), + [sym_false] = ACTIONS(340), + [sym_null] = ACTIONS(340), [sym_comment] = ACTIONS(3), }, - [106] = { - [sym_compound_statement] = STATE(157), - [sym_labeled_statement] = STATE(157), - [sym_expression_statement] = STATE(157), - [sym_if_statement] = STATE(157), - [sym_switch_statement] = STATE(157), - [sym_case_statement] = STATE(157), - [sym_while_statement] = STATE(157), - [sym_do_statement] = STATE(157), - [sym_for_statement] = STATE(157), - [sym_return_statement] = STATE(157), - [sym_break_statement] = STATE(157), - [sym_continue_statement] = STATE(157), - [sym_goto_statement] = STATE(157), - [sym__expression] = STATE(613), - [sym_comma_expression] = STATE(1185), - [sym_conditional_expression] = STATE(613), - [sym_assignment_expression] = STATE(613), - [sym_pointer_expression] = STATE(505), - [sym_unary_expression] = STATE(613), - [sym_binary_expression] = STATE(613), - [sym_update_expression] = STATE(613), - [sym_cast_expression] = STATE(613), - [sym_sizeof_expression] = STATE(613), - [sym_subscript_expression] = STATE(505), - [sym_call_expression] = STATE(505), - [sym_field_expression] = STATE(505), - [sym_compound_literal_expression] = STATE(613), - [sym_parenthesized_expression] = STATE(505), - [sym_char_literal] = STATE(613), - [sym_concatenated_string] = STATE(613), - [sym_string_literal] = STATE(376), - [sym_identifier] = ACTIONS(956), + [101] = { + [sym_compound_statement] = STATE(160), + [sym_labeled_statement] = STATE(160), + [sym_expression_statement] = STATE(160), + [sym_if_statement] = STATE(160), + [sym_switch_statement] = STATE(160), + [sym_case_statement] = STATE(160), + [sym_while_statement] = STATE(160), + [sym_do_statement] = STATE(160), + [sym_for_statement] = STATE(160), + [sym_return_statement] = STATE(160), + [sym_break_statement] = STATE(160), + [sym_continue_statement] = STATE(160), + [sym_goto_statement] = STATE(160), + [sym__expression] = STATE(582), + [sym_comma_expression] = STATE(1083), + [sym_conditional_expression] = STATE(582), + [sym_assignment_expression] = STATE(582), + [sym_pointer_expression] = STATE(532), + [sym_unary_expression] = STATE(582), + [sym_binary_expression] = STATE(582), + [sym_update_expression] = STATE(582), + [sym_cast_expression] = STATE(582), + [sym_sizeof_expression] = STATE(582), + [sym_subscript_expression] = STATE(532), + [sym_call_expression] = STATE(532), + [sym_field_expression] = STATE(532), + [sym_compound_literal_expression] = STATE(582), + [sym_parenthesized_expression] = STATE(532), + [sym_char_literal] = STATE(582), + [sym_concatenated_string] = STATE(582), + [sym_string_literal] = STATE(379), + [sym_identifier] = ACTIONS(954), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -16785,39 +16443,39 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(137), [sym_comment] = ACTIONS(3), }, - [107] = { - [sym_compound_statement] = STATE(1229), - [sym_labeled_statement] = STATE(1229), - [sym_expression_statement] = STATE(1229), - [sym_if_statement] = STATE(1229), - [sym_switch_statement] = STATE(1229), - [sym_case_statement] = STATE(1229), - [sym_while_statement] = STATE(1229), - [sym_do_statement] = STATE(1229), - [sym_for_statement] = STATE(1229), - [sym_return_statement] = STATE(1229), - [sym_break_statement] = STATE(1229), - [sym_continue_statement] = STATE(1229), - [sym_goto_statement] = STATE(1229), - [sym__expression] = STATE(614), - [sym_comma_expression] = STATE(1210), - [sym_conditional_expression] = STATE(614), - [sym_assignment_expression] = STATE(614), - [sym_pointer_expression] = STATE(505), - [sym_unary_expression] = STATE(614), - [sym_binary_expression] = STATE(614), - [sym_update_expression] = STATE(614), - [sym_cast_expression] = STATE(614), - [sym_sizeof_expression] = STATE(614), - [sym_subscript_expression] = STATE(505), - [sym_call_expression] = STATE(505), - [sym_field_expression] = STATE(505), - [sym_compound_literal_expression] = STATE(614), - [sym_parenthesized_expression] = STATE(505), - [sym_char_literal] = STATE(614), - [sym_concatenated_string] = STATE(614), - [sym_string_literal] = STATE(376), - [sym_identifier] = ACTIONS(950), + [102] = { + [sym_compound_statement] = STATE(209), + [sym_labeled_statement] = STATE(209), + [sym_expression_statement] = STATE(209), + [sym_if_statement] = STATE(209), + [sym_switch_statement] = STATE(209), + [sym_case_statement] = STATE(209), + [sym_while_statement] = STATE(209), + [sym_do_statement] = STATE(209), + [sym_for_statement] = STATE(209), + [sym_return_statement] = STATE(209), + [sym_break_statement] = STATE(209), + [sym_continue_statement] = STATE(209), + [sym_goto_statement] = STATE(209), + [sym__expression] = STATE(606), + [sym_comma_expression] = STATE(1218), + [sym_conditional_expression] = STATE(606), + [sym_assignment_expression] = STATE(606), + [sym_pointer_expression] = STATE(532), + [sym_unary_expression] = STATE(606), + [sym_binary_expression] = STATE(606), + [sym_update_expression] = STATE(606), + [sym_cast_expression] = STATE(606), + [sym_sizeof_expression] = STATE(606), + [sym_subscript_expression] = STATE(532), + [sym_call_expression] = STATE(532), + [sym_field_expression] = STATE(532), + [sym_compound_literal_expression] = STATE(606), + [sym_parenthesized_expression] = STATE(532), + [sym_char_literal] = STATE(606), + [sym_concatenated_string] = STATE(606), + [sym_string_literal] = STATE(379), + [sym_identifier] = ACTIONS(952), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -16857,111 +16515,39 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(83), [sym_comment] = ACTIONS(3), }, - [108] = { - [sym_compound_statement] = STATE(238), - [sym_labeled_statement] = STATE(238), - [sym_expression_statement] = STATE(238), - [sym_if_statement] = STATE(238), - [sym_switch_statement] = STATE(238), - [sym_case_statement] = STATE(238), - [sym_while_statement] = STATE(238), - [sym_do_statement] = STATE(238), - [sym_for_statement] = STATE(238), - [sym_return_statement] = STATE(238), - [sym_break_statement] = STATE(238), - [sym_continue_statement] = STATE(238), - [sym_goto_statement] = STATE(238), - [sym__expression] = STATE(614), - [sym_comma_expression] = STATE(1210), - [sym_conditional_expression] = STATE(614), - [sym_assignment_expression] = STATE(614), - [sym_pointer_expression] = STATE(505), - [sym_unary_expression] = STATE(614), - [sym_binary_expression] = STATE(614), - [sym_update_expression] = STATE(614), - [sym_cast_expression] = STATE(614), - [sym_sizeof_expression] = STATE(614), - [sym_subscript_expression] = STATE(505), - [sym_call_expression] = STATE(505), - [sym_field_expression] = STATE(505), - [sym_compound_literal_expression] = STATE(614), - [sym_parenthesized_expression] = STATE(505), - [sym_char_literal] = STATE(614), - [sym_concatenated_string] = STATE(614), - [sym_string_literal] = STATE(376), - [sym_identifier] = ACTIONS(950), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(27), - [anon_sym_LBRACE] = ACTIONS(35), - [anon_sym_if] = ACTIONS(51), - [anon_sym_switch] = ACTIONS(53), - [anon_sym_case] = ACTIONS(55), - [anon_sym_default] = ACTIONS(57), - [anon_sym_while] = ACTIONS(59), - [anon_sym_do] = ACTIONS(61), - [anon_sym_for] = ACTIONS(63), - [anon_sym_return] = ACTIONS(65), - [anon_sym_break] = ACTIONS(67), - [anon_sym_continue] = ACTIONS(69), - [anon_sym_goto] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(73), - [anon_sym_PLUS_PLUS] = ACTIONS(73), - [anon_sym_sizeof] = ACTIONS(75), - [sym_number_literal] = ACTIONS(77), - [anon_sym_L_SQUOTE] = ACTIONS(79), - [anon_sym_u_SQUOTE] = ACTIONS(79), - [anon_sym_U_SQUOTE] = ACTIONS(79), - [anon_sym_u8_SQUOTE] = ACTIONS(79), - [anon_sym_SQUOTE] = ACTIONS(79), - [anon_sym_L_DQUOTE] = ACTIONS(81), - [anon_sym_u_DQUOTE] = ACTIONS(81), - [anon_sym_U_DQUOTE] = ACTIONS(81), - [anon_sym_u8_DQUOTE] = ACTIONS(81), - [anon_sym_DQUOTE] = ACTIONS(81), - [sym_true] = ACTIONS(83), - [sym_false] = ACTIONS(83), - [sym_null] = ACTIONS(83), - [sym_comment] = ACTIONS(3), - }, - [109] = { - [sym_compound_statement] = STATE(250), - [sym_labeled_statement] = STATE(250), - [sym_expression_statement] = STATE(250), - [sym_if_statement] = STATE(250), - [sym_switch_statement] = STATE(250), - [sym_case_statement] = STATE(250), - [sym_while_statement] = STATE(250), - [sym_do_statement] = STATE(250), - [sym_for_statement] = STATE(250), - [sym_return_statement] = STATE(250), - [sym_break_statement] = STATE(250), - [sym_continue_statement] = STATE(250), - [sym_goto_statement] = STATE(250), - [sym__expression] = STATE(614), - [sym_comma_expression] = STATE(1210), - [sym_conditional_expression] = STATE(614), - [sym_assignment_expression] = STATE(614), - [sym_pointer_expression] = STATE(505), - [sym_unary_expression] = STATE(614), - [sym_binary_expression] = STATE(614), - [sym_update_expression] = STATE(614), - [sym_cast_expression] = STATE(614), - [sym_sizeof_expression] = STATE(614), - [sym_subscript_expression] = STATE(505), - [sym_call_expression] = STATE(505), - [sym_field_expression] = STATE(505), - [sym_compound_literal_expression] = STATE(614), - [sym_parenthesized_expression] = STATE(505), - [sym_char_literal] = STATE(614), - [sym_concatenated_string] = STATE(614), - [sym_string_literal] = STATE(376), - [sym_identifier] = ACTIONS(950), + [103] = { + [sym_compound_statement] = STATE(222), + [sym_labeled_statement] = STATE(222), + [sym_expression_statement] = STATE(222), + [sym_if_statement] = STATE(222), + [sym_switch_statement] = STATE(222), + [sym_case_statement] = STATE(222), + [sym_while_statement] = STATE(222), + [sym_do_statement] = STATE(222), + [sym_for_statement] = STATE(222), + [sym_return_statement] = STATE(222), + [sym_break_statement] = STATE(222), + [sym_continue_statement] = STATE(222), + [sym_goto_statement] = STATE(222), + [sym__expression] = STATE(606), + [sym_comma_expression] = STATE(1218), + [sym_conditional_expression] = STATE(606), + [sym_assignment_expression] = STATE(606), + [sym_pointer_expression] = STATE(532), + [sym_unary_expression] = STATE(606), + [sym_binary_expression] = STATE(606), + [sym_update_expression] = STATE(606), + [sym_cast_expression] = STATE(606), + [sym_sizeof_expression] = STATE(606), + [sym_subscript_expression] = STATE(532), + [sym_call_expression] = STATE(532), + [sym_field_expression] = STATE(532), + [sym_compound_literal_expression] = STATE(606), + [sym_parenthesized_expression] = STATE(532), + [sym_char_literal] = STATE(606), + [sym_concatenated_string] = STATE(606), + [sym_string_literal] = STATE(379), + [sym_identifier] = ACTIONS(952), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -17001,38 +16587,38 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(83), [sym_comment] = ACTIONS(3), }, - [110] = { - [sym_compound_statement] = STATE(287), - [sym_labeled_statement] = STATE(287), - [sym_expression_statement] = STATE(287), - [sym_if_statement] = STATE(287), - [sym_switch_statement] = STATE(287), - [sym_case_statement] = STATE(287), - [sym_while_statement] = STATE(287), - [sym_do_statement] = STATE(287), - [sym_for_statement] = STATE(287), - [sym_return_statement] = STATE(287), - [sym_break_statement] = STATE(287), - [sym_continue_statement] = STATE(287), - [sym_goto_statement] = STATE(287), - [sym__expression] = STATE(596), - [sym_comma_expression] = STATE(1096), - [sym_conditional_expression] = STATE(596), - [sym_assignment_expression] = STATE(596), - [sym_pointer_expression] = STATE(505), - [sym_unary_expression] = STATE(596), - [sym_binary_expression] = STATE(596), - [sym_update_expression] = STATE(596), - [sym_cast_expression] = STATE(596), - [sym_sizeof_expression] = STATE(596), - [sym_subscript_expression] = STATE(505), - [sym_call_expression] = STATE(505), - [sym_field_expression] = STATE(505), - [sym_compound_literal_expression] = STATE(596), - [sym_parenthesized_expression] = STATE(505), - [sym_char_literal] = STATE(596), - [sym_concatenated_string] = STATE(596), - [sym_string_literal] = STATE(376), + [104] = { + [sym_compound_statement] = STATE(166), + [sym_labeled_statement] = STATE(166), + [sym_expression_statement] = STATE(166), + [sym_if_statement] = STATE(166), + [sym_switch_statement] = STATE(166), + [sym_case_statement] = STATE(166), + [sym_while_statement] = STATE(166), + [sym_do_statement] = STATE(166), + [sym_for_statement] = STATE(166), + [sym_return_statement] = STATE(166), + [sym_break_statement] = STATE(166), + [sym_continue_statement] = STATE(166), + [sym_goto_statement] = STATE(166), + [sym__expression] = STATE(582), + [sym_comma_expression] = STATE(1083), + [sym_conditional_expression] = STATE(582), + [sym_assignment_expression] = STATE(582), + [sym_pointer_expression] = STATE(532), + [sym_unary_expression] = STATE(582), + [sym_binary_expression] = STATE(582), + [sym_update_expression] = STATE(582), + [sym_cast_expression] = STATE(582), + [sym_sizeof_expression] = STATE(582), + [sym_subscript_expression] = STATE(532), + [sym_call_expression] = STATE(532), + [sym_field_expression] = STATE(532), + [sym_compound_literal_expression] = STATE(582), + [sym_parenthesized_expression] = STATE(532), + [sym_char_literal] = STATE(582), + [sym_concatenated_string] = STATE(582), + [sym_string_literal] = STATE(379), [sym_identifier] = ACTIONS(954), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -17041,23 +16627,23 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(444), - [anon_sym_LBRACE] = ACTIONS(450), - [anon_sym_if] = ACTIONS(454), - [anon_sym_switch] = ACTIONS(456), - [anon_sym_case] = ACTIONS(458), - [anon_sym_default] = ACTIONS(460), - [anon_sym_while] = ACTIONS(462), - [anon_sym_do] = ACTIONS(464), - [anon_sym_for] = ACTIONS(466), - [anon_sym_return] = ACTIONS(468), - [anon_sym_break] = ACTIONS(470), - [anon_sym_continue] = ACTIONS(472), - [anon_sym_goto] = ACTIONS(474), + [anon_sym_SEMI] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(109), + [anon_sym_if] = ACTIONS(113), + [anon_sym_switch] = ACTIONS(115), + [anon_sym_case] = ACTIONS(117), + [anon_sym_default] = ACTIONS(119), + [anon_sym_while] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_return] = ACTIONS(127), + [anon_sym_break] = ACTIONS(129), + [anon_sym_continue] = ACTIONS(131), + [anon_sym_goto] = ACTIONS(133), [anon_sym_DASH_DASH] = ACTIONS(73), [anon_sym_PLUS_PLUS] = ACTIONS(73), [anon_sym_sizeof] = ACTIONS(75), - [sym_number_literal] = ACTIONS(476), + [sym_number_literal] = ACTIONS(135), [anon_sym_L_SQUOTE] = ACTIONS(79), [anon_sym_u_SQUOTE] = ACTIONS(79), [anon_sym_U_SQUOTE] = ACTIONS(79), @@ -17068,44 +16654,44 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_U_DQUOTE] = ACTIONS(81), [anon_sym_u8_DQUOTE] = ACTIONS(81), [anon_sym_DQUOTE] = ACTIONS(81), - [sym_true] = ACTIONS(478), - [sym_false] = ACTIONS(478), - [sym_null] = ACTIONS(478), + [sym_true] = ACTIONS(137), + [sym_false] = ACTIONS(137), + [sym_null] = ACTIONS(137), [sym_comment] = ACTIONS(3), }, - [111] = { - [sym_compound_statement] = STATE(277), - [sym_labeled_statement] = STATE(277), - [sym_expression_statement] = STATE(277), - [sym_if_statement] = STATE(277), - [sym_switch_statement] = STATE(277), - [sym_case_statement] = STATE(277), - [sym_while_statement] = STATE(277), - [sym_do_statement] = STATE(277), - [sym_for_statement] = STATE(277), - [sym_return_statement] = STATE(277), - [sym_break_statement] = STATE(277), - [sym_continue_statement] = STATE(277), - [sym_goto_statement] = STATE(277), - [sym__expression] = STATE(596), - [sym_comma_expression] = STATE(1096), - [sym_conditional_expression] = STATE(596), - [sym_assignment_expression] = STATE(596), - [sym_pointer_expression] = STATE(505), - [sym_unary_expression] = STATE(596), - [sym_binary_expression] = STATE(596), - [sym_update_expression] = STATE(596), - [sym_cast_expression] = STATE(596), - [sym_sizeof_expression] = STATE(596), - [sym_subscript_expression] = STATE(505), - [sym_call_expression] = STATE(505), - [sym_field_expression] = STATE(505), - [sym_compound_literal_expression] = STATE(596), - [sym_parenthesized_expression] = STATE(505), - [sym_char_literal] = STATE(596), - [sym_concatenated_string] = STATE(596), - [sym_string_literal] = STATE(376), - [sym_identifier] = ACTIONS(954), + [105] = { + [sym_compound_statement] = STATE(230), + [sym_labeled_statement] = STATE(230), + [sym_expression_statement] = STATE(230), + [sym_if_statement] = STATE(230), + [sym_switch_statement] = STATE(230), + [sym_case_statement] = STATE(230), + [sym_while_statement] = STATE(230), + [sym_do_statement] = STATE(230), + [sym_for_statement] = STATE(230), + [sym_return_statement] = STATE(230), + [sym_break_statement] = STATE(230), + [sym_continue_statement] = STATE(230), + [sym_goto_statement] = STATE(230), + [sym__expression] = STATE(607), + [sym_comma_expression] = STATE(1092), + [sym_conditional_expression] = STATE(607), + [sym_assignment_expression] = STATE(607), + [sym_pointer_expression] = STATE(532), + [sym_unary_expression] = STATE(607), + [sym_binary_expression] = STATE(607), + [sym_update_expression] = STATE(607), + [sym_cast_expression] = STATE(607), + [sym_sizeof_expression] = STATE(607), + [sym_subscript_expression] = STATE(532), + [sym_call_expression] = STATE(532), + [sym_field_expression] = STATE(532), + [sym_compound_literal_expression] = STATE(607), + [sym_parenthesized_expression] = STATE(532), + [sym_char_literal] = STATE(607), + [sym_concatenated_string] = STATE(607), + [sym_string_literal] = STATE(379), + [sym_identifier] = ACTIONS(950), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -17113,23 +16699,23 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(444), - [anon_sym_LBRACE] = ACTIONS(450), - [anon_sym_if] = ACTIONS(454), - [anon_sym_switch] = ACTIONS(456), - [anon_sym_case] = ACTIONS(458), - [anon_sym_default] = ACTIONS(460), - [anon_sym_while] = ACTIONS(462), - [anon_sym_do] = ACTIONS(464), - [anon_sym_for] = ACTIONS(466), - [anon_sym_return] = ACTIONS(468), - [anon_sym_break] = ACTIONS(470), - [anon_sym_continue] = ACTIONS(472), - [anon_sym_goto] = ACTIONS(474), + [anon_sym_SEMI] = ACTIONS(364), + [anon_sym_LBRACE] = ACTIONS(370), + [anon_sym_if] = ACTIONS(374), + [anon_sym_switch] = ACTIONS(376), + [anon_sym_case] = ACTIONS(378), + [anon_sym_default] = ACTIONS(380), + [anon_sym_while] = ACTIONS(382), + [anon_sym_do] = ACTIONS(384), + [anon_sym_for] = ACTIONS(386), + [anon_sym_return] = ACTIONS(388), + [anon_sym_break] = ACTIONS(390), + [anon_sym_continue] = ACTIONS(392), + [anon_sym_goto] = ACTIONS(394), [anon_sym_DASH_DASH] = ACTIONS(73), [anon_sym_PLUS_PLUS] = ACTIONS(73), [anon_sym_sizeof] = ACTIONS(75), - [sym_number_literal] = ACTIONS(476), + [sym_number_literal] = ACTIONS(396), [anon_sym_L_SQUOTE] = ACTIONS(79), [anon_sym_u_SQUOTE] = ACTIONS(79), [anon_sym_U_SQUOTE] = ACTIONS(79), @@ -17140,43 +16726,43 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_U_DQUOTE] = ACTIONS(81), [anon_sym_u8_DQUOTE] = ACTIONS(81), [anon_sym_DQUOTE] = ACTIONS(81), - [sym_true] = ACTIONS(478), - [sym_false] = ACTIONS(478), - [sym_null] = ACTIONS(478), + [sym_true] = ACTIONS(398), + [sym_false] = ACTIONS(398), + [sym_null] = ACTIONS(398), [sym_comment] = ACTIONS(3), }, - [112] = { - [sym_compound_statement] = STATE(272), - [sym_labeled_statement] = STATE(272), - [sym_expression_statement] = STATE(272), - [sym_if_statement] = STATE(272), - [sym_switch_statement] = STATE(272), - [sym_case_statement] = STATE(272), - [sym_while_statement] = STATE(272), - [sym_do_statement] = STATE(272), - [sym_for_statement] = STATE(272), - [sym_return_statement] = STATE(272), - [sym_break_statement] = STATE(272), - [sym_continue_statement] = STATE(272), - [sym_goto_statement] = STATE(272), - [sym__expression] = STATE(614), - [sym_comma_expression] = STATE(1210), - [sym_conditional_expression] = STATE(614), - [sym_assignment_expression] = STATE(614), - [sym_pointer_expression] = STATE(505), - [sym_unary_expression] = STATE(614), - [sym_binary_expression] = STATE(614), - [sym_update_expression] = STATE(614), - [sym_cast_expression] = STATE(614), - [sym_sizeof_expression] = STATE(614), - [sym_subscript_expression] = STATE(505), - [sym_call_expression] = STATE(505), - [sym_field_expression] = STATE(505), - [sym_compound_literal_expression] = STATE(614), - [sym_parenthesized_expression] = STATE(505), - [sym_char_literal] = STATE(614), - [sym_concatenated_string] = STATE(614), - [sym_string_literal] = STATE(376), + [106] = { + [sym_compound_statement] = STATE(224), + [sym_labeled_statement] = STATE(224), + [sym_expression_statement] = STATE(224), + [sym_if_statement] = STATE(224), + [sym_switch_statement] = STATE(224), + [sym_case_statement] = STATE(224), + [sym_while_statement] = STATE(224), + [sym_do_statement] = STATE(224), + [sym_for_statement] = STATE(224), + [sym_return_statement] = STATE(224), + [sym_break_statement] = STATE(224), + [sym_continue_statement] = STATE(224), + [sym_goto_statement] = STATE(224), + [sym__expression] = STATE(607), + [sym_comma_expression] = STATE(1092), + [sym_conditional_expression] = STATE(607), + [sym_assignment_expression] = STATE(607), + [sym_pointer_expression] = STATE(532), + [sym_unary_expression] = STATE(607), + [sym_binary_expression] = STATE(607), + [sym_update_expression] = STATE(607), + [sym_cast_expression] = STATE(607), + [sym_sizeof_expression] = STATE(607), + [sym_subscript_expression] = STATE(532), + [sym_call_expression] = STATE(532), + [sym_field_expression] = STATE(532), + [sym_compound_literal_expression] = STATE(607), + [sym_parenthesized_expression] = STATE(532), + [sym_char_literal] = STATE(607), + [sym_concatenated_string] = STATE(607), + [sym_string_literal] = STATE(379), [sym_identifier] = ACTIONS(950), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -17185,23 +16771,23 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(27), - [anon_sym_LBRACE] = ACTIONS(35), - [anon_sym_if] = ACTIONS(51), - [anon_sym_switch] = ACTIONS(53), - [anon_sym_case] = ACTIONS(55), - [anon_sym_default] = ACTIONS(57), - [anon_sym_while] = ACTIONS(59), - [anon_sym_do] = ACTIONS(61), - [anon_sym_for] = ACTIONS(63), - [anon_sym_return] = ACTIONS(65), - [anon_sym_break] = ACTIONS(67), - [anon_sym_continue] = ACTIONS(69), - [anon_sym_goto] = ACTIONS(71), + [anon_sym_SEMI] = ACTIONS(364), + [anon_sym_LBRACE] = ACTIONS(370), + [anon_sym_if] = ACTIONS(374), + [anon_sym_switch] = ACTIONS(376), + [anon_sym_case] = ACTIONS(378), + [anon_sym_default] = ACTIONS(380), + [anon_sym_while] = ACTIONS(382), + [anon_sym_do] = ACTIONS(384), + [anon_sym_for] = ACTIONS(386), + [anon_sym_return] = ACTIONS(388), + [anon_sym_break] = ACTIONS(390), + [anon_sym_continue] = ACTIONS(392), + [anon_sym_goto] = ACTIONS(394), [anon_sym_DASH_DASH] = ACTIONS(73), [anon_sym_PLUS_PLUS] = ACTIONS(73), [anon_sym_sizeof] = ACTIONS(75), - [sym_number_literal] = ACTIONS(77), + [sym_number_literal] = ACTIONS(396), [anon_sym_L_SQUOTE] = ACTIONS(79), [anon_sym_u_SQUOTE] = ACTIONS(79), [anon_sym_U_SQUOTE] = ACTIONS(79), @@ -17212,44 +16798,44 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_U_DQUOTE] = ACTIONS(81), [anon_sym_u8_DQUOTE] = ACTIONS(81), [anon_sym_DQUOTE] = ACTIONS(81), - [sym_true] = ACTIONS(83), - [sym_false] = ACTIONS(83), - [sym_null] = ACTIONS(83), + [sym_true] = ACTIONS(398), + [sym_false] = ACTIONS(398), + [sym_null] = ACTIONS(398), [sym_comment] = ACTIONS(3), }, - [113] = { - [sym_compound_statement] = STATE(293), - [sym_labeled_statement] = STATE(293), - [sym_expression_statement] = STATE(293), - [sym_if_statement] = STATE(293), - [sym_switch_statement] = STATE(293), - [sym_case_statement] = STATE(293), - [sym_while_statement] = STATE(293), - [sym_do_statement] = STATE(293), - [sym_for_statement] = STATE(293), - [sym_return_statement] = STATE(293), - [sym_break_statement] = STATE(293), - [sym_continue_statement] = STATE(293), - [sym_goto_statement] = STATE(293), - [sym__expression] = STATE(596), - [sym_comma_expression] = STATE(1096), - [sym_conditional_expression] = STATE(596), - [sym_assignment_expression] = STATE(596), - [sym_pointer_expression] = STATE(505), - [sym_unary_expression] = STATE(596), - [sym_binary_expression] = STATE(596), - [sym_update_expression] = STATE(596), - [sym_cast_expression] = STATE(596), - [sym_sizeof_expression] = STATE(596), - [sym_subscript_expression] = STATE(505), - [sym_call_expression] = STATE(505), - [sym_field_expression] = STATE(505), - [sym_compound_literal_expression] = STATE(596), - [sym_parenthesized_expression] = STATE(505), - [sym_char_literal] = STATE(596), - [sym_concatenated_string] = STATE(596), - [sym_string_literal] = STATE(376), - [sym_identifier] = ACTIONS(954), + [107] = { + [sym_compound_statement] = STATE(238), + [sym_labeled_statement] = STATE(238), + [sym_expression_statement] = STATE(238), + [sym_if_statement] = STATE(238), + [sym_switch_statement] = STATE(238), + [sym_case_statement] = STATE(238), + [sym_while_statement] = STATE(238), + [sym_do_statement] = STATE(238), + [sym_for_statement] = STATE(238), + [sym_return_statement] = STATE(238), + [sym_break_statement] = STATE(238), + [sym_continue_statement] = STATE(238), + [sym_goto_statement] = STATE(238), + [sym__expression] = STATE(568), + [sym_comma_expression] = STATE(1210), + [sym_conditional_expression] = STATE(568), + [sym_assignment_expression] = STATE(568), + [sym_pointer_expression] = STATE(532), + [sym_unary_expression] = STATE(568), + [sym_binary_expression] = STATE(568), + [sym_update_expression] = STATE(568), + [sym_cast_expression] = STATE(568), + [sym_sizeof_expression] = STATE(568), + [sym_subscript_expression] = STATE(532), + [sym_call_expression] = STATE(532), + [sym_field_expression] = STATE(532), + [sym_compound_literal_expression] = STATE(568), + [sym_parenthesized_expression] = STATE(532), + [sym_char_literal] = STATE(568), + [sym_concatenated_string] = STATE(568), + [sym_string_literal] = STATE(379), + [sym_identifier] = ACTIONS(956), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -17257,23 +16843,23 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(444), - [anon_sym_LBRACE] = ACTIONS(450), - [anon_sym_if] = ACTIONS(454), - [anon_sym_switch] = ACTIONS(456), - [anon_sym_case] = ACTIONS(458), - [anon_sym_default] = ACTIONS(460), - [anon_sym_while] = ACTIONS(462), - [anon_sym_do] = ACTIONS(464), - [anon_sym_for] = ACTIONS(466), - [anon_sym_return] = ACTIONS(468), - [anon_sym_break] = ACTIONS(470), - [anon_sym_continue] = ACTIONS(472), - [anon_sym_goto] = ACTIONS(474), + [anon_sym_SEMI] = ACTIONS(304), + [anon_sym_LBRACE] = ACTIONS(310), + [anon_sym_if] = ACTIONS(316), + [anon_sym_switch] = ACTIONS(318), + [anon_sym_case] = ACTIONS(320), + [anon_sym_default] = ACTIONS(322), + [anon_sym_while] = ACTIONS(324), + [anon_sym_do] = ACTIONS(326), + [anon_sym_for] = ACTIONS(328), + [anon_sym_return] = ACTIONS(330), + [anon_sym_break] = ACTIONS(332), + [anon_sym_continue] = ACTIONS(334), + [anon_sym_goto] = ACTIONS(336), [anon_sym_DASH_DASH] = ACTIONS(73), [anon_sym_PLUS_PLUS] = ACTIONS(73), [anon_sym_sizeof] = ACTIONS(75), - [sym_number_literal] = ACTIONS(476), + [sym_number_literal] = ACTIONS(338), [anon_sym_L_SQUOTE] = ACTIONS(79), [anon_sym_u_SQUOTE] = ACTIONS(79), [anon_sym_U_SQUOTE] = ACTIONS(79), @@ -17284,44 +16870,44 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_U_DQUOTE] = ACTIONS(81), [anon_sym_u8_DQUOTE] = ACTIONS(81), [anon_sym_DQUOTE] = ACTIONS(81), - [sym_true] = ACTIONS(478), - [sym_false] = ACTIONS(478), - [sym_null] = ACTIONS(478), + [sym_true] = ACTIONS(340), + [sym_false] = ACTIONS(340), + [sym_null] = ACTIONS(340), [sym_comment] = ACTIONS(3), }, - [114] = { - [sym_compound_statement] = STATE(289), - [sym_labeled_statement] = STATE(289), - [sym_expression_statement] = STATE(289), - [sym_if_statement] = STATE(289), - [sym_switch_statement] = STATE(289), - [sym_case_statement] = STATE(289), - [sym_while_statement] = STATE(289), - [sym_do_statement] = STATE(289), - [sym_for_statement] = STATE(289), - [sym_return_statement] = STATE(289), - [sym_break_statement] = STATE(289), - [sym_continue_statement] = STATE(289), - [sym_goto_statement] = STATE(289), - [sym__expression] = STATE(596), - [sym_comma_expression] = STATE(1096), - [sym_conditional_expression] = STATE(596), - [sym_assignment_expression] = STATE(596), - [sym_pointer_expression] = STATE(505), - [sym_unary_expression] = STATE(596), - [sym_binary_expression] = STATE(596), - [sym_update_expression] = STATE(596), - [sym_cast_expression] = STATE(596), - [sym_sizeof_expression] = STATE(596), - [sym_subscript_expression] = STATE(505), - [sym_call_expression] = STATE(505), - [sym_field_expression] = STATE(505), - [sym_compound_literal_expression] = STATE(596), - [sym_parenthesized_expression] = STATE(505), - [sym_char_literal] = STATE(596), - [sym_concatenated_string] = STATE(596), - [sym_string_literal] = STATE(376), - [sym_identifier] = ACTIONS(954), + [108] = { + [sym_compound_statement] = STATE(221), + [sym_labeled_statement] = STATE(221), + [sym_expression_statement] = STATE(221), + [sym_if_statement] = STATE(221), + [sym_switch_statement] = STATE(221), + [sym_case_statement] = STATE(221), + [sym_while_statement] = STATE(221), + [sym_do_statement] = STATE(221), + [sym_for_statement] = STATE(221), + [sym_return_statement] = STATE(221), + [sym_break_statement] = STATE(221), + [sym_continue_statement] = STATE(221), + [sym_goto_statement] = STATE(221), + [sym__expression] = STATE(607), + [sym_comma_expression] = STATE(1092), + [sym_conditional_expression] = STATE(607), + [sym_assignment_expression] = STATE(607), + [sym_pointer_expression] = STATE(532), + [sym_unary_expression] = STATE(607), + [sym_binary_expression] = STATE(607), + [sym_update_expression] = STATE(607), + [sym_cast_expression] = STATE(607), + [sym_sizeof_expression] = STATE(607), + [sym_subscript_expression] = STATE(532), + [sym_call_expression] = STATE(532), + [sym_field_expression] = STATE(532), + [sym_compound_literal_expression] = STATE(607), + [sym_parenthesized_expression] = STATE(532), + [sym_char_literal] = STATE(607), + [sym_concatenated_string] = STATE(607), + [sym_string_literal] = STATE(379), + [sym_identifier] = ACTIONS(950), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -17329,23 +16915,23 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(444), - [anon_sym_LBRACE] = ACTIONS(450), - [anon_sym_if] = ACTIONS(454), - [anon_sym_switch] = ACTIONS(456), - [anon_sym_case] = ACTIONS(458), - [anon_sym_default] = ACTIONS(460), - [anon_sym_while] = ACTIONS(462), - [anon_sym_do] = ACTIONS(464), - [anon_sym_for] = ACTIONS(466), - [anon_sym_return] = ACTIONS(468), - [anon_sym_break] = ACTIONS(470), - [anon_sym_continue] = ACTIONS(472), - [anon_sym_goto] = ACTIONS(474), + [anon_sym_SEMI] = ACTIONS(364), + [anon_sym_LBRACE] = ACTIONS(370), + [anon_sym_if] = ACTIONS(374), + [anon_sym_switch] = ACTIONS(376), + [anon_sym_case] = ACTIONS(378), + [anon_sym_default] = ACTIONS(380), + [anon_sym_while] = ACTIONS(382), + [anon_sym_do] = ACTIONS(384), + [anon_sym_for] = ACTIONS(386), + [anon_sym_return] = ACTIONS(388), + [anon_sym_break] = ACTIONS(390), + [anon_sym_continue] = ACTIONS(392), + [anon_sym_goto] = ACTIONS(394), [anon_sym_DASH_DASH] = ACTIONS(73), [anon_sym_PLUS_PLUS] = ACTIONS(73), [anon_sym_sizeof] = ACTIONS(75), - [sym_number_literal] = ACTIONS(476), + [sym_number_literal] = ACTIONS(396), [anon_sym_L_SQUOTE] = ACTIONS(79), [anon_sym_u_SQUOTE] = ACTIONS(79), [anon_sym_U_SQUOTE] = ACTIONS(79), @@ -17356,44 +16942,44 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_U_DQUOTE] = ACTIONS(81), [anon_sym_u8_DQUOTE] = ACTIONS(81), [anon_sym_DQUOTE] = ACTIONS(81), - [sym_true] = ACTIONS(478), - [sym_false] = ACTIONS(478), - [sym_null] = ACTIONS(478), + [sym_true] = ACTIONS(398), + [sym_false] = ACTIONS(398), + [sym_null] = ACTIONS(398), [sym_comment] = ACTIONS(3), }, - [115] = { - [sym_compound_statement] = STATE(268), - [sym_labeled_statement] = STATE(268), - [sym_expression_statement] = STATE(268), - [sym_if_statement] = STATE(268), - [sym_switch_statement] = STATE(268), - [sym_case_statement] = STATE(268), - [sym_while_statement] = STATE(268), - [sym_do_statement] = STATE(268), - [sym_for_statement] = STATE(268), - [sym_return_statement] = STATE(268), - [sym_break_statement] = STATE(268), - [sym_continue_statement] = STATE(268), - [sym_goto_statement] = STATE(268), - [sym__expression] = STATE(616), - [sym_comma_expression] = STATE(1170), - [sym_conditional_expression] = STATE(616), - [sym_assignment_expression] = STATE(616), - [sym_pointer_expression] = STATE(505), - [sym_unary_expression] = STATE(616), - [sym_binary_expression] = STATE(616), - [sym_update_expression] = STATE(616), - [sym_cast_expression] = STATE(616), - [sym_sizeof_expression] = STATE(616), - [sym_subscript_expression] = STATE(505), - [sym_call_expression] = STATE(505), - [sym_field_expression] = STATE(505), - [sym_compound_literal_expression] = STATE(616), - [sym_parenthesized_expression] = STATE(505), - [sym_char_literal] = STATE(616), - [sym_concatenated_string] = STATE(616), - [sym_string_literal] = STATE(376), - [sym_identifier] = ACTIONS(952), + [109] = { + [sym_compound_statement] = STATE(242), + [sym_labeled_statement] = STATE(242), + [sym_expression_statement] = STATE(242), + [sym_if_statement] = STATE(242), + [sym_switch_statement] = STATE(242), + [sym_case_statement] = STATE(242), + [sym_while_statement] = STATE(242), + [sym_do_statement] = STATE(242), + [sym_for_statement] = STATE(242), + [sym_return_statement] = STATE(242), + [sym_break_statement] = STATE(242), + [sym_continue_statement] = STATE(242), + [sym_goto_statement] = STATE(242), + [sym__expression] = STATE(568), + [sym_comma_expression] = STATE(1210), + [sym_conditional_expression] = STATE(568), + [sym_assignment_expression] = STATE(568), + [sym_pointer_expression] = STATE(532), + [sym_unary_expression] = STATE(568), + [sym_binary_expression] = STATE(568), + [sym_update_expression] = STATE(568), + [sym_cast_expression] = STATE(568), + [sym_sizeof_expression] = STATE(568), + [sym_subscript_expression] = STATE(532), + [sym_call_expression] = STATE(532), + [sym_field_expression] = STATE(532), + [sym_compound_literal_expression] = STATE(568), + [sym_parenthesized_expression] = STATE(532), + [sym_char_literal] = STATE(568), + [sym_concatenated_string] = STATE(568), + [sym_string_literal] = STATE(379), + [sym_identifier] = ACTIONS(956), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -17433,38 +17019,38 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(340), [sym_comment] = ACTIONS(3), }, - [116] = { - [sym_compound_statement] = STATE(291), - [sym_labeled_statement] = STATE(291), - [sym_expression_statement] = STATE(291), - [sym_if_statement] = STATE(291), - [sym_switch_statement] = STATE(291), - [sym_case_statement] = STATE(291), - [sym_while_statement] = STATE(291), - [sym_do_statement] = STATE(291), - [sym_for_statement] = STATE(291), - [sym_return_statement] = STATE(291), - [sym_break_statement] = STATE(291), - [sym_continue_statement] = STATE(291), - [sym_goto_statement] = STATE(291), - [sym__expression] = STATE(614), - [sym_comma_expression] = STATE(1210), - [sym_conditional_expression] = STATE(614), - [sym_assignment_expression] = STATE(614), - [sym_pointer_expression] = STATE(505), - [sym_unary_expression] = STATE(614), - [sym_binary_expression] = STATE(614), - [sym_update_expression] = STATE(614), - [sym_cast_expression] = STATE(614), - [sym_sizeof_expression] = STATE(614), - [sym_subscript_expression] = STATE(505), - [sym_call_expression] = STATE(505), - [sym_field_expression] = STATE(505), - [sym_compound_literal_expression] = STATE(614), - [sym_parenthesized_expression] = STATE(505), - [sym_char_literal] = STATE(614), - [sym_concatenated_string] = STATE(614), - [sym_string_literal] = STATE(376), + [110] = { + [sym_compound_statement] = STATE(219), + [sym_labeled_statement] = STATE(219), + [sym_expression_statement] = STATE(219), + [sym_if_statement] = STATE(219), + [sym_switch_statement] = STATE(219), + [sym_case_statement] = STATE(219), + [sym_while_statement] = STATE(219), + [sym_do_statement] = STATE(219), + [sym_for_statement] = STATE(219), + [sym_return_statement] = STATE(219), + [sym_break_statement] = STATE(219), + [sym_continue_statement] = STATE(219), + [sym_goto_statement] = STATE(219), + [sym__expression] = STATE(607), + [sym_comma_expression] = STATE(1092), + [sym_conditional_expression] = STATE(607), + [sym_assignment_expression] = STATE(607), + [sym_pointer_expression] = STATE(532), + [sym_unary_expression] = STATE(607), + [sym_binary_expression] = STATE(607), + [sym_update_expression] = STATE(607), + [sym_cast_expression] = STATE(607), + [sym_sizeof_expression] = STATE(607), + [sym_subscript_expression] = STATE(532), + [sym_call_expression] = STATE(532), + [sym_field_expression] = STATE(532), + [sym_compound_literal_expression] = STATE(607), + [sym_parenthesized_expression] = STATE(532), + [sym_char_literal] = STATE(607), + [sym_concatenated_string] = STATE(607), + [sym_string_literal] = STATE(379), [sym_identifier] = ACTIONS(950), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -17473,23 +17059,23 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(27), - [anon_sym_LBRACE] = ACTIONS(35), - [anon_sym_if] = ACTIONS(51), - [anon_sym_switch] = ACTIONS(53), - [anon_sym_case] = ACTIONS(55), - [anon_sym_default] = ACTIONS(57), - [anon_sym_while] = ACTIONS(59), - [anon_sym_do] = ACTIONS(61), - [anon_sym_for] = ACTIONS(63), - [anon_sym_return] = ACTIONS(65), - [anon_sym_break] = ACTIONS(67), - [anon_sym_continue] = ACTIONS(69), - [anon_sym_goto] = ACTIONS(71), + [anon_sym_SEMI] = ACTIONS(364), + [anon_sym_LBRACE] = ACTIONS(370), + [anon_sym_if] = ACTIONS(374), + [anon_sym_switch] = ACTIONS(376), + [anon_sym_case] = ACTIONS(378), + [anon_sym_default] = ACTIONS(380), + [anon_sym_while] = ACTIONS(382), + [anon_sym_do] = ACTIONS(384), + [anon_sym_for] = ACTIONS(386), + [anon_sym_return] = ACTIONS(388), + [anon_sym_break] = ACTIONS(390), + [anon_sym_continue] = ACTIONS(392), + [anon_sym_goto] = ACTIONS(394), [anon_sym_DASH_DASH] = ACTIONS(73), [anon_sym_PLUS_PLUS] = ACTIONS(73), [anon_sym_sizeof] = ACTIONS(75), - [sym_number_literal] = ACTIONS(77), + [sym_number_literal] = ACTIONS(396), [anon_sym_L_SQUOTE] = ACTIONS(79), [anon_sym_u_SQUOTE] = ACTIONS(79), [anon_sym_U_SQUOTE] = ACTIONS(79), @@ -17500,44 +17086,44 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_U_DQUOTE] = ACTIONS(81), [anon_sym_u8_DQUOTE] = ACTIONS(81), [anon_sym_DQUOTE] = ACTIONS(81), - [sym_true] = ACTIONS(83), - [sym_false] = ACTIONS(83), - [sym_null] = ACTIONS(83), + [sym_true] = ACTIONS(398), + [sym_false] = ACTIONS(398), + [sym_null] = ACTIONS(398), [sym_comment] = ACTIONS(3), }, - [117] = { - [sym_compound_statement] = STATE(288), - [sym_labeled_statement] = STATE(288), - [sym_expression_statement] = STATE(288), - [sym_if_statement] = STATE(288), - [sym_switch_statement] = STATE(288), - [sym_case_statement] = STATE(288), - [sym_while_statement] = STATE(288), - [sym_do_statement] = STATE(288), - [sym_for_statement] = STATE(288), - [sym_return_statement] = STATE(288), - [sym_break_statement] = STATE(288), - [sym_continue_statement] = STATE(288), - [sym_goto_statement] = STATE(288), - [sym__expression] = STATE(614), + [111] = { + [sym_compound_statement] = STATE(244), + [sym_labeled_statement] = STATE(244), + [sym_expression_statement] = STATE(244), + [sym_if_statement] = STATE(244), + [sym_switch_statement] = STATE(244), + [sym_case_statement] = STATE(244), + [sym_while_statement] = STATE(244), + [sym_do_statement] = STATE(244), + [sym_for_statement] = STATE(244), + [sym_return_statement] = STATE(244), + [sym_break_statement] = STATE(244), + [sym_continue_statement] = STATE(244), + [sym_goto_statement] = STATE(244), + [sym__expression] = STATE(568), [sym_comma_expression] = STATE(1210), - [sym_conditional_expression] = STATE(614), - [sym_assignment_expression] = STATE(614), - [sym_pointer_expression] = STATE(505), - [sym_unary_expression] = STATE(614), - [sym_binary_expression] = STATE(614), - [sym_update_expression] = STATE(614), - [sym_cast_expression] = STATE(614), - [sym_sizeof_expression] = STATE(614), - [sym_subscript_expression] = STATE(505), - [sym_call_expression] = STATE(505), - [sym_field_expression] = STATE(505), - [sym_compound_literal_expression] = STATE(614), - [sym_parenthesized_expression] = STATE(505), - [sym_char_literal] = STATE(614), - [sym_concatenated_string] = STATE(614), - [sym_string_literal] = STATE(376), - [sym_identifier] = ACTIONS(950), + [sym_conditional_expression] = STATE(568), + [sym_assignment_expression] = STATE(568), + [sym_pointer_expression] = STATE(532), + [sym_unary_expression] = STATE(568), + [sym_binary_expression] = STATE(568), + [sym_update_expression] = STATE(568), + [sym_cast_expression] = STATE(568), + [sym_sizeof_expression] = STATE(568), + [sym_subscript_expression] = STATE(532), + [sym_call_expression] = STATE(532), + [sym_field_expression] = STATE(532), + [sym_compound_literal_expression] = STATE(568), + [sym_parenthesized_expression] = STATE(532), + [sym_char_literal] = STATE(568), + [sym_concatenated_string] = STATE(568), + [sym_string_literal] = STATE(379), + [sym_identifier] = ACTIONS(956), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -17545,23 +17131,23 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(27), - [anon_sym_LBRACE] = ACTIONS(35), - [anon_sym_if] = ACTIONS(51), - [anon_sym_switch] = ACTIONS(53), - [anon_sym_case] = ACTIONS(55), - [anon_sym_default] = ACTIONS(57), - [anon_sym_while] = ACTIONS(59), - [anon_sym_do] = ACTIONS(61), - [anon_sym_for] = ACTIONS(63), - [anon_sym_return] = ACTIONS(65), - [anon_sym_break] = ACTIONS(67), - [anon_sym_continue] = ACTIONS(69), - [anon_sym_goto] = ACTIONS(71), + [anon_sym_SEMI] = ACTIONS(304), + [anon_sym_LBRACE] = ACTIONS(310), + [anon_sym_if] = ACTIONS(316), + [anon_sym_switch] = ACTIONS(318), + [anon_sym_case] = ACTIONS(320), + [anon_sym_default] = ACTIONS(322), + [anon_sym_while] = ACTIONS(324), + [anon_sym_do] = ACTIONS(326), + [anon_sym_for] = ACTIONS(328), + [anon_sym_return] = ACTIONS(330), + [anon_sym_break] = ACTIONS(332), + [anon_sym_continue] = ACTIONS(334), + [anon_sym_goto] = ACTIONS(336), [anon_sym_DASH_DASH] = ACTIONS(73), [anon_sym_PLUS_PLUS] = ACTIONS(73), [anon_sym_sizeof] = ACTIONS(75), - [sym_number_literal] = ACTIONS(77), + [sym_number_literal] = ACTIONS(338), [anon_sym_L_SQUOTE] = ACTIONS(79), [anon_sym_u_SQUOTE] = ACTIONS(79), [anon_sym_U_SQUOTE] = ACTIONS(79), @@ -17572,44 +17158,44 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_U_DQUOTE] = ACTIONS(81), [anon_sym_u8_DQUOTE] = ACTIONS(81), [anon_sym_DQUOTE] = ACTIONS(81), - [sym_true] = ACTIONS(83), - [sym_false] = ACTIONS(83), - [sym_null] = ACTIONS(83), + [sym_true] = ACTIONS(340), + [sym_false] = ACTIONS(340), + [sym_null] = ACTIONS(340), [sym_comment] = ACTIONS(3), }, - [118] = { - [sym_compound_statement] = STATE(165), - [sym_labeled_statement] = STATE(165), - [sym_expression_statement] = STATE(165), - [sym_if_statement] = STATE(165), - [sym_switch_statement] = STATE(165), - [sym_case_statement] = STATE(165), - [sym_while_statement] = STATE(165), - [sym_do_statement] = STATE(165), - [sym_for_statement] = STATE(165), - [sym_return_statement] = STATE(165), - [sym_break_statement] = STATE(165), - [sym_continue_statement] = STATE(165), - [sym_goto_statement] = STATE(165), - [sym__expression] = STATE(613), - [sym_comma_expression] = STATE(1185), - [sym_conditional_expression] = STATE(613), - [sym_assignment_expression] = STATE(613), - [sym_pointer_expression] = STATE(505), - [sym_unary_expression] = STATE(613), - [sym_binary_expression] = STATE(613), - [sym_update_expression] = STATE(613), - [sym_cast_expression] = STATE(613), - [sym_sizeof_expression] = STATE(613), - [sym_subscript_expression] = STATE(505), - [sym_call_expression] = STATE(505), - [sym_field_expression] = STATE(505), - [sym_compound_literal_expression] = STATE(613), - [sym_parenthesized_expression] = STATE(505), - [sym_char_literal] = STATE(613), - [sym_concatenated_string] = STATE(613), - [sym_string_literal] = STATE(376), - [sym_identifier] = ACTIONS(956), + [112] = { + [sym_compound_statement] = STATE(142), + [sym_labeled_statement] = STATE(142), + [sym_expression_statement] = STATE(142), + [sym_if_statement] = STATE(142), + [sym_switch_statement] = STATE(142), + [sym_case_statement] = STATE(142), + [sym_while_statement] = STATE(142), + [sym_do_statement] = STATE(142), + [sym_for_statement] = STATE(142), + [sym_return_statement] = STATE(142), + [sym_break_statement] = STATE(142), + [sym_continue_statement] = STATE(142), + [sym_goto_statement] = STATE(142), + [sym__expression] = STATE(582), + [sym_comma_expression] = STATE(1083), + [sym_conditional_expression] = STATE(582), + [sym_assignment_expression] = STATE(582), + [sym_pointer_expression] = STATE(532), + [sym_unary_expression] = STATE(582), + [sym_binary_expression] = STATE(582), + [sym_update_expression] = STATE(582), + [sym_cast_expression] = STATE(582), + [sym_sizeof_expression] = STATE(582), + [sym_subscript_expression] = STATE(532), + [sym_call_expression] = STATE(532), + [sym_field_expression] = STATE(532), + [sym_compound_literal_expression] = STATE(582), + [sym_parenthesized_expression] = STATE(532), + [sym_char_literal] = STATE(582), + [sym_concatenated_string] = STATE(582), + [sym_string_literal] = STATE(379), + [sym_identifier] = ACTIONS(954), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -17649,38 +17235,38 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(137), [sym_comment] = ACTIONS(3), }, - [119] = { - [sym_compound_statement] = STATE(271), - [sym_labeled_statement] = STATE(271), - [sym_expression_statement] = STATE(271), - [sym_if_statement] = STATE(271), - [sym_switch_statement] = STATE(271), - [sym_case_statement] = STATE(271), - [sym_while_statement] = STATE(271), - [sym_do_statement] = STATE(271), - [sym_for_statement] = STATE(271), - [sym_return_statement] = STATE(271), - [sym_break_statement] = STATE(271), - [sym_continue_statement] = STATE(271), - [sym_goto_statement] = STATE(271), - [sym__expression] = STATE(596), - [sym_comma_expression] = STATE(1096), - [sym_conditional_expression] = STATE(596), - [sym_assignment_expression] = STATE(596), - [sym_pointer_expression] = STATE(505), - [sym_unary_expression] = STATE(596), - [sym_binary_expression] = STATE(596), - [sym_update_expression] = STATE(596), - [sym_cast_expression] = STATE(596), - [sym_sizeof_expression] = STATE(596), - [sym_subscript_expression] = STATE(505), - [sym_call_expression] = STATE(505), - [sym_field_expression] = STATE(505), - [sym_compound_literal_expression] = STATE(596), - [sym_parenthesized_expression] = STATE(505), - [sym_char_literal] = STATE(596), - [sym_concatenated_string] = STATE(596), - [sym_string_literal] = STATE(376), + [113] = { + [sym_compound_statement] = STATE(141), + [sym_labeled_statement] = STATE(141), + [sym_expression_statement] = STATE(141), + [sym_if_statement] = STATE(141), + [sym_switch_statement] = STATE(141), + [sym_case_statement] = STATE(141), + [sym_while_statement] = STATE(141), + [sym_do_statement] = STATE(141), + [sym_for_statement] = STATE(141), + [sym_return_statement] = STATE(141), + [sym_break_statement] = STATE(141), + [sym_continue_statement] = STATE(141), + [sym_goto_statement] = STATE(141), + [sym__expression] = STATE(582), + [sym_comma_expression] = STATE(1083), + [sym_conditional_expression] = STATE(582), + [sym_assignment_expression] = STATE(582), + [sym_pointer_expression] = STATE(532), + [sym_unary_expression] = STATE(582), + [sym_binary_expression] = STATE(582), + [sym_update_expression] = STATE(582), + [sym_cast_expression] = STATE(582), + [sym_sizeof_expression] = STATE(582), + [sym_subscript_expression] = STATE(532), + [sym_call_expression] = STATE(532), + [sym_field_expression] = STATE(532), + [sym_compound_literal_expression] = STATE(582), + [sym_parenthesized_expression] = STATE(532), + [sym_char_literal] = STATE(582), + [sym_concatenated_string] = STATE(582), + [sym_string_literal] = STATE(379), [sym_identifier] = ACTIONS(954), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -17689,23 +17275,23 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(444), - [anon_sym_LBRACE] = ACTIONS(450), - [anon_sym_if] = ACTIONS(454), - [anon_sym_switch] = ACTIONS(456), - [anon_sym_case] = ACTIONS(458), - [anon_sym_default] = ACTIONS(460), - [anon_sym_while] = ACTIONS(462), - [anon_sym_do] = ACTIONS(464), - [anon_sym_for] = ACTIONS(466), - [anon_sym_return] = ACTIONS(468), - [anon_sym_break] = ACTIONS(470), - [anon_sym_continue] = ACTIONS(472), - [anon_sym_goto] = ACTIONS(474), + [anon_sym_SEMI] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(109), + [anon_sym_if] = ACTIONS(113), + [anon_sym_switch] = ACTIONS(115), + [anon_sym_case] = ACTIONS(117), + [anon_sym_default] = ACTIONS(119), + [anon_sym_while] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_return] = ACTIONS(127), + [anon_sym_break] = ACTIONS(129), + [anon_sym_continue] = ACTIONS(131), + [anon_sym_goto] = ACTIONS(133), [anon_sym_DASH_DASH] = ACTIONS(73), [anon_sym_PLUS_PLUS] = ACTIONS(73), [anon_sym_sizeof] = ACTIONS(75), - [sym_number_literal] = ACTIONS(476), + [sym_number_literal] = ACTIONS(135), [anon_sym_L_SQUOTE] = ACTIONS(79), [anon_sym_u_SQUOTE] = ACTIONS(79), [anon_sym_U_SQUOTE] = ACTIONS(79), @@ -17716,44 +17302,44 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_U_DQUOTE] = ACTIONS(81), [anon_sym_u8_DQUOTE] = ACTIONS(81), [anon_sym_DQUOTE] = ACTIONS(81), - [sym_true] = ACTIONS(478), - [sym_false] = ACTIONS(478), - [sym_null] = ACTIONS(478), + [sym_true] = ACTIONS(137), + [sym_false] = ACTIONS(137), + [sym_null] = ACTIONS(137), [sym_comment] = ACTIONS(3), }, - [120] = { - [sym_compound_statement] = STATE(290), - [sym_labeled_statement] = STATE(290), - [sym_expression_statement] = STATE(290), - [sym_if_statement] = STATE(290), - [sym_switch_statement] = STATE(290), - [sym_case_statement] = STATE(290), - [sym_while_statement] = STATE(290), - [sym_do_statement] = STATE(290), - [sym_for_statement] = STATE(290), - [sym_return_statement] = STATE(290), - [sym_break_statement] = STATE(290), - [sym_continue_statement] = STATE(290), - [sym_goto_statement] = STATE(290), - [sym__expression] = STATE(596), - [sym_comma_expression] = STATE(1096), - [sym_conditional_expression] = STATE(596), - [sym_assignment_expression] = STATE(596), - [sym_pointer_expression] = STATE(505), - [sym_unary_expression] = STATE(596), - [sym_binary_expression] = STATE(596), - [sym_update_expression] = STATE(596), - [sym_cast_expression] = STATE(596), - [sym_sizeof_expression] = STATE(596), - [sym_subscript_expression] = STATE(505), - [sym_call_expression] = STATE(505), - [sym_field_expression] = STATE(505), - [sym_compound_literal_expression] = STATE(596), - [sym_parenthesized_expression] = STATE(505), - [sym_char_literal] = STATE(596), - [sym_concatenated_string] = STATE(596), - [sym_string_literal] = STATE(376), - [sym_identifier] = ACTIONS(954), + [114] = { + [sym_compound_statement] = STATE(280), + [sym_labeled_statement] = STATE(280), + [sym_expression_statement] = STATE(280), + [sym_if_statement] = STATE(280), + [sym_switch_statement] = STATE(280), + [sym_case_statement] = STATE(280), + [sym_while_statement] = STATE(280), + [sym_do_statement] = STATE(280), + [sym_for_statement] = STATE(280), + [sym_return_statement] = STATE(280), + [sym_break_statement] = STATE(280), + [sym_continue_statement] = STATE(280), + [sym_goto_statement] = STATE(280), + [sym__expression] = STATE(606), + [sym_comma_expression] = STATE(1218), + [sym_conditional_expression] = STATE(606), + [sym_assignment_expression] = STATE(606), + [sym_pointer_expression] = STATE(532), + [sym_unary_expression] = STATE(606), + [sym_binary_expression] = STATE(606), + [sym_update_expression] = STATE(606), + [sym_cast_expression] = STATE(606), + [sym_sizeof_expression] = STATE(606), + [sym_subscript_expression] = STATE(532), + [sym_call_expression] = STATE(532), + [sym_field_expression] = STATE(532), + [sym_compound_literal_expression] = STATE(606), + [sym_parenthesized_expression] = STATE(532), + [sym_char_literal] = STATE(606), + [sym_concatenated_string] = STATE(606), + [sym_string_literal] = STATE(379), + [sym_identifier] = ACTIONS(952), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -17761,23 +17347,23 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(444), - [anon_sym_LBRACE] = ACTIONS(450), - [anon_sym_if] = ACTIONS(454), - [anon_sym_switch] = ACTIONS(456), - [anon_sym_case] = ACTIONS(458), - [anon_sym_default] = ACTIONS(460), - [anon_sym_while] = ACTIONS(462), - [anon_sym_do] = ACTIONS(464), - [anon_sym_for] = ACTIONS(466), - [anon_sym_return] = ACTIONS(468), - [anon_sym_break] = ACTIONS(470), - [anon_sym_continue] = ACTIONS(472), - [anon_sym_goto] = ACTIONS(474), + [anon_sym_SEMI] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(35), + [anon_sym_if] = ACTIONS(51), + [anon_sym_switch] = ACTIONS(53), + [anon_sym_case] = ACTIONS(55), + [anon_sym_default] = ACTIONS(57), + [anon_sym_while] = ACTIONS(59), + [anon_sym_do] = ACTIONS(61), + [anon_sym_for] = ACTIONS(63), + [anon_sym_return] = ACTIONS(65), + [anon_sym_break] = ACTIONS(67), + [anon_sym_continue] = ACTIONS(69), + [anon_sym_goto] = ACTIONS(71), [anon_sym_DASH_DASH] = ACTIONS(73), [anon_sym_PLUS_PLUS] = ACTIONS(73), [anon_sym_sizeof] = ACTIONS(75), - [sym_number_literal] = ACTIONS(476), + [sym_number_literal] = ACTIONS(77), [anon_sym_L_SQUOTE] = ACTIONS(79), [anon_sym_u_SQUOTE] = ACTIONS(79), [anon_sym_U_SQUOTE] = ACTIONS(79), @@ -17788,44 +17374,44 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_U_DQUOTE] = ACTIONS(81), [anon_sym_u8_DQUOTE] = ACTIONS(81), [anon_sym_DQUOTE] = ACTIONS(81), - [sym_true] = ACTIONS(478), - [sym_false] = ACTIONS(478), - [sym_null] = ACTIONS(478), + [sym_true] = ACTIONS(83), + [sym_false] = ACTIONS(83), + [sym_null] = ACTIONS(83), [sym_comment] = ACTIONS(3), }, - [121] = { - [sym_compound_statement] = STATE(276), - [sym_labeled_statement] = STATE(276), - [sym_expression_statement] = STATE(276), - [sym_if_statement] = STATE(276), - [sym_switch_statement] = STATE(276), - [sym_case_statement] = STATE(276), - [sym_while_statement] = STATE(276), - [sym_do_statement] = STATE(276), - [sym_for_statement] = STATE(276), - [sym_return_statement] = STATE(276), - [sym_break_statement] = STATE(276), - [sym_continue_statement] = STATE(276), - [sym_goto_statement] = STATE(276), - [sym__expression] = STATE(596), - [sym_comma_expression] = STATE(1096), - [sym_conditional_expression] = STATE(596), - [sym_assignment_expression] = STATE(596), - [sym_pointer_expression] = STATE(505), - [sym_unary_expression] = STATE(596), - [sym_binary_expression] = STATE(596), - [sym_update_expression] = STATE(596), - [sym_cast_expression] = STATE(596), - [sym_sizeof_expression] = STATE(596), - [sym_subscript_expression] = STATE(505), - [sym_call_expression] = STATE(505), - [sym_field_expression] = STATE(505), - [sym_compound_literal_expression] = STATE(596), - [sym_parenthesized_expression] = STATE(505), - [sym_char_literal] = STATE(596), - [sym_concatenated_string] = STATE(596), - [sym_string_literal] = STATE(376), - [sym_identifier] = ACTIONS(954), + [115] = { + [sym_compound_statement] = STATE(218), + [sym_labeled_statement] = STATE(218), + [sym_expression_statement] = STATE(218), + [sym_if_statement] = STATE(218), + [sym_switch_statement] = STATE(218), + [sym_case_statement] = STATE(218), + [sym_while_statement] = STATE(218), + [sym_do_statement] = STATE(218), + [sym_for_statement] = STATE(218), + [sym_return_statement] = STATE(218), + [sym_break_statement] = STATE(218), + [sym_continue_statement] = STATE(218), + [sym_goto_statement] = STATE(218), + [sym__expression] = STATE(607), + [sym_comma_expression] = STATE(1092), + [sym_conditional_expression] = STATE(607), + [sym_assignment_expression] = STATE(607), + [sym_pointer_expression] = STATE(532), + [sym_unary_expression] = STATE(607), + [sym_binary_expression] = STATE(607), + [sym_update_expression] = STATE(607), + [sym_cast_expression] = STATE(607), + [sym_sizeof_expression] = STATE(607), + [sym_subscript_expression] = STATE(532), + [sym_call_expression] = STATE(532), + [sym_field_expression] = STATE(532), + [sym_compound_literal_expression] = STATE(607), + [sym_parenthesized_expression] = STATE(532), + [sym_char_literal] = STATE(607), + [sym_concatenated_string] = STATE(607), + [sym_string_literal] = STATE(379), + [sym_identifier] = ACTIONS(950), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -17833,23 +17419,23 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(444), - [anon_sym_LBRACE] = ACTIONS(450), - [anon_sym_if] = ACTIONS(454), - [anon_sym_switch] = ACTIONS(456), - [anon_sym_case] = ACTIONS(458), - [anon_sym_default] = ACTIONS(460), - [anon_sym_while] = ACTIONS(462), - [anon_sym_do] = ACTIONS(464), - [anon_sym_for] = ACTIONS(466), - [anon_sym_return] = ACTIONS(468), - [anon_sym_break] = ACTIONS(470), - [anon_sym_continue] = ACTIONS(472), - [anon_sym_goto] = ACTIONS(474), + [anon_sym_SEMI] = ACTIONS(364), + [anon_sym_LBRACE] = ACTIONS(370), + [anon_sym_if] = ACTIONS(374), + [anon_sym_switch] = ACTIONS(376), + [anon_sym_case] = ACTIONS(378), + [anon_sym_default] = ACTIONS(380), + [anon_sym_while] = ACTIONS(382), + [anon_sym_do] = ACTIONS(384), + [anon_sym_for] = ACTIONS(386), + [anon_sym_return] = ACTIONS(388), + [anon_sym_break] = ACTIONS(390), + [anon_sym_continue] = ACTIONS(392), + [anon_sym_goto] = ACTIONS(394), [anon_sym_DASH_DASH] = ACTIONS(73), [anon_sym_PLUS_PLUS] = ACTIONS(73), [anon_sym_sizeof] = ACTIONS(75), - [sym_number_literal] = ACTIONS(476), + [sym_number_literal] = ACTIONS(396), [anon_sym_L_SQUOTE] = ACTIONS(79), [anon_sym_u_SQUOTE] = ACTIONS(79), [anon_sym_U_SQUOTE] = ACTIONS(79), @@ -17860,44 +17446,44 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_U_DQUOTE] = ACTIONS(81), [anon_sym_u8_DQUOTE] = ACTIONS(81), [anon_sym_DQUOTE] = ACTIONS(81), - [sym_true] = ACTIONS(478), - [sym_false] = ACTIONS(478), - [sym_null] = ACTIONS(478), + [sym_true] = ACTIONS(398), + [sym_false] = ACTIONS(398), + [sym_null] = ACTIONS(398), [sym_comment] = ACTIONS(3), }, - [122] = { - [sym_compound_statement] = STATE(150), - [sym_labeled_statement] = STATE(150), - [sym_expression_statement] = STATE(150), - [sym_if_statement] = STATE(150), - [sym_switch_statement] = STATE(150), - [sym_case_statement] = STATE(150), - [sym_while_statement] = STATE(150), - [sym_do_statement] = STATE(150), - [sym_for_statement] = STATE(150), - [sym_return_statement] = STATE(150), - [sym_break_statement] = STATE(150), - [sym_continue_statement] = STATE(150), - [sym_goto_statement] = STATE(150), - [sym__expression] = STATE(613), - [sym_comma_expression] = STATE(1185), - [sym_conditional_expression] = STATE(613), - [sym_assignment_expression] = STATE(613), - [sym_pointer_expression] = STATE(505), - [sym_unary_expression] = STATE(613), - [sym_binary_expression] = STATE(613), - [sym_update_expression] = STATE(613), - [sym_cast_expression] = STATE(613), - [sym_sizeof_expression] = STATE(613), - [sym_subscript_expression] = STATE(505), - [sym_call_expression] = STATE(505), - [sym_field_expression] = STATE(505), - [sym_compound_literal_expression] = STATE(613), - [sym_parenthesized_expression] = STATE(505), - [sym_char_literal] = STATE(613), - [sym_concatenated_string] = STATE(613), - [sym_string_literal] = STATE(376), - [sym_identifier] = ACTIONS(956), + [116] = { + [sym_compound_statement] = STATE(283), + [sym_labeled_statement] = STATE(283), + [sym_expression_statement] = STATE(283), + [sym_if_statement] = STATE(283), + [sym_switch_statement] = STATE(283), + [sym_case_statement] = STATE(283), + [sym_while_statement] = STATE(283), + [sym_do_statement] = STATE(283), + [sym_for_statement] = STATE(283), + [sym_return_statement] = STATE(283), + [sym_break_statement] = STATE(283), + [sym_continue_statement] = STATE(283), + [sym_goto_statement] = STATE(283), + [sym__expression] = STATE(606), + [sym_comma_expression] = STATE(1218), + [sym_conditional_expression] = STATE(606), + [sym_assignment_expression] = STATE(606), + [sym_pointer_expression] = STATE(532), + [sym_unary_expression] = STATE(606), + [sym_binary_expression] = STATE(606), + [sym_update_expression] = STATE(606), + [sym_cast_expression] = STATE(606), + [sym_sizeof_expression] = STATE(606), + [sym_subscript_expression] = STATE(532), + [sym_call_expression] = STATE(532), + [sym_field_expression] = STATE(532), + [sym_compound_literal_expression] = STATE(606), + [sym_parenthesized_expression] = STATE(532), + [sym_char_literal] = STATE(606), + [sym_concatenated_string] = STATE(606), + [sym_string_literal] = STATE(379), + [sym_identifier] = ACTIONS(952), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -17905,23 +17491,23 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(103), - [anon_sym_LBRACE] = ACTIONS(109), - [anon_sym_if] = ACTIONS(113), - [anon_sym_switch] = ACTIONS(115), - [anon_sym_case] = ACTIONS(117), - [anon_sym_default] = ACTIONS(119), - [anon_sym_while] = ACTIONS(121), - [anon_sym_do] = ACTIONS(123), - [anon_sym_for] = ACTIONS(125), - [anon_sym_return] = ACTIONS(127), - [anon_sym_break] = ACTIONS(129), - [anon_sym_continue] = ACTIONS(131), - [anon_sym_goto] = ACTIONS(133), + [anon_sym_SEMI] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(35), + [anon_sym_if] = ACTIONS(51), + [anon_sym_switch] = ACTIONS(53), + [anon_sym_case] = ACTIONS(55), + [anon_sym_default] = ACTIONS(57), + [anon_sym_while] = ACTIONS(59), + [anon_sym_do] = ACTIONS(61), + [anon_sym_for] = ACTIONS(63), + [anon_sym_return] = ACTIONS(65), + [anon_sym_break] = ACTIONS(67), + [anon_sym_continue] = ACTIONS(69), + [anon_sym_goto] = ACTIONS(71), [anon_sym_DASH_DASH] = ACTIONS(73), [anon_sym_PLUS_PLUS] = ACTIONS(73), [anon_sym_sizeof] = ACTIONS(75), - [sym_number_literal] = ACTIONS(135), + [sym_number_literal] = ACTIONS(77), [anon_sym_L_SQUOTE] = ACTIONS(79), [anon_sym_u_SQUOTE] = ACTIONS(79), [anon_sym_U_SQUOTE] = ACTIONS(79), @@ -17932,44 +17518,44 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_U_DQUOTE] = ACTIONS(81), [anon_sym_u8_DQUOTE] = ACTIONS(81), [anon_sym_DQUOTE] = ACTIONS(81), - [sym_true] = ACTIONS(137), - [sym_false] = ACTIONS(137), - [sym_null] = ACTIONS(137), + [sym_true] = ACTIONS(83), + [sym_false] = ACTIONS(83), + [sym_null] = ACTIONS(83), [sym_comment] = ACTIONS(3), }, - [123] = { - [sym_compound_statement] = STATE(152), - [sym_labeled_statement] = STATE(152), - [sym_expression_statement] = STATE(152), - [sym_if_statement] = STATE(152), - [sym_switch_statement] = STATE(152), - [sym_case_statement] = STATE(152), - [sym_while_statement] = STATE(152), - [sym_do_statement] = STATE(152), - [sym_for_statement] = STATE(152), - [sym_return_statement] = STATE(152), - [sym_break_statement] = STATE(152), - [sym_continue_statement] = STATE(152), - [sym_goto_statement] = STATE(152), - [sym__expression] = STATE(613), - [sym_comma_expression] = STATE(1185), - [sym_conditional_expression] = STATE(613), - [sym_assignment_expression] = STATE(613), - [sym_pointer_expression] = STATE(505), - [sym_unary_expression] = STATE(613), - [sym_binary_expression] = STATE(613), - [sym_update_expression] = STATE(613), - [sym_cast_expression] = STATE(613), - [sym_sizeof_expression] = STATE(613), - [sym_subscript_expression] = STATE(505), - [sym_call_expression] = STATE(505), - [sym_field_expression] = STATE(505), - [sym_compound_literal_expression] = STATE(613), - [sym_parenthesized_expression] = STATE(505), - [sym_char_literal] = STATE(613), - [sym_concatenated_string] = STATE(613), - [sym_string_literal] = STATE(376), - [sym_identifier] = ACTIONS(956), + [117] = { + [sym_compound_statement] = STATE(286), + [sym_labeled_statement] = STATE(286), + [sym_expression_statement] = STATE(286), + [sym_if_statement] = STATE(286), + [sym_switch_statement] = STATE(286), + [sym_case_statement] = STATE(286), + [sym_while_statement] = STATE(286), + [sym_do_statement] = STATE(286), + [sym_for_statement] = STATE(286), + [sym_return_statement] = STATE(286), + [sym_break_statement] = STATE(286), + [sym_continue_statement] = STATE(286), + [sym_goto_statement] = STATE(286), + [sym__expression] = STATE(606), + [sym_comma_expression] = STATE(1218), + [sym_conditional_expression] = STATE(606), + [sym_assignment_expression] = STATE(606), + [sym_pointer_expression] = STATE(532), + [sym_unary_expression] = STATE(606), + [sym_binary_expression] = STATE(606), + [sym_update_expression] = STATE(606), + [sym_cast_expression] = STATE(606), + [sym_sizeof_expression] = STATE(606), + [sym_subscript_expression] = STATE(532), + [sym_call_expression] = STATE(532), + [sym_field_expression] = STATE(532), + [sym_compound_literal_expression] = STATE(606), + [sym_parenthesized_expression] = STATE(532), + [sym_char_literal] = STATE(606), + [sym_concatenated_string] = STATE(606), + [sym_string_literal] = STATE(379), + [sym_identifier] = ACTIONS(952), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -17977,23 +17563,23 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(103), - [anon_sym_LBRACE] = ACTIONS(109), - [anon_sym_if] = ACTIONS(113), - [anon_sym_switch] = ACTIONS(115), - [anon_sym_case] = ACTIONS(117), - [anon_sym_default] = ACTIONS(119), - [anon_sym_while] = ACTIONS(121), - [anon_sym_do] = ACTIONS(123), - [anon_sym_for] = ACTIONS(125), - [anon_sym_return] = ACTIONS(127), - [anon_sym_break] = ACTIONS(129), - [anon_sym_continue] = ACTIONS(131), - [anon_sym_goto] = ACTIONS(133), + [anon_sym_SEMI] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(35), + [anon_sym_if] = ACTIONS(51), + [anon_sym_switch] = ACTIONS(53), + [anon_sym_case] = ACTIONS(55), + [anon_sym_default] = ACTIONS(57), + [anon_sym_while] = ACTIONS(59), + [anon_sym_do] = ACTIONS(61), + [anon_sym_for] = ACTIONS(63), + [anon_sym_return] = ACTIONS(65), + [anon_sym_break] = ACTIONS(67), + [anon_sym_continue] = ACTIONS(69), + [anon_sym_goto] = ACTIONS(71), [anon_sym_DASH_DASH] = ACTIONS(73), [anon_sym_PLUS_PLUS] = ACTIONS(73), [anon_sym_sizeof] = ACTIONS(75), - [sym_number_literal] = ACTIONS(135), + [sym_number_literal] = ACTIONS(77), [anon_sym_L_SQUOTE] = ACTIONS(79), [anon_sym_u_SQUOTE] = ACTIONS(79), [anon_sym_U_SQUOTE] = ACTIONS(79), @@ -18004,44 +17590,44 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_U_DQUOTE] = ACTIONS(81), [anon_sym_u8_DQUOTE] = ACTIONS(81), [anon_sym_DQUOTE] = ACTIONS(81), - [sym_true] = ACTIONS(137), - [sym_false] = ACTIONS(137), - [sym_null] = ACTIONS(137), + [sym_true] = ACTIONS(83), + [sym_false] = ACTIONS(83), + [sym_null] = ACTIONS(83), [sym_comment] = ACTIONS(3), }, - [124] = { - [sym_compound_statement] = STATE(283), - [sym_labeled_statement] = STATE(283), - [sym_expression_statement] = STATE(283), - [sym_if_statement] = STATE(283), - [sym_switch_statement] = STATE(283), - [sym_case_statement] = STATE(283), - [sym_while_statement] = STATE(283), - [sym_do_statement] = STATE(283), - [sym_for_statement] = STATE(283), - [sym_return_statement] = STATE(283), - [sym_break_statement] = STATE(283), - [sym_continue_statement] = STATE(283), - [sym_goto_statement] = STATE(283), - [sym__expression] = STATE(614), - [sym_comma_expression] = STATE(1210), - [sym_conditional_expression] = STATE(614), - [sym_assignment_expression] = STATE(614), - [sym_pointer_expression] = STATE(505), - [sym_unary_expression] = STATE(614), - [sym_binary_expression] = STATE(614), - [sym_update_expression] = STATE(614), - [sym_cast_expression] = STATE(614), - [sym_sizeof_expression] = STATE(614), - [sym_subscript_expression] = STATE(505), - [sym_call_expression] = STATE(505), - [sym_field_expression] = STATE(505), - [sym_compound_literal_expression] = STATE(614), - [sym_parenthesized_expression] = STATE(505), - [sym_char_literal] = STATE(614), - [sym_concatenated_string] = STATE(614), - [sym_string_literal] = STATE(376), - [sym_identifier] = ACTIONS(950), + [118] = { + [sym_compound_statement] = STATE(287), + [sym_labeled_statement] = STATE(287), + [sym_expression_statement] = STATE(287), + [sym_if_statement] = STATE(287), + [sym_switch_statement] = STATE(287), + [sym_case_statement] = STATE(287), + [sym_while_statement] = STATE(287), + [sym_do_statement] = STATE(287), + [sym_for_statement] = STATE(287), + [sym_return_statement] = STATE(287), + [sym_break_statement] = STATE(287), + [sym_continue_statement] = STATE(287), + [sym_goto_statement] = STATE(287), + [sym__expression] = STATE(606), + [sym_comma_expression] = STATE(1218), + [sym_conditional_expression] = STATE(606), + [sym_assignment_expression] = STATE(606), + [sym_pointer_expression] = STATE(532), + [sym_unary_expression] = STATE(606), + [sym_binary_expression] = STATE(606), + [sym_update_expression] = STATE(606), + [sym_cast_expression] = STATE(606), + [sym_sizeof_expression] = STATE(606), + [sym_subscript_expression] = STATE(532), + [sym_call_expression] = STATE(532), + [sym_field_expression] = STATE(532), + [sym_compound_literal_expression] = STATE(606), + [sym_parenthesized_expression] = STATE(532), + [sym_char_literal] = STATE(606), + [sym_concatenated_string] = STATE(606), + [sym_string_literal] = STATE(379), + [sym_identifier] = ACTIONS(952), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -18081,39 +17667,39 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(83), [sym_comment] = ACTIONS(3), }, - [125] = { - [sym_compound_statement] = STATE(280), - [sym_labeled_statement] = STATE(280), - [sym_expression_statement] = STATE(280), - [sym_if_statement] = STATE(280), - [sym_switch_statement] = STATE(280), - [sym_case_statement] = STATE(280), - [sym_while_statement] = STATE(280), - [sym_do_statement] = STATE(280), - [sym_for_statement] = STATE(280), - [sym_return_statement] = STATE(280), - [sym_break_statement] = STATE(280), - [sym_continue_statement] = STATE(280), - [sym_goto_statement] = STATE(280), - [sym__expression] = STATE(596), - [sym_comma_expression] = STATE(1096), - [sym_conditional_expression] = STATE(596), - [sym_assignment_expression] = STATE(596), - [sym_pointer_expression] = STATE(505), - [sym_unary_expression] = STATE(596), - [sym_binary_expression] = STATE(596), - [sym_update_expression] = STATE(596), - [sym_cast_expression] = STATE(596), - [sym_sizeof_expression] = STATE(596), - [sym_subscript_expression] = STATE(505), - [sym_call_expression] = STATE(505), - [sym_field_expression] = STATE(505), - [sym_compound_literal_expression] = STATE(596), - [sym_parenthesized_expression] = STATE(505), - [sym_char_literal] = STATE(596), - [sym_concatenated_string] = STATE(596), - [sym_string_literal] = STATE(376), - [sym_identifier] = ACTIONS(954), + [119] = { + [sym_compound_statement] = STATE(213), + [sym_labeled_statement] = STATE(213), + [sym_expression_statement] = STATE(213), + [sym_if_statement] = STATE(213), + [sym_switch_statement] = STATE(213), + [sym_case_statement] = STATE(213), + [sym_while_statement] = STATE(213), + [sym_do_statement] = STATE(213), + [sym_for_statement] = STATE(213), + [sym_return_statement] = STATE(213), + [sym_break_statement] = STATE(213), + [sym_continue_statement] = STATE(213), + [sym_goto_statement] = STATE(213), + [sym__expression] = STATE(607), + [sym_comma_expression] = STATE(1092), + [sym_conditional_expression] = STATE(607), + [sym_assignment_expression] = STATE(607), + [sym_pointer_expression] = STATE(532), + [sym_unary_expression] = STATE(607), + [sym_binary_expression] = STATE(607), + [sym_update_expression] = STATE(607), + [sym_cast_expression] = STATE(607), + [sym_sizeof_expression] = STATE(607), + [sym_subscript_expression] = STATE(532), + [sym_call_expression] = STATE(532), + [sym_field_expression] = STATE(532), + [sym_compound_literal_expression] = STATE(607), + [sym_parenthesized_expression] = STATE(532), + [sym_char_literal] = STATE(607), + [sym_concatenated_string] = STATE(607), + [sym_string_literal] = STATE(379), + [sym_identifier] = ACTIONS(950), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -18121,23 +17707,23 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(444), - [anon_sym_LBRACE] = ACTIONS(450), - [anon_sym_if] = ACTIONS(454), - [anon_sym_switch] = ACTIONS(456), - [anon_sym_case] = ACTIONS(458), - [anon_sym_default] = ACTIONS(460), - [anon_sym_while] = ACTIONS(462), - [anon_sym_do] = ACTIONS(464), - [anon_sym_for] = ACTIONS(466), - [anon_sym_return] = ACTIONS(468), - [anon_sym_break] = ACTIONS(470), - [anon_sym_continue] = ACTIONS(472), - [anon_sym_goto] = ACTIONS(474), + [anon_sym_SEMI] = ACTIONS(364), + [anon_sym_LBRACE] = ACTIONS(370), + [anon_sym_if] = ACTIONS(374), + [anon_sym_switch] = ACTIONS(376), + [anon_sym_case] = ACTIONS(378), + [anon_sym_default] = ACTIONS(380), + [anon_sym_while] = ACTIONS(382), + [anon_sym_do] = ACTIONS(384), + [anon_sym_for] = ACTIONS(386), + [anon_sym_return] = ACTIONS(388), + [anon_sym_break] = ACTIONS(390), + [anon_sym_continue] = ACTIONS(392), + [anon_sym_goto] = ACTIONS(394), [anon_sym_DASH_DASH] = ACTIONS(73), [anon_sym_PLUS_PLUS] = ACTIONS(73), [anon_sym_sizeof] = ACTIONS(75), - [sym_number_literal] = ACTIONS(476), + [sym_number_literal] = ACTIONS(396), [anon_sym_L_SQUOTE] = ACTIONS(79), [anon_sym_u_SQUOTE] = ACTIONS(79), [anon_sym_U_SQUOTE] = ACTIONS(79), @@ -18148,44 +17734,44 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_U_DQUOTE] = ACTIONS(81), [anon_sym_u8_DQUOTE] = ACTIONS(81), [anon_sym_DQUOTE] = ACTIONS(81), - [sym_true] = ACTIONS(478), - [sym_false] = ACTIONS(478), - [sym_null] = ACTIONS(478), + [sym_true] = ACTIONS(398), + [sym_false] = ACTIONS(398), + [sym_null] = ACTIONS(398), [sym_comment] = ACTIONS(3), }, - [126] = { - [sym_compound_statement] = STATE(199), - [sym_labeled_statement] = STATE(199), - [sym_expression_statement] = STATE(199), - [sym_if_statement] = STATE(199), - [sym_switch_statement] = STATE(199), - [sym_case_statement] = STATE(199), - [sym_while_statement] = STATE(199), - [sym_do_statement] = STATE(199), - [sym_for_statement] = STATE(199), - [sym_return_statement] = STATE(199), - [sym_break_statement] = STATE(199), - [sym_continue_statement] = STATE(199), - [sym_goto_statement] = STATE(199), - [sym__expression] = STATE(616), - [sym_comma_expression] = STATE(1170), - [sym_conditional_expression] = STATE(616), - [sym_assignment_expression] = STATE(616), - [sym_pointer_expression] = STATE(505), - [sym_unary_expression] = STATE(616), - [sym_binary_expression] = STATE(616), - [sym_update_expression] = STATE(616), - [sym_cast_expression] = STATE(616), - [sym_sizeof_expression] = STATE(616), - [sym_subscript_expression] = STATE(505), - [sym_call_expression] = STATE(505), - [sym_field_expression] = STATE(505), - [sym_compound_literal_expression] = STATE(616), - [sym_parenthesized_expression] = STATE(505), - [sym_char_literal] = STATE(616), - [sym_concatenated_string] = STATE(616), - [sym_string_literal] = STATE(376), - [sym_identifier] = ACTIONS(952), + [120] = { + [sym_compound_statement] = STATE(259), + [sym_labeled_statement] = STATE(259), + [sym_expression_statement] = STATE(259), + [sym_if_statement] = STATE(259), + [sym_switch_statement] = STATE(259), + [sym_case_statement] = STATE(259), + [sym_while_statement] = STATE(259), + [sym_do_statement] = STATE(259), + [sym_for_statement] = STATE(259), + [sym_return_statement] = STATE(259), + [sym_break_statement] = STATE(259), + [sym_continue_statement] = STATE(259), + [sym_goto_statement] = STATE(259), + [sym__expression] = STATE(607), + [sym_comma_expression] = STATE(1092), + [sym_conditional_expression] = STATE(607), + [sym_assignment_expression] = STATE(607), + [sym_pointer_expression] = STATE(532), + [sym_unary_expression] = STATE(607), + [sym_binary_expression] = STATE(607), + [sym_update_expression] = STATE(607), + [sym_cast_expression] = STATE(607), + [sym_sizeof_expression] = STATE(607), + [sym_subscript_expression] = STATE(532), + [sym_call_expression] = STATE(532), + [sym_field_expression] = STATE(532), + [sym_compound_literal_expression] = STATE(607), + [sym_parenthesized_expression] = STATE(532), + [sym_char_literal] = STATE(607), + [sym_concatenated_string] = STATE(607), + [sym_string_literal] = STATE(379), + [sym_identifier] = ACTIONS(950), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -18193,23 +17779,23 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(304), - [anon_sym_LBRACE] = ACTIONS(310), - [anon_sym_if] = ACTIONS(316), - [anon_sym_switch] = ACTIONS(318), - [anon_sym_case] = ACTIONS(320), - [anon_sym_default] = ACTIONS(322), - [anon_sym_while] = ACTIONS(324), - [anon_sym_do] = ACTIONS(326), - [anon_sym_for] = ACTIONS(328), - [anon_sym_return] = ACTIONS(330), - [anon_sym_break] = ACTIONS(332), - [anon_sym_continue] = ACTIONS(334), - [anon_sym_goto] = ACTIONS(336), + [anon_sym_SEMI] = ACTIONS(364), + [anon_sym_LBRACE] = ACTIONS(370), + [anon_sym_if] = ACTIONS(374), + [anon_sym_switch] = ACTIONS(376), + [anon_sym_case] = ACTIONS(378), + [anon_sym_default] = ACTIONS(380), + [anon_sym_while] = ACTIONS(382), + [anon_sym_do] = ACTIONS(384), + [anon_sym_for] = ACTIONS(386), + [anon_sym_return] = ACTIONS(388), + [anon_sym_break] = ACTIONS(390), + [anon_sym_continue] = ACTIONS(392), + [anon_sym_goto] = ACTIONS(394), [anon_sym_DASH_DASH] = ACTIONS(73), [anon_sym_PLUS_PLUS] = ACTIONS(73), [anon_sym_sizeof] = ACTIONS(75), - [sym_number_literal] = ACTIONS(338), + [sym_number_literal] = ACTIONS(396), [anon_sym_L_SQUOTE] = ACTIONS(79), [anon_sym_u_SQUOTE] = ACTIONS(79), [anon_sym_U_SQUOTE] = ACTIONS(79), @@ -18220,44 +17806,44 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_U_DQUOTE] = ACTIONS(81), [anon_sym_u8_DQUOTE] = ACTIONS(81), [anon_sym_DQUOTE] = ACTIONS(81), - [sym_true] = ACTIONS(340), - [sym_false] = ACTIONS(340), - [sym_null] = ACTIONS(340), + [sym_true] = ACTIONS(398), + [sym_false] = ACTIONS(398), + [sym_null] = ACTIONS(398), [sym_comment] = ACTIONS(3), }, - [127] = { - [sym_compound_statement] = STATE(168), - [sym_labeled_statement] = STATE(168), - [sym_expression_statement] = STATE(168), - [sym_if_statement] = STATE(168), - [sym_switch_statement] = STATE(168), - [sym_case_statement] = STATE(168), - [sym_while_statement] = STATE(168), - [sym_do_statement] = STATE(168), - [sym_for_statement] = STATE(168), - [sym_return_statement] = STATE(168), - [sym_break_statement] = STATE(168), - [sym_continue_statement] = STATE(168), - [sym_goto_statement] = STATE(168), - [sym__expression] = STATE(613), - [sym_comma_expression] = STATE(1185), - [sym_conditional_expression] = STATE(613), - [sym_assignment_expression] = STATE(613), - [sym_pointer_expression] = STATE(505), - [sym_unary_expression] = STATE(613), - [sym_binary_expression] = STATE(613), - [sym_update_expression] = STATE(613), - [sym_cast_expression] = STATE(613), - [sym_sizeof_expression] = STATE(613), - [sym_subscript_expression] = STATE(505), - [sym_call_expression] = STATE(505), - [sym_field_expression] = STATE(505), - [sym_compound_literal_expression] = STATE(613), - [sym_parenthesized_expression] = STATE(505), - [sym_char_literal] = STATE(613), - [sym_concatenated_string] = STATE(613), - [sym_string_literal] = STATE(376), - [sym_identifier] = ACTIONS(956), + [121] = { + [sym_compound_statement] = STATE(204), + [sym_labeled_statement] = STATE(204), + [sym_expression_statement] = STATE(204), + [sym_if_statement] = STATE(204), + [sym_switch_statement] = STATE(204), + [sym_case_statement] = STATE(204), + [sym_while_statement] = STATE(204), + [sym_do_statement] = STATE(204), + [sym_for_statement] = STATE(204), + [sym_return_statement] = STATE(204), + [sym_break_statement] = STATE(204), + [sym_continue_statement] = STATE(204), + [sym_goto_statement] = STATE(204), + [sym__expression] = STATE(607), + [sym_comma_expression] = STATE(1092), + [sym_conditional_expression] = STATE(607), + [sym_assignment_expression] = STATE(607), + [sym_pointer_expression] = STATE(532), + [sym_unary_expression] = STATE(607), + [sym_binary_expression] = STATE(607), + [sym_update_expression] = STATE(607), + [sym_cast_expression] = STATE(607), + [sym_sizeof_expression] = STATE(607), + [sym_subscript_expression] = STATE(532), + [sym_call_expression] = STATE(532), + [sym_field_expression] = STATE(532), + [sym_compound_literal_expression] = STATE(607), + [sym_parenthesized_expression] = STATE(532), + [sym_char_literal] = STATE(607), + [sym_concatenated_string] = STATE(607), + [sym_string_literal] = STATE(379), + [sym_identifier] = ACTIONS(950), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -18265,23 +17851,23 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(103), - [anon_sym_LBRACE] = ACTIONS(109), - [anon_sym_if] = ACTIONS(113), - [anon_sym_switch] = ACTIONS(115), - [anon_sym_case] = ACTIONS(117), - [anon_sym_default] = ACTIONS(119), - [anon_sym_while] = ACTIONS(121), - [anon_sym_do] = ACTIONS(123), - [anon_sym_for] = ACTIONS(125), - [anon_sym_return] = ACTIONS(127), - [anon_sym_break] = ACTIONS(129), - [anon_sym_continue] = ACTIONS(131), - [anon_sym_goto] = ACTIONS(133), + [anon_sym_SEMI] = ACTIONS(364), + [anon_sym_LBRACE] = ACTIONS(370), + [anon_sym_if] = ACTIONS(374), + [anon_sym_switch] = ACTIONS(376), + [anon_sym_case] = ACTIONS(378), + [anon_sym_default] = ACTIONS(380), + [anon_sym_while] = ACTIONS(382), + [anon_sym_do] = ACTIONS(384), + [anon_sym_for] = ACTIONS(386), + [anon_sym_return] = ACTIONS(388), + [anon_sym_break] = ACTIONS(390), + [anon_sym_continue] = ACTIONS(392), + [anon_sym_goto] = ACTIONS(394), [anon_sym_DASH_DASH] = ACTIONS(73), [anon_sym_PLUS_PLUS] = ACTIONS(73), [anon_sym_sizeof] = ACTIONS(75), - [sym_number_literal] = ACTIONS(135), + [sym_number_literal] = ACTIONS(396), [anon_sym_L_SQUOTE] = ACTIONS(79), [anon_sym_u_SQUOTE] = ACTIONS(79), [anon_sym_U_SQUOTE] = ACTIONS(79), @@ -18292,44 +17878,44 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_U_DQUOTE] = ACTIONS(81), [anon_sym_u8_DQUOTE] = ACTIONS(81), [anon_sym_DQUOTE] = ACTIONS(81), - [sym_true] = ACTIONS(137), - [sym_false] = ACTIONS(137), - [sym_null] = ACTIONS(137), + [sym_true] = ACTIONS(398), + [sym_false] = ACTIONS(398), + [sym_null] = ACTIONS(398), [sym_comment] = ACTIONS(3), }, - [128] = { - [sym_compound_statement] = STATE(278), - [sym_labeled_statement] = STATE(278), - [sym_expression_statement] = STATE(278), - [sym_if_statement] = STATE(278), - [sym_switch_statement] = STATE(278), - [sym_case_statement] = STATE(278), - [sym_while_statement] = STATE(278), - [sym_do_statement] = STATE(278), - [sym_for_statement] = STATE(278), - [sym_return_statement] = STATE(278), - [sym_break_statement] = STATE(278), - [sym_continue_statement] = STATE(278), - [sym_goto_statement] = STATE(278), - [sym__expression] = STATE(596), - [sym_comma_expression] = STATE(1096), - [sym_conditional_expression] = STATE(596), - [sym_assignment_expression] = STATE(596), - [sym_pointer_expression] = STATE(505), - [sym_unary_expression] = STATE(596), - [sym_binary_expression] = STATE(596), - [sym_update_expression] = STATE(596), - [sym_cast_expression] = STATE(596), - [sym_sizeof_expression] = STATE(596), - [sym_subscript_expression] = STATE(505), - [sym_call_expression] = STATE(505), - [sym_field_expression] = STATE(505), - [sym_compound_literal_expression] = STATE(596), - [sym_parenthesized_expression] = STATE(505), - [sym_char_literal] = STATE(596), - [sym_concatenated_string] = STATE(596), - [sym_string_literal] = STATE(376), - [sym_identifier] = ACTIONS(954), + [122] = { + [sym_compound_statement] = STATE(253), + [sym_labeled_statement] = STATE(253), + [sym_expression_statement] = STATE(253), + [sym_if_statement] = STATE(253), + [sym_switch_statement] = STATE(253), + [sym_case_statement] = STATE(253), + [sym_while_statement] = STATE(253), + [sym_do_statement] = STATE(253), + [sym_for_statement] = STATE(253), + [sym_return_statement] = STATE(253), + [sym_break_statement] = STATE(253), + [sym_continue_statement] = STATE(253), + [sym_goto_statement] = STATE(253), + [sym__expression] = STATE(607), + [sym_comma_expression] = STATE(1092), + [sym_conditional_expression] = STATE(607), + [sym_assignment_expression] = STATE(607), + [sym_pointer_expression] = STATE(532), + [sym_unary_expression] = STATE(607), + [sym_binary_expression] = STATE(607), + [sym_update_expression] = STATE(607), + [sym_cast_expression] = STATE(607), + [sym_sizeof_expression] = STATE(607), + [sym_subscript_expression] = STATE(532), + [sym_call_expression] = STATE(532), + [sym_field_expression] = STATE(532), + [sym_compound_literal_expression] = STATE(607), + [sym_parenthesized_expression] = STATE(532), + [sym_char_literal] = STATE(607), + [sym_concatenated_string] = STATE(607), + [sym_string_literal] = STATE(379), + [sym_identifier] = ACTIONS(950), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -18337,23 +17923,23 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(444), - [anon_sym_LBRACE] = ACTIONS(450), - [anon_sym_if] = ACTIONS(454), - [anon_sym_switch] = ACTIONS(456), - [anon_sym_case] = ACTIONS(458), - [anon_sym_default] = ACTIONS(460), - [anon_sym_while] = ACTIONS(462), - [anon_sym_do] = ACTIONS(464), - [anon_sym_for] = ACTIONS(466), - [anon_sym_return] = ACTIONS(468), - [anon_sym_break] = ACTIONS(470), - [anon_sym_continue] = ACTIONS(472), - [anon_sym_goto] = ACTIONS(474), + [anon_sym_SEMI] = ACTIONS(364), + [anon_sym_LBRACE] = ACTIONS(370), + [anon_sym_if] = ACTIONS(374), + [anon_sym_switch] = ACTIONS(376), + [anon_sym_case] = ACTIONS(378), + [anon_sym_default] = ACTIONS(380), + [anon_sym_while] = ACTIONS(382), + [anon_sym_do] = ACTIONS(384), + [anon_sym_for] = ACTIONS(386), + [anon_sym_return] = ACTIONS(388), + [anon_sym_break] = ACTIONS(390), + [anon_sym_continue] = ACTIONS(392), + [anon_sym_goto] = ACTIONS(394), [anon_sym_DASH_DASH] = ACTIONS(73), [anon_sym_PLUS_PLUS] = ACTIONS(73), [anon_sym_sizeof] = ACTIONS(75), - [sym_number_literal] = ACTIONS(476), + [sym_number_literal] = ACTIONS(396), [anon_sym_L_SQUOTE] = ACTIONS(79), [anon_sym_u_SQUOTE] = ACTIONS(79), [anon_sym_U_SQUOTE] = ACTIONS(79), @@ -18364,43 +17950,115 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_U_DQUOTE] = ACTIONS(81), [anon_sym_u8_DQUOTE] = ACTIONS(81), [anon_sym_DQUOTE] = ACTIONS(81), - [sym_true] = ACTIONS(478), - [sym_false] = ACTIONS(478), - [sym_null] = ACTIONS(478), + [sym_true] = ACTIONS(398), + [sym_false] = ACTIONS(398), + [sym_null] = ACTIONS(398), [sym_comment] = ACTIONS(3), }, - [129] = { - [sym_compound_statement] = STATE(1138), - [sym_labeled_statement] = STATE(1138), - [sym_expression_statement] = STATE(1138), - [sym_if_statement] = STATE(1138), - [sym_switch_statement] = STATE(1138), - [sym_case_statement] = STATE(1138), - [sym_while_statement] = STATE(1138), - [sym_do_statement] = STATE(1138), - [sym_for_statement] = STATE(1138), - [sym_return_statement] = STATE(1138), - [sym_break_statement] = STATE(1138), - [sym_continue_statement] = STATE(1138), - [sym_goto_statement] = STATE(1138), - [sym__expression] = STATE(614), - [sym_comma_expression] = STATE(1210), - [sym_conditional_expression] = STATE(614), - [sym_assignment_expression] = STATE(614), - [sym_pointer_expression] = STATE(505), - [sym_unary_expression] = STATE(614), - [sym_binary_expression] = STATE(614), - [sym_update_expression] = STATE(614), - [sym_cast_expression] = STATE(614), - [sym_sizeof_expression] = STATE(614), - [sym_subscript_expression] = STATE(505), - [sym_call_expression] = STATE(505), - [sym_field_expression] = STATE(505), - [sym_compound_literal_expression] = STATE(614), - [sym_parenthesized_expression] = STATE(505), - [sym_char_literal] = STATE(614), - [sym_concatenated_string] = STATE(614), - [sym_string_literal] = STATE(376), + [123] = { + [sym_compound_statement] = STATE(246), + [sym_labeled_statement] = STATE(246), + [sym_expression_statement] = STATE(246), + [sym_if_statement] = STATE(246), + [sym_switch_statement] = STATE(246), + [sym_case_statement] = STATE(246), + [sym_while_statement] = STATE(246), + [sym_do_statement] = STATE(246), + [sym_for_statement] = STATE(246), + [sym_return_statement] = STATE(246), + [sym_break_statement] = STATE(246), + [sym_continue_statement] = STATE(246), + [sym_goto_statement] = STATE(246), + [sym__expression] = STATE(607), + [sym_comma_expression] = STATE(1092), + [sym_conditional_expression] = STATE(607), + [sym_assignment_expression] = STATE(607), + [sym_pointer_expression] = STATE(532), + [sym_unary_expression] = STATE(607), + [sym_binary_expression] = STATE(607), + [sym_update_expression] = STATE(607), + [sym_cast_expression] = STATE(607), + [sym_sizeof_expression] = STATE(607), + [sym_subscript_expression] = STATE(532), + [sym_call_expression] = STATE(532), + [sym_field_expression] = STATE(532), + [sym_compound_literal_expression] = STATE(607), + [sym_parenthesized_expression] = STATE(532), + [sym_char_literal] = STATE(607), + [sym_concatenated_string] = STATE(607), + [sym_string_literal] = STATE(379), + [sym_identifier] = ACTIONS(950), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(364), + [anon_sym_LBRACE] = ACTIONS(370), + [anon_sym_if] = ACTIONS(374), + [anon_sym_switch] = ACTIONS(376), + [anon_sym_case] = ACTIONS(378), + [anon_sym_default] = ACTIONS(380), + [anon_sym_while] = ACTIONS(382), + [anon_sym_do] = ACTIONS(384), + [anon_sym_for] = ACTIONS(386), + [anon_sym_return] = ACTIONS(388), + [anon_sym_break] = ACTIONS(390), + [anon_sym_continue] = ACTIONS(392), + [anon_sym_goto] = ACTIONS(394), + [anon_sym_DASH_DASH] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(73), + [anon_sym_sizeof] = ACTIONS(75), + [sym_number_literal] = ACTIONS(396), + [anon_sym_L_SQUOTE] = ACTIONS(79), + [anon_sym_u_SQUOTE] = ACTIONS(79), + [anon_sym_U_SQUOTE] = ACTIONS(79), + [anon_sym_u8_SQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_L_DQUOTE] = ACTIONS(81), + [anon_sym_u_DQUOTE] = ACTIONS(81), + [anon_sym_U_DQUOTE] = ACTIONS(81), + [anon_sym_u8_DQUOTE] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(81), + [sym_true] = ACTIONS(398), + [sym_false] = ACTIONS(398), + [sym_null] = ACTIONS(398), + [sym_comment] = ACTIONS(3), + }, + [124] = { + [sym_compound_statement] = STATE(190), + [sym_labeled_statement] = STATE(190), + [sym_expression_statement] = STATE(190), + [sym_if_statement] = STATE(190), + [sym_switch_statement] = STATE(190), + [sym_case_statement] = STATE(190), + [sym_while_statement] = STATE(190), + [sym_do_statement] = STATE(190), + [sym_for_statement] = STATE(190), + [sym_return_statement] = STATE(190), + [sym_break_statement] = STATE(190), + [sym_continue_statement] = STATE(190), + [sym_goto_statement] = STATE(190), + [sym__expression] = STATE(607), + [sym_comma_expression] = STATE(1092), + [sym_conditional_expression] = STATE(607), + [sym_assignment_expression] = STATE(607), + [sym_pointer_expression] = STATE(532), + [sym_unary_expression] = STATE(607), + [sym_binary_expression] = STATE(607), + [sym_update_expression] = STATE(607), + [sym_cast_expression] = STATE(607), + [sym_sizeof_expression] = STATE(607), + [sym_subscript_expression] = STATE(532), + [sym_call_expression] = STATE(532), + [sym_field_expression] = STATE(532), + [sym_compound_literal_expression] = STATE(607), + [sym_parenthesized_expression] = STATE(532), + [sym_char_literal] = STATE(607), + [sym_concatenated_string] = STATE(607), + [sym_string_literal] = STATE(379), [sym_identifier] = ACTIONS(950), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -18409,6 +18067,78 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(364), + [anon_sym_LBRACE] = ACTIONS(370), + [anon_sym_if] = ACTIONS(374), + [anon_sym_switch] = ACTIONS(376), + [anon_sym_case] = ACTIONS(378), + [anon_sym_default] = ACTIONS(380), + [anon_sym_while] = ACTIONS(382), + [anon_sym_do] = ACTIONS(384), + [anon_sym_for] = ACTIONS(386), + [anon_sym_return] = ACTIONS(388), + [anon_sym_break] = ACTIONS(390), + [anon_sym_continue] = ACTIONS(392), + [anon_sym_goto] = ACTIONS(394), + [anon_sym_DASH_DASH] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(73), + [anon_sym_sizeof] = ACTIONS(75), + [sym_number_literal] = ACTIONS(396), + [anon_sym_L_SQUOTE] = ACTIONS(79), + [anon_sym_u_SQUOTE] = ACTIONS(79), + [anon_sym_U_SQUOTE] = ACTIONS(79), + [anon_sym_u8_SQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_L_DQUOTE] = ACTIONS(81), + [anon_sym_u_DQUOTE] = ACTIONS(81), + [anon_sym_U_DQUOTE] = ACTIONS(81), + [anon_sym_u8_DQUOTE] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(81), + [sym_true] = ACTIONS(398), + [sym_false] = ACTIONS(398), + [sym_null] = ACTIONS(398), + [sym_comment] = ACTIONS(3), + }, + [125] = { + [sym_compound_statement] = STATE(285), + [sym_labeled_statement] = STATE(285), + [sym_expression_statement] = STATE(285), + [sym_if_statement] = STATE(285), + [sym_switch_statement] = STATE(285), + [sym_case_statement] = STATE(285), + [sym_while_statement] = STATE(285), + [sym_do_statement] = STATE(285), + [sym_for_statement] = STATE(285), + [sym_return_statement] = STATE(285), + [sym_break_statement] = STATE(285), + [sym_continue_statement] = STATE(285), + [sym_goto_statement] = STATE(285), + [sym__expression] = STATE(606), + [sym_comma_expression] = STATE(1218), + [sym_conditional_expression] = STATE(606), + [sym_assignment_expression] = STATE(606), + [sym_pointer_expression] = STATE(532), + [sym_unary_expression] = STATE(606), + [sym_binary_expression] = STATE(606), + [sym_update_expression] = STATE(606), + [sym_cast_expression] = STATE(606), + [sym_sizeof_expression] = STATE(606), + [sym_subscript_expression] = STATE(532), + [sym_call_expression] = STATE(532), + [sym_field_expression] = STATE(532), + [sym_compound_literal_expression] = STATE(606), + [sym_parenthesized_expression] = STATE(532), + [sym_char_literal] = STATE(606), + [sym_concatenated_string] = STATE(606), + [sym_string_literal] = STATE(379), + [sym_identifier] = ACTIONS(952), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), [anon_sym_SEMI] = ACTIONS(27), [anon_sym_LBRACE] = ACTIONS(35), [anon_sym_if] = ACTIONS(51), @@ -18441,39 +18171,39 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(83), [sym_comment] = ACTIONS(3), }, - [130] = { - [sym_compound_statement] = STATE(169), - [sym_labeled_statement] = STATE(169), - [sym_expression_statement] = STATE(169), - [sym_if_statement] = STATE(169), - [sym_switch_statement] = STATE(169), - [sym_case_statement] = STATE(169), - [sym_while_statement] = STATE(169), - [sym_do_statement] = STATE(169), - [sym_for_statement] = STATE(169), - [sym_return_statement] = STATE(169), - [sym_break_statement] = STATE(169), - [sym_continue_statement] = STATE(169), - [sym_goto_statement] = STATE(169), - [sym__expression] = STATE(613), - [sym_comma_expression] = STATE(1185), - [sym_conditional_expression] = STATE(613), - [sym_assignment_expression] = STATE(613), - [sym_pointer_expression] = STATE(505), - [sym_unary_expression] = STATE(613), - [sym_binary_expression] = STATE(613), - [sym_update_expression] = STATE(613), - [sym_cast_expression] = STATE(613), - [sym_sizeof_expression] = STATE(613), - [sym_subscript_expression] = STATE(505), - [sym_call_expression] = STATE(505), - [sym_field_expression] = STATE(505), - [sym_compound_literal_expression] = STATE(613), - [sym_parenthesized_expression] = STATE(505), - [sym_char_literal] = STATE(613), - [sym_concatenated_string] = STATE(613), - [sym_string_literal] = STATE(376), - [sym_identifier] = ACTIONS(956), + [126] = { + [sym_compound_statement] = STATE(191), + [sym_labeled_statement] = STATE(191), + [sym_expression_statement] = STATE(191), + [sym_if_statement] = STATE(191), + [sym_switch_statement] = STATE(191), + [sym_case_statement] = STATE(191), + [sym_while_statement] = STATE(191), + [sym_do_statement] = STATE(191), + [sym_for_statement] = STATE(191), + [sym_return_statement] = STATE(191), + [sym_break_statement] = STATE(191), + [sym_continue_statement] = STATE(191), + [sym_goto_statement] = STATE(191), + [sym__expression] = STATE(606), + [sym_comma_expression] = STATE(1218), + [sym_conditional_expression] = STATE(606), + [sym_assignment_expression] = STATE(606), + [sym_pointer_expression] = STATE(532), + [sym_unary_expression] = STATE(606), + [sym_binary_expression] = STATE(606), + [sym_update_expression] = STATE(606), + [sym_cast_expression] = STATE(606), + [sym_sizeof_expression] = STATE(606), + [sym_subscript_expression] = STATE(532), + [sym_call_expression] = STATE(532), + [sym_field_expression] = STATE(532), + [sym_compound_literal_expression] = STATE(606), + [sym_parenthesized_expression] = STATE(532), + [sym_char_literal] = STATE(606), + [sym_concatenated_string] = STATE(606), + [sym_string_literal] = STATE(379), + [sym_identifier] = ACTIONS(952), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -18481,23 +18211,23 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(103), - [anon_sym_LBRACE] = ACTIONS(109), - [anon_sym_if] = ACTIONS(113), - [anon_sym_switch] = ACTIONS(115), - [anon_sym_case] = ACTIONS(117), - [anon_sym_default] = ACTIONS(119), - [anon_sym_while] = ACTIONS(121), - [anon_sym_do] = ACTIONS(123), - [anon_sym_for] = ACTIONS(125), - [anon_sym_return] = ACTIONS(127), - [anon_sym_break] = ACTIONS(129), - [anon_sym_continue] = ACTIONS(131), - [anon_sym_goto] = ACTIONS(133), + [anon_sym_SEMI] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(35), + [anon_sym_if] = ACTIONS(51), + [anon_sym_switch] = ACTIONS(53), + [anon_sym_case] = ACTIONS(55), + [anon_sym_default] = ACTIONS(57), + [anon_sym_while] = ACTIONS(59), + [anon_sym_do] = ACTIONS(61), + [anon_sym_for] = ACTIONS(63), + [anon_sym_return] = ACTIONS(65), + [anon_sym_break] = ACTIONS(67), + [anon_sym_continue] = ACTIONS(69), + [anon_sym_goto] = ACTIONS(71), [anon_sym_DASH_DASH] = ACTIONS(73), [anon_sym_PLUS_PLUS] = ACTIONS(73), [anon_sym_sizeof] = ACTIONS(75), - [sym_number_literal] = ACTIONS(135), + [sym_number_literal] = ACTIONS(77), [anon_sym_L_SQUOTE] = ACTIONS(79), [anon_sym_u_SQUOTE] = ACTIONS(79), [anon_sym_U_SQUOTE] = ACTIONS(79), @@ -18508,43 +18238,43 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_U_DQUOTE] = ACTIONS(81), [anon_sym_u8_DQUOTE] = ACTIONS(81), [anon_sym_DQUOTE] = ACTIONS(81), - [sym_true] = ACTIONS(137), - [sym_false] = ACTIONS(137), - [sym_null] = ACTIONS(137), + [sym_true] = ACTIONS(83), + [sym_false] = ACTIONS(83), + [sym_null] = ACTIONS(83), [sym_comment] = ACTIONS(3), }, - [131] = { - [sym_compound_statement] = STATE(208), - [sym_labeled_statement] = STATE(208), - [sym_expression_statement] = STATE(208), - [sym_if_statement] = STATE(208), - [sym_switch_statement] = STATE(208), - [sym_case_statement] = STATE(208), - [sym_while_statement] = STATE(208), - [sym_do_statement] = STATE(208), - [sym_for_statement] = STATE(208), - [sym_return_statement] = STATE(208), - [sym_break_statement] = STATE(208), - [sym_continue_statement] = STATE(208), - [sym_goto_statement] = STATE(208), - [sym__expression] = STATE(616), - [sym_comma_expression] = STATE(1170), - [sym_conditional_expression] = STATE(616), - [sym_assignment_expression] = STATE(616), - [sym_pointer_expression] = STATE(505), - [sym_unary_expression] = STATE(616), - [sym_binary_expression] = STATE(616), - [sym_update_expression] = STATE(616), - [sym_cast_expression] = STATE(616), - [sym_sizeof_expression] = STATE(616), - [sym_subscript_expression] = STATE(505), - [sym_call_expression] = STATE(505), - [sym_field_expression] = STATE(505), - [sym_compound_literal_expression] = STATE(616), - [sym_parenthesized_expression] = STATE(505), - [sym_char_literal] = STATE(616), - [sym_concatenated_string] = STATE(616), - [sym_string_literal] = STATE(376), + [127] = { + [sym_compound_statement] = STATE(284), + [sym_labeled_statement] = STATE(284), + [sym_expression_statement] = STATE(284), + [sym_if_statement] = STATE(284), + [sym_switch_statement] = STATE(284), + [sym_case_statement] = STATE(284), + [sym_while_statement] = STATE(284), + [sym_do_statement] = STATE(284), + [sym_for_statement] = STATE(284), + [sym_return_statement] = STATE(284), + [sym_break_statement] = STATE(284), + [sym_continue_statement] = STATE(284), + [sym_goto_statement] = STATE(284), + [sym__expression] = STATE(606), + [sym_comma_expression] = STATE(1218), + [sym_conditional_expression] = STATE(606), + [sym_assignment_expression] = STATE(606), + [sym_pointer_expression] = STATE(532), + [sym_unary_expression] = STATE(606), + [sym_binary_expression] = STATE(606), + [sym_update_expression] = STATE(606), + [sym_cast_expression] = STATE(606), + [sym_sizeof_expression] = STATE(606), + [sym_subscript_expression] = STATE(532), + [sym_call_expression] = STATE(532), + [sym_field_expression] = STATE(532), + [sym_compound_literal_expression] = STATE(606), + [sym_parenthesized_expression] = STATE(532), + [sym_char_literal] = STATE(606), + [sym_concatenated_string] = STATE(606), + [sym_string_literal] = STATE(379), [sym_identifier] = ACTIONS(952), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -18553,23 +18283,23 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(304), - [anon_sym_LBRACE] = ACTIONS(310), - [anon_sym_if] = ACTIONS(316), - [anon_sym_switch] = ACTIONS(318), - [anon_sym_case] = ACTIONS(320), - [anon_sym_default] = ACTIONS(322), - [anon_sym_while] = ACTIONS(324), - [anon_sym_do] = ACTIONS(326), - [anon_sym_for] = ACTIONS(328), - [anon_sym_return] = ACTIONS(330), - [anon_sym_break] = ACTIONS(332), - [anon_sym_continue] = ACTIONS(334), - [anon_sym_goto] = ACTIONS(336), + [anon_sym_SEMI] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(35), + [anon_sym_if] = ACTIONS(51), + [anon_sym_switch] = ACTIONS(53), + [anon_sym_case] = ACTIONS(55), + [anon_sym_default] = ACTIONS(57), + [anon_sym_while] = ACTIONS(59), + [anon_sym_do] = ACTIONS(61), + [anon_sym_for] = ACTIONS(63), + [anon_sym_return] = ACTIONS(65), + [anon_sym_break] = ACTIONS(67), + [anon_sym_continue] = ACTIONS(69), + [anon_sym_goto] = ACTIONS(71), [anon_sym_DASH_DASH] = ACTIONS(73), [anon_sym_PLUS_PLUS] = ACTIONS(73), [anon_sym_sizeof] = ACTIONS(75), - [sym_number_literal] = ACTIONS(338), + [sym_number_literal] = ACTIONS(77), [anon_sym_L_SQUOTE] = ACTIONS(79), [anon_sym_u_SQUOTE] = ACTIONS(79), [anon_sym_U_SQUOTE] = ACTIONS(79), @@ -18580,44 +18310,44 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_U_DQUOTE] = ACTIONS(81), [anon_sym_u8_DQUOTE] = ACTIONS(81), [anon_sym_DQUOTE] = ACTIONS(81), - [sym_true] = ACTIONS(340), - [sym_false] = ACTIONS(340), - [sym_null] = ACTIONS(340), + [sym_true] = ACTIONS(83), + [sym_false] = ACTIONS(83), + [sym_null] = ACTIONS(83), [sym_comment] = ACTIONS(3), }, - [132] = { - [sym_compound_statement] = STATE(164), - [sym_labeled_statement] = STATE(164), - [sym_expression_statement] = STATE(164), - [sym_if_statement] = STATE(164), - [sym_switch_statement] = STATE(164), - [sym_case_statement] = STATE(164), - [sym_while_statement] = STATE(164), - [sym_do_statement] = STATE(164), - [sym_for_statement] = STATE(164), - [sym_return_statement] = STATE(164), - [sym_break_statement] = STATE(164), - [sym_continue_statement] = STATE(164), - [sym_goto_statement] = STATE(164), - [sym__expression] = STATE(613), - [sym_comma_expression] = STATE(1185), - [sym_conditional_expression] = STATE(613), - [sym_assignment_expression] = STATE(613), - [sym_pointer_expression] = STATE(505), - [sym_unary_expression] = STATE(613), - [sym_binary_expression] = STATE(613), - [sym_update_expression] = STATE(613), - [sym_cast_expression] = STATE(613), - [sym_sizeof_expression] = STATE(613), - [sym_subscript_expression] = STATE(505), - [sym_call_expression] = STATE(505), - [sym_field_expression] = STATE(505), - [sym_compound_literal_expression] = STATE(613), - [sym_parenthesized_expression] = STATE(505), - [sym_char_literal] = STATE(613), - [sym_concatenated_string] = STATE(613), - [sym_string_literal] = STATE(376), - [sym_identifier] = ACTIONS(956), + [128] = { + [sym_compound_statement] = STATE(282), + [sym_labeled_statement] = STATE(282), + [sym_expression_statement] = STATE(282), + [sym_if_statement] = STATE(282), + [sym_switch_statement] = STATE(282), + [sym_case_statement] = STATE(282), + [sym_while_statement] = STATE(282), + [sym_do_statement] = STATE(282), + [sym_for_statement] = STATE(282), + [sym_return_statement] = STATE(282), + [sym_break_statement] = STATE(282), + [sym_continue_statement] = STATE(282), + [sym_goto_statement] = STATE(282), + [sym__expression] = STATE(606), + [sym_comma_expression] = STATE(1218), + [sym_conditional_expression] = STATE(606), + [sym_assignment_expression] = STATE(606), + [sym_pointer_expression] = STATE(532), + [sym_unary_expression] = STATE(606), + [sym_binary_expression] = STATE(606), + [sym_update_expression] = STATE(606), + [sym_cast_expression] = STATE(606), + [sym_sizeof_expression] = STATE(606), + [sym_subscript_expression] = STATE(532), + [sym_call_expression] = STATE(532), + [sym_field_expression] = STATE(532), + [sym_compound_literal_expression] = STATE(606), + [sym_parenthesized_expression] = STATE(532), + [sym_char_literal] = STATE(606), + [sym_concatenated_string] = STATE(606), + [sym_string_literal] = STATE(379), + [sym_identifier] = ACTIONS(952), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -18625,23 +18355,23 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(103), - [anon_sym_LBRACE] = ACTIONS(109), - [anon_sym_if] = ACTIONS(113), - [anon_sym_switch] = ACTIONS(115), - [anon_sym_case] = ACTIONS(117), - [anon_sym_default] = ACTIONS(119), - [anon_sym_while] = ACTIONS(121), - [anon_sym_do] = ACTIONS(123), - [anon_sym_for] = ACTIONS(125), - [anon_sym_return] = ACTIONS(127), - [anon_sym_break] = ACTIONS(129), - [anon_sym_continue] = ACTIONS(131), - [anon_sym_goto] = ACTIONS(133), + [anon_sym_SEMI] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(35), + [anon_sym_if] = ACTIONS(51), + [anon_sym_switch] = ACTIONS(53), + [anon_sym_case] = ACTIONS(55), + [anon_sym_default] = ACTIONS(57), + [anon_sym_while] = ACTIONS(59), + [anon_sym_do] = ACTIONS(61), + [anon_sym_for] = ACTIONS(63), + [anon_sym_return] = ACTIONS(65), + [anon_sym_break] = ACTIONS(67), + [anon_sym_continue] = ACTIONS(69), + [anon_sym_goto] = ACTIONS(71), [anon_sym_DASH_DASH] = ACTIONS(73), [anon_sym_PLUS_PLUS] = ACTIONS(73), [anon_sym_sizeof] = ACTIONS(75), - [sym_number_literal] = ACTIONS(135), + [sym_number_literal] = ACTIONS(77), [anon_sym_L_SQUOTE] = ACTIONS(79), [anon_sym_u_SQUOTE] = ACTIONS(79), [anon_sym_U_SQUOTE] = ACTIONS(79), @@ -18652,44 +18382,44 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_U_DQUOTE] = ACTIONS(81), [anon_sym_u8_DQUOTE] = ACTIONS(81), [anon_sym_DQUOTE] = ACTIONS(81), - [sym_true] = ACTIONS(137), - [sym_false] = ACTIONS(137), - [sym_null] = ACTIONS(137), + [sym_true] = ACTIONS(83), + [sym_false] = ACTIONS(83), + [sym_null] = ACTIONS(83), [sym_comment] = ACTIONS(3), }, - [133] = { - [sym_compound_statement] = STATE(163), - [sym_labeled_statement] = STATE(163), - [sym_expression_statement] = STATE(163), - [sym_if_statement] = STATE(163), - [sym_switch_statement] = STATE(163), - [sym_case_statement] = STATE(163), - [sym_while_statement] = STATE(163), - [sym_do_statement] = STATE(163), - [sym_for_statement] = STATE(163), - [sym_return_statement] = STATE(163), - [sym_break_statement] = STATE(163), - [sym_continue_statement] = STATE(163), - [sym_goto_statement] = STATE(163), - [sym__expression] = STATE(613), - [sym_comma_expression] = STATE(1185), - [sym_conditional_expression] = STATE(613), - [sym_assignment_expression] = STATE(613), - [sym_pointer_expression] = STATE(505), - [sym_unary_expression] = STATE(613), - [sym_binary_expression] = STATE(613), - [sym_update_expression] = STATE(613), - [sym_cast_expression] = STATE(613), - [sym_sizeof_expression] = STATE(613), - [sym_subscript_expression] = STATE(505), - [sym_call_expression] = STATE(505), - [sym_field_expression] = STATE(505), - [sym_compound_literal_expression] = STATE(613), - [sym_parenthesized_expression] = STATE(505), - [sym_char_literal] = STATE(613), - [sym_concatenated_string] = STATE(613), - [sym_string_literal] = STATE(376), - [sym_identifier] = ACTIONS(956), + [129] = { + [sym_compound_statement] = STATE(197), + [sym_labeled_statement] = STATE(197), + [sym_expression_statement] = STATE(197), + [sym_if_statement] = STATE(197), + [sym_switch_statement] = STATE(197), + [sym_case_statement] = STATE(197), + [sym_while_statement] = STATE(197), + [sym_do_statement] = STATE(197), + [sym_for_statement] = STATE(197), + [sym_return_statement] = STATE(197), + [sym_break_statement] = STATE(197), + [sym_continue_statement] = STATE(197), + [sym_goto_statement] = STATE(197), + [sym__expression] = STATE(607), + [sym_comma_expression] = STATE(1092), + [sym_conditional_expression] = STATE(607), + [sym_assignment_expression] = STATE(607), + [sym_pointer_expression] = STATE(532), + [sym_unary_expression] = STATE(607), + [sym_binary_expression] = STATE(607), + [sym_update_expression] = STATE(607), + [sym_cast_expression] = STATE(607), + [sym_sizeof_expression] = STATE(607), + [sym_subscript_expression] = STATE(532), + [sym_call_expression] = STATE(532), + [sym_field_expression] = STATE(532), + [sym_compound_literal_expression] = STATE(607), + [sym_parenthesized_expression] = STATE(532), + [sym_char_literal] = STATE(607), + [sym_concatenated_string] = STATE(607), + [sym_string_literal] = STATE(379), + [sym_identifier] = ACTIONS(950), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -18697,23 +18427,23 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(103), - [anon_sym_LBRACE] = ACTIONS(109), - [anon_sym_if] = ACTIONS(113), - [anon_sym_switch] = ACTIONS(115), - [anon_sym_case] = ACTIONS(117), - [anon_sym_default] = ACTIONS(119), - [anon_sym_while] = ACTIONS(121), - [anon_sym_do] = ACTIONS(123), - [anon_sym_for] = ACTIONS(125), - [anon_sym_return] = ACTIONS(127), - [anon_sym_break] = ACTIONS(129), - [anon_sym_continue] = ACTIONS(131), - [anon_sym_goto] = ACTIONS(133), + [anon_sym_SEMI] = ACTIONS(364), + [anon_sym_LBRACE] = ACTIONS(370), + [anon_sym_if] = ACTIONS(374), + [anon_sym_switch] = ACTIONS(376), + [anon_sym_case] = ACTIONS(378), + [anon_sym_default] = ACTIONS(380), + [anon_sym_while] = ACTIONS(382), + [anon_sym_do] = ACTIONS(384), + [anon_sym_for] = ACTIONS(386), + [anon_sym_return] = ACTIONS(388), + [anon_sym_break] = ACTIONS(390), + [anon_sym_continue] = ACTIONS(392), + [anon_sym_goto] = ACTIONS(394), [anon_sym_DASH_DASH] = ACTIONS(73), [anon_sym_PLUS_PLUS] = ACTIONS(73), [anon_sym_sizeof] = ACTIONS(75), - [sym_number_literal] = ACTIONS(135), + [sym_number_literal] = ACTIONS(396), [anon_sym_L_SQUOTE] = ACTIONS(79), [anon_sym_u_SQUOTE] = ACTIONS(79), [anon_sym_U_SQUOTE] = ACTIONS(79), @@ -18724,43 +18454,43 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_U_DQUOTE] = ACTIONS(81), [anon_sym_u8_DQUOTE] = ACTIONS(81), [anon_sym_DQUOTE] = ACTIONS(81), - [sym_true] = ACTIONS(137), - [sym_false] = ACTIONS(137), - [sym_null] = ACTIONS(137), + [sym_true] = ACTIONS(398), + [sym_false] = ACTIONS(398), + [sym_null] = ACTIONS(398), [sym_comment] = ACTIONS(3), }, - [134] = { - [sym_compound_statement] = STATE(204), - [sym_labeled_statement] = STATE(204), - [sym_expression_statement] = STATE(204), - [sym_if_statement] = STATE(204), - [sym_switch_statement] = STATE(204), - [sym_case_statement] = STATE(204), - [sym_while_statement] = STATE(204), - [sym_do_statement] = STATE(204), - [sym_for_statement] = STATE(204), - [sym_return_statement] = STATE(204), - [sym_break_statement] = STATE(204), - [sym_continue_statement] = STATE(204), - [sym_goto_statement] = STATE(204), - [sym__expression] = STATE(616), - [sym_comma_expression] = STATE(1170), - [sym_conditional_expression] = STATE(616), - [sym_assignment_expression] = STATE(616), - [sym_pointer_expression] = STATE(505), - [sym_unary_expression] = STATE(616), - [sym_binary_expression] = STATE(616), - [sym_update_expression] = STATE(616), - [sym_cast_expression] = STATE(616), - [sym_sizeof_expression] = STATE(616), - [sym_subscript_expression] = STATE(505), - [sym_call_expression] = STATE(505), - [sym_field_expression] = STATE(505), - [sym_compound_literal_expression] = STATE(616), - [sym_parenthesized_expression] = STATE(505), - [sym_char_literal] = STATE(616), - [sym_concatenated_string] = STATE(616), - [sym_string_literal] = STATE(376), + [130] = { + [sym_compound_statement] = STATE(281), + [sym_labeled_statement] = STATE(281), + [sym_expression_statement] = STATE(281), + [sym_if_statement] = STATE(281), + [sym_switch_statement] = STATE(281), + [sym_case_statement] = STATE(281), + [sym_while_statement] = STATE(281), + [sym_do_statement] = STATE(281), + [sym_for_statement] = STATE(281), + [sym_return_statement] = STATE(281), + [sym_break_statement] = STATE(281), + [sym_continue_statement] = STATE(281), + [sym_goto_statement] = STATE(281), + [sym__expression] = STATE(606), + [sym_comma_expression] = STATE(1218), + [sym_conditional_expression] = STATE(606), + [sym_assignment_expression] = STATE(606), + [sym_pointer_expression] = STATE(532), + [sym_unary_expression] = STATE(606), + [sym_binary_expression] = STATE(606), + [sym_update_expression] = STATE(606), + [sym_cast_expression] = STATE(606), + [sym_sizeof_expression] = STATE(606), + [sym_subscript_expression] = STATE(532), + [sym_call_expression] = STATE(532), + [sym_field_expression] = STATE(532), + [sym_compound_literal_expression] = STATE(606), + [sym_parenthesized_expression] = STATE(532), + [sym_char_literal] = STATE(606), + [sym_concatenated_string] = STATE(606), + [sym_string_literal] = STATE(379), [sym_identifier] = ACTIONS(952), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -18769,23 +18499,23 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(304), - [anon_sym_LBRACE] = ACTIONS(310), - [anon_sym_if] = ACTIONS(316), - [anon_sym_switch] = ACTIONS(318), - [anon_sym_case] = ACTIONS(320), - [anon_sym_default] = ACTIONS(322), - [anon_sym_while] = ACTIONS(324), - [anon_sym_do] = ACTIONS(326), - [anon_sym_for] = ACTIONS(328), - [anon_sym_return] = ACTIONS(330), - [anon_sym_break] = ACTIONS(332), - [anon_sym_continue] = ACTIONS(334), - [anon_sym_goto] = ACTIONS(336), + [anon_sym_SEMI] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(35), + [anon_sym_if] = ACTIONS(51), + [anon_sym_switch] = ACTIONS(53), + [anon_sym_case] = ACTIONS(55), + [anon_sym_default] = ACTIONS(57), + [anon_sym_while] = ACTIONS(59), + [anon_sym_do] = ACTIONS(61), + [anon_sym_for] = ACTIONS(63), + [anon_sym_return] = ACTIONS(65), + [anon_sym_break] = ACTIONS(67), + [anon_sym_continue] = ACTIONS(69), + [anon_sym_goto] = ACTIONS(71), [anon_sym_DASH_DASH] = ACTIONS(73), [anon_sym_PLUS_PLUS] = ACTIONS(73), [anon_sym_sizeof] = ACTIONS(75), - [sym_number_literal] = ACTIONS(338), + [sym_number_literal] = ACTIONS(77), [anon_sym_L_SQUOTE] = ACTIONS(79), [anon_sym_u_SQUOTE] = ACTIONS(79), [anon_sym_U_SQUOTE] = ACTIONS(79), @@ -18796,44 +18526,44 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_U_DQUOTE] = ACTIONS(81), [anon_sym_u8_DQUOTE] = ACTIONS(81), [anon_sym_DQUOTE] = ACTIONS(81), - [sym_true] = ACTIONS(340), - [sym_false] = ACTIONS(340), - [sym_null] = ACTIONS(340), + [sym_true] = ACTIONS(83), + [sym_false] = ACTIONS(83), + [sym_null] = ACTIONS(83), [sym_comment] = ACTIONS(3), }, - [135] = { - [sym_compound_statement] = STATE(141), - [sym_labeled_statement] = STATE(141), - [sym_expression_statement] = STATE(141), - [sym_if_statement] = STATE(141), - [sym_switch_statement] = STATE(141), - [sym_case_statement] = STATE(141), - [sym_while_statement] = STATE(141), - [sym_do_statement] = STATE(141), - [sym_for_statement] = STATE(141), - [sym_return_statement] = STATE(141), - [sym_break_statement] = STATE(141), - [sym_continue_statement] = STATE(141), - [sym_goto_statement] = STATE(141), - [sym__expression] = STATE(613), - [sym_comma_expression] = STATE(1185), - [sym_conditional_expression] = STATE(613), - [sym_assignment_expression] = STATE(613), - [sym_pointer_expression] = STATE(505), - [sym_unary_expression] = STATE(613), - [sym_binary_expression] = STATE(613), - [sym_update_expression] = STATE(613), - [sym_cast_expression] = STATE(613), - [sym_sizeof_expression] = STATE(613), - [sym_subscript_expression] = STATE(505), - [sym_call_expression] = STATE(505), - [sym_field_expression] = STATE(505), - [sym_compound_literal_expression] = STATE(613), - [sym_parenthesized_expression] = STATE(505), - [sym_char_literal] = STATE(613), - [sym_concatenated_string] = STATE(613), - [sym_string_literal] = STATE(376), - [sym_identifier] = ACTIONS(956), + [131] = { + [sym_compound_statement] = STATE(192), + [sym_labeled_statement] = STATE(192), + [sym_expression_statement] = STATE(192), + [sym_if_statement] = STATE(192), + [sym_switch_statement] = STATE(192), + [sym_case_statement] = STATE(192), + [sym_while_statement] = STATE(192), + [sym_do_statement] = STATE(192), + [sym_for_statement] = STATE(192), + [sym_return_statement] = STATE(192), + [sym_break_statement] = STATE(192), + [sym_continue_statement] = STATE(192), + [sym_goto_statement] = STATE(192), + [sym__expression] = STATE(607), + [sym_comma_expression] = STATE(1092), + [sym_conditional_expression] = STATE(607), + [sym_assignment_expression] = STATE(607), + [sym_pointer_expression] = STATE(532), + [sym_unary_expression] = STATE(607), + [sym_binary_expression] = STATE(607), + [sym_update_expression] = STATE(607), + [sym_cast_expression] = STATE(607), + [sym_sizeof_expression] = STATE(607), + [sym_subscript_expression] = STATE(532), + [sym_call_expression] = STATE(532), + [sym_field_expression] = STATE(532), + [sym_compound_literal_expression] = STATE(607), + [sym_parenthesized_expression] = STATE(532), + [sym_char_literal] = STATE(607), + [sym_concatenated_string] = STATE(607), + [sym_string_literal] = STATE(379), + [sym_identifier] = ACTIONS(950), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -18841,23 +18571,23 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(103), - [anon_sym_LBRACE] = ACTIONS(109), - [anon_sym_if] = ACTIONS(113), - [anon_sym_switch] = ACTIONS(115), - [anon_sym_case] = ACTIONS(117), - [anon_sym_default] = ACTIONS(119), - [anon_sym_while] = ACTIONS(121), - [anon_sym_do] = ACTIONS(123), - [anon_sym_for] = ACTIONS(125), - [anon_sym_return] = ACTIONS(127), - [anon_sym_break] = ACTIONS(129), - [anon_sym_continue] = ACTIONS(131), - [anon_sym_goto] = ACTIONS(133), + [anon_sym_SEMI] = ACTIONS(364), + [anon_sym_LBRACE] = ACTIONS(370), + [anon_sym_if] = ACTIONS(374), + [anon_sym_switch] = ACTIONS(376), + [anon_sym_case] = ACTIONS(378), + [anon_sym_default] = ACTIONS(380), + [anon_sym_while] = ACTIONS(382), + [anon_sym_do] = ACTIONS(384), + [anon_sym_for] = ACTIONS(386), + [anon_sym_return] = ACTIONS(388), + [anon_sym_break] = ACTIONS(390), + [anon_sym_continue] = ACTIONS(392), + [anon_sym_goto] = ACTIONS(394), [anon_sym_DASH_DASH] = ACTIONS(73), [anon_sym_PLUS_PLUS] = ACTIONS(73), [anon_sym_sizeof] = ACTIONS(75), - [sym_number_literal] = ACTIONS(135), + [sym_number_literal] = ACTIONS(396), [anon_sym_L_SQUOTE] = ACTIONS(79), [anon_sym_u_SQUOTE] = ACTIONS(79), [anon_sym_U_SQUOTE] = ACTIONS(79), @@ -18868,67 +18598,68 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_U_DQUOTE] = ACTIONS(81), [anon_sym_u8_DQUOTE] = ACTIONS(81), [anon_sym_DQUOTE] = ACTIONS(81), - [sym_true] = ACTIONS(137), - [sym_false] = ACTIONS(137), - [sym_null] = ACTIONS(137), + [sym_true] = ACTIONS(398), + [sym_false] = ACTIONS(398), + [sym_null] = ACTIONS(398), [sym_comment] = ACTIONS(3), }, - [136] = { - [sym__expression] = STATE(449), - [sym_conditional_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_pointer_expression] = STATE(505), - [sym_unary_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_update_expression] = STATE(449), - [sym_cast_expression] = STATE(449), - [sym_sizeof_expression] = STATE(449), - [sym_subscript_expression] = STATE(505), - [sym_call_expression] = STATE(505), - [sym_field_expression] = STATE(505), - [sym_compound_literal_expression] = STATE(449), - [sym_parenthesized_expression] = STATE(505), - [sym_initializer_list] = STATE(509), - [sym_char_literal] = STATE(449), - [sym_concatenated_string] = STATE(449), - [sym_string_literal] = STATE(376), - [sym_identifier] = ACTIONS(958), - [anon_sym_COMMA] = ACTIONS(904), - [anon_sym_RPAREN] = ACTIONS(904), + [132] = { + [sym_compound_statement] = STATE(223), + [sym_labeled_statement] = STATE(223), + [sym_expression_statement] = STATE(223), + [sym_if_statement] = STATE(223), + [sym_switch_statement] = STATE(223), + [sym_case_statement] = STATE(223), + [sym_while_statement] = STATE(223), + [sym_do_statement] = STATE(223), + [sym_for_statement] = STATE(223), + [sym_return_statement] = STATE(223), + [sym_break_statement] = STATE(223), + [sym_continue_statement] = STATE(223), + [sym_goto_statement] = STATE(223), + [sym__expression] = STATE(607), + [sym_comma_expression] = STATE(1092), + [sym_conditional_expression] = STATE(607), + [sym_assignment_expression] = STATE(607), + [sym_pointer_expression] = STATE(532), + [sym_unary_expression] = STATE(607), + [sym_binary_expression] = STATE(607), + [sym_update_expression] = STATE(607), + [sym_cast_expression] = STATE(607), + [sym_sizeof_expression] = STATE(607), + [sym_subscript_expression] = STATE(532), + [sym_call_expression] = STATE(532), + [sym_field_expression] = STATE(532), + [sym_compound_literal_expression] = STATE(607), + [sym_parenthesized_expression] = STATE(532), + [sym_char_literal] = STATE(607), + [sym_concatenated_string] = STATE(607), + [sym_string_literal] = STATE(379), + [sym_identifier] = ACTIONS(950), [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(23), [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), - [anon_sym_SLASH] = ACTIONS(914), - [anon_sym_PERCENT] = ACTIONS(904), - [anon_sym_PIPE_PIPE] = ACTIONS(904), - [anon_sym_AMP_AMP] = ACTIONS(904), - [anon_sym_PIPE] = ACTIONS(914), - [anon_sym_CARET] = ACTIONS(904), - [anon_sym_AMP] = ACTIONS(912), - [anon_sym_EQ_EQ] = ACTIONS(904), - [anon_sym_BANG_EQ] = ACTIONS(904), - [anon_sym_GT] = ACTIONS(914), - [anon_sym_GT_EQ] = ACTIONS(904), - [anon_sym_LT_EQ] = ACTIONS(904), - [anon_sym_LT] = ACTIONS(914), - [anon_sym_LT_LT] = ACTIONS(904), - [anon_sym_GT_GT] = ACTIONS(904), - [anon_sym_SEMI] = ACTIONS(904), - [anon_sym_LBRACE] = ACTIONS(916), - [anon_sym_RBRACE] = ACTIONS(904), - [anon_sym_LBRACK] = ACTIONS(904), - [anon_sym_RBRACK] = ACTIONS(904), - [anon_sym_COLON] = ACTIONS(904), - [anon_sym_QMARK] = ACTIONS(904), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(364), + [anon_sym_LBRACE] = ACTIONS(370), + [anon_sym_if] = ACTIONS(374), + [anon_sym_switch] = ACTIONS(376), + [anon_sym_case] = ACTIONS(378), + [anon_sym_default] = ACTIONS(380), + [anon_sym_while] = ACTIONS(382), + [anon_sym_do] = ACTIONS(384), + [anon_sym_for] = ACTIONS(386), + [anon_sym_return] = ACTIONS(388), + [anon_sym_break] = ACTIONS(390), + [anon_sym_continue] = ACTIONS(392), + [anon_sym_goto] = ACTIONS(394), [anon_sym_DASH_DASH] = ACTIONS(73), [anon_sym_PLUS_PLUS] = ACTIONS(73), [anon_sym_sizeof] = ACTIONS(75), - [anon_sym_DOT] = ACTIONS(914), - [anon_sym_DASH_GT] = ACTIONS(904), - [sym_number_literal] = ACTIONS(922), + [sym_number_literal] = ACTIONS(396), [anon_sym_L_SQUOTE] = ACTIONS(79), [anon_sym_u_SQUOTE] = ACTIONS(79), [anon_sym_U_SQUOTE] = ACTIONS(79), @@ -18939,105 +18670,392 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_U_DQUOTE] = ACTIONS(81), [anon_sym_u8_DQUOTE] = ACTIONS(81), [anon_sym_DQUOTE] = ACTIONS(81), - [sym_true] = ACTIONS(902), - [sym_false] = ACTIONS(902), - [sym_null] = ACTIONS(902), - [sym_comment] = ACTIONS(3), - }, - [137] = { - [sym_identifier] = ACTIONS(960), - [aux_sym_preproc_include_token1] = ACTIONS(960), - [aux_sym_preproc_def_token1] = ACTIONS(960), - [aux_sym_preproc_if_token1] = ACTIONS(960), - [aux_sym_preproc_if_token2] = ACTIONS(960), - [aux_sym_preproc_ifdef_token1] = ACTIONS(960), - [aux_sym_preproc_ifdef_token2] = ACTIONS(960), - [aux_sym_preproc_else_token1] = ACTIONS(960), - [aux_sym_preproc_elif_token1] = ACTIONS(960), - [sym_preproc_directive] = ACTIONS(960), - [anon_sym_LPAREN2] = ACTIONS(962), - [anon_sym_BANG] = ACTIONS(962), - [anon_sym_TILDE] = ACTIONS(962), - [anon_sym_DASH] = ACTIONS(960), - [anon_sym_PLUS] = ACTIONS(960), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(962), - [anon_sym_typedef] = ACTIONS(960), - [anon_sym_extern] = ACTIONS(960), - [anon_sym___attribute__] = ACTIONS(960), - [anon_sym_LBRACE] = ACTIONS(962), - [anon_sym_static] = ACTIONS(960), - [anon_sym_auto] = ACTIONS(960), - [anon_sym_register] = ACTIONS(960), - [anon_sym_inline] = ACTIONS(960), - [anon_sym_const] = ACTIONS(960), - [anon_sym_volatile] = ACTIONS(960), - [anon_sym_restrict] = ACTIONS(960), - [anon_sym__Atomic] = ACTIONS(960), - [anon_sym_signed] = ACTIONS(960), - [anon_sym_unsigned] = ACTIONS(960), - [anon_sym_long] = ACTIONS(960), - [anon_sym_short] = ACTIONS(960), - [sym_primitive_type] = ACTIONS(960), - [anon_sym_enum] = ACTIONS(960), - [anon_sym_struct] = ACTIONS(960), - [anon_sym_union] = ACTIONS(960), - [anon_sym_if] = ACTIONS(960), - [anon_sym_else] = ACTIONS(960), - [anon_sym_switch] = ACTIONS(960), - [anon_sym_case] = ACTIONS(960), - [anon_sym_default] = ACTIONS(960), - [anon_sym_while] = ACTIONS(960), - [anon_sym_do] = ACTIONS(960), - [anon_sym_for] = ACTIONS(960), - [anon_sym_return] = ACTIONS(960), - [anon_sym_break] = ACTIONS(960), - [anon_sym_continue] = ACTIONS(960), - [anon_sym_goto] = ACTIONS(960), - [anon_sym_DASH_DASH] = ACTIONS(962), - [anon_sym_PLUS_PLUS] = ACTIONS(962), - [anon_sym_sizeof] = ACTIONS(960), - [sym_number_literal] = ACTIONS(962), - [anon_sym_L_SQUOTE] = ACTIONS(962), - [anon_sym_u_SQUOTE] = ACTIONS(962), - [anon_sym_U_SQUOTE] = ACTIONS(962), - [anon_sym_u8_SQUOTE] = ACTIONS(962), - [anon_sym_SQUOTE] = ACTIONS(962), - [anon_sym_L_DQUOTE] = ACTIONS(962), - [anon_sym_u_DQUOTE] = ACTIONS(962), - [anon_sym_U_DQUOTE] = ACTIONS(962), - [anon_sym_u8_DQUOTE] = ACTIONS(962), - [anon_sym_DQUOTE] = ACTIONS(962), - [sym_true] = ACTIONS(960), - [sym_false] = ACTIONS(960), - [sym_null] = ACTIONS(960), + [sym_true] = ACTIONS(398), + [sym_false] = ACTIONS(398), + [sym_null] = ACTIONS(398), [sym_comment] = ACTIONS(3), }, - [138] = { - [sym_identifier] = ACTIONS(964), - [aux_sym_preproc_include_token1] = ACTIONS(964), - [aux_sym_preproc_def_token1] = ACTIONS(964), - [aux_sym_preproc_if_token1] = ACTIONS(964), - [aux_sym_preproc_if_token2] = ACTIONS(964), - [aux_sym_preproc_ifdef_token1] = ACTIONS(964), - [aux_sym_preproc_ifdef_token2] = ACTIONS(964), - [aux_sym_preproc_else_token1] = ACTIONS(964), - [aux_sym_preproc_elif_token1] = ACTIONS(964), - [sym_preproc_directive] = ACTIONS(964), - [anon_sym_LPAREN2] = ACTIONS(966), - [anon_sym_BANG] = ACTIONS(966), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_DASH] = ACTIONS(964), - [anon_sym_PLUS] = ACTIONS(964), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_SEMI] = ACTIONS(966), - [anon_sym_typedef] = ACTIONS(964), - [anon_sym_extern] = ACTIONS(964), - [anon_sym___attribute__] = ACTIONS(964), - [anon_sym_LBRACE] = ACTIONS(966), - [anon_sym_static] = ACTIONS(964), + [133] = { + [sym_compound_statement] = STATE(264), + [sym_labeled_statement] = STATE(264), + [sym_expression_statement] = STATE(264), + [sym_if_statement] = STATE(264), + [sym_switch_statement] = STATE(264), + [sym_case_statement] = STATE(264), + [sym_while_statement] = STATE(264), + [sym_do_statement] = STATE(264), + [sym_for_statement] = STATE(264), + [sym_return_statement] = STATE(264), + [sym_break_statement] = STATE(264), + [sym_continue_statement] = STATE(264), + [sym_goto_statement] = STATE(264), + [sym__expression] = STATE(606), + [sym_comma_expression] = STATE(1218), + [sym_conditional_expression] = STATE(606), + [sym_assignment_expression] = STATE(606), + [sym_pointer_expression] = STATE(532), + [sym_unary_expression] = STATE(606), + [sym_binary_expression] = STATE(606), + [sym_update_expression] = STATE(606), + [sym_cast_expression] = STATE(606), + [sym_sizeof_expression] = STATE(606), + [sym_subscript_expression] = STATE(532), + [sym_call_expression] = STATE(532), + [sym_field_expression] = STATE(532), + [sym_compound_literal_expression] = STATE(606), + [sym_parenthesized_expression] = STATE(532), + [sym_char_literal] = STATE(606), + [sym_concatenated_string] = STATE(606), + [sym_string_literal] = STATE(379), + [sym_identifier] = ACTIONS(952), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(35), + [anon_sym_if] = ACTIONS(51), + [anon_sym_switch] = ACTIONS(53), + [anon_sym_case] = ACTIONS(55), + [anon_sym_default] = ACTIONS(57), + [anon_sym_while] = ACTIONS(59), + [anon_sym_do] = ACTIONS(61), + [anon_sym_for] = ACTIONS(63), + [anon_sym_return] = ACTIONS(65), + [anon_sym_break] = ACTIONS(67), + [anon_sym_continue] = ACTIONS(69), + [anon_sym_goto] = ACTIONS(71), + [anon_sym_DASH_DASH] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(73), + [anon_sym_sizeof] = ACTIONS(75), + [sym_number_literal] = ACTIONS(77), + [anon_sym_L_SQUOTE] = ACTIONS(79), + [anon_sym_u_SQUOTE] = ACTIONS(79), + [anon_sym_U_SQUOTE] = ACTIONS(79), + [anon_sym_u8_SQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_L_DQUOTE] = ACTIONS(81), + [anon_sym_u_DQUOTE] = ACTIONS(81), + [anon_sym_U_DQUOTE] = ACTIONS(81), + [anon_sym_u8_DQUOTE] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(81), + [sym_true] = ACTIONS(83), + [sym_false] = ACTIONS(83), + [sym_null] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + }, + [134] = { + [sym_compound_statement] = STATE(199), + [sym_labeled_statement] = STATE(199), + [sym_expression_statement] = STATE(199), + [sym_if_statement] = STATE(199), + [sym_switch_statement] = STATE(199), + [sym_case_statement] = STATE(199), + [sym_while_statement] = STATE(199), + [sym_do_statement] = STATE(199), + [sym_for_statement] = STATE(199), + [sym_return_statement] = STATE(199), + [sym_break_statement] = STATE(199), + [sym_continue_statement] = STATE(199), + [sym_goto_statement] = STATE(199), + [sym__expression] = STATE(607), + [sym_comma_expression] = STATE(1092), + [sym_conditional_expression] = STATE(607), + [sym_assignment_expression] = STATE(607), + [sym_pointer_expression] = STATE(532), + [sym_unary_expression] = STATE(607), + [sym_binary_expression] = STATE(607), + [sym_update_expression] = STATE(607), + [sym_cast_expression] = STATE(607), + [sym_sizeof_expression] = STATE(607), + [sym_subscript_expression] = STATE(532), + [sym_call_expression] = STATE(532), + [sym_field_expression] = STATE(532), + [sym_compound_literal_expression] = STATE(607), + [sym_parenthesized_expression] = STATE(532), + [sym_char_literal] = STATE(607), + [sym_concatenated_string] = STATE(607), + [sym_string_literal] = STATE(379), + [sym_identifier] = ACTIONS(950), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(364), + [anon_sym_LBRACE] = ACTIONS(370), + [anon_sym_if] = ACTIONS(374), + [anon_sym_switch] = ACTIONS(376), + [anon_sym_case] = ACTIONS(378), + [anon_sym_default] = ACTIONS(380), + [anon_sym_while] = ACTIONS(382), + [anon_sym_do] = ACTIONS(384), + [anon_sym_for] = ACTIONS(386), + [anon_sym_return] = ACTIONS(388), + [anon_sym_break] = ACTIONS(390), + [anon_sym_continue] = ACTIONS(392), + [anon_sym_goto] = ACTIONS(394), + [anon_sym_DASH_DASH] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(73), + [anon_sym_sizeof] = ACTIONS(75), + [sym_number_literal] = ACTIONS(396), + [anon_sym_L_SQUOTE] = ACTIONS(79), + [anon_sym_u_SQUOTE] = ACTIONS(79), + [anon_sym_U_SQUOTE] = ACTIONS(79), + [anon_sym_u8_SQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_L_DQUOTE] = ACTIONS(81), + [anon_sym_u_DQUOTE] = ACTIONS(81), + [anon_sym_U_DQUOTE] = ACTIONS(81), + [anon_sym_u8_DQUOTE] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(81), + [sym_true] = ACTIONS(398), + [sym_false] = ACTIONS(398), + [sym_null] = ACTIONS(398), + [sym_comment] = ACTIONS(3), + }, + [135] = { + [sym_compound_statement] = STATE(261), + [sym_labeled_statement] = STATE(261), + [sym_expression_statement] = STATE(261), + [sym_if_statement] = STATE(261), + [sym_switch_statement] = STATE(261), + [sym_case_statement] = STATE(261), + [sym_while_statement] = STATE(261), + [sym_do_statement] = STATE(261), + [sym_for_statement] = STATE(261), + [sym_return_statement] = STATE(261), + [sym_break_statement] = STATE(261), + [sym_continue_statement] = STATE(261), + [sym_goto_statement] = STATE(261), + [sym__expression] = STATE(606), + [sym_comma_expression] = STATE(1218), + [sym_conditional_expression] = STATE(606), + [sym_assignment_expression] = STATE(606), + [sym_pointer_expression] = STATE(532), + [sym_unary_expression] = STATE(606), + [sym_binary_expression] = STATE(606), + [sym_update_expression] = STATE(606), + [sym_cast_expression] = STATE(606), + [sym_sizeof_expression] = STATE(606), + [sym_subscript_expression] = STATE(532), + [sym_call_expression] = STATE(532), + [sym_field_expression] = STATE(532), + [sym_compound_literal_expression] = STATE(606), + [sym_parenthesized_expression] = STATE(532), + [sym_char_literal] = STATE(606), + [sym_concatenated_string] = STATE(606), + [sym_string_literal] = STATE(379), + [sym_identifier] = ACTIONS(952), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(35), + [anon_sym_if] = ACTIONS(51), + [anon_sym_switch] = ACTIONS(53), + [anon_sym_case] = ACTIONS(55), + [anon_sym_default] = ACTIONS(57), + [anon_sym_while] = ACTIONS(59), + [anon_sym_do] = ACTIONS(61), + [anon_sym_for] = ACTIONS(63), + [anon_sym_return] = ACTIONS(65), + [anon_sym_break] = ACTIONS(67), + [anon_sym_continue] = ACTIONS(69), + [anon_sym_goto] = ACTIONS(71), + [anon_sym_DASH_DASH] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(73), + [anon_sym_sizeof] = ACTIONS(75), + [sym_number_literal] = ACTIONS(77), + [anon_sym_L_SQUOTE] = ACTIONS(79), + [anon_sym_u_SQUOTE] = ACTIONS(79), + [anon_sym_U_SQUOTE] = ACTIONS(79), + [anon_sym_u8_SQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_L_DQUOTE] = ACTIONS(81), + [anon_sym_u_DQUOTE] = ACTIONS(81), + [anon_sym_U_DQUOTE] = ACTIONS(81), + [anon_sym_u8_DQUOTE] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(81), + [sym_true] = ACTIONS(83), + [sym_false] = ACTIONS(83), + [sym_null] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + }, + [136] = { + [sym__expression] = STATE(460), + [sym_conditional_expression] = STATE(460), + [sym_assignment_expression] = STATE(460), + [sym_pointer_expression] = STATE(532), + [sym_unary_expression] = STATE(460), + [sym_binary_expression] = STATE(460), + [sym_update_expression] = STATE(460), + [sym_cast_expression] = STATE(460), + [sym_sizeof_expression] = STATE(460), + [sym_subscript_expression] = STATE(532), + [sym_call_expression] = STATE(532), + [sym_field_expression] = STATE(532), + [sym_compound_literal_expression] = STATE(460), + [sym_parenthesized_expression] = STATE(532), + [sym_initializer_list] = STATE(528), + [sym_char_literal] = STATE(460), + [sym_concatenated_string] = STATE(460), + [sym_string_literal] = STATE(379), + [sym_identifier] = ACTIONS(958), + [anon_sym_COMMA] = ACTIONS(904), + [anon_sym_RPAREN] = ACTIONS(904), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(914), + [anon_sym_PERCENT] = ACTIONS(904), + [anon_sym_PIPE_PIPE] = ACTIONS(904), + [anon_sym_AMP_AMP] = ACTIONS(904), + [anon_sym_PIPE] = ACTIONS(914), + [anon_sym_CARET] = ACTIONS(904), + [anon_sym_AMP] = ACTIONS(912), + [anon_sym_EQ_EQ] = ACTIONS(904), + [anon_sym_BANG_EQ] = ACTIONS(904), + [anon_sym_GT] = ACTIONS(914), + [anon_sym_GT_EQ] = ACTIONS(904), + [anon_sym_LT_EQ] = ACTIONS(904), + [anon_sym_LT] = ACTIONS(914), + [anon_sym_LT_LT] = ACTIONS(904), + [anon_sym_GT_GT] = ACTIONS(904), + [anon_sym_SEMI] = ACTIONS(904), + [anon_sym_LBRACE] = ACTIONS(916), + [anon_sym_RBRACE] = ACTIONS(904), + [anon_sym_LBRACK] = ACTIONS(904), + [anon_sym_RBRACK] = ACTIONS(904), + [anon_sym_COLON] = ACTIONS(904), + [anon_sym_QMARK] = ACTIONS(904), + [anon_sym_DASH_DASH] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(73), + [anon_sym_sizeof] = ACTIONS(75), + [anon_sym_DOT] = ACTIONS(914), + [anon_sym_DASH_GT] = ACTIONS(904), + [sym_number_literal] = ACTIONS(922), + [anon_sym_L_SQUOTE] = ACTIONS(79), + [anon_sym_u_SQUOTE] = ACTIONS(79), + [anon_sym_U_SQUOTE] = ACTIONS(79), + [anon_sym_u8_SQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_L_DQUOTE] = ACTIONS(81), + [anon_sym_u_DQUOTE] = ACTIONS(81), + [anon_sym_U_DQUOTE] = ACTIONS(81), + [anon_sym_u8_DQUOTE] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(81), + [sym_true] = ACTIONS(902), + [sym_false] = ACTIONS(902), + [sym_null] = ACTIONS(902), + [sym_comment] = ACTIONS(3), + }, + [137] = { + [sym_identifier] = ACTIONS(960), + [aux_sym_preproc_include_token1] = ACTIONS(960), + [aux_sym_preproc_def_token1] = ACTIONS(960), + [aux_sym_preproc_if_token1] = ACTIONS(960), + [aux_sym_preproc_if_token2] = ACTIONS(960), + [aux_sym_preproc_ifdef_token1] = ACTIONS(960), + [aux_sym_preproc_ifdef_token2] = ACTIONS(960), + [aux_sym_preproc_else_token1] = ACTIONS(960), + [aux_sym_preproc_elif_token1] = ACTIONS(960), + [sym_preproc_directive] = ACTIONS(960), + [anon_sym_LPAREN2] = ACTIONS(962), + [anon_sym_BANG] = ACTIONS(962), + [anon_sym_TILDE] = ACTIONS(962), + [anon_sym_DASH] = ACTIONS(960), + [anon_sym_PLUS] = ACTIONS(960), + [anon_sym_STAR] = ACTIONS(962), + [anon_sym_AMP] = ACTIONS(962), + [anon_sym_SEMI] = ACTIONS(962), + [anon_sym_typedef] = ACTIONS(960), + [anon_sym_extern] = ACTIONS(960), + [anon_sym___attribute__] = ACTIONS(960), + [anon_sym_LBRACE] = ACTIONS(962), + [anon_sym_static] = ACTIONS(960), + [anon_sym_auto] = ACTIONS(960), + [anon_sym_register] = ACTIONS(960), + [anon_sym_inline] = ACTIONS(960), + [anon_sym_const] = ACTIONS(960), + [anon_sym_volatile] = ACTIONS(960), + [anon_sym_restrict] = ACTIONS(960), + [anon_sym__Atomic] = ACTIONS(960), + [anon_sym_signed] = ACTIONS(960), + [anon_sym_unsigned] = ACTIONS(960), + [anon_sym_long] = ACTIONS(960), + [anon_sym_short] = ACTIONS(960), + [sym_primitive_type] = ACTIONS(960), + [anon_sym_enum] = ACTIONS(960), + [anon_sym_struct] = ACTIONS(960), + [anon_sym_union] = ACTIONS(960), + [anon_sym_if] = ACTIONS(960), + [anon_sym_else] = ACTIONS(960), + [anon_sym_switch] = ACTIONS(960), + [anon_sym_case] = ACTIONS(960), + [anon_sym_default] = ACTIONS(960), + [anon_sym_while] = ACTIONS(960), + [anon_sym_do] = ACTIONS(960), + [anon_sym_for] = ACTIONS(960), + [anon_sym_return] = ACTIONS(960), + [anon_sym_break] = ACTIONS(960), + [anon_sym_continue] = ACTIONS(960), + [anon_sym_goto] = ACTIONS(960), + [anon_sym_DASH_DASH] = ACTIONS(962), + [anon_sym_PLUS_PLUS] = ACTIONS(962), + [anon_sym_sizeof] = ACTIONS(960), + [sym_number_literal] = ACTIONS(962), + [anon_sym_L_SQUOTE] = ACTIONS(962), + [anon_sym_u_SQUOTE] = ACTIONS(962), + [anon_sym_U_SQUOTE] = ACTIONS(962), + [anon_sym_u8_SQUOTE] = ACTIONS(962), + [anon_sym_SQUOTE] = ACTIONS(962), + [anon_sym_L_DQUOTE] = ACTIONS(962), + [anon_sym_u_DQUOTE] = ACTIONS(962), + [anon_sym_U_DQUOTE] = ACTIONS(962), + [anon_sym_u8_DQUOTE] = ACTIONS(962), + [anon_sym_DQUOTE] = ACTIONS(962), + [sym_true] = ACTIONS(960), + [sym_false] = ACTIONS(960), + [sym_null] = ACTIONS(960), + [sym_comment] = ACTIONS(3), + }, + [138] = { + [sym_identifier] = ACTIONS(964), + [aux_sym_preproc_include_token1] = ACTIONS(964), + [aux_sym_preproc_def_token1] = ACTIONS(964), + [aux_sym_preproc_if_token1] = ACTIONS(964), + [aux_sym_preproc_if_token2] = ACTIONS(964), + [aux_sym_preproc_ifdef_token1] = ACTIONS(964), + [aux_sym_preproc_ifdef_token2] = ACTIONS(964), + [aux_sym_preproc_else_token1] = ACTIONS(964), + [aux_sym_preproc_elif_token1] = ACTIONS(964), + [sym_preproc_directive] = ACTIONS(964), + [anon_sym_LPAREN2] = ACTIONS(966), + [anon_sym_BANG] = ACTIONS(966), + [anon_sym_TILDE] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(964), + [anon_sym_PLUS] = ACTIONS(964), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(966), + [anon_sym_typedef] = ACTIONS(964), + [anon_sym_extern] = ACTIONS(964), + [anon_sym___attribute__] = ACTIONS(964), + [anon_sym_LBRACE] = ACTIONS(966), + [anon_sym_static] = ACTIONS(964), [anon_sym_auto] = ACTIONS(964), [anon_sym_register] = ACTIONS(964), [anon_sym_inline] = ACTIONS(964), @@ -19264,7 +19282,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(976), [anon_sym_union] = ACTIONS(976), [anon_sym_if] = ACTIONS(976), - [anon_sym_else] = ACTIONS(980), + [anon_sym_else] = ACTIONS(976), [anon_sym_switch] = ACTIONS(976), [anon_sym_case] = ACTIONS(976), [anon_sym_default] = ACTIONS(976), @@ -19295,353 +19313,353 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [142] = { - [sym_identifier] = ACTIONS(982), - [aux_sym_preproc_include_token1] = ACTIONS(982), - [aux_sym_preproc_def_token1] = ACTIONS(982), - [aux_sym_preproc_if_token1] = ACTIONS(982), - [aux_sym_preproc_if_token2] = ACTIONS(982), - [aux_sym_preproc_ifdef_token1] = ACTIONS(982), - [aux_sym_preproc_ifdef_token2] = ACTIONS(982), - [aux_sym_preproc_else_token1] = ACTIONS(982), - [aux_sym_preproc_elif_token1] = ACTIONS(982), - [sym_preproc_directive] = ACTIONS(982), - [anon_sym_LPAREN2] = ACTIONS(984), - [anon_sym_BANG] = ACTIONS(984), - [anon_sym_TILDE] = ACTIONS(984), - [anon_sym_DASH] = ACTIONS(982), - [anon_sym_PLUS] = ACTIONS(982), - [anon_sym_STAR] = ACTIONS(984), - [anon_sym_AMP] = ACTIONS(984), - [anon_sym_SEMI] = ACTIONS(984), - [anon_sym_typedef] = ACTIONS(982), - [anon_sym_extern] = ACTIONS(982), - [anon_sym___attribute__] = ACTIONS(982), - [anon_sym_LBRACE] = ACTIONS(984), - [anon_sym_static] = ACTIONS(982), - [anon_sym_auto] = ACTIONS(982), - [anon_sym_register] = ACTIONS(982), - [anon_sym_inline] = ACTIONS(982), - [anon_sym_const] = ACTIONS(982), - [anon_sym_volatile] = ACTIONS(982), - [anon_sym_restrict] = ACTIONS(982), - [anon_sym__Atomic] = ACTIONS(982), - [anon_sym_signed] = ACTIONS(982), - [anon_sym_unsigned] = ACTIONS(982), - [anon_sym_long] = ACTIONS(982), - [anon_sym_short] = ACTIONS(982), - [sym_primitive_type] = ACTIONS(982), - [anon_sym_enum] = ACTIONS(982), - [anon_sym_struct] = ACTIONS(982), - [anon_sym_union] = ACTIONS(982), - [anon_sym_if] = ACTIONS(982), - [anon_sym_else] = ACTIONS(982), - [anon_sym_switch] = ACTIONS(982), - [anon_sym_case] = ACTIONS(982), - [anon_sym_default] = ACTIONS(982), - [anon_sym_while] = ACTIONS(982), - [anon_sym_do] = ACTIONS(982), - [anon_sym_for] = ACTIONS(982), - [anon_sym_return] = ACTIONS(982), - [anon_sym_break] = ACTIONS(982), - [anon_sym_continue] = ACTIONS(982), - [anon_sym_goto] = ACTIONS(982), - [anon_sym_DASH_DASH] = ACTIONS(984), - [anon_sym_PLUS_PLUS] = ACTIONS(984), - [anon_sym_sizeof] = ACTIONS(982), - [sym_number_literal] = ACTIONS(984), - [anon_sym_L_SQUOTE] = ACTIONS(984), - [anon_sym_u_SQUOTE] = ACTIONS(984), - [anon_sym_U_SQUOTE] = ACTIONS(984), - [anon_sym_u8_SQUOTE] = ACTIONS(984), - [anon_sym_SQUOTE] = ACTIONS(984), - [anon_sym_L_DQUOTE] = ACTIONS(984), - [anon_sym_u_DQUOTE] = ACTIONS(984), - [anon_sym_U_DQUOTE] = ACTIONS(984), - [anon_sym_u8_DQUOTE] = ACTIONS(984), - [anon_sym_DQUOTE] = ACTIONS(984), - [sym_true] = ACTIONS(982), - [sym_false] = ACTIONS(982), - [sym_null] = ACTIONS(982), + [sym_identifier] = ACTIONS(980), + [aux_sym_preproc_include_token1] = ACTIONS(980), + [aux_sym_preproc_def_token1] = ACTIONS(980), + [aux_sym_preproc_if_token1] = ACTIONS(980), + [aux_sym_preproc_if_token2] = ACTIONS(980), + [aux_sym_preproc_ifdef_token1] = ACTIONS(980), + [aux_sym_preproc_ifdef_token2] = ACTIONS(980), + [aux_sym_preproc_else_token1] = ACTIONS(980), + [aux_sym_preproc_elif_token1] = ACTIONS(980), + [sym_preproc_directive] = ACTIONS(980), + [anon_sym_LPAREN2] = ACTIONS(982), + [anon_sym_BANG] = ACTIONS(982), + [anon_sym_TILDE] = ACTIONS(982), + [anon_sym_DASH] = ACTIONS(980), + [anon_sym_PLUS] = ACTIONS(980), + [anon_sym_STAR] = ACTIONS(982), + [anon_sym_AMP] = ACTIONS(982), + [anon_sym_SEMI] = ACTIONS(982), + [anon_sym_typedef] = ACTIONS(980), + [anon_sym_extern] = ACTIONS(980), + [anon_sym___attribute__] = ACTIONS(980), + [anon_sym_LBRACE] = ACTIONS(982), + [anon_sym_static] = ACTIONS(980), + [anon_sym_auto] = ACTIONS(980), + [anon_sym_register] = ACTIONS(980), + [anon_sym_inline] = ACTIONS(980), + [anon_sym_const] = ACTIONS(980), + [anon_sym_volatile] = ACTIONS(980), + [anon_sym_restrict] = ACTIONS(980), + [anon_sym__Atomic] = ACTIONS(980), + [anon_sym_signed] = ACTIONS(980), + [anon_sym_unsigned] = ACTIONS(980), + [anon_sym_long] = ACTIONS(980), + [anon_sym_short] = ACTIONS(980), + [sym_primitive_type] = ACTIONS(980), + [anon_sym_enum] = ACTIONS(980), + [anon_sym_struct] = ACTIONS(980), + [anon_sym_union] = ACTIONS(980), + [anon_sym_if] = ACTIONS(980), + [anon_sym_else] = ACTIONS(980), + [anon_sym_switch] = ACTIONS(980), + [anon_sym_case] = ACTIONS(980), + [anon_sym_default] = ACTIONS(980), + [anon_sym_while] = ACTIONS(980), + [anon_sym_do] = ACTIONS(980), + [anon_sym_for] = ACTIONS(980), + [anon_sym_return] = ACTIONS(980), + [anon_sym_break] = ACTIONS(980), + [anon_sym_continue] = ACTIONS(980), + [anon_sym_goto] = ACTIONS(980), + [anon_sym_DASH_DASH] = ACTIONS(982), + [anon_sym_PLUS_PLUS] = ACTIONS(982), + [anon_sym_sizeof] = ACTIONS(980), + [sym_number_literal] = ACTIONS(982), + [anon_sym_L_SQUOTE] = ACTIONS(982), + [anon_sym_u_SQUOTE] = ACTIONS(982), + [anon_sym_U_SQUOTE] = ACTIONS(982), + [anon_sym_u8_SQUOTE] = ACTIONS(982), + [anon_sym_SQUOTE] = ACTIONS(982), + [anon_sym_L_DQUOTE] = ACTIONS(982), + [anon_sym_u_DQUOTE] = ACTIONS(982), + [anon_sym_U_DQUOTE] = ACTIONS(982), + [anon_sym_u8_DQUOTE] = ACTIONS(982), + [anon_sym_DQUOTE] = ACTIONS(982), + [sym_true] = ACTIONS(980), + [sym_false] = ACTIONS(980), + [sym_null] = ACTIONS(980), [sym_comment] = ACTIONS(3), }, [143] = { - [sym_identifier] = ACTIONS(986), - [aux_sym_preproc_include_token1] = ACTIONS(986), - [aux_sym_preproc_def_token1] = ACTIONS(986), - [aux_sym_preproc_if_token1] = ACTIONS(986), - [aux_sym_preproc_if_token2] = ACTIONS(986), - [aux_sym_preproc_ifdef_token1] = ACTIONS(986), - [aux_sym_preproc_ifdef_token2] = ACTIONS(986), - [aux_sym_preproc_else_token1] = ACTIONS(986), - [aux_sym_preproc_elif_token1] = ACTIONS(986), - [sym_preproc_directive] = ACTIONS(986), - [anon_sym_LPAREN2] = ACTIONS(988), - [anon_sym_BANG] = ACTIONS(988), - [anon_sym_TILDE] = ACTIONS(988), - [anon_sym_DASH] = ACTIONS(986), - [anon_sym_PLUS] = ACTIONS(986), - [anon_sym_STAR] = ACTIONS(988), - [anon_sym_AMP] = ACTIONS(988), - [anon_sym_SEMI] = ACTIONS(988), - [anon_sym_typedef] = ACTIONS(986), - [anon_sym_extern] = ACTIONS(986), - [anon_sym___attribute__] = ACTIONS(986), - [anon_sym_LBRACE] = ACTIONS(988), - [anon_sym_static] = ACTIONS(986), - [anon_sym_auto] = ACTIONS(986), - [anon_sym_register] = ACTIONS(986), - [anon_sym_inline] = ACTIONS(986), - [anon_sym_const] = ACTIONS(986), - [anon_sym_volatile] = ACTIONS(986), - [anon_sym_restrict] = ACTIONS(986), - [anon_sym__Atomic] = ACTIONS(986), - [anon_sym_signed] = ACTIONS(986), - [anon_sym_unsigned] = ACTIONS(986), - [anon_sym_long] = ACTIONS(986), - [anon_sym_short] = ACTIONS(986), - [sym_primitive_type] = ACTIONS(986), - [anon_sym_enum] = ACTIONS(986), - [anon_sym_struct] = ACTIONS(986), - [anon_sym_union] = ACTIONS(986), - [anon_sym_if] = ACTIONS(986), - [anon_sym_else] = ACTIONS(986), - [anon_sym_switch] = ACTIONS(986), - [anon_sym_case] = ACTIONS(986), - [anon_sym_default] = ACTIONS(986), - [anon_sym_while] = ACTIONS(986), - [anon_sym_do] = ACTIONS(986), - [anon_sym_for] = ACTIONS(986), - [anon_sym_return] = ACTIONS(986), - [anon_sym_break] = ACTIONS(986), - [anon_sym_continue] = ACTIONS(986), - [anon_sym_goto] = ACTIONS(986), - [anon_sym_DASH_DASH] = ACTIONS(988), - [anon_sym_PLUS_PLUS] = ACTIONS(988), - [anon_sym_sizeof] = ACTIONS(986), - [sym_number_literal] = ACTIONS(988), - [anon_sym_L_SQUOTE] = ACTIONS(988), - [anon_sym_u_SQUOTE] = ACTIONS(988), - [anon_sym_U_SQUOTE] = ACTIONS(988), - [anon_sym_u8_SQUOTE] = ACTIONS(988), - [anon_sym_SQUOTE] = ACTIONS(988), - [anon_sym_L_DQUOTE] = ACTIONS(988), - [anon_sym_u_DQUOTE] = ACTIONS(988), - [anon_sym_U_DQUOTE] = ACTIONS(988), - [anon_sym_u8_DQUOTE] = ACTIONS(988), - [anon_sym_DQUOTE] = ACTIONS(988), - [sym_true] = ACTIONS(986), - [sym_false] = ACTIONS(986), - [sym_null] = ACTIONS(986), + [sym_identifier] = ACTIONS(984), + [aux_sym_preproc_include_token1] = ACTIONS(984), + [aux_sym_preproc_def_token1] = ACTIONS(984), + [aux_sym_preproc_if_token1] = ACTIONS(984), + [aux_sym_preproc_if_token2] = ACTIONS(984), + [aux_sym_preproc_ifdef_token1] = ACTIONS(984), + [aux_sym_preproc_ifdef_token2] = ACTIONS(984), + [aux_sym_preproc_else_token1] = ACTIONS(984), + [aux_sym_preproc_elif_token1] = ACTIONS(984), + [sym_preproc_directive] = ACTIONS(984), + [anon_sym_LPAREN2] = ACTIONS(986), + [anon_sym_BANG] = ACTIONS(986), + [anon_sym_TILDE] = ACTIONS(986), + [anon_sym_DASH] = ACTIONS(984), + [anon_sym_PLUS] = ACTIONS(984), + [anon_sym_STAR] = ACTIONS(986), + [anon_sym_AMP] = ACTIONS(986), + [anon_sym_SEMI] = ACTIONS(986), + [anon_sym_typedef] = ACTIONS(984), + [anon_sym_extern] = ACTIONS(984), + [anon_sym___attribute__] = ACTIONS(984), + [anon_sym_LBRACE] = ACTIONS(986), + [anon_sym_static] = ACTIONS(984), + [anon_sym_auto] = ACTIONS(984), + [anon_sym_register] = ACTIONS(984), + [anon_sym_inline] = ACTIONS(984), + [anon_sym_const] = ACTIONS(984), + [anon_sym_volatile] = ACTIONS(984), + [anon_sym_restrict] = ACTIONS(984), + [anon_sym__Atomic] = ACTIONS(984), + [anon_sym_signed] = ACTIONS(984), + [anon_sym_unsigned] = ACTIONS(984), + [anon_sym_long] = ACTIONS(984), + [anon_sym_short] = ACTIONS(984), + [sym_primitive_type] = ACTIONS(984), + [anon_sym_enum] = ACTIONS(984), + [anon_sym_struct] = ACTIONS(984), + [anon_sym_union] = ACTIONS(984), + [anon_sym_if] = ACTIONS(984), + [anon_sym_else] = ACTIONS(984), + [anon_sym_switch] = ACTIONS(984), + [anon_sym_case] = ACTIONS(984), + [anon_sym_default] = ACTIONS(984), + [anon_sym_while] = ACTIONS(984), + [anon_sym_do] = ACTIONS(984), + [anon_sym_for] = ACTIONS(984), + [anon_sym_return] = ACTIONS(984), + [anon_sym_break] = ACTIONS(984), + [anon_sym_continue] = ACTIONS(984), + [anon_sym_goto] = ACTIONS(984), + [anon_sym_DASH_DASH] = ACTIONS(986), + [anon_sym_PLUS_PLUS] = ACTIONS(986), + [anon_sym_sizeof] = ACTIONS(984), + [sym_number_literal] = ACTIONS(986), + [anon_sym_L_SQUOTE] = ACTIONS(986), + [anon_sym_u_SQUOTE] = ACTIONS(986), + [anon_sym_U_SQUOTE] = ACTIONS(986), + [anon_sym_u8_SQUOTE] = ACTIONS(986), + [anon_sym_SQUOTE] = ACTIONS(986), + [anon_sym_L_DQUOTE] = ACTIONS(986), + [anon_sym_u_DQUOTE] = ACTIONS(986), + [anon_sym_U_DQUOTE] = ACTIONS(986), + [anon_sym_u8_DQUOTE] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(986), + [sym_true] = ACTIONS(984), + [sym_false] = ACTIONS(984), + [sym_null] = ACTIONS(984), [sym_comment] = ACTIONS(3), }, [144] = { - [sym_identifier] = ACTIONS(990), - [aux_sym_preproc_include_token1] = ACTIONS(990), - [aux_sym_preproc_def_token1] = ACTIONS(990), - [aux_sym_preproc_if_token1] = ACTIONS(990), - [aux_sym_preproc_if_token2] = ACTIONS(990), - [aux_sym_preproc_ifdef_token1] = ACTIONS(990), - [aux_sym_preproc_ifdef_token2] = ACTIONS(990), - [aux_sym_preproc_else_token1] = ACTIONS(990), - [aux_sym_preproc_elif_token1] = ACTIONS(990), - [sym_preproc_directive] = ACTIONS(990), - [anon_sym_LPAREN2] = ACTIONS(992), - [anon_sym_BANG] = ACTIONS(992), - [anon_sym_TILDE] = ACTIONS(992), - [anon_sym_DASH] = ACTIONS(990), - [anon_sym_PLUS] = ACTIONS(990), - [anon_sym_STAR] = ACTIONS(992), - [anon_sym_AMP] = ACTIONS(992), - [anon_sym_SEMI] = ACTIONS(992), - [anon_sym_typedef] = ACTIONS(990), - [anon_sym_extern] = ACTIONS(990), - [anon_sym___attribute__] = ACTIONS(990), - [anon_sym_LBRACE] = ACTIONS(992), - [anon_sym_static] = ACTIONS(990), - [anon_sym_auto] = ACTIONS(990), - [anon_sym_register] = ACTIONS(990), - [anon_sym_inline] = ACTIONS(990), - [anon_sym_const] = ACTIONS(990), - [anon_sym_volatile] = ACTIONS(990), - [anon_sym_restrict] = ACTIONS(990), - [anon_sym__Atomic] = ACTIONS(990), - [anon_sym_signed] = ACTIONS(990), - [anon_sym_unsigned] = ACTIONS(990), - [anon_sym_long] = ACTIONS(990), - [anon_sym_short] = ACTIONS(990), - [sym_primitive_type] = ACTIONS(990), - [anon_sym_enum] = ACTIONS(990), - [anon_sym_struct] = ACTIONS(990), - [anon_sym_union] = ACTIONS(990), - [anon_sym_if] = ACTIONS(990), - [anon_sym_else] = ACTIONS(990), - [anon_sym_switch] = ACTIONS(990), - [anon_sym_case] = ACTIONS(990), - [anon_sym_default] = ACTIONS(990), - [anon_sym_while] = ACTIONS(990), - [anon_sym_do] = ACTIONS(990), - [anon_sym_for] = ACTIONS(990), - [anon_sym_return] = ACTIONS(990), - [anon_sym_break] = ACTIONS(990), - [anon_sym_continue] = ACTIONS(990), - [anon_sym_goto] = ACTIONS(990), - [anon_sym_DASH_DASH] = ACTIONS(992), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_sizeof] = ACTIONS(990), - [sym_number_literal] = ACTIONS(992), - [anon_sym_L_SQUOTE] = ACTIONS(992), - [anon_sym_u_SQUOTE] = ACTIONS(992), - [anon_sym_U_SQUOTE] = ACTIONS(992), - [anon_sym_u8_SQUOTE] = ACTIONS(992), - [anon_sym_SQUOTE] = ACTIONS(992), - [anon_sym_L_DQUOTE] = ACTIONS(992), - [anon_sym_u_DQUOTE] = ACTIONS(992), - [anon_sym_U_DQUOTE] = ACTIONS(992), - [anon_sym_u8_DQUOTE] = ACTIONS(992), - [anon_sym_DQUOTE] = ACTIONS(992), - [sym_true] = ACTIONS(990), - [sym_false] = ACTIONS(990), - [sym_null] = ACTIONS(990), + [sym_identifier] = ACTIONS(988), + [aux_sym_preproc_include_token1] = ACTIONS(988), + [aux_sym_preproc_def_token1] = ACTIONS(988), + [aux_sym_preproc_if_token1] = ACTIONS(988), + [aux_sym_preproc_if_token2] = ACTIONS(988), + [aux_sym_preproc_ifdef_token1] = ACTIONS(988), + [aux_sym_preproc_ifdef_token2] = ACTIONS(988), + [aux_sym_preproc_else_token1] = ACTIONS(988), + [aux_sym_preproc_elif_token1] = ACTIONS(988), + [sym_preproc_directive] = ACTIONS(988), + [anon_sym_LPAREN2] = ACTIONS(990), + [anon_sym_BANG] = ACTIONS(990), + [anon_sym_TILDE] = ACTIONS(990), + [anon_sym_DASH] = ACTIONS(988), + [anon_sym_PLUS] = ACTIONS(988), + [anon_sym_STAR] = ACTIONS(990), + [anon_sym_AMP] = ACTIONS(990), + [anon_sym_SEMI] = ACTIONS(990), + [anon_sym_typedef] = ACTIONS(988), + [anon_sym_extern] = ACTIONS(988), + [anon_sym___attribute__] = ACTIONS(988), + [anon_sym_LBRACE] = ACTIONS(990), + [anon_sym_static] = ACTIONS(988), + [anon_sym_auto] = ACTIONS(988), + [anon_sym_register] = ACTIONS(988), + [anon_sym_inline] = ACTIONS(988), + [anon_sym_const] = ACTIONS(988), + [anon_sym_volatile] = ACTIONS(988), + [anon_sym_restrict] = ACTIONS(988), + [anon_sym__Atomic] = ACTIONS(988), + [anon_sym_signed] = ACTIONS(988), + [anon_sym_unsigned] = ACTIONS(988), + [anon_sym_long] = ACTIONS(988), + [anon_sym_short] = ACTIONS(988), + [sym_primitive_type] = ACTIONS(988), + [anon_sym_enum] = ACTIONS(988), + [anon_sym_struct] = ACTIONS(988), + [anon_sym_union] = ACTIONS(988), + [anon_sym_if] = ACTIONS(988), + [anon_sym_else] = ACTIONS(988), + [anon_sym_switch] = ACTIONS(988), + [anon_sym_case] = ACTIONS(988), + [anon_sym_default] = ACTIONS(988), + [anon_sym_while] = ACTIONS(988), + [anon_sym_do] = ACTIONS(988), + [anon_sym_for] = ACTIONS(988), + [anon_sym_return] = ACTIONS(988), + [anon_sym_break] = ACTIONS(988), + [anon_sym_continue] = ACTIONS(988), + [anon_sym_goto] = ACTIONS(988), + [anon_sym_DASH_DASH] = ACTIONS(990), + [anon_sym_PLUS_PLUS] = ACTIONS(990), + [anon_sym_sizeof] = ACTIONS(988), + [sym_number_literal] = ACTIONS(990), + [anon_sym_L_SQUOTE] = ACTIONS(990), + [anon_sym_u_SQUOTE] = ACTIONS(990), + [anon_sym_U_SQUOTE] = ACTIONS(990), + [anon_sym_u8_SQUOTE] = ACTIONS(990), + [anon_sym_SQUOTE] = ACTIONS(990), + [anon_sym_L_DQUOTE] = ACTIONS(990), + [anon_sym_u_DQUOTE] = ACTIONS(990), + [anon_sym_U_DQUOTE] = ACTIONS(990), + [anon_sym_u8_DQUOTE] = ACTIONS(990), + [anon_sym_DQUOTE] = ACTIONS(990), + [sym_true] = ACTIONS(988), + [sym_false] = ACTIONS(988), + [sym_null] = ACTIONS(988), [sym_comment] = ACTIONS(3), }, [145] = { - [sym_identifier] = ACTIONS(994), - [aux_sym_preproc_include_token1] = ACTIONS(994), - [aux_sym_preproc_def_token1] = ACTIONS(994), - [aux_sym_preproc_if_token1] = ACTIONS(994), - [aux_sym_preproc_if_token2] = ACTIONS(994), - [aux_sym_preproc_ifdef_token1] = ACTIONS(994), - [aux_sym_preproc_ifdef_token2] = ACTIONS(994), - [aux_sym_preproc_else_token1] = ACTIONS(994), - [aux_sym_preproc_elif_token1] = ACTIONS(994), - [sym_preproc_directive] = ACTIONS(994), - [anon_sym_LPAREN2] = ACTIONS(996), - [anon_sym_BANG] = ACTIONS(996), - [anon_sym_TILDE] = ACTIONS(996), - [anon_sym_DASH] = ACTIONS(994), - [anon_sym_PLUS] = ACTIONS(994), - [anon_sym_STAR] = ACTIONS(996), - [anon_sym_AMP] = ACTIONS(996), - [anon_sym_SEMI] = ACTIONS(996), - [anon_sym_typedef] = ACTIONS(994), - [anon_sym_extern] = ACTIONS(994), - [anon_sym___attribute__] = ACTIONS(994), - [anon_sym_LBRACE] = ACTIONS(996), - [anon_sym_static] = ACTIONS(994), - [anon_sym_auto] = ACTIONS(994), - [anon_sym_register] = ACTIONS(994), - [anon_sym_inline] = ACTIONS(994), - [anon_sym_const] = ACTIONS(994), - [anon_sym_volatile] = ACTIONS(994), - [anon_sym_restrict] = ACTIONS(994), - [anon_sym__Atomic] = ACTIONS(994), - [anon_sym_signed] = ACTIONS(994), - [anon_sym_unsigned] = ACTIONS(994), - [anon_sym_long] = ACTIONS(994), - [anon_sym_short] = ACTIONS(994), - [sym_primitive_type] = ACTIONS(994), - [anon_sym_enum] = ACTIONS(994), - [anon_sym_struct] = ACTIONS(994), - [anon_sym_union] = ACTIONS(994), - [anon_sym_if] = ACTIONS(994), - [anon_sym_else] = ACTIONS(994), - [anon_sym_switch] = ACTIONS(994), - [anon_sym_case] = ACTIONS(994), - [anon_sym_default] = ACTIONS(994), - [anon_sym_while] = ACTIONS(994), - [anon_sym_do] = ACTIONS(994), - [anon_sym_for] = ACTIONS(994), - [anon_sym_return] = ACTIONS(994), - [anon_sym_break] = ACTIONS(994), - [anon_sym_continue] = ACTIONS(994), - [anon_sym_goto] = ACTIONS(994), - [anon_sym_DASH_DASH] = ACTIONS(996), - [anon_sym_PLUS_PLUS] = ACTIONS(996), - [anon_sym_sizeof] = ACTIONS(994), - [sym_number_literal] = ACTIONS(996), - [anon_sym_L_SQUOTE] = ACTIONS(996), - [anon_sym_u_SQUOTE] = ACTIONS(996), - [anon_sym_U_SQUOTE] = ACTIONS(996), - [anon_sym_u8_SQUOTE] = ACTIONS(996), - [anon_sym_SQUOTE] = ACTIONS(996), - [anon_sym_L_DQUOTE] = ACTIONS(996), - [anon_sym_u_DQUOTE] = ACTIONS(996), - [anon_sym_U_DQUOTE] = ACTIONS(996), - [anon_sym_u8_DQUOTE] = ACTIONS(996), - [anon_sym_DQUOTE] = ACTIONS(996), - [sym_true] = ACTIONS(994), - [sym_false] = ACTIONS(994), - [sym_null] = ACTIONS(994), + [sym_identifier] = ACTIONS(992), + [aux_sym_preproc_include_token1] = ACTIONS(992), + [aux_sym_preproc_def_token1] = ACTIONS(992), + [aux_sym_preproc_if_token1] = ACTIONS(992), + [aux_sym_preproc_if_token2] = ACTIONS(992), + [aux_sym_preproc_ifdef_token1] = ACTIONS(992), + [aux_sym_preproc_ifdef_token2] = ACTIONS(992), + [aux_sym_preproc_else_token1] = ACTIONS(992), + [aux_sym_preproc_elif_token1] = ACTIONS(992), + [sym_preproc_directive] = ACTIONS(992), + [anon_sym_LPAREN2] = ACTIONS(994), + [anon_sym_BANG] = ACTIONS(994), + [anon_sym_TILDE] = ACTIONS(994), + [anon_sym_DASH] = ACTIONS(992), + [anon_sym_PLUS] = ACTIONS(992), + [anon_sym_STAR] = ACTIONS(994), + [anon_sym_AMP] = ACTIONS(994), + [anon_sym_SEMI] = ACTIONS(994), + [anon_sym_typedef] = ACTIONS(992), + [anon_sym_extern] = ACTIONS(992), + [anon_sym___attribute__] = ACTIONS(992), + [anon_sym_LBRACE] = ACTIONS(994), + [anon_sym_static] = ACTIONS(992), + [anon_sym_auto] = ACTIONS(992), + [anon_sym_register] = ACTIONS(992), + [anon_sym_inline] = ACTIONS(992), + [anon_sym_const] = ACTIONS(992), + [anon_sym_volatile] = ACTIONS(992), + [anon_sym_restrict] = ACTIONS(992), + [anon_sym__Atomic] = ACTIONS(992), + [anon_sym_signed] = ACTIONS(992), + [anon_sym_unsigned] = ACTIONS(992), + [anon_sym_long] = ACTIONS(992), + [anon_sym_short] = ACTIONS(992), + [sym_primitive_type] = ACTIONS(992), + [anon_sym_enum] = ACTIONS(992), + [anon_sym_struct] = ACTIONS(992), + [anon_sym_union] = ACTIONS(992), + [anon_sym_if] = ACTIONS(992), + [anon_sym_else] = ACTIONS(992), + [anon_sym_switch] = ACTIONS(992), + [anon_sym_case] = ACTIONS(992), + [anon_sym_default] = ACTIONS(992), + [anon_sym_while] = ACTIONS(992), + [anon_sym_do] = ACTIONS(992), + [anon_sym_for] = ACTIONS(992), + [anon_sym_return] = ACTIONS(992), + [anon_sym_break] = ACTIONS(992), + [anon_sym_continue] = ACTIONS(992), + [anon_sym_goto] = ACTIONS(992), + [anon_sym_DASH_DASH] = ACTIONS(994), + [anon_sym_PLUS_PLUS] = ACTIONS(994), + [anon_sym_sizeof] = ACTIONS(992), + [sym_number_literal] = ACTIONS(994), + [anon_sym_L_SQUOTE] = ACTIONS(994), + [anon_sym_u_SQUOTE] = ACTIONS(994), + [anon_sym_U_SQUOTE] = ACTIONS(994), + [anon_sym_u8_SQUOTE] = ACTIONS(994), + [anon_sym_SQUOTE] = ACTIONS(994), + [anon_sym_L_DQUOTE] = ACTIONS(994), + [anon_sym_u_DQUOTE] = ACTIONS(994), + [anon_sym_U_DQUOTE] = ACTIONS(994), + [anon_sym_u8_DQUOTE] = ACTIONS(994), + [anon_sym_DQUOTE] = ACTIONS(994), + [sym_true] = ACTIONS(992), + [sym_false] = ACTIONS(992), + [sym_null] = ACTIONS(992), [sym_comment] = ACTIONS(3), }, [146] = { - [sym_identifier] = ACTIONS(998), - [aux_sym_preproc_include_token1] = ACTIONS(998), - [aux_sym_preproc_def_token1] = ACTIONS(998), - [aux_sym_preproc_if_token1] = ACTIONS(998), - [aux_sym_preproc_if_token2] = ACTIONS(998), - [aux_sym_preproc_ifdef_token1] = ACTIONS(998), - [aux_sym_preproc_ifdef_token2] = ACTIONS(998), - [aux_sym_preproc_else_token1] = ACTIONS(998), - [aux_sym_preproc_elif_token1] = ACTIONS(998), - [sym_preproc_directive] = ACTIONS(998), - [anon_sym_LPAREN2] = ACTIONS(1000), - [anon_sym_BANG] = ACTIONS(1000), - [anon_sym_TILDE] = ACTIONS(1000), - [anon_sym_DASH] = ACTIONS(998), - [anon_sym_PLUS] = ACTIONS(998), - [anon_sym_STAR] = ACTIONS(1000), - [anon_sym_AMP] = ACTIONS(1000), - [anon_sym_SEMI] = ACTIONS(1000), - [anon_sym_typedef] = ACTIONS(998), - [anon_sym_extern] = ACTIONS(998), - [anon_sym___attribute__] = ACTIONS(998), - [anon_sym_LBRACE] = ACTIONS(1000), - [anon_sym_static] = ACTIONS(998), - [anon_sym_auto] = ACTIONS(998), - [anon_sym_register] = ACTIONS(998), - [anon_sym_inline] = ACTIONS(998), - [anon_sym_const] = ACTIONS(998), - [anon_sym_volatile] = ACTIONS(998), - [anon_sym_restrict] = ACTIONS(998), - [anon_sym__Atomic] = ACTIONS(998), - [anon_sym_signed] = ACTIONS(998), - [anon_sym_unsigned] = ACTIONS(998), - [anon_sym_long] = ACTIONS(998), - [anon_sym_short] = ACTIONS(998), - [sym_primitive_type] = ACTIONS(998), - [anon_sym_enum] = ACTIONS(998), - [anon_sym_struct] = ACTIONS(998), - [anon_sym_union] = ACTIONS(998), - [anon_sym_if] = ACTIONS(998), - [anon_sym_else] = ACTIONS(998), - [anon_sym_switch] = ACTIONS(998), - [anon_sym_case] = ACTIONS(998), - [anon_sym_default] = ACTIONS(998), - [anon_sym_while] = ACTIONS(998), - [anon_sym_do] = ACTIONS(998), - [anon_sym_for] = ACTIONS(998), - [anon_sym_return] = ACTIONS(998), - [anon_sym_break] = ACTIONS(998), - [anon_sym_continue] = ACTIONS(998), - [anon_sym_goto] = ACTIONS(998), - [anon_sym_DASH_DASH] = ACTIONS(1000), - [anon_sym_PLUS_PLUS] = ACTIONS(1000), - [anon_sym_sizeof] = ACTIONS(998), - [sym_number_literal] = ACTIONS(1000), - [anon_sym_L_SQUOTE] = ACTIONS(1000), - [anon_sym_u_SQUOTE] = ACTIONS(1000), - [anon_sym_U_SQUOTE] = ACTIONS(1000), - [anon_sym_u8_SQUOTE] = ACTIONS(1000), - [anon_sym_SQUOTE] = ACTIONS(1000), - [anon_sym_L_DQUOTE] = ACTIONS(1000), - [anon_sym_u_DQUOTE] = ACTIONS(1000), - [anon_sym_U_DQUOTE] = ACTIONS(1000), - [anon_sym_u8_DQUOTE] = ACTIONS(1000), - [anon_sym_DQUOTE] = ACTIONS(1000), - [sym_true] = ACTIONS(998), - [sym_false] = ACTIONS(998), - [sym_null] = ACTIONS(998), + [sym_identifier] = ACTIONS(996), + [aux_sym_preproc_include_token1] = ACTIONS(996), + [aux_sym_preproc_def_token1] = ACTIONS(996), + [aux_sym_preproc_if_token1] = ACTIONS(996), + [aux_sym_preproc_if_token2] = ACTIONS(996), + [aux_sym_preproc_ifdef_token1] = ACTIONS(996), + [aux_sym_preproc_ifdef_token2] = ACTIONS(996), + [aux_sym_preproc_else_token1] = ACTIONS(996), + [aux_sym_preproc_elif_token1] = ACTIONS(996), + [sym_preproc_directive] = ACTIONS(996), + [anon_sym_LPAREN2] = ACTIONS(998), + [anon_sym_BANG] = ACTIONS(998), + [anon_sym_TILDE] = ACTIONS(998), + [anon_sym_DASH] = ACTIONS(996), + [anon_sym_PLUS] = ACTIONS(996), + [anon_sym_STAR] = ACTIONS(998), + [anon_sym_AMP] = ACTIONS(998), + [anon_sym_SEMI] = ACTIONS(998), + [anon_sym_typedef] = ACTIONS(996), + [anon_sym_extern] = ACTIONS(996), + [anon_sym___attribute__] = ACTIONS(996), + [anon_sym_LBRACE] = ACTIONS(998), + [anon_sym_static] = ACTIONS(996), + [anon_sym_auto] = ACTIONS(996), + [anon_sym_register] = ACTIONS(996), + [anon_sym_inline] = ACTIONS(996), + [anon_sym_const] = ACTIONS(996), + [anon_sym_volatile] = ACTIONS(996), + [anon_sym_restrict] = ACTIONS(996), + [anon_sym__Atomic] = ACTIONS(996), + [anon_sym_signed] = ACTIONS(996), + [anon_sym_unsigned] = ACTIONS(996), + [anon_sym_long] = ACTIONS(996), + [anon_sym_short] = ACTIONS(996), + [sym_primitive_type] = ACTIONS(996), + [anon_sym_enum] = ACTIONS(996), + [anon_sym_struct] = ACTIONS(996), + [anon_sym_union] = ACTIONS(996), + [anon_sym_if] = ACTIONS(996), + [anon_sym_else] = ACTIONS(1000), + [anon_sym_switch] = ACTIONS(996), + [anon_sym_case] = ACTIONS(996), + [anon_sym_default] = ACTIONS(996), + [anon_sym_while] = ACTIONS(996), + [anon_sym_do] = ACTIONS(996), + [anon_sym_for] = ACTIONS(996), + [anon_sym_return] = ACTIONS(996), + [anon_sym_break] = ACTIONS(996), + [anon_sym_continue] = ACTIONS(996), + [anon_sym_goto] = ACTIONS(996), + [anon_sym_DASH_DASH] = ACTIONS(998), + [anon_sym_PLUS_PLUS] = ACTIONS(998), + [anon_sym_sizeof] = ACTIONS(996), + [sym_number_literal] = ACTIONS(998), + [anon_sym_L_SQUOTE] = ACTIONS(998), + [anon_sym_u_SQUOTE] = ACTIONS(998), + [anon_sym_U_SQUOTE] = ACTIONS(998), + [anon_sym_u8_SQUOTE] = ACTIONS(998), + [anon_sym_SQUOTE] = ACTIONS(998), + [anon_sym_L_DQUOTE] = ACTIONS(998), + [anon_sym_u_DQUOTE] = ACTIONS(998), + [anon_sym_U_DQUOTE] = ACTIONS(998), + [anon_sym_u8_DQUOTE] = ACTIONS(998), + [anon_sym_DQUOTE] = ACTIONS(998), + [sym_true] = ACTIONS(996), + [sym_false] = ACTIONS(996), + [sym_null] = ACTIONS(996), [sym_comment] = ACTIONS(3), }, [147] = { @@ -22635,241 +22653,579 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [190] = { - [sym_identifier] = ACTIONS(1174), - [aux_sym_preproc_include_token1] = ACTIONS(1174), - [aux_sym_preproc_def_token1] = ACTIONS(1174), - [aux_sym_preproc_if_token1] = ACTIONS(1174), - [aux_sym_preproc_if_token2] = ACTIONS(1174), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1174), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1174), - [aux_sym_preproc_else_token1] = ACTIONS(1174), - [aux_sym_preproc_elif_token1] = ACTIONS(1174), - [sym_preproc_directive] = ACTIONS(1174), - [anon_sym_LPAREN2] = ACTIONS(1176), - [anon_sym_BANG] = ACTIONS(1176), - [anon_sym_TILDE] = ACTIONS(1176), - [anon_sym_DASH] = ACTIONS(1174), - [anon_sym_PLUS] = ACTIONS(1174), - [anon_sym_STAR] = ACTIONS(1176), - [anon_sym_AMP] = ACTIONS(1176), - [anon_sym_SEMI] = ACTIONS(1176), - [anon_sym_typedef] = ACTIONS(1174), - [anon_sym_extern] = ACTIONS(1174), - [anon_sym___attribute__] = ACTIONS(1174), - [anon_sym_LBRACE] = ACTIONS(1176), - [anon_sym_static] = ACTIONS(1174), - [anon_sym_auto] = ACTIONS(1174), - [anon_sym_register] = ACTIONS(1174), - [anon_sym_inline] = ACTIONS(1174), - [anon_sym_const] = ACTIONS(1174), - [anon_sym_volatile] = ACTIONS(1174), - [anon_sym_restrict] = ACTIONS(1174), - [anon_sym__Atomic] = ACTIONS(1174), - [anon_sym_signed] = ACTIONS(1174), - [anon_sym_unsigned] = ACTIONS(1174), - [anon_sym_long] = ACTIONS(1174), - [anon_sym_short] = ACTIONS(1174), - [sym_primitive_type] = ACTIONS(1174), - [anon_sym_enum] = ACTIONS(1174), - [anon_sym_struct] = ACTIONS(1174), - [anon_sym_union] = ACTIONS(1174), - [anon_sym_if] = ACTIONS(1174), - [anon_sym_switch] = ACTIONS(1174), - [anon_sym_case] = ACTIONS(1174), - [anon_sym_default] = ACTIONS(1174), - [anon_sym_while] = ACTIONS(1174), - [anon_sym_do] = ACTIONS(1174), - [anon_sym_for] = ACTIONS(1174), - [anon_sym_return] = ACTIONS(1174), - [anon_sym_break] = ACTIONS(1174), - [anon_sym_continue] = ACTIONS(1174), - [anon_sym_goto] = ACTIONS(1174), - [anon_sym_DASH_DASH] = ACTIONS(1176), - [anon_sym_PLUS_PLUS] = ACTIONS(1176), - [anon_sym_sizeof] = ACTIONS(1174), - [sym_number_literal] = ACTIONS(1176), - [anon_sym_L_SQUOTE] = ACTIONS(1176), - [anon_sym_u_SQUOTE] = ACTIONS(1176), - [anon_sym_U_SQUOTE] = ACTIONS(1176), - [anon_sym_u8_SQUOTE] = ACTIONS(1176), - [anon_sym_SQUOTE] = ACTIONS(1176), - [anon_sym_L_DQUOTE] = ACTIONS(1176), - [anon_sym_u_DQUOTE] = ACTIONS(1176), - [anon_sym_U_DQUOTE] = ACTIONS(1176), - [anon_sym_u8_DQUOTE] = ACTIONS(1176), - [anon_sym_DQUOTE] = ACTIONS(1176), - [sym_true] = ACTIONS(1174), - [sym_false] = ACTIONS(1174), - [sym_null] = ACTIONS(1174), + [sym_identifier] = ACTIONS(972), + [aux_sym_preproc_include_token1] = ACTIONS(972), + [aux_sym_preproc_def_token1] = ACTIONS(972), + [aux_sym_preproc_if_token1] = ACTIONS(972), + [aux_sym_preproc_if_token2] = ACTIONS(972), + [aux_sym_preproc_ifdef_token1] = ACTIONS(972), + [aux_sym_preproc_ifdef_token2] = ACTIONS(972), + [sym_preproc_directive] = ACTIONS(972), + [anon_sym_LPAREN2] = ACTIONS(974), + [anon_sym_BANG] = ACTIONS(974), + [anon_sym_TILDE] = ACTIONS(974), + [anon_sym_DASH] = ACTIONS(972), + [anon_sym_PLUS] = ACTIONS(972), + [anon_sym_STAR] = ACTIONS(974), + [anon_sym_AMP] = ACTIONS(974), + [anon_sym_SEMI] = ACTIONS(974), + [anon_sym_typedef] = ACTIONS(972), + [anon_sym_extern] = ACTIONS(972), + [anon_sym___attribute__] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(974), + [anon_sym_static] = ACTIONS(972), + [anon_sym_auto] = ACTIONS(972), + [anon_sym_register] = ACTIONS(972), + [anon_sym_inline] = ACTIONS(972), + [anon_sym_const] = ACTIONS(972), + [anon_sym_volatile] = ACTIONS(972), + [anon_sym_restrict] = ACTIONS(972), + [anon_sym__Atomic] = ACTIONS(972), + [anon_sym_signed] = ACTIONS(972), + [anon_sym_unsigned] = ACTIONS(972), + [anon_sym_long] = ACTIONS(972), + [anon_sym_short] = ACTIONS(972), + [sym_primitive_type] = ACTIONS(972), + [anon_sym_enum] = ACTIONS(972), + [anon_sym_struct] = ACTIONS(972), + [anon_sym_union] = ACTIONS(972), + [anon_sym_if] = ACTIONS(972), + [anon_sym_else] = ACTIONS(972), + [anon_sym_switch] = ACTIONS(972), + [anon_sym_case] = ACTIONS(972), + [anon_sym_default] = ACTIONS(972), + [anon_sym_while] = ACTIONS(972), + [anon_sym_do] = ACTIONS(972), + [anon_sym_for] = ACTIONS(972), + [anon_sym_return] = ACTIONS(972), + [anon_sym_break] = ACTIONS(972), + [anon_sym_continue] = ACTIONS(972), + [anon_sym_goto] = ACTIONS(972), + [anon_sym_DASH_DASH] = ACTIONS(974), + [anon_sym_PLUS_PLUS] = ACTIONS(974), + [anon_sym_sizeof] = ACTIONS(972), + [sym_number_literal] = ACTIONS(974), + [anon_sym_L_SQUOTE] = ACTIONS(974), + [anon_sym_u_SQUOTE] = ACTIONS(974), + [anon_sym_U_SQUOTE] = ACTIONS(974), + [anon_sym_u8_SQUOTE] = ACTIONS(974), + [anon_sym_SQUOTE] = ACTIONS(974), + [anon_sym_L_DQUOTE] = ACTIONS(974), + [anon_sym_u_DQUOTE] = ACTIONS(974), + [anon_sym_U_DQUOTE] = ACTIONS(974), + [anon_sym_u8_DQUOTE] = ACTIONS(974), + [anon_sym_DQUOTE] = ACTIONS(974), + [sym_true] = ACTIONS(972), + [sym_false] = ACTIONS(972), + [sym_null] = ACTIONS(972), [sym_comment] = ACTIONS(3), }, [191] = { - [sym_identifier] = ACTIONS(1178), - [aux_sym_preproc_include_token1] = ACTIONS(1178), - [aux_sym_preproc_def_token1] = ACTIONS(1178), - [aux_sym_preproc_if_token1] = ACTIONS(1178), - [aux_sym_preproc_if_token2] = ACTIONS(1178), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1178), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1178), - [aux_sym_preproc_else_token1] = ACTIONS(1178), - [aux_sym_preproc_elif_token1] = ACTIONS(1178), - [sym_preproc_directive] = ACTIONS(1178), - [anon_sym_LPAREN2] = ACTIONS(1180), - [anon_sym_BANG] = ACTIONS(1180), - [anon_sym_TILDE] = ACTIONS(1180), - [anon_sym_DASH] = ACTIONS(1178), - [anon_sym_PLUS] = ACTIONS(1178), - [anon_sym_STAR] = ACTIONS(1180), - [anon_sym_AMP] = ACTIONS(1180), - [anon_sym_SEMI] = ACTIONS(1180), - [anon_sym_typedef] = ACTIONS(1178), - [anon_sym_extern] = ACTIONS(1178), - [anon_sym___attribute__] = ACTIONS(1178), - [anon_sym_LBRACE] = ACTIONS(1180), - [anon_sym_static] = ACTIONS(1178), - [anon_sym_auto] = ACTIONS(1178), - [anon_sym_register] = ACTIONS(1178), - [anon_sym_inline] = ACTIONS(1178), - [anon_sym_const] = ACTIONS(1178), - [anon_sym_volatile] = ACTIONS(1178), - [anon_sym_restrict] = ACTIONS(1178), - [anon_sym__Atomic] = ACTIONS(1178), - [anon_sym_signed] = ACTIONS(1178), - [anon_sym_unsigned] = ACTIONS(1178), - [anon_sym_long] = ACTIONS(1178), - [anon_sym_short] = ACTIONS(1178), - [sym_primitive_type] = ACTIONS(1178), - [anon_sym_enum] = ACTIONS(1178), - [anon_sym_struct] = ACTIONS(1178), - [anon_sym_union] = ACTIONS(1178), - [anon_sym_if] = ACTIONS(1178), - [anon_sym_switch] = ACTIONS(1178), - [anon_sym_case] = ACTIONS(1178), - [anon_sym_default] = ACTIONS(1178), - [anon_sym_while] = ACTIONS(1178), - [anon_sym_do] = ACTIONS(1178), - [anon_sym_for] = ACTIONS(1178), - [anon_sym_return] = ACTIONS(1178), - [anon_sym_break] = ACTIONS(1178), - [anon_sym_continue] = ACTIONS(1178), - [anon_sym_goto] = ACTIONS(1178), - [anon_sym_DASH_DASH] = ACTIONS(1180), - [anon_sym_PLUS_PLUS] = ACTIONS(1180), - [anon_sym_sizeof] = ACTIONS(1178), - [sym_number_literal] = ACTIONS(1180), - [anon_sym_L_SQUOTE] = ACTIONS(1180), - [anon_sym_u_SQUOTE] = ACTIONS(1180), - [anon_sym_U_SQUOTE] = ACTIONS(1180), - [anon_sym_u8_SQUOTE] = ACTIONS(1180), - [anon_sym_SQUOTE] = ACTIONS(1180), - [anon_sym_L_DQUOTE] = ACTIONS(1180), - [anon_sym_u_DQUOTE] = ACTIONS(1180), - [anon_sym_U_DQUOTE] = ACTIONS(1180), - [anon_sym_u8_DQUOTE] = ACTIONS(1180), - [anon_sym_DQUOTE] = ACTIONS(1180), - [sym_true] = ACTIONS(1178), - [sym_false] = ACTIONS(1178), - [sym_null] = ACTIONS(1178), + [ts_builtin_sym_end] = ACTIONS(1044), + [sym_identifier] = ACTIONS(1042), + [aux_sym_preproc_include_token1] = ACTIONS(1042), + [aux_sym_preproc_def_token1] = ACTIONS(1042), + [aux_sym_preproc_if_token1] = ACTIONS(1042), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1042), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1042), + [sym_preproc_directive] = ACTIONS(1042), + [anon_sym_LPAREN2] = ACTIONS(1044), + [anon_sym_BANG] = ACTIONS(1044), + [anon_sym_TILDE] = ACTIONS(1044), + [anon_sym_DASH] = ACTIONS(1042), + [anon_sym_PLUS] = ACTIONS(1042), + [anon_sym_STAR] = ACTIONS(1044), + [anon_sym_AMP] = ACTIONS(1044), + [anon_sym_SEMI] = ACTIONS(1044), + [anon_sym_typedef] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1042), + [anon_sym___attribute__] = ACTIONS(1042), + [anon_sym_LBRACE] = ACTIONS(1044), + [anon_sym_static] = ACTIONS(1042), + [anon_sym_auto] = ACTIONS(1042), + [anon_sym_register] = ACTIONS(1042), + [anon_sym_inline] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1042), + [anon_sym_volatile] = ACTIONS(1042), + [anon_sym_restrict] = ACTIONS(1042), + [anon_sym__Atomic] = ACTIONS(1042), + [anon_sym_signed] = ACTIONS(1042), + [anon_sym_unsigned] = ACTIONS(1042), + [anon_sym_long] = ACTIONS(1042), + [anon_sym_short] = ACTIONS(1042), + [sym_primitive_type] = ACTIONS(1042), + [anon_sym_enum] = ACTIONS(1042), + [anon_sym_struct] = ACTIONS(1042), + [anon_sym_union] = ACTIONS(1042), + [anon_sym_if] = ACTIONS(1042), + [anon_sym_else] = ACTIONS(1042), + [anon_sym_switch] = ACTIONS(1042), + [anon_sym_case] = ACTIONS(1042), + [anon_sym_default] = ACTIONS(1042), + [anon_sym_while] = ACTIONS(1042), + [anon_sym_do] = ACTIONS(1042), + [anon_sym_for] = ACTIONS(1042), + [anon_sym_return] = ACTIONS(1042), + [anon_sym_break] = ACTIONS(1042), + [anon_sym_continue] = ACTIONS(1042), + [anon_sym_goto] = ACTIONS(1042), + [anon_sym_DASH_DASH] = ACTIONS(1044), + [anon_sym_PLUS_PLUS] = ACTIONS(1044), + [anon_sym_sizeof] = ACTIONS(1042), + [sym_number_literal] = ACTIONS(1044), + [anon_sym_L_SQUOTE] = ACTIONS(1044), + [anon_sym_u_SQUOTE] = ACTIONS(1044), + [anon_sym_U_SQUOTE] = ACTIONS(1044), + [anon_sym_u8_SQUOTE] = ACTIONS(1044), + [anon_sym_SQUOTE] = ACTIONS(1044), + [anon_sym_L_DQUOTE] = ACTIONS(1044), + [anon_sym_u_DQUOTE] = ACTIONS(1044), + [anon_sym_U_DQUOTE] = ACTIONS(1044), + [anon_sym_u8_DQUOTE] = ACTIONS(1044), + [anon_sym_DQUOTE] = ACTIONS(1044), + [sym_true] = ACTIONS(1042), + [sym_false] = ACTIONS(1042), + [sym_null] = ACTIONS(1042), [sym_comment] = ACTIONS(3), }, [192] = { - [sym_identifier] = ACTIONS(990), - [aux_sym_preproc_include_token1] = ACTIONS(990), - [aux_sym_preproc_def_token1] = ACTIONS(990), - [aux_sym_preproc_if_token1] = ACTIONS(990), - [aux_sym_preproc_if_token2] = ACTIONS(990), - [aux_sym_preproc_ifdef_token1] = ACTIONS(990), - [aux_sym_preproc_ifdef_token2] = ACTIONS(990), - [sym_preproc_directive] = ACTIONS(990), - [anon_sym_LPAREN2] = ACTIONS(992), - [anon_sym_BANG] = ACTIONS(992), - [anon_sym_TILDE] = ACTIONS(992), - [anon_sym_DASH] = ACTIONS(990), - [anon_sym_PLUS] = ACTIONS(990), - [anon_sym_STAR] = ACTIONS(992), - [anon_sym_AMP] = ACTIONS(992), - [anon_sym_SEMI] = ACTIONS(992), - [anon_sym_typedef] = ACTIONS(990), - [anon_sym_extern] = ACTIONS(990), - [anon_sym___attribute__] = ACTIONS(990), - [anon_sym_LBRACE] = ACTIONS(992), - [anon_sym_static] = ACTIONS(990), - [anon_sym_auto] = ACTIONS(990), - [anon_sym_register] = ACTIONS(990), - [anon_sym_inline] = ACTIONS(990), - [anon_sym_const] = ACTIONS(990), - [anon_sym_volatile] = ACTIONS(990), - [anon_sym_restrict] = ACTIONS(990), - [anon_sym__Atomic] = ACTIONS(990), - [anon_sym_signed] = ACTIONS(990), - [anon_sym_unsigned] = ACTIONS(990), - [anon_sym_long] = ACTIONS(990), - [anon_sym_short] = ACTIONS(990), - [sym_primitive_type] = ACTIONS(990), - [anon_sym_enum] = ACTIONS(990), - [anon_sym_struct] = ACTIONS(990), - [anon_sym_union] = ACTIONS(990), - [anon_sym_if] = ACTIONS(990), - [anon_sym_else] = ACTIONS(990), - [anon_sym_switch] = ACTIONS(990), - [anon_sym_case] = ACTIONS(990), - [anon_sym_default] = ACTIONS(990), - [anon_sym_while] = ACTIONS(990), - [anon_sym_do] = ACTIONS(990), - [anon_sym_for] = ACTIONS(990), - [anon_sym_return] = ACTIONS(990), - [anon_sym_break] = ACTIONS(990), - [anon_sym_continue] = ACTIONS(990), - [anon_sym_goto] = ACTIONS(990), - [anon_sym_DASH_DASH] = ACTIONS(992), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_sizeof] = ACTIONS(990), - [sym_number_literal] = ACTIONS(992), - [anon_sym_L_SQUOTE] = ACTIONS(992), - [anon_sym_u_SQUOTE] = ACTIONS(992), - [anon_sym_U_SQUOTE] = ACTIONS(992), - [anon_sym_u8_SQUOTE] = ACTIONS(992), - [anon_sym_SQUOTE] = ACTIONS(992), - [anon_sym_L_DQUOTE] = ACTIONS(992), - [anon_sym_u_DQUOTE] = ACTIONS(992), - [anon_sym_U_DQUOTE] = ACTIONS(992), - [anon_sym_u8_DQUOTE] = ACTIONS(992), - [anon_sym_DQUOTE] = ACTIONS(992), - [sym_true] = ACTIONS(990), - [sym_false] = ACTIONS(990), - [sym_null] = ACTIONS(990), + [sym_identifier] = ACTIONS(1034), + [aux_sym_preproc_include_token1] = ACTIONS(1034), + [aux_sym_preproc_def_token1] = ACTIONS(1034), + [aux_sym_preproc_if_token1] = ACTIONS(1034), + [aux_sym_preproc_if_token2] = ACTIONS(1034), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1034), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1034), + [sym_preproc_directive] = ACTIONS(1034), + [anon_sym_LPAREN2] = ACTIONS(1036), + [anon_sym_BANG] = ACTIONS(1036), + [anon_sym_TILDE] = ACTIONS(1036), + [anon_sym_DASH] = ACTIONS(1034), + [anon_sym_PLUS] = ACTIONS(1034), + [anon_sym_STAR] = ACTIONS(1036), + [anon_sym_AMP] = ACTIONS(1036), + [anon_sym_SEMI] = ACTIONS(1036), + [anon_sym_typedef] = ACTIONS(1034), + [anon_sym_extern] = ACTIONS(1034), + [anon_sym___attribute__] = ACTIONS(1034), + [anon_sym_LBRACE] = ACTIONS(1036), + [anon_sym_static] = ACTIONS(1034), + [anon_sym_auto] = ACTIONS(1034), + [anon_sym_register] = ACTIONS(1034), + [anon_sym_inline] = ACTIONS(1034), + [anon_sym_const] = ACTIONS(1034), + [anon_sym_volatile] = ACTIONS(1034), + [anon_sym_restrict] = ACTIONS(1034), + [anon_sym__Atomic] = ACTIONS(1034), + [anon_sym_signed] = ACTIONS(1034), + [anon_sym_unsigned] = ACTIONS(1034), + [anon_sym_long] = ACTIONS(1034), + [anon_sym_short] = ACTIONS(1034), + [sym_primitive_type] = ACTIONS(1034), + [anon_sym_enum] = ACTIONS(1034), + [anon_sym_struct] = ACTIONS(1034), + [anon_sym_union] = ACTIONS(1034), + [anon_sym_if] = ACTIONS(1034), + [anon_sym_else] = ACTIONS(1034), + [anon_sym_switch] = ACTIONS(1034), + [anon_sym_case] = ACTIONS(1034), + [anon_sym_default] = ACTIONS(1034), + [anon_sym_while] = ACTIONS(1034), + [anon_sym_do] = ACTIONS(1034), + [anon_sym_for] = ACTIONS(1034), + [anon_sym_return] = ACTIONS(1034), + [anon_sym_break] = ACTIONS(1034), + [anon_sym_continue] = ACTIONS(1034), + [anon_sym_goto] = ACTIONS(1034), + [anon_sym_DASH_DASH] = ACTIONS(1036), + [anon_sym_PLUS_PLUS] = ACTIONS(1036), + [anon_sym_sizeof] = ACTIONS(1034), + [sym_number_literal] = ACTIONS(1036), + [anon_sym_L_SQUOTE] = ACTIONS(1036), + [anon_sym_u_SQUOTE] = ACTIONS(1036), + [anon_sym_U_SQUOTE] = ACTIONS(1036), + [anon_sym_u8_SQUOTE] = ACTIONS(1036), + [anon_sym_SQUOTE] = ACTIONS(1036), + [anon_sym_L_DQUOTE] = ACTIONS(1036), + [anon_sym_u_DQUOTE] = ACTIONS(1036), + [anon_sym_U_DQUOTE] = ACTIONS(1036), + [anon_sym_u8_DQUOTE] = ACTIONS(1036), + [anon_sym_DQUOTE] = ACTIONS(1036), + [sym_true] = ACTIONS(1034), + [sym_false] = ACTIONS(1034), + [sym_null] = ACTIONS(1034), [sym_comment] = ACTIONS(3), }, [193] = { - [sym_type_qualifier] = STATE(722), - [sym__type_specifier] = STATE(850), - [sym_sized_type_specifier] = STATE(850), - [sym_enum_specifier] = STATE(850), - [sym_struct_specifier] = STATE(850), - [sym_union_specifier] = STATE(850), - [sym__expression] = STATE(598), - [sym_comma_expression] = STATE(1190), - [sym_conditional_expression] = STATE(598), - [sym_assignment_expression] = STATE(598), - [sym_pointer_expression] = STATE(505), - [sym_unary_expression] = STATE(598), - [sym_binary_expression] = STATE(598), - [sym_update_expression] = STATE(598), - [sym_cast_expression] = STATE(598), - [sym_type_descriptor] = STATE(1129), - [sym_sizeof_expression] = STATE(598), - [sym_subscript_expression] = STATE(505), - [sym_call_expression] = STATE(505), - [sym_field_expression] = STATE(505), - [sym_compound_literal_expression] = STATE(598), - [sym_parenthesized_expression] = STATE(505), - [sym_char_literal] = STATE(598), - [sym_concatenated_string] = STATE(598), - [sym_string_literal] = STATE(376), - [sym_macro_type_specifier] = STATE(850), - [aux_sym_type_definition_repeat1] = STATE(722), - [aux_sym_sized_type_specifier_repeat1] = STATE(854), - [sym_identifier] = ACTIONS(1182), + [ts_builtin_sym_end] = ACTIONS(1012), + [sym_identifier] = ACTIONS(1010), + [aux_sym_preproc_include_token1] = ACTIONS(1010), + [aux_sym_preproc_def_token1] = ACTIONS(1010), + [aux_sym_preproc_if_token1] = ACTIONS(1010), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1010), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1010), + [sym_preproc_directive] = ACTIONS(1010), + [anon_sym_LPAREN2] = ACTIONS(1012), + [anon_sym_BANG] = ACTIONS(1012), + [anon_sym_TILDE] = ACTIONS(1012), + [anon_sym_DASH] = ACTIONS(1010), + [anon_sym_PLUS] = ACTIONS(1010), + [anon_sym_STAR] = ACTIONS(1012), + [anon_sym_AMP] = ACTIONS(1012), + [anon_sym_SEMI] = ACTIONS(1012), + [anon_sym_typedef] = ACTIONS(1010), + [anon_sym_extern] = ACTIONS(1010), + [anon_sym___attribute__] = ACTIONS(1010), + [anon_sym_LBRACE] = ACTIONS(1012), + [anon_sym_static] = ACTIONS(1010), + [anon_sym_auto] = ACTIONS(1010), + [anon_sym_register] = ACTIONS(1010), + [anon_sym_inline] = ACTIONS(1010), + [anon_sym_const] = ACTIONS(1010), + [anon_sym_volatile] = ACTIONS(1010), + [anon_sym_restrict] = ACTIONS(1010), + [anon_sym__Atomic] = ACTIONS(1010), + [anon_sym_signed] = ACTIONS(1010), + [anon_sym_unsigned] = ACTIONS(1010), + [anon_sym_long] = ACTIONS(1010), + [anon_sym_short] = ACTIONS(1010), + [sym_primitive_type] = ACTIONS(1010), + [anon_sym_enum] = ACTIONS(1010), + [anon_sym_struct] = ACTIONS(1010), + [anon_sym_union] = ACTIONS(1010), + [anon_sym_if] = ACTIONS(1010), + [anon_sym_else] = ACTIONS(1010), + [anon_sym_switch] = ACTIONS(1010), + [anon_sym_case] = ACTIONS(1010), + [anon_sym_default] = ACTIONS(1010), + [anon_sym_while] = ACTIONS(1010), + [anon_sym_do] = ACTIONS(1010), + [anon_sym_for] = ACTIONS(1010), + [anon_sym_return] = ACTIONS(1010), + [anon_sym_break] = ACTIONS(1010), + [anon_sym_continue] = ACTIONS(1010), + [anon_sym_goto] = ACTIONS(1010), + [anon_sym_DASH_DASH] = ACTIONS(1012), + [anon_sym_PLUS_PLUS] = ACTIONS(1012), + [anon_sym_sizeof] = ACTIONS(1010), + [sym_number_literal] = ACTIONS(1012), + [anon_sym_L_SQUOTE] = ACTIONS(1012), + [anon_sym_u_SQUOTE] = ACTIONS(1012), + [anon_sym_U_SQUOTE] = ACTIONS(1012), + [anon_sym_u8_SQUOTE] = ACTIONS(1012), + [anon_sym_SQUOTE] = ACTIONS(1012), + [anon_sym_L_DQUOTE] = ACTIONS(1012), + [anon_sym_u_DQUOTE] = ACTIONS(1012), + [anon_sym_U_DQUOTE] = ACTIONS(1012), + [anon_sym_u8_DQUOTE] = ACTIONS(1012), + [anon_sym_DQUOTE] = ACTIONS(1012), + [sym_true] = ACTIONS(1010), + [sym_false] = ACTIONS(1010), + [sym_null] = ACTIONS(1010), + [sym_comment] = ACTIONS(3), + }, + [194] = { + [sym_identifier] = ACTIONS(988), + [aux_sym_preproc_include_token1] = ACTIONS(988), + [aux_sym_preproc_def_token1] = ACTIONS(988), + [aux_sym_preproc_if_token1] = ACTIONS(988), + [aux_sym_preproc_ifdef_token1] = ACTIONS(988), + [aux_sym_preproc_ifdef_token2] = ACTIONS(988), + [sym_preproc_directive] = ACTIONS(988), + [anon_sym_LPAREN2] = ACTIONS(990), + [anon_sym_BANG] = ACTIONS(990), + [anon_sym_TILDE] = ACTIONS(990), + [anon_sym_DASH] = ACTIONS(988), + [anon_sym_PLUS] = ACTIONS(988), + [anon_sym_STAR] = ACTIONS(990), + [anon_sym_AMP] = ACTIONS(990), + [anon_sym_SEMI] = ACTIONS(990), + [anon_sym_typedef] = ACTIONS(988), + [anon_sym_extern] = ACTIONS(988), + [anon_sym___attribute__] = ACTIONS(988), + [anon_sym_LBRACE] = ACTIONS(990), + [anon_sym_RBRACE] = ACTIONS(990), + [anon_sym_static] = ACTIONS(988), + [anon_sym_auto] = ACTIONS(988), + [anon_sym_register] = ACTIONS(988), + [anon_sym_inline] = ACTIONS(988), + [anon_sym_const] = ACTIONS(988), + [anon_sym_volatile] = ACTIONS(988), + [anon_sym_restrict] = ACTIONS(988), + [anon_sym__Atomic] = ACTIONS(988), + [anon_sym_signed] = ACTIONS(988), + [anon_sym_unsigned] = ACTIONS(988), + [anon_sym_long] = ACTIONS(988), + [anon_sym_short] = ACTIONS(988), + [sym_primitive_type] = ACTIONS(988), + [anon_sym_enum] = ACTIONS(988), + [anon_sym_struct] = ACTIONS(988), + [anon_sym_union] = ACTIONS(988), + [anon_sym_if] = ACTIONS(988), + [anon_sym_else] = ACTIONS(988), + [anon_sym_switch] = ACTIONS(988), + [anon_sym_case] = ACTIONS(988), + [anon_sym_default] = ACTIONS(988), + [anon_sym_while] = ACTIONS(988), + [anon_sym_do] = ACTIONS(988), + [anon_sym_for] = ACTIONS(988), + [anon_sym_return] = ACTIONS(988), + [anon_sym_break] = ACTIONS(988), + [anon_sym_continue] = ACTIONS(988), + [anon_sym_goto] = ACTIONS(988), + [anon_sym_DASH_DASH] = ACTIONS(990), + [anon_sym_PLUS_PLUS] = ACTIONS(990), + [anon_sym_sizeof] = ACTIONS(988), + [sym_number_literal] = ACTIONS(990), + [anon_sym_L_SQUOTE] = ACTIONS(990), + [anon_sym_u_SQUOTE] = ACTIONS(990), + [anon_sym_U_SQUOTE] = ACTIONS(990), + [anon_sym_u8_SQUOTE] = ACTIONS(990), + [anon_sym_SQUOTE] = ACTIONS(990), + [anon_sym_L_DQUOTE] = ACTIONS(990), + [anon_sym_u_DQUOTE] = ACTIONS(990), + [anon_sym_U_DQUOTE] = ACTIONS(990), + [anon_sym_u8_DQUOTE] = ACTIONS(990), + [anon_sym_DQUOTE] = ACTIONS(990), + [sym_true] = ACTIONS(988), + [sym_false] = ACTIONS(988), + [sym_null] = ACTIONS(988), + [sym_comment] = ACTIONS(3), + }, + [195] = { + [sym_identifier] = ACTIONS(1082), + [aux_sym_preproc_include_token1] = ACTIONS(1082), + [aux_sym_preproc_def_token1] = ACTIONS(1082), + [aux_sym_preproc_if_token1] = ACTIONS(1082), + [aux_sym_preproc_if_token2] = ACTIONS(1082), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1082), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1082), + [sym_preproc_directive] = ACTIONS(1082), + [anon_sym_LPAREN2] = ACTIONS(1084), + [anon_sym_BANG] = ACTIONS(1084), + [anon_sym_TILDE] = ACTIONS(1084), + [anon_sym_DASH] = ACTIONS(1082), + [anon_sym_PLUS] = ACTIONS(1082), + [anon_sym_STAR] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1084), + [anon_sym_SEMI] = ACTIONS(1084), + [anon_sym_typedef] = ACTIONS(1082), + [anon_sym_extern] = ACTIONS(1082), + [anon_sym___attribute__] = ACTIONS(1082), + [anon_sym_LBRACE] = 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_volatile] = ACTIONS(1082), + [anon_sym_restrict] = ACTIONS(1082), + [anon_sym__Atomic] = ACTIONS(1082), + [anon_sym_signed] = 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_else] = 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_DASH_DASH] = ACTIONS(1084), + [anon_sym_PLUS_PLUS] = ACTIONS(1084), + [anon_sym_sizeof] = ACTIONS(1082), + [sym_number_literal] = ACTIONS(1084), + [anon_sym_L_SQUOTE] = ACTIONS(1084), + [anon_sym_u_SQUOTE] = ACTIONS(1084), + [anon_sym_U_SQUOTE] = ACTIONS(1084), + [anon_sym_u8_SQUOTE] = ACTIONS(1084), + [anon_sym_SQUOTE] = ACTIONS(1084), + [anon_sym_L_DQUOTE] = ACTIONS(1084), + [anon_sym_u_DQUOTE] = ACTIONS(1084), + [anon_sym_U_DQUOTE] = ACTIONS(1084), + [anon_sym_u8_DQUOTE] = ACTIONS(1084), + [anon_sym_DQUOTE] = ACTIONS(1084), + [sym_true] = ACTIONS(1082), + [sym_false] = ACTIONS(1082), + [sym_null] = ACTIONS(1082), + [sym_comment] = ACTIONS(3), + }, + [196] = { + [sym_identifier] = ACTIONS(960), + [aux_sym_preproc_include_token1] = ACTIONS(960), + [aux_sym_preproc_def_token1] = ACTIONS(960), + [aux_sym_preproc_if_token1] = ACTIONS(960), + [aux_sym_preproc_ifdef_token1] = ACTIONS(960), + [aux_sym_preproc_ifdef_token2] = ACTIONS(960), + [sym_preproc_directive] = ACTIONS(960), + [anon_sym_LPAREN2] = ACTIONS(962), + [anon_sym_BANG] = ACTIONS(962), + [anon_sym_TILDE] = ACTIONS(962), + [anon_sym_DASH] = ACTIONS(960), + [anon_sym_PLUS] = ACTIONS(960), + [anon_sym_STAR] = ACTIONS(962), + [anon_sym_AMP] = ACTIONS(962), + [anon_sym_SEMI] = ACTIONS(962), + [anon_sym_typedef] = ACTIONS(960), + [anon_sym_extern] = ACTIONS(960), + [anon_sym___attribute__] = ACTIONS(960), + [anon_sym_LBRACE] = ACTIONS(962), + [anon_sym_RBRACE] = ACTIONS(962), + [anon_sym_static] = ACTIONS(960), + [anon_sym_auto] = ACTIONS(960), + [anon_sym_register] = ACTIONS(960), + [anon_sym_inline] = ACTIONS(960), + [anon_sym_const] = ACTIONS(960), + [anon_sym_volatile] = ACTIONS(960), + [anon_sym_restrict] = ACTIONS(960), + [anon_sym__Atomic] = ACTIONS(960), + [anon_sym_signed] = ACTIONS(960), + [anon_sym_unsigned] = ACTIONS(960), + [anon_sym_long] = ACTIONS(960), + [anon_sym_short] = ACTIONS(960), + [sym_primitive_type] = ACTIONS(960), + [anon_sym_enum] = ACTIONS(960), + [anon_sym_struct] = ACTIONS(960), + [anon_sym_union] = ACTIONS(960), + [anon_sym_if] = ACTIONS(960), + [anon_sym_else] = ACTIONS(960), + [anon_sym_switch] = ACTIONS(960), + [anon_sym_case] = ACTIONS(960), + [anon_sym_default] = ACTIONS(960), + [anon_sym_while] = ACTIONS(960), + [anon_sym_do] = ACTIONS(960), + [anon_sym_for] = ACTIONS(960), + [anon_sym_return] = ACTIONS(960), + [anon_sym_break] = ACTIONS(960), + [anon_sym_continue] = ACTIONS(960), + [anon_sym_goto] = ACTIONS(960), + [anon_sym_DASH_DASH] = ACTIONS(962), + [anon_sym_PLUS_PLUS] = ACTIONS(962), + [anon_sym_sizeof] = ACTIONS(960), + [sym_number_literal] = ACTIONS(962), + [anon_sym_L_SQUOTE] = ACTIONS(962), + [anon_sym_u_SQUOTE] = ACTIONS(962), + [anon_sym_U_SQUOTE] = ACTIONS(962), + [anon_sym_u8_SQUOTE] = ACTIONS(962), + [anon_sym_SQUOTE] = ACTIONS(962), + [anon_sym_L_DQUOTE] = ACTIONS(962), + [anon_sym_u_DQUOTE] = ACTIONS(962), + [anon_sym_U_DQUOTE] = ACTIONS(962), + [anon_sym_u8_DQUOTE] = ACTIONS(962), + [anon_sym_DQUOTE] = ACTIONS(962), + [sym_true] = ACTIONS(960), + [sym_false] = ACTIONS(960), + [sym_null] = ACTIONS(960), + [sym_comment] = ACTIONS(3), + }, + [197] = { + [sym_identifier] = ACTIONS(1086), + [aux_sym_preproc_include_token1] = ACTIONS(1086), + [aux_sym_preproc_def_token1] = ACTIONS(1086), + [aux_sym_preproc_if_token1] = ACTIONS(1086), + [aux_sym_preproc_if_token2] = ACTIONS(1086), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1086), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1086), + [sym_preproc_directive] = ACTIONS(1086), + [anon_sym_LPAREN2] = ACTIONS(1088), + [anon_sym_BANG] = ACTIONS(1088), + [anon_sym_TILDE] = ACTIONS(1088), + [anon_sym_DASH] = ACTIONS(1086), + [anon_sym_PLUS] = ACTIONS(1086), + [anon_sym_STAR] = ACTIONS(1088), + [anon_sym_AMP] = ACTIONS(1088), + [anon_sym_SEMI] = ACTIONS(1088), + [anon_sym_typedef] = ACTIONS(1086), + [anon_sym_extern] = ACTIONS(1086), + [anon_sym___attribute__] = ACTIONS(1086), + [anon_sym_LBRACE] = 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_volatile] = ACTIONS(1086), + [anon_sym_restrict] = ACTIONS(1086), + [anon_sym__Atomic] = ACTIONS(1086), + [anon_sym_signed] = 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_else] = 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_DASH_DASH] = ACTIONS(1088), + [anon_sym_PLUS_PLUS] = ACTIONS(1088), + [anon_sym_sizeof] = ACTIONS(1086), + [sym_number_literal] = ACTIONS(1088), + [anon_sym_L_SQUOTE] = ACTIONS(1088), + [anon_sym_u_SQUOTE] = ACTIONS(1088), + [anon_sym_U_SQUOTE] = ACTIONS(1088), + [anon_sym_u8_SQUOTE] = ACTIONS(1088), + [anon_sym_SQUOTE] = ACTIONS(1088), + [anon_sym_L_DQUOTE] = ACTIONS(1088), + [anon_sym_u_DQUOTE] = ACTIONS(1088), + [anon_sym_U_DQUOTE] = ACTIONS(1088), + [anon_sym_u8_DQUOTE] = ACTIONS(1088), + [anon_sym_DQUOTE] = ACTIONS(1088), + [sym_true] = ACTIONS(1086), + [sym_false] = ACTIONS(1086), + [sym_null] = ACTIONS(1086), + [sym_comment] = ACTIONS(3), + }, + [198] = { + [sym_type_qualifier] = STATE(710), + [sym__type_specifier] = STATE(839), + [sym_sized_type_specifier] = STATE(839), + [sym_enum_specifier] = STATE(839), + [sym_struct_specifier] = STATE(839), + [sym_union_specifier] = STATE(839), + [sym__expression] = STATE(574), + [sym_comma_expression] = STATE(1200), + [sym_conditional_expression] = STATE(574), + [sym_assignment_expression] = STATE(574), + [sym_pointer_expression] = STATE(532), + [sym_unary_expression] = STATE(574), + [sym_binary_expression] = STATE(574), + [sym_update_expression] = STATE(574), + [sym_cast_expression] = STATE(574), + [sym_type_descriptor] = STATE(1199), + [sym_sizeof_expression] = STATE(574), + [sym_subscript_expression] = STATE(532), + [sym_call_expression] = STATE(532), + [sym_field_expression] = STATE(532), + [sym_compound_literal_expression] = STATE(574), + [sym_parenthesized_expression] = STATE(532), + [sym_char_literal] = STATE(574), + [sym_concatenated_string] = STATE(574), + [sym_string_literal] = STATE(379), + [sym_macro_type_specifier] = STATE(839), + [aux_sym_type_definition_repeat1] = STATE(710), + [aux_sym_sized_type_specifier_repeat1] = STATE(846), + [sym_identifier] = ACTIONS(1174), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -22881,18 +23237,18 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_volatile] = ACTIONS(39), [anon_sym_restrict] = ACTIONS(39), [anon_sym__Atomic] = ACTIONS(39), - [anon_sym_signed] = ACTIONS(1184), - [anon_sym_unsigned] = ACTIONS(1184), - [anon_sym_long] = ACTIONS(1184), - [anon_sym_short] = ACTIONS(1184), - [sym_primitive_type] = ACTIONS(1186), + [anon_sym_signed] = ACTIONS(1176), + [anon_sym_unsigned] = ACTIONS(1176), + [anon_sym_long] = ACTIONS(1176), + [anon_sym_short] = ACTIONS(1176), + [sym_primitive_type] = ACTIONS(1178), [anon_sym_enum] = ACTIONS(45), [anon_sym_struct] = ACTIONS(47), [anon_sym_union] = ACTIONS(49), [anon_sym_DASH_DASH] = ACTIONS(73), [anon_sym_PLUS_PLUS] = ACTIONS(73), [anon_sym_sizeof] = ACTIONS(75), - [sym_number_literal] = ACTIONS(1188), + [sym_number_literal] = ACTIONS(1180), [anon_sym_L_SQUOTE] = ACTIONS(79), [anon_sym_u_SQUOTE] = ACTIONS(79), [anon_sym_U_SQUOTE] = ACTIONS(79), @@ -22903,221 +23259,221 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_U_DQUOTE] = ACTIONS(81), [anon_sym_u8_DQUOTE] = ACTIONS(81), [anon_sym_DQUOTE] = ACTIONS(81), - [sym_true] = ACTIONS(1190), - [sym_false] = ACTIONS(1190), - [sym_null] = ACTIONS(1190), + [sym_true] = ACTIONS(1182), + [sym_false] = ACTIONS(1182), + [sym_null] = ACTIONS(1182), [sym_comment] = ACTIONS(3), }, - [194] = { - [sym_identifier] = ACTIONS(1038), - [aux_sym_preproc_include_token1] = ACTIONS(1038), - [aux_sym_preproc_def_token1] = ACTIONS(1038), - [aux_sym_preproc_if_token1] = ACTIONS(1038), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1038), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1038), - [sym_preproc_directive] = ACTIONS(1038), - [anon_sym_LPAREN2] = ACTIONS(1040), - [anon_sym_BANG] = ACTIONS(1040), - [anon_sym_TILDE] = ACTIONS(1040), - [anon_sym_DASH] = ACTIONS(1038), - [anon_sym_PLUS] = ACTIONS(1038), - [anon_sym_STAR] = ACTIONS(1040), - [anon_sym_AMP] = ACTIONS(1040), - [anon_sym_SEMI] = ACTIONS(1040), - [anon_sym_typedef] = ACTIONS(1038), - [anon_sym_extern] = ACTIONS(1038), - [anon_sym___attribute__] = ACTIONS(1038), - [anon_sym_LBRACE] = ACTIONS(1040), - [anon_sym_RBRACE] = ACTIONS(1040), - [anon_sym_static] = ACTIONS(1038), - [anon_sym_auto] = ACTIONS(1038), - [anon_sym_register] = ACTIONS(1038), - [anon_sym_inline] = ACTIONS(1038), - [anon_sym_const] = ACTIONS(1038), - [anon_sym_volatile] = ACTIONS(1038), - [anon_sym_restrict] = ACTIONS(1038), - [anon_sym__Atomic] = ACTIONS(1038), - [anon_sym_signed] = ACTIONS(1038), - [anon_sym_unsigned] = ACTIONS(1038), - [anon_sym_long] = ACTIONS(1038), - [anon_sym_short] = ACTIONS(1038), - [sym_primitive_type] = ACTIONS(1038), - [anon_sym_enum] = ACTIONS(1038), - [anon_sym_struct] = ACTIONS(1038), - [anon_sym_union] = ACTIONS(1038), - [anon_sym_if] = ACTIONS(1038), - [anon_sym_else] = ACTIONS(1038), - [anon_sym_switch] = ACTIONS(1038), - [anon_sym_case] = ACTIONS(1038), - [anon_sym_default] = ACTIONS(1038), - [anon_sym_while] = ACTIONS(1038), - [anon_sym_do] = ACTIONS(1038), - [anon_sym_for] = ACTIONS(1038), - [anon_sym_return] = ACTIONS(1038), - [anon_sym_break] = ACTIONS(1038), - [anon_sym_continue] = ACTIONS(1038), - [anon_sym_goto] = ACTIONS(1038), - [anon_sym_DASH_DASH] = ACTIONS(1040), - [anon_sym_PLUS_PLUS] = ACTIONS(1040), - [anon_sym_sizeof] = ACTIONS(1038), - [sym_number_literal] = ACTIONS(1040), - [anon_sym_L_SQUOTE] = ACTIONS(1040), - [anon_sym_u_SQUOTE] = ACTIONS(1040), - [anon_sym_U_SQUOTE] = ACTIONS(1040), - [anon_sym_u8_SQUOTE] = ACTIONS(1040), - [anon_sym_SQUOTE] = ACTIONS(1040), - [anon_sym_L_DQUOTE] = ACTIONS(1040), - [anon_sym_u_DQUOTE] = ACTIONS(1040), - [anon_sym_U_DQUOTE] = ACTIONS(1040), - [anon_sym_u8_DQUOTE] = ACTIONS(1040), - [anon_sym_DQUOTE] = ACTIONS(1040), - [sym_true] = ACTIONS(1038), - [sym_false] = ACTIONS(1038), - [sym_null] = ACTIONS(1038), + [199] = { + [sym_identifier] = ACTIONS(1054), + [aux_sym_preproc_include_token1] = ACTIONS(1054), + [aux_sym_preproc_def_token1] = ACTIONS(1054), + [aux_sym_preproc_if_token1] = ACTIONS(1054), + [aux_sym_preproc_if_token2] = ACTIONS(1054), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1054), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1054), + [sym_preproc_directive] = ACTIONS(1054), + [anon_sym_LPAREN2] = ACTIONS(1056), + [anon_sym_BANG] = ACTIONS(1056), + [anon_sym_TILDE] = ACTIONS(1056), + [anon_sym_DASH] = ACTIONS(1054), + [anon_sym_PLUS] = ACTIONS(1054), + [anon_sym_STAR] = ACTIONS(1056), + [anon_sym_AMP] = ACTIONS(1056), + [anon_sym_SEMI] = ACTIONS(1056), + [anon_sym_typedef] = ACTIONS(1054), + [anon_sym_extern] = ACTIONS(1054), + [anon_sym___attribute__] = ACTIONS(1054), + [anon_sym_LBRACE] = ACTIONS(1056), + [anon_sym_static] = ACTIONS(1054), + [anon_sym_auto] = ACTIONS(1054), + [anon_sym_register] = ACTIONS(1054), + [anon_sym_inline] = ACTIONS(1054), + [anon_sym_const] = ACTIONS(1054), + [anon_sym_volatile] = ACTIONS(1054), + [anon_sym_restrict] = ACTIONS(1054), + [anon_sym__Atomic] = ACTIONS(1054), + [anon_sym_signed] = ACTIONS(1054), + [anon_sym_unsigned] = ACTIONS(1054), + [anon_sym_long] = ACTIONS(1054), + [anon_sym_short] = ACTIONS(1054), + [sym_primitive_type] = ACTIONS(1054), + [anon_sym_enum] = ACTIONS(1054), + [anon_sym_struct] = ACTIONS(1054), + [anon_sym_union] = ACTIONS(1054), + [anon_sym_if] = ACTIONS(1054), + [anon_sym_else] = ACTIONS(1054), + [anon_sym_switch] = ACTIONS(1054), + [anon_sym_case] = ACTIONS(1054), + [anon_sym_default] = ACTIONS(1054), + [anon_sym_while] = ACTIONS(1054), + [anon_sym_do] = ACTIONS(1054), + [anon_sym_for] = ACTIONS(1054), + [anon_sym_return] = ACTIONS(1054), + [anon_sym_break] = ACTIONS(1054), + [anon_sym_continue] = ACTIONS(1054), + [anon_sym_goto] = ACTIONS(1054), + [anon_sym_DASH_DASH] = ACTIONS(1056), + [anon_sym_PLUS_PLUS] = ACTIONS(1056), + [anon_sym_sizeof] = ACTIONS(1054), + [sym_number_literal] = ACTIONS(1056), + [anon_sym_L_SQUOTE] = ACTIONS(1056), + [anon_sym_u_SQUOTE] = ACTIONS(1056), + [anon_sym_U_SQUOTE] = ACTIONS(1056), + [anon_sym_u8_SQUOTE] = ACTIONS(1056), + [anon_sym_SQUOTE] = ACTIONS(1056), + [anon_sym_L_DQUOTE] = ACTIONS(1056), + [anon_sym_u_DQUOTE] = ACTIONS(1056), + [anon_sym_U_DQUOTE] = ACTIONS(1056), + [anon_sym_u8_DQUOTE] = ACTIONS(1056), + [anon_sym_DQUOTE] = ACTIONS(1056), + [sym_true] = ACTIONS(1054), + [sym_false] = ACTIONS(1054), + [sym_null] = ACTIONS(1054), [sym_comment] = ACTIONS(3), }, - [195] = { - [sym_identifier] = ACTIONS(1030), - [aux_sym_preproc_include_token1] = ACTIONS(1030), - [aux_sym_preproc_def_token1] = ACTIONS(1030), - [aux_sym_preproc_if_token1] = ACTIONS(1030), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1030), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1030), - [sym_preproc_directive] = ACTIONS(1030), - [anon_sym_LPAREN2] = ACTIONS(1032), - [anon_sym_BANG] = ACTIONS(1032), - [anon_sym_TILDE] = ACTIONS(1032), - [anon_sym_DASH] = ACTIONS(1030), - [anon_sym_PLUS] = ACTIONS(1030), - [anon_sym_STAR] = ACTIONS(1032), - [anon_sym_AMP] = ACTIONS(1032), - [anon_sym_SEMI] = ACTIONS(1032), - [anon_sym_typedef] = ACTIONS(1030), - [anon_sym_extern] = ACTIONS(1030), - [anon_sym___attribute__] = ACTIONS(1030), - [anon_sym_LBRACE] = ACTIONS(1032), - [anon_sym_RBRACE] = ACTIONS(1032), - [anon_sym_static] = ACTIONS(1030), - [anon_sym_auto] = ACTIONS(1030), - [anon_sym_register] = ACTIONS(1030), - [anon_sym_inline] = ACTIONS(1030), - [anon_sym_const] = ACTIONS(1030), - [anon_sym_volatile] = ACTIONS(1030), - [anon_sym_restrict] = ACTIONS(1030), - [anon_sym__Atomic] = ACTIONS(1030), - [anon_sym_signed] = ACTIONS(1030), - [anon_sym_unsigned] = ACTIONS(1030), - [anon_sym_long] = ACTIONS(1030), - [anon_sym_short] = ACTIONS(1030), - [sym_primitive_type] = ACTIONS(1030), - [anon_sym_enum] = ACTIONS(1030), - [anon_sym_struct] = ACTIONS(1030), - [anon_sym_union] = ACTIONS(1030), - [anon_sym_if] = ACTIONS(1030), - [anon_sym_else] = ACTIONS(1030), - [anon_sym_switch] = ACTIONS(1030), - [anon_sym_case] = ACTIONS(1030), - [anon_sym_default] = ACTIONS(1030), - [anon_sym_while] = ACTIONS(1030), - [anon_sym_do] = ACTIONS(1030), - [anon_sym_for] = ACTIONS(1030), - [anon_sym_return] = ACTIONS(1030), - [anon_sym_break] = ACTIONS(1030), - [anon_sym_continue] = ACTIONS(1030), - [anon_sym_goto] = ACTIONS(1030), - [anon_sym_DASH_DASH] = ACTIONS(1032), - [anon_sym_PLUS_PLUS] = ACTIONS(1032), - [anon_sym_sizeof] = ACTIONS(1030), - [sym_number_literal] = ACTIONS(1032), - [anon_sym_L_SQUOTE] = ACTIONS(1032), - [anon_sym_u_SQUOTE] = ACTIONS(1032), - [anon_sym_U_SQUOTE] = ACTIONS(1032), - [anon_sym_u8_SQUOTE] = ACTIONS(1032), - [anon_sym_SQUOTE] = ACTIONS(1032), - [anon_sym_L_DQUOTE] = ACTIONS(1032), - [anon_sym_u_DQUOTE] = ACTIONS(1032), - [anon_sym_U_DQUOTE] = ACTIONS(1032), - [anon_sym_u8_DQUOTE] = ACTIONS(1032), - [anon_sym_DQUOTE] = ACTIONS(1032), - [sym_true] = ACTIONS(1030), - [sym_false] = ACTIONS(1030), - [sym_null] = ACTIONS(1030), + [200] = { + [ts_builtin_sym_end] = ACTIONS(990), + [sym_identifier] = ACTIONS(988), + [aux_sym_preproc_include_token1] = ACTIONS(988), + [aux_sym_preproc_def_token1] = ACTIONS(988), + [aux_sym_preproc_if_token1] = ACTIONS(988), + [aux_sym_preproc_ifdef_token1] = ACTIONS(988), + [aux_sym_preproc_ifdef_token2] = ACTIONS(988), + [sym_preproc_directive] = ACTIONS(988), + [anon_sym_LPAREN2] = ACTIONS(990), + [anon_sym_BANG] = ACTIONS(990), + [anon_sym_TILDE] = ACTIONS(990), + [anon_sym_DASH] = ACTIONS(988), + [anon_sym_PLUS] = ACTIONS(988), + [anon_sym_STAR] = ACTIONS(990), + [anon_sym_AMP] = ACTIONS(990), + [anon_sym_SEMI] = ACTIONS(990), + [anon_sym_typedef] = ACTIONS(988), + [anon_sym_extern] = ACTIONS(988), + [anon_sym___attribute__] = ACTIONS(988), + [anon_sym_LBRACE] = ACTIONS(990), + [anon_sym_static] = ACTIONS(988), + [anon_sym_auto] = ACTIONS(988), + [anon_sym_register] = ACTIONS(988), + [anon_sym_inline] = ACTIONS(988), + [anon_sym_const] = ACTIONS(988), + [anon_sym_volatile] = ACTIONS(988), + [anon_sym_restrict] = ACTIONS(988), + [anon_sym__Atomic] = ACTIONS(988), + [anon_sym_signed] = ACTIONS(988), + [anon_sym_unsigned] = ACTIONS(988), + [anon_sym_long] = ACTIONS(988), + [anon_sym_short] = ACTIONS(988), + [sym_primitive_type] = ACTIONS(988), + [anon_sym_enum] = ACTIONS(988), + [anon_sym_struct] = ACTIONS(988), + [anon_sym_union] = ACTIONS(988), + [anon_sym_if] = ACTIONS(988), + [anon_sym_else] = ACTIONS(988), + [anon_sym_switch] = ACTIONS(988), + [anon_sym_case] = ACTIONS(988), + [anon_sym_default] = ACTIONS(988), + [anon_sym_while] = ACTIONS(988), + [anon_sym_do] = ACTIONS(988), + [anon_sym_for] = ACTIONS(988), + [anon_sym_return] = ACTIONS(988), + [anon_sym_break] = ACTIONS(988), + [anon_sym_continue] = ACTIONS(988), + [anon_sym_goto] = ACTIONS(988), + [anon_sym_DASH_DASH] = ACTIONS(990), + [anon_sym_PLUS_PLUS] = ACTIONS(990), + [anon_sym_sizeof] = ACTIONS(988), + [sym_number_literal] = ACTIONS(990), + [anon_sym_L_SQUOTE] = ACTIONS(990), + [anon_sym_u_SQUOTE] = ACTIONS(990), + [anon_sym_U_SQUOTE] = ACTIONS(990), + [anon_sym_u8_SQUOTE] = ACTIONS(990), + [anon_sym_SQUOTE] = ACTIONS(990), + [anon_sym_L_DQUOTE] = ACTIONS(990), + [anon_sym_u_DQUOTE] = ACTIONS(990), + [anon_sym_U_DQUOTE] = ACTIONS(990), + [anon_sym_u8_DQUOTE] = ACTIONS(990), + [anon_sym_DQUOTE] = ACTIONS(990), + [sym_true] = ACTIONS(988), + [sym_false] = ACTIONS(988), + [sym_null] = ACTIONS(988), [sym_comment] = ACTIONS(3), }, - [196] = { - [sym_identifier] = ACTIONS(1050), - [aux_sym_preproc_include_token1] = ACTIONS(1050), - [aux_sym_preproc_def_token1] = ACTIONS(1050), - [aux_sym_preproc_if_token1] = ACTIONS(1050), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1050), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1050), - [sym_preproc_directive] = ACTIONS(1050), - [anon_sym_LPAREN2] = ACTIONS(1052), - [anon_sym_BANG] = ACTIONS(1052), - [anon_sym_TILDE] = ACTIONS(1052), - [anon_sym_DASH] = ACTIONS(1050), - [anon_sym_PLUS] = ACTIONS(1050), - [anon_sym_STAR] = ACTIONS(1052), - [anon_sym_AMP] = ACTIONS(1052), - [anon_sym_SEMI] = ACTIONS(1052), - [anon_sym_typedef] = ACTIONS(1050), - [anon_sym_extern] = ACTIONS(1050), - [anon_sym___attribute__] = ACTIONS(1050), - [anon_sym_LBRACE] = ACTIONS(1052), - [anon_sym_RBRACE] = ACTIONS(1052), - [anon_sym_static] = ACTIONS(1050), - [anon_sym_auto] = ACTIONS(1050), - [anon_sym_register] = ACTIONS(1050), - [anon_sym_inline] = ACTIONS(1050), - [anon_sym_const] = ACTIONS(1050), - [anon_sym_volatile] = ACTIONS(1050), - [anon_sym_restrict] = ACTIONS(1050), - [anon_sym__Atomic] = ACTIONS(1050), - [anon_sym_signed] = ACTIONS(1050), - [anon_sym_unsigned] = ACTIONS(1050), - [anon_sym_long] = ACTIONS(1050), - [anon_sym_short] = ACTIONS(1050), - [sym_primitive_type] = ACTIONS(1050), - [anon_sym_enum] = ACTIONS(1050), - [anon_sym_struct] = ACTIONS(1050), - [anon_sym_union] = ACTIONS(1050), - [anon_sym_if] = ACTIONS(1050), - [anon_sym_else] = ACTIONS(1050), - [anon_sym_switch] = ACTIONS(1050), - [anon_sym_case] = ACTIONS(1050), - [anon_sym_default] = ACTIONS(1050), - [anon_sym_while] = ACTIONS(1050), - [anon_sym_do] = ACTIONS(1050), - [anon_sym_for] = ACTIONS(1050), - [anon_sym_return] = ACTIONS(1050), - [anon_sym_break] = ACTIONS(1050), - [anon_sym_continue] = ACTIONS(1050), - [anon_sym_goto] = ACTIONS(1050), - [anon_sym_DASH_DASH] = ACTIONS(1052), - [anon_sym_PLUS_PLUS] = ACTIONS(1052), - [anon_sym_sizeof] = ACTIONS(1050), - [sym_number_literal] = ACTIONS(1052), - [anon_sym_L_SQUOTE] = ACTIONS(1052), - [anon_sym_u_SQUOTE] = ACTIONS(1052), - [anon_sym_U_SQUOTE] = ACTIONS(1052), - [anon_sym_u8_SQUOTE] = ACTIONS(1052), - [anon_sym_SQUOTE] = ACTIONS(1052), - [anon_sym_L_DQUOTE] = ACTIONS(1052), - [anon_sym_u_DQUOTE] = ACTIONS(1052), - [anon_sym_U_DQUOTE] = ACTIONS(1052), - [anon_sym_u8_DQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE] = ACTIONS(1052), - [sym_true] = ACTIONS(1050), - [sym_false] = ACTIONS(1050), - [sym_null] = ACTIONS(1050), + [201] = { + [ts_builtin_sym_end] = ACTIONS(962), + [sym_identifier] = ACTIONS(960), + [aux_sym_preproc_include_token1] = ACTIONS(960), + [aux_sym_preproc_def_token1] = ACTIONS(960), + [aux_sym_preproc_if_token1] = ACTIONS(960), + [aux_sym_preproc_ifdef_token1] = ACTIONS(960), + [aux_sym_preproc_ifdef_token2] = ACTIONS(960), + [sym_preproc_directive] = ACTIONS(960), + [anon_sym_LPAREN2] = ACTIONS(962), + [anon_sym_BANG] = ACTIONS(962), + [anon_sym_TILDE] = ACTIONS(962), + [anon_sym_DASH] = ACTIONS(960), + [anon_sym_PLUS] = ACTIONS(960), + [anon_sym_STAR] = ACTIONS(962), + [anon_sym_AMP] = ACTIONS(962), + [anon_sym_SEMI] = ACTIONS(962), + [anon_sym_typedef] = ACTIONS(960), + [anon_sym_extern] = ACTIONS(960), + [anon_sym___attribute__] = ACTIONS(960), + [anon_sym_LBRACE] = ACTIONS(962), + [anon_sym_static] = ACTIONS(960), + [anon_sym_auto] = ACTIONS(960), + [anon_sym_register] = ACTIONS(960), + [anon_sym_inline] = ACTIONS(960), + [anon_sym_const] = ACTIONS(960), + [anon_sym_volatile] = ACTIONS(960), + [anon_sym_restrict] = ACTIONS(960), + [anon_sym__Atomic] = ACTIONS(960), + [anon_sym_signed] = ACTIONS(960), + [anon_sym_unsigned] = ACTIONS(960), + [anon_sym_long] = ACTIONS(960), + [anon_sym_short] = ACTIONS(960), + [sym_primitive_type] = ACTIONS(960), + [anon_sym_enum] = ACTIONS(960), + [anon_sym_struct] = ACTIONS(960), + [anon_sym_union] = ACTIONS(960), + [anon_sym_if] = ACTIONS(960), + [anon_sym_else] = ACTIONS(960), + [anon_sym_switch] = ACTIONS(960), + [anon_sym_case] = ACTIONS(960), + [anon_sym_default] = ACTIONS(960), + [anon_sym_while] = ACTIONS(960), + [anon_sym_do] = ACTIONS(960), + [anon_sym_for] = ACTIONS(960), + [anon_sym_return] = ACTIONS(960), + [anon_sym_break] = ACTIONS(960), + [anon_sym_continue] = ACTIONS(960), + [anon_sym_goto] = ACTIONS(960), + [anon_sym_DASH_DASH] = ACTIONS(962), + [anon_sym_PLUS_PLUS] = ACTIONS(962), + [anon_sym_sizeof] = ACTIONS(960), + [sym_number_literal] = ACTIONS(962), + [anon_sym_L_SQUOTE] = ACTIONS(962), + [anon_sym_u_SQUOTE] = ACTIONS(962), + [anon_sym_U_SQUOTE] = ACTIONS(962), + [anon_sym_u8_SQUOTE] = ACTIONS(962), + [anon_sym_SQUOTE] = ACTIONS(962), + [anon_sym_L_DQUOTE] = ACTIONS(962), + [anon_sym_u_DQUOTE] = ACTIONS(962), + [anon_sym_U_DQUOTE] = ACTIONS(962), + [anon_sym_u8_DQUOTE] = ACTIONS(962), + [anon_sym_DQUOTE] = ACTIONS(962), + [sym_true] = ACTIONS(960), + [sym_false] = ACTIONS(960), + [sym_null] = ACTIONS(960), [sym_comment] = ACTIONS(3), }, - [197] = { - [ts_builtin_sym_end] = ACTIONS(1052), + [202] = { [sym_identifier] = ACTIONS(1050), [aux_sym_preproc_include_token1] = ACTIONS(1050), [aux_sym_preproc_def_token1] = ACTIONS(1050), [aux_sym_preproc_if_token1] = ACTIONS(1050), + [aux_sym_preproc_if_token2] = ACTIONS(1050), [aux_sym_preproc_ifdef_token1] = ACTIONS(1050), [aux_sym_preproc_ifdef_token2] = ACTIONS(1050), [sym_preproc_directive] = ACTIONS(1050), @@ -23180,756 +23536,279 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1050), [sym_comment] = ACTIONS(3), }, - [198] = { - [sym_identifier] = ACTIONS(968), - [aux_sym_preproc_include_token1] = ACTIONS(968), - [aux_sym_preproc_def_token1] = ACTIONS(968), - [aux_sym_preproc_if_token1] = ACTIONS(968), - [aux_sym_preproc_ifdef_token1] = ACTIONS(968), - [aux_sym_preproc_ifdef_token2] = ACTIONS(968), - [sym_preproc_directive] = ACTIONS(968), - [anon_sym_LPAREN2] = ACTIONS(970), - [anon_sym_BANG] = ACTIONS(970), - [anon_sym_TILDE] = ACTIONS(970), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_STAR] = ACTIONS(970), - [anon_sym_AMP] = ACTIONS(970), - [anon_sym_SEMI] = ACTIONS(970), - [anon_sym_typedef] = ACTIONS(968), - [anon_sym_extern] = ACTIONS(968), - [anon_sym___attribute__] = ACTIONS(968), - [anon_sym_LBRACE] = ACTIONS(970), - [anon_sym_RBRACE] = ACTIONS(970), - [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_volatile] = ACTIONS(968), - [anon_sym_restrict] = ACTIONS(968), - [anon_sym__Atomic] = ACTIONS(968), - [anon_sym_signed] = 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_DASH_DASH] = ACTIONS(970), - [anon_sym_PLUS_PLUS] = ACTIONS(970), - [anon_sym_sizeof] = ACTIONS(968), - [sym_number_literal] = ACTIONS(970), - [anon_sym_L_SQUOTE] = ACTIONS(970), - [anon_sym_u_SQUOTE] = ACTIONS(970), - [anon_sym_U_SQUOTE] = ACTIONS(970), - [anon_sym_u8_SQUOTE] = ACTIONS(970), - [anon_sym_SQUOTE] = ACTIONS(970), - [anon_sym_L_DQUOTE] = ACTIONS(970), - [anon_sym_u_DQUOTE] = ACTIONS(970), - [anon_sym_U_DQUOTE] = ACTIONS(970), - [anon_sym_u8_DQUOTE] = ACTIONS(970), - [anon_sym_DQUOTE] = ACTIONS(970), - [sym_true] = ACTIONS(968), - [sym_false] = ACTIONS(968), - [sym_null] = ACTIONS(968), - [sym_comment] = ACTIONS(3), - }, - [199] = { - [sym_identifier] = ACTIONS(976), - [aux_sym_preproc_include_token1] = ACTIONS(976), - [aux_sym_preproc_def_token1] = ACTIONS(976), - [aux_sym_preproc_if_token1] = ACTIONS(976), - [aux_sym_preproc_ifdef_token1] = ACTIONS(976), - [aux_sym_preproc_ifdef_token2] = ACTIONS(976), - [sym_preproc_directive] = ACTIONS(976), - [anon_sym_LPAREN2] = ACTIONS(978), - [anon_sym_BANG] = ACTIONS(978), - [anon_sym_TILDE] = ACTIONS(978), - [anon_sym_DASH] = ACTIONS(976), - [anon_sym_PLUS] = ACTIONS(976), - [anon_sym_STAR] = ACTIONS(978), - [anon_sym_AMP] = ACTIONS(978), - [anon_sym_SEMI] = ACTIONS(978), - [anon_sym_typedef] = ACTIONS(976), - [anon_sym_extern] = ACTIONS(976), - [anon_sym___attribute__] = ACTIONS(976), - [anon_sym_LBRACE] = ACTIONS(978), - [anon_sym_RBRACE] = ACTIONS(978), - [anon_sym_static] = ACTIONS(976), - [anon_sym_auto] = ACTIONS(976), - [anon_sym_register] = ACTIONS(976), - [anon_sym_inline] = ACTIONS(976), - [anon_sym_const] = ACTIONS(976), - [anon_sym_volatile] = ACTIONS(976), - [anon_sym_restrict] = ACTIONS(976), - [anon_sym__Atomic] = ACTIONS(976), - [anon_sym_signed] = ACTIONS(976), - [anon_sym_unsigned] = ACTIONS(976), - [anon_sym_long] = ACTIONS(976), - [anon_sym_short] = ACTIONS(976), - [sym_primitive_type] = ACTIONS(976), - [anon_sym_enum] = ACTIONS(976), - [anon_sym_struct] = ACTIONS(976), - [anon_sym_union] = ACTIONS(976), - [anon_sym_if] = ACTIONS(976), - [anon_sym_else] = ACTIONS(1192), - [anon_sym_switch] = ACTIONS(976), - [anon_sym_case] = ACTIONS(976), - [anon_sym_default] = ACTIONS(976), - [anon_sym_while] = ACTIONS(976), - [anon_sym_do] = ACTIONS(976), - [anon_sym_for] = ACTIONS(976), - [anon_sym_return] = ACTIONS(976), - [anon_sym_break] = ACTIONS(976), - [anon_sym_continue] = ACTIONS(976), - [anon_sym_goto] = ACTIONS(976), - [anon_sym_DASH_DASH] = ACTIONS(978), - [anon_sym_PLUS_PLUS] = ACTIONS(978), - [anon_sym_sizeof] = ACTIONS(976), - [sym_number_literal] = ACTIONS(978), - [anon_sym_L_SQUOTE] = ACTIONS(978), - [anon_sym_u_SQUOTE] = ACTIONS(978), - [anon_sym_U_SQUOTE] = ACTIONS(978), - [anon_sym_u8_SQUOTE] = ACTIONS(978), - [anon_sym_SQUOTE] = ACTIONS(978), - [anon_sym_L_DQUOTE] = ACTIONS(978), - [anon_sym_u_DQUOTE] = ACTIONS(978), - [anon_sym_U_DQUOTE] = ACTIONS(978), - [anon_sym_u8_DQUOTE] = ACTIONS(978), - [anon_sym_DQUOTE] = ACTIONS(978), - [sym_true] = ACTIONS(976), - [sym_false] = ACTIONS(976), - [sym_null] = ACTIONS(976), - [sym_comment] = ACTIONS(3), - }, - [200] = { - [ts_builtin_sym_end] = ACTIONS(978), - [sym_identifier] = ACTIONS(976), - [aux_sym_preproc_include_token1] = ACTIONS(976), - [aux_sym_preproc_def_token1] = ACTIONS(976), - [aux_sym_preproc_if_token1] = ACTIONS(976), - [aux_sym_preproc_ifdef_token1] = ACTIONS(976), - [aux_sym_preproc_ifdef_token2] = ACTIONS(976), - [sym_preproc_directive] = ACTIONS(976), - [anon_sym_LPAREN2] = ACTIONS(978), - [anon_sym_BANG] = ACTIONS(978), - [anon_sym_TILDE] = ACTIONS(978), - [anon_sym_DASH] = ACTIONS(976), - [anon_sym_PLUS] = ACTIONS(976), - [anon_sym_STAR] = ACTIONS(978), - [anon_sym_AMP] = ACTIONS(978), - [anon_sym_SEMI] = ACTIONS(978), - [anon_sym_typedef] = ACTIONS(976), - [anon_sym_extern] = ACTIONS(976), - [anon_sym___attribute__] = ACTIONS(976), - [anon_sym_LBRACE] = ACTIONS(978), - [anon_sym_static] = ACTIONS(976), - [anon_sym_auto] = ACTIONS(976), - [anon_sym_register] = ACTIONS(976), - [anon_sym_inline] = ACTIONS(976), - [anon_sym_const] = ACTIONS(976), - [anon_sym_volatile] = ACTIONS(976), - [anon_sym_restrict] = ACTIONS(976), - [anon_sym__Atomic] = ACTIONS(976), - [anon_sym_signed] = ACTIONS(976), - [anon_sym_unsigned] = ACTIONS(976), - [anon_sym_long] = ACTIONS(976), - [anon_sym_short] = ACTIONS(976), - [sym_primitive_type] = ACTIONS(976), - [anon_sym_enum] = ACTIONS(976), - [anon_sym_struct] = ACTIONS(976), - [anon_sym_union] = ACTIONS(976), - [anon_sym_if] = ACTIONS(976), - [anon_sym_else] = ACTIONS(1194), - [anon_sym_switch] = ACTIONS(976), - [anon_sym_case] = ACTIONS(976), - [anon_sym_default] = ACTIONS(976), - [anon_sym_while] = ACTIONS(976), - [anon_sym_do] = ACTIONS(976), - [anon_sym_for] = ACTIONS(976), - [anon_sym_return] = ACTIONS(976), - [anon_sym_break] = ACTIONS(976), - [anon_sym_continue] = ACTIONS(976), - [anon_sym_goto] = ACTIONS(976), - [anon_sym_DASH_DASH] = ACTIONS(978), - [anon_sym_PLUS_PLUS] = ACTIONS(978), - [anon_sym_sizeof] = ACTIONS(976), - [sym_number_literal] = ACTIONS(978), - [anon_sym_L_SQUOTE] = ACTIONS(978), - [anon_sym_u_SQUOTE] = ACTIONS(978), - [anon_sym_U_SQUOTE] = ACTIONS(978), - [anon_sym_u8_SQUOTE] = ACTIONS(978), - [anon_sym_SQUOTE] = ACTIONS(978), - [anon_sym_L_DQUOTE] = ACTIONS(978), - [anon_sym_u_DQUOTE] = ACTIONS(978), - [anon_sym_U_DQUOTE] = ACTIONS(978), - [anon_sym_u8_DQUOTE] = ACTIONS(978), - [anon_sym_DQUOTE] = ACTIONS(978), - [sym_true] = ACTIONS(976), - [sym_false] = ACTIONS(976), - [sym_null] = ACTIONS(976), - [sym_comment] = ACTIONS(3), - }, - [201] = { - [ts_builtin_sym_end] = ACTIONS(984), - [sym_identifier] = ACTIONS(982), - [aux_sym_preproc_include_token1] = ACTIONS(982), - [aux_sym_preproc_def_token1] = ACTIONS(982), - [aux_sym_preproc_if_token1] = ACTIONS(982), - [aux_sym_preproc_ifdef_token1] = ACTIONS(982), - [aux_sym_preproc_ifdef_token2] = ACTIONS(982), - [sym_preproc_directive] = ACTIONS(982), - [anon_sym_LPAREN2] = ACTIONS(984), - [anon_sym_BANG] = ACTIONS(984), - [anon_sym_TILDE] = ACTIONS(984), - [anon_sym_DASH] = ACTIONS(982), - [anon_sym_PLUS] = ACTIONS(982), - [anon_sym_STAR] = ACTIONS(984), - [anon_sym_AMP] = ACTIONS(984), - [anon_sym_SEMI] = ACTIONS(984), - [anon_sym_typedef] = ACTIONS(982), - [anon_sym_extern] = ACTIONS(982), - [anon_sym___attribute__] = ACTIONS(982), - [anon_sym_LBRACE] = ACTIONS(984), - [anon_sym_static] = ACTIONS(982), - [anon_sym_auto] = ACTIONS(982), - [anon_sym_register] = ACTIONS(982), - [anon_sym_inline] = ACTIONS(982), - [anon_sym_const] = ACTIONS(982), - [anon_sym_volatile] = ACTIONS(982), - [anon_sym_restrict] = ACTIONS(982), - [anon_sym__Atomic] = ACTIONS(982), - [anon_sym_signed] = ACTIONS(982), - [anon_sym_unsigned] = ACTIONS(982), - [anon_sym_long] = ACTIONS(982), - [anon_sym_short] = ACTIONS(982), - [sym_primitive_type] = ACTIONS(982), - [anon_sym_enum] = ACTIONS(982), - [anon_sym_struct] = ACTIONS(982), - [anon_sym_union] = ACTIONS(982), - [anon_sym_if] = ACTIONS(982), - [anon_sym_else] = ACTIONS(982), - [anon_sym_switch] = ACTIONS(982), - [anon_sym_case] = ACTIONS(982), - [anon_sym_default] = ACTIONS(982), - [anon_sym_while] = ACTIONS(982), - [anon_sym_do] = ACTIONS(982), - [anon_sym_for] = ACTIONS(982), - [anon_sym_return] = ACTIONS(982), - [anon_sym_break] = ACTIONS(982), - [anon_sym_continue] = ACTIONS(982), - [anon_sym_goto] = ACTIONS(982), - [anon_sym_DASH_DASH] = ACTIONS(984), - [anon_sym_PLUS_PLUS] = ACTIONS(984), - [anon_sym_sizeof] = ACTIONS(982), - [sym_number_literal] = ACTIONS(984), - [anon_sym_L_SQUOTE] = ACTIONS(984), - [anon_sym_u_SQUOTE] = ACTIONS(984), - [anon_sym_U_SQUOTE] = ACTIONS(984), - [anon_sym_u8_SQUOTE] = ACTIONS(984), - [anon_sym_SQUOTE] = ACTIONS(984), - [anon_sym_L_DQUOTE] = ACTIONS(984), - [anon_sym_u_DQUOTE] = ACTIONS(984), - [anon_sym_U_DQUOTE] = ACTIONS(984), - [anon_sym_u8_DQUOTE] = ACTIONS(984), - [anon_sym_DQUOTE] = ACTIONS(984), - [sym_true] = ACTIONS(982), - [sym_false] = ACTIONS(982), - [sym_null] = ACTIONS(982), - [sym_comment] = ACTIONS(3), - }, - [202] = { - [sym_identifier] = ACTIONS(982), - [aux_sym_preproc_include_token1] = ACTIONS(982), - [aux_sym_preproc_def_token1] = ACTIONS(982), - [aux_sym_preproc_if_token1] = ACTIONS(982), - [aux_sym_preproc_ifdef_token1] = ACTIONS(982), - [aux_sym_preproc_ifdef_token2] = ACTIONS(982), - [sym_preproc_directive] = ACTIONS(982), - [anon_sym_LPAREN2] = ACTIONS(984), - [anon_sym_BANG] = ACTIONS(984), - [anon_sym_TILDE] = ACTIONS(984), - [anon_sym_DASH] = ACTIONS(982), - [anon_sym_PLUS] = ACTIONS(982), - [anon_sym_STAR] = ACTIONS(984), - [anon_sym_AMP] = ACTIONS(984), - [anon_sym_SEMI] = ACTIONS(984), - [anon_sym_typedef] = ACTIONS(982), - [anon_sym_extern] = ACTIONS(982), - [anon_sym___attribute__] = ACTIONS(982), - [anon_sym_LBRACE] = ACTIONS(984), - [anon_sym_RBRACE] = ACTIONS(984), - [anon_sym_static] = ACTIONS(982), - [anon_sym_auto] = ACTIONS(982), - [anon_sym_register] = ACTIONS(982), - [anon_sym_inline] = ACTIONS(982), - [anon_sym_const] = ACTIONS(982), - [anon_sym_volatile] = ACTIONS(982), - [anon_sym_restrict] = ACTIONS(982), - [anon_sym__Atomic] = ACTIONS(982), - [anon_sym_signed] = ACTIONS(982), - [anon_sym_unsigned] = ACTIONS(982), - [anon_sym_long] = ACTIONS(982), - [anon_sym_short] = ACTIONS(982), - [sym_primitive_type] = ACTIONS(982), - [anon_sym_enum] = ACTIONS(982), - [anon_sym_struct] = ACTIONS(982), - [anon_sym_union] = ACTIONS(982), - [anon_sym_if] = ACTIONS(982), - [anon_sym_else] = ACTIONS(982), - [anon_sym_switch] = ACTIONS(982), - [anon_sym_case] = ACTIONS(982), - [anon_sym_default] = ACTIONS(982), - [anon_sym_while] = ACTIONS(982), - [anon_sym_do] = ACTIONS(982), - [anon_sym_for] = ACTIONS(982), - [anon_sym_return] = ACTIONS(982), - [anon_sym_break] = ACTIONS(982), - [anon_sym_continue] = ACTIONS(982), - [anon_sym_goto] = ACTIONS(982), - [anon_sym_DASH_DASH] = ACTIONS(984), - [anon_sym_PLUS_PLUS] = ACTIONS(984), - [anon_sym_sizeof] = ACTIONS(982), - [sym_number_literal] = ACTIONS(984), - [anon_sym_L_SQUOTE] = ACTIONS(984), - [anon_sym_u_SQUOTE] = ACTIONS(984), - [anon_sym_U_SQUOTE] = ACTIONS(984), - [anon_sym_u8_SQUOTE] = ACTIONS(984), - [anon_sym_SQUOTE] = ACTIONS(984), - [anon_sym_L_DQUOTE] = ACTIONS(984), - [anon_sym_u_DQUOTE] = ACTIONS(984), - [anon_sym_U_DQUOTE] = ACTIONS(984), - [anon_sym_u8_DQUOTE] = ACTIONS(984), - [anon_sym_DQUOTE] = ACTIONS(984), - [sym_true] = ACTIONS(982), - [sym_false] = ACTIONS(982), - [sym_null] = ACTIONS(982), - [sym_comment] = ACTIONS(3), - }, - [203] = { - [ts_builtin_sym_end] = ACTIONS(1024), - [sym_identifier] = ACTIONS(1022), - [aux_sym_preproc_include_token1] = ACTIONS(1022), - [aux_sym_preproc_def_token1] = ACTIONS(1022), - [aux_sym_preproc_if_token1] = ACTIONS(1022), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1022), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1022), - [sym_preproc_directive] = ACTIONS(1022), - [anon_sym_LPAREN2] = ACTIONS(1024), - [anon_sym_BANG] = ACTIONS(1024), - [anon_sym_TILDE] = ACTIONS(1024), - [anon_sym_DASH] = ACTIONS(1022), - [anon_sym_PLUS] = ACTIONS(1022), - [anon_sym_STAR] = ACTIONS(1024), - [anon_sym_AMP] = ACTIONS(1024), - [anon_sym_SEMI] = ACTIONS(1024), - [anon_sym_typedef] = ACTIONS(1022), - [anon_sym_extern] = ACTIONS(1022), - [anon_sym___attribute__] = ACTIONS(1022), - [anon_sym_LBRACE] = ACTIONS(1024), - [anon_sym_static] = ACTIONS(1022), - [anon_sym_auto] = ACTIONS(1022), - [anon_sym_register] = ACTIONS(1022), - [anon_sym_inline] = ACTIONS(1022), - [anon_sym_const] = ACTIONS(1022), - [anon_sym_volatile] = ACTIONS(1022), - [anon_sym_restrict] = ACTIONS(1022), - [anon_sym__Atomic] = ACTIONS(1022), - [anon_sym_signed] = ACTIONS(1022), - [anon_sym_unsigned] = ACTIONS(1022), - [anon_sym_long] = ACTIONS(1022), - [anon_sym_short] = ACTIONS(1022), - [sym_primitive_type] = ACTIONS(1022), - [anon_sym_enum] = ACTIONS(1022), - [anon_sym_struct] = ACTIONS(1022), - [anon_sym_union] = ACTIONS(1022), - [anon_sym_if] = ACTIONS(1022), - [anon_sym_else] = ACTIONS(1022), - [anon_sym_switch] = ACTIONS(1022), - [anon_sym_case] = ACTIONS(1022), - [anon_sym_default] = ACTIONS(1022), - [anon_sym_while] = ACTIONS(1022), - [anon_sym_do] = ACTIONS(1022), - [anon_sym_for] = ACTIONS(1022), - [anon_sym_return] = ACTIONS(1022), - [anon_sym_break] = ACTIONS(1022), - [anon_sym_continue] = ACTIONS(1022), - [anon_sym_goto] = ACTIONS(1022), - [anon_sym_DASH_DASH] = ACTIONS(1024), - [anon_sym_PLUS_PLUS] = ACTIONS(1024), - [anon_sym_sizeof] = ACTIONS(1022), - [sym_number_literal] = ACTIONS(1024), - [anon_sym_L_SQUOTE] = ACTIONS(1024), - [anon_sym_u_SQUOTE] = ACTIONS(1024), - [anon_sym_U_SQUOTE] = ACTIONS(1024), - [anon_sym_u8_SQUOTE] = ACTIONS(1024), - [anon_sym_SQUOTE] = ACTIONS(1024), - [anon_sym_L_DQUOTE] = ACTIONS(1024), - [anon_sym_u_DQUOTE] = ACTIONS(1024), - [anon_sym_U_DQUOTE] = ACTIONS(1024), - [anon_sym_u8_DQUOTE] = ACTIONS(1024), - [anon_sym_DQUOTE] = ACTIONS(1024), - [sym_true] = ACTIONS(1022), - [sym_false] = ACTIONS(1022), - [sym_null] = ACTIONS(1022), + [203] = { + [sym_identifier] = ACTIONS(1078), + [aux_sym_preproc_include_token1] = ACTIONS(1078), + [aux_sym_preproc_def_token1] = ACTIONS(1078), + [aux_sym_preproc_if_token1] = ACTIONS(1078), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1078), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1078), + [sym_preproc_directive] = ACTIONS(1078), + [anon_sym_LPAREN2] = ACTIONS(1080), + [anon_sym_BANG] = ACTIONS(1080), + [anon_sym_TILDE] = ACTIONS(1080), + [anon_sym_DASH] = ACTIONS(1078), + [anon_sym_PLUS] = ACTIONS(1078), + [anon_sym_STAR] = ACTIONS(1080), + [anon_sym_AMP] = ACTIONS(1080), + [anon_sym_SEMI] = ACTIONS(1080), + [anon_sym_typedef] = ACTIONS(1078), + [anon_sym_extern] = ACTIONS(1078), + [anon_sym___attribute__] = ACTIONS(1078), + [anon_sym_LBRACE] = ACTIONS(1080), + [anon_sym_RBRACE] = ACTIONS(1080), + [anon_sym_static] = ACTIONS(1078), + [anon_sym_auto] = ACTIONS(1078), + [anon_sym_register] = ACTIONS(1078), + [anon_sym_inline] = ACTIONS(1078), + [anon_sym_const] = ACTIONS(1078), + [anon_sym_volatile] = ACTIONS(1078), + [anon_sym_restrict] = ACTIONS(1078), + [anon_sym__Atomic] = ACTIONS(1078), + [anon_sym_signed] = ACTIONS(1078), + [anon_sym_unsigned] = ACTIONS(1078), + [anon_sym_long] = ACTIONS(1078), + [anon_sym_short] = ACTIONS(1078), + [sym_primitive_type] = ACTIONS(1078), + [anon_sym_enum] = ACTIONS(1078), + [anon_sym_struct] = ACTIONS(1078), + [anon_sym_union] = ACTIONS(1078), + [anon_sym_if] = ACTIONS(1078), + [anon_sym_else] = ACTIONS(1078), + [anon_sym_switch] = ACTIONS(1078), + [anon_sym_case] = ACTIONS(1078), + [anon_sym_default] = ACTIONS(1078), + [anon_sym_while] = ACTIONS(1078), + [anon_sym_do] = ACTIONS(1078), + [anon_sym_for] = ACTIONS(1078), + [anon_sym_return] = ACTIONS(1078), + [anon_sym_break] = ACTIONS(1078), + [anon_sym_continue] = ACTIONS(1078), + [anon_sym_goto] = ACTIONS(1078), + [anon_sym_DASH_DASH] = ACTIONS(1080), + [anon_sym_PLUS_PLUS] = ACTIONS(1080), + [anon_sym_sizeof] = ACTIONS(1078), + [sym_number_literal] = ACTIONS(1080), + [anon_sym_L_SQUOTE] = ACTIONS(1080), + [anon_sym_u_SQUOTE] = ACTIONS(1080), + [anon_sym_U_SQUOTE] = ACTIONS(1080), + [anon_sym_u8_SQUOTE] = ACTIONS(1080), + [anon_sym_SQUOTE] = ACTIONS(1080), + [anon_sym_L_DQUOTE] = ACTIONS(1080), + [anon_sym_u_DQUOTE] = ACTIONS(1080), + [anon_sym_U_DQUOTE] = ACTIONS(1080), + [anon_sym_u8_DQUOTE] = ACTIONS(1080), + [anon_sym_DQUOTE] = ACTIONS(1080), + [sym_true] = ACTIONS(1078), + [sym_false] = ACTIONS(1078), + [sym_null] = ACTIONS(1078), [sym_comment] = ACTIONS(3), }, [204] = { - [sym_identifier] = ACTIONS(964), - [aux_sym_preproc_include_token1] = ACTIONS(964), - [aux_sym_preproc_def_token1] = ACTIONS(964), - [aux_sym_preproc_if_token1] = ACTIONS(964), - [aux_sym_preproc_ifdef_token1] = ACTIONS(964), - [aux_sym_preproc_ifdef_token2] = ACTIONS(964), - [sym_preproc_directive] = ACTIONS(964), - [anon_sym_LPAREN2] = ACTIONS(966), - [anon_sym_BANG] = ACTIONS(966), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_DASH] = ACTIONS(964), - [anon_sym_PLUS] = ACTIONS(964), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_SEMI] = ACTIONS(966), - [anon_sym_typedef] = ACTIONS(964), - [anon_sym_extern] = ACTIONS(964), - [anon_sym___attribute__] = ACTIONS(964), - [anon_sym_LBRACE] = ACTIONS(966), - [anon_sym_RBRACE] = ACTIONS(966), - [anon_sym_static] = ACTIONS(964), - [anon_sym_auto] = ACTIONS(964), - [anon_sym_register] = ACTIONS(964), - [anon_sym_inline] = ACTIONS(964), - [anon_sym_const] = ACTIONS(964), - [anon_sym_volatile] = ACTIONS(964), - [anon_sym_restrict] = ACTIONS(964), - [anon_sym__Atomic] = ACTIONS(964), - [anon_sym_signed] = ACTIONS(964), - [anon_sym_unsigned] = ACTIONS(964), - [anon_sym_long] = ACTIONS(964), - [anon_sym_short] = ACTIONS(964), - [sym_primitive_type] = ACTIONS(964), - [anon_sym_enum] = ACTIONS(964), - [anon_sym_struct] = ACTIONS(964), - [anon_sym_union] = ACTIONS(964), - [anon_sym_if] = ACTIONS(964), - [anon_sym_else] = ACTIONS(964), - [anon_sym_switch] = ACTIONS(964), - [anon_sym_case] = ACTIONS(964), - [anon_sym_default] = ACTIONS(964), - [anon_sym_while] = ACTIONS(964), - [anon_sym_do] = ACTIONS(964), - [anon_sym_for] = ACTIONS(964), - [anon_sym_return] = ACTIONS(964), - [anon_sym_break] = ACTIONS(964), - [anon_sym_continue] = ACTIONS(964), - [anon_sym_goto] = ACTIONS(964), - [anon_sym_DASH_DASH] = ACTIONS(966), - [anon_sym_PLUS_PLUS] = ACTIONS(966), - [anon_sym_sizeof] = ACTIONS(964), - [sym_number_literal] = ACTIONS(966), - [anon_sym_L_SQUOTE] = ACTIONS(966), - [anon_sym_u_SQUOTE] = ACTIONS(966), - [anon_sym_U_SQUOTE] = ACTIONS(966), - [anon_sym_u8_SQUOTE] = ACTIONS(966), - [anon_sym_SQUOTE] = ACTIONS(966), - [anon_sym_L_DQUOTE] = ACTIONS(966), - [anon_sym_u_DQUOTE] = ACTIONS(966), - [anon_sym_U_DQUOTE] = ACTIONS(966), - [anon_sym_u8_DQUOTE] = ACTIONS(966), - [anon_sym_DQUOTE] = ACTIONS(966), - [sym_true] = ACTIONS(964), - [sym_false] = ACTIONS(964), - [sym_null] = ACTIONS(964), + [sym_identifier] = ACTIONS(1042), + [aux_sym_preproc_include_token1] = ACTIONS(1042), + [aux_sym_preproc_def_token1] = ACTIONS(1042), + [aux_sym_preproc_if_token1] = ACTIONS(1042), + [aux_sym_preproc_if_token2] = ACTIONS(1042), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1042), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1042), + [sym_preproc_directive] = ACTIONS(1042), + [anon_sym_LPAREN2] = ACTIONS(1044), + [anon_sym_BANG] = ACTIONS(1044), + [anon_sym_TILDE] = ACTIONS(1044), + [anon_sym_DASH] = ACTIONS(1042), + [anon_sym_PLUS] = ACTIONS(1042), + [anon_sym_STAR] = ACTIONS(1044), + [anon_sym_AMP] = ACTIONS(1044), + [anon_sym_SEMI] = ACTIONS(1044), + [anon_sym_typedef] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1042), + [anon_sym___attribute__] = ACTIONS(1042), + [anon_sym_LBRACE] = ACTIONS(1044), + [anon_sym_static] = ACTIONS(1042), + [anon_sym_auto] = ACTIONS(1042), + [anon_sym_register] = ACTIONS(1042), + [anon_sym_inline] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1042), + [anon_sym_volatile] = ACTIONS(1042), + [anon_sym_restrict] = ACTIONS(1042), + [anon_sym__Atomic] = ACTIONS(1042), + [anon_sym_signed] = ACTIONS(1042), + [anon_sym_unsigned] = ACTIONS(1042), + [anon_sym_long] = ACTIONS(1042), + [anon_sym_short] = ACTIONS(1042), + [sym_primitive_type] = ACTIONS(1042), + [anon_sym_enum] = ACTIONS(1042), + [anon_sym_struct] = ACTIONS(1042), + [anon_sym_union] = ACTIONS(1042), + [anon_sym_if] = ACTIONS(1042), + [anon_sym_else] = ACTIONS(1042), + [anon_sym_switch] = ACTIONS(1042), + [anon_sym_case] = ACTIONS(1042), + [anon_sym_default] = ACTIONS(1042), + [anon_sym_while] = ACTIONS(1042), + [anon_sym_do] = ACTIONS(1042), + [anon_sym_for] = ACTIONS(1042), + [anon_sym_return] = ACTIONS(1042), + [anon_sym_break] = ACTIONS(1042), + [anon_sym_continue] = ACTIONS(1042), + [anon_sym_goto] = ACTIONS(1042), + [anon_sym_DASH_DASH] = ACTIONS(1044), + [anon_sym_PLUS_PLUS] = ACTIONS(1044), + [anon_sym_sizeof] = ACTIONS(1042), + [sym_number_literal] = ACTIONS(1044), + [anon_sym_L_SQUOTE] = ACTIONS(1044), + [anon_sym_u_SQUOTE] = ACTIONS(1044), + [anon_sym_U_SQUOTE] = ACTIONS(1044), + [anon_sym_u8_SQUOTE] = ACTIONS(1044), + [anon_sym_SQUOTE] = ACTIONS(1044), + [anon_sym_L_DQUOTE] = ACTIONS(1044), + [anon_sym_u_DQUOTE] = ACTIONS(1044), + [anon_sym_U_DQUOTE] = ACTIONS(1044), + [anon_sym_u8_DQUOTE] = ACTIONS(1044), + [anon_sym_DQUOTE] = ACTIONS(1044), + [sym_true] = ACTIONS(1042), + [sym_false] = ACTIONS(1042), + [sym_null] = ACTIONS(1042), [sym_comment] = ACTIONS(3), }, [205] = { - [ts_builtin_sym_end] = ACTIONS(966), - [sym_identifier] = ACTIONS(964), - [aux_sym_preproc_include_token1] = ACTIONS(964), - [aux_sym_preproc_def_token1] = ACTIONS(964), - [aux_sym_preproc_if_token1] = ACTIONS(964), - [aux_sym_preproc_ifdef_token1] = ACTIONS(964), - [aux_sym_preproc_ifdef_token2] = ACTIONS(964), - [sym_preproc_directive] = ACTIONS(964), - [anon_sym_LPAREN2] = ACTIONS(966), - [anon_sym_BANG] = ACTIONS(966), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_DASH] = ACTIONS(964), - [anon_sym_PLUS] = ACTIONS(964), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_SEMI] = ACTIONS(966), - [anon_sym_typedef] = ACTIONS(964), - [anon_sym_extern] = ACTIONS(964), - [anon_sym___attribute__] = ACTIONS(964), - [anon_sym_LBRACE] = ACTIONS(966), - [anon_sym_static] = ACTIONS(964), - [anon_sym_auto] = ACTIONS(964), - [anon_sym_register] = ACTIONS(964), - [anon_sym_inline] = ACTIONS(964), - [anon_sym_const] = ACTIONS(964), - [anon_sym_volatile] = ACTIONS(964), - [anon_sym_restrict] = ACTIONS(964), - [anon_sym__Atomic] = ACTIONS(964), - [anon_sym_signed] = ACTIONS(964), - [anon_sym_unsigned] = ACTIONS(964), - [anon_sym_long] = ACTIONS(964), - [anon_sym_short] = ACTIONS(964), - [sym_primitive_type] = ACTIONS(964), - [anon_sym_enum] = ACTIONS(964), - [anon_sym_struct] = ACTIONS(964), - [anon_sym_union] = ACTIONS(964), - [anon_sym_if] = ACTIONS(964), - [anon_sym_else] = ACTIONS(964), - [anon_sym_switch] = ACTIONS(964), - [anon_sym_case] = ACTIONS(964), - [anon_sym_default] = ACTIONS(964), - [anon_sym_while] = ACTIONS(964), - [anon_sym_do] = ACTIONS(964), - [anon_sym_for] = ACTIONS(964), - [anon_sym_return] = ACTIONS(964), - [anon_sym_break] = ACTIONS(964), - [anon_sym_continue] = ACTIONS(964), - [anon_sym_goto] = ACTIONS(964), - [anon_sym_DASH_DASH] = ACTIONS(966), - [anon_sym_PLUS_PLUS] = ACTIONS(966), - [anon_sym_sizeof] = ACTIONS(964), - [sym_number_literal] = ACTIONS(966), - [anon_sym_L_SQUOTE] = ACTIONS(966), - [anon_sym_u_SQUOTE] = ACTIONS(966), - [anon_sym_U_SQUOTE] = ACTIONS(966), - [anon_sym_u8_SQUOTE] = ACTIONS(966), - [anon_sym_SQUOTE] = ACTIONS(966), - [anon_sym_L_DQUOTE] = ACTIONS(966), - [anon_sym_u_DQUOTE] = ACTIONS(966), - [anon_sym_U_DQUOTE] = ACTIONS(966), - [anon_sym_u8_DQUOTE] = ACTIONS(966), - [anon_sym_DQUOTE] = ACTIONS(966), - [sym_true] = ACTIONS(964), - [sym_false] = ACTIONS(964), - [sym_null] = ACTIONS(964), + [ts_builtin_sym_end] = ACTIONS(998), + [sym_identifier] = ACTIONS(996), + [aux_sym_preproc_include_token1] = ACTIONS(996), + [aux_sym_preproc_def_token1] = ACTIONS(996), + [aux_sym_preproc_if_token1] = ACTIONS(996), + [aux_sym_preproc_ifdef_token1] = ACTIONS(996), + [aux_sym_preproc_ifdef_token2] = ACTIONS(996), + [sym_preproc_directive] = ACTIONS(996), + [anon_sym_LPAREN2] = ACTIONS(998), + [anon_sym_BANG] = ACTIONS(998), + [anon_sym_TILDE] = ACTIONS(998), + [anon_sym_DASH] = ACTIONS(996), + [anon_sym_PLUS] = ACTIONS(996), + [anon_sym_STAR] = ACTIONS(998), + [anon_sym_AMP] = ACTIONS(998), + [anon_sym_SEMI] = ACTIONS(998), + [anon_sym_typedef] = ACTIONS(996), + [anon_sym_extern] = ACTIONS(996), + [anon_sym___attribute__] = ACTIONS(996), + [anon_sym_LBRACE] = ACTIONS(998), + [anon_sym_static] = ACTIONS(996), + [anon_sym_auto] = ACTIONS(996), + [anon_sym_register] = ACTIONS(996), + [anon_sym_inline] = ACTIONS(996), + [anon_sym_const] = ACTIONS(996), + [anon_sym_volatile] = ACTIONS(996), + [anon_sym_restrict] = ACTIONS(996), + [anon_sym__Atomic] = ACTIONS(996), + [anon_sym_signed] = ACTIONS(996), + [anon_sym_unsigned] = ACTIONS(996), + [anon_sym_long] = ACTIONS(996), + [anon_sym_short] = ACTIONS(996), + [sym_primitive_type] = ACTIONS(996), + [anon_sym_enum] = ACTIONS(996), + [anon_sym_struct] = ACTIONS(996), + [anon_sym_union] = ACTIONS(996), + [anon_sym_if] = ACTIONS(996), + [anon_sym_else] = ACTIONS(1184), + [anon_sym_switch] = ACTIONS(996), + [anon_sym_case] = ACTIONS(996), + [anon_sym_default] = ACTIONS(996), + [anon_sym_while] = ACTIONS(996), + [anon_sym_do] = ACTIONS(996), + [anon_sym_for] = ACTIONS(996), + [anon_sym_return] = ACTIONS(996), + [anon_sym_break] = ACTIONS(996), + [anon_sym_continue] = ACTIONS(996), + [anon_sym_goto] = ACTIONS(996), + [anon_sym_DASH_DASH] = ACTIONS(998), + [anon_sym_PLUS_PLUS] = ACTIONS(998), + [anon_sym_sizeof] = ACTIONS(996), + [sym_number_literal] = ACTIONS(998), + [anon_sym_L_SQUOTE] = ACTIONS(998), + [anon_sym_u_SQUOTE] = ACTIONS(998), + [anon_sym_U_SQUOTE] = ACTIONS(998), + [anon_sym_u8_SQUOTE] = ACTIONS(998), + [anon_sym_SQUOTE] = ACTIONS(998), + [anon_sym_L_DQUOTE] = ACTIONS(998), + [anon_sym_u_DQUOTE] = ACTIONS(998), + [anon_sym_U_DQUOTE] = ACTIONS(998), + [anon_sym_u8_DQUOTE] = ACTIONS(998), + [anon_sym_DQUOTE] = ACTIONS(998), + [sym_true] = ACTIONS(996), + [sym_false] = ACTIONS(996), + [sym_null] = ACTIONS(996), [sym_comment] = ACTIONS(3), }, [206] = { - [sym_identifier] = ACTIONS(986), - [aux_sym_preproc_include_token1] = ACTIONS(986), - [aux_sym_preproc_def_token1] = ACTIONS(986), - [aux_sym_preproc_if_token1] = ACTIONS(986), - [aux_sym_preproc_ifdef_token1] = ACTIONS(986), - [aux_sym_preproc_ifdef_token2] = ACTIONS(986), - [sym_preproc_directive] = ACTIONS(986), - [anon_sym_LPAREN2] = ACTIONS(988), - [anon_sym_BANG] = ACTIONS(988), - [anon_sym_TILDE] = ACTIONS(988), - [anon_sym_DASH] = ACTIONS(986), - [anon_sym_PLUS] = ACTIONS(986), - [anon_sym_STAR] = ACTIONS(988), - [anon_sym_AMP] = ACTIONS(988), - [anon_sym_SEMI] = ACTIONS(988), - [anon_sym_typedef] = ACTIONS(986), - [anon_sym_extern] = ACTIONS(986), - [anon_sym___attribute__] = ACTIONS(986), - [anon_sym_LBRACE] = ACTIONS(988), - [anon_sym_RBRACE] = ACTIONS(988), - [anon_sym_static] = ACTIONS(986), - [anon_sym_auto] = ACTIONS(986), - [anon_sym_register] = ACTIONS(986), - [anon_sym_inline] = ACTIONS(986), - [anon_sym_const] = ACTIONS(986), - [anon_sym_volatile] = ACTIONS(986), - [anon_sym_restrict] = ACTIONS(986), - [anon_sym__Atomic] = ACTIONS(986), - [anon_sym_signed] = ACTIONS(986), - [anon_sym_unsigned] = ACTIONS(986), - [anon_sym_long] = ACTIONS(986), - [anon_sym_short] = ACTIONS(986), - [sym_primitive_type] = ACTIONS(986), - [anon_sym_enum] = ACTIONS(986), - [anon_sym_struct] = ACTIONS(986), - [anon_sym_union] = ACTIONS(986), - [anon_sym_if] = ACTIONS(986), - [anon_sym_else] = ACTIONS(986), - [anon_sym_switch] = ACTIONS(986), - [anon_sym_case] = ACTIONS(986), - [anon_sym_default] = ACTIONS(986), - [anon_sym_while] = ACTIONS(986), - [anon_sym_do] = ACTIONS(986), - [anon_sym_for] = ACTIONS(986), - [anon_sym_return] = ACTIONS(986), - [anon_sym_break] = ACTIONS(986), - [anon_sym_continue] = ACTIONS(986), - [anon_sym_goto] = ACTIONS(986), - [anon_sym_DASH_DASH] = ACTIONS(988), - [anon_sym_PLUS_PLUS] = ACTIONS(988), - [anon_sym_sizeof] = ACTIONS(986), - [sym_number_literal] = ACTIONS(988), - [anon_sym_L_SQUOTE] = ACTIONS(988), - [anon_sym_u_SQUOTE] = ACTIONS(988), - [anon_sym_U_SQUOTE] = ACTIONS(988), - [anon_sym_u8_SQUOTE] = ACTIONS(988), - [anon_sym_SQUOTE] = ACTIONS(988), - [anon_sym_L_DQUOTE] = ACTIONS(988), - [anon_sym_u_DQUOTE] = ACTIONS(988), - [anon_sym_U_DQUOTE] = ACTIONS(988), - [anon_sym_u8_DQUOTE] = ACTIONS(988), - [anon_sym_DQUOTE] = ACTIONS(988), - [sym_true] = ACTIONS(986), - [sym_false] = ACTIONS(986), - [sym_null] = ACTIONS(986), + [ts_builtin_sym_end] = ACTIONS(994), + [sym_identifier] = ACTIONS(992), + [aux_sym_preproc_include_token1] = ACTIONS(992), + [aux_sym_preproc_def_token1] = ACTIONS(992), + [aux_sym_preproc_if_token1] = ACTIONS(992), + [aux_sym_preproc_ifdef_token1] = ACTIONS(992), + [aux_sym_preproc_ifdef_token2] = ACTIONS(992), + [sym_preproc_directive] = ACTIONS(992), + [anon_sym_LPAREN2] = ACTIONS(994), + [anon_sym_BANG] = ACTIONS(994), + [anon_sym_TILDE] = ACTIONS(994), + [anon_sym_DASH] = ACTIONS(992), + [anon_sym_PLUS] = ACTIONS(992), + [anon_sym_STAR] = ACTIONS(994), + [anon_sym_AMP] = ACTIONS(994), + [anon_sym_SEMI] = ACTIONS(994), + [anon_sym_typedef] = ACTIONS(992), + [anon_sym_extern] = ACTIONS(992), + [anon_sym___attribute__] = ACTIONS(992), + [anon_sym_LBRACE] = ACTIONS(994), + [anon_sym_static] = ACTIONS(992), + [anon_sym_auto] = ACTIONS(992), + [anon_sym_register] = ACTIONS(992), + [anon_sym_inline] = ACTIONS(992), + [anon_sym_const] = ACTIONS(992), + [anon_sym_volatile] = ACTIONS(992), + [anon_sym_restrict] = ACTIONS(992), + [anon_sym__Atomic] = ACTIONS(992), + [anon_sym_signed] = ACTIONS(992), + [anon_sym_unsigned] = ACTIONS(992), + [anon_sym_long] = ACTIONS(992), + [anon_sym_short] = ACTIONS(992), + [sym_primitive_type] = ACTIONS(992), + [anon_sym_enum] = ACTIONS(992), + [anon_sym_struct] = ACTIONS(992), + [anon_sym_union] = ACTIONS(992), + [anon_sym_if] = ACTIONS(992), + [anon_sym_else] = ACTIONS(992), + [anon_sym_switch] = ACTIONS(992), + [anon_sym_case] = ACTIONS(992), + [anon_sym_default] = ACTIONS(992), + [anon_sym_while] = ACTIONS(992), + [anon_sym_do] = ACTIONS(992), + [anon_sym_for] = ACTIONS(992), + [anon_sym_return] = ACTIONS(992), + [anon_sym_break] = ACTIONS(992), + [anon_sym_continue] = ACTIONS(992), + [anon_sym_goto] = ACTIONS(992), + [anon_sym_DASH_DASH] = ACTIONS(994), + [anon_sym_PLUS_PLUS] = ACTIONS(994), + [anon_sym_sizeof] = ACTIONS(992), + [sym_number_literal] = ACTIONS(994), + [anon_sym_L_SQUOTE] = ACTIONS(994), + [anon_sym_u_SQUOTE] = ACTIONS(994), + [anon_sym_U_SQUOTE] = ACTIONS(994), + [anon_sym_u8_SQUOTE] = ACTIONS(994), + [anon_sym_SQUOTE] = ACTIONS(994), + [anon_sym_L_DQUOTE] = ACTIONS(994), + [anon_sym_u_DQUOTE] = ACTIONS(994), + [anon_sym_U_DQUOTE] = ACTIONS(994), + [anon_sym_u8_DQUOTE] = ACTIONS(994), + [anon_sym_DQUOTE] = ACTIONS(994), + [sym_true] = ACTIONS(992), + [sym_false] = ACTIONS(992), + [sym_null] = ACTIONS(992), [sym_comment] = ACTIONS(3), }, [207] = { - [sym_identifier] = ACTIONS(990), - [aux_sym_preproc_include_token1] = ACTIONS(990), - [aux_sym_preproc_def_token1] = ACTIONS(990), - [aux_sym_preproc_if_token1] = ACTIONS(990), - [aux_sym_preproc_ifdef_token1] = ACTIONS(990), - [aux_sym_preproc_ifdef_token2] = ACTIONS(990), - [sym_preproc_directive] = ACTIONS(990), - [anon_sym_LPAREN2] = ACTIONS(992), - [anon_sym_BANG] = ACTIONS(992), - [anon_sym_TILDE] = ACTIONS(992), - [anon_sym_DASH] = ACTIONS(990), - [anon_sym_PLUS] = ACTIONS(990), - [anon_sym_STAR] = ACTIONS(992), - [anon_sym_AMP] = ACTIONS(992), - [anon_sym_SEMI] = ACTIONS(992), - [anon_sym_typedef] = ACTIONS(990), - [anon_sym_extern] = ACTIONS(990), - [anon_sym___attribute__] = ACTIONS(990), - [anon_sym_LBRACE] = ACTIONS(992), - [anon_sym_RBRACE] = ACTIONS(992), - [anon_sym_static] = ACTIONS(990), - [anon_sym_auto] = ACTIONS(990), - [anon_sym_register] = ACTIONS(990), - [anon_sym_inline] = ACTIONS(990), - [anon_sym_const] = ACTIONS(990), - [anon_sym_volatile] = ACTIONS(990), - [anon_sym_restrict] = ACTIONS(990), - [anon_sym__Atomic] = ACTIONS(990), - [anon_sym_signed] = ACTIONS(990), - [anon_sym_unsigned] = ACTIONS(990), - [anon_sym_long] = ACTIONS(990), - [anon_sym_short] = ACTIONS(990), - [sym_primitive_type] = ACTIONS(990), - [anon_sym_enum] = ACTIONS(990), - [anon_sym_struct] = ACTIONS(990), - [anon_sym_union] = ACTIONS(990), - [anon_sym_if] = ACTIONS(990), - [anon_sym_else] = ACTIONS(990), - [anon_sym_switch] = ACTIONS(990), - [anon_sym_case] = ACTIONS(990), - [anon_sym_default] = ACTIONS(990), - [anon_sym_while] = ACTIONS(990), - [anon_sym_do] = ACTIONS(990), - [anon_sym_for] = ACTIONS(990), - [anon_sym_return] = ACTIONS(990), - [anon_sym_break] = ACTIONS(990), - [anon_sym_continue] = ACTIONS(990), - [anon_sym_goto] = ACTIONS(990), - [anon_sym_DASH_DASH] = ACTIONS(992), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_sizeof] = ACTIONS(990), - [sym_number_literal] = ACTIONS(992), - [anon_sym_L_SQUOTE] = ACTIONS(992), - [anon_sym_u_SQUOTE] = ACTIONS(992), - [anon_sym_U_SQUOTE] = ACTIONS(992), - [anon_sym_u8_SQUOTE] = ACTIONS(992), - [anon_sym_SQUOTE] = ACTIONS(992), - [anon_sym_L_DQUOTE] = ACTIONS(992), - [anon_sym_u_DQUOTE] = ACTIONS(992), - [anon_sym_U_DQUOTE] = ACTIONS(992), - [anon_sym_u8_DQUOTE] = ACTIONS(992), - [anon_sym_DQUOTE] = ACTIONS(992), - [sym_true] = ACTIONS(990), - [sym_false] = ACTIONS(990), - [sym_null] = ACTIONS(990), - [sym_comment] = ACTIONS(3), - }, - [208] = { - [sym_identifier] = ACTIONS(994), - [aux_sym_preproc_include_token1] = ACTIONS(994), - [aux_sym_preproc_def_token1] = ACTIONS(994), - [aux_sym_preproc_if_token1] = ACTIONS(994), - [aux_sym_preproc_ifdef_token1] = ACTIONS(994), - [aux_sym_preproc_ifdef_token2] = ACTIONS(994), - [sym_preproc_directive] = ACTIONS(994), - [anon_sym_LPAREN2] = ACTIONS(996), - [anon_sym_BANG] = ACTIONS(996), - [anon_sym_TILDE] = ACTIONS(996), - [anon_sym_DASH] = ACTIONS(994), - [anon_sym_PLUS] = ACTIONS(994), - [anon_sym_STAR] = ACTIONS(996), - [anon_sym_AMP] = ACTIONS(996), - [anon_sym_SEMI] = ACTIONS(996), - [anon_sym_typedef] = ACTIONS(994), - [anon_sym_extern] = ACTIONS(994), - [anon_sym___attribute__] = ACTIONS(994), - [anon_sym_LBRACE] = ACTIONS(996), - [anon_sym_RBRACE] = ACTIONS(996), - [anon_sym_static] = ACTIONS(994), - [anon_sym_auto] = ACTIONS(994), - [anon_sym_register] = ACTIONS(994), - [anon_sym_inline] = ACTIONS(994), - [anon_sym_const] = ACTIONS(994), - [anon_sym_volatile] = ACTIONS(994), - [anon_sym_restrict] = ACTIONS(994), - [anon_sym__Atomic] = ACTIONS(994), - [anon_sym_signed] = ACTIONS(994), - [anon_sym_unsigned] = ACTIONS(994), - [anon_sym_long] = ACTIONS(994), - [anon_sym_short] = ACTIONS(994), - [sym_primitive_type] = ACTIONS(994), - [anon_sym_enum] = ACTIONS(994), - [anon_sym_struct] = ACTIONS(994), - [anon_sym_union] = ACTIONS(994), - [anon_sym_if] = ACTIONS(994), - [anon_sym_else] = ACTIONS(994), - [anon_sym_switch] = ACTIONS(994), - [anon_sym_case] = ACTIONS(994), - [anon_sym_default] = ACTIONS(994), - [anon_sym_while] = ACTIONS(994), - [anon_sym_do] = ACTIONS(994), - [anon_sym_for] = ACTIONS(994), - [anon_sym_return] = ACTIONS(994), - [anon_sym_break] = ACTIONS(994), - [anon_sym_continue] = ACTIONS(994), - [anon_sym_goto] = ACTIONS(994), - [anon_sym_DASH_DASH] = ACTIONS(996), - [anon_sym_PLUS_PLUS] = ACTIONS(996), - [anon_sym_sizeof] = ACTIONS(994), - [sym_number_literal] = ACTIONS(996), - [anon_sym_L_SQUOTE] = ACTIONS(996), - [anon_sym_u_SQUOTE] = ACTIONS(996), - [anon_sym_U_SQUOTE] = ACTIONS(996), - [anon_sym_u8_SQUOTE] = ACTIONS(996), - [anon_sym_SQUOTE] = ACTIONS(996), - [anon_sym_L_DQUOTE] = ACTIONS(996), - [anon_sym_u_DQUOTE] = ACTIONS(996), - [anon_sym_U_DQUOTE] = ACTIONS(996), - [anon_sym_u8_DQUOTE] = ACTIONS(996), - [anon_sym_DQUOTE] = ACTIONS(996), - [sym_true] = ACTIONS(994), - [sym_false] = ACTIONS(994), - [sym_null] = ACTIONS(994), - [sym_comment] = ACTIONS(3), - }, - [209] = { - [ts_builtin_sym_end] = ACTIONS(1016), [sym_identifier] = ACTIONS(1014), [aux_sym_preproc_include_token1] = ACTIONS(1014), [aux_sym_preproc_def_token1] = ACTIONS(1014), @@ -23949,6 +23828,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_extern] = ACTIONS(1014), [anon_sym___attribute__] = ACTIONS(1014), [anon_sym_LBRACE] = ACTIONS(1016), + [anon_sym_RBRACE] = ACTIONS(1016), [anon_sym_static] = ACTIONS(1014), [anon_sym_auto] = ACTIONS(1014), [anon_sym_register] = ACTIONS(1014), @@ -23996,352 +23876,623 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1014), [sym_comment] = ACTIONS(3), }, + [208] = { + [ts_builtin_sym_end] = ACTIONS(986), + [sym_identifier] = ACTIONS(984), + [aux_sym_preproc_include_token1] = ACTIONS(984), + [aux_sym_preproc_def_token1] = ACTIONS(984), + [aux_sym_preproc_if_token1] = ACTIONS(984), + [aux_sym_preproc_ifdef_token1] = ACTIONS(984), + [aux_sym_preproc_ifdef_token2] = ACTIONS(984), + [sym_preproc_directive] = ACTIONS(984), + [anon_sym_LPAREN2] = ACTIONS(986), + [anon_sym_BANG] = ACTIONS(986), + [anon_sym_TILDE] = ACTIONS(986), + [anon_sym_DASH] = ACTIONS(984), + [anon_sym_PLUS] = ACTIONS(984), + [anon_sym_STAR] = ACTIONS(986), + [anon_sym_AMP] = ACTIONS(986), + [anon_sym_SEMI] = ACTIONS(986), + [anon_sym_typedef] = ACTIONS(984), + [anon_sym_extern] = ACTIONS(984), + [anon_sym___attribute__] = ACTIONS(984), + [anon_sym_LBRACE] = ACTIONS(986), + [anon_sym_static] = ACTIONS(984), + [anon_sym_auto] = ACTIONS(984), + [anon_sym_register] = ACTIONS(984), + [anon_sym_inline] = ACTIONS(984), + [anon_sym_const] = ACTIONS(984), + [anon_sym_volatile] = ACTIONS(984), + [anon_sym_restrict] = ACTIONS(984), + [anon_sym__Atomic] = ACTIONS(984), + [anon_sym_signed] = ACTIONS(984), + [anon_sym_unsigned] = ACTIONS(984), + [anon_sym_long] = ACTIONS(984), + [anon_sym_short] = ACTIONS(984), + [sym_primitive_type] = ACTIONS(984), + [anon_sym_enum] = ACTIONS(984), + [anon_sym_struct] = ACTIONS(984), + [anon_sym_union] = ACTIONS(984), + [anon_sym_if] = ACTIONS(984), + [anon_sym_else] = ACTIONS(984), + [anon_sym_switch] = ACTIONS(984), + [anon_sym_case] = ACTIONS(984), + [anon_sym_default] = ACTIONS(984), + [anon_sym_while] = ACTIONS(984), + [anon_sym_do] = ACTIONS(984), + [anon_sym_for] = ACTIONS(984), + [anon_sym_return] = ACTIONS(984), + [anon_sym_break] = ACTIONS(984), + [anon_sym_continue] = ACTIONS(984), + [anon_sym_goto] = ACTIONS(984), + [anon_sym_DASH_DASH] = ACTIONS(986), + [anon_sym_PLUS_PLUS] = ACTIONS(986), + [anon_sym_sizeof] = ACTIONS(984), + [sym_number_literal] = ACTIONS(986), + [anon_sym_L_SQUOTE] = ACTIONS(986), + [anon_sym_u_SQUOTE] = ACTIONS(986), + [anon_sym_U_SQUOTE] = ACTIONS(986), + [anon_sym_u8_SQUOTE] = ACTIONS(986), + [anon_sym_SQUOTE] = ACTIONS(986), + [anon_sym_L_DQUOTE] = ACTIONS(986), + [anon_sym_u_DQUOTE] = ACTIONS(986), + [anon_sym_U_DQUOTE] = ACTIONS(986), + [anon_sym_u8_DQUOTE] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(986), + [sym_true] = ACTIONS(984), + [sym_false] = ACTIONS(984), + [sym_null] = ACTIONS(984), + [sym_comment] = ACTIONS(3), + }, + [209] = { + [ts_builtin_sym_end] = ACTIONS(1080), + [sym_identifier] = ACTIONS(1078), + [aux_sym_preproc_include_token1] = ACTIONS(1078), + [aux_sym_preproc_def_token1] = ACTIONS(1078), + [aux_sym_preproc_if_token1] = ACTIONS(1078), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1078), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1078), + [sym_preproc_directive] = ACTIONS(1078), + [anon_sym_LPAREN2] = ACTIONS(1080), + [anon_sym_BANG] = ACTIONS(1080), + [anon_sym_TILDE] = ACTIONS(1080), + [anon_sym_DASH] = ACTIONS(1078), + [anon_sym_PLUS] = ACTIONS(1078), + [anon_sym_STAR] = ACTIONS(1080), + [anon_sym_AMP] = ACTIONS(1080), + [anon_sym_SEMI] = ACTIONS(1080), + [anon_sym_typedef] = ACTIONS(1078), + [anon_sym_extern] = ACTIONS(1078), + [anon_sym___attribute__] = ACTIONS(1078), + [anon_sym_LBRACE] = ACTIONS(1080), + [anon_sym_static] = ACTIONS(1078), + [anon_sym_auto] = ACTIONS(1078), + [anon_sym_register] = ACTIONS(1078), + [anon_sym_inline] = ACTIONS(1078), + [anon_sym_const] = ACTIONS(1078), + [anon_sym_volatile] = ACTIONS(1078), + [anon_sym_restrict] = ACTIONS(1078), + [anon_sym__Atomic] = ACTIONS(1078), + [anon_sym_signed] = ACTIONS(1078), + [anon_sym_unsigned] = ACTIONS(1078), + [anon_sym_long] = ACTIONS(1078), + [anon_sym_short] = ACTIONS(1078), + [sym_primitive_type] = ACTIONS(1078), + [anon_sym_enum] = ACTIONS(1078), + [anon_sym_struct] = ACTIONS(1078), + [anon_sym_union] = ACTIONS(1078), + [anon_sym_if] = ACTIONS(1078), + [anon_sym_else] = ACTIONS(1078), + [anon_sym_switch] = ACTIONS(1078), + [anon_sym_case] = ACTIONS(1078), + [anon_sym_default] = ACTIONS(1078), + [anon_sym_while] = ACTIONS(1078), + [anon_sym_do] = ACTIONS(1078), + [anon_sym_for] = ACTIONS(1078), + [anon_sym_return] = ACTIONS(1078), + [anon_sym_break] = ACTIONS(1078), + [anon_sym_continue] = ACTIONS(1078), + [anon_sym_goto] = ACTIONS(1078), + [anon_sym_DASH_DASH] = ACTIONS(1080), + [anon_sym_PLUS_PLUS] = ACTIONS(1080), + [anon_sym_sizeof] = ACTIONS(1078), + [sym_number_literal] = ACTIONS(1080), + [anon_sym_L_SQUOTE] = ACTIONS(1080), + [anon_sym_u_SQUOTE] = ACTIONS(1080), + [anon_sym_U_SQUOTE] = ACTIONS(1080), + [anon_sym_u8_SQUOTE] = ACTIONS(1080), + [anon_sym_SQUOTE] = ACTIONS(1080), + [anon_sym_L_DQUOTE] = ACTIONS(1080), + [anon_sym_u_DQUOTE] = ACTIONS(1080), + [anon_sym_U_DQUOTE] = ACTIONS(1080), + [anon_sym_u8_DQUOTE] = ACTIONS(1080), + [anon_sym_DQUOTE] = ACTIONS(1080), + [sym_true] = ACTIONS(1078), + [sym_false] = ACTIONS(1078), + [sym_null] = ACTIONS(1078), + [sym_comment] = ACTIONS(3), + }, [210] = { - [sym_identifier] = ACTIONS(998), - [aux_sym_preproc_include_token1] = ACTIONS(998), - [aux_sym_preproc_def_token1] = ACTIONS(998), - [aux_sym_preproc_if_token1] = ACTIONS(998), - [aux_sym_preproc_ifdef_token1] = ACTIONS(998), - [aux_sym_preproc_ifdef_token2] = ACTIONS(998), - [sym_preproc_directive] = ACTIONS(998), - [anon_sym_LPAREN2] = ACTIONS(1000), - [anon_sym_BANG] = ACTIONS(1000), - [anon_sym_TILDE] = ACTIONS(1000), - [anon_sym_DASH] = ACTIONS(998), - [anon_sym_PLUS] = ACTIONS(998), - [anon_sym_STAR] = ACTIONS(1000), - [anon_sym_AMP] = ACTIONS(1000), - [anon_sym_SEMI] = ACTIONS(1000), - [anon_sym_typedef] = ACTIONS(998), - [anon_sym_extern] = ACTIONS(998), - [anon_sym___attribute__] = ACTIONS(998), - [anon_sym_LBRACE] = ACTIONS(1000), - [anon_sym_RBRACE] = ACTIONS(1000), - [anon_sym_static] = ACTIONS(998), - [anon_sym_auto] = ACTIONS(998), - [anon_sym_register] = ACTIONS(998), - [anon_sym_inline] = ACTIONS(998), - [anon_sym_const] = ACTIONS(998), - [anon_sym_volatile] = ACTIONS(998), - [anon_sym_restrict] = ACTIONS(998), - [anon_sym__Atomic] = ACTIONS(998), - [anon_sym_signed] = ACTIONS(998), - [anon_sym_unsigned] = ACTIONS(998), - [anon_sym_long] = ACTIONS(998), - [anon_sym_short] = ACTIONS(998), - [sym_primitive_type] = ACTIONS(998), - [anon_sym_enum] = ACTIONS(998), - [anon_sym_struct] = ACTIONS(998), - [anon_sym_union] = ACTIONS(998), - [anon_sym_if] = ACTIONS(998), - [anon_sym_else] = ACTIONS(998), - [anon_sym_switch] = ACTIONS(998), - [anon_sym_case] = ACTIONS(998), - [anon_sym_default] = ACTIONS(998), - [anon_sym_while] = ACTIONS(998), - [anon_sym_do] = ACTIONS(998), - [anon_sym_for] = ACTIONS(998), - [anon_sym_return] = ACTIONS(998), - [anon_sym_break] = ACTIONS(998), - [anon_sym_continue] = ACTIONS(998), - [anon_sym_goto] = ACTIONS(998), - [anon_sym_DASH_DASH] = ACTIONS(1000), - [anon_sym_PLUS_PLUS] = ACTIONS(1000), - [anon_sym_sizeof] = ACTIONS(998), - [sym_number_literal] = ACTIONS(1000), - [anon_sym_L_SQUOTE] = ACTIONS(1000), - [anon_sym_u_SQUOTE] = ACTIONS(1000), - [anon_sym_U_SQUOTE] = ACTIONS(1000), - [anon_sym_u8_SQUOTE] = ACTIONS(1000), - [anon_sym_SQUOTE] = ACTIONS(1000), - [anon_sym_L_DQUOTE] = ACTIONS(1000), - [anon_sym_u_DQUOTE] = ACTIONS(1000), - [anon_sym_U_DQUOTE] = ACTIONS(1000), - [anon_sym_u8_DQUOTE] = ACTIONS(1000), - [anon_sym_DQUOTE] = ACTIONS(1000), - [sym_true] = ACTIONS(998), - [sym_false] = ACTIONS(998), - [sym_null] = ACTIONS(998), + [sym_identifier] = ACTIONS(1066), + [aux_sym_preproc_include_token1] = ACTIONS(1066), + [aux_sym_preproc_def_token1] = ACTIONS(1066), + [aux_sym_preproc_if_token1] = ACTIONS(1066), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1066), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1066), + [sym_preproc_directive] = ACTIONS(1066), + [anon_sym_LPAREN2] = ACTIONS(1068), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_TILDE] = ACTIONS(1068), + [anon_sym_DASH] = ACTIONS(1066), + [anon_sym_PLUS] = ACTIONS(1066), + [anon_sym_STAR] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(1068), + [anon_sym_SEMI] = ACTIONS(1068), + [anon_sym_typedef] = ACTIONS(1066), + [anon_sym_extern] = ACTIONS(1066), + [anon_sym___attribute__] = ACTIONS(1066), + [anon_sym_LBRACE] = ACTIONS(1068), + [anon_sym_RBRACE] = ACTIONS(1068), + [anon_sym_static] = ACTIONS(1066), + [anon_sym_auto] = ACTIONS(1066), + [anon_sym_register] = ACTIONS(1066), + [anon_sym_inline] = ACTIONS(1066), + [anon_sym_const] = ACTIONS(1066), + [anon_sym_volatile] = ACTIONS(1066), + [anon_sym_restrict] = ACTIONS(1066), + [anon_sym__Atomic] = ACTIONS(1066), + [anon_sym_signed] = ACTIONS(1066), + [anon_sym_unsigned] = ACTIONS(1066), + [anon_sym_long] = ACTIONS(1066), + [anon_sym_short] = ACTIONS(1066), + [sym_primitive_type] = ACTIONS(1066), + [anon_sym_enum] = ACTIONS(1066), + [anon_sym_struct] = ACTIONS(1066), + [anon_sym_union] = ACTIONS(1066), + [anon_sym_if] = ACTIONS(1066), + [anon_sym_else] = ACTIONS(1066), + [anon_sym_switch] = ACTIONS(1066), + [anon_sym_case] = ACTIONS(1066), + [anon_sym_default] = ACTIONS(1066), + [anon_sym_while] = ACTIONS(1066), + [anon_sym_do] = ACTIONS(1066), + [anon_sym_for] = ACTIONS(1066), + [anon_sym_return] = ACTIONS(1066), + [anon_sym_break] = ACTIONS(1066), + [anon_sym_continue] = ACTIONS(1066), + [anon_sym_goto] = ACTIONS(1066), + [anon_sym_DASH_DASH] = ACTIONS(1068), + [anon_sym_PLUS_PLUS] = ACTIONS(1068), + [anon_sym_sizeof] = ACTIONS(1066), + [sym_number_literal] = ACTIONS(1068), + [anon_sym_L_SQUOTE] = ACTIONS(1068), + [anon_sym_u_SQUOTE] = ACTIONS(1068), + [anon_sym_U_SQUOTE] = ACTIONS(1068), + [anon_sym_u8_SQUOTE] = ACTIONS(1068), + [anon_sym_SQUOTE] = ACTIONS(1068), + [anon_sym_L_DQUOTE] = ACTIONS(1068), + [anon_sym_u_DQUOTE] = ACTIONS(1068), + [anon_sym_U_DQUOTE] = ACTIONS(1068), + [anon_sym_u8_DQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE] = ACTIONS(1068), + [sym_true] = ACTIONS(1066), + [sym_false] = ACTIONS(1066), + [sym_null] = ACTIONS(1066), [sym_comment] = ACTIONS(3), }, [211] = { - [ts_builtin_sym_end] = ACTIONS(988), - [sym_identifier] = ACTIONS(986), - [aux_sym_preproc_include_token1] = ACTIONS(986), - [aux_sym_preproc_def_token1] = ACTIONS(986), - [aux_sym_preproc_if_token1] = ACTIONS(986), - [aux_sym_preproc_ifdef_token1] = ACTIONS(986), - [aux_sym_preproc_ifdef_token2] = ACTIONS(986), - [sym_preproc_directive] = ACTIONS(986), - [anon_sym_LPAREN2] = ACTIONS(988), - [anon_sym_BANG] = ACTIONS(988), - [anon_sym_TILDE] = ACTIONS(988), - [anon_sym_DASH] = ACTIONS(986), - [anon_sym_PLUS] = ACTIONS(986), - [anon_sym_STAR] = ACTIONS(988), - [anon_sym_AMP] = ACTIONS(988), - [anon_sym_SEMI] = ACTIONS(988), - [anon_sym_typedef] = ACTIONS(986), - [anon_sym_extern] = ACTIONS(986), - [anon_sym___attribute__] = ACTIONS(986), - [anon_sym_LBRACE] = ACTIONS(988), - [anon_sym_static] = ACTIONS(986), - [anon_sym_auto] = ACTIONS(986), - [anon_sym_register] = ACTIONS(986), - [anon_sym_inline] = ACTIONS(986), - [anon_sym_const] = ACTIONS(986), - [anon_sym_volatile] = ACTIONS(986), - [anon_sym_restrict] = ACTIONS(986), - [anon_sym__Atomic] = ACTIONS(986), - [anon_sym_signed] = ACTIONS(986), - [anon_sym_unsigned] = ACTIONS(986), - [anon_sym_long] = ACTIONS(986), - [anon_sym_short] = ACTIONS(986), - [sym_primitive_type] = ACTIONS(986), - [anon_sym_enum] = ACTIONS(986), - [anon_sym_struct] = ACTIONS(986), - [anon_sym_union] = ACTIONS(986), - [anon_sym_if] = ACTIONS(986), - [anon_sym_else] = ACTIONS(986), - [anon_sym_switch] = ACTIONS(986), - [anon_sym_case] = ACTIONS(986), - [anon_sym_default] = ACTIONS(986), - [anon_sym_while] = ACTIONS(986), - [anon_sym_do] = ACTIONS(986), - [anon_sym_for] = ACTIONS(986), - [anon_sym_return] = ACTIONS(986), - [anon_sym_break] = ACTIONS(986), - [anon_sym_continue] = ACTIONS(986), - [anon_sym_goto] = ACTIONS(986), - [anon_sym_DASH_DASH] = ACTIONS(988), - [anon_sym_PLUS_PLUS] = ACTIONS(988), - [anon_sym_sizeof] = ACTIONS(986), - [sym_number_literal] = ACTIONS(988), - [anon_sym_L_SQUOTE] = ACTIONS(988), - [anon_sym_u_SQUOTE] = ACTIONS(988), - [anon_sym_U_SQUOTE] = ACTIONS(988), - [anon_sym_u8_SQUOTE] = ACTIONS(988), - [anon_sym_SQUOTE] = ACTIONS(988), - [anon_sym_L_DQUOTE] = ACTIONS(988), - [anon_sym_u_DQUOTE] = ACTIONS(988), - [anon_sym_U_DQUOTE] = ACTIONS(988), - [anon_sym_u8_DQUOTE] = ACTIONS(988), - [anon_sym_DQUOTE] = ACTIONS(988), - [sym_true] = ACTIONS(986), - [sym_false] = ACTIONS(986), - [sym_null] = ACTIONS(986), + [sym_type_qualifier] = STATE(710), + [sym__type_specifier] = STATE(839), + [sym_sized_type_specifier] = STATE(839), + [sym_enum_specifier] = STATE(839), + [sym_struct_specifier] = STATE(839), + [sym_union_specifier] = STATE(839), + [sym__expression] = STATE(574), + [sym_comma_expression] = STATE(1200), + [sym_conditional_expression] = STATE(574), + [sym_assignment_expression] = STATE(574), + [sym_pointer_expression] = STATE(532), + [sym_unary_expression] = STATE(574), + [sym_binary_expression] = STATE(574), + [sym_update_expression] = STATE(574), + [sym_cast_expression] = STATE(574), + [sym_type_descriptor] = STATE(1149), + [sym_sizeof_expression] = STATE(574), + [sym_subscript_expression] = STATE(532), + [sym_call_expression] = STATE(532), + [sym_field_expression] = STATE(532), + [sym_compound_literal_expression] = STATE(574), + [sym_parenthesized_expression] = STATE(532), + [sym_char_literal] = STATE(574), + [sym_concatenated_string] = STATE(574), + [sym_string_literal] = STATE(379), + [sym_macro_type_specifier] = STATE(839), + [aux_sym_type_definition_repeat1] = STATE(710), + [aux_sym_sized_type_specifier_repeat1] = STATE(846), + [sym_identifier] = ACTIONS(1174), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_const] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym_signed] = ACTIONS(1176), + [anon_sym_unsigned] = ACTIONS(1176), + [anon_sym_long] = ACTIONS(1176), + [anon_sym_short] = ACTIONS(1176), + [sym_primitive_type] = ACTIONS(1178), + [anon_sym_enum] = ACTIONS(45), + [anon_sym_struct] = ACTIONS(47), + [anon_sym_union] = ACTIONS(49), + [anon_sym_DASH_DASH] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(73), + [anon_sym_sizeof] = ACTIONS(75), + [sym_number_literal] = ACTIONS(1180), + [anon_sym_L_SQUOTE] = ACTIONS(79), + [anon_sym_u_SQUOTE] = ACTIONS(79), + [anon_sym_U_SQUOTE] = ACTIONS(79), + [anon_sym_u8_SQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_L_DQUOTE] = ACTIONS(81), + [anon_sym_u_DQUOTE] = ACTIONS(81), + [anon_sym_U_DQUOTE] = ACTIONS(81), + [anon_sym_u8_DQUOTE] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(81), + [sym_true] = ACTIONS(1182), + [sym_false] = ACTIONS(1182), + [sym_null] = ACTIONS(1182), [sym_comment] = ACTIONS(3), }, [212] = { - [ts_builtin_sym_end] = ACTIONS(992), - [sym_identifier] = ACTIONS(990), - [aux_sym_preproc_include_token1] = ACTIONS(990), - [aux_sym_preproc_def_token1] = ACTIONS(990), - [aux_sym_preproc_if_token1] = ACTIONS(990), - [aux_sym_preproc_ifdef_token1] = ACTIONS(990), - [aux_sym_preproc_ifdef_token2] = ACTIONS(990), - [sym_preproc_directive] = ACTIONS(990), - [anon_sym_LPAREN2] = ACTIONS(992), - [anon_sym_BANG] = ACTIONS(992), - [anon_sym_TILDE] = ACTIONS(992), - [anon_sym_DASH] = ACTIONS(990), - [anon_sym_PLUS] = ACTIONS(990), - [anon_sym_STAR] = ACTIONS(992), - [anon_sym_AMP] = ACTIONS(992), - [anon_sym_SEMI] = ACTIONS(992), - [anon_sym_typedef] = ACTIONS(990), - [anon_sym_extern] = ACTIONS(990), - [anon_sym___attribute__] = ACTIONS(990), - [anon_sym_LBRACE] = ACTIONS(992), - [anon_sym_static] = ACTIONS(990), - [anon_sym_auto] = ACTIONS(990), - [anon_sym_register] = ACTIONS(990), - [anon_sym_inline] = ACTIONS(990), - [anon_sym_const] = ACTIONS(990), - [anon_sym_volatile] = ACTIONS(990), - [anon_sym_restrict] = ACTIONS(990), - [anon_sym__Atomic] = ACTIONS(990), - [anon_sym_signed] = ACTIONS(990), - [anon_sym_unsigned] = ACTIONS(990), - [anon_sym_long] = ACTIONS(990), - [anon_sym_short] = ACTIONS(990), - [sym_primitive_type] = ACTIONS(990), - [anon_sym_enum] = ACTIONS(990), - [anon_sym_struct] = ACTIONS(990), - [anon_sym_union] = ACTIONS(990), - [anon_sym_if] = ACTIONS(990), - [anon_sym_else] = ACTIONS(990), - [anon_sym_switch] = ACTIONS(990), - [anon_sym_case] = ACTIONS(990), - [anon_sym_default] = ACTIONS(990), - [anon_sym_while] = ACTIONS(990), - [anon_sym_do] = ACTIONS(990), - [anon_sym_for] = ACTIONS(990), - [anon_sym_return] = ACTIONS(990), - [anon_sym_break] = ACTIONS(990), - [anon_sym_continue] = ACTIONS(990), - [anon_sym_goto] = ACTIONS(990), - [anon_sym_DASH_DASH] = ACTIONS(992), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_sizeof] = ACTIONS(990), - [sym_number_literal] = ACTIONS(992), - [anon_sym_L_SQUOTE] = ACTIONS(992), - [anon_sym_u_SQUOTE] = ACTIONS(992), - [anon_sym_U_SQUOTE] = ACTIONS(992), - [anon_sym_u8_SQUOTE] = ACTIONS(992), - [anon_sym_SQUOTE] = ACTIONS(992), - [anon_sym_L_DQUOTE] = ACTIONS(992), - [anon_sym_u_DQUOTE] = ACTIONS(992), - [anon_sym_U_DQUOTE] = ACTIONS(992), - [anon_sym_u8_DQUOTE] = ACTIONS(992), - [anon_sym_DQUOTE] = ACTIONS(992), - [sym_true] = ACTIONS(990), - [sym_false] = ACTIONS(990), - [sym_null] = ACTIONS(990), - [sym_comment] = ACTIONS(3), - }, - [213] = { - [sym_identifier] = ACTIONS(1010), - [aux_sym_preproc_include_token1] = ACTIONS(1010), - [aux_sym_preproc_def_token1] = ACTIONS(1010), - [aux_sym_preproc_if_token1] = ACTIONS(1010), - [aux_sym_preproc_if_token2] = ACTIONS(1010), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1010), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1010), - [sym_preproc_directive] = ACTIONS(1010), - [anon_sym_LPAREN2] = ACTIONS(1012), - [anon_sym_BANG] = ACTIONS(1012), - [anon_sym_TILDE] = ACTIONS(1012), - [anon_sym_DASH] = ACTIONS(1010), - [anon_sym_PLUS] = ACTIONS(1010), - [anon_sym_STAR] = ACTIONS(1012), - [anon_sym_AMP] = ACTIONS(1012), - [anon_sym_SEMI] = ACTIONS(1012), - [anon_sym_typedef] = ACTIONS(1010), - [anon_sym_extern] = ACTIONS(1010), - [anon_sym___attribute__] = ACTIONS(1010), - [anon_sym_LBRACE] = ACTIONS(1012), - [anon_sym_static] = ACTIONS(1010), - [anon_sym_auto] = ACTIONS(1010), - [anon_sym_register] = ACTIONS(1010), - [anon_sym_inline] = ACTIONS(1010), - [anon_sym_const] = ACTIONS(1010), - [anon_sym_volatile] = ACTIONS(1010), - [anon_sym_restrict] = ACTIONS(1010), - [anon_sym__Atomic] = ACTIONS(1010), - [anon_sym_signed] = ACTIONS(1010), - [anon_sym_unsigned] = ACTIONS(1010), - [anon_sym_long] = ACTIONS(1010), - [anon_sym_short] = ACTIONS(1010), - [sym_primitive_type] = ACTIONS(1010), - [anon_sym_enum] = ACTIONS(1010), - [anon_sym_struct] = ACTIONS(1010), - [anon_sym_union] = ACTIONS(1010), - [anon_sym_if] = ACTIONS(1010), - [anon_sym_else] = ACTIONS(1010), - [anon_sym_switch] = ACTIONS(1010), - [anon_sym_case] = ACTIONS(1010), - [anon_sym_default] = ACTIONS(1010), - [anon_sym_while] = ACTIONS(1010), - [anon_sym_do] = ACTIONS(1010), - [anon_sym_for] = ACTIONS(1010), - [anon_sym_return] = ACTIONS(1010), - [anon_sym_break] = ACTIONS(1010), - [anon_sym_continue] = ACTIONS(1010), - [anon_sym_goto] = ACTIONS(1010), - [anon_sym_DASH_DASH] = ACTIONS(1012), - [anon_sym_PLUS_PLUS] = ACTIONS(1012), - [anon_sym_sizeof] = ACTIONS(1010), - [sym_number_literal] = ACTIONS(1012), - [anon_sym_L_SQUOTE] = ACTIONS(1012), - [anon_sym_u_SQUOTE] = ACTIONS(1012), - [anon_sym_U_SQUOTE] = ACTIONS(1012), - [anon_sym_u8_SQUOTE] = ACTIONS(1012), - [anon_sym_SQUOTE] = ACTIONS(1012), - [anon_sym_L_DQUOTE] = ACTIONS(1012), - [anon_sym_u_DQUOTE] = ACTIONS(1012), - [anon_sym_U_DQUOTE] = ACTIONS(1012), - [anon_sym_u8_DQUOTE] = ACTIONS(1012), - [anon_sym_DQUOTE] = ACTIONS(1012), - [sym_true] = ACTIONS(1010), - [sym_false] = ACTIONS(1010), - [sym_null] = ACTIONS(1010), + [sym_type_qualifier] = STATE(710), + [sym__type_specifier] = STATE(839), + [sym_sized_type_specifier] = STATE(839), + [sym_enum_specifier] = STATE(839), + [sym_struct_specifier] = STATE(839), + [sym_union_specifier] = STATE(839), + [sym__expression] = STATE(574), + [sym_comma_expression] = STATE(1200), + [sym_conditional_expression] = STATE(574), + [sym_assignment_expression] = STATE(574), + [sym_pointer_expression] = STATE(532), + [sym_unary_expression] = STATE(574), + [sym_binary_expression] = STATE(574), + [sym_update_expression] = STATE(574), + [sym_cast_expression] = STATE(574), + [sym_type_descriptor] = STATE(1183), + [sym_sizeof_expression] = STATE(574), + [sym_subscript_expression] = STATE(532), + [sym_call_expression] = STATE(532), + [sym_field_expression] = STATE(532), + [sym_compound_literal_expression] = STATE(574), + [sym_parenthesized_expression] = STATE(532), + [sym_char_literal] = STATE(574), + [sym_concatenated_string] = STATE(574), + [sym_string_literal] = STATE(379), + [sym_macro_type_specifier] = STATE(839), + [aux_sym_type_definition_repeat1] = STATE(710), + [aux_sym_sized_type_specifier_repeat1] = STATE(846), + [sym_identifier] = ACTIONS(1174), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_const] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym_signed] = ACTIONS(1176), + [anon_sym_unsigned] = ACTIONS(1176), + [anon_sym_long] = ACTIONS(1176), + [anon_sym_short] = ACTIONS(1176), + [sym_primitive_type] = ACTIONS(1178), + [anon_sym_enum] = ACTIONS(45), + [anon_sym_struct] = ACTIONS(47), + [anon_sym_union] = ACTIONS(49), + [anon_sym_DASH_DASH] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(73), + [anon_sym_sizeof] = ACTIONS(75), + [sym_number_literal] = ACTIONS(1180), + [anon_sym_L_SQUOTE] = ACTIONS(79), + [anon_sym_u_SQUOTE] = ACTIONS(79), + [anon_sym_U_SQUOTE] = ACTIONS(79), + [anon_sym_u8_SQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_L_DQUOTE] = ACTIONS(81), + [anon_sym_u_DQUOTE] = ACTIONS(81), + [anon_sym_U_DQUOTE] = ACTIONS(81), + [anon_sym_u8_DQUOTE] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(81), + [sym_true] = ACTIONS(1182), + [sym_false] = ACTIONS(1182), + [sym_null] = ACTIONS(1182), + [sym_comment] = ACTIONS(3), + }, + [213] = { + [sym_identifier] = ACTIONS(1058), + [aux_sym_preproc_include_token1] = ACTIONS(1058), + [aux_sym_preproc_def_token1] = ACTIONS(1058), + [aux_sym_preproc_if_token1] = ACTIONS(1058), + [aux_sym_preproc_if_token2] = ACTIONS(1058), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1058), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1058), + [sym_preproc_directive] = ACTIONS(1058), + [anon_sym_LPAREN2] = ACTIONS(1060), + [anon_sym_BANG] = ACTIONS(1060), + [anon_sym_TILDE] = ACTIONS(1060), + [anon_sym_DASH] = ACTIONS(1058), + [anon_sym_PLUS] = ACTIONS(1058), + [anon_sym_STAR] = ACTIONS(1060), + [anon_sym_AMP] = ACTIONS(1060), + [anon_sym_SEMI] = ACTIONS(1060), + [anon_sym_typedef] = ACTIONS(1058), + [anon_sym_extern] = ACTIONS(1058), + [anon_sym___attribute__] = ACTIONS(1058), + [anon_sym_LBRACE] = ACTIONS(1060), + [anon_sym_static] = ACTIONS(1058), + [anon_sym_auto] = ACTIONS(1058), + [anon_sym_register] = ACTIONS(1058), + [anon_sym_inline] = ACTIONS(1058), + [anon_sym_const] = ACTIONS(1058), + [anon_sym_volatile] = ACTIONS(1058), + [anon_sym_restrict] = ACTIONS(1058), + [anon_sym__Atomic] = ACTIONS(1058), + [anon_sym_signed] = ACTIONS(1058), + [anon_sym_unsigned] = ACTIONS(1058), + [anon_sym_long] = ACTIONS(1058), + [anon_sym_short] = ACTIONS(1058), + [sym_primitive_type] = ACTIONS(1058), + [anon_sym_enum] = ACTIONS(1058), + [anon_sym_struct] = ACTIONS(1058), + [anon_sym_union] = ACTIONS(1058), + [anon_sym_if] = ACTIONS(1058), + [anon_sym_else] = ACTIONS(1058), + [anon_sym_switch] = ACTIONS(1058), + [anon_sym_case] = ACTIONS(1058), + [anon_sym_default] = ACTIONS(1058), + [anon_sym_while] = ACTIONS(1058), + [anon_sym_do] = ACTIONS(1058), + [anon_sym_for] = ACTIONS(1058), + [anon_sym_return] = ACTIONS(1058), + [anon_sym_break] = ACTIONS(1058), + [anon_sym_continue] = ACTIONS(1058), + [anon_sym_goto] = ACTIONS(1058), + [anon_sym_DASH_DASH] = ACTIONS(1060), + [anon_sym_PLUS_PLUS] = ACTIONS(1060), + [anon_sym_sizeof] = ACTIONS(1058), + [sym_number_literal] = ACTIONS(1060), + [anon_sym_L_SQUOTE] = ACTIONS(1060), + [anon_sym_u_SQUOTE] = ACTIONS(1060), + [anon_sym_U_SQUOTE] = ACTIONS(1060), + [anon_sym_u8_SQUOTE] = ACTIONS(1060), + [anon_sym_SQUOTE] = ACTIONS(1060), + [anon_sym_L_DQUOTE] = ACTIONS(1060), + [anon_sym_u_DQUOTE] = ACTIONS(1060), + [anon_sym_U_DQUOTE] = ACTIONS(1060), + [anon_sym_u8_DQUOTE] = ACTIONS(1060), + [anon_sym_DQUOTE] = ACTIONS(1060), + [sym_true] = ACTIONS(1058), + [sym_false] = ACTIONS(1058), + [sym_null] = ACTIONS(1058), [sym_comment] = ACTIONS(3), }, [214] = { - [ts_builtin_sym_end] = ACTIONS(996), - [sym_identifier] = ACTIONS(994), - [aux_sym_preproc_include_token1] = ACTIONS(994), - [aux_sym_preproc_def_token1] = ACTIONS(994), - [aux_sym_preproc_if_token1] = ACTIONS(994), - [aux_sym_preproc_ifdef_token1] = ACTIONS(994), - [aux_sym_preproc_ifdef_token2] = ACTIONS(994), - [sym_preproc_directive] = ACTIONS(994), - [anon_sym_LPAREN2] = ACTIONS(996), - [anon_sym_BANG] = ACTIONS(996), - [anon_sym_TILDE] = ACTIONS(996), - [anon_sym_DASH] = ACTIONS(994), - [anon_sym_PLUS] = ACTIONS(994), - [anon_sym_STAR] = ACTIONS(996), - [anon_sym_AMP] = ACTIONS(996), - [anon_sym_SEMI] = ACTIONS(996), - [anon_sym_typedef] = ACTIONS(994), - [anon_sym_extern] = ACTIONS(994), - [anon_sym___attribute__] = ACTIONS(994), - [anon_sym_LBRACE] = ACTIONS(996), - [anon_sym_static] = ACTIONS(994), - [anon_sym_auto] = ACTIONS(994), - [anon_sym_register] = ACTIONS(994), - [anon_sym_inline] = ACTIONS(994), - [anon_sym_const] = ACTIONS(994), - [anon_sym_volatile] = ACTIONS(994), - [anon_sym_restrict] = ACTIONS(994), - [anon_sym__Atomic] = ACTIONS(994), - [anon_sym_signed] = ACTIONS(994), - [anon_sym_unsigned] = ACTIONS(994), - [anon_sym_long] = ACTIONS(994), - [anon_sym_short] = ACTIONS(994), - [sym_primitive_type] = ACTIONS(994), - [anon_sym_enum] = ACTIONS(994), - [anon_sym_struct] = ACTIONS(994), - [anon_sym_union] = ACTIONS(994), - [anon_sym_if] = ACTIONS(994), - [anon_sym_else] = ACTIONS(994), - [anon_sym_switch] = ACTIONS(994), - [anon_sym_case] = ACTIONS(994), - [anon_sym_default] = ACTIONS(994), - [anon_sym_while] = ACTIONS(994), - [anon_sym_do] = ACTIONS(994), - [anon_sym_for] = ACTIONS(994), - [anon_sym_return] = ACTIONS(994), - [anon_sym_break] = ACTIONS(994), - [anon_sym_continue] = ACTIONS(994), - [anon_sym_goto] = ACTIONS(994), - [anon_sym_DASH_DASH] = ACTIONS(996), - [anon_sym_PLUS_PLUS] = ACTIONS(996), - [anon_sym_sizeof] = ACTIONS(994), - [sym_number_literal] = ACTIONS(996), - [anon_sym_L_SQUOTE] = ACTIONS(996), - [anon_sym_u_SQUOTE] = ACTIONS(996), - [anon_sym_U_SQUOTE] = ACTIONS(996), - [anon_sym_u8_SQUOTE] = ACTIONS(996), - [anon_sym_SQUOTE] = ACTIONS(996), - [anon_sym_L_DQUOTE] = ACTIONS(996), - [anon_sym_u_DQUOTE] = ACTIONS(996), - [anon_sym_U_DQUOTE] = ACTIONS(996), - [anon_sym_u8_DQUOTE] = ACTIONS(996), - [anon_sym_DQUOTE] = ACTIONS(996), - [sym_true] = ACTIONS(994), - [sym_false] = ACTIONS(994), - [sym_null] = ACTIONS(994), + [ts_builtin_sym_end] = ACTIONS(970), + [sym_identifier] = ACTIONS(968), + [aux_sym_preproc_include_token1] = ACTIONS(968), + [aux_sym_preproc_def_token1] = ACTIONS(968), + [aux_sym_preproc_if_token1] = ACTIONS(968), + [aux_sym_preproc_ifdef_token1] = ACTIONS(968), + [aux_sym_preproc_ifdef_token2] = ACTIONS(968), + [sym_preproc_directive] = ACTIONS(968), + [anon_sym_LPAREN2] = ACTIONS(970), + [anon_sym_BANG] = ACTIONS(970), + [anon_sym_TILDE] = ACTIONS(970), + [anon_sym_DASH] = ACTIONS(968), + [anon_sym_PLUS] = ACTIONS(968), + [anon_sym_STAR] = ACTIONS(970), + [anon_sym_AMP] = ACTIONS(970), + [anon_sym_SEMI] = ACTIONS(970), + [anon_sym_typedef] = ACTIONS(968), + [anon_sym_extern] = ACTIONS(968), + [anon_sym___attribute__] = ACTIONS(968), + [anon_sym_LBRACE] = ACTIONS(970), + [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_volatile] = ACTIONS(968), + [anon_sym_restrict] = ACTIONS(968), + [anon_sym__Atomic] = ACTIONS(968), + [anon_sym_signed] = 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_DASH_DASH] = ACTIONS(970), + [anon_sym_PLUS_PLUS] = ACTIONS(970), + [anon_sym_sizeof] = ACTIONS(968), + [sym_number_literal] = ACTIONS(970), + [anon_sym_L_SQUOTE] = ACTIONS(970), + [anon_sym_u_SQUOTE] = ACTIONS(970), + [anon_sym_U_SQUOTE] = ACTIONS(970), + [anon_sym_u8_SQUOTE] = ACTIONS(970), + [anon_sym_SQUOTE] = ACTIONS(970), + [anon_sym_L_DQUOTE] = ACTIONS(970), + [anon_sym_u_DQUOTE] = ACTIONS(970), + [anon_sym_U_DQUOTE] = ACTIONS(970), + [anon_sym_u8_DQUOTE] = ACTIONS(970), + [anon_sym_DQUOTE] = ACTIONS(970), + [sym_true] = ACTIONS(968), + [sym_false] = ACTIONS(968), + [sym_null] = ACTIONS(968), [sym_comment] = ACTIONS(3), }, [215] = { + [ts_builtin_sym_end] = ACTIONS(1032), + [sym_identifier] = ACTIONS(1030), + [aux_sym_preproc_include_token1] = ACTIONS(1030), + [aux_sym_preproc_def_token1] = ACTIONS(1030), + [aux_sym_preproc_if_token1] = ACTIONS(1030), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1030), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1030), + [sym_preproc_directive] = ACTIONS(1030), + [anon_sym_LPAREN2] = ACTIONS(1032), + [anon_sym_BANG] = ACTIONS(1032), + [anon_sym_TILDE] = ACTIONS(1032), + [anon_sym_DASH] = ACTIONS(1030), + [anon_sym_PLUS] = ACTIONS(1030), + [anon_sym_STAR] = ACTIONS(1032), + [anon_sym_AMP] = ACTIONS(1032), + [anon_sym_SEMI] = ACTIONS(1032), + [anon_sym_typedef] = ACTIONS(1030), + [anon_sym_extern] = ACTIONS(1030), + [anon_sym___attribute__] = ACTIONS(1030), + [anon_sym_LBRACE] = ACTIONS(1032), + [anon_sym_static] = ACTIONS(1030), + [anon_sym_auto] = ACTIONS(1030), + [anon_sym_register] = ACTIONS(1030), + [anon_sym_inline] = ACTIONS(1030), + [anon_sym_const] = ACTIONS(1030), + [anon_sym_volatile] = ACTIONS(1030), + [anon_sym_restrict] = ACTIONS(1030), + [anon_sym__Atomic] = ACTIONS(1030), + [anon_sym_signed] = ACTIONS(1030), + [anon_sym_unsigned] = ACTIONS(1030), + [anon_sym_long] = ACTIONS(1030), + [anon_sym_short] = ACTIONS(1030), + [sym_primitive_type] = ACTIONS(1030), + [anon_sym_enum] = ACTIONS(1030), + [anon_sym_struct] = ACTIONS(1030), + [anon_sym_union] = ACTIONS(1030), + [anon_sym_if] = ACTIONS(1030), + [anon_sym_else] = ACTIONS(1030), + [anon_sym_switch] = ACTIONS(1030), + [anon_sym_case] = ACTIONS(1030), + [anon_sym_default] = ACTIONS(1030), + [anon_sym_while] = ACTIONS(1030), + [anon_sym_do] = ACTIONS(1030), + [anon_sym_for] = ACTIONS(1030), + [anon_sym_return] = ACTIONS(1030), + [anon_sym_break] = ACTIONS(1030), + [anon_sym_continue] = ACTIONS(1030), + [anon_sym_goto] = ACTIONS(1030), + [anon_sym_DASH_DASH] = ACTIONS(1032), + [anon_sym_PLUS_PLUS] = ACTIONS(1032), + [anon_sym_sizeof] = ACTIONS(1030), + [sym_number_literal] = ACTIONS(1032), + [anon_sym_L_SQUOTE] = ACTIONS(1032), + [anon_sym_u_SQUOTE] = ACTIONS(1032), + [anon_sym_U_SQUOTE] = ACTIONS(1032), + [anon_sym_u8_SQUOTE] = ACTIONS(1032), + [anon_sym_SQUOTE] = ACTIONS(1032), + [anon_sym_L_DQUOTE] = ACTIONS(1032), + [anon_sym_u_DQUOTE] = ACTIONS(1032), + [anon_sym_U_DQUOTE] = ACTIONS(1032), + [anon_sym_u8_DQUOTE] = ACTIONS(1032), + [anon_sym_DQUOTE] = ACTIONS(1032), + [sym_true] = ACTIONS(1030), + [sym_false] = ACTIONS(1030), + [sym_null] = ACTIONS(1030), + [sym_comment] = ACTIONS(3), + }, + [216] = { + [ts_builtin_sym_end] = ACTIONS(1068), + [sym_identifier] = ACTIONS(1066), + [aux_sym_preproc_include_token1] = ACTIONS(1066), + [aux_sym_preproc_def_token1] = ACTIONS(1066), + [aux_sym_preproc_if_token1] = ACTIONS(1066), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1066), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1066), + [sym_preproc_directive] = ACTIONS(1066), + [anon_sym_LPAREN2] = ACTIONS(1068), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_TILDE] = ACTIONS(1068), + [anon_sym_DASH] = ACTIONS(1066), + [anon_sym_PLUS] = ACTIONS(1066), + [anon_sym_STAR] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(1068), + [anon_sym_SEMI] = ACTIONS(1068), + [anon_sym_typedef] = ACTIONS(1066), + [anon_sym_extern] = ACTIONS(1066), + [anon_sym___attribute__] = ACTIONS(1066), + [anon_sym_LBRACE] = ACTIONS(1068), + [anon_sym_static] = ACTIONS(1066), + [anon_sym_auto] = ACTIONS(1066), + [anon_sym_register] = ACTIONS(1066), + [anon_sym_inline] = ACTIONS(1066), + [anon_sym_const] = ACTIONS(1066), + [anon_sym_volatile] = ACTIONS(1066), + [anon_sym_restrict] = ACTIONS(1066), + [anon_sym__Atomic] = ACTIONS(1066), + [anon_sym_signed] = ACTIONS(1066), + [anon_sym_unsigned] = ACTIONS(1066), + [anon_sym_long] = ACTIONS(1066), + [anon_sym_short] = ACTIONS(1066), + [sym_primitive_type] = ACTIONS(1066), + [anon_sym_enum] = ACTIONS(1066), + [anon_sym_struct] = ACTIONS(1066), + [anon_sym_union] = ACTIONS(1066), + [anon_sym_if] = ACTIONS(1066), + [anon_sym_else] = ACTIONS(1066), + [anon_sym_switch] = ACTIONS(1066), + [anon_sym_case] = ACTIONS(1066), + [anon_sym_default] = ACTIONS(1066), + [anon_sym_while] = ACTIONS(1066), + [anon_sym_do] = ACTIONS(1066), + [anon_sym_for] = ACTIONS(1066), + [anon_sym_return] = ACTIONS(1066), + [anon_sym_break] = ACTIONS(1066), + [anon_sym_continue] = ACTIONS(1066), + [anon_sym_goto] = ACTIONS(1066), + [anon_sym_DASH_DASH] = ACTIONS(1068), + [anon_sym_PLUS_PLUS] = ACTIONS(1068), + [anon_sym_sizeof] = ACTIONS(1066), + [sym_number_literal] = ACTIONS(1068), + [anon_sym_L_SQUOTE] = ACTIONS(1068), + [anon_sym_u_SQUOTE] = ACTIONS(1068), + [anon_sym_U_SQUOTE] = ACTIONS(1068), + [anon_sym_u8_SQUOTE] = ACTIONS(1068), + [anon_sym_SQUOTE] = ACTIONS(1068), + [anon_sym_L_DQUOTE] = ACTIONS(1068), + [anon_sym_u_DQUOTE] = ACTIONS(1068), + [anon_sym_U_DQUOTE] = ACTIONS(1068), + [anon_sym_u8_DQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE] = ACTIONS(1068), + [sym_true] = ACTIONS(1066), + [sym_false] = ACTIONS(1066), + [sym_null] = ACTIONS(1066), + [sym_comment] = ACTIONS(3), + }, + [217] = { [sym_identifier] = ACTIONS(1002), [aux_sym_preproc_include_token1] = ACTIONS(1002), [aux_sym_preproc_def_token1] = ACTIONS(1002), [aux_sym_preproc_if_token1] = ACTIONS(1002), - [aux_sym_preproc_if_token2] = ACTIONS(1002), [aux_sym_preproc_ifdef_token1] = ACTIONS(1002), [aux_sym_preproc_ifdef_token2] = ACTIONS(1002), [sym_preproc_directive] = ACTIONS(1002), @@ -24357,6 +24508,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_extern] = ACTIONS(1002), [anon_sym___attribute__] = ACTIONS(1002), [anon_sym_LBRACE] = ACTIONS(1004), + [anon_sym_RBRACE] = ACTIONS(1004), [anon_sym_static] = ACTIONS(1002), [anon_sym_auto] = ACTIONS(1002), [anon_sym_register] = ACTIONS(1002), @@ -24404,12 +24556,80 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1002), [sym_comment] = ACTIONS(3), }, - [216] = { - [ts_builtin_sym_end] = ACTIONS(1020), + [218] = { + [sym_identifier] = ACTIONS(1038), + [aux_sym_preproc_include_token1] = ACTIONS(1038), + [aux_sym_preproc_def_token1] = ACTIONS(1038), + [aux_sym_preproc_if_token1] = ACTIONS(1038), + [aux_sym_preproc_if_token2] = ACTIONS(1038), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1038), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1038), + [sym_preproc_directive] = ACTIONS(1038), + [anon_sym_LPAREN2] = ACTIONS(1040), + [anon_sym_BANG] = ACTIONS(1040), + [anon_sym_TILDE] = ACTIONS(1040), + [anon_sym_DASH] = ACTIONS(1038), + [anon_sym_PLUS] = ACTIONS(1038), + [anon_sym_STAR] = ACTIONS(1040), + [anon_sym_AMP] = ACTIONS(1040), + [anon_sym_SEMI] = ACTIONS(1040), + [anon_sym_typedef] = ACTIONS(1038), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym___attribute__] = ACTIONS(1038), + [anon_sym_LBRACE] = ACTIONS(1040), + [anon_sym_static] = ACTIONS(1038), + [anon_sym_auto] = ACTIONS(1038), + [anon_sym_register] = ACTIONS(1038), + [anon_sym_inline] = ACTIONS(1038), + [anon_sym_const] = ACTIONS(1038), + [anon_sym_volatile] = ACTIONS(1038), + [anon_sym_restrict] = ACTIONS(1038), + [anon_sym__Atomic] = ACTIONS(1038), + [anon_sym_signed] = ACTIONS(1038), + [anon_sym_unsigned] = ACTIONS(1038), + [anon_sym_long] = ACTIONS(1038), + [anon_sym_short] = ACTIONS(1038), + [sym_primitive_type] = ACTIONS(1038), + [anon_sym_enum] = ACTIONS(1038), + [anon_sym_struct] = ACTIONS(1038), + [anon_sym_union] = ACTIONS(1038), + [anon_sym_if] = ACTIONS(1038), + [anon_sym_else] = ACTIONS(1038), + [anon_sym_switch] = ACTIONS(1038), + [anon_sym_case] = ACTIONS(1038), + [anon_sym_default] = ACTIONS(1038), + [anon_sym_while] = ACTIONS(1038), + [anon_sym_do] = ACTIONS(1038), + [anon_sym_for] = ACTIONS(1038), + [anon_sym_return] = ACTIONS(1038), + [anon_sym_break] = ACTIONS(1038), + [anon_sym_continue] = ACTIONS(1038), + [anon_sym_goto] = ACTIONS(1038), + [anon_sym_DASH_DASH] = ACTIONS(1040), + [anon_sym_PLUS_PLUS] = ACTIONS(1040), + [anon_sym_sizeof] = ACTIONS(1038), + [sym_number_literal] = ACTIONS(1040), + [anon_sym_L_SQUOTE] = ACTIONS(1040), + [anon_sym_u_SQUOTE] = ACTIONS(1040), + [anon_sym_U_SQUOTE] = ACTIONS(1040), + [anon_sym_u8_SQUOTE] = ACTIONS(1040), + [anon_sym_SQUOTE] = ACTIONS(1040), + [anon_sym_L_DQUOTE] = ACTIONS(1040), + [anon_sym_u_DQUOTE] = ACTIONS(1040), + [anon_sym_U_DQUOTE] = ACTIONS(1040), + [anon_sym_u8_DQUOTE] = ACTIONS(1040), + [anon_sym_DQUOTE] = ACTIONS(1040), + [sym_true] = ACTIONS(1038), + [sym_false] = ACTIONS(1038), + [sym_null] = ACTIONS(1038), + [sym_comment] = ACTIONS(3), + }, + [219] = { [sym_identifier] = ACTIONS(1018), [aux_sym_preproc_include_token1] = ACTIONS(1018), [aux_sym_preproc_def_token1] = ACTIONS(1018), [aux_sym_preproc_if_token1] = ACTIONS(1018), + [aux_sym_preproc_if_token2] = ACTIONS(1018), [aux_sym_preproc_ifdef_token1] = ACTIONS(1018), [aux_sym_preproc_ifdef_token2] = ACTIONS(1018), [sym_preproc_directive] = ACTIONS(1018), @@ -24472,548 +24692,344 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1018), [sym_comment] = ACTIONS(3), }, - [217] = { - [sym_identifier] = ACTIONS(1082), - [aux_sym_preproc_include_token1] = ACTIONS(1082), - [aux_sym_preproc_def_token1] = ACTIONS(1082), - [aux_sym_preproc_if_token1] = ACTIONS(1082), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1082), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1082), - [sym_preproc_directive] = ACTIONS(1082), - [anon_sym_LPAREN2] = ACTIONS(1084), - [anon_sym_BANG] = ACTIONS(1084), - [anon_sym_TILDE] = ACTIONS(1084), - [anon_sym_DASH] = ACTIONS(1082), - [anon_sym_PLUS] = ACTIONS(1082), - [anon_sym_STAR] = ACTIONS(1084), - [anon_sym_AMP] = ACTIONS(1084), - [anon_sym_SEMI] = ACTIONS(1084), - [anon_sym_typedef] = ACTIONS(1082), - [anon_sym_extern] = ACTIONS(1082), - [anon_sym___attribute__] = ACTIONS(1082), - [anon_sym_LBRACE] = ACTIONS(1084), - [anon_sym_RBRACE] = 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_volatile] = ACTIONS(1082), - [anon_sym_restrict] = ACTIONS(1082), - [anon_sym__Atomic] = ACTIONS(1082), - [anon_sym_signed] = 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_else] = 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_DASH_DASH] = ACTIONS(1084), - [anon_sym_PLUS_PLUS] = ACTIONS(1084), - [anon_sym_sizeof] = ACTIONS(1082), - [sym_number_literal] = ACTIONS(1084), - [anon_sym_L_SQUOTE] = ACTIONS(1084), - [anon_sym_u_SQUOTE] = ACTIONS(1084), - [anon_sym_U_SQUOTE] = ACTIONS(1084), - [anon_sym_u8_SQUOTE] = ACTIONS(1084), - [anon_sym_SQUOTE] = ACTIONS(1084), - [anon_sym_L_DQUOTE] = ACTIONS(1084), - [anon_sym_u_DQUOTE] = ACTIONS(1084), - [anon_sym_U_DQUOTE] = ACTIONS(1084), - [anon_sym_u8_DQUOTE] = ACTIONS(1084), - [anon_sym_DQUOTE] = ACTIONS(1084), - [sym_true] = ACTIONS(1082), - [sym_false] = ACTIONS(1082), - [sym_null] = ACTIONS(1082), - [sym_comment] = ACTIONS(3), - }, - [218] = { - [sym_type_qualifier] = STATE(722), - [sym__type_specifier] = STATE(850), - [sym_sized_type_specifier] = STATE(850), - [sym_enum_specifier] = STATE(850), - [sym_struct_specifier] = STATE(850), - [sym_union_specifier] = STATE(850), - [sym__expression] = STATE(598), - [sym_comma_expression] = STATE(1190), - [sym_conditional_expression] = STATE(598), - [sym_assignment_expression] = STATE(598), - [sym_pointer_expression] = STATE(505), - [sym_unary_expression] = STATE(598), - [sym_binary_expression] = STATE(598), - [sym_update_expression] = STATE(598), - [sym_cast_expression] = STATE(598), - [sym_type_descriptor] = STATE(1092), - [sym_sizeof_expression] = STATE(598), - [sym_subscript_expression] = STATE(505), - [sym_call_expression] = STATE(505), - [sym_field_expression] = STATE(505), - [sym_compound_literal_expression] = STATE(598), - [sym_parenthesized_expression] = STATE(505), - [sym_char_literal] = STATE(598), - [sym_concatenated_string] = STATE(598), - [sym_string_literal] = STATE(376), - [sym_macro_type_specifier] = STATE(850), - [aux_sym_type_definition_repeat1] = STATE(722), - [aux_sym_sized_type_specifier_repeat1] = STATE(854), - [sym_identifier] = ACTIONS(1182), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_const] = ACTIONS(39), - [anon_sym_volatile] = ACTIONS(39), - [anon_sym_restrict] = ACTIONS(39), - [anon_sym__Atomic] = ACTIONS(39), - [anon_sym_signed] = ACTIONS(1184), - [anon_sym_unsigned] = ACTIONS(1184), - [anon_sym_long] = ACTIONS(1184), - [anon_sym_short] = ACTIONS(1184), - [sym_primitive_type] = ACTIONS(1186), - [anon_sym_enum] = ACTIONS(45), - [anon_sym_struct] = ACTIONS(47), - [anon_sym_union] = ACTIONS(49), - [anon_sym_DASH_DASH] = ACTIONS(73), - [anon_sym_PLUS_PLUS] = ACTIONS(73), - [anon_sym_sizeof] = ACTIONS(75), - [sym_number_literal] = ACTIONS(1188), - [anon_sym_L_SQUOTE] = ACTIONS(79), - [anon_sym_u_SQUOTE] = ACTIONS(79), - [anon_sym_U_SQUOTE] = ACTIONS(79), - [anon_sym_u8_SQUOTE] = ACTIONS(79), - [anon_sym_SQUOTE] = ACTIONS(79), - [anon_sym_L_DQUOTE] = ACTIONS(81), - [anon_sym_u_DQUOTE] = ACTIONS(81), - [anon_sym_U_DQUOTE] = ACTIONS(81), - [anon_sym_u8_DQUOTE] = ACTIONS(81), - [anon_sym_DQUOTE] = ACTIONS(81), - [sym_true] = ACTIONS(1190), - [sym_false] = ACTIONS(1190), - [sym_null] = ACTIONS(1190), - [sym_comment] = ACTIONS(3), - }, - [219] = { - [ts_builtin_sym_end] = ACTIONS(1048), - [sym_identifier] = ACTIONS(1046), - [aux_sym_preproc_include_token1] = ACTIONS(1046), - [aux_sym_preproc_def_token1] = ACTIONS(1046), - [aux_sym_preproc_if_token1] = ACTIONS(1046), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1046), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1046), - [sym_preproc_directive] = ACTIONS(1046), - [anon_sym_LPAREN2] = ACTIONS(1048), - [anon_sym_BANG] = ACTIONS(1048), - [anon_sym_TILDE] = ACTIONS(1048), - [anon_sym_DASH] = ACTIONS(1046), - [anon_sym_PLUS] = ACTIONS(1046), - [anon_sym_STAR] = ACTIONS(1048), - [anon_sym_AMP] = ACTIONS(1048), - [anon_sym_SEMI] = ACTIONS(1048), - [anon_sym_typedef] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1046), - [anon_sym___attribute__] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(1048), - [anon_sym_static] = ACTIONS(1046), - [anon_sym_auto] = ACTIONS(1046), - [anon_sym_register] = ACTIONS(1046), - [anon_sym_inline] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1046), - [anon_sym_volatile] = ACTIONS(1046), - [anon_sym_restrict] = ACTIONS(1046), - [anon_sym__Atomic] = ACTIONS(1046), - [anon_sym_signed] = ACTIONS(1046), - [anon_sym_unsigned] = ACTIONS(1046), - [anon_sym_long] = ACTIONS(1046), - [anon_sym_short] = ACTIONS(1046), - [sym_primitive_type] = ACTIONS(1046), - [anon_sym_enum] = ACTIONS(1046), - [anon_sym_struct] = ACTIONS(1046), - [anon_sym_union] = ACTIONS(1046), - [anon_sym_if] = ACTIONS(1046), - [anon_sym_else] = ACTIONS(1046), - [anon_sym_switch] = ACTIONS(1046), - [anon_sym_case] = ACTIONS(1046), - [anon_sym_default] = ACTIONS(1046), - [anon_sym_while] = ACTIONS(1046), - [anon_sym_do] = ACTIONS(1046), - [anon_sym_for] = ACTIONS(1046), - [anon_sym_return] = ACTIONS(1046), - [anon_sym_break] = ACTIONS(1046), - [anon_sym_continue] = ACTIONS(1046), - [anon_sym_goto] = ACTIONS(1046), - [anon_sym_DASH_DASH] = ACTIONS(1048), - [anon_sym_PLUS_PLUS] = ACTIONS(1048), - [anon_sym_sizeof] = ACTIONS(1046), - [sym_number_literal] = ACTIONS(1048), - [anon_sym_L_SQUOTE] = ACTIONS(1048), - [anon_sym_u_SQUOTE] = ACTIONS(1048), - [anon_sym_U_SQUOTE] = ACTIONS(1048), - [anon_sym_u8_SQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1048), - [anon_sym_L_DQUOTE] = ACTIONS(1048), - [anon_sym_u_DQUOTE] = ACTIONS(1048), - [anon_sym_U_DQUOTE] = ACTIONS(1048), - [anon_sym_u8_DQUOTE] = ACTIONS(1048), - [anon_sym_DQUOTE] = ACTIONS(1048), - [sym_true] = ACTIONS(1046), - [sym_false] = ACTIONS(1046), - [sym_null] = ACTIONS(1046), - [sym_comment] = ACTIONS(3), - }, [220] = { - [ts_builtin_sym_end] = ACTIONS(1000), - [sym_identifier] = ACTIONS(998), - [aux_sym_preproc_include_token1] = ACTIONS(998), - [aux_sym_preproc_def_token1] = ACTIONS(998), - [aux_sym_preproc_if_token1] = ACTIONS(998), - [aux_sym_preproc_ifdef_token1] = ACTIONS(998), - [aux_sym_preproc_ifdef_token2] = ACTIONS(998), - [sym_preproc_directive] = ACTIONS(998), - [anon_sym_LPAREN2] = ACTIONS(1000), - [anon_sym_BANG] = ACTIONS(1000), - [anon_sym_TILDE] = ACTIONS(1000), - [anon_sym_DASH] = ACTIONS(998), - [anon_sym_PLUS] = ACTIONS(998), - [anon_sym_STAR] = ACTIONS(1000), - [anon_sym_AMP] = ACTIONS(1000), - [anon_sym_SEMI] = ACTIONS(1000), - [anon_sym_typedef] = ACTIONS(998), - [anon_sym_extern] = ACTIONS(998), - [anon_sym___attribute__] = ACTIONS(998), - [anon_sym_LBRACE] = ACTIONS(1000), - [anon_sym_static] = ACTIONS(998), - [anon_sym_auto] = ACTIONS(998), - [anon_sym_register] = ACTIONS(998), - [anon_sym_inline] = ACTIONS(998), - [anon_sym_const] = ACTIONS(998), - [anon_sym_volatile] = ACTIONS(998), - [anon_sym_restrict] = ACTIONS(998), - [anon_sym__Atomic] = ACTIONS(998), - [anon_sym_signed] = ACTIONS(998), - [anon_sym_unsigned] = ACTIONS(998), - [anon_sym_long] = ACTIONS(998), - [anon_sym_short] = ACTIONS(998), - [sym_primitive_type] = ACTIONS(998), - [anon_sym_enum] = ACTIONS(998), - [anon_sym_struct] = ACTIONS(998), - [anon_sym_union] = ACTIONS(998), - [anon_sym_if] = ACTIONS(998), - [anon_sym_else] = ACTIONS(998), - [anon_sym_switch] = ACTIONS(998), - [anon_sym_case] = ACTIONS(998), - [anon_sym_default] = ACTIONS(998), - [anon_sym_while] = ACTIONS(998), - [anon_sym_do] = ACTIONS(998), - [anon_sym_for] = ACTIONS(998), - [anon_sym_return] = ACTIONS(998), - [anon_sym_break] = ACTIONS(998), - [anon_sym_continue] = ACTIONS(998), - [anon_sym_goto] = ACTIONS(998), - [anon_sym_DASH_DASH] = ACTIONS(1000), - [anon_sym_PLUS_PLUS] = ACTIONS(1000), - [anon_sym_sizeof] = ACTIONS(998), - [sym_number_literal] = ACTIONS(1000), - [anon_sym_L_SQUOTE] = ACTIONS(1000), - [anon_sym_u_SQUOTE] = ACTIONS(1000), - [anon_sym_U_SQUOTE] = ACTIONS(1000), - [anon_sym_u8_SQUOTE] = ACTIONS(1000), - [anon_sym_SQUOTE] = ACTIONS(1000), - [anon_sym_L_DQUOTE] = ACTIONS(1000), - [anon_sym_u_DQUOTE] = ACTIONS(1000), - [anon_sym_U_DQUOTE] = ACTIONS(1000), - [anon_sym_u8_DQUOTE] = ACTIONS(1000), - [anon_sym_DQUOTE] = ACTIONS(1000), - [sym_true] = ACTIONS(998), - [sym_false] = ACTIONS(998), - [sym_null] = ACTIONS(998), + [sym_identifier] = ACTIONS(1066), + [aux_sym_preproc_include_token1] = ACTIONS(1066), + [aux_sym_preproc_def_token1] = ACTIONS(1066), + [aux_sym_preproc_if_token1] = ACTIONS(1066), + [aux_sym_preproc_if_token2] = ACTIONS(1066), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1066), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1066), + [sym_preproc_directive] = ACTIONS(1066), + [anon_sym_LPAREN2] = ACTIONS(1068), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_TILDE] = ACTIONS(1068), + [anon_sym_DASH] = ACTIONS(1066), + [anon_sym_PLUS] = ACTIONS(1066), + [anon_sym_STAR] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(1068), + [anon_sym_SEMI] = ACTIONS(1068), + [anon_sym_typedef] = ACTIONS(1066), + [anon_sym_extern] = ACTIONS(1066), + [anon_sym___attribute__] = ACTIONS(1066), + [anon_sym_LBRACE] = ACTIONS(1068), + [anon_sym_static] = ACTIONS(1066), + [anon_sym_auto] = ACTIONS(1066), + [anon_sym_register] = ACTIONS(1066), + [anon_sym_inline] = ACTIONS(1066), + [anon_sym_const] = ACTIONS(1066), + [anon_sym_volatile] = ACTIONS(1066), + [anon_sym_restrict] = ACTIONS(1066), + [anon_sym__Atomic] = ACTIONS(1066), + [anon_sym_signed] = ACTIONS(1066), + [anon_sym_unsigned] = ACTIONS(1066), + [anon_sym_long] = ACTIONS(1066), + [anon_sym_short] = ACTIONS(1066), + [sym_primitive_type] = ACTIONS(1066), + [anon_sym_enum] = ACTIONS(1066), + [anon_sym_struct] = ACTIONS(1066), + [anon_sym_union] = ACTIONS(1066), + [anon_sym_if] = ACTIONS(1066), + [anon_sym_else] = ACTIONS(1066), + [anon_sym_switch] = ACTIONS(1066), + [anon_sym_case] = ACTIONS(1066), + [anon_sym_default] = ACTIONS(1066), + [anon_sym_while] = ACTIONS(1066), + [anon_sym_do] = ACTIONS(1066), + [anon_sym_for] = ACTIONS(1066), + [anon_sym_return] = ACTIONS(1066), + [anon_sym_break] = ACTIONS(1066), + [anon_sym_continue] = ACTIONS(1066), + [anon_sym_goto] = ACTIONS(1066), + [anon_sym_DASH_DASH] = ACTIONS(1068), + [anon_sym_PLUS_PLUS] = ACTIONS(1068), + [anon_sym_sizeof] = ACTIONS(1066), + [sym_number_literal] = ACTIONS(1068), + [anon_sym_L_SQUOTE] = ACTIONS(1068), + [anon_sym_u_SQUOTE] = ACTIONS(1068), + [anon_sym_U_SQUOTE] = ACTIONS(1068), + [anon_sym_u8_SQUOTE] = ACTIONS(1068), + [anon_sym_SQUOTE] = ACTIONS(1068), + [anon_sym_L_DQUOTE] = ACTIONS(1068), + [anon_sym_u_DQUOTE] = ACTIONS(1068), + [anon_sym_U_DQUOTE] = ACTIONS(1068), + [anon_sym_u8_DQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE] = ACTIONS(1068), + [sym_true] = ACTIONS(1066), + [sym_false] = ACTIONS(1066), + [sym_null] = ACTIONS(1066), [sym_comment] = ACTIONS(3), }, [221] = { - [sym_identifier] = ACTIONS(1038), - [aux_sym_preproc_include_token1] = ACTIONS(1038), - [aux_sym_preproc_def_token1] = ACTIONS(1038), - [aux_sym_preproc_if_token1] = ACTIONS(1038), - [aux_sym_preproc_if_token2] = ACTIONS(1038), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1038), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1038), - [sym_preproc_directive] = ACTIONS(1038), - [anon_sym_LPAREN2] = ACTIONS(1040), - [anon_sym_BANG] = ACTIONS(1040), - [anon_sym_TILDE] = ACTIONS(1040), - [anon_sym_DASH] = ACTIONS(1038), - [anon_sym_PLUS] = ACTIONS(1038), - [anon_sym_STAR] = ACTIONS(1040), - [anon_sym_AMP] = ACTIONS(1040), - [anon_sym_SEMI] = ACTIONS(1040), - [anon_sym_typedef] = ACTIONS(1038), - [anon_sym_extern] = ACTIONS(1038), - [anon_sym___attribute__] = ACTIONS(1038), - [anon_sym_LBRACE] = ACTIONS(1040), - [anon_sym_static] = ACTIONS(1038), - [anon_sym_auto] = ACTIONS(1038), - [anon_sym_register] = ACTIONS(1038), - [anon_sym_inline] = ACTIONS(1038), - [anon_sym_const] = ACTIONS(1038), - [anon_sym_volatile] = ACTIONS(1038), - [anon_sym_restrict] = ACTIONS(1038), - [anon_sym__Atomic] = ACTIONS(1038), - [anon_sym_signed] = ACTIONS(1038), - [anon_sym_unsigned] = ACTIONS(1038), - [anon_sym_long] = ACTIONS(1038), - [anon_sym_short] = ACTIONS(1038), - [sym_primitive_type] = ACTIONS(1038), - [anon_sym_enum] = ACTIONS(1038), - [anon_sym_struct] = ACTIONS(1038), - [anon_sym_union] = ACTIONS(1038), - [anon_sym_if] = ACTIONS(1038), - [anon_sym_else] = ACTIONS(1038), - [anon_sym_switch] = ACTIONS(1038), - [anon_sym_case] = ACTIONS(1038), - [anon_sym_default] = ACTIONS(1038), - [anon_sym_while] = ACTIONS(1038), - [anon_sym_do] = ACTIONS(1038), - [anon_sym_for] = ACTIONS(1038), - [anon_sym_return] = ACTIONS(1038), - [anon_sym_break] = ACTIONS(1038), - [anon_sym_continue] = ACTIONS(1038), - [anon_sym_goto] = ACTIONS(1038), - [anon_sym_DASH_DASH] = ACTIONS(1040), - [anon_sym_PLUS_PLUS] = ACTIONS(1040), - [anon_sym_sizeof] = ACTIONS(1038), - [sym_number_literal] = ACTIONS(1040), - [anon_sym_L_SQUOTE] = ACTIONS(1040), - [anon_sym_u_SQUOTE] = ACTIONS(1040), - [anon_sym_U_SQUOTE] = ACTIONS(1040), - [anon_sym_u8_SQUOTE] = ACTIONS(1040), - [anon_sym_SQUOTE] = ACTIONS(1040), - [anon_sym_L_DQUOTE] = ACTIONS(1040), - [anon_sym_u_DQUOTE] = ACTIONS(1040), - [anon_sym_U_DQUOTE] = ACTIONS(1040), - [anon_sym_u8_DQUOTE] = ACTIONS(1040), - [anon_sym_DQUOTE] = ACTIONS(1040), - [sym_true] = ACTIONS(1038), - [sym_false] = ACTIONS(1038), - [sym_null] = ACTIONS(1038), + [sym_identifier] = ACTIONS(1026), + [aux_sym_preproc_include_token1] = ACTIONS(1026), + [aux_sym_preproc_def_token1] = ACTIONS(1026), + [aux_sym_preproc_if_token1] = ACTIONS(1026), + [aux_sym_preproc_if_token2] = ACTIONS(1026), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1026), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1026), + [sym_preproc_directive] = ACTIONS(1026), + [anon_sym_LPAREN2] = ACTIONS(1028), + [anon_sym_BANG] = ACTIONS(1028), + [anon_sym_TILDE] = ACTIONS(1028), + [anon_sym_DASH] = ACTIONS(1026), + [anon_sym_PLUS] = ACTIONS(1026), + [anon_sym_STAR] = ACTIONS(1028), + [anon_sym_AMP] = ACTIONS(1028), + [anon_sym_SEMI] = ACTIONS(1028), + [anon_sym_typedef] = ACTIONS(1026), + [anon_sym_extern] = ACTIONS(1026), + [anon_sym___attribute__] = ACTIONS(1026), + [anon_sym_LBRACE] = ACTIONS(1028), + [anon_sym_static] = ACTIONS(1026), + [anon_sym_auto] = ACTIONS(1026), + [anon_sym_register] = ACTIONS(1026), + [anon_sym_inline] = ACTIONS(1026), + [anon_sym_const] = ACTIONS(1026), + [anon_sym_volatile] = ACTIONS(1026), + [anon_sym_restrict] = ACTIONS(1026), + [anon_sym__Atomic] = ACTIONS(1026), + [anon_sym_signed] = ACTIONS(1026), + [anon_sym_unsigned] = ACTIONS(1026), + [anon_sym_long] = ACTIONS(1026), + [anon_sym_short] = ACTIONS(1026), + [sym_primitive_type] = ACTIONS(1026), + [anon_sym_enum] = ACTIONS(1026), + [anon_sym_struct] = ACTIONS(1026), + [anon_sym_union] = ACTIONS(1026), + [anon_sym_if] = ACTIONS(1026), + [anon_sym_else] = ACTIONS(1026), + [anon_sym_switch] = ACTIONS(1026), + [anon_sym_case] = ACTIONS(1026), + [anon_sym_default] = ACTIONS(1026), + [anon_sym_while] = ACTIONS(1026), + [anon_sym_do] = ACTIONS(1026), + [anon_sym_for] = ACTIONS(1026), + [anon_sym_return] = ACTIONS(1026), + [anon_sym_break] = ACTIONS(1026), + [anon_sym_continue] = ACTIONS(1026), + [anon_sym_goto] = ACTIONS(1026), + [anon_sym_DASH_DASH] = ACTIONS(1028), + [anon_sym_PLUS_PLUS] = ACTIONS(1028), + [anon_sym_sizeof] = ACTIONS(1026), + [sym_number_literal] = ACTIONS(1028), + [anon_sym_L_SQUOTE] = ACTIONS(1028), + [anon_sym_u_SQUOTE] = ACTIONS(1028), + [anon_sym_U_SQUOTE] = ACTIONS(1028), + [anon_sym_u8_SQUOTE] = ACTIONS(1028), + [anon_sym_SQUOTE] = ACTIONS(1028), + [anon_sym_L_DQUOTE] = ACTIONS(1028), + [anon_sym_u_DQUOTE] = ACTIONS(1028), + [anon_sym_U_DQUOTE] = ACTIONS(1028), + [anon_sym_u8_DQUOTE] = ACTIONS(1028), + [anon_sym_DQUOTE] = ACTIONS(1028), + [sym_true] = ACTIONS(1026), + [sym_false] = ACTIONS(1026), + [sym_null] = ACTIONS(1026), [sym_comment] = ACTIONS(3), }, [222] = { - [sym_identifier] = ACTIONS(1030), - [aux_sym_preproc_include_token1] = ACTIONS(1030), - [aux_sym_preproc_def_token1] = ACTIONS(1030), - [aux_sym_preproc_if_token1] = ACTIONS(1030), - [aux_sym_preproc_if_token2] = ACTIONS(1030), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1030), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1030), - [sym_preproc_directive] = ACTIONS(1030), - [anon_sym_LPAREN2] = ACTIONS(1032), - [anon_sym_BANG] = ACTIONS(1032), - [anon_sym_TILDE] = ACTIONS(1032), - [anon_sym_DASH] = ACTIONS(1030), - [anon_sym_PLUS] = ACTIONS(1030), - [anon_sym_STAR] = ACTIONS(1032), - [anon_sym_AMP] = ACTIONS(1032), - [anon_sym_SEMI] = ACTIONS(1032), - [anon_sym_typedef] = ACTIONS(1030), - [anon_sym_extern] = ACTIONS(1030), - [anon_sym___attribute__] = ACTIONS(1030), - [anon_sym_LBRACE] = ACTIONS(1032), - [anon_sym_static] = ACTIONS(1030), - [anon_sym_auto] = ACTIONS(1030), - [anon_sym_register] = ACTIONS(1030), - [anon_sym_inline] = ACTIONS(1030), - [anon_sym_const] = ACTIONS(1030), - [anon_sym_volatile] = ACTIONS(1030), - [anon_sym_restrict] = ACTIONS(1030), - [anon_sym__Atomic] = ACTIONS(1030), - [anon_sym_signed] = ACTIONS(1030), - [anon_sym_unsigned] = ACTIONS(1030), - [anon_sym_long] = ACTIONS(1030), - [anon_sym_short] = ACTIONS(1030), - [sym_primitive_type] = ACTIONS(1030), - [anon_sym_enum] = ACTIONS(1030), - [anon_sym_struct] = ACTIONS(1030), - [anon_sym_union] = ACTIONS(1030), - [anon_sym_if] = ACTIONS(1030), - [anon_sym_else] = ACTIONS(1030), - [anon_sym_switch] = ACTIONS(1030), - [anon_sym_case] = ACTIONS(1030), - [anon_sym_default] = ACTIONS(1030), - [anon_sym_while] = ACTIONS(1030), - [anon_sym_do] = ACTIONS(1030), - [anon_sym_for] = ACTIONS(1030), - [anon_sym_return] = ACTIONS(1030), - [anon_sym_break] = ACTIONS(1030), - [anon_sym_continue] = ACTIONS(1030), - [anon_sym_goto] = ACTIONS(1030), - [anon_sym_DASH_DASH] = ACTIONS(1032), - [anon_sym_PLUS_PLUS] = ACTIONS(1032), - [anon_sym_sizeof] = ACTIONS(1030), - [sym_number_literal] = ACTIONS(1032), - [anon_sym_L_SQUOTE] = ACTIONS(1032), - [anon_sym_u_SQUOTE] = ACTIONS(1032), - [anon_sym_U_SQUOTE] = ACTIONS(1032), - [anon_sym_u8_SQUOTE] = ACTIONS(1032), - [anon_sym_SQUOTE] = ACTIONS(1032), - [anon_sym_L_DQUOTE] = ACTIONS(1032), - [anon_sym_u_DQUOTE] = ACTIONS(1032), - [anon_sym_U_DQUOTE] = ACTIONS(1032), - [anon_sym_u8_DQUOTE] = ACTIONS(1032), - [anon_sym_DQUOTE] = ACTIONS(1032), - [sym_true] = ACTIONS(1030), - [sym_false] = ACTIONS(1030), - [sym_null] = ACTIONS(1030), + [ts_builtin_sym_end] = ACTIONS(1008), + [sym_identifier] = ACTIONS(1006), + [aux_sym_preproc_include_token1] = ACTIONS(1006), + [aux_sym_preproc_def_token1] = ACTIONS(1006), + [aux_sym_preproc_if_token1] = ACTIONS(1006), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1006), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1006), + [sym_preproc_directive] = ACTIONS(1006), + [anon_sym_LPAREN2] = ACTIONS(1008), + [anon_sym_BANG] = ACTIONS(1008), + [anon_sym_TILDE] = ACTIONS(1008), + [anon_sym_DASH] = ACTIONS(1006), + [anon_sym_PLUS] = ACTIONS(1006), + [anon_sym_STAR] = ACTIONS(1008), + [anon_sym_AMP] = ACTIONS(1008), + [anon_sym_SEMI] = ACTIONS(1008), + [anon_sym_typedef] = ACTIONS(1006), + [anon_sym_extern] = ACTIONS(1006), + [anon_sym___attribute__] = ACTIONS(1006), + [anon_sym_LBRACE] = ACTIONS(1008), + [anon_sym_static] = ACTIONS(1006), + [anon_sym_auto] = ACTIONS(1006), + [anon_sym_register] = ACTIONS(1006), + [anon_sym_inline] = ACTIONS(1006), + [anon_sym_const] = ACTIONS(1006), + [anon_sym_volatile] = ACTIONS(1006), + [anon_sym_restrict] = ACTIONS(1006), + [anon_sym__Atomic] = ACTIONS(1006), + [anon_sym_signed] = ACTIONS(1006), + [anon_sym_unsigned] = ACTIONS(1006), + [anon_sym_long] = ACTIONS(1006), + [anon_sym_short] = ACTIONS(1006), + [sym_primitive_type] = ACTIONS(1006), + [anon_sym_enum] = ACTIONS(1006), + [anon_sym_struct] = ACTIONS(1006), + [anon_sym_union] = ACTIONS(1006), + [anon_sym_if] = ACTIONS(1006), + [anon_sym_else] = ACTIONS(1006), + [anon_sym_switch] = ACTIONS(1006), + [anon_sym_case] = ACTIONS(1006), + [anon_sym_default] = ACTIONS(1006), + [anon_sym_while] = ACTIONS(1006), + [anon_sym_do] = ACTIONS(1006), + [anon_sym_for] = ACTIONS(1006), + [anon_sym_return] = ACTIONS(1006), + [anon_sym_break] = ACTIONS(1006), + [anon_sym_continue] = ACTIONS(1006), + [anon_sym_goto] = ACTIONS(1006), + [anon_sym_DASH_DASH] = ACTIONS(1008), + [anon_sym_PLUS_PLUS] = ACTIONS(1008), + [anon_sym_sizeof] = ACTIONS(1006), + [sym_number_literal] = ACTIONS(1008), + [anon_sym_L_SQUOTE] = ACTIONS(1008), + [anon_sym_u_SQUOTE] = ACTIONS(1008), + [anon_sym_U_SQUOTE] = ACTIONS(1008), + [anon_sym_u8_SQUOTE] = ACTIONS(1008), + [anon_sym_SQUOTE] = ACTIONS(1008), + [anon_sym_L_DQUOTE] = ACTIONS(1008), + [anon_sym_u_DQUOTE] = ACTIONS(1008), + [anon_sym_U_DQUOTE] = ACTIONS(1008), + [anon_sym_u8_DQUOTE] = ACTIONS(1008), + [anon_sym_DQUOTE] = ACTIONS(1008), + [sym_true] = ACTIONS(1006), + [sym_false] = ACTIONS(1006), + [sym_null] = ACTIONS(1006), [sym_comment] = ACTIONS(3), }, [223] = { - [sym_identifier] = ACTIONS(1046), - [aux_sym_preproc_include_token1] = ACTIONS(1046), - [aux_sym_preproc_def_token1] = ACTIONS(1046), - [aux_sym_preproc_if_token1] = ACTIONS(1046), - [aux_sym_preproc_if_token2] = ACTIONS(1046), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1046), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1046), - [sym_preproc_directive] = ACTIONS(1046), - [anon_sym_LPAREN2] = ACTIONS(1048), - [anon_sym_BANG] = ACTIONS(1048), - [anon_sym_TILDE] = ACTIONS(1048), - [anon_sym_DASH] = ACTIONS(1046), - [anon_sym_PLUS] = ACTIONS(1046), - [anon_sym_STAR] = ACTIONS(1048), - [anon_sym_AMP] = ACTIONS(1048), - [anon_sym_SEMI] = ACTIONS(1048), - [anon_sym_typedef] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1046), - [anon_sym___attribute__] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(1048), - [anon_sym_static] = ACTIONS(1046), - [anon_sym_auto] = ACTIONS(1046), - [anon_sym_register] = ACTIONS(1046), - [anon_sym_inline] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1046), - [anon_sym_volatile] = ACTIONS(1046), - [anon_sym_restrict] = ACTIONS(1046), - [anon_sym__Atomic] = ACTIONS(1046), - [anon_sym_signed] = ACTIONS(1046), - [anon_sym_unsigned] = ACTIONS(1046), - [anon_sym_long] = ACTIONS(1046), - [anon_sym_short] = ACTIONS(1046), - [sym_primitive_type] = ACTIONS(1046), - [anon_sym_enum] = ACTIONS(1046), - [anon_sym_struct] = ACTIONS(1046), - [anon_sym_union] = ACTIONS(1046), - [anon_sym_if] = ACTIONS(1046), - [anon_sym_else] = ACTIONS(1046), - [anon_sym_switch] = ACTIONS(1046), - [anon_sym_case] = ACTIONS(1046), - [anon_sym_default] = ACTIONS(1046), - [anon_sym_while] = ACTIONS(1046), - [anon_sym_do] = ACTIONS(1046), - [anon_sym_for] = ACTIONS(1046), - [anon_sym_return] = ACTIONS(1046), - [anon_sym_break] = ACTIONS(1046), - [anon_sym_continue] = ACTIONS(1046), - [anon_sym_goto] = ACTIONS(1046), - [anon_sym_DASH_DASH] = ACTIONS(1048), - [anon_sym_PLUS_PLUS] = ACTIONS(1048), - [anon_sym_sizeof] = ACTIONS(1046), - [sym_number_literal] = ACTIONS(1048), - [anon_sym_L_SQUOTE] = ACTIONS(1048), - [anon_sym_u_SQUOTE] = ACTIONS(1048), - [anon_sym_U_SQUOTE] = ACTIONS(1048), - [anon_sym_u8_SQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1048), - [anon_sym_L_DQUOTE] = ACTIONS(1048), - [anon_sym_u_DQUOTE] = ACTIONS(1048), - [anon_sym_U_DQUOTE] = ACTIONS(1048), - [anon_sym_u8_DQUOTE] = ACTIONS(1048), - [anon_sym_DQUOTE] = ACTIONS(1048), - [sym_true] = ACTIONS(1046), - [sym_false] = ACTIONS(1046), - [sym_null] = ACTIONS(1046), - [sym_comment] = ACTIONS(3), - }, - [224] = { - [ts_builtin_sym_end] = ACTIONS(1032), - [sym_identifier] = ACTIONS(1030), - [aux_sym_preproc_include_token1] = ACTIONS(1030), - [aux_sym_preproc_def_token1] = ACTIONS(1030), - [aux_sym_preproc_if_token1] = ACTIONS(1030), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1030), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1030), - [sym_preproc_directive] = ACTIONS(1030), - [anon_sym_LPAREN2] = ACTIONS(1032), - [anon_sym_BANG] = ACTIONS(1032), - [anon_sym_TILDE] = ACTIONS(1032), - [anon_sym_DASH] = ACTIONS(1030), - [anon_sym_PLUS] = ACTIONS(1030), - [anon_sym_STAR] = ACTIONS(1032), - [anon_sym_AMP] = ACTIONS(1032), - [anon_sym_SEMI] = ACTIONS(1032), - [anon_sym_typedef] = ACTIONS(1030), - [anon_sym_extern] = ACTIONS(1030), - [anon_sym___attribute__] = ACTIONS(1030), - [anon_sym_LBRACE] = ACTIONS(1032), - [anon_sym_static] = ACTIONS(1030), - [anon_sym_auto] = ACTIONS(1030), - [anon_sym_register] = ACTIONS(1030), - [anon_sym_inline] = ACTIONS(1030), - [anon_sym_const] = ACTIONS(1030), - [anon_sym_volatile] = ACTIONS(1030), - [anon_sym_restrict] = ACTIONS(1030), - [anon_sym__Atomic] = ACTIONS(1030), - [anon_sym_signed] = ACTIONS(1030), - [anon_sym_unsigned] = ACTIONS(1030), - [anon_sym_long] = ACTIONS(1030), - [anon_sym_short] = ACTIONS(1030), - [sym_primitive_type] = ACTIONS(1030), - [anon_sym_enum] = ACTIONS(1030), - [anon_sym_struct] = ACTIONS(1030), - [anon_sym_union] = ACTIONS(1030), - [anon_sym_if] = ACTIONS(1030), - [anon_sym_else] = ACTIONS(1030), - [anon_sym_switch] = ACTIONS(1030), - [anon_sym_case] = ACTIONS(1030), - [anon_sym_default] = ACTIONS(1030), - [anon_sym_while] = ACTIONS(1030), - [anon_sym_do] = ACTIONS(1030), - [anon_sym_for] = ACTIONS(1030), - [anon_sym_return] = ACTIONS(1030), - [anon_sym_break] = ACTIONS(1030), - [anon_sym_continue] = ACTIONS(1030), - [anon_sym_goto] = ACTIONS(1030), - [anon_sym_DASH_DASH] = ACTIONS(1032), - [anon_sym_PLUS_PLUS] = ACTIONS(1032), - [anon_sym_sizeof] = ACTIONS(1030), - [sym_number_literal] = ACTIONS(1032), - [anon_sym_L_SQUOTE] = ACTIONS(1032), - [anon_sym_u_SQUOTE] = ACTIONS(1032), - [anon_sym_U_SQUOTE] = ACTIONS(1032), - [anon_sym_u8_SQUOTE] = ACTIONS(1032), - [anon_sym_SQUOTE] = ACTIONS(1032), - [anon_sym_L_DQUOTE] = ACTIONS(1032), - [anon_sym_u_DQUOTE] = ACTIONS(1032), - [anon_sym_U_DQUOTE] = ACTIONS(1032), - [anon_sym_u8_DQUOTE] = ACTIONS(1032), - [anon_sym_DQUOTE] = ACTIONS(1032), - [sym_true] = ACTIONS(1030), - [sym_false] = ACTIONS(1030), - [sym_null] = ACTIONS(1030), + [sym_identifier] = ACTIONS(1078), + [aux_sym_preproc_include_token1] = ACTIONS(1078), + [aux_sym_preproc_def_token1] = ACTIONS(1078), + [aux_sym_preproc_if_token1] = ACTIONS(1078), + [aux_sym_preproc_if_token2] = ACTIONS(1078), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1078), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1078), + [sym_preproc_directive] = ACTIONS(1078), + [anon_sym_LPAREN2] = ACTIONS(1080), + [anon_sym_BANG] = ACTIONS(1080), + [anon_sym_TILDE] = ACTIONS(1080), + [anon_sym_DASH] = ACTIONS(1078), + [anon_sym_PLUS] = ACTIONS(1078), + [anon_sym_STAR] = ACTIONS(1080), + [anon_sym_AMP] = ACTIONS(1080), + [anon_sym_SEMI] = ACTIONS(1080), + [anon_sym_typedef] = ACTIONS(1078), + [anon_sym_extern] = ACTIONS(1078), + [anon_sym___attribute__] = ACTIONS(1078), + [anon_sym_LBRACE] = ACTIONS(1080), + [anon_sym_static] = ACTIONS(1078), + [anon_sym_auto] = ACTIONS(1078), + [anon_sym_register] = ACTIONS(1078), + [anon_sym_inline] = ACTIONS(1078), + [anon_sym_const] = ACTIONS(1078), + [anon_sym_volatile] = ACTIONS(1078), + [anon_sym_restrict] = ACTIONS(1078), + [anon_sym__Atomic] = ACTIONS(1078), + [anon_sym_signed] = ACTIONS(1078), + [anon_sym_unsigned] = ACTIONS(1078), + [anon_sym_long] = ACTIONS(1078), + [anon_sym_short] = ACTIONS(1078), + [sym_primitive_type] = ACTIONS(1078), + [anon_sym_enum] = ACTIONS(1078), + [anon_sym_struct] = ACTIONS(1078), + [anon_sym_union] = ACTIONS(1078), + [anon_sym_if] = ACTIONS(1078), + [anon_sym_else] = ACTIONS(1078), + [anon_sym_switch] = ACTIONS(1078), + [anon_sym_case] = ACTIONS(1078), + [anon_sym_default] = ACTIONS(1078), + [anon_sym_while] = ACTIONS(1078), + [anon_sym_do] = ACTIONS(1078), + [anon_sym_for] = ACTIONS(1078), + [anon_sym_return] = ACTIONS(1078), + [anon_sym_break] = ACTIONS(1078), + [anon_sym_continue] = ACTIONS(1078), + [anon_sym_goto] = ACTIONS(1078), + [anon_sym_DASH_DASH] = ACTIONS(1080), + [anon_sym_PLUS_PLUS] = ACTIONS(1080), + [anon_sym_sizeof] = ACTIONS(1078), + [sym_number_literal] = ACTIONS(1080), + [anon_sym_L_SQUOTE] = ACTIONS(1080), + [anon_sym_u_SQUOTE] = ACTIONS(1080), + [anon_sym_U_SQUOTE] = ACTIONS(1080), + [anon_sym_u8_SQUOTE] = ACTIONS(1080), + [anon_sym_SQUOTE] = ACTIONS(1080), + [anon_sym_L_DQUOTE] = ACTIONS(1080), + [anon_sym_u_DQUOTE] = ACTIONS(1080), + [anon_sym_U_DQUOTE] = ACTIONS(1080), + [anon_sym_u8_DQUOTE] = ACTIONS(1080), + [anon_sym_DQUOTE] = ACTIONS(1080), + [sym_true] = ACTIONS(1078), + [sym_false] = ACTIONS(1078), + [sym_null] = ACTIONS(1078), + [sym_comment] = ACTIONS(3), + }, + [224] = { + [sym_identifier] = ACTIONS(980), + [aux_sym_preproc_include_token1] = ACTIONS(980), + [aux_sym_preproc_def_token1] = ACTIONS(980), + [aux_sym_preproc_if_token1] = ACTIONS(980), + [aux_sym_preproc_if_token2] = ACTIONS(980), + [aux_sym_preproc_ifdef_token1] = ACTIONS(980), + [aux_sym_preproc_ifdef_token2] = ACTIONS(980), + [sym_preproc_directive] = ACTIONS(980), + [anon_sym_LPAREN2] = ACTIONS(982), + [anon_sym_BANG] = ACTIONS(982), + [anon_sym_TILDE] = ACTIONS(982), + [anon_sym_DASH] = ACTIONS(980), + [anon_sym_PLUS] = ACTIONS(980), + [anon_sym_STAR] = ACTIONS(982), + [anon_sym_AMP] = ACTIONS(982), + [anon_sym_SEMI] = ACTIONS(982), + [anon_sym_typedef] = ACTIONS(980), + [anon_sym_extern] = ACTIONS(980), + [anon_sym___attribute__] = ACTIONS(980), + [anon_sym_LBRACE] = ACTIONS(982), + [anon_sym_static] = ACTIONS(980), + [anon_sym_auto] = ACTIONS(980), + [anon_sym_register] = ACTIONS(980), + [anon_sym_inline] = ACTIONS(980), + [anon_sym_const] = ACTIONS(980), + [anon_sym_volatile] = ACTIONS(980), + [anon_sym_restrict] = ACTIONS(980), + [anon_sym__Atomic] = ACTIONS(980), + [anon_sym_signed] = ACTIONS(980), + [anon_sym_unsigned] = ACTIONS(980), + [anon_sym_long] = ACTIONS(980), + [anon_sym_short] = ACTIONS(980), + [sym_primitive_type] = ACTIONS(980), + [anon_sym_enum] = ACTIONS(980), + [anon_sym_struct] = ACTIONS(980), + [anon_sym_union] = ACTIONS(980), + [anon_sym_if] = ACTIONS(980), + [anon_sym_else] = ACTIONS(980), + [anon_sym_switch] = ACTIONS(980), + [anon_sym_case] = ACTIONS(980), + [anon_sym_default] = ACTIONS(980), + [anon_sym_while] = ACTIONS(980), + [anon_sym_do] = ACTIONS(980), + [anon_sym_for] = ACTIONS(980), + [anon_sym_return] = ACTIONS(980), + [anon_sym_break] = ACTIONS(980), + [anon_sym_continue] = ACTIONS(980), + [anon_sym_goto] = ACTIONS(980), + [anon_sym_DASH_DASH] = ACTIONS(982), + [anon_sym_PLUS_PLUS] = ACTIONS(982), + [anon_sym_sizeof] = ACTIONS(980), + [sym_number_literal] = ACTIONS(982), + [anon_sym_L_SQUOTE] = ACTIONS(982), + [anon_sym_u_SQUOTE] = ACTIONS(982), + [anon_sym_U_SQUOTE] = ACTIONS(982), + [anon_sym_u8_SQUOTE] = ACTIONS(982), + [anon_sym_SQUOTE] = ACTIONS(982), + [anon_sym_L_DQUOTE] = ACTIONS(982), + [anon_sym_u_DQUOTE] = ACTIONS(982), + [anon_sym_U_DQUOTE] = ACTIONS(982), + [anon_sym_u8_DQUOTE] = ACTIONS(982), + [anon_sym_DQUOTE] = ACTIONS(982), + [sym_true] = ACTIONS(980), + [sym_false] = ACTIONS(980), + [sym_null] = ACTIONS(980), [sym_comment] = ACTIONS(3), }, [225] = { @@ -25021,7 +25037,6 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_include_token1] = ACTIONS(1050), [aux_sym_preproc_def_token1] = ACTIONS(1050), [aux_sym_preproc_if_token1] = ACTIONS(1050), - [aux_sym_preproc_if_token2] = ACTIONS(1050), [aux_sym_preproc_ifdef_token1] = ACTIONS(1050), [aux_sym_preproc_ifdef_token2] = ACTIONS(1050), [sym_preproc_directive] = ACTIONS(1050), @@ -25037,6 +25052,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_extern] = ACTIONS(1050), [anon_sym___attribute__] = ACTIONS(1050), [anon_sym_LBRACE] = ACTIONS(1052), + [anon_sym_RBRACE] = ACTIONS(1052), [anon_sym_static] = ACTIONS(1050), [anon_sym_auto] = ACTIONS(1050), [anon_sym_register] = ACTIONS(1050), @@ -25085,210 +25101,278 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [226] = { - [ts_builtin_sym_end] = ACTIONS(1040), - [sym_identifier] = ACTIONS(1038), - [aux_sym_preproc_include_token1] = ACTIONS(1038), - [aux_sym_preproc_def_token1] = ACTIONS(1038), - [aux_sym_preproc_if_token1] = ACTIONS(1038), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1038), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1038), - [sym_preproc_directive] = ACTIONS(1038), - [anon_sym_LPAREN2] = ACTIONS(1040), - [anon_sym_BANG] = ACTIONS(1040), - [anon_sym_TILDE] = ACTIONS(1040), - [anon_sym_DASH] = ACTIONS(1038), - [anon_sym_PLUS] = ACTIONS(1038), - [anon_sym_STAR] = ACTIONS(1040), - [anon_sym_AMP] = ACTIONS(1040), - [anon_sym_SEMI] = ACTIONS(1040), - [anon_sym_typedef] = ACTIONS(1038), - [anon_sym_extern] = ACTIONS(1038), - [anon_sym___attribute__] = ACTIONS(1038), - [anon_sym_LBRACE] = ACTIONS(1040), - [anon_sym_static] = ACTIONS(1038), - [anon_sym_auto] = ACTIONS(1038), - [anon_sym_register] = ACTIONS(1038), - [anon_sym_inline] = ACTIONS(1038), - [anon_sym_const] = ACTIONS(1038), - [anon_sym_volatile] = ACTIONS(1038), - [anon_sym_restrict] = ACTIONS(1038), - [anon_sym__Atomic] = ACTIONS(1038), - [anon_sym_signed] = ACTIONS(1038), - [anon_sym_unsigned] = ACTIONS(1038), - [anon_sym_long] = ACTIONS(1038), - [anon_sym_short] = ACTIONS(1038), - [sym_primitive_type] = ACTIONS(1038), - [anon_sym_enum] = ACTIONS(1038), - [anon_sym_struct] = ACTIONS(1038), - [anon_sym_union] = ACTIONS(1038), - [anon_sym_if] = ACTIONS(1038), - [anon_sym_else] = ACTIONS(1038), - [anon_sym_switch] = ACTIONS(1038), - [anon_sym_case] = ACTIONS(1038), - [anon_sym_default] = ACTIONS(1038), - [anon_sym_while] = ACTIONS(1038), - [anon_sym_do] = ACTIONS(1038), - [anon_sym_for] = ACTIONS(1038), - [anon_sym_return] = ACTIONS(1038), - [anon_sym_break] = ACTIONS(1038), - [anon_sym_continue] = ACTIONS(1038), - [anon_sym_goto] = ACTIONS(1038), - [anon_sym_DASH_DASH] = ACTIONS(1040), - [anon_sym_PLUS_PLUS] = ACTIONS(1040), - [anon_sym_sizeof] = ACTIONS(1038), - [sym_number_literal] = ACTIONS(1040), - [anon_sym_L_SQUOTE] = ACTIONS(1040), - [anon_sym_u_SQUOTE] = ACTIONS(1040), - [anon_sym_U_SQUOTE] = ACTIONS(1040), - [anon_sym_u8_SQUOTE] = ACTIONS(1040), - [anon_sym_SQUOTE] = ACTIONS(1040), - [anon_sym_L_DQUOTE] = ACTIONS(1040), - [anon_sym_u_DQUOTE] = ACTIONS(1040), - [anon_sym_U_DQUOTE] = ACTIONS(1040), - [anon_sym_u8_DQUOTE] = ACTIONS(1040), - [anon_sym_DQUOTE] = ACTIONS(1040), - [sym_true] = ACTIONS(1038), - [sym_false] = ACTIONS(1038), - [sym_null] = ACTIONS(1038), + [sym_identifier] = ACTIONS(988), + [aux_sym_preproc_include_token1] = ACTIONS(988), + [aux_sym_preproc_def_token1] = ACTIONS(988), + [aux_sym_preproc_if_token1] = ACTIONS(988), + [aux_sym_preproc_if_token2] = ACTIONS(988), + [aux_sym_preproc_ifdef_token1] = ACTIONS(988), + [aux_sym_preproc_ifdef_token2] = ACTIONS(988), + [sym_preproc_directive] = ACTIONS(988), + [anon_sym_LPAREN2] = ACTIONS(990), + [anon_sym_BANG] = ACTIONS(990), + [anon_sym_TILDE] = ACTIONS(990), + [anon_sym_DASH] = ACTIONS(988), + [anon_sym_PLUS] = ACTIONS(988), + [anon_sym_STAR] = ACTIONS(990), + [anon_sym_AMP] = ACTIONS(990), + [anon_sym_SEMI] = ACTIONS(990), + [anon_sym_typedef] = ACTIONS(988), + [anon_sym_extern] = ACTIONS(988), + [anon_sym___attribute__] = ACTIONS(988), + [anon_sym_LBRACE] = ACTIONS(990), + [anon_sym_static] = ACTIONS(988), + [anon_sym_auto] = ACTIONS(988), + [anon_sym_register] = ACTIONS(988), + [anon_sym_inline] = ACTIONS(988), + [anon_sym_const] = ACTIONS(988), + [anon_sym_volatile] = ACTIONS(988), + [anon_sym_restrict] = ACTIONS(988), + [anon_sym__Atomic] = ACTIONS(988), + [anon_sym_signed] = ACTIONS(988), + [anon_sym_unsigned] = ACTIONS(988), + [anon_sym_long] = ACTIONS(988), + [anon_sym_short] = ACTIONS(988), + [sym_primitive_type] = ACTIONS(988), + [anon_sym_enum] = ACTIONS(988), + [anon_sym_struct] = ACTIONS(988), + [anon_sym_union] = ACTIONS(988), + [anon_sym_if] = ACTIONS(988), + [anon_sym_else] = ACTIONS(988), + [anon_sym_switch] = ACTIONS(988), + [anon_sym_case] = ACTIONS(988), + [anon_sym_default] = ACTIONS(988), + [anon_sym_while] = ACTIONS(988), + [anon_sym_do] = ACTIONS(988), + [anon_sym_for] = ACTIONS(988), + [anon_sym_return] = ACTIONS(988), + [anon_sym_break] = ACTIONS(988), + [anon_sym_continue] = ACTIONS(988), + [anon_sym_goto] = ACTIONS(988), + [anon_sym_DASH_DASH] = ACTIONS(990), + [anon_sym_PLUS_PLUS] = ACTIONS(990), + [anon_sym_sizeof] = ACTIONS(988), + [sym_number_literal] = ACTIONS(990), + [anon_sym_L_SQUOTE] = ACTIONS(990), + [anon_sym_u_SQUOTE] = ACTIONS(990), + [anon_sym_U_SQUOTE] = ACTIONS(990), + [anon_sym_u8_SQUOTE] = ACTIONS(990), + [anon_sym_SQUOTE] = ACTIONS(990), + [anon_sym_L_DQUOTE] = ACTIONS(990), + [anon_sym_u_DQUOTE] = ACTIONS(990), + [anon_sym_U_DQUOTE] = ACTIONS(990), + [anon_sym_u8_DQUOTE] = ACTIONS(990), + [anon_sym_DQUOTE] = ACTIONS(990), + [sym_true] = ACTIONS(988), + [sym_false] = ACTIONS(988), + [sym_null] = ACTIONS(988), [sym_comment] = ACTIONS(3), }, [227] = { - [sym_identifier] = ACTIONS(1078), - [aux_sym_preproc_include_token1] = ACTIONS(1078), - [aux_sym_preproc_def_token1] = ACTIONS(1078), - [aux_sym_preproc_if_token1] = ACTIONS(1078), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1078), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1078), - [sym_preproc_directive] = ACTIONS(1078), - [anon_sym_LPAREN2] = ACTIONS(1080), - [anon_sym_BANG] = ACTIONS(1080), - [anon_sym_TILDE] = ACTIONS(1080), - [anon_sym_DASH] = ACTIONS(1078), - [anon_sym_PLUS] = ACTIONS(1078), - [anon_sym_STAR] = ACTIONS(1080), - [anon_sym_AMP] = ACTIONS(1080), - [anon_sym_SEMI] = ACTIONS(1080), - [anon_sym_typedef] = ACTIONS(1078), - [anon_sym_extern] = ACTIONS(1078), - [anon_sym___attribute__] = ACTIONS(1078), - [anon_sym_LBRACE] = ACTIONS(1080), - [anon_sym_RBRACE] = ACTIONS(1080), - [anon_sym_static] = ACTIONS(1078), - [anon_sym_auto] = ACTIONS(1078), - [anon_sym_register] = ACTIONS(1078), - [anon_sym_inline] = ACTIONS(1078), - [anon_sym_const] = ACTIONS(1078), - [anon_sym_volatile] = ACTIONS(1078), - [anon_sym_restrict] = ACTIONS(1078), - [anon_sym__Atomic] = ACTIONS(1078), - [anon_sym_signed] = ACTIONS(1078), - [anon_sym_unsigned] = ACTIONS(1078), - [anon_sym_long] = ACTIONS(1078), - [anon_sym_short] = ACTIONS(1078), - [sym_primitive_type] = ACTIONS(1078), - [anon_sym_enum] = ACTIONS(1078), - [anon_sym_struct] = ACTIONS(1078), - [anon_sym_union] = ACTIONS(1078), - [anon_sym_if] = ACTIONS(1078), - [anon_sym_else] = ACTIONS(1078), - [anon_sym_switch] = ACTIONS(1078), - [anon_sym_case] = ACTIONS(1078), - [anon_sym_default] = ACTIONS(1078), - [anon_sym_while] = ACTIONS(1078), - [anon_sym_do] = ACTIONS(1078), - [anon_sym_for] = ACTIONS(1078), - [anon_sym_return] = ACTIONS(1078), - [anon_sym_break] = ACTIONS(1078), - [anon_sym_continue] = ACTIONS(1078), - [anon_sym_goto] = ACTIONS(1078), - [anon_sym_DASH_DASH] = ACTIONS(1080), - [anon_sym_PLUS_PLUS] = ACTIONS(1080), - [anon_sym_sizeof] = ACTIONS(1078), - [sym_number_literal] = ACTIONS(1080), - [anon_sym_L_SQUOTE] = ACTIONS(1080), - [anon_sym_u_SQUOTE] = ACTIONS(1080), - [anon_sym_U_SQUOTE] = ACTIONS(1080), - [anon_sym_u8_SQUOTE] = ACTIONS(1080), - [anon_sym_SQUOTE] = ACTIONS(1080), - [anon_sym_L_DQUOTE] = ACTIONS(1080), - [anon_sym_u_DQUOTE] = ACTIONS(1080), - [anon_sym_U_DQUOTE] = ACTIONS(1080), - [anon_sym_u8_DQUOTE] = ACTIONS(1080), - [anon_sym_DQUOTE] = ACTIONS(1080), - [sym_true] = ACTIONS(1078), - [sym_false] = ACTIONS(1078), - [sym_null] = ACTIONS(1078), + [sym_identifier] = ACTIONS(1054), + [aux_sym_preproc_include_token1] = ACTIONS(1054), + [aux_sym_preproc_def_token1] = ACTIONS(1054), + [aux_sym_preproc_if_token1] = ACTIONS(1054), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1054), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1054), + [sym_preproc_directive] = ACTIONS(1054), + [anon_sym_LPAREN2] = ACTIONS(1056), + [anon_sym_BANG] = ACTIONS(1056), + [anon_sym_TILDE] = ACTIONS(1056), + [anon_sym_DASH] = ACTIONS(1054), + [anon_sym_PLUS] = ACTIONS(1054), + [anon_sym_STAR] = ACTIONS(1056), + [anon_sym_AMP] = ACTIONS(1056), + [anon_sym_SEMI] = ACTIONS(1056), + [anon_sym_typedef] = ACTIONS(1054), + [anon_sym_extern] = ACTIONS(1054), + [anon_sym___attribute__] = ACTIONS(1054), + [anon_sym_LBRACE] = ACTIONS(1056), + [anon_sym_RBRACE] = ACTIONS(1056), + [anon_sym_static] = ACTIONS(1054), + [anon_sym_auto] = ACTIONS(1054), + [anon_sym_register] = ACTIONS(1054), + [anon_sym_inline] = ACTIONS(1054), + [anon_sym_const] = ACTIONS(1054), + [anon_sym_volatile] = ACTIONS(1054), + [anon_sym_restrict] = ACTIONS(1054), + [anon_sym__Atomic] = ACTIONS(1054), + [anon_sym_signed] = ACTIONS(1054), + [anon_sym_unsigned] = ACTIONS(1054), + [anon_sym_long] = ACTIONS(1054), + [anon_sym_short] = ACTIONS(1054), + [sym_primitive_type] = ACTIONS(1054), + [anon_sym_enum] = ACTIONS(1054), + [anon_sym_struct] = ACTIONS(1054), + [anon_sym_union] = ACTIONS(1054), + [anon_sym_if] = ACTIONS(1054), + [anon_sym_else] = ACTIONS(1054), + [anon_sym_switch] = ACTIONS(1054), + [anon_sym_case] = ACTIONS(1054), + [anon_sym_default] = ACTIONS(1054), + [anon_sym_while] = ACTIONS(1054), + [anon_sym_do] = ACTIONS(1054), + [anon_sym_for] = ACTIONS(1054), + [anon_sym_return] = ACTIONS(1054), + [anon_sym_break] = ACTIONS(1054), + [anon_sym_continue] = ACTIONS(1054), + [anon_sym_goto] = ACTIONS(1054), + [anon_sym_DASH_DASH] = ACTIONS(1056), + [anon_sym_PLUS_PLUS] = ACTIONS(1056), + [anon_sym_sizeof] = ACTIONS(1054), + [sym_number_literal] = ACTIONS(1056), + [anon_sym_L_SQUOTE] = ACTIONS(1056), + [anon_sym_u_SQUOTE] = ACTIONS(1056), + [anon_sym_U_SQUOTE] = ACTIONS(1056), + [anon_sym_u8_SQUOTE] = ACTIONS(1056), + [anon_sym_SQUOTE] = ACTIONS(1056), + [anon_sym_L_DQUOTE] = ACTIONS(1056), + [anon_sym_u_DQUOTE] = ACTIONS(1056), + [anon_sym_U_DQUOTE] = ACTIONS(1056), + [anon_sym_u8_DQUOTE] = ACTIONS(1056), + [anon_sym_DQUOTE] = ACTIONS(1056), + [sym_true] = ACTIONS(1054), + [sym_false] = ACTIONS(1054), + [sym_null] = ACTIONS(1054), [sym_comment] = ACTIONS(3), }, [228] = { - [sym_identifier] = ACTIONS(968), - [aux_sym_preproc_include_token1] = ACTIONS(968), - [aux_sym_preproc_def_token1] = ACTIONS(968), - [aux_sym_preproc_if_token1] = ACTIONS(968), - [aux_sym_preproc_if_token2] = ACTIONS(968), - [aux_sym_preproc_ifdef_token1] = ACTIONS(968), - [aux_sym_preproc_ifdef_token2] = ACTIONS(968), - [sym_preproc_directive] = ACTIONS(968), - [anon_sym_LPAREN2] = ACTIONS(970), - [anon_sym_BANG] = ACTIONS(970), - [anon_sym_TILDE] = ACTIONS(970), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_STAR] = ACTIONS(970), - [anon_sym_AMP] = ACTIONS(970), - [anon_sym_SEMI] = ACTIONS(970), - [anon_sym_typedef] = ACTIONS(968), - [anon_sym_extern] = ACTIONS(968), - [anon_sym___attribute__] = ACTIONS(968), - [anon_sym_LBRACE] = ACTIONS(970), - [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_volatile] = ACTIONS(968), - [anon_sym_restrict] = ACTIONS(968), - [anon_sym__Atomic] = ACTIONS(968), - [anon_sym_signed] = 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_DASH_DASH] = ACTIONS(970), - [anon_sym_PLUS_PLUS] = ACTIONS(970), - [anon_sym_sizeof] = ACTIONS(968), - [sym_number_literal] = ACTIONS(970), - [anon_sym_L_SQUOTE] = ACTIONS(970), - [anon_sym_u_SQUOTE] = ACTIONS(970), - [anon_sym_U_SQUOTE] = ACTIONS(970), - [anon_sym_u8_SQUOTE] = ACTIONS(970), - [anon_sym_SQUOTE] = ACTIONS(970), - [anon_sym_L_DQUOTE] = ACTIONS(970), - [anon_sym_u_DQUOTE] = ACTIONS(970), - [anon_sym_U_DQUOTE] = ACTIONS(970), - [anon_sym_u8_DQUOTE] = ACTIONS(970), - [anon_sym_DQUOTE] = ACTIONS(970), - [sym_true] = ACTIONS(968), - [sym_false] = ACTIONS(968), - [sym_null] = ACTIONS(968), + [ts_builtin_sym_end] = ACTIONS(1024), + [sym_identifier] = ACTIONS(1022), + [aux_sym_preproc_include_token1] = ACTIONS(1022), + [aux_sym_preproc_def_token1] = ACTIONS(1022), + [aux_sym_preproc_if_token1] = ACTIONS(1022), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1022), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1022), + [sym_preproc_directive] = ACTIONS(1022), + [anon_sym_LPAREN2] = ACTIONS(1024), + [anon_sym_BANG] = ACTIONS(1024), + [anon_sym_TILDE] = ACTIONS(1024), + [anon_sym_DASH] = ACTIONS(1022), + [anon_sym_PLUS] = ACTIONS(1022), + [anon_sym_STAR] = ACTIONS(1024), + [anon_sym_AMP] = ACTIONS(1024), + [anon_sym_SEMI] = ACTIONS(1024), + [anon_sym_typedef] = ACTIONS(1022), + [anon_sym_extern] = ACTIONS(1022), + [anon_sym___attribute__] = ACTIONS(1022), + [anon_sym_LBRACE] = ACTIONS(1024), + [anon_sym_static] = ACTIONS(1022), + [anon_sym_auto] = ACTIONS(1022), + [anon_sym_register] = ACTIONS(1022), + [anon_sym_inline] = ACTIONS(1022), + [anon_sym_const] = ACTIONS(1022), + [anon_sym_volatile] = ACTIONS(1022), + [anon_sym_restrict] = ACTIONS(1022), + [anon_sym__Atomic] = ACTIONS(1022), + [anon_sym_signed] = ACTIONS(1022), + [anon_sym_unsigned] = ACTIONS(1022), + [anon_sym_long] = ACTIONS(1022), + [anon_sym_short] = ACTIONS(1022), + [sym_primitive_type] = ACTIONS(1022), + [anon_sym_enum] = ACTIONS(1022), + [anon_sym_struct] = ACTIONS(1022), + [anon_sym_union] = ACTIONS(1022), + [anon_sym_if] = ACTIONS(1022), + [anon_sym_else] = ACTIONS(1022), + [anon_sym_switch] = ACTIONS(1022), + [anon_sym_case] = ACTIONS(1022), + [anon_sym_default] = ACTIONS(1022), + [anon_sym_while] = ACTIONS(1022), + [anon_sym_do] = ACTIONS(1022), + [anon_sym_for] = ACTIONS(1022), + [anon_sym_return] = ACTIONS(1022), + [anon_sym_break] = ACTIONS(1022), + [anon_sym_continue] = ACTIONS(1022), + [anon_sym_goto] = ACTIONS(1022), + [anon_sym_DASH_DASH] = ACTIONS(1024), + [anon_sym_PLUS_PLUS] = ACTIONS(1024), + [anon_sym_sizeof] = ACTIONS(1022), + [sym_number_literal] = ACTIONS(1024), + [anon_sym_L_SQUOTE] = ACTIONS(1024), + [anon_sym_u_SQUOTE] = ACTIONS(1024), + [anon_sym_U_SQUOTE] = ACTIONS(1024), + [anon_sym_u8_SQUOTE] = ACTIONS(1024), + [anon_sym_SQUOTE] = ACTIONS(1024), + [anon_sym_L_DQUOTE] = ACTIONS(1024), + [anon_sym_u_DQUOTE] = ACTIONS(1024), + [anon_sym_U_DQUOTE] = ACTIONS(1024), + [anon_sym_u8_DQUOTE] = ACTIONS(1024), + [anon_sym_DQUOTE] = ACTIONS(1024), + [sym_true] = ACTIONS(1022), + [sym_false] = ACTIONS(1022), + [sym_null] = ACTIONS(1022), [sym_comment] = ACTIONS(3), }, [229] = { + [sym_identifier] = ACTIONS(960), + [aux_sym_preproc_include_token1] = ACTIONS(960), + [aux_sym_preproc_def_token1] = ACTIONS(960), + [aux_sym_preproc_if_token1] = ACTIONS(960), + [aux_sym_preproc_if_token2] = ACTIONS(960), + [aux_sym_preproc_ifdef_token1] = ACTIONS(960), + [aux_sym_preproc_ifdef_token2] = ACTIONS(960), + [sym_preproc_directive] = ACTIONS(960), + [anon_sym_LPAREN2] = ACTIONS(962), + [anon_sym_BANG] = ACTIONS(962), + [anon_sym_TILDE] = ACTIONS(962), + [anon_sym_DASH] = ACTIONS(960), + [anon_sym_PLUS] = ACTIONS(960), + [anon_sym_STAR] = ACTIONS(962), + [anon_sym_AMP] = ACTIONS(962), + [anon_sym_SEMI] = ACTIONS(962), + [anon_sym_typedef] = ACTIONS(960), + [anon_sym_extern] = ACTIONS(960), + [anon_sym___attribute__] = ACTIONS(960), + [anon_sym_LBRACE] = ACTIONS(962), + [anon_sym_static] = ACTIONS(960), + [anon_sym_auto] = ACTIONS(960), + [anon_sym_register] = ACTIONS(960), + [anon_sym_inline] = ACTIONS(960), + [anon_sym_const] = ACTIONS(960), + [anon_sym_volatile] = ACTIONS(960), + [anon_sym_restrict] = ACTIONS(960), + [anon_sym__Atomic] = ACTIONS(960), + [anon_sym_signed] = ACTIONS(960), + [anon_sym_unsigned] = ACTIONS(960), + [anon_sym_long] = ACTIONS(960), + [anon_sym_short] = ACTIONS(960), + [sym_primitive_type] = ACTIONS(960), + [anon_sym_enum] = ACTIONS(960), + [anon_sym_struct] = ACTIONS(960), + [anon_sym_union] = ACTIONS(960), + [anon_sym_if] = ACTIONS(960), + [anon_sym_else] = ACTIONS(960), + [anon_sym_switch] = ACTIONS(960), + [anon_sym_case] = ACTIONS(960), + [anon_sym_default] = ACTIONS(960), + [anon_sym_while] = ACTIONS(960), + [anon_sym_do] = ACTIONS(960), + [anon_sym_for] = ACTIONS(960), + [anon_sym_return] = ACTIONS(960), + [anon_sym_break] = ACTIONS(960), + [anon_sym_continue] = ACTIONS(960), + [anon_sym_goto] = ACTIONS(960), + [anon_sym_DASH_DASH] = ACTIONS(962), + [anon_sym_PLUS_PLUS] = ACTIONS(962), + [anon_sym_sizeof] = ACTIONS(960), + [sym_number_literal] = ACTIONS(962), + [anon_sym_L_SQUOTE] = ACTIONS(962), + [anon_sym_u_SQUOTE] = ACTIONS(962), + [anon_sym_U_SQUOTE] = ACTIONS(962), + [anon_sym_u8_SQUOTE] = ACTIONS(962), + [anon_sym_SQUOTE] = ACTIONS(962), + [anon_sym_L_DQUOTE] = ACTIONS(962), + [anon_sym_u_DQUOTE] = ACTIONS(962), + [anon_sym_U_DQUOTE] = ACTIONS(962), + [anon_sym_u8_DQUOTE] = ACTIONS(962), + [anon_sym_DQUOTE] = ACTIONS(962), + [sym_true] = ACTIONS(960), + [sym_false] = ACTIONS(960), + [sym_null] = ACTIONS(960), + [sym_comment] = ACTIONS(3), + }, + [230] = { [sym_identifier] = ACTIONS(976), [aux_sym_preproc_include_token1] = ACTIONS(976), [aux_sym_preproc_def_token1] = ACTIONS(976), @@ -25326,7 +25410,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(976), [anon_sym_union] = ACTIONS(976), [anon_sym_if] = ACTIONS(976), - [anon_sym_else] = ACTIONS(1196), + [anon_sym_else] = ACTIONS(976), [anon_sym_switch] = ACTIONS(976), [anon_sym_case] = ACTIONS(976), [anon_sym_default] = ACTIONS(976), @@ -25356,95 +25440,231 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(976), [sym_comment] = ACTIONS(3), }, - [230] = { - [sym_identifier] = ACTIONS(982), - [aux_sym_preproc_include_token1] = ACTIONS(982), - [aux_sym_preproc_def_token1] = ACTIONS(982), - [aux_sym_preproc_if_token1] = ACTIONS(982), - [aux_sym_preproc_if_token2] = ACTIONS(982), - [aux_sym_preproc_ifdef_token1] = ACTIONS(982), - [aux_sym_preproc_ifdef_token2] = ACTIONS(982), - [sym_preproc_directive] = ACTIONS(982), - [anon_sym_LPAREN2] = ACTIONS(984), - [anon_sym_BANG] = ACTIONS(984), - [anon_sym_TILDE] = ACTIONS(984), - [anon_sym_DASH] = ACTIONS(982), - [anon_sym_PLUS] = ACTIONS(982), - [anon_sym_STAR] = ACTIONS(984), - [anon_sym_AMP] = ACTIONS(984), - [anon_sym_SEMI] = ACTIONS(984), - [anon_sym_typedef] = ACTIONS(982), - [anon_sym_extern] = ACTIONS(982), - [anon_sym___attribute__] = ACTIONS(982), - [anon_sym_LBRACE] = ACTIONS(984), - [anon_sym_static] = ACTIONS(982), - [anon_sym_auto] = ACTIONS(982), - [anon_sym_register] = ACTIONS(982), - [anon_sym_inline] = ACTIONS(982), - [anon_sym_const] = ACTIONS(982), - [anon_sym_volatile] = ACTIONS(982), - [anon_sym_restrict] = ACTIONS(982), - [anon_sym__Atomic] = ACTIONS(982), - [anon_sym_signed] = ACTIONS(982), - [anon_sym_unsigned] = ACTIONS(982), - [anon_sym_long] = ACTIONS(982), - [anon_sym_short] = ACTIONS(982), - [sym_primitive_type] = ACTIONS(982), - [anon_sym_enum] = ACTIONS(982), - [anon_sym_struct] = ACTIONS(982), - [anon_sym_union] = ACTIONS(982), - [anon_sym_if] = ACTIONS(982), - [anon_sym_else] = ACTIONS(982), - [anon_sym_switch] = ACTIONS(982), - [anon_sym_case] = ACTIONS(982), - [anon_sym_default] = ACTIONS(982), - [anon_sym_while] = ACTIONS(982), - [anon_sym_do] = ACTIONS(982), - [anon_sym_for] = ACTIONS(982), - [anon_sym_return] = ACTIONS(982), - [anon_sym_break] = ACTIONS(982), - [anon_sym_continue] = ACTIONS(982), - [anon_sym_goto] = ACTIONS(982), - [anon_sym_DASH_DASH] = ACTIONS(984), - [anon_sym_PLUS_PLUS] = ACTIONS(984), - [anon_sym_sizeof] = ACTIONS(982), - [sym_number_literal] = ACTIONS(984), - [anon_sym_L_SQUOTE] = ACTIONS(984), - [anon_sym_u_SQUOTE] = ACTIONS(984), - [anon_sym_U_SQUOTE] = ACTIONS(984), - [anon_sym_u8_SQUOTE] = ACTIONS(984), - [anon_sym_SQUOTE] = ACTIONS(984), - [anon_sym_L_DQUOTE] = ACTIONS(984), - [anon_sym_u_DQUOTE] = ACTIONS(984), - [anon_sym_U_DQUOTE] = ACTIONS(984), - [anon_sym_u8_DQUOTE] = ACTIONS(984), - [anon_sym_DQUOTE] = ACTIONS(984), - [sym_true] = ACTIONS(982), - [sym_false] = ACTIONS(982), - [sym_null] = ACTIONS(982), - [sym_comment] = ACTIONS(3), - }, [231] = { - [sym_identifier] = ACTIONS(1062), - [aux_sym_preproc_include_token1] = ACTIONS(1062), - [aux_sym_preproc_def_token1] = ACTIONS(1062), - [aux_sym_preproc_if_token1] = ACTIONS(1062), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1062), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1062), - [sym_preproc_directive] = ACTIONS(1062), - [anon_sym_LPAREN2] = ACTIONS(1064), - [anon_sym_BANG] = ACTIONS(1064), - [anon_sym_TILDE] = ACTIONS(1064), - [anon_sym_DASH] = ACTIONS(1062), - [anon_sym_PLUS] = ACTIONS(1062), - [anon_sym_STAR] = ACTIONS(1064), - [anon_sym_AMP] = ACTIONS(1064), - [anon_sym_SEMI] = ACTIONS(1064), - [anon_sym_typedef] = ACTIONS(1062), - [anon_sym_extern] = ACTIONS(1062), - [anon_sym___attribute__] = ACTIONS(1062), - [anon_sym_LBRACE] = ACTIONS(1064), - [anon_sym_RBRACE] = ACTIONS(1064), + [sym_identifier] = ACTIONS(1014), + [aux_sym_preproc_include_token1] = ACTIONS(1014), + [aux_sym_preproc_def_token1] = ACTIONS(1014), + [aux_sym_preproc_if_token1] = ACTIONS(1014), + [aux_sym_preproc_if_token2] = ACTIONS(1014), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1014), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1014), + [sym_preproc_directive] = ACTIONS(1014), + [anon_sym_LPAREN2] = ACTIONS(1016), + [anon_sym_BANG] = ACTIONS(1016), + [anon_sym_TILDE] = ACTIONS(1016), + [anon_sym_DASH] = ACTIONS(1014), + [anon_sym_PLUS] = ACTIONS(1014), + [anon_sym_STAR] = ACTIONS(1016), + [anon_sym_AMP] = ACTIONS(1016), + [anon_sym_SEMI] = ACTIONS(1016), + [anon_sym_typedef] = ACTIONS(1014), + [anon_sym_extern] = ACTIONS(1014), + [anon_sym___attribute__] = ACTIONS(1014), + [anon_sym_LBRACE] = ACTIONS(1016), + [anon_sym_static] = ACTIONS(1014), + [anon_sym_auto] = ACTIONS(1014), + [anon_sym_register] = ACTIONS(1014), + [anon_sym_inline] = ACTIONS(1014), + [anon_sym_const] = ACTIONS(1014), + [anon_sym_volatile] = ACTIONS(1014), + [anon_sym_restrict] = ACTIONS(1014), + [anon_sym__Atomic] = ACTIONS(1014), + [anon_sym_signed] = ACTIONS(1014), + [anon_sym_unsigned] = ACTIONS(1014), + [anon_sym_long] = ACTIONS(1014), + [anon_sym_short] = ACTIONS(1014), + [sym_primitive_type] = ACTIONS(1014), + [anon_sym_enum] = ACTIONS(1014), + [anon_sym_struct] = ACTIONS(1014), + [anon_sym_union] = ACTIONS(1014), + [anon_sym_if] = ACTIONS(1014), + [anon_sym_else] = ACTIONS(1014), + [anon_sym_switch] = ACTIONS(1014), + [anon_sym_case] = ACTIONS(1014), + [anon_sym_default] = ACTIONS(1014), + [anon_sym_while] = ACTIONS(1014), + [anon_sym_do] = ACTIONS(1014), + [anon_sym_for] = ACTIONS(1014), + [anon_sym_return] = ACTIONS(1014), + [anon_sym_break] = ACTIONS(1014), + [anon_sym_continue] = ACTIONS(1014), + [anon_sym_goto] = ACTIONS(1014), + [anon_sym_DASH_DASH] = ACTIONS(1016), + [anon_sym_PLUS_PLUS] = ACTIONS(1016), + [anon_sym_sizeof] = ACTIONS(1014), + [sym_number_literal] = ACTIONS(1016), + [anon_sym_L_SQUOTE] = ACTIONS(1016), + [anon_sym_u_SQUOTE] = ACTIONS(1016), + [anon_sym_U_SQUOTE] = ACTIONS(1016), + [anon_sym_u8_SQUOTE] = ACTIONS(1016), + [anon_sym_SQUOTE] = ACTIONS(1016), + [anon_sym_L_DQUOTE] = ACTIONS(1016), + [anon_sym_u_DQUOTE] = ACTIONS(1016), + [anon_sym_U_DQUOTE] = ACTIONS(1016), + [anon_sym_u8_DQUOTE] = ACTIONS(1016), + [anon_sym_DQUOTE] = ACTIONS(1016), + [sym_true] = ACTIONS(1014), + [sym_false] = ACTIONS(1014), + [sym_null] = ACTIONS(1014), + [sym_comment] = ACTIONS(3), + }, + [232] = { + [sym_identifier] = ACTIONS(1034), + [aux_sym_preproc_include_token1] = ACTIONS(1034), + [aux_sym_preproc_def_token1] = ACTIONS(1034), + [aux_sym_preproc_if_token1] = ACTIONS(1034), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1034), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1034), + [sym_preproc_directive] = ACTIONS(1034), + [anon_sym_LPAREN2] = ACTIONS(1036), + [anon_sym_BANG] = ACTIONS(1036), + [anon_sym_TILDE] = ACTIONS(1036), + [anon_sym_DASH] = ACTIONS(1034), + [anon_sym_PLUS] = ACTIONS(1034), + [anon_sym_STAR] = ACTIONS(1036), + [anon_sym_AMP] = ACTIONS(1036), + [anon_sym_SEMI] = ACTIONS(1036), + [anon_sym_typedef] = ACTIONS(1034), + [anon_sym_extern] = ACTIONS(1034), + [anon_sym___attribute__] = ACTIONS(1034), + [anon_sym_LBRACE] = ACTIONS(1036), + [anon_sym_RBRACE] = ACTIONS(1036), + [anon_sym_static] = ACTIONS(1034), + [anon_sym_auto] = ACTIONS(1034), + [anon_sym_register] = ACTIONS(1034), + [anon_sym_inline] = ACTIONS(1034), + [anon_sym_const] = ACTIONS(1034), + [anon_sym_volatile] = ACTIONS(1034), + [anon_sym_restrict] = ACTIONS(1034), + [anon_sym__Atomic] = ACTIONS(1034), + [anon_sym_signed] = ACTIONS(1034), + [anon_sym_unsigned] = ACTIONS(1034), + [anon_sym_long] = ACTIONS(1034), + [anon_sym_short] = ACTIONS(1034), + [sym_primitive_type] = ACTIONS(1034), + [anon_sym_enum] = ACTIONS(1034), + [anon_sym_struct] = ACTIONS(1034), + [anon_sym_union] = ACTIONS(1034), + [anon_sym_if] = ACTIONS(1034), + [anon_sym_else] = ACTIONS(1034), + [anon_sym_switch] = ACTIONS(1034), + [anon_sym_case] = ACTIONS(1034), + [anon_sym_default] = ACTIONS(1034), + [anon_sym_while] = ACTIONS(1034), + [anon_sym_do] = ACTIONS(1034), + [anon_sym_for] = ACTIONS(1034), + [anon_sym_return] = ACTIONS(1034), + [anon_sym_break] = ACTIONS(1034), + [anon_sym_continue] = ACTIONS(1034), + [anon_sym_goto] = ACTIONS(1034), + [anon_sym_DASH_DASH] = ACTIONS(1036), + [anon_sym_PLUS_PLUS] = ACTIONS(1036), + [anon_sym_sizeof] = ACTIONS(1034), + [sym_number_literal] = ACTIONS(1036), + [anon_sym_L_SQUOTE] = ACTIONS(1036), + [anon_sym_u_SQUOTE] = ACTIONS(1036), + [anon_sym_U_SQUOTE] = ACTIONS(1036), + [anon_sym_u8_SQUOTE] = ACTIONS(1036), + [anon_sym_SQUOTE] = ACTIONS(1036), + [anon_sym_L_DQUOTE] = ACTIONS(1036), + [anon_sym_u_DQUOTE] = ACTIONS(1036), + [anon_sym_U_DQUOTE] = ACTIONS(1036), + [anon_sym_u8_DQUOTE] = ACTIONS(1036), + [anon_sym_DQUOTE] = ACTIONS(1036), + [sym_true] = ACTIONS(1034), + [sym_false] = ACTIONS(1034), + [sym_null] = ACTIONS(1034), + [sym_comment] = ACTIONS(3), + }, + [233] = { + [sym_identifier] = ACTIONS(1002), + [aux_sym_preproc_include_token1] = ACTIONS(1002), + [aux_sym_preproc_def_token1] = ACTIONS(1002), + [aux_sym_preproc_if_token1] = ACTIONS(1002), + [aux_sym_preproc_if_token2] = ACTIONS(1002), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1002), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1002), + [sym_preproc_directive] = ACTIONS(1002), + [anon_sym_LPAREN2] = ACTIONS(1004), + [anon_sym_BANG] = ACTIONS(1004), + [anon_sym_TILDE] = ACTIONS(1004), + [anon_sym_DASH] = ACTIONS(1002), + [anon_sym_PLUS] = ACTIONS(1002), + [anon_sym_STAR] = ACTIONS(1004), + [anon_sym_AMP] = ACTIONS(1004), + [anon_sym_SEMI] = ACTIONS(1004), + [anon_sym_typedef] = ACTIONS(1002), + [anon_sym_extern] = ACTIONS(1002), + [anon_sym___attribute__] = ACTIONS(1002), + [anon_sym_LBRACE] = ACTIONS(1004), + [anon_sym_static] = ACTIONS(1002), + [anon_sym_auto] = ACTIONS(1002), + [anon_sym_register] = ACTIONS(1002), + [anon_sym_inline] = ACTIONS(1002), + [anon_sym_const] = ACTIONS(1002), + [anon_sym_volatile] = ACTIONS(1002), + [anon_sym_restrict] = ACTIONS(1002), + [anon_sym__Atomic] = ACTIONS(1002), + [anon_sym_signed] = ACTIONS(1002), + [anon_sym_unsigned] = ACTIONS(1002), + [anon_sym_long] = ACTIONS(1002), + [anon_sym_short] = ACTIONS(1002), + [sym_primitive_type] = ACTIONS(1002), + [anon_sym_enum] = ACTIONS(1002), + [anon_sym_struct] = ACTIONS(1002), + [anon_sym_union] = ACTIONS(1002), + [anon_sym_if] = ACTIONS(1002), + [anon_sym_else] = ACTIONS(1002), + [anon_sym_switch] = ACTIONS(1002), + [anon_sym_case] = ACTIONS(1002), + [anon_sym_default] = ACTIONS(1002), + [anon_sym_while] = ACTIONS(1002), + [anon_sym_do] = ACTIONS(1002), + [anon_sym_for] = ACTIONS(1002), + [anon_sym_return] = ACTIONS(1002), + [anon_sym_break] = ACTIONS(1002), + [anon_sym_continue] = ACTIONS(1002), + [anon_sym_goto] = ACTIONS(1002), + [anon_sym_DASH_DASH] = ACTIONS(1004), + [anon_sym_PLUS_PLUS] = ACTIONS(1004), + [anon_sym_sizeof] = ACTIONS(1002), + [sym_number_literal] = ACTIONS(1004), + [anon_sym_L_SQUOTE] = ACTIONS(1004), + [anon_sym_u_SQUOTE] = ACTIONS(1004), + [anon_sym_U_SQUOTE] = ACTIONS(1004), + [anon_sym_u8_SQUOTE] = ACTIONS(1004), + [anon_sym_SQUOTE] = ACTIONS(1004), + [anon_sym_L_DQUOTE] = ACTIONS(1004), + [anon_sym_u_DQUOTE] = ACTIONS(1004), + [anon_sym_U_DQUOTE] = ACTIONS(1004), + [anon_sym_u8_DQUOTE] = ACTIONS(1004), + [anon_sym_DQUOTE] = ACTIONS(1004), + [sym_true] = ACTIONS(1002), + [sym_false] = ACTIONS(1002), + [sym_null] = ACTIONS(1002), + [sym_comment] = ACTIONS(3), + }, + [234] = { + [ts_builtin_sym_end] = ACTIONS(1064), + [sym_identifier] = ACTIONS(1062), + [aux_sym_preproc_include_token1] = ACTIONS(1062), + [aux_sym_preproc_def_token1] = ACTIONS(1062), + [aux_sym_preproc_if_token1] = ACTIONS(1062), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1062), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1062), + [sym_preproc_directive] = ACTIONS(1062), + [anon_sym_LPAREN2] = ACTIONS(1064), + [anon_sym_BANG] = ACTIONS(1064), + [anon_sym_TILDE] = ACTIONS(1064), + [anon_sym_DASH] = ACTIONS(1062), + [anon_sym_PLUS] = ACTIONS(1062), + [anon_sym_STAR] = ACTIONS(1064), + [anon_sym_AMP] = ACTIONS(1064), + [anon_sym_SEMI] = ACTIONS(1064), + [anon_sym_typedef] = ACTIONS(1062), + [anon_sym_extern] = ACTIONS(1062), + [anon_sym___attribute__] = ACTIONS(1062), + [anon_sym_LBRACE] = ACTIONS(1064), [anon_sym_static] = ACTIONS(1062), [anon_sym_auto] = ACTIONS(1062), [anon_sym_register] = ACTIONS(1062), @@ -25492,12 +25712,12 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1062), [sym_comment] = ACTIONS(3), }, - [232] = { + [235] = { + [ts_builtin_sym_end] = ACTIONS(966), [sym_identifier] = ACTIONS(964), [aux_sym_preproc_include_token1] = ACTIONS(964), [aux_sym_preproc_def_token1] = ACTIONS(964), [aux_sym_preproc_if_token1] = ACTIONS(964), - [aux_sym_preproc_if_token2] = ACTIONS(964), [aux_sym_preproc_ifdef_token1] = ACTIONS(964), [aux_sym_preproc_ifdef_token2] = ACTIONS(964), [sym_preproc_directive] = ACTIONS(964), @@ -25560,1435 +25780,892 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(964), [sym_comment] = ACTIONS(3), }, - [233] = { - [sym_identifier] = ACTIONS(986), - [aux_sym_preproc_include_token1] = ACTIONS(986), - [aux_sym_preproc_def_token1] = ACTIONS(986), - [aux_sym_preproc_if_token1] = ACTIONS(986), - [aux_sym_preproc_if_token2] = ACTIONS(986), - [aux_sym_preproc_ifdef_token1] = ACTIONS(986), - [aux_sym_preproc_ifdef_token2] = ACTIONS(986), - [sym_preproc_directive] = ACTIONS(986), - [anon_sym_LPAREN2] = ACTIONS(988), - [anon_sym_BANG] = ACTIONS(988), - [anon_sym_TILDE] = ACTIONS(988), - [anon_sym_DASH] = ACTIONS(986), - [anon_sym_PLUS] = ACTIONS(986), - [anon_sym_STAR] = ACTIONS(988), - [anon_sym_AMP] = ACTIONS(988), - [anon_sym_SEMI] = ACTIONS(988), - [anon_sym_typedef] = ACTIONS(986), - [anon_sym_extern] = ACTIONS(986), - [anon_sym___attribute__] = ACTIONS(986), - [anon_sym_LBRACE] = ACTIONS(988), - [anon_sym_static] = ACTIONS(986), - [anon_sym_auto] = ACTIONS(986), - [anon_sym_register] = ACTIONS(986), - [anon_sym_inline] = ACTIONS(986), - [anon_sym_const] = ACTIONS(986), - [anon_sym_volatile] = ACTIONS(986), - [anon_sym_restrict] = ACTIONS(986), - [anon_sym__Atomic] = ACTIONS(986), - [anon_sym_signed] = ACTIONS(986), - [anon_sym_unsigned] = ACTIONS(986), - [anon_sym_long] = ACTIONS(986), - [anon_sym_short] = ACTIONS(986), - [sym_primitive_type] = ACTIONS(986), - [anon_sym_enum] = ACTIONS(986), - [anon_sym_struct] = ACTIONS(986), - [anon_sym_union] = ACTIONS(986), - [anon_sym_if] = ACTIONS(986), - [anon_sym_else] = ACTIONS(986), - [anon_sym_switch] = ACTIONS(986), - [anon_sym_case] = ACTIONS(986), - [anon_sym_default] = ACTIONS(986), - [anon_sym_while] = ACTIONS(986), - [anon_sym_do] = ACTIONS(986), - [anon_sym_for] = ACTIONS(986), - [anon_sym_return] = ACTIONS(986), - [anon_sym_break] = ACTIONS(986), - [anon_sym_continue] = ACTIONS(986), - [anon_sym_goto] = ACTIONS(986), - [anon_sym_DASH_DASH] = ACTIONS(988), - [anon_sym_PLUS_PLUS] = ACTIONS(988), - [anon_sym_sizeof] = ACTIONS(986), - [sym_number_literal] = ACTIONS(988), - [anon_sym_L_SQUOTE] = ACTIONS(988), - [anon_sym_u_SQUOTE] = ACTIONS(988), - [anon_sym_U_SQUOTE] = ACTIONS(988), - [anon_sym_u8_SQUOTE] = ACTIONS(988), - [anon_sym_SQUOTE] = ACTIONS(988), - [anon_sym_L_DQUOTE] = ACTIONS(988), - [anon_sym_u_DQUOTE] = ACTIONS(988), - [anon_sym_U_DQUOTE] = ACTIONS(988), - [anon_sym_u8_DQUOTE] = ACTIONS(988), - [anon_sym_DQUOTE] = ACTIONS(988), - [sym_true] = ACTIONS(986), - [sym_false] = ACTIONS(986), - [sym_null] = ACTIONS(986), + [236] = { + [sym_identifier] = ACTIONS(1022), + [aux_sym_preproc_include_token1] = ACTIONS(1022), + [aux_sym_preproc_def_token1] = ACTIONS(1022), + [aux_sym_preproc_if_token1] = ACTIONS(1022), + [aux_sym_preproc_if_token2] = ACTIONS(1022), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1022), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1022), + [sym_preproc_directive] = ACTIONS(1022), + [anon_sym_LPAREN2] = ACTIONS(1024), + [anon_sym_BANG] = ACTIONS(1024), + [anon_sym_TILDE] = ACTIONS(1024), + [anon_sym_DASH] = ACTIONS(1022), + [anon_sym_PLUS] = ACTIONS(1022), + [anon_sym_STAR] = ACTIONS(1024), + [anon_sym_AMP] = ACTIONS(1024), + [anon_sym_SEMI] = ACTIONS(1024), + [anon_sym_typedef] = ACTIONS(1022), + [anon_sym_extern] = ACTIONS(1022), + [anon_sym___attribute__] = ACTIONS(1022), + [anon_sym_LBRACE] = ACTIONS(1024), + [anon_sym_static] = ACTIONS(1022), + [anon_sym_auto] = ACTIONS(1022), + [anon_sym_register] = ACTIONS(1022), + [anon_sym_inline] = ACTIONS(1022), + [anon_sym_const] = ACTIONS(1022), + [anon_sym_volatile] = ACTIONS(1022), + [anon_sym_restrict] = ACTIONS(1022), + [anon_sym__Atomic] = ACTIONS(1022), + [anon_sym_signed] = ACTIONS(1022), + [anon_sym_unsigned] = ACTIONS(1022), + [anon_sym_long] = ACTIONS(1022), + [anon_sym_short] = ACTIONS(1022), + [sym_primitive_type] = ACTIONS(1022), + [anon_sym_enum] = ACTIONS(1022), + [anon_sym_struct] = ACTIONS(1022), + [anon_sym_union] = ACTIONS(1022), + [anon_sym_if] = ACTIONS(1022), + [anon_sym_else] = ACTIONS(1022), + [anon_sym_switch] = ACTIONS(1022), + [anon_sym_case] = ACTIONS(1022), + [anon_sym_default] = ACTIONS(1022), + [anon_sym_while] = ACTIONS(1022), + [anon_sym_do] = ACTIONS(1022), + [anon_sym_for] = ACTIONS(1022), + [anon_sym_return] = ACTIONS(1022), + [anon_sym_break] = ACTIONS(1022), + [anon_sym_continue] = ACTIONS(1022), + [anon_sym_goto] = ACTIONS(1022), + [anon_sym_DASH_DASH] = ACTIONS(1024), + [anon_sym_PLUS_PLUS] = ACTIONS(1024), + [anon_sym_sizeof] = ACTIONS(1022), + [sym_number_literal] = ACTIONS(1024), + [anon_sym_L_SQUOTE] = ACTIONS(1024), + [anon_sym_u_SQUOTE] = ACTIONS(1024), + [anon_sym_U_SQUOTE] = ACTIONS(1024), + [anon_sym_u8_SQUOTE] = ACTIONS(1024), + [anon_sym_SQUOTE] = ACTIONS(1024), + [anon_sym_L_DQUOTE] = ACTIONS(1024), + [anon_sym_u_DQUOTE] = ACTIONS(1024), + [anon_sym_U_DQUOTE] = ACTIONS(1024), + [anon_sym_u8_DQUOTE] = ACTIONS(1024), + [anon_sym_DQUOTE] = ACTIONS(1024), + [sym_true] = ACTIONS(1022), + [sym_false] = ACTIONS(1022), + [sym_null] = ACTIONS(1022), [sym_comment] = ACTIONS(3), }, - [234] = { - [sym_identifier] = ACTIONS(1058), - [aux_sym_preproc_include_token1] = ACTIONS(1058), - [aux_sym_preproc_def_token1] = ACTIONS(1058), - [aux_sym_preproc_if_token1] = ACTIONS(1058), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1058), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1058), - [sym_preproc_directive] = ACTIONS(1058), - [anon_sym_LPAREN2] = ACTIONS(1060), - [anon_sym_BANG] = ACTIONS(1060), - [anon_sym_TILDE] = ACTIONS(1060), - [anon_sym_DASH] = ACTIONS(1058), - [anon_sym_PLUS] = ACTIONS(1058), - [anon_sym_STAR] = ACTIONS(1060), - [anon_sym_AMP] = ACTIONS(1060), - [anon_sym_SEMI] = ACTIONS(1060), - [anon_sym_typedef] = ACTIONS(1058), - [anon_sym_extern] = ACTIONS(1058), - [anon_sym___attribute__] = ACTIONS(1058), - [anon_sym_LBRACE] = ACTIONS(1060), - [anon_sym_RBRACE] = ACTIONS(1060), - [anon_sym_static] = ACTIONS(1058), - [anon_sym_auto] = ACTIONS(1058), - [anon_sym_register] = ACTIONS(1058), - [anon_sym_inline] = ACTIONS(1058), - [anon_sym_const] = ACTIONS(1058), - [anon_sym_volatile] = ACTIONS(1058), - [anon_sym_restrict] = ACTIONS(1058), - [anon_sym__Atomic] = ACTIONS(1058), - [anon_sym_signed] = ACTIONS(1058), - [anon_sym_unsigned] = ACTIONS(1058), - [anon_sym_long] = ACTIONS(1058), - [anon_sym_short] = ACTIONS(1058), - [sym_primitive_type] = ACTIONS(1058), - [anon_sym_enum] = ACTIONS(1058), - [anon_sym_struct] = ACTIONS(1058), - [anon_sym_union] = ACTIONS(1058), - [anon_sym_if] = ACTIONS(1058), - [anon_sym_else] = ACTIONS(1058), - [anon_sym_switch] = ACTIONS(1058), - [anon_sym_case] = ACTIONS(1058), - [anon_sym_default] = ACTIONS(1058), - [anon_sym_while] = ACTIONS(1058), - [anon_sym_do] = ACTIONS(1058), - [anon_sym_for] = ACTIONS(1058), - [anon_sym_return] = ACTIONS(1058), - [anon_sym_break] = ACTIONS(1058), - [anon_sym_continue] = ACTIONS(1058), - [anon_sym_goto] = ACTIONS(1058), - [anon_sym_DASH_DASH] = ACTIONS(1060), - [anon_sym_PLUS_PLUS] = ACTIONS(1060), - [anon_sym_sizeof] = ACTIONS(1058), - [sym_number_literal] = ACTIONS(1060), - [anon_sym_L_SQUOTE] = ACTIONS(1060), - [anon_sym_u_SQUOTE] = ACTIONS(1060), - [anon_sym_U_SQUOTE] = ACTIONS(1060), - [anon_sym_u8_SQUOTE] = ACTIONS(1060), - [anon_sym_SQUOTE] = ACTIONS(1060), - [anon_sym_L_DQUOTE] = ACTIONS(1060), - [anon_sym_u_DQUOTE] = ACTIONS(1060), - [anon_sym_U_DQUOTE] = ACTIONS(1060), - [anon_sym_u8_DQUOTE] = ACTIONS(1060), - [anon_sym_DQUOTE] = ACTIONS(1060), - [sym_true] = ACTIONS(1058), - [sym_false] = ACTIONS(1058), - [sym_null] = ACTIONS(1058), + [237] = { + [sym_identifier] = ACTIONS(1022), + [aux_sym_preproc_include_token1] = ACTIONS(1022), + [aux_sym_preproc_def_token1] = ACTIONS(1022), + [aux_sym_preproc_if_token1] = ACTIONS(1022), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1022), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1022), + [sym_preproc_directive] = ACTIONS(1022), + [anon_sym_LPAREN2] = ACTIONS(1024), + [anon_sym_BANG] = ACTIONS(1024), + [anon_sym_TILDE] = ACTIONS(1024), + [anon_sym_DASH] = ACTIONS(1022), + [anon_sym_PLUS] = ACTIONS(1022), + [anon_sym_STAR] = ACTIONS(1024), + [anon_sym_AMP] = ACTIONS(1024), + [anon_sym_SEMI] = ACTIONS(1024), + [anon_sym_typedef] = ACTIONS(1022), + [anon_sym_extern] = ACTIONS(1022), + [anon_sym___attribute__] = ACTIONS(1022), + [anon_sym_LBRACE] = ACTIONS(1024), + [anon_sym_RBRACE] = ACTIONS(1024), + [anon_sym_static] = ACTIONS(1022), + [anon_sym_auto] = ACTIONS(1022), + [anon_sym_register] = ACTIONS(1022), + [anon_sym_inline] = ACTIONS(1022), + [anon_sym_const] = ACTIONS(1022), + [anon_sym_volatile] = ACTIONS(1022), + [anon_sym_restrict] = ACTIONS(1022), + [anon_sym__Atomic] = ACTIONS(1022), + [anon_sym_signed] = ACTIONS(1022), + [anon_sym_unsigned] = ACTIONS(1022), + [anon_sym_long] = ACTIONS(1022), + [anon_sym_short] = ACTIONS(1022), + [sym_primitive_type] = ACTIONS(1022), + [anon_sym_enum] = ACTIONS(1022), + [anon_sym_struct] = ACTIONS(1022), + [anon_sym_union] = ACTIONS(1022), + [anon_sym_if] = ACTIONS(1022), + [anon_sym_else] = ACTIONS(1022), + [anon_sym_switch] = ACTIONS(1022), + [anon_sym_case] = ACTIONS(1022), + [anon_sym_default] = ACTIONS(1022), + [anon_sym_while] = ACTIONS(1022), + [anon_sym_do] = ACTIONS(1022), + [anon_sym_for] = ACTIONS(1022), + [anon_sym_return] = ACTIONS(1022), + [anon_sym_break] = ACTIONS(1022), + [anon_sym_continue] = ACTIONS(1022), + [anon_sym_goto] = ACTIONS(1022), + [anon_sym_DASH_DASH] = ACTIONS(1024), + [anon_sym_PLUS_PLUS] = ACTIONS(1024), + [anon_sym_sizeof] = ACTIONS(1022), + [sym_number_literal] = ACTIONS(1024), + [anon_sym_L_SQUOTE] = ACTIONS(1024), + [anon_sym_u_SQUOTE] = ACTIONS(1024), + [anon_sym_U_SQUOTE] = ACTIONS(1024), + [anon_sym_u8_SQUOTE] = ACTIONS(1024), + [anon_sym_SQUOTE] = ACTIONS(1024), + [anon_sym_L_DQUOTE] = ACTIONS(1024), + [anon_sym_u_DQUOTE] = ACTIONS(1024), + [anon_sym_U_DQUOTE] = ACTIONS(1024), + [anon_sym_u8_DQUOTE] = ACTIONS(1024), + [anon_sym_DQUOTE] = ACTIONS(1024), + [sym_true] = ACTIONS(1022), + [sym_false] = ACTIONS(1022), + [sym_null] = ACTIONS(1022), [sym_comment] = ACTIONS(3), }, - [235] = { - [sym_identifier] = ACTIONS(994), - [aux_sym_preproc_include_token1] = ACTIONS(994), - [aux_sym_preproc_def_token1] = ACTIONS(994), - [aux_sym_preproc_if_token1] = ACTIONS(994), - [aux_sym_preproc_if_token2] = ACTIONS(994), - [aux_sym_preproc_ifdef_token1] = ACTIONS(994), - [aux_sym_preproc_ifdef_token2] = ACTIONS(994), - [sym_preproc_directive] = ACTIONS(994), - [anon_sym_LPAREN2] = ACTIONS(996), - [anon_sym_BANG] = ACTIONS(996), - [anon_sym_TILDE] = ACTIONS(996), - [anon_sym_DASH] = ACTIONS(994), - [anon_sym_PLUS] = ACTIONS(994), - [anon_sym_STAR] = ACTIONS(996), - [anon_sym_AMP] = ACTIONS(996), - [anon_sym_SEMI] = ACTIONS(996), - [anon_sym_typedef] = ACTIONS(994), - [anon_sym_extern] = ACTIONS(994), - [anon_sym___attribute__] = ACTIONS(994), - [anon_sym_LBRACE] = ACTIONS(996), - [anon_sym_static] = ACTIONS(994), - [anon_sym_auto] = ACTIONS(994), - [anon_sym_register] = ACTIONS(994), - [anon_sym_inline] = ACTIONS(994), - [anon_sym_const] = ACTIONS(994), - [anon_sym_volatile] = ACTIONS(994), - [anon_sym_restrict] = ACTIONS(994), - [anon_sym__Atomic] = ACTIONS(994), - [anon_sym_signed] = ACTIONS(994), - [anon_sym_unsigned] = ACTIONS(994), - [anon_sym_long] = ACTIONS(994), - [anon_sym_short] = ACTIONS(994), - [sym_primitive_type] = ACTIONS(994), - [anon_sym_enum] = ACTIONS(994), - [anon_sym_struct] = ACTIONS(994), - [anon_sym_union] = ACTIONS(994), - [anon_sym_if] = ACTIONS(994), - [anon_sym_else] = ACTIONS(994), - [anon_sym_switch] = ACTIONS(994), - [anon_sym_case] = ACTIONS(994), - [anon_sym_default] = ACTIONS(994), - [anon_sym_while] = ACTIONS(994), - [anon_sym_do] = ACTIONS(994), - [anon_sym_for] = ACTIONS(994), - [anon_sym_return] = ACTIONS(994), - [anon_sym_break] = ACTIONS(994), - [anon_sym_continue] = ACTIONS(994), - [anon_sym_goto] = ACTIONS(994), - [anon_sym_DASH_DASH] = ACTIONS(996), - [anon_sym_PLUS_PLUS] = ACTIONS(996), - [anon_sym_sizeof] = ACTIONS(994), - [sym_number_literal] = ACTIONS(996), - [anon_sym_L_SQUOTE] = ACTIONS(996), - [anon_sym_u_SQUOTE] = ACTIONS(996), - [anon_sym_U_SQUOTE] = ACTIONS(996), - [anon_sym_u8_SQUOTE] = ACTIONS(996), - [anon_sym_SQUOTE] = ACTIONS(996), - [anon_sym_L_DQUOTE] = ACTIONS(996), - [anon_sym_u_DQUOTE] = ACTIONS(996), - [anon_sym_U_DQUOTE] = ACTIONS(996), - [anon_sym_u8_DQUOTE] = ACTIONS(996), - [anon_sym_DQUOTE] = ACTIONS(996), - [sym_true] = ACTIONS(994), - [sym_false] = ACTIONS(994), - [sym_null] = ACTIONS(994), + [238] = { + [sym_identifier] = ACTIONS(1006), + [aux_sym_preproc_include_token1] = ACTIONS(1006), + [aux_sym_preproc_def_token1] = ACTIONS(1006), + [aux_sym_preproc_if_token1] = ACTIONS(1006), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1006), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1006), + [sym_preproc_directive] = ACTIONS(1006), + [anon_sym_LPAREN2] = ACTIONS(1008), + [anon_sym_BANG] = ACTIONS(1008), + [anon_sym_TILDE] = ACTIONS(1008), + [anon_sym_DASH] = ACTIONS(1006), + [anon_sym_PLUS] = ACTIONS(1006), + [anon_sym_STAR] = ACTIONS(1008), + [anon_sym_AMP] = ACTIONS(1008), + [anon_sym_SEMI] = ACTIONS(1008), + [anon_sym_typedef] = ACTIONS(1006), + [anon_sym_extern] = ACTIONS(1006), + [anon_sym___attribute__] = ACTIONS(1006), + [anon_sym_LBRACE] = ACTIONS(1008), + [anon_sym_RBRACE] = ACTIONS(1008), + [anon_sym_static] = ACTIONS(1006), + [anon_sym_auto] = ACTIONS(1006), + [anon_sym_register] = ACTIONS(1006), + [anon_sym_inline] = ACTIONS(1006), + [anon_sym_const] = ACTIONS(1006), + [anon_sym_volatile] = ACTIONS(1006), + [anon_sym_restrict] = ACTIONS(1006), + [anon_sym__Atomic] = ACTIONS(1006), + [anon_sym_signed] = ACTIONS(1006), + [anon_sym_unsigned] = ACTIONS(1006), + [anon_sym_long] = ACTIONS(1006), + [anon_sym_short] = ACTIONS(1006), + [sym_primitive_type] = ACTIONS(1006), + [anon_sym_enum] = ACTIONS(1006), + [anon_sym_struct] = ACTIONS(1006), + [anon_sym_union] = ACTIONS(1006), + [anon_sym_if] = ACTIONS(1006), + [anon_sym_else] = ACTIONS(1006), + [anon_sym_switch] = ACTIONS(1006), + [anon_sym_case] = ACTIONS(1006), + [anon_sym_default] = ACTIONS(1006), + [anon_sym_while] = ACTIONS(1006), + [anon_sym_do] = ACTIONS(1006), + [anon_sym_for] = ACTIONS(1006), + [anon_sym_return] = ACTIONS(1006), + [anon_sym_break] = ACTIONS(1006), + [anon_sym_continue] = ACTIONS(1006), + [anon_sym_goto] = ACTIONS(1006), + [anon_sym_DASH_DASH] = ACTIONS(1008), + [anon_sym_PLUS_PLUS] = ACTIONS(1008), + [anon_sym_sizeof] = ACTIONS(1006), + [sym_number_literal] = ACTIONS(1008), + [anon_sym_L_SQUOTE] = ACTIONS(1008), + [anon_sym_u_SQUOTE] = ACTIONS(1008), + [anon_sym_U_SQUOTE] = ACTIONS(1008), + [anon_sym_u8_SQUOTE] = ACTIONS(1008), + [anon_sym_SQUOTE] = ACTIONS(1008), + [anon_sym_L_DQUOTE] = ACTIONS(1008), + [anon_sym_u_DQUOTE] = ACTIONS(1008), + [anon_sym_U_DQUOTE] = ACTIONS(1008), + [anon_sym_u8_DQUOTE] = ACTIONS(1008), + [anon_sym_DQUOTE] = ACTIONS(1008), + [sym_true] = ACTIONS(1006), + [sym_false] = ACTIONS(1006), + [sym_null] = ACTIONS(1006), [sym_comment] = ACTIONS(3), }, - [236] = { - [sym_type_qualifier] = STATE(722), - [sym__type_specifier] = STATE(850), - [sym_sized_type_specifier] = STATE(850), - [sym_enum_specifier] = STATE(850), - [sym_struct_specifier] = STATE(850), - [sym_union_specifier] = STATE(850), - [sym__expression] = STATE(598), - [sym_comma_expression] = STATE(1190), - [sym_conditional_expression] = STATE(598), - [sym_assignment_expression] = STATE(598), - [sym_pointer_expression] = STATE(505), - [sym_unary_expression] = STATE(598), - [sym_binary_expression] = STATE(598), - [sym_update_expression] = STATE(598), - [sym_cast_expression] = STATE(598), - [sym_type_descriptor] = STATE(1156), - [sym_sizeof_expression] = STATE(598), - [sym_subscript_expression] = STATE(505), - [sym_call_expression] = STATE(505), - [sym_field_expression] = STATE(505), - [sym_compound_literal_expression] = STATE(598), - [sym_parenthesized_expression] = STATE(505), - [sym_char_literal] = STATE(598), - [sym_concatenated_string] = STATE(598), - [sym_string_literal] = STATE(376), - [sym_macro_type_specifier] = STATE(850), - [aux_sym_type_definition_repeat1] = STATE(722), - [aux_sym_sized_type_specifier_repeat1] = STATE(854), - [sym_identifier] = ACTIONS(1182), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_const] = ACTIONS(39), - [anon_sym_volatile] = ACTIONS(39), - [anon_sym_restrict] = ACTIONS(39), - [anon_sym__Atomic] = ACTIONS(39), - [anon_sym_signed] = ACTIONS(1184), - [anon_sym_unsigned] = ACTIONS(1184), - [anon_sym_long] = ACTIONS(1184), - [anon_sym_short] = ACTIONS(1184), - [sym_primitive_type] = ACTIONS(1186), - [anon_sym_enum] = ACTIONS(45), - [anon_sym_struct] = ACTIONS(47), - [anon_sym_union] = ACTIONS(49), - [anon_sym_DASH_DASH] = ACTIONS(73), - [anon_sym_PLUS_PLUS] = ACTIONS(73), - [anon_sym_sizeof] = ACTIONS(75), - [sym_number_literal] = ACTIONS(1188), - [anon_sym_L_SQUOTE] = ACTIONS(79), - [anon_sym_u_SQUOTE] = ACTIONS(79), - [anon_sym_U_SQUOTE] = ACTIONS(79), - [anon_sym_u8_SQUOTE] = ACTIONS(79), - [anon_sym_SQUOTE] = ACTIONS(79), - [anon_sym_L_DQUOTE] = ACTIONS(81), - [anon_sym_u_DQUOTE] = ACTIONS(81), - [anon_sym_U_DQUOTE] = ACTIONS(81), - [anon_sym_u8_DQUOTE] = ACTIONS(81), - [anon_sym_DQUOTE] = ACTIONS(81), - [sym_true] = ACTIONS(1190), - [sym_false] = ACTIONS(1190), - [sym_null] = ACTIONS(1190), + [239] = { + [ts_builtin_sym_end] = ACTIONS(1076), + [sym_identifier] = ACTIONS(1074), + [aux_sym_preproc_include_token1] = ACTIONS(1074), + [aux_sym_preproc_def_token1] = ACTIONS(1074), + [aux_sym_preproc_if_token1] = ACTIONS(1074), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1074), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1074), + [sym_preproc_directive] = ACTIONS(1074), + [anon_sym_LPAREN2] = ACTIONS(1076), + [anon_sym_BANG] = ACTIONS(1076), + [anon_sym_TILDE] = ACTIONS(1076), + [anon_sym_DASH] = ACTIONS(1074), + [anon_sym_PLUS] = ACTIONS(1074), + [anon_sym_STAR] = ACTIONS(1076), + [anon_sym_AMP] = ACTIONS(1076), + [anon_sym_SEMI] = ACTIONS(1076), + [anon_sym_typedef] = ACTIONS(1074), + [anon_sym_extern] = ACTIONS(1074), + [anon_sym___attribute__] = ACTIONS(1074), + [anon_sym_LBRACE] = ACTIONS(1076), + [anon_sym_static] = ACTIONS(1074), + [anon_sym_auto] = ACTIONS(1074), + [anon_sym_register] = ACTIONS(1074), + [anon_sym_inline] = ACTIONS(1074), + [anon_sym_const] = ACTIONS(1074), + [anon_sym_volatile] = ACTIONS(1074), + [anon_sym_restrict] = ACTIONS(1074), + [anon_sym__Atomic] = ACTIONS(1074), + [anon_sym_signed] = ACTIONS(1074), + [anon_sym_unsigned] = ACTIONS(1074), + [anon_sym_long] = ACTIONS(1074), + [anon_sym_short] = ACTIONS(1074), + [sym_primitive_type] = ACTIONS(1074), + [anon_sym_enum] = ACTIONS(1074), + [anon_sym_struct] = ACTIONS(1074), + [anon_sym_union] = ACTIONS(1074), + [anon_sym_if] = ACTIONS(1074), + [anon_sym_else] = ACTIONS(1074), + [anon_sym_switch] = ACTIONS(1074), + [anon_sym_case] = ACTIONS(1074), + [anon_sym_default] = ACTIONS(1074), + [anon_sym_while] = ACTIONS(1074), + [anon_sym_do] = ACTIONS(1074), + [anon_sym_for] = ACTIONS(1074), + [anon_sym_return] = ACTIONS(1074), + [anon_sym_break] = ACTIONS(1074), + [anon_sym_continue] = ACTIONS(1074), + [anon_sym_goto] = ACTIONS(1074), + [anon_sym_DASH_DASH] = ACTIONS(1076), + [anon_sym_PLUS_PLUS] = ACTIONS(1076), + [anon_sym_sizeof] = ACTIONS(1074), + [sym_number_literal] = ACTIONS(1076), + [anon_sym_L_SQUOTE] = ACTIONS(1076), + [anon_sym_u_SQUOTE] = ACTIONS(1076), + [anon_sym_U_SQUOTE] = ACTIONS(1076), + [anon_sym_u8_SQUOTE] = ACTIONS(1076), + [anon_sym_SQUOTE] = ACTIONS(1076), + [anon_sym_L_DQUOTE] = ACTIONS(1076), + [anon_sym_u_DQUOTE] = ACTIONS(1076), + [anon_sym_U_DQUOTE] = ACTIONS(1076), + [anon_sym_u8_DQUOTE] = ACTIONS(1076), + [anon_sym_DQUOTE] = ACTIONS(1076), + [sym_true] = ACTIONS(1074), + [sym_false] = ACTIONS(1074), + [sym_null] = ACTIONS(1074), [sym_comment] = ACTIONS(3), }, - [237] = { - [ts_builtin_sym_end] = ACTIONS(1028), - [sym_identifier] = ACTIONS(1026), - [aux_sym_preproc_include_token1] = ACTIONS(1026), - [aux_sym_preproc_def_token1] = ACTIONS(1026), - [aux_sym_preproc_if_token1] = ACTIONS(1026), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1026), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1026), - [sym_preproc_directive] = ACTIONS(1026), - [anon_sym_LPAREN2] = ACTIONS(1028), - [anon_sym_BANG] = ACTIONS(1028), - [anon_sym_TILDE] = ACTIONS(1028), - [anon_sym_DASH] = ACTIONS(1026), - [anon_sym_PLUS] = ACTIONS(1026), - [anon_sym_STAR] = ACTIONS(1028), - [anon_sym_AMP] = ACTIONS(1028), - [anon_sym_SEMI] = ACTIONS(1028), - [anon_sym_typedef] = ACTIONS(1026), - [anon_sym_extern] = ACTIONS(1026), - [anon_sym___attribute__] = ACTIONS(1026), - [anon_sym_LBRACE] = ACTIONS(1028), - [anon_sym_static] = ACTIONS(1026), - [anon_sym_auto] = ACTIONS(1026), - [anon_sym_register] = ACTIONS(1026), - [anon_sym_inline] = ACTIONS(1026), - [anon_sym_const] = ACTIONS(1026), - [anon_sym_volatile] = ACTIONS(1026), - [anon_sym_restrict] = ACTIONS(1026), - [anon_sym__Atomic] = ACTIONS(1026), - [anon_sym_signed] = ACTIONS(1026), - [anon_sym_unsigned] = ACTIONS(1026), - [anon_sym_long] = ACTIONS(1026), - [anon_sym_short] = ACTIONS(1026), - [sym_primitive_type] = ACTIONS(1026), - [anon_sym_enum] = ACTIONS(1026), - [anon_sym_struct] = ACTIONS(1026), - [anon_sym_union] = ACTIONS(1026), - [anon_sym_if] = ACTIONS(1026), - [anon_sym_else] = ACTIONS(1026), - [anon_sym_switch] = ACTIONS(1026), - [anon_sym_case] = ACTIONS(1026), - [anon_sym_default] = ACTIONS(1026), - [anon_sym_while] = ACTIONS(1026), - [anon_sym_do] = ACTIONS(1026), - [anon_sym_for] = ACTIONS(1026), - [anon_sym_return] = ACTIONS(1026), - [anon_sym_break] = ACTIONS(1026), - [anon_sym_continue] = ACTIONS(1026), - [anon_sym_goto] = ACTIONS(1026), - [anon_sym_DASH_DASH] = ACTIONS(1028), - [anon_sym_PLUS_PLUS] = ACTIONS(1028), - [anon_sym_sizeof] = ACTIONS(1026), - [sym_number_literal] = ACTIONS(1028), - [anon_sym_L_SQUOTE] = ACTIONS(1028), - [anon_sym_u_SQUOTE] = ACTIONS(1028), - [anon_sym_U_SQUOTE] = ACTIONS(1028), - [anon_sym_u8_SQUOTE] = ACTIONS(1028), - [anon_sym_SQUOTE] = ACTIONS(1028), - [anon_sym_L_DQUOTE] = ACTIONS(1028), - [anon_sym_u_DQUOTE] = ACTIONS(1028), - [anon_sym_U_DQUOTE] = ACTIONS(1028), - [anon_sym_u8_DQUOTE] = ACTIONS(1028), - [anon_sym_DQUOTE] = ACTIONS(1028), - [sym_true] = ACTIONS(1026), - [sym_false] = ACTIONS(1026), - [sym_null] = ACTIONS(1026), + [240] = { + [sym_identifier] = ACTIONS(1030), + [aux_sym_preproc_include_token1] = ACTIONS(1030), + [aux_sym_preproc_def_token1] = ACTIONS(1030), + [aux_sym_preproc_if_token1] = ACTIONS(1030), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1030), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1030), + [sym_preproc_directive] = ACTIONS(1030), + [anon_sym_LPAREN2] = ACTIONS(1032), + [anon_sym_BANG] = ACTIONS(1032), + [anon_sym_TILDE] = ACTIONS(1032), + [anon_sym_DASH] = ACTIONS(1030), + [anon_sym_PLUS] = ACTIONS(1030), + [anon_sym_STAR] = ACTIONS(1032), + [anon_sym_AMP] = ACTIONS(1032), + [anon_sym_SEMI] = ACTIONS(1032), + [anon_sym_typedef] = ACTIONS(1030), + [anon_sym_extern] = ACTIONS(1030), + [anon_sym___attribute__] = ACTIONS(1030), + [anon_sym_LBRACE] = ACTIONS(1032), + [anon_sym_RBRACE] = ACTIONS(1032), + [anon_sym_static] = ACTIONS(1030), + [anon_sym_auto] = ACTIONS(1030), + [anon_sym_register] = ACTIONS(1030), + [anon_sym_inline] = ACTIONS(1030), + [anon_sym_const] = ACTIONS(1030), + [anon_sym_volatile] = ACTIONS(1030), + [anon_sym_restrict] = ACTIONS(1030), + [anon_sym__Atomic] = ACTIONS(1030), + [anon_sym_signed] = ACTIONS(1030), + [anon_sym_unsigned] = ACTIONS(1030), + [anon_sym_long] = ACTIONS(1030), + [anon_sym_short] = ACTIONS(1030), + [sym_primitive_type] = ACTIONS(1030), + [anon_sym_enum] = ACTIONS(1030), + [anon_sym_struct] = ACTIONS(1030), + [anon_sym_union] = ACTIONS(1030), + [anon_sym_if] = ACTIONS(1030), + [anon_sym_else] = ACTIONS(1030), + [anon_sym_switch] = ACTIONS(1030), + [anon_sym_case] = ACTIONS(1030), + [anon_sym_default] = ACTIONS(1030), + [anon_sym_while] = ACTIONS(1030), + [anon_sym_do] = ACTIONS(1030), + [anon_sym_for] = ACTIONS(1030), + [anon_sym_return] = ACTIONS(1030), + [anon_sym_break] = ACTIONS(1030), + [anon_sym_continue] = ACTIONS(1030), + [anon_sym_goto] = ACTIONS(1030), + [anon_sym_DASH_DASH] = ACTIONS(1032), + [anon_sym_PLUS_PLUS] = ACTIONS(1032), + [anon_sym_sizeof] = ACTIONS(1030), + [sym_number_literal] = ACTIONS(1032), + [anon_sym_L_SQUOTE] = ACTIONS(1032), + [anon_sym_u_SQUOTE] = ACTIONS(1032), + [anon_sym_U_SQUOTE] = ACTIONS(1032), + [anon_sym_u8_SQUOTE] = ACTIONS(1032), + [anon_sym_SQUOTE] = ACTIONS(1032), + [anon_sym_L_DQUOTE] = ACTIONS(1032), + [anon_sym_u_DQUOTE] = ACTIONS(1032), + [anon_sym_U_DQUOTE] = ACTIONS(1032), + [anon_sym_u8_DQUOTE] = ACTIONS(1032), + [anon_sym_DQUOTE] = ACTIONS(1032), + [sym_true] = ACTIONS(1030), + [sym_false] = ACTIONS(1030), + [sym_null] = ACTIONS(1030), [sym_comment] = ACTIONS(3), }, - [238] = { - [ts_builtin_sym_end] = ACTIONS(962), - [sym_identifier] = ACTIONS(960), - [aux_sym_preproc_include_token1] = ACTIONS(960), - [aux_sym_preproc_def_token1] = ACTIONS(960), - [aux_sym_preproc_if_token1] = ACTIONS(960), - [aux_sym_preproc_ifdef_token1] = ACTIONS(960), - [aux_sym_preproc_ifdef_token2] = ACTIONS(960), - [sym_preproc_directive] = ACTIONS(960), - [anon_sym_LPAREN2] = ACTIONS(962), - [anon_sym_BANG] = ACTIONS(962), - [anon_sym_TILDE] = ACTIONS(962), - [anon_sym_DASH] = ACTIONS(960), - [anon_sym_PLUS] = ACTIONS(960), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(962), - [anon_sym_typedef] = ACTIONS(960), - [anon_sym_extern] = ACTIONS(960), - [anon_sym___attribute__] = ACTIONS(960), - [anon_sym_LBRACE] = ACTIONS(962), - [anon_sym_static] = ACTIONS(960), - [anon_sym_auto] = ACTIONS(960), - [anon_sym_register] = ACTIONS(960), - [anon_sym_inline] = ACTIONS(960), - [anon_sym_const] = ACTIONS(960), - [anon_sym_volatile] = ACTIONS(960), - [anon_sym_restrict] = ACTIONS(960), - [anon_sym__Atomic] = ACTIONS(960), - [anon_sym_signed] = ACTIONS(960), - [anon_sym_unsigned] = ACTIONS(960), - [anon_sym_long] = ACTIONS(960), - [anon_sym_short] = ACTIONS(960), - [sym_primitive_type] = ACTIONS(960), - [anon_sym_enum] = ACTIONS(960), - [anon_sym_struct] = ACTIONS(960), - [anon_sym_union] = ACTIONS(960), - [anon_sym_if] = ACTIONS(960), - [anon_sym_else] = ACTIONS(960), - [anon_sym_switch] = ACTIONS(960), - [anon_sym_case] = ACTIONS(960), - [anon_sym_default] = ACTIONS(960), - [anon_sym_while] = ACTIONS(960), - [anon_sym_do] = ACTIONS(960), - [anon_sym_for] = ACTIONS(960), - [anon_sym_return] = ACTIONS(960), - [anon_sym_break] = ACTIONS(960), - [anon_sym_continue] = ACTIONS(960), - [anon_sym_goto] = ACTIONS(960), - [anon_sym_DASH_DASH] = ACTIONS(962), - [anon_sym_PLUS_PLUS] = ACTIONS(962), - [anon_sym_sizeof] = ACTIONS(960), - [sym_number_literal] = ACTIONS(962), - [anon_sym_L_SQUOTE] = ACTIONS(962), - [anon_sym_u_SQUOTE] = ACTIONS(962), - [anon_sym_U_SQUOTE] = ACTIONS(962), - [anon_sym_u8_SQUOTE] = ACTIONS(962), - [anon_sym_SQUOTE] = ACTIONS(962), - [anon_sym_L_DQUOTE] = ACTIONS(962), - [anon_sym_u_DQUOTE] = ACTIONS(962), - [anon_sym_U_DQUOTE] = ACTIONS(962), - [anon_sym_u8_DQUOTE] = ACTIONS(962), - [anon_sym_DQUOTE] = ACTIONS(962), - [sym_true] = ACTIONS(960), - [sym_false] = ACTIONS(960), - [sym_null] = ACTIONS(960), + [241] = { + [sym_identifier] = ACTIONS(968), + [aux_sym_preproc_include_token1] = ACTIONS(968), + [aux_sym_preproc_def_token1] = ACTIONS(968), + [aux_sym_preproc_if_token1] = ACTIONS(968), + [aux_sym_preproc_ifdef_token1] = ACTIONS(968), + [aux_sym_preproc_ifdef_token2] = ACTIONS(968), + [sym_preproc_directive] = ACTIONS(968), + [anon_sym_LPAREN2] = ACTIONS(970), + [anon_sym_BANG] = ACTIONS(970), + [anon_sym_TILDE] = ACTIONS(970), + [anon_sym_DASH] = ACTIONS(968), + [anon_sym_PLUS] = ACTIONS(968), + [anon_sym_STAR] = ACTIONS(970), + [anon_sym_AMP] = ACTIONS(970), + [anon_sym_SEMI] = ACTIONS(970), + [anon_sym_typedef] = ACTIONS(968), + [anon_sym_extern] = ACTIONS(968), + [anon_sym___attribute__] = ACTIONS(968), + [anon_sym_LBRACE] = ACTIONS(970), + [anon_sym_RBRACE] = ACTIONS(970), + [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_volatile] = ACTIONS(968), + [anon_sym_restrict] = ACTIONS(968), + [anon_sym__Atomic] = ACTIONS(968), + [anon_sym_signed] = 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_DASH_DASH] = ACTIONS(970), + [anon_sym_PLUS_PLUS] = ACTIONS(970), + [anon_sym_sizeof] = ACTIONS(968), + [sym_number_literal] = ACTIONS(970), + [anon_sym_L_SQUOTE] = ACTIONS(970), + [anon_sym_u_SQUOTE] = ACTIONS(970), + [anon_sym_U_SQUOTE] = ACTIONS(970), + [anon_sym_u8_SQUOTE] = ACTIONS(970), + [anon_sym_SQUOTE] = ACTIONS(970), + [anon_sym_L_DQUOTE] = ACTIONS(970), + [anon_sym_u_DQUOTE] = ACTIONS(970), + [anon_sym_U_DQUOTE] = ACTIONS(970), + [anon_sym_u8_DQUOTE] = ACTIONS(970), + [anon_sym_DQUOTE] = ACTIONS(970), + [sym_true] = ACTIONS(968), + [sym_false] = ACTIONS(968), + [sym_null] = ACTIONS(968), [sym_comment] = ACTIONS(3), }, - [239] = { - [sym_identifier] = ACTIONS(998), - [aux_sym_preproc_include_token1] = ACTIONS(998), - [aux_sym_preproc_def_token1] = ACTIONS(998), - [aux_sym_preproc_if_token1] = ACTIONS(998), - [aux_sym_preproc_if_token2] = ACTIONS(998), - [aux_sym_preproc_ifdef_token1] = ACTIONS(998), - [aux_sym_preproc_ifdef_token2] = ACTIONS(998), - [sym_preproc_directive] = ACTIONS(998), - [anon_sym_LPAREN2] = ACTIONS(1000), - [anon_sym_BANG] = ACTIONS(1000), - [anon_sym_TILDE] = ACTIONS(1000), - [anon_sym_DASH] = ACTIONS(998), - [anon_sym_PLUS] = ACTIONS(998), - [anon_sym_STAR] = ACTIONS(1000), - [anon_sym_AMP] = ACTIONS(1000), - [anon_sym_SEMI] = ACTIONS(1000), - [anon_sym_typedef] = ACTIONS(998), - [anon_sym_extern] = ACTIONS(998), - [anon_sym___attribute__] = ACTIONS(998), - [anon_sym_LBRACE] = ACTIONS(1000), - [anon_sym_static] = ACTIONS(998), - [anon_sym_auto] = ACTIONS(998), - [anon_sym_register] = ACTIONS(998), - [anon_sym_inline] = ACTIONS(998), - [anon_sym_const] = ACTIONS(998), - [anon_sym_volatile] = ACTIONS(998), - [anon_sym_restrict] = ACTIONS(998), - [anon_sym__Atomic] = ACTIONS(998), - [anon_sym_signed] = ACTIONS(998), - [anon_sym_unsigned] = ACTIONS(998), - [anon_sym_long] = ACTIONS(998), - [anon_sym_short] = ACTIONS(998), - [sym_primitive_type] = ACTIONS(998), - [anon_sym_enum] = ACTIONS(998), - [anon_sym_struct] = ACTIONS(998), - [anon_sym_union] = ACTIONS(998), - [anon_sym_if] = ACTIONS(998), - [anon_sym_else] = ACTIONS(998), - [anon_sym_switch] = ACTIONS(998), - [anon_sym_case] = ACTIONS(998), - [anon_sym_default] = ACTIONS(998), - [anon_sym_while] = ACTIONS(998), - [anon_sym_do] = ACTIONS(998), - [anon_sym_for] = ACTIONS(998), - [anon_sym_return] = ACTIONS(998), - [anon_sym_break] = ACTIONS(998), - [anon_sym_continue] = ACTIONS(998), - [anon_sym_goto] = ACTIONS(998), - [anon_sym_DASH_DASH] = ACTIONS(1000), - [anon_sym_PLUS_PLUS] = ACTIONS(1000), - [anon_sym_sizeof] = ACTIONS(998), - [sym_number_literal] = ACTIONS(1000), - [anon_sym_L_SQUOTE] = ACTIONS(1000), - [anon_sym_u_SQUOTE] = ACTIONS(1000), - [anon_sym_U_SQUOTE] = ACTIONS(1000), - [anon_sym_u8_SQUOTE] = ACTIONS(1000), - [anon_sym_SQUOTE] = ACTIONS(1000), - [anon_sym_L_DQUOTE] = ACTIONS(1000), - [anon_sym_u_DQUOTE] = ACTIONS(1000), - [anon_sym_U_DQUOTE] = ACTIONS(1000), - [anon_sym_u8_DQUOTE] = ACTIONS(1000), - [anon_sym_DQUOTE] = ACTIONS(1000), - [sym_true] = ACTIONS(998), - [sym_false] = ACTIONS(998), - [sym_null] = ACTIONS(998), + [242] = { + [sym_identifier] = ACTIONS(984), + [aux_sym_preproc_include_token1] = ACTIONS(984), + [aux_sym_preproc_def_token1] = ACTIONS(984), + [aux_sym_preproc_if_token1] = ACTIONS(984), + [aux_sym_preproc_ifdef_token1] = ACTIONS(984), + [aux_sym_preproc_ifdef_token2] = ACTIONS(984), + [sym_preproc_directive] = ACTIONS(984), + [anon_sym_LPAREN2] = ACTIONS(986), + [anon_sym_BANG] = ACTIONS(986), + [anon_sym_TILDE] = ACTIONS(986), + [anon_sym_DASH] = ACTIONS(984), + [anon_sym_PLUS] = ACTIONS(984), + [anon_sym_STAR] = ACTIONS(986), + [anon_sym_AMP] = ACTIONS(986), + [anon_sym_SEMI] = ACTIONS(986), + [anon_sym_typedef] = ACTIONS(984), + [anon_sym_extern] = ACTIONS(984), + [anon_sym___attribute__] = ACTIONS(984), + [anon_sym_LBRACE] = ACTIONS(986), + [anon_sym_RBRACE] = ACTIONS(986), + [anon_sym_static] = ACTIONS(984), + [anon_sym_auto] = ACTIONS(984), + [anon_sym_register] = ACTIONS(984), + [anon_sym_inline] = ACTIONS(984), + [anon_sym_const] = ACTIONS(984), + [anon_sym_volatile] = ACTIONS(984), + [anon_sym_restrict] = ACTIONS(984), + [anon_sym__Atomic] = ACTIONS(984), + [anon_sym_signed] = ACTIONS(984), + [anon_sym_unsigned] = ACTIONS(984), + [anon_sym_long] = ACTIONS(984), + [anon_sym_short] = ACTIONS(984), + [sym_primitive_type] = ACTIONS(984), + [anon_sym_enum] = ACTIONS(984), + [anon_sym_struct] = ACTIONS(984), + [anon_sym_union] = ACTIONS(984), + [anon_sym_if] = ACTIONS(984), + [anon_sym_else] = ACTIONS(984), + [anon_sym_switch] = ACTIONS(984), + [anon_sym_case] = ACTIONS(984), + [anon_sym_default] = ACTIONS(984), + [anon_sym_while] = ACTIONS(984), + [anon_sym_do] = ACTIONS(984), + [anon_sym_for] = ACTIONS(984), + [anon_sym_return] = ACTIONS(984), + [anon_sym_break] = ACTIONS(984), + [anon_sym_continue] = ACTIONS(984), + [anon_sym_goto] = ACTIONS(984), + [anon_sym_DASH_DASH] = ACTIONS(986), + [anon_sym_PLUS_PLUS] = ACTIONS(986), + [anon_sym_sizeof] = ACTIONS(984), + [sym_number_literal] = ACTIONS(986), + [anon_sym_L_SQUOTE] = ACTIONS(986), + [anon_sym_u_SQUOTE] = ACTIONS(986), + [anon_sym_U_SQUOTE] = ACTIONS(986), + [anon_sym_u8_SQUOTE] = ACTIONS(986), + [anon_sym_SQUOTE] = ACTIONS(986), + [anon_sym_L_DQUOTE] = ACTIONS(986), + [anon_sym_u_DQUOTE] = ACTIONS(986), + [anon_sym_U_DQUOTE] = ACTIONS(986), + [anon_sym_u8_DQUOTE] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(986), + [sym_true] = ACTIONS(984), + [sym_false] = ACTIONS(984), + [sym_null] = ACTIONS(984), [sym_comment] = ACTIONS(3), }, - [240] = { - [sym_identifier] = ACTIONS(1082), - [aux_sym_preproc_include_token1] = ACTIONS(1082), - [aux_sym_preproc_def_token1] = ACTIONS(1082), - [aux_sym_preproc_if_token1] = ACTIONS(1082), - [aux_sym_preproc_if_token2] = ACTIONS(1082), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1082), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1082), - [sym_preproc_directive] = ACTIONS(1082), - [anon_sym_LPAREN2] = ACTIONS(1084), - [anon_sym_BANG] = ACTIONS(1084), - [anon_sym_TILDE] = ACTIONS(1084), - [anon_sym_DASH] = ACTIONS(1082), - [anon_sym_PLUS] = ACTIONS(1082), - [anon_sym_STAR] = ACTIONS(1084), - [anon_sym_AMP] = ACTIONS(1084), - [anon_sym_SEMI] = ACTIONS(1084), - [anon_sym_typedef] = ACTIONS(1082), - [anon_sym_extern] = ACTIONS(1082), - [anon_sym___attribute__] = ACTIONS(1082), - [anon_sym_LBRACE] = 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_volatile] = ACTIONS(1082), - [anon_sym_restrict] = ACTIONS(1082), - [anon_sym__Atomic] = ACTIONS(1082), - [anon_sym_signed] = 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_else] = 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_DASH_DASH] = ACTIONS(1084), - [anon_sym_PLUS_PLUS] = ACTIONS(1084), - [anon_sym_sizeof] = ACTIONS(1082), - [sym_number_literal] = ACTIONS(1084), - [anon_sym_L_SQUOTE] = ACTIONS(1084), - [anon_sym_u_SQUOTE] = ACTIONS(1084), - [anon_sym_U_SQUOTE] = ACTIONS(1084), - [anon_sym_u8_SQUOTE] = ACTIONS(1084), - [anon_sym_SQUOTE] = ACTIONS(1084), - [anon_sym_L_DQUOTE] = ACTIONS(1084), - [anon_sym_u_DQUOTE] = ACTIONS(1084), - [anon_sym_U_DQUOTE] = ACTIONS(1084), - [anon_sym_u8_DQUOTE] = ACTIONS(1084), - [anon_sym_DQUOTE] = ACTIONS(1084), - [sym_true] = ACTIONS(1082), - [sym_false] = ACTIONS(1082), - [sym_null] = ACTIONS(1082), + [243] = { + [sym_identifier] = ACTIONS(992), + [aux_sym_preproc_include_token1] = ACTIONS(992), + [aux_sym_preproc_def_token1] = ACTIONS(992), + [aux_sym_preproc_if_token1] = ACTIONS(992), + [aux_sym_preproc_ifdef_token1] = ACTIONS(992), + [aux_sym_preproc_ifdef_token2] = ACTIONS(992), + [sym_preproc_directive] = ACTIONS(992), + [anon_sym_LPAREN2] = ACTIONS(994), + [anon_sym_BANG] = ACTIONS(994), + [anon_sym_TILDE] = ACTIONS(994), + [anon_sym_DASH] = ACTIONS(992), + [anon_sym_PLUS] = ACTIONS(992), + [anon_sym_STAR] = ACTIONS(994), + [anon_sym_AMP] = ACTIONS(994), + [anon_sym_SEMI] = ACTIONS(994), + [anon_sym_typedef] = ACTIONS(992), + [anon_sym_extern] = ACTIONS(992), + [anon_sym___attribute__] = ACTIONS(992), + [anon_sym_LBRACE] = ACTIONS(994), + [anon_sym_RBRACE] = ACTIONS(994), + [anon_sym_static] = ACTIONS(992), + [anon_sym_auto] = ACTIONS(992), + [anon_sym_register] = ACTIONS(992), + [anon_sym_inline] = ACTIONS(992), + [anon_sym_const] = ACTIONS(992), + [anon_sym_volatile] = ACTIONS(992), + [anon_sym_restrict] = ACTIONS(992), + [anon_sym__Atomic] = ACTIONS(992), + [anon_sym_signed] = ACTIONS(992), + [anon_sym_unsigned] = ACTIONS(992), + [anon_sym_long] = ACTIONS(992), + [anon_sym_short] = ACTIONS(992), + [sym_primitive_type] = ACTIONS(992), + [anon_sym_enum] = ACTIONS(992), + [anon_sym_struct] = ACTIONS(992), + [anon_sym_union] = ACTIONS(992), + [anon_sym_if] = ACTIONS(992), + [anon_sym_else] = ACTIONS(992), + [anon_sym_switch] = ACTIONS(992), + [anon_sym_case] = ACTIONS(992), + [anon_sym_default] = ACTIONS(992), + [anon_sym_while] = ACTIONS(992), + [anon_sym_do] = ACTIONS(992), + [anon_sym_for] = ACTIONS(992), + [anon_sym_return] = ACTIONS(992), + [anon_sym_break] = ACTIONS(992), + [anon_sym_continue] = ACTIONS(992), + [anon_sym_goto] = ACTIONS(992), + [anon_sym_DASH_DASH] = ACTIONS(994), + [anon_sym_PLUS_PLUS] = ACTIONS(994), + [anon_sym_sizeof] = ACTIONS(992), + [sym_number_literal] = ACTIONS(994), + [anon_sym_L_SQUOTE] = ACTIONS(994), + [anon_sym_u_SQUOTE] = ACTIONS(994), + [anon_sym_U_SQUOTE] = ACTIONS(994), + [anon_sym_u8_SQUOTE] = ACTIONS(994), + [anon_sym_SQUOTE] = ACTIONS(994), + [anon_sym_L_DQUOTE] = ACTIONS(994), + [anon_sym_u_DQUOTE] = ACTIONS(994), + [anon_sym_U_DQUOTE] = ACTIONS(994), + [anon_sym_u8_DQUOTE] = ACTIONS(994), + [anon_sym_DQUOTE] = ACTIONS(994), + [sym_true] = ACTIONS(992), + [sym_false] = ACTIONS(992), + [sym_null] = ACTIONS(992), [sym_comment] = ACTIONS(3), }, - [241] = { - [sym_identifier] = ACTIONS(960), - [aux_sym_preproc_include_token1] = ACTIONS(960), - [aux_sym_preproc_def_token1] = ACTIONS(960), - [aux_sym_preproc_if_token1] = ACTIONS(960), - [aux_sym_preproc_ifdef_token1] = ACTIONS(960), - [aux_sym_preproc_ifdef_token2] = ACTIONS(960), - [sym_preproc_directive] = ACTIONS(960), - [anon_sym_LPAREN2] = ACTIONS(962), - [anon_sym_BANG] = ACTIONS(962), - [anon_sym_TILDE] = ACTIONS(962), - [anon_sym_DASH] = ACTIONS(960), - [anon_sym_PLUS] = ACTIONS(960), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(962), - [anon_sym_typedef] = ACTIONS(960), - [anon_sym_extern] = ACTIONS(960), - [anon_sym___attribute__] = ACTIONS(960), - [anon_sym_LBRACE] = ACTIONS(962), - [anon_sym_RBRACE] = ACTIONS(962), - [anon_sym_static] = ACTIONS(960), - [anon_sym_auto] = ACTIONS(960), - [anon_sym_register] = ACTIONS(960), - [anon_sym_inline] = ACTIONS(960), - [anon_sym_const] = ACTIONS(960), - [anon_sym_volatile] = ACTIONS(960), - [anon_sym_restrict] = ACTIONS(960), - [anon_sym__Atomic] = ACTIONS(960), - [anon_sym_signed] = ACTIONS(960), - [anon_sym_unsigned] = ACTIONS(960), - [anon_sym_long] = ACTIONS(960), - [anon_sym_short] = ACTIONS(960), - [sym_primitive_type] = ACTIONS(960), - [anon_sym_enum] = ACTIONS(960), - [anon_sym_struct] = ACTIONS(960), - [anon_sym_union] = ACTIONS(960), - [anon_sym_if] = ACTIONS(960), - [anon_sym_else] = ACTIONS(960), - [anon_sym_switch] = ACTIONS(960), - [anon_sym_case] = ACTIONS(960), - [anon_sym_default] = ACTIONS(960), - [anon_sym_while] = ACTIONS(960), - [anon_sym_do] = ACTIONS(960), - [anon_sym_for] = ACTIONS(960), - [anon_sym_return] = ACTIONS(960), - [anon_sym_break] = ACTIONS(960), - [anon_sym_continue] = ACTIONS(960), - [anon_sym_goto] = ACTIONS(960), - [anon_sym_DASH_DASH] = ACTIONS(962), - [anon_sym_PLUS_PLUS] = ACTIONS(962), - [anon_sym_sizeof] = ACTIONS(960), - [sym_number_literal] = ACTIONS(962), - [anon_sym_L_SQUOTE] = ACTIONS(962), - [anon_sym_u_SQUOTE] = ACTIONS(962), - [anon_sym_U_SQUOTE] = ACTIONS(962), - [anon_sym_u8_SQUOTE] = ACTIONS(962), - [anon_sym_SQUOTE] = ACTIONS(962), - [anon_sym_L_DQUOTE] = ACTIONS(962), - [anon_sym_u_DQUOTE] = ACTIONS(962), - [anon_sym_U_DQUOTE] = ACTIONS(962), - [anon_sym_u8_DQUOTE] = ACTIONS(962), - [anon_sym_DQUOTE] = ACTIONS(962), - [sym_true] = ACTIONS(960), - [sym_false] = ACTIONS(960), - [sym_null] = ACTIONS(960), - [sym_comment] = ACTIONS(3), - }, - [242] = { - [sym_identifier] = ACTIONS(1026), - [aux_sym_preproc_include_token1] = ACTIONS(1026), - [aux_sym_preproc_def_token1] = ACTIONS(1026), - [aux_sym_preproc_if_token1] = ACTIONS(1026), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1026), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1026), - [sym_preproc_directive] = ACTIONS(1026), - [anon_sym_LPAREN2] = ACTIONS(1028), - [anon_sym_BANG] = ACTIONS(1028), - [anon_sym_TILDE] = ACTIONS(1028), - [anon_sym_DASH] = ACTIONS(1026), - [anon_sym_PLUS] = ACTIONS(1026), - [anon_sym_STAR] = ACTIONS(1028), - [anon_sym_AMP] = ACTIONS(1028), - [anon_sym_SEMI] = ACTIONS(1028), - [anon_sym_typedef] = ACTIONS(1026), - [anon_sym_extern] = ACTIONS(1026), - [anon_sym___attribute__] = ACTIONS(1026), - [anon_sym_LBRACE] = ACTIONS(1028), - [anon_sym_RBRACE] = ACTIONS(1028), - [anon_sym_static] = ACTIONS(1026), - [anon_sym_auto] = ACTIONS(1026), - [anon_sym_register] = ACTIONS(1026), - [anon_sym_inline] = ACTIONS(1026), - [anon_sym_const] = ACTIONS(1026), - [anon_sym_volatile] = ACTIONS(1026), - [anon_sym_restrict] = ACTIONS(1026), - [anon_sym__Atomic] = ACTIONS(1026), - [anon_sym_signed] = ACTIONS(1026), - [anon_sym_unsigned] = ACTIONS(1026), - [anon_sym_long] = ACTIONS(1026), - [anon_sym_short] = ACTIONS(1026), - [sym_primitive_type] = ACTIONS(1026), - [anon_sym_enum] = ACTIONS(1026), - [anon_sym_struct] = ACTIONS(1026), - [anon_sym_union] = ACTIONS(1026), - [anon_sym_if] = ACTIONS(1026), - [anon_sym_else] = ACTIONS(1026), - [anon_sym_switch] = ACTIONS(1026), - [anon_sym_case] = ACTIONS(1026), - [anon_sym_default] = ACTIONS(1026), - [anon_sym_while] = ACTIONS(1026), - [anon_sym_do] = ACTIONS(1026), - [anon_sym_for] = ACTIONS(1026), - [anon_sym_return] = ACTIONS(1026), - [anon_sym_break] = ACTIONS(1026), - [anon_sym_continue] = ACTIONS(1026), - [anon_sym_goto] = ACTIONS(1026), - [anon_sym_DASH_DASH] = ACTIONS(1028), - [anon_sym_PLUS_PLUS] = ACTIONS(1028), - [anon_sym_sizeof] = ACTIONS(1026), - [sym_number_literal] = ACTIONS(1028), - [anon_sym_L_SQUOTE] = ACTIONS(1028), - [anon_sym_u_SQUOTE] = ACTIONS(1028), - [anon_sym_U_SQUOTE] = ACTIONS(1028), - [anon_sym_u8_SQUOTE] = ACTIONS(1028), - [anon_sym_SQUOTE] = ACTIONS(1028), - [anon_sym_L_DQUOTE] = ACTIONS(1028), - [anon_sym_u_DQUOTE] = ACTIONS(1028), - [anon_sym_U_DQUOTE] = ACTIONS(1028), - [anon_sym_u8_DQUOTE] = ACTIONS(1028), - [anon_sym_DQUOTE] = ACTIONS(1028), - [sym_true] = ACTIONS(1026), - [sym_false] = ACTIONS(1026), - [sym_null] = ACTIONS(1026), - [sym_comment] = ACTIONS(3), - }, - [243] = { - [sym_identifier] = ACTIONS(1002), - [aux_sym_preproc_include_token1] = ACTIONS(1002), - [aux_sym_preproc_def_token1] = ACTIONS(1002), - [aux_sym_preproc_if_token1] = ACTIONS(1002), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1002), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1002), - [sym_preproc_directive] = ACTIONS(1002), - [anon_sym_LPAREN2] = ACTIONS(1004), - [anon_sym_BANG] = ACTIONS(1004), - [anon_sym_TILDE] = ACTIONS(1004), - [anon_sym_DASH] = ACTIONS(1002), - [anon_sym_PLUS] = ACTIONS(1002), - [anon_sym_STAR] = ACTIONS(1004), - [anon_sym_AMP] = ACTIONS(1004), - [anon_sym_SEMI] = ACTIONS(1004), - [anon_sym_typedef] = ACTIONS(1002), - [anon_sym_extern] = ACTIONS(1002), - [anon_sym___attribute__] = ACTIONS(1002), - [anon_sym_LBRACE] = ACTIONS(1004), - [anon_sym_RBRACE] = ACTIONS(1004), - [anon_sym_static] = ACTIONS(1002), - [anon_sym_auto] = ACTIONS(1002), - [anon_sym_register] = ACTIONS(1002), - [anon_sym_inline] = ACTIONS(1002), - [anon_sym_const] = ACTIONS(1002), - [anon_sym_volatile] = ACTIONS(1002), - [anon_sym_restrict] = ACTIONS(1002), - [anon_sym__Atomic] = ACTIONS(1002), - [anon_sym_signed] = ACTIONS(1002), - [anon_sym_unsigned] = ACTIONS(1002), - [anon_sym_long] = ACTIONS(1002), - [anon_sym_short] = ACTIONS(1002), - [sym_primitive_type] = ACTIONS(1002), - [anon_sym_enum] = ACTIONS(1002), - [anon_sym_struct] = ACTIONS(1002), - [anon_sym_union] = ACTIONS(1002), - [anon_sym_if] = ACTIONS(1002), - [anon_sym_else] = ACTIONS(1002), - [anon_sym_switch] = ACTIONS(1002), - [anon_sym_case] = ACTIONS(1002), - [anon_sym_default] = ACTIONS(1002), - [anon_sym_while] = ACTIONS(1002), - [anon_sym_do] = ACTIONS(1002), - [anon_sym_for] = ACTIONS(1002), - [anon_sym_return] = ACTIONS(1002), - [anon_sym_break] = ACTIONS(1002), - [anon_sym_continue] = ACTIONS(1002), - [anon_sym_goto] = ACTIONS(1002), - [anon_sym_DASH_DASH] = ACTIONS(1004), - [anon_sym_PLUS_PLUS] = ACTIONS(1004), - [anon_sym_sizeof] = ACTIONS(1002), - [sym_number_literal] = ACTIONS(1004), - [anon_sym_L_SQUOTE] = ACTIONS(1004), - [anon_sym_u_SQUOTE] = ACTIONS(1004), - [anon_sym_U_SQUOTE] = ACTIONS(1004), - [anon_sym_u8_SQUOTE] = ACTIONS(1004), - [anon_sym_SQUOTE] = ACTIONS(1004), - [anon_sym_L_DQUOTE] = ACTIONS(1004), - [anon_sym_u_DQUOTE] = ACTIONS(1004), - [anon_sym_U_DQUOTE] = ACTIONS(1004), - [anon_sym_u8_DQUOTE] = ACTIONS(1004), - [anon_sym_DQUOTE] = ACTIONS(1004), - [sym_true] = ACTIONS(1002), - [sym_false] = ACTIONS(1002), - [sym_null] = ACTIONS(1002), - [sym_comment] = ACTIONS(3), - }, - [244] = { - [sym_identifier] = ACTIONS(1078), - [aux_sym_preproc_include_token1] = ACTIONS(1078), - [aux_sym_preproc_def_token1] = ACTIONS(1078), - [aux_sym_preproc_if_token1] = ACTIONS(1078), - [aux_sym_preproc_if_token2] = ACTIONS(1078), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1078), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1078), - [sym_preproc_directive] = ACTIONS(1078), - [anon_sym_LPAREN2] = ACTIONS(1080), - [anon_sym_BANG] = ACTIONS(1080), - [anon_sym_TILDE] = ACTIONS(1080), - [anon_sym_DASH] = ACTIONS(1078), - [anon_sym_PLUS] = ACTIONS(1078), - [anon_sym_STAR] = ACTIONS(1080), - [anon_sym_AMP] = ACTIONS(1080), - [anon_sym_SEMI] = ACTIONS(1080), - [anon_sym_typedef] = ACTIONS(1078), - [anon_sym_extern] = ACTIONS(1078), - [anon_sym___attribute__] = ACTIONS(1078), - [anon_sym_LBRACE] = ACTIONS(1080), - [anon_sym_static] = ACTIONS(1078), - [anon_sym_auto] = ACTIONS(1078), - [anon_sym_register] = ACTIONS(1078), - [anon_sym_inline] = ACTIONS(1078), - [anon_sym_const] = ACTIONS(1078), - [anon_sym_volatile] = ACTIONS(1078), - [anon_sym_restrict] = ACTIONS(1078), - [anon_sym__Atomic] = ACTIONS(1078), - [anon_sym_signed] = ACTIONS(1078), - [anon_sym_unsigned] = ACTIONS(1078), - [anon_sym_long] = ACTIONS(1078), - [anon_sym_short] = ACTIONS(1078), - [sym_primitive_type] = ACTIONS(1078), - [anon_sym_enum] = ACTIONS(1078), - [anon_sym_struct] = ACTIONS(1078), - [anon_sym_union] = ACTIONS(1078), - [anon_sym_if] = ACTIONS(1078), - [anon_sym_else] = ACTIONS(1078), - [anon_sym_switch] = ACTIONS(1078), - [anon_sym_case] = ACTIONS(1078), - [anon_sym_default] = ACTIONS(1078), - [anon_sym_while] = ACTIONS(1078), - [anon_sym_do] = ACTIONS(1078), - [anon_sym_for] = ACTIONS(1078), - [anon_sym_return] = ACTIONS(1078), - [anon_sym_break] = ACTIONS(1078), - [anon_sym_continue] = ACTIONS(1078), - [anon_sym_goto] = ACTIONS(1078), - [anon_sym_DASH_DASH] = ACTIONS(1080), - [anon_sym_PLUS_PLUS] = ACTIONS(1080), - [anon_sym_sizeof] = ACTIONS(1078), - [sym_number_literal] = ACTIONS(1080), - [anon_sym_L_SQUOTE] = ACTIONS(1080), - [anon_sym_u_SQUOTE] = ACTIONS(1080), - [anon_sym_U_SQUOTE] = ACTIONS(1080), - [anon_sym_u8_SQUOTE] = ACTIONS(1080), - [anon_sym_SQUOTE] = ACTIONS(1080), - [anon_sym_L_DQUOTE] = ACTIONS(1080), - [anon_sym_u_DQUOTE] = ACTIONS(1080), - [anon_sym_U_DQUOTE] = ACTIONS(1080), - [anon_sym_u8_DQUOTE] = ACTIONS(1080), - [anon_sym_DQUOTE] = ACTIONS(1080), - [sym_true] = ACTIONS(1078), - [sym_false] = ACTIONS(1078), - [sym_null] = ACTIONS(1078), + [244] = { + [sym_identifier] = ACTIONS(996), + [aux_sym_preproc_include_token1] = ACTIONS(996), + [aux_sym_preproc_def_token1] = ACTIONS(996), + [aux_sym_preproc_if_token1] = ACTIONS(996), + [aux_sym_preproc_ifdef_token1] = ACTIONS(996), + [aux_sym_preproc_ifdef_token2] = ACTIONS(996), + [sym_preproc_directive] = ACTIONS(996), + [anon_sym_LPAREN2] = ACTIONS(998), + [anon_sym_BANG] = ACTIONS(998), + [anon_sym_TILDE] = ACTIONS(998), + [anon_sym_DASH] = ACTIONS(996), + [anon_sym_PLUS] = ACTIONS(996), + [anon_sym_STAR] = ACTIONS(998), + [anon_sym_AMP] = ACTIONS(998), + [anon_sym_SEMI] = ACTIONS(998), + [anon_sym_typedef] = ACTIONS(996), + [anon_sym_extern] = ACTIONS(996), + [anon_sym___attribute__] = ACTIONS(996), + [anon_sym_LBRACE] = ACTIONS(998), + [anon_sym_RBRACE] = ACTIONS(998), + [anon_sym_static] = ACTIONS(996), + [anon_sym_auto] = ACTIONS(996), + [anon_sym_register] = ACTIONS(996), + [anon_sym_inline] = ACTIONS(996), + [anon_sym_const] = ACTIONS(996), + [anon_sym_volatile] = ACTIONS(996), + [anon_sym_restrict] = ACTIONS(996), + [anon_sym__Atomic] = ACTIONS(996), + [anon_sym_signed] = ACTIONS(996), + [anon_sym_unsigned] = ACTIONS(996), + [anon_sym_long] = ACTIONS(996), + [anon_sym_short] = ACTIONS(996), + [sym_primitive_type] = ACTIONS(996), + [anon_sym_enum] = ACTIONS(996), + [anon_sym_struct] = ACTIONS(996), + [anon_sym_union] = ACTIONS(996), + [anon_sym_if] = ACTIONS(996), + [anon_sym_else] = ACTIONS(1186), + [anon_sym_switch] = ACTIONS(996), + [anon_sym_case] = ACTIONS(996), + [anon_sym_default] = ACTIONS(996), + [anon_sym_while] = ACTIONS(996), + [anon_sym_do] = ACTIONS(996), + [anon_sym_for] = ACTIONS(996), + [anon_sym_return] = ACTIONS(996), + [anon_sym_break] = ACTIONS(996), + [anon_sym_continue] = ACTIONS(996), + [anon_sym_goto] = ACTIONS(996), + [anon_sym_DASH_DASH] = ACTIONS(998), + [anon_sym_PLUS_PLUS] = ACTIONS(998), + [anon_sym_sizeof] = ACTIONS(996), + [sym_number_literal] = ACTIONS(998), + [anon_sym_L_SQUOTE] = ACTIONS(998), + [anon_sym_u_SQUOTE] = ACTIONS(998), + [anon_sym_U_SQUOTE] = ACTIONS(998), + [anon_sym_u8_SQUOTE] = ACTIONS(998), + [anon_sym_SQUOTE] = ACTIONS(998), + [anon_sym_L_DQUOTE] = ACTIONS(998), + [anon_sym_u_DQUOTE] = ACTIONS(998), + [anon_sym_U_DQUOTE] = ACTIONS(998), + [anon_sym_u8_DQUOTE] = ACTIONS(998), + [anon_sym_DQUOTE] = ACTIONS(998), + [sym_true] = ACTIONS(996), + [sym_false] = ACTIONS(996), + [sym_null] = ACTIONS(996), [sym_comment] = ACTIONS(3), }, [245] = { - [ts_builtin_sym_end] = ACTIONS(1060), - [sym_identifier] = ACTIONS(1058), - [aux_sym_preproc_include_token1] = ACTIONS(1058), - [aux_sym_preproc_def_token1] = ACTIONS(1058), - [aux_sym_preproc_if_token1] = ACTIONS(1058), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1058), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1058), - [sym_preproc_directive] = ACTIONS(1058), - [anon_sym_LPAREN2] = ACTIONS(1060), - [anon_sym_BANG] = ACTIONS(1060), - [anon_sym_TILDE] = ACTIONS(1060), - [anon_sym_DASH] = ACTIONS(1058), - [anon_sym_PLUS] = ACTIONS(1058), - [anon_sym_STAR] = ACTIONS(1060), - [anon_sym_AMP] = ACTIONS(1060), - [anon_sym_SEMI] = ACTIONS(1060), - [anon_sym_typedef] = ACTIONS(1058), - [anon_sym_extern] = ACTIONS(1058), - [anon_sym___attribute__] = ACTIONS(1058), - [anon_sym_LBRACE] = ACTIONS(1060), - [anon_sym_static] = ACTIONS(1058), - [anon_sym_auto] = ACTIONS(1058), - [anon_sym_register] = ACTIONS(1058), - [anon_sym_inline] = ACTIONS(1058), - [anon_sym_const] = ACTIONS(1058), - [anon_sym_volatile] = ACTIONS(1058), - [anon_sym_restrict] = ACTIONS(1058), - [anon_sym__Atomic] = ACTIONS(1058), - [anon_sym_signed] = ACTIONS(1058), - [anon_sym_unsigned] = ACTIONS(1058), - [anon_sym_long] = ACTIONS(1058), - [anon_sym_short] = ACTIONS(1058), - [sym_primitive_type] = ACTIONS(1058), - [anon_sym_enum] = ACTIONS(1058), - [anon_sym_struct] = ACTIONS(1058), - [anon_sym_union] = ACTIONS(1058), - [anon_sym_if] = ACTIONS(1058), - [anon_sym_else] = ACTIONS(1058), - [anon_sym_switch] = ACTIONS(1058), - [anon_sym_case] = ACTIONS(1058), - [anon_sym_default] = ACTIONS(1058), - [anon_sym_while] = ACTIONS(1058), - [anon_sym_do] = ACTIONS(1058), - [anon_sym_for] = ACTIONS(1058), - [anon_sym_return] = ACTIONS(1058), - [anon_sym_break] = ACTIONS(1058), - [anon_sym_continue] = ACTIONS(1058), - [anon_sym_goto] = ACTIONS(1058), - [anon_sym_DASH_DASH] = ACTIONS(1060), - [anon_sym_PLUS_PLUS] = ACTIONS(1060), - [anon_sym_sizeof] = ACTIONS(1058), - [sym_number_literal] = ACTIONS(1060), - [anon_sym_L_SQUOTE] = ACTIONS(1060), - [anon_sym_u_SQUOTE] = ACTIONS(1060), - [anon_sym_U_SQUOTE] = ACTIONS(1060), - [anon_sym_u8_SQUOTE] = ACTIONS(1060), - [anon_sym_SQUOTE] = ACTIONS(1060), - [anon_sym_L_DQUOTE] = ACTIONS(1060), - [anon_sym_u_DQUOTE] = ACTIONS(1060), - [anon_sym_U_DQUOTE] = ACTIONS(1060), - [anon_sym_u8_DQUOTE] = ACTIONS(1060), - [anon_sym_DQUOTE] = ACTIONS(1060), - [sym_true] = ACTIONS(1058), - [sym_false] = ACTIONS(1058), - [sym_null] = ACTIONS(1058), - [sym_comment] = ACTIONS(3), - }, - [246] = { - [ts_builtin_sym_end] = ACTIONS(1064), - [sym_identifier] = ACTIONS(1062), - [aux_sym_preproc_include_token1] = ACTIONS(1062), - [aux_sym_preproc_def_token1] = ACTIONS(1062), - [aux_sym_preproc_if_token1] = ACTIONS(1062), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1062), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1062), - [sym_preproc_directive] = ACTIONS(1062), - [anon_sym_LPAREN2] = ACTIONS(1064), - [anon_sym_BANG] = ACTIONS(1064), - [anon_sym_TILDE] = ACTIONS(1064), - [anon_sym_DASH] = ACTIONS(1062), - [anon_sym_PLUS] = ACTIONS(1062), - [anon_sym_STAR] = ACTIONS(1064), - [anon_sym_AMP] = ACTIONS(1064), - [anon_sym_SEMI] = ACTIONS(1064), - [anon_sym_typedef] = ACTIONS(1062), - [anon_sym_extern] = ACTIONS(1062), - [anon_sym___attribute__] = ACTIONS(1062), - [anon_sym_LBRACE] = ACTIONS(1064), - [anon_sym_static] = ACTIONS(1062), - [anon_sym_auto] = ACTIONS(1062), - [anon_sym_register] = ACTIONS(1062), - [anon_sym_inline] = ACTIONS(1062), - [anon_sym_const] = ACTIONS(1062), - [anon_sym_volatile] = ACTIONS(1062), - [anon_sym_restrict] = ACTIONS(1062), - [anon_sym__Atomic] = ACTIONS(1062), - [anon_sym_signed] = ACTIONS(1062), - [anon_sym_unsigned] = ACTIONS(1062), - [anon_sym_long] = ACTIONS(1062), - [anon_sym_short] = ACTIONS(1062), - [sym_primitive_type] = ACTIONS(1062), - [anon_sym_enum] = ACTIONS(1062), - [anon_sym_struct] = ACTIONS(1062), - [anon_sym_union] = ACTIONS(1062), - [anon_sym_if] = ACTIONS(1062), - [anon_sym_else] = ACTIONS(1062), - [anon_sym_switch] = ACTIONS(1062), - [anon_sym_case] = ACTIONS(1062), - [anon_sym_default] = ACTIONS(1062), - [anon_sym_while] = ACTIONS(1062), - [anon_sym_do] = ACTIONS(1062), - [anon_sym_for] = ACTIONS(1062), - [anon_sym_return] = ACTIONS(1062), - [anon_sym_break] = ACTIONS(1062), - [anon_sym_continue] = ACTIONS(1062), - [anon_sym_goto] = ACTIONS(1062), - [anon_sym_DASH_DASH] = ACTIONS(1064), - [anon_sym_PLUS_PLUS] = ACTIONS(1064), - [anon_sym_sizeof] = ACTIONS(1062), - [sym_number_literal] = ACTIONS(1064), - [anon_sym_L_SQUOTE] = ACTIONS(1064), - [anon_sym_u_SQUOTE] = ACTIONS(1064), - [anon_sym_U_SQUOTE] = ACTIONS(1064), - [anon_sym_u8_SQUOTE] = ACTIONS(1064), - [anon_sym_SQUOTE] = ACTIONS(1064), - [anon_sym_L_DQUOTE] = ACTIONS(1064), - [anon_sym_u_DQUOTE] = ACTIONS(1064), - [anon_sym_U_DQUOTE] = ACTIONS(1064), - [anon_sym_u8_DQUOTE] = ACTIONS(1064), - [anon_sym_DQUOTE] = ACTIONS(1064), - [sym_true] = ACTIONS(1062), - [sym_false] = ACTIONS(1062), - [sym_null] = ACTIONS(1062), - [sym_comment] = ACTIONS(3), - }, - [247] = { - [sym_identifier] = ACTIONS(1062), - [aux_sym_preproc_include_token1] = ACTIONS(1062), - [aux_sym_preproc_def_token1] = ACTIONS(1062), - [aux_sym_preproc_if_token1] = ACTIONS(1062), - [aux_sym_preproc_if_token2] = ACTIONS(1062), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1062), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1062), - [sym_preproc_directive] = ACTIONS(1062), - [anon_sym_LPAREN2] = ACTIONS(1064), - [anon_sym_BANG] = ACTIONS(1064), - [anon_sym_TILDE] = ACTIONS(1064), - [anon_sym_DASH] = ACTIONS(1062), - [anon_sym_PLUS] = ACTIONS(1062), - [anon_sym_STAR] = ACTIONS(1064), - [anon_sym_AMP] = ACTIONS(1064), - [anon_sym_SEMI] = ACTIONS(1064), - [anon_sym_typedef] = ACTIONS(1062), - [anon_sym_extern] = ACTIONS(1062), - [anon_sym___attribute__] = ACTIONS(1062), - [anon_sym_LBRACE] = ACTIONS(1064), - [anon_sym_static] = ACTIONS(1062), - [anon_sym_auto] = ACTIONS(1062), - [anon_sym_register] = ACTIONS(1062), - [anon_sym_inline] = ACTIONS(1062), - [anon_sym_const] = ACTIONS(1062), - [anon_sym_volatile] = ACTIONS(1062), - [anon_sym_restrict] = ACTIONS(1062), - [anon_sym__Atomic] = ACTIONS(1062), - [anon_sym_signed] = ACTIONS(1062), - [anon_sym_unsigned] = ACTIONS(1062), - [anon_sym_long] = ACTIONS(1062), - [anon_sym_short] = ACTIONS(1062), - [sym_primitive_type] = ACTIONS(1062), - [anon_sym_enum] = ACTIONS(1062), - [anon_sym_struct] = ACTIONS(1062), - [anon_sym_union] = ACTIONS(1062), - [anon_sym_if] = ACTIONS(1062), - [anon_sym_else] = ACTIONS(1062), - [anon_sym_switch] = ACTIONS(1062), - [anon_sym_case] = ACTIONS(1062), - [anon_sym_default] = ACTIONS(1062), - [anon_sym_while] = ACTIONS(1062), - [anon_sym_do] = ACTIONS(1062), - [anon_sym_for] = ACTIONS(1062), - [anon_sym_return] = ACTIONS(1062), - [anon_sym_break] = ACTIONS(1062), - [anon_sym_continue] = ACTIONS(1062), - [anon_sym_goto] = ACTIONS(1062), - [anon_sym_DASH_DASH] = ACTIONS(1064), - [anon_sym_PLUS_PLUS] = ACTIONS(1064), - [anon_sym_sizeof] = ACTIONS(1062), - [sym_number_literal] = ACTIONS(1064), - [anon_sym_L_SQUOTE] = ACTIONS(1064), - [anon_sym_u_SQUOTE] = ACTIONS(1064), - [anon_sym_U_SQUOTE] = ACTIONS(1064), - [anon_sym_u8_SQUOTE] = ACTIONS(1064), - [anon_sym_SQUOTE] = ACTIONS(1064), - [anon_sym_L_DQUOTE] = ACTIONS(1064), - [anon_sym_u_DQUOTE] = ACTIONS(1064), - [anon_sym_U_DQUOTE] = ACTIONS(1064), - [anon_sym_u8_DQUOTE] = ACTIONS(1064), - [anon_sym_DQUOTE] = ACTIONS(1064), - [sym_true] = ACTIONS(1062), - [sym_false] = ACTIONS(1062), - [sym_null] = ACTIONS(1062), - [sym_comment] = ACTIONS(3), - }, - [248] = { - [sym_identifier] = ACTIONS(1058), - [aux_sym_preproc_include_token1] = ACTIONS(1058), - [aux_sym_preproc_def_token1] = ACTIONS(1058), - [aux_sym_preproc_if_token1] = ACTIONS(1058), - [aux_sym_preproc_if_token2] = ACTIONS(1058), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1058), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1058), - [sym_preproc_directive] = ACTIONS(1058), - [anon_sym_LPAREN2] = ACTIONS(1060), - [anon_sym_BANG] = ACTIONS(1060), - [anon_sym_TILDE] = ACTIONS(1060), - [anon_sym_DASH] = ACTIONS(1058), - [anon_sym_PLUS] = ACTIONS(1058), - [anon_sym_STAR] = ACTIONS(1060), - [anon_sym_AMP] = ACTIONS(1060), - [anon_sym_SEMI] = ACTIONS(1060), - [anon_sym_typedef] = ACTIONS(1058), - [anon_sym_extern] = ACTIONS(1058), - [anon_sym___attribute__] = ACTIONS(1058), - [anon_sym_LBRACE] = ACTIONS(1060), - [anon_sym_static] = ACTIONS(1058), - [anon_sym_auto] = ACTIONS(1058), - [anon_sym_register] = ACTIONS(1058), - [anon_sym_inline] = ACTIONS(1058), - [anon_sym_const] = ACTIONS(1058), - [anon_sym_volatile] = ACTIONS(1058), - [anon_sym_restrict] = ACTIONS(1058), - [anon_sym__Atomic] = ACTIONS(1058), - [anon_sym_signed] = ACTIONS(1058), - [anon_sym_unsigned] = ACTIONS(1058), - [anon_sym_long] = ACTIONS(1058), - [anon_sym_short] = ACTIONS(1058), - [sym_primitive_type] = ACTIONS(1058), - [anon_sym_enum] = ACTIONS(1058), - [anon_sym_struct] = ACTIONS(1058), - [anon_sym_union] = ACTIONS(1058), - [anon_sym_if] = ACTIONS(1058), - [anon_sym_else] = ACTIONS(1058), - [anon_sym_switch] = ACTIONS(1058), - [anon_sym_case] = ACTIONS(1058), - [anon_sym_default] = ACTIONS(1058), - [anon_sym_while] = ACTIONS(1058), - [anon_sym_do] = ACTIONS(1058), - [anon_sym_for] = ACTIONS(1058), - [anon_sym_return] = ACTIONS(1058), - [anon_sym_break] = ACTIONS(1058), - [anon_sym_continue] = ACTIONS(1058), - [anon_sym_goto] = ACTIONS(1058), - [anon_sym_DASH_DASH] = ACTIONS(1060), - [anon_sym_PLUS_PLUS] = ACTIONS(1060), - [anon_sym_sizeof] = ACTIONS(1058), - [sym_number_literal] = ACTIONS(1060), - [anon_sym_L_SQUOTE] = ACTIONS(1060), - [anon_sym_u_SQUOTE] = ACTIONS(1060), - [anon_sym_U_SQUOTE] = ACTIONS(1060), - [anon_sym_u8_SQUOTE] = ACTIONS(1060), - [anon_sym_SQUOTE] = ACTIONS(1060), - [anon_sym_L_DQUOTE] = ACTIONS(1060), - [anon_sym_u_DQUOTE] = ACTIONS(1060), - [anon_sym_U_DQUOTE] = ACTIONS(1060), - [anon_sym_u8_DQUOTE] = ACTIONS(1060), - [anon_sym_DQUOTE] = ACTIONS(1060), - [sym_true] = ACTIONS(1058), - [sym_false] = ACTIONS(1058), - [sym_null] = ACTIONS(1058), - [sym_comment] = ACTIONS(3), - }, - [249] = { - [sym_identifier] = ACTIONS(960), - [aux_sym_preproc_include_token1] = ACTIONS(960), - [aux_sym_preproc_def_token1] = ACTIONS(960), - [aux_sym_preproc_if_token1] = ACTIONS(960), - [aux_sym_preproc_if_token2] = ACTIONS(960), - [aux_sym_preproc_ifdef_token1] = ACTIONS(960), - [aux_sym_preproc_ifdef_token2] = ACTIONS(960), - [sym_preproc_directive] = ACTIONS(960), - [anon_sym_LPAREN2] = ACTIONS(962), - [anon_sym_BANG] = ACTIONS(962), - [anon_sym_TILDE] = ACTIONS(962), - [anon_sym_DASH] = ACTIONS(960), - [anon_sym_PLUS] = ACTIONS(960), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(962), - [anon_sym_typedef] = ACTIONS(960), - [anon_sym_extern] = ACTIONS(960), - [anon_sym___attribute__] = ACTIONS(960), - [anon_sym_LBRACE] = ACTIONS(962), - [anon_sym_static] = ACTIONS(960), - [anon_sym_auto] = ACTIONS(960), - [anon_sym_register] = ACTIONS(960), - [anon_sym_inline] = ACTIONS(960), - [anon_sym_const] = ACTIONS(960), - [anon_sym_volatile] = ACTIONS(960), - [anon_sym_restrict] = ACTIONS(960), - [anon_sym__Atomic] = ACTIONS(960), - [anon_sym_signed] = ACTIONS(960), - [anon_sym_unsigned] = ACTIONS(960), - [anon_sym_long] = ACTIONS(960), - [anon_sym_short] = ACTIONS(960), - [sym_primitive_type] = ACTIONS(960), - [anon_sym_enum] = ACTIONS(960), - [anon_sym_struct] = ACTIONS(960), - [anon_sym_union] = ACTIONS(960), - [anon_sym_if] = ACTIONS(960), - [anon_sym_else] = ACTIONS(960), - [anon_sym_switch] = ACTIONS(960), - [anon_sym_case] = ACTIONS(960), - [anon_sym_default] = ACTIONS(960), - [anon_sym_while] = ACTIONS(960), - [anon_sym_do] = ACTIONS(960), - [anon_sym_for] = ACTIONS(960), - [anon_sym_return] = ACTIONS(960), - [anon_sym_break] = ACTIONS(960), - [anon_sym_continue] = ACTIONS(960), - [anon_sym_goto] = ACTIONS(960), - [anon_sym_DASH_DASH] = ACTIONS(962), - [anon_sym_PLUS_PLUS] = ACTIONS(962), - [anon_sym_sizeof] = ACTIONS(960), - [sym_number_literal] = ACTIONS(962), - [anon_sym_L_SQUOTE] = ACTIONS(962), - [anon_sym_u_SQUOTE] = ACTIONS(962), - [anon_sym_U_SQUOTE] = ACTIONS(962), - [anon_sym_u8_SQUOTE] = ACTIONS(962), - [anon_sym_SQUOTE] = ACTIONS(962), - [anon_sym_L_DQUOTE] = ACTIONS(962), - [anon_sym_u_DQUOTE] = ACTIONS(962), - [anon_sym_U_DQUOTE] = ACTIONS(962), - [anon_sym_u8_DQUOTE] = ACTIONS(962), - [anon_sym_DQUOTE] = ACTIONS(962), - [sym_true] = ACTIONS(960), - [sym_false] = ACTIONS(960), - [sym_null] = ACTIONS(960), - [sym_comment] = ACTIONS(3), - }, - [250] = { - [ts_builtin_sym_end] = ACTIONS(1088), - [sym_identifier] = ACTIONS(1086), - [aux_sym_preproc_include_token1] = ACTIONS(1086), - [aux_sym_preproc_def_token1] = ACTIONS(1086), - [aux_sym_preproc_if_token1] = ACTIONS(1086), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1086), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1086), - [sym_preproc_directive] = ACTIONS(1086), - [anon_sym_LPAREN2] = ACTIONS(1088), - [anon_sym_BANG] = ACTIONS(1088), - [anon_sym_TILDE] = ACTIONS(1088), - [anon_sym_DASH] = ACTIONS(1086), - [anon_sym_PLUS] = ACTIONS(1086), - [anon_sym_STAR] = ACTIONS(1088), - [anon_sym_AMP] = ACTIONS(1088), - [anon_sym_SEMI] = ACTIONS(1088), - [anon_sym_typedef] = ACTIONS(1086), - [anon_sym_extern] = ACTIONS(1086), - [anon_sym___attribute__] = ACTIONS(1086), - [anon_sym_LBRACE] = 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_volatile] = ACTIONS(1086), - [anon_sym_restrict] = ACTIONS(1086), - [anon_sym__Atomic] = ACTIONS(1086), - [anon_sym_signed] = 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_else] = 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_DASH_DASH] = ACTIONS(1088), - [anon_sym_PLUS_PLUS] = ACTIONS(1088), - [anon_sym_sizeof] = ACTIONS(1086), - [sym_number_literal] = ACTIONS(1088), - [anon_sym_L_SQUOTE] = ACTIONS(1088), - [anon_sym_u_SQUOTE] = ACTIONS(1088), - [anon_sym_U_SQUOTE] = ACTIONS(1088), - [anon_sym_u8_SQUOTE] = ACTIONS(1088), - [anon_sym_SQUOTE] = ACTIONS(1088), - [anon_sym_L_DQUOTE] = ACTIONS(1088), - [anon_sym_u_DQUOTE] = ACTIONS(1088), - [anon_sym_U_DQUOTE] = ACTIONS(1088), - [anon_sym_u8_DQUOTE] = ACTIONS(1088), - [anon_sym_DQUOTE] = ACTIONS(1088), - [sym_true] = ACTIONS(1086), - [sym_false] = ACTIONS(1086), - [sym_null] = ACTIONS(1086), - [sym_comment] = ACTIONS(3), - }, - [251] = { - [sym_identifier] = ACTIONS(1026), - [aux_sym_preproc_include_token1] = ACTIONS(1026), - [aux_sym_preproc_def_token1] = ACTIONS(1026), - [aux_sym_preproc_if_token1] = ACTIONS(1026), - [aux_sym_preproc_if_token2] = ACTIONS(1026), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1026), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1026), - [sym_preproc_directive] = ACTIONS(1026), - [anon_sym_LPAREN2] = ACTIONS(1028), - [anon_sym_BANG] = ACTIONS(1028), - [anon_sym_TILDE] = ACTIONS(1028), - [anon_sym_DASH] = ACTIONS(1026), - [anon_sym_PLUS] = ACTIONS(1026), - [anon_sym_STAR] = ACTIONS(1028), - [anon_sym_AMP] = ACTIONS(1028), - [anon_sym_SEMI] = ACTIONS(1028), - [anon_sym_typedef] = ACTIONS(1026), - [anon_sym_extern] = ACTIONS(1026), - [anon_sym___attribute__] = ACTIONS(1026), - [anon_sym_LBRACE] = ACTIONS(1028), - [anon_sym_static] = ACTIONS(1026), - [anon_sym_auto] = ACTIONS(1026), - [anon_sym_register] = ACTIONS(1026), - [anon_sym_inline] = ACTIONS(1026), - [anon_sym_const] = ACTIONS(1026), - [anon_sym_volatile] = ACTIONS(1026), - [anon_sym_restrict] = ACTIONS(1026), - [anon_sym__Atomic] = ACTIONS(1026), - [anon_sym_signed] = ACTIONS(1026), - [anon_sym_unsigned] = ACTIONS(1026), - [anon_sym_long] = ACTIONS(1026), - [anon_sym_short] = ACTIONS(1026), - [sym_primitive_type] = ACTIONS(1026), - [anon_sym_enum] = ACTIONS(1026), - [anon_sym_struct] = ACTIONS(1026), - [anon_sym_union] = ACTIONS(1026), - [anon_sym_if] = ACTIONS(1026), - [anon_sym_else] = ACTIONS(1026), - [anon_sym_switch] = ACTIONS(1026), - [anon_sym_case] = ACTIONS(1026), - [anon_sym_default] = ACTIONS(1026), - [anon_sym_while] = ACTIONS(1026), - [anon_sym_do] = ACTIONS(1026), - [anon_sym_for] = ACTIONS(1026), - [anon_sym_return] = ACTIONS(1026), - [anon_sym_break] = ACTIONS(1026), - [anon_sym_continue] = ACTIONS(1026), - [anon_sym_goto] = ACTIONS(1026), - [anon_sym_DASH_DASH] = ACTIONS(1028), - [anon_sym_PLUS_PLUS] = ACTIONS(1028), - [anon_sym_sizeof] = ACTIONS(1026), - [sym_number_literal] = ACTIONS(1028), - [anon_sym_L_SQUOTE] = ACTIONS(1028), - [anon_sym_u_SQUOTE] = ACTIONS(1028), - [anon_sym_U_SQUOTE] = ACTIONS(1028), - [anon_sym_u8_SQUOTE] = ACTIONS(1028), - [anon_sym_SQUOTE] = ACTIONS(1028), - [anon_sym_L_DQUOTE] = ACTIONS(1028), - [anon_sym_u_DQUOTE] = ACTIONS(1028), - [anon_sym_U_DQUOTE] = ACTIONS(1028), - [anon_sym_u8_DQUOTE] = ACTIONS(1028), - [anon_sym_DQUOTE] = ACTIONS(1028), - [sym_true] = ACTIONS(1026), - [sym_false] = ACTIONS(1026), - [sym_null] = ACTIONS(1026), + [sym_identifier] = ACTIONS(1010), + [aux_sym_preproc_include_token1] = ACTIONS(1010), + [aux_sym_preproc_def_token1] = ACTIONS(1010), + [aux_sym_preproc_if_token1] = ACTIONS(1010), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1010), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1010), + [sym_preproc_directive] = ACTIONS(1010), + [anon_sym_LPAREN2] = ACTIONS(1012), + [anon_sym_BANG] = ACTIONS(1012), + [anon_sym_TILDE] = ACTIONS(1012), + [anon_sym_DASH] = ACTIONS(1010), + [anon_sym_PLUS] = ACTIONS(1010), + [anon_sym_STAR] = ACTIONS(1012), + [anon_sym_AMP] = ACTIONS(1012), + [anon_sym_SEMI] = ACTIONS(1012), + [anon_sym_typedef] = ACTIONS(1010), + [anon_sym_extern] = ACTIONS(1010), + [anon_sym___attribute__] = ACTIONS(1010), + [anon_sym_LBRACE] = ACTIONS(1012), + [anon_sym_RBRACE] = ACTIONS(1012), + [anon_sym_static] = ACTIONS(1010), + [anon_sym_auto] = ACTIONS(1010), + [anon_sym_register] = ACTIONS(1010), + [anon_sym_inline] = ACTIONS(1010), + [anon_sym_const] = ACTIONS(1010), + [anon_sym_volatile] = ACTIONS(1010), + [anon_sym_restrict] = ACTIONS(1010), + [anon_sym__Atomic] = ACTIONS(1010), + [anon_sym_signed] = ACTIONS(1010), + [anon_sym_unsigned] = ACTIONS(1010), + [anon_sym_long] = ACTIONS(1010), + [anon_sym_short] = ACTIONS(1010), + [sym_primitive_type] = ACTIONS(1010), + [anon_sym_enum] = ACTIONS(1010), + [anon_sym_struct] = ACTIONS(1010), + [anon_sym_union] = ACTIONS(1010), + [anon_sym_if] = ACTIONS(1010), + [anon_sym_else] = ACTIONS(1010), + [anon_sym_switch] = ACTIONS(1010), + [anon_sym_case] = ACTIONS(1010), + [anon_sym_default] = ACTIONS(1010), + [anon_sym_while] = ACTIONS(1010), + [anon_sym_do] = ACTIONS(1010), + [anon_sym_for] = ACTIONS(1010), + [anon_sym_return] = ACTIONS(1010), + [anon_sym_break] = ACTIONS(1010), + [anon_sym_continue] = ACTIONS(1010), + [anon_sym_goto] = ACTIONS(1010), + [anon_sym_DASH_DASH] = ACTIONS(1012), + [anon_sym_PLUS_PLUS] = ACTIONS(1012), + [anon_sym_sizeof] = ACTIONS(1010), + [sym_number_literal] = ACTIONS(1012), + [anon_sym_L_SQUOTE] = ACTIONS(1012), + [anon_sym_u_SQUOTE] = ACTIONS(1012), + [anon_sym_U_SQUOTE] = ACTIONS(1012), + [anon_sym_u8_SQUOTE] = ACTIONS(1012), + [anon_sym_SQUOTE] = ACTIONS(1012), + [anon_sym_L_DQUOTE] = ACTIONS(1012), + [anon_sym_u_DQUOTE] = ACTIONS(1012), + [anon_sym_U_DQUOTE] = ACTIONS(1012), + [anon_sym_u8_DQUOTE] = ACTIONS(1012), + [anon_sym_DQUOTE] = ACTIONS(1012), + [sym_true] = ACTIONS(1010), + [sym_false] = ACTIONS(1010), + [sym_null] = ACTIONS(1010), [sym_comment] = ACTIONS(3), }, - [252] = { - [sym_identifier] = ACTIONS(1018), - [aux_sym_preproc_include_token1] = ACTIONS(1018), - [aux_sym_preproc_def_token1] = ACTIONS(1018), - [aux_sym_preproc_if_token1] = ACTIONS(1018), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1018), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1018), - [sym_preproc_directive] = ACTIONS(1018), - [anon_sym_LPAREN2] = ACTIONS(1020), - [anon_sym_BANG] = ACTIONS(1020), - [anon_sym_TILDE] = ACTIONS(1020), - [anon_sym_DASH] = ACTIONS(1018), - [anon_sym_PLUS] = ACTIONS(1018), - [anon_sym_STAR] = ACTIONS(1020), - [anon_sym_AMP] = ACTIONS(1020), - [anon_sym_SEMI] = ACTIONS(1020), - [anon_sym_typedef] = ACTIONS(1018), - [anon_sym_extern] = ACTIONS(1018), - [anon_sym___attribute__] = ACTIONS(1018), - [anon_sym_LBRACE] = ACTIONS(1020), - [anon_sym_RBRACE] = ACTIONS(1020), - [anon_sym_static] = ACTIONS(1018), - [anon_sym_auto] = ACTIONS(1018), - [anon_sym_register] = ACTIONS(1018), - [anon_sym_inline] = ACTIONS(1018), - [anon_sym_const] = ACTIONS(1018), - [anon_sym_volatile] = ACTIONS(1018), - [anon_sym_restrict] = ACTIONS(1018), - [anon_sym__Atomic] = ACTIONS(1018), - [anon_sym_signed] = ACTIONS(1018), - [anon_sym_unsigned] = ACTIONS(1018), - [anon_sym_long] = ACTIONS(1018), - [anon_sym_short] = ACTIONS(1018), - [sym_primitive_type] = ACTIONS(1018), - [anon_sym_enum] = ACTIONS(1018), - [anon_sym_struct] = ACTIONS(1018), - [anon_sym_union] = ACTIONS(1018), - [anon_sym_if] = ACTIONS(1018), - [anon_sym_else] = ACTIONS(1018), - [anon_sym_switch] = ACTIONS(1018), - [anon_sym_case] = ACTIONS(1018), - [anon_sym_default] = ACTIONS(1018), - [anon_sym_while] = ACTIONS(1018), - [anon_sym_do] = ACTIONS(1018), - [anon_sym_for] = ACTIONS(1018), - [anon_sym_return] = ACTIONS(1018), - [anon_sym_break] = ACTIONS(1018), - [anon_sym_continue] = ACTIONS(1018), - [anon_sym_goto] = ACTIONS(1018), - [anon_sym_DASH_DASH] = ACTIONS(1020), - [anon_sym_PLUS_PLUS] = ACTIONS(1020), - [anon_sym_sizeof] = ACTIONS(1018), - [sym_number_literal] = ACTIONS(1020), - [anon_sym_L_SQUOTE] = ACTIONS(1020), - [anon_sym_u_SQUOTE] = ACTIONS(1020), - [anon_sym_U_SQUOTE] = ACTIONS(1020), - [anon_sym_u8_SQUOTE] = ACTIONS(1020), - [anon_sym_SQUOTE] = ACTIONS(1020), - [anon_sym_L_DQUOTE] = ACTIONS(1020), - [anon_sym_u_DQUOTE] = ACTIONS(1020), - [anon_sym_U_DQUOTE] = ACTIONS(1020), - [anon_sym_u8_DQUOTE] = ACTIONS(1020), - [anon_sym_DQUOTE] = ACTIONS(1020), - [sym_true] = ACTIONS(1018), - [sym_false] = ACTIONS(1018), - [sym_null] = ACTIONS(1018), + [246] = { + [sym_identifier] = ACTIONS(1006), + [aux_sym_preproc_include_token1] = ACTIONS(1006), + [aux_sym_preproc_def_token1] = ACTIONS(1006), + [aux_sym_preproc_if_token1] = ACTIONS(1006), + [aux_sym_preproc_if_token2] = ACTIONS(1006), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1006), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1006), + [sym_preproc_directive] = ACTIONS(1006), + [anon_sym_LPAREN2] = ACTIONS(1008), + [anon_sym_BANG] = ACTIONS(1008), + [anon_sym_TILDE] = ACTIONS(1008), + [anon_sym_DASH] = ACTIONS(1006), + [anon_sym_PLUS] = ACTIONS(1006), + [anon_sym_STAR] = ACTIONS(1008), + [anon_sym_AMP] = ACTIONS(1008), + [anon_sym_SEMI] = ACTIONS(1008), + [anon_sym_typedef] = ACTIONS(1006), + [anon_sym_extern] = ACTIONS(1006), + [anon_sym___attribute__] = ACTIONS(1006), + [anon_sym_LBRACE] = ACTIONS(1008), + [anon_sym_static] = ACTIONS(1006), + [anon_sym_auto] = ACTIONS(1006), + [anon_sym_register] = ACTIONS(1006), + [anon_sym_inline] = ACTIONS(1006), + [anon_sym_const] = ACTIONS(1006), + [anon_sym_volatile] = ACTIONS(1006), + [anon_sym_restrict] = ACTIONS(1006), + [anon_sym__Atomic] = ACTIONS(1006), + [anon_sym_signed] = ACTIONS(1006), + [anon_sym_unsigned] = ACTIONS(1006), + [anon_sym_long] = ACTIONS(1006), + [anon_sym_short] = ACTIONS(1006), + [sym_primitive_type] = ACTIONS(1006), + [anon_sym_enum] = ACTIONS(1006), + [anon_sym_struct] = ACTIONS(1006), + [anon_sym_union] = ACTIONS(1006), + [anon_sym_if] = ACTIONS(1006), + [anon_sym_else] = ACTIONS(1006), + [anon_sym_switch] = ACTIONS(1006), + [anon_sym_case] = ACTIONS(1006), + [anon_sym_default] = ACTIONS(1006), + [anon_sym_while] = ACTIONS(1006), + [anon_sym_do] = ACTIONS(1006), + [anon_sym_for] = ACTIONS(1006), + [anon_sym_return] = ACTIONS(1006), + [anon_sym_break] = ACTIONS(1006), + [anon_sym_continue] = ACTIONS(1006), + [anon_sym_goto] = ACTIONS(1006), + [anon_sym_DASH_DASH] = ACTIONS(1008), + [anon_sym_PLUS_PLUS] = ACTIONS(1008), + [anon_sym_sizeof] = ACTIONS(1006), + [sym_number_literal] = ACTIONS(1008), + [anon_sym_L_SQUOTE] = ACTIONS(1008), + [anon_sym_u_SQUOTE] = ACTIONS(1008), + [anon_sym_U_SQUOTE] = ACTIONS(1008), + [anon_sym_u8_SQUOTE] = ACTIONS(1008), + [anon_sym_SQUOTE] = ACTIONS(1008), + [anon_sym_L_DQUOTE] = ACTIONS(1008), + [anon_sym_u_DQUOTE] = ACTIONS(1008), + [anon_sym_U_DQUOTE] = ACTIONS(1008), + [anon_sym_u8_DQUOTE] = ACTIONS(1008), + [anon_sym_DQUOTE] = ACTIONS(1008), + [sym_true] = ACTIONS(1006), + [sym_false] = ACTIONS(1006), + [sym_null] = ACTIONS(1006), [sym_comment] = ACTIONS(3), }, - [253] = { - [ts_builtin_sym_end] = ACTIONS(1004), - [sym_identifier] = ACTIONS(1002), - [aux_sym_preproc_include_token1] = ACTIONS(1002), - [aux_sym_preproc_def_token1] = ACTIONS(1002), - [aux_sym_preproc_if_token1] = ACTIONS(1002), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1002), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1002), - [sym_preproc_directive] = ACTIONS(1002), - [anon_sym_LPAREN2] = ACTIONS(1004), - [anon_sym_BANG] = ACTIONS(1004), - [anon_sym_TILDE] = ACTIONS(1004), - [anon_sym_DASH] = ACTIONS(1002), - [anon_sym_PLUS] = ACTIONS(1002), - [anon_sym_STAR] = ACTIONS(1004), - [anon_sym_AMP] = ACTIONS(1004), - [anon_sym_SEMI] = ACTIONS(1004), - [anon_sym_typedef] = ACTIONS(1002), - [anon_sym_extern] = ACTIONS(1002), - [anon_sym___attribute__] = ACTIONS(1002), - [anon_sym_LBRACE] = ACTIONS(1004), - [anon_sym_static] = ACTIONS(1002), - [anon_sym_auto] = ACTIONS(1002), - [anon_sym_register] = ACTIONS(1002), - [anon_sym_inline] = ACTIONS(1002), - [anon_sym_const] = ACTIONS(1002), - [anon_sym_volatile] = ACTIONS(1002), - [anon_sym_restrict] = ACTIONS(1002), - [anon_sym__Atomic] = ACTIONS(1002), - [anon_sym_signed] = ACTIONS(1002), - [anon_sym_unsigned] = ACTIONS(1002), - [anon_sym_long] = ACTIONS(1002), - [anon_sym_short] = ACTIONS(1002), - [sym_primitive_type] = ACTIONS(1002), - [anon_sym_enum] = ACTIONS(1002), - [anon_sym_struct] = ACTIONS(1002), - [anon_sym_union] = ACTIONS(1002), - [anon_sym_if] = ACTIONS(1002), - [anon_sym_else] = ACTIONS(1002), - [anon_sym_switch] = ACTIONS(1002), - [anon_sym_case] = ACTIONS(1002), - [anon_sym_default] = ACTIONS(1002), - [anon_sym_while] = ACTIONS(1002), - [anon_sym_do] = ACTIONS(1002), - [anon_sym_for] = ACTIONS(1002), - [anon_sym_return] = ACTIONS(1002), - [anon_sym_break] = ACTIONS(1002), - [anon_sym_continue] = ACTIONS(1002), - [anon_sym_goto] = ACTIONS(1002), - [anon_sym_DASH_DASH] = ACTIONS(1004), - [anon_sym_PLUS_PLUS] = ACTIONS(1004), - [anon_sym_sizeof] = ACTIONS(1002), - [sym_number_literal] = ACTIONS(1004), - [anon_sym_L_SQUOTE] = ACTIONS(1004), - [anon_sym_u_SQUOTE] = ACTIONS(1004), - [anon_sym_U_SQUOTE] = ACTIONS(1004), - [anon_sym_u8_SQUOTE] = ACTIONS(1004), - [anon_sym_SQUOTE] = ACTIONS(1004), - [anon_sym_L_DQUOTE] = ACTIONS(1004), - [anon_sym_u_DQUOTE] = ACTIONS(1004), - [anon_sym_U_DQUOTE] = ACTIONS(1004), - [anon_sym_u8_DQUOTE] = ACTIONS(1004), - [anon_sym_DQUOTE] = ACTIONS(1004), - [sym_true] = ACTIONS(1002), - [sym_false] = ACTIONS(1002), - [sym_null] = ACTIONS(1002), + [247] = { + [ts_builtin_sym_end] = ACTIONS(1052), + [sym_identifier] = ACTIONS(1050), + [aux_sym_preproc_include_token1] = ACTIONS(1050), + [aux_sym_preproc_def_token1] = ACTIONS(1050), + [aux_sym_preproc_if_token1] = ACTIONS(1050), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1050), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1050), + [sym_preproc_directive] = ACTIONS(1050), + [anon_sym_LPAREN2] = ACTIONS(1052), + [anon_sym_BANG] = ACTIONS(1052), + [anon_sym_TILDE] = ACTIONS(1052), + [anon_sym_DASH] = ACTIONS(1050), + [anon_sym_PLUS] = ACTIONS(1050), + [anon_sym_STAR] = ACTIONS(1052), + [anon_sym_AMP] = ACTIONS(1052), + [anon_sym_SEMI] = ACTIONS(1052), + [anon_sym_typedef] = ACTIONS(1050), + [anon_sym_extern] = ACTIONS(1050), + [anon_sym___attribute__] = ACTIONS(1050), + [anon_sym_LBRACE] = ACTIONS(1052), + [anon_sym_static] = ACTIONS(1050), + [anon_sym_auto] = ACTIONS(1050), + [anon_sym_register] = ACTIONS(1050), + [anon_sym_inline] = ACTIONS(1050), + [anon_sym_const] = ACTIONS(1050), + [anon_sym_volatile] = ACTIONS(1050), + [anon_sym_restrict] = ACTIONS(1050), + [anon_sym__Atomic] = ACTIONS(1050), + [anon_sym_signed] = ACTIONS(1050), + [anon_sym_unsigned] = ACTIONS(1050), + [anon_sym_long] = ACTIONS(1050), + [anon_sym_short] = ACTIONS(1050), + [sym_primitive_type] = ACTIONS(1050), + [anon_sym_enum] = ACTIONS(1050), + [anon_sym_struct] = ACTIONS(1050), + [anon_sym_union] = ACTIONS(1050), + [anon_sym_if] = ACTIONS(1050), + [anon_sym_else] = ACTIONS(1050), + [anon_sym_switch] = ACTIONS(1050), + [anon_sym_case] = ACTIONS(1050), + [anon_sym_default] = ACTIONS(1050), + [anon_sym_while] = ACTIONS(1050), + [anon_sym_do] = ACTIONS(1050), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_return] = ACTIONS(1050), + [anon_sym_break] = ACTIONS(1050), + [anon_sym_continue] = ACTIONS(1050), + [anon_sym_goto] = ACTIONS(1050), + [anon_sym_DASH_DASH] = ACTIONS(1052), + [anon_sym_PLUS_PLUS] = ACTIONS(1052), + [anon_sym_sizeof] = ACTIONS(1050), + [sym_number_literal] = ACTIONS(1052), + [anon_sym_L_SQUOTE] = ACTIONS(1052), + [anon_sym_u_SQUOTE] = ACTIONS(1052), + [anon_sym_U_SQUOTE] = ACTIONS(1052), + [anon_sym_u8_SQUOTE] = ACTIONS(1052), + [anon_sym_SQUOTE] = ACTIONS(1052), + [anon_sym_L_DQUOTE] = ACTIONS(1052), + [anon_sym_u_DQUOTE] = ACTIONS(1052), + [anon_sym_U_DQUOTE] = ACTIONS(1052), + [anon_sym_u8_DQUOTE] = ACTIONS(1052), + [anon_sym_DQUOTE] = ACTIONS(1052), + [sym_true] = ACTIONS(1050), + [sym_false] = ACTIONS(1050), + [sym_null] = ACTIONS(1050), [sym_comment] = ACTIONS(3), }, - [254] = { + [248] = { + [sym_identifier] = ACTIONS(1030), + [aux_sym_preproc_include_token1] = ACTIONS(1030), + [aux_sym_preproc_def_token1] = ACTIONS(1030), + [aux_sym_preproc_if_token1] = ACTIONS(1030), + [aux_sym_preproc_if_token2] = ACTIONS(1030), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1030), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1030), + [sym_preproc_directive] = ACTIONS(1030), + [anon_sym_LPAREN2] = ACTIONS(1032), + [anon_sym_BANG] = ACTIONS(1032), + [anon_sym_TILDE] = ACTIONS(1032), + [anon_sym_DASH] = ACTIONS(1030), + [anon_sym_PLUS] = ACTIONS(1030), + [anon_sym_STAR] = ACTIONS(1032), + [anon_sym_AMP] = ACTIONS(1032), + [anon_sym_SEMI] = ACTIONS(1032), + [anon_sym_typedef] = ACTIONS(1030), + [anon_sym_extern] = ACTIONS(1030), + [anon_sym___attribute__] = ACTIONS(1030), + [anon_sym_LBRACE] = ACTIONS(1032), + [anon_sym_static] = ACTIONS(1030), + [anon_sym_auto] = ACTIONS(1030), + [anon_sym_register] = ACTIONS(1030), + [anon_sym_inline] = ACTIONS(1030), + [anon_sym_const] = ACTIONS(1030), + [anon_sym_volatile] = ACTIONS(1030), + [anon_sym_restrict] = ACTIONS(1030), + [anon_sym__Atomic] = ACTIONS(1030), + [anon_sym_signed] = ACTIONS(1030), + [anon_sym_unsigned] = ACTIONS(1030), + [anon_sym_long] = ACTIONS(1030), + [anon_sym_short] = ACTIONS(1030), + [sym_primitive_type] = ACTIONS(1030), + [anon_sym_enum] = ACTIONS(1030), + [anon_sym_struct] = ACTIONS(1030), + [anon_sym_union] = ACTIONS(1030), + [anon_sym_if] = ACTIONS(1030), + [anon_sym_else] = ACTIONS(1030), + [anon_sym_switch] = ACTIONS(1030), + [anon_sym_case] = ACTIONS(1030), + [anon_sym_default] = ACTIONS(1030), + [anon_sym_while] = ACTIONS(1030), + [anon_sym_do] = ACTIONS(1030), + [anon_sym_for] = ACTIONS(1030), + [anon_sym_return] = ACTIONS(1030), + [anon_sym_break] = ACTIONS(1030), + [anon_sym_continue] = ACTIONS(1030), + [anon_sym_goto] = ACTIONS(1030), + [anon_sym_DASH_DASH] = ACTIONS(1032), + [anon_sym_PLUS_PLUS] = ACTIONS(1032), + [anon_sym_sizeof] = ACTIONS(1030), + [sym_number_literal] = ACTIONS(1032), + [anon_sym_L_SQUOTE] = ACTIONS(1032), + [anon_sym_u_SQUOTE] = ACTIONS(1032), + [anon_sym_U_SQUOTE] = ACTIONS(1032), + [anon_sym_u8_SQUOTE] = ACTIONS(1032), + [anon_sym_SQUOTE] = ACTIONS(1032), + [anon_sym_L_DQUOTE] = ACTIONS(1032), + [anon_sym_u_DQUOTE] = ACTIONS(1032), + [anon_sym_U_DQUOTE] = ACTIONS(1032), + [anon_sym_u8_DQUOTE] = ACTIONS(1032), + [anon_sym_DQUOTE] = ACTIONS(1032), + [sym_true] = ACTIONS(1030), + [sym_false] = ACTIONS(1030), + [sym_null] = ACTIONS(1030), + [sym_comment] = ACTIONS(3), + }, + [249] = { + [ts_builtin_sym_end] = ACTIONS(1016), [sym_identifier] = ACTIONS(1014), [aux_sym_preproc_include_token1] = ACTIONS(1014), [aux_sym_preproc_def_token1] = ACTIONS(1014), @@ -27008,7 +26685,6 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_extern] = ACTIONS(1014), [anon_sym___attribute__] = ACTIONS(1014), [anon_sym_LBRACE] = ACTIONS(1016), - [anon_sym_RBRACE] = ACTIONS(1016), [anon_sym_static] = ACTIONS(1014), [anon_sym_auto] = ACTIONS(1014), [anon_sym_register] = ACTIONS(1014), @@ -27056,143 +26732,75 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1014), [sym_comment] = ACTIONS(3), }, - [255] = { - [sym_identifier] = ACTIONS(1022), - [aux_sym_preproc_include_token1] = ACTIONS(1022), - [aux_sym_preproc_def_token1] = ACTIONS(1022), - [aux_sym_preproc_if_token1] = ACTIONS(1022), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1022), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1022), - [sym_preproc_directive] = ACTIONS(1022), - [anon_sym_LPAREN2] = ACTIONS(1024), - [anon_sym_BANG] = ACTIONS(1024), - [anon_sym_TILDE] = ACTIONS(1024), - [anon_sym_DASH] = ACTIONS(1022), - [anon_sym_PLUS] = ACTIONS(1022), - [anon_sym_STAR] = ACTIONS(1024), - [anon_sym_AMP] = ACTIONS(1024), - [anon_sym_SEMI] = ACTIONS(1024), - [anon_sym_typedef] = ACTIONS(1022), - [anon_sym_extern] = ACTIONS(1022), - [anon_sym___attribute__] = ACTIONS(1022), - [anon_sym_LBRACE] = ACTIONS(1024), - [anon_sym_RBRACE] = ACTIONS(1024), - [anon_sym_static] = ACTIONS(1022), - [anon_sym_auto] = ACTIONS(1022), - [anon_sym_register] = ACTIONS(1022), - [anon_sym_inline] = ACTIONS(1022), - [anon_sym_const] = ACTIONS(1022), - [anon_sym_volatile] = ACTIONS(1022), - [anon_sym_restrict] = ACTIONS(1022), - [anon_sym__Atomic] = ACTIONS(1022), - [anon_sym_signed] = ACTIONS(1022), - [anon_sym_unsigned] = ACTIONS(1022), - [anon_sym_long] = ACTIONS(1022), - [anon_sym_short] = ACTIONS(1022), - [sym_primitive_type] = ACTIONS(1022), - [anon_sym_enum] = ACTIONS(1022), - [anon_sym_struct] = ACTIONS(1022), - [anon_sym_union] = ACTIONS(1022), - [anon_sym_if] = ACTIONS(1022), - [anon_sym_else] = ACTIONS(1022), - [anon_sym_switch] = ACTIONS(1022), - [anon_sym_case] = ACTIONS(1022), - [anon_sym_default] = ACTIONS(1022), - [anon_sym_while] = ACTIONS(1022), - [anon_sym_do] = ACTIONS(1022), - [anon_sym_for] = ACTIONS(1022), - [anon_sym_return] = ACTIONS(1022), - [anon_sym_break] = ACTIONS(1022), - [anon_sym_continue] = ACTIONS(1022), - [anon_sym_goto] = ACTIONS(1022), - [anon_sym_DASH_DASH] = ACTIONS(1024), - [anon_sym_PLUS_PLUS] = ACTIONS(1024), - [anon_sym_sizeof] = ACTIONS(1022), - [sym_number_literal] = ACTIONS(1024), - [anon_sym_L_SQUOTE] = ACTIONS(1024), - [anon_sym_u_SQUOTE] = ACTIONS(1024), - [anon_sym_U_SQUOTE] = ACTIONS(1024), - [anon_sym_u8_SQUOTE] = ACTIONS(1024), - [anon_sym_SQUOTE] = ACTIONS(1024), - [anon_sym_L_DQUOTE] = ACTIONS(1024), - [anon_sym_u_DQUOTE] = ACTIONS(1024), - [anon_sym_U_DQUOTE] = ACTIONS(1024), - [anon_sym_u8_DQUOTE] = ACTIONS(1024), - [anon_sym_DQUOTE] = ACTIONS(1024), - [sym_true] = ACTIONS(1022), - [sym_false] = ACTIONS(1022), - [sym_null] = ACTIONS(1022), - [sym_comment] = ACTIONS(3), - }, - [256] = { - [sym_identifier] = ACTIONS(1018), - [aux_sym_preproc_include_token1] = ACTIONS(1018), - [aux_sym_preproc_def_token1] = ACTIONS(1018), - [aux_sym_preproc_if_token1] = ACTIONS(1018), - [aux_sym_preproc_if_token2] = ACTIONS(1018), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1018), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1018), - [sym_preproc_directive] = ACTIONS(1018), - [anon_sym_LPAREN2] = ACTIONS(1020), - [anon_sym_BANG] = ACTIONS(1020), - [anon_sym_TILDE] = ACTIONS(1020), - [anon_sym_DASH] = ACTIONS(1018), - [anon_sym_PLUS] = ACTIONS(1018), - [anon_sym_STAR] = ACTIONS(1020), - [anon_sym_AMP] = ACTIONS(1020), - [anon_sym_SEMI] = ACTIONS(1020), - [anon_sym_typedef] = ACTIONS(1018), - [anon_sym_extern] = ACTIONS(1018), - [anon_sym___attribute__] = ACTIONS(1018), - [anon_sym_LBRACE] = ACTIONS(1020), - [anon_sym_static] = ACTIONS(1018), - [anon_sym_auto] = ACTIONS(1018), - [anon_sym_register] = ACTIONS(1018), - [anon_sym_inline] = ACTIONS(1018), - [anon_sym_const] = ACTIONS(1018), - [anon_sym_volatile] = ACTIONS(1018), - [anon_sym_restrict] = ACTIONS(1018), - [anon_sym__Atomic] = ACTIONS(1018), - [anon_sym_signed] = ACTIONS(1018), - [anon_sym_unsigned] = ACTIONS(1018), - [anon_sym_long] = ACTIONS(1018), - [anon_sym_short] = ACTIONS(1018), - [sym_primitive_type] = ACTIONS(1018), - [anon_sym_enum] = ACTIONS(1018), - [anon_sym_struct] = ACTIONS(1018), - [anon_sym_union] = ACTIONS(1018), - [anon_sym_if] = ACTIONS(1018), - [anon_sym_else] = ACTIONS(1018), - [anon_sym_switch] = ACTIONS(1018), - [anon_sym_case] = ACTIONS(1018), - [anon_sym_default] = ACTIONS(1018), - [anon_sym_while] = ACTIONS(1018), - [anon_sym_do] = ACTIONS(1018), - [anon_sym_for] = ACTIONS(1018), - [anon_sym_return] = ACTIONS(1018), - [anon_sym_break] = ACTIONS(1018), - [anon_sym_continue] = ACTIONS(1018), - [anon_sym_goto] = ACTIONS(1018), - [anon_sym_DASH_DASH] = ACTIONS(1020), - [anon_sym_PLUS_PLUS] = ACTIONS(1020), - [anon_sym_sizeof] = ACTIONS(1018), - [sym_number_literal] = ACTIONS(1020), - [anon_sym_L_SQUOTE] = ACTIONS(1020), - [anon_sym_u_SQUOTE] = ACTIONS(1020), - [anon_sym_U_SQUOTE] = ACTIONS(1020), - [anon_sym_u8_SQUOTE] = ACTIONS(1020), - [anon_sym_SQUOTE] = ACTIONS(1020), - [anon_sym_L_DQUOTE] = ACTIONS(1020), - [anon_sym_u_DQUOTE] = ACTIONS(1020), - [anon_sym_U_DQUOTE] = ACTIONS(1020), - [anon_sym_u8_DQUOTE] = ACTIONS(1020), - [anon_sym_DQUOTE] = ACTIONS(1020), - [sym_true] = ACTIONS(1018), - [sym_false] = ACTIONS(1018), - [sym_null] = ACTIONS(1018), + [250] = { + [sym_identifier] = ACTIONS(1082), + [aux_sym_preproc_include_token1] = ACTIONS(1082), + [aux_sym_preproc_def_token1] = ACTIONS(1082), + [aux_sym_preproc_if_token1] = ACTIONS(1082), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1082), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1082), + [sym_preproc_directive] = ACTIONS(1082), + [anon_sym_LPAREN2] = ACTIONS(1084), + [anon_sym_BANG] = ACTIONS(1084), + [anon_sym_TILDE] = ACTIONS(1084), + [anon_sym_DASH] = ACTIONS(1082), + [anon_sym_PLUS] = ACTIONS(1082), + [anon_sym_STAR] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1084), + [anon_sym_SEMI] = ACTIONS(1084), + [anon_sym_typedef] = ACTIONS(1082), + [anon_sym_extern] = ACTIONS(1082), + [anon_sym___attribute__] = ACTIONS(1082), + [anon_sym_LBRACE] = ACTIONS(1084), + [anon_sym_RBRACE] = 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_volatile] = ACTIONS(1082), + [anon_sym_restrict] = ACTIONS(1082), + [anon_sym__Atomic] = ACTIONS(1082), + [anon_sym_signed] = 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_else] = 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_DASH_DASH] = ACTIONS(1084), + [anon_sym_PLUS_PLUS] = ACTIONS(1084), + [anon_sym_sizeof] = ACTIONS(1082), + [sym_number_literal] = ACTIONS(1084), + [anon_sym_L_SQUOTE] = ACTIONS(1084), + [anon_sym_u_SQUOTE] = ACTIONS(1084), + [anon_sym_U_SQUOTE] = ACTIONS(1084), + [anon_sym_u8_SQUOTE] = ACTIONS(1084), + [anon_sym_SQUOTE] = ACTIONS(1084), + [anon_sym_L_DQUOTE] = ACTIONS(1084), + [anon_sym_u_DQUOTE] = ACTIONS(1084), + [anon_sym_U_DQUOTE] = ACTIONS(1084), + [anon_sym_u8_DQUOTE] = ACTIONS(1084), + [anon_sym_DQUOTE] = ACTIONS(1084), + [sym_true] = ACTIONS(1082), + [sym_false] = ACTIONS(1082), + [sym_null] = ACTIONS(1082), [sym_comment] = ACTIONS(3), }, - [257] = { + [251] = { [sym_identifier] = ACTIONS(1086), [aux_sym_preproc_include_token1] = ACTIONS(1086), [aux_sym_preproc_def_token1] = ACTIONS(1086), @@ -27260,279 +26868,143 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1086), [sym_comment] = ACTIONS(3), }, - [258] = { - [sym_identifier] = ACTIONS(1090), - [aux_sym_preproc_include_token1] = ACTIONS(1090), - [aux_sym_preproc_def_token1] = ACTIONS(1090), - [aux_sym_preproc_if_token1] = ACTIONS(1090), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1090), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1090), - [sym_preproc_directive] = ACTIONS(1090), - [anon_sym_LPAREN2] = ACTIONS(1092), - [anon_sym_BANG] = ACTIONS(1092), - [anon_sym_TILDE] = ACTIONS(1092), - [anon_sym_DASH] = ACTIONS(1090), - [anon_sym_PLUS] = ACTIONS(1090), - [anon_sym_STAR] = ACTIONS(1092), - [anon_sym_AMP] = ACTIONS(1092), - [anon_sym_SEMI] = ACTIONS(1092), - [anon_sym_typedef] = ACTIONS(1090), - [anon_sym_extern] = ACTIONS(1090), - [anon_sym___attribute__] = ACTIONS(1090), - [anon_sym_LBRACE] = ACTIONS(1092), - [anon_sym_RBRACE] = ACTIONS(1092), - [anon_sym_static] = ACTIONS(1090), - [anon_sym_auto] = ACTIONS(1090), - [anon_sym_register] = ACTIONS(1090), - [anon_sym_inline] = ACTIONS(1090), - [anon_sym_const] = ACTIONS(1090), - [anon_sym_volatile] = ACTIONS(1090), - [anon_sym_restrict] = ACTIONS(1090), - [anon_sym__Atomic] = ACTIONS(1090), - [anon_sym_signed] = ACTIONS(1090), - [anon_sym_unsigned] = ACTIONS(1090), - [anon_sym_long] = ACTIONS(1090), - [anon_sym_short] = ACTIONS(1090), - [sym_primitive_type] = ACTIONS(1090), - [anon_sym_enum] = ACTIONS(1090), - [anon_sym_struct] = ACTIONS(1090), - [anon_sym_union] = ACTIONS(1090), - [anon_sym_if] = ACTIONS(1090), - [anon_sym_else] = ACTIONS(1090), - [anon_sym_switch] = ACTIONS(1090), - [anon_sym_case] = ACTIONS(1090), - [anon_sym_default] = ACTIONS(1090), - [anon_sym_while] = ACTIONS(1090), - [anon_sym_do] = ACTIONS(1090), - [anon_sym_for] = ACTIONS(1090), - [anon_sym_return] = ACTIONS(1090), - [anon_sym_break] = ACTIONS(1090), - [anon_sym_continue] = ACTIONS(1090), - [anon_sym_goto] = ACTIONS(1090), - [anon_sym_DASH_DASH] = ACTIONS(1092), - [anon_sym_PLUS_PLUS] = ACTIONS(1092), - [anon_sym_sizeof] = ACTIONS(1090), - [sym_number_literal] = ACTIONS(1092), - [anon_sym_L_SQUOTE] = ACTIONS(1092), - [anon_sym_u_SQUOTE] = ACTIONS(1092), - [anon_sym_U_SQUOTE] = ACTIONS(1092), - [anon_sym_u8_SQUOTE] = ACTIONS(1092), - [anon_sym_SQUOTE] = ACTIONS(1092), - [anon_sym_L_DQUOTE] = ACTIONS(1092), - [anon_sym_u_DQUOTE] = ACTIONS(1092), - [anon_sym_U_DQUOTE] = ACTIONS(1092), - [anon_sym_u8_DQUOTE] = ACTIONS(1092), - [anon_sym_DQUOTE] = ACTIONS(1092), - [sym_true] = ACTIONS(1090), - [sym_false] = ACTIONS(1090), - [sym_null] = ACTIONS(1090), - [sym_comment] = ACTIONS(3), - }, - [259] = { - [sym_identifier] = ACTIONS(1042), - [aux_sym_preproc_include_token1] = ACTIONS(1042), - [aux_sym_preproc_def_token1] = ACTIONS(1042), - [aux_sym_preproc_if_token1] = ACTIONS(1042), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1042), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1042), - [sym_preproc_directive] = ACTIONS(1042), - [anon_sym_LPAREN2] = ACTIONS(1044), - [anon_sym_BANG] = ACTIONS(1044), - [anon_sym_TILDE] = ACTIONS(1044), - [anon_sym_DASH] = ACTIONS(1042), - [anon_sym_PLUS] = ACTIONS(1042), - [anon_sym_STAR] = ACTIONS(1044), - [anon_sym_AMP] = ACTIONS(1044), - [anon_sym_SEMI] = ACTIONS(1044), - [anon_sym_typedef] = ACTIONS(1042), - [anon_sym_extern] = ACTIONS(1042), - [anon_sym___attribute__] = ACTIONS(1042), - [anon_sym_LBRACE] = ACTIONS(1044), - [anon_sym_RBRACE] = ACTIONS(1044), - [anon_sym_static] = ACTIONS(1042), - [anon_sym_auto] = ACTIONS(1042), - [anon_sym_register] = ACTIONS(1042), - [anon_sym_inline] = ACTIONS(1042), - [anon_sym_const] = ACTIONS(1042), - [anon_sym_volatile] = ACTIONS(1042), - [anon_sym_restrict] = ACTIONS(1042), - [anon_sym__Atomic] = ACTIONS(1042), - [anon_sym_signed] = ACTIONS(1042), - [anon_sym_unsigned] = ACTIONS(1042), - [anon_sym_long] = ACTIONS(1042), - [anon_sym_short] = ACTIONS(1042), - [sym_primitive_type] = ACTIONS(1042), - [anon_sym_enum] = ACTIONS(1042), - [anon_sym_struct] = ACTIONS(1042), - [anon_sym_union] = ACTIONS(1042), - [anon_sym_if] = ACTIONS(1042), - [anon_sym_else] = ACTIONS(1042), - [anon_sym_switch] = ACTIONS(1042), - [anon_sym_case] = ACTIONS(1042), - [anon_sym_default] = ACTIONS(1042), - [anon_sym_while] = ACTIONS(1042), - [anon_sym_do] = ACTIONS(1042), - [anon_sym_for] = ACTIONS(1042), - [anon_sym_return] = ACTIONS(1042), - [anon_sym_break] = ACTIONS(1042), - [anon_sym_continue] = ACTIONS(1042), - [anon_sym_goto] = ACTIONS(1042), - [anon_sym_DASH_DASH] = ACTIONS(1044), - [anon_sym_PLUS_PLUS] = ACTIONS(1044), - [anon_sym_sizeof] = ACTIONS(1042), - [sym_number_literal] = ACTIONS(1044), - [anon_sym_L_SQUOTE] = ACTIONS(1044), - [anon_sym_u_SQUOTE] = ACTIONS(1044), - [anon_sym_U_SQUOTE] = ACTIONS(1044), - [anon_sym_u8_SQUOTE] = ACTIONS(1044), - [anon_sym_SQUOTE] = ACTIONS(1044), - [anon_sym_L_DQUOTE] = ACTIONS(1044), - [anon_sym_u_DQUOTE] = ACTIONS(1044), - [anon_sym_U_DQUOTE] = ACTIONS(1044), - [anon_sym_u8_DQUOTE] = ACTIONS(1044), - [anon_sym_DQUOTE] = ACTIONS(1044), - [sym_true] = ACTIONS(1042), - [sym_false] = ACTIONS(1042), - [sym_null] = ACTIONS(1042), - [sym_comment] = ACTIONS(3), - }, - [260] = { - [sym_identifier] = ACTIONS(1014), - [aux_sym_preproc_include_token1] = ACTIONS(1014), - [aux_sym_preproc_def_token1] = ACTIONS(1014), - [aux_sym_preproc_if_token1] = ACTIONS(1014), - [aux_sym_preproc_if_token2] = ACTIONS(1014), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1014), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1014), - [sym_preproc_directive] = ACTIONS(1014), - [anon_sym_LPAREN2] = ACTIONS(1016), - [anon_sym_BANG] = ACTIONS(1016), - [anon_sym_TILDE] = ACTIONS(1016), - [anon_sym_DASH] = ACTIONS(1014), - [anon_sym_PLUS] = ACTIONS(1014), - [anon_sym_STAR] = ACTIONS(1016), - [anon_sym_AMP] = ACTIONS(1016), - [anon_sym_SEMI] = ACTIONS(1016), - [anon_sym_typedef] = ACTIONS(1014), - [anon_sym_extern] = ACTIONS(1014), - [anon_sym___attribute__] = ACTIONS(1014), - [anon_sym_LBRACE] = ACTIONS(1016), - [anon_sym_static] = ACTIONS(1014), - [anon_sym_auto] = ACTIONS(1014), - [anon_sym_register] = ACTIONS(1014), - [anon_sym_inline] = ACTIONS(1014), - [anon_sym_const] = ACTIONS(1014), - [anon_sym_volatile] = ACTIONS(1014), - [anon_sym_restrict] = ACTIONS(1014), - [anon_sym__Atomic] = ACTIONS(1014), - [anon_sym_signed] = ACTIONS(1014), - [anon_sym_unsigned] = ACTIONS(1014), - [anon_sym_long] = ACTIONS(1014), - [anon_sym_short] = ACTIONS(1014), - [sym_primitive_type] = ACTIONS(1014), - [anon_sym_enum] = ACTIONS(1014), - [anon_sym_struct] = ACTIONS(1014), - [anon_sym_union] = ACTIONS(1014), - [anon_sym_if] = ACTIONS(1014), - [anon_sym_else] = ACTIONS(1014), - [anon_sym_switch] = ACTIONS(1014), - [anon_sym_case] = ACTIONS(1014), - [anon_sym_default] = ACTIONS(1014), - [anon_sym_while] = ACTIONS(1014), - [anon_sym_do] = ACTIONS(1014), - [anon_sym_for] = ACTIONS(1014), - [anon_sym_return] = ACTIONS(1014), - [anon_sym_break] = ACTIONS(1014), - [anon_sym_continue] = ACTIONS(1014), - [anon_sym_goto] = ACTIONS(1014), - [anon_sym_DASH_DASH] = ACTIONS(1016), - [anon_sym_PLUS_PLUS] = ACTIONS(1016), - [anon_sym_sizeof] = ACTIONS(1014), - [sym_number_literal] = ACTIONS(1016), - [anon_sym_L_SQUOTE] = ACTIONS(1016), - [anon_sym_u_SQUOTE] = ACTIONS(1016), - [anon_sym_U_SQUOTE] = ACTIONS(1016), - [anon_sym_u8_SQUOTE] = ACTIONS(1016), - [anon_sym_SQUOTE] = ACTIONS(1016), - [anon_sym_L_DQUOTE] = ACTIONS(1016), - [anon_sym_u_DQUOTE] = ACTIONS(1016), - [anon_sym_U_DQUOTE] = ACTIONS(1016), - [anon_sym_u8_DQUOTE] = ACTIONS(1016), - [anon_sym_DQUOTE] = ACTIONS(1016), - [sym_true] = ACTIONS(1014), - [sym_false] = ACTIONS(1014), - [sym_null] = ACTIONS(1014), + [252] = { + [sym_identifier] = ACTIONS(968), + [aux_sym_preproc_include_token1] = ACTIONS(968), + [aux_sym_preproc_def_token1] = ACTIONS(968), + [aux_sym_preproc_if_token1] = ACTIONS(968), + [aux_sym_preproc_if_token2] = ACTIONS(968), + [aux_sym_preproc_ifdef_token1] = ACTIONS(968), + [aux_sym_preproc_ifdef_token2] = ACTIONS(968), + [sym_preproc_directive] = ACTIONS(968), + [anon_sym_LPAREN2] = ACTIONS(970), + [anon_sym_BANG] = ACTIONS(970), + [anon_sym_TILDE] = ACTIONS(970), + [anon_sym_DASH] = ACTIONS(968), + [anon_sym_PLUS] = ACTIONS(968), + [anon_sym_STAR] = ACTIONS(970), + [anon_sym_AMP] = ACTIONS(970), + [anon_sym_SEMI] = ACTIONS(970), + [anon_sym_typedef] = ACTIONS(968), + [anon_sym_extern] = ACTIONS(968), + [anon_sym___attribute__] = ACTIONS(968), + [anon_sym_LBRACE] = ACTIONS(970), + [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_volatile] = ACTIONS(968), + [anon_sym_restrict] = ACTIONS(968), + [anon_sym__Atomic] = ACTIONS(968), + [anon_sym_signed] = 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_DASH_DASH] = ACTIONS(970), + [anon_sym_PLUS_PLUS] = ACTIONS(970), + [anon_sym_sizeof] = ACTIONS(968), + [sym_number_literal] = ACTIONS(970), + [anon_sym_L_SQUOTE] = ACTIONS(970), + [anon_sym_u_SQUOTE] = ACTIONS(970), + [anon_sym_U_SQUOTE] = ACTIONS(970), + [anon_sym_u8_SQUOTE] = ACTIONS(970), + [anon_sym_SQUOTE] = ACTIONS(970), + [anon_sym_L_DQUOTE] = ACTIONS(970), + [anon_sym_u_DQUOTE] = ACTIONS(970), + [anon_sym_U_DQUOTE] = ACTIONS(970), + [anon_sym_u8_DQUOTE] = ACTIONS(970), + [anon_sym_DQUOTE] = ACTIONS(970), + [sym_true] = ACTIONS(968), + [sym_false] = ACTIONS(968), + [sym_null] = ACTIONS(968), [sym_comment] = ACTIONS(3), }, - [261] = { - [sym_identifier] = ACTIONS(1034), - [aux_sym_preproc_include_token1] = ACTIONS(1034), - [aux_sym_preproc_def_token1] = ACTIONS(1034), - [aux_sym_preproc_if_token1] = ACTIONS(1034), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1034), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1034), - [sym_preproc_directive] = ACTIONS(1034), - [anon_sym_LPAREN2] = ACTIONS(1036), - [anon_sym_BANG] = ACTIONS(1036), - [anon_sym_TILDE] = ACTIONS(1036), - [anon_sym_DASH] = ACTIONS(1034), - [anon_sym_PLUS] = ACTIONS(1034), - [anon_sym_STAR] = ACTIONS(1036), - [anon_sym_AMP] = ACTIONS(1036), - [anon_sym_SEMI] = ACTIONS(1036), - [anon_sym_typedef] = ACTIONS(1034), - [anon_sym_extern] = ACTIONS(1034), - [anon_sym___attribute__] = ACTIONS(1034), - [anon_sym_LBRACE] = ACTIONS(1036), - [anon_sym_RBRACE] = ACTIONS(1036), - [anon_sym_static] = ACTIONS(1034), - [anon_sym_auto] = ACTIONS(1034), - [anon_sym_register] = ACTIONS(1034), - [anon_sym_inline] = ACTIONS(1034), - [anon_sym_const] = ACTIONS(1034), - [anon_sym_volatile] = ACTIONS(1034), - [anon_sym_restrict] = ACTIONS(1034), - [anon_sym__Atomic] = ACTIONS(1034), - [anon_sym_signed] = ACTIONS(1034), - [anon_sym_unsigned] = ACTIONS(1034), - [anon_sym_long] = ACTIONS(1034), - [anon_sym_short] = ACTIONS(1034), - [sym_primitive_type] = ACTIONS(1034), - [anon_sym_enum] = ACTIONS(1034), - [anon_sym_struct] = ACTIONS(1034), - [anon_sym_union] = ACTIONS(1034), - [anon_sym_if] = ACTIONS(1034), - [anon_sym_else] = ACTIONS(1034), - [anon_sym_switch] = ACTIONS(1034), - [anon_sym_case] = ACTIONS(1034), - [anon_sym_default] = ACTIONS(1034), - [anon_sym_while] = ACTIONS(1034), - [anon_sym_do] = ACTIONS(1034), - [anon_sym_for] = ACTIONS(1034), - [anon_sym_return] = ACTIONS(1034), - [anon_sym_break] = ACTIONS(1034), - [anon_sym_continue] = ACTIONS(1034), - [anon_sym_goto] = ACTIONS(1034), - [anon_sym_DASH_DASH] = ACTIONS(1036), - [anon_sym_PLUS_PLUS] = ACTIONS(1036), - [anon_sym_sizeof] = ACTIONS(1034), - [sym_number_literal] = ACTIONS(1036), - [anon_sym_L_SQUOTE] = ACTIONS(1036), - [anon_sym_u_SQUOTE] = ACTIONS(1036), - [anon_sym_U_SQUOTE] = ACTIONS(1036), - [anon_sym_u8_SQUOTE] = ACTIONS(1036), - [anon_sym_SQUOTE] = ACTIONS(1036), - [anon_sym_L_DQUOTE] = ACTIONS(1036), - [anon_sym_u_DQUOTE] = ACTIONS(1036), - [anon_sym_U_DQUOTE] = ACTIONS(1036), - [anon_sym_u8_DQUOTE] = ACTIONS(1036), - [anon_sym_DQUOTE] = ACTIONS(1036), - [sym_true] = ACTIONS(1034), - [sym_false] = ACTIONS(1034), - [sym_null] = ACTIONS(1034), + [253] = { + [sym_identifier] = ACTIONS(984), + [aux_sym_preproc_include_token1] = ACTIONS(984), + [aux_sym_preproc_def_token1] = ACTIONS(984), + [aux_sym_preproc_if_token1] = ACTIONS(984), + [aux_sym_preproc_if_token2] = ACTIONS(984), + [aux_sym_preproc_ifdef_token1] = ACTIONS(984), + [aux_sym_preproc_ifdef_token2] = ACTIONS(984), + [sym_preproc_directive] = ACTIONS(984), + [anon_sym_LPAREN2] = ACTIONS(986), + [anon_sym_BANG] = ACTIONS(986), + [anon_sym_TILDE] = ACTIONS(986), + [anon_sym_DASH] = ACTIONS(984), + [anon_sym_PLUS] = ACTIONS(984), + [anon_sym_STAR] = ACTIONS(986), + [anon_sym_AMP] = ACTIONS(986), + [anon_sym_SEMI] = ACTIONS(986), + [anon_sym_typedef] = ACTIONS(984), + [anon_sym_extern] = ACTIONS(984), + [anon_sym___attribute__] = ACTIONS(984), + [anon_sym_LBRACE] = ACTIONS(986), + [anon_sym_static] = ACTIONS(984), + [anon_sym_auto] = ACTIONS(984), + [anon_sym_register] = ACTIONS(984), + [anon_sym_inline] = ACTIONS(984), + [anon_sym_const] = ACTIONS(984), + [anon_sym_volatile] = ACTIONS(984), + [anon_sym_restrict] = ACTIONS(984), + [anon_sym__Atomic] = ACTIONS(984), + [anon_sym_signed] = ACTIONS(984), + [anon_sym_unsigned] = ACTIONS(984), + [anon_sym_long] = ACTIONS(984), + [anon_sym_short] = ACTIONS(984), + [sym_primitive_type] = ACTIONS(984), + [anon_sym_enum] = ACTIONS(984), + [anon_sym_struct] = ACTIONS(984), + [anon_sym_union] = ACTIONS(984), + [anon_sym_if] = ACTIONS(984), + [anon_sym_else] = ACTIONS(984), + [anon_sym_switch] = ACTIONS(984), + [anon_sym_case] = ACTIONS(984), + [anon_sym_default] = ACTIONS(984), + [anon_sym_while] = ACTIONS(984), + [anon_sym_do] = ACTIONS(984), + [anon_sym_for] = ACTIONS(984), + [anon_sym_return] = ACTIONS(984), + [anon_sym_break] = ACTIONS(984), + [anon_sym_continue] = ACTIONS(984), + [anon_sym_goto] = ACTIONS(984), + [anon_sym_DASH_DASH] = ACTIONS(986), + [anon_sym_PLUS_PLUS] = ACTIONS(986), + [anon_sym_sizeof] = ACTIONS(984), + [sym_number_literal] = ACTIONS(986), + [anon_sym_L_SQUOTE] = ACTIONS(986), + [anon_sym_u_SQUOTE] = ACTIONS(986), + [anon_sym_U_SQUOTE] = ACTIONS(986), + [anon_sym_u8_SQUOTE] = ACTIONS(986), + [anon_sym_SQUOTE] = ACTIONS(986), + [anon_sym_L_DQUOTE] = ACTIONS(986), + [anon_sym_u_DQUOTE] = ACTIONS(986), + [anon_sym_U_DQUOTE] = ACTIONS(986), + [anon_sym_u8_DQUOTE] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(986), + [sym_true] = ACTIONS(984), + [sym_false] = ACTIONS(984), + [sym_null] = ACTIONS(984), [sym_comment] = ACTIONS(3), }, - [262] = { + [254] = { [sym_identifier] = ACTIONS(972), [aux_sym_preproc_include_token1] = ACTIONS(972), [aux_sym_preproc_def_token1] = ACTIONS(972), @@ -27600,211 +27072,144 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(972), [sym_comment] = ACTIONS(3), }, - [263] = { - [sym_identifier] = ACTIONS(1022), - [aux_sym_preproc_include_token1] = ACTIONS(1022), - [aux_sym_preproc_def_token1] = ACTIONS(1022), - [aux_sym_preproc_if_token1] = ACTIONS(1022), - [aux_sym_preproc_if_token2] = ACTIONS(1022), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1022), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1022), - [sym_preproc_directive] = ACTIONS(1022), - [anon_sym_LPAREN2] = ACTIONS(1024), - [anon_sym_BANG] = ACTIONS(1024), - [anon_sym_TILDE] = ACTIONS(1024), - [anon_sym_DASH] = ACTIONS(1022), - [anon_sym_PLUS] = ACTIONS(1022), - [anon_sym_STAR] = ACTIONS(1024), - [anon_sym_AMP] = ACTIONS(1024), - [anon_sym_SEMI] = ACTIONS(1024), - [anon_sym_typedef] = ACTIONS(1022), - [anon_sym_extern] = ACTIONS(1022), - [anon_sym___attribute__] = ACTIONS(1022), - [anon_sym_LBRACE] = ACTIONS(1024), - [anon_sym_static] = ACTIONS(1022), - [anon_sym_auto] = ACTIONS(1022), - [anon_sym_register] = ACTIONS(1022), - [anon_sym_inline] = ACTIONS(1022), - [anon_sym_const] = ACTIONS(1022), - [anon_sym_volatile] = ACTIONS(1022), - [anon_sym_restrict] = ACTIONS(1022), - [anon_sym__Atomic] = ACTIONS(1022), - [anon_sym_signed] = ACTIONS(1022), - [anon_sym_unsigned] = ACTIONS(1022), - [anon_sym_long] = ACTIONS(1022), - [anon_sym_short] = ACTIONS(1022), - [sym_primitive_type] = ACTIONS(1022), - [anon_sym_enum] = ACTIONS(1022), - [anon_sym_struct] = ACTIONS(1022), - [anon_sym_union] = ACTIONS(1022), - [anon_sym_if] = ACTIONS(1022), - [anon_sym_else] = ACTIONS(1022), - [anon_sym_switch] = ACTIONS(1022), - [anon_sym_case] = ACTIONS(1022), - [anon_sym_default] = ACTIONS(1022), - [anon_sym_while] = ACTIONS(1022), - [anon_sym_do] = ACTIONS(1022), - [anon_sym_for] = ACTIONS(1022), - [anon_sym_return] = ACTIONS(1022), - [anon_sym_break] = ACTIONS(1022), - [anon_sym_continue] = ACTIONS(1022), - [anon_sym_goto] = ACTIONS(1022), - [anon_sym_DASH_DASH] = ACTIONS(1024), - [anon_sym_PLUS_PLUS] = ACTIONS(1024), - [anon_sym_sizeof] = ACTIONS(1022), - [sym_number_literal] = ACTIONS(1024), - [anon_sym_L_SQUOTE] = ACTIONS(1024), - [anon_sym_u_SQUOTE] = ACTIONS(1024), - [anon_sym_U_SQUOTE] = ACTIONS(1024), - [anon_sym_u8_SQUOTE] = ACTIONS(1024), - [anon_sym_SQUOTE] = ACTIONS(1024), - [anon_sym_L_DQUOTE] = ACTIONS(1024), - [anon_sym_u_DQUOTE] = ACTIONS(1024), - [anon_sym_U_DQUOTE] = ACTIONS(1024), - [anon_sym_u8_DQUOTE] = ACTIONS(1024), - [anon_sym_DQUOTE] = ACTIONS(1024), - [sym_true] = ACTIONS(1022), - [sym_false] = ACTIONS(1022), - [sym_null] = ACTIONS(1022), - [sym_comment] = ACTIONS(3), - }, - [264] = { - [sym_identifier] = ACTIONS(1054), - [aux_sym_preproc_include_token1] = ACTIONS(1054), - [aux_sym_preproc_def_token1] = ACTIONS(1054), - [aux_sym_preproc_if_token1] = ACTIONS(1054), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1054), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1054), - [sym_preproc_directive] = ACTIONS(1054), - [anon_sym_LPAREN2] = ACTIONS(1056), - [anon_sym_BANG] = ACTIONS(1056), - [anon_sym_TILDE] = ACTIONS(1056), - [anon_sym_DASH] = ACTIONS(1054), - [anon_sym_PLUS] = ACTIONS(1054), - [anon_sym_STAR] = ACTIONS(1056), - [anon_sym_AMP] = ACTIONS(1056), - [anon_sym_SEMI] = ACTIONS(1056), - [anon_sym_typedef] = ACTIONS(1054), - [anon_sym_extern] = ACTIONS(1054), - [anon_sym___attribute__] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_RBRACE] = ACTIONS(1056), - [anon_sym_static] = ACTIONS(1054), - [anon_sym_auto] = ACTIONS(1054), - [anon_sym_register] = ACTIONS(1054), - [anon_sym_inline] = ACTIONS(1054), - [anon_sym_const] = ACTIONS(1054), - [anon_sym_volatile] = ACTIONS(1054), - [anon_sym_restrict] = ACTIONS(1054), - [anon_sym__Atomic] = ACTIONS(1054), - [anon_sym_signed] = ACTIONS(1054), - [anon_sym_unsigned] = ACTIONS(1054), - [anon_sym_long] = ACTIONS(1054), - [anon_sym_short] = ACTIONS(1054), - [sym_primitive_type] = ACTIONS(1054), - [anon_sym_enum] = ACTIONS(1054), - [anon_sym_struct] = ACTIONS(1054), - [anon_sym_union] = ACTIONS(1054), - [anon_sym_if] = ACTIONS(1054), - [anon_sym_else] = ACTIONS(1054), - [anon_sym_switch] = ACTIONS(1054), - [anon_sym_case] = ACTIONS(1054), - [anon_sym_default] = ACTIONS(1054), - [anon_sym_while] = ACTIONS(1054), - [anon_sym_do] = ACTIONS(1054), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_return] = ACTIONS(1054), - [anon_sym_break] = ACTIONS(1054), - [anon_sym_continue] = ACTIONS(1054), - [anon_sym_goto] = ACTIONS(1054), - [anon_sym_DASH_DASH] = ACTIONS(1056), - [anon_sym_PLUS_PLUS] = ACTIONS(1056), - [anon_sym_sizeof] = ACTIONS(1054), - [sym_number_literal] = ACTIONS(1056), - [anon_sym_L_SQUOTE] = ACTIONS(1056), - [anon_sym_u_SQUOTE] = ACTIONS(1056), - [anon_sym_U_SQUOTE] = ACTIONS(1056), - [anon_sym_u8_SQUOTE] = ACTIONS(1056), - [anon_sym_SQUOTE] = ACTIONS(1056), - [anon_sym_L_DQUOTE] = ACTIONS(1056), - [anon_sym_u_DQUOTE] = ACTIONS(1056), - [anon_sym_U_DQUOTE] = ACTIONS(1056), - [anon_sym_u8_DQUOTE] = ACTIONS(1056), - [anon_sym_DQUOTE] = ACTIONS(1056), - [sym_true] = ACTIONS(1054), - [sym_false] = ACTIONS(1054), - [sym_null] = ACTIONS(1054), + [255] = { + [sym_identifier] = ACTIONS(1042), + [aux_sym_preproc_include_token1] = ACTIONS(1042), + [aux_sym_preproc_def_token1] = ACTIONS(1042), + [aux_sym_preproc_if_token1] = ACTIONS(1042), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1042), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1042), + [sym_preproc_directive] = ACTIONS(1042), + [anon_sym_LPAREN2] = ACTIONS(1044), + [anon_sym_BANG] = ACTIONS(1044), + [anon_sym_TILDE] = ACTIONS(1044), + [anon_sym_DASH] = ACTIONS(1042), + [anon_sym_PLUS] = ACTIONS(1042), + [anon_sym_STAR] = ACTIONS(1044), + [anon_sym_AMP] = ACTIONS(1044), + [anon_sym_SEMI] = ACTIONS(1044), + [anon_sym_typedef] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1042), + [anon_sym___attribute__] = ACTIONS(1042), + [anon_sym_LBRACE] = ACTIONS(1044), + [anon_sym_RBRACE] = ACTIONS(1044), + [anon_sym_static] = ACTIONS(1042), + [anon_sym_auto] = ACTIONS(1042), + [anon_sym_register] = ACTIONS(1042), + [anon_sym_inline] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1042), + [anon_sym_volatile] = ACTIONS(1042), + [anon_sym_restrict] = ACTIONS(1042), + [anon_sym__Atomic] = ACTIONS(1042), + [anon_sym_signed] = ACTIONS(1042), + [anon_sym_unsigned] = ACTIONS(1042), + [anon_sym_long] = ACTIONS(1042), + [anon_sym_short] = ACTIONS(1042), + [sym_primitive_type] = ACTIONS(1042), + [anon_sym_enum] = ACTIONS(1042), + [anon_sym_struct] = ACTIONS(1042), + [anon_sym_union] = ACTIONS(1042), + [anon_sym_if] = ACTIONS(1042), + [anon_sym_else] = ACTIONS(1042), + [anon_sym_switch] = ACTIONS(1042), + [anon_sym_case] = ACTIONS(1042), + [anon_sym_default] = ACTIONS(1042), + [anon_sym_while] = ACTIONS(1042), + [anon_sym_do] = ACTIONS(1042), + [anon_sym_for] = ACTIONS(1042), + [anon_sym_return] = ACTIONS(1042), + [anon_sym_break] = ACTIONS(1042), + [anon_sym_continue] = ACTIONS(1042), + [anon_sym_goto] = ACTIONS(1042), + [anon_sym_DASH_DASH] = ACTIONS(1044), + [anon_sym_PLUS_PLUS] = ACTIONS(1044), + [anon_sym_sizeof] = ACTIONS(1042), + [sym_number_literal] = ACTIONS(1044), + [anon_sym_L_SQUOTE] = ACTIONS(1044), + [anon_sym_u_SQUOTE] = ACTIONS(1044), + [anon_sym_U_SQUOTE] = ACTIONS(1044), + [anon_sym_u8_SQUOTE] = ACTIONS(1044), + [anon_sym_SQUOTE] = ACTIONS(1044), + [anon_sym_L_DQUOTE] = ACTIONS(1044), + [anon_sym_u_DQUOTE] = ACTIONS(1044), + [anon_sym_U_DQUOTE] = ACTIONS(1044), + [anon_sym_u8_DQUOTE] = ACTIONS(1044), + [anon_sym_DQUOTE] = ACTIONS(1044), + [sym_true] = ACTIONS(1042), + [sym_false] = ACTIONS(1042), + [sym_null] = ACTIONS(1042), [sym_comment] = ACTIONS(3), }, - [265] = { - [sym_identifier] = ACTIONS(1066), - [aux_sym_preproc_include_token1] = ACTIONS(1066), - [aux_sym_preproc_def_token1] = ACTIONS(1066), - [aux_sym_preproc_if_token1] = ACTIONS(1066), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1066), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1066), - [sym_preproc_directive] = ACTIONS(1066), - [anon_sym_LPAREN2] = ACTIONS(1068), - [anon_sym_BANG] = ACTIONS(1068), - [anon_sym_TILDE] = ACTIONS(1068), - [anon_sym_DASH] = ACTIONS(1066), - [anon_sym_PLUS] = ACTIONS(1066), - [anon_sym_STAR] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1068), - [anon_sym_SEMI] = ACTIONS(1068), - [anon_sym_typedef] = ACTIONS(1066), - [anon_sym_extern] = ACTIONS(1066), - [anon_sym___attribute__] = ACTIONS(1066), - [anon_sym_LBRACE] = ACTIONS(1068), - [anon_sym_RBRACE] = ACTIONS(1068), - [anon_sym_static] = ACTIONS(1066), - [anon_sym_auto] = ACTIONS(1066), - [anon_sym_register] = ACTIONS(1066), - [anon_sym_inline] = ACTIONS(1066), - [anon_sym_const] = ACTIONS(1066), - [anon_sym_volatile] = ACTIONS(1066), - [anon_sym_restrict] = ACTIONS(1066), - [anon_sym__Atomic] = ACTIONS(1066), - [anon_sym_signed] = ACTIONS(1066), - [anon_sym_unsigned] = ACTIONS(1066), - [anon_sym_long] = ACTIONS(1066), - [anon_sym_short] = ACTIONS(1066), - [sym_primitive_type] = ACTIONS(1066), - [anon_sym_enum] = ACTIONS(1066), - [anon_sym_struct] = ACTIONS(1066), - [anon_sym_union] = ACTIONS(1066), - [anon_sym_if] = ACTIONS(1066), - [anon_sym_else] = ACTIONS(1066), - [anon_sym_switch] = ACTIONS(1066), - [anon_sym_case] = ACTIONS(1066), - [anon_sym_default] = ACTIONS(1066), - [anon_sym_while] = ACTIONS(1066), - [anon_sym_do] = ACTIONS(1066), - [anon_sym_for] = ACTIONS(1066), - [anon_sym_return] = ACTIONS(1066), - [anon_sym_break] = ACTIONS(1066), - [anon_sym_continue] = ACTIONS(1066), - [anon_sym_goto] = ACTIONS(1066), - [anon_sym_DASH_DASH] = ACTIONS(1068), - [anon_sym_PLUS_PLUS] = ACTIONS(1068), - [anon_sym_sizeof] = ACTIONS(1066), - [sym_number_literal] = ACTIONS(1068), - [anon_sym_L_SQUOTE] = ACTIONS(1068), - [anon_sym_u_SQUOTE] = ACTIONS(1068), - [anon_sym_U_SQUOTE] = ACTIONS(1068), - [anon_sym_u8_SQUOTE] = ACTIONS(1068), - [anon_sym_SQUOTE] = ACTIONS(1068), - [anon_sym_L_DQUOTE] = ACTIONS(1068), - [anon_sym_u_DQUOTE] = ACTIONS(1068), - [anon_sym_U_DQUOTE] = ACTIONS(1068), - [anon_sym_u8_DQUOTE] = ACTIONS(1068), - [anon_sym_DQUOTE] = ACTIONS(1068), - [sym_true] = ACTIONS(1066), - [sym_false] = ACTIONS(1066), - [sym_null] = ACTIONS(1066), + [256] = { + [sym_identifier] = ACTIONS(992), + [aux_sym_preproc_include_token1] = ACTIONS(992), + [aux_sym_preproc_def_token1] = ACTIONS(992), + [aux_sym_preproc_if_token1] = ACTIONS(992), + [aux_sym_preproc_if_token2] = ACTIONS(992), + [aux_sym_preproc_ifdef_token1] = ACTIONS(992), + [aux_sym_preproc_ifdef_token2] = ACTIONS(992), + [sym_preproc_directive] = ACTIONS(992), + [anon_sym_LPAREN2] = ACTIONS(994), + [anon_sym_BANG] = ACTIONS(994), + [anon_sym_TILDE] = ACTIONS(994), + [anon_sym_DASH] = ACTIONS(992), + [anon_sym_PLUS] = ACTIONS(992), + [anon_sym_STAR] = ACTIONS(994), + [anon_sym_AMP] = ACTIONS(994), + [anon_sym_SEMI] = ACTIONS(994), + [anon_sym_typedef] = ACTIONS(992), + [anon_sym_extern] = ACTIONS(992), + [anon_sym___attribute__] = ACTIONS(992), + [anon_sym_LBRACE] = ACTIONS(994), + [anon_sym_static] = ACTIONS(992), + [anon_sym_auto] = ACTIONS(992), + [anon_sym_register] = ACTIONS(992), + [anon_sym_inline] = ACTIONS(992), + [anon_sym_const] = ACTIONS(992), + [anon_sym_volatile] = ACTIONS(992), + [anon_sym_restrict] = ACTIONS(992), + [anon_sym__Atomic] = ACTIONS(992), + [anon_sym_signed] = ACTIONS(992), + [anon_sym_unsigned] = ACTIONS(992), + [anon_sym_long] = ACTIONS(992), + [anon_sym_short] = ACTIONS(992), + [sym_primitive_type] = ACTIONS(992), + [anon_sym_enum] = ACTIONS(992), + [anon_sym_struct] = ACTIONS(992), + [anon_sym_union] = ACTIONS(992), + [anon_sym_if] = ACTIONS(992), + [anon_sym_else] = ACTIONS(992), + [anon_sym_switch] = ACTIONS(992), + [anon_sym_case] = ACTIONS(992), + [anon_sym_default] = ACTIONS(992), + [anon_sym_while] = ACTIONS(992), + [anon_sym_do] = ACTIONS(992), + [anon_sym_for] = ACTIONS(992), + [anon_sym_return] = ACTIONS(992), + [anon_sym_break] = ACTIONS(992), + [anon_sym_continue] = ACTIONS(992), + [anon_sym_goto] = ACTIONS(992), + [anon_sym_DASH_DASH] = ACTIONS(994), + [anon_sym_PLUS_PLUS] = ACTIONS(994), + [anon_sym_sizeof] = ACTIONS(992), + [sym_number_literal] = ACTIONS(994), + [anon_sym_L_SQUOTE] = ACTIONS(994), + [anon_sym_u_SQUOTE] = ACTIONS(994), + [anon_sym_U_SQUOTE] = ACTIONS(994), + [anon_sym_u8_SQUOTE] = ACTIONS(994), + [anon_sym_SQUOTE] = ACTIONS(994), + [anon_sym_L_DQUOTE] = ACTIONS(994), + [anon_sym_u_DQUOTE] = ACTIONS(994), + [anon_sym_U_DQUOTE] = ACTIONS(994), + [anon_sym_u8_DQUOTE] = ACTIONS(994), + [anon_sym_DQUOTE] = ACTIONS(994), + [sym_true] = ACTIONS(992), + [sym_false] = ACTIONS(992), + [sym_null] = ACTIONS(992), [sym_comment] = ACTIONS(3), }, - [266] = { + [257] = { + [ts_builtin_sym_end] = ACTIONS(1072), [sym_identifier] = ACTIONS(1070), [aux_sym_preproc_include_token1] = ACTIONS(1070), [aux_sym_preproc_def_token1] = ACTIONS(1070), @@ -27824,7 +27229,6 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_extern] = ACTIONS(1070), [anon_sym___attribute__] = ACTIONS(1070), [anon_sym_LBRACE] = ACTIONS(1072), - [anon_sym_RBRACE] = ACTIONS(1072), [anon_sym_static] = ACTIONS(1070), [anon_sym_auto] = ACTIONS(1070), [anon_sym_register] = ACTIONS(1070), @@ -27872,147 +27276,148 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1070), [sym_comment] = ACTIONS(3), }, - [267] = { - [sym_identifier] = ACTIONS(1074), - [aux_sym_preproc_include_token1] = ACTIONS(1074), - [aux_sym_preproc_def_token1] = ACTIONS(1074), - [aux_sym_preproc_if_token1] = ACTIONS(1074), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1074), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1074), - [sym_preproc_directive] = ACTIONS(1074), - [anon_sym_LPAREN2] = ACTIONS(1076), - [anon_sym_BANG] = ACTIONS(1076), - [anon_sym_TILDE] = ACTIONS(1076), - [anon_sym_DASH] = ACTIONS(1074), - [anon_sym_PLUS] = ACTIONS(1074), - [anon_sym_STAR] = ACTIONS(1076), - [anon_sym_AMP] = ACTIONS(1076), - [anon_sym_SEMI] = ACTIONS(1076), - [anon_sym_typedef] = ACTIONS(1074), - [anon_sym_extern] = ACTIONS(1074), - [anon_sym___attribute__] = ACTIONS(1074), - [anon_sym_LBRACE] = ACTIONS(1076), - [anon_sym_RBRACE] = ACTIONS(1076), - [anon_sym_static] = ACTIONS(1074), - [anon_sym_auto] = ACTIONS(1074), - [anon_sym_register] = ACTIONS(1074), - [anon_sym_inline] = ACTIONS(1074), - [anon_sym_const] = ACTIONS(1074), - [anon_sym_volatile] = ACTIONS(1074), - [anon_sym_restrict] = ACTIONS(1074), - [anon_sym__Atomic] = ACTIONS(1074), - [anon_sym_signed] = ACTIONS(1074), - [anon_sym_unsigned] = ACTIONS(1074), - [anon_sym_long] = ACTIONS(1074), - [anon_sym_short] = ACTIONS(1074), - [sym_primitive_type] = ACTIONS(1074), - [anon_sym_enum] = ACTIONS(1074), - [anon_sym_struct] = ACTIONS(1074), - [anon_sym_union] = ACTIONS(1074), - [anon_sym_if] = ACTIONS(1074), - [anon_sym_else] = ACTIONS(1074), - [anon_sym_switch] = ACTIONS(1074), - [anon_sym_case] = ACTIONS(1074), - [anon_sym_default] = ACTIONS(1074), - [anon_sym_while] = ACTIONS(1074), - [anon_sym_do] = ACTIONS(1074), - [anon_sym_for] = ACTIONS(1074), - [anon_sym_return] = ACTIONS(1074), - [anon_sym_break] = ACTIONS(1074), - [anon_sym_continue] = ACTIONS(1074), - [anon_sym_goto] = ACTIONS(1074), - [anon_sym_DASH_DASH] = ACTIONS(1076), - [anon_sym_PLUS_PLUS] = ACTIONS(1076), - [anon_sym_sizeof] = ACTIONS(1074), - [sym_number_literal] = ACTIONS(1076), - [anon_sym_L_SQUOTE] = ACTIONS(1076), - [anon_sym_u_SQUOTE] = ACTIONS(1076), - [anon_sym_U_SQUOTE] = ACTIONS(1076), - [anon_sym_u8_SQUOTE] = ACTIONS(1076), - [anon_sym_SQUOTE] = ACTIONS(1076), - [anon_sym_L_DQUOTE] = ACTIONS(1076), - [anon_sym_u_DQUOTE] = ACTIONS(1076), - [anon_sym_U_DQUOTE] = ACTIONS(1076), - [anon_sym_u8_DQUOTE] = ACTIONS(1076), - [anon_sym_DQUOTE] = ACTIONS(1076), - [sym_true] = ACTIONS(1074), - [sym_false] = ACTIONS(1074), - [sym_null] = ACTIONS(1074), + [258] = { + [sym_identifier] = ACTIONS(1058), + [aux_sym_preproc_include_token1] = ACTIONS(1058), + [aux_sym_preproc_def_token1] = ACTIONS(1058), + [aux_sym_preproc_if_token1] = ACTIONS(1058), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1058), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1058), + [sym_preproc_directive] = ACTIONS(1058), + [anon_sym_LPAREN2] = ACTIONS(1060), + [anon_sym_BANG] = ACTIONS(1060), + [anon_sym_TILDE] = ACTIONS(1060), + [anon_sym_DASH] = ACTIONS(1058), + [anon_sym_PLUS] = ACTIONS(1058), + [anon_sym_STAR] = ACTIONS(1060), + [anon_sym_AMP] = ACTIONS(1060), + [anon_sym_SEMI] = ACTIONS(1060), + [anon_sym_typedef] = ACTIONS(1058), + [anon_sym_extern] = ACTIONS(1058), + [anon_sym___attribute__] = ACTIONS(1058), + [anon_sym_LBRACE] = ACTIONS(1060), + [anon_sym_RBRACE] = ACTIONS(1060), + [anon_sym_static] = ACTIONS(1058), + [anon_sym_auto] = ACTIONS(1058), + [anon_sym_register] = ACTIONS(1058), + [anon_sym_inline] = ACTIONS(1058), + [anon_sym_const] = ACTIONS(1058), + [anon_sym_volatile] = ACTIONS(1058), + [anon_sym_restrict] = ACTIONS(1058), + [anon_sym__Atomic] = ACTIONS(1058), + [anon_sym_signed] = ACTIONS(1058), + [anon_sym_unsigned] = ACTIONS(1058), + [anon_sym_long] = ACTIONS(1058), + [anon_sym_short] = ACTIONS(1058), + [sym_primitive_type] = ACTIONS(1058), + [anon_sym_enum] = ACTIONS(1058), + [anon_sym_struct] = ACTIONS(1058), + [anon_sym_union] = ACTIONS(1058), + [anon_sym_if] = ACTIONS(1058), + [anon_sym_else] = ACTIONS(1058), + [anon_sym_switch] = ACTIONS(1058), + [anon_sym_case] = ACTIONS(1058), + [anon_sym_default] = ACTIONS(1058), + [anon_sym_while] = ACTIONS(1058), + [anon_sym_do] = ACTIONS(1058), + [anon_sym_for] = ACTIONS(1058), + [anon_sym_return] = ACTIONS(1058), + [anon_sym_break] = ACTIONS(1058), + [anon_sym_continue] = ACTIONS(1058), + [anon_sym_goto] = ACTIONS(1058), + [anon_sym_DASH_DASH] = ACTIONS(1060), + [anon_sym_PLUS_PLUS] = ACTIONS(1060), + [anon_sym_sizeof] = ACTIONS(1058), + [sym_number_literal] = ACTIONS(1060), + [anon_sym_L_SQUOTE] = ACTIONS(1060), + [anon_sym_u_SQUOTE] = ACTIONS(1060), + [anon_sym_U_SQUOTE] = ACTIONS(1060), + [anon_sym_u8_SQUOTE] = ACTIONS(1060), + [anon_sym_SQUOTE] = ACTIONS(1060), + [anon_sym_L_DQUOTE] = ACTIONS(1060), + [anon_sym_u_DQUOTE] = ACTIONS(1060), + [anon_sym_U_DQUOTE] = ACTIONS(1060), + [anon_sym_u8_DQUOTE] = ACTIONS(1060), + [anon_sym_DQUOTE] = ACTIONS(1060), + [sym_true] = ACTIONS(1058), + [sym_false] = ACTIONS(1058), + [sym_null] = ACTIONS(1058), [sym_comment] = ACTIONS(3), }, - [268] = { - [sym_identifier] = ACTIONS(1006), - [aux_sym_preproc_include_token1] = ACTIONS(1006), - [aux_sym_preproc_def_token1] = ACTIONS(1006), - [aux_sym_preproc_if_token1] = ACTIONS(1006), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1006), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1006), - [sym_preproc_directive] = ACTIONS(1006), - [anon_sym_LPAREN2] = ACTIONS(1008), - [anon_sym_BANG] = ACTIONS(1008), - [anon_sym_TILDE] = ACTIONS(1008), - [anon_sym_DASH] = ACTIONS(1006), - [anon_sym_PLUS] = ACTIONS(1006), - [anon_sym_STAR] = ACTIONS(1008), - [anon_sym_AMP] = ACTIONS(1008), - [anon_sym_SEMI] = ACTIONS(1008), - [anon_sym_typedef] = ACTIONS(1006), - [anon_sym_extern] = ACTIONS(1006), - [anon_sym___attribute__] = ACTIONS(1006), - [anon_sym_LBRACE] = ACTIONS(1008), - [anon_sym_RBRACE] = ACTIONS(1008), - [anon_sym_static] = ACTIONS(1006), - [anon_sym_auto] = ACTIONS(1006), - [anon_sym_register] = ACTIONS(1006), - [anon_sym_inline] = ACTIONS(1006), - [anon_sym_const] = ACTIONS(1006), - [anon_sym_volatile] = ACTIONS(1006), - [anon_sym_restrict] = ACTIONS(1006), - [anon_sym__Atomic] = ACTIONS(1006), - [anon_sym_signed] = ACTIONS(1006), - [anon_sym_unsigned] = ACTIONS(1006), - [anon_sym_long] = ACTIONS(1006), - [anon_sym_short] = ACTIONS(1006), - [sym_primitive_type] = ACTIONS(1006), - [anon_sym_enum] = ACTIONS(1006), - [anon_sym_struct] = ACTIONS(1006), - [anon_sym_union] = ACTIONS(1006), - [anon_sym_if] = ACTIONS(1006), - [anon_sym_else] = ACTIONS(1006), - [anon_sym_switch] = ACTIONS(1006), - [anon_sym_case] = ACTIONS(1006), - [anon_sym_default] = ACTIONS(1006), - [anon_sym_while] = ACTIONS(1006), - [anon_sym_do] = ACTIONS(1006), - [anon_sym_for] = ACTIONS(1006), - [anon_sym_return] = ACTIONS(1006), - [anon_sym_break] = ACTIONS(1006), - [anon_sym_continue] = ACTIONS(1006), - [anon_sym_goto] = ACTIONS(1006), - [anon_sym_DASH_DASH] = ACTIONS(1008), - [anon_sym_PLUS_PLUS] = ACTIONS(1008), - [anon_sym_sizeof] = ACTIONS(1006), - [sym_number_literal] = ACTIONS(1008), - [anon_sym_L_SQUOTE] = ACTIONS(1008), - [anon_sym_u_SQUOTE] = ACTIONS(1008), - [anon_sym_U_SQUOTE] = ACTIONS(1008), - [anon_sym_u8_SQUOTE] = ACTIONS(1008), - [anon_sym_SQUOTE] = ACTIONS(1008), - [anon_sym_L_DQUOTE] = ACTIONS(1008), - [anon_sym_u_DQUOTE] = ACTIONS(1008), - [anon_sym_U_DQUOTE] = ACTIONS(1008), - [anon_sym_u8_DQUOTE] = ACTIONS(1008), - [anon_sym_DQUOTE] = ACTIONS(1008), - [sym_true] = ACTIONS(1006), - [sym_false] = ACTIONS(1006), - [sym_null] = ACTIONS(1006), + [259] = { + [sym_identifier] = ACTIONS(996), + [aux_sym_preproc_include_token1] = ACTIONS(996), + [aux_sym_preproc_def_token1] = ACTIONS(996), + [aux_sym_preproc_if_token1] = ACTIONS(996), + [aux_sym_preproc_if_token2] = ACTIONS(996), + [aux_sym_preproc_ifdef_token1] = ACTIONS(996), + [aux_sym_preproc_ifdef_token2] = ACTIONS(996), + [sym_preproc_directive] = ACTIONS(996), + [anon_sym_LPAREN2] = ACTIONS(998), + [anon_sym_BANG] = ACTIONS(998), + [anon_sym_TILDE] = ACTIONS(998), + [anon_sym_DASH] = ACTIONS(996), + [anon_sym_PLUS] = ACTIONS(996), + [anon_sym_STAR] = ACTIONS(998), + [anon_sym_AMP] = ACTIONS(998), + [anon_sym_SEMI] = ACTIONS(998), + [anon_sym_typedef] = ACTIONS(996), + [anon_sym_extern] = ACTIONS(996), + [anon_sym___attribute__] = ACTIONS(996), + [anon_sym_LBRACE] = ACTIONS(998), + [anon_sym_static] = ACTIONS(996), + [anon_sym_auto] = ACTIONS(996), + [anon_sym_register] = ACTIONS(996), + [anon_sym_inline] = ACTIONS(996), + [anon_sym_const] = ACTIONS(996), + [anon_sym_volatile] = ACTIONS(996), + [anon_sym_restrict] = ACTIONS(996), + [anon_sym__Atomic] = ACTIONS(996), + [anon_sym_signed] = ACTIONS(996), + [anon_sym_unsigned] = ACTIONS(996), + [anon_sym_long] = ACTIONS(996), + [anon_sym_short] = ACTIONS(996), + [sym_primitive_type] = ACTIONS(996), + [anon_sym_enum] = ACTIONS(996), + [anon_sym_struct] = ACTIONS(996), + [anon_sym_union] = ACTIONS(996), + [anon_sym_if] = ACTIONS(996), + [anon_sym_else] = ACTIONS(1188), + [anon_sym_switch] = ACTIONS(996), + [anon_sym_case] = ACTIONS(996), + [anon_sym_default] = ACTIONS(996), + [anon_sym_while] = ACTIONS(996), + [anon_sym_do] = ACTIONS(996), + [anon_sym_for] = ACTIONS(996), + [anon_sym_return] = ACTIONS(996), + [anon_sym_break] = ACTIONS(996), + [anon_sym_continue] = ACTIONS(996), + [anon_sym_goto] = ACTIONS(996), + [anon_sym_DASH_DASH] = ACTIONS(998), + [anon_sym_PLUS_PLUS] = ACTIONS(998), + [anon_sym_sizeof] = ACTIONS(996), + [sym_number_literal] = ACTIONS(998), + [anon_sym_L_SQUOTE] = ACTIONS(998), + [anon_sym_u_SQUOTE] = ACTIONS(998), + [anon_sym_U_SQUOTE] = ACTIONS(998), + [anon_sym_u8_SQUOTE] = ACTIONS(998), + [anon_sym_SQUOTE] = ACTIONS(998), + [anon_sym_L_DQUOTE] = ACTIONS(998), + [anon_sym_u_DQUOTE] = ACTIONS(998), + [anon_sym_U_DQUOTE] = ACTIONS(998), + [anon_sym_u8_DQUOTE] = ACTIONS(998), + [anon_sym_DQUOTE] = ACTIONS(998), + [sym_true] = ACTIONS(996), + [sym_false] = ACTIONS(996), + [sym_null] = ACTIONS(996), [sym_comment] = ACTIONS(3), }, - [269] = { + [260] = { [sym_identifier] = ACTIONS(1010), [aux_sym_preproc_include_token1] = ACTIONS(1010), [aux_sym_preproc_def_token1] = ACTIONS(1010), [aux_sym_preproc_if_token1] = ACTIONS(1010), + [aux_sym_preproc_if_token2] = ACTIONS(1010), [aux_sym_preproc_ifdef_token1] = ACTIONS(1010), [aux_sym_preproc_ifdef_token2] = ACTIONS(1010), [sym_preproc_directive] = ACTIONS(1010), @@ -28028,7 +27433,6 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_extern] = ACTIONS(1010), [anon_sym___attribute__] = ACTIONS(1010), [anon_sym_LBRACE] = ACTIONS(1012), - [anon_sym_RBRACE] = ACTIONS(1012), [anon_sym_static] = ACTIONS(1010), [anon_sym_auto] = ACTIONS(1010), [anon_sym_register] = ACTIONS(1010), @@ -28076,75 +27480,279 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1010), [sym_comment] = ACTIONS(3), }, - [270] = { - [sym_identifier] = ACTIONS(1086), - [aux_sym_preproc_include_token1] = ACTIONS(1086), - [aux_sym_preproc_def_token1] = ACTIONS(1086), - [aux_sym_preproc_if_token1] = ACTIONS(1086), - [aux_sym_preproc_if_token2] = ACTIONS(1086), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1086), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1086), - [sym_preproc_directive] = ACTIONS(1086), - [anon_sym_LPAREN2] = ACTIONS(1088), - [anon_sym_BANG] = ACTIONS(1088), - [anon_sym_TILDE] = ACTIONS(1088), - [anon_sym_DASH] = ACTIONS(1086), - [anon_sym_PLUS] = ACTIONS(1086), - [anon_sym_STAR] = ACTIONS(1088), - [anon_sym_AMP] = ACTIONS(1088), - [anon_sym_SEMI] = ACTIONS(1088), - [anon_sym_typedef] = ACTIONS(1086), - [anon_sym_extern] = ACTIONS(1086), - [anon_sym___attribute__] = ACTIONS(1086), - [anon_sym_LBRACE] = 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_volatile] = ACTIONS(1086), - [anon_sym_restrict] = ACTIONS(1086), - [anon_sym__Atomic] = ACTIONS(1086), - [anon_sym_signed] = 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_else] = 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_DASH_DASH] = ACTIONS(1088), - [anon_sym_PLUS_PLUS] = ACTIONS(1088), - [anon_sym_sizeof] = ACTIONS(1086), - [sym_number_literal] = ACTIONS(1088), - [anon_sym_L_SQUOTE] = ACTIONS(1088), - [anon_sym_u_SQUOTE] = ACTIONS(1088), - [anon_sym_U_SQUOTE] = ACTIONS(1088), - [anon_sym_u8_SQUOTE] = ACTIONS(1088), - [anon_sym_SQUOTE] = ACTIONS(1088), - [anon_sym_L_DQUOTE] = ACTIONS(1088), - [anon_sym_u_DQUOTE] = ACTIONS(1088), - [anon_sym_U_DQUOTE] = ACTIONS(1088), - [anon_sym_u8_DQUOTE] = ACTIONS(1088), - [anon_sym_DQUOTE] = ACTIONS(1088), - [sym_true] = ACTIONS(1086), - [sym_false] = ACTIONS(1086), - [sym_null] = ACTIONS(1086), + [261] = { + [ts_builtin_sym_end] = ACTIONS(1056), + [sym_identifier] = ACTIONS(1054), + [aux_sym_preproc_include_token1] = ACTIONS(1054), + [aux_sym_preproc_def_token1] = ACTIONS(1054), + [aux_sym_preproc_if_token1] = ACTIONS(1054), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1054), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1054), + [sym_preproc_directive] = ACTIONS(1054), + [anon_sym_LPAREN2] = ACTIONS(1056), + [anon_sym_BANG] = ACTIONS(1056), + [anon_sym_TILDE] = ACTIONS(1056), + [anon_sym_DASH] = ACTIONS(1054), + [anon_sym_PLUS] = ACTIONS(1054), + [anon_sym_STAR] = ACTIONS(1056), + [anon_sym_AMP] = ACTIONS(1056), + [anon_sym_SEMI] = ACTIONS(1056), + [anon_sym_typedef] = ACTIONS(1054), + [anon_sym_extern] = ACTIONS(1054), + [anon_sym___attribute__] = ACTIONS(1054), + [anon_sym_LBRACE] = ACTIONS(1056), + [anon_sym_static] = ACTIONS(1054), + [anon_sym_auto] = ACTIONS(1054), + [anon_sym_register] = ACTIONS(1054), + [anon_sym_inline] = ACTIONS(1054), + [anon_sym_const] = ACTIONS(1054), + [anon_sym_volatile] = ACTIONS(1054), + [anon_sym_restrict] = ACTIONS(1054), + [anon_sym__Atomic] = ACTIONS(1054), + [anon_sym_signed] = ACTIONS(1054), + [anon_sym_unsigned] = ACTIONS(1054), + [anon_sym_long] = ACTIONS(1054), + [anon_sym_short] = ACTIONS(1054), + [sym_primitive_type] = ACTIONS(1054), + [anon_sym_enum] = ACTIONS(1054), + [anon_sym_struct] = ACTIONS(1054), + [anon_sym_union] = ACTIONS(1054), + [anon_sym_if] = ACTIONS(1054), + [anon_sym_else] = ACTIONS(1054), + [anon_sym_switch] = ACTIONS(1054), + [anon_sym_case] = ACTIONS(1054), + [anon_sym_default] = ACTIONS(1054), + [anon_sym_while] = ACTIONS(1054), + [anon_sym_do] = ACTIONS(1054), + [anon_sym_for] = ACTIONS(1054), + [anon_sym_return] = ACTIONS(1054), + [anon_sym_break] = ACTIONS(1054), + [anon_sym_continue] = ACTIONS(1054), + [anon_sym_goto] = ACTIONS(1054), + [anon_sym_DASH_DASH] = ACTIONS(1056), + [anon_sym_PLUS_PLUS] = ACTIONS(1056), + [anon_sym_sizeof] = ACTIONS(1054), + [sym_number_literal] = ACTIONS(1056), + [anon_sym_L_SQUOTE] = ACTIONS(1056), + [anon_sym_u_SQUOTE] = ACTIONS(1056), + [anon_sym_U_SQUOTE] = ACTIONS(1056), + [anon_sym_u8_SQUOTE] = ACTIONS(1056), + [anon_sym_SQUOTE] = ACTIONS(1056), + [anon_sym_L_DQUOTE] = ACTIONS(1056), + [anon_sym_u_DQUOTE] = ACTIONS(1056), + [anon_sym_U_DQUOTE] = ACTIONS(1056), + [anon_sym_u8_DQUOTE] = ACTIONS(1056), + [anon_sym_DQUOTE] = ACTIONS(1056), + [sym_true] = ACTIONS(1054), + [sym_false] = ACTIONS(1054), + [sym_null] = ACTIONS(1054), + [sym_comment] = ACTIONS(3), + }, + [262] = { + [sym_type_qualifier] = STATE(710), + [sym__type_specifier] = STATE(839), + [sym_sized_type_specifier] = STATE(839), + [sym_enum_specifier] = STATE(839), + [sym_struct_specifier] = STATE(839), + [sym_union_specifier] = STATE(839), + [sym__expression] = STATE(574), + [sym_comma_expression] = STATE(1200), + [sym_conditional_expression] = STATE(574), + [sym_assignment_expression] = STATE(574), + [sym_pointer_expression] = STATE(532), + [sym_unary_expression] = STATE(574), + [sym_binary_expression] = STATE(574), + [sym_update_expression] = STATE(574), + [sym_cast_expression] = STATE(574), + [sym_type_descriptor] = STATE(1191), + [sym_sizeof_expression] = STATE(574), + [sym_subscript_expression] = STATE(532), + [sym_call_expression] = STATE(532), + [sym_field_expression] = STATE(532), + [sym_compound_literal_expression] = STATE(574), + [sym_parenthesized_expression] = STATE(532), + [sym_char_literal] = STATE(574), + [sym_concatenated_string] = STATE(574), + [sym_string_literal] = STATE(379), + [sym_macro_type_specifier] = STATE(839), + [aux_sym_type_definition_repeat1] = STATE(710), + [aux_sym_sized_type_specifier_repeat1] = STATE(846), + [sym_identifier] = ACTIONS(1174), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_const] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(39), + [anon_sym_restrict] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(39), + [anon_sym_signed] = ACTIONS(1176), + [anon_sym_unsigned] = ACTIONS(1176), + [anon_sym_long] = ACTIONS(1176), + [anon_sym_short] = ACTIONS(1176), + [sym_primitive_type] = ACTIONS(1178), + [anon_sym_enum] = ACTIONS(45), + [anon_sym_struct] = ACTIONS(47), + [anon_sym_union] = ACTIONS(49), + [anon_sym_DASH_DASH] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(73), + [anon_sym_sizeof] = ACTIONS(75), + [sym_number_literal] = ACTIONS(1180), + [anon_sym_L_SQUOTE] = ACTIONS(79), + [anon_sym_u_SQUOTE] = ACTIONS(79), + [anon_sym_U_SQUOTE] = ACTIONS(79), + [anon_sym_u8_SQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_L_DQUOTE] = ACTIONS(81), + [anon_sym_u_DQUOTE] = ACTIONS(81), + [anon_sym_U_DQUOTE] = ACTIONS(81), + [anon_sym_u8_DQUOTE] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(81), + [sym_true] = ACTIONS(1182), + [sym_false] = ACTIONS(1182), + [sym_null] = ACTIONS(1182), + [sym_comment] = ACTIONS(3), + }, + [263] = { + [sym_identifier] = ACTIONS(1090), + [aux_sym_preproc_include_token1] = ACTIONS(1090), + [aux_sym_preproc_def_token1] = ACTIONS(1090), + [aux_sym_preproc_if_token1] = ACTIONS(1090), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1090), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1090), + [sym_preproc_directive] = ACTIONS(1090), + [anon_sym_LPAREN2] = ACTIONS(1092), + [anon_sym_BANG] = ACTIONS(1092), + [anon_sym_TILDE] = ACTIONS(1092), + [anon_sym_DASH] = ACTIONS(1090), + [anon_sym_PLUS] = ACTIONS(1090), + [anon_sym_STAR] = ACTIONS(1092), + [anon_sym_AMP] = ACTIONS(1092), + [anon_sym_SEMI] = ACTIONS(1092), + [anon_sym_typedef] = ACTIONS(1090), + [anon_sym_extern] = ACTIONS(1090), + [anon_sym___attribute__] = ACTIONS(1090), + [anon_sym_LBRACE] = ACTIONS(1092), + [anon_sym_RBRACE] = ACTIONS(1092), + [anon_sym_static] = ACTIONS(1090), + [anon_sym_auto] = ACTIONS(1090), + [anon_sym_register] = ACTIONS(1090), + [anon_sym_inline] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_volatile] = ACTIONS(1090), + [anon_sym_restrict] = ACTIONS(1090), + [anon_sym__Atomic] = ACTIONS(1090), + [anon_sym_signed] = ACTIONS(1090), + [anon_sym_unsigned] = ACTIONS(1090), + [anon_sym_long] = ACTIONS(1090), + [anon_sym_short] = ACTIONS(1090), + [sym_primitive_type] = ACTIONS(1090), + [anon_sym_enum] = ACTIONS(1090), + [anon_sym_struct] = ACTIONS(1090), + [anon_sym_union] = ACTIONS(1090), + [anon_sym_if] = ACTIONS(1090), + [anon_sym_else] = ACTIONS(1090), + [anon_sym_switch] = ACTIONS(1090), + [anon_sym_case] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1090), + [anon_sym_while] = ACTIONS(1090), + [anon_sym_do] = ACTIONS(1090), + [anon_sym_for] = ACTIONS(1090), + [anon_sym_return] = ACTIONS(1090), + [anon_sym_break] = ACTIONS(1090), + [anon_sym_continue] = ACTIONS(1090), + [anon_sym_goto] = ACTIONS(1090), + [anon_sym_DASH_DASH] = ACTIONS(1092), + [anon_sym_PLUS_PLUS] = ACTIONS(1092), + [anon_sym_sizeof] = ACTIONS(1090), + [sym_number_literal] = ACTIONS(1092), + [anon_sym_L_SQUOTE] = ACTIONS(1092), + [anon_sym_u_SQUOTE] = ACTIONS(1092), + [anon_sym_U_SQUOTE] = ACTIONS(1092), + [anon_sym_u8_SQUOTE] = ACTIONS(1092), + [anon_sym_SQUOTE] = ACTIONS(1092), + [anon_sym_L_DQUOTE] = ACTIONS(1092), + [anon_sym_u_DQUOTE] = ACTIONS(1092), + [anon_sym_U_DQUOTE] = ACTIONS(1092), + [anon_sym_u8_DQUOTE] = ACTIONS(1092), + [anon_sym_DQUOTE] = ACTIONS(1092), + [sym_true] = ACTIONS(1090), + [sym_false] = ACTIONS(1090), + [sym_null] = ACTIONS(1090), [sym_comment] = ACTIONS(3), }, - [271] = { + [264] = { + [ts_builtin_sym_end] = ACTIONS(1036), + [sym_identifier] = ACTIONS(1034), + [aux_sym_preproc_include_token1] = ACTIONS(1034), + [aux_sym_preproc_def_token1] = ACTIONS(1034), + [aux_sym_preproc_if_token1] = ACTIONS(1034), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1034), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1034), + [sym_preproc_directive] = ACTIONS(1034), + [anon_sym_LPAREN2] = ACTIONS(1036), + [anon_sym_BANG] = ACTIONS(1036), + [anon_sym_TILDE] = ACTIONS(1036), + [anon_sym_DASH] = ACTIONS(1034), + [anon_sym_PLUS] = ACTIONS(1034), + [anon_sym_STAR] = ACTIONS(1036), + [anon_sym_AMP] = ACTIONS(1036), + [anon_sym_SEMI] = ACTIONS(1036), + [anon_sym_typedef] = ACTIONS(1034), + [anon_sym_extern] = ACTIONS(1034), + [anon_sym___attribute__] = ACTIONS(1034), + [anon_sym_LBRACE] = ACTIONS(1036), + [anon_sym_static] = ACTIONS(1034), + [anon_sym_auto] = ACTIONS(1034), + [anon_sym_register] = ACTIONS(1034), + [anon_sym_inline] = ACTIONS(1034), + [anon_sym_const] = ACTIONS(1034), + [anon_sym_volatile] = ACTIONS(1034), + [anon_sym_restrict] = ACTIONS(1034), + [anon_sym__Atomic] = ACTIONS(1034), + [anon_sym_signed] = ACTIONS(1034), + [anon_sym_unsigned] = ACTIONS(1034), + [anon_sym_long] = ACTIONS(1034), + [anon_sym_short] = ACTIONS(1034), + [sym_primitive_type] = ACTIONS(1034), + [anon_sym_enum] = ACTIONS(1034), + [anon_sym_struct] = ACTIONS(1034), + [anon_sym_union] = ACTIONS(1034), + [anon_sym_if] = ACTIONS(1034), + [anon_sym_else] = ACTIONS(1034), + [anon_sym_switch] = ACTIONS(1034), + [anon_sym_case] = ACTIONS(1034), + [anon_sym_default] = ACTIONS(1034), + [anon_sym_while] = ACTIONS(1034), + [anon_sym_do] = ACTIONS(1034), + [anon_sym_for] = ACTIONS(1034), + [anon_sym_return] = ACTIONS(1034), + [anon_sym_break] = ACTIONS(1034), + [anon_sym_continue] = ACTIONS(1034), + [anon_sym_goto] = ACTIONS(1034), + [anon_sym_DASH_DASH] = ACTIONS(1036), + [anon_sym_PLUS_PLUS] = ACTIONS(1036), + [anon_sym_sizeof] = ACTIONS(1034), + [sym_number_literal] = ACTIONS(1036), + [anon_sym_L_SQUOTE] = ACTIONS(1036), + [anon_sym_u_SQUOTE] = ACTIONS(1036), + [anon_sym_U_SQUOTE] = ACTIONS(1036), + [anon_sym_u8_SQUOTE] = ACTIONS(1036), + [anon_sym_SQUOTE] = ACTIONS(1036), + [anon_sym_L_DQUOTE] = ACTIONS(1036), + [anon_sym_u_DQUOTE] = ACTIONS(1036), + [anon_sym_U_DQUOTE] = ACTIONS(1036), + [anon_sym_u8_DQUOTE] = ACTIONS(1036), + [anon_sym_DQUOTE] = ACTIONS(1036), + [sym_true] = ACTIONS(1034), + [sym_false] = ACTIONS(1034), + [sym_null] = ACTIONS(1034), + [sym_comment] = ACTIONS(3), + }, + [265] = { [sym_identifier] = ACTIONS(1090), [aux_sym_preproc_include_token1] = ACTIONS(1090), [aux_sym_preproc_def_token1] = ACTIONS(1090), @@ -28212,76 +27820,75 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1090), [sym_comment] = ACTIONS(3), }, - [272] = { - [ts_builtin_sym_end] = ACTIONS(1008), - [sym_identifier] = ACTIONS(1006), - [aux_sym_preproc_include_token1] = ACTIONS(1006), - [aux_sym_preproc_def_token1] = ACTIONS(1006), - [aux_sym_preproc_if_token1] = ACTIONS(1006), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1006), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1006), - [sym_preproc_directive] = ACTIONS(1006), - [anon_sym_LPAREN2] = ACTIONS(1008), - [anon_sym_BANG] = ACTIONS(1008), - [anon_sym_TILDE] = ACTIONS(1008), - [anon_sym_DASH] = ACTIONS(1006), - [anon_sym_PLUS] = ACTIONS(1006), - [anon_sym_STAR] = ACTIONS(1008), - [anon_sym_AMP] = ACTIONS(1008), - [anon_sym_SEMI] = ACTIONS(1008), - [anon_sym_typedef] = ACTIONS(1006), - [anon_sym_extern] = ACTIONS(1006), - [anon_sym___attribute__] = ACTIONS(1006), - [anon_sym_LBRACE] = ACTIONS(1008), - [anon_sym_static] = ACTIONS(1006), - [anon_sym_auto] = ACTIONS(1006), - [anon_sym_register] = ACTIONS(1006), - [anon_sym_inline] = ACTIONS(1006), - [anon_sym_const] = ACTIONS(1006), - [anon_sym_volatile] = ACTIONS(1006), - [anon_sym_restrict] = ACTIONS(1006), - [anon_sym__Atomic] = ACTIONS(1006), - [anon_sym_signed] = ACTIONS(1006), - [anon_sym_unsigned] = ACTIONS(1006), - [anon_sym_long] = ACTIONS(1006), - [anon_sym_short] = ACTIONS(1006), - [sym_primitive_type] = ACTIONS(1006), - [anon_sym_enum] = ACTIONS(1006), - [anon_sym_struct] = ACTIONS(1006), - [anon_sym_union] = ACTIONS(1006), - [anon_sym_if] = ACTIONS(1006), - [anon_sym_else] = ACTIONS(1006), - [anon_sym_switch] = ACTIONS(1006), - [anon_sym_case] = ACTIONS(1006), - [anon_sym_default] = ACTIONS(1006), - [anon_sym_while] = ACTIONS(1006), - [anon_sym_do] = ACTIONS(1006), - [anon_sym_for] = ACTIONS(1006), - [anon_sym_return] = ACTIONS(1006), - [anon_sym_break] = ACTIONS(1006), - [anon_sym_continue] = ACTIONS(1006), - [anon_sym_goto] = ACTIONS(1006), - [anon_sym_DASH_DASH] = ACTIONS(1008), - [anon_sym_PLUS_PLUS] = ACTIONS(1008), - [anon_sym_sizeof] = ACTIONS(1006), - [sym_number_literal] = ACTIONS(1008), - [anon_sym_L_SQUOTE] = ACTIONS(1008), - [anon_sym_u_SQUOTE] = ACTIONS(1008), - [anon_sym_U_SQUOTE] = ACTIONS(1008), - [anon_sym_u8_SQUOTE] = ACTIONS(1008), - [anon_sym_SQUOTE] = ACTIONS(1008), - [anon_sym_L_DQUOTE] = ACTIONS(1008), - [anon_sym_u_DQUOTE] = ACTIONS(1008), - [anon_sym_U_DQUOTE] = ACTIONS(1008), - [anon_sym_u8_DQUOTE] = ACTIONS(1008), - [anon_sym_DQUOTE] = ACTIONS(1008), - [sym_true] = ACTIONS(1006), - [sym_false] = ACTIONS(1006), - [sym_null] = ACTIONS(1006), + [266] = { + [sym_identifier] = ACTIONS(964), + [aux_sym_preproc_include_token1] = ACTIONS(964), + [aux_sym_preproc_def_token1] = ACTIONS(964), + [aux_sym_preproc_if_token1] = ACTIONS(964), + [aux_sym_preproc_ifdef_token1] = ACTIONS(964), + [aux_sym_preproc_ifdef_token2] = ACTIONS(964), + [sym_preproc_directive] = ACTIONS(964), + [anon_sym_LPAREN2] = ACTIONS(966), + [anon_sym_BANG] = ACTIONS(966), + [anon_sym_TILDE] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(964), + [anon_sym_PLUS] = ACTIONS(964), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(966), + [anon_sym_typedef] = ACTIONS(964), + [anon_sym_extern] = ACTIONS(964), + [anon_sym___attribute__] = ACTIONS(964), + [anon_sym_LBRACE] = ACTIONS(966), + [anon_sym_RBRACE] = ACTIONS(966), + [anon_sym_static] = ACTIONS(964), + [anon_sym_auto] = ACTIONS(964), + [anon_sym_register] = ACTIONS(964), + [anon_sym_inline] = ACTIONS(964), + [anon_sym_const] = ACTIONS(964), + [anon_sym_volatile] = ACTIONS(964), + [anon_sym_restrict] = ACTIONS(964), + [anon_sym__Atomic] = ACTIONS(964), + [anon_sym_signed] = ACTIONS(964), + [anon_sym_unsigned] = ACTIONS(964), + [anon_sym_long] = ACTIONS(964), + [anon_sym_short] = ACTIONS(964), + [sym_primitive_type] = ACTIONS(964), + [anon_sym_enum] = ACTIONS(964), + [anon_sym_struct] = ACTIONS(964), + [anon_sym_union] = ACTIONS(964), + [anon_sym_if] = ACTIONS(964), + [anon_sym_else] = ACTIONS(964), + [anon_sym_switch] = ACTIONS(964), + [anon_sym_case] = ACTIONS(964), + [anon_sym_default] = ACTIONS(964), + [anon_sym_while] = ACTIONS(964), + [anon_sym_do] = ACTIONS(964), + [anon_sym_for] = ACTIONS(964), + [anon_sym_return] = ACTIONS(964), + [anon_sym_break] = ACTIONS(964), + [anon_sym_continue] = ACTIONS(964), + [anon_sym_goto] = ACTIONS(964), + [anon_sym_DASH_DASH] = ACTIONS(966), + [anon_sym_PLUS_PLUS] = ACTIONS(966), + [anon_sym_sizeof] = ACTIONS(964), + [sym_number_literal] = ACTIONS(966), + [anon_sym_L_SQUOTE] = ACTIONS(966), + [anon_sym_u_SQUOTE] = ACTIONS(966), + [anon_sym_U_SQUOTE] = ACTIONS(966), + [anon_sym_u8_SQUOTE] = ACTIONS(966), + [anon_sym_SQUOTE] = ACTIONS(966), + [anon_sym_L_DQUOTE] = ACTIONS(966), + [anon_sym_u_DQUOTE] = ACTIONS(966), + [anon_sym_U_DQUOTE] = ACTIONS(966), + [anon_sym_u8_DQUOTE] = ACTIONS(966), + [anon_sym_DQUOTE] = ACTIONS(966), + [sym_true] = ACTIONS(964), + [sym_false] = ACTIONS(964), + [sym_null] = ACTIONS(964), [sym_comment] = ACTIONS(3), }, - [273] = { - [ts_builtin_sym_end] = ACTIONS(1076), + [267] = { [sym_identifier] = ACTIONS(1074), [aux_sym_preproc_include_token1] = ACTIONS(1074), [aux_sym_preproc_def_token1] = ACTIONS(1074), @@ -28301,6 +27908,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_extern] = ACTIONS(1074), [anon_sym___attribute__] = ACTIONS(1074), [anon_sym_LBRACE] = ACTIONS(1076), + [anon_sym_RBRACE] = ACTIONS(1076), [anon_sym_static] = ACTIONS(1074), [anon_sym_auto] = ACTIONS(1074), [anon_sym_register] = ACTIONS(1074), @@ -28348,211 +27956,143 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1074), [sym_comment] = ACTIONS(3), }, - [274] = { - [ts_builtin_sym_end] = ACTIONS(970), - [sym_identifier] = ACTIONS(968), - [aux_sym_preproc_include_token1] = ACTIONS(968), - [aux_sym_preproc_def_token1] = ACTIONS(968), - [aux_sym_preproc_if_token1] = ACTIONS(968), - [aux_sym_preproc_ifdef_token1] = ACTIONS(968), - [aux_sym_preproc_ifdef_token2] = ACTIONS(968), - [sym_preproc_directive] = ACTIONS(968), - [anon_sym_LPAREN2] = ACTIONS(970), - [anon_sym_BANG] = ACTIONS(970), - [anon_sym_TILDE] = ACTIONS(970), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_STAR] = ACTIONS(970), - [anon_sym_AMP] = ACTIONS(970), - [anon_sym_SEMI] = ACTIONS(970), - [anon_sym_typedef] = ACTIONS(968), - [anon_sym_extern] = ACTIONS(968), - [anon_sym___attribute__] = ACTIONS(968), - [anon_sym_LBRACE] = ACTIONS(970), - [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_volatile] = ACTIONS(968), - [anon_sym_restrict] = ACTIONS(968), - [anon_sym__Atomic] = ACTIONS(968), - [anon_sym_signed] = 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_DASH_DASH] = ACTIONS(970), - [anon_sym_PLUS_PLUS] = ACTIONS(970), - [anon_sym_sizeof] = ACTIONS(968), - [sym_number_literal] = ACTIONS(970), - [anon_sym_L_SQUOTE] = ACTIONS(970), - [anon_sym_u_SQUOTE] = ACTIONS(970), - [anon_sym_U_SQUOTE] = ACTIONS(970), - [anon_sym_u8_SQUOTE] = ACTIONS(970), - [anon_sym_SQUOTE] = ACTIONS(970), - [anon_sym_L_DQUOTE] = ACTIONS(970), - [anon_sym_u_DQUOTE] = ACTIONS(970), - [anon_sym_U_DQUOTE] = ACTIONS(970), - [anon_sym_u8_DQUOTE] = ACTIONS(970), - [anon_sym_DQUOTE] = ACTIONS(970), - [sym_true] = ACTIONS(968), - [sym_false] = ACTIONS(968), - [sym_null] = ACTIONS(968), - [sym_comment] = ACTIONS(3), - }, - [275] = { - [ts_builtin_sym_end] = ACTIONS(1072), - [sym_identifier] = ACTIONS(1070), - [aux_sym_preproc_include_token1] = ACTIONS(1070), - [aux_sym_preproc_def_token1] = ACTIONS(1070), - [aux_sym_preproc_if_token1] = ACTIONS(1070), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1070), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1070), - [sym_preproc_directive] = ACTIONS(1070), - [anon_sym_LPAREN2] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1072), - [anon_sym_TILDE] = ACTIONS(1072), - [anon_sym_DASH] = ACTIONS(1070), - [anon_sym_PLUS] = ACTIONS(1070), - [anon_sym_STAR] = ACTIONS(1072), - [anon_sym_AMP] = ACTIONS(1072), - [anon_sym_SEMI] = ACTIONS(1072), - [anon_sym_typedef] = ACTIONS(1070), - [anon_sym_extern] = ACTIONS(1070), - [anon_sym___attribute__] = ACTIONS(1070), - [anon_sym_LBRACE] = ACTIONS(1072), - [anon_sym_static] = ACTIONS(1070), - [anon_sym_auto] = ACTIONS(1070), - [anon_sym_register] = ACTIONS(1070), - [anon_sym_inline] = ACTIONS(1070), - [anon_sym_const] = ACTIONS(1070), - [anon_sym_volatile] = ACTIONS(1070), - [anon_sym_restrict] = ACTIONS(1070), - [anon_sym__Atomic] = ACTIONS(1070), - [anon_sym_signed] = ACTIONS(1070), - [anon_sym_unsigned] = ACTIONS(1070), - [anon_sym_long] = ACTIONS(1070), - [anon_sym_short] = ACTIONS(1070), - [sym_primitive_type] = ACTIONS(1070), - [anon_sym_enum] = ACTIONS(1070), - [anon_sym_struct] = ACTIONS(1070), - [anon_sym_union] = ACTIONS(1070), - [anon_sym_if] = ACTIONS(1070), - [anon_sym_else] = ACTIONS(1070), - [anon_sym_switch] = ACTIONS(1070), - [anon_sym_case] = ACTIONS(1070), - [anon_sym_default] = ACTIONS(1070), - [anon_sym_while] = ACTIONS(1070), - [anon_sym_do] = ACTIONS(1070), - [anon_sym_for] = ACTIONS(1070), - [anon_sym_return] = ACTIONS(1070), - [anon_sym_break] = ACTIONS(1070), - [anon_sym_continue] = ACTIONS(1070), - [anon_sym_goto] = ACTIONS(1070), - [anon_sym_DASH_DASH] = ACTIONS(1072), - [anon_sym_PLUS_PLUS] = ACTIONS(1072), - [anon_sym_sizeof] = ACTIONS(1070), - [sym_number_literal] = ACTIONS(1072), - [anon_sym_L_SQUOTE] = ACTIONS(1072), - [anon_sym_u_SQUOTE] = ACTIONS(1072), - [anon_sym_U_SQUOTE] = ACTIONS(1072), - [anon_sym_u8_SQUOTE] = ACTIONS(1072), - [anon_sym_SQUOTE] = ACTIONS(1072), - [anon_sym_L_DQUOTE] = ACTIONS(1072), - [anon_sym_u_DQUOTE] = ACTIONS(1072), - [anon_sym_U_DQUOTE] = ACTIONS(1072), - [anon_sym_u8_DQUOTE] = ACTIONS(1072), - [anon_sym_DQUOTE] = ACTIONS(1072), - [sym_true] = ACTIONS(1070), - [sym_false] = ACTIONS(1070), - [sym_null] = ACTIONS(1070), - [sym_comment] = ACTIONS(3), - }, - [276] = { - [sym_identifier] = ACTIONS(972), - [aux_sym_preproc_include_token1] = ACTIONS(972), - [aux_sym_preproc_def_token1] = ACTIONS(972), - [aux_sym_preproc_if_token1] = ACTIONS(972), - [aux_sym_preproc_if_token2] = ACTIONS(972), - [aux_sym_preproc_ifdef_token1] = ACTIONS(972), - [aux_sym_preproc_ifdef_token2] = ACTIONS(972), - [sym_preproc_directive] = ACTIONS(972), - [anon_sym_LPAREN2] = ACTIONS(974), - [anon_sym_BANG] = ACTIONS(974), - [anon_sym_TILDE] = ACTIONS(974), - [anon_sym_DASH] = ACTIONS(972), - [anon_sym_PLUS] = ACTIONS(972), - [anon_sym_STAR] = ACTIONS(974), - [anon_sym_AMP] = ACTIONS(974), - [anon_sym_SEMI] = ACTIONS(974), - [anon_sym_typedef] = ACTIONS(972), - [anon_sym_extern] = ACTIONS(972), - [anon_sym___attribute__] = ACTIONS(972), - [anon_sym_LBRACE] = ACTIONS(974), - [anon_sym_static] = ACTIONS(972), - [anon_sym_auto] = ACTIONS(972), - [anon_sym_register] = ACTIONS(972), - [anon_sym_inline] = ACTIONS(972), - [anon_sym_const] = ACTIONS(972), - [anon_sym_volatile] = ACTIONS(972), - [anon_sym_restrict] = ACTIONS(972), - [anon_sym__Atomic] = ACTIONS(972), - [anon_sym_signed] = ACTIONS(972), - [anon_sym_unsigned] = ACTIONS(972), - [anon_sym_long] = ACTIONS(972), - [anon_sym_short] = ACTIONS(972), - [sym_primitive_type] = ACTIONS(972), - [anon_sym_enum] = ACTIONS(972), - [anon_sym_struct] = ACTIONS(972), - [anon_sym_union] = ACTIONS(972), - [anon_sym_if] = ACTIONS(972), - [anon_sym_else] = ACTIONS(972), - [anon_sym_switch] = ACTIONS(972), - [anon_sym_case] = ACTIONS(972), - [anon_sym_default] = ACTIONS(972), - [anon_sym_while] = ACTIONS(972), - [anon_sym_do] = ACTIONS(972), - [anon_sym_for] = ACTIONS(972), - [anon_sym_return] = ACTIONS(972), - [anon_sym_break] = ACTIONS(972), - [anon_sym_continue] = ACTIONS(972), - [anon_sym_goto] = ACTIONS(972), - [anon_sym_DASH_DASH] = ACTIONS(974), - [anon_sym_PLUS_PLUS] = ACTIONS(974), - [anon_sym_sizeof] = ACTIONS(972), - [sym_number_literal] = ACTIONS(974), - [anon_sym_L_SQUOTE] = ACTIONS(974), - [anon_sym_u_SQUOTE] = ACTIONS(974), - [anon_sym_U_SQUOTE] = ACTIONS(974), - [anon_sym_u8_SQUOTE] = ACTIONS(974), - [anon_sym_SQUOTE] = ACTIONS(974), - [anon_sym_L_DQUOTE] = ACTIONS(974), - [anon_sym_u_DQUOTE] = ACTIONS(974), - [anon_sym_U_DQUOTE] = ACTIONS(974), - [anon_sym_u8_DQUOTE] = ACTIONS(974), - [anon_sym_DQUOTE] = ACTIONS(974), - [sym_true] = ACTIONS(972), - [sym_false] = ACTIONS(972), - [sym_null] = ACTIONS(972), + [268] = { + [sym_identifier] = ACTIONS(964), + [aux_sym_preproc_include_token1] = ACTIONS(964), + [aux_sym_preproc_def_token1] = ACTIONS(964), + [aux_sym_preproc_if_token1] = ACTIONS(964), + [aux_sym_preproc_if_token2] = ACTIONS(964), + [aux_sym_preproc_ifdef_token1] = ACTIONS(964), + [aux_sym_preproc_ifdef_token2] = ACTIONS(964), + [sym_preproc_directive] = ACTIONS(964), + [anon_sym_LPAREN2] = ACTIONS(966), + [anon_sym_BANG] = ACTIONS(966), + [anon_sym_TILDE] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(964), + [anon_sym_PLUS] = ACTIONS(964), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(966), + [anon_sym_typedef] = ACTIONS(964), + [anon_sym_extern] = ACTIONS(964), + [anon_sym___attribute__] = ACTIONS(964), + [anon_sym_LBRACE] = ACTIONS(966), + [anon_sym_static] = ACTIONS(964), + [anon_sym_auto] = ACTIONS(964), + [anon_sym_register] = ACTIONS(964), + [anon_sym_inline] = ACTIONS(964), + [anon_sym_const] = ACTIONS(964), + [anon_sym_volatile] = ACTIONS(964), + [anon_sym_restrict] = ACTIONS(964), + [anon_sym__Atomic] = ACTIONS(964), + [anon_sym_signed] = ACTIONS(964), + [anon_sym_unsigned] = ACTIONS(964), + [anon_sym_long] = ACTIONS(964), + [anon_sym_short] = ACTIONS(964), + [sym_primitive_type] = ACTIONS(964), + [anon_sym_enum] = ACTIONS(964), + [anon_sym_struct] = ACTIONS(964), + [anon_sym_union] = ACTIONS(964), + [anon_sym_if] = ACTIONS(964), + [anon_sym_else] = ACTIONS(964), + [anon_sym_switch] = ACTIONS(964), + [anon_sym_case] = ACTIONS(964), + [anon_sym_default] = ACTIONS(964), + [anon_sym_while] = ACTIONS(964), + [anon_sym_do] = ACTIONS(964), + [anon_sym_for] = ACTIONS(964), + [anon_sym_return] = ACTIONS(964), + [anon_sym_break] = ACTIONS(964), + [anon_sym_continue] = ACTIONS(964), + [anon_sym_goto] = ACTIONS(964), + [anon_sym_DASH_DASH] = ACTIONS(966), + [anon_sym_PLUS_PLUS] = ACTIONS(966), + [anon_sym_sizeof] = ACTIONS(964), + [sym_number_literal] = ACTIONS(966), + [anon_sym_L_SQUOTE] = ACTIONS(966), + [anon_sym_u_SQUOTE] = ACTIONS(966), + [anon_sym_U_SQUOTE] = ACTIONS(966), + [anon_sym_u8_SQUOTE] = ACTIONS(966), + [anon_sym_SQUOTE] = ACTIONS(966), + [anon_sym_L_DQUOTE] = ACTIONS(966), + [anon_sym_u_DQUOTE] = ACTIONS(966), + [anon_sym_U_DQUOTE] = ACTIONS(966), + [anon_sym_u8_DQUOTE] = ACTIONS(966), + [anon_sym_DQUOTE] = ACTIONS(966), + [sym_true] = ACTIONS(964), + [sym_false] = ACTIONS(964), + [sym_null] = ACTIONS(964), [sym_comment] = ACTIONS(3), }, - [277] = { + [269] = { + [sym_identifier] = ACTIONS(1074), + [aux_sym_preproc_include_token1] = ACTIONS(1074), + [aux_sym_preproc_def_token1] = ACTIONS(1074), + [aux_sym_preproc_if_token1] = ACTIONS(1074), + [aux_sym_preproc_if_token2] = ACTIONS(1074), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1074), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1074), + [sym_preproc_directive] = ACTIONS(1074), + [anon_sym_LPAREN2] = ACTIONS(1076), + [anon_sym_BANG] = ACTIONS(1076), + [anon_sym_TILDE] = ACTIONS(1076), + [anon_sym_DASH] = ACTIONS(1074), + [anon_sym_PLUS] = ACTIONS(1074), + [anon_sym_STAR] = ACTIONS(1076), + [anon_sym_AMP] = ACTIONS(1076), + [anon_sym_SEMI] = ACTIONS(1076), + [anon_sym_typedef] = ACTIONS(1074), + [anon_sym_extern] = ACTIONS(1074), + [anon_sym___attribute__] = ACTIONS(1074), + [anon_sym_LBRACE] = ACTIONS(1076), + [anon_sym_static] = ACTIONS(1074), + [anon_sym_auto] = ACTIONS(1074), + [anon_sym_register] = ACTIONS(1074), + [anon_sym_inline] = ACTIONS(1074), + [anon_sym_const] = ACTIONS(1074), + [anon_sym_volatile] = ACTIONS(1074), + [anon_sym_restrict] = ACTIONS(1074), + [anon_sym__Atomic] = ACTIONS(1074), + [anon_sym_signed] = ACTIONS(1074), + [anon_sym_unsigned] = ACTIONS(1074), + [anon_sym_long] = ACTIONS(1074), + [anon_sym_short] = ACTIONS(1074), + [sym_primitive_type] = ACTIONS(1074), + [anon_sym_enum] = ACTIONS(1074), + [anon_sym_struct] = ACTIONS(1074), + [anon_sym_union] = ACTIONS(1074), + [anon_sym_if] = ACTIONS(1074), + [anon_sym_else] = ACTIONS(1074), + [anon_sym_switch] = ACTIONS(1074), + [anon_sym_case] = ACTIONS(1074), + [anon_sym_default] = ACTIONS(1074), + [anon_sym_while] = ACTIONS(1074), + [anon_sym_do] = ACTIONS(1074), + [anon_sym_for] = ACTIONS(1074), + [anon_sym_return] = ACTIONS(1074), + [anon_sym_break] = ACTIONS(1074), + [anon_sym_continue] = ACTIONS(1074), + [anon_sym_goto] = ACTIONS(1074), + [anon_sym_DASH_DASH] = ACTIONS(1076), + [anon_sym_PLUS_PLUS] = ACTIONS(1076), + [anon_sym_sizeof] = ACTIONS(1074), + [sym_number_literal] = ACTIONS(1076), + [anon_sym_L_SQUOTE] = ACTIONS(1076), + [anon_sym_u_SQUOTE] = ACTIONS(1076), + [anon_sym_U_SQUOTE] = ACTIONS(1076), + [anon_sym_u8_SQUOTE] = ACTIONS(1076), + [anon_sym_SQUOTE] = ACTIONS(1076), + [anon_sym_L_DQUOTE] = ACTIONS(1076), + [anon_sym_u_DQUOTE] = ACTIONS(1076), + [anon_sym_U_DQUOTE] = ACTIONS(1076), + [anon_sym_u8_DQUOTE] = ACTIONS(1076), + [anon_sym_DQUOTE] = ACTIONS(1076), + [sym_true] = ACTIONS(1074), + [sym_false] = ACTIONS(1074), + [sym_null] = ACTIONS(1074), + [sym_comment] = ACTIONS(3), + }, + [270] = { [sym_identifier] = ACTIONS(1070), [aux_sym_preproc_include_token1] = ACTIONS(1070), [aux_sym_preproc_def_token1] = ACTIONS(1070), @@ -28607,564 +28147,156 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_number_literal] = ACTIONS(1072), [anon_sym_L_SQUOTE] = ACTIONS(1072), [anon_sym_u_SQUOTE] = ACTIONS(1072), - [anon_sym_U_SQUOTE] = ACTIONS(1072), - [anon_sym_u8_SQUOTE] = ACTIONS(1072), - [anon_sym_SQUOTE] = ACTIONS(1072), - [anon_sym_L_DQUOTE] = ACTIONS(1072), - [anon_sym_u_DQUOTE] = ACTIONS(1072), - [anon_sym_U_DQUOTE] = ACTIONS(1072), - [anon_sym_u8_DQUOTE] = ACTIONS(1072), - [anon_sym_DQUOTE] = ACTIONS(1072), - [sym_true] = ACTIONS(1070), - [sym_false] = ACTIONS(1070), - [sym_null] = ACTIONS(1070), - [sym_comment] = ACTIONS(3), - }, - [278] = { - [sym_identifier] = ACTIONS(1066), - [aux_sym_preproc_include_token1] = ACTIONS(1066), - [aux_sym_preproc_def_token1] = ACTIONS(1066), - [aux_sym_preproc_if_token1] = ACTIONS(1066), - [aux_sym_preproc_if_token2] = ACTIONS(1066), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1066), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1066), - [sym_preproc_directive] = ACTIONS(1066), - [anon_sym_LPAREN2] = ACTIONS(1068), - [anon_sym_BANG] = ACTIONS(1068), - [anon_sym_TILDE] = ACTIONS(1068), - [anon_sym_DASH] = ACTIONS(1066), - [anon_sym_PLUS] = ACTIONS(1066), - [anon_sym_STAR] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1068), - [anon_sym_SEMI] = ACTIONS(1068), - [anon_sym_typedef] = ACTIONS(1066), - [anon_sym_extern] = ACTIONS(1066), - [anon_sym___attribute__] = ACTIONS(1066), - [anon_sym_LBRACE] = ACTIONS(1068), - [anon_sym_static] = ACTIONS(1066), - [anon_sym_auto] = ACTIONS(1066), - [anon_sym_register] = ACTIONS(1066), - [anon_sym_inline] = ACTIONS(1066), - [anon_sym_const] = ACTIONS(1066), - [anon_sym_volatile] = ACTIONS(1066), - [anon_sym_restrict] = ACTIONS(1066), - [anon_sym__Atomic] = ACTIONS(1066), - [anon_sym_signed] = ACTIONS(1066), - [anon_sym_unsigned] = ACTIONS(1066), - [anon_sym_long] = ACTIONS(1066), - [anon_sym_short] = ACTIONS(1066), - [sym_primitive_type] = ACTIONS(1066), - [anon_sym_enum] = ACTIONS(1066), - [anon_sym_struct] = ACTIONS(1066), - [anon_sym_union] = ACTIONS(1066), - [anon_sym_if] = ACTIONS(1066), - [anon_sym_else] = ACTIONS(1066), - [anon_sym_switch] = ACTIONS(1066), - [anon_sym_case] = ACTIONS(1066), - [anon_sym_default] = ACTIONS(1066), - [anon_sym_while] = ACTIONS(1066), - [anon_sym_do] = ACTIONS(1066), - [anon_sym_for] = ACTIONS(1066), - [anon_sym_return] = ACTIONS(1066), - [anon_sym_break] = ACTIONS(1066), - [anon_sym_continue] = ACTIONS(1066), - [anon_sym_goto] = ACTIONS(1066), - [anon_sym_DASH_DASH] = ACTIONS(1068), - [anon_sym_PLUS_PLUS] = ACTIONS(1068), - [anon_sym_sizeof] = ACTIONS(1066), - [sym_number_literal] = ACTIONS(1068), - [anon_sym_L_SQUOTE] = ACTIONS(1068), - [anon_sym_u_SQUOTE] = ACTIONS(1068), - [anon_sym_U_SQUOTE] = ACTIONS(1068), - [anon_sym_u8_SQUOTE] = ACTIONS(1068), - [anon_sym_SQUOTE] = ACTIONS(1068), - [anon_sym_L_DQUOTE] = ACTIONS(1068), - [anon_sym_u_DQUOTE] = ACTIONS(1068), - [anon_sym_U_DQUOTE] = ACTIONS(1068), - [anon_sym_u8_DQUOTE] = ACTIONS(1068), - [anon_sym_DQUOTE] = ACTIONS(1068), - [sym_true] = ACTIONS(1066), - [sym_false] = ACTIONS(1066), - [sym_null] = ACTIONS(1066), - [sym_comment] = ACTIONS(3), - }, - [279] = { - [ts_builtin_sym_end] = ACTIONS(1080), - [sym_identifier] = ACTIONS(1078), - [aux_sym_preproc_include_token1] = ACTIONS(1078), - [aux_sym_preproc_def_token1] = ACTIONS(1078), - [aux_sym_preproc_if_token1] = ACTIONS(1078), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1078), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1078), - [sym_preproc_directive] = ACTIONS(1078), - [anon_sym_LPAREN2] = ACTIONS(1080), - [anon_sym_BANG] = ACTIONS(1080), - [anon_sym_TILDE] = ACTIONS(1080), - [anon_sym_DASH] = ACTIONS(1078), - [anon_sym_PLUS] = ACTIONS(1078), - [anon_sym_STAR] = ACTIONS(1080), - [anon_sym_AMP] = ACTIONS(1080), - [anon_sym_SEMI] = ACTIONS(1080), - [anon_sym_typedef] = ACTIONS(1078), - [anon_sym_extern] = ACTIONS(1078), - [anon_sym___attribute__] = ACTIONS(1078), - [anon_sym_LBRACE] = ACTIONS(1080), - [anon_sym_static] = ACTIONS(1078), - [anon_sym_auto] = ACTIONS(1078), - [anon_sym_register] = ACTIONS(1078), - [anon_sym_inline] = ACTIONS(1078), - [anon_sym_const] = ACTIONS(1078), - [anon_sym_volatile] = ACTIONS(1078), - [anon_sym_restrict] = ACTIONS(1078), - [anon_sym__Atomic] = ACTIONS(1078), - [anon_sym_signed] = ACTIONS(1078), - [anon_sym_unsigned] = ACTIONS(1078), - [anon_sym_long] = ACTIONS(1078), - [anon_sym_short] = ACTIONS(1078), - [sym_primitive_type] = ACTIONS(1078), - [anon_sym_enum] = ACTIONS(1078), - [anon_sym_struct] = ACTIONS(1078), - [anon_sym_union] = ACTIONS(1078), - [anon_sym_if] = ACTIONS(1078), - [anon_sym_else] = ACTIONS(1078), - [anon_sym_switch] = ACTIONS(1078), - [anon_sym_case] = ACTIONS(1078), - [anon_sym_default] = ACTIONS(1078), - [anon_sym_while] = ACTIONS(1078), - [anon_sym_do] = ACTIONS(1078), - [anon_sym_for] = ACTIONS(1078), - [anon_sym_return] = ACTIONS(1078), - [anon_sym_break] = ACTIONS(1078), - [anon_sym_continue] = ACTIONS(1078), - [anon_sym_goto] = ACTIONS(1078), - [anon_sym_DASH_DASH] = ACTIONS(1080), - [anon_sym_PLUS_PLUS] = ACTIONS(1080), - [anon_sym_sizeof] = ACTIONS(1078), - [sym_number_literal] = ACTIONS(1080), - [anon_sym_L_SQUOTE] = ACTIONS(1080), - [anon_sym_u_SQUOTE] = ACTIONS(1080), - [anon_sym_U_SQUOTE] = ACTIONS(1080), - [anon_sym_u8_SQUOTE] = ACTIONS(1080), - [anon_sym_SQUOTE] = ACTIONS(1080), - [anon_sym_L_DQUOTE] = ACTIONS(1080), - [anon_sym_u_DQUOTE] = ACTIONS(1080), - [anon_sym_U_DQUOTE] = ACTIONS(1080), - [anon_sym_u8_DQUOTE] = ACTIONS(1080), - [anon_sym_DQUOTE] = ACTIONS(1080), - [sym_true] = ACTIONS(1078), - [sym_false] = ACTIONS(1078), - [sym_null] = ACTIONS(1078), - [sym_comment] = ACTIONS(3), - }, - [280] = { - [sym_identifier] = ACTIONS(1054), - [aux_sym_preproc_include_token1] = ACTIONS(1054), - [aux_sym_preproc_def_token1] = ACTIONS(1054), - [aux_sym_preproc_if_token1] = ACTIONS(1054), - [aux_sym_preproc_if_token2] = ACTIONS(1054), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1054), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1054), - [sym_preproc_directive] = ACTIONS(1054), - [anon_sym_LPAREN2] = ACTIONS(1056), - [anon_sym_BANG] = ACTIONS(1056), - [anon_sym_TILDE] = ACTIONS(1056), - [anon_sym_DASH] = ACTIONS(1054), - [anon_sym_PLUS] = ACTIONS(1054), - [anon_sym_STAR] = ACTIONS(1056), - [anon_sym_AMP] = ACTIONS(1056), - [anon_sym_SEMI] = ACTIONS(1056), - [anon_sym_typedef] = ACTIONS(1054), - [anon_sym_extern] = ACTIONS(1054), - [anon_sym___attribute__] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_static] = ACTIONS(1054), - [anon_sym_auto] = ACTIONS(1054), - [anon_sym_register] = ACTIONS(1054), - [anon_sym_inline] = ACTIONS(1054), - [anon_sym_const] = ACTIONS(1054), - [anon_sym_volatile] = ACTIONS(1054), - [anon_sym_restrict] = ACTIONS(1054), - [anon_sym__Atomic] = ACTIONS(1054), - [anon_sym_signed] = ACTIONS(1054), - [anon_sym_unsigned] = ACTIONS(1054), - [anon_sym_long] = ACTIONS(1054), - [anon_sym_short] = ACTIONS(1054), - [sym_primitive_type] = ACTIONS(1054), - [anon_sym_enum] = ACTIONS(1054), - [anon_sym_struct] = ACTIONS(1054), - [anon_sym_union] = ACTIONS(1054), - [anon_sym_if] = ACTIONS(1054), - [anon_sym_else] = ACTIONS(1054), - [anon_sym_switch] = ACTIONS(1054), - [anon_sym_case] = ACTIONS(1054), - [anon_sym_default] = ACTIONS(1054), - [anon_sym_while] = ACTIONS(1054), - [anon_sym_do] = ACTIONS(1054), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_return] = ACTIONS(1054), - [anon_sym_break] = ACTIONS(1054), - [anon_sym_continue] = ACTIONS(1054), - [anon_sym_goto] = ACTIONS(1054), - [anon_sym_DASH_DASH] = ACTIONS(1056), - [anon_sym_PLUS_PLUS] = ACTIONS(1056), - [anon_sym_sizeof] = ACTIONS(1054), - [sym_number_literal] = ACTIONS(1056), - [anon_sym_L_SQUOTE] = ACTIONS(1056), - [anon_sym_u_SQUOTE] = ACTIONS(1056), - [anon_sym_U_SQUOTE] = ACTIONS(1056), - [anon_sym_u8_SQUOTE] = ACTIONS(1056), - [anon_sym_SQUOTE] = ACTIONS(1056), - [anon_sym_L_DQUOTE] = ACTIONS(1056), - [anon_sym_u_DQUOTE] = ACTIONS(1056), - [anon_sym_U_DQUOTE] = ACTIONS(1056), - [anon_sym_u8_DQUOTE] = ACTIONS(1056), - [anon_sym_DQUOTE] = ACTIONS(1056), - [sym_true] = ACTIONS(1054), - [sym_false] = ACTIONS(1054), - [sym_null] = ACTIONS(1054), - [sym_comment] = ACTIONS(3), - }, - [281] = { - [ts_builtin_sym_end] = ACTIONS(1068), - [sym_identifier] = ACTIONS(1066), - [aux_sym_preproc_include_token1] = ACTIONS(1066), - [aux_sym_preproc_def_token1] = ACTIONS(1066), - [aux_sym_preproc_if_token1] = ACTIONS(1066), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1066), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1066), - [sym_preproc_directive] = ACTIONS(1066), - [anon_sym_LPAREN2] = ACTIONS(1068), - [anon_sym_BANG] = ACTIONS(1068), - [anon_sym_TILDE] = ACTIONS(1068), - [anon_sym_DASH] = ACTIONS(1066), - [anon_sym_PLUS] = ACTIONS(1066), - [anon_sym_STAR] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1068), - [anon_sym_SEMI] = ACTIONS(1068), - [anon_sym_typedef] = ACTIONS(1066), - [anon_sym_extern] = ACTIONS(1066), - [anon_sym___attribute__] = ACTIONS(1066), - [anon_sym_LBRACE] = ACTIONS(1068), - [anon_sym_static] = ACTIONS(1066), - [anon_sym_auto] = ACTIONS(1066), - [anon_sym_register] = ACTIONS(1066), - [anon_sym_inline] = ACTIONS(1066), - [anon_sym_const] = ACTIONS(1066), - [anon_sym_volatile] = ACTIONS(1066), - [anon_sym_restrict] = ACTIONS(1066), - [anon_sym__Atomic] = ACTIONS(1066), - [anon_sym_signed] = ACTIONS(1066), - [anon_sym_unsigned] = ACTIONS(1066), - [anon_sym_long] = ACTIONS(1066), - [anon_sym_short] = ACTIONS(1066), - [sym_primitive_type] = ACTIONS(1066), - [anon_sym_enum] = ACTIONS(1066), - [anon_sym_struct] = ACTIONS(1066), - [anon_sym_union] = ACTIONS(1066), - [anon_sym_if] = ACTIONS(1066), - [anon_sym_else] = ACTIONS(1066), - [anon_sym_switch] = ACTIONS(1066), - [anon_sym_case] = ACTIONS(1066), - [anon_sym_default] = ACTIONS(1066), - [anon_sym_while] = ACTIONS(1066), - [anon_sym_do] = ACTIONS(1066), - [anon_sym_for] = ACTIONS(1066), - [anon_sym_return] = ACTIONS(1066), - [anon_sym_break] = ACTIONS(1066), - [anon_sym_continue] = ACTIONS(1066), - [anon_sym_goto] = ACTIONS(1066), - [anon_sym_DASH_DASH] = ACTIONS(1068), - [anon_sym_PLUS_PLUS] = ACTIONS(1068), - [anon_sym_sizeof] = ACTIONS(1066), - [sym_number_literal] = ACTIONS(1068), - [anon_sym_L_SQUOTE] = ACTIONS(1068), - [anon_sym_u_SQUOTE] = ACTIONS(1068), - [anon_sym_U_SQUOTE] = ACTIONS(1068), - [anon_sym_u8_SQUOTE] = ACTIONS(1068), - [anon_sym_SQUOTE] = ACTIONS(1068), - [anon_sym_L_DQUOTE] = ACTIONS(1068), - [anon_sym_u_DQUOTE] = ACTIONS(1068), - [anon_sym_U_DQUOTE] = ACTIONS(1068), - [anon_sym_u8_DQUOTE] = ACTIONS(1068), - [anon_sym_DQUOTE] = ACTIONS(1068), - [sym_true] = ACTIONS(1066), - [sym_false] = ACTIONS(1066), - [sym_null] = ACTIONS(1066), - [sym_comment] = ACTIONS(3), - }, - [282] = { - [ts_builtin_sym_end] = ACTIONS(1056), - [sym_identifier] = ACTIONS(1054), - [aux_sym_preproc_include_token1] = ACTIONS(1054), - [aux_sym_preproc_def_token1] = ACTIONS(1054), - [aux_sym_preproc_if_token1] = ACTIONS(1054), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1054), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1054), - [sym_preproc_directive] = ACTIONS(1054), - [anon_sym_LPAREN2] = ACTIONS(1056), - [anon_sym_BANG] = ACTIONS(1056), - [anon_sym_TILDE] = ACTIONS(1056), - [anon_sym_DASH] = ACTIONS(1054), - [anon_sym_PLUS] = ACTIONS(1054), - [anon_sym_STAR] = ACTIONS(1056), - [anon_sym_AMP] = ACTIONS(1056), - [anon_sym_SEMI] = ACTIONS(1056), - [anon_sym_typedef] = ACTIONS(1054), - [anon_sym_extern] = ACTIONS(1054), - [anon_sym___attribute__] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_static] = ACTIONS(1054), - [anon_sym_auto] = ACTIONS(1054), - [anon_sym_register] = ACTIONS(1054), - [anon_sym_inline] = ACTIONS(1054), - [anon_sym_const] = ACTIONS(1054), - [anon_sym_volatile] = ACTIONS(1054), - [anon_sym_restrict] = ACTIONS(1054), - [anon_sym__Atomic] = ACTIONS(1054), - [anon_sym_signed] = ACTIONS(1054), - [anon_sym_unsigned] = ACTIONS(1054), - [anon_sym_long] = ACTIONS(1054), - [anon_sym_short] = ACTIONS(1054), - [sym_primitive_type] = ACTIONS(1054), - [anon_sym_enum] = ACTIONS(1054), - [anon_sym_struct] = ACTIONS(1054), - [anon_sym_union] = ACTIONS(1054), - [anon_sym_if] = ACTIONS(1054), - [anon_sym_else] = ACTIONS(1054), - [anon_sym_switch] = ACTIONS(1054), - [anon_sym_case] = ACTIONS(1054), - [anon_sym_default] = ACTIONS(1054), - [anon_sym_while] = ACTIONS(1054), - [anon_sym_do] = ACTIONS(1054), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_return] = ACTIONS(1054), - [anon_sym_break] = ACTIONS(1054), - [anon_sym_continue] = ACTIONS(1054), - [anon_sym_goto] = ACTIONS(1054), - [anon_sym_DASH_DASH] = ACTIONS(1056), - [anon_sym_PLUS_PLUS] = ACTIONS(1056), - [anon_sym_sizeof] = ACTIONS(1054), - [sym_number_literal] = ACTIONS(1056), - [anon_sym_L_SQUOTE] = ACTIONS(1056), - [anon_sym_u_SQUOTE] = ACTIONS(1056), - [anon_sym_U_SQUOTE] = ACTIONS(1056), - [anon_sym_u8_SQUOTE] = ACTIONS(1056), - [anon_sym_SQUOTE] = ACTIONS(1056), - [anon_sym_L_DQUOTE] = ACTIONS(1056), - [anon_sym_u_DQUOTE] = ACTIONS(1056), - [anon_sym_U_DQUOTE] = ACTIONS(1056), - [anon_sym_u8_DQUOTE] = ACTIONS(1056), - [anon_sym_DQUOTE] = ACTIONS(1056), - [sym_true] = ACTIONS(1054), - [sym_false] = ACTIONS(1054), - [sym_null] = ACTIONS(1054), - [sym_comment] = ACTIONS(3), - }, - [283] = { - [ts_builtin_sym_end] = ACTIONS(974), - [sym_identifier] = ACTIONS(972), - [aux_sym_preproc_include_token1] = ACTIONS(972), - [aux_sym_preproc_def_token1] = ACTIONS(972), - [aux_sym_preproc_if_token1] = ACTIONS(972), - [aux_sym_preproc_ifdef_token1] = ACTIONS(972), - [aux_sym_preproc_ifdef_token2] = ACTIONS(972), - [sym_preproc_directive] = ACTIONS(972), - [anon_sym_LPAREN2] = ACTIONS(974), - [anon_sym_BANG] = ACTIONS(974), - [anon_sym_TILDE] = ACTIONS(974), - [anon_sym_DASH] = ACTIONS(972), - [anon_sym_PLUS] = ACTIONS(972), - [anon_sym_STAR] = ACTIONS(974), - [anon_sym_AMP] = ACTIONS(974), - [anon_sym_SEMI] = ACTIONS(974), - [anon_sym_typedef] = ACTIONS(972), - [anon_sym_extern] = ACTIONS(972), - [anon_sym___attribute__] = ACTIONS(972), - [anon_sym_LBRACE] = ACTIONS(974), - [anon_sym_static] = ACTIONS(972), - [anon_sym_auto] = ACTIONS(972), - [anon_sym_register] = ACTIONS(972), - [anon_sym_inline] = ACTIONS(972), - [anon_sym_const] = ACTIONS(972), - [anon_sym_volatile] = ACTIONS(972), - [anon_sym_restrict] = ACTIONS(972), - [anon_sym__Atomic] = ACTIONS(972), - [anon_sym_signed] = ACTIONS(972), - [anon_sym_unsigned] = ACTIONS(972), - [anon_sym_long] = ACTIONS(972), - [anon_sym_short] = ACTIONS(972), - [sym_primitive_type] = ACTIONS(972), - [anon_sym_enum] = ACTIONS(972), - [anon_sym_struct] = ACTIONS(972), - [anon_sym_union] = ACTIONS(972), - [anon_sym_if] = ACTIONS(972), - [anon_sym_else] = ACTIONS(972), - [anon_sym_switch] = ACTIONS(972), - [anon_sym_case] = ACTIONS(972), - [anon_sym_default] = ACTIONS(972), - [anon_sym_while] = ACTIONS(972), - [anon_sym_do] = ACTIONS(972), - [anon_sym_for] = ACTIONS(972), - [anon_sym_return] = ACTIONS(972), - [anon_sym_break] = ACTIONS(972), - [anon_sym_continue] = ACTIONS(972), - [anon_sym_goto] = ACTIONS(972), - [anon_sym_DASH_DASH] = ACTIONS(974), - [anon_sym_PLUS_PLUS] = ACTIONS(974), - [anon_sym_sizeof] = ACTIONS(972), - [sym_number_literal] = ACTIONS(974), - [anon_sym_L_SQUOTE] = ACTIONS(974), - [anon_sym_u_SQUOTE] = ACTIONS(974), - [anon_sym_U_SQUOTE] = ACTIONS(974), - [anon_sym_u8_SQUOTE] = ACTIONS(974), - [anon_sym_SQUOTE] = ACTIONS(974), - [anon_sym_L_DQUOTE] = ACTIONS(974), - [anon_sym_u_DQUOTE] = ACTIONS(974), - [anon_sym_U_DQUOTE] = ACTIONS(974), - [anon_sym_u8_DQUOTE] = ACTIONS(974), - [anon_sym_DQUOTE] = ACTIONS(974), - [sym_true] = ACTIONS(972), - [sym_false] = ACTIONS(972), - [sym_null] = ACTIONS(972), + [anon_sym_U_SQUOTE] = ACTIONS(1072), + [anon_sym_u8_SQUOTE] = ACTIONS(1072), + [anon_sym_SQUOTE] = ACTIONS(1072), + [anon_sym_L_DQUOTE] = ACTIONS(1072), + [anon_sym_u_DQUOTE] = ACTIONS(1072), + [anon_sym_U_DQUOTE] = ACTIONS(1072), + [anon_sym_u8_DQUOTE] = ACTIONS(1072), + [anon_sym_DQUOTE] = ACTIONS(1072), + [sym_true] = ACTIONS(1070), + [sym_false] = ACTIONS(1070), + [sym_null] = ACTIONS(1070), [sym_comment] = ACTIONS(3), }, - [284] = { - [sym_identifier] = ACTIONS(1046), - [aux_sym_preproc_include_token1] = ACTIONS(1046), - [aux_sym_preproc_def_token1] = ACTIONS(1046), - [aux_sym_preproc_if_token1] = ACTIONS(1046), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1046), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1046), - [sym_preproc_directive] = ACTIONS(1046), - [anon_sym_LPAREN2] = ACTIONS(1048), - [anon_sym_BANG] = ACTIONS(1048), - [anon_sym_TILDE] = ACTIONS(1048), - [anon_sym_DASH] = ACTIONS(1046), - [anon_sym_PLUS] = ACTIONS(1046), - [anon_sym_STAR] = ACTIONS(1048), - [anon_sym_AMP] = ACTIONS(1048), - [anon_sym_SEMI] = ACTIONS(1048), - [anon_sym_typedef] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1046), - [anon_sym___attribute__] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(1048), - [anon_sym_RBRACE] = ACTIONS(1048), - [anon_sym_static] = ACTIONS(1046), - [anon_sym_auto] = ACTIONS(1046), - [anon_sym_register] = ACTIONS(1046), - [anon_sym_inline] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1046), - [anon_sym_volatile] = ACTIONS(1046), - [anon_sym_restrict] = ACTIONS(1046), - [anon_sym__Atomic] = ACTIONS(1046), - [anon_sym_signed] = ACTIONS(1046), - [anon_sym_unsigned] = ACTIONS(1046), - [anon_sym_long] = ACTIONS(1046), - [anon_sym_short] = ACTIONS(1046), - [sym_primitive_type] = ACTIONS(1046), - [anon_sym_enum] = ACTIONS(1046), - [anon_sym_struct] = ACTIONS(1046), - [anon_sym_union] = ACTIONS(1046), - [anon_sym_if] = ACTIONS(1046), - [anon_sym_else] = ACTIONS(1046), - [anon_sym_switch] = ACTIONS(1046), - [anon_sym_case] = ACTIONS(1046), - [anon_sym_default] = ACTIONS(1046), - [anon_sym_while] = ACTIONS(1046), - [anon_sym_do] = ACTIONS(1046), - [anon_sym_for] = ACTIONS(1046), - [anon_sym_return] = ACTIONS(1046), - [anon_sym_break] = ACTIONS(1046), - [anon_sym_continue] = ACTIONS(1046), - [anon_sym_goto] = ACTIONS(1046), - [anon_sym_DASH_DASH] = ACTIONS(1048), - [anon_sym_PLUS_PLUS] = ACTIONS(1048), - [anon_sym_sizeof] = ACTIONS(1046), - [sym_number_literal] = ACTIONS(1048), - [anon_sym_L_SQUOTE] = ACTIONS(1048), - [anon_sym_u_SQUOTE] = ACTIONS(1048), - [anon_sym_U_SQUOTE] = ACTIONS(1048), - [anon_sym_u8_SQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1048), - [anon_sym_L_DQUOTE] = ACTIONS(1048), - [anon_sym_u_DQUOTE] = ACTIONS(1048), - [anon_sym_U_DQUOTE] = ACTIONS(1048), - [anon_sym_u8_DQUOTE] = ACTIONS(1048), - [anon_sym_DQUOTE] = ACTIONS(1048), - [sym_true] = ACTIONS(1046), - [sym_false] = ACTIONS(1046), - [sym_null] = ACTIONS(1046), + [271] = { + [sym_identifier] = ACTIONS(1070), + [aux_sym_preproc_include_token1] = ACTIONS(1070), + [aux_sym_preproc_def_token1] = ACTIONS(1070), + [aux_sym_preproc_if_token1] = ACTIONS(1070), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1070), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1070), + [sym_preproc_directive] = ACTIONS(1070), + [anon_sym_LPAREN2] = ACTIONS(1072), + [anon_sym_BANG] = ACTIONS(1072), + [anon_sym_TILDE] = ACTIONS(1072), + [anon_sym_DASH] = ACTIONS(1070), + [anon_sym_PLUS] = ACTIONS(1070), + [anon_sym_STAR] = ACTIONS(1072), + [anon_sym_AMP] = ACTIONS(1072), + [anon_sym_SEMI] = ACTIONS(1072), + [anon_sym_typedef] = ACTIONS(1070), + [anon_sym_extern] = ACTIONS(1070), + [anon_sym___attribute__] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_RBRACE] = ACTIONS(1072), + [anon_sym_static] = ACTIONS(1070), + [anon_sym_auto] = ACTIONS(1070), + [anon_sym_register] = ACTIONS(1070), + [anon_sym_inline] = ACTIONS(1070), + [anon_sym_const] = ACTIONS(1070), + [anon_sym_volatile] = ACTIONS(1070), + [anon_sym_restrict] = ACTIONS(1070), + [anon_sym__Atomic] = ACTIONS(1070), + [anon_sym_signed] = ACTIONS(1070), + [anon_sym_unsigned] = ACTIONS(1070), + [anon_sym_long] = ACTIONS(1070), + [anon_sym_short] = ACTIONS(1070), + [sym_primitive_type] = ACTIONS(1070), + [anon_sym_enum] = ACTIONS(1070), + [anon_sym_struct] = ACTIONS(1070), + [anon_sym_union] = ACTIONS(1070), + [anon_sym_if] = ACTIONS(1070), + [anon_sym_else] = ACTIONS(1070), + [anon_sym_switch] = ACTIONS(1070), + [anon_sym_case] = ACTIONS(1070), + [anon_sym_default] = ACTIONS(1070), + [anon_sym_while] = ACTIONS(1070), + [anon_sym_do] = ACTIONS(1070), + [anon_sym_for] = ACTIONS(1070), + [anon_sym_return] = ACTIONS(1070), + [anon_sym_break] = ACTIONS(1070), + [anon_sym_continue] = ACTIONS(1070), + [anon_sym_goto] = ACTIONS(1070), + [anon_sym_DASH_DASH] = ACTIONS(1072), + [anon_sym_PLUS_PLUS] = ACTIONS(1072), + [anon_sym_sizeof] = ACTIONS(1070), + [sym_number_literal] = ACTIONS(1072), + [anon_sym_L_SQUOTE] = ACTIONS(1072), + [anon_sym_u_SQUOTE] = ACTIONS(1072), + [anon_sym_U_SQUOTE] = ACTIONS(1072), + [anon_sym_u8_SQUOTE] = ACTIONS(1072), + [anon_sym_SQUOTE] = ACTIONS(1072), + [anon_sym_L_DQUOTE] = ACTIONS(1072), + [anon_sym_u_DQUOTE] = ACTIONS(1072), + [anon_sym_U_DQUOTE] = ACTIONS(1072), + [anon_sym_u8_DQUOTE] = ACTIONS(1072), + [anon_sym_DQUOTE] = ACTIONS(1072), + [sym_true] = ACTIONS(1070), + [sym_false] = ACTIONS(1070), + [sym_null] = ACTIONS(1070), [sym_comment] = ACTIONS(3), }, - [285] = { - [ts_builtin_sym_end] = ACTIONS(1012), - [sym_identifier] = ACTIONS(1010), - [aux_sym_preproc_include_token1] = ACTIONS(1010), - [aux_sym_preproc_def_token1] = ACTIONS(1010), - [aux_sym_preproc_if_token1] = ACTIONS(1010), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1010), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1010), - [sym_preproc_directive] = ACTIONS(1010), - [anon_sym_LPAREN2] = ACTIONS(1012), - [anon_sym_BANG] = ACTIONS(1012), - [anon_sym_TILDE] = ACTIONS(1012), - [anon_sym_DASH] = ACTIONS(1010), - [anon_sym_PLUS] = ACTIONS(1010), - [anon_sym_STAR] = ACTIONS(1012), - [anon_sym_AMP] = ACTIONS(1012), - [anon_sym_SEMI] = ACTIONS(1012), - [anon_sym_typedef] = ACTIONS(1010), - [anon_sym_extern] = ACTIONS(1010), - [anon_sym___attribute__] = ACTIONS(1010), - [anon_sym_LBRACE] = ACTIONS(1012), - [anon_sym_static] = ACTIONS(1010), - [anon_sym_auto] = ACTIONS(1010), - [anon_sym_register] = ACTIONS(1010), - [anon_sym_inline] = ACTIONS(1010), - [anon_sym_const] = ACTIONS(1010), - [anon_sym_volatile] = ACTIONS(1010), - [anon_sym_restrict] = ACTIONS(1010), - [anon_sym__Atomic] = ACTIONS(1010), - [anon_sym_signed] = ACTIONS(1010), - [anon_sym_unsigned] = ACTIONS(1010), - [anon_sym_long] = ACTIONS(1010), - [anon_sym_short] = ACTIONS(1010), - [sym_primitive_type] = ACTIONS(1010), - [anon_sym_enum] = ACTIONS(1010), - [anon_sym_struct] = ACTIONS(1010), - [anon_sym_union] = ACTIONS(1010), - [anon_sym_if] = ACTIONS(1010), - [anon_sym_else] = ACTIONS(1010), - [anon_sym_switch] = ACTIONS(1010), - [anon_sym_case] = ACTIONS(1010), - [anon_sym_default] = ACTIONS(1010), - [anon_sym_while] = ACTIONS(1010), - [anon_sym_do] = ACTIONS(1010), - [anon_sym_for] = ACTIONS(1010), - [anon_sym_return] = ACTIONS(1010), - [anon_sym_break] = ACTIONS(1010), - [anon_sym_continue] = ACTIONS(1010), - [anon_sym_goto] = ACTIONS(1010), - [anon_sym_DASH_DASH] = ACTIONS(1012), - [anon_sym_PLUS_PLUS] = ACTIONS(1012), - [anon_sym_sizeof] = ACTIONS(1010), - [sym_number_literal] = ACTIONS(1012), - [anon_sym_L_SQUOTE] = ACTIONS(1012), - [anon_sym_u_SQUOTE] = ACTIONS(1012), - [anon_sym_U_SQUOTE] = ACTIONS(1012), - [anon_sym_u8_SQUOTE] = ACTIONS(1012), - [anon_sym_SQUOTE] = ACTIONS(1012), - [anon_sym_L_DQUOTE] = ACTIONS(1012), - [anon_sym_u_DQUOTE] = ACTIONS(1012), - [anon_sym_U_DQUOTE] = ACTIONS(1012), - [anon_sym_u8_DQUOTE] = ACTIONS(1012), - [anon_sym_DQUOTE] = ACTIONS(1012), - [sym_true] = ACTIONS(1010), - [sym_false] = ACTIONS(1010), - [sym_null] = ACTIONS(1010), + [272] = { + [sym_identifier] = ACTIONS(1062), + [aux_sym_preproc_include_token1] = ACTIONS(1062), + [aux_sym_preproc_def_token1] = ACTIONS(1062), + [aux_sym_preproc_if_token1] = ACTIONS(1062), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1062), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1062), + [sym_preproc_directive] = ACTIONS(1062), + [anon_sym_LPAREN2] = ACTIONS(1064), + [anon_sym_BANG] = ACTIONS(1064), + [anon_sym_TILDE] = ACTIONS(1064), + [anon_sym_DASH] = ACTIONS(1062), + [anon_sym_PLUS] = ACTIONS(1062), + [anon_sym_STAR] = ACTIONS(1064), + [anon_sym_AMP] = ACTIONS(1064), + [anon_sym_SEMI] = ACTIONS(1064), + [anon_sym_typedef] = ACTIONS(1062), + [anon_sym_extern] = ACTIONS(1062), + [anon_sym___attribute__] = ACTIONS(1062), + [anon_sym_LBRACE] = ACTIONS(1064), + [anon_sym_RBRACE] = ACTIONS(1064), + [anon_sym_static] = ACTIONS(1062), + [anon_sym_auto] = ACTIONS(1062), + [anon_sym_register] = ACTIONS(1062), + [anon_sym_inline] = ACTIONS(1062), + [anon_sym_const] = ACTIONS(1062), + [anon_sym_volatile] = ACTIONS(1062), + [anon_sym_restrict] = ACTIONS(1062), + [anon_sym__Atomic] = ACTIONS(1062), + [anon_sym_signed] = ACTIONS(1062), + [anon_sym_unsigned] = ACTIONS(1062), + [anon_sym_long] = ACTIONS(1062), + [anon_sym_short] = ACTIONS(1062), + [sym_primitive_type] = ACTIONS(1062), + [anon_sym_enum] = ACTIONS(1062), + [anon_sym_struct] = ACTIONS(1062), + [anon_sym_union] = ACTIONS(1062), + [anon_sym_if] = ACTIONS(1062), + [anon_sym_else] = ACTIONS(1062), + [anon_sym_switch] = ACTIONS(1062), + [anon_sym_case] = ACTIONS(1062), + [anon_sym_default] = ACTIONS(1062), + [anon_sym_while] = ACTIONS(1062), + [anon_sym_do] = ACTIONS(1062), + [anon_sym_for] = ACTIONS(1062), + [anon_sym_return] = ACTIONS(1062), + [anon_sym_break] = ACTIONS(1062), + [anon_sym_continue] = ACTIONS(1062), + [anon_sym_goto] = ACTIONS(1062), + [anon_sym_DASH_DASH] = ACTIONS(1064), + [anon_sym_PLUS_PLUS] = ACTIONS(1064), + [anon_sym_sizeof] = ACTIONS(1062), + [sym_number_literal] = ACTIONS(1064), + [anon_sym_L_SQUOTE] = ACTIONS(1064), + [anon_sym_u_SQUOTE] = ACTIONS(1064), + [anon_sym_U_SQUOTE] = ACTIONS(1064), + [anon_sym_u8_SQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1064), + [anon_sym_L_DQUOTE] = ACTIONS(1064), + [anon_sym_u_DQUOTE] = ACTIONS(1064), + [anon_sym_U_DQUOTE] = ACTIONS(1064), + [anon_sym_u8_DQUOTE] = ACTIONS(1064), + [anon_sym_DQUOTE] = ACTIONS(1064), + [sym_true] = ACTIONS(1062), + [sym_false] = ACTIONS(1062), + [sym_null] = ACTIONS(1062), [sym_comment] = ACTIONS(3), }, - [286] = { + [273] = { [ts_builtin_sym_end] = ACTIONS(1092), [sym_identifier] = ACTIONS(1090), [aux_sym_preproc_include_token1] = ACTIONS(1090), @@ -29232,347 +28364,483 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1090), [sym_comment] = ACTIONS(3), }, - [287] = { - [sym_identifier] = ACTIONS(1006), - [aux_sym_preproc_include_token1] = ACTIONS(1006), - [aux_sym_preproc_def_token1] = ACTIONS(1006), - [aux_sym_preproc_if_token1] = ACTIONS(1006), - [aux_sym_preproc_if_token2] = ACTIONS(1006), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1006), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1006), - [sym_preproc_directive] = ACTIONS(1006), - [anon_sym_LPAREN2] = ACTIONS(1008), - [anon_sym_BANG] = ACTIONS(1008), - [anon_sym_TILDE] = ACTIONS(1008), - [anon_sym_DASH] = ACTIONS(1006), - [anon_sym_PLUS] = ACTIONS(1006), - [anon_sym_STAR] = ACTIONS(1008), - [anon_sym_AMP] = ACTIONS(1008), - [anon_sym_SEMI] = ACTIONS(1008), - [anon_sym_typedef] = ACTIONS(1006), - [anon_sym_extern] = ACTIONS(1006), - [anon_sym___attribute__] = ACTIONS(1006), - [anon_sym_LBRACE] = ACTIONS(1008), - [anon_sym_static] = ACTIONS(1006), - [anon_sym_auto] = ACTIONS(1006), - [anon_sym_register] = ACTIONS(1006), - [anon_sym_inline] = ACTIONS(1006), - [anon_sym_const] = ACTIONS(1006), - [anon_sym_volatile] = ACTIONS(1006), - [anon_sym_restrict] = ACTIONS(1006), - [anon_sym__Atomic] = ACTIONS(1006), - [anon_sym_signed] = ACTIONS(1006), - [anon_sym_unsigned] = ACTIONS(1006), - [anon_sym_long] = ACTIONS(1006), - [anon_sym_short] = ACTIONS(1006), - [sym_primitive_type] = ACTIONS(1006), - [anon_sym_enum] = ACTIONS(1006), - [anon_sym_struct] = ACTIONS(1006), - [anon_sym_union] = ACTIONS(1006), - [anon_sym_if] = ACTIONS(1006), - [anon_sym_else] = ACTIONS(1006), - [anon_sym_switch] = ACTIONS(1006), - [anon_sym_case] = ACTIONS(1006), - [anon_sym_default] = ACTIONS(1006), - [anon_sym_while] = ACTIONS(1006), - [anon_sym_do] = ACTIONS(1006), - [anon_sym_for] = ACTIONS(1006), - [anon_sym_return] = ACTIONS(1006), - [anon_sym_break] = ACTIONS(1006), - [anon_sym_continue] = ACTIONS(1006), - [anon_sym_goto] = ACTIONS(1006), - [anon_sym_DASH_DASH] = ACTIONS(1008), - [anon_sym_PLUS_PLUS] = ACTIONS(1008), - [anon_sym_sizeof] = ACTIONS(1006), - [sym_number_literal] = ACTIONS(1008), - [anon_sym_L_SQUOTE] = ACTIONS(1008), - [anon_sym_u_SQUOTE] = ACTIONS(1008), - [anon_sym_U_SQUOTE] = ACTIONS(1008), - [anon_sym_u8_SQUOTE] = ACTIONS(1008), - [anon_sym_SQUOTE] = ACTIONS(1008), - [anon_sym_L_DQUOTE] = ACTIONS(1008), - [anon_sym_u_DQUOTE] = ACTIONS(1008), - [anon_sym_U_DQUOTE] = ACTIONS(1008), - [anon_sym_u8_DQUOTE] = ACTIONS(1008), - [anon_sym_DQUOTE] = ACTIONS(1008), - [sym_true] = ACTIONS(1006), - [sym_false] = ACTIONS(1006), - [sym_null] = ACTIONS(1006), + [274] = { + [sym_identifier] = ACTIONS(976), + [aux_sym_preproc_include_token1] = ACTIONS(976), + [aux_sym_preproc_def_token1] = ACTIONS(976), + [aux_sym_preproc_if_token1] = ACTIONS(976), + [aux_sym_preproc_ifdef_token1] = ACTIONS(976), + [aux_sym_preproc_ifdef_token2] = ACTIONS(976), + [sym_preproc_directive] = ACTIONS(976), + [anon_sym_LPAREN2] = ACTIONS(978), + [anon_sym_BANG] = ACTIONS(978), + [anon_sym_TILDE] = ACTIONS(978), + [anon_sym_DASH] = ACTIONS(976), + [anon_sym_PLUS] = ACTIONS(976), + [anon_sym_STAR] = ACTIONS(978), + [anon_sym_AMP] = ACTIONS(978), + [anon_sym_SEMI] = ACTIONS(978), + [anon_sym_typedef] = ACTIONS(976), + [anon_sym_extern] = ACTIONS(976), + [anon_sym___attribute__] = ACTIONS(976), + [anon_sym_LBRACE] = ACTIONS(978), + [anon_sym_RBRACE] = ACTIONS(978), + [anon_sym_static] = ACTIONS(976), + [anon_sym_auto] = ACTIONS(976), + [anon_sym_register] = ACTIONS(976), + [anon_sym_inline] = ACTIONS(976), + [anon_sym_const] = ACTIONS(976), + [anon_sym_volatile] = ACTIONS(976), + [anon_sym_restrict] = ACTIONS(976), + [anon_sym__Atomic] = ACTIONS(976), + [anon_sym_signed] = ACTIONS(976), + [anon_sym_unsigned] = ACTIONS(976), + [anon_sym_long] = ACTIONS(976), + [anon_sym_short] = ACTIONS(976), + [sym_primitive_type] = ACTIONS(976), + [anon_sym_enum] = ACTIONS(976), + [anon_sym_struct] = ACTIONS(976), + [anon_sym_union] = ACTIONS(976), + [anon_sym_if] = ACTIONS(976), + [anon_sym_else] = ACTIONS(976), + [anon_sym_switch] = ACTIONS(976), + [anon_sym_case] = ACTIONS(976), + [anon_sym_default] = ACTIONS(976), + [anon_sym_while] = ACTIONS(976), + [anon_sym_do] = ACTIONS(976), + [anon_sym_for] = ACTIONS(976), + [anon_sym_return] = ACTIONS(976), + [anon_sym_break] = ACTIONS(976), + [anon_sym_continue] = ACTIONS(976), + [anon_sym_goto] = ACTIONS(976), + [anon_sym_DASH_DASH] = ACTIONS(978), + [anon_sym_PLUS_PLUS] = ACTIONS(978), + [anon_sym_sizeof] = ACTIONS(976), + [sym_number_literal] = ACTIONS(978), + [anon_sym_L_SQUOTE] = ACTIONS(978), + [anon_sym_u_SQUOTE] = ACTIONS(978), + [anon_sym_U_SQUOTE] = ACTIONS(978), + [anon_sym_u8_SQUOTE] = ACTIONS(978), + [anon_sym_SQUOTE] = ACTIONS(978), + [anon_sym_L_DQUOTE] = ACTIONS(978), + [anon_sym_u_DQUOTE] = ACTIONS(978), + [anon_sym_U_DQUOTE] = ACTIONS(978), + [anon_sym_u8_DQUOTE] = ACTIONS(978), + [anon_sym_DQUOTE] = ACTIONS(978), + [sym_true] = ACTIONS(976), + [sym_false] = ACTIONS(976), + [sym_null] = ACTIONS(976), + [sym_comment] = ACTIONS(3), + }, + [275] = { + [sym_identifier] = ACTIONS(1038), + [aux_sym_preproc_include_token1] = ACTIONS(1038), + [aux_sym_preproc_def_token1] = ACTIONS(1038), + [aux_sym_preproc_if_token1] = ACTIONS(1038), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1038), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1038), + [sym_preproc_directive] = ACTIONS(1038), + [anon_sym_LPAREN2] = ACTIONS(1040), + [anon_sym_BANG] = ACTIONS(1040), + [anon_sym_TILDE] = ACTIONS(1040), + [anon_sym_DASH] = ACTIONS(1038), + [anon_sym_PLUS] = ACTIONS(1038), + [anon_sym_STAR] = ACTIONS(1040), + [anon_sym_AMP] = ACTIONS(1040), + [anon_sym_SEMI] = ACTIONS(1040), + [anon_sym_typedef] = ACTIONS(1038), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym___attribute__] = ACTIONS(1038), + [anon_sym_LBRACE] = ACTIONS(1040), + [anon_sym_RBRACE] = ACTIONS(1040), + [anon_sym_static] = ACTIONS(1038), + [anon_sym_auto] = ACTIONS(1038), + [anon_sym_register] = ACTIONS(1038), + [anon_sym_inline] = ACTIONS(1038), + [anon_sym_const] = ACTIONS(1038), + [anon_sym_volatile] = ACTIONS(1038), + [anon_sym_restrict] = ACTIONS(1038), + [anon_sym__Atomic] = ACTIONS(1038), + [anon_sym_signed] = ACTIONS(1038), + [anon_sym_unsigned] = ACTIONS(1038), + [anon_sym_long] = ACTIONS(1038), + [anon_sym_short] = ACTIONS(1038), + [sym_primitive_type] = ACTIONS(1038), + [anon_sym_enum] = ACTIONS(1038), + [anon_sym_struct] = ACTIONS(1038), + [anon_sym_union] = ACTIONS(1038), + [anon_sym_if] = ACTIONS(1038), + [anon_sym_else] = ACTIONS(1038), + [anon_sym_switch] = ACTIONS(1038), + [anon_sym_case] = ACTIONS(1038), + [anon_sym_default] = ACTIONS(1038), + [anon_sym_while] = ACTIONS(1038), + [anon_sym_do] = ACTIONS(1038), + [anon_sym_for] = ACTIONS(1038), + [anon_sym_return] = ACTIONS(1038), + [anon_sym_break] = ACTIONS(1038), + [anon_sym_continue] = ACTIONS(1038), + [anon_sym_goto] = ACTIONS(1038), + [anon_sym_DASH_DASH] = ACTIONS(1040), + [anon_sym_PLUS_PLUS] = ACTIONS(1040), + [anon_sym_sizeof] = ACTIONS(1038), + [sym_number_literal] = ACTIONS(1040), + [anon_sym_L_SQUOTE] = ACTIONS(1040), + [anon_sym_u_SQUOTE] = ACTIONS(1040), + [anon_sym_U_SQUOTE] = ACTIONS(1040), + [anon_sym_u8_SQUOTE] = ACTIONS(1040), + [anon_sym_SQUOTE] = ACTIONS(1040), + [anon_sym_L_DQUOTE] = ACTIONS(1040), + [anon_sym_u_DQUOTE] = ACTIONS(1040), + [anon_sym_U_DQUOTE] = ACTIONS(1040), + [anon_sym_u8_DQUOTE] = ACTIONS(1040), + [anon_sym_DQUOTE] = ACTIONS(1040), + [sym_true] = ACTIONS(1038), + [sym_false] = ACTIONS(1038), + [sym_null] = ACTIONS(1038), + [sym_comment] = ACTIONS(3), + }, + [276] = { + [sym_identifier] = ACTIONS(1062), + [aux_sym_preproc_include_token1] = ACTIONS(1062), + [aux_sym_preproc_def_token1] = ACTIONS(1062), + [aux_sym_preproc_if_token1] = ACTIONS(1062), + [aux_sym_preproc_if_token2] = ACTIONS(1062), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1062), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1062), + [sym_preproc_directive] = ACTIONS(1062), + [anon_sym_LPAREN2] = ACTIONS(1064), + [anon_sym_BANG] = ACTIONS(1064), + [anon_sym_TILDE] = ACTIONS(1064), + [anon_sym_DASH] = ACTIONS(1062), + [anon_sym_PLUS] = ACTIONS(1062), + [anon_sym_STAR] = ACTIONS(1064), + [anon_sym_AMP] = ACTIONS(1064), + [anon_sym_SEMI] = ACTIONS(1064), + [anon_sym_typedef] = ACTIONS(1062), + [anon_sym_extern] = ACTIONS(1062), + [anon_sym___attribute__] = ACTIONS(1062), + [anon_sym_LBRACE] = ACTIONS(1064), + [anon_sym_static] = ACTIONS(1062), + [anon_sym_auto] = ACTIONS(1062), + [anon_sym_register] = ACTIONS(1062), + [anon_sym_inline] = ACTIONS(1062), + [anon_sym_const] = ACTIONS(1062), + [anon_sym_volatile] = ACTIONS(1062), + [anon_sym_restrict] = ACTIONS(1062), + [anon_sym__Atomic] = ACTIONS(1062), + [anon_sym_signed] = ACTIONS(1062), + [anon_sym_unsigned] = ACTIONS(1062), + [anon_sym_long] = ACTIONS(1062), + [anon_sym_short] = ACTIONS(1062), + [sym_primitive_type] = ACTIONS(1062), + [anon_sym_enum] = ACTIONS(1062), + [anon_sym_struct] = ACTIONS(1062), + [anon_sym_union] = ACTIONS(1062), + [anon_sym_if] = ACTIONS(1062), + [anon_sym_else] = ACTIONS(1062), + [anon_sym_switch] = ACTIONS(1062), + [anon_sym_case] = ACTIONS(1062), + [anon_sym_default] = ACTIONS(1062), + [anon_sym_while] = ACTIONS(1062), + [anon_sym_do] = ACTIONS(1062), + [anon_sym_for] = ACTIONS(1062), + [anon_sym_return] = ACTIONS(1062), + [anon_sym_break] = ACTIONS(1062), + [anon_sym_continue] = ACTIONS(1062), + [anon_sym_goto] = ACTIONS(1062), + [anon_sym_DASH_DASH] = ACTIONS(1064), + [anon_sym_PLUS_PLUS] = ACTIONS(1064), + [anon_sym_sizeof] = ACTIONS(1062), + [sym_number_literal] = ACTIONS(1064), + [anon_sym_L_SQUOTE] = ACTIONS(1064), + [anon_sym_u_SQUOTE] = ACTIONS(1064), + [anon_sym_U_SQUOTE] = ACTIONS(1064), + [anon_sym_u8_SQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1064), + [anon_sym_L_DQUOTE] = ACTIONS(1064), + [anon_sym_u_DQUOTE] = ACTIONS(1064), + [anon_sym_U_DQUOTE] = ACTIONS(1064), + [anon_sym_u8_DQUOTE] = ACTIONS(1064), + [anon_sym_DQUOTE] = ACTIONS(1064), + [sym_true] = ACTIONS(1062), + [sym_false] = ACTIONS(1062), + [sym_null] = ACTIONS(1062), [sym_comment] = ACTIONS(3), }, - [288] = { - [ts_builtin_sym_end] = ACTIONS(1036), - [sym_identifier] = ACTIONS(1034), - [aux_sym_preproc_include_token1] = ACTIONS(1034), - [aux_sym_preproc_def_token1] = ACTIONS(1034), - [aux_sym_preproc_if_token1] = ACTIONS(1034), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1034), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1034), - [sym_preproc_directive] = ACTIONS(1034), - [anon_sym_LPAREN2] = ACTIONS(1036), - [anon_sym_BANG] = ACTIONS(1036), - [anon_sym_TILDE] = ACTIONS(1036), - [anon_sym_DASH] = ACTIONS(1034), - [anon_sym_PLUS] = ACTIONS(1034), - [anon_sym_STAR] = ACTIONS(1036), - [anon_sym_AMP] = ACTIONS(1036), - [anon_sym_SEMI] = ACTIONS(1036), - [anon_sym_typedef] = ACTIONS(1034), - [anon_sym_extern] = ACTIONS(1034), - [anon_sym___attribute__] = ACTIONS(1034), - [anon_sym_LBRACE] = ACTIONS(1036), - [anon_sym_static] = ACTIONS(1034), - [anon_sym_auto] = ACTIONS(1034), - [anon_sym_register] = ACTIONS(1034), - [anon_sym_inline] = ACTIONS(1034), - [anon_sym_const] = ACTIONS(1034), - [anon_sym_volatile] = ACTIONS(1034), - [anon_sym_restrict] = ACTIONS(1034), - [anon_sym__Atomic] = ACTIONS(1034), - [anon_sym_signed] = ACTIONS(1034), - [anon_sym_unsigned] = ACTIONS(1034), - [anon_sym_long] = ACTIONS(1034), - [anon_sym_short] = ACTIONS(1034), - [sym_primitive_type] = ACTIONS(1034), - [anon_sym_enum] = ACTIONS(1034), - [anon_sym_struct] = ACTIONS(1034), - [anon_sym_union] = ACTIONS(1034), - [anon_sym_if] = ACTIONS(1034), - [anon_sym_else] = ACTIONS(1034), - [anon_sym_switch] = ACTIONS(1034), - [anon_sym_case] = ACTIONS(1034), - [anon_sym_default] = ACTIONS(1034), - [anon_sym_while] = ACTIONS(1034), - [anon_sym_do] = ACTIONS(1034), - [anon_sym_for] = ACTIONS(1034), - [anon_sym_return] = ACTIONS(1034), - [anon_sym_break] = ACTIONS(1034), - [anon_sym_continue] = ACTIONS(1034), - [anon_sym_goto] = ACTIONS(1034), - [anon_sym_DASH_DASH] = ACTIONS(1036), - [anon_sym_PLUS_PLUS] = ACTIONS(1036), - [anon_sym_sizeof] = ACTIONS(1034), - [sym_number_literal] = ACTIONS(1036), - [anon_sym_L_SQUOTE] = ACTIONS(1036), - [anon_sym_u_SQUOTE] = ACTIONS(1036), - [anon_sym_U_SQUOTE] = ACTIONS(1036), - [anon_sym_u8_SQUOTE] = ACTIONS(1036), - [anon_sym_SQUOTE] = ACTIONS(1036), - [anon_sym_L_DQUOTE] = ACTIONS(1036), - [anon_sym_u_DQUOTE] = ACTIONS(1036), - [anon_sym_U_DQUOTE] = ACTIONS(1036), - [anon_sym_u8_DQUOTE] = ACTIONS(1036), - [anon_sym_DQUOTE] = ACTIONS(1036), - [sym_true] = ACTIONS(1034), - [sym_false] = ACTIONS(1034), - [sym_null] = ACTIONS(1034), + [277] = { + [sym_identifier] = ACTIONS(980), + [aux_sym_preproc_include_token1] = ACTIONS(980), + [aux_sym_preproc_def_token1] = ACTIONS(980), + [aux_sym_preproc_if_token1] = ACTIONS(980), + [aux_sym_preproc_ifdef_token1] = ACTIONS(980), + [aux_sym_preproc_ifdef_token2] = ACTIONS(980), + [sym_preproc_directive] = ACTIONS(980), + [anon_sym_LPAREN2] = ACTIONS(982), + [anon_sym_BANG] = ACTIONS(982), + [anon_sym_TILDE] = ACTIONS(982), + [anon_sym_DASH] = ACTIONS(980), + [anon_sym_PLUS] = ACTIONS(980), + [anon_sym_STAR] = ACTIONS(982), + [anon_sym_AMP] = ACTIONS(982), + [anon_sym_SEMI] = ACTIONS(982), + [anon_sym_typedef] = ACTIONS(980), + [anon_sym_extern] = ACTIONS(980), + [anon_sym___attribute__] = ACTIONS(980), + [anon_sym_LBRACE] = ACTIONS(982), + [anon_sym_RBRACE] = ACTIONS(982), + [anon_sym_static] = ACTIONS(980), + [anon_sym_auto] = ACTIONS(980), + [anon_sym_register] = ACTIONS(980), + [anon_sym_inline] = ACTIONS(980), + [anon_sym_const] = ACTIONS(980), + [anon_sym_volatile] = ACTIONS(980), + [anon_sym_restrict] = ACTIONS(980), + [anon_sym__Atomic] = ACTIONS(980), + [anon_sym_signed] = ACTIONS(980), + [anon_sym_unsigned] = ACTIONS(980), + [anon_sym_long] = ACTIONS(980), + [anon_sym_short] = ACTIONS(980), + [sym_primitive_type] = ACTIONS(980), + [anon_sym_enum] = ACTIONS(980), + [anon_sym_struct] = ACTIONS(980), + [anon_sym_union] = ACTIONS(980), + [anon_sym_if] = ACTIONS(980), + [anon_sym_else] = ACTIONS(980), + [anon_sym_switch] = ACTIONS(980), + [anon_sym_case] = ACTIONS(980), + [anon_sym_default] = ACTIONS(980), + [anon_sym_while] = ACTIONS(980), + [anon_sym_do] = ACTIONS(980), + [anon_sym_for] = ACTIONS(980), + [anon_sym_return] = ACTIONS(980), + [anon_sym_break] = ACTIONS(980), + [anon_sym_continue] = ACTIONS(980), + [anon_sym_goto] = ACTIONS(980), + [anon_sym_DASH_DASH] = ACTIONS(982), + [anon_sym_PLUS_PLUS] = ACTIONS(982), + [anon_sym_sizeof] = ACTIONS(980), + [sym_number_literal] = ACTIONS(982), + [anon_sym_L_SQUOTE] = ACTIONS(982), + [anon_sym_u_SQUOTE] = ACTIONS(982), + [anon_sym_U_SQUOTE] = ACTIONS(982), + [anon_sym_u8_SQUOTE] = ACTIONS(982), + [anon_sym_SQUOTE] = ACTIONS(982), + [anon_sym_L_DQUOTE] = ACTIONS(982), + [anon_sym_u_DQUOTE] = ACTIONS(982), + [anon_sym_U_DQUOTE] = ACTIONS(982), + [anon_sym_u8_DQUOTE] = ACTIONS(982), + [anon_sym_DQUOTE] = ACTIONS(982), + [sym_true] = ACTIONS(980), + [sym_false] = ACTIONS(980), + [sym_null] = ACTIONS(980), [sym_comment] = ACTIONS(3), }, - [289] = { - [sym_identifier] = ACTIONS(1034), - [aux_sym_preproc_include_token1] = ACTIONS(1034), - [aux_sym_preproc_def_token1] = ACTIONS(1034), - [aux_sym_preproc_if_token1] = ACTIONS(1034), - [aux_sym_preproc_if_token2] = ACTIONS(1034), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1034), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1034), - [sym_preproc_directive] = ACTIONS(1034), - [anon_sym_LPAREN2] = ACTIONS(1036), - [anon_sym_BANG] = ACTIONS(1036), - [anon_sym_TILDE] = ACTIONS(1036), - [anon_sym_DASH] = ACTIONS(1034), - [anon_sym_PLUS] = ACTIONS(1034), - [anon_sym_STAR] = ACTIONS(1036), - [anon_sym_AMP] = ACTIONS(1036), - [anon_sym_SEMI] = ACTIONS(1036), - [anon_sym_typedef] = ACTIONS(1034), - [anon_sym_extern] = ACTIONS(1034), - [anon_sym___attribute__] = ACTIONS(1034), - [anon_sym_LBRACE] = ACTIONS(1036), - [anon_sym_static] = ACTIONS(1034), - [anon_sym_auto] = ACTIONS(1034), - [anon_sym_register] = ACTIONS(1034), - [anon_sym_inline] = ACTIONS(1034), - [anon_sym_const] = ACTIONS(1034), - [anon_sym_volatile] = ACTIONS(1034), - [anon_sym_restrict] = ACTIONS(1034), - [anon_sym__Atomic] = ACTIONS(1034), - [anon_sym_signed] = ACTIONS(1034), - [anon_sym_unsigned] = ACTIONS(1034), - [anon_sym_long] = ACTIONS(1034), - [anon_sym_short] = ACTIONS(1034), - [sym_primitive_type] = ACTIONS(1034), - [anon_sym_enum] = ACTIONS(1034), - [anon_sym_struct] = ACTIONS(1034), - [anon_sym_union] = ACTIONS(1034), - [anon_sym_if] = ACTIONS(1034), - [anon_sym_else] = ACTIONS(1034), - [anon_sym_switch] = ACTIONS(1034), - [anon_sym_case] = ACTIONS(1034), - [anon_sym_default] = ACTIONS(1034), - [anon_sym_while] = ACTIONS(1034), - [anon_sym_do] = ACTIONS(1034), - [anon_sym_for] = ACTIONS(1034), - [anon_sym_return] = ACTIONS(1034), - [anon_sym_break] = ACTIONS(1034), - [anon_sym_continue] = ACTIONS(1034), - [anon_sym_goto] = ACTIONS(1034), - [anon_sym_DASH_DASH] = ACTIONS(1036), - [anon_sym_PLUS_PLUS] = ACTIONS(1036), - [anon_sym_sizeof] = ACTIONS(1034), - [sym_number_literal] = ACTIONS(1036), - [anon_sym_L_SQUOTE] = ACTIONS(1036), - [anon_sym_u_SQUOTE] = ACTIONS(1036), - [anon_sym_U_SQUOTE] = ACTIONS(1036), - [anon_sym_u8_SQUOTE] = ACTIONS(1036), - [anon_sym_SQUOTE] = ACTIONS(1036), - [anon_sym_L_DQUOTE] = ACTIONS(1036), - [anon_sym_u_DQUOTE] = ACTIONS(1036), - [anon_sym_U_DQUOTE] = ACTIONS(1036), - [anon_sym_u8_DQUOTE] = ACTIONS(1036), - [anon_sym_DQUOTE] = ACTIONS(1036), - [sym_true] = ACTIONS(1034), - [sym_false] = ACTIONS(1034), - [sym_null] = ACTIONS(1034), + [278] = { + [sym_identifier] = ACTIONS(1026), + [aux_sym_preproc_include_token1] = ACTIONS(1026), + [aux_sym_preproc_def_token1] = ACTIONS(1026), + [aux_sym_preproc_if_token1] = ACTIONS(1026), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1026), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1026), + [sym_preproc_directive] = ACTIONS(1026), + [anon_sym_LPAREN2] = ACTIONS(1028), + [anon_sym_BANG] = ACTIONS(1028), + [anon_sym_TILDE] = ACTIONS(1028), + [anon_sym_DASH] = ACTIONS(1026), + [anon_sym_PLUS] = ACTIONS(1026), + [anon_sym_STAR] = ACTIONS(1028), + [anon_sym_AMP] = ACTIONS(1028), + [anon_sym_SEMI] = ACTIONS(1028), + [anon_sym_typedef] = ACTIONS(1026), + [anon_sym_extern] = ACTIONS(1026), + [anon_sym___attribute__] = ACTIONS(1026), + [anon_sym_LBRACE] = ACTIONS(1028), + [anon_sym_RBRACE] = ACTIONS(1028), + [anon_sym_static] = ACTIONS(1026), + [anon_sym_auto] = ACTIONS(1026), + [anon_sym_register] = ACTIONS(1026), + [anon_sym_inline] = ACTIONS(1026), + [anon_sym_const] = ACTIONS(1026), + [anon_sym_volatile] = ACTIONS(1026), + [anon_sym_restrict] = ACTIONS(1026), + [anon_sym__Atomic] = ACTIONS(1026), + [anon_sym_signed] = ACTIONS(1026), + [anon_sym_unsigned] = ACTIONS(1026), + [anon_sym_long] = ACTIONS(1026), + [anon_sym_short] = ACTIONS(1026), + [sym_primitive_type] = ACTIONS(1026), + [anon_sym_enum] = ACTIONS(1026), + [anon_sym_struct] = ACTIONS(1026), + [anon_sym_union] = ACTIONS(1026), + [anon_sym_if] = ACTIONS(1026), + [anon_sym_else] = ACTIONS(1026), + [anon_sym_switch] = ACTIONS(1026), + [anon_sym_case] = ACTIONS(1026), + [anon_sym_default] = ACTIONS(1026), + [anon_sym_while] = ACTIONS(1026), + [anon_sym_do] = ACTIONS(1026), + [anon_sym_for] = ACTIONS(1026), + [anon_sym_return] = ACTIONS(1026), + [anon_sym_break] = ACTIONS(1026), + [anon_sym_continue] = ACTIONS(1026), + [anon_sym_goto] = ACTIONS(1026), + [anon_sym_DASH_DASH] = ACTIONS(1028), + [anon_sym_PLUS_PLUS] = ACTIONS(1028), + [anon_sym_sizeof] = ACTIONS(1026), + [sym_number_literal] = ACTIONS(1028), + [anon_sym_L_SQUOTE] = ACTIONS(1028), + [anon_sym_u_SQUOTE] = ACTIONS(1028), + [anon_sym_U_SQUOTE] = ACTIONS(1028), + [anon_sym_u8_SQUOTE] = ACTIONS(1028), + [anon_sym_SQUOTE] = ACTIONS(1028), + [anon_sym_L_DQUOTE] = ACTIONS(1028), + [anon_sym_u_DQUOTE] = ACTIONS(1028), + [anon_sym_U_DQUOTE] = ACTIONS(1028), + [anon_sym_u8_DQUOTE] = ACTIONS(1028), + [anon_sym_DQUOTE] = ACTIONS(1028), + [sym_true] = ACTIONS(1026), + [sym_false] = ACTIONS(1026), + [sym_null] = ACTIONS(1026), [sym_comment] = ACTIONS(3), }, - [290] = { - [sym_identifier] = ACTIONS(1074), - [aux_sym_preproc_include_token1] = ACTIONS(1074), - [aux_sym_preproc_def_token1] = ACTIONS(1074), - [aux_sym_preproc_if_token1] = ACTIONS(1074), - [aux_sym_preproc_if_token2] = ACTIONS(1074), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1074), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1074), - [sym_preproc_directive] = ACTIONS(1074), - [anon_sym_LPAREN2] = ACTIONS(1076), - [anon_sym_BANG] = ACTIONS(1076), - [anon_sym_TILDE] = ACTIONS(1076), - [anon_sym_DASH] = ACTIONS(1074), - [anon_sym_PLUS] = ACTIONS(1074), - [anon_sym_STAR] = ACTIONS(1076), - [anon_sym_AMP] = ACTIONS(1076), - [anon_sym_SEMI] = ACTIONS(1076), - [anon_sym_typedef] = ACTIONS(1074), - [anon_sym_extern] = ACTIONS(1074), - [anon_sym___attribute__] = ACTIONS(1074), - [anon_sym_LBRACE] = ACTIONS(1076), - [anon_sym_static] = ACTIONS(1074), - [anon_sym_auto] = ACTIONS(1074), - [anon_sym_register] = ACTIONS(1074), - [anon_sym_inline] = ACTIONS(1074), - [anon_sym_const] = ACTIONS(1074), - [anon_sym_volatile] = ACTIONS(1074), - [anon_sym_restrict] = ACTIONS(1074), - [anon_sym__Atomic] = ACTIONS(1074), - [anon_sym_signed] = ACTIONS(1074), - [anon_sym_unsigned] = ACTIONS(1074), - [anon_sym_long] = ACTIONS(1074), - [anon_sym_short] = ACTIONS(1074), - [sym_primitive_type] = ACTIONS(1074), - [anon_sym_enum] = ACTIONS(1074), - [anon_sym_struct] = ACTIONS(1074), - [anon_sym_union] = ACTIONS(1074), - [anon_sym_if] = ACTIONS(1074), - [anon_sym_else] = ACTIONS(1074), - [anon_sym_switch] = ACTIONS(1074), - [anon_sym_case] = ACTIONS(1074), - [anon_sym_default] = ACTIONS(1074), - [anon_sym_while] = ACTIONS(1074), - [anon_sym_do] = ACTIONS(1074), - [anon_sym_for] = ACTIONS(1074), - [anon_sym_return] = ACTIONS(1074), - [anon_sym_break] = ACTIONS(1074), - [anon_sym_continue] = ACTIONS(1074), - [anon_sym_goto] = ACTIONS(1074), - [anon_sym_DASH_DASH] = ACTIONS(1076), - [anon_sym_PLUS_PLUS] = ACTIONS(1076), - [anon_sym_sizeof] = ACTIONS(1074), - [sym_number_literal] = ACTIONS(1076), - [anon_sym_L_SQUOTE] = ACTIONS(1076), - [anon_sym_u_SQUOTE] = ACTIONS(1076), - [anon_sym_U_SQUOTE] = ACTIONS(1076), - [anon_sym_u8_SQUOTE] = ACTIONS(1076), - [anon_sym_SQUOTE] = ACTIONS(1076), - [anon_sym_L_DQUOTE] = ACTIONS(1076), - [anon_sym_u_DQUOTE] = ACTIONS(1076), - [anon_sym_U_DQUOTE] = ACTIONS(1076), - [anon_sym_u8_DQUOTE] = ACTIONS(1076), - [anon_sym_DQUOTE] = ACTIONS(1076), - [sym_true] = ACTIONS(1074), - [sym_false] = ACTIONS(1074), - [sym_null] = ACTIONS(1074), + [279] = { + [sym_identifier] = ACTIONS(1046), + [aux_sym_preproc_include_token1] = ACTIONS(1046), + [aux_sym_preproc_def_token1] = ACTIONS(1046), + [aux_sym_preproc_if_token1] = ACTIONS(1046), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1046), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1046), + [sym_preproc_directive] = ACTIONS(1046), + [anon_sym_LPAREN2] = ACTIONS(1048), + [anon_sym_BANG] = ACTIONS(1048), + [anon_sym_TILDE] = ACTIONS(1048), + [anon_sym_DASH] = ACTIONS(1046), + [anon_sym_PLUS] = ACTIONS(1046), + [anon_sym_STAR] = ACTIONS(1048), + [anon_sym_AMP] = ACTIONS(1048), + [anon_sym_SEMI] = ACTIONS(1048), + [anon_sym_typedef] = ACTIONS(1046), + [anon_sym_extern] = ACTIONS(1046), + [anon_sym___attribute__] = ACTIONS(1046), + [anon_sym_LBRACE] = ACTIONS(1048), + [anon_sym_RBRACE] = ACTIONS(1048), + [anon_sym_static] = ACTIONS(1046), + [anon_sym_auto] = ACTIONS(1046), + [anon_sym_register] = ACTIONS(1046), + [anon_sym_inline] = ACTIONS(1046), + [anon_sym_const] = ACTIONS(1046), + [anon_sym_volatile] = ACTIONS(1046), + [anon_sym_restrict] = ACTIONS(1046), + [anon_sym__Atomic] = ACTIONS(1046), + [anon_sym_signed] = ACTIONS(1046), + [anon_sym_unsigned] = ACTIONS(1046), + [anon_sym_long] = ACTIONS(1046), + [anon_sym_short] = ACTIONS(1046), + [sym_primitive_type] = ACTIONS(1046), + [anon_sym_enum] = ACTIONS(1046), + [anon_sym_struct] = ACTIONS(1046), + [anon_sym_union] = ACTIONS(1046), + [anon_sym_if] = ACTIONS(1046), + [anon_sym_else] = ACTIONS(1046), + [anon_sym_switch] = ACTIONS(1046), + [anon_sym_case] = ACTIONS(1046), + [anon_sym_default] = ACTIONS(1046), + [anon_sym_while] = ACTIONS(1046), + [anon_sym_do] = ACTIONS(1046), + [anon_sym_for] = ACTIONS(1046), + [anon_sym_return] = ACTIONS(1046), + [anon_sym_break] = ACTIONS(1046), + [anon_sym_continue] = ACTIONS(1046), + [anon_sym_goto] = ACTIONS(1046), + [anon_sym_DASH_DASH] = ACTIONS(1048), + [anon_sym_PLUS_PLUS] = ACTIONS(1048), + [anon_sym_sizeof] = ACTIONS(1046), + [sym_number_literal] = ACTIONS(1048), + [anon_sym_L_SQUOTE] = ACTIONS(1048), + [anon_sym_u_SQUOTE] = ACTIONS(1048), + [anon_sym_U_SQUOTE] = ACTIONS(1048), + [anon_sym_u8_SQUOTE] = ACTIONS(1048), + [anon_sym_SQUOTE] = ACTIONS(1048), + [anon_sym_L_DQUOTE] = ACTIONS(1048), + [anon_sym_u_DQUOTE] = ACTIONS(1048), + [anon_sym_U_DQUOTE] = ACTIONS(1048), + [anon_sym_u8_DQUOTE] = ACTIONS(1048), + [anon_sym_DQUOTE] = ACTIONS(1048), + [sym_true] = ACTIONS(1046), + [sym_false] = ACTIONS(1046), + [sym_null] = ACTIONS(1046), [sym_comment] = ACTIONS(3), }, - [291] = { - [ts_builtin_sym_end] = ACTIONS(1044), - [sym_identifier] = ACTIONS(1042), - [aux_sym_preproc_include_token1] = ACTIONS(1042), - [aux_sym_preproc_def_token1] = ACTIONS(1042), - [aux_sym_preproc_if_token1] = ACTIONS(1042), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1042), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1042), - [sym_preproc_directive] = ACTIONS(1042), - [anon_sym_LPAREN2] = ACTIONS(1044), - [anon_sym_BANG] = ACTIONS(1044), - [anon_sym_TILDE] = ACTIONS(1044), - [anon_sym_DASH] = ACTIONS(1042), - [anon_sym_PLUS] = ACTIONS(1042), - [anon_sym_STAR] = ACTIONS(1044), - [anon_sym_AMP] = ACTIONS(1044), - [anon_sym_SEMI] = ACTIONS(1044), - [anon_sym_typedef] = ACTIONS(1042), - [anon_sym_extern] = ACTIONS(1042), - [anon_sym___attribute__] = ACTIONS(1042), - [anon_sym_LBRACE] = ACTIONS(1044), - [anon_sym_static] = ACTIONS(1042), - [anon_sym_auto] = ACTIONS(1042), - [anon_sym_register] = ACTIONS(1042), - [anon_sym_inline] = ACTIONS(1042), - [anon_sym_const] = ACTIONS(1042), - [anon_sym_volatile] = ACTIONS(1042), - [anon_sym_restrict] = ACTIONS(1042), - [anon_sym__Atomic] = ACTIONS(1042), - [anon_sym_signed] = ACTIONS(1042), - [anon_sym_unsigned] = ACTIONS(1042), - [anon_sym_long] = ACTIONS(1042), - [anon_sym_short] = ACTIONS(1042), - [sym_primitive_type] = ACTIONS(1042), - [anon_sym_enum] = ACTIONS(1042), - [anon_sym_struct] = ACTIONS(1042), - [anon_sym_union] = ACTIONS(1042), - [anon_sym_if] = ACTIONS(1042), - [anon_sym_else] = ACTIONS(1042), - [anon_sym_switch] = ACTIONS(1042), - [anon_sym_case] = ACTIONS(1042), - [anon_sym_default] = ACTIONS(1042), - [anon_sym_while] = ACTIONS(1042), - [anon_sym_do] = ACTIONS(1042), - [anon_sym_for] = ACTIONS(1042), - [anon_sym_return] = ACTIONS(1042), - [anon_sym_break] = ACTIONS(1042), - [anon_sym_continue] = ACTIONS(1042), - [anon_sym_goto] = ACTIONS(1042), - [anon_sym_DASH_DASH] = ACTIONS(1044), - [anon_sym_PLUS_PLUS] = ACTIONS(1044), - [anon_sym_sizeof] = ACTIONS(1042), - [sym_number_literal] = ACTIONS(1044), - [anon_sym_L_SQUOTE] = ACTIONS(1044), - [anon_sym_u_SQUOTE] = ACTIONS(1044), - [anon_sym_U_SQUOTE] = ACTIONS(1044), - [anon_sym_u8_SQUOTE] = ACTIONS(1044), - [anon_sym_SQUOTE] = ACTIONS(1044), - [anon_sym_L_DQUOTE] = ACTIONS(1044), - [anon_sym_u_DQUOTE] = ACTIONS(1044), - [anon_sym_U_DQUOTE] = ACTIONS(1044), - [anon_sym_u8_DQUOTE] = ACTIONS(1044), - [anon_sym_DQUOTE] = ACTIONS(1044), - [sym_true] = ACTIONS(1042), - [sym_false] = ACTIONS(1042), - [sym_null] = ACTIONS(1042), + [280] = { + [ts_builtin_sym_end] = ACTIONS(978), + [sym_identifier] = ACTIONS(976), + [aux_sym_preproc_include_token1] = ACTIONS(976), + [aux_sym_preproc_def_token1] = ACTIONS(976), + [aux_sym_preproc_if_token1] = ACTIONS(976), + [aux_sym_preproc_ifdef_token1] = ACTIONS(976), + [aux_sym_preproc_ifdef_token2] = ACTIONS(976), + [sym_preproc_directive] = ACTIONS(976), + [anon_sym_LPAREN2] = ACTIONS(978), + [anon_sym_BANG] = ACTIONS(978), + [anon_sym_TILDE] = ACTIONS(978), + [anon_sym_DASH] = ACTIONS(976), + [anon_sym_PLUS] = ACTIONS(976), + [anon_sym_STAR] = ACTIONS(978), + [anon_sym_AMP] = ACTIONS(978), + [anon_sym_SEMI] = ACTIONS(978), + [anon_sym_typedef] = ACTIONS(976), + [anon_sym_extern] = ACTIONS(976), + [anon_sym___attribute__] = ACTIONS(976), + [anon_sym_LBRACE] = ACTIONS(978), + [anon_sym_static] = ACTIONS(976), + [anon_sym_auto] = ACTIONS(976), + [anon_sym_register] = ACTIONS(976), + [anon_sym_inline] = ACTIONS(976), + [anon_sym_const] = ACTIONS(976), + [anon_sym_volatile] = ACTIONS(976), + [anon_sym_restrict] = ACTIONS(976), + [anon_sym__Atomic] = ACTIONS(976), + [anon_sym_signed] = ACTIONS(976), + [anon_sym_unsigned] = ACTIONS(976), + [anon_sym_long] = ACTIONS(976), + [anon_sym_short] = ACTIONS(976), + [sym_primitive_type] = ACTIONS(976), + [anon_sym_enum] = ACTIONS(976), + [anon_sym_struct] = ACTIONS(976), + [anon_sym_union] = ACTIONS(976), + [anon_sym_if] = ACTIONS(976), + [anon_sym_else] = ACTIONS(976), + [anon_sym_switch] = ACTIONS(976), + [anon_sym_case] = ACTIONS(976), + [anon_sym_default] = ACTIONS(976), + [anon_sym_while] = ACTIONS(976), + [anon_sym_do] = ACTIONS(976), + [anon_sym_for] = ACTIONS(976), + [anon_sym_return] = ACTIONS(976), + [anon_sym_break] = ACTIONS(976), + [anon_sym_continue] = ACTIONS(976), + [anon_sym_goto] = ACTIONS(976), + [anon_sym_DASH_DASH] = ACTIONS(978), + [anon_sym_PLUS_PLUS] = ACTIONS(978), + [anon_sym_sizeof] = ACTIONS(976), + [sym_number_literal] = ACTIONS(978), + [anon_sym_L_SQUOTE] = ACTIONS(978), + [anon_sym_u_SQUOTE] = ACTIONS(978), + [anon_sym_U_SQUOTE] = ACTIONS(978), + [anon_sym_u8_SQUOTE] = ACTIONS(978), + [anon_sym_SQUOTE] = ACTIONS(978), + [anon_sym_L_DQUOTE] = ACTIONS(978), + [anon_sym_u_DQUOTE] = ACTIONS(978), + [anon_sym_U_DQUOTE] = ACTIONS(978), + [anon_sym_u8_DQUOTE] = ACTIONS(978), + [anon_sym_DQUOTE] = ACTIONS(978), + [sym_true] = ACTIONS(976), + [sym_false] = ACTIONS(976), + [sym_null] = ACTIONS(976), [sym_comment] = ACTIONS(3), }, - [292] = { + [281] = { [ts_builtin_sym_end] = ACTIONS(1084), [sym_identifier] = ACTIONS(1082), [aux_sym_preproc_include_token1] = ACTIONS(1082), @@ -29640,679 +28908,823 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1082), [sym_comment] = ACTIONS(3), }, - [293] = { - [sym_identifier] = ACTIONS(1042), - [aux_sym_preproc_include_token1] = ACTIONS(1042), - [aux_sym_preproc_def_token1] = ACTIONS(1042), - [aux_sym_preproc_if_token1] = ACTIONS(1042), - [aux_sym_preproc_if_token2] = ACTIONS(1042), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1042), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1042), - [sym_preproc_directive] = ACTIONS(1042), - [anon_sym_LPAREN2] = ACTIONS(1044), - [anon_sym_BANG] = ACTIONS(1044), - [anon_sym_TILDE] = ACTIONS(1044), - [anon_sym_DASH] = ACTIONS(1042), - [anon_sym_PLUS] = ACTIONS(1042), - [anon_sym_STAR] = ACTIONS(1044), - [anon_sym_AMP] = ACTIONS(1044), - [anon_sym_SEMI] = ACTIONS(1044), - [anon_sym_typedef] = ACTIONS(1042), - [anon_sym_extern] = ACTIONS(1042), - [anon_sym___attribute__] = ACTIONS(1042), - [anon_sym_LBRACE] = ACTIONS(1044), - [anon_sym_static] = ACTIONS(1042), - [anon_sym_auto] = ACTIONS(1042), - [anon_sym_register] = ACTIONS(1042), - [anon_sym_inline] = ACTIONS(1042), - [anon_sym_const] = ACTIONS(1042), - [anon_sym_volatile] = ACTIONS(1042), - [anon_sym_restrict] = ACTIONS(1042), - [anon_sym__Atomic] = ACTIONS(1042), - [anon_sym_signed] = ACTIONS(1042), - [anon_sym_unsigned] = ACTIONS(1042), - [anon_sym_long] = ACTIONS(1042), - [anon_sym_short] = ACTIONS(1042), - [sym_primitive_type] = ACTIONS(1042), - [anon_sym_enum] = ACTIONS(1042), - [anon_sym_struct] = ACTIONS(1042), - [anon_sym_union] = ACTIONS(1042), - [anon_sym_if] = ACTIONS(1042), - [anon_sym_else] = ACTIONS(1042), - [anon_sym_switch] = ACTIONS(1042), - [anon_sym_case] = ACTIONS(1042), - [anon_sym_default] = ACTIONS(1042), - [anon_sym_while] = ACTIONS(1042), - [anon_sym_do] = ACTIONS(1042), - [anon_sym_for] = ACTIONS(1042), - [anon_sym_return] = ACTIONS(1042), - [anon_sym_break] = ACTIONS(1042), - [anon_sym_continue] = ACTIONS(1042), - [anon_sym_goto] = ACTIONS(1042), - [anon_sym_DASH_DASH] = ACTIONS(1044), - [anon_sym_PLUS_PLUS] = ACTIONS(1044), - [anon_sym_sizeof] = ACTIONS(1042), - [sym_number_literal] = ACTIONS(1044), - [anon_sym_L_SQUOTE] = ACTIONS(1044), - [anon_sym_u_SQUOTE] = ACTIONS(1044), - [anon_sym_U_SQUOTE] = ACTIONS(1044), - [anon_sym_u8_SQUOTE] = ACTIONS(1044), - [anon_sym_SQUOTE] = ACTIONS(1044), - [anon_sym_L_DQUOTE] = ACTIONS(1044), - [anon_sym_u_DQUOTE] = ACTIONS(1044), - [anon_sym_U_DQUOTE] = ACTIONS(1044), - [anon_sym_u8_DQUOTE] = ACTIONS(1044), - [anon_sym_DQUOTE] = ACTIONS(1044), - [sym_true] = ACTIONS(1042), - [sym_false] = ACTIONS(1042), - [sym_null] = ACTIONS(1042), + [282] = { + [ts_builtin_sym_end] = ACTIONS(1088), + [sym_identifier] = ACTIONS(1086), + [aux_sym_preproc_include_token1] = ACTIONS(1086), + [aux_sym_preproc_def_token1] = ACTIONS(1086), + [aux_sym_preproc_if_token1] = ACTIONS(1086), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1086), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1086), + [sym_preproc_directive] = ACTIONS(1086), + [anon_sym_LPAREN2] = ACTIONS(1088), + [anon_sym_BANG] = ACTIONS(1088), + [anon_sym_TILDE] = ACTIONS(1088), + [anon_sym_DASH] = ACTIONS(1086), + [anon_sym_PLUS] = ACTIONS(1086), + [anon_sym_STAR] = ACTIONS(1088), + [anon_sym_AMP] = ACTIONS(1088), + [anon_sym_SEMI] = ACTIONS(1088), + [anon_sym_typedef] = ACTIONS(1086), + [anon_sym_extern] = ACTIONS(1086), + [anon_sym___attribute__] = ACTIONS(1086), + [anon_sym_LBRACE] = 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_volatile] = ACTIONS(1086), + [anon_sym_restrict] = ACTIONS(1086), + [anon_sym__Atomic] = ACTIONS(1086), + [anon_sym_signed] = 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_else] = 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_DASH_DASH] = ACTIONS(1088), + [anon_sym_PLUS_PLUS] = ACTIONS(1088), + [anon_sym_sizeof] = ACTIONS(1086), + [sym_number_literal] = ACTIONS(1088), + [anon_sym_L_SQUOTE] = ACTIONS(1088), + [anon_sym_u_SQUOTE] = ACTIONS(1088), + [anon_sym_U_SQUOTE] = ACTIONS(1088), + [anon_sym_u8_SQUOTE] = ACTIONS(1088), + [anon_sym_SQUOTE] = ACTIONS(1088), + [anon_sym_L_DQUOTE] = ACTIONS(1088), + [anon_sym_u_DQUOTE] = ACTIONS(1088), + [anon_sym_U_DQUOTE] = ACTIONS(1088), + [anon_sym_u8_DQUOTE] = ACTIONS(1088), + [anon_sym_DQUOTE] = ACTIONS(1088), + [sym_true] = ACTIONS(1086), + [sym_false] = ACTIONS(1086), + [sym_null] = ACTIONS(1086), + [sym_comment] = ACTIONS(3), + }, + [283] = { + [ts_builtin_sym_end] = ACTIONS(982), + [sym_identifier] = ACTIONS(980), + [aux_sym_preproc_include_token1] = ACTIONS(980), + [aux_sym_preproc_def_token1] = ACTIONS(980), + [aux_sym_preproc_if_token1] = ACTIONS(980), + [aux_sym_preproc_ifdef_token1] = ACTIONS(980), + [aux_sym_preproc_ifdef_token2] = ACTIONS(980), + [sym_preproc_directive] = ACTIONS(980), + [anon_sym_LPAREN2] = ACTIONS(982), + [anon_sym_BANG] = ACTIONS(982), + [anon_sym_TILDE] = ACTIONS(982), + [anon_sym_DASH] = ACTIONS(980), + [anon_sym_PLUS] = ACTIONS(980), + [anon_sym_STAR] = ACTIONS(982), + [anon_sym_AMP] = ACTIONS(982), + [anon_sym_SEMI] = ACTIONS(982), + [anon_sym_typedef] = ACTIONS(980), + [anon_sym_extern] = ACTIONS(980), + [anon_sym___attribute__] = ACTIONS(980), + [anon_sym_LBRACE] = ACTIONS(982), + [anon_sym_static] = ACTIONS(980), + [anon_sym_auto] = ACTIONS(980), + [anon_sym_register] = ACTIONS(980), + [anon_sym_inline] = ACTIONS(980), + [anon_sym_const] = ACTIONS(980), + [anon_sym_volatile] = ACTIONS(980), + [anon_sym_restrict] = ACTIONS(980), + [anon_sym__Atomic] = ACTIONS(980), + [anon_sym_signed] = ACTIONS(980), + [anon_sym_unsigned] = ACTIONS(980), + [anon_sym_long] = ACTIONS(980), + [anon_sym_short] = ACTIONS(980), + [sym_primitive_type] = ACTIONS(980), + [anon_sym_enum] = ACTIONS(980), + [anon_sym_struct] = ACTIONS(980), + [anon_sym_union] = ACTIONS(980), + [anon_sym_if] = ACTIONS(980), + [anon_sym_else] = ACTIONS(980), + [anon_sym_switch] = ACTIONS(980), + [anon_sym_case] = ACTIONS(980), + [anon_sym_default] = ACTIONS(980), + [anon_sym_while] = ACTIONS(980), + [anon_sym_do] = ACTIONS(980), + [anon_sym_for] = ACTIONS(980), + [anon_sym_return] = ACTIONS(980), + [anon_sym_break] = ACTIONS(980), + [anon_sym_continue] = ACTIONS(980), + [anon_sym_goto] = ACTIONS(980), + [anon_sym_DASH_DASH] = ACTIONS(982), + [anon_sym_PLUS_PLUS] = ACTIONS(982), + [anon_sym_sizeof] = ACTIONS(980), + [sym_number_literal] = ACTIONS(982), + [anon_sym_L_SQUOTE] = ACTIONS(982), + [anon_sym_u_SQUOTE] = ACTIONS(982), + [anon_sym_U_SQUOTE] = ACTIONS(982), + [anon_sym_u8_SQUOTE] = ACTIONS(982), + [anon_sym_SQUOTE] = ACTIONS(982), + [anon_sym_L_DQUOTE] = ACTIONS(982), + [anon_sym_u_DQUOTE] = ACTIONS(982), + [anon_sym_U_DQUOTE] = ACTIONS(982), + [anon_sym_u8_DQUOTE] = ACTIONS(982), + [anon_sym_DQUOTE] = ACTIONS(982), + [sym_true] = ACTIONS(980), + [sym_false] = ACTIONS(980), + [sym_null] = ACTIONS(980), [sym_comment] = ACTIONS(3), }, - [294] = { - [sym_type_qualifier] = STATE(722), - [sym__type_specifier] = STATE(850), - [sym_sized_type_specifier] = STATE(850), - [sym_enum_specifier] = STATE(850), - [sym_struct_specifier] = STATE(850), - [sym_union_specifier] = STATE(850), - [sym__expression] = STATE(598), - [sym_comma_expression] = STATE(1190), - [sym_conditional_expression] = STATE(598), - [sym_assignment_expression] = STATE(598), - [sym_pointer_expression] = STATE(505), - [sym_unary_expression] = STATE(598), - [sym_binary_expression] = STATE(598), - [sym_update_expression] = STATE(598), - [sym_cast_expression] = STATE(598), - [sym_type_descriptor] = STATE(1188), - [sym_sizeof_expression] = STATE(598), - [sym_subscript_expression] = STATE(505), - [sym_call_expression] = STATE(505), - [sym_field_expression] = STATE(505), - [sym_compound_literal_expression] = STATE(598), - [sym_parenthesized_expression] = STATE(505), - [sym_char_literal] = STATE(598), - [sym_concatenated_string] = STATE(598), - [sym_string_literal] = STATE(376), - [sym_macro_type_specifier] = STATE(850), - [aux_sym_type_definition_repeat1] = STATE(722), - [aux_sym_sized_type_specifier_repeat1] = STATE(854), - [sym_identifier] = ACTIONS(1182), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_const] = ACTIONS(39), - [anon_sym_volatile] = ACTIONS(39), - [anon_sym_restrict] = ACTIONS(39), - [anon_sym__Atomic] = ACTIONS(39), - [anon_sym_signed] = ACTIONS(1184), - [anon_sym_unsigned] = ACTIONS(1184), - [anon_sym_long] = ACTIONS(1184), - [anon_sym_short] = ACTIONS(1184), - [sym_primitive_type] = ACTIONS(1186), - [anon_sym_enum] = ACTIONS(45), - [anon_sym_struct] = ACTIONS(47), - [anon_sym_union] = ACTIONS(49), - [anon_sym_DASH_DASH] = ACTIONS(73), - [anon_sym_PLUS_PLUS] = ACTIONS(73), - [anon_sym_sizeof] = ACTIONS(75), - [sym_number_literal] = ACTIONS(1188), - [anon_sym_L_SQUOTE] = ACTIONS(79), - [anon_sym_u_SQUOTE] = ACTIONS(79), - [anon_sym_U_SQUOTE] = ACTIONS(79), - [anon_sym_u8_SQUOTE] = ACTIONS(79), - [anon_sym_SQUOTE] = ACTIONS(79), - [anon_sym_L_DQUOTE] = ACTIONS(81), - [anon_sym_u_DQUOTE] = ACTIONS(81), - [anon_sym_U_DQUOTE] = ACTIONS(81), - [anon_sym_u8_DQUOTE] = ACTIONS(81), - [anon_sym_DQUOTE] = ACTIONS(81), - [sym_true] = ACTIONS(1190), - [sym_false] = ACTIONS(1190), - [sym_null] = ACTIONS(1190), + [284] = { + [ts_builtin_sym_end] = ACTIONS(974), + [sym_identifier] = ACTIONS(972), + [aux_sym_preproc_include_token1] = ACTIONS(972), + [aux_sym_preproc_def_token1] = ACTIONS(972), + [aux_sym_preproc_if_token1] = ACTIONS(972), + [aux_sym_preproc_ifdef_token1] = ACTIONS(972), + [aux_sym_preproc_ifdef_token2] = ACTIONS(972), + [sym_preproc_directive] = ACTIONS(972), + [anon_sym_LPAREN2] = ACTIONS(974), + [anon_sym_BANG] = ACTIONS(974), + [anon_sym_TILDE] = ACTIONS(974), + [anon_sym_DASH] = ACTIONS(972), + [anon_sym_PLUS] = ACTIONS(972), + [anon_sym_STAR] = ACTIONS(974), + [anon_sym_AMP] = ACTIONS(974), + [anon_sym_SEMI] = ACTIONS(974), + [anon_sym_typedef] = ACTIONS(972), + [anon_sym_extern] = ACTIONS(972), + [anon_sym___attribute__] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(974), + [anon_sym_static] = ACTIONS(972), + [anon_sym_auto] = ACTIONS(972), + [anon_sym_register] = ACTIONS(972), + [anon_sym_inline] = ACTIONS(972), + [anon_sym_const] = ACTIONS(972), + [anon_sym_volatile] = ACTIONS(972), + [anon_sym_restrict] = ACTIONS(972), + [anon_sym__Atomic] = ACTIONS(972), + [anon_sym_signed] = ACTIONS(972), + [anon_sym_unsigned] = ACTIONS(972), + [anon_sym_long] = ACTIONS(972), + [anon_sym_short] = ACTIONS(972), + [sym_primitive_type] = ACTIONS(972), + [anon_sym_enum] = ACTIONS(972), + [anon_sym_struct] = ACTIONS(972), + [anon_sym_union] = ACTIONS(972), + [anon_sym_if] = ACTIONS(972), + [anon_sym_else] = ACTIONS(972), + [anon_sym_switch] = ACTIONS(972), + [anon_sym_case] = ACTIONS(972), + [anon_sym_default] = ACTIONS(972), + [anon_sym_while] = ACTIONS(972), + [anon_sym_do] = ACTIONS(972), + [anon_sym_for] = ACTIONS(972), + [anon_sym_return] = ACTIONS(972), + [anon_sym_break] = ACTIONS(972), + [anon_sym_continue] = ACTIONS(972), + [anon_sym_goto] = ACTIONS(972), + [anon_sym_DASH_DASH] = ACTIONS(974), + [anon_sym_PLUS_PLUS] = ACTIONS(974), + [anon_sym_sizeof] = ACTIONS(972), + [sym_number_literal] = ACTIONS(974), + [anon_sym_L_SQUOTE] = ACTIONS(974), + [anon_sym_u_SQUOTE] = ACTIONS(974), + [anon_sym_U_SQUOTE] = ACTIONS(974), + [anon_sym_u8_SQUOTE] = ACTIONS(974), + [anon_sym_SQUOTE] = ACTIONS(974), + [anon_sym_L_DQUOTE] = ACTIONS(974), + [anon_sym_u_DQUOTE] = ACTIONS(974), + [anon_sym_U_DQUOTE] = ACTIONS(974), + [anon_sym_u8_DQUOTE] = ACTIONS(974), + [anon_sym_DQUOTE] = ACTIONS(974), + [sym_true] = ACTIONS(972), + [sym_false] = ACTIONS(972), + [sym_null] = ACTIONS(972), [sym_comment] = ACTIONS(3), }, - [295] = { - [sym_identifier] = ACTIONS(1162), - [aux_sym_preproc_include_token1] = ACTIONS(1162), - [aux_sym_preproc_def_token1] = ACTIONS(1162), - [aux_sym_preproc_if_token1] = ACTIONS(1162), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1162), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1162), - [sym_preproc_directive] = ACTIONS(1162), - [anon_sym_LPAREN2] = ACTIONS(1164), - [anon_sym_BANG] = ACTIONS(1164), - [anon_sym_TILDE] = ACTIONS(1164), - [anon_sym_DASH] = ACTIONS(1162), - [anon_sym_PLUS] = ACTIONS(1162), - [anon_sym_STAR] = ACTIONS(1164), - [anon_sym_AMP] = ACTIONS(1164), - [anon_sym_SEMI] = ACTIONS(1164), - [anon_sym_typedef] = ACTIONS(1162), - [anon_sym_extern] = ACTIONS(1162), - [anon_sym___attribute__] = ACTIONS(1162), - [anon_sym_LBRACE] = ACTIONS(1164), - [anon_sym_RBRACE] = ACTIONS(1164), - [anon_sym_static] = ACTIONS(1162), - [anon_sym_auto] = ACTIONS(1162), - [anon_sym_register] = ACTIONS(1162), - [anon_sym_inline] = ACTIONS(1162), - [anon_sym_const] = ACTIONS(1162), - [anon_sym_volatile] = ACTIONS(1162), - [anon_sym_restrict] = ACTIONS(1162), - [anon_sym__Atomic] = ACTIONS(1162), - [anon_sym_signed] = ACTIONS(1162), - [anon_sym_unsigned] = ACTIONS(1162), - [anon_sym_long] = ACTIONS(1162), - [anon_sym_short] = ACTIONS(1162), - [sym_primitive_type] = ACTIONS(1162), - [anon_sym_enum] = ACTIONS(1162), - [anon_sym_struct] = ACTIONS(1162), - [anon_sym_union] = ACTIONS(1162), - [anon_sym_if] = ACTIONS(1162), - [anon_sym_switch] = ACTIONS(1162), - [anon_sym_case] = ACTIONS(1162), - [anon_sym_default] = ACTIONS(1162), - [anon_sym_while] = ACTIONS(1162), - [anon_sym_do] = ACTIONS(1162), - [anon_sym_for] = ACTIONS(1162), - [anon_sym_return] = ACTIONS(1162), - [anon_sym_break] = ACTIONS(1162), - [anon_sym_continue] = ACTIONS(1162), - [anon_sym_goto] = ACTIONS(1162), - [anon_sym_DASH_DASH] = ACTIONS(1164), - [anon_sym_PLUS_PLUS] = ACTIONS(1164), - [anon_sym_sizeof] = ACTIONS(1162), - [sym_number_literal] = ACTIONS(1164), - [anon_sym_L_SQUOTE] = ACTIONS(1164), - [anon_sym_u_SQUOTE] = ACTIONS(1164), - [anon_sym_U_SQUOTE] = ACTIONS(1164), - [anon_sym_u8_SQUOTE] = ACTIONS(1164), - [anon_sym_SQUOTE] = ACTIONS(1164), - [anon_sym_L_DQUOTE] = ACTIONS(1164), - [anon_sym_u_DQUOTE] = ACTIONS(1164), - [anon_sym_U_DQUOTE] = ACTIONS(1164), - [anon_sym_u8_DQUOTE] = ACTIONS(1164), - [anon_sym_DQUOTE] = ACTIONS(1164), - [sym_true] = ACTIONS(1162), - [sym_false] = ACTIONS(1162), - [sym_null] = ACTIONS(1162), + [285] = { + [ts_builtin_sym_end] = ACTIONS(1060), + [sym_identifier] = ACTIONS(1058), + [aux_sym_preproc_include_token1] = ACTIONS(1058), + [aux_sym_preproc_def_token1] = ACTIONS(1058), + [aux_sym_preproc_if_token1] = ACTIONS(1058), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1058), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1058), + [sym_preproc_directive] = ACTIONS(1058), + [anon_sym_LPAREN2] = ACTIONS(1060), + [anon_sym_BANG] = ACTIONS(1060), + [anon_sym_TILDE] = ACTIONS(1060), + [anon_sym_DASH] = ACTIONS(1058), + [anon_sym_PLUS] = ACTIONS(1058), + [anon_sym_STAR] = ACTIONS(1060), + [anon_sym_AMP] = ACTIONS(1060), + [anon_sym_SEMI] = ACTIONS(1060), + [anon_sym_typedef] = ACTIONS(1058), + [anon_sym_extern] = ACTIONS(1058), + [anon_sym___attribute__] = ACTIONS(1058), + [anon_sym_LBRACE] = ACTIONS(1060), + [anon_sym_static] = ACTIONS(1058), + [anon_sym_auto] = ACTIONS(1058), + [anon_sym_register] = ACTIONS(1058), + [anon_sym_inline] = ACTIONS(1058), + [anon_sym_const] = ACTIONS(1058), + [anon_sym_volatile] = ACTIONS(1058), + [anon_sym_restrict] = ACTIONS(1058), + [anon_sym__Atomic] = ACTIONS(1058), + [anon_sym_signed] = ACTIONS(1058), + [anon_sym_unsigned] = ACTIONS(1058), + [anon_sym_long] = ACTIONS(1058), + [anon_sym_short] = ACTIONS(1058), + [sym_primitive_type] = ACTIONS(1058), + [anon_sym_enum] = ACTIONS(1058), + [anon_sym_struct] = ACTIONS(1058), + [anon_sym_union] = ACTIONS(1058), + [anon_sym_if] = ACTIONS(1058), + [anon_sym_else] = ACTIONS(1058), + [anon_sym_switch] = ACTIONS(1058), + [anon_sym_case] = ACTIONS(1058), + [anon_sym_default] = ACTIONS(1058), + [anon_sym_while] = ACTIONS(1058), + [anon_sym_do] = ACTIONS(1058), + [anon_sym_for] = ACTIONS(1058), + [anon_sym_return] = ACTIONS(1058), + [anon_sym_break] = ACTIONS(1058), + [anon_sym_continue] = ACTIONS(1058), + [anon_sym_goto] = ACTIONS(1058), + [anon_sym_DASH_DASH] = ACTIONS(1060), + [anon_sym_PLUS_PLUS] = ACTIONS(1060), + [anon_sym_sizeof] = ACTIONS(1058), + [sym_number_literal] = ACTIONS(1060), + [anon_sym_L_SQUOTE] = ACTIONS(1060), + [anon_sym_u_SQUOTE] = ACTIONS(1060), + [anon_sym_U_SQUOTE] = ACTIONS(1060), + [anon_sym_u8_SQUOTE] = ACTIONS(1060), + [anon_sym_SQUOTE] = ACTIONS(1060), + [anon_sym_L_DQUOTE] = ACTIONS(1060), + [anon_sym_u_DQUOTE] = ACTIONS(1060), + [anon_sym_U_DQUOTE] = ACTIONS(1060), + [anon_sym_u8_DQUOTE] = ACTIONS(1060), + [anon_sym_DQUOTE] = ACTIONS(1060), + [sym_true] = ACTIONS(1058), + [sym_false] = ACTIONS(1058), + [sym_null] = ACTIONS(1058), [sym_comment] = ACTIONS(3), }, - [296] = { - [sym_identifier] = ACTIONS(1174), - [aux_sym_preproc_include_token1] = ACTIONS(1174), - [aux_sym_preproc_def_token1] = ACTIONS(1174), - [aux_sym_preproc_if_token1] = ACTIONS(1174), - [aux_sym_preproc_if_token2] = ACTIONS(1174), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1174), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1174), - [sym_preproc_directive] = ACTIONS(1174), - [anon_sym_LPAREN2] = ACTIONS(1176), - [anon_sym_BANG] = ACTIONS(1176), - [anon_sym_TILDE] = ACTIONS(1176), - [anon_sym_DASH] = ACTIONS(1174), - [anon_sym_PLUS] = ACTIONS(1174), - [anon_sym_STAR] = ACTIONS(1176), - [anon_sym_AMP] = ACTIONS(1176), - [anon_sym_SEMI] = ACTIONS(1176), - [anon_sym_typedef] = ACTIONS(1174), - [anon_sym_extern] = ACTIONS(1174), - [anon_sym___attribute__] = ACTIONS(1174), - [anon_sym_LBRACE] = ACTIONS(1176), - [anon_sym_static] = ACTIONS(1174), - [anon_sym_auto] = ACTIONS(1174), - [anon_sym_register] = ACTIONS(1174), - [anon_sym_inline] = ACTIONS(1174), - [anon_sym_const] = ACTIONS(1174), - [anon_sym_volatile] = ACTIONS(1174), - [anon_sym_restrict] = ACTIONS(1174), - [anon_sym__Atomic] = ACTIONS(1174), - [anon_sym_signed] = ACTIONS(1174), - [anon_sym_unsigned] = ACTIONS(1174), - [anon_sym_long] = ACTIONS(1174), - [anon_sym_short] = ACTIONS(1174), - [sym_primitive_type] = ACTIONS(1174), - [anon_sym_enum] = ACTIONS(1174), - [anon_sym_struct] = ACTIONS(1174), - [anon_sym_union] = ACTIONS(1174), - [anon_sym_if] = ACTIONS(1174), - [anon_sym_switch] = ACTIONS(1174), - [anon_sym_case] = ACTIONS(1174), - [anon_sym_default] = ACTIONS(1174), - [anon_sym_while] = ACTIONS(1174), - [anon_sym_do] = ACTIONS(1174), - [anon_sym_for] = ACTIONS(1174), - [anon_sym_return] = ACTIONS(1174), - [anon_sym_break] = ACTIONS(1174), - [anon_sym_continue] = ACTIONS(1174), - [anon_sym_goto] = ACTIONS(1174), - [anon_sym_DASH_DASH] = ACTIONS(1176), - [anon_sym_PLUS_PLUS] = ACTIONS(1176), - [anon_sym_sizeof] = ACTIONS(1174), - [sym_number_literal] = ACTIONS(1176), - [anon_sym_L_SQUOTE] = ACTIONS(1176), - [anon_sym_u_SQUOTE] = ACTIONS(1176), - [anon_sym_U_SQUOTE] = ACTIONS(1176), - [anon_sym_u8_SQUOTE] = ACTIONS(1176), - [anon_sym_SQUOTE] = ACTIONS(1176), - [anon_sym_L_DQUOTE] = ACTIONS(1176), - [anon_sym_u_DQUOTE] = ACTIONS(1176), - [anon_sym_U_DQUOTE] = ACTIONS(1176), - [anon_sym_u8_DQUOTE] = ACTIONS(1176), - [anon_sym_DQUOTE] = ACTIONS(1176), - [sym_true] = ACTIONS(1174), - [sym_false] = ACTIONS(1174), - [sym_null] = ACTIONS(1174), + [286] = { + [ts_builtin_sym_end] = ACTIONS(1028), + [sym_identifier] = ACTIONS(1026), + [aux_sym_preproc_include_token1] = ACTIONS(1026), + [aux_sym_preproc_def_token1] = ACTIONS(1026), + [aux_sym_preproc_if_token1] = ACTIONS(1026), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1026), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1026), + [sym_preproc_directive] = ACTIONS(1026), + [anon_sym_LPAREN2] = ACTIONS(1028), + [anon_sym_BANG] = ACTIONS(1028), + [anon_sym_TILDE] = ACTIONS(1028), + [anon_sym_DASH] = ACTIONS(1026), + [anon_sym_PLUS] = ACTIONS(1026), + [anon_sym_STAR] = ACTIONS(1028), + [anon_sym_AMP] = ACTIONS(1028), + [anon_sym_SEMI] = ACTIONS(1028), + [anon_sym_typedef] = ACTIONS(1026), + [anon_sym_extern] = ACTIONS(1026), + [anon_sym___attribute__] = ACTIONS(1026), + [anon_sym_LBRACE] = ACTIONS(1028), + [anon_sym_static] = ACTIONS(1026), + [anon_sym_auto] = ACTIONS(1026), + [anon_sym_register] = ACTIONS(1026), + [anon_sym_inline] = ACTIONS(1026), + [anon_sym_const] = ACTIONS(1026), + [anon_sym_volatile] = ACTIONS(1026), + [anon_sym_restrict] = ACTIONS(1026), + [anon_sym__Atomic] = ACTIONS(1026), + [anon_sym_signed] = ACTIONS(1026), + [anon_sym_unsigned] = ACTIONS(1026), + [anon_sym_long] = ACTIONS(1026), + [anon_sym_short] = ACTIONS(1026), + [sym_primitive_type] = ACTIONS(1026), + [anon_sym_enum] = ACTIONS(1026), + [anon_sym_struct] = ACTIONS(1026), + [anon_sym_union] = ACTIONS(1026), + [anon_sym_if] = ACTIONS(1026), + [anon_sym_else] = ACTIONS(1026), + [anon_sym_switch] = ACTIONS(1026), + [anon_sym_case] = ACTIONS(1026), + [anon_sym_default] = ACTIONS(1026), + [anon_sym_while] = ACTIONS(1026), + [anon_sym_do] = ACTIONS(1026), + [anon_sym_for] = ACTIONS(1026), + [anon_sym_return] = ACTIONS(1026), + [anon_sym_break] = ACTIONS(1026), + [anon_sym_continue] = ACTIONS(1026), + [anon_sym_goto] = ACTIONS(1026), + [anon_sym_DASH_DASH] = ACTIONS(1028), + [anon_sym_PLUS_PLUS] = ACTIONS(1028), + [anon_sym_sizeof] = ACTIONS(1026), + [sym_number_literal] = ACTIONS(1028), + [anon_sym_L_SQUOTE] = ACTIONS(1028), + [anon_sym_u_SQUOTE] = ACTIONS(1028), + [anon_sym_U_SQUOTE] = ACTIONS(1028), + [anon_sym_u8_SQUOTE] = ACTIONS(1028), + [anon_sym_SQUOTE] = ACTIONS(1028), + [anon_sym_L_DQUOTE] = ACTIONS(1028), + [anon_sym_u_DQUOTE] = ACTIONS(1028), + [anon_sym_U_DQUOTE] = ACTIONS(1028), + [anon_sym_u8_DQUOTE] = ACTIONS(1028), + [anon_sym_DQUOTE] = ACTIONS(1028), + [sym_true] = ACTIONS(1026), + [sym_false] = ACTIONS(1026), + [sym_null] = ACTIONS(1026), [sym_comment] = ACTIONS(3), }, - [297] = { - [sym_identifier] = ACTIONS(1138), - [aux_sym_preproc_include_token1] = ACTIONS(1138), - [aux_sym_preproc_def_token1] = ACTIONS(1138), - [aux_sym_preproc_if_token1] = ACTIONS(1138), - [aux_sym_preproc_if_token2] = ACTIONS(1138), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1138), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1138), - [sym_preproc_directive] = ACTIONS(1138), - [anon_sym_LPAREN2] = ACTIONS(1140), - [anon_sym_BANG] = ACTIONS(1140), - [anon_sym_TILDE] = ACTIONS(1140), - [anon_sym_DASH] = ACTIONS(1138), - [anon_sym_PLUS] = ACTIONS(1138), - [anon_sym_STAR] = ACTIONS(1140), - [anon_sym_AMP] = ACTIONS(1140), - [anon_sym_SEMI] = ACTIONS(1140), - [anon_sym_typedef] = ACTIONS(1138), - [anon_sym_extern] = ACTIONS(1138), - [anon_sym___attribute__] = ACTIONS(1138), - [anon_sym_LBRACE] = ACTIONS(1140), - [anon_sym_static] = ACTIONS(1138), - [anon_sym_auto] = ACTIONS(1138), - [anon_sym_register] = ACTIONS(1138), - [anon_sym_inline] = ACTIONS(1138), - [anon_sym_const] = ACTIONS(1138), - [anon_sym_volatile] = ACTIONS(1138), - [anon_sym_restrict] = ACTIONS(1138), - [anon_sym__Atomic] = ACTIONS(1138), - [anon_sym_signed] = ACTIONS(1138), - [anon_sym_unsigned] = ACTIONS(1138), - [anon_sym_long] = ACTIONS(1138), - [anon_sym_short] = ACTIONS(1138), - [sym_primitive_type] = ACTIONS(1138), - [anon_sym_enum] = ACTIONS(1138), - [anon_sym_struct] = ACTIONS(1138), - [anon_sym_union] = ACTIONS(1138), - [anon_sym_if] = ACTIONS(1138), - [anon_sym_switch] = ACTIONS(1138), - [anon_sym_case] = ACTIONS(1138), - [anon_sym_default] = ACTIONS(1138), - [anon_sym_while] = ACTIONS(1138), - [anon_sym_do] = ACTIONS(1138), - [anon_sym_for] = ACTIONS(1138), - [anon_sym_return] = ACTIONS(1138), - [anon_sym_break] = ACTIONS(1138), - [anon_sym_continue] = ACTIONS(1138), - [anon_sym_goto] = ACTIONS(1138), - [anon_sym_DASH_DASH] = ACTIONS(1140), - [anon_sym_PLUS_PLUS] = ACTIONS(1140), - [anon_sym_sizeof] = ACTIONS(1138), - [sym_number_literal] = ACTIONS(1140), - [anon_sym_L_SQUOTE] = ACTIONS(1140), - [anon_sym_u_SQUOTE] = ACTIONS(1140), - [anon_sym_U_SQUOTE] = ACTIONS(1140), - [anon_sym_u8_SQUOTE] = ACTIONS(1140), - [anon_sym_SQUOTE] = ACTIONS(1140), - [anon_sym_L_DQUOTE] = ACTIONS(1140), - [anon_sym_u_DQUOTE] = ACTIONS(1140), - [anon_sym_U_DQUOTE] = ACTIONS(1140), - [anon_sym_u8_DQUOTE] = ACTIONS(1140), - [anon_sym_DQUOTE] = ACTIONS(1140), - [sym_true] = ACTIONS(1138), - [sym_false] = ACTIONS(1138), - [sym_null] = ACTIONS(1138), + [287] = { + [ts_builtin_sym_end] = ACTIONS(1020), + [sym_identifier] = ACTIONS(1018), + [aux_sym_preproc_include_token1] = ACTIONS(1018), + [aux_sym_preproc_def_token1] = ACTIONS(1018), + [aux_sym_preproc_if_token1] = ACTIONS(1018), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1018), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1018), + [sym_preproc_directive] = ACTIONS(1018), + [anon_sym_LPAREN2] = ACTIONS(1020), + [anon_sym_BANG] = ACTIONS(1020), + [anon_sym_TILDE] = ACTIONS(1020), + [anon_sym_DASH] = ACTIONS(1018), + [anon_sym_PLUS] = ACTIONS(1018), + [anon_sym_STAR] = ACTIONS(1020), + [anon_sym_AMP] = ACTIONS(1020), + [anon_sym_SEMI] = ACTIONS(1020), + [anon_sym_typedef] = ACTIONS(1018), + [anon_sym_extern] = ACTIONS(1018), + [anon_sym___attribute__] = ACTIONS(1018), + [anon_sym_LBRACE] = ACTIONS(1020), + [anon_sym_static] = ACTIONS(1018), + [anon_sym_auto] = ACTIONS(1018), + [anon_sym_register] = ACTIONS(1018), + [anon_sym_inline] = ACTIONS(1018), + [anon_sym_const] = ACTIONS(1018), + [anon_sym_volatile] = ACTIONS(1018), + [anon_sym_restrict] = ACTIONS(1018), + [anon_sym__Atomic] = ACTIONS(1018), + [anon_sym_signed] = ACTIONS(1018), + [anon_sym_unsigned] = ACTIONS(1018), + [anon_sym_long] = ACTIONS(1018), + [anon_sym_short] = ACTIONS(1018), + [sym_primitive_type] = ACTIONS(1018), + [anon_sym_enum] = ACTIONS(1018), + [anon_sym_struct] = ACTIONS(1018), + [anon_sym_union] = ACTIONS(1018), + [anon_sym_if] = ACTIONS(1018), + [anon_sym_else] = ACTIONS(1018), + [anon_sym_switch] = ACTIONS(1018), + [anon_sym_case] = ACTIONS(1018), + [anon_sym_default] = ACTIONS(1018), + [anon_sym_while] = ACTIONS(1018), + [anon_sym_do] = ACTIONS(1018), + [anon_sym_for] = ACTIONS(1018), + [anon_sym_return] = ACTIONS(1018), + [anon_sym_break] = ACTIONS(1018), + [anon_sym_continue] = ACTIONS(1018), + [anon_sym_goto] = ACTIONS(1018), + [anon_sym_DASH_DASH] = ACTIONS(1020), + [anon_sym_PLUS_PLUS] = ACTIONS(1020), + [anon_sym_sizeof] = ACTIONS(1018), + [sym_number_literal] = ACTIONS(1020), + [anon_sym_L_SQUOTE] = ACTIONS(1020), + [anon_sym_u_SQUOTE] = ACTIONS(1020), + [anon_sym_U_SQUOTE] = ACTIONS(1020), + [anon_sym_u8_SQUOTE] = ACTIONS(1020), + [anon_sym_SQUOTE] = ACTIONS(1020), + [anon_sym_L_DQUOTE] = ACTIONS(1020), + [anon_sym_u_DQUOTE] = ACTIONS(1020), + [anon_sym_U_DQUOTE] = ACTIONS(1020), + [anon_sym_u8_DQUOTE] = ACTIONS(1020), + [anon_sym_DQUOTE] = ACTIONS(1020), + [sym_true] = ACTIONS(1018), + [sym_false] = ACTIONS(1018), + [sym_null] = ACTIONS(1018), [sym_comment] = ACTIONS(3), }, - [298] = { - [sym_identifier] = ACTIONS(1154), - [aux_sym_preproc_include_token1] = ACTIONS(1154), - [aux_sym_preproc_def_token1] = ACTIONS(1154), - [aux_sym_preproc_if_token1] = ACTIONS(1154), - [aux_sym_preproc_if_token2] = ACTIONS(1154), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1154), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1154), - [sym_preproc_directive] = ACTIONS(1154), - [anon_sym_LPAREN2] = ACTIONS(1156), - [anon_sym_BANG] = ACTIONS(1156), - [anon_sym_TILDE] = ACTIONS(1156), - [anon_sym_DASH] = ACTIONS(1154), - [anon_sym_PLUS] = ACTIONS(1154), - [anon_sym_STAR] = ACTIONS(1156), - [anon_sym_AMP] = ACTIONS(1156), - [anon_sym_SEMI] = ACTIONS(1156), - [anon_sym_typedef] = ACTIONS(1154), - [anon_sym_extern] = ACTIONS(1154), - [anon_sym___attribute__] = ACTIONS(1154), - [anon_sym_LBRACE] = ACTIONS(1156), - [anon_sym_static] = ACTIONS(1154), - [anon_sym_auto] = ACTIONS(1154), - [anon_sym_register] = ACTIONS(1154), - [anon_sym_inline] = ACTIONS(1154), - [anon_sym_const] = ACTIONS(1154), - [anon_sym_volatile] = ACTIONS(1154), - [anon_sym_restrict] = ACTIONS(1154), - [anon_sym__Atomic] = ACTIONS(1154), - [anon_sym_signed] = ACTIONS(1154), - [anon_sym_unsigned] = ACTIONS(1154), - [anon_sym_long] = ACTIONS(1154), - [anon_sym_short] = ACTIONS(1154), - [sym_primitive_type] = ACTIONS(1154), - [anon_sym_enum] = ACTIONS(1154), - [anon_sym_struct] = ACTIONS(1154), - [anon_sym_union] = ACTIONS(1154), - [anon_sym_if] = ACTIONS(1154), - [anon_sym_switch] = ACTIONS(1154), - [anon_sym_case] = ACTIONS(1154), - [anon_sym_default] = ACTIONS(1154), - [anon_sym_while] = ACTIONS(1154), - [anon_sym_do] = ACTIONS(1154), - [anon_sym_for] = ACTIONS(1154), - [anon_sym_return] = ACTIONS(1154), - [anon_sym_break] = ACTIONS(1154), - [anon_sym_continue] = ACTIONS(1154), - [anon_sym_goto] = ACTIONS(1154), - [anon_sym_DASH_DASH] = ACTIONS(1156), - [anon_sym_PLUS_PLUS] = ACTIONS(1156), - [anon_sym_sizeof] = ACTIONS(1154), - [sym_number_literal] = ACTIONS(1156), - [anon_sym_L_SQUOTE] = ACTIONS(1156), - [anon_sym_u_SQUOTE] = ACTIONS(1156), - [anon_sym_U_SQUOTE] = ACTIONS(1156), - [anon_sym_u8_SQUOTE] = ACTIONS(1156), - [anon_sym_SQUOTE] = ACTIONS(1156), - [anon_sym_L_DQUOTE] = ACTIONS(1156), - [anon_sym_u_DQUOTE] = ACTIONS(1156), - [anon_sym_U_DQUOTE] = ACTIONS(1156), - [anon_sym_u8_DQUOTE] = ACTIONS(1156), - [anon_sym_DQUOTE] = ACTIONS(1156), - [sym_true] = ACTIONS(1154), - [sym_false] = ACTIONS(1154), - [sym_null] = ACTIONS(1154), + [288] = { + [ts_builtin_sym_end] = ACTIONS(1040), + [sym_identifier] = ACTIONS(1038), + [aux_sym_preproc_include_token1] = ACTIONS(1038), + [aux_sym_preproc_def_token1] = ACTIONS(1038), + [aux_sym_preproc_if_token1] = ACTIONS(1038), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1038), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1038), + [sym_preproc_directive] = ACTIONS(1038), + [anon_sym_LPAREN2] = ACTIONS(1040), + [anon_sym_BANG] = ACTIONS(1040), + [anon_sym_TILDE] = ACTIONS(1040), + [anon_sym_DASH] = ACTIONS(1038), + [anon_sym_PLUS] = ACTIONS(1038), + [anon_sym_STAR] = ACTIONS(1040), + [anon_sym_AMP] = ACTIONS(1040), + [anon_sym_SEMI] = ACTIONS(1040), + [anon_sym_typedef] = ACTIONS(1038), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym___attribute__] = ACTIONS(1038), + [anon_sym_LBRACE] = ACTIONS(1040), + [anon_sym_static] = ACTIONS(1038), + [anon_sym_auto] = ACTIONS(1038), + [anon_sym_register] = ACTIONS(1038), + [anon_sym_inline] = ACTIONS(1038), + [anon_sym_const] = ACTIONS(1038), + [anon_sym_volatile] = ACTIONS(1038), + [anon_sym_restrict] = ACTIONS(1038), + [anon_sym__Atomic] = ACTIONS(1038), + [anon_sym_signed] = ACTIONS(1038), + [anon_sym_unsigned] = ACTIONS(1038), + [anon_sym_long] = ACTIONS(1038), + [anon_sym_short] = ACTIONS(1038), + [sym_primitive_type] = ACTIONS(1038), + [anon_sym_enum] = ACTIONS(1038), + [anon_sym_struct] = ACTIONS(1038), + [anon_sym_union] = ACTIONS(1038), + [anon_sym_if] = ACTIONS(1038), + [anon_sym_else] = ACTIONS(1038), + [anon_sym_switch] = ACTIONS(1038), + [anon_sym_case] = ACTIONS(1038), + [anon_sym_default] = ACTIONS(1038), + [anon_sym_while] = ACTIONS(1038), + [anon_sym_do] = ACTIONS(1038), + [anon_sym_for] = ACTIONS(1038), + [anon_sym_return] = ACTIONS(1038), + [anon_sym_break] = ACTIONS(1038), + [anon_sym_continue] = ACTIONS(1038), + [anon_sym_goto] = ACTIONS(1038), + [anon_sym_DASH_DASH] = ACTIONS(1040), + [anon_sym_PLUS_PLUS] = ACTIONS(1040), + [anon_sym_sizeof] = ACTIONS(1038), + [sym_number_literal] = ACTIONS(1040), + [anon_sym_L_SQUOTE] = ACTIONS(1040), + [anon_sym_u_SQUOTE] = ACTIONS(1040), + [anon_sym_U_SQUOTE] = ACTIONS(1040), + [anon_sym_u8_SQUOTE] = ACTIONS(1040), + [anon_sym_SQUOTE] = ACTIONS(1040), + [anon_sym_L_DQUOTE] = ACTIONS(1040), + [anon_sym_u_DQUOTE] = ACTIONS(1040), + [anon_sym_U_DQUOTE] = ACTIONS(1040), + [anon_sym_u8_DQUOTE] = ACTIONS(1040), + [anon_sym_DQUOTE] = ACTIONS(1040), + [sym_true] = ACTIONS(1038), + [sym_false] = ACTIONS(1038), + [sym_null] = ACTIONS(1038), [sym_comment] = ACTIONS(3), }, - [299] = { - [ts_builtin_sym_end] = ACTIONS(1128), - [sym_identifier] = ACTIONS(1126), - [aux_sym_preproc_include_token1] = ACTIONS(1126), - [aux_sym_preproc_def_token1] = ACTIONS(1126), - [aux_sym_preproc_if_token1] = ACTIONS(1126), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1126), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1126), - [sym_preproc_directive] = ACTIONS(1126), - [anon_sym_LPAREN2] = ACTIONS(1128), - [anon_sym_BANG] = ACTIONS(1128), - [anon_sym_TILDE] = ACTIONS(1128), - [anon_sym_DASH] = ACTIONS(1126), - [anon_sym_PLUS] = ACTIONS(1126), - [anon_sym_STAR] = ACTIONS(1128), - [anon_sym_AMP] = ACTIONS(1128), - [anon_sym_SEMI] = ACTIONS(1128), - [anon_sym_typedef] = ACTIONS(1126), - [anon_sym_extern] = ACTIONS(1126), - [anon_sym___attribute__] = ACTIONS(1126), - [anon_sym_LBRACE] = ACTIONS(1128), - [anon_sym_static] = ACTIONS(1126), - [anon_sym_auto] = ACTIONS(1126), - [anon_sym_register] = ACTIONS(1126), - [anon_sym_inline] = ACTIONS(1126), - [anon_sym_const] = ACTIONS(1126), - [anon_sym_volatile] = ACTIONS(1126), - [anon_sym_restrict] = ACTIONS(1126), - [anon_sym__Atomic] = ACTIONS(1126), - [anon_sym_signed] = ACTIONS(1126), - [anon_sym_unsigned] = ACTIONS(1126), - [anon_sym_long] = ACTIONS(1126), - [anon_sym_short] = ACTIONS(1126), - [sym_primitive_type] = ACTIONS(1126), - [anon_sym_enum] = ACTIONS(1126), - [anon_sym_struct] = ACTIONS(1126), - [anon_sym_union] = ACTIONS(1126), - [anon_sym_if] = ACTIONS(1126), - [anon_sym_switch] = ACTIONS(1126), - [anon_sym_case] = ACTIONS(1126), - [anon_sym_default] = ACTIONS(1126), - [anon_sym_while] = ACTIONS(1126), - [anon_sym_do] = ACTIONS(1126), - [anon_sym_for] = ACTIONS(1126), - [anon_sym_return] = ACTIONS(1126), - [anon_sym_break] = ACTIONS(1126), - [anon_sym_continue] = ACTIONS(1126), - [anon_sym_goto] = ACTIONS(1126), - [anon_sym_DASH_DASH] = ACTIONS(1128), - [anon_sym_PLUS_PLUS] = ACTIONS(1128), - [anon_sym_sizeof] = ACTIONS(1126), - [sym_number_literal] = ACTIONS(1128), - [anon_sym_L_SQUOTE] = ACTIONS(1128), - [anon_sym_u_SQUOTE] = ACTIONS(1128), - [anon_sym_U_SQUOTE] = ACTIONS(1128), - [anon_sym_u8_SQUOTE] = ACTIONS(1128), - [anon_sym_SQUOTE] = ACTIONS(1128), - [anon_sym_L_DQUOTE] = ACTIONS(1128), - [anon_sym_u_DQUOTE] = ACTIONS(1128), - [anon_sym_U_DQUOTE] = ACTIONS(1128), - [anon_sym_u8_DQUOTE] = ACTIONS(1128), - [anon_sym_DQUOTE] = ACTIONS(1128), - [sym_true] = ACTIONS(1126), - [sym_false] = ACTIONS(1126), - [sym_null] = ACTIONS(1126), + [289] = { + [ts_builtin_sym_end] = ACTIONS(1004), + [sym_identifier] = ACTIONS(1002), + [aux_sym_preproc_include_token1] = ACTIONS(1002), + [aux_sym_preproc_def_token1] = ACTIONS(1002), + [aux_sym_preproc_if_token1] = ACTIONS(1002), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1002), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1002), + [sym_preproc_directive] = ACTIONS(1002), + [anon_sym_LPAREN2] = ACTIONS(1004), + [anon_sym_BANG] = ACTIONS(1004), + [anon_sym_TILDE] = ACTIONS(1004), + [anon_sym_DASH] = ACTIONS(1002), + [anon_sym_PLUS] = ACTIONS(1002), + [anon_sym_STAR] = ACTIONS(1004), + [anon_sym_AMP] = ACTIONS(1004), + [anon_sym_SEMI] = ACTIONS(1004), + [anon_sym_typedef] = ACTIONS(1002), + [anon_sym_extern] = ACTIONS(1002), + [anon_sym___attribute__] = ACTIONS(1002), + [anon_sym_LBRACE] = ACTIONS(1004), + [anon_sym_static] = ACTIONS(1002), + [anon_sym_auto] = ACTIONS(1002), + [anon_sym_register] = ACTIONS(1002), + [anon_sym_inline] = ACTIONS(1002), + [anon_sym_const] = ACTIONS(1002), + [anon_sym_volatile] = ACTIONS(1002), + [anon_sym_restrict] = ACTIONS(1002), + [anon_sym__Atomic] = ACTIONS(1002), + [anon_sym_signed] = ACTIONS(1002), + [anon_sym_unsigned] = ACTIONS(1002), + [anon_sym_long] = ACTIONS(1002), + [anon_sym_short] = ACTIONS(1002), + [sym_primitive_type] = ACTIONS(1002), + [anon_sym_enum] = ACTIONS(1002), + [anon_sym_struct] = ACTIONS(1002), + [anon_sym_union] = ACTIONS(1002), + [anon_sym_if] = ACTIONS(1002), + [anon_sym_else] = ACTIONS(1002), + [anon_sym_switch] = ACTIONS(1002), + [anon_sym_case] = ACTIONS(1002), + [anon_sym_default] = ACTIONS(1002), + [anon_sym_while] = ACTIONS(1002), + [anon_sym_do] = ACTIONS(1002), + [anon_sym_for] = ACTIONS(1002), + [anon_sym_return] = ACTIONS(1002), + [anon_sym_break] = ACTIONS(1002), + [anon_sym_continue] = ACTIONS(1002), + [anon_sym_goto] = ACTIONS(1002), + [anon_sym_DASH_DASH] = ACTIONS(1004), + [anon_sym_PLUS_PLUS] = ACTIONS(1004), + [anon_sym_sizeof] = ACTIONS(1002), + [sym_number_literal] = ACTIONS(1004), + [anon_sym_L_SQUOTE] = ACTIONS(1004), + [anon_sym_u_SQUOTE] = ACTIONS(1004), + [anon_sym_U_SQUOTE] = ACTIONS(1004), + [anon_sym_u8_SQUOTE] = ACTIONS(1004), + [anon_sym_SQUOTE] = ACTIONS(1004), + [anon_sym_L_DQUOTE] = ACTIONS(1004), + [anon_sym_u_DQUOTE] = ACTIONS(1004), + [anon_sym_U_DQUOTE] = ACTIONS(1004), + [anon_sym_u8_DQUOTE] = ACTIONS(1004), + [anon_sym_DQUOTE] = ACTIONS(1004), + [sym_true] = ACTIONS(1002), + [sym_false] = ACTIONS(1002), + [sym_null] = ACTIONS(1002), [sym_comment] = ACTIONS(3), }, - [300] = { - [sym_identifier] = ACTIONS(1146), - [aux_sym_preproc_include_token1] = ACTIONS(1146), - [aux_sym_preproc_def_token1] = ACTIONS(1146), - [aux_sym_preproc_if_token1] = ACTIONS(1146), - [aux_sym_preproc_if_token2] = ACTIONS(1146), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1146), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1146), - [sym_preproc_directive] = ACTIONS(1146), - [anon_sym_LPAREN2] = ACTIONS(1148), - [anon_sym_BANG] = ACTIONS(1148), - [anon_sym_TILDE] = ACTIONS(1148), - [anon_sym_DASH] = ACTIONS(1146), - [anon_sym_PLUS] = ACTIONS(1146), - [anon_sym_STAR] = ACTIONS(1148), - [anon_sym_AMP] = ACTIONS(1148), - [anon_sym_SEMI] = ACTIONS(1148), - [anon_sym_typedef] = ACTIONS(1146), - [anon_sym_extern] = ACTIONS(1146), - [anon_sym___attribute__] = ACTIONS(1146), - [anon_sym_LBRACE] = ACTIONS(1148), - [anon_sym_static] = ACTIONS(1146), - [anon_sym_auto] = ACTIONS(1146), - [anon_sym_register] = ACTIONS(1146), - [anon_sym_inline] = ACTIONS(1146), - [anon_sym_const] = ACTIONS(1146), - [anon_sym_volatile] = ACTIONS(1146), - [anon_sym_restrict] = ACTIONS(1146), - [anon_sym__Atomic] = ACTIONS(1146), - [anon_sym_signed] = ACTIONS(1146), - [anon_sym_unsigned] = ACTIONS(1146), - [anon_sym_long] = ACTIONS(1146), - [anon_sym_short] = ACTIONS(1146), - [sym_primitive_type] = ACTIONS(1146), - [anon_sym_enum] = ACTIONS(1146), - [anon_sym_struct] = ACTIONS(1146), - [anon_sym_union] = ACTIONS(1146), - [anon_sym_if] = ACTIONS(1146), - [anon_sym_switch] = ACTIONS(1146), - [anon_sym_case] = ACTIONS(1146), - [anon_sym_default] = ACTIONS(1146), - [anon_sym_while] = ACTIONS(1146), - [anon_sym_do] = ACTIONS(1146), - [anon_sym_for] = ACTIONS(1146), - [anon_sym_return] = ACTIONS(1146), - [anon_sym_break] = ACTIONS(1146), - [anon_sym_continue] = ACTIONS(1146), - [anon_sym_goto] = ACTIONS(1146), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_sizeof] = ACTIONS(1146), - [sym_number_literal] = ACTIONS(1148), - [anon_sym_L_SQUOTE] = ACTIONS(1148), - [anon_sym_u_SQUOTE] = ACTIONS(1148), - [anon_sym_U_SQUOTE] = ACTIONS(1148), - [anon_sym_u8_SQUOTE] = ACTIONS(1148), - [anon_sym_SQUOTE] = ACTIONS(1148), - [anon_sym_L_DQUOTE] = ACTIONS(1148), - [anon_sym_u_DQUOTE] = ACTIONS(1148), - [anon_sym_U_DQUOTE] = ACTIONS(1148), - [anon_sym_u8_DQUOTE] = ACTIONS(1148), - [anon_sym_DQUOTE] = ACTIONS(1148), - [sym_true] = ACTIONS(1146), - [sym_false] = ACTIONS(1146), - [sym_null] = ACTIONS(1146), + [290] = { + [ts_builtin_sym_end] = ACTIONS(1048), + [sym_identifier] = ACTIONS(1046), + [aux_sym_preproc_include_token1] = ACTIONS(1046), + [aux_sym_preproc_def_token1] = ACTIONS(1046), + [aux_sym_preproc_if_token1] = ACTIONS(1046), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1046), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1046), + [sym_preproc_directive] = ACTIONS(1046), + [anon_sym_LPAREN2] = ACTIONS(1048), + [anon_sym_BANG] = ACTIONS(1048), + [anon_sym_TILDE] = ACTIONS(1048), + [anon_sym_DASH] = ACTIONS(1046), + [anon_sym_PLUS] = ACTIONS(1046), + [anon_sym_STAR] = ACTIONS(1048), + [anon_sym_AMP] = ACTIONS(1048), + [anon_sym_SEMI] = ACTIONS(1048), + [anon_sym_typedef] = ACTIONS(1046), + [anon_sym_extern] = ACTIONS(1046), + [anon_sym___attribute__] = ACTIONS(1046), + [anon_sym_LBRACE] = ACTIONS(1048), + [anon_sym_static] = ACTIONS(1046), + [anon_sym_auto] = ACTIONS(1046), + [anon_sym_register] = ACTIONS(1046), + [anon_sym_inline] = ACTIONS(1046), + [anon_sym_const] = ACTIONS(1046), + [anon_sym_volatile] = ACTIONS(1046), + [anon_sym_restrict] = ACTIONS(1046), + [anon_sym__Atomic] = ACTIONS(1046), + [anon_sym_signed] = ACTIONS(1046), + [anon_sym_unsigned] = ACTIONS(1046), + [anon_sym_long] = ACTIONS(1046), + [anon_sym_short] = ACTIONS(1046), + [sym_primitive_type] = ACTIONS(1046), + [anon_sym_enum] = ACTIONS(1046), + [anon_sym_struct] = ACTIONS(1046), + [anon_sym_union] = ACTIONS(1046), + [anon_sym_if] = ACTIONS(1046), + [anon_sym_else] = ACTIONS(1046), + [anon_sym_switch] = ACTIONS(1046), + [anon_sym_case] = ACTIONS(1046), + [anon_sym_default] = ACTIONS(1046), + [anon_sym_while] = ACTIONS(1046), + [anon_sym_do] = ACTIONS(1046), + [anon_sym_for] = ACTIONS(1046), + [anon_sym_return] = ACTIONS(1046), + [anon_sym_break] = ACTIONS(1046), + [anon_sym_continue] = ACTIONS(1046), + [anon_sym_goto] = ACTIONS(1046), + [anon_sym_DASH_DASH] = ACTIONS(1048), + [anon_sym_PLUS_PLUS] = ACTIONS(1048), + [anon_sym_sizeof] = ACTIONS(1046), + [sym_number_literal] = ACTIONS(1048), + [anon_sym_L_SQUOTE] = ACTIONS(1048), + [anon_sym_u_SQUOTE] = ACTIONS(1048), + [anon_sym_U_SQUOTE] = ACTIONS(1048), + [anon_sym_u8_SQUOTE] = ACTIONS(1048), + [anon_sym_SQUOTE] = ACTIONS(1048), + [anon_sym_L_DQUOTE] = ACTIONS(1048), + [anon_sym_u_DQUOTE] = ACTIONS(1048), + [anon_sym_U_DQUOTE] = ACTIONS(1048), + [anon_sym_u8_DQUOTE] = ACTIONS(1048), + [anon_sym_DQUOTE] = ACTIONS(1048), + [sym_true] = ACTIONS(1046), + [sym_false] = ACTIONS(1046), + [sym_null] = ACTIONS(1046), [sym_comment] = ACTIONS(3), }, - [301] = { - [ts_builtin_sym_end] = ACTIONS(1104), - [sym_identifier] = ACTIONS(1102), - [aux_sym_preproc_include_token1] = ACTIONS(1102), - [aux_sym_preproc_def_token1] = ACTIONS(1102), - [aux_sym_preproc_if_token1] = ACTIONS(1102), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1102), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1102), - [sym_preproc_directive] = ACTIONS(1102), - [anon_sym_LPAREN2] = ACTIONS(1104), - [anon_sym_BANG] = ACTIONS(1104), - [anon_sym_TILDE] = ACTIONS(1104), - [anon_sym_DASH] = ACTIONS(1102), - [anon_sym_PLUS] = ACTIONS(1102), - [anon_sym_STAR] = ACTIONS(1104), - [anon_sym_AMP] = ACTIONS(1104), - [anon_sym_SEMI] = ACTIONS(1104), - [anon_sym_typedef] = ACTIONS(1102), - [anon_sym_extern] = ACTIONS(1102), - [anon_sym___attribute__] = ACTIONS(1102), - [anon_sym_LBRACE] = ACTIONS(1104), - [anon_sym_static] = ACTIONS(1102), - [anon_sym_auto] = ACTIONS(1102), - [anon_sym_register] = ACTIONS(1102), - [anon_sym_inline] = ACTIONS(1102), - [anon_sym_const] = ACTIONS(1102), - [anon_sym_volatile] = ACTIONS(1102), - [anon_sym_restrict] = ACTIONS(1102), - [anon_sym__Atomic] = ACTIONS(1102), - [anon_sym_signed] = ACTIONS(1102), - [anon_sym_unsigned] = ACTIONS(1102), - [anon_sym_long] = ACTIONS(1102), - [anon_sym_short] = ACTIONS(1102), - [sym_primitive_type] = ACTIONS(1102), - [anon_sym_enum] = ACTIONS(1102), - [anon_sym_struct] = ACTIONS(1102), - [anon_sym_union] = ACTIONS(1102), - [anon_sym_if] = ACTIONS(1102), - [anon_sym_switch] = ACTIONS(1102), - [anon_sym_case] = ACTIONS(1102), - [anon_sym_default] = ACTIONS(1102), - [anon_sym_while] = ACTIONS(1102), - [anon_sym_do] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1102), - [anon_sym_return] = ACTIONS(1102), - [anon_sym_break] = ACTIONS(1102), - [anon_sym_continue] = ACTIONS(1102), - [anon_sym_goto] = ACTIONS(1102), - [anon_sym_DASH_DASH] = ACTIONS(1104), - [anon_sym_PLUS_PLUS] = ACTIONS(1104), - [anon_sym_sizeof] = ACTIONS(1102), - [sym_number_literal] = ACTIONS(1104), - [anon_sym_L_SQUOTE] = ACTIONS(1104), - [anon_sym_u_SQUOTE] = ACTIONS(1104), - [anon_sym_U_SQUOTE] = ACTIONS(1104), - [anon_sym_u8_SQUOTE] = ACTIONS(1104), - [anon_sym_SQUOTE] = ACTIONS(1104), - [anon_sym_L_DQUOTE] = ACTIONS(1104), - [anon_sym_u_DQUOTE] = ACTIONS(1104), - [anon_sym_U_DQUOTE] = ACTIONS(1104), - [anon_sym_u8_DQUOTE] = ACTIONS(1104), - [anon_sym_DQUOTE] = ACTIONS(1104), - [sym_true] = ACTIONS(1102), - [sym_false] = ACTIONS(1102), - [sym_null] = ACTIONS(1102), + [291] = { + [sym_identifier] = ACTIONS(1046), + [aux_sym_preproc_include_token1] = ACTIONS(1046), + [aux_sym_preproc_def_token1] = ACTIONS(1046), + [aux_sym_preproc_if_token1] = ACTIONS(1046), + [aux_sym_preproc_if_token2] = ACTIONS(1046), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1046), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1046), + [sym_preproc_directive] = ACTIONS(1046), + [anon_sym_LPAREN2] = ACTIONS(1048), + [anon_sym_BANG] = ACTIONS(1048), + [anon_sym_TILDE] = ACTIONS(1048), + [anon_sym_DASH] = ACTIONS(1046), + [anon_sym_PLUS] = ACTIONS(1046), + [anon_sym_STAR] = ACTIONS(1048), + [anon_sym_AMP] = ACTIONS(1048), + [anon_sym_SEMI] = ACTIONS(1048), + [anon_sym_typedef] = ACTIONS(1046), + [anon_sym_extern] = ACTIONS(1046), + [anon_sym___attribute__] = ACTIONS(1046), + [anon_sym_LBRACE] = ACTIONS(1048), + [anon_sym_static] = ACTIONS(1046), + [anon_sym_auto] = ACTIONS(1046), + [anon_sym_register] = ACTIONS(1046), + [anon_sym_inline] = ACTIONS(1046), + [anon_sym_const] = ACTIONS(1046), + [anon_sym_volatile] = ACTIONS(1046), + [anon_sym_restrict] = ACTIONS(1046), + [anon_sym__Atomic] = ACTIONS(1046), + [anon_sym_signed] = ACTIONS(1046), + [anon_sym_unsigned] = ACTIONS(1046), + [anon_sym_long] = ACTIONS(1046), + [anon_sym_short] = ACTIONS(1046), + [sym_primitive_type] = ACTIONS(1046), + [anon_sym_enum] = ACTIONS(1046), + [anon_sym_struct] = ACTIONS(1046), + [anon_sym_union] = ACTIONS(1046), + [anon_sym_if] = ACTIONS(1046), + [anon_sym_else] = ACTIONS(1046), + [anon_sym_switch] = ACTIONS(1046), + [anon_sym_case] = ACTIONS(1046), + [anon_sym_default] = ACTIONS(1046), + [anon_sym_while] = ACTIONS(1046), + [anon_sym_do] = ACTIONS(1046), + [anon_sym_for] = ACTIONS(1046), + [anon_sym_return] = ACTIONS(1046), + [anon_sym_break] = ACTIONS(1046), + [anon_sym_continue] = ACTIONS(1046), + [anon_sym_goto] = ACTIONS(1046), + [anon_sym_DASH_DASH] = ACTIONS(1048), + [anon_sym_PLUS_PLUS] = ACTIONS(1048), + [anon_sym_sizeof] = ACTIONS(1046), + [sym_number_literal] = ACTIONS(1048), + [anon_sym_L_SQUOTE] = ACTIONS(1048), + [anon_sym_u_SQUOTE] = ACTIONS(1048), + [anon_sym_U_SQUOTE] = ACTIONS(1048), + [anon_sym_u8_SQUOTE] = ACTIONS(1048), + [anon_sym_SQUOTE] = ACTIONS(1048), + [anon_sym_L_DQUOTE] = ACTIONS(1048), + [anon_sym_u_DQUOTE] = ACTIONS(1048), + [anon_sym_U_DQUOTE] = ACTIONS(1048), + [anon_sym_u8_DQUOTE] = ACTIONS(1048), + [anon_sym_DQUOTE] = ACTIONS(1048), + [sym_true] = ACTIONS(1046), + [sym_false] = ACTIONS(1046), + [sym_null] = ACTIONS(1046), [sym_comment] = ACTIONS(3), }, - [302] = { - [sym_identifier] = ACTIONS(1162), - [aux_sym_preproc_include_token1] = ACTIONS(1162), - [aux_sym_preproc_def_token1] = ACTIONS(1162), - [aux_sym_preproc_if_token1] = ACTIONS(1162), - [aux_sym_preproc_if_token2] = ACTIONS(1162), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1162), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1162), - [sym_preproc_directive] = ACTIONS(1162), - [anon_sym_LPAREN2] = ACTIONS(1164), - [anon_sym_BANG] = ACTIONS(1164), - [anon_sym_TILDE] = ACTIONS(1164), - [anon_sym_DASH] = ACTIONS(1162), - [anon_sym_PLUS] = ACTIONS(1162), - [anon_sym_STAR] = ACTIONS(1164), - [anon_sym_AMP] = ACTIONS(1164), - [anon_sym_SEMI] = ACTIONS(1164), - [anon_sym_typedef] = ACTIONS(1162), - [anon_sym_extern] = ACTIONS(1162), - [anon_sym___attribute__] = ACTIONS(1162), - [anon_sym_LBRACE] = ACTIONS(1164), - [anon_sym_static] = ACTIONS(1162), - [anon_sym_auto] = ACTIONS(1162), - [anon_sym_register] = ACTIONS(1162), - [anon_sym_inline] = ACTIONS(1162), - [anon_sym_const] = ACTIONS(1162), - [anon_sym_volatile] = ACTIONS(1162), - [anon_sym_restrict] = ACTIONS(1162), - [anon_sym__Atomic] = ACTIONS(1162), - [anon_sym_signed] = ACTIONS(1162), - [anon_sym_unsigned] = ACTIONS(1162), - [anon_sym_long] = ACTIONS(1162), - [anon_sym_short] = ACTIONS(1162), - [sym_primitive_type] = ACTIONS(1162), - [anon_sym_enum] = ACTIONS(1162), - [anon_sym_struct] = ACTIONS(1162), - [anon_sym_union] = ACTIONS(1162), - [anon_sym_if] = ACTIONS(1162), - [anon_sym_switch] = ACTIONS(1162), - [anon_sym_case] = ACTIONS(1162), - [anon_sym_default] = ACTIONS(1162), - [anon_sym_while] = ACTIONS(1162), - [anon_sym_do] = ACTIONS(1162), - [anon_sym_for] = ACTIONS(1162), - [anon_sym_return] = ACTIONS(1162), - [anon_sym_break] = ACTIONS(1162), - [anon_sym_continue] = ACTIONS(1162), - [anon_sym_goto] = ACTIONS(1162), - [anon_sym_DASH_DASH] = ACTIONS(1164), - [anon_sym_PLUS_PLUS] = ACTIONS(1164), - [anon_sym_sizeof] = ACTIONS(1162), - [sym_number_literal] = ACTIONS(1164), - [anon_sym_L_SQUOTE] = ACTIONS(1164), - [anon_sym_u_SQUOTE] = ACTIONS(1164), - [anon_sym_U_SQUOTE] = ACTIONS(1164), - [anon_sym_u8_SQUOTE] = ACTIONS(1164), - [anon_sym_SQUOTE] = ACTIONS(1164), - [anon_sym_L_DQUOTE] = ACTIONS(1164), - [anon_sym_u_DQUOTE] = ACTIONS(1164), - [anon_sym_U_DQUOTE] = ACTIONS(1164), - [anon_sym_u8_DQUOTE] = ACTIONS(1164), - [anon_sym_DQUOTE] = ACTIONS(1164), - [sym_true] = ACTIONS(1162), - [sym_false] = ACTIONS(1162), - [sym_null] = ACTIONS(1162), + [292] = { + [sym_identifier] = ACTIONS(1018), + [aux_sym_preproc_include_token1] = ACTIONS(1018), + [aux_sym_preproc_def_token1] = ACTIONS(1018), + [aux_sym_preproc_if_token1] = ACTIONS(1018), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1018), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1018), + [sym_preproc_directive] = ACTIONS(1018), + [anon_sym_LPAREN2] = ACTIONS(1020), + [anon_sym_BANG] = ACTIONS(1020), + [anon_sym_TILDE] = ACTIONS(1020), + [anon_sym_DASH] = ACTIONS(1018), + [anon_sym_PLUS] = ACTIONS(1018), + [anon_sym_STAR] = ACTIONS(1020), + [anon_sym_AMP] = ACTIONS(1020), + [anon_sym_SEMI] = ACTIONS(1020), + [anon_sym_typedef] = ACTIONS(1018), + [anon_sym_extern] = ACTIONS(1018), + [anon_sym___attribute__] = ACTIONS(1018), + [anon_sym_LBRACE] = ACTIONS(1020), + [anon_sym_RBRACE] = ACTIONS(1020), + [anon_sym_static] = ACTIONS(1018), + [anon_sym_auto] = ACTIONS(1018), + [anon_sym_register] = ACTIONS(1018), + [anon_sym_inline] = ACTIONS(1018), + [anon_sym_const] = ACTIONS(1018), + [anon_sym_volatile] = ACTIONS(1018), + [anon_sym_restrict] = ACTIONS(1018), + [anon_sym__Atomic] = ACTIONS(1018), + [anon_sym_signed] = ACTIONS(1018), + [anon_sym_unsigned] = ACTIONS(1018), + [anon_sym_long] = ACTIONS(1018), + [anon_sym_short] = ACTIONS(1018), + [sym_primitive_type] = ACTIONS(1018), + [anon_sym_enum] = ACTIONS(1018), + [anon_sym_struct] = ACTIONS(1018), + [anon_sym_union] = ACTIONS(1018), + [anon_sym_if] = ACTIONS(1018), + [anon_sym_else] = ACTIONS(1018), + [anon_sym_switch] = ACTIONS(1018), + [anon_sym_case] = ACTIONS(1018), + [anon_sym_default] = ACTIONS(1018), + [anon_sym_while] = ACTIONS(1018), + [anon_sym_do] = ACTIONS(1018), + [anon_sym_for] = ACTIONS(1018), + [anon_sym_return] = ACTIONS(1018), + [anon_sym_break] = ACTIONS(1018), + [anon_sym_continue] = ACTIONS(1018), + [anon_sym_goto] = ACTIONS(1018), + [anon_sym_DASH_DASH] = ACTIONS(1020), + [anon_sym_PLUS_PLUS] = ACTIONS(1020), + [anon_sym_sizeof] = ACTIONS(1018), + [sym_number_literal] = ACTIONS(1020), + [anon_sym_L_SQUOTE] = ACTIONS(1020), + [anon_sym_u_SQUOTE] = ACTIONS(1020), + [anon_sym_U_SQUOTE] = ACTIONS(1020), + [anon_sym_u8_SQUOTE] = ACTIONS(1020), + [anon_sym_SQUOTE] = ACTIONS(1020), + [anon_sym_L_DQUOTE] = ACTIONS(1020), + [anon_sym_u_DQUOTE] = ACTIONS(1020), + [anon_sym_U_DQUOTE] = ACTIONS(1020), + [anon_sym_u8_DQUOTE] = ACTIONS(1020), + [anon_sym_DQUOTE] = ACTIONS(1020), + [sym_true] = ACTIONS(1018), + [sym_false] = ACTIONS(1018), + [sym_null] = ACTIONS(1018), [sym_comment] = ACTIONS(3), }, - [303] = { + [293] = { + [sym_identifier] = ACTIONS(1166), + [aux_sym_preproc_include_token1] = ACTIONS(1166), + [aux_sym_preproc_def_token1] = ACTIONS(1166), + [aux_sym_preproc_if_token1] = ACTIONS(1166), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1166), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1166), + [sym_preproc_directive] = ACTIONS(1166), + [anon_sym_LPAREN2] = ACTIONS(1168), + [anon_sym_BANG] = ACTIONS(1168), + [anon_sym_TILDE] = ACTIONS(1168), + [anon_sym_DASH] = ACTIONS(1166), + [anon_sym_PLUS] = ACTIONS(1166), + [anon_sym_STAR] = ACTIONS(1168), + [anon_sym_AMP] = ACTIONS(1168), + [anon_sym_SEMI] = ACTIONS(1168), + [anon_sym_typedef] = ACTIONS(1166), + [anon_sym_extern] = ACTIONS(1166), + [anon_sym___attribute__] = ACTIONS(1166), + [anon_sym_LBRACE] = ACTIONS(1168), + [anon_sym_RBRACE] = ACTIONS(1168), + [anon_sym_static] = ACTIONS(1166), + [anon_sym_auto] = ACTIONS(1166), + [anon_sym_register] = ACTIONS(1166), + [anon_sym_inline] = ACTIONS(1166), + [anon_sym_const] = ACTIONS(1166), + [anon_sym_volatile] = ACTIONS(1166), + [anon_sym_restrict] = ACTIONS(1166), + [anon_sym__Atomic] = ACTIONS(1166), + [anon_sym_signed] = ACTIONS(1166), + [anon_sym_unsigned] = ACTIONS(1166), + [anon_sym_long] = ACTIONS(1166), + [anon_sym_short] = ACTIONS(1166), + [sym_primitive_type] = ACTIONS(1166), + [anon_sym_enum] = ACTIONS(1166), + [anon_sym_struct] = ACTIONS(1166), + [anon_sym_union] = ACTIONS(1166), + [anon_sym_if] = ACTIONS(1166), + [anon_sym_switch] = ACTIONS(1166), + [anon_sym_case] = ACTIONS(1166), + [anon_sym_default] = ACTIONS(1166), + [anon_sym_while] = ACTIONS(1166), + [anon_sym_do] = ACTIONS(1166), + [anon_sym_for] = ACTIONS(1166), + [anon_sym_return] = ACTIONS(1166), + [anon_sym_break] = ACTIONS(1166), + [anon_sym_continue] = ACTIONS(1166), + [anon_sym_goto] = ACTIONS(1166), + [anon_sym_DASH_DASH] = ACTIONS(1168), + [anon_sym_PLUS_PLUS] = ACTIONS(1168), + [anon_sym_sizeof] = ACTIONS(1166), + [sym_number_literal] = ACTIONS(1168), + [anon_sym_L_SQUOTE] = ACTIONS(1168), + [anon_sym_u_SQUOTE] = ACTIONS(1168), + [anon_sym_U_SQUOTE] = ACTIONS(1168), + [anon_sym_u8_SQUOTE] = ACTIONS(1168), + [anon_sym_SQUOTE] = ACTIONS(1168), + [anon_sym_L_DQUOTE] = ACTIONS(1168), + [anon_sym_u_DQUOTE] = ACTIONS(1168), + [anon_sym_U_DQUOTE] = ACTIONS(1168), + [anon_sym_u8_DQUOTE] = ACTIONS(1168), + [anon_sym_DQUOTE] = ACTIONS(1168), + [sym_true] = ACTIONS(1166), + [sym_false] = ACTIONS(1166), + [sym_null] = ACTIONS(1166), + [sym_comment] = ACTIONS(3), + }, + [294] = { + [ts_builtin_sym_end] = ACTIONS(1120), [sym_identifier] = ACTIONS(1118), [aux_sym_preproc_include_token1] = ACTIONS(1118), [aux_sym_preproc_def_token1] = ACTIONS(1118), @@ -30332,7 +29744,6 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_extern] = ACTIONS(1118), [anon_sym___attribute__] = ACTIONS(1118), [anon_sym_LBRACE] = ACTIONS(1120), - [anon_sym_RBRACE] = ACTIONS(1120), [anon_sym_static] = ACTIONS(1118), [anon_sym_auto] = ACTIONS(1118), [anon_sym_register] = ACTIONS(1118), @@ -30379,213 +29790,78 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1118), [sym_comment] = ACTIONS(3), }, - [304] = { - [ts_builtin_sym_end] = ACTIONS(1164), - [sym_identifier] = ACTIONS(1162), - [aux_sym_preproc_include_token1] = ACTIONS(1162), - [aux_sym_preproc_def_token1] = ACTIONS(1162), - [aux_sym_preproc_if_token1] = ACTIONS(1162), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1162), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1162), - [sym_preproc_directive] = ACTIONS(1162), - [anon_sym_LPAREN2] = ACTIONS(1164), - [anon_sym_BANG] = ACTIONS(1164), - [anon_sym_TILDE] = ACTIONS(1164), - [anon_sym_DASH] = ACTIONS(1162), - [anon_sym_PLUS] = ACTIONS(1162), - [anon_sym_STAR] = ACTIONS(1164), - [anon_sym_AMP] = ACTIONS(1164), - [anon_sym_SEMI] = ACTIONS(1164), - [anon_sym_typedef] = ACTIONS(1162), - [anon_sym_extern] = ACTIONS(1162), - [anon_sym___attribute__] = ACTIONS(1162), - [anon_sym_LBRACE] = ACTIONS(1164), - [anon_sym_static] = ACTIONS(1162), - [anon_sym_auto] = ACTIONS(1162), - [anon_sym_register] = ACTIONS(1162), - [anon_sym_inline] = ACTIONS(1162), - [anon_sym_const] = ACTIONS(1162), - [anon_sym_volatile] = ACTIONS(1162), - [anon_sym_restrict] = ACTIONS(1162), - [anon_sym__Atomic] = ACTIONS(1162), - [anon_sym_signed] = ACTIONS(1162), - [anon_sym_unsigned] = ACTIONS(1162), - [anon_sym_long] = ACTIONS(1162), - [anon_sym_short] = ACTIONS(1162), - [sym_primitive_type] = ACTIONS(1162), - [anon_sym_enum] = ACTIONS(1162), - [anon_sym_struct] = ACTIONS(1162), - [anon_sym_union] = ACTIONS(1162), - [anon_sym_if] = ACTIONS(1162), - [anon_sym_switch] = ACTIONS(1162), - [anon_sym_case] = ACTIONS(1162), - [anon_sym_default] = ACTIONS(1162), - [anon_sym_while] = ACTIONS(1162), - [anon_sym_do] = ACTIONS(1162), - [anon_sym_for] = ACTIONS(1162), - [anon_sym_return] = ACTIONS(1162), - [anon_sym_break] = ACTIONS(1162), - [anon_sym_continue] = ACTIONS(1162), - [anon_sym_goto] = ACTIONS(1162), - [anon_sym_DASH_DASH] = ACTIONS(1164), - [anon_sym_PLUS_PLUS] = ACTIONS(1164), - [anon_sym_sizeof] = ACTIONS(1162), - [sym_number_literal] = ACTIONS(1164), - [anon_sym_L_SQUOTE] = ACTIONS(1164), - [anon_sym_u_SQUOTE] = ACTIONS(1164), - [anon_sym_U_SQUOTE] = ACTIONS(1164), - [anon_sym_u8_SQUOTE] = ACTIONS(1164), - [anon_sym_SQUOTE] = ACTIONS(1164), - [anon_sym_L_DQUOTE] = ACTIONS(1164), - [anon_sym_u_DQUOTE] = ACTIONS(1164), - [anon_sym_U_DQUOTE] = ACTIONS(1164), - [anon_sym_u8_DQUOTE] = ACTIONS(1164), - [anon_sym_DQUOTE] = ACTIONS(1164), - [sym_true] = ACTIONS(1162), - [sym_false] = ACTIONS(1162), - [sym_null] = ACTIONS(1162), - [sym_comment] = ACTIONS(3), - }, - [305] = { - [ts_builtin_sym_end] = ACTIONS(1160), - [sym_identifier] = ACTIONS(1158), - [aux_sym_preproc_include_token1] = ACTIONS(1158), - [aux_sym_preproc_def_token1] = ACTIONS(1158), - [aux_sym_preproc_if_token1] = ACTIONS(1158), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1158), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1158), - [sym_preproc_directive] = ACTIONS(1158), - [anon_sym_LPAREN2] = ACTIONS(1160), - [anon_sym_BANG] = ACTIONS(1160), - [anon_sym_TILDE] = ACTIONS(1160), - [anon_sym_DASH] = ACTIONS(1158), - [anon_sym_PLUS] = ACTIONS(1158), - [anon_sym_STAR] = ACTIONS(1160), - [anon_sym_AMP] = ACTIONS(1160), - [anon_sym_SEMI] = ACTIONS(1160), - [anon_sym_typedef] = ACTIONS(1158), - [anon_sym_extern] = ACTIONS(1158), - [anon_sym___attribute__] = ACTIONS(1158), - [anon_sym_LBRACE] = ACTIONS(1160), - [anon_sym_static] = ACTIONS(1158), - [anon_sym_auto] = ACTIONS(1158), - [anon_sym_register] = ACTIONS(1158), - [anon_sym_inline] = ACTIONS(1158), - [anon_sym_const] = ACTIONS(1158), - [anon_sym_volatile] = ACTIONS(1158), - [anon_sym_restrict] = ACTIONS(1158), - [anon_sym__Atomic] = ACTIONS(1158), - [anon_sym_signed] = ACTIONS(1158), - [anon_sym_unsigned] = ACTIONS(1158), - [anon_sym_long] = ACTIONS(1158), - [anon_sym_short] = ACTIONS(1158), - [sym_primitive_type] = ACTIONS(1158), - [anon_sym_enum] = ACTIONS(1158), - [anon_sym_struct] = ACTIONS(1158), - [anon_sym_union] = ACTIONS(1158), - [anon_sym_if] = ACTIONS(1158), - [anon_sym_switch] = ACTIONS(1158), - [anon_sym_case] = ACTIONS(1158), - [anon_sym_default] = ACTIONS(1158), - [anon_sym_while] = ACTIONS(1158), - [anon_sym_do] = ACTIONS(1158), - [anon_sym_for] = ACTIONS(1158), - [anon_sym_return] = ACTIONS(1158), - [anon_sym_break] = ACTIONS(1158), - [anon_sym_continue] = ACTIONS(1158), - [anon_sym_goto] = ACTIONS(1158), - [anon_sym_DASH_DASH] = ACTIONS(1160), - [anon_sym_PLUS_PLUS] = ACTIONS(1160), - [anon_sym_sizeof] = ACTIONS(1158), - [sym_number_literal] = ACTIONS(1160), - [anon_sym_L_SQUOTE] = ACTIONS(1160), - [anon_sym_u_SQUOTE] = ACTIONS(1160), - [anon_sym_U_SQUOTE] = ACTIONS(1160), - [anon_sym_u8_SQUOTE] = ACTIONS(1160), - [anon_sym_SQUOTE] = ACTIONS(1160), - [anon_sym_L_DQUOTE] = ACTIONS(1160), - [anon_sym_u_DQUOTE] = ACTIONS(1160), - [anon_sym_U_DQUOTE] = ACTIONS(1160), - [anon_sym_u8_DQUOTE] = ACTIONS(1160), - [anon_sym_DQUOTE] = ACTIONS(1160), - [sym_true] = ACTIONS(1158), - [sym_false] = ACTIONS(1158), - [sym_null] = ACTIONS(1158), - [sym_comment] = ACTIONS(3), - }, - [306] = { - [sym_identifier] = ACTIONS(1102), - [aux_sym_preproc_include_token1] = ACTIONS(1102), - [aux_sym_preproc_def_token1] = ACTIONS(1102), - [aux_sym_preproc_if_token1] = ACTIONS(1102), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1102), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1102), - [sym_preproc_directive] = ACTIONS(1102), - [anon_sym_LPAREN2] = ACTIONS(1104), - [anon_sym_BANG] = ACTIONS(1104), - [anon_sym_TILDE] = ACTIONS(1104), - [anon_sym_DASH] = ACTIONS(1102), - [anon_sym_PLUS] = ACTIONS(1102), - [anon_sym_STAR] = ACTIONS(1104), - [anon_sym_AMP] = ACTIONS(1104), - [anon_sym_SEMI] = ACTIONS(1104), - [anon_sym_typedef] = ACTIONS(1102), - [anon_sym_extern] = ACTIONS(1102), - [anon_sym___attribute__] = ACTIONS(1102), - [anon_sym_LBRACE] = ACTIONS(1104), - [anon_sym_RBRACE] = ACTIONS(1104), - [anon_sym_static] = ACTIONS(1102), - [anon_sym_auto] = ACTIONS(1102), - [anon_sym_register] = ACTIONS(1102), - [anon_sym_inline] = ACTIONS(1102), - [anon_sym_const] = ACTIONS(1102), - [anon_sym_volatile] = ACTIONS(1102), - [anon_sym_restrict] = ACTIONS(1102), - [anon_sym__Atomic] = ACTIONS(1102), - [anon_sym_signed] = ACTIONS(1102), - [anon_sym_unsigned] = ACTIONS(1102), - [anon_sym_long] = ACTIONS(1102), - [anon_sym_short] = ACTIONS(1102), - [sym_primitive_type] = ACTIONS(1102), - [anon_sym_enum] = ACTIONS(1102), - [anon_sym_struct] = ACTIONS(1102), - [anon_sym_union] = ACTIONS(1102), - [anon_sym_if] = ACTIONS(1102), - [anon_sym_switch] = ACTIONS(1102), - [anon_sym_case] = ACTIONS(1102), - [anon_sym_default] = ACTIONS(1102), - [anon_sym_while] = ACTIONS(1102), - [anon_sym_do] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1102), - [anon_sym_return] = ACTIONS(1102), - [anon_sym_break] = ACTIONS(1102), - [anon_sym_continue] = ACTIONS(1102), - [anon_sym_goto] = ACTIONS(1102), - [anon_sym_DASH_DASH] = ACTIONS(1104), - [anon_sym_PLUS_PLUS] = ACTIONS(1104), - [anon_sym_sizeof] = ACTIONS(1102), - [sym_number_literal] = ACTIONS(1104), - [anon_sym_L_SQUOTE] = ACTIONS(1104), - [anon_sym_u_SQUOTE] = ACTIONS(1104), - [anon_sym_U_SQUOTE] = ACTIONS(1104), - [anon_sym_u8_SQUOTE] = ACTIONS(1104), - [anon_sym_SQUOTE] = ACTIONS(1104), - [anon_sym_L_DQUOTE] = ACTIONS(1104), - [anon_sym_u_DQUOTE] = ACTIONS(1104), - [anon_sym_U_DQUOTE] = ACTIONS(1104), - [anon_sym_u8_DQUOTE] = ACTIONS(1104), - [anon_sym_DQUOTE] = ACTIONS(1104), - [sym_true] = ACTIONS(1102), - [sym_false] = ACTIONS(1102), - [sym_null] = ACTIONS(1102), + [295] = { + [sym_identifier] = ACTIONS(1130), + [aux_sym_preproc_include_token1] = ACTIONS(1130), + [aux_sym_preproc_def_token1] = ACTIONS(1130), + [aux_sym_preproc_if_token1] = ACTIONS(1130), + [aux_sym_preproc_if_token2] = ACTIONS(1130), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1130), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1130), + [sym_preproc_directive] = ACTIONS(1130), + [anon_sym_LPAREN2] = ACTIONS(1132), + [anon_sym_BANG] = ACTIONS(1132), + [anon_sym_TILDE] = ACTIONS(1132), + [anon_sym_DASH] = ACTIONS(1130), + [anon_sym_PLUS] = ACTIONS(1130), + [anon_sym_STAR] = ACTIONS(1132), + [anon_sym_AMP] = ACTIONS(1132), + [anon_sym_SEMI] = ACTIONS(1132), + [anon_sym_typedef] = ACTIONS(1130), + [anon_sym_extern] = ACTIONS(1130), + [anon_sym___attribute__] = ACTIONS(1130), + [anon_sym_LBRACE] = ACTIONS(1132), + [anon_sym_static] = ACTIONS(1130), + [anon_sym_auto] = ACTIONS(1130), + [anon_sym_register] = ACTIONS(1130), + [anon_sym_inline] = ACTIONS(1130), + [anon_sym_const] = ACTIONS(1130), + [anon_sym_volatile] = ACTIONS(1130), + [anon_sym_restrict] = ACTIONS(1130), + [anon_sym__Atomic] = ACTIONS(1130), + [anon_sym_signed] = ACTIONS(1130), + [anon_sym_unsigned] = ACTIONS(1130), + [anon_sym_long] = ACTIONS(1130), + [anon_sym_short] = ACTIONS(1130), + [sym_primitive_type] = ACTIONS(1130), + [anon_sym_enum] = ACTIONS(1130), + [anon_sym_struct] = ACTIONS(1130), + [anon_sym_union] = ACTIONS(1130), + [anon_sym_if] = ACTIONS(1130), + [anon_sym_switch] = ACTIONS(1130), + [anon_sym_case] = ACTIONS(1130), + [anon_sym_default] = ACTIONS(1130), + [anon_sym_while] = ACTIONS(1130), + [anon_sym_do] = ACTIONS(1130), + [anon_sym_for] = ACTIONS(1130), + [anon_sym_return] = ACTIONS(1130), + [anon_sym_break] = ACTIONS(1130), + [anon_sym_continue] = ACTIONS(1130), + [anon_sym_goto] = ACTIONS(1130), + [anon_sym_DASH_DASH] = ACTIONS(1132), + [anon_sym_PLUS_PLUS] = ACTIONS(1132), + [anon_sym_sizeof] = ACTIONS(1130), + [sym_number_literal] = ACTIONS(1132), + [anon_sym_L_SQUOTE] = ACTIONS(1132), + [anon_sym_u_SQUOTE] = ACTIONS(1132), + [anon_sym_U_SQUOTE] = ACTIONS(1132), + [anon_sym_u8_SQUOTE] = ACTIONS(1132), + [anon_sym_SQUOTE] = ACTIONS(1132), + [anon_sym_L_DQUOTE] = ACTIONS(1132), + [anon_sym_u_DQUOTE] = ACTIONS(1132), + [anon_sym_U_DQUOTE] = ACTIONS(1132), + [anon_sym_u8_DQUOTE] = ACTIONS(1132), + [anon_sym_DQUOTE] = ACTIONS(1132), + [sym_true] = ACTIONS(1130), + [sym_false] = ACTIONS(1130), + [sym_null] = ACTIONS(1130), [sym_comment] = ACTIONS(3), }, - [307] = { + [296] = { [sym_identifier] = ACTIONS(1126), [aux_sym_preproc_include_token1] = ACTIONS(1126), [aux_sym_preproc_def_token1] = ACTIONS(1126), [aux_sym_preproc_if_token1] = ACTIONS(1126), - [aux_sym_preproc_if_token2] = ACTIONS(1126), [aux_sym_preproc_ifdef_token1] = ACTIONS(1126), [aux_sym_preproc_ifdef_token2] = ACTIONS(1126), [sym_preproc_directive] = ACTIONS(1126), @@ -30601,6 +29877,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_extern] = ACTIONS(1126), [anon_sym___attribute__] = ACTIONS(1126), [anon_sym_LBRACE] = ACTIONS(1128), + [anon_sym_RBRACE] = ACTIONS(1128), [anon_sym_static] = ACTIONS(1126), [anon_sym_auto] = ACTIONS(1126), [anon_sym_register] = ACTIONS(1126), @@ -30647,141 +29924,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1126), [sym_comment] = ACTIONS(3), }, - [308] = { - [sym_identifier] = ACTIONS(1106), - [aux_sym_preproc_include_token1] = ACTIONS(1106), - [aux_sym_preproc_def_token1] = ACTIONS(1106), - [aux_sym_preproc_if_token1] = ACTIONS(1106), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1106), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1106), - [sym_preproc_directive] = ACTIONS(1106), - [anon_sym_LPAREN2] = ACTIONS(1108), - [anon_sym_BANG] = ACTIONS(1108), - [anon_sym_TILDE] = ACTIONS(1108), - [anon_sym_DASH] = ACTIONS(1106), - [anon_sym_PLUS] = ACTIONS(1106), - [anon_sym_STAR] = ACTIONS(1108), - [anon_sym_AMP] = ACTIONS(1108), - [anon_sym_SEMI] = ACTIONS(1108), - [anon_sym_typedef] = ACTIONS(1106), - [anon_sym_extern] = ACTIONS(1106), - [anon_sym___attribute__] = ACTIONS(1106), - [anon_sym_LBRACE] = ACTIONS(1108), - [anon_sym_RBRACE] = ACTIONS(1108), - [anon_sym_static] = ACTIONS(1106), - [anon_sym_auto] = ACTIONS(1106), - [anon_sym_register] = ACTIONS(1106), - [anon_sym_inline] = ACTIONS(1106), - [anon_sym_const] = ACTIONS(1106), - [anon_sym_volatile] = ACTIONS(1106), - [anon_sym_restrict] = ACTIONS(1106), - [anon_sym__Atomic] = ACTIONS(1106), - [anon_sym_signed] = ACTIONS(1106), - [anon_sym_unsigned] = ACTIONS(1106), - [anon_sym_long] = ACTIONS(1106), - [anon_sym_short] = ACTIONS(1106), - [sym_primitive_type] = ACTIONS(1106), - [anon_sym_enum] = ACTIONS(1106), - [anon_sym_struct] = ACTIONS(1106), - [anon_sym_union] = ACTIONS(1106), - [anon_sym_if] = ACTIONS(1106), - [anon_sym_switch] = ACTIONS(1106), - [anon_sym_case] = ACTIONS(1106), - [anon_sym_default] = ACTIONS(1106), - [anon_sym_while] = ACTIONS(1106), - [anon_sym_do] = ACTIONS(1106), - [anon_sym_for] = ACTIONS(1106), - [anon_sym_return] = ACTIONS(1106), - [anon_sym_break] = ACTIONS(1106), - [anon_sym_continue] = ACTIONS(1106), - [anon_sym_goto] = ACTIONS(1106), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_sizeof] = ACTIONS(1106), - [sym_number_literal] = ACTIONS(1108), - [anon_sym_L_SQUOTE] = ACTIONS(1108), - [anon_sym_u_SQUOTE] = ACTIONS(1108), - [anon_sym_U_SQUOTE] = ACTIONS(1108), - [anon_sym_u8_SQUOTE] = ACTIONS(1108), - [anon_sym_SQUOTE] = ACTIONS(1108), - [anon_sym_L_DQUOTE] = ACTIONS(1108), - [anon_sym_u_DQUOTE] = ACTIONS(1108), - [anon_sym_U_DQUOTE] = ACTIONS(1108), - [anon_sym_u8_DQUOTE] = ACTIONS(1108), - [anon_sym_DQUOTE] = ACTIONS(1108), - [sym_true] = ACTIONS(1106), - [sym_false] = ACTIONS(1106), - [sym_null] = ACTIONS(1106), - [sym_comment] = ACTIONS(3), - }, - [309] = { - [sym_identifier] = ACTIONS(1110), - [aux_sym_preproc_include_token1] = ACTIONS(1110), - [aux_sym_preproc_def_token1] = ACTIONS(1110), - [aux_sym_preproc_if_token1] = ACTIONS(1110), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1110), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1110), - [sym_preproc_directive] = ACTIONS(1110), - [anon_sym_LPAREN2] = ACTIONS(1112), - [anon_sym_BANG] = ACTIONS(1112), - [anon_sym_TILDE] = ACTIONS(1112), - [anon_sym_DASH] = ACTIONS(1110), - [anon_sym_PLUS] = ACTIONS(1110), - [anon_sym_STAR] = ACTIONS(1112), - [anon_sym_AMP] = ACTIONS(1112), - [anon_sym_SEMI] = ACTIONS(1112), - [anon_sym_typedef] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1110), - [anon_sym___attribute__] = ACTIONS(1110), - [anon_sym_LBRACE] = ACTIONS(1112), - [anon_sym_RBRACE] = ACTIONS(1112), - [anon_sym_static] = ACTIONS(1110), - [anon_sym_auto] = ACTIONS(1110), - [anon_sym_register] = ACTIONS(1110), - [anon_sym_inline] = ACTIONS(1110), - [anon_sym_const] = ACTIONS(1110), - [anon_sym_volatile] = ACTIONS(1110), - [anon_sym_restrict] = ACTIONS(1110), - [anon_sym__Atomic] = ACTIONS(1110), - [anon_sym_signed] = ACTIONS(1110), - [anon_sym_unsigned] = ACTIONS(1110), - [anon_sym_long] = ACTIONS(1110), - [anon_sym_short] = ACTIONS(1110), - [sym_primitive_type] = ACTIONS(1110), - [anon_sym_enum] = ACTIONS(1110), - [anon_sym_struct] = ACTIONS(1110), - [anon_sym_union] = ACTIONS(1110), - [anon_sym_if] = ACTIONS(1110), - [anon_sym_switch] = ACTIONS(1110), - [anon_sym_case] = ACTIONS(1110), - [anon_sym_default] = ACTIONS(1110), - [anon_sym_while] = ACTIONS(1110), - [anon_sym_do] = ACTIONS(1110), - [anon_sym_for] = ACTIONS(1110), - [anon_sym_return] = ACTIONS(1110), - [anon_sym_break] = ACTIONS(1110), - [anon_sym_continue] = ACTIONS(1110), - [anon_sym_goto] = ACTIONS(1110), - [anon_sym_DASH_DASH] = ACTIONS(1112), - [anon_sym_PLUS_PLUS] = ACTIONS(1112), - [anon_sym_sizeof] = ACTIONS(1110), - [sym_number_literal] = ACTIONS(1112), - [anon_sym_L_SQUOTE] = ACTIONS(1112), - [anon_sym_u_SQUOTE] = ACTIONS(1112), - [anon_sym_U_SQUOTE] = ACTIONS(1112), - [anon_sym_u8_SQUOTE] = ACTIONS(1112), - [anon_sym_SQUOTE] = ACTIONS(1112), - [anon_sym_L_DQUOTE] = ACTIONS(1112), - [anon_sym_u_DQUOTE] = ACTIONS(1112), - [anon_sym_U_DQUOTE] = ACTIONS(1112), - [anon_sym_u8_DQUOTE] = ACTIONS(1112), - [anon_sym_DQUOTE] = ACTIONS(1112), - [sym_true] = ACTIONS(1110), - [sym_false] = ACTIONS(1110), - [sym_null] = ACTIONS(1110), - [sym_comment] = ACTIONS(3), - }, - [310] = { + [297] = { [sym_identifier] = ACTIONS(1114), [aux_sym_preproc_include_token1] = ACTIONS(1114), [aux_sym_preproc_def_token1] = ACTIONS(1114), @@ -30848,816 +29991,413 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1114), [sym_comment] = ACTIONS(3), }, - [311] = { - [sym_identifier] = ACTIONS(1174), - [aux_sym_preproc_include_token1] = ACTIONS(1174), - [aux_sym_preproc_def_token1] = ACTIONS(1174), - [aux_sym_preproc_if_token1] = ACTIONS(1174), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1174), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1174), - [sym_preproc_directive] = ACTIONS(1174), - [anon_sym_LPAREN2] = ACTIONS(1176), - [anon_sym_BANG] = ACTIONS(1176), - [anon_sym_TILDE] = ACTIONS(1176), - [anon_sym_DASH] = ACTIONS(1174), - [anon_sym_PLUS] = ACTIONS(1174), - [anon_sym_STAR] = ACTIONS(1176), - [anon_sym_AMP] = ACTIONS(1176), - [anon_sym_SEMI] = ACTIONS(1176), - [anon_sym_typedef] = ACTIONS(1174), - [anon_sym_extern] = ACTIONS(1174), - [anon_sym___attribute__] = ACTIONS(1174), - [anon_sym_LBRACE] = ACTIONS(1176), - [anon_sym_RBRACE] = ACTIONS(1176), - [anon_sym_static] = ACTIONS(1174), - [anon_sym_auto] = ACTIONS(1174), - [anon_sym_register] = ACTIONS(1174), - [anon_sym_inline] = ACTIONS(1174), - [anon_sym_const] = ACTIONS(1174), - [anon_sym_volatile] = ACTIONS(1174), - [anon_sym_restrict] = ACTIONS(1174), - [anon_sym__Atomic] = ACTIONS(1174), - [anon_sym_signed] = ACTIONS(1174), - [anon_sym_unsigned] = ACTIONS(1174), - [anon_sym_long] = ACTIONS(1174), - [anon_sym_short] = ACTIONS(1174), - [sym_primitive_type] = ACTIONS(1174), - [anon_sym_enum] = ACTIONS(1174), - [anon_sym_struct] = ACTIONS(1174), - [anon_sym_union] = ACTIONS(1174), - [anon_sym_if] = ACTIONS(1174), - [anon_sym_switch] = ACTIONS(1174), - [anon_sym_case] = ACTIONS(1174), - [anon_sym_default] = ACTIONS(1174), - [anon_sym_while] = ACTIONS(1174), - [anon_sym_do] = ACTIONS(1174), - [anon_sym_for] = ACTIONS(1174), - [anon_sym_return] = ACTIONS(1174), - [anon_sym_break] = ACTIONS(1174), - [anon_sym_continue] = ACTIONS(1174), - [anon_sym_goto] = ACTIONS(1174), - [anon_sym_DASH_DASH] = ACTIONS(1176), - [anon_sym_PLUS_PLUS] = ACTIONS(1176), - [anon_sym_sizeof] = ACTIONS(1174), - [sym_number_literal] = ACTIONS(1176), - [anon_sym_L_SQUOTE] = ACTIONS(1176), - [anon_sym_u_SQUOTE] = ACTIONS(1176), - [anon_sym_U_SQUOTE] = ACTIONS(1176), - [anon_sym_u8_SQUOTE] = ACTIONS(1176), - [anon_sym_SQUOTE] = ACTIONS(1176), - [anon_sym_L_DQUOTE] = ACTIONS(1176), - [anon_sym_u_DQUOTE] = ACTIONS(1176), - [anon_sym_U_DQUOTE] = ACTIONS(1176), - [anon_sym_u8_DQUOTE] = ACTIONS(1176), - [anon_sym_DQUOTE] = ACTIONS(1176), - [sym_true] = ACTIONS(1174), - [sym_false] = ACTIONS(1174), - [sym_null] = ACTIONS(1174), - [sym_comment] = ACTIONS(3), - }, - [312] = { - [ts_builtin_sym_end] = ACTIONS(1140), - [sym_identifier] = ACTIONS(1138), - [aux_sym_preproc_include_token1] = ACTIONS(1138), - [aux_sym_preproc_def_token1] = ACTIONS(1138), - [aux_sym_preproc_if_token1] = ACTIONS(1138), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1138), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1138), - [sym_preproc_directive] = ACTIONS(1138), - [anon_sym_LPAREN2] = ACTIONS(1140), - [anon_sym_BANG] = ACTIONS(1140), - [anon_sym_TILDE] = ACTIONS(1140), - [anon_sym_DASH] = ACTIONS(1138), - [anon_sym_PLUS] = ACTIONS(1138), - [anon_sym_STAR] = ACTIONS(1140), - [anon_sym_AMP] = ACTIONS(1140), - [anon_sym_SEMI] = ACTIONS(1140), - [anon_sym_typedef] = ACTIONS(1138), - [anon_sym_extern] = ACTIONS(1138), - [anon_sym___attribute__] = ACTIONS(1138), - [anon_sym_LBRACE] = ACTIONS(1140), - [anon_sym_static] = ACTIONS(1138), - [anon_sym_auto] = ACTIONS(1138), - [anon_sym_register] = ACTIONS(1138), - [anon_sym_inline] = ACTIONS(1138), - [anon_sym_const] = ACTIONS(1138), - [anon_sym_volatile] = ACTIONS(1138), - [anon_sym_restrict] = ACTIONS(1138), - [anon_sym__Atomic] = ACTIONS(1138), - [anon_sym_signed] = ACTIONS(1138), - [anon_sym_unsigned] = ACTIONS(1138), - [anon_sym_long] = ACTIONS(1138), - [anon_sym_short] = ACTIONS(1138), - [sym_primitive_type] = ACTIONS(1138), - [anon_sym_enum] = ACTIONS(1138), - [anon_sym_struct] = ACTIONS(1138), - [anon_sym_union] = ACTIONS(1138), - [anon_sym_if] = ACTIONS(1138), - [anon_sym_switch] = ACTIONS(1138), - [anon_sym_case] = ACTIONS(1138), - [anon_sym_default] = ACTIONS(1138), - [anon_sym_while] = ACTIONS(1138), - [anon_sym_do] = ACTIONS(1138), - [anon_sym_for] = ACTIONS(1138), - [anon_sym_return] = ACTIONS(1138), - [anon_sym_break] = ACTIONS(1138), - [anon_sym_continue] = ACTIONS(1138), - [anon_sym_goto] = ACTIONS(1138), - [anon_sym_DASH_DASH] = ACTIONS(1140), - [anon_sym_PLUS_PLUS] = ACTIONS(1140), - [anon_sym_sizeof] = ACTIONS(1138), - [sym_number_literal] = ACTIONS(1140), - [anon_sym_L_SQUOTE] = ACTIONS(1140), - [anon_sym_u_SQUOTE] = ACTIONS(1140), - [anon_sym_U_SQUOTE] = ACTIONS(1140), - [anon_sym_u8_SQUOTE] = ACTIONS(1140), - [anon_sym_SQUOTE] = ACTIONS(1140), - [anon_sym_L_DQUOTE] = ACTIONS(1140), - [anon_sym_u_DQUOTE] = ACTIONS(1140), - [anon_sym_U_DQUOTE] = ACTIONS(1140), - [anon_sym_u8_DQUOTE] = ACTIONS(1140), - [anon_sym_DQUOTE] = ACTIONS(1140), - [sym_true] = ACTIONS(1138), - [sym_false] = ACTIONS(1138), - [sym_null] = ACTIONS(1138), - [sym_comment] = ACTIONS(3), - }, - [313] = { - [sym_identifier] = ACTIONS(1178), - [aux_sym_preproc_include_token1] = ACTIONS(1178), - [aux_sym_preproc_def_token1] = ACTIONS(1178), - [aux_sym_preproc_if_token1] = ACTIONS(1178), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1178), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1178), - [sym_preproc_directive] = ACTIONS(1178), - [anon_sym_LPAREN2] = ACTIONS(1180), - [anon_sym_BANG] = ACTIONS(1180), - [anon_sym_TILDE] = ACTIONS(1180), - [anon_sym_DASH] = ACTIONS(1178), - [anon_sym_PLUS] = ACTIONS(1178), - [anon_sym_STAR] = ACTIONS(1180), - [anon_sym_AMP] = ACTIONS(1180), - [anon_sym_SEMI] = ACTIONS(1180), - [anon_sym_typedef] = ACTIONS(1178), - [anon_sym_extern] = ACTIONS(1178), - [anon_sym___attribute__] = ACTIONS(1178), - [anon_sym_LBRACE] = ACTIONS(1180), - [anon_sym_RBRACE] = ACTIONS(1180), - [anon_sym_static] = ACTIONS(1178), - [anon_sym_auto] = ACTIONS(1178), - [anon_sym_register] = ACTIONS(1178), - [anon_sym_inline] = ACTIONS(1178), - [anon_sym_const] = ACTIONS(1178), - [anon_sym_volatile] = ACTIONS(1178), - [anon_sym_restrict] = ACTIONS(1178), - [anon_sym__Atomic] = ACTIONS(1178), - [anon_sym_signed] = ACTIONS(1178), - [anon_sym_unsigned] = ACTIONS(1178), - [anon_sym_long] = ACTIONS(1178), - [anon_sym_short] = ACTIONS(1178), - [sym_primitive_type] = ACTIONS(1178), - [anon_sym_enum] = ACTIONS(1178), - [anon_sym_struct] = ACTIONS(1178), - [anon_sym_union] = ACTIONS(1178), - [anon_sym_if] = ACTIONS(1178), - [anon_sym_switch] = ACTIONS(1178), - [anon_sym_case] = ACTIONS(1178), - [anon_sym_default] = ACTIONS(1178), - [anon_sym_while] = ACTIONS(1178), - [anon_sym_do] = ACTIONS(1178), - [anon_sym_for] = ACTIONS(1178), - [anon_sym_return] = ACTIONS(1178), - [anon_sym_break] = ACTIONS(1178), - [anon_sym_continue] = ACTIONS(1178), - [anon_sym_goto] = ACTIONS(1178), - [anon_sym_DASH_DASH] = ACTIONS(1180), - [anon_sym_PLUS_PLUS] = ACTIONS(1180), - [anon_sym_sizeof] = ACTIONS(1178), - [sym_number_literal] = ACTIONS(1180), - [anon_sym_L_SQUOTE] = ACTIONS(1180), - [anon_sym_u_SQUOTE] = ACTIONS(1180), - [anon_sym_U_SQUOTE] = ACTIONS(1180), - [anon_sym_u8_SQUOTE] = ACTIONS(1180), - [anon_sym_SQUOTE] = ACTIONS(1180), - [anon_sym_L_DQUOTE] = ACTIONS(1180), - [anon_sym_u_DQUOTE] = ACTIONS(1180), - [anon_sym_U_DQUOTE] = ACTIONS(1180), - [anon_sym_u8_DQUOTE] = ACTIONS(1180), - [anon_sym_DQUOTE] = ACTIONS(1180), - [sym_true] = ACTIONS(1178), - [sym_false] = ACTIONS(1178), - [sym_null] = ACTIONS(1178), - [sym_comment] = ACTIONS(3), - }, - [314] = { - [sym_identifier] = ACTIONS(1094), - [aux_sym_preproc_include_token1] = ACTIONS(1094), - [aux_sym_preproc_def_token1] = ACTIONS(1094), - [aux_sym_preproc_if_token1] = ACTIONS(1094), - [aux_sym_preproc_if_token2] = ACTIONS(1094), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1094), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1094), - [sym_preproc_directive] = ACTIONS(1094), - [anon_sym_LPAREN2] = ACTIONS(1096), - [anon_sym_BANG] = ACTIONS(1096), - [anon_sym_TILDE] = ACTIONS(1096), - [anon_sym_DASH] = ACTIONS(1094), - [anon_sym_PLUS] = ACTIONS(1094), - [anon_sym_STAR] = ACTIONS(1096), - [anon_sym_AMP] = ACTIONS(1096), - [anon_sym_SEMI] = ACTIONS(1096), - [anon_sym_typedef] = ACTIONS(1094), - [anon_sym_extern] = ACTIONS(1094), - [anon_sym___attribute__] = ACTIONS(1094), - [anon_sym_LBRACE] = ACTIONS(1096), - [anon_sym_static] = ACTIONS(1094), - [anon_sym_auto] = ACTIONS(1094), - [anon_sym_register] = ACTIONS(1094), - [anon_sym_inline] = ACTIONS(1094), - [anon_sym_const] = ACTIONS(1094), - [anon_sym_volatile] = ACTIONS(1094), - [anon_sym_restrict] = ACTIONS(1094), - [anon_sym__Atomic] = ACTIONS(1094), - [anon_sym_signed] = ACTIONS(1094), - [anon_sym_unsigned] = ACTIONS(1094), - [anon_sym_long] = ACTIONS(1094), - [anon_sym_short] = ACTIONS(1094), - [sym_primitive_type] = ACTIONS(1094), - [anon_sym_enum] = ACTIONS(1094), - [anon_sym_struct] = ACTIONS(1094), - [anon_sym_union] = ACTIONS(1094), - [anon_sym_if] = ACTIONS(1094), - [anon_sym_switch] = ACTIONS(1094), - [anon_sym_case] = ACTIONS(1094), - [anon_sym_default] = ACTIONS(1094), - [anon_sym_while] = ACTIONS(1094), - [anon_sym_do] = ACTIONS(1094), - [anon_sym_for] = ACTIONS(1094), - [anon_sym_return] = ACTIONS(1094), - [anon_sym_break] = ACTIONS(1094), - [anon_sym_continue] = ACTIONS(1094), - [anon_sym_goto] = ACTIONS(1094), - [anon_sym_DASH_DASH] = ACTIONS(1096), - [anon_sym_PLUS_PLUS] = ACTIONS(1096), - [anon_sym_sizeof] = ACTIONS(1094), - [sym_number_literal] = ACTIONS(1096), - [anon_sym_L_SQUOTE] = ACTIONS(1096), - [anon_sym_u_SQUOTE] = ACTIONS(1096), - [anon_sym_U_SQUOTE] = ACTIONS(1096), - [anon_sym_u8_SQUOTE] = ACTIONS(1096), - [anon_sym_SQUOTE] = ACTIONS(1096), - [anon_sym_L_DQUOTE] = ACTIONS(1096), - [anon_sym_u_DQUOTE] = ACTIONS(1096), - [anon_sym_U_DQUOTE] = ACTIONS(1096), - [anon_sym_u8_DQUOTE] = ACTIONS(1096), - [anon_sym_DQUOTE] = ACTIONS(1096), - [sym_true] = ACTIONS(1094), - [sym_false] = ACTIONS(1094), - [sym_null] = ACTIONS(1094), - [sym_comment] = ACTIONS(3), - }, - [315] = { - [ts_builtin_sym_end] = ACTIONS(1136), - [sym_identifier] = ACTIONS(1134), - [aux_sym_preproc_include_token1] = ACTIONS(1134), - [aux_sym_preproc_def_token1] = ACTIONS(1134), - [aux_sym_preproc_if_token1] = ACTIONS(1134), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1134), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1134), - [sym_preproc_directive] = ACTIONS(1134), - [anon_sym_LPAREN2] = ACTIONS(1136), - [anon_sym_BANG] = ACTIONS(1136), - [anon_sym_TILDE] = ACTIONS(1136), - [anon_sym_DASH] = ACTIONS(1134), - [anon_sym_PLUS] = ACTIONS(1134), - [anon_sym_STAR] = ACTIONS(1136), - [anon_sym_AMP] = ACTIONS(1136), - [anon_sym_SEMI] = ACTIONS(1136), - [anon_sym_typedef] = ACTIONS(1134), - [anon_sym_extern] = ACTIONS(1134), - [anon_sym___attribute__] = ACTIONS(1134), - [anon_sym_LBRACE] = ACTIONS(1136), - [anon_sym_static] = ACTIONS(1134), - [anon_sym_auto] = ACTIONS(1134), - [anon_sym_register] = ACTIONS(1134), - [anon_sym_inline] = ACTIONS(1134), - [anon_sym_const] = ACTIONS(1134), - [anon_sym_volatile] = ACTIONS(1134), - [anon_sym_restrict] = ACTIONS(1134), - [anon_sym__Atomic] = ACTIONS(1134), - [anon_sym_signed] = ACTIONS(1134), - [anon_sym_unsigned] = ACTIONS(1134), - [anon_sym_long] = ACTIONS(1134), - [anon_sym_short] = ACTIONS(1134), - [sym_primitive_type] = ACTIONS(1134), - [anon_sym_enum] = ACTIONS(1134), - [anon_sym_struct] = ACTIONS(1134), - [anon_sym_union] = ACTIONS(1134), - [anon_sym_if] = ACTIONS(1134), - [anon_sym_switch] = ACTIONS(1134), - [anon_sym_case] = ACTIONS(1134), - [anon_sym_default] = ACTIONS(1134), - [anon_sym_while] = ACTIONS(1134), - [anon_sym_do] = ACTIONS(1134), - [anon_sym_for] = ACTIONS(1134), - [anon_sym_return] = ACTIONS(1134), - [anon_sym_break] = ACTIONS(1134), - [anon_sym_continue] = ACTIONS(1134), - [anon_sym_goto] = ACTIONS(1134), - [anon_sym_DASH_DASH] = ACTIONS(1136), - [anon_sym_PLUS_PLUS] = ACTIONS(1136), - [anon_sym_sizeof] = ACTIONS(1134), - [sym_number_literal] = ACTIONS(1136), - [anon_sym_L_SQUOTE] = ACTIONS(1136), - [anon_sym_u_SQUOTE] = ACTIONS(1136), - [anon_sym_U_SQUOTE] = ACTIONS(1136), - [anon_sym_u8_SQUOTE] = ACTIONS(1136), - [anon_sym_SQUOTE] = ACTIONS(1136), - [anon_sym_L_DQUOTE] = ACTIONS(1136), - [anon_sym_u_DQUOTE] = ACTIONS(1136), - [anon_sym_U_DQUOTE] = ACTIONS(1136), - [anon_sym_u8_DQUOTE] = ACTIONS(1136), - [anon_sym_DQUOTE] = ACTIONS(1136), - [sym_true] = ACTIONS(1134), - [sym_false] = ACTIONS(1134), - [sym_null] = ACTIONS(1134), - [sym_comment] = ACTIONS(3), - }, - [316] = { - [sym_identifier] = ACTIONS(1170), - [aux_sym_preproc_include_token1] = ACTIONS(1170), - [aux_sym_preproc_def_token1] = ACTIONS(1170), - [aux_sym_preproc_if_token1] = ACTIONS(1170), - [aux_sym_preproc_if_token2] = ACTIONS(1170), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1170), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1170), - [sym_preproc_directive] = ACTIONS(1170), - [anon_sym_LPAREN2] = ACTIONS(1172), - [anon_sym_BANG] = ACTIONS(1172), - [anon_sym_TILDE] = ACTIONS(1172), - [anon_sym_DASH] = ACTIONS(1170), - [anon_sym_PLUS] = ACTIONS(1170), - [anon_sym_STAR] = ACTIONS(1172), - [anon_sym_AMP] = ACTIONS(1172), - [anon_sym_SEMI] = ACTIONS(1172), - [anon_sym_typedef] = ACTIONS(1170), - [anon_sym_extern] = ACTIONS(1170), - [anon_sym___attribute__] = ACTIONS(1170), - [anon_sym_LBRACE] = ACTIONS(1172), - [anon_sym_static] = ACTIONS(1170), - [anon_sym_auto] = ACTIONS(1170), - [anon_sym_register] = ACTIONS(1170), - [anon_sym_inline] = ACTIONS(1170), - [anon_sym_const] = ACTIONS(1170), - [anon_sym_volatile] = ACTIONS(1170), - [anon_sym_restrict] = ACTIONS(1170), - [anon_sym__Atomic] = ACTIONS(1170), - [anon_sym_signed] = ACTIONS(1170), - [anon_sym_unsigned] = ACTIONS(1170), - [anon_sym_long] = ACTIONS(1170), - [anon_sym_short] = ACTIONS(1170), - [sym_primitive_type] = ACTIONS(1170), - [anon_sym_enum] = ACTIONS(1170), - [anon_sym_struct] = ACTIONS(1170), - [anon_sym_union] = ACTIONS(1170), - [anon_sym_if] = ACTIONS(1170), - [anon_sym_switch] = ACTIONS(1170), - [anon_sym_case] = ACTIONS(1170), - [anon_sym_default] = ACTIONS(1170), - [anon_sym_while] = ACTIONS(1170), - [anon_sym_do] = ACTIONS(1170), - [anon_sym_for] = ACTIONS(1170), - [anon_sym_return] = ACTIONS(1170), - [anon_sym_break] = ACTIONS(1170), - [anon_sym_continue] = ACTIONS(1170), - [anon_sym_goto] = ACTIONS(1170), - [anon_sym_DASH_DASH] = ACTIONS(1172), - [anon_sym_PLUS_PLUS] = ACTIONS(1172), - [anon_sym_sizeof] = ACTIONS(1170), - [sym_number_literal] = ACTIONS(1172), - [anon_sym_L_SQUOTE] = ACTIONS(1172), - [anon_sym_u_SQUOTE] = ACTIONS(1172), - [anon_sym_U_SQUOTE] = ACTIONS(1172), - [anon_sym_u8_SQUOTE] = ACTIONS(1172), - [anon_sym_SQUOTE] = ACTIONS(1172), - [anon_sym_L_DQUOTE] = ACTIONS(1172), - [anon_sym_u_DQUOTE] = ACTIONS(1172), - [anon_sym_U_DQUOTE] = ACTIONS(1172), - [anon_sym_u8_DQUOTE] = ACTIONS(1172), - [anon_sym_DQUOTE] = ACTIONS(1172), - [sym_true] = ACTIONS(1170), - [sym_false] = ACTIONS(1170), - [sym_null] = ACTIONS(1170), - [sym_comment] = ACTIONS(3), - }, - [317] = { - [sym_identifier] = ACTIONS(1134), - [aux_sym_preproc_include_token1] = ACTIONS(1134), - [aux_sym_preproc_def_token1] = ACTIONS(1134), - [aux_sym_preproc_if_token1] = ACTIONS(1134), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1134), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1134), - [sym_preproc_directive] = ACTIONS(1134), - [anon_sym_LPAREN2] = ACTIONS(1136), - [anon_sym_BANG] = ACTIONS(1136), - [anon_sym_TILDE] = ACTIONS(1136), - [anon_sym_DASH] = ACTIONS(1134), - [anon_sym_PLUS] = ACTIONS(1134), - [anon_sym_STAR] = ACTIONS(1136), - [anon_sym_AMP] = ACTIONS(1136), - [anon_sym_SEMI] = ACTIONS(1136), - [anon_sym_typedef] = ACTIONS(1134), - [anon_sym_extern] = ACTIONS(1134), - [anon_sym___attribute__] = ACTIONS(1134), - [anon_sym_LBRACE] = ACTIONS(1136), - [anon_sym_RBRACE] = ACTIONS(1136), - [anon_sym_static] = ACTIONS(1134), - [anon_sym_auto] = ACTIONS(1134), - [anon_sym_register] = ACTIONS(1134), - [anon_sym_inline] = ACTIONS(1134), - [anon_sym_const] = ACTIONS(1134), - [anon_sym_volatile] = ACTIONS(1134), - [anon_sym_restrict] = ACTIONS(1134), - [anon_sym__Atomic] = ACTIONS(1134), - [anon_sym_signed] = ACTIONS(1134), - [anon_sym_unsigned] = ACTIONS(1134), - [anon_sym_long] = ACTIONS(1134), - [anon_sym_short] = ACTIONS(1134), - [sym_primitive_type] = ACTIONS(1134), - [anon_sym_enum] = ACTIONS(1134), - [anon_sym_struct] = ACTIONS(1134), - [anon_sym_union] = ACTIONS(1134), - [anon_sym_if] = ACTIONS(1134), - [anon_sym_switch] = ACTIONS(1134), - [anon_sym_case] = ACTIONS(1134), - [anon_sym_default] = ACTIONS(1134), - [anon_sym_while] = ACTIONS(1134), - [anon_sym_do] = ACTIONS(1134), - [anon_sym_for] = ACTIONS(1134), - [anon_sym_return] = ACTIONS(1134), - [anon_sym_break] = ACTIONS(1134), - [anon_sym_continue] = ACTIONS(1134), - [anon_sym_goto] = ACTIONS(1134), - [anon_sym_DASH_DASH] = ACTIONS(1136), - [anon_sym_PLUS_PLUS] = ACTIONS(1136), - [anon_sym_sizeof] = ACTIONS(1134), - [sym_number_literal] = ACTIONS(1136), - [anon_sym_L_SQUOTE] = ACTIONS(1136), - [anon_sym_u_SQUOTE] = ACTIONS(1136), - [anon_sym_U_SQUOTE] = ACTIONS(1136), - [anon_sym_u8_SQUOTE] = ACTIONS(1136), - [anon_sym_SQUOTE] = ACTIONS(1136), - [anon_sym_L_DQUOTE] = ACTIONS(1136), - [anon_sym_u_DQUOTE] = ACTIONS(1136), - [anon_sym_U_DQUOTE] = ACTIONS(1136), - [anon_sym_u8_DQUOTE] = ACTIONS(1136), - [anon_sym_DQUOTE] = ACTIONS(1136), - [sym_true] = ACTIONS(1134), - [sym_false] = ACTIONS(1134), - [sym_null] = ACTIONS(1134), + [298] = { + [sym_identifier] = ACTIONS(1110), + [aux_sym_preproc_include_token1] = ACTIONS(1110), + [aux_sym_preproc_def_token1] = ACTIONS(1110), + [aux_sym_preproc_if_token1] = ACTIONS(1110), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1110), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1110), + [sym_preproc_directive] = ACTIONS(1110), + [anon_sym_LPAREN2] = ACTIONS(1112), + [anon_sym_BANG] = ACTIONS(1112), + [anon_sym_TILDE] = ACTIONS(1112), + [anon_sym_DASH] = ACTIONS(1110), + [anon_sym_PLUS] = ACTIONS(1110), + [anon_sym_STAR] = ACTIONS(1112), + [anon_sym_AMP] = ACTIONS(1112), + [anon_sym_SEMI] = ACTIONS(1112), + [anon_sym_typedef] = ACTIONS(1110), + [anon_sym_extern] = ACTIONS(1110), + [anon_sym___attribute__] = ACTIONS(1110), + [anon_sym_LBRACE] = ACTIONS(1112), + [anon_sym_RBRACE] = ACTIONS(1112), + [anon_sym_static] = ACTIONS(1110), + [anon_sym_auto] = ACTIONS(1110), + [anon_sym_register] = ACTIONS(1110), + [anon_sym_inline] = ACTIONS(1110), + [anon_sym_const] = ACTIONS(1110), + [anon_sym_volatile] = ACTIONS(1110), + [anon_sym_restrict] = ACTIONS(1110), + [anon_sym__Atomic] = ACTIONS(1110), + [anon_sym_signed] = ACTIONS(1110), + [anon_sym_unsigned] = ACTIONS(1110), + [anon_sym_long] = ACTIONS(1110), + [anon_sym_short] = ACTIONS(1110), + [sym_primitive_type] = ACTIONS(1110), + [anon_sym_enum] = ACTIONS(1110), + [anon_sym_struct] = ACTIONS(1110), + [anon_sym_union] = ACTIONS(1110), + [anon_sym_if] = ACTIONS(1110), + [anon_sym_switch] = ACTIONS(1110), + [anon_sym_case] = ACTIONS(1110), + [anon_sym_default] = ACTIONS(1110), + [anon_sym_while] = ACTIONS(1110), + [anon_sym_do] = ACTIONS(1110), + [anon_sym_for] = ACTIONS(1110), + [anon_sym_return] = ACTIONS(1110), + [anon_sym_break] = ACTIONS(1110), + [anon_sym_continue] = ACTIONS(1110), + [anon_sym_goto] = ACTIONS(1110), + [anon_sym_DASH_DASH] = ACTIONS(1112), + [anon_sym_PLUS_PLUS] = ACTIONS(1112), + [anon_sym_sizeof] = ACTIONS(1110), + [sym_number_literal] = ACTIONS(1112), + [anon_sym_L_SQUOTE] = ACTIONS(1112), + [anon_sym_u_SQUOTE] = ACTIONS(1112), + [anon_sym_U_SQUOTE] = ACTIONS(1112), + [anon_sym_u8_SQUOTE] = ACTIONS(1112), + [anon_sym_SQUOTE] = ACTIONS(1112), + [anon_sym_L_DQUOTE] = ACTIONS(1112), + [anon_sym_u_DQUOTE] = ACTIONS(1112), + [anon_sym_U_DQUOTE] = ACTIONS(1112), + [anon_sym_u8_DQUOTE] = ACTIONS(1112), + [anon_sym_DQUOTE] = ACTIONS(1112), + [sym_true] = ACTIONS(1110), + [sym_false] = ACTIONS(1110), + [sym_null] = ACTIONS(1110), [sym_comment] = ACTIONS(3), }, - [318] = { - [sym_identifier] = ACTIONS(1166), - [aux_sym_preproc_include_token1] = ACTIONS(1166), - [aux_sym_preproc_def_token1] = ACTIONS(1166), - [aux_sym_preproc_if_token1] = ACTIONS(1166), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1166), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1166), - [sym_preproc_directive] = ACTIONS(1166), - [anon_sym_LPAREN2] = ACTIONS(1168), - [anon_sym_BANG] = ACTIONS(1168), - [anon_sym_TILDE] = ACTIONS(1168), - [anon_sym_DASH] = ACTIONS(1166), - [anon_sym_PLUS] = ACTIONS(1166), - [anon_sym_STAR] = ACTIONS(1168), - [anon_sym_AMP] = ACTIONS(1168), - [anon_sym_SEMI] = ACTIONS(1168), - [anon_sym_typedef] = ACTIONS(1166), - [anon_sym_extern] = ACTIONS(1166), - [anon_sym___attribute__] = ACTIONS(1166), - [anon_sym_LBRACE] = ACTIONS(1168), - [anon_sym_RBRACE] = ACTIONS(1168), - [anon_sym_static] = ACTIONS(1166), - [anon_sym_auto] = ACTIONS(1166), - [anon_sym_register] = ACTIONS(1166), - [anon_sym_inline] = ACTIONS(1166), - [anon_sym_const] = ACTIONS(1166), - [anon_sym_volatile] = ACTIONS(1166), - [anon_sym_restrict] = ACTIONS(1166), - [anon_sym__Atomic] = ACTIONS(1166), - [anon_sym_signed] = ACTIONS(1166), - [anon_sym_unsigned] = ACTIONS(1166), - [anon_sym_long] = ACTIONS(1166), - [anon_sym_short] = ACTIONS(1166), - [sym_primitive_type] = ACTIONS(1166), - [anon_sym_enum] = ACTIONS(1166), - [anon_sym_struct] = ACTIONS(1166), - [anon_sym_union] = ACTIONS(1166), - [anon_sym_if] = ACTIONS(1166), - [anon_sym_switch] = ACTIONS(1166), - [anon_sym_case] = ACTIONS(1166), - [anon_sym_default] = ACTIONS(1166), - [anon_sym_while] = ACTIONS(1166), - [anon_sym_do] = ACTIONS(1166), - [anon_sym_for] = ACTIONS(1166), - [anon_sym_return] = ACTIONS(1166), - [anon_sym_break] = ACTIONS(1166), - [anon_sym_continue] = ACTIONS(1166), - [anon_sym_goto] = ACTIONS(1166), - [anon_sym_DASH_DASH] = ACTIONS(1168), - [anon_sym_PLUS_PLUS] = ACTIONS(1168), - [anon_sym_sizeof] = ACTIONS(1166), - [sym_number_literal] = ACTIONS(1168), - [anon_sym_L_SQUOTE] = ACTIONS(1168), - [anon_sym_u_SQUOTE] = ACTIONS(1168), - [anon_sym_U_SQUOTE] = ACTIONS(1168), - [anon_sym_u8_SQUOTE] = ACTIONS(1168), - [anon_sym_SQUOTE] = ACTIONS(1168), - [anon_sym_L_DQUOTE] = ACTIONS(1168), - [anon_sym_u_DQUOTE] = ACTIONS(1168), - [anon_sym_U_DQUOTE] = ACTIONS(1168), - [anon_sym_u8_DQUOTE] = ACTIONS(1168), - [anon_sym_DQUOTE] = ACTIONS(1168), - [sym_true] = ACTIONS(1166), - [sym_false] = ACTIONS(1166), - [sym_null] = ACTIONS(1166), + [299] = { + [ts_builtin_sym_end] = ACTIONS(1128), + [sym_identifier] = ACTIONS(1126), + [aux_sym_preproc_include_token1] = ACTIONS(1126), + [aux_sym_preproc_def_token1] = ACTIONS(1126), + [aux_sym_preproc_if_token1] = ACTIONS(1126), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1126), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1126), + [sym_preproc_directive] = ACTIONS(1126), + [anon_sym_LPAREN2] = ACTIONS(1128), + [anon_sym_BANG] = ACTIONS(1128), + [anon_sym_TILDE] = ACTIONS(1128), + [anon_sym_DASH] = ACTIONS(1126), + [anon_sym_PLUS] = ACTIONS(1126), + [anon_sym_STAR] = ACTIONS(1128), + [anon_sym_AMP] = ACTIONS(1128), + [anon_sym_SEMI] = ACTIONS(1128), + [anon_sym_typedef] = ACTIONS(1126), + [anon_sym_extern] = ACTIONS(1126), + [anon_sym___attribute__] = ACTIONS(1126), + [anon_sym_LBRACE] = ACTIONS(1128), + [anon_sym_static] = ACTIONS(1126), + [anon_sym_auto] = ACTIONS(1126), + [anon_sym_register] = ACTIONS(1126), + [anon_sym_inline] = ACTIONS(1126), + [anon_sym_const] = ACTIONS(1126), + [anon_sym_volatile] = ACTIONS(1126), + [anon_sym_restrict] = ACTIONS(1126), + [anon_sym__Atomic] = ACTIONS(1126), + [anon_sym_signed] = ACTIONS(1126), + [anon_sym_unsigned] = ACTIONS(1126), + [anon_sym_long] = ACTIONS(1126), + [anon_sym_short] = ACTIONS(1126), + [sym_primitive_type] = ACTIONS(1126), + [anon_sym_enum] = ACTIONS(1126), + [anon_sym_struct] = ACTIONS(1126), + [anon_sym_union] = ACTIONS(1126), + [anon_sym_if] = ACTIONS(1126), + [anon_sym_switch] = ACTIONS(1126), + [anon_sym_case] = ACTIONS(1126), + [anon_sym_default] = ACTIONS(1126), + [anon_sym_while] = ACTIONS(1126), + [anon_sym_do] = ACTIONS(1126), + [anon_sym_for] = ACTIONS(1126), + [anon_sym_return] = ACTIONS(1126), + [anon_sym_break] = ACTIONS(1126), + [anon_sym_continue] = ACTIONS(1126), + [anon_sym_goto] = ACTIONS(1126), + [anon_sym_DASH_DASH] = ACTIONS(1128), + [anon_sym_PLUS_PLUS] = ACTIONS(1128), + [anon_sym_sizeof] = ACTIONS(1126), + [sym_number_literal] = ACTIONS(1128), + [anon_sym_L_SQUOTE] = ACTIONS(1128), + [anon_sym_u_SQUOTE] = ACTIONS(1128), + [anon_sym_U_SQUOTE] = ACTIONS(1128), + [anon_sym_u8_SQUOTE] = ACTIONS(1128), + [anon_sym_SQUOTE] = ACTIONS(1128), + [anon_sym_L_DQUOTE] = ACTIONS(1128), + [anon_sym_u_DQUOTE] = ACTIONS(1128), + [anon_sym_U_DQUOTE] = ACTIONS(1128), + [anon_sym_u8_DQUOTE] = ACTIONS(1128), + [anon_sym_DQUOTE] = ACTIONS(1128), + [sym_true] = ACTIONS(1126), + [sym_false] = ACTIONS(1126), + [sym_null] = ACTIONS(1126), [sym_comment] = ACTIONS(3), }, - [319] = { - [sym_identifier] = ACTIONS(1118), - [aux_sym_preproc_include_token1] = ACTIONS(1118), - [aux_sym_preproc_def_token1] = ACTIONS(1118), - [aux_sym_preproc_if_token1] = ACTIONS(1118), - [aux_sym_preproc_if_token2] = ACTIONS(1118), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1118), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1118), - [sym_preproc_directive] = ACTIONS(1118), - [anon_sym_LPAREN2] = ACTIONS(1120), - [anon_sym_BANG] = ACTIONS(1120), - [anon_sym_TILDE] = ACTIONS(1120), - [anon_sym_DASH] = ACTIONS(1118), - [anon_sym_PLUS] = ACTIONS(1118), - [anon_sym_STAR] = ACTIONS(1120), - [anon_sym_AMP] = ACTIONS(1120), - [anon_sym_SEMI] = ACTIONS(1120), - [anon_sym_typedef] = ACTIONS(1118), - [anon_sym_extern] = ACTIONS(1118), - [anon_sym___attribute__] = ACTIONS(1118), - [anon_sym_LBRACE] = ACTIONS(1120), - [anon_sym_static] = ACTIONS(1118), - [anon_sym_auto] = ACTIONS(1118), - [anon_sym_register] = ACTIONS(1118), - [anon_sym_inline] = ACTIONS(1118), - [anon_sym_const] = ACTIONS(1118), - [anon_sym_volatile] = ACTIONS(1118), - [anon_sym_restrict] = ACTIONS(1118), - [anon_sym__Atomic] = ACTIONS(1118), - [anon_sym_signed] = ACTIONS(1118), - [anon_sym_unsigned] = ACTIONS(1118), - [anon_sym_long] = ACTIONS(1118), - [anon_sym_short] = ACTIONS(1118), - [sym_primitive_type] = ACTIONS(1118), - [anon_sym_enum] = ACTIONS(1118), - [anon_sym_struct] = ACTIONS(1118), - [anon_sym_union] = ACTIONS(1118), - [anon_sym_if] = ACTIONS(1118), - [anon_sym_switch] = ACTIONS(1118), - [anon_sym_case] = ACTIONS(1118), - [anon_sym_default] = ACTIONS(1118), - [anon_sym_while] = ACTIONS(1118), - [anon_sym_do] = ACTIONS(1118), - [anon_sym_for] = ACTIONS(1118), - [anon_sym_return] = ACTIONS(1118), - [anon_sym_break] = ACTIONS(1118), - [anon_sym_continue] = ACTIONS(1118), - [anon_sym_goto] = ACTIONS(1118), - [anon_sym_DASH_DASH] = ACTIONS(1120), - [anon_sym_PLUS_PLUS] = ACTIONS(1120), - [anon_sym_sizeof] = ACTIONS(1118), - [sym_number_literal] = ACTIONS(1120), - [anon_sym_L_SQUOTE] = ACTIONS(1120), - [anon_sym_u_SQUOTE] = ACTIONS(1120), - [anon_sym_U_SQUOTE] = ACTIONS(1120), - [anon_sym_u8_SQUOTE] = ACTIONS(1120), - [anon_sym_SQUOTE] = ACTIONS(1120), - [anon_sym_L_DQUOTE] = ACTIONS(1120), - [anon_sym_u_DQUOTE] = ACTIONS(1120), - [anon_sym_U_DQUOTE] = ACTIONS(1120), - [anon_sym_u8_DQUOTE] = ACTIONS(1120), - [anon_sym_DQUOTE] = ACTIONS(1120), - [sym_true] = ACTIONS(1118), - [sym_false] = ACTIONS(1118), - [sym_null] = ACTIONS(1118), + [300] = { + [ts_builtin_sym_end] = ACTIONS(1164), + [sym_identifier] = ACTIONS(1162), + [aux_sym_preproc_include_token1] = ACTIONS(1162), + [aux_sym_preproc_def_token1] = ACTIONS(1162), + [aux_sym_preproc_if_token1] = ACTIONS(1162), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1162), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1162), + [sym_preproc_directive] = ACTIONS(1162), + [anon_sym_LPAREN2] = ACTIONS(1164), + [anon_sym_BANG] = ACTIONS(1164), + [anon_sym_TILDE] = ACTIONS(1164), + [anon_sym_DASH] = ACTIONS(1162), + [anon_sym_PLUS] = ACTIONS(1162), + [anon_sym_STAR] = ACTIONS(1164), + [anon_sym_AMP] = ACTIONS(1164), + [anon_sym_SEMI] = ACTIONS(1164), + [anon_sym_typedef] = ACTIONS(1162), + [anon_sym_extern] = ACTIONS(1162), + [anon_sym___attribute__] = ACTIONS(1162), + [anon_sym_LBRACE] = ACTIONS(1164), + [anon_sym_static] = ACTIONS(1162), + [anon_sym_auto] = ACTIONS(1162), + [anon_sym_register] = ACTIONS(1162), + [anon_sym_inline] = ACTIONS(1162), + [anon_sym_const] = ACTIONS(1162), + [anon_sym_volatile] = ACTIONS(1162), + [anon_sym_restrict] = ACTIONS(1162), + [anon_sym__Atomic] = ACTIONS(1162), + [anon_sym_signed] = ACTIONS(1162), + [anon_sym_unsigned] = ACTIONS(1162), + [anon_sym_long] = ACTIONS(1162), + [anon_sym_short] = ACTIONS(1162), + [sym_primitive_type] = ACTIONS(1162), + [anon_sym_enum] = ACTIONS(1162), + [anon_sym_struct] = ACTIONS(1162), + [anon_sym_union] = ACTIONS(1162), + [anon_sym_if] = ACTIONS(1162), + [anon_sym_switch] = ACTIONS(1162), + [anon_sym_case] = ACTIONS(1162), + [anon_sym_default] = ACTIONS(1162), + [anon_sym_while] = ACTIONS(1162), + [anon_sym_do] = ACTIONS(1162), + [anon_sym_for] = ACTIONS(1162), + [anon_sym_return] = ACTIONS(1162), + [anon_sym_break] = ACTIONS(1162), + [anon_sym_continue] = ACTIONS(1162), + [anon_sym_goto] = ACTIONS(1162), + [anon_sym_DASH_DASH] = ACTIONS(1164), + [anon_sym_PLUS_PLUS] = ACTIONS(1164), + [anon_sym_sizeof] = ACTIONS(1162), + [sym_number_literal] = ACTIONS(1164), + [anon_sym_L_SQUOTE] = ACTIONS(1164), + [anon_sym_u_SQUOTE] = ACTIONS(1164), + [anon_sym_U_SQUOTE] = ACTIONS(1164), + [anon_sym_u8_SQUOTE] = ACTIONS(1164), + [anon_sym_SQUOTE] = ACTIONS(1164), + [anon_sym_L_DQUOTE] = ACTIONS(1164), + [anon_sym_u_DQUOTE] = ACTIONS(1164), + [anon_sym_U_DQUOTE] = ACTIONS(1164), + [anon_sym_u8_DQUOTE] = ACTIONS(1164), + [anon_sym_DQUOTE] = ACTIONS(1164), + [sym_true] = ACTIONS(1162), + [sym_false] = ACTIONS(1162), + [sym_null] = ACTIONS(1162), [sym_comment] = ACTIONS(3), }, - [320] = { - [sym_identifier] = ACTIONS(1170), - [aux_sym_preproc_include_token1] = ACTIONS(1170), - [aux_sym_preproc_def_token1] = ACTIONS(1170), - [aux_sym_preproc_if_token1] = ACTIONS(1170), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1170), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1170), - [sym_preproc_directive] = ACTIONS(1170), - [anon_sym_LPAREN2] = ACTIONS(1172), - [anon_sym_BANG] = ACTIONS(1172), - [anon_sym_TILDE] = ACTIONS(1172), - [anon_sym_DASH] = ACTIONS(1170), - [anon_sym_PLUS] = ACTIONS(1170), - [anon_sym_STAR] = ACTIONS(1172), - [anon_sym_AMP] = ACTIONS(1172), - [anon_sym_SEMI] = ACTIONS(1172), - [anon_sym_typedef] = ACTIONS(1170), - [anon_sym_extern] = ACTIONS(1170), - [anon_sym___attribute__] = ACTIONS(1170), - [anon_sym_LBRACE] = ACTIONS(1172), - [anon_sym_RBRACE] = ACTIONS(1172), - [anon_sym_static] = ACTIONS(1170), - [anon_sym_auto] = ACTIONS(1170), - [anon_sym_register] = ACTIONS(1170), - [anon_sym_inline] = ACTIONS(1170), - [anon_sym_const] = ACTIONS(1170), - [anon_sym_volatile] = ACTIONS(1170), - [anon_sym_restrict] = ACTIONS(1170), - [anon_sym__Atomic] = ACTIONS(1170), - [anon_sym_signed] = ACTIONS(1170), - [anon_sym_unsigned] = ACTIONS(1170), - [anon_sym_long] = ACTIONS(1170), - [anon_sym_short] = ACTIONS(1170), - [sym_primitive_type] = ACTIONS(1170), - [anon_sym_enum] = ACTIONS(1170), - [anon_sym_struct] = ACTIONS(1170), - [anon_sym_union] = ACTIONS(1170), - [anon_sym_if] = ACTIONS(1170), - [anon_sym_switch] = ACTIONS(1170), - [anon_sym_case] = ACTIONS(1170), - [anon_sym_default] = ACTIONS(1170), - [anon_sym_while] = ACTIONS(1170), - [anon_sym_do] = ACTIONS(1170), - [anon_sym_for] = ACTIONS(1170), - [anon_sym_return] = ACTIONS(1170), - [anon_sym_break] = ACTIONS(1170), - [anon_sym_continue] = ACTIONS(1170), - [anon_sym_goto] = ACTIONS(1170), - [anon_sym_DASH_DASH] = ACTIONS(1172), - [anon_sym_PLUS_PLUS] = ACTIONS(1172), - [anon_sym_sizeof] = ACTIONS(1170), - [sym_number_literal] = ACTIONS(1172), - [anon_sym_L_SQUOTE] = ACTIONS(1172), - [anon_sym_u_SQUOTE] = ACTIONS(1172), - [anon_sym_U_SQUOTE] = ACTIONS(1172), - [anon_sym_u8_SQUOTE] = ACTIONS(1172), - [anon_sym_SQUOTE] = ACTIONS(1172), - [anon_sym_L_DQUOTE] = ACTIONS(1172), - [anon_sym_u_DQUOTE] = ACTIONS(1172), - [anon_sym_U_DQUOTE] = ACTIONS(1172), - [anon_sym_u8_DQUOTE] = ACTIONS(1172), - [anon_sym_DQUOTE] = ACTIONS(1172), - [sym_true] = ACTIONS(1170), - [sym_false] = ACTIONS(1170), - [sym_null] = ACTIONS(1170), + [301] = { + [sym_identifier] = ACTIONS(1106), + [aux_sym_preproc_include_token1] = ACTIONS(1106), + [aux_sym_preproc_def_token1] = ACTIONS(1106), + [aux_sym_preproc_if_token1] = ACTIONS(1106), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1106), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1106), + [sym_preproc_directive] = ACTIONS(1106), + [anon_sym_LPAREN2] = ACTIONS(1108), + [anon_sym_BANG] = ACTIONS(1108), + [anon_sym_TILDE] = ACTIONS(1108), + [anon_sym_DASH] = ACTIONS(1106), + [anon_sym_PLUS] = ACTIONS(1106), + [anon_sym_STAR] = ACTIONS(1108), + [anon_sym_AMP] = ACTIONS(1108), + [anon_sym_SEMI] = ACTIONS(1108), + [anon_sym_typedef] = ACTIONS(1106), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym___attribute__] = ACTIONS(1106), + [anon_sym_LBRACE] = ACTIONS(1108), + [anon_sym_RBRACE] = ACTIONS(1108), + [anon_sym_static] = ACTIONS(1106), + [anon_sym_auto] = ACTIONS(1106), + [anon_sym_register] = ACTIONS(1106), + [anon_sym_inline] = ACTIONS(1106), + [anon_sym_const] = ACTIONS(1106), + [anon_sym_volatile] = ACTIONS(1106), + [anon_sym_restrict] = ACTIONS(1106), + [anon_sym__Atomic] = ACTIONS(1106), + [anon_sym_signed] = ACTIONS(1106), + [anon_sym_unsigned] = ACTIONS(1106), + [anon_sym_long] = ACTIONS(1106), + [anon_sym_short] = ACTIONS(1106), + [sym_primitive_type] = ACTIONS(1106), + [anon_sym_enum] = ACTIONS(1106), + [anon_sym_struct] = ACTIONS(1106), + [anon_sym_union] = ACTIONS(1106), + [anon_sym_if] = ACTIONS(1106), + [anon_sym_switch] = ACTIONS(1106), + [anon_sym_case] = ACTIONS(1106), + [anon_sym_default] = ACTIONS(1106), + [anon_sym_while] = ACTIONS(1106), + [anon_sym_do] = ACTIONS(1106), + [anon_sym_for] = ACTIONS(1106), + [anon_sym_return] = ACTIONS(1106), + [anon_sym_break] = ACTIONS(1106), + [anon_sym_continue] = ACTIONS(1106), + [anon_sym_goto] = ACTIONS(1106), + [anon_sym_DASH_DASH] = ACTIONS(1108), + [anon_sym_PLUS_PLUS] = ACTIONS(1108), + [anon_sym_sizeof] = ACTIONS(1106), + [sym_number_literal] = ACTIONS(1108), + [anon_sym_L_SQUOTE] = ACTIONS(1108), + [anon_sym_u_SQUOTE] = ACTIONS(1108), + [anon_sym_U_SQUOTE] = ACTIONS(1108), + [anon_sym_u8_SQUOTE] = ACTIONS(1108), + [anon_sym_SQUOTE] = ACTIONS(1108), + [anon_sym_L_DQUOTE] = ACTIONS(1108), + [anon_sym_u_DQUOTE] = ACTIONS(1108), + [anon_sym_U_DQUOTE] = ACTIONS(1108), + [anon_sym_u8_DQUOTE] = ACTIONS(1108), + [anon_sym_DQUOTE] = ACTIONS(1108), + [sym_true] = ACTIONS(1106), + [sym_false] = ACTIONS(1106), + [sym_null] = ACTIONS(1106), [sym_comment] = ACTIONS(3), }, - [321] = { - [sym_identifier] = ACTIONS(1166), - [aux_sym_preproc_include_token1] = ACTIONS(1166), - [aux_sym_preproc_def_token1] = ACTIONS(1166), - [aux_sym_preproc_if_token1] = ACTIONS(1166), - [aux_sym_preproc_if_token2] = ACTIONS(1166), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1166), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1166), - [sym_preproc_directive] = ACTIONS(1166), - [anon_sym_LPAREN2] = ACTIONS(1168), - [anon_sym_BANG] = ACTIONS(1168), - [anon_sym_TILDE] = ACTIONS(1168), - [anon_sym_DASH] = ACTIONS(1166), - [anon_sym_PLUS] = ACTIONS(1166), - [anon_sym_STAR] = ACTIONS(1168), - [anon_sym_AMP] = ACTIONS(1168), - [anon_sym_SEMI] = ACTIONS(1168), - [anon_sym_typedef] = ACTIONS(1166), - [anon_sym_extern] = ACTIONS(1166), - [anon_sym___attribute__] = ACTIONS(1166), - [anon_sym_LBRACE] = ACTIONS(1168), - [anon_sym_static] = ACTIONS(1166), - [anon_sym_auto] = ACTIONS(1166), - [anon_sym_register] = ACTIONS(1166), - [anon_sym_inline] = ACTIONS(1166), - [anon_sym_const] = ACTIONS(1166), - [anon_sym_volatile] = ACTIONS(1166), - [anon_sym_restrict] = ACTIONS(1166), - [anon_sym__Atomic] = ACTIONS(1166), - [anon_sym_signed] = ACTIONS(1166), - [anon_sym_unsigned] = ACTIONS(1166), - [anon_sym_long] = ACTIONS(1166), - [anon_sym_short] = ACTIONS(1166), - [sym_primitive_type] = ACTIONS(1166), - [anon_sym_enum] = ACTIONS(1166), - [anon_sym_struct] = ACTIONS(1166), - [anon_sym_union] = ACTIONS(1166), - [anon_sym_if] = ACTIONS(1166), - [anon_sym_switch] = ACTIONS(1166), - [anon_sym_case] = ACTIONS(1166), - [anon_sym_default] = ACTIONS(1166), - [anon_sym_while] = ACTIONS(1166), - [anon_sym_do] = ACTIONS(1166), - [anon_sym_for] = ACTIONS(1166), - [anon_sym_return] = ACTIONS(1166), - [anon_sym_break] = ACTIONS(1166), - [anon_sym_continue] = ACTIONS(1166), - [anon_sym_goto] = ACTIONS(1166), - [anon_sym_DASH_DASH] = ACTIONS(1168), - [anon_sym_PLUS_PLUS] = ACTIONS(1168), - [anon_sym_sizeof] = ACTIONS(1166), - [sym_number_literal] = ACTIONS(1168), - [anon_sym_L_SQUOTE] = ACTIONS(1168), - [anon_sym_u_SQUOTE] = ACTIONS(1168), - [anon_sym_U_SQUOTE] = ACTIONS(1168), - [anon_sym_u8_SQUOTE] = ACTIONS(1168), - [anon_sym_SQUOTE] = ACTIONS(1168), - [anon_sym_L_DQUOTE] = ACTIONS(1168), - [anon_sym_u_DQUOTE] = ACTIONS(1168), - [anon_sym_U_DQUOTE] = ACTIONS(1168), - [anon_sym_u8_DQUOTE] = ACTIONS(1168), - [anon_sym_DQUOTE] = ACTIONS(1168), - [sym_true] = ACTIONS(1166), - [sym_false] = ACTIONS(1166), - [sym_null] = ACTIONS(1166), + [302] = { + [sym_identifier] = ACTIONS(1146), + [aux_sym_preproc_include_token1] = ACTIONS(1146), + [aux_sym_preproc_def_token1] = ACTIONS(1146), + [aux_sym_preproc_if_token1] = ACTIONS(1146), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1146), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1146), + [sym_preproc_directive] = ACTIONS(1146), + [anon_sym_LPAREN2] = ACTIONS(1148), + [anon_sym_BANG] = ACTIONS(1148), + [anon_sym_TILDE] = ACTIONS(1148), + [anon_sym_DASH] = ACTIONS(1146), + [anon_sym_PLUS] = ACTIONS(1146), + [anon_sym_STAR] = ACTIONS(1148), + [anon_sym_AMP] = ACTIONS(1148), + [anon_sym_SEMI] = ACTIONS(1148), + [anon_sym_typedef] = ACTIONS(1146), + [anon_sym_extern] = ACTIONS(1146), + [anon_sym___attribute__] = ACTIONS(1146), + [anon_sym_LBRACE] = ACTIONS(1148), + [anon_sym_RBRACE] = ACTIONS(1148), + [anon_sym_static] = ACTIONS(1146), + [anon_sym_auto] = ACTIONS(1146), + [anon_sym_register] = ACTIONS(1146), + [anon_sym_inline] = ACTIONS(1146), + [anon_sym_const] = ACTIONS(1146), + [anon_sym_volatile] = ACTIONS(1146), + [anon_sym_restrict] = ACTIONS(1146), + [anon_sym__Atomic] = ACTIONS(1146), + [anon_sym_signed] = ACTIONS(1146), + [anon_sym_unsigned] = ACTIONS(1146), + [anon_sym_long] = ACTIONS(1146), + [anon_sym_short] = ACTIONS(1146), + [sym_primitive_type] = ACTIONS(1146), + [anon_sym_enum] = ACTIONS(1146), + [anon_sym_struct] = ACTIONS(1146), + [anon_sym_union] = ACTIONS(1146), + [anon_sym_if] = ACTIONS(1146), + [anon_sym_switch] = ACTIONS(1146), + [anon_sym_case] = ACTIONS(1146), + [anon_sym_default] = ACTIONS(1146), + [anon_sym_while] = ACTIONS(1146), + [anon_sym_do] = ACTIONS(1146), + [anon_sym_for] = ACTIONS(1146), + [anon_sym_return] = ACTIONS(1146), + [anon_sym_break] = ACTIONS(1146), + [anon_sym_continue] = ACTIONS(1146), + [anon_sym_goto] = ACTIONS(1146), + [anon_sym_DASH_DASH] = ACTIONS(1148), + [anon_sym_PLUS_PLUS] = ACTIONS(1148), + [anon_sym_sizeof] = ACTIONS(1146), + [sym_number_literal] = ACTIONS(1148), + [anon_sym_L_SQUOTE] = ACTIONS(1148), + [anon_sym_u_SQUOTE] = ACTIONS(1148), + [anon_sym_U_SQUOTE] = ACTIONS(1148), + [anon_sym_u8_SQUOTE] = ACTIONS(1148), + [anon_sym_SQUOTE] = ACTIONS(1148), + [anon_sym_L_DQUOTE] = ACTIONS(1148), + [anon_sym_u_DQUOTE] = ACTIONS(1148), + [anon_sym_U_DQUOTE] = ACTIONS(1148), + [anon_sym_u8_DQUOTE] = ACTIONS(1148), + [anon_sym_DQUOTE] = ACTIONS(1148), + [sym_true] = ACTIONS(1146), + [sym_false] = ACTIONS(1146), + [sym_null] = ACTIONS(1146), [sym_comment] = ACTIONS(3), }, - [322] = { - [sym_identifier] = ACTIONS(1134), - [aux_sym_preproc_include_token1] = ACTIONS(1134), - [aux_sym_preproc_def_token1] = ACTIONS(1134), - [aux_sym_preproc_if_token1] = ACTIONS(1134), - [aux_sym_preproc_if_token2] = ACTIONS(1134), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1134), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1134), - [sym_preproc_directive] = ACTIONS(1134), - [anon_sym_LPAREN2] = ACTIONS(1136), - [anon_sym_BANG] = ACTIONS(1136), - [anon_sym_TILDE] = ACTIONS(1136), - [anon_sym_DASH] = ACTIONS(1134), - [anon_sym_PLUS] = ACTIONS(1134), - [anon_sym_STAR] = ACTIONS(1136), - [anon_sym_AMP] = ACTIONS(1136), - [anon_sym_SEMI] = ACTIONS(1136), - [anon_sym_typedef] = ACTIONS(1134), - [anon_sym_extern] = ACTIONS(1134), - [anon_sym___attribute__] = ACTIONS(1134), - [anon_sym_LBRACE] = ACTIONS(1136), - [anon_sym_static] = ACTIONS(1134), - [anon_sym_auto] = ACTIONS(1134), - [anon_sym_register] = ACTIONS(1134), - [anon_sym_inline] = ACTIONS(1134), - [anon_sym_const] = ACTIONS(1134), - [anon_sym_volatile] = ACTIONS(1134), - [anon_sym_restrict] = ACTIONS(1134), - [anon_sym__Atomic] = ACTIONS(1134), - [anon_sym_signed] = ACTIONS(1134), - [anon_sym_unsigned] = ACTIONS(1134), - [anon_sym_long] = ACTIONS(1134), - [anon_sym_short] = ACTIONS(1134), - [sym_primitive_type] = ACTIONS(1134), - [anon_sym_enum] = ACTIONS(1134), - [anon_sym_struct] = ACTIONS(1134), - [anon_sym_union] = ACTIONS(1134), - [anon_sym_if] = ACTIONS(1134), - [anon_sym_switch] = ACTIONS(1134), - [anon_sym_case] = ACTIONS(1134), - [anon_sym_default] = ACTIONS(1134), - [anon_sym_while] = ACTIONS(1134), - [anon_sym_do] = ACTIONS(1134), - [anon_sym_for] = ACTIONS(1134), - [anon_sym_return] = ACTIONS(1134), - [anon_sym_break] = ACTIONS(1134), - [anon_sym_continue] = ACTIONS(1134), - [anon_sym_goto] = ACTIONS(1134), - [anon_sym_DASH_DASH] = ACTIONS(1136), - [anon_sym_PLUS_PLUS] = ACTIONS(1136), - [anon_sym_sizeof] = ACTIONS(1134), - [sym_number_literal] = ACTIONS(1136), - [anon_sym_L_SQUOTE] = ACTIONS(1136), - [anon_sym_u_SQUOTE] = ACTIONS(1136), - [anon_sym_U_SQUOTE] = ACTIONS(1136), - [anon_sym_u8_SQUOTE] = ACTIONS(1136), - [anon_sym_SQUOTE] = ACTIONS(1136), - [anon_sym_L_DQUOTE] = ACTIONS(1136), - [anon_sym_u_DQUOTE] = ACTIONS(1136), - [anon_sym_U_DQUOTE] = ACTIONS(1136), - [anon_sym_u8_DQUOTE] = ACTIONS(1136), - [anon_sym_DQUOTE] = ACTIONS(1136), - [sym_true] = ACTIONS(1134), - [sym_false] = ACTIONS(1134), - [sym_null] = ACTIONS(1134), + [303] = { + [sym_identifier] = ACTIONS(1098), + [aux_sym_preproc_include_token1] = ACTIONS(1098), + [aux_sym_preproc_def_token1] = ACTIONS(1098), + [aux_sym_preproc_if_token1] = ACTIONS(1098), + [aux_sym_preproc_if_token2] = ACTIONS(1098), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1098), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1098), + [sym_preproc_directive] = ACTIONS(1098), + [anon_sym_LPAREN2] = ACTIONS(1100), + [anon_sym_BANG] = ACTIONS(1100), + [anon_sym_TILDE] = ACTIONS(1100), + [anon_sym_DASH] = ACTIONS(1098), + [anon_sym_PLUS] = ACTIONS(1098), + [anon_sym_STAR] = ACTIONS(1100), + [anon_sym_AMP] = ACTIONS(1100), + [anon_sym_SEMI] = ACTIONS(1100), + [anon_sym_typedef] = ACTIONS(1098), + [anon_sym_extern] = ACTIONS(1098), + [anon_sym___attribute__] = ACTIONS(1098), + [anon_sym_LBRACE] = ACTIONS(1100), + [anon_sym_static] = ACTIONS(1098), + [anon_sym_auto] = ACTIONS(1098), + [anon_sym_register] = ACTIONS(1098), + [anon_sym_inline] = ACTIONS(1098), + [anon_sym_const] = ACTIONS(1098), + [anon_sym_volatile] = ACTIONS(1098), + [anon_sym_restrict] = ACTIONS(1098), + [anon_sym__Atomic] = ACTIONS(1098), + [anon_sym_signed] = ACTIONS(1098), + [anon_sym_unsigned] = ACTIONS(1098), + [anon_sym_long] = ACTIONS(1098), + [anon_sym_short] = ACTIONS(1098), + [sym_primitive_type] = ACTIONS(1098), + [anon_sym_enum] = ACTIONS(1098), + [anon_sym_struct] = ACTIONS(1098), + [anon_sym_union] = ACTIONS(1098), + [anon_sym_if] = ACTIONS(1098), + [anon_sym_switch] = ACTIONS(1098), + [anon_sym_case] = ACTIONS(1098), + [anon_sym_default] = ACTIONS(1098), + [anon_sym_while] = ACTIONS(1098), + [anon_sym_do] = ACTIONS(1098), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_return] = ACTIONS(1098), + [anon_sym_break] = ACTIONS(1098), + [anon_sym_continue] = ACTIONS(1098), + [anon_sym_goto] = ACTIONS(1098), + [anon_sym_DASH_DASH] = ACTIONS(1100), + [anon_sym_PLUS_PLUS] = ACTIONS(1100), + [anon_sym_sizeof] = ACTIONS(1098), + [sym_number_literal] = ACTIONS(1100), + [anon_sym_L_SQUOTE] = ACTIONS(1100), + [anon_sym_u_SQUOTE] = ACTIONS(1100), + [anon_sym_U_SQUOTE] = ACTIONS(1100), + [anon_sym_u8_SQUOTE] = ACTIONS(1100), + [anon_sym_SQUOTE] = ACTIONS(1100), + [anon_sym_L_DQUOTE] = ACTIONS(1100), + [anon_sym_u_DQUOTE] = ACTIONS(1100), + [anon_sym_U_DQUOTE] = ACTIONS(1100), + [anon_sym_u8_DQUOTE] = ACTIONS(1100), + [anon_sym_DQUOTE] = ACTIONS(1100), + [sym_true] = ACTIONS(1098), + [sym_false] = ACTIONS(1098), + [sym_null] = ACTIONS(1098), [sym_comment] = ACTIONS(3), }, - [323] = { + [304] = { [sym_identifier] = ACTIONS(1130), [aux_sym_preproc_include_token1] = ACTIONS(1130), [aux_sym_preproc_def_token1] = ACTIONS(1130), [aux_sym_preproc_if_token1] = ACTIONS(1130), - [aux_sym_preproc_if_token2] = ACTIONS(1130), [aux_sym_preproc_ifdef_token1] = ACTIONS(1130), [aux_sym_preproc_ifdef_token2] = ACTIONS(1130), [sym_preproc_directive] = ACTIONS(1130), @@ -31673,6 +30413,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_extern] = ACTIONS(1130), [anon_sym___attribute__] = ACTIONS(1130), [anon_sym_LBRACE] = ACTIONS(1132), + [anon_sym_RBRACE] = ACTIONS(1132), [anon_sym_static] = ACTIONS(1130), [anon_sym_auto] = ACTIONS(1130), [anon_sym_register] = ACTIONS(1130), @@ -31719,8 +30460,141 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1130), [sym_comment] = ACTIONS(3), }, - [324] = { - [ts_builtin_sym_end] = ACTIONS(1124), + [305] = { + [ts_builtin_sym_end] = ACTIONS(1152), + [sym_identifier] = ACTIONS(1150), + [aux_sym_preproc_include_token1] = ACTIONS(1150), + [aux_sym_preproc_def_token1] = ACTIONS(1150), + [aux_sym_preproc_if_token1] = ACTIONS(1150), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1150), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1150), + [sym_preproc_directive] = ACTIONS(1150), + [anon_sym_LPAREN2] = ACTIONS(1152), + [anon_sym_BANG] = ACTIONS(1152), + [anon_sym_TILDE] = ACTIONS(1152), + [anon_sym_DASH] = ACTIONS(1150), + [anon_sym_PLUS] = ACTIONS(1150), + [anon_sym_STAR] = ACTIONS(1152), + [anon_sym_AMP] = ACTIONS(1152), + [anon_sym_SEMI] = ACTIONS(1152), + [anon_sym_typedef] = ACTIONS(1150), + [anon_sym_extern] = ACTIONS(1150), + [anon_sym___attribute__] = ACTIONS(1150), + [anon_sym_LBRACE] = ACTIONS(1152), + [anon_sym_static] = ACTIONS(1150), + [anon_sym_auto] = ACTIONS(1150), + [anon_sym_register] = ACTIONS(1150), + [anon_sym_inline] = ACTIONS(1150), + [anon_sym_const] = ACTIONS(1150), + [anon_sym_volatile] = ACTIONS(1150), + [anon_sym_restrict] = ACTIONS(1150), + [anon_sym__Atomic] = ACTIONS(1150), + [anon_sym_signed] = ACTIONS(1150), + [anon_sym_unsigned] = ACTIONS(1150), + [anon_sym_long] = ACTIONS(1150), + [anon_sym_short] = ACTIONS(1150), + [sym_primitive_type] = ACTIONS(1150), + [anon_sym_enum] = ACTIONS(1150), + [anon_sym_struct] = ACTIONS(1150), + [anon_sym_union] = ACTIONS(1150), + [anon_sym_if] = ACTIONS(1150), + [anon_sym_switch] = ACTIONS(1150), + [anon_sym_case] = ACTIONS(1150), + [anon_sym_default] = ACTIONS(1150), + [anon_sym_while] = ACTIONS(1150), + [anon_sym_do] = ACTIONS(1150), + [anon_sym_for] = ACTIONS(1150), + [anon_sym_return] = ACTIONS(1150), + [anon_sym_break] = ACTIONS(1150), + [anon_sym_continue] = ACTIONS(1150), + [anon_sym_goto] = ACTIONS(1150), + [anon_sym_DASH_DASH] = ACTIONS(1152), + [anon_sym_PLUS_PLUS] = ACTIONS(1152), + [anon_sym_sizeof] = ACTIONS(1150), + [sym_number_literal] = ACTIONS(1152), + [anon_sym_L_SQUOTE] = ACTIONS(1152), + [anon_sym_u_SQUOTE] = ACTIONS(1152), + [anon_sym_U_SQUOTE] = ACTIONS(1152), + [anon_sym_u8_SQUOTE] = ACTIONS(1152), + [anon_sym_SQUOTE] = ACTIONS(1152), + [anon_sym_L_DQUOTE] = ACTIONS(1152), + [anon_sym_u_DQUOTE] = ACTIONS(1152), + [anon_sym_U_DQUOTE] = ACTIONS(1152), + [anon_sym_u8_DQUOTE] = ACTIONS(1152), + [anon_sym_DQUOTE] = ACTIONS(1152), + [sym_true] = ACTIONS(1150), + [sym_false] = ACTIONS(1150), + [sym_null] = ACTIONS(1150), + [sym_comment] = ACTIONS(3), + }, + [306] = { + [sym_identifier] = ACTIONS(1118), + [aux_sym_preproc_include_token1] = ACTIONS(1118), + [aux_sym_preproc_def_token1] = ACTIONS(1118), + [aux_sym_preproc_if_token1] = ACTIONS(1118), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1118), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1118), + [sym_preproc_directive] = ACTIONS(1118), + [anon_sym_LPAREN2] = ACTIONS(1120), + [anon_sym_BANG] = ACTIONS(1120), + [anon_sym_TILDE] = ACTIONS(1120), + [anon_sym_DASH] = ACTIONS(1118), + [anon_sym_PLUS] = ACTIONS(1118), + [anon_sym_STAR] = ACTIONS(1120), + [anon_sym_AMP] = ACTIONS(1120), + [anon_sym_SEMI] = ACTIONS(1120), + [anon_sym_typedef] = ACTIONS(1118), + [anon_sym_extern] = ACTIONS(1118), + [anon_sym___attribute__] = ACTIONS(1118), + [anon_sym_LBRACE] = ACTIONS(1120), + [anon_sym_RBRACE] = ACTIONS(1120), + [anon_sym_static] = ACTIONS(1118), + [anon_sym_auto] = ACTIONS(1118), + [anon_sym_register] = ACTIONS(1118), + [anon_sym_inline] = ACTIONS(1118), + [anon_sym_const] = ACTIONS(1118), + [anon_sym_volatile] = ACTIONS(1118), + [anon_sym_restrict] = ACTIONS(1118), + [anon_sym__Atomic] = ACTIONS(1118), + [anon_sym_signed] = ACTIONS(1118), + [anon_sym_unsigned] = ACTIONS(1118), + [anon_sym_long] = ACTIONS(1118), + [anon_sym_short] = ACTIONS(1118), + [sym_primitive_type] = ACTIONS(1118), + [anon_sym_enum] = ACTIONS(1118), + [anon_sym_struct] = ACTIONS(1118), + [anon_sym_union] = ACTIONS(1118), + [anon_sym_if] = ACTIONS(1118), + [anon_sym_switch] = ACTIONS(1118), + [anon_sym_case] = ACTIONS(1118), + [anon_sym_default] = ACTIONS(1118), + [anon_sym_while] = ACTIONS(1118), + [anon_sym_do] = ACTIONS(1118), + [anon_sym_for] = ACTIONS(1118), + [anon_sym_return] = ACTIONS(1118), + [anon_sym_break] = ACTIONS(1118), + [anon_sym_continue] = ACTIONS(1118), + [anon_sym_goto] = ACTIONS(1118), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_sizeof] = ACTIONS(1118), + [sym_number_literal] = ACTIONS(1120), + [anon_sym_L_SQUOTE] = ACTIONS(1120), + [anon_sym_u_SQUOTE] = ACTIONS(1120), + [anon_sym_U_SQUOTE] = ACTIONS(1120), + [anon_sym_u8_SQUOTE] = ACTIONS(1120), + [anon_sym_SQUOTE] = ACTIONS(1120), + [anon_sym_L_DQUOTE] = ACTIONS(1120), + [anon_sym_u_DQUOTE] = ACTIONS(1120), + [anon_sym_U_DQUOTE] = ACTIONS(1120), + [anon_sym_u8_DQUOTE] = ACTIONS(1120), + [anon_sym_DQUOTE] = ACTIONS(1120), + [sym_true] = ACTIONS(1118), + [sym_false] = ACTIONS(1118), + [sym_null] = ACTIONS(1118), + [sym_comment] = ACTIONS(3), + }, + [307] = { [sym_identifier] = ACTIONS(1122), [aux_sym_preproc_include_token1] = ACTIONS(1122), [aux_sym_preproc_def_token1] = ACTIONS(1122), @@ -31740,6 +30614,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_extern] = ACTIONS(1122), [anon_sym___attribute__] = ACTIONS(1122), [anon_sym_LBRACE] = ACTIONS(1124), + [anon_sym_RBRACE] = ACTIONS(1124), [anon_sym_static] = ACTIONS(1122), [anon_sym_auto] = ACTIONS(1122), [anon_sym_register] = ACTIONS(1122), @@ -31786,213 +30661,78 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1122), [sym_comment] = ACTIONS(3), }, - [325] = { - [ts_builtin_sym_end] = ACTIONS(1108), - [sym_identifier] = ACTIONS(1106), - [aux_sym_preproc_include_token1] = ACTIONS(1106), - [aux_sym_preproc_def_token1] = ACTIONS(1106), - [aux_sym_preproc_if_token1] = ACTIONS(1106), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1106), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1106), - [sym_preproc_directive] = ACTIONS(1106), - [anon_sym_LPAREN2] = ACTIONS(1108), - [anon_sym_BANG] = ACTIONS(1108), - [anon_sym_TILDE] = ACTIONS(1108), - [anon_sym_DASH] = ACTIONS(1106), - [anon_sym_PLUS] = ACTIONS(1106), - [anon_sym_STAR] = ACTIONS(1108), - [anon_sym_AMP] = ACTIONS(1108), - [anon_sym_SEMI] = ACTIONS(1108), - [anon_sym_typedef] = ACTIONS(1106), - [anon_sym_extern] = ACTIONS(1106), - [anon_sym___attribute__] = ACTIONS(1106), - [anon_sym_LBRACE] = ACTIONS(1108), - [anon_sym_static] = ACTIONS(1106), - [anon_sym_auto] = ACTIONS(1106), - [anon_sym_register] = ACTIONS(1106), - [anon_sym_inline] = ACTIONS(1106), - [anon_sym_const] = ACTIONS(1106), - [anon_sym_volatile] = ACTIONS(1106), - [anon_sym_restrict] = ACTIONS(1106), - [anon_sym__Atomic] = ACTIONS(1106), - [anon_sym_signed] = ACTIONS(1106), - [anon_sym_unsigned] = ACTIONS(1106), - [anon_sym_long] = ACTIONS(1106), - [anon_sym_short] = ACTIONS(1106), - [sym_primitive_type] = ACTIONS(1106), - [anon_sym_enum] = ACTIONS(1106), - [anon_sym_struct] = ACTIONS(1106), - [anon_sym_union] = ACTIONS(1106), - [anon_sym_if] = ACTIONS(1106), - [anon_sym_switch] = ACTIONS(1106), - [anon_sym_case] = ACTIONS(1106), - [anon_sym_default] = ACTIONS(1106), - [anon_sym_while] = ACTIONS(1106), - [anon_sym_do] = ACTIONS(1106), - [anon_sym_for] = ACTIONS(1106), - [anon_sym_return] = ACTIONS(1106), - [anon_sym_break] = ACTIONS(1106), - [anon_sym_continue] = ACTIONS(1106), - [anon_sym_goto] = ACTIONS(1106), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_sizeof] = ACTIONS(1106), - [sym_number_literal] = ACTIONS(1108), - [anon_sym_L_SQUOTE] = ACTIONS(1108), - [anon_sym_u_SQUOTE] = ACTIONS(1108), - [anon_sym_U_SQUOTE] = ACTIONS(1108), - [anon_sym_u8_SQUOTE] = ACTIONS(1108), - [anon_sym_SQUOTE] = ACTIONS(1108), - [anon_sym_L_DQUOTE] = ACTIONS(1108), - [anon_sym_u_DQUOTE] = ACTIONS(1108), - [anon_sym_U_DQUOTE] = ACTIONS(1108), - [anon_sym_u8_DQUOTE] = ACTIONS(1108), - [anon_sym_DQUOTE] = ACTIONS(1108), - [sym_true] = ACTIONS(1106), - [sym_false] = ACTIONS(1106), - [sym_null] = ACTIONS(1106), - [sym_comment] = ACTIONS(3), - }, - [326] = { - [ts_builtin_sym_end] = ACTIONS(1100), - [sym_identifier] = ACTIONS(1098), - [aux_sym_preproc_include_token1] = ACTIONS(1098), - [aux_sym_preproc_def_token1] = ACTIONS(1098), - [aux_sym_preproc_if_token1] = ACTIONS(1098), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1098), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1098), - [sym_preproc_directive] = ACTIONS(1098), - [anon_sym_LPAREN2] = ACTIONS(1100), - [anon_sym_BANG] = ACTIONS(1100), - [anon_sym_TILDE] = ACTIONS(1100), - [anon_sym_DASH] = ACTIONS(1098), - [anon_sym_PLUS] = ACTIONS(1098), - [anon_sym_STAR] = ACTIONS(1100), - [anon_sym_AMP] = ACTIONS(1100), - [anon_sym_SEMI] = ACTIONS(1100), - [anon_sym_typedef] = ACTIONS(1098), - [anon_sym_extern] = ACTIONS(1098), - [anon_sym___attribute__] = ACTIONS(1098), - [anon_sym_LBRACE] = ACTIONS(1100), - [anon_sym_static] = ACTIONS(1098), - [anon_sym_auto] = ACTIONS(1098), - [anon_sym_register] = ACTIONS(1098), - [anon_sym_inline] = ACTIONS(1098), - [anon_sym_const] = ACTIONS(1098), - [anon_sym_volatile] = ACTIONS(1098), - [anon_sym_restrict] = ACTIONS(1098), - [anon_sym__Atomic] = ACTIONS(1098), - [anon_sym_signed] = ACTIONS(1098), - [anon_sym_unsigned] = ACTIONS(1098), - [anon_sym_long] = ACTIONS(1098), - [anon_sym_short] = ACTIONS(1098), - [sym_primitive_type] = ACTIONS(1098), - [anon_sym_enum] = ACTIONS(1098), - [anon_sym_struct] = ACTIONS(1098), - [anon_sym_union] = ACTIONS(1098), - [anon_sym_if] = ACTIONS(1098), - [anon_sym_switch] = ACTIONS(1098), - [anon_sym_case] = ACTIONS(1098), - [anon_sym_default] = ACTIONS(1098), - [anon_sym_while] = ACTIONS(1098), - [anon_sym_do] = ACTIONS(1098), - [anon_sym_for] = ACTIONS(1098), - [anon_sym_return] = ACTIONS(1098), - [anon_sym_break] = ACTIONS(1098), - [anon_sym_continue] = ACTIONS(1098), - [anon_sym_goto] = ACTIONS(1098), - [anon_sym_DASH_DASH] = ACTIONS(1100), - [anon_sym_PLUS_PLUS] = ACTIONS(1100), - [anon_sym_sizeof] = ACTIONS(1098), - [sym_number_literal] = ACTIONS(1100), - [anon_sym_L_SQUOTE] = ACTIONS(1100), - [anon_sym_u_SQUOTE] = ACTIONS(1100), - [anon_sym_U_SQUOTE] = ACTIONS(1100), - [anon_sym_u8_SQUOTE] = ACTIONS(1100), - [anon_sym_SQUOTE] = ACTIONS(1100), - [anon_sym_L_DQUOTE] = ACTIONS(1100), - [anon_sym_u_DQUOTE] = ACTIONS(1100), - [anon_sym_U_DQUOTE] = ACTIONS(1100), - [anon_sym_u8_DQUOTE] = ACTIONS(1100), - [anon_sym_DQUOTE] = ACTIONS(1100), - [sym_true] = ACTIONS(1098), - [sym_false] = ACTIONS(1098), - [sym_null] = ACTIONS(1098), - [sym_comment] = ACTIONS(3), - }, - [327] = { - [sym_identifier] = ACTIONS(1178), - [aux_sym_preproc_include_token1] = ACTIONS(1178), - [aux_sym_preproc_def_token1] = ACTIONS(1178), - [aux_sym_preproc_if_token1] = ACTIONS(1178), - [aux_sym_preproc_if_token2] = ACTIONS(1178), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1178), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1178), - [sym_preproc_directive] = ACTIONS(1178), - [anon_sym_LPAREN2] = ACTIONS(1180), - [anon_sym_BANG] = ACTIONS(1180), - [anon_sym_TILDE] = ACTIONS(1180), - [anon_sym_DASH] = ACTIONS(1178), - [anon_sym_PLUS] = ACTIONS(1178), - [anon_sym_STAR] = ACTIONS(1180), - [anon_sym_AMP] = ACTIONS(1180), - [anon_sym_SEMI] = ACTIONS(1180), - [anon_sym_typedef] = ACTIONS(1178), - [anon_sym_extern] = ACTIONS(1178), - [anon_sym___attribute__] = ACTIONS(1178), - [anon_sym_LBRACE] = ACTIONS(1180), - [anon_sym_static] = ACTIONS(1178), - [anon_sym_auto] = ACTIONS(1178), - [anon_sym_register] = ACTIONS(1178), - [anon_sym_inline] = ACTIONS(1178), - [anon_sym_const] = ACTIONS(1178), - [anon_sym_volatile] = ACTIONS(1178), - [anon_sym_restrict] = ACTIONS(1178), - [anon_sym__Atomic] = ACTIONS(1178), - [anon_sym_signed] = ACTIONS(1178), - [anon_sym_unsigned] = ACTIONS(1178), - [anon_sym_long] = ACTIONS(1178), - [anon_sym_short] = ACTIONS(1178), - [sym_primitive_type] = ACTIONS(1178), - [anon_sym_enum] = ACTIONS(1178), - [anon_sym_struct] = ACTIONS(1178), - [anon_sym_union] = ACTIONS(1178), - [anon_sym_if] = ACTIONS(1178), - [anon_sym_switch] = ACTIONS(1178), - [anon_sym_case] = ACTIONS(1178), - [anon_sym_default] = ACTIONS(1178), - [anon_sym_while] = ACTIONS(1178), - [anon_sym_do] = ACTIONS(1178), - [anon_sym_for] = ACTIONS(1178), - [anon_sym_return] = ACTIONS(1178), - [anon_sym_break] = ACTIONS(1178), - [anon_sym_continue] = ACTIONS(1178), - [anon_sym_goto] = ACTIONS(1178), - [anon_sym_DASH_DASH] = ACTIONS(1180), - [anon_sym_PLUS_PLUS] = ACTIONS(1180), - [anon_sym_sizeof] = ACTIONS(1178), - [sym_number_literal] = ACTIONS(1180), - [anon_sym_L_SQUOTE] = ACTIONS(1180), - [anon_sym_u_SQUOTE] = ACTIONS(1180), - [anon_sym_U_SQUOTE] = ACTIONS(1180), - [anon_sym_u8_SQUOTE] = ACTIONS(1180), - [anon_sym_SQUOTE] = ACTIONS(1180), - [anon_sym_L_DQUOTE] = ACTIONS(1180), - [anon_sym_u_DQUOTE] = ACTIONS(1180), - [anon_sym_U_DQUOTE] = ACTIONS(1180), - [anon_sym_u8_DQUOTE] = ACTIONS(1180), - [anon_sym_DQUOTE] = ACTIONS(1180), - [sym_true] = ACTIONS(1178), - [sym_false] = ACTIONS(1178), - [sym_null] = ACTIONS(1178), + [308] = { + [sym_identifier] = ACTIONS(1126), + [aux_sym_preproc_include_token1] = ACTIONS(1126), + [aux_sym_preproc_def_token1] = ACTIONS(1126), + [aux_sym_preproc_if_token1] = ACTIONS(1126), + [aux_sym_preproc_if_token2] = ACTIONS(1126), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1126), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1126), + [sym_preproc_directive] = ACTIONS(1126), + [anon_sym_LPAREN2] = ACTIONS(1128), + [anon_sym_BANG] = ACTIONS(1128), + [anon_sym_TILDE] = ACTIONS(1128), + [anon_sym_DASH] = ACTIONS(1126), + [anon_sym_PLUS] = ACTIONS(1126), + [anon_sym_STAR] = ACTIONS(1128), + [anon_sym_AMP] = ACTIONS(1128), + [anon_sym_SEMI] = ACTIONS(1128), + [anon_sym_typedef] = ACTIONS(1126), + [anon_sym_extern] = ACTIONS(1126), + [anon_sym___attribute__] = ACTIONS(1126), + [anon_sym_LBRACE] = ACTIONS(1128), + [anon_sym_static] = ACTIONS(1126), + [anon_sym_auto] = ACTIONS(1126), + [anon_sym_register] = ACTIONS(1126), + [anon_sym_inline] = ACTIONS(1126), + [anon_sym_const] = ACTIONS(1126), + [anon_sym_volatile] = ACTIONS(1126), + [anon_sym_restrict] = ACTIONS(1126), + [anon_sym__Atomic] = ACTIONS(1126), + [anon_sym_signed] = ACTIONS(1126), + [anon_sym_unsigned] = ACTIONS(1126), + [anon_sym_long] = ACTIONS(1126), + [anon_sym_short] = ACTIONS(1126), + [sym_primitive_type] = ACTIONS(1126), + [anon_sym_enum] = ACTIONS(1126), + [anon_sym_struct] = ACTIONS(1126), + [anon_sym_union] = ACTIONS(1126), + [anon_sym_if] = ACTIONS(1126), + [anon_sym_switch] = ACTIONS(1126), + [anon_sym_case] = ACTIONS(1126), + [anon_sym_default] = ACTIONS(1126), + [anon_sym_while] = ACTIONS(1126), + [anon_sym_do] = ACTIONS(1126), + [anon_sym_for] = ACTIONS(1126), + [anon_sym_return] = ACTIONS(1126), + [anon_sym_break] = ACTIONS(1126), + [anon_sym_continue] = ACTIONS(1126), + [anon_sym_goto] = ACTIONS(1126), + [anon_sym_DASH_DASH] = ACTIONS(1128), + [anon_sym_PLUS_PLUS] = ACTIONS(1128), + [anon_sym_sizeof] = ACTIONS(1126), + [sym_number_literal] = ACTIONS(1128), + [anon_sym_L_SQUOTE] = ACTIONS(1128), + [anon_sym_u_SQUOTE] = ACTIONS(1128), + [anon_sym_U_SQUOTE] = ACTIONS(1128), + [anon_sym_u8_SQUOTE] = ACTIONS(1128), + [anon_sym_SQUOTE] = ACTIONS(1128), + [anon_sym_L_DQUOTE] = ACTIONS(1128), + [anon_sym_u_DQUOTE] = ACTIONS(1128), + [anon_sym_U_DQUOTE] = ACTIONS(1128), + [anon_sym_u8_DQUOTE] = ACTIONS(1128), + [anon_sym_DQUOTE] = ACTIONS(1128), + [sym_true] = ACTIONS(1126), + [sym_false] = ACTIONS(1126), + [sym_null] = ACTIONS(1126), [sym_comment] = ACTIONS(3), }, - [328] = { + [309] = { [sym_identifier] = ACTIONS(1098), [aux_sym_preproc_include_token1] = ACTIONS(1098), [aux_sym_preproc_def_token1] = ACTIONS(1098), [aux_sym_preproc_if_token1] = ACTIONS(1098), - [aux_sym_preproc_if_token2] = ACTIONS(1098), [aux_sym_preproc_ifdef_token1] = ACTIONS(1098), [aux_sym_preproc_ifdef_token2] = ACTIONS(1098), [sym_preproc_directive] = ACTIONS(1098), @@ -32008,6 +30748,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_extern] = ACTIONS(1098), [anon_sym___attribute__] = ACTIONS(1098), [anon_sym_LBRACE] = ACTIONS(1100), + [anon_sym_RBRACE] = ACTIONS(1100), [anon_sym_static] = ACTIONS(1098), [anon_sym_auto] = ACTIONS(1098), [anon_sym_register] = ACTIONS(1098), @@ -32054,275 +30795,74 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1098), [sym_comment] = ACTIONS(3), }, - [329] = { - [sym_identifier] = ACTIONS(1122), - [aux_sym_preproc_include_token1] = ACTIONS(1122), - [aux_sym_preproc_def_token1] = ACTIONS(1122), - [aux_sym_preproc_if_token1] = ACTIONS(1122), - [aux_sym_preproc_if_token2] = ACTIONS(1122), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1122), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1122), - [sym_preproc_directive] = ACTIONS(1122), - [anon_sym_LPAREN2] = ACTIONS(1124), - [anon_sym_BANG] = ACTIONS(1124), - [anon_sym_TILDE] = ACTIONS(1124), - [anon_sym_DASH] = ACTIONS(1122), - [anon_sym_PLUS] = ACTIONS(1122), - [anon_sym_STAR] = ACTIONS(1124), - [anon_sym_AMP] = ACTIONS(1124), - [anon_sym_SEMI] = ACTIONS(1124), - [anon_sym_typedef] = ACTIONS(1122), - [anon_sym_extern] = ACTIONS(1122), - [anon_sym___attribute__] = ACTIONS(1122), - [anon_sym_LBRACE] = ACTIONS(1124), - [anon_sym_static] = ACTIONS(1122), - [anon_sym_auto] = ACTIONS(1122), - [anon_sym_register] = ACTIONS(1122), - [anon_sym_inline] = ACTIONS(1122), - [anon_sym_const] = ACTIONS(1122), - [anon_sym_volatile] = ACTIONS(1122), - [anon_sym_restrict] = ACTIONS(1122), - [anon_sym__Atomic] = ACTIONS(1122), - [anon_sym_signed] = ACTIONS(1122), - [anon_sym_unsigned] = ACTIONS(1122), - [anon_sym_long] = ACTIONS(1122), - [anon_sym_short] = ACTIONS(1122), - [sym_primitive_type] = ACTIONS(1122), - [anon_sym_enum] = ACTIONS(1122), - [anon_sym_struct] = ACTIONS(1122), - [anon_sym_union] = ACTIONS(1122), - [anon_sym_if] = ACTIONS(1122), - [anon_sym_switch] = ACTIONS(1122), - [anon_sym_case] = ACTIONS(1122), - [anon_sym_default] = ACTIONS(1122), - [anon_sym_while] = ACTIONS(1122), - [anon_sym_do] = ACTIONS(1122), - [anon_sym_for] = ACTIONS(1122), - [anon_sym_return] = ACTIONS(1122), - [anon_sym_break] = ACTIONS(1122), - [anon_sym_continue] = ACTIONS(1122), - [anon_sym_goto] = ACTIONS(1122), - [anon_sym_DASH_DASH] = ACTIONS(1124), - [anon_sym_PLUS_PLUS] = ACTIONS(1124), - [anon_sym_sizeof] = ACTIONS(1122), - [sym_number_literal] = ACTIONS(1124), - [anon_sym_L_SQUOTE] = ACTIONS(1124), - [anon_sym_u_SQUOTE] = ACTIONS(1124), - [anon_sym_U_SQUOTE] = ACTIONS(1124), - [anon_sym_u8_SQUOTE] = ACTIONS(1124), - [anon_sym_SQUOTE] = ACTIONS(1124), - [anon_sym_L_DQUOTE] = ACTIONS(1124), - [anon_sym_u_DQUOTE] = ACTIONS(1124), - [anon_sym_U_DQUOTE] = ACTIONS(1124), - [anon_sym_u8_DQUOTE] = ACTIONS(1124), - [anon_sym_DQUOTE] = ACTIONS(1124), - [sym_true] = ACTIONS(1122), - [sym_false] = ACTIONS(1122), - [sym_null] = ACTIONS(1122), - [sym_comment] = ACTIONS(3), - }, - [330] = { - [ts_builtin_sym_end] = ACTIONS(1152), - [sym_identifier] = ACTIONS(1150), - [aux_sym_preproc_include_token1] = ACTIONS(1150), - [aux_sym_preproc_def_token1] = ACTIONS(1150), - [aux_sym_preproc_if_token1] = ACTIONS(1150), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1150), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1150), - [sym_preproc_directive] = ACTIONS(1150), - [anon_sym_LPAREN2] = ACTIONS(1152), - [anon_sym_BANG] = ACTIONS(1152), - [anon_sym_TILDE] = ACTIONS(1152), - [anon_sym_DASH] = ACTIONS(1150), - [anon_sym_PLUS] = ACTIONS(1150), - [anon_sym_STAR] = ACTIONS(1152), - [anon_sym_AMP] = ACTIONS(1152), - [anon_sym_SEMI] = ACTIONS(1152), - [anon_sym_typedef] = ACTIONS(1150), - [anon_sym_extern] = ACTIONS(1150), - [anon_sym___attribute__] = ACTIONS(1150), - [anon_sym_LBRACE] = ACTIONS(1152), - [anon_sym_static] = ACTIONS(1150), - [anon_sym_auto] = ACTIONS(1150), - [anon_sym_register] = ACTIONS(1150), - [anon_sym_inline] = ACTIONS(1150), - [anon_sym_const] = ACTIONS(1150), - [anon_sym_volatile] = ACTIONS(1150), - [anon_sym_restrict] = ACTIONS(1150), - [anon_sym__Atomic] = ACTIONS(1150), - [anon_sym_signed] = ACTIONS(1150), - [anon_sym_unsigned] = ACTIONS(1150), - [anon_sym_long] = ACTIONS(1150), - [anon_sym_short] = ACTIONS(1150), - [sym_primitive_type] = ACTIONS(1150), - [anon_sym_enum] = ACTIONS(1150), - [anon_sym_struct] = ACTIONS(1150), - [anon_sym_union] = ACTIONS(1150), - [anon_sym_if] = ACTIONS(1150), - [anon_sym_switch] = ACTIONS(1150), - [anon_sym_case] = ACTIONS(1150), - [anon_sym_default] = ACTIONS(1150), - [anon_sym_while] = ACTIONS(1150), - [anon_sym_do] = ACTIONS(1150), - [anon_sym_for] = ACTIONS(1150), - [anon_sym_return] = ACTIONS(1150), - [anon_sym_break] = ACTIONS(1150), - [anon_sym_continue] = ACTIONS(1150), - [anon_sym_goto] = ACTIONS(1150), - [anon_sym_DASH_DASH] = ACTIONS(1152), - [anon_sym_PLUS_PLUS] = ACTIONS(1152), - [anon_sym_sizeof] = ACTIONS(1150), - [sym_number_literal] = ACTIONS(1152), - [anon_sym_L_SQUOTE] = ACTIONS(1152), - [anon_sym_u_SQUOTE] = ACTIONS(1152), - [anon_sym_U_SQUOTE] = ACTIONS(1152), - [anon_sym_u8_SQUOTE] = ACTIONS(1152), - [anon_sym_SQUOTE] = ACTIONS(1152), - [anon_sym_L_DQUOTE] = ACTIONS(1152), - [anon_sym_u_DQUOTE] = ACTIONS(1152), - [anon_sym_U_DQUOTE] = ACTIONS(1152), - [anon_sym_u8_DQUOTE] = ACTIONS(1152), - [anon_sym_DQUOTE] = ACTIONS(1152), - [sym_true] = ACTIONS(1150), - [sym_false] = ACTIONS(1150), - [sym_null] = ACTIONS(1150), - [sym_comment] = ACTIONS(3), - }, - [331] = { - [sym_identifier] = ACTIONS(1142), - [aux_sym_preproc_include_token1] = ACTIONS(1142), - [aux_sym_preproc_def_token1] = ACTIONS(1142), - [aux_sym_preproc_if_token1] = ACTIONS(1142), - [aux_sym_preproc_if_token2] = ACTIONS(1142), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1142), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1142), - [sym_preproc_directive] = ACTIONS(1142), - [anon_sym_LPAREN2] = ACTIONS(1144), - [anon_sym_BANG] = ACTIONS(1144), - [anon_sym_TILDE] = ACTIONS(1144), - [anon_sym_DASH] = ACTIONS(1142), - [anon_sym_PLUS] = ACTIONS(1142), - [anon_sym_STAR] = ACTIONS(1144), - [anon_sym_AMP] = ACTIONS(1144), - [anon_sym_SEMI] = ACTIONS(1144), - [anon_sym_typedef] = ACTIONS(1142), - [anon_sym_extern] = ACTIONS(1142), - [anon_sym___attribute__] = ACTIONS(1142), - [anon_sym_LBRACE] = ACTIONS(1144), - [anon_sym_static] = ACTIONS(1142), - [anon_sym_auto] = ACTIONS(1142), - [anon_sym_register] = ACTIONS(1142), - [anon_sym_inline] = ACTIONS(1142), - [anon_sym_const] = ACTIONS(1142), - [anon_sym_volatile] = ACTIONS(1142), - [anon_sym_restrict] = ACTIONS(1142), - [anon_sym__Atomic] = ACTIONS(1142), - [anon_sym_signed] = ACTIONS(1142), - [anon_sym_unsigned] = ACTIONS(1142), - [anon_sym_long] = ACTIONS(1142), - [anon_sym_short] = ACTIONS(1142), - [sym_primitive_type] = ACTIONS(1142), - [anon_sym_enum] = ACTIONS(1142), - [anon_sym_struct] = ACTIONS(1142), - [anon_sym_union] = ACTIONS(1142), - [anon_sym_if] = ACTIONS(1142), - [anon_sym_switch] = ACTIONS(1142), - [anon_sym_case] = ACTIONS(1142), - [anon_sym_default] = ACTIONS(1142), - [anon_sym_while] = ACTIONS(1142), - [anon_sym_do] = ACTIONS(1142), - [anon_sym_for] = ACTIONS(1142), - [anon_sym_return] = ACTIONS(1142), - [anon_sym_break] = ACTIONS(1142), - [anon_sym_continue] = ACTIONS(1142), - [anon_sym_goto] = ACTIONS(1142), - [anon_sym_DASH_DASH] = ACTIONS(1144), - [anon_sym_PLUS_PLUS] = ACTIONS(1144), - [anon_sym_sizeof] = ACTIONS(1142), - [sym_number_literal] = ACTIONS(1144), - [anon_sym_L_SQUOTE] = ACTIONS(1144), - [anon_sym_u_SQUOTE] = ACTIONS(1144), - [anon_sym_U_SQUOTE] = ACTIONS(1144), - [anon_sym_u8_SQUOTE] = ACTIONS(1144), - [anon_sym_SQUOTE] = ACTIONS(1144), - [anon_sym_L_DQUOTE] = ACTIONS(1144), - [anon_sym_u_DQUOTE] = ACTIONS(1144), - [anon_sym_U_DQUOTE] = ACTIONS(1144), - [anon_sym_u8_DQUOTE] = ACTIONS(1144), - [anon_sym_DQUOTE] = ACTIONS(1144), - [sym_true] = ACTIONS(1142), - [sym_false] = ACTIONS(1142), - [sym_null] = ACTIONS(1142), - [sym_comment] = ACTIONS(3), - }, - [332] = { - [sym_identifier] = ACTIONS(1150), - [aux_sym_preproc_include_token1] = ACTIONS(1150), - [aux_sym_preproc_def_token1] = ACTIONS(1150), - [aux_sym_preproc_if_token1] = ACTIONS(1150), - [aux_sym_preproc_if_token2] = ACTIONS(1150), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1150), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1150), - [sym_preproc_directive] = ACTIONS(1150), - [anon_sym_LPAREN2] = ACTIONS(1152), - [anon_sym_BANG] = ACTIONS(1152), - [anon_sym_TILDE] = ACTIONS(1152), - [anon_sym_DASH] = ACTIONS(1150), - [anon_sym_PLUS] = ACTIONS(1150), - [anon_sym_STAR] = ACTIONS(1152), - [anon_sym_AMP] = ACTIONS(1152), - [anon_sym_SEMI] = ACTIONS(1152), - [anon_sym_typedef] = ACTIONS(1150), - [anon_sym_extern] = ACTIONS(1150), - [anon_sym___attribute__] = ACTIONS(1150), - [anon_sym_LBRACE] = ACTIONS(1152), - [anon_sym_static] = ACTIONS(1150), - [anon_sym_auto] = ACTIONS(1150), - [anon_sym_register] = ACTIONS(1150), - [anon_sym_inline] = ACTIONS(1150), - [anon_sym_const] = ACTIONS(1150), - [anon_sym_volatile] = ACTIONS(1150), - [anon_sym_restrict] = ACTIONS(1150), - [anon_sym__Atomic] = ACTIONS(1150), - [anon_sym_signed] = ACTIONS(1150), - [anon_sym_unsigned] = ACTIONS(1150), - [anon_sym_long] = ACTIONS(1150), - [anon_sym_short] = ACTIONS(1150), - [sym_primitive_type] = ACTIONS(1150), - [anon_sym_enum] = ACTIONS(1150), - [anon_sym_struct] = ACTIONS(1150), - [anon_sym_union] = ACTIONS(1150), - [anon_sym_if] = ACTIONS(1150), - [anon_sym_switch] = ACTIONS(1150), - [anon_sym_case] = ACTIONS(1150), - [anon_sym_default] = ACTIONS(1150), - [anon_sym_while] = ACTIONS(1150), - [anon_sym_do] = ACTIONS(1150), - [anon_sym_for] = ACTIONS(1150), - [anon_sym_return] = ACTIONS(1150), - [anon_sym_break] = ACTIONS(1150), - [anon_sym_continue] = ACTIONS(1150), - [anon_sym_goto] = ACTIONS(1150), - [anon_sym_DASH_DASH] = ACTIONS(1152), - [anon_sym_PLUS_PLUS] = ACTIONS(1152), - [anon_sym_sizeof] = ACTIONS(1150), - [sym_number_literal] = ACTIONS(1152), - [anon_sym_L_SQUOTE] = ACTIONS(1152), - [anon_sym_u_SQUOTE] = ACTIONS(1152), - [anon_sym_U_SQUOTE] = ACTIONS(1152), - [anon_sym_u8_SQUOTE] = ACTIONS(1152), - [anon_sym_SQUOTE] = ACTIONS(1152), - [anon_sym_L_DQUOTE] = ACTIONS(1152), - [anon_sym_u_DQUOTE] = ACTIONS(1152), - [anon_sym_U_DQUOTE] = ACTIONS(1152), - [anon_sym_u8_DQUOTE] = ACTIONS(1152), - [anon_sym_DQUOTE] = ACTIONS(1152), - [sym_true] = ACTIONS(1150), - [sym_false] = ACTIONS(1150), - [sym_null] = ACTIONS(1150), + [310] = { + [sym_identifier] = ACTIONS(1094), + [aux_sym_preproc_include_token1] = ACTIONS(1094), + [aux_sym_preproc_def_token1] = ACTIONS(1094), + [aux_sym_preproc_if_token1] = ACTIONS(1094), + [aux_sym_preproc_if_token2] = ACTIONS(1094), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1094), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1094), + [sym_preproc_directive] = ACTIONS(1094), + [anon_sym_LPAREN2] = ACTIONS(1096), + [anon_sym_BANG] = ACTIONS(1096), + [anon_sym_TILDE] = ACTIONS(1096), + [anon_sym_DASH] = ACTIONS(1094), + [anon_sym_PLUS] = ACTIONS(1094), + [anon_sym_STAR] = ACTIONS(1096), + [anon_sym_AMP] = ACTIONS(1096), + [anon_sym_SEMI] = ACTIONS(1096), + [anon_sym_typedef] = ACTIONS(1094), + [anon_sym_extern] = ACTIONS(1094), + [anon_sym___attribute__] = ACTIONS(1094), + [anon_sym_LBRACE] = ACTIONS(1096), + [anon_sym_static] = ACTIONS(1094), + [anon_sym_auto] = ACTIONS(1094), + [anon_sym_register] = ACTIONS(1094), + [anon_sym_inline] = ACTIONS(1094), + [anon_sym_const] = ACTIONS(1094), + [anon_sym_volatile] = ACTIONS(1094), + [anon_sym_restrict] = ACTIONS(1094), + [anon_sym__Atomic] = ACTIONS(1094), + [anon_sym_signed] = ACTIONS(1094), + [anon_sym_unsigned] = ACTIONS(1094), + [anon_sym_long] = ACTIONS(1094), + [anon_sym_short] = ACTIONS(1094), + [sym_primitive_type] = ACTIONS(1094), + [anon_sym_enum] = ACTIONS(1094), + [anon_sym_struct] = ACTIONS(1094), + [anon_sym_union] = ACTIONS(1094), + [anon_sym_if] = ACTIONS(1094), + [anon_sym_switch] = ACTIONS(1094), + [anon_sym_case] = ACTIONS(1094), + [anon_sym_default] = ACTIONS(1094), + [anon_sym_while] = ACTIONS(1094), + [anon_sym_do] = ACTIONS(1094), + [anon_sym_for] = ACTIONS(1094), + [anon_sym_return] = ACTIONS(1094), + [anon_sym_break] = ACTIONS(1094), + [anon_sym_continue] = ACTIONS(1094), + [anon_sym_goto] = ACTIONS(1094), + [anon_sym_DASH_DASH] = ACTIONS(1096), + [anon_sym_PLUS_PLUS] = ACTIONS(1096), + [anon_sym_sizeof] = ACTIONS(1094), + [sym_number_literal] = ACTIONS(1096), + [anon_sym_L_SQUOTE] = ACTIONS(1096), + [anon_sym_u_SQUOTE] = ACTIONS(1096), + [anon_sym_U_SQUOTE] = ACTIONS(1096), + [anon_sym_u8_SQUOTE] = ACTIONS(1096), + [anon_sym_SQUOTE] = ACTIONS(1096), + [anon_sym_L_DQUOTE] = ACTIONS(1096), + [anon_sym_u_DQUOTE] = ACTIONS(1096), + [anon_sym_U_DQUOTE] = ACTIONS(1096), + [anon_sym_u8_DQUOTE] = ACTIONS(1096), + [anon_sym_DQUOTE] = ACTIONS(1096), + [sym_true] = ACTIONS(1094), + [sym_false] = ACTIONS(1094), + [sym_null] = ACTIONS(1094), [sym_comment] = ACTIONS(3), }, - [333] = { + [311] = { [sym_identifier] = ACTIONS(1114), [aux_sym_preproc_include_token1] = ACTIONS(1114), [aux_sym_preproc_def_token1] = ACTIONS(1114), @@ -32389,74 +30929,141 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1114), [sym_comment] = ACTIONS(3), }, - [334] = { - [ts_builtin_sym_end] = ACTIONS(1156), - [sym_identifier] = ACTIONS(1154), - [aux_sym_preproc_include_token1] = ACTIONS(1154), - [aux_sym_preproc_def_token1] = ACTIONS(1154), - [aux_sym_preproc_if_token1] = ACTIONS(1154), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1154), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1154), - [sym_preproc_directive] = ACTIONS(1154), - [anon_sym_LPAREN2] = ACTIONS(1156), - [anon_sym_BANG] = ACTIONS(1156), - [anon_sym_TILDE] = ACTIONS(1156), - [anon_sym_DASH] = ACTIONS(1154), - [anon_sym_PLUS] = ACTIONS(1154), - [anon_sym_STAR] = ACTIONS(1156), - [anon_sym_AMP] = ACTIONS(1156), - [anon_sym_SEMI] = ACTIONS(1156), - [anon_sym_typedef] = ACTIONS(1154), - [anon_sym_extern] = ACTIONS(1154), - [anon_sym___attribute__] = ACTIONS(1154), - [anon_sym_LBRACE] = ACTIONS(1156), - [anon_sym_static] = ACTIONS(1154), - [anon_sym_auto] = ACTIONS(1154), - [anon_sym_register] = ACTIONS(1154), - [anon_sym_inline] = ACTIONS(1154), - [anon_sym_const] = ACTIONS(1154), - [anon_sym_volatile] = ACTIONS(1154), - [anon_sym_restrict] = ACTIONS(1154), - [anon_sym__Atomic] = ACTIONS(1154), - [anon_sym_signed] = ACTIONS(1154), - [anon_sym_unsigned] = ACTIONS(1154), - [anon_sym_long] = ACTIONS(1154), - [anon_sym_short] = ACTIONS(1154), - [sym_primitive_type] = ACTIONS(1154), - [anon_sym_enum] = ACTIONS(1154), - [anon_sym_struct] = ACTIONS(1154), - [anon_sym_union] = ACTIONS(1154), - [anon_sym_if] = ACTIONS(1154), - [anon_sym_switch] = ACTIONS(1154), - [anon_sym_case] = ACTIONS(1154), - [anon_sym_default] = ACTIONS(1154), - [anon_sym_while] = ACTIONS(1154), - [anon_sym_do] = ACTIONS(1154), - [anon_sym_for] = ACTIONS(1154), - [anon_sym_return] = ACTIONS(1154), - [anon_sym_break] = ACTIONS(1154), - [anon_sym_continue] = ACTIONS(1154), - [anon_sym_goto] = ACTIONS(1154), - [anon_sym_DASH_DASH] = ACTIONS(1156), - [anon_sym_PLUS_PLUS] = ACTIONS(1156), - [anon_sym_sizeof] = ACTIONS(1154), - [sym_number_literal] = ACTIONS(1156), - [anon_sym_L_SQUOTE] = ACTIONS(1156), - [anon_sym_u_SQUOTE] = ACTIONS(1156), - [anon_sym_U_SQUOTE] = ACTIONS(1156), - [anon_sym_u8_SQUOTE] = ACTIONS(1156), - [anon_sym_SQUOTE] = ACTIONS(1156), - [anon_sym_L_DQUOTE] = ACTIONS(1156), - [anon_sym_u_DQUOTE] = ACTIONS(1156), - [anon_sym_U_DQUOTE] = ACTIONS(1156), - [anon_sym_u8_DQUOTE] = ACTIONS(1156), - [anon_sym_DQUOTE] = ACTIONS(1156), - [sym_true] = ACTIONS(1154), - [sym_false] = ACTIONS(1154), - [sym_null] = ACTIONS(1154), + [312] = { + [ts_builtin_sym_end] = ACTIONS(1124), + [sym_identifier] = ACTIONS(1122), + [aux_sym_preproc_include_token1] = ACTIONS(1122), + [aux_sym_preproc_def_token1] = ACTIONS(1122), + [aux_sym_preproc_if_token1] = ACTIONS(1122), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1122), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1122), + [sym_preproc_directive] = ACTIONS(1122), + [anon_sym_LPAREN2] = ACTIONS(1124), + [anon_sym_BANG] = ACTIONS(1124), + [anon_sym_TILDE] = ACTIONS(1124), + [anon_sym_DASH] = ACTIONS(1122), + [anon_sym_PLUS] = ACTIONS(1122), + [anon_sym_STAR] = ACTIONS(1124), + [anon_sym_AMP] = ACTIONS(1124), + [anon_sym_SEMI] = ACTIONS(1124), + [anon_sym_typedef] = ACTIONS(1122), + [anon_sym_extern] = ACTIONS(1122), + [anon_sym___attribute__] = ACTIONS(1122), + [anon_sym_LBRACE] = ACTIONS(1124), + [anon_sym_static] = ACTIONS(1122), + [anon_sym_auto] = ACTIONS(1122), + [anon_sym_register] = ACTIONS(1122), + [anon_sym_inline] = ACTIONS(1122), + [anon_sym_const] = ACTIONS(1122), + [anon_sym_volatile] = ACTIONS(1122), + [anon_sym_restrict] = ACTIONS(1122), + [anon_sym__Atomic] = ACTIONS(1122), + [anon_sym_signed] = ACTIONS(1122), + [anon_sym_unsigned] = ACTIONS(1122), + [anon_sym_long] = ACTIONS(1122), + [anon_sym_short] = ACTIONS(1122), + [sym_primitive_type] = ACTIONS(1122), + [anon_sym_enum] = ACTIONS(1122), + [anon_sym_struct] = ACTIONS(1122), + [anon_sym_union] = ACTIONS(1122), + [anon_sym_if] = ACTIONS(1122), + [anon_sym_switch] = ACTIONS(1122), + [anon_sym_case] = ACTIONS(1122), + [anon_sym_default] = ACTIONS(1122), + [anon_sym_while] = ACTIONS(1122), + [anon_sym_do] = ACTIONS(1122), + [anon_sym_for] = ACTIONS(1122), + [anon_sym_return] = ACTIONS(1122), + [anon_sym_break] = ACTIONS(1122), + [anon_sym_continue] = ACTIONS(1122), + [anon_sym_goto] = ACTIONS(1122), + [anon_sym_DASH_DASH] = ACTIONS(1124), + [anon_sym_PLUS_PLUS] = ACTIONS(1124), + [anon_sym_sizeof] = ACTIONS(1122), + [sym_number_literal] = ACTIONS(1124), + [anon_sym_L_SQUOTE] = ACTIONS(1124), + [anon_sym_u_SQUOTE] = ACTIONS(1124), + [anon_sym_U_SQUOTE] = ACTIONS(1124), + [anon_sym_u8_SQUOTE] = ACTIONS(1124), + [anon_sym_SQUOTE] = ACTIONS(1124), + [anon_sym_L_DQUOTE] = ACTIONS(1124), + [anon_sym_u_DQUOTE] = ACTIONS(1124), + [anon_sym_U_DQUOTE] = ACTIONS(1124), + [anon_sym_u8_DQUOTE] = ACTIONS(1124), + [anon_sym_DQUOTE] = ACTIONS(1124), + [sym_true] = ACTIONS(1122), + [sym_false] = ACTIONS(1122), + [sym_null] = ACTIONS(1122), + [sym_comment] = ACTIONS(3), + }, + [313] = { + [ts_builtin_sym_end] = ACTIONS(1096), + [sym_identifier] = ACTIONS(1094), + [aux_sym_preproc_include_token1] = ACTIONS(1094), + [aux_sym_preproc_def_token1] = ACTIONS(1094), + [aux_sym_preproc_if_token1] = ACTIONS(1094), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1094), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1094), + [sym_preproc_directive] = ACTIONS(1094), + [anon_sym_LPAREN2] = ACTIONS(1096), + [anon_sym_BANG] = ACTIONS(1096), + [anon_sym_TILDE] = ACTIONS(1096), + [anon_sym_DASH] = ACTIONS(1094), + [anon_sym_PLUS] = ACTIONS(1094), + [anon_sym_STAR] = ACTIONS(1096), + [anon_sym_AMP] = ACTIONS(1096), + [anon_sym_SEMI] = ACTIONS(1096), + [anon_sym_typedef] = ACTIONS(1094), + [anon_sym_extern] = ACTIONS(1094), + [anon_sym___attribute__] = ACTIONS(1094), + [anon_sym_LBRACE] = ACTIONS(1096), + [anon_sym_static] = ACTIONS(1094), + [anon_sym_auto] = ACTIONS(1094), + [anon_sym_register] = ACTIONS(1094), + [anon_sym_inline] = ACTIONS(1094), + [anon_sym_const] = ACTIONS(1094), + [anon_sym_volatile] = ACTIONS(1094), + [anon_sym_restrict] = ACTIONS(1094), + [anon_sym__Atomic] = ACTIONS(1094), + [anon_sym_signed] = ACTIONS(1094), + [anon_sym_unsigned] = ACTIONS(1094), + [anon_sym_long] = ACTIONS(1094), + [anon_sym_short] = ACTIONS(1094), + [sym_primitive_type] = ACTIONS(1094), + [anon_sym_enum] = ACTIONS(1094), + [anon_sym_struct] = ACTIONS(1094), + [anon_sym_union] = ACTIONS(1094), + [anon_sym_if] = ACTIONS(1094), + [anon_sym_switch] = ACTIONS(1094), + [anon_sym_case] = ACTIONS(1094), + [anon_sym_default] = ACTIONS(1094), + [anon_sym_while] = ACTIONS(1094), + [anon_sym_do] = ACTIONS(1094), + [anon_sym_for] = ACTIONS(1094), + [anon_sym_return] = ACTIONS(1094), + [anon_sym_break] = ACTIONS(1094), + [anon_sym_continue] = ACTIONS(1094), + [anon_sym_goto] = ACTIONS(1094), + [anon_sym_DASH_DASH] = ACTIONS(1096), + [anon_sym_PLUS_PLUS] = ACTIONS(1096), + [anon_sym_sizeof] = ACTIONS(1094), + [sym_number_literal] = ACTIONS(1096), + [anon_sym_L_SQUOTE] = ACTIONS(1096), + [anon_sym_u_SQUOTE] = ACTIONS(1096), + [anon_sym_U_SQUOTE] = ACTIONS(1096), + [anon_sym_u8_SQUOTE] = ACTIONS(1096), + [anon_sym_SQUOTE] = ACTIONS(1096), + [anon_sym_L_DQUOTE] = ACTIONS(1096), + [anon_sym_u_DQUOTE] = ACTIONS(1096), + [anon_sym_U_DQUOTE] = ACTIONS(1096), + [anon_sym_u8_DQUOTE] = ACTIONS(1096), + [anon_sym_DQUOTE] = ACTIONS(1096), + [sym_true] = ACTIONS(1094), + [sym_false] = ACTIONS(1094), + [sym_null] = ACTIONS(1094), [sym_comment] = ACTIONS(3), }, - [335] = { + [314] = { [sym_identifier] = ACTIONS(1110), [aux_sym_preproc_include_token1] = ACTIONS(1110), [aux_sym_preproc_def_token1] = ACTIONS(1110), @@ -32523,146 +31130,347 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1110), [sym_comment] = ACTIONS(3), }, - [336] = { - [sym_identifier] = ACTIONS(1094), - [aux_sym_preproc_include_token1] = ACTIONS(1094), - [aux_sym_preproc_def_token1] = ACTIONS(1094), - [aux_sym_preproc_if_token1] = ACTIONS(1094), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1094), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1094), - [sym_preproc_directive] = ACTIONS(1094), - [anon_sym_LPAREN2] = ACTIONS(1096), - [anon_sym_BANG] = ACTIONS(1096), - [anon_sym_TILDE] = ACTIONS(1096), - [anon_sym_DASH] = ACTIONS(1094), - [anon_sym_PLUS] = ACTIONS(1094), - [anon_sym_STAR] = ACTIONS(1096), - [anon_sym_AMP] = ACTIONS(1096), - [anon_sym_SEMI] = ACTIONS(1096), - [anon_sym_typedef] = ACTIONS(1094), - [anon_sym_extern] = ACTIONS(1094), - [anon_sym___attribute__] = ACTIONS(1094), - [anon_sym_LBRACE] = ACTIONS(1096), - [anon_sym_RBRACE] = ACTIONS(1096), - [anon_sym_static] = ACTIONS(1094), - [anon_sym_auto] = ACTIONS(1094), - [anon_sym_register] = ACTIONS(1094), - [anon_sym_inline] = ACTIONS(1094), - [anon_sym_const] = ACTIONS(1094), - [anon_sym_volatile] = ACTIONS(1094), - [anon_sym_restrict] = ACTIONS(1094), - [anon_sym__Atomic] = ACTIONS(1094), - [anon_sym_signed] = ACTIONS(1094), - [anon_sym_unsigned] = ACTIONS(1094), - [anon_sym_long] = ACTIONS(1094), - [anon_sym_short] = ACTIONS(1094), - [sym_primitive_type] = ACTIONS(1094), - [anon_sym_enum] = ACTIONS(1094), - [anon_sym_struct] = ACTIONS(1094), - [anon_sym_union] = ACTIONS(1094), - [anon_sym_if] = ACTIONS(1094), - [anon_sym_switch] = ACTIONS(1094), - [anon_sym_case] = ACTIONS(1094), - [anon_sym_default] = ACTIONS(1094), - [anon_sym_while] = ACTIONS(1094), - [anon_sym_do] = ACTIONS(1094), - [anon_sym_for] = ACTIONS(1094), - [anon_sym_return] = ACTIONS(1094), - [anon_sym_break] = ACTIONS(1094), - [anon_sym_continue] = ACTIONS(1094), - [anon_sym_goto] = ACTIONS(1094), - [anon_sym_DASH_DASH] = ACTIONS(1096), - [anon_sym_PLUS_PLUS] = ACTIONS(1096), - [anon_sym_sizeof] = ACTIONS(1094), - [sym_number_literal] = ACTIONS(1096), - [anon_sym_L_SQUOTE] = ACTIONS(1096), - [anon_sym_u_SQUOTE] = ACTIONS(1096), - [anon_sym_U_SQUOTE] = ACTIONS(1096), - [anon_sym_u8_SQUOTE] = ACTIONS(1096), - [anon_sym_SQUOTE] = ACTIONS(1096), - [anon_sym_L_DQUOTE] = ACTIONS(1096), - [anon_sym_u_DQUOTE] = ACTIONS(1096), - [anon_sym_U_DQUOTE] = ACTIONS(1096), - [anon_sym_u8_DQUOTE] = ACTIONS(1096), - [anon_sym_DQUOTE] = ACTIONS(1096), - [sym_true] = ACTIONS(1094), - [sym_false] = ACTIONS(1094), - [sym_null] = ACTIONS(1094), + [315] = { + [sym_identifier] = ACTIONS(1102), + [aux_sym_preproc_include_token1] = ACTIONS(1102), + [aux_sym_preproc_def_token1] = ACTIONS(1102), + [aux_sym_preproc_if_token1] = ACTIONS(1102), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1102), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1102), + [sym_preproc_directive] = ACTIONS(1102), + [anon_sym_LPAREN2] = ACTIONS(1104), + [anon_sym_BANG] = ACTIONS(1104), + [anon_sym_TILDE] = ACTIONS(1104), + [anon_sym_DASH] = ACTIONS(1102), + [anon_sym_PLUS] = ACTIONS(1102), + [anon_sym_STAR] = ACTIONS(1104), + [anon_sym_AMP] = ACTIONS(1104), + [anon_sym_SEMI] = ACTIONS(1104), + [anon_sym_typedef] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1102), + [anon_sym___attribute__] = ACTIONS(1102), + [anon_sym_LBRACE] = ACTIONS(1104), + [anon_sym_RBRACE] = ACTIONS(1104), + [anon_sym_static] = ACTIONS(1102), + [anon_sym_auto] = ACTIONS(1102), + [anon_sym_register] = ACTIONS(1102), + [anon_sym_inline] = ACTIONS(1102), + [anon_sym_const] = ACTIONS(1102), + [anon_sym_volatile] = ACTIONS(1102), + [anon_sym_restrict] = ACTIONS(1102), + [anon_sym__Atomic] = ACTIONS(1102), + [anon_sym_signed] = ACTIONS(1102), + [anon_sym_unsigned] = ACTIONS(1102), + [anon_sym_long] = ACTIONS(1102), + [anon_sym_short] = ACTIONS(1102), + [sym_primitive_type] = ACTIONS(1102), + [anon_sym_enum] = ACTIONS(1102), + [anon_sym_struct] = ACTIONS(1102), + [anon_sym_union] = ACTIONS(1102), + [anon_sym_if] = ACTIONS(1102), + [anon_sym_switch] = ACTIONS(1102), + [anon_sym_case] = ACTIONS(1102), + [anon_sym_default] = ACTIONS(1102), + [anon_sym_while] = ACTIONS(1102), + [anon_sym_do] = ACTIONS(1102), + [anon_sym_for] = ACTIONS(1102), + [anon_sym_return] = ACTIONS(1102), + [anon_sym_break] = ACTIONS(1102), + [anon_sym_continue] = ACTIONS(1102), + [anon_sym_goto] = ACTIONS(1102), + [anon_sym_DASH_DASH] = ACTIONS(1104), + [anon_sym_PLUS_PLUS] = ACTIONS(1104), + [anon_sym_sizeof] = ACTIONS(1102), + [sym_number_literal] = ACTIONS(1104), + [anon_sym_L_SQUOTE] = ACTIONS(1104), + [anon_sym_u_SQUOTE] = ACTIONS(1104), + [anon_sym_U_SQUOTE] = ACTIONS(1104), + [anon_sym_u8_SQUOTE] = ACTIONS(1104), + [anon_sym_SQUOTE] = ACTIONS(1104), + [anon_sym_L_DQUOTE] = ACTIONS(1104), + [anon_sym_u_DQUOTE] = ACTIONS(1104), + [anon_sym_U_DQUOTE] = ACTIONS(1104), + [anon_sym_u8_DQUOTE] = ACTIONS(1104), + [anon_sym_DQUOTE] = ACTIONS(1104), + [sym_true] = ACTIONS(1102), + [sym_false] = ACTIONS(1102), + [sym_null] = ACTIONS(1102), [sym_comment] = ACTIONS(3), }, - [337] = { - [sym_identifier] = ACTIONS(1098), - [aux_sym_preproc_include_token1] = ACTIONS(1098), - [aux_sym_preproc_def_token1] = ACTIONS(1098), - [aux_sym_preproc_if_token1] = ACTIONS(1098), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1098), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1098), - [sym_preproc_directive] = ACTIONS(1098), - [anon_sym_LPAREN2] = ACTIONS(1100), - [anon_sym_BANG] = ACTIONS(1100), - [anon_sym_TILDE] = ACTIONS(1100), - [anon_sym_DASH] = ACTIONS(1098), - [anon_sym_PLUS] = ACTIONS(1098), - [anon_sym_STAR] = ACTIONS(1100), - [anon_sym_AMP] = ACTIONS(1100), - [anon_sym_SEMI] = ACTIONS(1100), - [anon_sym_typedef] = ACTIONS(1098), - [anon_sym_extern] = ACTIONS(1098), - [anon_sym___attribute__] = ACTIONS(1098), - [anon_sym_LBRACE] = ACTIONS(1100), - [anon_sym_RBRACE] = ACTIONS(1100), - [anon_sym_static] = ACTIONS(1098), - [anon_sym_auto] = ACTIONS(1098), - [anon_sym_register] = ACTIONS(1098), - [anon_sym_inline] = ACTIONS(1098), - [anon_sym_const] = ACTIONS(1098), - [anon_sym_volatile] = ACTIONS(1098), - [anon_sym_restrict] = ACTIONS(1098), - [anon_sym__Atomic] = ACTIONS(1098), - [anon_sym_signed] = ACTIONS(1098), - [anon_sym_unsigned] = ACTIONS(1098), - [anon_sym_long] = ACTIONS(1098), - [anon_sym_short] = ACTIONS(1098), - [sym_primitive_type] = ACTIONS(1098), - [anon_sym_enum] = ACTIONS(1098), - [anon_sym_struct] = ACTIONS(1098), - [anon_sym_union] = ACTIONS(1098), - [anon_sym_if] = ACTIONS(1098), - [anon_sym_switch] = ACTIONS(1098), - [anon_sym_case] = ACTIONS(1098), - [anon_sym_default] = ACTIONS(1098), - [anon_sym_while] = ACTIONS(1098), - [anon_sym_do] = ACTIONS(1098), - [anon_sym_for] = ACTIONS(1098), - [anon_sym_return] = ACTIONS(1098), - [anon_sym_break] = ACTIONS(1098), - [anon_sym_continue] = ACTIONS(1098), - [anon_sym_goto] = ACTIONS(1098), - [anon_sym_DASH_DASH] = ACTIONS(1100), - [anon_sym_PLUS_PLUS] = ACTIONS(1100), - [anon_sym_sizeof] = ACTIONS(1098), - [sym_number_literal] = ACTIONS(1100), - [anon_sym_L_SQUOTE] = ACTIONS(1100), - [anon_sym_u_SQUOTE] = ACTIONS(1100), - [anon_sym_U_SQUOTE] = ACTIONS(1100), - [anon_sym_u8_SQUOTE] = ACTIONS(1100), - [anon_sym_SQUOTE] = ACTIONS(1100), - [anon_sym_L_DQUOTE] = ACTIONS(1100), - [anon_sym_u_DQUOTE] = ACTIONS(1100), - [anon_sym_U_DQUOTE] = ACTIONS(1100), - [anon_sym_u8_DQUOTE] = ACTIONS(1100), - [anon_sym_DQUOTE] = ACTIONS(1100), - [sym_true] = ACTIONS(1098), - [sym_false] = ACTIONS(1098), - [sym_null] = ACTIONS(1098), + [316] = { + [sym_identifier] = ACTIONS(1106), + [aux_sym_preproc_include_token1] = ACTIONS(1106), + [aux_sym_preproc_def_token1] = ACTIONS(1106), + [aux_sym_preproc_if_token1] = ACTIONS(1106), + [aux_sym_preproc_if_token2] = ACTIONS(1106), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1106), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1106), + [sym_preproc_directive] = ACTIONS(1106), + [anon_sym_LPAREN2] = ACTIONS(1108), + [anon_sym_BANG] = ACTIONS(1108), + [anon_sym_TILDE] = ACTIONS(1108), + [anon_sym_DASH] = ACTIONS(1106), + [anon_sym_PLUS] = ACTIONS(1106), + [anon_sym_STAR] = ACTIONS(1108), + [anon_sym_AMP] = ACTIONS(1108), + [anon_sym_SEMI] = ACTIONS(1108), + [anon_sym_typedef] = ACTIONS(1106), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym___attribute__] = ACTIONS(1106), + [anon_sym_LBRACE] = ACTIONS(1108), + [anon_sym_static] = ACTIONS(1106), + [anon_sym_auto] = ACTIONS(1106), + [anon_sym_register] = ACTIONS(1106), + [anon_sym_inline] = ACTIONS(1106), + [anon_sym_const] = ACTIONS(1106), + [anon_sym_volatile] = ACTIONS(1106), + [anon_sym_restrict] = ACTIONS(1106), + [anon_sym__Atomic] = ACTIONS(1106), + [anon_sym_signed] = ACTIONS(1106), + [anon_sym_unsigned] = ACTIONS(1106), + [anon_sym_long] = ACTIONS(1106), + [anon_sym_short] = ACTIONS(1106), + [sym_primitive_type] = ACTIONS(1106), + [anon_sym_enum] = ACTIONS(1106), + [anon_sym_struct] = ACTIONS(1106), + [anon_sym_union] = ACTIONS(1106), + [anon_sym_if] = ACTIONS(1106), + [anon_sym_switch] = ACTIONS(1106), + [anon_sym_case] = ACTIONS(1106), + [anon_sym_default] = ACTIONS(1106), + [anon_sym_while] = ACTIONS(1106), + [anon_sym_do] = ACTIONS(1106), + [anon_sym_for] = ACTIONS(1106), + [anon_sym_return] = ACTIONS(1106), + [anon_sym_break] = ACTIONS(1106), + [anon_sym_continue] = ACTIONS(1106), + [anon_sym_goto] = ACTIONS(1106), + [anon_sym_DASH_DASH] = ACTIONS(1108), + [anon_sym_PLUS_PLUS] = ACTIONS(1108), + [anon_sym_sizeof] = ACTIONS(1106), + [sym_number_literal] = ACTIONS(1108), + [anon_sym_L_SQUOTE] = ACTIONS(1108), + [anon_sym_u_SQUOTE] = ACTIONS(1108), + [anon_sym_U_SQUOTE] = ACTIONS(1108), + [anon_sym_u8_SQUOTE] = ACTIONS(1108), + [anon_sym_SQUOTE] = ACTIONS(1108), + [anon_sym_L_DQUOTE] = ACTIONS(1108), + [anon_sym_u_DQUOTE] = ACTIONS(1108), + [anon_sym_U_DQUOTE] = ACTIONS(1108), + [anon_sym_u8_DQUOTE] = ACTIONS(1108), + [anon_sym_DQUOTE] = ACTIONS(1108), + [sym_true] = ACTIONS(1106), + [sym_false] = ACTIONS(1106), + [sym_null] = ACTIONS(1106), [sym_comment] = ACTIONS(3), }, - [338] = { + [317] = { + [sym_identifier] = ACTIONS(1166), + [aux_sym_preproc_include_token1] = ACTIONS(1166), + [aux_sym_preproc_def_token1] = ACTIONS(1166), + [aux_sym_preproc_if_token1] = ACTIONS(1166), + [aux_sym_preproc_if_token2] = ACTIONS(1166), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1166), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1166), + [sym_preproc_directive] = ACTIONS(1166), + [anon_sym_LPAREN2] = ACTIONS(1168), + [anon_sym_BANG] = ACTIONS(1168), + [anon_sym_TILDE] = ACTIONS(1168), + [anon_sym_DASH] = ACTIONS(1166), + [anon_sym_PLUS] = ACTIONS(1166), + [anon_sym_STAR] = ACTIONS(1168), + [anon_sym_AMP] = ACTIONS(1168), + [anon_sym_SEMI] = ACTIONS(1168), + [anon_sym_typedef] = ACTIONS(1166), + [anon_sym_extern] = ACTIONS(1166), + [anon_sym___attribute__] = ACTIONS(1166), + [anon_sym_LBRACE] = ACTIONS(1168), + [anon_sym_static] = ACTIONS(1166), + [anon_sym_auto] = ACTIONS(1166), + [anon_sym_register] = ACTIONS(1166), + [anon_sym_inline] = ACTIONS(1166), + [anon_sym_const] = ACTIONS(1166), + [anon_sym_volatile] = ACTIONS(1166), + [anon_sym_restrict] = ACTIONS(1166), + [anon_sym__Atomic] = ACTIONS(1166), + [anon_sym_signed] = ACTIONS(1166), + [anon_sym_unsigned] = ACTIONS(1166), + [anon_sym_long] = ACTIONS(1166), + [anon_sym_short] = ACTIONS(1166), + [sym_primitive_type] = ACTIONS(1166), + [anon_sym_enum] = ACTIONS(1166), + [anon_sym_struct] = ACTIONS(1166), + [anon_sym_union] = ACTIONS(1166), + [anon_sym_if] = ACTIONS(1166), + [anon_sym_switch] = ACTIONS(1166), + [anon_sym_case] = ACTIONS(1166), + [anon_sym_default] = ACTIONS(1166), + [anon_sym_while] = ACTIONS(1166), + [anon_sym_do] = ACTIONS(1166), + [anon_sym_for] = ACTIONS(1166), + [anon_sym_return] = ACTIONS(1166), + [anon_sym_break] = ACTIONS(1166), + [anon_sym_continue] = ACTIONS(1166), + [anon_sym_goto] = ACTIONS(1166), + [anon_sym_DASH_DASH] = ACTIONS(1168), + [anon_sym_PLUS_PLUS] = ACTIONS(1168), + [anon_sym_sizeof] = ACTIONS(1166), + [sym_number_literal] = ACTIONS(1168), + [anon_sym_L_SQUOTE] = ACTIONS(1168), + [anon_sym_u_SQUOTE] = ACTIONS(1168), + [anon_sym_U_SQUOTE] = ACTIONS(1168), + [anon_sym_u8_SQUOTE] = ACTIONS(1168), + [anon_sym_SQUOTE] = ACTIONS(1168), + [anon_sym_L_DQUOTE] = ACTIONS(1168), + [anon_sym_u_DQUOTE] = ACTIONS(1168), + [anon_sym_U_DQUOTE] = ACTIONS(1168), + [anon_sym_u8_DQUOTE] = ACTIONS(1168), + [anon_sym_DQUOTE] = ACTIONS(1168), + [sym_true] = ACTIONS(1166), + [sym_false] = ACTIONS(1166), + [sym_null] = ACTIONS(1166), + [sym_comment] = ACTIONS(3), + }, + [318] = { + [ts_builtin_sym_end] = ACTIONS(1168), + [sym_identifier] = ACTIONS(1166), + [aux_sym_preproc_include_token1] = ACTIONS(1166), + [aux_sym_preproc_def_token1] = ACTIONS(1166), + [aux_sym_preproc_if_token1] = ACTIONS(1166), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1166), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1166), + [sym_preproc_directive] = ACTIONS(1166), + [anon_sym_LPAREN2] = ACTIONS(1168), + [anon_sym_BANG] = ACTIONS(1168), + [anon_sym_TILDE] = ACTIONS(1168), + [anon_sym_DASH] = ACTIONS(1166), + [anon_sym_PLUS] = ACTIONS(1166), + [anon_sym_STAR] = ACTIONS(1168), + [anon_sym_AMP] = ACTIONS(1168), + [anon_sym_SEMI] = ACTIONS(1168), + [anon_sym_typedef] = ACTIONS(1166), + [anon_sym_extern] = ACTIONS(1166), + [anon_sym___attribute__] = ACTIONS(1166), + [anon_sym_LBRACE] = ACTIONS(1168), + [anon_sym_static] = ACTIONS(1166), + [anon_sym_auto] = ACTIONS(1166), + [anon_sym_register] = ACTIONS(1166), + [anon_sym_inline] = ACTIONS(1166), + [anon_sym_const] = ACTIONS(1166), + [anon_sym_volatile] = ACTIONS(1166), + [anon_sym_restrict] = ACTIONS(1166), + [anon_sym__Atomic] = ACTIONS(1166), + [anon_sym_signed] = ACTIONS(1166), + [anon_sym_unsigned] = ACTIONS(1166), + [anon_sym_long] = ACTIONS(1166), + [anon_sym_short] = ACTIONS(1166), + [sym_primitive_type] = ACTIONS(1166), + [anon_sym_enum] = ACTIONS(1166), + [anon_sym_struct] = ACTIONS(1166), + [anon_sym_union] = ACTIONS(1166), + [anon_sym_if] = ACTIONS(1166), + [anon_sym_switch] = ACTIONS(1166), + [anon_sym_case] = ACTIONS(1166), + [anon_sym_default] = ACTIONS(1166), + [anon_sym_while] = ACTIONS(1166), + [anon_sym_do] = ACTIONS(1166), + [anon_sym_for] = ACTIONS(1166), + [anon_sym_return] = ACTIONS(1166), + [anon_sym_break] = ACTIONS(1166), + [anon_sym_continue] = ACTIONS(1166), + [anon_sym_goto] = ACTIONS(1166), + [anon_sym_DASH_DASH] = ACTIONS(1168), + [anon_sym_PLUS_PLUS] = ACTIONS(1168), + [anon_sym_sizeof] = ACTIONS(1166), + [sym_number_literal] = ACTIONS(1168), + [anon_sym_L_SQUOTE] = ACTIONS(1168), + [anon_sym_u_SQUOTE] = ACTIONS(1168), + [anon_sym_U_SQUOTE] = ACTIONS(1168), + [anon_sym_u8_SQUOTE] = ACTIONS(1168), + [anon_sym_SQUOTE] = ACTIONS(1168), + [anon_sym_L_DQUOTE] = ACTIONS(1168), + [anon_sym_u_DQUOTE] = ACTIONS(1168), + [anon_sym_U_DQUOTE] = ACTIONS(1168), + [anon_sym_u8_DQUOTE] = ACTIONS(1168), + [anon_sym_DQUOTE] = ACTIONS(1168), + [sym_true] = ACTIONS(1166), + [sym_false] = ACTIONS(1166), + [sym_null] = ACTIONS(1166), + [sym_comment] = ACTIONS(3), + }, + [319] = { + [sym_identifier] = ACTIONS(1170), + [aux_sym_preproc_include_token1] = ACTIONS(1170), + [aux_sym_preproc_def_token1] = ACTIONS(1170), + [aux_sym_preproc_if_token1] = ACTIONS(1170), + [aux_sym_preproc_if_token2] = ACTIONS(1170), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1170), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1170), + [sym_preproc_directive] = ACTIONS(1170), + [anon_sym_LPAREN2] = ACTIONS(1172), + [anon_sym_BANG] = ACTIONS(1172), + [anon_sym_TILDE] = ACTIONS(1172), + [anon_sym_DASH] = ACTIONS(1170), + [anon_sym_PLUS] = ACTIONS(1170), + [anon_sym_STAR] = ACTIONS(1172), + [anon_sym_AMP] = ACTIONS(1172), + [anon_sym_SEMI] = ACTIONS(1172), + [anon_sym_typedef] = ACTIONS(1170), + [anon_sym_extern] = ACTIONS(1170), + [anon_sym___attribute__] = ACTIONS(1170), + [anon_sym_LBRACE] = ACTIONS(1172), + [anon_sym_static] = ACTIONS(1170), + [anon_sym_auto] = ACTIONS(1170), + [anon_sym_register] = ACTIONS(1170), + [anon_sym_inline] = ACTIONS(1170), + [anon_sym_const] = ACTIONS(1170), + [anon_sym_volatile] = ACTIONS(1170), + [anon_sym_restrict] = ACTIONS(1170), + [anon_sym__Atomic] = ACTIONS(1170), + [anon_sym_signed] = ACTIONS(1170), + [anon_sym_unsigned] = ACTIONS(1170), + [anon_sym_long] = ACTIONS(1170), + [anon_sym_short] = ACTIONS(1170), + [sym_primitive_type] = ACTIONS(1170), + [anon_sym_enum] = ACTIONS(1170), + [anon_sym_struct] = ACTIONS(1170), + [anon_sym_union] = ACTIONS(1170), + [anon_sym_if] = ACTIONS(1170), + [anon_sym_switch] = ACTIONS(1170), + [anon_sym_case] = ACTIONS(1170), + [anon_sym_default] = ACTIONS(1170), + [anon_sym_while] = ACTIONS(1170), + [anon_sym_do] = ACTIONS(1170), + [anon_sym_for] = ACTIONS(1170), + [anon_sym_return] = ACTIONS(1170), + [anon_sym_break] = ACTIONS(1170), + [anon_sym_continue] = ACTIONS(1170), + [anon_sym_goto] = ACTIONS(1170), + [anon_sym_DASH_DASH] = ACTIONS(1172), + [anon_sym_PLUS_PLUS] = ACTIONS(1172), + [anon_sym_sizeof] = ACTIONS(1170), + [sym_number_literal] = ACTIONS(1172), + [anon_sym_L_SQUOTE] = ACTIONS(1172), + [anon_sym_u_SQUOTE] = ACTIONS(1172), + [anon_sym_U_SQUOTE] = ACTIONS(1172), + [anon_sym_u8_SQUOTE] = ACTIONS(1172), + [anon_sym_SQUOTE] = ACTIONS(1172), + [anon_sym_L_DQUOTE] = ACTIONS(1172), + [anon_sym_u_DQUOTE] = ACTIONS(1172), + [anon_sym_U_DQUOTE] = ACTIONS(1172), + [anon_sym_u8_DQUOTE] = ACTIONS(1172), + [anon_sym_DQUOTE] = ACTIONS(1172), + [sym_true] = ACTIONS(1170), + [sym_false] = ACTIONS(1170), + [sym_null] = ACTIONS(1170), + [sym_comment] = ACTIONS(3), + }, + [320] = { + [ts_builtin_sym_end] = ACTIONS(1160), [sym_identifier] = ACTIONS(1158), [aux_sym_preproc_include_token1] = ACTIONS(1158), [aux_sym_preproc_def_token1] = ACTIONS(1158), [aux_sym_preproc_if_token1] = ACTIONS(1158), - [aux_sym_preproc_if_token2] = ACTIONS(1158), [aux_sym_preproc_ifdef_token1] = ACTIONS(1158), [aux_sym_preproc_ifdef_token2] = ACTIONS(1158), [sym_preproc_directive] = ACTIONS(1158), @@ -32724,346 +31532,481 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1158), [sym_comment] = ACTIONS(3), }, - [339] = { - [sym_identifier] = ACTIONS(1106), - [aux_sym_preproc_include_token1] = ACTIONS(1106), - [aux_sym_preproc_def_token1] = ACTIONS(1106), - [aux_sym_preproc_if_token1] = ACTIONS(1106), - [aux_sym_preproc_if_token2] = ACTIONS(1106), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1106), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1106), - [sym_preproc_directive] = ACTIONS(1106), - [anon_sym_LPAREN2] = ACTIONS(1108), - [anon_sym_BANG] = ACTIONS(1108), - [anon_sym_TILDE] = ACTIONS(1108), - [anon_sym_DASH] = ACTIONS(1106), - [anon_sym_PLUS] = ACTIONS(1106), - [anon_sym_STAR] = ACTIONS(1108), - [anon_sym_AMP] = ACTIONS(1108), - [anon_sym_SEMI] = ACTIONS(1108), - [anon_sym_typedef] = ACTIONS(1106), - [anon_sym_extern] = ACTIONS(1106), - [anon_sym___attribute__] = ACTIONS(1106), - [anon_sym_LBRACE] = ACTIONS(1108), - [anon_sym_static] = ACTIONS(1106), - [anon_sym_auto] = ACTIONS(1106), - [anon_sym_register] = ACTIONS(1106), - [anon_sym_inline] = ACTIONS(1106), - [anon_sym_const] = ACTIONS(1106), - [anon_sym_volatile] = ACTIONS(1106), - [anon_sym_restrict] = ACTIONS(1106), - [anon_sym__Atomic] = ACTIONS(1106), - [anon_sym_signed] = ACTIONS(1106), - [anon_sym_unsigned] = ACTIONS(1106), - [anon_sym_long] = ACTIONS(1106), - [anon_sym_short] = ACTIONS(1106), - [sym_primitive_type] = ACTIONS(1106), - [anon_sym_enum] = ACTIONS(1106), - [anon_sym_struct] = ACTIONS(1106), - [anon_sym_union] = ACTIONS(1106), - [anon_sym_if] = ACTIONS(1106), - [anon_sym_switch] = ACTIONS(1106), - [anon_sym_case] = ACTIONS(1106), - [anon_sym_default] = ACTIONS(1106), - [anon_sym_while] = ACTIONS(1106), - [anon_sym_do] = ACTIONS(1106), - [anon_sym_for] = ACTIONS(1106), - [anon_sym_return] = ACTIONS(1106), - [anon_sym_break] = ACTIONS(1106), - [anon_sym_continue] = ACTIONS(1106), - [anon_sym_goto] = ACTIONS(1106), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_sizeof] = ACTIONS(1106), - [sym_number_literal] = ACTIONS(1108), - [anon_sym_L_SQUOTE] = ACTIONS(1108), - [anon_sym_u_SQUOTE] = ACTIONS(1108), - [anon_sym_U_SQUOTE] = ACTIONS(1108), - [anon_sym_u8_SQUOTE] = ACTIONS(1108), - [anon_sym_SQUOTE] = ACTIONS(1108), - [anon_sym_L_DQUOTE] = ACTIONS(1108), - [anon_sym_u_DQUOTE] = ACTIONS(1108), - [anon_sym_U_DQUOTE] = ACTIONS(1108), - [anon_sym_u8_DQUOTE] = ACTIONS(1108), - [anon_sym_DQUOTE] = ACTIONS(1108), - [sym_true] = ACTIONS(1106), - [sym_false] = ACTIONS(1106), - [sym_null] = ACTIONS(1106), + [321] = { + [sym_identifier] = ACTIONS(1162), + [aux_sym_preproc_include_token1] = ACTIONS(1162), + [aux_sym_preproc_def_token1] = ACTIONS(1162), + [aux_sym_preproc_if_token1] = ACTIONS(1162), + [aux_sym_preproc_if_token2] = ACTIONS(1162), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1162), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1162), + [sym_preproc_directive] = ACTIONS(1162), + [anon_sym_LPAREN2] = ACTIONS(1164), + [anon_sym_BANG] = ACTIONS(1164), + [anon_sym_TILDE] = ACTIONS(1164), + [anon_sym_DASH] = ACTIONS(1162), + [anon_sym_PLUS] = ACTIONS(1162), + [anon_sym_STAR] = ACTIONS(1164), + [anon_sym_AMP] = ACTIONS(1164), + [anon_sym_SEMI] = ACTIONS(1164), + [anon_sym_typedef] = ACTIONS(1162), + [anon_sym_extern] = ACTIONS(1162), + [anon_sym___attribute__] = ACTIONS(1162), + [anon_sym_LBRACE] = ACTIONS(1164), + [anon_sym_static] = ACTIONS(1162), + [anon_sym_auto] = ACTIONS(1162), + [anon_sym_register] = ACTIONS(1162), + [anon_sym_inline] = ACTIONS(1162), + [anon_sym_const] = ACTIONS(1162), + [anon_sym_volatile] = ACTIONS(1162), + [anon_sym_restrict] = ACTIONS(1162), + [anon_sym__Atomic] = ACTIONS(1162), + [anon_sym_signed] = ACTIONS(1162), + [anon_sym_unsigned] = ACTIONS(1162), + [anon_sym_long] = ACTIONS(1162), + [anon_sym_short] = ACTIONS(1162), + [sym_primitive_type] = ACTIONS(1162), + [anon_sym_enum] = ACTIONS(1162), + [anon_sym_struct] = ACTIONS(1162), + [anon_sym_union] = ACTIONS(1162), + [anon_sym_if] = ACTIONS(1162), + [anon_sym_switch] = ACTIONS(1162), + [anon_sym_case] = ACTIONS(1162), + [anon_sym_default] = ACTIONS(1162), + [anon_sym_while] = ACTIONS(1162), + [anon_sym_do] = ACTIONS(1162), + [anon_sym_for] = ACTIONS(1162), + [anon_sym_return] = ACTIONS(1162), + [anon_sym_break] = ACTIONS(1162), + [anon_sym_continue] = ACTIONS(1162), + [anon_sym_goto] = ACTIONS(1162), + [anon_sym_DASH_DASH] = ACTIONS(1164), + [anon_sym_PLUS_PLUS] = ACTIONS(1164), + [anon_sym_sizeof] = ACTIONS(1162), + [sym_number_literal] = ACTIONS(1164), + [anon_sym_L_SQUOTE] = ACTIONS(1164), + [anon_sym_u_SQUOTE] = ACTIONS(1164), + [anon_sym_U_SQUOTE] = ACTIONS(1164), + [anon_sym_u8_SQUOTE] = ACTIONS(1164), + [anon_sym_SQUOTE] = ACTIONS(1164), + [anon_sym_L_DQUOTE] = ACTIONS(1164), + [anon_sym_u_DQUOTE] = ACTIONS(1164), + [anon_sym_U_DQUOTE] = ACTIONS(1164), + [anon_sym_u8_DQUOTE] = ACTIONS(1164), + [anon_sym_DQUOTE] = ACTIONS(1164), + [sym_true] = ACTIONS(1162), + [sym_false] = ACTIONS(1162), + [sym_null] = ACTIONS(1162), + [sym_comment] = ACTIONS(3), + }, + [322] = { + [sym_identifier] = ACTIONS(1150), + [aux_sym_preproc_include_token1] = ACTIONS(1150), + [aux_sym_preproc_def_token1] = ACTIONS(1150), + [aux_sym_preproc_if_token1] = ACTIONS(1150), + [aux_sym_preproc_if_token2] = ACTIONS(1150), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1150), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1150), + [sym_preproc_directive] = ACTIONS(1150), + [anon_sym_LPAREN2] = ACTIONS(1152), + [anon_sym_BANG] = ACTIONS(1152), + [anon_sym_TILDE] = ACTIONS(1152), + [anon_sym_DASH] = ACTIONS(1150), + [anon_sym_PLUS] = ACTIONS(1150), + [anon_sym_STAR] = ACTIONS(1152), + [anon_sym_AMP] = ACTIONS(1152), + [anon_sym_SEMI] = ACTIONS(1152), + [anon_sym_typedef] = ACTIONS(1150), + [anon_sym_extern] = ACTIONS(1150), + [anon_sym___attribute__] = ACTIONS(1150), + [anon_sym_LBRACE] = ACTIONS(1152), + [anon_sym_static] = ACTIONS(1150), + [anon_sym_auto] = ACTIONS(1150), + [anon_sym_register] = ACTIONS(1150), + [anon_sym_inline] = ACTIONS(1150), + [anon_sym_const] = ACTIONS(1150), + [anon_sym_volatile] = ACTIONS(1150), + [anon_sym_restrict] = ACTIONS(1150), + [anon_sym__Atomic] = ACTIONS(1150), + [anon_sym_signed] = ACTIONS(1150), + [anon_sym_unsigned] = ACTIONS(1150), + [anon_sym_long] = ACTIONS(1150), + [anon_sym_short] = ACTIONS(1150), + [sym_primitive_type] = ACTIONS(1150), + [anon_sym_enum] = ACTIONS(1150), + [anon_sym_struct] = ACTIONS(1150), + [anon_sym_union] = ACTIONS(1150), + [anon_sym_if] = ACTIONS(1150), + [anon_sym_switch] = ACTIONS(1150), + [anon_sym_case] = ACTIONS(1150), + [anon_sym_default] = ACTIONS(1150), + [anon_sym_while] = ACTIONS(1150), + [anon_sym_do] = ACTIONS(1150), + [anon_sym_for] = ACTIONS(1150), + [anon_sym_return] = ACTIONS(1150), + [anon_sym_break] = ACTIONS(1150), + [anon_sym_continue] = ACTIONS(1150), + [anon_sym_goto] = ACTIONS(1150), + [anon_sym_DASH_DASH] = ACTIONS(1152), + [anon_sym_PLUS_PLUS] = ACTIONS(1152), + [anon_sym_sizeof] = ACTIONS(1150), + [sym_number_literal] = ACTIONS(1152), + [anon_sym_L_SQUOTE] = ACTIONS(1152), + [anon_sym_u_SQUOTE] = ACTIONS(1152), + [anon_sym_U_SQUOTE] = ACTIONS(1152), + [anon_sym_u8_SQUOTE] = ACTIONS(1152), + [anon_sym_SQUOTE] = ACTIONS(1152), + [anon_sym_L_DQUOTE] = ACTIONS(1152), + [anon_sym_u_DQUOTE] = ACTIONS(1152), + [anon_sym_U_DQUOTE] = ACTIONS(1152), + [anon_sym_u8_DQUOTE] = ACTIONS(1152), + [anon_sym_DQUOTE] = ACTIONS(1152), + [sym_true] = ACTIONS(1150), + [sym_false] = ACTIONS(1150), + [sym_null] = ACTIONS(1150), [sym_comment] = ACTIONS(3), }, - [340] = { - [sym_identifier] = ACTIONS(1122), - [aux_sym_preproc_include_token1] = ACTIONS(1122), - [aux_sym_preproc_def_token1] = ACTIONS(1122), - [aux_sym_preproc_if_token1] = ACTIONS(1122), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1122), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1122), - [sym_preproc_directive] = ACTIONS(1122), - [anon_sym_LPAREN2] = ACTIONS(1124), - [anon_sym_BANG] = ACTIONS(1124), - [anon_sym_TILDE] = ACTIONS(1124), - [anon_sym_DASH] = ACTIONS(1122), - [anon_sym_PLUS] = ACTIONS(1122), - [anon_sym_STAR] = ACTIONS(1124), - [anon_sym_AMP] = ACTIONS(1124), - [anon_sym_SEMI] = ACTIONS(1124), - [anon_sym_typedef] = ACTIONS(1122), - [anon_sym_extern] = ACTIONS(1122), - [anon_sym___attribute__] = ACTIONS(1122), - [anon_sym_LBRACE] = ACTIONS(1124), - [anon_sym_RBRACE] = ACTIONS(1124), - [anon_sym_static] = ACTIONS(1122), - [anon_sym_auto] = ACTIONS(1122), - [anon_sym_register] = ACTIONS(1122), - [anon_sym_inline] = ACTIONS(1122), - [anon_sym_const] = ACTIONS(1122), - [anon_sym_volatile] = ACTIONS(1122), - [anon_sym_restrict] = ACTIONS(1122), - [anon_sym__Atomic] = ACTIONS(1122), - [anon_sym_signed] = ACTIONS(1122), - [anon_sym_unsigned] = ACTIONS(1122), - [anon_sym_long] = ACTIONS(1122), - [anon_sym_short] = ACTIONS(1122), - [sym_primitive_type] = ACTIONS(1122), - [anon_sym_enum] = ACTIONS(1122), - [anon_sym_struct] = ACTIONS(1122), - [anon_sym_union] = ACTIONS(1122), - [anon_sym_if] = ACTIONS(1122), - [anon_sym_switch] = ACTIONS(1122), - [anon_sym_case] = ACTIONS(1122), - [anon_sym_default] = ACTIONS(1122), - [anon_sym_while] = ACTIONS(1122), - [anon_sym_do] = ACTIONS(1122), - [anon_sym_for] = ACTIONS(1122), - [anon_sym_return] = ACTIONS(1122), - [anon_sym_break] = ACTIONS(1122), - [anon_sym_continue] = ACTIONS(1122), - [anon_sym_goto] = ACTIONS(1122), - [anon_sym_DASH_DASH] = ACTIONS(1124), - [anon_sym_PLUS_PLUS] = ACTIONS(1124), - [anon_sym_sizeof] = ACTIONS(1122), - [sym_number_literal] = ACTIONS(1124), - [anon_sym_L_SQUOTE] = ACTIONS(1124), - [anon_sym_u_SQUOTE] = ACTIONS(1124), - [anon_sym_U_SQUOTE] = ACTIONS(1124), - [anon_sym_u8_SQUOTE] = ACTIONS(1124), - [anon_sym_SQUOTE] = ACTIONS(1124), - [anon_sym_L_DQUOTE] = ACTIONS(1124), - [anon_sym_u_DQUOTE] = ACTIONS(1124), - [anon_sym_U_DQUOTE] = ACTIONS(1124), - [anon_sym_u8_DQUOTE] = ACTIONS(1124), - [anon_sym_DQUOTE] = ACTIONS(1124), - [sym_true] = ACTIONS(1122), - [sym_false] = ACTIONS(1122), - [sym_null] = ACTIONS(1122), + [323] = { + [sym_identifier] = ACTIONS(1142), + [aux_sym_preproc_include_token1] = ACTIONS(1142), + [aux_sym_preproc_def_token1] = ACTIONS(1142), + [aux_sym_preproc_if_token1] = ACTIONS(1142), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1142), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1142), + [sym_preproc_directive] = ACTIONS(1142), + [anon_sym_LPAREN2] = ACTIONS(1144), + [anon_sym_BANG] = ACTIONS(1144), + [anon_sym_TILDE] = ACTIONS(1144), + [anon_sym_DASH] = ACTIONS(1142), + [anon_sym_PLUS] = ACTIONS(1142), + [anon_sym_STAR] = ACTIONS(1144), + [anon_sym_AMP] = ACTIONS(1144), + [anon_sym_SEMI] = ACTIONS(1144), + [anon_sym_typedef] = ACTIONS(1142), + [anon_sym_extern] = ACTIONS(1142), + [anon_sym___attribute__] = ACTIONS(1142), + [anon_sym_LBRACE] = ACTIONS(1144), + [anon_sym_RBRACE] = ACTIONS(1144), + [anon_sym_static] = ACTIONS(1142), + [anon_sym_auto] = ACTIONS(1142), + [anon_sym_register] = ACTIONS(1142), + [anon_sym_inline] = ACTIONS(1142), + [anon_sym_const] = ACTIONS(1142), + [anon_sym_volatile] = ACTIONS(1142), + [anon_sym_restrict] = ACTIONS(1142), + [anon_sym__Atomic] = ACTIONS(1142), + [anon_sym_signed] = ACTIONS(1142), + [anon_sym_unsigned] = ACTIONS(1142), + [anon_sym_long] = ACTIONS(1142), + [anon_sym_short] = ACTIONS(1142), + [sym_primitive_type] = ACTIONS(1142), + [anon_sym_enum] = ACTIONS(1142), + [anon_sym_struct] = ACTIONS(1142), + [anon_sym_union] = ACTIONS(1142), + [anon_sym_if] = ACTIONS(1142), + [anon_sym_switch] = ACTIONS(1142), + [anon_sym_case] = ACTIONS(1142), + [anon_sym_default] = ACTIONS(1142), + [anon_sym_while] = ACTIONS(1142), + [anon_sym_do] = ACTIONS(1142), + [anon_sym_for] = ACTIONS(1142), + [anon_sym_return] = ACTIONS(1142), + [anon_sym_break] = ACTIONS(1142), + [anon_sym_continue] = ACTIONS(1142), + [anon_sym_goto] = ACTIONS(1142), + [anon_sym_DASH_DASH] = ACTIONS(1144), + [anon_sym_PLUS_PLUS] = ACTIONS(1144), + [anon_sym_sizeof] = ACTIONS(1142), + [sym_number_literal] = ACTIONS(1144), + [anon_sym_L_SQUOTE] = ACTIONS(1144), + [anon_sym_u_SQUOTE] = ACTIONS(1144), + [anon_sym_U_SQUOTE] = ACTIONS(1144), + [anon_sym_u8_SQUOTE] = ACTIONS(1144), + [anon_sym_SQUOTE] = ACTIONS(1144), + [anon_sym_L_DQUOTE] = ACTIONS(1144), + [anon_sym_u_DQUOTE] = ACTIONS(1144), + [anon_sym_U_DQUOTE] = ACTIONS(1144), + [anon_sym_u8_DQUOTE] = ACTIONS(1144), + [anon_sym_DQUOTE] = ACTIONS(1144), + [sym_true] = ACTIONS(1142), + [sym_false] = ACTIONS(1142), + [sym_null] = ACTIONS(1142), [sym_comment] = ACTIONS(3), }, - [341] = { - [sym_identifier] = ACTIONS(1126), - [aux_sym_preproc_include_token1] = ACTIONS(1126), - [aux_sym_preproc_def_token1] = ACTIONS(1126), - [aux_sym_preproc_if_token1] = ACTIONS(1126), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1126), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1126), - [sym_preproc_directive] = ACTIONS(1126), - [anon_sym_LPAREN2] = ACTIONS(1128), - [anon_sym_BANG] = ACTIONS(1128), - [anon_sym_TILDE] = ACTIONS(1128), - [anon_sym_DASH] = ACTIONS(1126), - [anon_sym_PLUS] = ACTIONS(1126), - [anon_sym_STAR] = ACTIONS(1128), - [anon_sym_AMP] = ACTIONS(1128), - [anon_sym_SEMI] = ACTIONS(1128), - [anon_sym_typedef] = ACTIONS(1126), - [anon_sym_extern] = ACTIONS(1126), - [anon_sym___attribute__] = ACTIONS(1126), - [anon_sym_LBRACE] = ACTIONS(1128), - [anon_sym_RBRACE] = ACTIONS(1128), - [anon_sym_static] = ACTIONS(1126), - [anon_sym_auto] = ACTIONS(1126), - [anon_sym_register] = ACTIONS(1126), - [anon_sym_inline] = ACTIONS(1126), - [anon_sym_const] = ACTIONS(1126), - [anon_sym_volatile] = ACTIONS(1126), - [anon_sym_restrict] = ACTIONS(1126), - [anon_sym__Atomic] = ACTIONS(1126), - [anon_sym_signed] = ACTIONS(1126), - [anon_sym_unsigned] = ACTIONS(1126), - [anon_sym_long] = ACTIONS(1126), - [anon_sym_short] = ACTIONS(1126), - [sym_primitive_type] = ACTIONS(1126), - [anon_sym_enum] = ACTIONS(1126), - [anon_sym_struct] = ACTIONS(1126), - [anon_sym_union] = ACTIONS(1126), - [anon_sym_if] = ACTIONS(1126), - [anon_sym_switch] = ACTIONS(1126), - [anon_sym_case] = ACTIONS(1126), - [anon_sym_default] = ACTIONS(1126), - [anon_sym_while] = ACTIONS(1126), - [anon_sym_do] = ACTIONS(1126), - [anon_sym_for] = ACTIONS(1126), - [anon_sym_return] = ACTIONS(1126), - [anon_sym_break] = ACTIONS(1126), - [anon_sym_continue] = ACTIONS(1126), - [anon_sym_goto] = ACTIONS(1126), - [anon_sym_DASH_DASH] = ACTIONS(1128), - [anon_sym_PLUS_PLUS] = ACTIONS(1128), - [anon_sym_sizeof] = ACTIONS(1126), - [sym_number_literal] = ACTIONS(1128), - [anon_sym_L_SQUOTE] = ACTIONS(1128), - [anon_sym_u_SQUOTE] = ACTIONS(1128), - [anon_sym_U_SQUOTE] = ACTIONS(1128), - [anon_sym_u8_SQUOTE] = ACTIONS(1128), - [anon_sym_SQUOTE] = ACTIONS(1128), - [anon_sym_L_DQUOTE] = ACTIONS(1128), - [anon_sym_u_DQUOTE] = ACTIONS(1128), - [anon_sym_U_DQUOTE] = ACTIONS(1128), - [anon_sym_u8_DQUOTE] = ACTIONS(1128), - [anon_sym_DQUOTE] = ACTIONS(1128), - [sym_true] = ACTIONS(1126), - [sym_false] = ACTIONS(1126), - [sym_null] = ACTIONS(1126), + [324] = { + [sym_identifier] = ACTIONS(1162), + [aux_sym_preproc_include_token1] = ACTIONS(1162), + [aux_sym_preproc_def_token1] = ACTIONS(1162), + [aux_sym_preproc_if_token1] = ACTIONS(1162), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1162), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1162), + [sym_preproc_directive] = ACTIONS(1162), + [anon_sym_LPAREN2] = ACTIONS(1164), + [anon_sym_BANG] = ACTIONS(1164), + [anon_sym_TILDE] = ACTIONS(1164), + [anon_sym_DASH] = ACTIONS(1162), + [anon_sym_PLUS] = ACTIONS(1162), + [anon_sym_STAR] = ACTIONS(1164), + [anon_sym_AMP] = ACTIONS(1164), + [anon_sym_SEMI] = ACTIONS(1164), + [anon_sym_typedef] = ACTIONS(1162), + [anon_sym_extern] = ACTIONS(1162), + [anon_sym___attribute__] = ACTIONS(1162), + [anon_sym_LBRACE] = ACTIONS(1164), + [anon_sym_RBRACE] = ACTIONS(1164), + [anon_sym_static] = ACTIONS(1162), + [anon_sym_auto] = ACTIONS(1162), + [anon_sym_register] = ACTIONS(1162), + [anon_sym_inline] = ACTIONS(1162), + [anon_sym_const] = ACTIONS(1162), + [anon_sym_volatile] = ACTIONS(1162), + [anon_sym_restrict] = ACTIONS(1162), + [anon_sym__Atomic] = ACTIONS(1162), + [anon_sym_signed] = ACTIONS(1162), + [anon_sym_unsigned] = ACTIONS(1162), + [anon_sym_long] = ACTIONS(1162), + [anon_sym_short] = ACTIONS(1162), + [sym_primitive_type] = ACTIONS(1162), + [anon_sym_enum] = ACTIONS(1162), + [anon_sym_struct] = ACTIONS(1162), + [anon_sym_union] = ACTIONS(1162), + [anon_sym_if] = ACTIONS(1162), + [anon_sym_switch] = ACTIONS(1162), + [anon_sym_case] = ACTIONS(1162), + [anon_sym_default] = ACTIONS(1162), + [anon_sym_while] = ACTIONS(1162), + [anon_sym_do] = ACTIONS(1162), + [anon_sym_for] = ACTIONS(1162), + [anon_sym_return] = ACTIONS(1162), + [anon_sym_break] = ACTIONS(1162), + [anon_sym_continue] = ACTIONS(1162), + [anon_sym_goto] = ACTIONS(1162), + [anon_sym_DASH_DASH] = ACTIONS(1164), + [anon_sym_PLUS_PLUS] = ACTIONS(1164), + [anon_sym_sizeof] = ACTIONS(1162), + [sym_number_literal] = ACTIONS(1164), + [anon_sym_L_SQUOTE] = ACTIONS(1164), + [anon_sym_u_SQUOTE] = ACTIONS(1164), + [anon_sym_U_SQUOTE] = ACTIONS(1164), + [anon_sym_u8_SQUOTE] = ACTIONS(1164), + [anon_sym_SQUOTE] = ACTIONS(1164), + [anon_sym_L_DQUOTE] = ACTIONS(1164), + [anon_sym_u_DQUOTE] = ACTIONS(1164), + [anon_sym_U_DQUOTE] = ACTIONS(1164), + [anon_sym_u8_DQUOTE] = ACTIONS(1164), + [anon_sym_DQUOTE] = ACTIONS(1164), + [sym_true] = ACTIONS(1162), + [sym_false] = ACTIONS(1162), + [sym_null] = ACTIONS(1162), [sym_comment] = ACTIONS(3), }, - [342] = { - [ts_builtin_sym_end] = ACTIONS(1096), - [sym_identifier] = ACTIONS(1094), - [aux_sym_preproc_include_token1] = ACTIONS(1094), - [aux_sym_preproc_def_token1] = ACTIONS(1094), - [aux_sym_preproc_if_token1] = ACTIONS(1094), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1094), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1094), - [sym_preproc_directive] = ACTIONS(1094), - [anon_sym_LPAREN2] = ACTIONS(1096), - [anon_sym_BANG] = ACTIONS(1096), - [anon_sym_TILDE] = ACTIONS(1096), - [anon_sym_DASH] = ACTIONS(1094), - [anon_sym_PLUS] = ACTIONS(1094), - [anon_sym_STAR] = ACTIONS(1096), - [anon_sym_AMP] = ACTIONS(1096), - [anon_sym_SEMI] = ACTIONS(1096), - [anon_sym_typedef] = ACTIONS(1094), - [anon_sym_extern] = ACTIONS(1094), - [anon_sym___attribute__] = ACTIONS(1094), - [anon_sym_LBRACE] = ACTIONS(1096), - [anon_sym_static] = ACTIONS(1094), - [anon_sym_auto] = ACTIONS(1094), - [anon_sym_register] = ACTIONS(1094), - [anon_sym_inline] = ACTIONS(1094), - [anon_sym_const] = ACTIONS(1094), - [anon_sym_volatile] = ACTIONS(1094), - [anon_sym_restrict] = ACTIONS(1094), - [anon_sym__Atomic] = ACTIONS(1094), - [anon_sym_signed] = ACTIONS(1094), - [anon_sym_unsigned] = ACTIONS(1094), - [anon_sym_long] = ACTIONS(1094), - [anon_sym_short] = ACTIONS(1094), - [sym_primitive_type] = ACTIONS(1094), - [anon_sym_enum] = ACTIONS(1094), - [anon_sym_struct] = ACTIONS(1094), - [anon_sym_union] = ACTIONS(1094), - [anon_sym_if] = ACTIONS(1094), - [anon_sym_switch] = ACTIONS(1094), - [anon_sym_case] = ACTIONS(1094), - [anon_sym_default] = ACTIONS(1094), - [anon_sym_while] = ACTIONS(1094), - [anon_sym_do] = ACTIONS(1094), - [anon_sym_for] = ACTIONS(1094), - [anon_sym_return] = ACTIONS(1094), - [anon_sym_break] = ACTIONS(1094), - [anon_sym_continue] = ACTIONS(1094), - [anon_sym_goto] = ACTIONS(1094), - [anon_sym_DASH_DASH] = ACTIONS(1096), - [anon_sym_PLUS_PLUS] = ACTIONS(1096), - [anon_sym_sizeof] = ACTIONS(1094), - [sym_number_literal] = ACTIONS(1096), - [anon_sym_L_SQUOTE] = ACTIONS(1096), - [anon_sym_u_SQUOTE] = ACTIONS(1096), - [anon_sym_U_SQUOTE] = ACTIONS(1096), - [anon_sym_u8_SQUOTE] = ACTIONS(1096), - [anon_sym_SQUOTE] = ACTIONS(1096), - [anon_sym_L_DQUOTE] = ACTIONS(1096), - [anon_sym_u_DQUOTE] = ACTIONS(1096), - [anon_sym_U_DQUOTE] = ACTIONS(1096), - [anon_sym_u8_DQUOTE] = ACTIONS(1096), - [anon_sym_DQUOTE] = ACTIONS(1096), - [sym_true] = ACTIONS(1094), - [sym_false] = ACTIONS(1094), - [sym_null] = ACTIONS(1094), + [325] = { + [sym_identifier] = ACTIONS(1102), + [aux_sym_preproc_include_token1] = ACTIONS(1102), + [aux_sym_preproc_def_token1] = ACTIONS(1102), + [aux_sym_preproc_if_token1] = ACTIONS(1102), + [aux_sym_preproc_if_token2] = ACTIONS(1102), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1102), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1102), + [sym_preproc_directive] = ACTIONS(1102), + [anon_sym_LPAREN2] = ACTIONS(1104), + [anon_sym_BANG] = ACTIONS(1104), + [anon_sym_TILDE] = ACTIONS(1104), + [anon_sym_DASH] = ACTIONS(1102), + [anon_sym_PLUS] = ACTIONS(1102), + [anon_sym_STAR] = ACTIONS(1104), + [anon_sym_AMP] = ACTIONS(1104), + [anon_sym_SEMI] = ACTIONS(1104), + [anon_sym_typedef] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1102), + [anon_sym___attribute__] = ACTIONS(1102), + [anon_sym_LBRACE] = ACTIONS(1104), + [anon_sym_static] = ACTIONS(1102), + [anon_sym_auto] = ACTIONS(1102), + [anon_sym_register] = ACTIONS(1102), + [anon_sym_inline] = ACTIONS(1102), + [anon_sym_const] = ACTIONS(1102), + [anon_sym_volatile] = ACTIONS(1102), + [anon_sym_restrict] = ACTIONS(1102), + [anon_sym__Atomic] = ACTIONS(1102), + [anon_sym_signed] = ACTIONS(1102), + [anon_sym_unsigned] = ACTIONS(1102), + [anon_sym_long] = ACTIONS(1102), + [anon_sym_short] = ACTIONS(1102), + [sym_primitive_type] = ACTIONS(1102), + [anon_sym_enum] = ACTIONS(1102), + [anon_sym_struct] = ACTIONS(1102), + [anon_sym_union] = ACTIONS(1102), + [anon_sym_if] = ACTIONS(1102), + [anon_sym_switch] = ACTIONS(1102), + [anon_sym_case] = ACTIONS(1102), + [anon_sym_default] = ACTIONS(1102), + [anon_sym_while] = ACTIONS(1102), + [anon_sym_do] = ACTIONS(1102), + [anon_sym_for] = ACTIONS(1102), + [anon_sym_return] = ACTIONS(1102), + [anon_sym_break] = ACTIONS(1102), + [anon_sym_continue] = ACTIONS(1102), + [anon_sym_goto] = ACTIONS(1102), + [anon_sym_DASH_DASH] = ACTIONS(1104), + [anon_sym_PLUS_PLUS] = ACTIONS(1104), + [anon_sym_sizeof] = ACTIONS(1102), + [sym_number_literal] = ACTIONS(1104), + [anon_sym_L_SQUOTE] = ACTIONS(1104), + [anon_sym_u_SQUOTE] = ACTIONS(1104), + [anon_sym_U_SQUOTE] = ACTIONS(1104), + [anon_sym_u8_SQUOTE] = ACTIONS(1104), + [anon_sym_SQUOTE] = ACTIONS(1104), + [anon_sym_L_DQUOTE] = ACTIONS(1104), + [anon_sym_u_DQUOTE] = ACTIONS(1104), + [anon_sym_U_DQUOTE] = ACTIONS(1104), + [anon_sym_u8_DQUOTE] = ACTIONS(1104), + [anon_sym_DQUOTE] = ACTIONS(1104), + [sym_true] = ACTIONS(1102), + [sym_false] = ACTIONS(1102), + [sym_null] = ACTIONS(1102), [sym_comment] = ACTIONS(3), }, - [343] = { - [ts_builtin_sym_end] = ACTIONS(1120), - [sym_identifier] = ACTIONS(1118), - [aux_sym_preproc_include_token1] = ACTIONS(1118), - [aux_sym_preproc_def_token1] = ACTIONS(1118), - [aux_sym_preproc_if_token1] = ACTIONS(1118), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1118), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1118), - [sym_preproc_directive] = ACTIONS(1118), - [anon_sym_LPAREN2] = ACTIONS(1120), - [anon_sym_BANG] = ACTIONS(1120), - [anon_sym_TILDE] = ACTIONS(1120), - [anon_sym_DASH] = ACTIONS(1118), - [anon_sym_PLUS] = ACTIONS(1118), - [anon_sym_STAR] = ACTIONS(1120), - [anon_sym_AMP] = ACTIONS(1120), - [anon_sym_SEMI] = ACTIONS(1120), - [anon_sym_typedef] = ACTIONS(1118), - [anon_sym_extern] = ACTIONS(1118), - [anon_sym___attribute__] = ACTIONS(1118), - [anon_sym_LBRACE] = ACTIONS(1120), - [anon_sym_static] = ACTIONS(1118), - [anon_sym_auto] = ACTIONS(1118), - [anon_sym_register] = ACTIONS(1118), - [anon_sym_inline] = ACTIONS(1118), - [anon_sym_const] = ACTIONS(1118), - [anon_sym_volatile] = ACTIONS(1118), - [anon_sym_restrict] = ACTIONS(1118), - [anon_sym__Atomic] = ACTIONS(1118), - [anon_sym_signed] = ACTIONS(1118), - [anon_sym_unsigned] = ACTIONS(1118), - [anon_sym_long] = ACTIONS(1118), - [anon_sym_short] = ACTIONS(1118), - [sym_primitive_type] = ACTIONS(1118), - [anon_sym_enum] = ACTIONS(1118), - [anon_sym_struct] = ACTIONS(1118), - [anon_sym_union] = ACTIONS(1118), - [anon_sym_if] = ACTIONS(1118), - [anon_sym_switch] = ACTIONS(1118), - [anon_sym_case] = ACTIONS(1118), - [anon_sym_default] = ACTIONS(1118), - [anon_sym_while] = ACTIONS(1118), - [anon_sym_do] = ACTIONS(1118), - [anon_sym_for] = ACTIONS(1118), - [anon_sym_return] = ACTIONS(1118), - [anon_sym_break] = ACTIONS(1118), - [anon_sym_continue] = ACTIONS(1118), - [anon_sym_goto] = ACTIONS(1118), - [anon_sym_DASH_DASH] = ACTIONS(1120), - [anon_sym_PLUS_PLUS] = ACTIONS(1120), - [anon_sym_sizeof] = ACTIONS(1118), - [sym_number_literal] = ACTIONS(1120), - [anon_sym_L_SQUOTE] = ACTIONS(1120), - [anon_sym_u_SQUOTE] = ACTIONS(1120), - [anon_sym_U_SQUOTE] = ACTIONS(1120), - [anon_sym_u8_SQUOTE] = ACTIONS(1120), - [anon_sym_SQUOTE] = ACTIONS(1120), - [anon_sym_L_DQUOTE] = ACTIONS(1120), - [anon_sym_u_DQUOTE] = ACTIONS(1120), - [anon_sym_U_DQUOTE] = ACTIONS(1120), - [anon_sym_u8_DQUOTE] = ACTIONS(1120), - [anon_sym_DQUOTE] = ACTIONS(1120), - [sym_true] = ACTIONS(1118), - [sym_false] = ACTIONS(1118), - [sym_null] = ACTIONS(1118), + [326] = { + [sym_identifier] = ACTIONS(1158), + [aux_sym_preproc_include_token1] = ACTIONS(1158), + [aux_sym_preproc_def_token1] = ACTIONS(1158), + [aux_sym_preproc_if_token1] = ACTIONS(1158), + [aux_sym_preproc_if_token2] = ACTIONS(1158), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1158), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1158), + [sym_preproc_directive] = ACTIONS(1158), + [anon_sym_LPAREN2] = ACTIONS(1160), + [anon_sym_BANG] = ACTIONS(1160), + [anon_sym_TILDE] = ACTIONS(1160), + [anon_sym_DASH] = ACTIONS(1158), + [anon_sym_PLUS] = ACTIONS(1158), + [anon_sym_STAR] = ACTIONS(1160), + [anon_sym_AMP] = ACTIONS(1160), + [anon_sym_SEMI] = ACTIONS(1160), + [anon_sym_typedef] = ACTIONS(1158), + [anon_sym_extern] = ACTIONS(1158), + [anon_sym___attribute__] = ACTIONS(1158), + [anon_sym_LBRACE] = ACTIONS(1160), + [anon_sym_static] = ACTIONS(1158), + [anon_sym_auto] = ACTIONS(1158), + [anon_sym_register] = ACTIONS(1158), + [anon_sym_inline] = ACTIONS(1158), + [anon_sym_const] = ACTIONS(1158), + [anon_sym_volatile] = ACTIONS(1158), + [anon_sym_restrict] = ACTIONS(1158), + [anon_sym__Atomic] = ACTIONS(1158), + [anon_sym_signed] = ACTIONS(1158), + [anon_sym_unsigned] = ACTIONS(1158), + [anon_sym_long] = ACTIONS(1158), + [anon_sym_short] = ACTIONS(1158), + [sym_primitive_type] = ACTIONS(1158), + [anon_sym_enum] = ACTIONS(1158), + [anon_sym_struct] = ACTIONS(1158), + [anon_sym_union] = ACTIONS(1158), + [anon_sym_if] = ACTIONS(1158), + [anon_sym_switch] = ACTIONS(1158), + [anon_sym_case] = ACTIONS(1158), + [anon_sym_default] = ACTIONS(1158), + [anon_sym_while] = ACTIONS(1158), + [anon_sym_do] = ACTIONS(1158), + [anon_sym_for] = ACTIONS(1158), + [anon_sym_return] = ACTIONS(1158), + [anon_sym_break] = ACTIONS(1158), + [anon_sym_continue] = ACTIONS(1158), + [anon_sym_goto] = ACTIONS(1158), + [anon_sym_DASH_DASH] = ACTIONS(1160), + [anon_sym_PLUS_PLUS] = ACTIONS(1160), + [anon_sym_sizeof] = ACTIONS(1158), + [sym_number_literal] = ACTIONS(1160), + [anon_sym_L_SQUOTE] = ACTIONS(1160), + [anon_sym_u_SQUOTE] = ACTIONS(1160), + [anon_sym_U_SQUOTE] = ACTIONS(1160), + [anon_sym_u8_SQUOTE] = ACTIONS(1160), + [anon_sym_SQUOTE] = ACTIONS(1160), + [anon_sym_L_DQUOTE] = ACTIONS(1160), + [anon_sym_u_DQUOTE] = ACTIONS(1160), + [anon_sym_U_DQUOTE] = ACTIONS(1160), + [anon_sym_u8_DQUOTE] = ACTIONS(1160), + [anon_sym_DQUOTE] = ACTIONS(1160), + [sym_true] = ACTIONS(1158), + [sym_false] = ACTIONS(1158), + [sym_null] = ACTIONS(1158), [sym_comment] = ACTIONS(3), }, - [344] = { + [327] = { + [ts_builtin_sym_end] = ACTIONS(1156), + [sym_identifier] = ACTIONS(1154), + [aux_sym_preproc_include_token1] = ACTIONS(1154), + [aux_sym_preproc_def_token1] = ACTIONS(1154), + [aux_sym_preproc_if_token1] = ACTIONS(1154), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1154), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1154), + [sym_preproc_directive] = ACTIONS(1154), + [anon_sym_LPAREN2] = ACTIONS(1156), + [anon_sym_BANG] = ACTIONS(1156), + [anon_sym_TILDE] = ACTIONS(1156), + [anon_sym_DASH] = ACTIONS(1154), + [anon_sym_PLUS] = ACTIONS(1154), + [anon_sym_STAR] = ACTIONS(1156), + [anon_sym_AMP] = ACTIONS(1156), + [anon_sym_SEMI] = ACTIONS(1156), + [anon_sym_typedef] = ACTIONS(1154), + [anon_sym_extern] = ACTIONS(1154), + [anon_sym___attribute__] = ACTIONS(1154), + [anon_sym_LBRACE] = ACTIONS(1156), + [anon_sym_static] = ACTIONS(1154), + [anon_sym_auto] = ACTIONS(1154), + [anon_sym_register] = ACTIONS(1154), + [anon_sym_inline] = ACTIONS(1154), + [anon_sym_const] = ACTIONS(1154), + [anon_sym_volatile] = ACTIONS(1154), + [anon_sym_restrict] = ACTIONS(1154), + [anon_sym__Atomic] = ACTIONS(1154), + [anon_sym_signed] = ACTIONS(1154), + [anon_sym_unsigned] = ACTIONS(1154), + [anon_sym_long] = ACTIONS(1154), + [anon_sym_short] = ACTIONS(1154), + [sym_primitive_type] = ACTIONS(1154), + [anon_sym_enum] = ACTIONS(1154), + [anon_sym_struct] = ACTIONS(1154), + [anon_sym_union] = ACTIONS(1154), + [anon_sym_if] = ACTIONS(1154), + [anon_sym_switch] = ACTIONS(1154), + [anon_sym_case] = ACTIONS(1154), + [anon_sym_default] = ACTIONS(1154), + [anon_sym_while] = ACTIONS(1154), + [anon_sym_do] = ACTIONS(1154), + [anon_sym_for] = ACTIONS(1154), + [anon_sym_return] = ACTIONS(1154), + [anon_sym_break] = ACTIONS(1154), + [anon_sym_continue] = ACTIONS(1154), + [anon_sym_goto] = ACTIONS(1154), + [anon_sym_DASH_DASH] = ACTIONS(1156), + [anon_sym_PLUS_PLUS] = ACTIONS(1156), + [anon_sym_sizeof] = ACTIONS(1154), + [sym_number_literal] = ACTIONS(1156), + [anon_sym_L_SQUOTE] = ACTIONS(1156), + [anon_sym_u_SQUOTE] = ACTIONS(1156), + [anon_sym_U_SQUOTE] = ACTIONS(1156), + [anon_sym_u8_SQUOTE] = ACTIONS(1156), + [anon_sym_SQUOTE] = ACTIONS(1156), + [anon_sym_L_DQUOTE] = ACTIONS(1156), + [anon_sym_u_DQUOTE] = ACTIONS(1156), + [anon_sym_U_DQUOTE] = ACTIONS(1156), + [anon_sym_u8_DQUOTE] = ACTIONS(1156), + [anon_sym_DQUOTE] = ACTIONS(1156), + [sym_true] = ACTIONS(1154), + [sym_false] = ACTIONS(1154), + [sym_null] = ACTIONS(1154), + [sym_comment] = ACTIONS(3), + }, + [328] = { [sym_identifier] = ACTIONS(1138), [aux_sym_preproc_include_token1] = ACTIONS(1138), [aux_sym_preproc_def_token1] = ACTIONS(1138), [aux_sym_preproc_if_token1] = ACTIONS(1138), + [aux_sym_preproc_if_token2] = ACTIONS(1138), [aux_sym_preproc_ifdef_token1] = ACTIONS(1138), [aux_sym_preproc_ifdef_token2] = ACTIONS(1138), [sym_preproc_directive] = ACTIONS(1138), @@ -33079,7 +32022,6 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_extern] = ACTIONS(1138), [anon_sym___attribute__] = ACTIONS(1138), [anon_sym_LBRACE] = ACTIONS(1140), - [anon_sym_RBRACE] = ACTIONS(1140), [anon_sym_static] = ACTIONS(1138), [anon_sym_auto] = ACTIONS(1138), [anon_sym_register] = ACTIONS(1138), @@ -33126,78 +32068,280 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1138), [sym_comment] = ACTIONS(3), }, - [345] = { - [ts_builtin_sym_end] = ACTIONS(1144), - [sym_identifier] = ACTIONS(1142), - [aux_sym_preproc_include_token1] = ACTIONS(1142), - [aux_sym_preproc_def_token1] = ACTIONS(1142), - [aux_sym_preproc_if_token1] = ACTIONS(1142), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1142), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1142), - [sym_preproc_directive] = ACTIONS(1142), - [anon_sym_LPAREN2] = ACTIONS(1144), - [anon_sym_BANG] = ACTIONS(1144), - [anon_sym_TILDE] = ACTIONS(1144), - [anon_sym_DASH] = ACTIONS(1142), - [anon_sym_PLUS] = ACTIONS(1142), - [anon_sym_STAR] = ACTIONS(1144), - [anon_sym_AMP] = ACTIONS(1144), - [anon_sym_SEMI] = ACTIONS(1144), - [anon_sym_typedef] = ACTIONS(1142), - [anon_sym_extern] = ACTIONS(1142), - [anon_sym___attribute__] = ACTIONS(1142), - [anon_sym_LBRACE] = ACTIONS(1144), - [anon_sym_static] = ACTIONS(1142), - [anon_sym_auto] = ACTIONS(1142), - [anon_sym_register] = ACTIONS(1142), - [anon_sym_inline] = ACTIONS(1142), - [anon_sym_const] = ACTIONS(1142), - [anon_sym_volatile] = ACTIONS(1142), - [anon_sym_restrict] = ACTIONS(1142), - [anon_sym__Atomic] = ACTIONS(1142), - [anon_sym_signed] = ACTIONS(1142), - [anon_sym_unsigned] = ACTIONS(1142), - [anon_sym_long] = ACTIONS(1142), - [anon_sym_short] = ACTIONS(1142), - [sym_primitive_type] = ACTIONS(1142), - [anon_sym_enum] = ACTIONS(1142), - [anon_sym_struct] = ACTIONS(1142), - [anon_sym_union] = ACTIONS(1142), - [anon_sym_if] = ACTIONS(1142), - [anon_sym_switch] = ACTIONS(1142), - [anon_sym_case] = ACTIONS(1142), - [anon_sym_default] = ACTIONS(1142), - [anon_sym_while] = ACTIONS(1142), - [anon_sym_do] = ACTIONS(1142), - [anon_sym_for] = ACTIONS(1142), - [anon_sym_return] = ACTIONS(1142), - [anon_sym_break] = ACTIONS(1142), - [anon_sym_continue] = ACTIONS(1142), - [anon_sym_goto] = ACTIONS(1142), - [anon_sym_DASH_DASH] = ACTIONS(1144), - [anon_sym_PLUS_PLUS] = ACTIONS(1144), - [anon_sym_sizeof] = ACTIONS(1142), - [sym_number_literal] = ACTIONS(1144), - [anon_sym_L_SQUOTE] = ACTIONS(1144), - [anon_sym_u_SQUOTE] = ACTIONS(1144), - [anon_sym_U_SQUOTE] = ACTIONS(1144), - [anon_sym_u8_SQUOTE] = ACTIONS(1144), - [anon_sym_SQUOTE] = ACTIONS(1144), - [anon_sym_L_DQUOTE] = ACTIONS(1144), - [anon_sym_u_DQUOTE] = ACTIONS(1144), - [anon_sym_U_DQUOTE] = ACTIONS(1144), - [anon_sym_u8_DQUOTE] = ACTIONS(1144), - [anon_sym_DQUOTE] = ACTIONS(1144), - [sym_true] = ACTIONS(1142), - [sym_false] = ACTIONS(1142), - [sym_null] = ACTIONS(1142), + [329] = { + [sym_identifier] = ACTIONS(1154), + [aux_sym_preproc_include_token1] = ACTIONS(1154), + [aux_sym_preproc_def_token1] = ACTIONS(1154), + [aux_sym_preproc_if_token1] = ACTIONS(1154), + [aux_sym_preproc_if_token2] = ACTIONS(1154), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1154), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1154), + [sym_preproc_directive] = ACTIONS(1154), + [anon_sym_LPAREN2] = ACTIONS(1156), + [anon_sym_BANG] = ACTIONS(1156), + [anon_sym_TILDE] = ACTIONS(1156), + [anon_sym_DASH] = ACTIONS(1154), + [anon_sym_PLUS] = ACTIONS(1154), + [anon_sym_STAR] = ACTIONS(1156), + [anon_sym_AMP] = ACTIONS(1156), + [anon_sym_SEMI] = ACTIONS(1156), + [anon_sym_typedef] = ACTIONS(1154), + [anon_sym_extern] = ACTIONS(1154), + [anon_sym___attribute__] = ACTIONS(1154), + [anon_sym_LBRACE] = ACTIONS(1156), + [anon_sym_static] = ACTIONS(1154), + [anon_sym_auto] = ACTIONS(1154), + [anon_sym_register] = ACTIONS(1154), + [anon_sym_inline] = ACTIONS(1154), + [anon_sym_const] = ACTIONS(1154), + [anon_sym_volatile] = ACTIONS(1154), + [anon_sym_restrict] = ACTIONS(1154), + [anon_sym__Atomic] = ACTIONS(1154), + [anon_sym_signed] = ACTIONS(1154), + [anon_sym_unsigned] = ACTIONS(1154), + [anon_sym_long] = ACTIONS(1154), + [anon_sym_short] = ACTIONS(1154), + [sym_primitive_type] = ACTIONS(1154), + [anon_sym_enum] = ACTIONS(1154), + [anon_sym_struct] = ACTIONS(1154), + [anon_sym_union] = ACTIONS(1154), + [anon_sym_if] = ACTIONS(1154), + [anon_sym_switch] = ACTIONS(1154), + [anon_sym_case] = ACTIONS(1154), + [anon_sym_default] = ACTIONS(1154), + [anon_sym_while] = ACTIONS(1154), + [anon_sym_do] = ACTIONS(1154), + [anon_sym_for] = ACTIONS(1154), + [anon_sym_return] = ACTIONS(1154), + [anon_sym_break] = ACTIONS(1154), + [anon_sym_continue] = ACTIONS(1154), + [anon_sym_goto] = ACTIONS(1154), + [anon_sym_DASH_DASH] = ACTIONS(1156), + [anon_sym_PLUS_PLUS] = ACTIONS(1156), + [anon_sym_sizeof] = ACTIONS(1154), + [sym_number_literal] = ACTIONS(1156), + [anon_sym_L_SQUOTE] = ACTIONS(1156), + [anon_sym_u_SQUOTE] = ACTIONS(1156), + [anon_sym_U_SQUOTE] = ACTIONS(1156), + [anon_sym_u8_SQUOTE] = ACTIONS(1156), + [anon_sym_SQUOTE] = ACTIONS(1156), + [anon_sym_L_DQUOTE] = ACTIONS(1156), + [anon_sym_u_DQUOTE] = ACTIONS(1156), + [anon_sym_U_DQUOTE] = ACTIONS(1156), + [anon_sym_u8_DQUOTE] = ACTIONS(1156), + [anon_sym_DQUOTE] = ACTIONS(1156), + [sym_true] = ACTIONS(1154), + [sym_false] = ACTIONS(1154), + [sym_null] = ACTIONS(1154), + [sym_comment] = ACTIONS(3), + }, + [330] = { + [sym_identifier] = ACTIONS(1150), + [aux_sym_preproc_include_token1] = ACTIONS(1150), + [aux_sym_preproc_def_token1] = ACTIONS(1150), + [aux_sym_preproc_if_token1] = ACTIONS(1150), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1150), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1150), + [sym_preproc_directive] = ACTIONS(1150), + [anon_sym_LPAREN2] = ACTIONS(1152), + [anon_sym_BANG] = ACTIONS(1152), + [anon_sym_TILDE] = ACTIONS(1152), + [anon_sym_DASH] = ACTIONS(1150), + [anon_sym_PLUS] = ACTIONS(1150), + [anon_sym_STAR] = ACTIONS(1152), + [anon_sym_AMP] = ACTIONS(1152), + [anon_sym_SEMI] = ACTIONS(1152), + [anon_sym_typedef] = ACTIONS(1150), + [anon_sym_extern] = ACTIONS(1150), + [anon_sym___attribute__] = ACTIONS(1150), + [anon_sym_LBRACE] = ACTIONS(1152), + [anon_sym_RBRACE] = ACTIONS(1152), + [anon_sym_static] = ACTIONS(1150), + [anon_sym_auto] = ACTIONS(1150), + [anon_sym_register] = ACTIONS(1150), + [anon_sym_inline] = ACTIONS(1150), + [anon_sym_const] = ACTIONS(1150), + [anon_sym_volatile] = ACTIONS(1150), + [anon_sym_restrict] = ACTIONS(1150), + [anon_sym__Atomic] = ACTIONS(1150), + [anon_sym_signed] = ACTIONS(1150), + [anon_sym_unsigned] = ACTIONS(1150), + [anon_sym_long] = ACTIONS(1150), + [anon_sym_short] = ACTIONS(1150), + [sym_primitive_type] = ACTIONS(1150), + [anon_sym_enum] = ACTIONS(1150), + [anon_sym_struct] = ACTIONS(1150), + [anon_sym_union] = ACTIONS(1150), + [anon_sym_if] = ACTIONS(1150), + [anon_sym_switch] = ACTIONS(1150), + [anon_sym_case] = ACTIONS(1150), + [anon_sym_default] = ACTIONS(1150), + [anon_sym_while] = ACTIONS(1150), + [anon_sym_do] = ACTIONS(1150), + [anon_sym_for] = ACTIONS(1150), + [anon_sym_return] = ACTIONS(1150), + [anon_sym_break] = ACTIONS(1150), + [anon_sym_continue] = ACTIONS(1150), + [anon_sym_goto] = ACTIONS(1150), + [anon_sym_DASH_DASH] = ACTIONS(1152), + [anon_sym_PLUS_PLUS] = ACTIONS(1152), + [anon_sym_sizeof] = ACTIONS(1150), + [sym_number_literal] = ACTIONS(1152), + [anon_sym_L_SQUOTE] = ACTIONS(1152), + [anon_sym_u_SQUOTE] = ACTIONS(1152), + [anon_sym_U_SQUOTE] = ACTIONS(1152), + [anon_sym_u8_SQUOTE] = ACTIONS(1152), + [anon_sym_SQUOTE] = ACTIONS(1152), + [anon_sym_L_DQUOTE] = ACTIONS(1152), + [anon_sym_u_DQUOTE] = ACTIONS(1152), + [anon_sym_U_DQUOTE] = ACTIONS(1152), + [anon_sym_u8_DQUOTE] = ACTIONS(1152), + [anon_sym_DQUOTE] = ACTIONS(1152), + [sym_true] = ACTIONS(1150), + [sym_false] = ACTIONS(1150), + [sym_null] = ACTIONS(1150), + [sym_comment] = ACTIONS(3), + }, + [331] = { + [ts_builtin_sym_end] = ACTIONS(1136), + [sym_identifier] = ACTIONS(1134), + [aux_sym_preproc_include_token1] = ACTIONS(1134), + [aux_sym_preproc_def_token1] = ACTIONS(1134), + [aux_sym_preproc_if_token1] = ACTIONS(1134), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1134), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1134), + [sym_preproc_directive] = ACTIONS(1134), + [anon_sym_LPAREN2] = ACTIONS(1136), + [anon_sym_BANG] = ACTIONS(1136), + [anon_sym_TILDE] = ACTIONS(1136), + [anon_sym_DASH] = ACTIONS(1134), + [anon_sym_PLUS] = ACTIONS(1134), + [anon_sym_STAR] = ACTIONS(1136), + [anon_sym_AMP] = ACTIONS(1136), + [anon_sym_SEMI] = ACTIONS(1136), + [anon_sym_typedef] = ACTIONS(1134), + [anon_sym_extern] = ACTIONS(1134), + [anon_sym___attribute__] = ACTIONS(1134), + [anon_sym_LBRACE] = ACTIONS(1136), + [anon_sym_static] = ACTIONS(1134), + [anon_sym_auto] = ACTIONS(1134), + [anon_sym_register] = ACTIONS(1134), + [anon_sym_inline] = ACTIONS(1134), + [anon_sym_const] = ACTIONS(1134), + [anon_sym_volatile] = ACTIONS(1134), + [anon_sym_restrict] = ACTIONS(1134), + [anon_sym__Atomic] = ACTIONS(1134), + [anon_sym_signed] = ACTIONS(1134), + [anon_sym_unsigned] = ACTIONS(1134), + [anon_sym_long] = ACTIONS(1134), + [anon_sym_short] = ACTIONS(1134), + [sym_primitive_type] = ACTIONS(1134), + [anon_sym_enum] = ACTIONS(1134), + [anon_sym_struct] = ACTIONS(1134), + [anon_sym_union] = ACTIONS(1134), + [anon_sym_if] = ACTIONS(1134), + [anon_sym_switch] = ACTIONS(1134), + [anon_sym_case] = ACTIONS(1134), + [anon_sym_default] = ACTIONS(1134), + [anon_sym_while] = ACTIONS(1134), + [anon_sym_do] = ACTIONS(1134), + [anon_sym_for] = ACTIONS(1134), + [anon_sym_return] = ACTIONS(1134), + [anon_sym_break] = ACTIONS(1134), + [anon_sym_continue] = ACTIONS(1134), + [anon_sym_goto] = ACTIONS(1134), + [anon_sym_DASH_DASH] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1136), + [anon_sym_sizeof] = ACTIONS(1134), + [sym_number_literal] = ACTIONS(1136), + [anon_sym_L_SQUOTE] = ACTIONS(1136), + [anon_sym_u_SQUOTE] = ACTIONS(1136), + [anon_sym_U_SQUOTE] = ACTIONS(1136), + [anon_sym_u8_SQUOTE] = ACTIONS(1136), + [anon_sym_SQUOTE] = ACTIONS(1136), + [anon_sym_L_DQUOTE] = ACTIONS(1136), + [anon_sym_u_DQUOTE] = ACTIONS(1136), + [anon_sym_U_DQUOTE] = ACTIONS(1136), + [anon_sym_u8_DQUOTE] = ACTIONS(1136), + [anon_sym_DQUOTE] = ACTIONS(1136), + [sym_true] = ACTIONS(1134), + [sym_false] = ACTIONS(1134), + [sym_null] = ACTIONS(1134), [sym_comment] = ACTIONS(3), }, - [346] = { + [332] = { + [ts_builtin_sym_end] = ACTIONS(1104), + [sym_identifier] = ACTIONS(1102), + [aux_sym_preproc_include_token1] = ACTIONS(1102), + [aux_sym_preproc_def_token1] = ACTIONS(1102), + [aux_sym_preproc_if_token1] = ACTIONS(1102), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1102), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1102), + [sym_preproc_directive] = ACTIONS(1102), + [anon_sym_LPAREN2] = ACTIONS(1104), + [anon_sym_BANG] = ACTIONS(1104), + [anon_sym_TILDE] = ACTIONS(1104), + [anon_sym_DASH] = ACTIONS(1102), + [anon_sym_PLUS] = ACTIONS(1102), + [anon_sym_STAR] = ACTIONS(1104), + [anon_sym_AMP] = ACTIONS(1104), + [anon_sym_SEMI] = ACTIONS(1104), + [anon_sym_typedef] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1102), + [anon_sym___attribute__] = ACTIONS(1102), + [anon_sym_LBRACE] = ACTIONS(1104), + [anon_sym_static] = ACTIONS(1102), + [anon_sym_auto] = ACTIONS(1102), + [anon_sym_register] = ACTIONS(1102), + [anon_sym_inline] = ACTIONS(1102), + [anon_sym_const] = ACTIONS(1102), + [anon_sym_volatile] = ACTIONS(1102), + [anon_sym_restrict] = ACTIONS(1102), + [anon_sym__Atomic] = ACTIONS(1102), + [anon_sym_signed] = ACTIONS(1102), + [anon_sym_unsigned] = ACTIONS(1102), + [anon_sym_long] = ACTIONS(1102), + [anon_sym_short] = ACTIONS(1102), + [sym_primitive_type] = ACTIONS(1102), + [anon_sym_enum] = ACTIONS(1102), + [anon_sym_struct] = ACTIONS(1102), + [anon_sym_union] = ACTIONS(1102), + [anon_sym_if] = ACTIONS(1102), + [anon_sym_switch] = ACTIONS(1102), + [anon_sym_case] = ACTIONS(1102), + [anon_sym_default] = ACTIONS(1102), + [anon_sym_while] = ACTIONS(1102), + [anon_sym_do] = ACTIONS(1102), + [anon_sym_for] = ACTIONS(1102), + [anon_sym_return] = ACTIONS(1102), + [anon_sym_break] = ACTIONS(1102), + [anon_sym_continue] = ACTIONS(1102), + [anon_sym_goto] = ACTIONS(1102), + [anon_sym_DASH_DASH] = ACTIONS(1104), + [anon_sym_PLUS_PLUS] = ACTIONS(1104), + [anon_sym_sizeof] = ACTIONS(1102), + [sym_number_literal] = ACTIONS(1104), + [anon_sym_L_SQUOTE] = ACTIONS(1104), + [anon_sym_u_SQUOTE] = ACTIONS(1104), + [anon_sym_U_SQUOTE] = ACTIONS(1104), + [anon_sym_u8_SQUOTE] = ACTIONS(1104), + [anon_sym_SQUOTE] = ACTIONS(1104), + [anon_sym_L_DQUOTE] = ACTIONS(1104), + [anon_sym_u_DQUOTE] = ACTIONS(1104), + [anon_sym_U_DQUOTE] = ACTIONS(1104), + [anon_sym_u8_DQUOTE] = ACTIONS(1104), + [anon_sym_DQUOTE] = ACTIONS(1104), + [sym_true] = ACTIONS(1102), + [sym_false] = ACTIONS(1102), + [sym_null] = ACTIONS(1102), + [sym_comment] = ACTIONS(3), + }, + [333] = { [sym_identifier] = ACTIONS(1142), [aux_sym_preproc_include_token1] = ACTIONS(1142), [aux_sym_preproc_def_token1] = ACTIONS(1142), [aux_sym_preproc_if_token1] = ACTIONS(1142), + [aux_sym_preproc_if_token2] = ACTIONS(1142), [aux_sym_preproc_ifdef_token1] = ACTIONS(1142), [aux_sym_preproc_ifdef_token2] = ACTIONS(1142), [sym_preproc_directive] = ACTIONS(1142), @@ -33213,7 +32357,6 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_extern] = ACTIONS(1142), [anon_sym___attribute__] = ACTIONS(1142), [anon_sym_LBRACE] = ACTIONS(1144), - [anon_sym_RBRACE] = ACTIONS(1144), [anon_sym_static] = ACTIONS(1142), [anon_sym_auto] = ACTIONS(1142), [anon_sym_register] = ACTIONS(1142), @@ -33260,11 +32403,12 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1142), [sym_comment] = ACTIONS(3), }, - [347] = { + [334] = { [sym_identifier] = ACTIONS(1146), [aux_sym_preproc_include_token1] = ACTIONS(1146), [aux_sym_preproc_def_token1] = ACTIONS(1146), [aux_sym_preproc_if_token1] = ACTIONS(1146), + [aux_sym_preproc_if_token2] = ACTIONS(1146), [aux_sym_preproc_ifdef_token1] = ACTIONS(1146), [aux_sym_preproc_ifdef_token2] = ACTIONS(1146), [sym_preproc_directive] = ACTIONS(1146), @@ -33280,7 +32424,6 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_extern] = ACTIONS(1146), [anon_sym___attribute__] = ACTIONS(1146), [anon_sym_LBRACE] = ACTIONS(1148), - [anon_sym_RBRACE] = ACTIONS(1148), [anon_sym_static] = ACTIONS(1146), [anon_sym_auto] = ACTIONS(1146), [anon_sym_register] = ACTIONS(1146), @@ -33327,208 +32470,74 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1146), [sym_comment] = ACTIONS(3), }, - [348] = { - [ts_builtin_sym_end] = ACTIONS(1180), - [sym_identifier] = ACTIONS(1178), - [aux_sym_preproc_include_token1] = ACTIONS(1178), - [aux_sym_preproc_def_token1] = ACTIONS(1178), - [aux_sym_preproc_if_token1] = ACTIONS(1178), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1178), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1178), - [sym_preproc_directive] = ACTIONS(1178), - [anon_sym_LPAREN2] = ACTIONS(1180), - [anon_sym_BANG] = ACTIONS(1180), - [anon_sym_TILDE] = ACTIONS(1180), - [anon_sym_DASH] = ACTIONS(1178), - [anon_sym_PLUS] = ACTIONS(1178), - [anon_sym_STAR] = ACTIONS(1180), - [anon_sym_AMP] = ACTIONS(1180), - [anon_sym_SEMI] = ACTIONS(1180), - [anon_sym_typedef] = ACTIONS(1178), - [anon_sym_extern] = ACTIONS(1178), - [anon_sym___attribute__] = ACTIONS(1178), - [anon_sym_LBRACE] = ACTIONS(1180), - [anon_sym_static] = ACTIONS(1178), - [anon_sym_auto] = ACTIONS(1178), - [anon_sym_register] = ACTIONS(1178), - [anon_sym_inline] = ACTIONS(1178), - [anon_sym_const] = ACTIONS(1178), - [anon_sym_volatile] = ACTIONS(1178), - [anon_sym_restrict] = ACTIONS(1178), - [anon_sym__Atomic] = ACTIONS(1178), - [anon_sym_signed] = ACTIONS(1178), - [anon_sym_unsigned] = ACTIONS(1178), - [anon_sym_long] = ACTIONS(1178), - [anon_sym_short] = ACTIONS(1178), - [sym_primitive_type] = ACTIONS(1178), - [anon_sym_enum] = ACTIONS(1178), - [anon_sym_struct] = ACTIONS(1178), - [anon_sym_union] = ACTIONS(1178), - [anon_sym_if] = ACTIONS(1178), - [anon_sym_switch] = ACTIONS(1178), - [anon_sym_case] = ACTIONS(1178), - [anon_sym_default] = ACTIONS(1178), - [anon_sym_while] = ACTIONS(1178), - [anon_sym_do] = ACTIONS(1178), - [anon_sym_for] = ACTIONS(1178), - [anon_sym_return] = ACTIONS(1178), - [anon_sym_break] = ACTIONS(1178), - [anon_sym_continue] = ACTIONS(1178), - [anon_sym_goto] = ACTIONS(1178), - [anon_sym_DASH_DASH] = ACTIONS(1180), - [anon_sym_PLUS_PLUS] = ACTIONS(1180), - [anon_sym_sizeof] = ACTIONS(1178), - [sym_number_literal] = ACTIONS(1180), - [anon_sym_L_SQUOTE] = ACTIONS(1180), - [anon_sym_u_SQUOTE] = ACTIONS(1180), - [anon_sym_U_SQUOTE] = ACTIONS(1180), - [anon_sym_u8_SQUOTE] = ACTIONS(1180), - [anon_sym_SQUOTE] = ACTIONS(1180), - [anon_sym_L_DQUOTE] = ACTIONS(1180), - [anon_sym_u_DQUOTE] = ACTIONS(1180), - [anon_sym_U_DQUOTE] = ACTIONS(1180), - [anon_sym_u8_DQUOTE] = ACTIONS(1180), - [anon_sym_DQUOTE] = ACTIONS(1180), - [sym_true] = ACTIONS(1178), - [sym_false] = ACTIONS(1178), - [sym_null] = ACTIONS(1178), - [sym_comment] = ACTIONS(3), - }, - [349] = { - [sym_identifier] = ACTIONS(1102), - [aux_sym_preproc_include_token1] = ACTIONS(1102), - [aux_sym_preproc_def_token1] = ACTIONS(1102), - [aux_sym_preproc_if_token1] = ACTIONS(1102), - [aux_sym_preproc_if_token2] = ACTIONS(1102), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1102), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1102), - [sym_preproc_directive] = ACTIONS(1102), - [anon_sym_LPAREN2] = ACTIONS(1104), - [anon_sym_BANG] = ACTIONS(1104), - [anon_sym_TILDE] = ACTIONS(1104), - [anon_sym_DASH] = ACTIONS(1102), - [anon_sym_PLUS] = ACTIONS(1102), - [anon_sym_STAR] = ACTIONS(1104), - [anon_sym_AMP] = ACTIONS(1104), - [anon_sym_SEMI] = ACTIONS(1104), - [anon_sym_typedef] = ACTIONS(1102), - [anon_sym_extern] = ACTIONS(1102), - [anon_sym___attribute__] = ACTIONS(1102), - [anon_sym_LBRACE] = ACTIONS(1104), - [anon_sym_static] = ACTIONS(1102), - [anon_sym_auto] = ACTIONS(1102), - [anon_sym_register] = ACTIONS(1102), - [anon_sym_inline] = ACTIONS(1102), - [anon_sym_const] = ACTIONS(1102), - [anon_sym_volatile] = ACTIONS(1102), - [anon_sym_restrict] = ACTIONS(1102), - [anon_sym__Atomic] = ACTIONS(1102), - [anon_sym_signed] = ACTIONS(1102), - [anon_sym_unsigned] = ACTIONS(1102), - [anon_sym_long] = ACTIONS(1102), - [anon_sym_short] = ACTIONS(1102), - [sym_primitive_type] = ACTIONS(1102), - [anon_sym_enum] = ACTIONS(1102), - [anon_sym_struct] = ACTIONS(1102), - [anon_sym_union] = ACTIONS(1102), - [anon_sym_if] = ACTIONS(1102), - [anon_sym_switch] = ACTIONS(1102), - [anon_sym_case] = ACTIONS(1102), - [anon_sym_default] = ACTIONS(1102), - [anon_sym_while] = ACTIONS(1102), - [anon_sym_do] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1102), - [anon_sym_return] = ACTIONS(1102), - [anon_sym_break] = ACTIONS(1102), - [anon_sym_continue] = ACTIONS(1102), - [anon_sym_goto] = ACTIONS(1102), - [anon_sym_DASH_DASH] = ACTIONS(1104), - [anon_sym_PLUS_PLUS] = ACTIONS(1104), - [anon_sym_sizeof] = ACTIONS(1102), - [sym_number_literal] = ACTIONS(1104), - [anon_sym_L_SQUOTE] = ACTIONS(1104), - [anon_sym_u_SQUOTE] = ACTIONS(1104), - [anon_sym_U_SQUOTE] = ACTIONS(1104), - [anon_sym_u8_SQUOTE] = ACTIONS(1104), - [anon_sym_SQUOTE] = ACTIONS(1104), - [anon_sym_L_DQUOTE] = ACTIONS(1104), - [anon_sym_u_DQUOTE] = ACTIONS(1104), - [anon_sym_U_DQUOTE] = ACTIONS(1104), - [anon_sym_u8_DQUOTE] = ACTIONS(1104), - [anon_sym_DQUOTE] = ACTIONS(1104), - [sym_true] = ACTIONS(1102), - [sym_false] = ACTIONS(1102), - [sym_null] = ACTIONS(1102), - [sym_comment] = ACTIONS(3), - }, - [350] = { - [ts_builtin_sym_end] = ACTIONS(1176), - [sym_identifier] = ACTIONS(1174), - [aux_sym_preproc_include_token1] = ACTIONS(1174), - [aux_sym_preproc_def_token1] = ACTIONS(1174), - [aux_sym_preproc_if_token1] = ACTIONS(1174), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1174), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1174), - [sym_preproc_directive] = ACTIONS(1174), - [anon_sym_LPAREN2] = ACTIONS(1176), - [anon_sym_BANG] = ACTIONS(1176), - [anon_sym_TILDE] = ACTIONS(1176), - [anon_sym_DASH] = ACTIONS(1174), - [anon_sym_PLUS] = ACTIONS(1174), - [anon_sym_STAR] = ACTIONS(1176), - [anon_sym_AMP] = ACTIONS(1176), - [anon_sym_SEMI] = ACTIONS(1176), - [anon_sym_typedef] = ACTIONS(1174), - [anon_sym_extern] = ACTIONS(1174), - [anon_sym___attribute__] = ACTIONS(1174), - [anon_sym_LBRACE] = ACTIONS(1176), - [anon_sym_static] = ACTIONS(1174), - [anon_sym_auto] = ACTIONS(1174), - [anon_sym_register] = ACTIONS(1174), - [anon_sym_inline] = ACTIONS(1174), - [anon_sym_const] = ACTIONS(1174), - [anon_sym_volatile] = ACTIONS(1174), - [anon_sym_restrict] = ACTIONS(1174), - [anon_sym__Atomic] = ACTIONS(1174), - [anon_sym_signed] = ACTIONS(1174), - [anon_sym_unsigned] = ACTIONS(1174), - [anon_sym_long] = ACTIONS(1174), - [anon_sym_short] = ACTIONS(1174), - [sym_primitive_type] = ACTIONS(1174), - [anon_sym_enum] = ACTIONS(1174), - [anon_sym_struct] = ACTIONS(1174), - [anon_sym_union] = ACTIONS(1174), - [anon_sym_if] = ACTIONS(1174), - [anon_sym_switch] = ACTIONS(1174), - [anon_sym_case] = ACTIONS(1174), - [anon_sym_default] = ACTIONS(1174), - [anon_sym_while] = ACTIONS(1174), - [anon_sym_do] = ACTIONS(1174), - [anon_sym_for] = ACTIONS(1174), - [anon_sym_return] = ACTIONS(1174), - [anon_sym_break] = ACTIONS(1174), - [anon_sym_continue] = ACTIONS(1174), - [anon_sym_goto] = ACTIONS(1174), - [anon_sym_DASH_DASH] = ACTIONS(1176), - [anon_sym_PLUS_PLUS] = ACTIONS(1176), - [anon_sym_sizeof] = ACTIONS(1174), - [sym_number_literal] = ACTIONS(1176), - [anon_sym_L_SQUOTE] = ACTIONS(1176), - [anon_sym_u_SQUOTE] = ACTIONS(1176), - [anon_sym_U_SQUOTE] = ACTIONS(1176), - [anon_sym_u8_SQUOTE] = ACTIONS(1176), - [anon_sym_SQUOTE] = ACTIONS(1176), - [anon_sym_L_DQUOTE] = ACTIONS(1176), - [anon_sym_u_DQUOTE] = ACTIONS(1176), - [anon_sym_U_DQUOTE] = ACTIONS(1176), - [anon_sym_u8_DQUOTE] = ACTIONS(1176), - [anon_sym_DQUOTE] = ACTIONS(1176), - [sym_true] = ACTIONS(1174), - [sym_false] = ACTIONS(1174), - [sym_null] = ACTIONS(1174), + [335] = { + [ts_builtin_sym_end] = ACTIONS(1100), + [sym_identifier] = ACTIONS(1098), + [aux_sym_preproc_include_token1] = ACTIONS(1098), + [aux_sym_preproc_def_token1] = ACTIONS(1098), + [aux_sym_preproc_if_token1] = ACTIONS(1098), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1098), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1098), + [sym_preproc_directive] = ACTIONS(1098), + [anon_sym_LPAREN2] = ACTIONS(1100), + [anon_sym_BANG] = ACTIONS(1100), + [anon_sym_TILDE] = ACTIONS(1100), + [anon_sym_DASH] = ACTIONS(1098), + [anon_sym_PLUS] = ACTIONS(1098), + [anon_sym_STAR] = ACTIONS(1100), + [anon_sym_AMP] = ACTIONS(1100), + [anon_sym_SEMI] = ACTIONS(1100), + [anon_sym_typedef] = ACTIONS(1098), + [anon_sym_extern] = ACTIONS(1098), + [anon_sym___attribute__] = ACTIONS(1098), + [anon_sym_LBRACE] = ACTIONS(1100), + [anon_sym_static] = ACTIONS(1098), + [anon_sym_auto] = ACTIONS(1098), + [anon_sym_register] = ACTIONS(1098), + [anon_sym_inline] = ACTIONS(1098), + [anon_sym_const] = ACTIONS(1098), + [anon_sym_volatile] = ACTIONS(1098), + [anon_sym_restrict] = ACTIONS(1098), + [anon_sym__Atomic] = ACTIONS(1098), + [anon_sym_signed] = ACTIONS(1098), + [anon_sym_unsigned] = ACTIONS(1098), + [anon_sym_long] = ACTIONS(1098), + [anon_sym_short] = ACTIONS(1098), + [sym_primitive_type] = ACTIONS(1098), + [anon_sym_enum] = ACTIONS(1098), + [anon_sym_struct] = ACTIONS(1098), + [anon_sym_union] = ACTIONS(1098), + [anon_sym_if] = ACTIONS(1098), + [anon_sym_switch] = ACTIONS(1098), + [anon_sym_case] = ACTIONS(1098), + [anon_sym_default] = ACTIONS(1098), + [anon_sym_while] = ACTIONS(1098), + [anon_sym_do] = ACTIONS(1098), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_return] = ACTIONS(1098), + [anon_sym_break] = ACTIONS(1098), + [anon_sym_continue] = ACTIONS(1098), + [anon_sym_goto] = ACTIONS(1098), + [anon_sym_DASH_DASH] = ACTIONS(1100), + [anon_sym_PLUS_PLUS] = ACTIONS(1100), + [anon_sym_sizeof] = ACTIONS(1098), + [sym_number_literal] = ACTIONS(1100), + [anon_sym_L_SQUOTE] = ACTIONS(1100), + [anon_sym_u_SQUOTE] = ACTIONS(1100), + [anon_sym_U_SQUOTE] = ACTIONS(1100), + [anon_sym_u8_SQUOTE] = ACTIONS(1100), + [anon_sym_SQUOTE] = ACTIONS(1100), + [anon_sym_L_DQUOTE] = ACTIONS(1100), + [anon_sym_u_DQUOTE] = ACTIONS(1100), + [anon_sym_U_DQUOTE] = ACTIONS(1100), + [anon_sym_u8_DQUOTE] = ACTIONS(1100), + [anon_sym_DQUOTE] = ACTIONS(1100), + [sym_true] = ACTIONS(1098), + [sym_false] = ACTIONS(1098), + [sym_null] = ACTIONS(1098), [sym_comment] = ACTIONS(3), }, - [351] = { + [336] = { [ts_builtin_sym_end] = ACTIONS(1116), [sym_identifier] = ACTIONS(1114), [aux_sym_preproc_include_token1] = ACTIONS(1114), @@ -33595,141 +32604,275 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1114), [sym_comment] = ACTIONS(3), }, - [352] = { - [ts_builtin_sym_end] = ACTIONS(1148), - [sym_identifier] = ACTIONS(1146), - [aux_sym_preproc_include_token1] = ACTIONS(1146), - [aux_sym_preproc_def_token1] = ACTIONS(1146), - [aux_sym_preproc_if_token1] = ACTIONS(1146), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1146), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1146), - [sym_preproc_directive] = ACTIONS(1146), - [anon_sym_LPAREN2] = ACTIONS(1148), - [anon_sym_BANG] = ACTIONS(1148), - [anon_sym_TILDE] = ACTIONS(1148), - [anon_sym_DASH] = ACTIONS(1146), - [anon_sym_PLUS] = ACTIONS(1146), - [anon_sym_STAR] = ACTIONS(1148), - [anon_sym_AMP] = ACTIONS(1148), - [anon_sym_SEMI] = ACTIONS(1148), - [anon_sym_typedef] = ACTIONS(1146), - [anon_sym_extern] = ACTIONS(1146), - [anon_sym___attribute__] = ACTIONS(1146), - [anon_sym_LBRACE] = ACTIONS(1148), - [anon_sym_static] = ACTIONS(1146), - [anon_sym_auto] = ACTIONS(1146), - [anon_sym_register] = ACTIONS(1146), - [anon_sym_inline] = ACTIONS(1146), - [anon_sym_const] = ACTIONS(1146), - [anon_sym_volatile] = ACTIONS(1146), - [anon_sym_restrict] = ACTIONS(1146), - [anon_sym__Atomic] = ACTIONS(1146), - [anon_sym_signed] = ACTIONS(1146), - [anon_sym_unsigned] = ACTIONS(1146), - [anon_sym_long] = ACTIONS(1146), - [anon_sym_short] = ACTIONS(1146), - [sym_primitive_type] = ACTIONS(1146), - [anon_sym_enum] = ACTIONS(1146), - [anon_sym_struct] = ACTIONS(1146), - [anon_sym_union] = ACTIONS(1146), - [anon_sym_if] = ACTIONS(1146), - [anon_sym_switch] = ACTIONS(1146), - [anon_sym_case] = ACTIONS(1146), - [anon_sym_default] = ACTIONS(1146), - [anon_sym_while] = ACTIONS(1146), - [anon_sym_do] = ACTIONS(1146), - [anon_sym_for] = ACTIONS(1146), - [anon_sym_return] = ACTIONS(1146), - [anon_sym_break] = ACTIONS(1146), - [anon_sym_continue] = ACTIONS(1146), - [anon_sym_goto] = ACTIONS(1146), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_sizeof] = ACTIONS(1146), - [sym_number_literal] = ACTIONS(1148), - [anon_sym_L_SQUOTE] = ACTIONS(1148), - [anon_sym_u_SQUOTE] = ACTIONS(1148), - [anon_sym_U_SQUOTE] = ACTIONS(1148), - [anon_sym_u8_SQUOTE] = ACTIONS(1148), - [anon_sym_SQUOTE] = ACTIONS(1148), - [anon_sym_L_DQUOTE] = ACTIONS(1148), - [anon_sym_u_DQUOTE] = ACTIONS(1148), - [anon_sym_U_DQUOTE] = ACTIONS(1148), - [anon_sym_u8_DQUOTE] = ACTIONS(1148), - [anon_sym_DQUOTE] = ACTIONS(1148), - [sym_true] = ACTIONS(1146), - [sym_false] = ACTIONS(1146), - [sym_null] = ACTIONS(1146), + [337] = { + [ts_builtin_sym_end] = ACTIONS(1144), + [sym_identifier] = ACTIONS(1142), + [aux_sym_preproc_include_token1] = ACTIONS(1142), + [aux_sym_preproc_def_token1] = ACTIONS(1142), + [aux_sym_preproc_if_token1] = ACTIONS(1142), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1142), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1142), + [sym_preproc_directive] = ACTIONS(1142), + [anon_sym_LPAREN2] = ACTIONS(1144), + [anon_sym_BANG] = ACTIONS(1144), + [anon_sym_TILDE] = ACTIONS(1144), + [anon_sym_DASH] = ACTIONS(1142), + [anon_sym_PLUS] = ACTIONS(1142), + [anon_sym_STAR] = ACTIONS(1144), + [anon_sym_AMP] = ACTIONS(1144), + [anon_sym_SEMI] = ACTIONS(1144), + [anon_sym_typedef] = ACTIONS(1142), + [anon_sym_extern] = ACTIONS(1142), + [anon_sym___attribute__] = ACTIONS(1142), + [anon_sym_LBRACE] = ACTIONS(1144), + [anon_sym_static] = ACTIONS(1142), + [anon_sym_auto] = ACTIONS(1142), + [anon_sym_register] = ACTIONS(1142), + [anon_sym_inline] = ACTIONS(1142), + [anon_sym_const] = ACTIONS(1142), + [anon_sym_volatile] = ACTIONS(1142), + [anon_sym_restrict] = ACTIONS(1142), + [anon_sym__Atomic] = ACTIONS(1142), + [anon_sym_signed] = ACTIONS(1142), + [anon_sym_unsigned] = ACTIONS(1142), + [anon_sym_long] = ACTIONS(1142), + [anon_sym_short] = ACTIONS(1142), + [sym_primitive_type] = ACTIONS(1142), + [anon_sym_enum] = ACTIONS(1142), + [anon_sym_struct] = ACTIONS(1142), + [anon_sym_union] = ACTIONS(1142), + [anon_sym_if] = ACTIONS(1142), + [anon_sym_switch] = ACTIONS(1142), + [anon_sym_case] = ACTIONS(1142), + [anon_sym_default] = ACTIONS(1142), + [anon_sym_while] = ACTIONS(1142), + [anon_sym_do] = ACTIONS(1142), + [anon_sym_for] = ACTIONS(1142), + [anon_sym_return] = ACTIONS(1142), + [anon_sym_break] = ACTIONS(1142), + [anon_sym_continue] = ACTIONS(1142), + [anon_sym_goto] = ACTIONS(1142), + [anon_sym_DASH_DASH] = ACTIONS(1144), + [anon_sym_PLUS_PLUS] = ACTIONS(1144), + [anon_sym_sizeof] = ACTIONS(1142), + [sym_number_literal] = ACTIONS(1144), + [anon_sym_L_SQUOTE] = ACTIONS(1144), + [anon_sym_u_SQUOTE] = ACTIONS(1144), + [anon_sym_U_SQUOTE] = ACTIONS(1144), + [anon_sym_u8_SQUOTE] = ACTIONS(1144), + [anon_sym_SQUOTE] = ACTIONS(1144), + [anon_sym_L_DQUOTE] = ACTIONS(1144), + [anon_sym_u_DQUOTE] = ACTIONS(1144), + [anon_sym_U_DQUOTE] = ACTIONS(1144), + [anon_sym_u8_DQUOTE] = ACTIONS(1144), + [anon_sym_DQUOTE] = ACTIONS(1144), + [sym_true] = ACTIONS(1142), + [sym_false] = ACTIONS(1142), + [sym_null] = ACTIONS(1142), [sym_comment] = ACTIONS(3), }, - [353] = { - [sym_identifier] = ACTIONS(1150), - [aux_sym_preproc_include_token1] = ACTIONS(1150), - [aux_sym_preproc_def_token1] = ACTIONS(1150), - [aux_sym_preproc_if_token1] = ACTIONS(1150), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1150), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1150), - [sym_preproc_directive] = ACTIONS(1150), - [anon_sym_LPAREN2] = ACTIONS(1152), - [anon_sym_BANG] = ACTIONS(1152), - [anon_sym_TILDE] = ACTIONS(1152), - [anon_sym_DASH] = ACTIONS(1150), - [anon_sym_PLUS] = ACTIONS(1150), - [anon_sym_STAR] = ACTIONS(1152), - [anon_sym_AMP] = ACTIONS(1152), - [anon_sym_SEMI] = ACTIONS(1152), - [anon_sym_typedef] = ACTIONS(1150), - [anon_sym_extern] = ACTIONS(1150), - [anon_sym___attribute__] = ACTIONS(1150), - [anon_sym_LBRACE] = ACTIONS(1152), - [anon_sym_RBRACE] = ACTIONS(1152), - [anon_sym_static] = ACTIONS(1150), - [anon_sym_auto] = ACTIONS(1150), - [anon_sym_register] = ACTIONS(1150), - [anon_sym_inline] = ACTIONS(1150), - [anon_sym_const] = ACTIONS(1150), - [anon_sym_volatile] = ACTIONS(1150), - [anon_sym_restrict] = ACTIONS(1150), - [anon_sym__Atomic] = ACTIONS(1150), - [anon_sym_signed] = ACTIONS(1150), - [anon_sym_unsigned] = ACTIONS(1150), - [anon_sym_long] = ACTIONS(1150), - [anon_sym_short] = ACTIONS(1150), - [sym_primitive_type] = ACTIONS(1150), - [anon_sym_enum] = ACTIONS(1150), - [anon_sym_struct] = ACTIONS(1150), - [anon_sym_union] = ACTIONS(1150), - [anon_sym_if] = ACTIONS(1150), - [anon_sym_switch] = ACTIONS(1150), - [anon_sym_case] = ACTIONS(1150), - [anon_sym_default] = ACTIONS(1150), - [anon_sym_while] = ACTIONS(1150), - [anon_sym_do] = ACTIONS(1150), - [anon_sym_for] = ACTIONS(1150), - [anon_sym_return] = ACTIONS(1150), - [anon_sym_break] = ACTIONS(1150), - [anon_sym_continue] = ACTIONS(1150), - [anon_sym_goto] = ACTIONS(1150), - [anon_sym_DASH_DASH] = ACTIONS(1152), - [anon_sym_PLUS_PLUS] = ACTIONS(1152), - [anon_sym_sizeof] = ACTIONS(1150), - [sym_number_literal] = ACTIONS(1152), - [anon_sym_L_SQUOTE] = ACTIONS(1152), - [anon_sym_u_SQUOTE] = ACTIONS(1152), - [anon_sym_U_SQUOTE] = ACTIONS(1152), - [anon_sym_u8_SQUOTE] = ACTIONS(1152), - [anon_sym_SQUOTE] = ACTIONS(1152), - [anon_sym_L_DQUOTE] = ACTIONS(1152), - [anon_sym_u_DQUOTE] = ACTIONS(1152), - [anon_sym_U_DQUOTE] = ACTIONS(1152), - [anon_sym_u8_DQUOTE] = ACTIONS(1152), - [anon_sym_DQUOTE] = ACTIONS(1152), - [sym_true] = ACTIONS(1150), - [sym_false] = ACTIONS(1150), - [sym_null] = ACTIONS(1150), + [338] = { + [ts_builtin_sym_end] = ACTIONS(1172), + [sym_identifier] = ACTIONS(1170), + [aux_sym_preproc_include_token1] = ACTIONS(1170), + [aux_sym_preproc_def_token1] = ACTIONS(1170), + [aux_sym_preproc_if_token1] = ACTIONS(1170), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1170), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1170), + [sym_preproc_directive] = ACTIONS(1170), + [anon_sym_LPAREN2] = ACTIONS(1172), + [anon_sym_BANG] = ACTIONS(1172), + [anon_sym_TILDE] = ACTIONS(1172), + [anon_sym_DASH] = ACTIONS(1170), + [anon_sym_PLUS] = ACTIONS(1170), + [anon_sym_STAR] = ACTIONS(1172), + [anon_sym_AMP] = ACTIONS(1172), + [anon_sym_SEMI] = ACTIONS(1172), + [anon_sym_typedef] = ACTIONS(1170), + [anon_sym_extern] = ACTIONS(1170), + [anon_sym___attribute__] = ACTIONS(1170), + [anon_sym_LBRACE] = ACTIONS(1172), + [anon_sym_static] = ACTIONS(1170), + [anon_sym_auto] = ACTIONS(1170), + [anon_sym_register] = ACTIONS(1170), + [anon_sym_inline] = ACTIONS(1170), + [anon_sym_const] = ACTIONS(1170), + [anon_sym_volatile] = ACTIONS(1170), + [anon_sym_restrict] = ACTIONS(1170), + [anon_sym__Atomic] = ACTIONS(1170), + [anon_sym_signed] = ACTIONS(1170), + [anon_sym_unsigned] = ACTIONS(1170), + [anon_sym_long] = ACTIONS(1170), + [anon_sym_short] = ACTIONS(1170), + [sym_primitive_type] = ACTIONS(1170), + [anon_sym_enum] = ACTIONS(1170), + [anon_sym_struct] = ACTIONS(1170), + [anon_sym_union] = ACTIONS(1170), + [anon_sym_if] = ACTIONS(1170), + [anon_sym_switch] = ACTIONS(1170), + [anon_sym_case] = ACTIONS(1170), + [anon_sym_default] = ACTIONS(1170), + [anon_sym_while] = ACTIONS(1170), + [anon_sym_do] = ACTIONS(1170), + [anon_sym_for] = ACTIONS(1170), + [anon_sym_return] = ACTIONS(1170), + [anon_sym_break] = ACTIONS(1170), + [anon_sym_continue] = ACTIONS(1170), + [anon_sym_goto] = ACTIONS(1170), + [anon_sym_DASH_DASH] = ACTIONS(1172), + [anon_sym_PLUS_PLUS] = ACTIONS(1172), + [anon_sym_sizeof] = ACTIONS(1170), + [sym_number_literal] = ACTIONS(1172), + [anon_sym_L_SQUOTE] = ACTIONS(1172), + [anon_sym_u_SQUOTE] = ACTIONS(1172), + [anon_sym_U_SQUOTE] = ACTIONS(1172), + [anon_sym_u8_SQUOTE] = ACTIONS(1172), + [anon_sym_SQUOTE] = ACTIONS(1172), + [anon_sym_L_DQUOTE] = ACTIONS(1172), + [anon_sym_u_DQUOTE] = ACTIONS(1172), + [anon_sym_U_DQUOTE] = ACTIONS(1172), + [anon_sym_u8_DQUOTE] = ACTIONS(1172), + [anon_sym_DQUOTE] = ACTIONS(1172), + [sym_true] = ACTIONS(1170), + [sym_false] = ACTIONS(1170), + [sym_null] = ACTIONS(1170), + [sym_comment] = ACTIONS(3), + }, + [339] = { + [ts_builtin_sym_end] = ACTIONS(1140), + [sym_identifier] = ACTIONS(1138), + [aux_sym_preproc_include_token1] = ACTIONS(1138), + [aux_sym_preproc_def_token1] = ACTIONS(1138), + [aux_sym_preproc_if_token1] = ACTIONS(1138), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1138), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1138), + [sym_preproc_directive] = ACTIONS(1138), + [anon_sym_LPAREN2] = ACTIONS(1140), + [anon_sym_BANG] = ACTIONS(1140), + [anon_sym_TILDE] = ACTIONS(1140), + [anon_sym_DASH] = ACTIONS(1138), + [anon_sym_PLUS] = ACTIONS(1138), + [anon_sym_STAR] = ACTIONS(1140), + [anon_sym_AMP] = ACTIONS(1140), + [anon_sym_SEMI] = ACTIONS(1140), + [anon_sym_typedef] = ACTIONS(1138), + [anon_sym_extern] = ACTIONS(1138), + [anon_sym___attribute__] = ACTIONS(1138), + [anon_sym_LBRACE] = ACTIONS(1140), + [anon_sym_static] = ACTIONS(1138), + [anon_sym_auto] = ACTIONS(1138), + [anon_sym_register] = ACTIONS(1138), + [anon_sym_inline] = ACTIONS(1138), + [anon_sym_const] = ACTIONS(1138), + [anon_sym_volatile] = ACTIONS(1138), + [anon_sym_restrict] = ACTIONS(1138), + [anon_sym__Atomic] = ACTIONS(1138), + [anon_sym_signed] = ACTIONS(1138), + [anon_sym_unsigned] = ACTIONS(1138), + [anon_sym_long] = ACTIONS(1138), + [anon_sym_short] = ACTIONS(1138), + [sym_primitive_type] = ACTIONS(1138), + [anon_sym_enum] = ACTIONS(1138), + [anon_sym_struct] = ACTIONS(1138), + [anon_sym_union] = ACTIONS(1138), + [anon_sym_if] = ACTIONS(1138), + [anon_sym_switch] = ACTIONS(1138), + [anon_sym_case] = ACTIONS(1138), + [anon_sym_default] = ACTIONS(1138), + [anon_sym_while] = ACTIONS(1138), + [anon_sym_do] = ACTIONS(1138), + [anon_sym_for] = ACTIONS(1138), + [anon_sym_return] = ACTIONS(1138), + [anon_sym_break] = ACTIONS(1138), + [anon_sym_continue] = ACTIONS(1138), + [anon_sym_goto] = ACTIONS(1138), + [anon_sym_DASH_DASH] = ACTIONS(1140), + [anon_sym_PLUS_PLUS] = ACTIONS(1140), + [anon_sym_sizeof] = ACTIONS(1138), + [sym_number_literal] = ACTIONS(1140), + [anon_sym_L_SQUOTE] = ACTIONS(1140), + [anon_sym_u_SQUOTE] = ACTIONS(1140), + [anon_sym_U_SQUOTE] = ACTIONS(1140), + [anon_sym_u8_SQUOTE] = ACTIONS(1140), + [anon_sym_SQUOTE] = ACTIONS(1140), + [anon_sym_L_DQUOTE] = ACTIONS(1140), + [anon_sym_u_DQUOTE] = ACTIONS(1140), + [anon_sym_U_DQUOTE] = ACTIONS(1140), + [anon_sym_u8_DQUOTE] = ACTIONS(1140), + [anon_sym_DQUOTE] = ACTIONS(1140), + [sym_true] = ACTIONS(1138), + [sym_false] = ACTIONS(1138), + [sym_null] = ACTIONS(1138), + [sym_comment] = ACTIONS(3), + }, + [340] = { + [sym_identifier] = ACTIONS(1158), + [aux_sym_preproc_include_token1] = ACTIONS(1158), + [aux_sym_preproc_def_token1] = ACTIONS(1158), + [aux_sym_preproc_if_token1] = ACTIONS(1158), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1158), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1158), + [sym_preproc_directive] = ACTIONS(1158), + [anon_sym_LPAREN2] = ACTIONS(1160), + [anon_sym_BANG] = ACTIONS(1160), + [anon_sym_TILDE] = ACTIONS(1160), + [anon_sym_DASH] = ACTIONS(1158), + [anon_sym_PLUS] = ACTIONS(1158), + [anon_sym_STAR] = ACTIONS(1160), + [anon_sym_AMP] = ACTIONS(1160), + [anon_sym_SEMI] = ACTIONS(1160), + [anon_sym_typedef] = ACTIONS(1158), + [anon_sym_extern] = ACTIONS(1158), + [anon_sym___attribute__] = ACTIONS(1158), + [anon_sym_LBRACE] = ACTIONS(1160), + [anon_sym_RBRACE] = ACTIONS(1160), + [anon_sym_static] = ACTIONS(1158), + [anon_sym_auto] = ACTIONS(1158), + [anon_sym_register] = ACTIONS(1158), + [anon_sym_inline] = ACTIONS(1158), + [anon_sym_const] = ACTIONS(1158), + [anon_sym_volatile] = ACTIONS(1158), + [anon_sym_restrict] = ACTIONS(1158), + [anon_sym__Atomic] = ACTIONS(1158), + [anon_sym_signed] = ACTIONS(1158), + [anon_sym_unsigned] = ACTIONS(1158), + [anon_sym_long] = ACTIONS(1158), + [anon_sym_short] = ACTIONS(1158), + [sym_primitive_type] = ACTIONS(1158), + [anon_sym_enum] = ACTIONS(1158), + [anon_sym_struct] = ACTIONS(1158), + [anon_sym_union] = ACTIONS(1158), + [anon_sym_if] = ACTIONS(1158), + [anon_sym_switch] = ACTIONS(1158), + [anon_sym_case] = ACTIONS(1158), + [anon_sym_default] = ACTIONS(1158), + [anon_sym_while] = ACTIONS(1158), + [anon_sym_do] = ACTIONS(1158), + [anon_sym_for] = ACTIONS(1158), + [anon_sym_return] = ACTIONS(1158), + [anon_sym_break] = ACTIONS(1158), + [anon_sym_continue] = ACTIONS(1158), + [anon_sym_goto] = ACTIONS(1158), + [anon_sym_DASH_DASH] = ACTIONS(1160), + [anon_sym_PLUS_PLUS] = ACTIONS(1160), + [anon_sym_sizeof] = ACTIONS(1158), + [sym_number_literal] = ACTIONS(1160), + [anon_sym_L_SQUOTE] = ACTIONS(1160), + [anon_sym_u_SQUOTE] = ACTIONS(1160), + [anon_sym_U_SQUOTE] = ACTIONS(1160), + [anon_sym_u8_SQUOTE] = ACTIONS(1160), + [anon_sym_SQUOTE] = ACTIONS(1160), + [anon_sym_L_DQUOTE] = ACTIONS(1160), + [anon_sym_u_DQUOTE] = ACTIONS(1160), + [anon_sym_U_DQUOTE] = ACTIONS(1160), + [anon_sym_u8_DQUOTE] = ACTIONS(1160), + [anon_sym_DQUOTE] = ACTIONS(1160), + [sym_true] = ACTIONS(1158), + [sym_false] = ACTIONS(1158), + [sym_null] = ACTIONS(1158), [sym_comment] = ACTIONS(3), }, - [354] = { + [341] = { [ts_builtin_sym_end] = ACTIONS(1112), [sym_identifier] = ACTIONS(1110), [aux_sym_preproc_include_token1] = ACTIONS(1110), @@ -33796,7 +32939,343 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1110), [sym_comment] = ACTIONS(3), }, - [355] = { + [342] = { + [sym_identifier] = ACTIONS(1094), + [aux_sym_preproc_include_token1] = ACTIONS(1094), + [aux_sym_preproc_def_token1] = ACTIONS(1094), + [aux_sym_preproc_if_token1] = ACTIONS(1094), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1094), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1094), + [sym_preproc_directive] = ACTIONS(1094), + [anon_sym_LPAREN2] = ACTIONS(1096), + [anon_sym_BANG] = ACTIONS(1096), + [anon_sym_TILDE] = ACTIONS(1096), + [anon_sym_DASH] = ACTIONS(1094), + [anon_sym_PLUS] = ACTIONS(1094), + [anon_sym_STAR] = ACTIONS(1096), + [anon_sym_AMP] = ACTIONS(1096), + [anon_sym_SEMI] = ACTIONS(1096), + [anon_sym_typedef] = ACTIONS(1094), + [anon_sym_extern] = ACTIONS(1094), + [anon_sym___attribute__] = ACTIONS(1094), + [anon_sym_LBRACE] = ACTIONS(1096), + [anon_sym_RBRACE] = ACTIONS(1096), + [anon_sym_static] = ACTIONS(1094), + [anon_sym_auto] = ACTIONS(1094), + [anon_sym_register] = ACTIONS(1094), + [anon_sym_inline] = ACTIONS(1094), + [anon_sym_const] = ACTIONS(1094), + [anon_sym_volatile] = ACTIONS(1094), + [anon_sym_restrict] = ACTIONS(1094), + [anon_sym__Atomic] = ACTIONS(1094), + [anon_sym_signed] = ACTIONS(1094), + [anon_sym_unsigned] = ACTIONS(1094), + [anon_sym_long] = ACTIONS(1094), + [anon_sym_short] = ACTIONS(1094), + [sym_primitive_type] = ACTIONS(1094), + [anon_sym_enum] = ACTIONS(1094), + [anon_sym_struct] = ACTIONS(1094), + [anon_sym_union] = ACTIONS(1094), + [anon_sym_if] = ACTIONS(1094), + [anon_sym_switch] = ACTIONS(1094), + [anon_sym_case] = ACTIONS(1094), + [anon_sym_default] = ACTIONS(1094), + [anon_sym_while] = ACTIONS(1094), + [anon_sym_do] = ACTIONS(1094), + [anon_sym_for] = ACTIONS(1094), + [anon_sym_return] = ACTIONS(1094), + [anon_sym_break] = ACTIONS(1094), + [anon_sym_continue] = ACTIONS(1094), + [anon_sym_goto] = ACTIONS(1094), + [anon_sym_DASH_DASH] = ACTIONS(1096), + [anon_sym_PLUS_PLUS] = ACTIONS(1096), + [anon_sym_sizeof] = ACTIONS(1094), + [sym_number_literal] = ACTIONS(1096), + [anon_sym_L_SQUOTE] = ACTIONS(1096), + [anon_sym_u_SQUOTE] = ACTIONS(1096), + [anon_sym_U_SQUOTE] = ACTIONS(1096), + [anon_sym_u8_SQUOTE] = ACTIONS(1096), + [anon_sym_SQUOTE] = ACTIONS(1096), + [anon_sym_L_DQUOTE] = ACTIONS(1096), + [anon_sym_u_DQUOTE] = ACTIONS(1096), + [anon_sym_U_DQUOTE] = ACTIONS(1096), + [anon_sym_u8_DQUOTE] = ACTIONS(1096), + [anon_sym_DQUOTE] = ACTIONS(1096), + [sym_true] = ACTIONS(1094), + [sym_false] = ACTIONS(1094), + [sym_null] = ACTIONS(1094), + [sym_comment] = ACTIONS(3), + }, + [343] = { + [sym_identifier] = ACTIONS(1154), + [aux_sym_preproc_include_token1] = ACTIONS(1154), + [aux_sym_preproc_def_token1] = ACTIONS(1154), + [aux_sym_preproc_if_token1] = ACTIONS(1154), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1154), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1154), + [sym_preproc_directive] = ACTIONS(1154), + [anon_sym_LPAREN2] = ACTIONS(1156), + [anon_sym_BANG] = ACTIONS(1156), + [anon_sym_TILDE] = ACTIONS(1156), + [anon_sym_DASH] = ACTIONS(1154), + [anon_sym_PLUS] = ACTIONS(1154), + [anon_sym_STAR] = ACTIONS(1156), + [anon_sym_AMP] = ACTIONS(1156), + [anon_sym_SEMI] = ACTIONS(1156), + [anon_sym_typedef] = ACTIONS(1154), + [anon_sym_extern] = ACTIONS(1154), + [anon_sym___attribute__] = ACTIONS(1154), + [anon_sym_LBRACE] = ACTIONS(1156), + [anon_sym_RBRACE] = ACTIONS(1156), + [anon_sym_static] = ACTIONS(1154), + [anon_sym_auto] = ACTIONS(1154), + [anon_sym_register] = ACTIONS(1154), + [anon_sym_inline] = ACTIONS(1154), + [anon_sym_const] = ACTIONS(1154), + [anon_sym_volatile] = ACTIONS(1154), + [anon_sym_restrict] = ACTIONS(1154), + [anon_sym__Atomic] = ACTIONS(1154), + [anon_sym_signed] = ACTIONS(1154), + [anon_sym_unsigned] = ACTIONS(1154), + [anon_sym_long] = ACTIONS(1154), + [anon_sym_short] = ACTIONS(1154), + [sym_primitive_type] = ACTIONS(1154), + [anon_sym_enum] = ACTIONS(1154), + [anon_sym_struct] = ACTIONS(1154), + [anon_sym_union] = ACTIONS(1154), + [anon_sym_if] = ACTIONS(1154), + [anon_sym_switch] = ACTIONS(1154), + [anon_sym_case] = ACTIONS(1154), + [anon_sym_default] = ACTIONS(1154), + [anon_sym_while] = ACTIONS(1154), + [anon_sym_do] = ACTIONS(1154), + [anon_sym_for] = ACTIONS(1154), + [anon_sym_return] = ACTIONS(1154), + [anon_sym_break] = ACTIONS(1154), + [anon_sym_continue] = ACTIONS(1154), + [anon_sym_goto] = ACTIONS(1154), + [anon_sym_DASH_DASH] = ACTIONS(1156), + [anon_sym_PLUS_PLUS] = ACTIONS(1156), + [anon_sym_sizeof] = ACTIONS(1154), + [sym_number_literal] = ACTIONS(1156), + [anon_sym_L_SQUOTE] = ACTIONS(1156), + [anon_sym_u_SQUOTE] = ACTIONS(1156), + [anon_sym_U_SQUOTE] = ACTIONS(1156), + [anon_sym_u8_SQUOTE] = ACTIONS(1156), + [anon_sym_SQUOTE] = ACTIONS(1156), + [anon_sym_L_DQUOTE] = ACTIONS(1156), + [anon_sym_u_DQUOTE] = ACTIONS(1156), + [anon_sym_U_DQUOTE] = ACTIONS(1156), + [anon_sym_u8_DQUOTE] = ACTIONS(1156), + [anon_sym_DQUOTE] = ACTIONS(1156), + [sym_true] = ACTIONS(1154), + [sym_false] = ACTIONS(1154), + [sym_null] = ACTIONS(1154), + [sym_comment] = ACTIONS(3), + }, + [344] = { + [sym_identifier] = ACTIONS(1134), + [aux_sym_preproc_include_token1] = ACTIONS(1134), + [aux_sym_preproc_def_token1] = ACTIONS(1134), + [aux_sym_preproc_if_token1] = ACTIONS(1134), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1134), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1134), + [sym_preproc_directive] = ACTIONS(1134), + [anon_sym_LPAREN2] = ACTIONS(1136), + [anon_sym_BANG] = ACTIONS(1136), + [anon_sym_TILDE] = ACTIONS(1136), + [anon_sym_DASH] = ACTIONS(1134), + [anon_sym_PLUS] = ACTIONS(1134), + [anon_sym_STAR] = ACTIONS(1136), + [anon_sym_AMP] = ACTIONS(1136), + [anon_sym_SEMI] = ACTIONS(1136), + [anon_sym_typedef] = ACTIONS(1134), + [anon_sym_extern] = ACTIONS(1134), + [anon_sym___attribute__] = ACTIONS(1134), + [anon_sym_LBRACE] = ACTIONS(1136), + [anon_sym_RBRACE] = ACTIONS(1136), + [anon_sym_static] = ACTIONS(1134), + [anon_sym_auto] = ACTIONS(1134), + [anon_sym_register] = ACTIONS(1134), + [anon_sym_inline] = ACTIONS(1134), + [anon_sym_const] = ACTIONS(1134), + [anon_sym_volatile] = ACTIONS(1134), + [anon_sym_restrict] = ACTIONS(1134), + [anon_sym__Atomic] = ACTIONS(1134), + [anon_sym_signed] = ACTIONS(1134), + [anon_sym_unsigned] = ACTIONS(1134), + [anon_sym_long] = ACTIONS(1134), + [anon_sym_short] = ACTIONS(1134), + [sym_primitive_type] = ACTIONS(1134), + [anon_sym_enum] = ACTIONS(1134), + [anon_sym_struct] = ACTIONS(1134), + [anon_sym_union] = ACTIONS(1134), + [anon_sym_if] = ACTIONS(1134), + [anon_sym_switch] = ACTIONS(1134), + [anon_sym_case] = ACTIONS(1134), + [anon_sym_default] = ACTIONS(1134), + [anon_sym_while] = ACTIONS(1134), + [anon_sym_do] = ACTIONS(1134), + [anon_sym_for] = ACTIONS(1134), + [anon_sym_return] = ACTIONS(1134), + [anon_sym_break] = ACTIONS(1134), + [anon_sym_continue] = ACTIONS(1134), + [anon_sym_goto] = ACTIONS(1134), + [anon_sym_DASH_DASH] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1136), + [anon_sym_sizeof] = ACTIONS(1134), + [sym_number_literal] = ACTIONS(1136), + [anon_sym_L_SQUOTE] = ACTIONS(1136), + [anon_sym_u_SQUOTE] = ACTIONS(1136), + [anon_sym_U_SQUOTE] = ACTIONS(1136), + [anon_sym_u8_SQUOTE] = ACTIONS(1136), + [anon_sym_SQUOTE] = ACTIONS(1136), + [anon_sym_L_DQUOTE] = ACTIONS(1136), + [anon_sym_u_DQUOTE] = ACTIONS(1136), + [anon_sym_U_DQUOTE] = ACTIONS(1136), + [anon_sym_u8_DQUOTE] = ACTIONS(1136), + [anon_sym_DQUOTE] = ACTIONS(1136), + [sym_true] = ACTIONS(1134), + [sym_false] = ACTIONS(1134), + [sym_null] = ACTIONS(1134), + [sym_comment] = ACTIONS(3), + }, + [345] = { + [sym_identifier] = ACTIONS(1134), + [aux_sym_preproc_include_token1] = ACTIONS(1134), + [aux_sym_preproc_def_token1] = ACTIONS(1134), + [aux_sym_preproc_if_token1] = ACTIONS(1134), + [aux_sym_preproc_if_token2] = ACTIONS(1134), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1134), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1134), + [sym_preproc_directive] = ACTIONS(1134), + [anon_sym_LPAREN2] = ACTIONS(1136), + [anon_sym_BANG] = ACTIONS(1136), + [anon_sym_TILDE] = ACTIONS(1136), + [anon_sym_DASH] = ACTIONS(1134), + [anon_sym_PLUS] = ACTIONS(1134), + [anon_sym_STAR] = ACTIONS(1136), + [anon_sym_AMP] = ACTIONS(1136), + [anon_sym_SEMI] = ACTIONS(1136), + [anon_sym_typedef] = ACTIONS(1134), + [anon_sym_extern] = ACTIONS(1134), + [anon_sym___attribute__] = ACTIONS(1134), + [anon_sym_LBRACE] = ACTIONS(1136), + [anon_sym_static] = ACTIONS(1134), + [anon_sym_auto] = ACTIONS(1134), + [anon_sym_register] = ACTIONS(1134), + [anon_sym_inline] = ACTIONS(1134), + [anon_sym_const] = ACTIONS(1134), + [anon_sym_volatile] = ACTIONS(1134), + [anon_sym_restrict] = ACTIONS(1134), + [anon_sym__Atomic] = ACTIONS(1134), + [anon_sym_signed] = ACTIONS(1134), + [anon_sym_unsigned] = ACTIONS(1134), + [anon_sym_long] = ACTIONS(1134), + [anon_sym_short] = ACTIONS(1134), + [sym_primitive_type] = ACTIONS(1134), + [anon_sym_enum] = ACTIONS(1134), + [anon_sym_struct] = ACTIONS(1134), + [anon_sym_union] = ACTIONS(1134), + [anon_sym_if] = ACTIONS(1134), + [anon_sym_switch] = ACTIONS(1134), + [anon_sym_case] = ACTIONS(1134), + [anon_sym_default] = ACTIONS(1134), + [anon_sym_while] = ACTIONS(1134), + [anon_sym_do] = ACTIONS(1134), + [anon_sym_for] = ACTIONS(1134), + [anon_sym_return] = ACTIONS(1134), + [anon_sym_break] = ACTIONS(1134), + [anon_sym_continue] = ACTIONS(1134), + [anon_sym_goto] = ACTIONS(1134), + [anon_sym_DASH_DASH] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1136), + [anon_sym_sizeof] = ACTIONS(1134), + [sym_number_literal] = ACTIONS(1136), + [anon_sym_L_SQUOTE] = ACTIONS(1136), + [anon_sym_u_SQUOTE] = ACTIONS(1136), + [anon_sym_U_SQUOTE] = ACTIONS(1136), + [anon_sym_u8_SQUOTE] = ACTIONS(1136), + [anon_sym_SQUOTE] = ACTIONS(1136), + [anon_sym_L_DQUOTE] = ACTIONS(1136), + [anon_sym_u_DQUOTE] = ACTIONS(1136), + [anon_sym_U_DQUOTE] = ACTIONS(1136), + [anon_sym_u8_DQUOTE] = ACTIONS(1136), + [anon_sym_DQUOTE] = ACTIONS(1136), + [sym_true] = ACTIONS(1134), + [sym_false] = ACTIONS(1134), + [sym_null] = ACTIONS(1134), + [sym_comment] = ACTIONS(3), + }, + [346] = { + [sym_identifier] = ACTIONS(1138), + [aux_sym_preproc_include_token1] = ACTIONS(1138), + [aux_sym_preproc_def_token1] = ACTIONS(1138), + [aux_sym_preproc_if_token1] = ACTIONS(1138), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1138), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1138), + [sym_preproc_directive] = ACTIONS(1138), + [anon_sym_LPAREN2] = ACTIONS(1140), + [anon_sym_BANG] = ACTIONS(1140), + [anon_sym_TILDE] = ACTIONS(1140), + [anon_sym_DASH] = ACTIONS(1138), + [anon_sym_PLUS] = ACTIONS(1138), + [anon_sym_STAR] = ACTIONS(1140), + [anon_sym_AMP] = ACTIONS(1140), + [anon_sym_SEMI] = ACTIONS(1140), + [anon_sym_typedef] = ACTIONS(1138), + [anon_sym_extern] = ACTIONS(1138), + [anon_sym___attribute__] = ACTIONS(1138), + [anon_sym_LBRACE] = ACTIONS(1140), + [anon_sym_RBRACE] = ACTIONS(1140), + [anon_sym_static] = ACTIONS(1138), + [anon_sym_auto] = ACTIONS(1138), + [anon_sym_register] = ACTIONS(1138), + [anon_sym_inline] = ACTIONS(1138), + [anon_sym_const] = ACTIONS(1138), + [anon_sym_volatile] = ACTIONS(1138), + [anon_sym_restrict] = ACTIONS(1138), + [anon_sym__Atomic] = ACTIONS(1138), + [anon_sym_signed] = ACTIONS(1138), + [anon_sym_unsigned] = ACTIONS(1138), + [anon_sym_long] = ACTIONS(1138), + [anon_sym_short] = ACTIONS(1138), + [sym_primitive_type] = ACTIONS(1138), + [anon_sym_enum] = ACTIONS(1138), + [anon_sym_struct] = ACTIONS(1138), + [anon_sym_union] = ACTIONS(1138), + [anon_sym_if] = ACTIONS(1138), + [anon_sym_switch] = ACTIONS(1138), + [anon_sym_case] = ACTIONS(1138), + [anon_sym_default] = ACTIONS(1138), + [anon_sym_while] = ACTIONS(1138), + [anon_sym_do] = ACTIONS(1138), + [anon_sym_for] = ACTIONS(1138), + [anon_sym_return] = ACTIONS(1138), + [anon_sym_break] = ACTIONS(1138), + [anon_sym_continue] = ACTIONS(1138), + [anon_sym_goto] = ACTIONS(1138), + [anon_sym_DASH_DASH] = ACTIONS(1140), + [anon_sym_PLUS_PLUS] = ACTIONS(1140), + [anon_sym_sizeof] = ACTIONS(1138), + [sym_number_literal] = ACTIONS(1140), + [anon_sym_L_SQUOTE] = ACTIONS(1140), + [anon_sym_u_SQUOTE] = ACTIONS(1140), + [anon_sym_U_SQUOTE] = ACTIONS(1140), + [anon_sym_u8_SQUOTE] = ACTIONS(1140), + [anon_sym_SQUOTE] = ACTIONS(1140), + [anon_sym_L_DQUOTE] = ACTIONS(1140), + [anon_sym_u_DQUOTE] = ACTIONS(1140), + [anon_sym_U_DQUOTE] = ACTIONS(1140), + [anon_sym_u8_DQUOTE] = ACTIONS(1140), + [anon_sym_DQUOTE] = ACTIONS(1140), + [sym_true] = ACTIONS(1138), + [sym_false] = ACTIONS(1138), + [sym_null] = ACTIONS(1138), + [sym_comment] = ACTIONS(3), + }, + [347] = { + [ts_builtin_sym_end] = ACTIONS(1132), [sym_identifier] = ACTIONS(1130), [aux_sym_preproc_include_token1] = ACTIONS(1130), [aux_sym_preproc_def_token1] = ACTIONS(1130), @@ -33816,7 +33295,6 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_extern] = ACTIONS(1130), [anon_sym___attribute__] = ACTIONS(1130), [anon_sym_LBRACE] = ACTIONS(1132), - [anon_sym_RBRACE] = ACTIONS(1132), [anon_sym_static] = ACTIONS(1130), [anon_sym_auto] = ACTIONS(1130), [anon_sym_register] = ACTIONS(1130), @@ -33860,78 +33338,10 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(1132), [sym_true] = ACTIONS(1130), [sym_false] = ACTIONS(1130), - [sym_null] = ACTIONS(1130), - [sym_comment] = ACTIONS(3), - }, - [356] = { - [ts_builtin_sym_end] = ACTIONS(1168), - [sym_identifier] = ACTIONS(1166), - [aux_sym_preproc_include_token1] = ACTIONS(1166), - [aux_sym_preproc_def_token1] = ACTIONS(1166), - [aux_sym_preproc_if_token1] = ACTIONS(1166), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1166), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1166), - [sym_preproc_directive] = ACTIONS(1166), - [anon_sym_LPAREN2] = ACTIONS(1168), - [anon_sym_BANG] = ACTIONS(1168), - [anon_sym_TILDE] = ACTIONS(1168), - [anon_sym_DASH] = ACTIONS(1166), - [anon_sym_PLUS] = ACTIONS(1166), - [anon_sym_STAR] = ACTIONS(1168), - [anon_sym_AMP] = ACTIONS(1168), - [anon_sym_SEMI] = ACTIONS(1168), - [anon_sym_typedef] = ACTIONS(1166), - [anon_sym_extern] = ACTIONS(1166), - [anon_sym___attribute__] = ACTIONS(1166), - [anon_sym_LBRACE] = ACTIONS(1168), - [anon_sym_static] = ACTIONS(1166), - [anon_sym_auto] = ACTIONS(1166), - [anon_sym_register] = ACTIONS(1166), - [anon_sym_inline] = ACTIONS(1166), - [anon_sym_const] = ACTIONS(1166), - [anon_sym_volatile] = ACTIONS(1166), - [anon_sym_restrict] = ACTIONS(1166), - [anon_sym__Atomic] = ACTIONS(1166), - [anon_sym_signed] = ACTIONS(1166), - [anon_sym_unsigned] = ACTIONS(1166), - [anon_sym_long] = ACTIONS(1166), - [anon_sym_short] = ACTIONS(1166), - [sym_primitive_type] = ACTIONS(1166), - [anon_sym_enum] = ACTIONS(1166), - [anon_sym_struct] = ACTIONS(1166), - [anon_sym_union] = ACTIONS(1166), - [anon_sym_if] = ACTIONS(1166), - [anon_sym_switch] = ACTIONS(1166), - [anon_sym_case] = ACTIONS(1166), - [anon_sym_default] = ACTIONS(1166), - [anon_sym_while] = ACTIONS(1166), - [anon_sym_do] = ACTIONS(1166), - [anon_sym_for] = ACTIONS(1166), - [anon_sym_return] = ACTIONS(1166), - [anon_sym_break] = ACTIONS(1166), - [anon_sym_continue] = ACTIONS(1166), - [anon_sym_goto] = ACTIONS(1166), - [anon_sym_DASH_DASH] = ACTIONS(1168), - [anon_sym_PLUS_PLUS] = ACTIONS(1168), - [anon_sym_sizeof] = ACTIONS(1166), - [sym_number_literal] = ACTIONS(1168), - [anon_sym_L_SQUOTE] = ACTIONS(1168), - [anon_sym_u_SQUOTE] = ACTIONS(1168), - [anon_sym_U_SQUOTE] = ACTIONS(1168), - [anon_sym_u8_SQUOTE] = ACTIONS(1168), - [anon_sym_SQUOTE] = ACTIONS(1168), - [anon_sym_L_DQUOTE] = ACTIONS(1168), - [anon_sym_u_DQUOTE] = ACTIONS(1168), - [anon_sym_U_DQUOTE] = ACTIONS(1168), - [anon_sym_u8_DQUOTE] = ACTIONS(1168), - [anon_sym_DQUOTE] = ACTIONS(1168), - [sym_true] = ACTIONS(1166), - [sym_false] = ACTIONS(1166), - [sym_null] = ACTIONS(1166), + [sym_null] = ACTIONS(1130), [sym_comment] = ACTIONS(3), }, - [357] = { - [ts_builtin_sym_end] = ACTIONS(1172), + [348] = { [sym_identifier] = ACTIONS(1170), [aux_sym_preproc_include_token1] = ACTIONS(1170), [aux_sym_preproc_def_token1] = ACTIONS(1170), @@ -33951,6 +33361,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_extern] = ACTIONS(1170), [anon_sym___attribute__] = ACTIONS(1170), [anon_sym_LBRACE] = ACTIONS(1172), + [anon_sym_RBRACE] = ACTIONS(1172), [anon_sym_static] = ACTIONS(1170), [anon_sym_auto] = ACTIONS(1170), [anon_sym_register] = ACTIONS(1170), @@ -33997,205 +33408,272 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1170), [sym_comment] = ACTIONS(3), }, - [358] = { - [sym_identifier] = ACTIONS(1158), - [aux_sym_preproc_include_token1] = ACTIONS(1158), - [aux_sym_preproc_def_token1] = ACTIONS(1158), - [aux_sym_preproc_if_token1] = ACTIONS(1158), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1158), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1158), - [sym_preproc_directive] = ACTIONS(1158), - [anon_sym_LPAREN2] = ACTIONS(1160), - [anon_sym_BANG] = ACTIONS(1160), - [anon_sym_TILDE] = ACTIONS(1160), - [anon_sym_DASH] = ACTIONS(1158), - [anon_sym_PLUS] = ACTIONS(1158), - [anon_sym_STAR] = ACTIONS(1160), - [anon_sym_AMP] = ACTIONS(1160), - [anon_sym_SEMI] = ACTIONS(1160), - [anon_sym_typedef] = ACTIONS(1158), - [anon_sym_extern] = ACTIONS(1158), - [anon_sym___attribute__] = ACTIONS(1158), - [anon_sym_LBRACE] = ACTIONS(1160), - [anon_sym_RBRACE] = ACTIONS(1160), - [anon_sym_static] = ACTIONS(1158), - [anon_sym_auto] = ACTIONS(1158), - [anon_sym_register] = ACTIONS(1158), - [anon_sym_inline] = ACTIONS(1158), - [anon_sym_const] = ACTIONS(1158), - [anon_sym_volatile] = ACTIONS(1158), - [anon_sym_restrict] = ACTIONS(1158), - [anon_sym__Atomic] = ACTIONS(1158), - [anon_sym_signed] = ACTIONS(1158), - [anon_sym_unsigned] = ACTIONS(1158), - [anon_sym_long] = ACTIONS(1158), - [anon_sym_short] = ACTIONS(1158), - [sym_primitive_type] = ACTIONS(1158), - [anon_sym_enum] = ACTIONS(1158), - [anon_sym_struct] = ACTIONS(1158), - [anon_sym_union] = ACTIONS(1158), - [anon_sym_if] = ACTIONS(1158), - [anon_sym_switch] = ACTIONS(1158), - [anon_sym_case] = ACTIONS(1158), - [anon_sym_default] = ACTIONS(1158), - [anon_sym_while] = ACTIONS(1158), - [anon_sym_do] = ACTIONS(1158), - [anon_sym_for] = ACTIONS(1158), - [anon_sym_return] = ACTIONS(1158), - [anon_sym_break] = ACTIONS(1158), - [anon_sym_continue] = ACTIONS(1158), - [anon_sym_goto] = ACTIONS(1158), - [anon_sym_DASH_DASH] = ACTIONS(1160), - [anon_sym_PLUS_PLUS] = ACTIONS(1160), - [anon_sym_sizeof] = ACTIONS(1158), - [sym_number_literal] = ACTIONS(1160), - [anon_sym_L_SQUOTE] = ACTIONS(1160), - [anon_sym_u_SQUOTE] = ACTIONS(1160), - [anon_sym_U_SQUOTE] = ACTIONS(1160), - [anon_sym_u8_SQUOTE] = ACTIONS(1160), - [anon_sym_SQUOTE] = ACTIONS(1160), - [anon_sym_L_DQUOTE] = ACTIONS(1160), - [anon_sym_u_DQUOTE] = ACTIONS(1160), - [anon_sym_U_DQUOTE] = ACTIONS(1160), - [anon_sym_u8_DQUOTE] = ACTIONS(1160), - [anon_sym_DQUOTE] = ACTIONS(1160), - [sym_true] = ACTIONS(1158), - [sym_false] = ACTIONS(1158), - [sym_null] = ACTIONS(1158), + [349] = { + [sym_identifier] = ACTIONS(1122), + [aux_sym_preproc_include_token1] = ACTIONS(1122), + [aux_sym_preproc_def_token1] = ACTIONS(1122), + [aux_sym_preproc_if_token1] = ACTIONS(1122), + [aux_sym_preproc_if_token2] = ACTIONS(1122), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1122), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1122), + [sym_preproc_directive] = ACTIONS(1122), + [anon_sym_LPAREN2] = ACTIONS(1124), + [anon_sym_BANG] = ACTIONS(1124), + [anon_sym_TILDE] = ACTIONS(1124), + [anon_sym_DASH] = ACTIONS(1122), + [anon_sym_PLUS] = ACTIONS(1122), + [anon_sym_STAR] = ACTIONS(1124), + [anon_sym_AMP] = ACTIONS(1124), + [anon_sym_SEMI] = ACTIONS(1124), + [anon_sym_typedef] = ACTIONS(1122), + [anon_sym_extern] = ACTIONS(1122), + [anon_sym___attribute__] = ACTIONS(1122), + [anon_sym_LBRACE] = ACTIONS(1124), + [anon_sym_static] = ACTIONS(1122), + [anon_sym_auto] = ACTIONS(1122), + [anon_sym_register] = ACTIONS(1122), + [anon_sym_inline] = ACTIONS(1122), + [anon_sym_const] = ACTIONS(1122), + [anon_sym_volatile] = ACTIONS(1122), + [anon_sym_restrict] = ACTIONS(1122), + [anon_sym__Atomic] = ACTIONS(1122), + [anon_sym_signed] = ACTIONS(1122), + [anon_sym_unsigned] = ACTIONS(1122), + [anon_sym_long] = ACTIONS(1122), + [anon_sym_short] = ACTIONS(1122), + [sym_primitive_type] = ACTIONS(1122), + [anon_sym_enum] = ACTIONS(1122), + [anon_sym_struct] = ACTIONS(1122), + [anon_sym_union] = ACTIONS(1122), + [anon_sym_if] = ACTIONS(1122), + [anon_sym_switch] = ACTIONS(1122), + [anon_sym_case] = ACTIONS(1122), + [anon_sym_default] = ACTIONS(1122), + [anon_sym_while] = ACTIONS(1122), + [anon_sym_do] = ACTIONS(1122), + [anon_sym_for] = ACTIONS(1122), + [anon_sym_return] = ACTIONS(1122), + [anon_sym_break] = ACTIONS(1122), + [anon_sym_continue] = ACTIONS(1122), + [anon_sym_goto] = ACTIONS(1122), + [anon_sym_DASH_DASH] = ACTIONS(1124), + [anon_sym_PLUS_PLUS] = ACTIONS(1124), + [anon_sym_sizeof] = ACTIONS(1122), + [sym_number_literal] = ACTIONS(1124), + [anon_sym_L_SQUOTE] = ACTIONS(1124), + [anon_sym_u_SQUOTE] = ACTIONS(1124), + [anon_sym_U_SQUOTE] = ACTIONS(1124), + [anon_sym_u8_SQUOTE] = ACTIONS(1124), + [anon_sym_SQUOTE] = ACTIONS(1124), + [anon_sym_L_DQUOTE] = ACTIONS(1124), + [anon_sym_u_DQUOTE] = ACTIONS(1124), + [anon_sym_U_DQUOTE] = ACTIONS(1124), + [anon_sym_u8_DQUOTE] = ACTIONS(1124), + [anon_sym_DQUOTE] = ACTIONS(1124), + [sym_true] = ACTIONS(1122), + [sym_false] = ACTIONS(1122), + [sym_null] = ACTIONS(1122), [sym_comment] = ACTIONS(3), }, - [359] = { - [sym_identifier] = ACTIONS(1154), - [aux_sym_preproc_include_token1] = ACTIONS(1154), - [aux_sym_preproc_def_token1] = ACTIONS(1154), - [aux_sym_preproc_if_token1] = ACTIONS(1154), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1154), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1154), - [sym_preproc_directive] = ACTIONS(1154), - [anon_sym_LPAREN2] = ACTIONS(1156), - [anon_sym_BANG] = ACTIONS(1156), - [anon_sym_TILDE] = ACTIONS(1156), - [anon_sym_DASH] = ACTIONS(1154), - [anon_sym_PLUS] = ACTIONS(1154), - [anon_sym_STAR] = ACTIONS(1156), - [anon_sym_AMP] = ACTIONS(1156), - [anon_sym_SEMI] = ACTIONS(1156), - [anon_sym_typedef] = ACTIONS(1154), - [anon_sym_extern] = ACTIONS(1154), - [anon_sym___attribute__] = ACTIONS(1154), - [anon_sym_LBRACE] = ACTIONS(1156), - [anon_sym_RBRACE] = ACTIONS(1156), - [anon_sym_static] = ACTIONS(1154), - [anon_sym_auto] = ACTIONS(1154), - [anon_sym_register] = ACTIONS(1154), - [anon_sym_inline] = ACTIONS(1154), - [anon_sym_const] = ACTIONS(1154), - [anon_sym_volatile] = ACTIONS(1154), - [anon_sym_restrict] = ACTIONS(1154), - [anon_sym__Atomic] = ACTIONS(1154), - [anon_sym_signed] = ACTIONS(1154), - [anon_sym_unsigned] = ACTIONS(1154), - [anon_sym_long] = ACTIONS(1154), - [anon_sym_short] = ACTIONS(1154), - [sym_primitive_type] = ACTIONS(1154), - [anon_sym_enum] = ACTIONS(1154), - [anon_sym_struct] = ACTIONS(1154), - [anon_sym_union] = ACTIONS(1154), - [anon_sym_if] = ACTIONS(1154), - [anon_sym_switch] = ACTIONS(1154), - [anon_sym_case] = ACTIONS(1154), - [anon_sym_default] = ACTIONS(1154), - [anon_sym_while] = ACTIONS(1154), - [anon_sym_do] = ACTIONS(1154), - [anon_sym_for] = ACTIONS(1154), - [anon_sym_return] = ACTIONS(1154), - [anon_sym_break] = ACTIONS(1154), - [anon_sym_continue] = ACTIONS(1154), - [anon_sym_goto] = ACTIONS(1154), - [anon_sym_DASH_DASH] = ACTIONS(1156), - [anon_sym_PLUS_PLUS] = ACTIONS(1156), - [anon_sym_sizeof] = ACTIONS(1154), - [sym_number_literal] = ACTIONS(1156), - [anon_sym_L_SQUOTE] = ACTIONS(1156), - [anon_sym_u_SQUOTE] = ACTIONS(1156), - [anon_sym_U_SQUOTE] = ACTIONS(1156), - [anon_sym_u8_SQUOTE] = ACTIONS(1156), - [anon_sym_SQUOTE] = ACTIONS(1156), - [anon_sym_L_DQUOTE] = ACTIONS(1156), - [anon_sym_u_DQUOTE] = ACTIONS(1156), - [anon_sym_U_DQUOTE] = ACTIONS(1156), - [anon_sym_u8_DQUOTE] = ACTIONS(1156), - [anon_sym_DQUOTE] = ACTIONS(1156), - [sym_true] = ACTIONS(1154), - [sym_false] = ACTIONS(1154), - [sym_null] = ACTIONS(1154), + [350] = { + [sym_identifier] = ACTIONS(1118), + [aux_sym_preproc_include_token1] = ACTIONS(1118), + [aux_sym_preproc_def_token1] = ACTIONS(1118), + [aux_sym_preproc_if_token1] = ACTIONS(1118), + [aux_sym_preproc_if_token2] = ACTIONS(1118), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1118), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1118), + [sym_preproc_directive] = ACTIONS(1118), + [anon_sym_LPAREN2] = ACTIONS(1120), + [anon_sym_BANG] = ACTIONS(1120), + [anon_sym_TILDE] = ACTIONS(1120), + [anon_sym_DASH] = ACTIONS(1118), + [anon_sym_PLUS] = ACTIONS(1118), + [anon_sym_STAR] = ACTIONS(1120), + [anon_sym_AMP] = ACTIONS(1120), + [anon_sym_SEMI] = ACTIONS(1120), + [anon_sym_typedef] = ACTIONS(1118), + [anon_sym_extern] = ACTIONS(1118), + [anon_sym___attribute__] = ACTIONS(1118), + [anon_sym_LBRACE] = ACTIONS(1120), + [anon_sym_static] = ACTIONS(1118), + [anon_sym_auto] = ACTIONS(1118), + [anon_sym_register] = ACTIONS(1118), + [anon_sym_inline] = ACTIONS(1118), + [anon_sym_const] = ACTIONS(1118), + [anon_sym_volatile] = ACTIONS(1118), + [anon_sym_restrict] = ACTIONS(1118), + [anon_sym__Atomic] = ACTIONS(1118), + [anon_sym_signed] = ACTIONS(1118), + [anon_sym_unsigned] = ACTIONS(1118), + [anon_sym_long] = ACTIONS(1118), + [anon_sym_short] = ACTIONS(1118), + [sym_primitive_type] = ACTIONS(1118), + [anon_sym_enum] = ACTIONS(1118), + [anon_sym_struct] = ACTIONS(1118), + [anon_sym_union] = ACTIONS(1118), + [anon_sym_if] = ACTIONS(1118), + [anon_sym_switch] = ACTIONS(1118), + [anon_sym_case] = ACTIONS(1118), + [anon_sym_default] = ACTIONS(1118), + [anon_sym_while] = ACTIONS(1118), + [anon_sym_do] = ACTIONS(1118), + [anon_sym_for] = ACTIONS(1118), + [anon_sym_return] = ACTIONS(1118), + [anon_sym_break] = ACTIONS(1118), + [anon_sym_continue] = ACTIONS(1118), + [anon_sym_goto] = ACTIONS(1118), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_sizeof] = ACTIONS(1118), + [sym_number_literal] = ACTIONS(1120), + [anon_sym_L_SQUOTE] = ACTIONS(1120), + [anon_sym_u_SQUOTE] = ACTIONS(1120), + [anon_sym_U_SQUOTE] = ACTIONS(1120), + [anon_sym_u8_SQUOTE] = ACTIONS(1120), + [anon_sym_SQUOTE] = ACTIONS(1120), + [anon_sym_L_DQUOTE] = ACTIONS(1120), + [anon_sym_u_DQUOTE] = ACTIONS(1120), + [anon_sym_U_DQUOTE] = ACTIONS(1120), + [anon_sym_u8_DQUOTE] = ACTIONS(1120), + [anon_sym_DQUOTE] = ACTIONS(1120), + [sym_true] = ACTIONS(1118), + [sym_false] = ACTIONS(1118), + [sym_null] = ACTIONS(1118), [sym_comment] = ACTIONS(3), }, - [360] = { - [ts_builtin_sym_end] = ACTIONS(1132), - [sym_identifier] = ACTIONS(1130), - [aux_sym_preproc_include_token1] = ACTIONS(1130), - [aux_sym_preproc_def_token1] = ACTIONS(1130), - [aux_sym_preproc_if_token1] = ACTIONS(1130), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1130), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1130), - [sym_preproc_directive] = ACTIONS(1130), - [anon_sym_LPAREN2] = ACTIONS(1132), - [anon_sym_BANG] = ACTIONS(1132), - [anon_sym_TILDE] = ACTIONS(1132), - [anon_sym_DASH] = ACTIONS(1130), - [anon_sym_PLUS] = ACTIONS(1130), - [anon_sym_STAR] = ACTIONS(1132), - [anon_sym_AMP] = ACTIONS(1132), - [anon_sym_SEMI] = ACTIONS(1132), - [anon_sym_typedef] = ACTIONS(1130), - [anon_sym_extern] = ACTIONS(1130), - [anon_sym___attribute__] = ACTIONS(1130), - [anon_sym_LBRACE] = ACTIONS(1132), - [anon_sym_static] = ACTIONS(1130), - [anon_sym_auto] = ACTIONS(1130), - [anon_sym_register] = ACTIONS(1130), - [anon_sym_inline] = ACTIONS(1130), - [anon_sym_const] = ACTIONS(1130), - [anon_sym_volatile] = ACTIONS(1130), - [anon_sym_restrict] = ACTIONS(1130), - [anon_sym__Atomic] = ACTIONS(1130), - [anon_sym_signed] = ACTIONS(1130), - [anon_sym_unsigned] = ACTIONS(1130), - [anon_sym_long] = ACTIONS(1130), - [anon_sym_short] = ACTIONS(1130), - [sym_primitive_type] = ACTIONS(1130), - [anon_sym_enum] = ACTIONS(1130), - [anon_sym_struct] = ACTIONS(1130), - [anon_sym_union] = ACTIONS(1130), - [anon_sym_if] = ACTIONS(1130), - [anon_sym_switch] = ACTIONS(1130), - [anon_sym_case] = ACTIONS(1130), - [anon_sym_default] = ACTIONS(1130), - [anon_sym_while] = ACTIONS(1130), - [anon_sym_do] = ACTIONS(1130), - [anon_sym_for] = ACTIONS(1130), - [anon_sym_return] = ACTIONS(1130), - [anon_sym_break] = ACTIONS(1130), - [anon_sym_continue] = ACTIONS(1130), - [anon_sym_goto] = ACTIONS(1130), - [anon_sym_DASH_DASH] = ACTIONS(1132), - [anon_sym_PLUS_PLUS] = ACTIONS(1132), - [anon_sym_sizeof] = ACTIONS(1130), - [sym_number_literal] = ACTIONS(1132), - [anon_sym_L_SQUOTE] = ACTIONS(1132), - [anon_sym_u_SQUOTE] = ACTIONS(1132), - [anon_sym_U_SQUOTE] = ACTIONS(1132), - [anon_sym_u8_SQUOTE] = ACTIONS(1132), - [anon_sym_SQUOTE] = ACTIONS(1132), - [anon_sym_L_DQUOTE] = ACTIONS(1132), - [anon_sym_u_DQUOTE] = ACTIONS(1132), - [anon_sym_U_DQUOTE] = ACTIONS(1132), - [anon_sym_u8_DQUOTE] = ACTIONS(1132), - [anon_sym_DQUOTE] = ACTIONS(1132), - [sym_true] = ACTIONS(1130), - [sym_false] = ACTIONS(1130), - [sym_null] = ACTIONS(1130), + [351] = { + [ts_builtin_sym_end] = ACTIONS(1108), + [sym_identifier] = ACTIONS(1106), + [aux_sym_preproc_include_token1] = ACTIONS(1106), + [aux_sym_preproc_def_token1] = ACTIONS(1106), + [aux_sym_preproc_if_token1] = ACTIONS(1106), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1106), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1106), + [sym_preproc_directive] = ACTIONS(1106), + [anon_sym_LPAREN2] = ACTIONS(1108), + [anon_sym_BANG] = ACTIONS(1108), + [anon_sym_TILDE] = ACTIONS(1108), + [anon_sym_DASH] = ACTIONS(1106), + [anon_sym_PLUS] = ACTIONS(1106), + [anon_sym_STAR] = ACTIONS(1108), + [anon_sym_AMP] = ACTIONS(1108), + [anon_sym_SEMI] = ACTIONS(1108), + [anon_sym_typedef] = ACTIONS(1106), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym___attribute__] = ACTIONS(1106), + [anon_sym_LBRACE] = ACTIONS(1108), + [anon_sym_static] = ACTIONS(1106), + [anon_sym_auto] = ACTIONS(1106), + [anon_sym_register] = ACTIONS(1106), + [anon_sym_inline] = ACTIONS(1106), + [anon_sym_const] = ACTIONS(1106), + [anon_sym_volatile] = ACTIONS(1106), + [anon_sym_restrict] = ACTIONS(1106), + [anon_sym__Atomic] = ACTIONS(1106), + [anon_sym_signed] = ACTIONS(1106), + [anon_sym_unsigned] = ACTIONS(1106), + [anon_sym_long] = ACTIONS(1106), + [anon_sym_short] = ACTIONS(1106), + [sym_primitive_type] = ACTIONS(1106), + [anon_sym_enum] = ACTIONS(1106), + [anon_sym_struct] = ACTIONS(1106), + [anon_sym_union] = ACTIONS(1106), + [anon_sym_if] = ACTIONS(1106), + [anon_sym_switch] = ACTIONS(1106), + [anon_sym_case] = ACTIONS(1106), + [anon_sym_default] = ACTIONS(1106), + [anon_sym_while] = ACTIONS(1106), + [anon_sym_do] = ACTIONS(1106), + [anon_sym_for] = ACTIONS(1106), + [anon_sym_return] = ACTIONS(1106), + [anon_sym_break] = ACTIONS(1106), + [anon_sym_continue] = ACTIONS(1106), + [anon_sym_goto] = ACTIONS(1106), + [anon_sym_DASH_DASH] = ACTIONS(1108), + [anon_sym_PLUS_PLUS] = ACTIONS(1108), + [anon_sym_sizeof] = ACTIONS(1106), + [sym_number_literal] = ACTIONS(1108), + [anon_sym_L_SQUOTE] = ACTIONS(1108), + [anon_sym_u_SQUOTE] = ACTIONS(1108), + [anon_sym_U_SQUOTE] = ACTIONS(1108), + [anon_sym_u8_SQUOTE] = ACTIONS(1108), + [anon_sym_SQUOTE] = ACTIONS(1108), + [anon_sym_L_DQUOTE] = ACTIONS(1108), + [anon_sym_u_DQUOTE] = ACTIONS(1108), + [anon_sym_U_DQUOTE] = ACTIONS(1108), + [anon_sym_u8_DQUOTE] = ACTIONS(1108), + [anon_sym_DQUOTE] = ACTIONS(1108), + [sym_true] = ACTIONS(1106), + [sym_false] = ACTIONS(1106), + [sym_null] = ACTIONS(1106), + [sym_comment] = ACTIONS(3), + }, + [352] = { + [ts_builtin_sym_end] = ACTIONS(1148), + [sym_identifier] = ACTIONS(1146), + [aux_sym_preproc_include_token1] = ACTIONS(1146), + [aux_sym_preproc_def_token1] = ACTIONS(1146), + [aux_sym_preproc_if_token1] = ACTIONS(1146), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1146), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1146), + [sym_preproc_directive] = ACTIONS(1146), + [anon_sym_LPAREN2] = ACTIONS(1148), + [anon_sym_BANG] = ACTIONS(1148), + [anon_sym_TILDE] = ACTIONS(1148), + [anon_sym_DASH] = ACTIONS(1146), + [anon_sym_PLUS] = ACTIONS(1146), + [anon_sym_STAR] = ACTIONS(1148), + [anon_sym_AMP] = ACTIONS(1148), + [anon_sym_SEMI] = ACTIONS(1148), + [anon_sym_typedef] = ACTIONS(1146), + [anon_sym_extern] = ACTIONS(1146), + [anon_sym___attribute__] = ACTIONS(1146), + [anon_sym_LBRACE] = ACTIONS(1148), + [anon_sym_static] = ACTIONS(1146), + [anon_sym_auto] = ACTIONS(1146), + [anon_sym_register] = ACTIONS(1146), + [anon_sym_inline] = ACTIONS(1146), + [anon_sym_const] = ACTIONS(1146), + [anon_sym_volatile] = ACTIONS(1146), + [anon_sym_restrict] = ACTIONS(1146), + [anon_sym__Atomic] = ACTIONS(1146), + [anon_sym_signed] = ACTIONS(1146), + [anon_sym_unsigned] = ACTIONS(1146), + [anon_sym_long] = ACTIONS(1146), + [anon_sym_short] = ACTIONS(1146), + [sym_primitive_type] = ACTIONS(1146), + [anon_sym_enum] = ACTIONS(1146), + [anon_sym_struct] = ACTIONS(1146), + [anon_sym_union] = ACTIONS(1146), + [anon_sym_if] = ACTIONS(1146), + [anon_sym_switch] = ACTIONS(1146), + [anon_sym_case] = ACTIONS(1146), + [anon_sym_default] = ACTIONS(1146), + [anon_sym_while] = ACTIONS(1146), + [anon_sym_do] = ACTIONS(1146), + [anon_sym_for] = ACTIONS(1146), + [anon_sym_return] = ACTIONS(1146), + [anon_sym_break] = ACTIONS(1146), + [anon_sym_continue] = ACTIONS(1146), + [anon_sym_goto] = ACTIONS(1146), + [anon_sym_DASH_DASH] = ACTIONS(1148), + [anon_sym_PLUS_PLUS] = ACTIONS(1148), + [anon_sym_sizeof] = ACTIONS(1146), + [sym_number_literal] = ACTIONS(1148), + [anon_sym_L_SQUOTE] = ACTIONS(1148), + [anon_sym_u_SQUOTE] = ACTIONS(1148), + [anon_sym_U_SQUOTE] = ACTIONS(1148), + [anon_sym_u8_SQUOTE] = ACTIONS(1148), + [anon_sym_SQUOTE] = ACTIONS(1148), + [anon_sym_L_DQUOTE] = ACTIONS(1148), + [anon_sym_u_DQUOTE] = ACTIONS(1148), + [anon_sym_U_DQUOTE] = ACTIONS(1148), + [anon_sym_u8_DQUOTE] = ACTIONS(1148), + [anon_sym_DQUOTE] = ACTIONS(1148), + [sym_true] = ACTIONS(1146), + [sym_false] = ACTIONS(1146), + [sym_null] = ACTIONS(1146), [sym_comment] = ACTIONS(3), }, }; @@ -34212,17 +33690,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(958), 1, sym_identifier, - ACTIONS(1198), 1, + ACTIONS(1190), 1, anon_sym_COMMA, - ACTIONS(1200), 1, + ACTIONS(1192), 1, anon_sym_RBRACE, - ACTIONS(1202), 1, + ACTIONS(1194), 1, anon_sym_LBRACK, - ACTIONS(1204), 1, + ACTIONS(1196), 1, anon_sym_DOT, - ACTIONS(1206), 1, + ACTIONS(1198), 1, sym_number_literal, - STATE(376), 1, + STATE(379), 1, sym_string_literal, ACTIONS(21), 2, anon_sym_BANG, @@ -34236,14 +33714,14 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(73), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - STATE(1016), 2, + STATE(992), 2, sym_initializer_list, sym_initializer_pair, - ACTIONS(1208), 3, + ACTIONS(1200), 3, sym_true, sym_false, sym_null, - STATE(936), 3, + STATE(917), 3, sym_subscript_designator, sym_field_designator, aux_sym_initializer_pair_repeat1, @@ -34259,13 +33737,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(505), 5, + STATE(532), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(573), 11, + STATE(564), 11, sym__expression, sym_conditional_expression, sym_assignment_expression, @@ -34288,15 +33766,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(958), 1, sym_identifier, - ACTIONS(1202), 1, + ACTIONS(1194), 1, anon_sym_LBRACK, - ACTIONS(1204), 1, + ACTIONS(1196), 1, anon_sym_DOT, - ACTIONS(1210), 1, + ACTIONS(1202), 1, anon_sym_RBRACE, - ACTIONS(1212), 1, + ACTIONS(1204), 1, sym_number_literal, - STATE(376), 1, + STATE(379), 1, sym_string_literal, ACTIONS(21), 2, anon_sym_BANG, @@ -34310,14 +33788,14 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(73), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - STATE(1041), 2, + STATE(1047), 2, sym_initializer_list, sym_initializer_pair, - ACTIONS(1214), 3, + ACTIONS(1206), 3, sym_true, sym_false, sym_null, - STATE(936), 3, + STATE(917), 3, sym_subscript_designator, sym_field_designator, aux_sym_initializer_pair_repeat1, @@ -34333,13 +33811,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(505), 5, + STATE(532), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(601), 11, + STATE(580), 11, sym__expression, sym_conditional_expression, sym_assignment_expression, @@ -34362,15 +33840,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(958), 1, sym_identifier, - ACTIONS(1202), 1, + ACTIONS(1194), 1, anon_sym_LBRACK, - ACTIONS(1204), 1, + ACTIONS(1196), 1, anon_sym_DOT, - ACTIONS(1212), 1, + ACTIONS(1204), 1, sym_number_literal, - ACTIONS(1216), 1, + ACTIONS(1208), 1, anon_sym_RBRACE, - STATE(376), 1, + STATE(379), 1, sym_string_literal, ACTIONS(21), 2, anon_sym_BANG, @@ -34384,14 +33862,14 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(73), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - STATE(1041), 2, + STATE(1047), 2, sym_initializer_list, sym_initializer_pair, - ACTIONS(1214), 3, + ACTIONS(1206), 3, sym_true, sym_false, sym_null, - STATE(936), 3, + STATE(917), 3, sym_subscript_designator, sym_field_designator, aux_sym_initializer_pair_repeat1, @@ -34407,13 +33885,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(505), 5, + STATE(532), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(601), 11, + STATE(580), 11, sym__expression, sym_conditional_expression, sym_assignment_expression, @@ -34425,18 +33903,20 @@ static uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [288] = 9, + [288] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1222), 1, + ACTIONS(1214), 1, anon_sym_LPAREN2, - ACTIONS(1228), 1, + ACTIONS(1220), 1, anon_sym_STAR, - ACTIONS(1231), 1, + ACTIONS(1223), 1, + anon_sym_SEMI, + ACTIONS(1226), 1, anon_sym_EQ, - ACTIONS(1233), 1, + ACTIONS(1228), 1, anon_sym_COLON, - ACTIONS(1235), 10, + ACTIONS(1230), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -34447,7 +33927,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1218), 11, + ACTIONS(1210), 11, anon_sym_extern, anon_sym___attribute__, anon_sym_static, @@ -34459,7 +33939,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_restrict, anon_sym__Atomic, sym_identifier, - ACTIONS(1226), 11, + ACTIONS(1218), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -34471,7 +33951,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1220), 14, + ACTIONS(1212), 13, anon_sym_COMMA, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -34479,25 +33959,96 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [358] = 9, + [360] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(75), 1, + anon_sym_sizeof, + ACTIONS(916), 1, + anon_sym_LBRACE, + ACTIONS(958), 1, + sym_identifier, + ACTIONS(1194), 1, + anon_sym_LBRACK, + ACTIONS(1196), 1, + anon_sym_DOT, + ACTIONS(1204), 1, + sym_number_literal, + STATE(379), 1, + sym_string_literal, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(73), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + STATE(1047), 2, + sym_initializer_list, + sym_initializer_pair, + ACTIONS(1206), 3, + sym_true, + sym_false, + sym_null, + STATE(917), 3, + sym_subscript_designator, + sym_field_designator, + aux_sym_initializer_pair_repeat1, + ACTIONS(79), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(81), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(532), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(580), 11, + sym__expression, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + [452] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1222), 1, + ACTIONS(1214), 1, anon_sym_LPAREN2, - ACTIONS(1228), 1, + ACTIONS(1220), 1, anon_sym_STAR, - ACTIONS(1231), 1, + ACTIONS(1226), 1, anon_sym_EQ, - ACTIONS(1237), 1, + ACTIONS(1228), 1, anon_sym_COLON, - ACTIONS(1235), 10, + ACTIONS(1230), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -34508,7 +34059,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1218), 11, + ACTIONS(1210), 11, anon_sym_extern, anon_sym___attribute__, anon_sym_static, @@ -34520,7 +34071,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_restrict, anon_sym__Atomic, sym_identifier, - ACTIONS(1226), 11, + ACTIONS(1218), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -34532,7 +34083,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1220), 14, + ACTIONS(1212), 14, anon_sym_COMMA, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -34547,20 +34098,20 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [428] = 10, + [522] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1222), 1, + ACTIONS(1214), 1, anon_sym_LPAREN2, - ACTIONS(1228), 1, + ACTIONS(1220), 1, anon_sym_STAR, - ACTIONS(1231), 1, - anon_sym_EQ, - ACTIONS(1239), 1, + ACTIONS(1223), 1, anon_sym_SEMI, - ACTIONS(1242), 1, + ACTIONS(1226), 1, + anon_sym_EQ, + ACTIONS(1232), 1, anon_sym_COLON, - ACTIONS(1235), 10, + ACTIONS(1230), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -34571,7 +34122,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1218), 11, + ACTIONS(1210), 11, anon_sym_extern, anon_sym___attribute__, anon_sym_static, @@ -34583,7 +34134,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_restrict, anon_sym__Atomic, sym_identifier, - ACTIONS(1226), 11, + ACTIONS(1218), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -34595,7 +34146,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1220), 13, + ACTIONS(1212), 13, anon_sym_COMMA, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -34609,18 +34160,20 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [500] = 9, + [594] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1222), 1, + ACTIONS(1214), 1, anon_sym_LPAREN2, - ACTIONS(1228), 1, + ACTIONS(1220), 1, anon_sym_STAR, - ACTIONS(1231), 1, + ACTIONS(1223), 1, + anon_sym_SEMI, + ACTIONS(1226), 1, anon_sym_EQ, - ACTIONS(1242), 1, + ACTIONS(1234), 1, anon_sym_COLON, - ACTIONS(1235), 10, + ACTIONS(1230), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -34631,7 +34184,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1218), 11, + ACTIONS(1210), 11, anon_sym_extern, anon_sym___attribute__, anon_sym_static, @@ -34643,7 +34196,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_restrict, anon_sym__Atomic, sym_identifier, - ACTIONS(1226), 11, + ACTIONS(1218), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -34655,7 +34208,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1220), 14, + ACTIONS(1212), 13, anon_sym_COMMA, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -34663,27 +34216,24 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [570] = 10, + [666] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1222), 1, + ACTIONS(1214), 1, anon_sym_LPAREN2, - ACTIONS(1228), 1, + ACTIONS(1220), 1, anon_sym_STAR, - ACTIONS(1231), 1, + ACTIONS(1226), 1, anon_sym_EQ, - ACTIONS(1239), 1, - anon_sym_SEMI, - ACTIONS(1244), 1, + ACTIONS(1234), 1, anon_sym_COLON, - ACTIONS(1235), 10, + ACTIONS(1230), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -34694,7 +34244,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1218), 11, + ACTIONS(1210), 11, anon_sym_extern, anon_sym___attribute__, anon_sym_static, @@ -34706,7 +34256,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_restrict, anon_sym__Atomic, sym_identifier, - ACTIONS(1226), 11, + ACTIONS(1218), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -34718,7 +34268,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1220), 13, + ACTIONS(1212), 14, anon_sym_COMMA, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -34726,24 +34276,27 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [642] = 9, + [736] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1222), 1, + ACTIONS(1214), 1, anon_sym_LPAREN2, - ACTIONS(1228), 1, + ACTIONS(1220), 1, anon_sym_STAR, - ACTIONS(1231), 1, + ACTIONS(1223), 1, + anon_sym_SEMI, + ACTIONS(1226), 1, anon_sym_EQ, - ACTIONS(1244), 1, + ACTIONS(1236), 1, anon_sym_COLON, - ACTIONS(1235), 10, + ACTIONS(1230), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -34754,7 +34307,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1218), 11, + ACTIONS(1210), 11, anon_sym_extern, anon_sym___attribute__, anon_sym_static, @@ -34766,7 +34319,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_restrict, anon_sym__Atomic, sym_identifier, - ACTIONS(1226), 11, + ACTIONS(1218), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -34778,7 +34331,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1220), 14, + ACTIONS(1212), 13, anon_sym_COMMA, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -34786,27 +34339,24 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [712] = 10, + [808] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1222), 1, + ACTIONS(1214), 1, anon_sym_LPAREN2, - ACTIONS(1228), 1, + ACTIONS(1220), 1, anon_sym_STAR, - ACTIONS(1231), 1, + ACTIONS(1226), 1, anon_sym_EQ, - ACTIONS(1233), 1, + ACTIONS(1236), 1, anon_sym_COLON, - ACTIONS(1239), 1, - anon_sym_SEMI, - ACTIONS(1235), 10, + ACTIONS(1230), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -34817,7 +34367,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1218), 11, + ACTIONS(1210), 11, anon_sym_extern, anon_sym___attribute__, anon_sym_static, @@ -34829,7 +34379,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_restrict, anon_sym__Atomic, sym_identifier, - ACTIONS(1226), 11, + ACTIONS(1218), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -34841,7 +34391,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1220), 13, + ACTIONS(1212), 14, anon_sym_COMMA, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -34849,26 +34399,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [784] = 10, + [878] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1222), 1, + ACTIONS(1214), 1, anon_sym_LPAREN2, - ACTIONS(1228), 1, + ACTIONS(1220), 1, anon_sym_STAR, - ACTIONS(1231), 1, + ACTIONS(1226), 1, anon_sym_EQ, - ACTIONS(1237), 1, + ACTIONS(1232), 1, anon_sym_COLON, - ACTIONS(1239), 1, - anon_sym_SEMI, - ACTIONS(1235), 10, + ACTIONS(1230), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -34879,7 +34428,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1218), 11, + ACTIONS(1210), 11, anon_sym_extern, anon_sym___attribute__, anon_sym_static, @@ -34891,7 +34440,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_restrict, anon_sym__Atomic, sym_identifier, - ACTIONS(1226), 11, + ACTIONS(1218), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -34903,7 +34452,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1220), 13, + ACTIONS(1212), 14, anon_sym_COMMA, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -34911,84 +34460,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [856] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(75), 1, - anon_sym_sizeof, - ACTIONS(916), 1, - anon_sym_LBRACE, - ACTIONS(958), 1, - sym_identifier, - ACTIONS(1202), 1, - anon_sym_LBRACK, - ACTIONS(1204), 1, - anon_sym_DOT, - ACTIONS(1212), 1, - sym_number_literal, - STATE(376), 1, - sym_string_literal, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(73), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - STATE(1041), 2, - sym_initializer_list, - sym_initializer_pair, - ACTIONS(1214), 3, - sym_true, - sym_false, - sym_null, - STATE(936), 3, - sym_subscript_designator, - sym_field_designator, - aux_sym_initializer_pair_repeat1, - ACTIONS(79), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(81), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(505), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(601), 11, - sym__expression, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, [948] = 23, ACTIONS(3), 1, sym_comment, @@ -35002,28 +34480,28 @@ static uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(648), 1, sym_primitive_type, - ACTIONS(1246), 1, + ACTIONS(1238), 1, sym_identifier, - ACTIONS(1248), 1, + ACTIONS(1240), 1, aux_sym_preproc_def_token1, - ACTIONS(1250), 1, + ACTIONS(1242), 1, aux_sym_preproc_if_token1, - ACTIONS(1252), 1, + ACTIONS(1244), 1, aux_sym_preproc_if_token2, - ACTIONS(1256), 1, + ACTIONS(1248), 1, aux_sym_preproc_else_token1, - ACTIONS(1258), 1, + ACTIONS(1250), 1, aux_sym_preproc_elif_token1, - ACTIONS(1260), 1, + ACTIONS(1252), 1, sym_preproc_directive, - STATE(712), 1, + STATE(704), 1, aux_sym_sized_type_specifier_repeat1, - STATE(863), 1, + STATE(853), 1, sym__declaration_specifiers, - ACTIONS(1254), 2, + ACTIONS(1246), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(1111), 2, + STATE(1164), 2, sym_preproc_else_in_field_declaration_list, sym_preproc_elif_in_field_declaration_list, ACTIONS(39), 4, @@ -35036,7 +34514,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(570), 4, + STATE(561), 4, sym_attribute_specifier, sym_storage_class_specifier, sym_type_qualifier, @@ -35047,14 +34525,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(718), 6, + STATE(709), 6, sym__type_specifier, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(398), 8, + STATE(389), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -35063,203 +34541,7 @@ static uint16_t ts_small_parse_table[] = { sym__field_declaration_list_item, sym_field_declaration, aux_sym_preproc_if_in_field_declaration_list_repeat1, - [1045] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(25), 1, - anon_sym_AMP, - ACTIONS(75), 1, - anon_sym_sizeof, - ACTIONS(958), 1, - sym_identifier, - ACTIONS(1262), 1, - anon_sym_STAR, - ACTIONS(1264), 1, - anon_sym_RBRACK, - ACTIONS(1268), 1, - sym_number_literal, - STATE(376), 1, - sym_string_literal, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(73), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - STATE(559), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(1270), 3, - sym_true, - sym_false, - sym_null, - ACTIONS(1266), 4, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - ACTIONS(79), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(81), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(505), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(632), 11, - sym__expression, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - [1134] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(25), 1, - anon_sym_AMP, - ACTIONS(75), 1, - anon_sym_sizeof, - ACTIONS(958), 1, - sym_identifier, - ACTIONS(1272), 1, - anon_sym_STAR, - ACTIONS(1274), 1, - anon_sym_RBRACK, - ACTIONS(1276), 1, - sym_number_literal, - STATE(376), 1, - sym_string_literal, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(73), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - STATE(559), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(1278), 3, - sym_true, - sym_false, - sym_null, - ACTIONS(1266), 4, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - ACTIONS(79), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(81), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(505), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(661), 11, - sym__expression, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - [1223] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(385), 2, - sym_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(81), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1226), 13, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(1220), 29, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [1284] = 23, + [1045] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -35272,28 +34554,28 @@ static uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(648), 1, sym_primitive_type, - ACTIONS(1246), 1, + ACTIONS(1238), 1, sym_identifier, - ACTIONS(1248), 1, + ACTIONS(1240), 1, aux_sym_preproc_def_token1, - ACTIONS(1250), 1, + ACTIONS(1242), 1, aux_sym_preproc_if_token1, - ACTIONS(1256), 1, + ACTIONS(1248), 1, aux_sym_preproc_else_token1, - ACTIONS(1258), 1, + ACTIONS(1250), 1, aux_sym_preproc_elif_token1, - ACTIONS(1260), 1, + ACTIONS(1252), 1, sym_preproc_directive, - ACTIONS(1280), 1, + ACTIONS(1254), 1, aux_sym_preproc_if_token2, - STATE(712), 1, + STATE(704), 1, aux_sym_sized_type_specifier_repeat1, - STATE(863), 1, + STATE(853), 1, sym__declaration_specifiers, - ACTIONS(1254), 2, + ACTIONS(1246), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(1176), 2, + STATE(1111), 2, sym_preproc_else_in_field_declaration_list, sym_preproc_elif_in_field_declaration_list, ACTIONS(39), 4, @@ -35306,7 +34588,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(570), 4, + STATE(561), 4, sym_attribute_specifier, sym_storage_class_specifier, sym_type_qualifier, @@ -35317,14 +34599,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(718), 6, + STATE(709), 6, sym__type_specifier, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(404), 8, + STATE(395), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -35333,7 +34615,7 @@ static uint16_t ts_small_parse_table[] = { sym__field_declaration_list_item, sym_field_declaration, aux_sym_preproc_if_in_field_declaration_list_repeat1, - [1381] = 23, + [1142] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -35346,28 +34628,28 @@ static uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(648), 1, sym_primitive_type, - ACTIONS(1246), 1, + ACTIONS(1238), 1, sym_identifier, - ACTIONS(1248), 1, + ACTIONS(1240), 1, aux_sym_preproc_def_token1, - ACTIONS(1250), 1, + ACTIONS(1242), 1, aux_sym_preproc_if_token1, - ACTIONS(1256), 1, + ACTIONS(1248), 1, aux_sym_preproc_else_token1, - ACTIONS(1258), 1, + ACTIONS(1250), 1, aux_sym_preproc_elif_token1, - ACTIONS(1260), 1, + ACTIONS(1252), 1, sym_preproc_directive, - ACTIONS(1282), 1, + ACTIONS(1256), 1, aux_sym_preproc_if_token2, - STATE(712), 1, + STATE(704), 1, aux_sym_sized_type_specifier_repeat1, - STATE(863), 1, + STATE(853), 1, sym__declaration_specifiers, - ACTIONS(1254), 2, + ACTIONS(1246), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(1251), 2, + STATE(1154), 2, sym_preproc_else_in_field_declaration_list, sym_preproc_elif_in_field_declaration_list, ACTIONS(39), 4, @@ -35380,7 +34662,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(570), 4, + STATE(561), 4, sym_attribute_specifier, sym_storage_class_specifier, sym_type_qualifier, @@ -35391,14 +34673,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(718), 6, + STATE(709), 6, sym__type_specifier, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(377), 8, + STATE(384), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -35407,147 +34689,81 @@ static uint16_t ts_small_parse_table[] = { sym__field_declaration_list_item, sym_field_declaration, aux_sym_preproc_if_in_field_declaration_list_repeat1, - [1478] = 19, + [1239] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(25), 1, - anon_sym_AMP, - ACTIONS(75), 1, - anon_sym_sizeof, - ACTIONS(958), 1, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(45), 1, + anon_sym_enum, + ACTIONS(47), 1, + anon_sym_struct, + ACTIONS(49), 1, + anon_sym_union, + ACTIONS(648), 1, + sym_primitive_type, + ACTIONS(1238), 1, sym_identifier, - ACTIONS(1284), 1, - anon_sym_STAR, - ACTIONS(1286), 1, - anon_sym_RBRACK, - ACTIONS(1288), 1, - sym_number_literal, - STATE(376), 1, - sym_string_literal, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(73), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - STATE(380), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(1290), 3, - sym_true, - sym_false, - sym_null, - ACTIONS(1266), 4, + ACTIONS(1240), 1, + aux_sym_preproc_def_token1, + ACTIONS(1242), 1, + aux_sym_preproc_if_token1, + ACTIONS(1248), 1, + aux_sym_preproc_else_token1, + ACTIONS(1250), 1, + aux_sym_preproc_elif_token1, + ACTIONS(1252), 1, + sym_preproc_directive, + ACTIONS(1258), 1, + aux_sym_preproc_if_token2, + STATE(704), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(853), 1, + sym__declaration_specifiers, + ACTIONS(1246), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + STATE(1160), 2, + sym_preproc_else_in_field_declaration_list, + sym_preproc_elif_in_field_declaration_list, + ACTIONS(39), 4, anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, - ACTIONS(79), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(81), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(505), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(643), 11, - sym__expression, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - [1567] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(25), 1, - anon_sym_AMP, - ACTIONS(75), 1, - anon_sym_sizeof, - ACTIONS(958), 1, - sym_identifier, - ACTIONS(1292), 1, - anon_sym_STAR, - ACTIONS(1294), 1, - anon_sym_RBRACK, - ACTIONS(1296), 1, - sym_number_literal, - STATE(376), 1, - sym_string_literal, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(73), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - STATE(559), 2, + ACTIONS(41), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(561), 4, + sym_attribute_specifier, + sym_storage_class_specifier, sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(1298), 3, - sym_true, - sym_false, - sym_null, - ACTIONS(1266), 4, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - ACTIONS(79), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(81), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(505), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(646), 11, - sym__expression, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - [1656] = 19, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(37), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + STATE(709), 6, + sym__type_specifier, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(395), 8, + sym_preproc_def, + sym_preproc_function_def, + sym_preproc_call, + sym_preproc_if_in_field_declaration_list, + sym_preproc_ifdef_in_field_declaration_list, + sym__field_declaration_list_item, + sym_field_declaration, + aux_sym_preproc_if_in_field_declaration_list_repeat1, + [1336] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -35558,13 +34774,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(958), 1, sym_identifier, - ACTIONS(1300), 1, + ACTIONS(1260), 1, anon_sym_STAR, - ACTIONS(1302), 1, + ACTIONS(1262), 1, anon_sym_RBRACK, - ACTIONS(1304), 1, + ACTIONS(1266), 1, sym_number_literal, - STATE(376), 1, + STATE(379), 1, sym_string_literal, ACTIONS(21), 2, anon_sym_BANG, @@ -35575,14 +34791,14 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(73), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - STATE(375), 2, + STATE(554), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(1306), 3, + ACTIONS(1268), 3, sym_true, sym_false, sym_null, - ACTIONS(1266), 4, + ACTIONS(1264), 4, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -35599,13 +34815,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(505), 5, + STATE(532), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(647), 11, + STATE(622), 11, sym__expression, sym_conditional_expression, sym_assignment_expression, @@ -35617,7 +34833,7 @@ static uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [1745] = 19, + [1425] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -35628,13 +34844,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(958), 1, sym_identifier, - ACTIONS(1308), 1, + ACTIONS(1270), 1, anon_sym_STAR, - ACTIONS(1310), 1, + ACTIONS(1272), 1, anon_sym_RBRACK, - ACTIONS(1312), 1, + ACTIONS(1274), 1, sym_number_literal, - STATE(376), 1, + STATE(379), 1, sym_string_literal, ACTIONS(21), 2, anon_sym_BANG, @@ -35645,14 +34861,14 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(73), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - STATE(559), 2, + STATE(554), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(1314), 3, + ACTIONS(1276), 3, sym_true, sym_false, sym_null, - ACTIONS(1266), 4, + ACTIONS(1264), 4, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -35669,13 +34885,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(505), 5, + STATE(532), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(621), 11, + STATE(648), 11, sym__expression, sym_conditional_expression, sym_assignment_expression, @@ -35687,19 +34903,75 @@ static uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [1834] = 5, + [1514] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(372), 2, + sym_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(81), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(1280), 13, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(1278), 29, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [1575] = 5, ACTIONS(3), 1, sym_comment, - STATE(383), 2, + STATE(372), 2, sym_string_literal, aux_sym_concatenated_string_repeat1, - ACTIONS(1320), 5, + ACTIONS(1286), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(1318), 13, + ACTIONS(1284), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -35713,7 +34985,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1316), 29, + ACTIONS(1282), 29, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -35743,7 +35015,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [1895] = 23, + [1636] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -35756,28 +35028,28 @@ static uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(648), 1, sym_primitive_type, - ACTIONS(1246), 1, + ACTIONS(1238), 1, sym_identifier, - ACTIONS(1248), 1, + ACTIONS(1240), 1, aux_sym_preproc_def_token1, - ACTIONS(1250), 1, + ACTIONS(1242), 1, aux_sym_preproc_if_token1, - ACTIONS(1256), 1, + ACTIONS(1248), 1, aux_sym_preproc_else_token1, - ACTIONS(1258), 1, + ACTIONS(1250), 1, aux_sym_preproc_elif_token1, - ACTIONS(1260), 1, + ACTIONS(1252), 1, sym_preproc_directive, - ACTIONS(1323), 1, + ACTIONS(1289), 1, aux_sym_preproc_if_token2, - STATE(712), 1, + STATE(704), 1, aux_sym_sized_type_specifier_repeat1, - STATE(863), 1, + STATE(853), 1, sym__declaration_specifiers, - ACTIONS(1254), 2, + ACTIONS(1246), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(1093), 2, + STATE(1211), 2, sym_preproc_else_in_field_declaration_list, sym_preproc_elif_in_field_declaration_list, ACTIONS(39), 4, @@ -35790,7 +35062,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(570), 4, + STATE(561), 4, sym_attribute_specifier, sym_storage_class_specifier, sym_type_qualifier, @@ -35801,14 +35073,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(718), 6, + STATE(709), 6, sym__type_specifier, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(404), 8, + STATE(395), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -35817,63 +35089,7 @@ static uint16_t ts_small_parse_table[] = { sym__field_declaration_list_item, sym_field_declaration, aux_sym_preproc_if_in_field_declaration_list_repeat1, - [1992] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(383), 2, - sym_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(81), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1327), 13, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(1325), 29, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [2053] = 23, + [1733] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -35886,28 +35102,28 @@ static uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(648), 1, sym_primitive_type, - ACTIONS(1246), 1, + ACTIONS(1238), 1, sym_identifier, - ACTIONS(1248), 1, + ACTIONS(1240), 1, aux_sym_preproc_def_token1, - ACTIONS(1250), 1, + ACTIONS(1242), 1, aux_sym_preproc_if_token1, - ACTIONS(1256), 1, + ACTIONS(1248), 1, aux_sym_preproc_else_token1, - ACTIONS(1258), 1, + ACTIONS(1250), 1, aux_sym_preproc_elif_token1, - ACTIONS(1260), 1, + ACTIONS(1252), 1, sym_preproc_directive, - ACTIONS(1329), 1, + ACTIONS(1291), 1, aux_sym_preproc_if_token2, - STATE(712), 1, + STATE(704), 1, aux_sym_sized_type_specifier_repeat1, - STATE(863), 1, + STATE(853), 1, sym__declaration_specifiers, - ACTIONS(1254), 2, + ACTIONS(1246), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(1243), 2, + STATE(1103), 2, sym_preproc_else_in_field_declaration_list, sym_preproc_elif_in_field_declaration_list, ACTIONS(39), 4, @@ -35920,7 +35136,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(570), 4, + STATE(561), 4, sym_attribute_specifier, sym_storage_class_specifier, sym_type_qualifier, @@ -35931,14 +35147,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(718), 6, + STATE(709), 6, sym__type_specifier, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(404), 8, + STATE(395), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -35947,7 +35163,7 @@ static uint16_t ts_small_parse_table[] = { sym__field_declaration_list_item, sym_field_declaration, aux_sym_preproc_if_in_field_declaration_list_repeat1, - [2150] = 19, + [1830] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -35958,13 +35174,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(958), 1, sym_identifier, - ACTIONS(1331), 1, + ACTIONS(1293), 1, anon_sym_STAR, - ACTIONS(1333), 1, + ACTIONS(1295), 1, anon_sym_RBRACK, - ACTIONS(1335), 1, + ACTIONS(1297), 1, sym_number_literal, - STATE(376), 1, + STATE(379), 1, sym_string_literal, ACTIONS(21), 2, anon_sym_BANG, @@ -35975,14 +35191,14 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(73), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - STATE(382), 2, + STATE(369), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(1337), 3, + ACTIONS(1299), 3, sym_true, sym_false, sym_null, - ACTIONS(1266), 4, + ACTIONS(1264), 4, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -35999,13 +35215,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(505), 5, + STATE(532), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(622), 11, + STATE(657), 11, sym__expression, sym_conditional_expression, sym_assignment_expression, @@ -36017,7 +35233,7 @@ static uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [2239] = 23, + [1919] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -36030,28 +35246,28 @@ static uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(648), 1, sym_primitive_type, - ACTIONS(1246), 1, + ACTIONS(1238), 1, sym_identifier, - ACTIONS(1248), 1, + ACTIONS(1240), 1, aux_sym_preproc_def_token1, - ACTIONS(1250), 1, + ACTIONS(1242), 1, aux_sym_preproc_if_token1, - ACTIONS(1256), 1, + ACTIONS(1248), 1, aux_sym_preproc_else_token1, - ACTIONS(1258), 1, + ACTIONS(1250), 1, aux_sym_preproc_elif_token1, - ACTIONS(1260), 1, + ACTIONS(1252), 1, sym_preproc_directive, - ACTIONS(1339), 1, + ACTIONS(1301), 1, aux_sym_preproc_if_token2, - STATE(712), 1, + STATE(704), 1, aux_sym_sized_type_specifier_repeat1, - STATE(863), 1, + STATE(853), 1, sym__declaration_specifiers, - ACTIONS(1254), 2, + ACTIONS(1246), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(1165), 2, + STATE(1193), 2, sym_preproc_else_in_field_declaration_list, sym_preproc_elif_in_field_declaration_list, ACTIONS(39), 4, @@ -36064,7 +35280,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(570), 4, + STATE(561), 4, sym_attribute_specifier, sym_storage_class_specifier, sym_type_qualifier, @@ -36075,14 +35291,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(718), 6, + STATE(709), 6, sym__type_specifier, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(404), 8, + STATE(381), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -36091,7 +35307,7 @@ static uint16_t ts_small_parse_table[] = { sym__field_declaration_list_item, sym_field_declaration, aux_sym_preproc_if_in_field_declaration_list_repeat1, - [2336] = 19, + [2016] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -36102,13 +35318,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(958), 1, sym_identifier, - ACTIONS(1341), 1, + ACTIONS(1303), 1, anon_sym_STAR, - ACTIONS(1343), 1, + ACTIONS(1305), 1, anon_sym_RBRACK, - ACTIONS(1345), 1, + ACTIONS(1307), 1, sym_number_literal, - STATE(376), 1, + STATE(379), 1, sym_string_literal, ACTIONS(21), 2, anon_sym_BANG, @@ -36119,14 +35335,14 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(73), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - STATE(559), 2, + STATE(554), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(1347), 3, + ACTIONS(1309), 3, sym_true, sym_false, sym_null, - ACTIONS(1266), 4, + ACTIONS(1264), 4, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -36143,13 +35359,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(505), 5, + STATE(532), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(640), 11, sym__expression, sym_conditional_expression, sym_assignment_expression, @@ -36161,16 +35377,16 @@ static uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [2425] = 8, + [2105] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1222), 1, + ACTIONS(1214), 1, anon_sym_LPAREN2, - ACTIONS(1228), 1, + ACTIONS(1220), 1, anon_sym_STAR, - ACTIONS(1231), 1, + ACTIONS(1226), 1, anon_sym_EQ, - ACTIONS(1235), 10, + ACTIONS(1230), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -36181,7 +35397,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1218), 11, + ACTIONS(1210), 11, anon_sym_extern, anon_sym___attribute__, anon_sym_static, @@ -36193,7 +35409,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_restrict, anon_sym__Atomic, sym_identifier, - ACTIONS(1226), 11, + ACTIONS(1218), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -36205,7 +35421,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1220), 14, + ACTIONS(1212), 14, anon_sym_COMMA, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -36220,147 +35436,63 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [2492] = 19, + [2172] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(25), 1, - anon_sym_AMP, - ACTIONS(75), 1, - anon_sym_sizeof, - ACTIONS(958), 1, - sym_identifier, - ACTIONS(1349), 1, - anon_sym_STAR, - ACTIONS(1351), 1, - anon_sym_RBRACK, - ACTIONS(1353), 1, - sym_number_literal, - STATE(376), 1, + STATE(371), 2, sym_string_literal, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(73), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - STATE(389), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(1355), 3, - sym_true, - sym_false, - sym_null, - ACTIONS(1266), 4, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - ACTIONS(79), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, + aux_sym_concatenated_string_repeat1, ACTIONS(81), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(505), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(625), 11, - sym__expression, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - [2581] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(25), 1, - anon_sym_AMP, - ACTIONS(75), 1, - anon_sym_sizeof, - ACTIONS(958), 1, - sym_identifier, - ACTIONS(1357), 1, - anon_sym_STAR, - ACTIONS(1359), 1, - anon_sym_RBRACK, - ACTIONS(1361), 1, - sym_number_literal, - STATE(376), 1, - sym_string_literal, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(1218), 13, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(73), 2, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(1212), 29, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - STATE(374), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(1363), 3, - sym_true, - sym_false, - sym_null, - ACTIONS(1266), 4, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - ACTIONS(79), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(81), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(505), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(657), 11, - sym__expression, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - [2670] = 23, + anon_sym_DOT, + anon_sym_DASH_GT, + [2233] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -36373,28 +35505,28 @@ static uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(648), 1, sym_primitive_type, - ACTIONS(1246), 1, + ACTIONS(1238), 1, sym_identifier, - ACTIONS(1248), 1, + ACTIONS(1240), 1, aux_sym_preproc_def_token1, - ACTIONS(1250), 1, + ACTIONS(1242), 1, aux_sym_preproc_if_token1, - ACTIONS(1256), 1, + ACTIONS(1248), 1, aux_sym_preproc_else_token1, - ACTIONS(1258), 1, + ACTIONS(1250), 1, aux_sym_preproc_elif_token1, - ACTIONS(1260), 1, + ACTIONS(1252), 1, sym_preproc_directive, - ACTIONS(1365), 1, + ACTIONS(1311), 1, aux_sym_preproc_if_token2, - STATE(712), 1, + STATE(704), 1, aux_sym_sized_type_specifier_repeat1, - STATE(863), 1, + STATE(853), 1, sym__declaration_specifiers, - ACTIONS(1254), 2, + ACTIONS(1246), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(1184), 2, + STATE(1209), 2, sym_preproc_else_in_field_declaration_list, sym_preproc_elif_in_field_declaration_list, ACTIONS(39), 4, @@ -36407,7 +35539,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(570), 4, + STATE(561), 4, sym_attribute_specifier, sym_storage_class_specifier, sym_type_qualifier, @@ -36418,14 +35550,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(718), 6, + STATE(709), 6, sym__type_specifier, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(404), 8, + STATE(373), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -36434,7 +35566,7 @@ static uint16_t ts_small_parse_table[] = { sym__field_declaration_list_item, sym_field_declaration, aux_sym_preproc_if_in_field_declaration_list_repeat1, - [2767] = 23, + [2330] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -36447,28 +35579,28 @@ static uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(648), 1, sym_primitive_type, - ACTIONS(1246), 1, + ACTIONS(1238), 1, sym_identifier, - ACTIONS(1248), 1, + ACTIONS(1240), 1, aux_sym_preproc_def_token1, - ACTIONS(1250), 1, + ACTIONS(1242), 1, aux_sym_preproc_if_token1, - ACTIONS(1256), 1, + ACTIONS(1248), 1, aux_sym_preproc_else_token1, - ACTIONS(1258), 1, + ACTIONS(1250), 1, aux_sym_preproc_elif_token1, - ACTIONS(1260), 1, + ACTIONS(1252), 1, sym_preproc_directive, - ACTIONS(1367), 1, + ACTIONS(1313), 1, aux_sym_preproc_if_token2, - STATE(712), 1, + STATE(704), 1, aux_sym_sized_type_specifier_repeat1, - STATE(863), 1, + STATE(853), 1, sym__declaration_specifiers, - ACTIONS(1254), 2, + ACTIONS(1246), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(1215), 2, + STATE(1159), 2, sym_preproc_else_in_field_declaration_list, sym_preproc_elif_in_field_declaration_list, ACTIONS(39), 4, @@ -36481,7 +35613,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(570), 4, + STATE(561), 4, sym_attribute_specifier, sym_storage_class_specifier, sym_type_qualifier, @@ -36492,14 +35624,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(718), 6, + STATE(709), 6, sym__type_specifier, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(393), 8, + STATE(395), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -36508,7 +35640,7 @@ static uint16_t ts_small_parse_table[] = { sym__field_declaration_list_item, sym_field_declaration, aux_sym_preproc_if_in_field_declaration_list_repeat1, - [2864] = 23, + [2427] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -36521,28 +35653,28 @@ static uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(648), 1, sym_primitive_type, - ACTIONS(1246), 1, + ACTIONS(1238), 1, sym_identifier, - ACTIONS(1248), 1, + ACTIONS(1240), 1, aux_sym_preproc_def_token1, - ACTIONS(1250), 1, + ACTIONS(1242), 1, aux_sym_preproc_if_token1, - ACTIONS(1256), 1, + ACTIONS(1248), 1, aux_sym_preproc_else_token1, - ACTIONS(1258), 1, + ACTIONS(1250), 1, aux_sym_preproc_elif_token1, - ACTIONS(1260), 1, + ACTIONS(1252), 1, sym_preproc_directive, - ACTIONS(1369), 1, + ACTIONS(1315), 1, aux_sym_preproc_if_token2, - STATE(712), 1, + STATE(704), 1, aux_sym_sized_type_specifier_repeat1, - STATE(863), 1, + STATE(853), 1, sym__declaration_specifiers, - ACTIONS(1254), 2, + ACTIONS(1246), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(1189), 2, + STATE(1140), 2, sym_preproc_else_in_field_declaration_list, sym_preproc_elif_in_field_declaration_list, ACTIONS(39), 4, @@ -36555,7 +35687,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(570), 4, + STATE(561), 4, sym_attribute_specifier, sym_storage_class_specifier, sym_type_qualifier, @@ -36566,14 +35698,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(718), 6, + STATE(709), 6, sym__type_specifier, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(388), 8, + STATE(368), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -36582,81 +35714,77 @@ static uint16_t ts_small_parse_table[] = { sym__field_declaration_list_item, sym_field_declaration, aux_sym_preproc_if_in_field_declaration_list_repeat1, - [2961] = 23, + [2524] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(45), 1, - anon_sym_enum, - ACTIONS(47), 1, - anon_sym_struct, - ACTIONS(49), 1, - anon_sym_union, - ACTIONS(648), 1, - sym_primitive_type, - ACTIONS(1246), 1, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(25), 1, + anon_sym_AMP, + ACTIONS(75), 1, + anon_sym_sizeof, + ACTIONS(958), 1, sym_identifier, - ACTIONS(1248), 1, - aux_sym_preproc_def_token1, - ACTIONS(1250), 1, - aux_sym_preproc_if_token1, - ACTIONS(1256), 1, - aux_sym_preproc_else_token1, - ACTIONS(1258), 1, - aux_sym_preproc_elif_token1, - ACTIONS(1260), 1, - sym_preproc_directive, - ACTIONS(1371), 1, - aux_sym_preproc_if_token2, - STATE(712), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(863), 1, - sym__declaration_specifiers, - ACTIONS(1254), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - STATE(1201), 2, - sym_preproc_else_in_field_declaration_list, - sym_preproc_elif_in_field_declaration_list, - ACTIONS(39), 4, + ACTIONS(1317), 1, + anon_sym_STAR, + ACTIONS(1319), 1, + anon_sym_RBRACK, + ACTIONS(1321), 1, + sym_number_literal, + STATE(379), 1, + sym_string_literal, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(73), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + STATE(391), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(1323), 3, + sym_true, + sym_false, + sym_null, + ACTIONS(1264), 4, anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, - ACTIONS(41), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(570), 4, - sym_attribute_specifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(37), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - STATE(718), 6, - sym__type_specifier, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(399), 8, - sym_preproc_def, - sym_preproc_function_def, - sym_preproc_call, - sym_preproc_if_in_field_declaration_list, - sym_preproc_ifdef_in_field_declaration_list, - sym__field_declaration_list_item, - sym_field_declaration, - aux_sym_preproc_if_in_field_declaration_list_repeat1, - [3058] = 23, + ACTIONS(79), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(81), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(532), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(647), 11, + sym__expression, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + [2613] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -36669,28 +35797,28 @@ static uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(648), 1, sym_primitive_type, - ACTIONS(1246), 1, + ACTIONS(1238), 1, sym_identifier, - ACTIONS(1248), 1, + ACTIONS(1240), 1, aux_sym_preproc_def_token1, - ACTIONS(1250), 1, + ACTIONS(1242), 1, aux_sym_preproc_if_token1, - ACTIONS(1256), 1, + ACTIONS(1248), 1, aux_sym_preproc_else_token1, - ACTIONS(1258), 1, + ACTIONS(1250), 1, aux_sym_preproc_elif_token1, - ACTIONS(1260), 1, + ACTIONS(1252), 1, sym_preproc_directive, - ACTIONS(1373), 1, + ACTIONS(1325), 1, aux_sym_preproc_if_token2, - STATE(712), 1, + STATE(704), 1, aux_sym_sized_type_specifier_repeat1, - STATE(863), 1, + STATE(853), 1, sym__declaration_specifiers, - ACTIONS(1254), 2, + ACTIONS(1246), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(1102), 2, + STATE(1198), 2, sym_preproc_else_in_field_declaration_list, sym_preproc_elif_in_field_declaration_list, ACTIONS(39), 4, @@ -36703,7 +35831,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(570), 4, + STATE(561), 4, sym_attribute_specifier, sym_storage_class_specifier, sym_type_qualifier, @@ -36714,14 +35842,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(718), 6, + STATE(709), 6, sym__type_specifier, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(384), 8, + STATE(395), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -36730,7 +35858,7 @@ static uint16_t ts_small_parse_table[] = { sym__field_declaration_list_item, sym_field_declaration, aux_sym_preproc_if_in_field_declaration_list_repeat1, - [3155] = 23, + [2710] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -36743,28 +35871,28 @@ static uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(648), 1, sym_primitive_type, - ACTIONS(1246), 1, + ACTIONS(1238), 1, sym_identifier, - ACTIONS(1248), 1, + ACTIONS(1240), 1, aux_sym_preproc_def_token1, - ACTIONS(1250), 1, + ACTIONS(1242), 1, aux_sym_preproc_if_token1, - ACTIONS(1256), 1, + ACTIONS(1248), 1, aux_sym_preproc_else_token1, - ACTIONS(1258), 1, + ACTIONS(1250), 1, aux_sym_preproc_elif_token1, - ACTIONS(1260), 1, + ACTIONS(1252), 1, sym_preproc_directive, - ACTIONS(1375), 1, + ACTIONS(1327), 1, aux_sym_preproc_if_token2, - STATE(712), 1, + STATE(704), 1, aux_sym_sized_type_specifier_repeat1, - STATE(863), 1, + STATE(853), 1, sym__declaration_specifiers, - ACTIONS(1254), 2, + ACTIONS(1246), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(1101), 2, + STATE(1115), 2, sym_preproc_else_in_field_declaration_list, sym_preproc_elif_in_field_declaration_list, ACTIONS(39), 4, @@ -36777,7 +35905,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(570), 4, + STATE(561), 4, sym_attribute_specifier, sym_storage_class_specifier, sym_type_qualifier, @@ -36788,14 +35916,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(718), 6, + STATE(709), 6, sym__type_specifier, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(404), 8, + STATE(374), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -36804,7 +35932,77 @@ static uint16_t ts_small_parse_table[] = { sym__field_declaration_list_item, sym_field_declaration, aux_sym_preproc_if_in_field_declaration_list_repeat1, - [3252] = 23, + [2807] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(25), 1, + anon_sym_AMP, + ACTIONS(75), 1, + anon_sym_sizeof, + ACTIONS(958), 1, + sym_identifier, + ACTIONS(1329), 1, + anon_sym_STAR, + ACTIONS(1331), 1, + anon_sym_RBRACK, + ACTIONS(1333), 1, + sym_number_literal, + STATE(379), 1, + sym_string_literal, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(73), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + STATE(388), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(1335), 3, + sym_true, + sym_false, + sym_null, + ACTIONS(1264), 4, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + ACTIONS(79), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(81), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(532), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(641), 11, + sym__expression, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + [2896] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -36817,28 +36015,28 @@ static uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(648), 1, sym_primitive_type, - ACTIONS(1246), 1, + ACTIONS(1238), 1, sym_identifier, - ACTIONS(1248), 1, + ACTIONS(1240), 1, aux_sym_preproc_def_token1, - ACTIONS(1250), 1, + ACTIONS(1242), 1, aux_sym_preproc_if_token1, - ACTIONS(1256), 1, + ACTIONS(1248), 1, aux_sym_preproc_else_token1, - ACTIONS(1258), 1, + ACTIONS(1250), 1, aux_sym_preproc_elif_token1, - ACTIONS(1260), 1, + ACTIONS(1252), 1, sym_preproc_directive, - ACTIONS(1377), 1, + ACTIONS(1337), 1, aux_sym_preproc_if_token2, - STATE(712), 1, + STATE(704), 1, aux_sym_sized_type_specifier_repeat1, - STATE(863), 1, + STATE(853), 1, sym__declaration_specifiers, - ACTIONS(1254), 2, + ACTIONS(1246), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(1218), 2, + STATE(1122), 2, sym_preproc_else_in_field_declaration_list, sym_preproc_elif_in_field_declaration_list, ACTIONS(39), 4, @@ -36851,7 +36049,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(570), 4, + STATE(561), 4, sym_attribute_specifier, sym_storage_class_specifier, sym_type_qualifier, @@ -36862,14 +36060,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(718), 6, + STATE(709), 6, sym__type_specifier, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(404), 8, + STATE(366), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -36878,7 +36076,77 @@ static uint16_t ts_small_parse_table[] = { sym__field_declaration_list_item, sym_field_declaration, aux_sym_preproc_if_in_field_declaration_list_repeat1, - [3349] = 23, + [2993] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(25), 1, + anon_sym_AMP, + ACTIONS(75), 1, + anon_sym_sizeof, + ACTIONS(958), 1, + sym_identifier, + ACTIONS(1339), 1, + anon_sym_STAR, + ACTIONS(1341), 1, + anon_sym_RBRACK, + ACTIONS(1343), 1, + sym_number_literal, + STATE(379), 1, + sym_string_literal, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(73), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + STATE(554), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(1345), 3, + sym_true, + sym_false, + sym_null, + ACTIONS(1264), 4, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + ACTIONS(79), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(81), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(532), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(615), 11, + sym__expression, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + [3082] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -36891,28 +36159,28 @@ static uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(648), 1, sym_primitive_type, - ACTIONS(1246), 1, + ACTIONS(1238), 1, sym_identifier, - ACTIONS(1248), 1, + ACTIONS(1240), 1, aux_sym_preproc_def_token1, - ACTIONS(1250), 1, + ACTIONS(1242), 1, aux_sym_preproc_if_token1, - ACTIONS(1256), 1, + ACTIONS(1248), 1, aux_sym_preproc_else_token1, - ACTIONS(1258), 1, + ACTIONS(1250), 1, aux_sym_preproc_elif_token1, - ACTIONS(1260), 1, + ACTIONS(1252), 1, sym_preproc_directive, - ACTIONS(1379), 1, + ACTIONS(1347), 1, aux_sym_preproc_if_token2, - STATE(712), 1, + STATE(704), 1, aux_sym_sized_type_specifier_repeat1, - STATE(863), 1, + STATE(853), 1, sym__declaration_specifiers, - ACTIONS(1254), 2, + ACTIONS(1246), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(1217), 2, + STATE(1084), 2, sym_preproc_else_in_field_declaration_list, sym_preproc_elif_in_field_declaration_list, ACTIONS(39), 4, @@ -36925,7 +36193,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(570), 4, + STATE(561), 4, sym_attribute_specifier, sym_storage_class_specifier, sym_type_qualifier, @@ -36936,14 +36204,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(718), 6, + STATE(709), 6, sym__type_specifier, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(386), 8, + STATE(395), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -36952,6 +36220,216 @@ static uint16_t ts_small_parse_table[] = { sym__field_declaration_list_item, sym_field_declaration, aux_sym_preproc_if_in_field_declaration_list_repeat1, + [3179] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(25), 1, + anon_sym_AMP, + ACTIONS(75), 1, + anon_sym_sizeof, + ACTIONS(958), 1, + sym_identifier, + ACTIONS(1349), 1, + anon_sym_STAR, + ACTIONS(1351), 1, + anon_sym_RBRACK, + ACTIONS(1353), 1, + sym_number_literal, + STATE(379), 1, + sym_string_literal, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(73), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + STATE(370), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(1355), 3, + sym_true, + sym_false, + sym_null, + ACTIONS(1264), 4, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + ACTIONS(79), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(81), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(532), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(654), 11, + sym__expression, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + [3268] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(25), 1, + anon_sym_AMP, + ACTIONS(75), 1, + anon_sym_sizeof, + ACTIONS(958), 1, + sym_identifier, + ACTIONS(1357), 1, + anon_sym_STAR, + ACTIONS(1359), 1, + anon_sym_RBRACK, + ACTIONS(1361), 1, + sym_number_literal, + STATE(379), 1, + sym_string_literal, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(73), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + STATE(554), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(1363), 3, + sym_true, + sym_false, + sym_null, + ACTIONS(1264), 4, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + ACTIONS(79), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(81), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(532), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(627), 11, + sym__expression, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + [3357] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(25), 1, + anon_sym_AMP, + ACTIONS(75), 1, + anon_sym_sizeof, + ACTIONS(958), 1, + sym_identifier, + ACTIONS(1365), 1, + anon_sym_STAR, + ACTIONS(1367), 1, + anon_sym_RBRACK, + ACTIONS(1369), 1, + sym_number_literal, + STATE(379), 1, + sym_string_literal, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(73), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + STATE(377), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(1371), 3, + sym_true, + sym_false, + sym_null, + ACTIONS(1264), 4, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + ACTIONS(79), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(81), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(532), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(618), 11, + sym__expression, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, [3446] = 23, ACTIONS(3), 1, sym_comment, @@ -36965,25 +36443,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(648), 1, sym_primitive_type, - ACTIONS(1381), 1, + ACTIONS(1373), 1, sym_identifier, - ACTIONS(1383), 1, + ACTIONS(1375), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1385), 1, + ACTIONS(1377), 1, anon_sym_RPAREN, - ACTIONS(1387), 1, + ACTIONS(1379), 1, anon_sym_LPAREN2, - ACTIONS(1389), 1, + ACTIONS(1381), 1, anon_sym_STAR, - ACTIONS(1391), 1, + ACTIONS(1383), 1, anon_sym_LBRACK, - STATE(712), 1, + STATE(704), 1, aux_sym_sized_type_specifier_repeat1, - STATE(846), 1, + STATE(838), 1, sym__declaration_specifiers, - STATE(986), 1, + STATE(973), 1, sym_parameter_list, - STATE(998), 1, + STATE(983), 1, sym_parameter_declaration, ACTIONS(39), 4, anon_sym_const, @@ -36995,7 +36473,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(570), 4, + STATE(561), 4, sym_attribute_specifier, sym_storage_class_specifier, sym_type_qualifier, @@ -37006,19 +36484,19 @@ static uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(966), 5, - sym__abstract_declarator, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - STATE(972), 5, + STATE(951), 5, sym__declarator, sym_parenthesized_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - STATE(718), 6, + STATE(972), 5, + sym__abstract_declarator, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + STATE(709), 6, sym__type_specifier, sym_sized_type_specifier, sym_enum_specifier, @@ -37028,59 +36506,7 @@ static uint16_t ts_small_parse_table[] = { [3542] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1118), 13, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(1120), 34, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [3597] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1130), 13, + ACTIONS(1387), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -37094,7 +36520,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1132), 34, + ACTIONS(1385), 34, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -37129,67 +36555,67 @@ static uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [3652] = 20, + [3597] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1393), 1, + ACTIONS(1389), 1, sym_identifier, - ACTIONS(1396), 1, + ACTIONS(1392), 1, aux_sym_preproc_def_token1, - ACTIONS(1399), 1, + ACTIONS(1395), 1, aux_sym_preproc_if_token1, - ACTIONS(1407), 1, + ACTIONS(1403), 1, sym_preproc_directive, - ACTIONS(1413), 1, + ACTIONS(1409), 1, anon_sym___attribute__, - ACTIONS(1422), 1, + ACTIONS(1418), 1, sym_primitive_type, - ACTIONS(1425), 1, + ACTIONS(1421), 1, anon_sym_enum, - ACTIONS(1428), 1, + ACTIONS(1424), 1, anon_sym_struct, - ACTIONS(1431), 1, + ACTIONS(1427), 1, anon_sym_union, - STATE(712), 1, + STATE(704), 1, aux_sym_sized_type_specifier_repeat1, - STATE(863), 1, + STATE(853), 1, sym__declaration_specifiers, - ACTIONS(1404), 2, + ACTIONS(1400), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - ACTIONS(1402), 3, + ACTIONS(1398), 3, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - ACTIONS(1416), 4, + ACTIONS(1412), 4, anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, - ACTIONS(1419), 4, + ACTIONS(1415), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(570), 4, + STATE(561), 4, sym_attribute_specifier, sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(1410), 5, + ACTIONS(1406), 5, anon_sym_extern, anon_sym_static, anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(718), 6, + STATE(709), 6, sym__type_specifier, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(404), 8, + STATE(395), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -37198,65 +36624,117 @@ static uint16_t ts_small_parse_table[] = { sym__field_declaration_list_item, sym_field_declaration, aux_sym_preproc_if_in_field_declaration_list_repeat1, + [3686] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1432), 13, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(1430), 34, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, [3741] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1393), 1, - sym_identifier, - ACTIONS(1402), 1, - aux_sym_preproc_if_token2, - ACTIONS(1413), 1, + ACTIONS(33), 1, anon_sym___attribute__, - ACTIONS(1422), 1, - sym_primitive_type, - ACTIONS(1425), 1, + ACTIONS(45), 1, anon_sym_enum, - ACTIONS(1428), 1, + ACTIONS(47), 1, anon_sym_struct, - ACTIONS(1431), 1, + ACTIONS(49), 1, anon_sym_union, + ACTIONS(648), 1, + sym_primitive_type, + ACTIONS(1238), 1, + sym_identifier, ACTIONS(1434), 1, aux_sym_preproc_def_token1, - ACTIONS(1437), 1, + ACTIONS(1436), 1, aux_sym_preproc_if_token1, - ACTIONS(1443), 1, + ACTIONS(1440), 1, sym_preproc_directive, - STATE(712), 1, + ACTIONS(1442), 1, + anon_sym_RBRACE, + STATE(704), 1, aux_sym_sized_type_specifier_repeat1, - STATE(862), 1, + STATE(855), 1, sym__declaration_specifiers, - ACTIONS(1440), 2, + ACTIONS(1438), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - ACTIONS(1416), 4, + ACTIONS(39), 4, anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, - ACTIONS(1419), 4, + ACTIONS(41), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(570), 4, + STATE(561), 4, sym_attribute_specifier, sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(1410), 5, + ACTIONS(37), 5, anon_sym_extern, anon_sym_static, anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(718), 6, + STATE(709), 6, sym__type_specifier, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(405), 8, + STATE(399), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -37278,19 +36756,19 @@ static uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(648), 1, sym_primitive_type, - ACTIONS(1246), 1, + ACTIONS(1238), 1, sym_identifier, - ACTIONS(1446), 1, + ACTIONS(1444), 1, aux_sym_preproc_def_token1, - ACTIONS(1448), 1, + ACTIONS(1446), 1, aux_sym_preproc_if_token1, + ACTIONS(1448), 1, + aux_sym_preproc_if_token2, ACTIONS(1452), 1, sym_preproc_directive, - ACTIONS(1454), 1, - anon_sym_RBRACE, - STATE(712), 1, + STATE(704), 1, aux_sym_sized_type_specifier_repeat1, - STATE(861), 1, + STATE(854), 1, sym__declaration_specifiers, ACTIONS(1450), 2, aux_sym_preproc_ifdef_token1, @@ -37305,7 +36783,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(570), 4, + STATE(561), 4, sym_attribute_specifier, sym_storage_class_specifier, sym_type_qualifier, @@ -37316,14 +36794,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(718), 6, + STATE(709), 6, sym__type_specifier, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(409), 8, + STATE(402), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -37335,62 +36813,62 @@ static uint16_t ts_small_parse_table[] = { [3915] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, + ACTIONS(1389), 1, + sym_identifier, + ACTIONS(1409), 1, anon_sym___attribute__, - ACTIONS(45), 1, + ACTIONS(1418), 1, + sym_primitive_type, + ACTIONS(1421), 1, anon_sym_enum, - ACTIONS(47), 1, + ACTIONS(1424), 1, anon_sym_struct, - ACTIONS(49), 1, + ACTIONS(1427), 1, anon_sym_union, - ACTIONS(648), 1, - sym_primitive_type, - ACTIONS(1246), 1, - sym_identifier, - ACTIONS(1456), 1, + ACTIONS(1454), 1, aux_sym_preproc_def_token1, - ACTIONS(1458), 1, + ACTIONS(1457), 1, aux_sym_preproc_if_token1, - ACTIONS(1460), 1, - aux_sym_preproc_if_token2, - ACTIONS(1464), 1, + ACTIONS(1463), 1, sym_preproc_directive, - STATE(712), 1, + ACTIONS(1466), 1, + anon_sym_RBRACE, + STATE(704), 1, aux_sym_sized_type_specifier_repeat1, - STATE(862), 1, + STATE(855), 1, sym__declaration_specifiers, - ACTIONS(1462), 2, + ACTIONS(1460), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - ACTIONS(39), 4, + ACTIONS(1412), 4, anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, - ACTIONS(41), 4, + ACTIONS(1415), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(570), 4, + STATE(561), 4, sym_attribute_specifier, sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(37), 5, + ACTIONS(1406), 5, anon_sym_extern, anon_sym_static, anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(718), 6, + STATE(709), 6, sym__type_specifier, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(405), 8, + STATE(399), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -37412,21 +36890,21 @@ static uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(648), 1, sym_primitive_type, - ACTIONS(1246), 1, + ACTIONS(1238), 1, sym_identifier, - ACTIONS(1456), 1, + ACTIONS(1434), 1, aux_sym_preproc_def_token1, - ACTIONS(1458), 1, + ACTIONS(1436), 1, aux_sym_preproc_if_token1, - ACTIONS(1464), 1, + ACTIONS(1440), 1, sym_preproc_directive, - ACTIONS(1466), 1, - aux_sym_preproc_if_token2, - STATE(712), 1, + ACTIONS(1468), 1, + anon_sym_RBRACE, + STATE(704), 1, aux_sym_sized_type_specifier_repeat1, - STATE(862), 1, + STATE(855), 1, sym__declaration_specifiers, - ACTIONS(1462), 2, + ACTIONS(1438), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, ACTIONS(39), 4, @@ -37439,7 +36917,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(570), 4, + STATE(561), 4, sym_attribute_specifier, sym_storage_class_specifier, sym_type_qualifier, @@ -37450,14 +36928,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(718), 6, + STATE(709), 6, sym__type_specifier, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(407), 8, + STATE(397), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -37469,62 +36947,62 @@ static uint16_t ts_small_parse_table[] = { [4089] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, + ACTIONS(1389), 1, + sym_identifier, + ACTIONS(1398), 1, + aux_sym_preproc_if_token2, + ACTIONS(1409), 1, anon_sym___attribute__, - ACTIONS(45), 1, + ACTIONS(1418), 1, + sym_primitive_type, + ACTIONS(1421), 1, anon_sym_enum, - ACTIONS(47), 1, + ACTIONS(1424), 1, anon_sym_struct, - ACTIONS(49), 1, + ACTIONS(1427), 1, anon_sym_union, - ACTIONS(648), 1, - sym_primitive_type, - ACTIONS(1246), 1, - sym_identifier, - ACTIONS(1446), 1, + ACTIONS(1470), 1, aux_sym_preproc_def_token1, - ACTIONS(1448), 1, + ACTIONS(1473), 1, aux_sym_preproc_if_token1, - ACTIONS(1452), 1, + ACTIONS(1479), 1, sym_preproc_directive, - ACTIONS(1468), 1, - anon_sym_RBRACE, - STATE(712), 1, + STATE(704), 1, aux_sym_sized_type_specifier_repeat1, - STATE(861), 1, + STATE(854), 1, sym__declaration_specifiers, - ACTIONS(1450), 2, + ACTIONS(1476), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - ACTIONS(39), 4, + ACTIONS(1412), 4, anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, - ACTIONS(41), 4, + ACTIONS(1415), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(570), 4, + STATE(561), 4, sym_attribute_specifier, sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(37), 5, + ACTIONS(1406), 5, anon_sym_extern, anon_sym_static, anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(718), 6, + STATE(709), 6, sym__type_specifier, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(410), 8, + STATE(401), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -37536,62 +37014,62 @@ static uint16_t ts_small_parse_table[] = { [4176] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1393), 1, - sym_identifier, - ACTIONS(1413), 1, + ACTIONS(33), 1, anon_sym___attribute__, - ACTIONS(1422), 1, - sym_primitive_type, - ACTIONS(1425), 1, + ACTIONS(45), 1, anon_sym_enum, - ACTIONS(1428), 1, + ACTIONS(47), 1, anon_sym_struct, - ACTIONS(1431), 1, + ACTIONS(49), 1, anon_sym_union, - ACTIONS(1470), 1, + ACTIONS(648), 1, + sym_primitive_type, + ACTIONS(1238), 1, + sym_identifier, + ACTIONS(1444), 1, aux_sym_preproc_def_token1, - ACTIONS(1473), 1, + ACTIONS(1446), 1, aux_sym_preproc_if_token1, - ACTIONS(1479), 1, + ACTIONS(1452), 1, sym_preproc_directive, ACTIONS(1482), 1, - anon_sym_RBRACE, - STATE(712), 1, + aux_sym_preproc_if_token2, + STATE(704), 1, aux_sym_sized_type_specifier_repeat1, - STATE(861), 1, + STATE(854), 1, sym__declaration_specifiers, - ACTIONS(1476), 2, + ACTIONS(1450), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - ACTIONS(1416), 4, + ACTIONS(39), 4, anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, - ACTIONS(1419), 4, + ACTIONS(41), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(570), 4, + STATE(561), 4, sym_attribute_specifier, sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(1410), 5, + ACTIONS(37), 5, anon_sym_extern, anon_sym_static, anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(718), 6, + STATE(709), 6, sym__type_specifier, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(410), 8, + STATE(401), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -37601,69 +37079,6 @@ static uint16_t ts_small_parse_table[] = { sym_field_declaration, aux_sym_preproc_if_in_field_declaration_list_repeat1, [4263] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(75), 1, - anon_sym_sizeof, - ACTIONS(916), 1, - anon_sym_LBRACE, - ACTIONS(922), 1, - sym_number_literal, - ACTIONS(958), 1, - sym_identifier, - STATE(376), 1, - sym_string_literal, - STATE(509), 1, - sym_initializer_list, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(73), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(902), 3, - sym_true, - sym_false, - sym_null, - ACTIONS(79), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(81), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(505), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(449), 11, - sym__expression, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - [4343] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -37676,9 +37091,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, ACTIONS(1486), 1, sym_number_literal, - STATE(376), 1, + STATE(379), 1, sym_string_literal, - STATE(1231), 1, + STATE(1175), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -37708,76 +37123,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(505), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(609), 11, - sym__expression, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - [4423] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(75), 1, - anon_sym_sizeof, - ACTIONS(958), 1, - sym_identifier, - ACTIONS(1490), 1, - anon_sym_RPAREN, - ACTIONS(1492), 1, - sym_number_literal, - STATE(376), 1, - sym_string_literal, - STATE(1139), 1, - sym_comma_expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(73), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1494), 3, - sym_true, - sym_false, - sym_null, - ACTIONS(79), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(81), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(505), 5, + STATE(532), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(583), 11, + STATE(573), 11, sym__expression, sym_conditional_expression, sym_assignment_expression, @@ -37789,228 +37141,38 @@ static uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [4503] = 17, + [4343] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, + ACTIONS(906), 1, anon_sym_LPAREN2, - ACTIONS(75), 1, + ACTIONS(916), 1, + anon_sym_LBRACE, + ACTIONS(920), 1, anon_sym_sizeof, - ACTIONS(958), 1, - sym_identifier, - ACTIONS(1496), 1, - anon_sym_RPAREN, - ACTIONS(1498), 1, + ACTIONS(922), 1, sym_number_literal, - STATE(376), 1, + STATE(379), 1, sym_string_literal, - STATE(1132), 1, - sym_comma_expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, + STATE(528), 1, + sym_initializer_list, ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(73), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1500), 3, - sym_true, - sym_false, - sym_null, - ACTIONS(79), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(81), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(505), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(600), 11, - sym__expression, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - [4583] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(75), 1, - anon_sym_sizeof, - ACTIONS(958), 1, - sym_identifier, - ACTIONS(1502), 1, - anon_sym_RPAREN, - ACTIONS(1504), 1, - sym_number_literal, - STATE(376), 1, - sym_string_literal, - STATE(1244), 1, - sym_comma_expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(908), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(73), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1506), 3, - sym_true, - sym_false, - sym_null, - ACTIONS(79), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(81), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(505), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(581), 11, - sym__expression, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - [4663] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(75), 1, - anon_sym_sizeof, - ACTIONS(958), 1, - sym_identifier, - ACTIONS(1508), 1, - anon_sym_RPAREN, - ACTIONS(1510), 1, - sym_number_literal, - STATE(376), 1, - sym_string_literal, - STATE(1136), 1, - sym_comma_expression, - ACTIONS(21), 2, + ACTIONS(910), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(73), 2, + ACTIONS(918), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1512), 3, + ACTIONS(902), 4, sym_true, sym_false, sym_null, - ACTIONS(79), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(81), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(505), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(587), 11, - sym__expression, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - [4743] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(75), 1, - anon_sym_sizeof, - ACTIONS(958), 1, sym_identifier, - ACTIONS(1514), 1, - anon_sym_RPAREN, - ACTIONS(1516), 1, - sym_number_literal, - STATE(376), 1, - sym_string_literal, - STATE(1203), 1, - sym_comma_expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(73), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1518), 3, - sym_true, - sym_false, - sym_null, ACTIONS(79), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -38023,214 +37185,24 @@ static uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(505), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(597), 11, + STATE(460), 16, sym__expression, sym_conditional_expression, sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - [4823] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(75), 1, - anon_sym_sizeof, - ACTIONS(958), 1, - sym_identifier, - ACTIONS(1520), 1, - anon_sym_SEMI, - ACTIONS(1522), 1, - sym_number_literal, - STATE(376), 1, - sym_string_literal, - STATE(1199), 1, - sym_comma_expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(73), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1524), 3, - sym_true, - sym_false, - sym_null, - ACTIONS(79), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(81), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(505), 5, sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(608), 11, - sym__expression, - sym_conditional_expression, - sym_assignment_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, sym_cast_expression, sym_sizeof_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - [4903] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(75), 1, - anon_sym_sizeof, - ACTIONS(958), 1, - sym_identifier, - ACTIONS(1526), 1, - anon_sym_RPAREN, - ACTIONS(1528), 1, - sym_number_literal, - STATE(376), 1, - sym_string_literal, - STATE(1149), 1, - sym_comma_expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(73), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1530), 3, - sym_true, - sym_false, - sym_null, - ACTIONS(79), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(81), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(505), 5, - sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, - sym_parenthesized_expression, - STATE(602), 11, - sym__expression, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - [4983] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(75), 1, - anon_sym_sizeof, - ACTIONS(958), 1, - sym_identifier, - ACTIONS(1532), 1, - anon_sym_RPAREN, - ACTIONS(1534), 1, - sym_number_literal, - STATE(376), 1, - sym_string_literal, - STATE(1103), 1, - sym_comma_expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(73), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1536), 3, - sym_true, - sym_false, - sym_null, - ACTIONS(79), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(81), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(505), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, sym_parenthesized_expression, - STATE(582), 11, - sym__expression, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [5063] = 17, + [4419] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -38239,13 +37211,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(958), 1, sym_identifier, - ACTIONS(1538), 1, - anon_sym_RPAREN, - ACTIONS(1540), 1, + ACTIONS(1490), 1, + anon_sym_SEMI, + ACTIONS(1492), 1, sym_number_literal, - STATE(376), 1, + STATE(379), 1, sym_string_literal, - STATE(1128), 1, + STATE(1101), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -38259,7 +37231,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(73), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1542), 3, + ACTIONS(1494), 3, sym_true, sym_false, sym_null, @@ -38275,13 +37247,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(505), 5, + STATE(532), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(606), 11, + STATE(603), 11, sym__expression, sym_conditional_expression, sym_assignment_expression, @@ -38293,7 +37265,7 @@ static uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [5143] = 17, + [4499] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -38302,13 +37274,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(958), 1, sym_identifier, - ACTIONS(1544), 1, + ACTIONS(1496), 1, anon_sym_RPAREN, - ACTIONS(1546), 1, + ACTIONS(1498), 1, sym_number_literal, - STATE(376), 1, + STATE(379), 1, sym_string_literal, - STATE(1226), 1, + STATE(1136), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -38322,7 +37294,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(73), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1548), 3, + ACTIONS(1500), 3, sym_true, sym_false, sym_null, @@ -38338,13 +37310,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(505), 5, + STATE(532), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(604), 11, + STATE(570), 11, sym__expression, sym_conditional_expression, sym_assignment_expression, @@ -38356,7 +37328,7 @@ static uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [5223] = 17, + [4579] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -38365,13 +37337,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(958), 1, sym_identifier, - ACTIONS(1550), 1, + ACTIONS(1502), 1, anon_sym_RPAREN, - ACTIONS(1552), 1, + ACTIONS(1504), 1, sym_number_literal, - STATE(376), 1, + STATE(379), 1, sym_string_literal, - STATE(1204), 1, + STATE(1162), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -38385,7 +37357,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(73), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1554), 3, + ACTIONS(1506), 3, sym_true, sym_false, sym_null, @@ -38401,13 +37373,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(505), 5, + STATE(532), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(577), 11, + STATE(591), 11, sym__expression, sym_conditional_expression, sym_assignment_expression, @@ -38419,7 +37391,7 @@ static uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [5303] = 17, + [4659] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -38428,76 +37400,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(958), 1, sym_identifier, - ACTIONS(1556), 1, + ACTIONS(1508), 1, anon_sym_RPAREN, - ACTIONS(1558), 1, - sym_number_literal, - STATE(376), 1, - sym_string_literal, - STATE(1193), 1, - sym_comma_expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(73), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1560), 3, - sym_true, - sym_false, - sym_null, - ACTIONS(79), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(81), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(505), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(580), 11, - sym__expression, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - [5383] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(75), 1, - anon_sym_sizeof, - ACTIONS(958), 1, - sym_identifier, - ACTIONS(1562), 1, - anon_sym_SEMI, - ACTIONS(1564), 1, + ACTIONS(1510), 1, sym_number_literal, - STATE(376), 1, + STATE(379), 1, sym_string_literal, - STATE(1104), 1, + STATE(1127), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -38511,7 +37420,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(73), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1566), 3, + ACTIONS(1512), 3, sym_true, sym_false, sym_null, @@ -38527,13 +37436,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(505), 5, + STATE(532), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(599), 11, + STATE(604), 11, sym__expression, sym_conditional_expression, sym_assignment_expression, @@ -38545,7 +37454,7 @@ static uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [5463] = 17, + [4739] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -38554,13 +37463,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(958), 1, sym_identifier, - ACTIONS(1568), 1, + ACTIONS(1514), 1, anon_sym_RPAREN, - ACTIONS(1570), 1, + ACTIONS(1516), 1, sym_number_literal, - STATE(376), 1, + STATE(379), 1, sym_string_literal, - STATE(1134), 1, + STATE(1130), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -38574,7 +37483,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(73), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1572), 3, + ACTIONS(1518), 3, sym_true, sym_false, sym_null, @@ -38590,13 +37499,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(505), 5, + STATE(532), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(591), 11, + STATE(588), 11, sym__expression, sym_conditional_expression, sym_assignment_expression, @@ -38608,7 +37517,7 @@ static uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [5543] = 17, + [4819] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -38617,13 +37526,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(958), 1, sym_identifier, - ACTIONS(1574), 1, + ACTIONS(1520), 1, anon_sym_RPAREN, - ACTIONS(1576), 1, + ACTIONS(1522), 1, sym_number_literal, - STATE(376), 1, + STATE(379), 1, sym_string_literal, - STATE(1234), 1, + STATE(1086), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -38637,7 +37546,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(73), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1578), 3, + ACTIONS(1524), 3, sym_true, sym_false, sym_null, @@ -38653,13 +37562,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(505), 5, + STATE(532), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(575), 11, + STATE(593), 11, sym__expression, sym_conditional_expression, sym_assignment_expression, @@ -38671,7 +37580,7 @@ static uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [5623] = 17, + [4899] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -38680,13 +37589,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(958), 1, sym_identifier, - ACTIONS(1580), 1, + ACTIONS(1526), 1, anon_sym_RPAREN, - ACTIONS(1582), 1, + ACTIONS(1528), 1, sym_number_literal, - STATE(376), 1, + STATE(379), 1, sym_string_literal, - STATE(1205), 1, + STATE(1082), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -38700,7 +37609,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(73), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1584), 3, + ACTIONS(1530), 3, sym_true, sym_false, sym_null, @@ -38716,13 +37625,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(505), 5, + STATE(532), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(615), 11, + STATE(567), 11, sym__expression, sym_conditional_expression, sym_assignment_expression, @@ -38734,7 +37643,7 @@ static uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [5703] = 17, + [4979] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -38743,13 +37652,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(958), 1, sym_identifier, - ACTIONS(1586), 1, - anon_sym_SEMI, - ACTIONS(1588), 1, + ACTIONS(1532), 1, + anon_sym_RPAREN, + ACTIONS(1534), 1, sym_number_literal, - STATE(376), 1, + STATE(379), 1, sym_string_literal, - STATE(1148), 1, + STATE(1142), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -38763,7 +37672,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(73), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1590), 3, + ACTIONS(1536), 3, sym_true, sym_false, sym_null, @@ -38779,13 +37688,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(505), 5, + STATE(532), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(595), 11, + STATE(576), 11, sym__expression, sym_conditional_expression, sym_assignment_expression, @@ -38797,7 +37706,7 @@ static uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [5783] = 17, + [5059] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -38806,13 +37715,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(958), 1, sym_identifier, - ACTIONS(1592), 1, + ACTIONS(1538), 1, anon_sym_RPAREN, - ACTIONS(1594), 1, + ACTIONS(1540), 1, sym_number_literal, - STATE(376), 1, + STATE(379), 1, sym_string_literal, - STATE(1179), 1, + STATE(1124), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -38826,7 +37735,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(73), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1596), 3, + ACTIONS(1542), 3, sym_true, sym_false, sym_null, @@ -38842,13 +37751,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(505), 5, + STATE(532), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(586), 11, + STATE(600), 11, sym__expression, sym_conditional_expression, sym_assignment_expression, @@ -38860,7 +37769,7 @@ static uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [5863] = 17, + [5139] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -38869,13 +37778,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(958), 1, sym_identifier, - ACTIONS(1598), 1, - anon_sym_RPAREN, - ACTIONS(1600), 1, + ACTIONS(1544), 1, + anon_sym_SEMI, + ACTIONS(1546), 1, sym_number_literal, - STATE(376), 1, + STATE(379), 1, sym_string_literal, - STATE(1094), 1, + STATE(1176), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -38889,7 +37798,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(73), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1602), 3, + ACTIONS(1548), 3, sym_true, sym_false, sym_null, @@ -38905,13 +37814,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(505), 5, + STATE(532), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(578), 11, + STATE(584), 11, sym__expression, sym_conditional_expression, sym_assignment_expression, @@ -38923,7 +37832,7 @@ static uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [5943] = 17, + [5219] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -38932,13 +37841,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(958), 1, sym_identifier, - ACTIONS(1604), 1, + ACTIONS(1550), 1, anon_sym_RPAREN, - ACTIONS(1606), 1, + ACTIONS(1552), 1, sym_number_literal, - STATE(376), 1, + STATE(379), 1, sym_string_literal, - STATE(1097), 1, + STATE(1208), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -38952,7 +37861,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(73), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1608), 3, + ACTIONS(1554), 3, sym_true, sym_false, sym_null, @@ -38968,7 +37877,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(505), 5, + STATE(532), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, @@ -38986,7 +37895,7 @@ static uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [6023] = 17, + [5299] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -38995,13 +37904,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(958), 1, sym_identifier, - ACTIONS(1610), 1, + ACTIONS(1556), 1, anon_sym_RPAREN, - ACTIONS(1612), 1, + ACTIONS(1558), 1, sym_number_literal, - STATE(376), 1, + STATE(379), 1, sym_string_literal, - STATE(1106), 1, + STATE(1148), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -39015,7 +37924,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(73), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1614), 3, + ACTIONS(1560), 3, sym_true, sym_false, sym_null, @@ -39031,13 +37940,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(505), 5, + STATE(532), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(617), 11, + STATE(572), 11, sym__expression, sym_conditional_expression, sym_assignment_expression, @@ -39049,7 +37958,7 @@ static uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [6103] = 17, + [5379] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -39058,13 +37967,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(958), 1, sym_identifier, - ACTIONS(1616), 1, + ACTIONS(1562), 1, anon_sym_RPAREN, - ACTIONS(1618), 1, + ACTIONS(1564), 1, sym_number_literal, - STATE(376), 1, + STATE(379), 1, sym_string_literal, - STATE(1091), 1, + STATE(1132), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -39078,7 +37987,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(73), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1620), 3, + ACTIONS(1566), 3, sym_true, sym_false, sym_null, @@ -39094,13 +38003,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(505), 5, + STATE(532), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(588), 11, + STATE(592), 11, sym__expression, sym_conditional_expression, sym_assignment_expression, @@ -39112,68 +38021,7 @@ static uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [6183] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(906), 1, - anon_sym_LPAREN2, - ACTIONS(916), 1, - anon_sym_LBRACE, - ACTIONS(920), 1, - anon_sym_sizeof, - ACTIONS(922), 1, - sym_number_literal, - STATE(376), 1, - sym_string_literal, - STATE(509), 1, - sym_initializer_list, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(908), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(910), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(918), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(902), 4, - sym_true, - sym_false, - sym_null, - sym_identifier, - ACTIONS(79), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(81), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(449), 16, - sym__expression, - sym_conditional_expression, - sym_assignment_expression, - sym_pointer_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_compound_literal_expression, - sym_parenthesized_expression, - sym_char_literal, - sym_concatenated_string, - [6259] = 17, + [5459] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -39182,13 +38030,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(958), 1, sym_identifier, - ACTIONS(1622), 1, + ACTIONS(1568), 1, anon_sym_RPAREN, - ACTIONS(1624), 1, + ACTIONS(1570), 1, sym_number_literal, - STATE(376), 1, + STATE(379), 1, sym_string_literal, - STATE(1168), 1, + STATE(1178), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -39202,70 +38050,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(73), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1626), 3, - sym_true, - sym_false, - sym_null, - ACTIONS(79), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(81), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(505), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(589), 11, - sym__expression, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - [6339] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(75), 1, - anon_sym_sizeof, - ACTIONS(916), 1, - anon_sym_LBRACE, - ACTIONS(958), 1, - sym_identifier, - ACTIONS(1628), 1, - sym_number_literal, - STATE(376), 1, - sym_string_literal, - STATE(1061), 1, - sym_initializer_list, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(73), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1630), 3, + ACTIONS(1572), 3, sym_true, sym_false, sym_null, @@ -39281,13 +38066,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(505), 5, + STATE(532), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(612), 11, + STATE(602), 11, sym__expression, sym_conditional_expression, sym_assignment_expression, @@ -39299,23 +38084,23 @@ static uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [6419] = 17, + [5539] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, ACTIONS(75), 1, anon_sym_sizeof, - ACTIONS(916), 1, - anon_sym_LBRACE, ACTIONS(958), 1, sym_identifier, - ACTIONS(1632), 1, + ACTIONS(1574), 1, + anon_sym_SEMI, + ACTIONS(1576), 1, sym_number_literal, - STATE(376), 1, + STATE(379), 1, sym_string_literal, - STATE(1040), 1, - sym_initializer_list, + STATE(1170), 1, + sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -39328,7 +38113,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(73), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1634), 3, + ACTIONS(1578), 3, sym_true, sym_false, sym_null, @@ -39344,13 +38129,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(505), 5, + STATE(532), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(579), 11, + STATE(599), 11, sym__expression, sym_conditional_expression, sym_assignment_expression, @@ -39362,7 +38147,7 @@ static uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [6499] = 17, + [5619] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -39371,13 +38156,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(958), 1, sym_identifier, - ACTIONS(1636), 1, + ACTIONS(1580), 1, anon_sym_RPAREN, - ACTIONS(1638), 1, + ACTIONS(1582), 1, sym_number_literal, - STATE(376), 1, + STATE(379), 1, sym_string_literal, - STATE(1130), 1, + STATE(1152), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -39391,7 +38176,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(73), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1640), 3, + ACTIONS(1584), 3, sym_true, sym_false, sym_null, @@ -39407,13 +38192,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(505), 5, + STATE(532), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(605), 11, + STATE(581), 11, sym__expression, sym_conditional_expression, sym_assignment_expression, @@ -39425,7 +38210,7 @@ static uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [6579] = 17, + [5699] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -39434,13 +38219,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(958), 1, sym_identifier, - ACTIONS(1642), 1, + ACTIONS(1586), 1, anon_sym_RPAREN, - ACTIONS(1644), 1, + ACTIONS(1588), 1, sym_number_literal, - STATE(376), 1, + STATE(379), 1, sym_string_literal, - STATE(1159), 1, + STATE(1134), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -39454,7 +38239,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(73), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1646), 3, + ACTIONS(1590), 3, sym_true, sym_false, sym_null, @@ -39470,7 +38255,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(505), 5, + STATE(532), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, @@ -39488,23 +38273,23 @@ static uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [6659] = 17, + [5779] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, ACTIONS(75), 1, anon_sym_sizeof, + ACTIONS(916), 1, + anon_sym_LBRACE, ACTIONS(958), 1, sym_identifier, - ACTIONS(1648), 1, - anon_sym_RPAREN, - ACTIONS(1650), 1, + ACTIONS(1592), 1, sym_number_literal, - STATE(376), 1, + STATE(379), 1, sym_string_literal, - STATE(1098), 1, - sym_comma_expression, + STATE(1040), 1, + sym_initializer_list, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -39517,7 +38302,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(73), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1652), 3, + ACTIONS(1594), 3, sym_true, sym_false, sym_null, @@ -39533,13 +38318,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(505), 5, + STATE(532), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(574), 11, + STATE(566), 11, sym__expression, sym_conditional_expression, sym_assignment_expression, @@ -39551,7 +38336,7 @@ static uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [6739] = 17, + [5859] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -39560,13 +38345,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(958), 1, sym_identifier, - ACTIONS(1654), 1, - anon_sym_SEMI, - ACTIONS(1656), 1, + ACTIONS(1596), 1, + anon_sym_RPAREN, + ACTIONS(1598), 1, sym_number_literal, - STATE(376), 1, + STATE(379), 1, sym_string_literal, - STATE(1137), 1, + STATE(1187), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -39580,7 +38365,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(73), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1658), 3, + ACTIONS(1600), 3, sym_true, sym_false, sym_null, @@ -39596,13 +38381,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(505), 5, + STATE(532), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(585), 11, + STATE(595), 11, sym__expression, sym_conditional_expression, sym_assignment_expression, @@ -39614,21 +38399,23 @@ static uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [6819] = 16, + [5939] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, ACTIONS(75), 1, anon_sym_sizeof, + ACTIONS(916), 1, + anon_sym_LBRACE, ACTIONS(958), 1, sym_identifier, - ACTIONS(1660), 1, + ACTIONS(1602), 1, sym_number_literal, - STATE(376), 1, + STATE(379), 1, sym_string_literal, - STATE(1087), 1, - sym_comma_expression, + STATE(1053), 1, + sym_initializer_list, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -39641,7 +38428,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(73), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1662), 3, + ACTIONS(1604), 3, sym_true, sym_false, sym_null, @@ -39657,13 +38444,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(505), 5, + STATE(532), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(571), 11, + STATE(598), 11, sym__expression, sym_conditional_expression, sym_assignment_expression, @@ -39675,21 +38462,23 @@ static uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [6896] = 16, + [6019] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, ACTIONS(75), 1, anon_sym_sizeof, + ACTIONS(916), 1, + anon_sym_LBRACE, + ACTIONS(922), 1, + sym_number_literal, ACTIONS(958), 1, sym_identifier, - ACTIONS(1188), 1, - sym_number_literal, - STATE(376), 1, + STATE(379), 1, sym_string_literal, - STATE(1190), 1, - sym_comma_expression, + STATE(528), 1, + sym_initializer_list, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -39702,7 +38491,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(73), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1190), 3, + ACTIONS(902), 3, sym_true, sym_false, sym_null, @@ -39718,13 +38507,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(505), 5, + STATE(532), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(598), 11, + STATE(460), 11, sym__expression, sym_conditional_expression, sym_assignment_expression, @@ -39736,36 +38525,39 @@ static uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [6973] = 14, + [6099] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(906), 1, + ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(920), 1, + ACTIONS(75), 1, anon_sym_sizeof, - ACTIONS(1666), 1, - anon_sym_RBRACK, - ACTIONS(1668), 1, + ACTIONS(958), 1, + sym_identifier, + ACTIONS(1606), 1, + anon_sym_RPAREN, + ACTIONS(1608), 1, sym_number_literal, - STATE(376), 1, + STATE(379), 1, sym_string_literal, + STATE(1118), 1, + sym_comma_expression, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(908), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(910), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(918), 2, + ACTIONS(73), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1664), 4, + ACTIONS(1610), 3, sym_true, sym_false, sym_null, - sym_identifier, ACTIONS(79), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -39778,24 +38570,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(455), 16, + STATE(532), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(589), 11, sym__expression, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, sym_cast_expression, sym_sizeof_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, - [7046] = 16, + [6179] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -39804,12 +38597,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(958), 1, sym_identifier, - ACTIONS(1670), 1, - anon_sym_SEMI, - ACTIONS(1672), 1, + ACTIONS(1612), 1, + anon_sym_RPAREN, + ACTIONS(1614), 1, sym_number_literal, - STATE(376), 1, + STATE(379), 1, sym_string_literal, + STATE(1117), 1, + sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -39822,7 +38617,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(73), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1674), 3, + ACTIONS(1616), 3, sym_true, sym_false, sym_null, @@ -39838,13 +38633,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(505), 5, + STATE(532), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(639), 11, + STATE(585), 11, sym__expression, sym_conditional_expression, sym_assignment_expression, @@ -39856,7 +38651,7 @@ static uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [7123] = 16, + [6259] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -39865,12 +38660,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(958), 1, sym_identifier, - ACTIONS(1676), 1, - anon_sym_SEMI, - ACTIONS(1678), 1, + ACTIONS(1618), 1, + anon_sym_RPAREN, + ACTIONS(1620), 1, sym_number_literal, - STATE(376), 1, + STATE(379), 1, sym_string_literal, + STATE(1179), 1, + sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -39883,7 +38680,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(73), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1680), 3, + ACTIONS(1622), 3, sym_true, sym_false, sym_null, @@ -39899,13 +38696,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(505), 5, + STATE(532), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(635), 11, + STATE(571), 11, sym__expression, sym_conditional_expression, sym_assignment_expression, @@ -39917,7 +38714,7 @@ static uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [7200] = 16, + [6339] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -39926,12 +38723,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(958), 1, sym_identifier, - ACTIONS(1682), 1, - anon_sym_SEMI, - ACTIONS(1684), 1, + ACTIONS(1624), 1, + anon_sym_RPAREN, + ACTIONS(1626), 1, sym_number_literal, - STATE(376), 1, + STATE(379), 1, sym_string_literal, + STATE(1180), 1, + sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -39944,7 +38743,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(73), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1686), 3, + ACTIONS(1628), 3, sym_true, sym_false, sym_null, @@ -39960,13 +38759,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(505), 5, + STATE(532), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(631), 11, + STATE(569), 11, sym__expression, sym_conditional_expression, sym_assignment_expression, @@ -39978,113 +38777,133 @@ static uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [7277] = 8, + [6419] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1690), 1, + ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(1694), 1, - anon_sym_LBRACK, - STATE(543), 1, - sym_argument_list, - ACTIONS(1696), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1698), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1692), 13, + ACTIONS(75), 1, + anon_sym_sizeof, + ACTIONS(958), 1, + sym_identifier, + ACTIONS(1630), 1, + anon_sym_RPAREN, + ACTIONS(1632), 1, + sym_number_literal, + STATE(379), 1, + sym_string_literal, + STATE(1109), 1, + sym_comma_expression, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(1688), 23, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [7338] = 8, + ACTIONS(73), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1634), 3, + sym_true, + sym_false, + sym_null, + ACTIONS(79), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(81), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(532), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(577), 11, + sym__expression, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + [6499] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1690), 1, + ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(1694), 1, - anon_sym_LBRACK, - STATE(543), 1, - sym_argument_list, - ACTIONS(1696), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1698), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1702), 13, + ACTIONS(75), 1, + anon_sym_sizeof, + ACTIONS(958), 1, + sym_identifier, + ACTIONS(1636), 1, + anon_sym_RPAREN, + ACTIONS(1638), 1, + sym_number_literal, + STATE(379), 1, + sym_string_literal, + STATE(1108), 1, + sym_comma_expression, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(1700), 23, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [7399] = 16, + ACTIONS(73), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1640), 3, + sym_true, + sym_false, + sym_null, + ACTIONS(79), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(81), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(532), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(587), 11, + sym__expression, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + [6579] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -40093,12 +38912,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(958), 1, sym_identifier, - ACTIONS(1704), 1, - anon_sym_SEMI, - ACTIONS(1706), 1, + ACTIONS(1642), 1, + anon_sym_RPAREN, + ACTIONS(1644), 1, sym_number_literal, - STATE(376), 1, + STATE(379), 1, sym_string_literal, + STATE(1106), 1, + sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -40111,7 +38932,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(73), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1708), 3, + ACTIONS(1646), 3, sym_true, sym_false, sym_null, @@ -40127,13 +38948,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(505), 5, + STATE(532), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(624), 11, + STATE(578), 11, sym__expression, sym_conditional_expression, sym_assignment_expression, @@ -40145,7 +38966,7 @@ static uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [7476] = 16, + [6659] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -40154,12 +38975,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(958), 1, sym_identifier, - ACTIONS(1710), 1, - anon_sym_SEMI, - ACTIONS(1712), 1, + ACTIONS(1648), 1, + anon_sym_RPAREN, + ACTIONS(1650), 1, sym_number_literal, - STATE(376), 1, + STATE(379), 1, sym_string_literal, + STATE(1098), 1, + sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -40172,7 +38995,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(73), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1714), 3, + ACTIONS(1652), 3, sym_true, sym_false, sym_null, @@ -40188,13 +39011,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(505), 5, + STATE(532), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(627), 11, + STATE(579), 11, sym__expression, sym_conditional_expression, sym_assignment_expression, @@ -40206,7 +39029,7 @@ static uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [7553] = 16, + [6739] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -40215,12 +39038,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(958), 1, sym_identifier, - ACTIONS(1716), 1, + ACTIONS(1654), 1, anon_sym_SEMI, - ACTIONS(1718), 1, + ACTIONS(1656), 1, sym_number_literal, - STATE(376), 1, + STATE(379), 1, sym_string_literal, + STATE(1201), 1, + sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -40233,7 +39058,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(73), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1720), 3, + ACTIONS(1658), 3, sym_true, sym_false, sym_null, @@ -40249,13 +39074,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(505), 5, + STATE(532), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(633), 11, + STATE(586), 11, sym__expression, sym_conditional_expression, sym_assignment_expression, @@ -40267,19 +39092,81 @@ static uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [7630] = 7, + [6819] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1690), 1, + ACTIONS(906), 1, anon_sym_LPAREN2, - ACTIONS(1694), 1, + ACTIONS(920), 1, + anon_sym_sizeof, + ACTIONS(1662), 1, + anon_sym_RBRACK, + ACTIONS(1664), 1, + sym_number_literal, + STATE(379), 1, + sym_string_literal, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(908), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(910), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(918), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1660), 4, + sym_true, + sym_false, + sym_null, + sym_identifier, + ACTIONS(79), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(81), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(444), 16, + sym__expression, + sym_conditional_expression, + sym_assignment_expression, + sym_pointer_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_compound_literal_expression, + sym_parenthesized_expression, + sym_char_literal, + sym_concatenated_string, + [6892] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1668), 1, + anon_sym_LPAREN2, + ACTIONS(1672), 1, anon_sym_LBRACK, - STATE(543), 1, + STATE(505), 1, sym_argument_list, - ACTIONS(1698), 2, + ACTIONS(1674), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1676), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1724), 13, + ACTIONS(1670), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -40293,7 +39180,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1722), 25, + ACTIONS(1666), 23, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, @@ -40317,24 +39204,205 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + [6953] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1668), 1, + anon_sym_LPAREN2, + ACTIONS(1672), 1, + anon_sym_LBRACK, + ACTIONS(1682), 1, + anon_sym_CARET, + ACTIONS(1684), 1, + anon_sym_AMP, + STATE(505), 1, + sym_argument_list, + ACTIONS(1670), 2, + anon_sym_PIPE, + anon_sym_EQ, + ACTIONS(1674), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - [7689] = 8, + ACTIONS(1676), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1678), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1686), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1688), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1690), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1692), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1680), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1666), 19, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [7030] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1690), 1, + ACTIONS(1668), 1, anon_sym_LPAREN2, + ACTIONS(1670), 1, + anon_sym_EQ, + ACTIONS(1672), 1, + anon_sym_LBRACK, + ACTIONS(1682), 1, + anon_sym_CARET, + ACTIONS(1684), 1, + anon_sym_AMP, ACTIONS(1694), 1, + anon_sym_PIPE, + STATE(505), 1, + sym_argument_list, + ACTIONS(1674), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1676), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1678), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1686), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1688), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1690), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1692), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1680), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1666), 19, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [7109] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1668), 1, + anon_sym_LPAREN2, + ACTIONS(1670), 1, + anon_sym_EQ, + ACTIONS(1672), 1, anon_sym_LBRACK, - STATE(543), 1, + ACTIONS(1682), 1, + anon_sym_CARET, + ACTIONS(1684), 1, + anon_sym_AMP, + ACTIONS(1694), 1, + anon_sym_PIPE, + ACTIONS(1696), 1, + anon_sym_AMP_AMP, + STATE(505), 1, sym_argument_list, - ACTIONS(1696), 2, + ACTIONS(1674), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1698), 2, + ACTIONS(1676), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1678), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1686), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1688), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1690), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1692), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1680), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1666), 18, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [7190] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1668), 1, + anon_sym_LPAREN2, + ACTIONS(1672), 1, + anon_sym_LBRACK, + STATE(505), 1, + sym_argument_list, + ACTIONS(1676), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1728), 13, + ACTIONS(1700), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -40348,7 +39416,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1726), 23, + ACTIONS(1698), 25, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, @@ -40372,98 +39440,265 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [7750] = 16, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + [7249] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, + ACTIONS(1668), 1, anon_sym_LPAREN2, - ACTIONS(75), 1, - anon_sym_sizeof, - ACTIONS(958), 1, - sym_identifier, - ACTIONS(1730), 1, + ACTIONS(1672), 1, + anon_sym_LBRACK, + STATE(505), 1, + sym_argument_list, + ACTIONS(1674), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1676), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1680), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1670), 10, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(1666), 23, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_SEMI, - ACTIONS(1732), 1, - sym_number_literal, - STATE(376), 1, - sym_string_literal, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [7312] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1668), 1, + anon_sym_LPAREN2, + ACTIONS(1672), 1, + anon_sym_LBRACK, + STATE(505), 1, + sym_argument_list, + ACTIONS(1674), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1676), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1678), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, + ACTIONS(1692), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1680), 3, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1704), 6, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - ACTIONS(73), 2, + anon_sym_GT, + anon_sym_LT, + anon_sym_EQ, + ACTIONS(1702), 23, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [7379] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1668), 1, + anon_sym_LPAREN2, + ACTIONS(1672), 1, + anon_sym_LBRACK, + ACTIONS(1682), 1, + anon_sym_CARET, + ACTIONS(1684), 1, + anon_sym_AMP, + ACTIONS(1694), 1, + anon_sym_PIPE, + ACTIONS(1696), 1, + anon_sym_AMP_AMP, + ACTIONS(1708), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1710), 1, + anon_sym_EQ, + STATE(505), 1, + sym_argument_list, + ACTIONS(1674), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1734), 3, - sym_true, - sym_false, - sym_null, - ACTIONS(79), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(81), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(505), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(619), 11, - sym__expression, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - [7827] = 16, + ACTIONS(1676), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1678), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1686), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1688), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1690), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1692), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1680), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1706), 17, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [7462] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, + ACTIONS(1668), 1, anon_sym_LPAREN2, - ACTIONS(75), 1, - anon_sym_sizeof, - ACTIONS(958), 1, - sym_identifier, - ACTIONS(1736), 1, + ACTIONS(1672), 1, + anon_sym_LBRACK, + STATE(505), 1, + sym_argument_list, + ACTIONS(1674), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1676), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1714), 13, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(1712), 23, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_SEMI, - ACTIONS(1738), 1, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [7523] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(906), 1, + anon_sym_LPAREN2, + ACTIONS(920), 1, + anon_sym_sizeof, + ACTIONS(1664), 1, sym_number_literal, - STATE(376), 1, + ACTIONS(1716), 1, + anon_sym_RBRACK, + STATE(379), 1, sym_string_literal, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(73), 2, + ACTIONS(908), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(910), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(918), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1740), 3, + ACTIONS(1660), 4, sym_true, sym_false, sym_null, + sym_identifier, ACTIONS(79), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -40476,25 +39711,24 @@ static uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(505), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(662), 11, + STATE(444), 16, sym__expression, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, - [7904] = 16, + [7596] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -40503,11 +39737,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(958), 1, sym_identifier, - ACTIONS(1742), 1, + ACTIONS(1718), 1, anon_sym_SEMI, - ACTIONS(1744), 1, + ACTIONS(1720), 1, sym_number_literal, - STATE(376), 1, + STATE(379), 1, sym_string_literal, ACTIONS(21), 2, anon_sym_BANG, @@ -40521,7 +39755,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(73), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1746), 3, + ACTIONS(1722), 3, sym_true, sym_false, sym_null, @@ -40537,13 +39771,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(505), 5, + STATE(532), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(667), 11, + STATE(650), 11, sym__expression, sym_conditional_expression, sym_assignment_expression, @@ -40555,36 +39789,37 @@ static uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [7981] = 14, + [7673] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(906), 1, + ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(920), 1, + ACTIONS(75), 1, anon_sym_sizeof, - ACTIONS(1668), 1, + ACTIONS(958), 1, + sym_identifier, + ACTIONS(1724), 1, + anon_sym_SEMI, + ACTIONS(1726), 1, sym_number_literal, - ACTIONS(1748), 1, - anon_sym_RBRACK, - STATE(376), 1, + STATE(379), 1, sym_string_literal, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(908), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(910), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(918), 2, + ACTIONS(73), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1664), 4, + ACTIONS(1728), 3, sym_true, sym_false, sym_null, - sym_identifier, ACTIONS(79), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -40597,78 +39832,131 @@ static uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(455), 16, + STATE(532), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(624), 11, sym__expression, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, sym_cast_expression, sym_sizeof_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, - [8054] = 20, + [7750] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1690), 1, + ACTIONS(1668), 1, anon_sym_LPAREN2, - ACTIONS(1694), 1, + ACTIONS(1672), 1, anon_sym_LBRACK, - ACTIONS(1756), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1758), 1, - anon_sym_AMP_AMP, - ACTIONS(1760), 1, + STATE(505), 1, + sym_argument_list, + ACTIONS(1674), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1676), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1678), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1686), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1688), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1690), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1692), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1680), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1670), 4, anon_sym_PIPE, - ACTIONS(1762), 1, anon_sym_CARET, - ACTIONS(1764), 1, anon_sym_AMP, - ACTIONS(1774), 1, anon_sym_EQ, - ACTIONS(1776), 1, + ACTIONS(1666), 19, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, - STATE(543), 1, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [7823] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1668), 1, + anon_sym_LPAREN2, + ACTIONS(1672), 1, + anon_sym_LBRACK, + STATE(505), 1, sym_argument_list, - ACTIONS(1696), 2, + ACTIONS(1674), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1698), 2, + ACTIONS(1676), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1752), 2, + ACTIONS(1678), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1766), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1768), 2, + ACTIONS(1688), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1770), 2, + ACTIONS(1690), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1772), 2, + ACTIONS(1692), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1754), 3, + ACTIONS(1680), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1750), 16, + ACTIONS(1670), 4, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ, + ACTIONS(1666), 21, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_RBRACK, anon_sym_COLON, + anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -40679,7 +39967,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [8139] = 16, + [7894] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -40688,12 +39976,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(958), 1, sym_identifier, - ACTIONS(1778), 1, + ACTIONS(1730), 1, + anon_sym_SEMI, + ACTIONS(1732), 1, sym_number_literal, - STATE(376), 1, + STATE(379), 1, sym_string_literal, - STATE(1164), 1, - sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -40706,7 +39994,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(73), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1780), 3, + ACTIONS(1734), 3, sym_true, sym_false, sym_null, @@ -40722,13 +40010,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(505), 5, + STATE(532), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(607), 11, + STATE(644), 11, sym__expression, sym_conditional_expression, sym_assignment_expression, @@ -40740,36 +40028,39 @@ static uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [8216] = 8, + [7971] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1690), 1, + ACTIONS(1668), 1, anon_sym_LPAREN2, - ACTIONS(1694), 1, + ACTIONS(1672), 1, anon_sym_LBRACK, - STATE(543), 1, + STATE(505), 1, sym_argument_list, - ACTIONS(1696), 2, + ACTIONS(1674), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1698), 2, + ACTIONS(1676), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1784), 13, + ACTIONS(1678), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(1692), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1680), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(1670), 6, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1782), 23, + ACTIONS(1666), 23, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, @@ -40793,37 +40084,36 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [8277] = 16, + [8038] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, + ACTIONS(906), 1, anon_sym_LPAREN2, - ACTIONS(75), 1, + ACTIONS(920), 1, anon_sym_sizeof, - ACTIONS(958), 1, - sym_identifier, - ACTIONS(1786), 1, - anon_sym_SEMI, - ACTIONS(1788), 1, + ACTIONS(1664), 1, sym_number_literal, - STATE(376), 1, + ACTIONS(1736), 1, + anon_sym_RBRACK, + STATE(379), 1, sym_string_literal, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(73), 2, + ACTIONS(908), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(910), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(918), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1790), 3, + ACTIONS(1660), 4, sym_true, sym_false, sym_null, + sym_identifier, ACTIONS(79), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -40836,54 +40126,54 @@ static uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(505), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(623), 11, + STATE(444), 16, sym__expression, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, - [8354] = 14, + [8111] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(906), 1, + ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(920), 1, + ACTIONS(75), 1, anon_sym_sizeof, - ACTIONS(1668), 1, + ACTIONS(958), 1, + sym_identifier, + ACTIONS(1738), 1, sym_number_literal, - ACTIONS(1792), 1, - anon_sym_RBRACK, - STATE(376), 1, + STATE(379), 1, sym_string_literal, + STATE(1033), 1, + sym_comma_expression, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(908), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(910), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(918), 2, + ACTIONS(73), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1664), 4, + ACTIONS(1740), 3, sym_true, sym_false, sym_null, - sym_identifier, ACTIONS(79), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -40896,53 +40186,55 @@ static uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(455), 16, + STATE(532), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(563), 11, sym__expression, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, sym_cast_expression, sym_sizeof_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, - [8427] = 14, + [8188] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(906), 1, + ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(920), 1, + ACTIONS(75), 1, anon_sym_sizeof, - ACTIONS(1668), 1, + ACTIONS(958), 1, + sym_identifier, + ACTIONS(1742), 1, + anon_sym_RPAREN, + ACTIONS(1744), 1, sym_number_literal, - ACTIONS(1794), 1, - anon_sym_RBRACK, - STATE(376), 1, + STATE(379), 1, sym_string_literal, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(908), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(910), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(918), 2, + ACTIONS(73), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1664), 4, + ACTIONS(1746), 3, sym_true, sym_false, sym_null, - sym_identifier, ACTIONS(79), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -40955,46 +40247,47 @@ static uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(455), 16, + STATE(532), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(565), 11, sym__expression, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, sym_cast_expression, sym_sizeof_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, - [8500] = 10, + [8265] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1690), 1, + ACTIONS(1668), 1, anon_sym_LPAREN2, - ACTIONS(1694), 1, + ACTIONS(1672), 1, anon_sym_LBRACK, - STATE(543), 1, + STATE(505), 1, sym_argument_list, - ACTIONS(1696), 2, + ACTIONS(1674), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1698), 2, + ACTIONS(1676), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1752), 2, + ACTIONS(1678), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1754), 3, + ACTIONS(1680), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1702), 8, + ACTIONS(1670), 8, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -41003,63 +40296,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1700), 23, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [8565] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1690), 1, - anon_sym_LPAREN2, - ACTIONS(1694), 1, - anon_sym_LBRACK, - STATE(543), 1, - sym_argument_list, - ACTIONS(1696), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1698), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1752), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1772), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1754), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1702), 6, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_EQ, - ACTIONS(1700), 23, + ACTIONS(1666), 23, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, @@ -41083,256 +40320,77 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [8632] = 13, + [8330] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1690), 1, + ACTIONS(906), 1, anon_sym_LPAREN2, - ACTIONS(1694), 1, - anon_sym_LBRACK, - STATE(543), 1, - sym_argument_list, - ACTIONS(1696), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1698), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1752), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1768), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1770), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1772), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1754), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1702), 4, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ, - ACTIONS(1700), 21, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, + ACTIONS(920), 1, + anon_sym_sizeof, + ACTIONS(1664), 1, + sym_number_literal, + ACTIONS(1748), 1, anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [8703] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1690), 1, - anon_sym_LPAREN2, - ACTIONS(1694), 1, - anon_sym_LBRACK, - STATE(543), 1, - sym_argument_list, - ACTIONS(1696), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1698), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1752), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1766), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1768), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1770), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1772), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1754), 3, + STATE(379), 1, + sym_string_literal, + ACTIONS(25), 2, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1702), 4, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ, - ACTIONS(1700), 19, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [8776] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1690), 1, - anon_sym_LPAREN2, - ACTIONS(1694), 1, - anon_sym_LBRACK, - ACTIONS(1764), 1, anon_sym_AMP, - STATE(543), 1, - sym_argument_list, - ACTIONS(1696), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1698), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1752), 2, + ACTIONS(908), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1766), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1768), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1770), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1772), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1702), 3, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_EQ, - ACTIONS(1754), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1700), 19, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [8851] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1690), 1, - anon_sym_LPAREN2, - ACTIONS(1694), 1, - anon_sym_LBRACK, - ACTIONS(1762), 1, - anon_sym_CARET, - ACTIONS(1764), 1, - anon_sym_AMP, - STATE(543), 1, - sym_argument_list, - ACTIONS(1696), 2, + ACTIONS(910), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(918), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1698), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1702), 2, - anon_sym_PIPE, - anon_sym_EQ, - ACTIONS(1752), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1766), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1768), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1770), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1772), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1754), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1700), 19, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [8928] = 14, + ACTIONS(1660), 4, + sym_true, + sym_false, + sym_null, + sym_identifier, + ACTIONS(79), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(81), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(444), 16, + sym__expression, + sym_conditional_expression, + sym_assignment_expression, + sym_pointer_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_compound_literal_expression, + sym_parenthesized_expression, + sym_char_literal, + sym_concatenated_string, + [8403] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(906), 1, anon_sym_LPAREN2, ACTIONS(920), 1, anon_sym_sizeof, - ACTIONS(1668), 1, + ACTIONS(1664), 1, sym_number_literal, - ACTIONS(1796), 1, + ACTIONS(1750), 1, anon_sym_RBRACK, - STATE(376), 1, + STATE(379), 1, sym_string_literal, ACTIONS(25), 2, anon_sym_STAR, @@ -41346,7 +40404,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(918), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1664), 4, + ACTIONS(1660), 4, sym_true, sym_false, sym_null, @@ -41363,7 +40421,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(455), 16, + STATE(444), 16, sym__expression, sym_conditional_expression, sym_assignment_expression, @@ -41380,49 +40438,47 @@ static uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, - [9001] = 17, + [8476] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1690), 1, + ACTIONS(1668), 1, anon_sym_LPAREN2, - ACTIONS(1694), 1, + ACTIONS(1672), 1, anon_sym_LBRACK, - ACTIONS(1702), 1, - anon_sym_EQ, - ACTIONS(1760), 1, - anon_sym_PIPE, - ACTIONS(1762), 1, - anon_sym_CARET, - ACTIONS(1764), 1, + ACTIONS(1684), 1, anon_sym_AMP, - STATE(543), 1, + STATE(505), 1, sym_argument_list, - ACTIONS(1696), 2, + ACTIONS(1674), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1698), 2, + ACTIONS(1676), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1752), 2, + ACTIONS(1678), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1766), 2, + ACTIONS(1686), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1768), 2, + ACTIONS(1688), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1770), 2, + ACTIONS(1690), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1772), 2, + ACTIONS(1692), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1754), 3, + ACTIONS(1670), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_EQ, + ACTIONS(1680), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1700), 19, + ACTIONS(1666), 19, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, @@ -41442,39 +40498,97 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [9080] = 11, + [8551] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1690), 1, + ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(1694), 1, + ACTIONS(75), 1, + anon_sym_sizeof, + ACTIONS(958), 1, + sym_identifier, + ACTIONS(1752), 1, + anon_sym_SEMI, + ACTIONS(1754), 1, + sym_number_literal, + STATE(379), 1, + sym_string_literal, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(73), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1756), 3, + sym_true, + sym_false, + sym_null, + ACTIONS(79), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(81), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(532), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(612), 11, + sym__expression, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + [8628] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1668), 1, + anon_sym_LPAREN2, + ACTIONS(1672), 1, anon_sym_LBRACK, - STATE(543), 1, + STATE(505), 1, sym_argument_list, - ACTIONS(1696), 2, + ACTIONS(1674), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1698), 2, + ACTIONS(1676), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1752), 2, + ACTIONS(1760), 13, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1772), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1754), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1800), 6, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1798), 23, + ACTIONS(1758), 23, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, @@ -41498,54 +40612,105 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [9147] = 18, + [8689] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1690), 1, + ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(1694), 1, - anon_sym_LBRACK, - ACTIONS(1702), 1, - anon_sym_EQ, - ACTIONS(1758), 1, - anon_sym_AMP_AMP, - ACTIONS(1760), 1, - anon_sym_PIPE, + ACTIONS(75), 1, + anon_sym_sizeof, + ACTIONS(958), 1, + sym_identifier, ACTIONS(1762), 1, - anon_sym_CARET, + anon_sym_SEMI, ACTIONS(1764), 1, + sym_number_literal, + STATE(379), 1, + sym_string_literal, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, + anon_sym_STAR, anon_sym_AMP, - STATE(543), 1, + ACTIONS(73), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1766), 3, + sym_true, + sym_false, + sym_null, + ACTIONS(79), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(81), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(532), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(626), 11, + sym__expression, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + [8766] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1668), 1, + anon_sym_LPAREN2, + ACTIONS(1672), 1, + anon_sym_LBRACK, + STATE(505), 1, sym_argument_list, - ACTIONS(1696), 2, + ACTIONS(1674), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1698), 2, + ACTIONS(1676), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1752), 2, + ACTIONS(1770), 13, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1766), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1768), 2, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(1770), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1772), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1754), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1700), 18, + anon_sym_EQ, + ACTIONS(1768), 23, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_RBRACK, @@ -41561,28 +40726,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [9228] = 9, + [8827] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1690), 1, - anon_sym_LPAREN2, - ACTIONS(1694), 1, - anon_sym_LBRACK, - STATE(543), 1, - sym_argument_list, - ACTIONS(1696), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1698), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1754), 3, + ACTIONS(1774), 13, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1702), 10, - anon_sym_DASH, - anon_sym_PLUS, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -41591,9 +40743,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1700), 23, + ACTIONS(1772), 30, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -41601,7 +40754,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, @@ -41615,7 +40770,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [9291] = 16, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [8878] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -41624,11 +40783,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(958), 1, sym_identifier, - ACTIONS(1802), 1, - anon_sym_RPAREN, - ACTIONS(1804), 1, + ACTIONS(1776), 1, + anon_sym_SEMI, + ACTIONS(1778), 1, sym_number_literal, - STATE(376), 1, + STATE(379), 1, sym_string_literal, ACTIONS(21), 2, anon_sym_BANG, @@ -41642,7 +40801,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(73), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1806), 3, + ACTIONS(1780), 3, sym_true, sym_false, sym_null, @@ -41658,13 +40817,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(505), 5, + STATE(532), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(572), 11, + STATE(616), 11, sym__expression, sym_conditional_expression, sym_assignment_expression, @@ -41676,60 +40835,301 @@ static uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [9368] = 19, + [8955] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1690), 1, + ACTIONS(906), 1, anon_sym_LPAREN2, - ACTIONS(1694), 1, + ACTIONS(920), 1, + anon_sym_sizeof, + ACTIONS(1664), 1, + sym_number_literal, + ACTIONS(1782), 1, + anon_sym_RBRACK, + STATE(379), 1, + sym_string_literal, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(908), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(910), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(918), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1660), 4, + sym_true, + sym_false, + sym_null, + sym_identifier, + ACTIONS(79), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(81), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(444), 16, + sym__expression, + sym_conditional_expression, + sym_assignment_expression, + sym_pointer_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_compound_literal_expression, + sym_parenthesized_expression, + sym_char_literal, + sym_concatenated_string, + [9028] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(75), 1, + anon_sym_sizeof, + ACTIONS(958), 1, + sym_identifier, + ACTIONS(1180), 1, + sym_number_literal, + STATE(379), 1, + sym_string_literal, + STATE(1200), 1, + sym_comma_expression, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(73), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1182), 3, + sym_true, + sym_false, + sym_null, + ACTIONS(79), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(81), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(532), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(574), 11, + sym__expression, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + [9105] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(906), 1, + anon_sym_LPAREN2, + ACTIONS(920), 1, + anon_sym_sizeof, + ACTIONS(1664), 1, + sym_number_literal, + ACTIONS(1784), 1, + anon_sym_RBRACK, + STATE(379), 1, + sym_string_literal, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(908), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(910), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(918), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1660), 4, + sym_true, + sym_false, + sym_null, + sym_identifier, + ACTIONS(79), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(81), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(444), 16, + sym__expression, + sym_conditional_expression, + sym_assignment_expression, + sym_pointer_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_compound_literal_expression, + sym_parenthesized_expression, + sym_char_literal, + sym_concatenated_string, + [9178] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(75), 1, + anon_sym_sizeof, + ACTIONS(958), 1, + sym_identifier, + ACTIONS(1786), 1, + anon_sym_SEMI, + ACTIONS(1788), 1, + sym_number_literal, + STATE(379), 1, + sym_string_literal, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(73), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1790), 3, + sym_true, + sym_false, + sym_null, + ACTIONS(79), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(81), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(532), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(658), 11, + sym__expression, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + [9255] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1668), 1, + anon_sym_LPAREN2, + ACTIONS(1672), 1, anon_sym_LBRACK, - ACTIONS(1756), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1758), 1, - anon_sym_AMP_AMP, - ACTIONS(1760), 1, - anon_sym_PIPE, - ACTIONS(1762), 1, + ACTIONS(1682), 1, anon_sym_CARET, - ACTIONS(1764), 1, + ACTIONS(1684), 1, anon_sym_AMP, - ACTIONS(1810), 1, + ACTIONS(1694), 1, + anon_sym_PIPE, + ACTIONS(1696), 1, + anon_sym_AMP_AMP, + ACTIONS(1708), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1794), 1, anon_sym_EQ, - STATE(543), 1, + ACTIONS(1796), 1, + anon_sym_QMARK, + STATE(505), 1, sym_argument_list, - ACTIONS(1696), 2, + ACTIONS(1674), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1698), 2, + ACTIONS(1676), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1752), 2, + ACTIONS(1678), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1766), 2, + ACTIONS(1686), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1768), 2, + ACTIONS(1688), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1770), 2, + ACTIONS(1690), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1772), 2, + ACTIONS(1692), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1754), 3, + ACTIONS(1680), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1808), 17, + ACTIONS(1792), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_RBRACK, anon_sym_COLON, - anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -41740,85 +41140,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [9451] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(45), 1, - anon_sym_enum, - ACTIONS(47), 1, - anon_sym_struct, - ACTIONS(49), 1, - anon_sym_union, - ACTIONS(648), 1, - sym_primitive_type, - ACTIONS(1246), 1, - sym_identifier, - ACTIONS(1383), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1385), 1, - anon_sym_RPAREN, - ACTIONS(1391), 1, - anon_sym_LBRACK, - ACTIONS(1812), 1, - anon_sym_LPAREN2, - ACTIONS(1814), 1, - anon_sym_STAR, - STATE(712), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(846), 1, - sym__declaration_specifiers, - STATE(986), 1, - sym_parameter_list, - STATE(998), 1, - sym_parameter_declaration, - ACTIONS(39), 4, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - ACTIONS(41), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(570), 4, - sym_attribute_specifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(37), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - STATE(966), 5, - sym__abstract_declarator, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - STATE(718), 6, - sym__type_specifier, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - [9540] = 14, + [9340] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(906), 1, anon_sym_LPAREN2, ACTIONS(920), 1, anon_sym_sizeof, - ACTIONS(1668), 1, + ACTIONS(1664), 1, sym_number_literal, - ACTIONS(1816), 1, + ACTIONS(1798), 1, anon_sym_RBRACK, - STATE(376), 1, + STATE(379), 1, sym_string_literal, ACTIONS(25), 2, anon_sym_STAR, @@ -41832,7 +41165,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(918), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1664), 4, + ACTIONS(1660), 4, sym_true, sym_false, sym_null, @@ -41849,7 +41182,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(455), 16, + STATE(444), 16, sym__expression, sym_conditional_expression, sym_assignment_expression, @@ -41866,7 +41199,7 @@ static uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, - [9613] = 16, + [9413] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -41875,11 +41208,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(958), 1, sym_identifier, - ACTIONS(1818), 1, + ACTIONS(1800), 1, anon_sym_SEMI, - ACTIONS(1820), 1, + ACTIONS(1802), 1, sym_number_literal, - STATE(376), 1, + STATE(379), 1, sym_string_literal, ACTIONS(21), 2, anon_sym_BANG, @@ -41893,7 +41226,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(73), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1822), 3, + ACTIONS(1804), 3, sym_true, sym_false, sym_null, @@ -41909,13 +41242,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(505), 5, + STATE(532), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(628), 11, + STATE(630), 11, sym__expression, sym_conditional_expression, sym_assignment_expression, @@ -41927,18 +41260,18 @@ static uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [9690] = 14, + [9490] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(906), 1, anon_sym_LPAREN2, ACTIONS(920), 1, anon_sym_sizeof, - ACTIONS(1668), 1, + ACTIONS(1664), 1, sym_number_literal, - ACTIONS(1824), 1, + ACTIONS(1806), 1, anon_sym_RBRACK, - STATE(376), 1, + STATE(379), 1, sym_string_literal, ACTIONS(25), 2, anon_sym_STAR, @@ -41952,7 +41285,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(918), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1664), 4, + ACTIONS(1660), 4, sym_true, sym_false, sym_null, @@ -41969,7 +41302,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(455), 16, + STATE(444), 16, sym__expression, sym_conditional_expression, sym_assignment_expression, @@ -41986,18 +41319,18 @@ static uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, - [9763] = 14, + [9563] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(906), 1, anon_sym_LPAREN2, ACTIONS(920), 1, anon_sym_sizeof, - ACTIONS(1668), 1, + ACTIONS(1664), 1, sym_number_literal, - ACTIONS(1826), 1, + ACTIONS(1808), 1, anon_sym_RBRACK, - STATE(376), 1, + STATE(379), 1, sym_string_literal, ACTIONS(25), 2, anon_sym_STAR, @@ -42011,7 +41344,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(918), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1664), 4, + ACTIONS(1660), 4, sym_true, sym_false, sym_null, @@ -42028,7 +41361,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(455), 16, + STATE(444), 16, sym__expression, sym_conditional_expression, sym_assignment_expression, @@ -42045,36 +41378,37 @@ static uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, - [9836] = 14, + [9636] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(906), 1, + ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(920), 1, + ACTIONS(75), 1, anon_sym_sizeof, - ACTIONS(1668), 1, + ACTIONS(958), 1, + sym_identifier, + ACTIONS(1810), 1, + anon_sym_SEMI, + ACTIONS(1812), 1, sym_number_literal, - ACTIONS(1828), 1, - anon_sym_RBRACK, - STATE(376), 1, + STATE(379), 1, sym_string_literal, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(908), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(910), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(918), 2, + ACTIONS(73), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1664), 4, + ACTIONS(1814), 3, sym_true, sym_false, sym_null, - sym_identifier, ACTIONS(79), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -42087,24 +41421,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(455), 16, + STATE(532), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(653), 11, sym__expression, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, sym_cast_expression, sym_sizeof_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, - [9909] = 16, + [9713] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -42113,11 +41448,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(958), 1, sym_identifier, - ACTIONS(1830), 1, + ACTIONS(1816), 1, anon_sym_SEMI, - ACTIONS(1832), 1, + ACTIONS(1818), 1, sym_number_literal, - STATE(376), 1, + STATE(379), 1, sym_string_literal, ACTIONS(21), 2, anon_sym_BANG, @@ -42131,7 +41466,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(73), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1834), 3, + ACTIONS(1820), 3, sym_true, sym_false, sym_null, @@ -42147,13 +41482,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(505), 5, + STATE(532), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(630), 11, + STATE(656), 11, sym__expression, sym_conditional_expression, sym_assignment_expression, @@ -42165,36 +41500,104 @@ static uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [9986] = 14, + [9790] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(906), 1, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(45), 1, + anon_sym_enum, + ACTIONS(47), 1, + anon_sym_struct, + ACTIONS(49), 1, + anon_sym_union, + ACTIONS(648), 1, + sym_primitive_type, + ACTIONS(1238), 1, + sym_identifier, + ACTIONS(1375), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1377), 1, + anon_sym_RPAREN, + ACTIONS(1383), 1, + anon_sym_LBRACK, + ACTIONS(1822), 1, anon_sym_LPAREN2, - ACTIONS(920), 1, + ACTIONS(1824), 1, + anon_sym_STAR, + STATE(704), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(838), 1, + sym__declaration_specifiers, + STATE(973), 1, + sym_parameter_list, + STATE(983), 1, + sym_parameter_declaration, + ACTIONS(39), 4, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + ACTIONS(41), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(561), 4, + sym_attribute_specifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(37), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + STATE(972), 5, + sym__abstract_declarator, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + STATE(709), 6, + sym__type_specifier, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + [9879] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(75), 1, anon_sym_sizeof, - ACTIONS(1668), 1, + ACTIONS(958), 1, + sym_identifier, + ACTIONS(1826), 1, + anon_sym_SEMI, + ACTIONS(1828), 1, sym_number_literal, - ACTIONS(1836), 1, - anon_sym_RBRACK, - STATE(376), 1, + STATE(379), 1, sym_string_literal, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(908), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(910), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(918), 2, + ACTIONS(73), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1664), 4, + ACTIONS(1830), 3, sym_true, sym_false, sym_null, - sym_identifier, ACTIONS(79), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -42207,72 +41610,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(455), 16, + STATE(532), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(629), 11, sym__expression, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, sym_cast_expression, sym_sizeof_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, - [10059] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1840), 13, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(1838), 30, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [10110] = 15, + [9956] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -42281,9 +41637,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(958), 1, sym_identifier, - ACTIONS(1842), 1, + ACTIONS(1832), 1, + anon_sym_SEMI, + ACTIONS(1834), 1, sym_number_literal, - STATE(376), 1, + STATE(379), 1, sym_string_literal, ACTIONS(21), 2, anon_sym_BANG, @@ -42297,7 +41655,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(73), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1844), 3, + ACTIONS(1836), 3, sym_true, sym_false, sym_null, @@ -42313,13 +41671,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(505), 5, + STATE(532), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(640), 11, + STATE(651), 11, sym__expression, sym_conditional_expression, sym_assignment_expression, @@ -42331,60 +41689,7 @@ static uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [10184] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1222), 1, - anon_sym_LPAREN2, - ACTIONS(1228), 1, - anon_sym_STAR, - ACTIONS(1231), 1, - anon_sym_EQ, - ACTIONS(1239), 2, - anon_sym_RPAREN, - anon_sym_LBRACK, - ACTIONS(1846), 4, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - ACTIONS(1235), 10, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - ACTIONS(1226), 11, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1220), 12, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [10246] = 15, + [10033] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -42393,10 +41698,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(958), 1, sym_identifier, - ACTIONS(1848), 1, + ACTIONS(1838), 1, sym_number_literal, - STATE(376), 1, + STATE(379), 1, sym_string_literal, + STATE(1194), 1, + sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -42409,7 +41716,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(73), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1850), 3, + ACTIONS(1840), 3, sym_true, sym_false, sym_null, @@ -42425,13 +41732,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(505), 5, + STATE(532), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(454), 11, + STATE(583), 11, sym__expression, sym_conditional_expression, sym_assignment_expression, @@ -42443,34 +41750,35 @@ static uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [10320] = 13, + [10110] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(906), 1, + ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(920), 1, + ACTIONS(75), 1, anon_sym_sizeof, - ACTIONS(1668), 1, + ACTIONS(958), 1, + sym_identifier, + ACTIONS(1842), 1, sym_number_literal, - STATE(376), 1, + STATE(379), 1, sym_string_literal, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(908), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(910), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(918), 2, + ACTIONS(73), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1664), 4, + ACTIONS(1844), 3, sym_true, sym_false, sym_null, - sym_identifier, ACTIONS(79), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -42483,33 +41791,34 @@ static uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(455), 16, + STATE(532), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(440), 11, sym__expression, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, sym_cast_expression, sym_sizeof_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, - [10390] = 13, + [10184] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(906), 1, anon_sym_LPAREN2, ACTIONS(920), 1, anon_sym_sizeof, - ACTIONS(1854), 1, + ACTIONS(1848), 1, sym_number_literal, - STATE(376), 1, + STATE(379), 1, sym_string_literal, ACTIONS(25), 2, anon_sym_STAR, @@ -42523,7 +41832,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(918), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1852), 4, + ACTIONS(1846), 4, sym_true, sym_false, sym_null, @@ -42540,7 +41849,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(469), 16, + STATE(455), 16, sym__expression, sym_conditional_expression, sym_assignment_expression, @@ -42557,7 +41866,54 @@ static uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, - [10460] = 15, + [10254] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1852), 13, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(1850), 29, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [10304] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -42566,9 +41922,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(958), 1, sym_identifier, - ACTIONS(1856), 1, + ACTIONS(1854), 1, sym_number_literal, - STATE(376), 1, + STATE(379), 1, sym_string_literal, ACTIONS(21), 2, anon_sym_BANG, @@ -42582,7 +41938,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(73), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1858), 3, + ACTIONS(1856), 3, sym_true, sym_false, sym_null, @@ -42598,13 +41954,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(505), 5, + STATE(532), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(656), 11, + STATE(642), 11, sym__expression, sym_conditional_expression, sym_assignment_expression, @@ -42616,34 +41972,82 @@ static uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [10534] = 13, + [10378] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(906), 1, + ACTIONS(1860), 13, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(1858), 29, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(920), 1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [10428] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(75), 1, anon_sym_sizeof, + ACTIONS(958), 1, + sym_identifier, ACTIONS(1862), 1, sym_number_literal, - STATE(376), 1, + STATE(379), 1, sym_string_literal, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(908), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(910), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(918), 2, + ACTIONS(73), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1860), 4, + ACTIONS(1864), 3, sym_true, sym_false, sym_null, - sym_identifier, ACTIONS(79), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -42656,27 +42060,28 @@ static uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(470), 16, + STATE(532), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(605), 11, sym__expression, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, sym_cast_expression, sym_sizeof_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, - [10604] = 3, + [10502] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1866), 13, + ACTIONS(1868), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -42690,7 +42095,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1864), 29, + ACTIONS(1866), 29, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -42720,10 +42125,69 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [10654] = 3, + [10552] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(75), 1, + anon_sym_sizeof, + ACTIONS(958), 1, + sym_identifier, + ACTIONS(1870), 1, + sym_number_literal, + STATE(379), 1, + sym_string_literal, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(73), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1872), 3, + sym_true, + sym_false, + sym_null, + ACTIONS(79), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(81), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(532), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(623), 11, + sym__expression, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + [10626] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1870), 13, + ACTIONS(1876), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -42737,7 +42201,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1868), 29, + ACTIONS(1874), 29, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -42767,64 +42231,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [10704] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(906), 1, - anon_sym_LPAREN2, - ACTIONS(920), 1, - anon_sym_sizeof, - ACTIONS(1874), 1, - sym_number_literal, - STATE(376), 1, - sym_string_literal, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(908), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(910), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(918), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1872), 4, - sym_true, - sym_false, - sym_null, - sym_identifier, - ACTIONS(79), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(81), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(471), 16, - sym__expression, - sym_conditional_expression, - sym_assignment_expression, - sym_pointer_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_compound_literal_expression, - sym_parenthesized_expression, - sym_char_literal, - sym_concatenated_string, - [10774] = 15, + [10676] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -42833,9 +42240,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(958), 1, sym_identifier, - ACTIONS(1876), 1, + ACTIONS(1878), 1, sym_number_literal, - STATE(376), 1, + STATE(379), 1, sym_string_literal, ACTIONS(21), 2, anon_sym_BANG, @@ -42849,7 +42256,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(73), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1878), 3, + ACTIONS(1880), 3, sym_true, sym_false, sym_null, @@ -42865,13 +42272,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(505), 5, + STATE(532), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(462), 11, + STATE(551), 11, sym__expression, sym_conditional_expression, sym_assignment_expression, @@ -42883,18 +42290,18 @@ static uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [10848] = 15, + [10750] = 15, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, ACTIONS(75), 1, anon_sym_sizeof, ACTIONS(958), 1, sym_identifier, - ACTIONS(1880), 1, - anon_sym_LPAREN2, ACTIONS(1882), 1, sym_number_literal, - STATE(376), 1, + STATE(379), 1, sym_string_literal, ACTIONS(21), 2, anon_sym_BANG, @@ -42924,13 +42331,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(505), 5, + STATE(532), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(556), 11, + STATE(610), 11, sym__expression, sym_conditional_expression, sym_assignment_expression, @@ -42942,34 +42349,82 @@ static uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [10922] = 13, + [10824] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(906), 1, + ACTIONS(1888), 13, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(1886), 29, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(920), 1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [10874] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(75), 1, anon_sym_sizeof, - ACTIONS(1876), 1, + ACTIONS(958), 1, + sym_identifier, + ACTIONS(1890), 1, + anon_sym_LPAREN2, + ACTIONS(1892), 1, sym_number_literal, - STATE(376), 1, + STATE(379), 1, sym_string_literal, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(908), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(910), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(918), 2, + ACTIONS(73), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1878), 4, + ACTIONS(1894), 3, sym_true, sym_false, sym_null, - sym_identifier, ACTIONS(79), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -42982,33 +42437,34 @@ static uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(462), 16, + STATE(532), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(559), 11, sym__expression, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, sym_cast_expression, sym_sizeof_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, - [10992] = 13, + [10948] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(906), 1, anon_sym_LPAREN2, ACTIONS(920), 1, anon_sym_sizeof, - ACTIONS(1888), 1, + ACTIONS(1664), 1, sym_number_literal, - STATE(376), 1, + STATE(379), 1, sym_string_literal, ACTIONS(25), 2, anon_sym_STAR, @@ -43022,7 +42478,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(918), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1886), 4, + ACTIONS(1660), 4, sym_true, sym_false, sym_null, @@ -43039,7 +42495,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(473), 16, + STATE(444), 16, sym__expression, sym_conditional_expression, sym_assignment_expression, @@ -43056,34 +42512,35 @@ static uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, - [11062] = 13, + [11018] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(906), 1, + ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(920), 1, + ACTIONS(75), 1, anon_sym_sizeof, - ACTIONS(1892), 1, + ACTIONS(958), 1, + sym_identifier, + ACTIONS(1896), 1, sym_number_literal, - STATE(376), 1, + STATE(379), 1, sym_string_literal, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(908), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(910), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(918), 2, + ACTIONS(73), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1890), 4, + ACTIONS(1898), 3, sym_true, sym_false, sym_null, - sym_identifier, ACTIONS(79), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -43096,33 +42553,34 @@ static uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(475), 16, + STATE(532), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(549), 11, sym__expression, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, sym_cast_expression, sym_sizeof_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, - [11132] = 13, + [11092] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(906), 1, anon_sym_LPAREN2, ACTIONS(920), 1, anon_sym_sizeof, - ACTIONS(1896), 1, + ACTIONS(1842), 1, sym_number_literal, - STATE(376), 1, + STATE(379), 1, sym_string_literal, ACTIONS(25), 2, anon_sym_STAR, @@ -43136,7 +42594,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(918), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1894), 4, + ACTIONS(1844), 4, sym_true, sym_false, sym_null, @@ -43153,7 +42611,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(450), 16, + STATE(440), 16, sym__expression, sym_conditional_expression, sym_assignment_expression, @@ -43170,7 +42628,7 @@ static uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, - [11202] = 15, + [11162] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -43179,9 +42637,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(958), 1, sym_identifier, - ACTIONS(1898), 1, + ACTIONS(1900), 1, sym_number_literal, - STATE(376), 1, + STATE(379), 1, sym_string_literal, ACTIONS(21), 2, anon_sym_BANG, @@ -43195,7 +42653,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(73), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1900), 3, + ACTIONS(1902), 3, sym_true, sym_false, sym_null, @@ -43211,13 +42669,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(505), 5, + STATE(532), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(645), 11, + STATE(462), 11, sym__expression, sym_conditional_expression, sym_assignment_expression, @@ -43229,65 +42687,16 @@ static uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [11276] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1231), 1, - anon_sym_EQ, - ACTIONS(1235), 10, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - ACTIONS(1226), 12, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1220), 19, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [11330] = 13, + [11236] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(906), 1, anon_sym_LPAREN2, ACTIONS(920), 1, anon_sym_sizeof, - ACTIONS(1904), 1, + ACTIONS(1906), 1, sym_number_literal, - STATE(376), 1, + STATE(379), 1, sym_string_literal, ACTIONS(25), 2, anon_sym_STAR, @@ -43301,7 +42710,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(918), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1902), 4, + ACTIONS(1904), 4, sym_true, sym_false, sym_null, @@ -43318,7 +42727,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(476), 16, + STATE(451), 16, sym__expression, sym_conditional_expression, sym_assignment_expression, @@ -43335,35 +42744,34 @@ static uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, - [11400] = 15, + [11306] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, + ACTIONS(906), 1, anon_sym_LPAREN2, - ACTIONS(75), 1, + ACTIONS(920), 1, anon_sym_sizeof, - ACTIONS(958), 1, - sym_identifier, - ACTIONS(1906), 1, + ACTIONS(1900), 1, sym_number_literal, - STATE(376), 1, + STATE(379), 1, sym_string_literal, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(73), 2, + ACTIONS(908), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(910), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(918), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1908), 3, + ACTIONS(1902), 4, sym_true, sym_false, sym_null, + sym_identifier, ACTIONS(79), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -43376,53 +42784,51 @@ static uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(505), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(562), 11, + STATE(462), 16, sym__expression, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, - [11474] = 15, + [11376] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(75), 1, + ACTIONS(920), 1, anon_sym_sizeof, - ACTIONS(958), 1, - sym_identifier, ACTIONS(1910), 1, + anon_sym_LPAREN2, + ACTIONS(1912), 1, sym_number_literal, - STATE(376), 1, + STATE(379), 1, sym_string_literal, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(73), 2, + ACTIONS(908), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(910), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(918), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1912), 3, + ACTIONS(1908), 4, sym_true, sym_false, sym_null, + sym_identifier, ACTIONS(79), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -43435,100 +42841,108 @@ static uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(505), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(561), 11, + STATE(442), 16, sym__expression, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, - [11548] = 3, + [11446] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1916), 13, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(906), 1, + anon_sym_LPAREN2, + ACTIONS(920), 1, + anon_sym_sizeof, + ACTIONS(1916), 1, + sym_number_literal, + STATE(379), 1, + sym_string_literal, + ACTIONS(25), 2, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(1914), 29, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + ACTIONS(908), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(910), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(918), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [11598] = 15, + ACTIONS(1914), 4, + sym_true, + sym_false, + sym_null, + sym_identifier, + ACTIONS(79), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(81), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(449), 16, + sym__expression, + sym_conditional_expression, + sym_assignment_expression, + sym_pointer_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_compound_literal_expression, + sym_parenthesized_expression, + sym_char_literal, + sym_concatenated_string, + [11516] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, + ACTIONS(906), 1, anon_sym_LPAREN2, - ACTIONS(75), 1, + ACTIONS(920), 1, anon_sym_sizeof, - ACTIONS(958), 1, - sym_identifier, - ACTIONS(1918), 1, + ACTIONS(1920), 1, sym_number_literal, - STATE(376), 1, + STATE(379), 1, sym_string_literal, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(73), 2, + ACTIONS(908), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(910), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(918), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1920), 3, + ACTIONS(1918), 4, sym_true, sym_false, sym_null, + sym_identifier, ACTIONS(79), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -43541,25 +42955,24 @@ static uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(505), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(567), 11, + STATE(448), 16, sym__expression, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, - [11672] = 13, + [11586] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(906), 1, @@ -43568,7 +42981,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(1924), 1, sym_number_literal, - STATE(376), 1, + STATE(379), 1, sym_string_literal, ACTIONS(25), 2, anon_sym_STAR, @@ -43599,7 +43012,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(468), 16, + STATE(458), 16, sym__expression, sym_conditional_expression, sym_assignment_expression, @@ -43616,16 +43029,16 @@ static uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, - [11742] = 13, + [11656] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(906), 1, anon_sym_LPAREN2, ACTIONS(920), 1, anon_sym_sizeof, - ACTIONS(1848), 1, + ACTIONS(1928), 1, sym_number_literal, - STATE(376), 1, + STATE(379), 1, sym_string_literal, ACTIONS(25), 2, anon_sym_STAR, @@ -43639,7 +43052,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(918), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1850), 4, + ACTIONS(1926), 4, sym_true, sym_false, sym_null, @@ -43656,7 +43069,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(454), 16, + STATE(437), 16, sym__expression, sym_conditional_expression, sym_assignment_expression, @@ -43673,39 +43086,24 @@ static uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, - [11812] = 3, + [11726] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1928), 13, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(1214), 1, + anon_sym_LPAREN2, + ACTIONS(1220), 1, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(1226), 1, anon_sym_EQ, - ACTIONS(1926), 29, - anon_sym_COMMA, + ACTIONS(1223), 2, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, + ACTIONS(1930), 4, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + ACTIONS(1230), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -43716,17 +43114,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [11862] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1932), 13, + ACTIONS(1218), 11, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_PIPE, @@ -43736,41 +43126,23 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(1930), 29, + ACTIONS(1212), 12, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [11912] = 3, + [11788] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 13, + ACTIONS(1934), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -43784,7 +43156,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1934), 29, + ACTIONS(1932), 29, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -43814,82 +43186,91 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [11962] = 3, + [11838] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1940), 13, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(906), 1, + anon_sym_LPAREN2, + ACTIONS(920), 1, + anon_sym_sizeof, + ACTIONS(1938), 1, + sym_number_literal, + STATE(379), 1, + sym_string_literal, + ACTIONS(25), 2, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(1938), 29, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + ACTIONS(908), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(910), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(918), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [12012] = 15, + ACTIONS(1936), 4, + sym_true, + sym_false, + sym_null, + sym_identifier, + ACTIONS(79), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(81), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(438), 16, + sym__expression, + sym_conditional_expression, + sym_assignment_expression, + sym_pointer_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_compound_literal_expression, + sym_parenthesized_expression, + sym_char_literal, + sym_concatenated_string, + [11908] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, + ACTIONS(906), 1, anon_sym_LPAREN2, - ACTIONS(75), 1, + ACTIONS(920), 1, anon_sym_sizeof, - ACTIONS(958), 1, - sym_identifier, ACTIONS(1942), 1, sym_number_literal, - STATE(376), 1, + STATE(379), 1, sym_string_literal, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(73), 2, + ACTIONS(908), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(910), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(918), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1944), 3, + ACTIONS(1940), 4, sym_true, sym_false, sym_null, + sym_identifier, ACTIONS(79), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -43902,75 +43283,141 @@ static uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(505), 5, + STATE(469), 16, + sym__expression, + sym_conditional_expression, + sym_assignment_expression, sym_pointer_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, + sym_compound_literal_expression, sym_parenthesized_expression, - STATE(620), 11, + sym_char_literal, + sym_concatenated_string, + [11978] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(906), 1, + anon_sym_LPAREN2, + ACTIONS(920), 1, + anon_sym_sizeof, + ACTIONS(1946), 1, + sym_number_literal, + STATE(379), 1, + sym_string_literal, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(908), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(910), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(918), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1944), 4, + sym_true, + sym_false, + sym_null, + sym_identifier, + ACTIONS(79), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(81), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(439), 16, sym__expression, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, - [12086] = 3, + [12048] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1948), 13, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(906), 1, + anon_sym_LPAREN2, + ACTIONS(920), 1, + anon_sym_sizeof, + ACTIONS(1950), 1, + sym_number_literal, + STATE(379), 1, + sym_string_literal, + ACTIONS(25), 2, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(1946), 29, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + ACTIONS(908), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(910), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(918), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [12136] = 3, + ACTIONS(1948), 4, + sym_true, + sym_false, + sym_null, + sym_identifier, + ACTIONS(79), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(81), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(436), 16, + sym__expression, + sym_conditional_expression, + sym_assignment_expression, + sym_pointer_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_compound_literal_expression, + sym_parenthesized_expression, + sym_char_literal, + sym_concatenated_string, + [12118] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1952), 13, + ACTIONS(1954), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -43984,7 +43431,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1950), 29, + ACTIONS(1952), 29, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -44014,35 +43461,34 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [12186] = 15, + [12168] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, + ACTIONS(906), 1, anon_sym_LPAREN2, - ACTIONS(75), 1, + ACTIONS(920), 1, anon_sym_sizeof, - ACTIONS(958), 1, - sym_identifier, - ACTIONS(1954), 1, + ACTIONS(1958), 1, sym_number_literal, - STATE(376), 1, + STATE(379), 1, sym_string_literal, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(73), 2, + ACTIONS(908), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(910), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(918), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1956), 3, + ACTIONS(1956), 4, sym_true, sym_false, sym_null, + sym_identifier, ACTIONS(79), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -44055,25 +43501,24 @@ static uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(505), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(648), 11, + STATE(441), 16, sym__expression, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, - [12260] = 15, + [12238] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -44082,9 +43527,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(958), 1, sym_identifier, - ACTIONS(1958), 1, + ACTIONS(1960), 1, sym_number_literal, - STATE(376), 1, + STATE(379), 1, sym_string_literal, ACTIONS(21), 2, anon_sym_BANG, @@ -44098,7 +43543,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(73), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1960), 3, + ACTIONS(1962), 3, sym_true, sym_false, sym_null, @@ -44114,13 +43559,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(505), 5, + STATE(532), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(565), 11, + STATE(613), 11, sym__expression, sym_conditional_expression, sym_assignment_expression, @@ -44132,10 +43577,10 @@ static uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [12334] = 3, + [12312] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1964), 13, + ACTIONS(1966), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -44149,7 +43594,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1962), 29, + ACTIONS(1964), 29, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -44179,91 +43624,82 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [12384] = 13, + [12362] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(920), 1, - anon_sym_sizeof, - ACTIONS(1968), 1, - anon_sym_LPAREN2, - ACTIONS(1970), 1, - sym_number_literal, - STATE(376), 1, - sym_string_literal, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(908), 2, + ACTIONS(1970), 13, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(910), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(918), 2, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(1968), 29, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1966), 4, - sym_true, - sym_false, - sym_null, - sym_identifier, - ACTIONS(79), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(81), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(474), 16, - sym__expression, - sym_conditional_expression, - sym_assignment_expression, - sym_pointer_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_compound_literal_expression, - sym_parenthesized_expression, - sym_char_literal, - sym_concatenated_string, - [12454] = 13, + anon_sym_DOT, + anon_sym_DASH_GT, + [12412] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(906), 1, + ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(920), 1, + ACTIONS(75), 1, anon_sym_sizeof, - ACTIONS(1974), 1, + ACTIONS(958), 1, + sym_identifier, + ACTIONS(1972), 1, sym_number_literal, - STATE(376), 1, + STATE(379), 1, sym_string_literal, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(908), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(910), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(918), 2, + ACTIONS(73), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1972), 4, + ACTIONS(1974), 3, sym_true, sym_false, sym_null, - sym_identifier, ACTIONS(79), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -44276,24 +43712,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(460), 16, + STATE(532), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(649), 11, sym__expression, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, sym_cast_expression, sym_sizeof_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, - [12524] = 15, + [12486] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -44304,7 +43741,7 @@ static uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(1976), 1, sym_number_literal, - STATE(376), 1, + STATE(379), 1, sym_string_literal, ACTIONS(21), 2, anon_sym_BANG, @@ -44334,13 +43771,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(505), 5, + STATE(532), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(610), 11, + STATE(553), 11, sym__expression, sym_conditional_expression, sym_assignment_expression, @@ -44352,7 +43789,7 @@ static uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [12598] = 15, + [12560] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -44361,9 +43798,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(958), 1, sym_identifier, - ACTIONS(1980), 1, + ACTIONS(1950), 1, sym_number_literal, - STATE(376), 1, + STATE(379), 1, sym_string_literal, ACTIONS(21), 2, anon_sym_BANG, @@ -44377,7 +43814,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(73), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1982), 3, + ACTIONS(1948), 3, sym_true, sym_false, sym_null, @@ -44393,13 +43830,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(505), 5, + STATE(532), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(576), 11, + STATE(436), 11, sym__expression, sym_conditional_expression, sym_assignment_expression, @@ -44411,7 +43848,54 @@ static uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [12672] = 15, + [12634] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1982), 13, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(1980), 29, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [12684] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -44422,7 +43906,7 @@ static uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(1984), 1, sym_number_literal, - STATE(376), 1, + STATE(379), 1, sym_string_literal, ACTIONS(21), 2, anon_sym_BANG, @@ -44452,13 +43936,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(505), 5, + STATE(532), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(555), 11, + STATE(614), 11, sym__expression, sym_conditional_expression, sym_assignment_expression, @@ -44470,7 +43954,7 @@ static uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [12746] = 15, + [12758] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -44481,7 +43965,7 @@ static uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(1988), 1, sym_number_literal, - STATE(376), 1, + STATE(379), 1, sym_string_literal, ACTIONS(21), 2, anon_sym_BANG, @@ -44511,13 +43995,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(505), 5, + STATE(532), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(649), 11, + STATE(655), 11, sym__expression, sym_conditional_expression, sym_assignment_expression, @@ -44529,7 +44013,7 @@ static uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [12820] = 15, + [12832] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -44540,7 +44024,7 @@ static uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(1992), 1, sym_number_literal, - STATE(376), 1, + STATE(379), 1, sym_string_literal, ACTIONS(21), 2, anon_sym_BANG, @@ -44570,13 +44054,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(505), 5, + STATE(532), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(564), 11, + STATE(557), 11, sym__expression, sym_conditional_expression, sym_assignment_expression, @@ -44588,7 +44072,7 @@ static uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [12894] = 15, + [12906] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -44599,7 +44083,7 @@ static uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(1996), 1, sym_number_literal, - STATE(376), 1, + STATE(379), 1, sym_string_literal, ACTIONS(21), 2, anon_sym_BANG, @@ -44629,13 +44113,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(505), 5, + STATE(532), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(629), 11, + STATE(556), 11, sym__expression, sym_conditional_expression, sym_assignment_expression, @@ -44647,7 +44131,7 @@ static uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [12968] = 15, + [12980] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -44658,7 +44142,7 @@ static uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2000), 1, sym_number_literal, - STATE(376), 1, + STATE(379), 1, sym_string_literal, ACTIONS(21), 2, anon_sym_BANG, @@ -44688,13 +44172,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(505), 5, + STATE(532), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(626), 11, + STATE(552), 11, sym__expression, sym_conditional_expression, sym_assignment_expression, @@ -44706,34 +44190,35 @@ static uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [13042] = 13, + [13054] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(906), 1, + ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(920), 1, + ACTIONS(75), 1, anon_sym_sizeof, - ACTIONS(2006), 1, + ACTIONS(958), 1, + sym_identifier, + ACTIONS(2004), 1, sym_number_literal, - STATE(376), 1, + STATE(379), 1, sym_string_literal, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(908), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(910), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(918), 2, + ACTIONS(73), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2004), 4, + ACTIONS(2006), 3, sym_true, sym_false, sym_null, - sym_identifier, ACTIONS(79), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -44746,51 +44231,53 @@ static uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(467), 16, + STATE(532), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(646), 11, sym__expression, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, sym_cast_expression, sym_sizeof_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, - [13112] = 13, + [13128] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(906), 1, + ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(920), 1, + ACTIONS(75), 1, anon_sym_sizeof, - ACTIONS(2010), 1, + ACTIONS(958), 1, + sym_identifier, + ACTIONS(2008), 1, sym_number_literal, - STATE(376), 1, + STATE(379), 1, sym_string_literal, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(908), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(910), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(918), 2, + ACTIONS(73), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2008), 4, + ACTIONS(2010), 3, sym_true, sym_false, sym_null, - sym_identifier, ACTIONS(79), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -44803,24 +44290,178 @@ static uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(466), 16, + STATE(532), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(558), 11, sym__expression, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + [13202] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(75), 1, + anon_sym_sizeof, + ACTIONS(958), 1, + sym_identifier, + ACTIONS(2012), 1, + sym_number_literal, + STATE(379), 1, + sym_string_literal, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(73), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2014), 3, + sym_true, + sym_false, + sym_null, + ACTIONS(79), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(81), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(532), 5, + sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, - sym_compound_literal_expression, sym_parenthesized_expression, + STATE(611), 11, + sym__expression, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [13182] = 15, + [13276] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2018), 13, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(2016), 29, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [13326] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2022), 13, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(2020), 29, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [13376] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -44829,9 +44470,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(958), 1, sym_identifier, - ACTIONS(2012), 1, + ACTIONS(2024), 1, sym_number_literal, - STATE(376), 1, + STATE(379), 1, sym_string_literal, ACTIONS(21), 2, anon_sym_BANG, @@ -44845,7 +44486,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(73), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2014), 3, + ACTIONS(2026), 3, sym_true, sym_false, sym_null, @@ -44861,13 +44502,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(505), 5, + STATE(532), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(558), 11, + STATE(596), 11, sym__expression, sym_conditional_expression, sym_assignment_expression, @@ -44879,7 +44520,7 @@ static uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [13256] = 15, + [13450] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -44888,9 +44529,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(958), 1, sym_identifier, - ACTIONS(2016), 1, + ACTIONS(2028), 1, sym_number_literal, - STATE(376), 1, + STATE(379), 1, sym_string_literal, ACTIONS(21), 2, anon_sym_BANG, @@ -44904,7 +44545,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(73), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2018), 3, + ACTIONS(2030), 3, sym_true, sym_false, sym_null, @@ -44920,13 +44561,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(505), 5, + STATE(532), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(560), 11, + STATE(550), 11, sym__expression, sym_conditional_expression, sym_assignment_expression, @@ -44938,7 +44579,7 @@ static uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [13330] = 15, + [13524] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -44947,9 +44588,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(958), 1, sym_identifier, - ACTIONS(2020), 1, + ACTIONS(2032), 1, sym_number_literal, - STATE(376), 1, + STATE(379), 1, sym_string_literal, ACTIONS(21), 2, anon_sym_BANG, @@ -44963,7 +44604,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(73), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2022), 3, + ACTIONS(2034), 3, sym_true, sym_false, sym_null, @@ -44979,13 +44620,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(505), 5, + STATE(532), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(557), 11, + STATE(547), 11, sym__expression, sym_conditional_expression, sym_assignment_expression, @@ -44997,10 +44638,59 @@ static uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [13404] = 3, + [13598] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1226), 1, + anon_sym_EQ, + ACTIONS(1230), 10, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + ACTIONS(1218), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1212), 19, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [13652] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2026), 13, + ACTIONS(2038), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -45014,7 +44704,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2024), 29, + ACTIONS(2036), 29, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -45044,7 +44734,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [13454] = 15, + [13702] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -45053,9 +44743,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(958), 1, sym_identifier, - ACTIONS(2028), 1, + ACTIONS(2040), 1, sym_number_literal, - STATE(376), 1, + STATE(379), 1, sym_string_literal, ACTIONS(21), 2, anon_sym_BANG, @@ -45069,7 +44759,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(73), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2030), 3, + ACTIONS(2042), 3, sym_true, sym_false, sym_null, @@ -45085,13 +44775,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(505), 5, + STATE(532), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(566), 11, + STATE(548), 11, sym__expression, sym_conditional_expression, sym_assignment_expression, @@ -45103,7 +44793,7 @@ static uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [13528] = 15, + [13776] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -45112,9 +44802,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(958), 1, sym_identifier, - ACTIONS(2032), 1, + ACTIONS(2044), 1, sym_number_literal, - STATE(376), 1, + STATE(379), 1, sym_string_literal, ACTIONS(21), 2, anon_sym_BANG, @@ -45128,7 +44818,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(73), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2034), 3, + ACTIONS(2046), 3, sym_true, sym_false, sym_null, @@ -45144,178 +44834,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(505), 5, + STATE(532), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(563), 11, - sym__expression, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - [13602] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(75), 1, - anon_sym_sizeof, - ACTIONS(958), 1, - sym_identifier, - ACTIONS(2036), 1, - sym_number_literal, - STATE(376), 1, - sym_string_literal, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(73), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2038), 3, - sym_true, - sym_false, - sym_null, - ACTIONS(79), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(81), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(505), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(644), 11, - sym__expression, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - [13676] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2042), 13, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(2040), 29, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [13726] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(75), 1, - anon_sym_sizeof, - ACTIONS(958), 1, - sym_identifier, - ACTIONS(1896), 1, - sym_number_literal, - STATE(376), 1, - sym_string_literal, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(73), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1894), 3, - sym_true, - sym_false, - sym_null, - ACTIONS(79), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(81), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(505), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(450), 11, + STATE(555), 11, sym__expression, sym_conditional_expression, sym_assignment_expression, @@ -45327,61 +44852,14 @@ static uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [13800] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2046), 13, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(2044), 29, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, [13850] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1231), 1, + ACTIONS(1226), 1, anon_sym_EQ, - ACTIONS(1242), 1, + ACTIONS(1236), 1, anon_sym_COLON, - ACTIONS(1235), 10, + ACTIONS(1230), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -45392,7 +44870,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1226), 12, + ACTIONS(1218), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -45405,7 +44883,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1220), 15, + ACTIONS(1212), 15, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, @@ -45424,11 +44902,11 @@ static uint16_t ts_small_parse_table[] = { [13903] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1231), 1, + ACTIONS(1226), 1, anon_sym_EQ, - ACTIONS(1233), 1, + ACTIONS(1234), 1, anon_sym_COLON, - ACTIONS(1235), 10, + ACTIONS(1230), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -45439,7 +44917,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1226), 12, + ACTIONS(1218), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -45452,7 +44930,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1220), 15, + ACTIONS(1212), 15, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, @@ -45471,11 +44949,11 @@ static uint16_t ts_small_parse_table[] = { [13956] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1231), 1, + ACTIONS(1226), 1, anon_sym_EQ, - ACTIONS(1237), 1, + ACTIONS(1228), 1, anon_sym_COLON, - ACTIONS(1235), 10, + ACTIONS(1230), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -45486,7 +44964,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1226), 12, + ACTIONS(1218), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -45499,7 +44977,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1220), 15, + ACTIONS(1212), 15, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, @@ -45518,11 +44996,11 @@ static uint16_t ts_small_parse_table[] = { [14009] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1231), 1, + ACTIONS(1226), 1, anon_sym_EQ, - ACTIONS(1244), 1, + ACTIONS(1232), 1, anon_sym_COLON, - ACTIONS(1235), 10, + ACTIONS(1230), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -45533,7 +45011,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1226), 12, + ACTIONS(1218), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -45546,7 +45024,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1220), 15, + ACTIONS(1212), 15, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, @@ -45565,7 +45043,7 @@ static uint16_t ts_small_parse_table[] = { [14062] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1840), 18, + ACTIONS(1774), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_if, @@ -45584,7 +45062,7 @@ static uint16_t ts_small_parse_table[] = { sym_false, sym_null, sym_identifier, - ACTIONS(1838), 20, + ACTIONS(1772), 20, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, @@ -45618,15 +45096,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(648), 1, sym_primitive_type, - ACTIONS(1246), 1, + ACTIONS(1238), 1, sym_identifier, ACTIONS(2048), 1, anon_sym_LBRACE, - STATE(712), 1, + STATE(704), 1, aux_sym_sized_type_specifier_repeat1, - STATE(870), 1, + STATE(873), 1, sym__declaration_specifiers, - STATE(181), 3, + STATE(329), 3, sym_function_definition, sym_declaration, sym_declaration_list, @@ -45640,7 +45118,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(570), 4, + STATE(561), 4, sym_attribute_specifier, sym_storage_class_specifier, sym_type_qualifier, @@ -45651,7 +45129,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(718), 6, + STATE(709), 6, sym__type_specifier, sym_sized_type_specifier, sym_enum_specifier, @@ -45671,15 +45149,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(648), 1, sym_primitive_type, - ACTIONS(1246), 1, + ACTIONS(1238), 1, sym_identifier, ACTIONS(2050), 1, anon_sym_LBRACE, - STATE(712), 1, + STATE(704), 1, aux_sym_sized_type_specifier_repeat1, - STATE(874), 1, + STATE(864), 1, sym__declaration_specifiers, - STATE(344), 3, + STATE(327), 3, sym_function_definition, sym_declaration, sym_declaration_list, @@ -45693,7 +45171,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(570), 4, + STATE(561), 4, sym_attribute_specifier, sym_storage_class_specifier, sym_type_qualifier, @@ -45704,7 +45182,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(718), 6, + STATE(709), 6, sym__type_specifier, sym_sized_type_specifier, sym_enum_specifier, @@ -45724,15 +45202,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(648), 1, sym_primitive_type, - ACTIONS(1246), 1, + ACTIONS(1238), 1, sym_identifier, ACTIONS(2052), 1, anon_sym_LBRACE, - STATE(712), 1, + STATE(704), 1, aux_sym_sized_type_specifier_repeat1, - STATE(872), 1, + STATE(866), 1, sym__declaration_specifiers, - STATE(312), 3, + STATE(185), 3, sym_function_definition, sym_declaration, sym_declaration_list, @@ -45746,7 +45224,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(570), 4, + STATE(561), 4, sym_attribute_specifier, sym_storage_class_specifier, sym_type_qualifier, @@ -45757,7 +45235,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(718), 6, + STATE(709), 6, sym__type_specifier, sym_sized_type_specifier, sym_enum_specifier, @@ -45777,15 +45255,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(648), 1, sym_primitive_type, - ACTIONS(1246), 1, + ACTIONS(1238), 1, sym_identifier, ACTIONS(2054), 1, anon_sym_LBRACE, - STATE(712), 1, + STATE(704), 1, aux_sym_sized_type_specifier_repeat1, - STATE(877), 1, + STATE(865), 1, sym__declaration_specifiers, - STATE(297), 3, + STATE(343), 3, sym_function_definition, sym_declaration, sym_declaration_list, @@ -45799,7 +45277,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(570), 4, + STATE(561), 4, sym_attribute_specifier, sym_storage_class_specifier, sym_type_qualifier, @@ -45810,7 +45288,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(718), 6, + STATE(709), 6, sym__type_specifier, sym_sized_type_specifier, sym_enum_specifier, @@ -45830,17 +45308,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(648), 1, sym_primitive_type, - ACTIONS(1246), 1, + ACTIONS(1238), 1, sym_identifier, - ACTIONS(1383), 1, + ACTIONS(1375), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1385), 1, + ACTIONS(1377), 1, anon_sym_RPAREN, - STATE(712), 1, + STATE(704), 1, aux_sym_sized_type_specifier_repeat1, - STATE(846), 1, + STATE(838), 1, sym__declaration_specifiers, - STATE(998), 1, + STATE(983), 1, sym_parameter_declaration, ACTIONS(39), 4, anon_sym_const, @@ -45852,7 +45330,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(570), 4, + STATE(561), 4, sym_attribute_specifier, sym_storage_class_specifier, sym_type_qualifier, @@ -45863,7 +45341,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(718), 6, + STATE(709), 6, sym__type_specifier, sym_sized_type_specifier, sym_enum_specifier, @@ -45883,15 +45361,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(648), 1, sym_primitive_type, - ACTIONS(1246), 1, + ACTIONS(1238), 1, sym_identifier, ACTIONS(2056), 1, anon_sym_DOT_DOT_DOT, - STATE(712), 1, + STATE(704), 1, aux_sym_sized_type_specifier_repeat1, - STATE(846), 1, + STATE(838), 1, sym__declaration_specifiers, - STATE(1049), 1, + STATE(1077), 1, sym_parameter_declaration, ACTIONS(39), 4, anon_sym_const, @@ -45903,7 +45381,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(570), 4, + STATE(561), 4, sym_attribute_specifier, sym_storage_class_specifier, sym_type_qualifier, @@ -45914,38 +45392,34 @@ static uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(718), 6, + STATE(709), 6, sym__type_specifier, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - [14521] = 19, + [14521] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1690), 1, + ACTIONS(1668), 1, anon_sym_LPAREN2, - ACTIONS(1694), 1, + ACTIONS(1670), 1, + anon_sym_PIPE, + ACTIONS(1672), 1, anon_sym_LBRACK, ACTIONS(2062), 1, anon_sym_SLASH, ACTIONS(2064), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2066), 1, - anon_sym_AMP_AMP, - ACTIONS(2068), 1, - anon_sym_PIPE, - ACTIONS(2070), 1, anon_sym_CARET, - ACTIONS(2072), 1, + ACTIONS(2066), 1, anon_sym_AMP, - STATE(543), 1, + STATE(505), 1, sym_argument_list, - ACTIONS(1696), 2, + ACTIONS(1674), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1698), 2, + ACTIONS(1676), 2, anon_sym_DOT, anon_sym_DASH_GT, ACTIONS(2058), 2, @@ -45954,41 +45428,46 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2060), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2074), 2, + ACTIONS(2068), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2076), 2, + ACTIONS(2070), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2078), 2, + ACTIONS(2072), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2080), 2, + ACTIONS(2074), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1808), 7, + ACTIONS(1666), 9, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, - [14593] = 12, + [14589] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1690), 1, + ACTIONS(1668), 1, anon_sym_LPAREN2, - ACTIONS(1694), 1, + ACTIONS(1672), 1, anon_sym_LBRACK, ACTIONS(2062), 1, anon_sym_SLASH, - STATE(543), 1, + STATE(505), 1, sym_argument_list, - ACTIONS(1696), 2, + ACTIONS(1670), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(1674), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1698), 2, + ACTIONS(1676), 2, anon_sym_DOT, anon_sym_DASH_GT, ACTIONS(2058), 2, @@ -45997,50 +45476,47 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2060), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2080), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1800), 4, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(2068), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2070), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1798), 14, + ACTIONS(2072), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2074), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1666), 10, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, - [14651] = 17, + [14653] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1690), 1, + ACTIONS(1668), 1, anon_sym_LPAREN2, - ACTIONS(1694), 1, + ACTIONS(1672), 1, anon_sym_LBRACK, - ACTIONS(1702), 1, - anon_sym_PIPE, ACTIONS(2062), 1, anon_sym_SLASH, - ACTIONS(2070), 1, - anon_sym_CARET, - ACTIONS(2072), 1, - anon_sym_AMP, - STATE(543), 1, + STATE(505), 1, sym_argument_list, - ACTIONS(1696), 2, + ACTIONS(1670), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(1674), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1698), 2, + ACTIONS(1676), 2, anon_sym_DOT, anon_sym_DASH_GT, ACTIONS(2058), 2, @@ -46049,48 +45525,45 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2060), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2074), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2076), 2, + ACTIONS(2070), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2078), 2, + ACTIONS(2072), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2080), 2, + ACTIONS(2074), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1700), 9, + ACTIONS(1666), 12, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, - [14719] = 15, + [14715] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1690), 1, + ACTIONS(1668), 1, anon_sym_LPAREN2, - ACTIONS(1694), 1, + ACTIONS(1672), 1, anon_sym_LBRACK, ACTIONS(2062), 1, anon_sym_SLASH, - STATE(543), 1, + STATE(505), 1, sym_argument_list, - ACTIONS(1696), 2, + ACTIONS(1674), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1698), 2, + ACTIONS(1676), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1702), 2, - anon_sym_PIPE, - anon_sym_AMP, ACTIONS(2058), 2, anon_sym_DASH, anon_sym_PLUS, @@ -46098,86 +45571,53 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_PERCENT, ACTIONS(2074), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2076), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2078), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2080), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1700), 10, + ACTIONS(1670), 4, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1666), 14, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, - [14783] = 5, + [14773] = 19, ACTIONS(3), 1, sym_comment, - STATE(559), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(2086), 4, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - ACTIONS(2082), 7, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - ACTIONS(2084), 19, - anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_RBRACK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [14827] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1690), 1, + ACTIONS(1668), 1, anon_sym_LPAREN2, - ACTIONS(1694), 1, + ACTIONS(1672), 1, anon_sym_LBRACK, - ACTIONS(1702), 1, - anon_sym_PIPE, ACTIONS(2062), 1, anon_sym_SLASH, - ACTIONS(2072), 1, + ACTIONS(2064), 1, + anon_sym_CARET, + ACTIONS(2066), 1, anon_sym_AMP, - STATE(543), 1, + ACTIONS(2076), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2078), 1, + anon_sym_AMP_AMP, + ACTIONS(2080), 1, + anon_sym_PIPE, + STATE(505), 1, sym_argument_list, - ACTIONS(1696), 2, + ACTIONS(1674), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1698), 2, + ACTIONS(1676), 2, anon_sym_DOT, anon_sym_DASH_GT, ACTIONS(2058), 2, @@ -46186,65 +45626,55 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2060), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2074), 2, + ACTIONS(2068), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2076), 2, + ACTIONS(2070), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2078), 2, + ACTIONS(2072), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2080), 2, + ACTIONS(2074), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1700), 10, + ACTIONS(1706), 7, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, - [14893] = 14, + [14845] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1690), 1, + ACTIONS(1668), 1, anon_sym_LPAREN2, - ACTIONS(1694), 1, + ACTIONS(1672), 1, anon_sym_LBRACK, ACTIONS(2062), 1, anon_sym_SLASH, - STATE(543), 1, + STATE(505), 1, sym_argument_list, - ACTIONS(1696), 2, + ACTIONS(1674), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1698), 2, + ACTIONS(1676), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1702), 2, - anon_sym_PIPE, - anon_sym_AMP, ACTIONS(2058), 2, anon_sym_DASH, anon_sym_PLUS, ACTIONS(2060), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2076), 2, + ACTIONS(1670), 4, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(2078), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2080), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1700), 12, + ACTIONS(1666), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, @@ -46252,39 +45682,43 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, - [14955] = 10, + [14901] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1690), 1, + ACTIONS(1668), 1, anon_sym_LPAREN2, - ACTIONS(1694), 1, + ACTIONS(1672), 1, anon_sym_LBRACK, ACTIONS(2062), 1, anon_sym_SLASH, - STATE(543), 1, + STATE(505), 1, sym_argument_list, - ACTIONS(1696), 2, + ACTIONS(1674), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1698), 2, + ACTIONS(1676), 2, anon_sym_DOT, anon_sym_DASH_GT, ACTIONS(2060), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1702), 6, + ACTIONS(1670), 6, anon_sym_DASH, anon_sym_PLUS, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(1700), 16, + ACTIONS(1666), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, @@ -46301,29 +45735,64 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, - [15009] = 18, + [14955] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1690), 1, + STATE(554), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(2086), 4, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + ACTIONS(2082), 7, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_sizeof, + sym_true, + sym_false, + sym_null, + sym_identifier, + ACTIONS(2084), 19, anon_sym_LPAREN2, - ACTIONS(1694), 1, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_RBRACK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [14999] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1668), 1, + anon_sym_LPAREN2, + ACTIONS(1670), 1, + anon_sym_PIPE, + ACTIONS(1672), 1, anon_sym_LBRACK, ACTIONS(2062), 1, anon_sym_SLASH, ACTIONS(2066), 1, - anon_sym_AMP_AMP, - ACTIONS(2068), 1, - anon_sym_PIPE, - ACTIONS(2070), 1, - anon_sym_CARET, - ACTIONS(2072), 1, anon_sym_AMP, - STATE(543), 1, + STATE(505), 1, sym_argument_list, - ACTIONS(1696), 2, + ACTIONS(1674), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1698), 2, + ACTIONS(1676), 2, anon_sym_DOT, anon_sym_DASH_GT, ACTIONS(2058), 2, @@ -46332,42 +45801,50 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2060), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2074), 2, + ACTIONS(2068), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2076), 2, + ACTIONS(2070), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2078), 2, + ACTIONS(2072), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2080), 2, + ACTIONS(2074), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1700), 8, + ACTIONS(1666), 10, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, - [15079] = 11, + [15065] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1690), 1, + ACTIONS(1668), 1, anon_sym_LPAREN2, - ACTIONS(1694), 1, + ACTIONS(1672), 1, anon_sym_LBRACK, ACTIONS(2062), 1, anon_sym_SLASH, - STATE(543), 1, + ACTIONS(2064), 1, + anon_sym_CARET, + ACTIONS(2066), 1, + anon_sym_AMP, + ACTIONS(2080), 1, + anon_sym_PIPE, + STATE(505), 1, sym_argument_list, - ACTIONS(1696), 2, + ACTIONS(1674), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1698), 2, + ACTIONS(1676), 2, anon_sym_DOT, anon_sym_DASH_GT, ACTIONS(2058), 2, @@ -46376,55 +45853,51 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2060), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1702), 4, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1700), 16, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, + ACTIONS(2068), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(2070), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2072), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(2074), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(1666), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, - [15135] = 20, + [15133] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1690), 1, + ACTIONS(1668), 1, anon_sym_LPAREN2, - ACTIONS(1694), 1, + ACTIONS(1672), 1, anon_sym_LBRACK, ACTIONS(2062), 1, anon_sym_SLASH, ACTIONS(2064), 1, - anon_sym_PIPE_PIPE, + anon_sym_CARET, ACTIONS(2066), 1, + anon_sym_AMP, + ACTIONS(2078), 1, anon_sym_AMP_AMP, - ACTIONS(2068), 1, + ACTIONS(2080), 1, anon_sym_PIPE, - ACTIONS(2070), 1, - anon_sym_CARET, - ACTIONS(2072), 1, - anon_sym_AMP, - ACTIONS(2089), 1, - anon_sym_QMARK, - STATE(543), 1, + STATE(505), 1, sym_argument_list, - ACTIONS(1696), 2, + ACTIONS(1674), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1698), 2, + ACTIONS(1676), 2, anon_sym_DOT, anon_sym_DASH_GT, ACTIONS(2058), 2, @@ -46433,46 +45906,54 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2060), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2074), 2, + ACTIONS(2068), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2076), 2, + ACTIONS(2070), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2078), 2, + ACTIONS(2072), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2080), 2, + ACTIONS(2074), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1750), 6, + ACTIONS(1666), 8, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_PIPE_PIPE, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_RBRACK, anon_sym_COLON, - [15209] = 17, + anon_sym_QMARK, + [15203] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1690), 1, + ACTIONS(1668), 1, anon_sym_LPAREN2, - ACTIONS(1694), 1, + ACTIONS(1672), 1, anon_sym_LBRACK, ACTIONS(2062), 1, anon_sym_SLASH, - ACTIONS(2068), 1, - anon_sym_PIPE, - ACTIONS(2070), 1, + ACTIONS(2064), 1, anon_sym_CARET, - ACTIONS(2072), 1, + ACTIONS(2066), 1, anon_sym_AMP, - STATE(543), 1, + ACTIONS(2076), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2078), 1, + anon_sym_AMP_AMP, + ACTIONS(2080), 1, + anon_sym_PIPE, + ACTIONS(2089), 1, + anon_sym_QMARK, + STATE(505), 1, sym_argument_list, - ACTIONS(1696), 2, + ACTIONS(1674), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1698), 2, + ACTIONS(1676), 2, anon_sym_DOT, anon_sym_DASH_GT, ACTIONS(2058), 2, @@ -46481,43 +45962,40 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2060), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2074), 2, + ACTIONS(2068), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2076), 2, + ACTIONS(2070), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2078), 2, + ACTIONS(2072), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2080), 2, + ACTIONS(2074), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1700), 9, + ACTIONS(1792), 6, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_RBRACK, anon_sym_COLON, - anon_sym_QMARK, [15277] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1690), 1, + ACTIONS(1668), 1, anon_sym_LPAREN2, - ACTIONS(1694), 1, + ACTIONS(1672), 1, anon_sym_LBRACK, ACTIONS(2062), 1, anon_sym_SLASH, - STATE(543), 1, + STATE(505), 1, sym_argument_list, - ACTIONS(1696), 2, + ACTIONS(1674), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1698), 2, + ACTIONS(1676), 2, anon_sym_DOT, anon_sym_DASH_GT, ACTIONS(2058), 2, @@ -46526,15 +46004,15 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2060), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2080), 2, + ACTIONS(2074), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1702), 4, + ACTIONS(1704), 4, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(1700), 14, + ACTIONS(1702), 14, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, @@ -46549,49 +46027,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, - [15335] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2098), 1, - anon_sym___attribute__, - ACTIONS(2101), 4, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - STATE(568), 4, - sym_attribute_specifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(2095), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - ACTIONS(2093), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_COLON, - ACTIONS(2091), 9, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [15381] = 3, + [15335] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2104), 11, + ACTIONS(2091), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_const, @@ -46603,7 +46042,7 @@ static uint16_t ts_small_parse_table[] = { sym_false, sym_null, sym_identifier, - ACTIONS(2106), 19, + ACTIONS(2093), 19, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, @@ -46623,7 +46062,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [15419] = 13, + [15373] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -46634,11 +46073,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(49), 1, anon_sym_union, - ACTIONS(1246), 1, + ACTIONS(1238), 1, sym_identifier, - ACTIONS(2108), 1, + ACTIONS(2095), 1, sym_primitive_type, - STATE(712), 1, + STATE(704), 1, aux_sym_sized_type_specifier_repeat1, ACTIONS(39), 4, anon_sym_const, @@ -46650,7 +46089,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(568), 4, + STATE(562), 4, sym_attribute_specifier, sym_storage_class_specifier, sym_type_qualifier, @@ -46661,42 +46100,81 @@ static uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(719), 6, + STATE(721), 6, sym__type_specifier, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, + [15431] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2104), 1, + anon_sym___attribute__, + ACTIONS(2107), 4, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + STATE(562), 4, + sym_attribute_specifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(2101), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + ACTIONS(2099), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_COLON, + ACTIONS(2097), 9, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, [15477] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1690), 1, + ACTIONS(1668), 1, anon_sym_LPAREN2, - ACTIONS(1694), 1, + ACTIONS(1672), 1, anon_sym_LBRACK, ACTIONS(2062), 1, anon_sym_SLASH, ACTIONS(2064), 1, - anon_sym_PIPE_PIPE, + anon_sym_CARET, ACTIONS(2066), 1, + anon_sym_AMP, + ACTIONS(2076), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2078), 1, anon_sym_AMP_AMP, - ACTIONS(2068), 1, + ACTIONS(2080), 1, anon_sym_PIPE, - ACTIONS(2070), 1, - anon_sym_CARET, - ACTIONS(2072), 1, - anon_sym_AMP, ACTIONS(2089), 1, anon_sym_QMARK, ACTIONS(2110), 1, anon_sym_COMMA, - STATE(543), 1, + STATE(505), 1, sym_argument_list, - ACTIONS(1696), 2, + ACTIONS(1674), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1698), 2, + ACTIONS(1676), 2, anon_sym_DOT, anon_sym_DASH_GT, ACTIONS(2058), 2, @@ -46705,16 +46183,16 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2060), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2074), 2, + ACTIONS(2068), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2076), 2, + ACTIONS(2070), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2078), 2, + ACTIONS(2072), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2080), 2, + ACTIONS(2074), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2112), 2, @@ -46723,36 +46201,36 @@ static uint16_t ts_small_parse_table[] = { [15550] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(1690), 1, + ACTIONS(1668), 1, anon_sym_LPAREN2, - ACTIONS(1694), 1, + ACTIONS(1672), 1, anon_sym_LBRACK, ACTIONS(2062), 1, anon_sym_SLASH, ACTIONS(2064), 1, - anon_sym_PIPE_PIPE, + anon_sym_CARET, ACTIONS(2066), 1, + anon_sym_AMP, + ACTIONS(2076), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2078), 1, anon_sym_AMP_AMP, - ACTIONS(2068), 1, + ACTIONS(2080), 1, anon_sym_PIPE, - ACTIONS(2070), 1, - anon_sym_CARET, - ACTIONS(2072), 1, - anon_sym_AMP, ACTIONS(2089), 1, anon_sym_QMARK, ACTIONS(2114), 1, anon_sym_COMMA, ACTIONS(2116), 1, - anon_sym_RPAREN, - STATE(543), 1, + anon_sym_RBRACE, + STATE(505), 1, sym_argument_list, - STATE(1012), 1, - aux_sym_argument_list_repeat1, - ACTIONS(1696), 2, + STATE(989), 1, + aux_sym_initializer_list_repeat1, + ACTIONS(1674), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1698), 2, + ACTIONS(1676), 2, anon_sym_DOT, anon_sym_DASH_GT, ACTIONS(2058), 2, @@ -46761,51 +46239,51 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2060), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2074), 2, + ACTIONS(2068), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2076), 2, + ACTIONS(2070), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2078), 2, + ACTIONS(2072), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2080), 2, + ACTIONS(2074), 2, anon_sym_LT_LT, anon_sym_GT_GT, [15625] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(1690), 1, + ACTIONS(1668), 1, anon_sym_LPAREN2, - ACTIONS(1694), 1, + ACTIONS(1672), 1, anon_sym_LBRACK, ACTIONS(2062), 1, anon_sym_SLASH, ACTIONS(2064), 1, - anon_sym_PIPE_PIPE, + anon_sym_CARET, ACTIONS(2066), 1, + anon_sym_AMP, + ACTIONS(2076), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2078), 1, anon_sym_AMP_AMP, - ACTIONS(2068), 1, + ACTIONS(2080), 1, anon_sym_PIPE, - ACTIONS(2070), 1, - anon_sym_CARET, - ACTIONS(2072), 1, - anon_sym_AMP, ACTIONS(2089), 1, anon_sym_QMARK, ACTIONS(2118), 1, anon_sym_COMMA, ACTIONS(2120), 1, - anon_sym_RBRACE, - STATE(543), 1, + anon_sym_RPAREN, + STATE(505), 1, sym_argument_list, - STATE(1030), 1, - aux_sym_initializer_list_repeat1, - ACTIONS(1696), 2, + STATE(1007), 1, + aux_sym_argument_list_repeat1, + ACTIONS(1674), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1698), 2, + ACTIONS(1676), 2, anon_sym_DOT, anon_sym_DASH_GT, ACTIONS(2058), 2, @@ -46814,49 +46292,45 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2060), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2074), 2, + ACTIONS(2068), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2076), 2, + ACTIONS(2070), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2078), 2, + ACTIONS(2072), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2080), 2, + ACTIONS(2074), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [15700] = 21, + [15700] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1690), 1, + ACTIONS(1668), 1, anon_sym_LPAREN2, - ACTIONS(1694), 1, + ACTIONS(1672), 1, anon_sym_LBRACK, ACTIONS(2062), 1, anon_sym_SLASH, ACTIONS(2064), 1, - anon_sym_PIPE_PIPE, + anon_sym_CARET, ACTIONS(2066), 1, + anon_sym_AMP, + ACTIONS(2076), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2078), 1, anon_sym_AMP_AMP, - ACTIONS(2068), 1, + ACTIONS(2080), 1, anon_sym_PIPE, - ACTIONS(2070), 1, - anon_sym_CARET, - ACTIONS(2072), 1, - anon_sym_AMP, ACTIONS(2089), 1, anon_sym_QMARK, - ACTIONS(2110), 1, - anon_sym_COMMA, - ACTIONS(2122), 1, - anon_sym_RPAREN, - STATE(543), 1, + STATE(505), 1, sym_argument_list, - ACTIONS(1696), 2, + ACTIONS(1674), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1698), 2, + ACTIONS(1676), 2, anon_sym_DOT, anon_sym_DASH_GT, ACTIONS(2058), 2, @@ -46865,49 +46339,52 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2060), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2074), 2, + ACTIONS(2068), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2076), 2, + ACTIONS(2070), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2078), 2, + ACTIONS(2072), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2080), 2, + ACTIONS(2074), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [15772] = 21, + ACTIONS(2122), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [15770] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1690), 1, + ACTIONS(1668), 1, anon_sym_LPAREN2, - ACTIONS(1694), 1, + ACTIONS(1672), 1, anon_sym_LBRACK, ACTIONS(2062), 1, anon_sym_SLASH, ACTIONS(2064), 1, - anon_sym_PIPE_PIPE, + anon_sym_CARET, ACTIONS(2066), 1, + anon_sym_AMP, + ACTIONS(2076), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2078), 1, anon_sym_AMP_AMP, - ACTIONS(2068), 1, + ACTIONS(2080), 1, anon_sym_PIPE, - ACTIONS(2070), 1, - anon_sym_CARET, - ACTIONS(2072), 1, - anon_sym_AMP, ACTIONS(2089), 1, anon_sym_QMARK, ACTIONS(2110), 1, anon_sym_COMMA, ACTIONS(2124), 1, anon_sym_RPAREN, - STATE(543), 1, + STATE(505), 1, sym_argument_list, - ACTIONS(1696), 2, + ACTIONS(1674), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1698), 2, + ACTIONS(1676), 2, anon_sym_DOT, anon_sym_DASH_GT, ACTIONS(2058), 2, @@ -46916,45 +46393,49 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2060), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2074), 2, + ACTIONS(2068), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2076), 2, + ACTIONS(2070), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2078), 2, + ACTIONS(2072), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2080), 2, + ACTIONS(2074), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [15844] = 20, + [15842] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1690), 1, + ACTIONS(1668), 1, anon_sym_LPAREN2, - ACTIONS(1694), 1, + ACTIONS(1672), 1, anon_sym_LBRACK, ACTIONS(2062), 1, anon_sym_SLASH, ACTIONS(2064), 1, - anon_sym_PIPE_PIPE, + anon_sym_CARET, ACTIONS(2066), 1, + anon_sym_AMP, + ACTIONS(2076), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2078), 1, anon_sym_AMP_AMP, - ACTIONS(2068), 1, + ACTIONS(2080), 1, anon_sym_PIPE, - ACTIONS(2070), 1, - anon_sym_CARET, - ACTIONS(2072), 1, - anon_sym_AMP, ACTIONS(2089), 1, anon_sym_QMARK, - STATE(543), 1, + ACTIONS(2110), 1, + anon_sym_COMMA, + ACTIONS(2126), 1, + anon_sym_SEMI, + STATE(505), 1, sym_argument_list, - ACTIONS(1696), 2, + ACTIONS(1674), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1698), 2, + ACTIONS(1676), 2, anon_sym_DOT, anon_sym_DASH_GT, ACTIONS(2058), 2, @@ -46963,52 +46444,49 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2060), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2074), 2, + ACTIONS(2068), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2076), 2, + ACTIONS(2070), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2078), 2, + ACTIONS(2072), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2080), 2, + ACTIONS(2074), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2126), 2, - anon_sym_COMMA, - anon_sym_RBRACE, [15914] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1690), 1, + ACTIONS(1668), 1, anon_sym_LPAREN2, - ACTIONS(1694), 1, + ACTIONS(1672), 1, anon_sym_LBRACK, ACTIONS(2062), 1, anon_sym_SLASH, ACTIONS(2064), 1, - anon_sym_PIPE_PIPE, + anon_sym_CARET, ACTIONS(2066), 1, + anon_sym_AMP, + ACTIONS(2076), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2078), 1, anon_sym_AMP_AMP, - ACTIONS(2068), 1, + ACTIONS(2080), 1, anon_sym_PIPE, - ACTIONS(2070), 1, - anon_sym_CARET, - ACTIONS(2072), 1, - anon_sym_AMP, ACTIONS(2089), 1, anon_sym_QMARK, ACTIONS(2110), 1, anon_sym_COMMA, ACTIONS(2128), 1, anon_sym_RPAREN, - STATE(543), 1, + STATE(505), 1, sym_argument_list, - ACTIONS(1696), 2, + ACTIONS(1674), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1698), 2, + ACTIONS(1676), 2, anon_sym_DOT, anon_sym_DASH_GT, ACTIONS(2058), 2, @@ -47017,49 +46495,49 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2060), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2074), 2, + ACTIONS(2068), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2076), 2, + ACTIONS(2070), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2078), 2, + ACTIONS(2072), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2080), 2, + ACTIONS(2074), 2, anon_sym_LT_LT, anon_sym_GT_GT, [15986] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1690), 1, + ACTIONS(1668), 1, anon_sym_LPAREN2, - ACTIONS(1694), 1, + ACTIONS(1672), 1, anon_sym_LBRACK, ACTIONS(2062), 1, anon_sym_SLASH, ACTIONS(2064), 1, - anon_sym_PIPE_PIPE, + anon_sym_CARET, ACTIONS(2066), 1, + anon_sym_AMP, + ACTIONS(2076), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2078), 1, anon_sym_AMP_AMP, - ACTIONS(2068), 1, + ACTIONS(2080), 1, anon_sym_PIPE, - ACTIONS(2070), 1, - anon_sym_CARET, - ACTIONS(2072), 1, - anon_sym_AMP, ACTIONS(2089), 1, anon_sym_QMARK, ACTIONS(2110), 1, anon_sym_COMMA, ACTIONS(2130), 1, anon_sym_RPAREN, - STATE(543), 1, + STATE(505), 1, sym_argument_list, - ACTIONS(1696), 2, + ACTIONS(1674), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1698), 2, + ACTIONS(1676), 2, anon_sym_DOT, anon_sym_DASH_GT, ACTIONS(2058), 2, @@ -47068,99 +46546,49 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2060), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2074), 2, + ACTIONS(2068), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2076), 2, + ACTIONS(2070), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2078), 2, + ACTIONS(2072), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2080), 2, + ACTIONS(2074), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [16058] = 20, + [16058] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1690), 1, + ACTIONS(1668), 1, anon_sym_LPAREN2, - ACTIONS(1694), 1, + ACTIONS(1672), 1, anon_sym_LBRACK, ACTIONS(2062), 1, anon_sym_SLASH, ACTIONS(2064), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2066), 1, - anon_sym_AMP_AMP, - ACTIONS(2068), 1, - anon_sym_PIPE, - ACTIONS(2070), 1, anon_sym_CARET, - ACTIONS(2072), 1, + ACTIONS(2066), 1, anon_sym_AMP, - ACTIONS(2089), 1, - anon_sym_QMARK, - STATE(543), 1, - sym_argument_list, - ACTIONS(1696), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1698), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2058), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2060), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2074), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2076), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2078), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2080), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2132), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [16128] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1690), 1, - anon_sym_LPAREN2, - ACTIONS(1694), 1, - anon_sym_LBRACK, - ACTIONS(2062), 1, - anon_sym_SLASH, - ACTIONS(2064), 1, + ACTIONS(2076), 1, anon_sym_PIPE_PIPE, - ACTIONS(2066), 1, + ACTIONS(2078), 1, anon_sym_AMP_AMP, - ACTIONS(2068), 1, + ACTIONS(2080), 1, anon_sym_PIPE, - ACTIONS(2070), 1, - anon_sym_CARET, - ACTIONS(2072), 1, - anon_sym_AMP, ACTIONS(2089), 1, anon_sym_QMARK, ACTIONS(2110), 1, anon_sym_COMMA, - ACTIONS(2134), 1, + ACTIONS(2132), 1, anon_sym_RPAREN, - STATE(543), 1, + STATE(505), 1, sym_argument_list, - ACTIONS(1696), 2, + ACTIONS(1674), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1698), 2, + ACTIONS(1676), 2, anon_sym_DOT, anon_sym_DASH_GT, ACTIONS(2058), 2, @@ -47169,49 +46597,49 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2060), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2074), 2, + ACTIONS(2068), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2076), 2, + ACTIONS(2070), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2078), 2, + ACTIONS(2072), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2080), 2, + ACTIONS(2074), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [16200] = 21, + [16130] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1690), 1, + ACTIONS(1668), 1, anon_sym_LPAREN2, - ACTIONS(1694), 1, + ACTIONS(1672), 1, anon_sym_LBRACK, ACTIONS(2062), 1, anon_sym_SLASH, ACTIONS(2064), 1, - anon_sym_PIPE_PIPE, + anon_sym_CARET, ACTIONS(2066), 1, + anon_sym_AMP, + ACTIONS(2076), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2078), 1, anon_sym_AMP_AMP, - ACTIONS(2068), 1, + ACTIONS(2080), 1, anon_sym_PIPE, - ACTIONS(2070), 1, - anon_sym_CARET, - ACTIONS(2072), 1, - anon_sym_AMP, ACTIONS(2089), 1, anon_sym_QMARK, ACTIONS(2110), 1, anon_sym_COMMA, - ACTIONS(2136), 1, + ACTIONS(2134), 1, anon_sym_RPAREN, - STATE(543), 1, + STATE(505), 1, sym_argument_list, - ACTIONS(1696), 2, + ACTIONS(1674), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1698), 2, + ACTIONS(1676), 2, anon_sym_DOT, anon_sym_DASH_GT, ACTIONS(2058), 2, @@ -47220,49 +46648,49 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2060), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2074), 2, + ACTIONS(2068), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2076), 2, + ACTIONS(2070), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2078), 2, + ACTIONS(2072), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2080), 2, + ACTIONS(2074), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [16272] = 21, + [16202] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1690), 1, + ACTIONS(1668), 1, anon_sym_LPAREN2, - ACTIONS(1694), 1, + ACTIONS(1672), 1, anon_sym_LBRACK, ACTIONS(2062), 1, anon_sym_SLASH, ACTIONS(2064), 1, - anon_sym_PIPE_PIPE, + anon_sym_CARET, ACTIONS(2066), 1, + anon_sym_AMP, + ACTIONS(2076), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2078), 1, anon_sym_AMP_AMP, - ACTIONS(2068), 1, + ACTIONS(2080), 1, anon_sym_PIPE, - ACTIONS(2070), 1, - anon_sym_CARET, - ACTIONS(2072), 1, - anon_sym_AMP, ACTIONS(2089), 1, anon_sym_QMARK, ACTIONS(2110), 1, anon_sym_COMMA, - ACTIONS(2138), 1, + ACTIONS(2136), 1, anon_sym_RPAREN, - STATE(543), 1, + STATE(505), 1, sym_argument_list, - ACTIONS(1696), 2, + ACTIONS(1674), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1698), 2, + ACTIONS(1676), 2, anon_sym_DOT, anon_sym_DASH_GT, ACTIONS(2058), 2, @@ -47271,49 +46699,49 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2060), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2074), 2, + ACTIONS(2068), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2076), 2, + ACTIONS(2070), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2078), 2, + ACTIONS(2072), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2080), 2, + ACTIONS(2074), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [16344] = 21, + [16274] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1690), 1, + ACTIONS(1668), 1, anon_sym_LPAREN2, - ACTIONS(1694), 1, + ACTIONS(1672), 1, anon_sym_LBRACK, ACTIONS(2062), 1, anon_sym_SLASH, ACTIONS(2064), 1, - anon_sym_PIPE_PIPE, + anon_sym_CARET, ACTIONS(2066), 1, + anon_sym_AMP, + ACTIONS(2076), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2078), 1, anon_sym_AMP_AMP, - ACTIONS(2068), 1, + ACTIONS(2080), 1, anon_sym_PIPE, - ACTIONS(2070), 1, - anon_sym_CARET, - ACTIONS(2072), 1, - anon_sym_AMP, ACTIONS(2089), 1, anon_sym_QMARK, ACTIONS(2110), 1, anon_sym_COMMA, - ACTIONS(2140), 1, + ACTIONS(2138), 1, anon_sym_RPAREN, - STATE(543), 1, + STATE(505), 1, sym_argument_list, - ACTIONS(1696), 2, + ACTIONS(1674), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1698), 2, + ACTIONS(1676), 2, anon_sym_DOT, anon_sym_DASH_GT, ACTIONS(2058), 2, @@ -47322,82 +46750,49 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2060), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2074), 2, + ACTIONS(2068), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2076), 2, + ACTIONS(2070), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2078), 2, + ACTIONS(2072), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2080), 2, + ACTIONS(2074), 2, anon_sym_LT_LT, - anon_sym_GT_GT, - [16416] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2144), 9, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_COLON, - ACTIONS(2142), 19, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [16452] = 21, + anon_sym_GT_GT, + [16346] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1690), 1, + ACTIONS(1668), 1, anon_sym_LPAREN2, - ACTIONS(1694), 1, + ACTIONS(1672), 1, anon_sym_LBRACK, ACTIONS(2062), 1, anon_sym_SLASH, ACTIONS(2064), 1, - anon_sym_PIPE_PIPE, + anon_sym_CARET, ACTIONS(2066), 1, + anon_sym_AMP, + ACTIONS(2076), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2078), 1, anon_sym_AMP_AMP, - ACTIONS(2068), 1, + ACTIONS(2080), 1, anon_sym_PIPE, - ACTIONS(2070), 1, - anon_sym_CARET, - ACTIONS(2072), 1, - anon_sym_AMP, ACTIONS(2089), 1, anon_sym_QMARK, ACTIONS(2110), 1, anon_sym_COMMA, - ACTIONS(2146), 1, + ACTIONS(2140), 1, anon_sym_SEMI, - STATE(543), 1, + STATE(505), 1, sym_argument_list, - ACTIONS(1696), 2, + ACTIONS(1674), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1698), 2, + ACTIONS(1676), 2, anon_sym_DOT, anon_sym_DASH_GT, ACTIONS(2058), 2, @@ -47406,49 +46801,49 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2060), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2074), 2, + ACTIONS(2068), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2076), 2, + ACTIONS(2070), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2078), 2, + ACTIONS(2072), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2080), 2, + ACTIONS(2074), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [16524] = 21, + [16418] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1690), 1, + ACTIONS(1668), 1, anon_sym_LPAREN2, - ACTIONS(1694), 1, + ACTIONS(1672), 1, anon_sym_LBRACK, ACTIONS(2062), 1, anon_sym_SLASH, ACTIONS(2064), 1, - anon_sym_PIPE_PIPE, + anon_sym_CARET, ACTIONS(2066), 1, + anon_sym_AMP, + ACTIONS(2076), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2078), 1, anon_sym_AMP_AMP, - ACTIONS(2068), 1, + ACTIONS(2080), 1, anon_sym_PIPE, - ACTIONS(2070), 1, - anon_sym_CARET, - ACTIONS(2072), 1, - anon_sym_AMP, ACTIONS(2089), 1, anon_sym_QMARK, ACTIONS(2110), 1, anon_sym_COMMA, - ACTIONS(2148), 1, + ACTIONS(2142), 1, anon_sym_RPAREN, - STATE(543), 1, + STATE(505), 1, sym_argument_list, - ACTIONS(1696), 2, + ACTIONS(1674), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1698), 2, + ACTIONS(1676), 2, anon_sym_DOT, anon_sym_DASH_GT, ACTIONS(2058), 2, @@ -47457,49 +46852,49 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2060), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2074), 2, + ACTIONS(2068), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2076), 2, + ACTIONS(2070), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2078), 2, + ACTIONS(2072), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2080), 2, + ACTIONS(2074), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [16596] = 21, + [16490] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1690), 1, + ACTIONS(1668), 1, anon_sym_LPAREN2, - ACTIONS(1694), 1, + ACTIONS(1672), 1, anon_sym_LBRACK, ACTIONS(2062), 1, anon_sym_SLASH, ACTIONS(2064), 1, - anon_sym_PIPE_PIPE, + anon_sym_CARET, ACTIONS(2066), 1, + anon_sym_AMP, + ACTIONS(2076), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2078), 1, anon_sym_AMP_AMP, - ACTIONS(2068), 1, + ACTIONS(2080), 1, anon_sym_PIPE, - ACTIONS(2070), 1, - anon_sym_CARET, - ACTIONS(2072), 1, - anon_sym_AMP, ACTIONS(2089), 1, anon_sym_QMARK, ACTIONS(2110), 1, anon_sym_COMMA, - ACTIONS(2150), 1, + ACTIONS(2144), 1, anon_sym_RPAREN, - STATE(543), 1, + STATE(505), 1, sym_argument_list, - ACTIONS(1696), 2, + ACTIONS(1674), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1698), 2, + ACTIONS(1676), 2, anon_sym_DOT, anon_sym_DASH_GT, ACTIONS(2058), 2, @@ -47508,49 +46903,49 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2060), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2074), 2, + ACTIONS(2068), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2076), 2, + ACTIONS(2070), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2078), 2, + ACTIONS(2072), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2080), 2, + ACTIONS(2074), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [16668] = 21, + [16562] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1690), 1, + ACTIONS(1668), 1, anon_sym_LPAREN2, - ACTIONS(1694), 1, + ACTIONS(1672), 1, anon_sym_LBRACK, ACTIONS(2062), 1, anon_sym_SLASH, ACTIONS(2064), 1, - anon_sym_PIPE_PIPE, + anon_sym_CARET, ACTIONS(2066), 1, + anon_sym_AMP, + ACTIONS(2076), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2078), 1, anon_sym_AMP_AMP, - ACTIONS(2068), 1, + ACTIONS(2080), 1, anon_sym_PIPE, - ACTIONS(2070), 1, - anon_sym_CARET, - ACTIONS(2072), 1, - anon_sym_AMP, ACTIONS(2089), 1, anon_sym_QMARK, ACTIONS(2110), 1, anon_sym_COMMA, - ACTIONS(2152), 1, + ACTIONS(2146), 1, anon_sym_RPAREN, - STATE(543), 1, + STATE(505), 1, sym_argument_list, - ACTIONS(1696), 2, + ACTIONS(1674), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1698), 2, + ACTIONS(1676), 2, anon_sym_DOT, anon_sym_DASH_GT, ACTIONS(2058), 2, @@ -47559,49 +46954,49 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2060), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2074), 2, + ACTIONS(2068), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2076), 2, + ACTIONS(2070), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2078), 2, + ACTIONS(2072), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2080), 2, + ACTIONS(2074), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [16740] = 21, + [16634] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1690), 1, + ACTIONS(1668), 1, anon_sym_LPAREN2, - ACTIONS(1694), 1, + ACTIONS(1672), 1, anon_sym_LBRACK, ACTIONS(2062), 1, anon_sym_SLASH, ACTIONS(2064), 1, - anon_sym_PIPE_PIPE, + anon_sym_CARET, ACTIONS(2066), 1, + anon_sym_AMP, + ACTIONS(2076), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2078), 1, anon_sym_AMP_AMP, - ACTIONS(2068), 1, + ACTIONS(2080), 1, anon_sym_PIPE, - ACTIONS(2070), 1, - anon_sym_CARET, - ACTIONS(2072), 1, - anon_sym_AMP, ACTIONS(2089), 1, anon_sym_QMARK, ACTIONS(2110), 1, anon_sym_COMMA, - ACTIONS(2154), 1, + ACTIONS(2148), 1, anon_sym_RPAREN, - STATE(543), 1, + STATE(505), 1, sym_argument_list, - ACTIONS(1696), 2, + ACTIONS(1674), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1698), 2, + ACTIONS(1676), 2, anon_sym_DOT, anon_sym_DASH_GT, ACTIONS(2058), 2, @@ -47610,49 +47005,45 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2060), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2074), 2, + ACTIONS(2068), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2076), 2, + ACTIONS(2070), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2078), 2, + ACTIONS(2072), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2080), 2, + ACTIONS(2074), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [16812] = 21, + [16706] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1690), 1, + ACTIONS(1668), 1, anon_sym_LPAREN2, - ACTIONS(1694), 1, + ACTIONS(1672), 1, anon_sym_LBRACK, ACTIONS(2062), 1, anon_sym_SLASH, ACTIONS(2064), 1, - anon_sym_PIPE_PIPE, + anon_sym_CARET, ACTIONS(2066), 1, + anon_sym_AMP, + ACTIONS(2076), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2078), 1, anon_sym_AMP_AMP, - ACTIONS(2068), 1, + ACTIONS(2080), 1, anon_sym_PIPE, - ACTIONS(2070), 1, - anon_sym_CARET, - ACTIONS(2072), 1, - anon_sym_AMP, ACTIONS(2089), 1, anon_sym_QMARK, - ACTIONS(2110), 1, - anon_sym_COMMA, - ACTIONS(2156), 1, - anon_sym_RPAREN, - STATE(543), 1, + STATE(505), 1, sym_argument_list, - ACTIONS(1696), 2, + ACTIONS(1674), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1698), 2, + ACTIONS(1676), 2, anon_sym_DOT, anon_sym_DASH_GT, ACTIONS(2058), 2, @@ -47661,49 +47052,52 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2060), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2074), 2, + ACTIONS(2068), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2076), 2, + ACTIONS(2070), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2078), 2, + ACTIONS(2072), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2080), 2, + ACTIONS(2074), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [16884] = 21, + ACTIONS(2150), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [16776] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1690), 1, + ACTIONS(1668), 1, anon_sym_LPAREN2, - ACTIONS(1694), 1, + ACTIONS(1672), 1, anon_sym_LBRACK, ACTIONS(2062), 1, anon_sym_SLASH, ACTIONS(2064), 1, - anon_sym_PIPE_PIPE, + anon_sym_CARET, ACTIONS(2066), 1, + anon_sym_AMP, + ACTIONS(2076), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2078), 1, anon_sym_AMP_AMP, - ACTIONS(2068), 1, + ACTIONS(2080), 1, anon_sym_PIPE, - ACTIONS(2070), 1, - anon_sym_CARET, - ACTIONS(2072), 1, - anon_sym_AMP, ACTIONS(2089), 1, anon_sym_QMARK, ACTIONS(2110), 1, anon_sym_COMMA, - ACTIONS(2158), 1, + ACTIONS(2152), 1, anon_sym_RPAREN, - STATE(543), 1, + STATE(505), 1, sym_argument_list, - ACTIONS(1696), 2, + ACTIONS(1674), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1698), 2, + ACTIONS(1676), 2, anon_sym_DOT, anon_sym_DASH_GT, ACTIONS(2058), 2, @@ -47712,49 +47106,49 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2060), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2074), 2, + ACTIONS(2068), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2076), 2, + ACTIONS(2070), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2078), 2, + ACTIONS(2072), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2080), 2, + ACTIONS(2074), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [16956] = 21, + [16848] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1690), 1, + ACTIONS(1668), 1, anon_sym_LPAREN2, - ACTIONS(1694), 1, + ACTIONS(1672), 1, anon_sym_LBRACK, ACTIONS(2062), 1, anon_sym_SLASH, ACTIONS(2064), 1, - anon_sym_PIPE_PIPE, + anon_sym_CARET, ACTIONS(2066), 1, + anon_sym_AMP, + ACTIONS(2076), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2078), 1, anon_sym_AMP_AMP, - ACTIONS(2068), 1, + ACTIONS(2080), 1, anon_sym_PIPE, - ACTIONS(2070), 1, - anon_sym_CARET, - ACTIONS(2072), 1, - anon_sym_AMP, ACTIONS(2089), 1, anon_sym_QMARK, ACTIONS(2110), 1, anon_sym_COMMA, - ACTIONS(2160), 1, + ACTIONS(2154), 1, anon_sym_SEMI, - STATE(543), 1, + STATE(505), 1, sym_argument_list, - ACTIONS(1696), 2, + ACTIONS(1674), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1698), 2, + ACTIONS(1676), 2, anon_sym_DOT, anon_sym_DASH_GT, ACTIONS(2058), 2, @@ -47763,49 +47157,49 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2060), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2074), 2, + ACTIONS(2068), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2076), 2, + ACTIONS(2070), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2078), 2, + ACTIONS(2072), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2080), 2, + ACTIONS(2074), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [17028] = 21, + [16920] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1690), 1, + ACTIONS(1668), 1, anon_sym_LPAREN2, - ACTIONS(1694), 1, + ACTIONS(1672), 1, anon_sym_LBRACK, ACTIONS(2062), 1, anon_sym_SLASH, ACTIONS(2064), 1, - anon_sym_PIPE_PIPE, + anon_sym_CARET, ACTIONS(2066), 1, + anon_sym_AMP, + ACTIONS(2076), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2078), 1, anon_sym_AMP_AMP, - ACTIONS(2068), 1, + ACTIONS(2080), 1, anon_sym_PIPE, - ACTIONS(2070), 1, - anon_sym_CARET, - ACTIONS(2072), 1, - anon_sym_AMP, ACTIONS(2089), 1, anon_sym_QMARK, ACTIONS(2110), 1, anon_sym_COMMA, - ACTIONS(2162), 1, - anon_sym_SEMI, - STATE(543), 1, + ACTIONS(2156), 1, + anon_sym_RPAREN, + STATE(505), 1, sym_argument_list, - ACTIONS(1696), 2, + ACTIONS(1674), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1698), 2, + ACTIONS(1676), 2, anon_sym_DOT, anon_sym_DASH_GT, ACTIONS(2058), 2, @@ -47814,49 +47208,49 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2060), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2074), 2, + ACTIONS(2068), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2076), 2, + ACTIONS(2070), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2078), 2, + ACTIONS(2072), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2080), 2, + ACTIONS(2074), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [17100] = 21, + [16992] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1690), 1, + ACTIONS(1668), 1, anon_sym_LPAREN2, - ACTIONS(1694), 1, + ACTIONS(1672), 1, anon_sym_LBRACK, ACTIONS(2062), 1, anon_sym_SLASH, ACTIONS(2064), 1, - anon_sym_PIPE_PIPE, + anon_sym_CARET, ACTIONS(2066), 1, + anon_sym_AMP, + ACTIONS(2076), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2078), 1, anon_sym_AMP_AMP, - ACTIONS(2068), 1, + ACTIONS(2080), 1, anon_sym_PIPE, - ACTIONS(2070), 1, - anon_sym_CARET, - ACTIONS(2072), 1, - anon_sym_AMP, ACTIONS(2089), 1, anon_sym_QMARK, ACTIONS(2110), 1, anon_sym_COMMA, - ACTIONS(2164), 1, - anon_sym_RPAREN, - STATE(543), 1, + ACTIONS(2158), 1, + anon_sym_SEMI, + STATE(505), 1, sym_argument_list, - ACTIONS(1696), 2, + ACTIONS(1674), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1698), 2, + ACTIONS(1676), 2, anon_sym_DOT, anon_sym_DASH_GT, ACTIONS(2058), 2, @@ -47865,49 +47259,49 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2060), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2074), 2, + ACTIONS(2068), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2076), 2, + ACTIONS(2070), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2078), 2, + ACTIONS(2072), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2080), 2, + ACTIONS(2074), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [17172] = 21, + [17064] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1690), 1, + ACTIONS(1668), 1, anon_sym_LPAREN2, - ACTIONS(1694), 1, + ACTIONS(1672), 1, anon_sym_LBRACK, ACTIONS(2062), 1, anon_sym_SLASH, ACTIONS(2064), 1, - anon_sym_PIPE_PIPE, + anon_sym_CARET, ACTIONS(2066), 1, + anon_sym_AMP, + ACTIONS(2076), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2078), 1, anon_sym_AMP_AMP, - ACTIONS(2068), 1, + ACTIONS(2080), 1, anon_sym_PIPE, - ACTIONS(2070), 1, - anon_sym_CARET, - ACTIONS(2072), 1, - anon_sym_AMP, ACTIONS(2089), 1, anon_sym_QMARK, ACTIONS(2110), 1, anon_sym_COMMA, - ACTIONS(2166), 1, - anon_sym_SEMI, - STATE(543), 1, + ACTIONS(2160), 1, + anon_sym_RPAREN, + STATE(505), 1, sym_argument_list, - ACTIONS(1696), 2, + ACTIONS(1674), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1698), 2, + ACTIONS(1676), 2, anon_sym_DOT, anon_sym_DASH_GT, ACTIONS(2058), 2, @@ -47916,49 +47310,49 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2060), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2074), 2, + ACTIONS(2068), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2076), 2, + ACTIONS(2070), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2078), 2, + ACTIONS(2072), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2080), 2, + ACTIONS(2074), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [17244] = 21, + [17136] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1690), 1, + ACTIONS(1668), 1, anon_sym_LPAREN2, - ACTIONS(1694), 1, + ACTIONS(1672), 1, anon_sym_LBRACK, ACTIONS(2062), 1, anon_sym_SLASH, ACTIONS(2064), 1, - anon_sym_PIPE_PIPE, + anon_sym_CARET, ACTIONS(2066), 1, + anon_sym_AMP, + ACTIONS(2076), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2078), 1, anon_sym_AMP_AMP, - ACTIONS(2068), 1, + ACTIONS(2080), 1, anon_sym_PIPE, - ACTIONS(2070), 1, - anon_sym_CARET, - ACTIONS(2072), 1, - anon_sym_AMP, ACTIONS(2089), 1, anon_sym_QMARK, ACTIONS(2110), 1, anon_sym_COMMA, - ACTIONS(2168), 1, + ACTIONS(2162), 1, anon_sym_SEMI, - STATE(543), 1, + STATE(505), 1, sym_argument_list, - ACTIONS(1696), 2, + ACTIONS(1674), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1698), 2, + ACTIONS(1676), 2, anon_sym_DOT, anon_sym_DASH_GT, ACTIONS(2058), 2, @@ -47967,49 +47361,49 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2060), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2074), 2, + ACTIONS(2068), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2076), 2, + ACTIONS(2070), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2078), 2, + ACTIONS(2072), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2080), 2, + ACTIONS(2074), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [17316] = 21, + [17208] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1690), 1, + ACTIONS(1668), 1, anon_sym_LPAREN2, - ACTIONS(1694), 1, + ACTIONS(1672), 1, anon_sym_LBRACK, ACTIONS(2062), 1, anon_sym_SLASH, ACTIONS(2064), 1, - anon_sym_PIPE_PIPE, + anon_sym_CARET, ACTIONS(2066), 1, + anon_sym_AMP, + ACTIONS(2076), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2078), 1, anon_sym_AMP_AMP, - ACTIONS(2068), 1, + ACTIONS(2080), 1, anon_sym_PIPE, - ACTIONS(2070), 1, - anon_sym_CARET, - ACTIONS(2072), 1, - anon_sym_AMP, ACTIONS(2089), 1, anon_sym_QMARK, ACTIONS(2110), 1, anon_sym_COMMA, - ACTIONS(2170), 1, + ACTIONS(2164), 1, anon_sym_RPAREN, - STATE(543), 1, + STATE(505), 1, sym_argument_list, - ACTIONS(1696), 2, + ACTIONS(1674), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1698), 2, + ACTIONS(1676), 2, anon_sym_DOT, anon_sym_DASH_GT, ACTIONS(2058), 2, @@ -48018,49 +47412,49 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2060), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2074), 2, + ACTIONS(2068), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2076), 2, + ACTIONS(2070), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2078), 2, + ACTIONS(2072), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2080), 2, + ACTIONS(2074), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [17388] = 21, + [17280] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1690), 1, + ACTIONS(1668), 1, anon_sym_LPAREN2, - ACTIONS(1694), 1, + ACTIONS(1672), 1, anon_sym_LBRACK, ACTIONS(2062), 1, anon_sym_SLASH, ACTIONS(2064), 1, - anon_sym_PIPE_PIPE, + anon_sym_CARET, ACTIONS(2066), 1, + anon_sym_AMP, + ACTIONS(2076), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2078), 1, anon_sym_AMP_AMP, - ACTIONS(2068), 1, + ACTIONS(2080), 1, anon_sym_PIPE, - ACTIONS(2070), 1, - anon_sym_CARET, - ACTIONS(2072), 1, - anon_sym_AMP, ACTIONS(2089), 1, anon_sym_QMARK, ACTIONS(2110), 1, anon_sym_COMMA, - ACTIONS(2172), 1, + ACTIONS(2166), 1, anon_sym_RPAREN, - STATE(543), 1, + STATE(505), 1, sym_argument_list, - ACTIONS(1696), 2, + ACTIONS(1674), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1698), 2, + ACTIONS(1676), 2, anon_sym_DOT, anon_sym_DASH_GT, ACTIONS(2058), 2, @@ -48069,49 +47463,49 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2060), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2074), 2, + ACTIONS(2068), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2076), 2, + ACTIONS(2070), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2078), 2, + ACTIONS(2072), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2080), 2, + ACTIONS(2074), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [17460] = 21, + [17352] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1690), 1, + ACTIONS(1668), 1, anon_sym_LPAREN2, - ACTIONS(1694), 1, + ACTIONS(1672), 1, anon_sym_LBRACK, ACTIONS(2062), 1, anon_sym_SLASH, ACTIONS(2064), 1, - anon_sym_PIPE_PIPE, + anon_sym_CARET, ACTIONS(2066), 1, + anon_sym_AMP, + ACTIONS(2076), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2078), 1, anon_sym_AMP_AMP, - ACTIONS(2068), 1, + ACTIONS(2080), 1, anon_sym_PIPE, - ACTIONS(2070), 1, - anon_sym_CARET, - ACTIONS(2072), 1, - anon_sym_AMP, ACTIONS(2089), 1, anon_sym_QMARK, ACTIONS(2110), 1, anon_sym_COMMA, - ACTIONS(2174), 1, - anon_sym_SEMI, - STATE(543), 1, + ACTIONS(2168), 1, + anon_sym_RPAREN, + STATE(505), 1, sym_argument_list, - ACTIONS(1696), 2, + ACTIONS(1674), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1698), 2, + ACTIONS(1676), 2, anon_sym_DOT, anon_sym_DASH_GT, ACTIONS(2058), 2, @@ -48120,49 +47514,49 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2060), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2074), 2, + ACTIONS(2068), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2076), 2, + ACTIONS(2070), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2078), 2, + ACTIONS(2072), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2080), 2, + ACTIONS(2074), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [17532] = 21, + [17424] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1690), 1, + ACTIONS(1668), 1, anon_sym_LPAREN2, - ACTIONS(1694), 1, + ACTIONS(1672), 1, anon_sym_LBRACK, ACTIONS(2062), 1, anon_sym_SLASH, ACTIONS(2064), 1, - anon_sym_PIPE_PIPE, + anon_sym_CARET, ACTIONS(2066), 1, + anon_sym_AMP, + ACTIONS(2076), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2078), 1, anon_sym_AMP_AMP, - ACTIONS(2068), 1, + ACTIONS(2080), 1, anon_sym_PIPE, - ACTIONS(2070), 1, - anon_sym_CARET, - ACTIONS(2072), 1, - anon_sym_AMP, ACTIONS(2089), 1, anon_sym_QMARK, ACTIONS(2110), 1, anon_sym_COMMA, - ACTIONS(2176), 1, + ACTIONS(2170), 1, anon_sym_RPAREN, - STATE(543), 1, + STATE(505), 1, sym_argument_list, - ACTIONS(1696), 2, + ACTIONS(1674), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1698), 2, + ACTIONS(1676), 2, anon_sym_DOT, anon_sym_DASH_GT, ACTIONS(2058), 2, @@ -48171,45 +47565,49 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2060), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2074), 2, + ACTIONS(2068), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2076), 2, + ACTIONS(2070), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2078), 2, + ACTIONS(2072), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2080), 2, + ACTIONS(2074), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [17604] = 20, + [17496] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1690), 1, + ACTIONS(1668), 1, anon_sym_LPAREN2, - ACTIONS(1694), 1, + ACTIONS(1672), 1, anon_sym_LBRACK, ACTIONS(2062), 1, anon_sym_SLASH, ACTIONS(2064), 1, - anon_sym_PIPE_PIPE, + anon_sym_CARET, ACTIONS(2066), 1, + anon_sym_AMP, + ACTIONS(2076), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2078), 1, anon_sym_AMP_AMP, - ACTIONS(2068), 1, + ACTIONS(2080), 1, anon_sym_PIPE, - ACTIONS(2070), 1, - anon_sym_CARET, - ACTIONS(2072), 1, - anon_sym_AMP, ACTIONS(2089), 1, anon_sym_QMARK, - STATE(543), 1, + ACTIONS(2110), 1, + anon_sym_COMMA, + ACTIONS(2172), 1, + anon_sym_RPAREN, + STATE(505), 1, sym_argument_list, - ACTIONS(1696), 2, + ACTIONS(1674), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1698), 2, + ACTIONS(1676), 2, anon_sym_DOT, anon_sym_DASH_GT, ACTIONS(2058), 2, @@ -48218,52 +47616,49 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2060), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2074), 2, + ACTIONS(2068), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2076), 2, + ACTIONS(2070), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2078), 2, + ACTIONS(2072), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2080), 2, + ACTIONS(2074), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2178), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [17674] = 21, + [17568] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1690), 1, + ACTIONS(1668), 1, anon_sym_LPAREN2, - ACTIONS(1694), 1, + ACTIONS(1672), 1, anon_sym_LBRACK, ACTIONS(2062), 1, anon_sym_SLASH, ACTIONS(2064), 1, - anon_sym_PIPE_PIPE, + anon_sym_CARET, ACTIONS(2066), 1, + anon_sym_AMP, + ACTIONS(2076), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2078), 1, anon_sym_AMP_AMP, - ACTIONS(2068), 1, + ACTIONS(2080), 1, anon_sym_PIPE, - ACTIONS(2070), 1, - anon_sym_CARET, - ACTIONS(2072), 1, - anon_sym_AMP, ACTIONS(2089), 1, anon_sym_QMARK, ACTIONS(2110), 1, anon_sym_COMMA, - ACTIONS(2180), 1, + ACTIONS(2174), 1, anon_sym_RPAREN, - STATE(543), 1, + STATE(505), 1, sym_argument_list, - ACTIONS(1696), 2, + ACTIONS(1674), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1698), 2, + ACTIONS(1676), 2, anon_sym_DOT, anon_sym_DASH_GT, ACTIONS(2058), 2, @@ -48272,49 +47667,49 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2060), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2074), 2, + ACTIONS(2068), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2076), 2, + ACTIONS(2070), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2078), 2, + ACTIONS(2072), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2080), 2, + ACTIONS(2074), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [17746] = 21, + [17640] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1690), 1, + ACTIONS(1668), 1, anon_sym_LPAREN2, - ACTIONS(1694), 1, + ACTIONS(1672), 1, anon_sym_LBRACK, ACTIONS(2062), 1, anon_sym_SLASH, ACTIONS(2064), 1, - anon_sym_PIPE_PIPE, + anon_sym_CARET, ACTIONS(2066), 1, + anon_sym_AMP, + ACTIONS(2076), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2078), 1, anon_sym_AMP_AMP, - ACTIONS(2068), 1, + ACTIONS(2080), 1, anon_sym_PIPE, - ACTIONS(2070), 1, - anon_sym_CARET, - ACTIONS(2072), 1, - anon_sym_AMP, ACTIONS(2089), 1, anon_sym_QMARK, ACTIONS(2110), 1, anon_sym_COMMA, - ACTIONS(2182), 1, - anon_sym_SEMI, - STATE(543), 1, + ACTIONS(2176), 1, + anon_sym_RPAREN, + STATE(505), 1, sym_argument_list, - ACTIONS(1696), 2, + ACTIONS(1674), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1698), 2, + ACTIONS(1676), 2, anon_sym_DOT, anon_sym_DASH_GT, ACTIONS(2058), 2, @@ -48323,49 +47718,49 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2060), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2074), 2, + ACTIONS(2068), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2076), 2, + ACTIONS(2070), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2078), 2, + ACTIONS(2072), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2080), 2, + ACTIONS(2074), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [17818] = 21, + [17712] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1690), 1, + ACTIONS(1668), 1, anon_sym_LPAREN2, - ACTIONS(1694), 1, + ACTIONS(1672), 1, anon_sym_LBRACK, ACTIONS(2062), 1, anon_sym_SLASH, ACTIONS(2064), 1, - anon_sym_PIPE_PIPE, + anon_sym_CARET, ACTIONS(2066), 1, + anon_sym_AMP, + ACTIONS(2076), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2078), 1, anon_sym_AMP_AMP, - ACTIONS(2068), 1, + ACTIONS(2080), 1, anon_sym_PIPE, - ACTIONS(2070), 1, - anon_sym_CARET, - ACTIONS(2072), 1, - anon_sym_AMP, ACTIONS(2089), 1, anon_sym_QMARK, ACTIONS(2110), 1, anon_sym_COMMA, - ACTIONS(2184), 1, + ACTIONS(2178), 1, anon_sym_RPAREN, - STATE(543), 1, + STATE(505), 1, sym_argument_list, - ACTIONS(1696), 2, + ACTIONS(1674), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1698), 2, + ACTIONS(1676), 2, anon_sym_DOT, anon_sym_DASH_GT, ACTIONS(2058), 2, @@ -48374,49 +47769,49 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2060), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2074), 2, + ACTIONS(2068), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2076), 2, + ACTIONS(2070), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2078), 2, + ACTIONS(2072), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2080), 2, + ACTIONS(2074), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [17890] = 21, + [17784] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1690), 1, + ACTIONS(1668), 1, anon_sym_LPAREN2, - ACTIONS(1694), 1, + ACTIONS(1672), 1, anon_sym_LBRACK, ACTIONS(2062), 1, anon_sym_SLASH, ACTIONS(2064), 1, - anon_sym_PIPE_PIPE, + anon_sym_CARET, ACTIONS(2066), 1, + anon_sym_AMP, + ACTIONS(2076), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2078), 1, anon_sym_AMP_AMP, - ACTIONS(2068), 1, + ACTIONS(2080), 1, anon_sym_PIPE, - ACTIONS(2070), 1, - anon_sym_CARET, - ACTIONS(2072), 1, - anon_sym_AMP, ACTIONS(2089), 1, anon_sym_QMARK, ACTIONS(2110), 1, anon_sym_COMMA, - ACTIONS(2186), 1, + ACTIONS(2180), 1, anon_sym_RPAREN, - STATE(543), 1, + STATE(505), 1, sym_argument_list, - ACTIONS(1696), 2, + ACTIONS(1674), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1698), 2, + ACTIONS(1676), 2, anon_sym_DOT, anon_sym_DASH_GT, ACTIONS(2058), 2, @@ -48425,49 +47820,45 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2060), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2074), 2, + ACTIONS(2068), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2076), 2, + ACTIONS(2070), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2078), 2, + ACTIONS(2072), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2080), 2, + ACTIONS(2074), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [17962] = 21, + [17856] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1690), 1, + ACTIONS(1668), 1, anon_sym_LPAREN2, - ACTIONS(1694), 1, + ACTIONS(1672), 1, anon_sym_LBRACK, ACTIONS(2062), 1, anon_sym_SLASH, ACTIONS(2064), 1, - anon_sym_PIPE_PIPE, + anon_sym_CARET, ACTIONS(2066), 1, + anon_sym_AMP, + ACTIONS(2076), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2078), 1, anon_sym_AMP_AMP, - ACTIONS(2068), 1, + ACTIONS(2080), 1, anon_sym_PIPE, - ACTIONS(2070), 1, - anon_sym_CARET, - ACTIONS(2072), 1, - anon_sym_AMP, ACTIONS(2089), 1, anon_sym_QMARK, - ACTIONS(2110), 1, - anon_sym_COMMA, - ACTIONS(2188), 1, - anon_sym_RPAREN, - STATE(543), 1, + STATE(505), 1, sym_argument_list, - ACTIONS(1696), 2, + ACTIONS(1674), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1698), 2, + ACTIONS(1676), 2, anon_sym_DOT, anon_sym_DASH_GT, ACTIONS(2058), 2, @@ -48476,49 +47867,52 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2060), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2074), 2, + ACTIONS(2068), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2076), 2, + ACTIONS(2070), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2078), 2, + ACTIONS(2072), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2080), 2, + ACTIONS(2074), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [18034] = 21, + ACTIONS(2182), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [17926] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1690), 1, + ACTIONS(1668), 1, anon_sym_LPAREN2, - ACTIONS(1694), 1, + ACTIONS(1672), 1, anon_sym_LBRACK, ACTIONS(2062), 1, anon_sym_SLASH, ACTIONS(2064), 1, - anon_sym_PIPE_PIPE, + anon_sym_CARET, ACTIONS(2066), 1, + anon_sym_AMP, + ACTIONS(2076), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2078), 1, anon_sym_AMP_AMP, - ACTIONS(2068), 1, + ACTIONS(2080), 1, anon_sym_PIPE, - ACTIONS(2070), 1, - anon_sym_CARET, - ACTIONS(2072), 1, - anon_sym_AMP, ACTIONS(2089), 1, anon_sym_QMARK, ACTIONS(2110), 1, anon_sym_COMMA, - ACTIONS(2190), 1, - anon_sym_RPAREN, - STATE(543), 1, + ACTIONS(2184), 1, + anon_sym_SEMI, + STATE(505), 1, sym_argument_list, - ACTIONS(1696), 2, + ACTIONS(1674), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1698), 2, + ACTIONS(1676), 2, anon_sym_DOT, anon_sym_DASH_GT, ACTIONS(2058), 2, @@ -48527,49 +47921,99 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2060), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2074), 2, + ACTIONS(2068), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2076), 2, + ACTIONS(2070), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2078), 2, + ACTIONS(2072), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2080), 2, + ACTIONS(2074), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [18106] = 21, + [17998] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1690), 1, + ACTIONS(1668), 1, anon_sym_LPAREN2, - ACTIONS(1694), 1, + ACTIONS(1672), 1, anon_sym_LBRACK, ACTIONS(2062), 1, anon_sym_SLASH, ACTIONS(2064), 1, - anon_sym_PIPE_PIPE, + anon_sym_CARET, ACTIONS(2066), 1, + anon_sym_AMP, + ACTIONS(2076), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2078), 1, anon_sym_AMP_AMP, - ACTIONS(2068), 1, + ACTIONS(2080), 1, anon_sym_PIPE, - ACTIONS(2070), 1, + ACTIONS(2089), 1, + anon_sym_QMARK, + STATE(505), 1, + sym_argument_list, + ACTIONS(1674), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1676), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2058), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2060), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2068), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2070), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2072), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2074), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2186), 2, + anon_sym_COMMA, + anon_sym_SEMI, + [18068] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1668), 1, + anon_sym_LPAREN2, + ACTIONS(1672), 1, + anon_sym_LBRACK, + ACTIONS(2062), 1, + anon_sym_SLASH, + ACTIONS(2064), 1, anon_sym_CARET, - ACTIONS(2072), 1, + ACTIONS(2066), 1, anon_sym_AMP, + ACTIONS(2076), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2078), 1, + anon_sym_AMP_AMP, + ACTIONS(2080), 1, + anon_sym_PIPE, ACTIONS(2089), 1, anon_sym_QMARK, ACTIONS(2110), 1, anon_sym_COMMA, - ACTIONS(2192), 1, + ACTIONS(2188), 1, anon_sym_SEMI, - STATE(543), 1, + STATE(505), 1, sym_argument_list, - ACTIONS(1696), 2, + ACTIONS(1674), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1698), 2, + ACTIONS(1676), 2, anon_sym_DOT, anon_sym_DASH_GT, ACTIONS(2058), 2, @@ -48578,49 +48022,49 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2060), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2074), 2, + ACTIONS(2068), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2076), 2, + ACTIONS(2070), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2078), 2, + ACTIONS(2072), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2080), 2, + ACTIONS(2074), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [18178] = 21, + [18140] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1690), 1, + ACTIONS(1668), 1, anon_sym_LPAREN2, - ACTIONS(1694), 1, + ACTIONS(1672), 1, anon_sym_LBRACK, ACTIONS(2062), 1, anon_sym_SLASH, ACTIONS(2064), 1, - anon_sym_PIPE_PIPE, + anon_sym_CARET, ACTIONS(2066), 1, + anon_sym_AMP, + ACTIONS(2076), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2078), 1, anon_sym_AMP_AMP, - ACTIONS(2068), 1, + ACTIONS(2080), 1, anon_sym_PIPE, - ACTIONS(2070), 1, - anon_sym_CARET, - ACTIONS(2072), 1, - anon_sym_AMP, ACTIONS(2089), 1, anon_sym_QMARK, ACTIONS(2110), 1, anon_sym_COMMA, - ACTIONS(2194), 1, + ACTIONS(2190), 1, anon_sym_RPAREN, - STATE(543), 1, + STATE(505), 1, sym_argument_list, - ACTIONS(1696), 2, + ACTIONS(1674), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1698), 2, + ACTIONS(1676), 2, anon_sym_DOT, anon_sym_DASH_GT, ACTIONS(2058), 2, @@ -48629,45 +48073,82 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2060), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2074), 2, + ACTIONS(2068), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2076), 2, + ACTIONS(2070), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2078), 2, + ACTIONS(2072), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2080), 2, + ACTIONS(2074), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [18250] = 20, + [18212] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1690), 1, + ACTIONS(2194), 9, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(1694), 1, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(2192), 19, + anon_sym_extern, + anon_sym___attribute__, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [18248] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1668), 1, + anon_sym_LPAREN2, + ACTIONS(1672), 1, anon_sym_LBRACK, ACTIONS(2062), 1, anon_sym_SLASH, ACTIONS(2064), 1, - anon_sym_PIPE_PIPE, + anon_sym_CARET, ACTIONS(2066), 1, + anon_sym_AMP, + ACTIONS(2076), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2078), 1, anon_sym_AMP_AMP, - ACTIONS(2068), 1, + ACTIONS(2080), 1, anon_sym_PIPE, - ACTIONS(2070), 1, - anon_sym_CARET, - ACTIONS(2072), 1, - anon_sym_AMP, ACTIONS(2089), 1, anon_sym_QMARK, - STATE(543), 1, + ACTIONS(2110), 1, + anon_sym_COMMA, + ACTIONS(2196), 1, + anon_sym_RPAREN, + STATE(505), 1, sym_argument_list, - ACTIONS(1696), 2, + ACTIONS(1674), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1698), 2, + ACTIONS(1676), 2, anon_sym_DOT, anon_sym_DASH_GT, ACTIONS(2058), 2, @@ -48676,52 +48157,49 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2060), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2074), 2, + ACTIONS(2068), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2076), 2, + ACTIONS(2070), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2078), 2, + ACTIONS(2072), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2080), 2, + ACTIONS(2074), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2196), 2, - anon_sym_COMMA, - anon_sym_RPAREN, [18320] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1690), 1, + ACTIONS(1668), 1, anon_sym_LPAREN2, - ACTIONS(1694), 1, + ACTIONS(1672), 1, anon_sym_LBRACK, ACTIONS(2062), 1, anon_sym_SLASH, ACTIONS(2064), 1, - anon_sym_PIPE_PIPE, + anon_sym_CARET, ACTIONS(2066), 1, + anon_sym_AMP, + ACTIONS(2076), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2078), 1, anon_sym_AMP_AMP, - ACTIONS(2068), 1, + ACTIONS(2080), 1, anon_sym_PIPE, - ACTIONS(2070), 1, - anon_sym_CARET, - ACTIONS(2072), 1, - anon_sym_AMP, ACTIONS(2089), 1, anon_sym_QMARK, ACTIONS(2110), 1, anon_sym_COMMA, ACTIONS(2198), 1, anon_sym_SEMI, - STATE(543), 1, + STATE(505), 1, sym_argument_list, - ACTIONS(1696), 2, + ACTIONS(1674), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1698), 2, + ACTIONS(1676), 2, anon_sym_DOT, anon_sym_DASH_GT, ACTIONS(2058), 2, @@ -48730,45 +48208,49 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2060), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2074), 2, + ACTIONS(2068), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2076), 2, + ACTIONS(2070), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2078), 2, + ACTIONS(2072), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2080), 2, + ACTIONS(2074), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [18392] = 20, + [18392] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1690), 1, + ACTIONS(1668), 1, anon_sym_LPAREN2, - ACTIONS(1694), 1, + ACTIONS(1672), 1, anon_sym_LBRACK, ACTIONS(2062), 1, anon_sym_SLASH, ACTIONS(2064), 1, - anon_sym_PIPE_PIPE, + anon_sym_CARET, ACTIONS(2066), 1, + anon_sym_AMP, + ACTIONS(2076), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2078), 1, anon_sym_AMP_AMP, - ACTIONS(2068), 1, + ACTIONS(2080), 1, anon_sym_PIPE, - ACTIONS(2070), 1, - anon_sym_CARET, - ACTIONS(2072), 1, - anon_sym_AMP, ACTIONS(2089), 1, anon_sym_QMARK, - STATE(543), 1, + ACTIONS(2110), 1, + anon_sym_COMMA, + ACTIONS(2200), 1, + anon_sym_RPAREN, + STATE(505), 1, sym_argument_list, - ACTIONS(1696), 2, + ACTIONS(1674), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1698), 2, + ACTIONS(1676), 2, anon_sym_DOT, anon_sym_DASH_GT, ACTIONS(2058), 2, @@ -48777,52 +48259,45 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2060), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2074), 2, + ACTIONS(2068), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2076), 2, + ACTIONS(2070), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2078), 2, + ACTIONS(2072), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2080), 2, + ACTIONS(2074), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2200), 2, - anon_sym_COMMA, - anon_sym_SEMI, - [18462] = 21, + [18464] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1690), 1, + ACTIONS(1668), 1, anon_sym_LPAREN2, - ACTIONS(1694), 1, + ACTIONS(1672), 1, anon_sym_LBRACK, ACTIONS(2062), 1, anon_sym_SLASH, ACTIONS(2064), 1, - anon_sym_PIPE_PIPE, + anon_sym_CARET, ACTIONS(2066), 1, + anon_sym_AMP, + ACTIONS(2076), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2078), 1, anon_sym_AMP_AMP, - ACTIONS(2068), 1, + ACTIONS(2080), 1, anon_sym_PIPE, - ACTIONS(2070), 1, - anon_sym_CARET, - ACTIONS(2072), 1, - anon_sym_AMP, ACTIONS(2089), 1, anon_sym_QMARK, - ACTIONS(2110), 1, - anon_sym_COMMA, - ACTIONS(2202), 1, - anon_sym_SEMI, - STATE(543), 1, + STATE(505), 1, sym_argument_list, - ACTIONS(1696), 2, + ACTIONS(1674), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1698), 2, + ACTIONS(1676), 2, anon_sym_DOT, anon_sym_DASH_GT, ACTIONS(2058), 2, @@ -48831,49 +48306,52 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2060), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2074), 2, + ACTIONS(2068), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2076), 2, + ACTIONS(2070), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2078), 2, + ACTIONS(2072), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2080), 2, + ACTIONS(2074), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(2202), 2, + anon_sym_COMMA, + anon_sym_RPAREN, [18534] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1690), 1, + ACTIONS(1668), 1, anon_sym_LPAREN2, - ACTIONS(1694), 1, + ACTIONS(1672), 1, anon_sym_LBRACK, ACTIONS(2062), 1, anon_sym_SLASH, ACTIONS(2064), 1, - anon_sym_PIPE_PIPE, + anon_sym_CARET, ACTIONS(2066), 1, + anon_sym_AMP, + ACTIONS(2076), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2078), 1, anon_sym_AMP_AMP, - ACTIONS(2068), 1, + ACTIONS(2080), 1, anon_sym_PIPE, - ACTIONS(2070), 1, - anon_sym_CARET, - ACTIONS(2072), 1, - anon_sym_AMP, ACTIONS(2089), 1, anon_sym_QMARK, ACTIONS(2110), 1, anon_sym_COMMA, ACTIONS(2204), 1, anon_sym_SEMI, - STATE(543), 1, + STATE(505), 1, sym_argument_list, - ACTIONS(1696), 2, + ACTIONS(1674), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1698), 2, + ACTIONS(1676), 2, anon_sym_DOT, anon_sym_DASH_GT, ACTIONS(2058), 2, @@ -48882,49 +48360,49 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2060), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2074), 2, + ACTIONS(2068), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2076), 2, + ACTIONS(2070), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2078), 2, + ACTIONS(2072), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2080), 2, + ACTIONS(2074), 2, anon_sym_LT_LT, anon_sym_GT_GT, [18606] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1690), 1, + ACTIONS(1668), 1, anon_sym_LPAREN2, - ACTIONS(1694), 1, + ACTIONS(1672), 1, anon_sym_LBRACK, ACTIONS(2062), 1, anon_sym_SLASH, ACTIONS(2064), 1, - anon_sym_PIPE_PIPE, + anon_sym_CARET, ACTIONS(2066), 1, + anon_sym_AMP, + ACTIONS(2076), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2078), 1, anon_sym_AMP_AMP, - ACTIONS(2068), 1, + ACTIONS(2080), 1, anon_sym_PIPE, - ACTIONS(2070), 1, - anon_sym_CARET, - ACTIONS(2072), 1, - anon_sym_AMP, ACTIONS(2089), 1, anon_sym_QMARK, ACTIONS(2110), 1, anon_sym_COMMA, ACTIONS(2206), 1, - anon_sym_RPAREN, - STATE(543), 1, + anon_sym_SEMI, + STATE(505), 1, sym_argument_list, - ACTIONS(1696), 2, + ACTIONS(1674), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1698), 2, + ACTIONS(1676), 2, anon_sym_DOT, anon_sym_DASH_GT, ACTIONS(2058), 2, @@ -48933,49 +48411,49 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2060), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2074), 2, + ACTIONS(2068), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2076), 2, + ACTIONS(2070), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2078), 2, + ACTIONS(2072), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2080), 2, + ACTIONS(2074), 2, anon_sym_LT_LT, anon_sym_GT_GT, [18678] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1690), 1, + ACTIONS(1668), 1, anon_sym_LPAREN2, - ACTIONS(1694), 1, + ACTIONS(1672), 1, anon_sym_LBRACK, ACTIONS(2062), 1, anon_sym_SLASH, ACTIONS(2064), 1, - anon_sym_PIPE_PIPE, + anon_sym_CARET, ACTIONS(2066), 1, + anon_sym_AMP, + ACTIONS(2076), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2078), 1, anon_sym_AMP_AMP, - ACTIONS(2068), 1, + ACTIONS(2080), 1, anon_sym_PIPE, - ACTIONS(2070), 1, - anon_sym_CARET, - ACTIONS(2072), 1, - anon_sym_AMP, ACTIONS(2089), 1, anon_sym_QMARK, ACTIONS(2110), 1, anon_sym_COMMA, ACTIONS(2208), 1, anon_sym_SEMI, - STATE(543), 1, + STATE(505), 1, sym_argument_list, - ACTIONS(1696), 2, + ACTIONS(1674), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1698), 2, + ACTIONS(1676), 2, anon_sym_DOT, anon_sym_DASH_GT, ACTIONS(2058), 2, @@ -48984,49 +48462,49 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2060), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2074), 2, + ACTIONS(2068), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2076), 2, + ACTIONS(2070), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2078), 2, + ACTIONS(2072), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2080), 2, + ACTIONS(2074), 2, anon_sym_LT_LT, anon_sym_GT_GT, [18750] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1690), 1, + ACTIONS(1668), 1, anon_sym_LPAREN2, - ACTIONS(1694), 1, + ACTIONS(1672), 1, anon_sym_LBRACK, ACTIONS(2062), 1, anon_sym_SLASH, ACTIONS(2064), 1, - anon_sym_PIPE_PIPE, + anon_sym_CARET, ACTIONS(2066), 1, + anon_sym_AMP, + ACTIONS(2076), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2078), 1, anon_sym_AMP_AMP, - ACTIONS(2068), 1, + ACTIONS(2080), 1, anon_sym_PIPE, - ACTIONS(2070), 1, - anon_sym_CARET, - ACTIONS(2072), 1, - anon_sym_AMP, ACTIONS(2089), 1, anon_sym_QMARK, ACTIONS(2110), 1, anon_sym_COMMA, ACTIONS(2210), 1, - anon_sym_RPAREN, - STATE(543), 1, + anon_sym_SEMI, + STATE(505), 1, sym_argument_list, - ACTIONS(1696), 2, + ACTIONS(1674), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1698), 2, + ACTIONS(1676), 2, anon_sym_DOT, anon_sym_DASH_GT, ACTIONS(2058), 2, @@ -49035,47 +48513,47 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2060), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2074), 2, + ACTIONS(2068), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2076), 2, + ACTIONS(2070), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2078), 2, + ACTIONS(2072), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2080), 2, + ACTIONS(2074), 2, anon_sym_LT_LT, anon_sym_GT_GT, [18822] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1690), 1, + ACTIONS(1668), 1, anon_sym_LPAREN2, - ACTIONS(1694), 1, + ACTIONS(1672), 1, anon_sym_LBRACK, - ACTIONS(1794), 1, - anon_sym_RBRACK, ACTIONS(2062), 1, anon_sym_SLASH, ACTIONS(2064), 1, - anon_sym_PIPE_PIPE, + anon_sym_CARET, ACTIONS(2066), 1, + anon_sym_AMP, + ACTIONS(2076), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2078), 1, anon_sym_AMP_AMP, - ACTIONS(2068), 1, + ACTIONS(2080), 1, anon_sym_PIPE, - ACTIONS(2070), 1, - anon_sym_CARET, - ACTIONS(2072), 1, - anon_sym_AMP, ACTIONS(2089), 1, anon_sym_QMARK, - STATE(543), 1, + ACTIONS(2212), 1, + anon_sym_COLON, + STATE(505), 1, sym_argument_list, - ACTIONS(1696), 2, + ACTIONS(1674), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1698), 2, + ACTIONS(1676), 2, anon_sym_DOT, anon_sym_DASH_GT, ACTIONS(2058), 2, @@ -49084,47 +48562,47 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2060), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2074), 2, + ACTIONS(2068), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2076), 2, + ACTIONS(2070), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2078), 2, + ACTIONS(2072), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2080), 2, + ACTIONS(2074), 2, anon_sym_LT_LT, anon_sym_GT_GT, [18891] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1690), 1, + ACTIONS(1668), 1, anon_sym_LPAREN2, - ACTIONS(1694), 1, + ACTIONS(1672), 1, anon_sym_LBRACK, ACTIONS(2062), 1, anon_sym_SLASH, ACTIONS(2064), 1, - anon_sym_PIPE_PIPE, + anon_sym_CARET, ACTIONS(2066), 1, + anon_sym_AMP, + ACTIONS(2076), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2078), 1, anon_sym_AMP_AMP, - ACTIONS(2068), 1, + ACTIONS(2080), 1, anon_sym_PIPE, - ACTIONS(2070), 1, - anon_sym_CARET, - ACTIONS(2072), 1, - anon_sym_AMP, ACTIONS(2089), 1, anon_sym_QMARK, - ACTIONS(2212), 1, - anon_sym_SEMI, - STATE(543), 1, + ACTIONS(2214), 1, + anon_sym_COLON, + STATE(505), 1, sym_argument_list, - ACTIONS(1696), 2, + ACTIONS(1674), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1698), 2, + ACTIONS(1676), 2, anon_sym_DOT, anon_sym_DASH_GT, ACTIONS(2058), 2, @@ -49133,47 +48611,47 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2060), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2074), 2, + ACTIONS(2068), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2076), 2, + ACTIONS(2070), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2078), 2, + ACTIONS(2072), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2080), 2, + ACTIONS(2074), 2, anon_sym_LT_LT, anon_sym_GT_GT, [18960] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1690), 1, + ACTIONS(1668), 1, anon_sym_LPAREN2, - ACTIONS(1694), 1, + ACTIONS(1672), 1, anon_sym_LBRACK, ACTIONS(2062), 1, anon_sym_SLASH, ACTIONS(2064), 1, - anon_sym_PIPE_PIPE, + anon_sym_CARET, ACTIONS(2066), 1, + anon_sym_AMP, + ACTIONS(2076), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2078), 1, anon_sym_AMP_AMP, - ACTIONS(2068), 1, + ACTIONS(2080), 1, anon_sym_PIPE, - ACTIONS(2070), 1, - anon_sym_CARET, - ACTIONS(2072), 1, - anon_sym_AMP, ACTIONS(2089), 1, anon_sym_QMARK, - ACTIONS(2214), 1, - anon_sym_COLON, - STATE(543), 1, + ACTIONS(2216), 1, + anon_sym_SEMI, + STATE(505), 1, sym_argument_list, - ACTIONS(1696), 2, + ACTIONS(1674), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1698), 2, + ACTIONS(1676), 2, anon_sym_DOT, anon_sym_DASH_GT, ACTIONS(2058), 2, @@ -49182,47 +48660,47 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2060), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2074), 2, + ACTIONS(2068), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2076), 2, + ACTIONS(2070), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2078), 2, + ACTIONS(2072), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2080), 2, + ACTIONS(2074), 2, anon_sym_LT_LT, anon_sym_GT_GT, [19029] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1690), 1, + ACTIONS(1668), 1, anon_sym_LPAREN2, - ACTIONS(1694), 1, + ACTIONS(1672), 1, anon_sym_LBRACK, - ACTIONS(1796), 1, - anon_sym_RBRACK, ACTIONS(2062), 1, anon_sym_SLASH, ACTIONS(2064), 1, - anon_sym_PIPE_PIPE, + anon_sym_CARET, ACTIONS(2066), 1, + anon_sym_AMP, + ACTIONS(2076), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2078), 1, anon_sym_AMP_AMP, - ACTIONS(2068), 1, + ACTIONS(2080), 1, anon_sym_PIPE, - ACTIONS(2070), 1, - anon_sym_CARET, - ACTIONS(2072), 1, - anon_sym_AMP, ACTIONS(2089), 1, anon_sym_QMARK, - STATE(543), 1, + ACTIONS(2218), 1, + anon_sym_COLON, + STATE(505), 1, sym_argument_list, - ACTIONS(1696), 2, + ACTIONS(1674), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1698), 2, + ACTIONS(1676), 2, anon_sym_DOT, anon_sym_DASH_GT, ACTIONS(2058), 2, @@ -49231,47 +48709,47 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2060), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2074), 2, + ACTIONS(2068), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2076), 2, + ACTIONS(2070), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2078), 2, + ACTIONS(2072), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2080), 2, + ACTIONS(2074), 2, anon_sym_LT_LT, anon_sym_GT_GT, [19098] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1690), 1, + ACTIONS(1668), 1, anon_sym_LPAREN2, - ACTIONS(1694), 1, + ACTIONS(1672), 1, anon_sym_LBRACK, - ACTIONS(1792), 1, - anon_sym_RBRACK, ACTIONS(2062), 1, anon_sym_SLASH, ACTIONS(2064), 1, - anon_sym_PIPE_PIPE, + anon_sym_CARET, ACTIONS(2066), 1, + anon_sym_AMP, + ACTIONS(2076), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2078), 1, anon_sym_AMP_AMP, - ACTIONS(2068), 1, + ACTIONS(2080), 1, anon_sym_PIPE, - ACTIONS(2070), 1, - anon_sym_CARET, - ACTIONS(2072), 1, - anon_sym_AMP, ACTIONS(2089), 1, anon_sym_QMARK, - STATE(543), 1, + ACTIONS(2220), 1, + anon_sym_RBRACK, + STATE(505), 1, sym_argument_list, - ACTIONS(1696), 2, + ACTIONS(1674), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1698), 2, + ACTIONS(1676), 2, anon_sym_DOT, anon_sym_DASH_GT, ACTIONS(2058), 2, @@ -49280,47 +48758,47 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2060), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2074), 2, + ACTIONS(2068), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2076), 2, + ACTIONS(2070), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2078), 2, + ACTIONS(2072), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2080), 2, + ACTIONS(2074), 2, anon_sym_LT_LT, anon_sym_GT_GT, [19167] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1690), 1, + ACTIONS(1668), 1, anon_sym_LPAREN2, - ACTIONS(1694), 1, + ACTIONS(1672), 1, anon_sym_LBRACK, + ACTIONS(1716), 1, + anon_sym_RBRACK, ACTIONS(2062), 1, anon_sym_SLASH, ACTIONS(2064), 1, - anon_sym_PIPE_PIPE, + anon_sym_CARET, ACTIONS(2066), 1, + anon_sym_AMP, + ACTIONS(2076), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2078), 1, anon_sym_AMP_AMP, - ACTIONS(2068), 1, + ACTIONS(2080), 1, anon_sym_PIPE, - ACTIONS(2070), 1, - anon_sym_CARET, - ACTIONS(2072), 1, - anon_sym_AMP, ACTIONS(2089), 1, anon_sym_QMARK, - ACTIONS(2216), 1, - anon_sym_SEMI, - STATE(543), 1, + STATE(505), 1, sym_argument_list, - ACTIONS(1696), 2, + ACTIONS(1674), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1698), 2, + ACTIONS(1676), 2, anon_sym_DOT, anon_sym_DASH_GT, ACTIONS(2058), 2, @@ -49329,47 +48807,47 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2060), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2074), 2, + ACTIONS(2068), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2076), 2, + ACTIONS(2070), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2078), 2, + ACTIONS(2072), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2080), 2, + ACTIONS(2074), 2, anon_sym_LT_LT, anon_sym_GT_GT, [19236] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1690), 1, + ACTIONS(1668), 1, anon_sym_LPAREN2, - ACTIONS(1694), 1, + ACTIONS(1672), 1, anon_sym_LBRACK, ACTIONS(2062), 1, anon_sym_SLASH, ACTIONS(2064), 1, - anon_sym_PIPE_PIPE, + anon_sym_CARET, ACTIONS(2066), 1, + anon_sym_AMP, + ACTIONS(2076), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2078), 1, anon_sym_AMP_AMP, - ACTIONS(2068), 1, + ACTIONS(2080), 1, anon_sym_PIPE, - ACTIONS(2070), 1, - anon_sym_CARET, - ACTIONS(2072), 1, - anon_sym_AMP, ACTIONS(2089), 1, anon_sym_QMARK, - ACTIONS(2218), 1, + ACTIONS(2222), 1, anon_sym_SEMI, - STATE(543), 1, + STATE(505), 1, sym_argument_list, - ACTIONS(1696), 2, + ACTIONS(1674), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1698), 2, + ACTIONS(1676), 2, anon_sym_DOT, anon_sym_DASH_GT, ACTIONS(2058), 2, @@ -49378,47 +48856,78 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2060), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2074), 2, + ACTIONS(2068), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2076), 2, + ACTIONS(2070), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2078), 2, + ACTIONS(2072), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2080), 2, + ACTIONS(2074), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [19305] = 20, + [19305] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2224), 27, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_extern, + anon_sym___attribute__, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [19338] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1690), 1, + ACTIONS(1662), 1, + anon_sym_RBRACK, + ACTIONS(1668), 1, anon_sym_LPAREN2, - ACTIONS(1694), 1, + ACTIONS(1672), 1, anon_sym_LBRACK, - ACTIONS(1816), 1, - anon_sym_RBRACK, ACTIONS(2062), 1, anon_sym_SLASH, ACTIONS(2064), 1, - anon_sym_PIPE_PIPE, + anon_sym_CARET, ACTIONS(2066), 1, + anon_sym_AMP, + ACTIONS(2076), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2078), 1, anon_sym_AMP_AMP, - ACTIONS(2068), 1, + ACTIONS(2080), 1, anon_sym_PIPE, - ACTIONS(2070), 1, - anon_sym_CARET, - ACTIONS(2072), 1, - anon_sym_AMP, ACTIONS(2089), 1, anon_sym_QMARK, - STATE(543), 1, + STATE(505), 1, sym_argument_list, - ACTIONS(1696), 2, + ACTIONS(1674), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1698), 2, + ACTIONS(1676), 2, anon_sym_DOT, anon_sym_DASH_GT, ACTIONS(2058), 2, @@ -49427,47 +48936,140 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2060), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2074), 2, + ACTIONS(2068), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2076), 2, + ACTIONS(2070), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2078), 2, + ACTIONS(2072), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2080), 2, + ACTIONS(2074), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [19374] = 20, + [19407] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2226), 27, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_extern, + anon_sym___attribute__, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [19440] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2228), 27, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_extern, + anon_sym___attribute__, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [19473] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2230), 27, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_extern, + anon_sym___attribute__, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [19506] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1690), 1, + ACTIONS(1668), 1, anon_sym_LPAREN2, - ACTIONS(1694), 1, + ACTIONS(1672), 1, anon_sym_LBRACK, + ACTIONS(1736), 1, + anon_sym_RBRACK, ACTIONS(2062), 1, anon_sym_SLASH, ACTIONS(2064), 1, - anon_sym_PIPE_PIPE, + anon_sym_CARET, ACTIONS(2066), 1, + anon_sym_AMP, + ACTIONS(2076), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2078), 1, anon_sym_AMP_AMP, - ACTIONS(2068), 1, + ACTIONS(2080), 1, anon_sym_PIPE, - ACTIONS(2070), 1, - anon_sym_CARET, - ACTIONS(2072), 1, - anon_sym_AMP, ACTIONS(2089), 1, anon_sym_QMARK, - ACTIONS(2220), 1, - anon_sym_COLON, - STATE(543), 1, + STATE(505), 1, sym_argument_list, - ACTIONS(1696), 2, + ACTIONS(1674), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1698), 2, + ACTIONS(1676), 2, anon_sym_DOT, anon_sym_DASH_GT, ACTIONS(2058), 2, @@ -49476,47 +49078,47 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2060), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2074), 2, + ACTIONS(2068), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2076), 2, + ACTIONS(2070), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2078), 2, + ACTIONS(2072), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2080), 2, + ACTIONS(2074), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [19443] = 20, + [19575] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1690), 1, + ACTIONS(1668), 1, anon_sym_LPAREN2, - ACTIONS(1694), 1, + ACTIONS(1672), 1, anon_sym_LBRACK, ACTIONS(2062), 1, anon_sym_SLASH, ACTIONS(2064), 1, - anon_sym_PIPE_PIPE, + anon_sym_CARET, ACTIONS(2066), 1, + anon_sym_AMP, + ACTIONS(2076), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2078), 1, anon_sym_AMP_AMP, - ACTIONS(2068), 1, + ACTIONS(2080), 1, anon_sym_PIPE, - ACTIONS(2070), 1, - anon_sym_CARET, - ACTIONS(2072), 1, - anon_sym_AMP, ACTIONS(2089), 1, anon_sym_QMARK, - ACTIONS(2222), 1, - anon_sym_SEMI, - STATE(543), 1, + ACTIONS(2232), 1, + anon_sym_COLON, + STATE(505), 1, sym_argument_list, - ACTIONS(1696), 2, + ACTIONS(1674), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1698), 2, + ACTIONS(1676), 2, anon_sym_DOT, anon_sym_DASH_GT, ACTIONS(2058), 2, @@ -49525,47 +49127,47 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2060), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2074), 2, + ACTIONS(2068), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2076), 2, + ACTIONS(2070), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2078), 2, + ACTIONS(2072), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2080), 2, + ACTIONS(2074), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [19512] = 20, + [19644] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1690), 1, + ACTIONS(1668), 1, anon_sym_LPAREN2, - ACTIONS(1694), 1, + ACTIONS(1672), 1, anon_sym_LBRACK, ACTIONS(2062), 1, anon_sym_SLASH, ACTIONS(2064), 1, - anon_sym_PIPE_PIPE, + anon_sym_CARET, ACTIONS(2066), 1, + anon_sym_AMP, + ACTIONS(2076), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2078), 1, anon_sym_AMP_AMP, - ACTIONS(2068), 1, + ACTIONS(2080), 1, anon_sym_PIPE, - ACTIONS(2070), 1, - anon_sym_CARET, - ACTIONS(2072), 1, - anon_sym_AMP, ACTIONS(2089), 1, anon_sym_QMARK, - ACTIONS(2224), 1, + ACTIONS(2234), 1, anon_sym_SEMI, - STATE(543), 1, + STATE(505), 1, sym_argument_list, - ACTIONS(1696), 2, + ACTIONS(1674), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1698), 2, + ACTIONS(1676), 2, anon_sym_DOT, anon_sym_DASH_GT, ACTIONS(2058), 2, @@ -49574,47 +49176,78 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2060), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2074), 2, + ACTIONS(2068), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2076), 2, + ACTIONS(2070), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2078), 2, + ACTIONS(2072), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2080), 2, + ACTIONS(2074), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [19581] = 20, + [19713] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1162), 27, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_extern, + anon_sym___attribute__, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [19746] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1690), 1, + ACTIONS(1668), 1, anon_sym_LPAREN2, - ACTIONS(1694), 1, + ACTIONS(1672), 1, anon_sym_LBRACK, ACTIONS(2062), 1, anon_sym_SLASH, ACTIONS(2064), 1, - anon_sym_PIPE_PIPE, + anon_sym_CARET, ACTIONS(2066), 1, + anon_sym_AMP, + ACTIONS(2076), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2078), 1, anon_sym_AMP_AMP, - ACTIONS(2068), 1, + ACTIONS(2080), 1, anon_sym_PIPE, - ACTIONS(2070), 1, - anon_sym_CARET, - ACTIONS(2072), 1, - anon_sym_AMP, ACTIONS(2089), 1, anon_sym_QMARK, - ACTIONS(2226), 1, - anon_sym_RBRACK, - STATE(543), 1, + ACTIONS(2236), 1, + anon_sym_SEMI, + STATE(505), 1, sym_argument_list, - ACTIONS(1696), 2, + ACTIONS(1674), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1698), 2, + ACTIONS(1676), 2, anon_sym_DOT, anon_sym_DASH_GT, ACTIONS(2058), 2, @@ -49623,47 +49256,47 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2060), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2074), 2, + ACTIONS(2068), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2076), 2, + ACTIONS(2070), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2078), 2, + ACTIONS(2072), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2080), 2, + ACTIONS(2074), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [19650] = 20, + [19815] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1690), 1, + ACTIONS(1668), 1, anon_sym_LPAREN2, - ACTIONS(1694), 1, + ACTIONS(1672), 1, anon_sym_LBRACK, + ACTIONS(1784), 1, + anon_sym_RBRACK, ACTIONS(2062), 1, anon_sym_SLASH, ACTIONS(2064), 1, - anon_sym_PIPE_PIPE, + anon_sym_CARET, ACTIONS(2066), 1, + anon_sym_AMP, + ACTIONS(2076), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2078), 1, anon_sym_AMP_AMP, - ACTIONS(2068), 1, + ACTIONS(2080), 1, anon_sym_PIPE, - ACTIONS(2070), 1, - anon_sym_CARET, - ACTIONS(2072), 1, - anon_sym_AMP, ACTIONS(2089), 1, anon_sym_QMARK, - ACTIONS(2228), 1, - anon_sym_SEMI, - STATE(543), 1, + STATE(505), 1, sym_argument_list, - ACTIONS(1696), 2, + ACTIONS(1674), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1698), 2, + ACTIONS(1676), 2, anon_sym_DOT, anon_sym_DASH_GT, ACTIONS(2058), 2, @@ -49672,47 +49305,78 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2060), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2074), 2, + ACTIONS(2068), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2076), 2, + ACTIONS(2070), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2078), 2, + ACTIONS(2072), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2080), 2, + ACTIONS(2074), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [19719] = 20, + [19884] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2238), 27, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_extern, + anon_sym___attribute__, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [19917] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1690), 1, + ACTIONS(1668), 1, anon_sym_LPAREN2, - ACTIONS(1694), 1, + ACTIONS(1672), 1, anon_sym_LBRACK, ACTIONS(2062), 1, anon_sym_SLASH, ACTIONS(2064), 1, - anon_sym_PIPE_PIPE, + anon_sym_CARET, ACTIONS(2066), 1, + anon_sym_AMP, + ACTIONS(2076), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2078), 1, anon_sym_AMP_AMP, - ACTIONS(2068), 1, + ACTIONS(2080), 1, anon_sym_PIPE, - ACTIONS(2070), 1, - anon_sym_CARET, - ACTIONS(2072), 1, - anon_sym_AMP, ACTIONS(2089), 1, anon_sym_QMARK, - ACTIONS(2230), 1, + ACTIONS(2240), 1, anon_sym_SEMI, - STATE(543), 1, + STATE(505), 1, sym_argument_list, - ACTIONS(1696), 2, + ACTIONS(1674), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1698), 2, + ACTIONS(1676), 2, anon_sym_DOT, anon_sym_DASH_GT, ACTIONS(2058), 2, @@ -49721,47 +49385,47 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2060), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2074), 2, + ACTIONS(2068), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2076), 2, + ACTIONS(2070), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2078), 2, + ACTIONS(2072), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2080), 2, + ACTIONS(2074), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [19788] = 20, + [19986] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1690), 1, + ACTIONS(1668), 1, anon_sym_LPAREN2, - ACTIONS(1694), 1, + ACTIONS(1672), 1, anon_sym_LBRACK, - ACTIONS(1826), 1, - anon_sym_RBRACK, ACTIONS(2062), 1, anon_sym_SLASH, ACTIONS(2064), 1, - anon_sym_PIPE_PIPE, + anon_sym_CARET, ACTIONS(2066), 1, + anon_sym_AMP, + ACTIONS(2076), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2078), 1, anon_sym_AMP_AMP, - ACTIONS(2068), 1, + ACTIONS(2080), 1, anon_sym_PIPE, - ACTIONS(2070), 1, - anon_sym_CARET, - ACTIONS(2072), 1, - anon_sym_AMP, ACTIONS(2089), 1, anon_sym_QMARK, - STATE(543), 1, + ACTIONS(2242), 1, + anon_sym_SEMI, + STATE(505), 1, sym_argument_list, - ACTIONS(1696), 2, + ACTIONS(1674), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1698), 2, + ACTIONS(1676), 2, anon_sym_DOT, anon_sym_DASH_GT, ACTIONS(2058), 2, @@ -49770,71 +49434,146 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2060), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2074), 2, + ACTIONS(2068), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2076), 2, + ACTIONS(2070), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2078), 2, + ACTIONS(2072), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2080), 2, + ACTIONS(2074), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [19857] = 20, + [20055] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1150), 27, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_extern, + anon_sym___attribute__, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [20088] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2244), 27, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_extern, + anon_sym___attribute__, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [20121] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2246), 27, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_extern, + anon_sym___attribute__, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [20154] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1690), 1, - anon_sym_LPAREN2, - ACTIONS(1694), 1, - anon_sym_LBRACK, - ACTIONS(2062), 1, - anon_sym_SLASH, - ACTIONS(2064), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2066), 1, - anon_sym_AMP_AMP, - ACTIONS(2068), 1, - anon_sym_PIPE, - ACTIONS(2070), 1, - anon_sym_CARET, - ACTIONS(2072), 1, - anon_sym_AMP, - ACTIONS(2089), 1, - anon_sym_QMARK, - ACTIONS(2232), 1, - anon_sym_SEMI, - STATE(543), 1, - sym_argument_list, - ACTIONS(1696), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1698), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2058), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2060), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2074), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2076), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2078), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2080), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [19926] = 2, + ACTIONS(2248), 27, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_extern, + anon_sym___attribute__, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [20187] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2234), 27, + ACTIONS(2250), 27, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -49862,59 +49601,41 @@ static uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [19959] = 20, + [20220] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1690), 1, - anon_sym_LPAREN2, - ACTIONS(1694), 1, - anon_sym_LBRACK, - ACTIONS(2062), 1, - anon_sym_SLASH, - ACTIONS(2064), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2066), 1, - anon_sym_AMP_AMP, - ACTIONS(2068), 1, - anon_sym_PIPE, - ACTIONS(2070), 1, - anon_sym_CARET, - ACTIONS(2072), 1, - anon_sym_AMP, - ACTIONS(2089), 1, - anon_sym_QMARK, - ACTIONS(2236), 1, - anon_sym_SEMI, - STATE(543), 1, - sym_argument_list, - ACTIONS(1696), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1698), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2058), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2060), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2074), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2076), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2078), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2080), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [20028] = 2, + ACTIONS(1094), 27, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_extern, + anon_sym___attribute__, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [20253] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1158), 27, + ACTIONS(2252), 27, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -49942,10 +49663,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [20061] = 2, + [20286] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1150), 27, + ACTIONS(1138), 27, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -49973,7 +49694,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [20094] = 2, + [20319] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1142), 27, @@ -50004,35 +49725,35 @@ static uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [20127] = 20, + [20352] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1690), 1, + ACTIONS(1668), 1, anon_sym_LPAREN2, - ACTIONS(1694), 1, + ACTIONS(1672), 1, anon_sym_LBRACK, + ACTIONS(1748), 1, + anon_sym_RBRACK, ACTIONS(2062), 1, anon_sym_SLASH, ACTIONS(2064), 1, - anon_sym_PIPE_PIPE, + anon_sym_CARET, ACTIONS(2066), 1, + anon_sym_AMP, + ACTIONS(2076), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2078), 1, anon_sym_AMP_AMP, - ACTIONS(2068), 1, + ACTIONS(2080), 1, anon_sym_PIPE, - ACTIONS(2070), 1, - anon_sym_CARET, - ACTIONS(2072), 1, - anon_sym_AMP, ACTIONS(2089), 1, anon_sym_QMARK, - ACTIONS(2238), 1, - anon_sym_SEMI, - STATE(543), 1, + STATE(505), 1, sym_argument_list, - ACTIONS(1696), 2, + ACTIONS(1674), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1698), 2, + ACTIONS(1676), 2, anon_sym_DOT, anon_sym_DASH_GT, ACTIONS(2058), 2, @@ -50041,47 +49762,47 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2060), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2074), 2, + ACTIONS(2068), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2076), 2, + ACTIONS(2070), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2078), 2, + ACTIONS(2072), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2080), 2, + ACTIONS(2074), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [20196] = 20, + [20421] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1690), 1, + ACTIONS(1668), 1, anon_sym_LPAREN2, - ACTIONS(1694), 1, + ACTIONS(1672), 1, anon_sym_LBRACK, + ACTIONS(1750), 1, + anon_sym_RBRACK, ACTIONS(2062), 1, anon_sym_SLASH, ACTIONS(2064), 1, - anon_sym_PIPE_PIPE, + anon_sym_CARET, ACTIONS(2066), 1, + anon_sym_AMP, + ACTIONS(2076), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2078), 1, anon_sym_AMP_AMP, - ACTIONS(2068), 1, + ACTIONS(2080), 1, anon_sym_PIPE, - ACTIONS(2070), 1, - anon_sym_CARET, - ACTIONS(2072), 1, - anon_sym_AMP, ACTIONS(2089), 1, anon_sym_QMARK, - ACTIONS(2240), 1, - anon_sym_COLON, - STATE(543), 1, + STATE(505), 1, sym_argument_list, - ACTIONS(1696), 2, + ACTIONS(1674), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1698), 2, + ACTIONS(1676), 2, anon_sym_DOT, anon_sym_DASH_GT, ACTIONS(2058), 2, @@ -50090,53 +49811,71 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2060), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2074), 2, + ACTIONS(2068), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2076), 2, + ACTIONS(2070), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2078), 2, + ACTIONS(2072), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2080), 2, + ACTIONS(2074), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [20265] = 2, + [20490] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2242), 27, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [20298] = 2, + ACTIONS(1668), 1, + anon_sym_LPAREN2, + ACTIONS(1672), 1, + anon_sym_LBRACK, + ACTIONS(2062), 1, + anon_sym_SLASH, + ACTIONS(2064), 1, + anon_sym_CARET, + ACTIONS(2066), 1, + anon_sym_AMP, + ACTIONS(2076), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2078), 1, + anon_sym_AMP_AMP, + ACTIONS(2080), 1, + anon_sym_PIPE, + ACTIONS(2089), 1, + anon_sym_QMARK, + ACTIONS(2254), 1, + anon_sym_RBRACK, + STATE(505), 1, + sym_argument_list, + ACTIONS(1674), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1676), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2058), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2060), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2068), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2070), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2072), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2074), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [20559] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1122), 27, + ACTIONS(2256), 27, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -50164,35 +49903,35 @@ static uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [20331] = 20, + [20592] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1666), 1, - anon_sym_RBRACK, - ACTIONS(1690), 1, + ACTIONS(1668), 1, anon_sym_LPAREN2, - ACTIONS(1694), 1, + ACTIONS(1672), 1, anon_sym_LBRACK, ACTIONS(2062), 1, anon_sym_SLASH, ACTIONS(2064), 1, - anon_sym_PIPE_PIPE, + anon_sym_CARET, ACTIONS(2066), 1, + anon_sym_AMP, + ACTIONS(2076), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2078), 1, anon_sym_AMP_AMP, - ACTIONS(2068), 1, + ACTIONS(2080), 1, anon_sym_PIPE, - ACTIONS(2070), 1, - anon_sym_CARET, - ACTIONS(2072), 1, - anon_sym_AMP, ACTIONS(2089), 1, anon_sym_QMARK, - STATE(543), 1, + ACTIONS(2258), 1, + anon_sym_SEMI, + STATE(505), 1, sym_argument_list, - ACTIONS(1696), 2, + ACTIONS(1674), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1698), 2, + ACTIONS(1676), 2, anon_sym_DOT, anon_sym_DASH_GT, ACTIONS(2058), 2, @@ -50201,47 +49940,78 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2060), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2074), 2, + ACTIONS(2068), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2076), 2, + ACTIONS(2070), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2078), 2, + ACTIONS(2072), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2080), 2, + ACTIONS(2074), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [20400] = 20, + [20661] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1146), 27, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_extern, + anon_sym___attribute__, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [20694] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1690), 1, + ACTIONS(1668), 1, anon_sym_LPAREN2, - ACTIONS(1694), 1, + ACTIONS(1672), 1, anon_sym_LBRACK, ACTIONS(2062), 1, anon_sym_SLASH, ACTIONS(2064), 1, - anon_sym_PIPE_PIPE, + anon_sym_CARET, ACTIONS(2066), 1, + anon_sym_AMP, + ACTIONS(2076), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2078), 1, anon_sym_AMP_AMP, - ACTIONS(2068), 1, + ACTIONS(2080), 1, anon_sym_PIPE, - ACTIONS(2070), 1, - anon_sym_CARET, - ACTIONS(2072), 1, - anon_sym_AMP, ACTIONS(2089), 1, anon_sym_QMARK, - ACTIONS(2244), 1, - anon_sym_RBRACK, - STATE(543), 1, + ACTIONS(2260), 1, + anon_sym_COLON, + STATE(505), 1, sym_argument_list, - ACTIONS(1696), 2, + ACTIONS(1674), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1698), 2, + ACTIONS(1676), 2, anon_sym_DOT, anon_sym_DASH_GT, ACTIONS(2058), 2, @@ -50250,47 +50020,47 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2060), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2074), 2, + ACTIONS(2068), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2076), 2, + ACTIONS(2070), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2078), 2, + ACTIONS(2072), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2080), 2, + ACTIONS(2074), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [20469] = 20, + [20763] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1690), 1, + ACTIONS(1668), 1, anon_sym_LPAREN2, - ACTIONS(1694), 1, + ACTIONS(1672), 1, anon_sym_LBRACK, + ACTIONS(1806), 1, + anon_sym_RBRACK, ACTIONS(2062), 1, anon_sym_SLASH, ACTIONS(2064), 1, - anon_sym_PIPE_PIPE, + anon_sym_CARET, ACTIONS(2066), 1, + anon_sym_AMP, + ACTIONS(2076), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2078), 1, anon_sym_AMP_AMP, - ACTIONS(2068), 1, + ACTIONS(2080), 1, anon_sym_PIPE, - ACTIONS(2070), 1, - anon_sym_CARET, - ACTIONS(2072), 1, - anon_sym_AMP, ACTIONS(2089), 1, anon_sym_QMARK, - ACTIONS(2246), 1, - anon_sym_COLON, - STATE(543), 1, + STATE(505), 1, sym_argument_list, - ACTIONS(1696), 2, + ACTIONS(1674), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1698), 2, + ACTIONS(1676), 2, anon_sym_DOT, anon_sym_DASH_GT, ACTIONS(2058), 2, @@ -50299,47 +50069,47 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2060), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2074), 2, + ACTIONS(2068), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2076), 2, + ACTIONS(2070), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2078), 2, + ACTIONS(2072), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2080), 2, + ACTIONS(2074), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [20538] = 20, + [20832] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1690), 1, + ACTIONS(1668), 1, anon_sym_LPAREN2, - ACTIONS(1694), 1, + ACTIONS(1672), 1, anon_sym_LBRACK, - ACTIONS(1836), 1, + ACTIONS(1808), 1, anon_sym_RBRACK, ACTIONS(2062), 1, anon_sym_SLASH, ACTIONS(2064), 1, - anon_sym_PIPE_PIPE, + anon_sym_CARET, ACTIONS(2066), 1, + anon_sym_AMP, + ACTIONS(2076), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2078), 1, anon_sym_AMP_AMP, - ACTIONS(2068), 1, + ACTIONS(2080), 1, anon_sym_PIPE, - ACTIONS(2070), 1, - anon_sym_CARET, - ACTIONS(2072), 1, - anon_sym_AMP, ACTIONS(2089), 1, anon_sym_QMARK, - STATE(543), 1, + STATE(505), 1, sym_argument_list, - ACTIONS(1696), 2, + ACTIONS(1674), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1698), 2, + ACTIONS(1676), 2, anon_sym_DOT, anon_sym_DASH_GT, ACTIONS(2058), 2, @@ -50348,47 +50118,47 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2060), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2074), 2, + ACTIONS(2068), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2076), 2, + ACTIONS(2070), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2078), 2, + ACTIONS(2072), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2080), 2, + ACTIONS(2074), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [20607] = 20, + [20901] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1690), 1, + ACTIONS(1668), 1, anon_sym_LPAREN2, - ACTIONS(1694), 1, + ACTIONS(1672), 1, anon_sym_LBRACK, - ACTIONS(1828), 1, - anon_sym_RBRACK, ACTIONS(2062), 1, anon_sym_SLASH, ACTIONS(2064), 1, - anon_sym_PIPE_PIPE, + anon_sym_CARET, ACTIONS(2066), 1, + anon_sym_AMP, + ACTIONS(2076), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2078), 1, anon_sym_AMP_AMP, - ACTIONS(2068), 1, + ACTIONS(2080), 1, anon_sym_PIPE, - ACTIONS(2070), 1, - anon_sym_CARET, - ACTIONS(2072), 1, - anon_sym_AMP, ACTIONS(2089), 1, anon_sym_QMARK, - STATE(543), 1, + ACTIONS(2262), 1, + anon_sym_COLON, + STATE(505), 1, sym_argument_list, - ACTIONS(1696), 2, + ACTIONS(1674), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1698), 2, + ACTIONS(1676), 2, anon_sym_DOT, anon_sym_DASH_GT, ACTIONS(2058), 2, @@ -50397,47 +50167,47 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2060), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2074), 2, + ACTIONS(2068), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2076), 2, + ACTIONS(2070), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2078), 2, + ACTIONS(2072), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2080), 2, + ACTIONS(2074), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [20676] = 20, + [20970] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1690), 1, + ACTIONS(1668), 1, anon_sym_LPAREN2, - ACTIONS(1694), 1, + ACTIONS(1672), 1, anon_sym_LBRACK, ACTIONS(2062), 1, anon_sym_SLASH, ACTIONS(2064), 1, - anon_sym_PIPE_PIPE, + anon_sym_CARET, ACTIONS(2066), 1, + anon_sym_AMP, + ACTIONS(2076), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2078), 1, anon_sym_AMP_AMP, - ACTIONS(2068), 1, + ACTIONS(2080), 1, anon_sym_PIPE, - ACTIONS(2070), 1, - anon_sym_CARET, - ACTIONS(2072), 1, - anon_sym_AMP, ACTIONS(2089), 1, anon_sym_QMARK, - ACTIONS(2248), 1, - anon_sym_COLON, - STATE(543), 1, + ACTIONS(2264), 1, + anon_sym_SEMI, + STATE(505), 1, sym_argument_list, - ACTIONS(1696), 2, + ACTIONS(1674), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1698), 2, + ACTIONS(1676), 2, anon_sym_DOT, anon_sym_DASH_GT, ACTIONS(2058), 2, @@ -50446,47 +50216,47 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2060), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2074), 2, + ACTIONS(2068), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2076), 2, + ACTIONS(2070), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2078), 2, + ACTIONS(2072), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2080), 2, + ACTIONS(2074), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [20745] = 20, + [21039] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1690), 1, + ACTIONS(1668), 1, anon_sym_LPAREN2, - ACTIONS(1694), 1, + ACTIONS(1672), 1, anon_sym_LBRACK, ACTIONS(2062), 1, anon_sym_SLASH, ACTIONS(2064), 1, - anon_sym_PIPE_PIPE, + anon_sym_CARET, ACTIONS(2066), 1, + anon_sym_AMP, + ACTIONS(2076), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2078), 1, anon_sym_AMP_AMP, - ACTIONS(2068), 1, + ACTIONS(2080), 1, anon_sym_PIPE, - ACTIONS(2070), 1, - anon_sym_CARET, - ACTIONS(2072), 1, - anon_sym_AMP, ACTIONS(2089), 1, anon_sym_QMARK, - ACTIONS(2250), 1, + ACTIONS(2266), 1, anon_sym_SEMI, - STATE(543), 1, + STATE(505), 1, sym_argument_list, - ACTIONS(1696), 2, + ACTIONS(1674), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1698), 2, + ACTIONS(1676), 2, anon_sym_DOT, anon_sym_DASH_GT, ACTIONS(2058), 2, @@ -50495,177 +50265,22 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2060), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2074), 2, + ACTIONS(2068), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2076), 2, + ACTIONS(2070), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2078), 2, + ACTIONS(2072), 2, anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2080), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [20814] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1098), 27, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [20847] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1178), 27, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [20880] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2252), 27, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [20913] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2254), 27, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [20946] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2256), 27, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [20979] = 2, + anon_sym_LT_EQ, + ACTIONS(2074), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [21108] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2258), 27, + ACTIONS(2268), 27, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -50693,35 +50308,35 @@ static uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [21012] = 20, + [21141] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1690), 1, + ACTIONS(1668), 1, anon_sym_LPAREN2, - ACTIONS(1694), 1, + ACTIONS(1672), 1, anon_sym_LBRACK, ACTIONS(2062), 1, anon_sym_SLASH, ACTIONS(2064), 1, - anon_sym_PIPE_PIPE, + anon_sym_CARET, ACTIONS(2066), 1, + anon_sym_AMP, + ACTIONS(2076), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2078), 1, anon_sym_AMP_AMP, - ACTIONS(2068), 1, + ACTIONS(2080), 1, anon_sym_PIPE, - ACTIONS(2070), 1, - anon_sym_CARET, - ACTIONS(2072), 1, - anon_sym_AMP, ACTIONS(2089), 1, anon_sym_QMARK, - ACTIONS(2260), 1, - anon_sym_COLON, - STATE(543), 1, + ACTIONS(2270), 1, + anon_sym_SEMI, + STATE(505), 1, sym_argument_list, - ACTIONS(1696), 2, + ACTIONS(1674), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1698), 2, + ACTIONS(1676), 2, anon_sym_DOT, anon_sym_DASH_GT, ACTIONS(2058), 2, @@ -50730,47 +50345,47 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2060), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2074), 2, + ACTIONS(2068), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2076), 2, + ACTIONS(2070), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2078), 2, + ACTIONS(2072), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2080), 2, + ACTIONS(2074), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [21081] = 20, + [21210] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1690), 1, + ACTIONS(1668), 1, anon_sym_LPAREN2, - ACTIONS(1694), 1, + ACTIONS(1672), 1, anon_sym_LBRACK, - ACTIONS(1824), 1, + ACTIONS(1798), 1, anon_sym_RBRACK, ACTIONS(2062), 1, anon_sym_SLASH, ACTIONS(2064), 1, - anon_sym_PIPE_PIPE, + anon_sym_CARET, ACTIONS(2066), 1, + anon_sym_AMP, + ACTIONS(2076), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2078), 1, anon_sym_AMP_AMP, - ACTIONS(2068), 1, + ACTIONS(2080), 1, anon_sym_PIPE, - ACTIONS(2070), 1, - anon_sym_CARET, - ACTIONS(2072), 1, - anon_sym_AMP, ACTIONS(2089), 1, anon_sym_QMARK, - STATE(543), 1, + STATE(505), 1, sym_argument_list, - ACTIONS(1696), 2, + ACTIONS(1674), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1698), 2, + ACTIONS(1676), 2, anon_sym_DOT, anon_sym_DASH_GT, ACTIONS(2058), 2, @@ -50779,140 +50394,47 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2060), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2074), 2, + ACTIONS(2068), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2076), 2, + ACTIONS(2070), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2078), 2, + ACTIONS(2072), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2080), 2, + ACTIONS(2074), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [21150] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2262), 27, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [21183] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2264), 27, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [21216] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2266), 27, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [21249] = 20, + [21279] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1690), 1, + ACTIONS(1668), 1, anon_sym_LPAREN2, - ACTIONS(1694), 1, + ACTIONS(1672), 1, anon_sym_LBRACK, - ACTIONS(1748), 1, - anon_sym_RBRACK, ACTIONS(2062), 1, anon_sym_SLASH, ACTIONS(2064), 1, - anon_sym_PIPE_PIPE, + anon_sym_CARET, ACTIONS(2066), 1, + anon_sym_AMP, + ACTIONS(2076), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2078), 1, anon_sym_AMP_AMP, - ACTIONS(2068), 1, + ACTIONS(2080), 1, anon_sym_PIPE, - ACTIONS(2070), 1, - anon_sym_CARET, - ACTIONS(2072), 1, - anon_sym_AMP, ACTIONS(2089), 1, anon_sym_QMARK, - STATE(543), 1, + ACTIONS(2272), 1, + anon_sym_SEMI, + STATE(505), 1, sym_argument_list, - ACTIONS(1696), 2, + ACTIONS(1674), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1698), 2, + ACTIONS(1676), 2, anon_sym_DOT, anon_sym_DASH_GT, ACTIONS(2058), 2, @@ -50921,47 +50443,47 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2060), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2074), 2, + ACTIONS(2068), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2076), 2, + ACTIONS(2070), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2078), 2, + ACTIONS(2072), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2080), 2, + ACTIONS(2074), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [21318] = 20, + [21348] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1690), 1, + ACTIONS(1668), 1, anon_sym_LPAREN2, - ACTIONS(1694), 1, + ACTIONS(1672), 1, anon_sym_LBRACK, ACTIONS(2062), 1, anon_sym_SLASH, ACTIONS(2064), 1, - anon_sym_PIPE_PIPE, + anon_sym_CARET, ACTIONS(2066), 1, + anon_sym_AMP, + ACTIONS(2076), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2078), 1, anon_sym_AMP_AMP, - ACTIONS(2068), 1, + ACTIONS(2080), 1, anon_sym_PIPE, - ACTIONS(2070), 1, - anon_sym_CARET, - ACTIONS(2072), 1, - anon_sym_AMP, ACTIONS(2089), 1, anon_sym_QMARK, - ACTIONS(2268), 1, + ACTIONS(2274), 1, anon_sym_SEMI, - STATE(543), 1, + STATE(505), 1, sym_argument_list, - ACTIONS(1696), 2, + ACTIONS(1674), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1698), 2, + ACTIONS(1676), 2, anon_sym_DOT, anon_sym_DASH_GT, ACTIONS(2058), 2, @@ -50970,171 +50492,47 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2060), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2074), 2, + ACTIONS(2068), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2076), 2, + ACTIONS(2070), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2078), 2, + ACTIONS(2072), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2080), 2, + ACTIONS(2074), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [21387] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2270), 27, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [21420] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2272), 27, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [21453] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2274), 27, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [21486] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2276), 27, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [21519] = 20, + [21417] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1690), 1, + ACTIONS(1668), 1, anon_sym_LPAREN2, - ACTIONS(1694), 1, + ACTIONS(1672), 1, anon_sym_LBRACK, + ACTIONS(1782), 1, + anon_sym_RBRACK, ACTIONS(2062), 1, anon_sym_SLASH, ACTIONS(2064), 1, - anon_sym_PIPE_PIPE, + anon_sym_CARET, ACTIONS(2066), 1, + anon_sym_AMP, + ACTIONS(2076), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2078), 1, anon_sym_AMP_AMP, - ACTIONS(2068), 1, + ACTIONS(2080), 1, anon_sym_PIPE, - ACTIONS(2070), 1, - anon_sym_CARET, - ACTIONS(2072), 1, - anon_sym_AMP, ACTIONS(2089), 1, anon_sym_QMARK, - ACTIONS(2278), 1, - anon_sym_SEMI, - STATE(543), 1, + STATE(505), 1, sym_argument_list, - ACTIONS(1696), 2, + ACTIONS(1674), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1698), 2, + ACTIONS(1676), 2, anon_sym_DOT, anon_sym_DASH_GT, ACTIONS(2058), 2, @@ -51143,89 +50541,78 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2060), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2074), 2, + ACTIONS(2068), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2076), 2, + ACTIONS(2070), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2078), 2, + ACTIONS(2072), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2080), 2, + ACTIONS(2074), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [21588] = 3, + [21486] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2282), 7, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(1668), 1, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + ACTIONS(1672), 1, anon_sym_LBRACK, - anon_sym_COLON, - ACTIONS(2280), 19, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [21622] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2106), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, + ACTIONS(2062), 1, + anon_sym_SLASH, + ACTIONS(2064), 1, + anon_sym_CARET, + ACTIONS(2066), 1, + anon_sym_AMP, + ACTIONS(2076), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2078), 1, + anon_sym_AMP_AMP, + ACTIONS(2080), 1, + anon_sym_PIPE, + ACTIONS(2089), 1, + anon_sym_QMARK, + ACTIONS(2276), 1, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_COLON, - ACTIONS(2104), 19, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [21656] = 2, + STATE(505), 1, + sym_argument_list, + ACTIONS(1674), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1676), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2058), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2060), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2068), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2070), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2072), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2074), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [21555] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1150), 25, + ACTIONS(2278), 27, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, sym_preproc_directive, anon_sym_extern, anon_sym___attribute__, @@ -51246,46 +50633,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [21687] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2284), 1, - anon_sym_RBRACE, - ACTIONS(2262), 24, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [21720] = 2, + [21588] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1098), 25, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, + ACTIONS(2282), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_COLON, + ACTIONS(2280), 19, anon_sym_extern, anon_sym___attribute__, anon_sym_static, @@ -51305,16 +50664,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [21751] = 2, + [21622] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1122), 25, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, + ACTIONS(2093), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_COLON, + ACTIONS(2091), 19, anon_sym_extern, anon_sym___attribute__, anon_sym_static, @@ -51334,12 +50695,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [21782] = 3, + [21656] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2286), 1, + ACTIONS(2284), 1, anon_sym_RBRACE, - ACTIONS(2234), 24, + ACTIONS(2244), 24, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -51364,10 +50725,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [21815] = 2, + [21689] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2252), 25, + ACTIONS(2278), 25, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -51393,42 +50754,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [21846] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1100), 1, - anon_sym_RBRACE, - ACTIONS(1098), 24, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [21879] = 4, + [21720] = 4, ACTIONS(3), 1, sym_comment, - STATE(551), 1, + STATE(542), 1, sym_string_literal, - ACTIONS(2288), 5, + ACTIONS(2286), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, @@ -51454,10 +50785,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [21914] = 2, + [21755] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1178), 25, + ACTIONS(2224), 25, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -51483,75 +50814,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [21945] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2290), 1, - anon_sym_RBRACE, - ACTIONS(2256), 24, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [21978] = 4, - ACTIONS(3), 1, - sym_comment, - STATE(550), 1, - sym_string_literal, - ACTIONS(2288), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(2280), 19, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [22013] = 3, + [21786] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1180), 1, - anon_sym_RBRACE, - ACTIONS(1178), 24, + ACTIONS(2226), 25, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -51574,10 +50843,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [22046] = 2, + [21817] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1142), 25, + ACTIONS(2238), 25, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -51603,10 +50872,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [22077] = 2, + [21848] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2242), 25, + ACTIONS(2228), 25, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -51632,10 +50901,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [22108] = 2, + [21879] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1158), 25, + ACTIONS(2230), 25, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -51661,12 +50930,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [22139] = 3, + [21910] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1152), 1, + ACTIONS(2288), 1, anon_sym_RBRACE, - ACTIONS(1150), 24, + ACTIONS(2256), 24, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -51691,14 +50960,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [22172] = 3, + [21943] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2292), 1, - anon_sym_RBRACE, - ACTIONS(2276), 24, + ACTIONS(2244), 25, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -51721,10 +50989,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [22205] = 2, + [21974] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2254), 25, + ACTIONS(2246), 25, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -51750,18 +51018,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [22236] = 4, + [22005] = 2, ACTIONS(3), 1, sym_comment, - STATE(549), 1, - sym_string_literal, - ACTIONS(2288), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(2280), 19, + ACTIONS(2248), 25, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, anon_sym_extern, anon_sym___attribute__, anon_sym_static, @@ -51781,14 +51047,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [22271] = 3, + [22036] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2294), 1, - anon_sym_RBRACE, - ACTIONS(2254), 24, + ACTIONS(2250), 25, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -51811,14 +51076,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [22304] = 3, + [22067] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2296), 1, - anon_sym_RBRACE, - ACTIONS(2264), 24, + ACTIONS(2268), 25, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -51841,14 +51105,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [22337] = 3, + [22098] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1124), 1, - anon_sym_RBRACE, - ACTIONS(1122), 24, + ACTIONS(2252), 25, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -51871,10 +51134,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [22370] = 2, + [22129] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2256), 25, + ACTIONS(1146), 25, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -51900,10 +51163,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [22401] = 2, + [22160] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2276), 25, + ACTIONS(1142), 25, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -51929,14 +51192,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [22432] = 3, + [22191] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2298), 1, - anon_sym_RBRACE, - ACTIONS(2242), 24, + ACTIONS(1138), 25, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -51959,14 +51221,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [22465] = 3, + [22222] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1144), 1, - anon_sym_RBRACE, - ACTIONS(1142), 24, + ACTIONS(1094), 25, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -51989,10 +51250,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [22498] = 2, + [22253] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2274), 25, + ACTIONS(1150), 25, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -52018,10 +51279,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [22529] = 2, + [22284] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2272), 25, + ACTIONS(1162), 25, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -52047,10 +51308,41 @@ static uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [22560] = 2, + [22315] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2258), 25, + STATE(544), 1, + sym_string_literal, + ACTIONS(2286), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(2280), 19, + anon_sym_extern, + anon_sym___attribute__, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [22350] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2256), 25, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -52076,13 +51368,45 @@ static uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [22591] = 2, + [22381] = 4, + ACTIONS(3), 1, + sym_comment, + STATE(541), 1, + sym_string_literal, + ACTIONS(2286), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(2280), 19, + anon_sym_extern, + anon_sym___attribute__, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [22416] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2270), 25, + ACTIONS(2290), 1, + anon_sym_RBRACE, + ACTIONS(2278), 24, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -52105,10 +51429,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [22622] = 3, + [22449] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2300), 1, + ACTIONS(2292), 1, anon_sym_RBRACE, ACTIONS(2252), 24, aux_sym_preproc_def_token1, @@ -52135,13 +51459,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [22655] = 2, + [22482] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2262), 25, + ACTIONS(2294), 1, + anon_sym_RBRACE, + ACTIONS(2268), 24, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -52164,12 +51489,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [22686] = 3, + [22515] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2302), 1, + ACTIONS(1148), 1, anon_sym_RBRACE, - ACTIONS(2266), 24, + ACTIONS(1146), 24, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -52194,13 +51519,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [22719] = 2, + [22548] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2266), 25, + ACTIONS(1144), 1, + anon_sym_RBRACE, + ACTIONS(1142), 24, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -52223,12 +51549,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [22750] = 3, + [22581] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2304), 1, + ACTIONS(1140), 1, anon_sym_RBRACE, - ACTIONS(2258), 24, + ACTIONS(1138), 24, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -52253,12 +51579,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [22783] = 3, + [22614] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1160), 1, + ACTIONS(2296), 1, anon_sym_RBRACE, - ACTIONS(1158), 24, + ACTIONS(2250), 24, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -52283,12 +51609,163 @@ static uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [22816] = 3, + [22647] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2306), 1, + ACTIONS(2298), 1, + anon_sym_RBRACE, + ACTIONS(2248), 24, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_extern, + anon_sym___attribute__, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [22680] = 4, + ACTIONS(3), 1, + sym_comment, + STATE(543), 1, + sym_string_literal, + ACTIONS(2286), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(2280), 19, + anon_sym_extern, + anon_sym___attribute__, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [22715] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2300), 1, + anon_sym_RBRACE, + ACTIONS(2246), 24, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_extern, + anon_sym___attribute__, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [22748] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1096), 1, + anon_sym_RBRACE, + ACTIONS(1094), 24, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_extern, + anon_sym___attribute__, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [22781] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1152), 1, + anon_sym_RBRACE, + ACTIONS(1150), 24, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_extern, + anon_sym___attribute__, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [22814] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2302), 1, anon_sym_RBRACE, - ACTIONS(2270), 24, + ACTIONS(2230), 24, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -52313,18 +51790,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [22849] = 4, + [22847] = 3, ACTIONS(3), 1, sym_comment, - STATE(552), 1, - sym_string_literal, - ACTIONS(2288), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(2280), 19, + ACTIONS(2304), 1, + anon_sym_RBRACE, + ACTIONS(2238), 24, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, anon_sym_extern, anon_sym___attribute__, anon_sym_static, @@ -52344,13 +51820,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [22884] = 2, + [22880] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2234), 25, + ACTIONS(2306), 1, + anon_sym_RBRACE, + ACTIONS(2224), 24, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -52373,12 +51850,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [22915] = 3, + [22913] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2308), 1, + ACTIONS(1164), 1, anon_sym_RBRACE, - ACTIONS(2272), 24, + ACTIONS(1162), 24, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -52403,12 +51880,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [22948] = 3, + [22946] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2310), 1, + ACTIONS(2308), 1, anon_sym_RBRACE, - ACTIONS(2274), 24, + ACTIONS(2226), 24, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -52433,13 +51910,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [22981] = 2, + [22979] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2264), 25, + ACTIONS(2310), 1, + anon_sym_RBRACE, + ACTIONS(2228), 24, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -52469,7 +51947,7 @@ static uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2321), 1, sym_primitive_type, - STATE(713), 1, + STATE(705), 1, aux_sym_sized_type_specifier_repeat1, ACTIONS(2319), 4, anon_sym_signed, @@ -52498,7 +51976,7 @@ static uint16_t ts_small_parse_table[] = { [23052] = 5, ACTIONS(3), 1, sym_comment, - STATE(713), 1, + STATE(705), 1, aux_sym_sized_type_specifier_repeat1, ACTIONS(2327), 4, anon_sym_signed, @@ -52526,23 +52004,60 @@ static uint16_t ts_small_parse_table[] = { anon_sym__Atomic, sym_primitive_type, sym_identifier, - [23088] = 11, + [23088] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(45), 1, + anon_sym_enum, + ACTIONS(47), 1, + anon_sym_struct, + ACTIONS(49), 1, + anon_sym_union, + ACTIONS(1178), 1, + sym_primitive_type, + ACTIONS(1238), 1, + sym_identifier, + STATE(846), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1188), 1, + sym_type_descriptor, + STATE(710), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(39), 4, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + ACTIONS(1176), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(839), 6, + sym__type_specifier, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + [23137] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1387), 1, + ACTIONS(1379), 1, anon_sym_LPAREN2, - ACTIONS(1389), 1, + ACTIONS(1381), 1, anon_sym_STAR, - ACTIONS(1391), 1, + ACTIONS(1383), 1, anon_sym_LBRACK, ACTIONS(2330), 1, sym_identifier, - STATE(986), 1, + STATE(973), 1, sym_parameter_list, ACTIONS(2332), 2, anon_sym_COMMA, anon_sym_RPAREN, - STATE(715), 2, + STATE(783), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(39), 4, @@ -52550,35 +52065,35 @@ static uint16_t ts_small_parse_table[] = { anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, - STATE(898), 5, + STATE(894), 5, sym__declarator, sym_parenthesized_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - STATE(949), 5, + STATE(931), 5, sym__abstract_declarator, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, - [23135] = 11, + [23184] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1387), 1, + ACTIONS(1379), 1, anon_sym_LPAREN2, - ACTIONS(1389), 1, + ACTIONS(1381), 1, anon_sym_STAR, - ACTIONS(1391), 1, + ACTIONS(1383), 1, anon_sym_LBRACK, ACTIONS(2334), 1, sym_identifier, - STATE(986), 1, + STATE(973), 1, sym_parameter_list, ACTIONS(2336), 2, anon_sym_COMMA, anon_sym_RPAREN, - STATE(773), 2, + STATE(707), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(39), 4, @@ -52586,56 +52101,50 @@ static uint16_t ts_small_parse_table[] = { anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, - STATE(883), 5, + STATE(880), 5, sym__declarator, sym_parenthesized_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - STATE(946), 5, + STATE(933), 5, sym__abstract_declarator, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, - [23182] = 12, + [23231] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(45), 1, - anon_sym_enum, - ACTIONS(47), 1, - anon_sym_struct, - ACTIONS(49), 1, - anon_sym_union, - ACTIONS(1186), 1, - sym_primitive_type, - ACTIONS(1246), 1, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(2338), 1, sym_identifier, - STATE(854), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1095), 1, - sym_type_descriptor, - STATE(722), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, ACTIONS(39), 4, anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, - ACTIONS(1184), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(850), 6, - sym__type_specifier, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - [23231] = 11, + STATE(722), 4, + sym_attribute_specifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(37), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + ACTIONS(2340), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_COLON, + [23269] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(45), 1, @@ -52644,13 +52153,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(49), 1, anon_sym_union, - ACTIONS(1246), 1, + ACTIONS(1238), 1, sym_identifier, - ACTIONS(2338), 1, + ACTIONS(2342), 1, sym_primitive_type, - STATE(712), 1, + STATE(846), 1, aux_sym_sized_type_specifier_repeat1, - STATE(724), 2, + STATE(783), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(39), 4, @@ -52658,49 +52167,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, - ACTIONS(41), 4, + ACTIONS(1176), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(896), 6, + STATE(841), 6, sym__type_specifier, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - [23277] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(2340), 1, - sym_identifier, - ACTIONS(39), 4, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - STATE(723), 4, - sym_attribute_specifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(37), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - ACTIONS(2342), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_COLON, [23315] = 7, ACTIONS(3), 1, sym_comment, @@ -52713,7 +52191,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, - STATE(727), 4, + STATE(562), 4, sym_attribute_specifier, sym_storage_class_specifier, sym_type_qualifier, @@ -52741,13 +52219,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(49), 1, anon_sym_union, - ACTIONS(1246), 1, + ACTIONS(1238), 1, sym_identifier, ACTIONS(2348), 1, sym_primitive_type, - STATE(712), 1, + STATE(704), 1, aux_sym_sized_type_specifier_repeat1, - STATE(721), 2, + STATE(718), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(39), 4, @@ -52760,14 +52238,43 @@ static uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(897), 6, + STATE(879), 6, sym__type_specifier, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - [23399] = 11, + [23399] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2352), 1, + anon_sym_LPAREN2, + STATE(756), 1, + sym_preproc_argument_list, + ACTIONS(2354), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2350), 15, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + [23433] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(45), 1, @@ -52776,13 +52283,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(49), 1, anon_sym_union, - ACTIONS(1246), 1, + ACTIONS(1238), 1, sym_identifier, - ACTIONS(2350), 1, + ACTIONS(2356), 1, sym_primitive_type, - STATE(712), 1, + STATE(704), 1, aux_sym_sized_type_specifier_repeat1, - STATE(773), 2, + STATE(783), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(39), 4, @@ -52795,14 +52302,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(893), 6, + STATE(888), 6, sym__type_specifier, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - [23445] = 11, + [23479] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(45), 1, @@ -52811,13 +52318,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(49), 1, anon_sym_union, - ACTIONS(1246), 1, + ACTIONS(1238), 1, sym_identifier, - ACTIONS(2352), 1, + ACTIONS(2358), 1, sym_primitive_type, - STATE(854), 1, + STATE(704), 1, aux_sym_sized_type_specifier_repeat1, - STATE(773), 2, + STATE(714), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(39), 4, @@ -52825,50 +52332,19 @@ static uint16_t ts_small_parse_table[] = { anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, - ACTIONS(1184), 4, + ACTIONS(41), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(852), 6, + STATE(884), 6, sym__type_specifier, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - [23491] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(2354), 1, - sym_identifier, - ACTIONS(39), 4, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - STATE(568), 4, - sym_attribute_specifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(37), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - ACTIONS(2356), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_COLON, - [23529] = 11, + [23525] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(45), 1, @@ -52877,13 +52353,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(49), 1, anon_sym_union, - ACTIONS(1246), 1, + ACTIONS(1238), 1, sym_identifier, - ACTIONS(2358), 1, + ACTIONS(2360), 1, sym_primitive_type, - STATE(712), 1, + STATE(704), 1, aux_sym_sized_type_specifier_repeat1, - STATE(773), 2, + STATE(783), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(39), 4, @@ -52896,43 +52372,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(892), 6, + STATE(889), 6, sym__type_specifier, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - [23575] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2362), 1, - anon_sym_LPAREN2, - STATE(768), 1, - sym_preproc_argument_list, - ACTIONS(2364), 5, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2360), 15, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - [23609] = 11, + [23571] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(45), 1, @@ -52941,13 +52388,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(49), 1, anon_sym_union, - ACTIONS(1246), 1, + ACTIONS(1238), 1, sym_identifier, - ACTIONS(2366), 1, + ACTIONS(2362), 1, sym_primitive_type, - STATE(712), 1, + STATE(704), 1, aux_sym_sized_type_specifier_repeat1, - STATE(728), 2, + STATE(716), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(39), 4, @@ -52959,46 +52406,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_signed, anon_sym_unsigned, anon_sym_long, - anon_sym_short, - STATE(900), 6, - sym__type_specifier, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - [23655] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(2368), 1, - sym_identifier, - ACTIONS(39), 4, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - STATE(568), 4, - sym_attribute_specifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(37), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - ACTIONS(2370), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_COLON, - [23693] = 11, + anon_sym_short, + STATE(895), 6, + sym__type_specifier, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + [23617] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(45), 1, @@ -53007,13 +52423,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(49), 1, anon_sym_union, - ACTIONS(1246), 1, + ACTIONS(1238), 1, sym_identifier, - ACTIONS(2372), 1, + ACTIONS(2364), 1, sym_primitive_type, - STATE(712), 1, + STATE(704), 1, aux_sym_sized_type_specifier_repeat1, - STATE(773), 2, + STATE(783), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(39), 4, @@ -53026,14 +52442,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(894), 6, + STATE(896), 6, sym__type_specifier, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - [23739] = 11, + [23663] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(45), 1, @@ -53042,13 +52458,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(49), 1, anon_sym_union, - ACTIONS(1246), 1, + ACTIONS(1238), 1, sym_identifier, - ACTIONS(2374), 1, + ACTIONS(2366), 1, sym_primitive_type, - STATE(712), 1, + STATE(704), 1, aux_sym_sized_type_specifier_repeat1, - STATE(773), 2, + STATE(783), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(39), 4, @@ -53061,14 +52477,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(888), 6, + STATE(887), 6, sym__type_specifier, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - [23785] = 11, + [23709] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(45), 1, @@ -53077,13 +52493,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(49), 1, anon_sym_union, - ACTIONS(1246), 1, + ACTIONS(1238), 1, sym_identifier, - ACTIONS(2376), 1, + ACTIONS(2368), 1, sym_primitive_type, - STATE(712), 1, + STATE(704), 1, aux_sym_sized_type_specifier_repeat1, - STATE(729), 2, + STATE(719), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(39), 4, @@ -53096,58 +52512,87 @@ static uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(886), 6, + STATE(881), 6, sym__type_specifier, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - [23831] = 10, + [23755] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2378), 1, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(2370), 1, sym_identifier, - ACTIONS(2380), 1, + ACTIONS(39), 4, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + STATE(711), 4, + sym_attribute_specifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(37), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + ACTIONS(2372), 7, + anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(2382), 1, anon_sym_LPAREN2, - ACTIONS(2384), 1, - anon_sym_defined, - ACTIONS(2390), 1, - sym_number_literal, - ACTIONS(2386), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2388), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2392), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(735), 7, - sym__preproc_expression, - sym_preproc_parenthesized_expression, - sym_preproc_defined, - sym_preproc_unary_expression, - sym_preproc_call_expression, - sym_preproc_binary_expression, - sym_char_literal, - [23874] = 10, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_COLON, + [23793] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(2374), 1, + sym_identifier, + ACTIONS(39), 4, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + STATE(562), 4, + sym_attribute_specifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(37), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + ACTIONS(2376), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_COLON, + [23831] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(2378), 1, sym_identifier, + ACTIONS(2380), 1, + anon_sym_RPAREN, ACTIONS(2382), 1, anon_sym_LPAREN2, ACTIONS(2384), 1, anon_sym_defined, - ACTIONS(2394), 1, - anon_sym_RPAREN, - ACTIONS(2396), 1, + ACTIONS(2390), 1, sym_number_literal, ACTIONS(2386), 2, anon_sym_BANG, @@ -53161,7 +52606,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(733), 7, + STATE(724), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -53169,138 +52614,85 @@ static uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [23917] = 16, + [23874] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(2398), 1, + ACTIONS(2394), 1, anon_sym_COMMA, - ACTIONS(2400), 1, + ACTIONS(2396), 1, anon_sym_RPAREN, - ACTIONS(2406), 1, + ACTIONS(2402), 1, anon_sym_SLASH, - ACTIONS(2408), 1, + ACTIONS(2404), 1, anon_sym_PIPE_PIPE, - ACTIONS(2410), 1, + ACTIONS(2406), 1, anon_sym_AMP_AMP, - ACTIONS(2412), 1, + ACTIONS(2408), 1, anon_sym_PIPE, - ACTIONS(2414), 1, + ACTIONS(2410), 1, anon_sym_CARET, - ACTIONS(2416), 1, + ACTIONS(2412), 1, anon_sym_AMP, - STATE(1007), 1, + STATE(1004), 1, aux_sym_preproc_argument_list_repeat1, - ACTIONS(2402), 2, + ACTIONS(2398), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2404), 2, + ACTIONS(2400), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2418), 2, + ACTIONS(2414), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2420), 2, + ACTIONS(2416), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2422), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2424), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [23972] = 5, - ACTIONS(2360), 1, - anon_sym_LF, - ACTIONS(2426), 1, - anon_sym_LPAREN2, - ACTIONS(2428), 1, - sym_comment, - STATE(805), 1, - sym_preproc_argument_list, - ACTIONS(2364), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT, + ACTIONS(2418), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_LT, + ACTIONS(2420), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [24005] = 16, + [23929] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(2398), 1, + ACTIONS(2394), 1, anon_sym_COMMA, - ACTIONS(2406), 1, + ACTIONS(2402), 1, anon_sym_SLASH, - ACTIONS(2408), 1, + ACTIONS(2404), 1, anon_sym_PIPE_PIPE, - ACTIONS(2410), 1, + ACTIONS(2406), 1, anon_sym_AMP_AMP, - ACTIONS(2412), 1, + ACTIONS(2408), 1, anon_sym_PIPE, - ACTIONS(2414), 1, + ACTIONS(2410), 1, anon_sym_CARET, - ACTIONS(2416), 1, + ACTIONS(2412), 1, anon_sym_AMP, - ACTIONS(2430), 1, + ACTIONS(2422), 1, anon_sym_RPAREN, - STATE(1014), 1, + STATE(979), 1, aux_sym_preproc_argument_list_repeat1, - ACTIONS(2402), 2, + ACTIONS(2398), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2404), 2, + ACTIONS(2400), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2418), 2, + ACTIONS(2414), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2420), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2422), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2424), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [24060] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2434), 5, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(2416), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2432), 15, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(2418), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(2420), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [24088] = 9, + [23984] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(2378), 1, @@ -53309,7 +52701,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, ACTIONS(2384), 1, anon_sym_defined, - ACTIONS(2436), 1, + ACTIONS(2424), 1, + anon_sym_RPAREN, + ACTIONS(2426), 1, sym_number_literal, ACTIONS(2386), 2, anon_sym_BANG, @@ -53323,7 +52717,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(753), 7, + STATE(725), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -53331,130 +52725,58 @@ static uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [24128] = 3, - ACTIONS(3), 1, + [24027] = 5, + ACTIONS(2350), 1, + anon_sym_LF, + ACTIONS(2428), 1, + anon_sym_LPAREN2, + ACTIONS(2430), 1, sym_comment, - ACTIONS(2440), 5, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2438), 15, - anon_sym_COMMA, - anon_sym_RPAREN, + STATE(789), 1, + sym_preproc_argument_list, + ACTIONS(2354), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - [24156] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1132), 1, - anon_sym_LBRACE, - ACTIONS(1130), 19, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [24184] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1870), 5, anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1868), 15, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_CARET, + anon_sym_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, + anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [24212] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1120), 1, - anon_sym_LBRACE, - ACTIONS(1118), 19, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [24240] = 9, + [24060] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2442), 1, + ACTIONS(2378), 1, sym_identifier, - ACTIONS(2444), 1, + ACTIONS(2382), 1, anon_sym_LPAREN2, - ACTIONS(2446), 1, + ACTIONS(2384), 1, anon_sym_defined, - ACTIONS(2452), 1, + ACTIONS(2432), 1, sym_number_literal, - ACTIONS(2448), 2, + ACTIONS(2386), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2450), 2, + ACTIONS(2388), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2454), 5, + ACTIONS(2392), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(804), 7, + STATE(788), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -53462,55 +52784,64 @@ static uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [24280] = 3, + [24100] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2458), 5, + ACTIONS(2402), 1, anon_sym_SLASH, + ACTIONS(2408), 1, anon_sym_PIPE, + ACTIONS(2410), 1, + anon_sym_CARET, + ACTIONS(2412), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2456), 15, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2398), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(2400), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, + ACTIONS(2414), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(2416), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2418), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(2420), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [24308] = 9, + ACTIONS(2434), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + [24146] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2442), 1, + ACTIONS(2378), 1, sym_identifier, - ACTIONS(2444), 1, + ACTIONS(2382), 1, anon_sym_LPAREN2, - ACTIONS(2446), 1, + ACTIONS(2384), 1, anon_sym_defined, - ACTIONS(2460), 1, + ACTIONS(2436), 1, sym_number_literal, - ACTIONS(2448), 2, + ACTIONS(2386), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2450), 2, + ACTIONS(2388), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2454), 5, + ACTIONS(2392), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(797), 7, + STATE(766), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -53518,24 +52849,24 @@ static uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [24348] = 9, + [24186] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2442), 1, + ACTIONS(2438), 1, sym_identifier, - ACTIONS(2444), 1, + ACTIONS(2440), 1, anon_sym_LPAREN2, - ACTIONS(2446), 1, + ACTIONS(2442), 1, anon_sym_defined, - ACTIONS(2462), 1, + ACTIONS(2448), 1, sym_number_literal, - ACTIONS(2448), 2, + ACTIONS(2444), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2450), 2, + ACTIONS(2446), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2454), 5, + ACTIONS(2450), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, @@ -53549,272 +52880,109 @@ static uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [24388] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2406), 1, - anon_sym_SLASH, - ACTIONS(2402), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2404), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2466), 4, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2464), 11, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - [24422] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2406), 1, - anon_sym_SLASH, - ACTIONS(2402), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2404), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2424), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2466), 4, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2464), 9, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [24458] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2406), 1, - anon_sym_SLASH, - ACTIONS(2402), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2404), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2420), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2422), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2424), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2466), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(2464), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [24498] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2406), 1, - anon_sym_SLASH, - ACTIONS(2402), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2404), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2418), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2420), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2422), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2424), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2466), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(2464), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - [24540] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2406), 1, - anon_sym_SLASH, - ACTIONS(2416), 1, - anon_sym_AMP, - ACTIONS(2466), 1, - anon_sym_PIPE, - ACTIONS(2402), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2404), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2418), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2420), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2422), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2424), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2464), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - [24584] = 12, + [24226] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2406), 1, - anon_sym_SLASH, - ACTIONS(2414), 1, - anon_sym_CARET, - ACTIONS(2416), 1, - anon_sym_AMP, - ACTIONS(2466), 1, - anon_sym_PIPE, - ACTIONS(2402), 2, + ACTIONS(2378), 1, + sym_identifier, + ACTIONS(2382), 1, + anon_sym_LPAREN2, + ACTIONS(2384), 1, + anon_sym_defined, + ACTIONS(2452), 1, + sym_number_literal, + ACTIONS(2386), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2388), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2404), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2418), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2420), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2422), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2424), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2464), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - [24630] = 12, + ACTIONS(2392), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(767), 7, + sym__preproc_expression, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + sym_char_literal, + [24266] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2406), 1, - anon_sym_SLASH, - ACTIONS(2412), 1, - anon_sym_PIPE, - ACTIONS(2414), 1, - anon_sym_CARET, - ACTIONS(2416), 1, - anon_sym_AMP, - ACTIONS(2402), 2, + ACTIONS(2378), 1, + sym_identifier, + ACTIONS(2382), 1, + anon_sym_LPAREN2, + ACTIONS(2384), 1, + anon_sym_defined, + ACTIONS(2454), 1, + sym_number_literal, + ACTIONS(2386), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2388), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2404), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2418), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2420), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2422), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2424), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2464), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - [24676] = 13, + ACTIONS(2392), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(768), 7, + sym__preproc_expression, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + sym_char_literal, + [24306] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2406), 1, - anon_sym_SLASH, - ACTIONS(2410), 1, - anon_sym_AMP_AMP, - ACTIONS(2412), 1, - anon_sym_PIPE, - ACTIONS(2414), 1, - anon_sym_CARET, - ACTIONS(2416), 1, - anon_sym_AMP, - ACTIONS(2402), 2, + ACTIONS(2438), 1, + sym_identifier, + ACTIONS(2440), 1, + anon_sym_LPAREN2, + ACTIONS(2442), 1, + anon_sym_defined, + ACTIONS(2456), 1, + sym_number_literal, + ACTIONS(2444), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2446), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2404), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2418), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2420), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2422), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2424), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2464), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - [24724] = 3, + ACTIONS(2450), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(809), 7, + sym__preproc_expression, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + sym_char_literal, + [24346] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2466), 5, + ACTIONS(2018), 5, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(2464), 15, + ACTIONS(2016), 15, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_DASH, @@ -53830,82 +52998,86 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - [24752] = 5, + [24374] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2406), 1, - anon_sym_SLASH, - ACTIONS(2404), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2466), 4, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2464), 13, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - [24784] = 3, + ACTIONS(1430), 1, + anon_sym_LBRACE, + ACTIONS(1432), 19, + anon_sym_extern, + anon_sym___attribute__, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [24402] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2470), 5, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2468), 15, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2438), 1, + sym_identifier, + ACTIONS(2440), 1, + anon_sym_LPAREN2, + ACTIONS(2442), 1, + anon_sym_defined, + ACTIONS(2458), 1, + sym_number_literal, + ACTIONS(2444), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2446), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - [24812] = 9, + ACTIONS(2450), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(802), 7, + sym__preproc_expression, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + sym_char_literal, + [24442] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2442), 1, + ACTIONS(2438), 1, sym_identifier, - ACTIONS(2444), 1, + ACTIONS(2440), 1, anon_sym_LPAREN2, - ACTIONS(2446), 1, + ACTIONS(2442), 1, anon_sym_defined, - ACTIONS(2472), 1, + ACTIONS(2460), 1, sym_number_literal, - ACTIONS(2448), 2, + ACTIONS(2444), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2450), 2, + ACTIONS(2446), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2454), 5, + ACTIONS(2450), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(814), 7, + STATE(815), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -53913,30 +53085,30 @@ static uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [24852] = 9, + [24482] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2378), 1, + ACTIONS(2438), 1, sym_identifier, - ACTIONS(2382), 1, + ACTIONS(2440), 1, anon_sym_LPAREN2, - ACTIONS(2384), 1, + ACTIONS(2442), 1, anon_sym_defined, - ACTIONS(2474), 1, + ACTIONS(2462), 1, sym_number_literal, - ACTIONS(2386), 2, + ACTIONS(2444), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2388), 2, + ACTIONS(2446), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2392), 5, + ACTIONS(2450), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(746), 7, + STATE(807), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -53944,7 +53116,7 @@ static uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [24892] = 9, + [24522] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(2378), 1, @@ -53953,7 +53125,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, ACTIONS(2384), 1, anon_sym_defined, - ACTIONS(2476), 1, + ACTIONS(2464), 1, sym_number_literal, ACTIONS(2386), 2, anon_sym_BANG, @@ -53967,7 +53139,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(747), 7, + STATE(814), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -53975,30 +53147,30 @@ static uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [24932] = 9, + [24562] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2378), 1, + ACTIONS(2438), 1, sym_identifier, - ACTIONS(2382), 1, + ACTIONS(2440), 1, anon_sym_LPAREN2, - ACTIONS(2384), 1, + ACTIONS(2442), 1, anon_sym_defined, - ACTIONS(2478), 1, + ACTIONS(2466), 1, sym_number_literal, - ACTIONS(2386), 2, + ACTIONS(2444), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2388), 2, + ACTIONS(2446), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2392), 5, + ACTIONS(2450), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(748), 7, + STATE(804), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -54006,30 +53178,30 @@ static uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [24972] = 9, + [24602] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2378), 1, + ACTIONS(2438), 1, sym_identifier, - ACTIONS(2382), 1, + ACTIONS(2440), 1, anon_sym_LPAREN2, - ACTIONS(2384), 1, + ACTIONS(2442), 1, anon_sym_defined, - ACTIONS(2480), 1, + ACTIONS(2468), 1, sym_number_literal, - ACTIONS(2386), 2, + ACTIONS(2444), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2388), 2, + ACTIONS(2446), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2392), 5, + ACTIONS(2450), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(749), 7, + STATE(805), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -54037,30 +53209,30 @@ static uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [25012] = 9, + [24642] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2378), 1, + ACTIONS(2438), 1, sym_identifier, - ACTIONS(2382), 1, + ACTIONS(2440), 1, anon_sym_LPAREN2, - ACTIONS(2384), 1, + ACTIONS(2442), 1, anon_sym_defined, - ACTIONS(2482), 1, + ACTIONS(2470), 1, sym_number_literal, - ACTIONS(2386), 2, + ACTIONS(2444), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2388), 2, + ACTIONS(2446), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2392), 5, + ACTIONS(2450), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(750), 7, + STATE(801), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -54068,30 +53240,30 @@ static uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [25052] = 9, + [24682] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2378), 1, + ACTIONS(2438), 1, sym_identifier, - ACTIONS(2382), 1, + ACTIONS(2440), 1, anon_sym_LPAREN2, - ACTIONS(2384), 1, + ACTIONS(2442), 1, anon_sym_defined, - ACTIONS(2484), 1, + ACTIONS(2472), 1, sym_number_literal, - ACTIONS(2386), 2, + ACTIONS(2444), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2388), 2, + ACTIONS(2446), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2392), 5, + ACTIONS(2450), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(751), 7, + STATE(800), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -54099,7 +53271,7 @@ static uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [25092] = 9, + [24722] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(2378), 1, @@ -54108,7 +53280,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, ACTIONS(2384), 1, anon_sym_defined, - ACTIONS(2486), 1, + ACTIONS(2474), 1, sym_number_literal, ACTIONS(2386), 2, anon_sym_BANG, @@ -54122,7 +53294,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(752), 7, + STATE(775), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -54130,30 +53302,30 @@ static uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [25132] = 9, + [24762] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2442), 1, + ACTIONS(2438), 1, sym_identifier, - ACTIONS(2444), 1, + ACTIONS(2440), 1, anon_sym_LPAREN2, - ACTIONS(2446), 1, + ACTIONS(2442), 1, anon_sym_defined, - ACTIONS(2488), 1, + ACTIONS(2476), 1, sym_number_literal, - ACTIONS(2448), 2, + ACTIONS(2444), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2450), 2, + ACTIONS(2446), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2454), 5, + ACTIONS(2450), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(820), 7, + STATE(799), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -54161,7 +53333,7 @@ static uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [25172] = 9, + [24802] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(2378), 1, @@ -54170,7 +53342,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, ACTIONS(2384), 1, anon_sym_defined, - ACTIONS(2490), 1, + ACTIONS(2478), 1, sym_number_literal, ACTIONS(2386), 2, anon_sym_BANG, @@ -54184,7 +53356,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(754), 7, + STATE(753), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -54192,30 +53364,80 @@ static uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [25212] = 9, + [24842] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2378), 1, + ACTIONS(2482), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2480), 15, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + [24870] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2486), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2484), 15, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + [24898] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2438), 1, sym_identifier, - ACTIONS(2382), 1, + ACTIONS(2440), 1, anon_sym_LPAREN2, - ACTIONS(2384), 1, + ACTIONS(2442), 1, anon_sym_defined, - ACTIONS(2492), 1, + ACTIONS(2488), 1, sym_number_literal, - ACTIONS(2386), 2, + ACTIONS(2444), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2388), 2, + ACTIONS(2446), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2392), 5, + ACTIONS(2450), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(755), 7, + STATE(816), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -54223,22 +53445,51 @@ static uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [25252] = 3, + [24938] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2496), 5, + ACTIONS(2494), 1, + anon_sym_LBRACE, + STATE(833), 1, + sym_field_declaration_list, + ACTIONS(2492), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_COLON, + ACTIONS(2490), 11, + anon_sym_extern, + anon_sym___attribute__, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + sym_identifier, + [24970] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2402), 1, anon_sym_SLASH, + ACTIONS(2400), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2496), 4, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(2494), 15, + ACTIONS(2434), 13, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, @@ -54248,16 +53499,52 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - [25280] = 3, + [25002] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2402), 1, + anon_sym_SLASH, + ACTIONS(2404), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2406), 1, + anon_sym_AMP_AMP, + ACTIONS(2408), 1, + anon_sym_PIPE, + ACTIONS(2410), 1, + anon_sym_CARET, + ACTIONS(2412), 1, + anon_sym_AMP, + ACTIONS(2398), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2400), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2414), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2416), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2418), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2420), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2498), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [25052] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2500), 5, + ACTIONS(2496), 5, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(2498), 15, + ACTIONS(2434), 15, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_DASH, @@ -54273,16 +53560,51 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - [25308] = 3, + [25080] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2402), 1, + anon_sym_SLASH, + ACTIONS(2406), 1, + anon_sym_AMP_AMP, + ACTIONS(2408), 1, + anon_sym_PIPE, + ACTIONS(2410), 1, + anon_sym_CARET, + ACTIONS(2412), 1, + anon_sym_AMP, + ACTIONS(2398), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2400), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2414), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2416), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2418), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2420), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2434), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + [25128] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2504), 5, + ACTIONS(2502), 5, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(2502), 15, + ACTIONS(2500), 15, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_DASH, @@ -54298,7 +53620,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - [25336] = 9, + [25156] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(2378), 1, @@ -54307,7 +53629,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, ACTIONS(2384), 1, anon_sym_defined, - ACTIONS(2506), 1, + ACTIONS(2504), 1, sym_number_literal, ACTIONS(2386), 2, anon_sym_BANG, @@ -54321,7 +53643,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(809), 7, + STATE(765), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -54329,30 +53651,64 @@ static uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [25376] = 9, + [25196] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2442), 1, + ACTIONS(2402), 1, + anon_sym_SLASH, + ACTIONS(2410), 1, + anon_sym_CARET, + ACTIONS(2412), 1, + anon_sym_AMP, + ACTIONS(2496), 1, + anon_sym_PIPE, + ACTIONS(2398), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2400), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2414), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2416), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2418), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2420), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2434), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + [25242] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2438), 1, sym_identifier, - ACTIONS(2444), 1, + ACTIONS(2440), 1, anon_sym_LPAREN2, - ACTIONS(2446), 1, + ACTIONS(2442), 1, anon_sym_defined, - ACTIONS(2508), 1, + ACTIONS(2506), 1, sym_number_literal, - ACTIONS(2448), 2, + ACTIONS(2444), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2450), 2, + ACTIONS(2446), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2454), 5, + ACTIONS(2450), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(825), 7, + STATE(812), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -54360,57 +53716,30 @@ static uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [25416] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(773), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(2510), 4, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - ACTIONS(2084), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_LBRACK, - ACTIONS(2082), 9, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [25448] = 9, + [25282] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2442), 1, + ACTIONS(2438), 1, sym_identifier, - ACTIONS(2444), 1, + ACTIONS(2440), 1, anon_sym_LPAREN2, - ACTIONS(2446), 1, + ACTIONS(2442), 1, anon_sym_defined, - ACTIONS(2513), 1, + ACTIONS(2508), 1, sym_number_literal, - ACTIONS(2448), 2, + ACTIONS(2444), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2450), 2, + ACTIONS(2446), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2454), 5, + ACTIONS(2450), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(799), 7, + STATE(798), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -54418,66 +53747,61 @@ static uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [25488] = 14, + [25322] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2406), 1, - anon_sym_SLASH, - ACTIONS(2408), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2410), 1, - anon_sym_AMP_AMP, - ACTIONS(2412), 1, - anon_sym_PIPE, - ACTIONS(2414), 1, - anon_sym_CARET, - ACTIONS(2416), 1, - anon_sym_AMP, - ACTIONS(2402), 2, + ACTIONS(2438), 1, + sym_identifier, + ACTIONS(2440), 1, + anon_sym_LPAREN2, + ACTIONS(2442), 1, + anon_sym_defined, + ACTIONS(2510), 1, + sym_number_literal, + ACTIONS(2444), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2446), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2404), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2418), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2420), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2422), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2424), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2515), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [25538] = 9, + ACTIONS(2450), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(806), 7, + sym__preproc_expression, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + sym_char_literal, + [25362] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2442), 1, + ACTIONS(2378), 1, sym_identifier, - ACTIONS(2444), 1, + ACTIONS(2382), 1, anon_sym_LPAREN2, - ACTIONS(2446), 1, + ACTIONS(2384), 1, anon_sym_defined, - ACTIONS(2517), 1, + ACTIONS(2512), 1, sym_number_literal, - ACTIONS(2448), 2, + ACTIONS(2386), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2450), 2, + ACTIONS(2388), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2454), 5, + ACTIONS(2392), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(818), 7, + STATE(758), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -54485,30 +53809,30 @@ static uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [25578] = 9, + [25402] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2442), 1, + ACTIONS(2438), 1, sym_identifier, - ACTIONS(2444), 1, + ACTIONS(2440), 1, anon_sym_LPAREN2, - ACTIONS(2446), 1, + ACTIONS(2442), 1, anon_sym_defined, - ACTIONS(2519), 1, + ACTIONS(2514), 1, sym_number_literal, - ACTIONS(2448), 2, + ACTIONS(2444), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2450), 2, + ACTIONS(2446), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2454), 5, + ACTIONS(2450), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(807), 7, + STATE(796), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -54516,30 +53840,30 @@ static uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [25618] = 9, + [25442] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2442), 1, + ACTIONS(2378), 1, sym_identifier, - ACTIONS(2444), 1, + ACTIONS(2382), 1, anon_sym_LPAREN2, - ACTIONS(2446), 1, + ACTIONS(2384), 1, anon_sym_defined, - ACTIONS(2521), 1, + ACTIONS(2516), 1, sym_number_literal, - ACTIONS(2448), 2, + ACTIONS(2386), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2450), 2, + ACTIONS(2388), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2454), 5, + ACTIONS(2392), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(812), 7, + STATE(729), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -54547,22 +53871,124 @@ static uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [25658] = 3, + [25482] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2402), 1, + anon_sym_SLASH, + ACTIONS(2412), 1, + anon_sym_AMP, + ACTIONS(2496), 1, + anon_sym_PIPE, + ACTIONS(2398), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2400), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2414), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2416), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2418), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2420), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2434), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + [25526] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2402), 1, + anon_sym_SLASH, + ACTIONS(2398), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2400), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2414), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2416), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2418), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2420), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2496), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(2434), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + [25568] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2525), 5, + ACTIONS(2402), 1, anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(2398), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2400), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2416), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2523), 15, + ACTIONS(2418), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2420), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2496), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(2434), 7, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [25608] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2402), 1, + anon_sym_SLASH, + ACTIONS(2398), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(2400), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(2420), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2496), 4, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2434), 9, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, @@ -54570,32 +53996,30 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - [25686] = 9, + [25644] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2442), 1, + ACTIONS(2438), 1, sym_identifier, - ACTIONS(2444), 1, + ACTIONS(2440), 1, anon_sym_LPAREN2, - ACTIONS(2446), 1, + ACTIONS(2442), 1, anon_sym_defined, - ACTIONS(2527), 1, + ACTIONS(2518), 1, sym_number_literal, - ACTIONS(2448), 2, + ACTIONS(2444), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2450), 2, + ACTIONS(2446), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2454), 5, + ACTIONS(2450), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(816), 7, + STATE(795), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -54603,30 +54027,30 @@ static uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [25726] = 9, + [25684] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2442), 1, + ACTIONS(2438), 1, sym_identifier, - ACTIONS(2444), 1, + ACTIONS(2440), 1, anon_sym_LPAREN2, - ACTIONS(2446), 1, + ACTIONS(2442), 1, anon_sym_defined, - ACTIONS(2529), 1, + ACTIONS(2520), 1, sym_number_literal, - ACTIONS(2448), 2, + ACTIONS(2444), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2450), 2, + ACTIONS(2446), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2454), 5, + ACTIONS(2450), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(819), 7, + STATE(803), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -54634,30 +54058,30 @@ static uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [25766] = 9, + [25724] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2442), 1, + ACTIONS(2378), 1, sym_identifier, - ACTIONS(2444), 1, + ACTIONS(2382), 1, anon_sym_LPAREN2, - ACTIONS(2446), 1, + ACTIONS(2384), 1, anon_sym_defined, - ACTIONS(2531), 1, + ACTIONS(2522), 1, sym_number_literal, - ACTIONS(2448), 2, + ACTIONS(2386), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2450), 2, + ACTIONS(2388), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2454), 5, + ACTIONS(2392), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(822), 7, + STATE(784), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -54665,30 +54089,30 @@ static uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [25806] = 9, + [25764] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2442), 1, + ACTIONS(2438), 1, sym_identifier, - ACTIONS(2444), 1, + ACTIONS(2440), 1, anon_sym_LPAREN2, - ACTIONS(2446), 1, + ACTIONS(2442), 1, anon_sym_defined, - ACTIONS(2533), 1, + ACTIONS(2524), 1, sym_number_literal, - ACTIONS(2448), 2, + ACTIONS(2444), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2450), 2, + ACTIONS(2446), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2454), 5, + ACTIONS(2450), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(811), 7, + STATE(797), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -54696,7 +54120,7 @@ static uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [25846] = 9, + [25804] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(2378), 1, @@ -54705,7 +54129,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, ACTIONS(2384), 1, anon_sym_defined, - ACTIONS(2535), 1, + ACTIONS(2526), 1, sym_number_literal, ACTIONS(2386), 2, anon_sym_BANG, @@ -54719,7 +54143,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(769), 7, + STATE(755), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -54727,30 +54151,30 @@ static uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [25886] = 9, + [25844] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2442), 1, + ACTIONS(2378), 1, sym_identifier, - ACTIONS(2444), 1, + ACTIONS(2382), 1, anon_sym_LPAREN2, - ACTIONS(2446), 1, + ACTIONS(2384), 1, anon_sym_defined, - ACTIONS(2537), 1, + ACTIONS(2528), 1, sym_number_literal, - ACTIONS(2448), 2, + ACTIONS(2386), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2450), 2, + ACTIONS(2388), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2454), 5, + ACTIONS(2392), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(798), 7, + STATE(754), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -54758,88 +54182,83 @@ static uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [25926] = 9, + [25884] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2442), 1, - sym_identifier, - ACTIONS(2444), 1, - anon_sym_LPAREN2, - ACTIONS(2446), 1, - anon_sym_defined, - ACTIONS(2539), 1, - sym_number_literal, - ACTIONS(2448), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2450), 2, + ACTIONS(2402), 1, + anon_sym_SLASH, + ACTIONS(2398), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2454), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(801), 7, - sym__preproc_expression, - sym_preproc_parenthesized_expression, - sym_preproc_defined, - sym_preproc_unary_expression, - sym_preproc_call_expression, - sym_preproc_binary_expression, - sym_char_literal, - [25966] = 5, + ACTIONS(2400), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2496), 4, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2434), 11, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + [25918] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2545), 1, - anon_sym_LBRACE, - STATE(828), 1, - sym_field_declaration_list, - ACTIONS(2543), 7, + ACTIONS(2532), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2530), 15, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_COLON, - ACTIONS(2541), 11, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - sym_identifier, - [25998] = 9, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + [25946] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2442), 1, + ACTIONS(2378), 1, sym_identifier, - ACTIONS(2444), 1, + ACTIONS(2382), 1, anon_sym_LPAREN2, - ACTIONS(2446), 1, + ACTIONS(2384), 1, anon_sym_defined, - ACTIONS(2547), 1, + ACTIONS(2534), 1, sym_number_literal, - ACTIONS(2448), 2, + ACTIONS(2386), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2450), 2, + ACTIONS(2388), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2454), 5, + ACTIONS(2392), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(802), 7, + STATE(752), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -54847,30 +54266,30 @@ static uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [26038] = 9, + [25986] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2378), 1, + ACTIONS(2438), 1, sym_identifier, - ACTIONS(2382), 1, + ACTIONS(2440), 1, anon_sym_LPAREN2, - ACTIONS(2384), 1, + ACTIONS(2442), 1, anon_sym_defined, - ACTIONS(2549), 1, + ACTIONS(2536), 1, sym_number_literal, - ACTIONS(2386), 2, + ACTIONS(2444), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2388), 2, + ACTIONS(2446), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2392), 5, + ACTIONS(2450), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(813), 7, + STATE(792), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -54878,22 +54297,37 @@ static uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [26078] = 5, + [26026] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2545), 1, - anon_sym_LBRACE, - STATE(842), 1, - sym_field_declaration_list, - ACTIONS(2553), 7, + ACTIONS(2540), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2538), 15, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_COLON, - ACTIONS(2551), 11, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + [26054] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1385), 1, + anon_sym_LBRACE, + ACTIONS(1387), 19, anon_sym_extern, anon_sym___attribute__, anon_sym_static, @@ -54904,15 +54338,48 @@ static uint16_t ts_small_parse_table[] = { anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, + [26082] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2544), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2542), 15, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, [26110] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2559), 1, + ACTIONS(2550), 1, anon_sym_LBRACE, - STATE(841), 1, + STATE(832), 1, sym_enumerator_list, - ACTIONS(2557), 7, + ACTIONS(2548), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -54920,7 +54387,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK, anon_sym_COLON, - ACTIONS(2555), 11, + ACTIONS(2546), 11, anon_sym_extern, anon_sym___attribute__, anon_sym_static, @@ -54932,123 +54399,134 @@ static uint16_t ts_small_parse_table[] = { anon_sym_restrict, anon_sym__Atomic, sym_identifier, - [26142] = 9, + [26142] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2378), 1, - sym_identifier, - ACTIONS(2382), 1, + STATE(783), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(2552), 4, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + ACTIONS(2084), 5, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(2384), 1, - anon_sym_defined, - ACTIONS(2561), 1, - sym_number_literal, - ACTIONS(2386), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2388), 2, + anon_sym_STAR, + anon_sym_LBRACK, + ACTIONS(2082), 9, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [26174] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2557), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2555), 15, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2392), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(775), 7, - sym__preproc_expression, - sym_preproc_parenthesized_expression, - sym_preproc_defined, - sym_preproc_unary_expression, - sym_preproc_call_expression, - sym_preproc_binary_expression, - sym_char_literal, - [26182] = 9, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + [26202] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2442), 1, - sym_identifier, - ACTIONS(2444), 1, - anon_sym_LPAREN2, - ACTIONS(2446), 1, - anon_sym_defined, - ACTIONS(2563), 1, - sym_number_literal, - ACTIONS(2448), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2450), 2, + ACTIONS(2561), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2559), 15, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2454), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(808), 7, - sym__preproc_expression, - sym_preproc_parenthesized_expression, - sym_preproc_defined, - sym_preproc_unary_expression, - sym_preproc_call_expression, - sym_preproc_binary_expression, - sym_char_literal, - [26222] = 9, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + [26230] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2442), 1, - sym_identifier, - ACTIONS(2444), 1, + ACTIONS(2494), 1, + anon_sym_LBRACE, + STATE(824), 1, + sym_field_declaration_list, + ACTIONS(2565), 7, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(2446), 1, - anon_sym_defined, - ACTIONS(2565), 1, - sym_number_literal, - ACTIONS(2448), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2450), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2454), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(810), 7, - sym__preproc_expression, - sym_preproc_parenthesized_expression, - sym_preproc_defined, - sym_preproc_unary_expression, - sym_preproc_call_expression, - sym_preproc_binary_expression, - sym_char_literal, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_COLON, + ACTIONS(2563), 11, + anon_sym_extern, + anon_sym___attribute__, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + sym_identifier, [26262] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2442), 1, + ACTIONS(2438), 1, sym_identifier, - ACTIONS(2444), 1, + ACTIONS(2440), 1, anon_sym_LPAREN2, - ACTIONS(2446), 1, + ACTIONS(2442), 1, anon_sym_defined, ACTIONS(2567), 1, sym_number_literal, - ACTIONS(2448), 2, + ACTIONS(2444), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2450), 2, + ACTIONS(2446), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2454), 5, + ACTIONS(2450), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(796), 7, + STATE(790), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -55056,138 +54534,47 @@ static uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [26302] = 7, - ACTIONS(2428), 1, + [26302] = 14, + ACTIONS(3), 1, sym_comment, - ACTIONS(2464), 1, - anon_sym_LF, - ACTIONS(2569), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2575), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2571), 3, - anon_sym_STAR, + ACTIONS(2402), 1, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2573), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(2466), 7, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [26337] = 12, - ACTIONS(2428), 1, - sym_comment, - ACTIONS(2577), 1, - anon_sym_LF, - ACTIONS(2579), 1, + ACTIONS(2404), 1, anon_sym_PIPE_PIPE, - ACTIONS(2581), 1, + ACTIONS(2406), 1, anon_sym_AMP_AMP, - ACTIONS(2583), 1, + ACTIONS(2408), 1, anon_sym_PIPE, - ACTIONS(2585), 1, + ACTIONS(2410), 1, anon_sym_CARET, - ACTIONS(2587), 1, + ACTIONS(2412), 1, anon_sym_AMP, - ACTIONS(2569), 2, + ACTIONS(2569), 1, + anon_sym_RPAREN, + ACTIONS(2398), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2575), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2589), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2571), 3, + ACTIONS(2400), 2, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2573), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [26382] = 12, - ACTIONS(2428), 1, - sym_comment, - ACTIONS(2579), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2581), 1, - anon_sym_AMP_AMP, - ACTIONS(2583), 1, - anon_sym_PIPE, - ACTIONS(2585), 1, - anon_sym_CARET, - ACTIONS(2587), 1, - anon_sym_AMP, - ACTIONS(2591), 1, - anon_sym_LF, - ACTIONS(2569), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2575), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2589), 2, + ACTIONS(2414), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2571), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2573), 4, + ACTIONS(2416), 2, anon_sym_GT, + anon_sym_LT, + ACTIONS(2418), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_LT, - [26427] = 11, - ACTIONS(2428), 1, - sym_comment, - ACTIONS(2464), 1, - anon_sym_LF, - ACTIONS(2583), 1, - anon_sym_PIPE, - ACTIONS(2585), 1, - anon_sym_CARET, - ACTIONS(2587), 1, - anon_sym_AMP, - ACTIONS(2466), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - ACTIONS(2569), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2575), 2, + ACTIONS(2420), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2589), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2571), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2573), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [26470] = 3, - ACTIONS(2428), 1, + [26351] = 3, + ACTIONS(2430), 1, sym_comment, - ACTIONS(2456), 1, + ACTIONS(2500), 1, anon_sym_LF, - ACTIONS(2458), 18, + ACTIONS(2502), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -55206,78 +54593,45 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [26497] = 12, - ACTIONS(2428), 1, + [26378] = 12, + ACTIONS(2430), 1, sym_comment, - ACTIONS(2579), 1, + ACTIONS(2571), 1, + anon_sym_LF, + ACTIONS(2577), 1, anon_sym_PIPE_PIPE, - ACTIONS(2581), 1, + ACTIONS(2579), 1, anon_sym_AMP_AMP, - ACTIONS(2583), 1, + ACTIONS(2581), 1, anon_sym_PIPE, - ACTIONS(2585), 1, + ACTIONS(2583), 1, anon_sym_CARET, - ACTIONS(2587), 1, + ACTIONS(2585), 1, anon_sym_AMP, - ACTIONS(2593), 1, - anon_sym_LF, - ACTIONS(2569), 2, + ACTIONS(2573), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2575), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2589), 2, + ACTIONS(2587), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2571), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2573), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [26542] = 12, - ACTIONS(2428), 1, - sym_comment, - ACTIONS(2579), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2581), 1, - anon_sym_AMP_AMP, - ACTIONS(2583), 1, - anon_sym_PIPE, - ACTIONS(2585), 1, - anon_sym_CARET, - ACTIONS(2587), 1, - anon_sym_AMP, - ACTIONS(2595), 1, - anon_sym_LF, - ACTIONS(2569), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2575), 2, + ACTIONS(2591), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2589), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2571), 3, + ACTIONS(2575), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2573), 4, + ACTIONS(2589), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [26587] = 3, - ACTIONS(2428), 1, + [26423] = 3, + ACTIONS(2430), 1, sym_comment, - ACTIONS(2523), 1, + ACTIONS(2538), 1, anon_sym_LF, - ACTIONS(2525), 18, + ACTIONS(2540), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -55293,39 +54647,48 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - [26614] = 3, - ACTIONS(2428), 1, - sym_comment, - ACTIONS(2498), 1, - anon_sym_LF, - ACTIONS(2500), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + [26450] = 12, + ACTIONS(2430), 1, + sym_comment, + ACTIONS(2577), 1, anon_sym_PIPE_PIPE, + ACTIONS(2579), 1, anon_sym_AMP_AMP, + ACTIONS(2581), 1, anon_sym_PIPE, + ACTIONS(2583), 1, anon_sym_CARET, + ACTIONS(2585), 1, anon_sym_AMP, + ACTIONS(2593), 1, + anon_sym_LF, + ACTIONS(2573), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2587), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(2591), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2575), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2589), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - [26641] = 3, - ACTIONS(2428), 1, - sym_comment, - ACTIONS(2494), 1, + [26495] = 3, + ACTIONS(2016), 1, anon_sym_LF, - ACTIONS(2496), 18, + ACTIONS(2430), 1, + sym_comment, + ACTIONS(2018), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -55344,12 +54707,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [26668] = 3, - ACTIONS(2428), 1, + [26522] = 3, + ACTIONS(2430), 1, sym_comment, - ACTIONS(2502), 1, + ACTIONS(2542), 1, anon_sym_LF, - ACTIONS(2504), 18, + ACTIONS(2544), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -55368,52 +54731,52 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [26695] = 12, - ACTIONS(2428), 1, + [26549] = 12, + ACTIONS(2430), 1, sym_comment, - ACTIONS(2579), 1, + ACTIONS(2577), 1, anon_sym_PIPE_PIPE, - ACTIONS(2581), 1, + ACTIONS(2579), 1, anon_sym_AMP_AMP, - ACTIONS(2583), 1, + ACTIONS(2581), 1, anon_sym_PIPE, - ACTIONS(2585), 1, + ACTIONS(2583), 1, anon_sym_CARET, - ACTIONS(2587), 1, + ACTIONS(2585), 1, anon_sym_AMP, - ACTIONS(2597), 1, + ACTIONS(2595), 1, anon_sym_LF, - ACTIONS(2569), 2, + ACTIONS(2573), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2575), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2589), 2, + ACTIONS(2587), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2571), 3, + ACTIONS(2591), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2575), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2573), 4, + ACTIONS(2589), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [26740] = 5, - ACTIONS(2428), 1, + [26594] = 5, + ACTIONS(2430), 1, sym_comment, - ACTIONS(2464), 1, + ACTIONS(2434), 1, anon_sym_LF, - ACTIONS(2569), 2, + ACTIONS(2573), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2571), 3, + ACTIONS(2575), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2466), 13, + ACTIONS(2496), 13, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -55427,57 +54790,55 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [26771] = 14, - ACTIONS(3), 1, + [26625] = 12, + ACTIONS(2430), 1, sym_comment, - ACTIONS(2406), 1, - anon_sym_SLASH, - ACTIONS(2408), 1, + ACTIONS(2577), 1, anon_sym_PIPE_PIPE, - ACTIONS(2410), 1, + ACTIONS(2579), 1, anon_sym_AMP_AMP, - ACTIONS(2412), 1, + ACTIONS(2581), 1, anon_sym_PIPE, - ACTIONS(2414), 1, + ACTIONS(2583), 1, anon_sym_CARET, - ACTIONS(2416), 1, + ACTIONS(2585), 1, anon_sym_AMP, - ACTIONS(2599), 1, - anon_sym_RPAREN, - ACTIONS(2402), 2, + ACTIONS(2597), 1, + anon_sym_LF, + ACTIONS(2573), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2404), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2418), 2, + ACTIONS(2587), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2420), 2, + ACTIONS(2591), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2575), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2589), 4, anon_sym_GT, - anon_sym_LT, - ACTIONS(2422), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2424), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [26820] = 6, - ACTIONS(2428), 1, + anon_sym_LT, + [26670] = 6, + ACTIONS(2430), 1, sym_comment, - ACTIONS(2464), 1, + ACTIONS(2434), 1, anon_sym_LF, - ACTIONS(2569), 2, + ACTIONS(2573), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2575), 2, + ACTIONS(2591), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2571), 3, + ACTIONS(2575), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2466), 11, + ACTIONS(2496), 11, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -55489,142 +54850,99 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [26853] = 12, - ACTIONS(2428), 1, + [26703] = 7, + ACTIONS(2430), 1, sym_comment, - ACTIONS(2579), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2581), 1, - anon_sym_AMP_AMP, - ACTIONS(2583), 1, - anon_sym_PIPE, - ACTIONS(2585), 1, - anon_sym_CARET, - ACTIONS(2587), 1, - anon_sym_AMP, - ACTIONS(2601), 1, + ACTIONS(2434), 1, anon_sym_LF, - ACTIONS(2569), 2, + ACTIONS(2573), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2575), 2, + ACTIONS(2591), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2589), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2571), 3, + ACTIONS(2575), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2573), 4, + ACTIONS(2589), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [26898] = 12, - ACTIONS(2428), 1, - sym_comment, - ACTIONS(2579), 1, + ACTIONS(2496), 7, anon_sym_PIPE_PIPE, - ACTIONS(2581), 1, anon_sym_AMP_AMP, - ACTIONS(2583), 1, anon_sym_PIPE, - ACTIONS(2585), 1, anon_sym_CARET, - ACTIONS(2587), 1, anon_sym_AMP, - ACTIONS(2603), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [26738] = 8, + ACTIONS(2430), 1, + sym_comment, + ACTIONS(2434), 1, anon_sym_LF, - ACTIONS(2569), 2, + ACTIONS(2573), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2575), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2589), 2, + ACTIONS(2587), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2571), 3, + ACTIONS(2591), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2575), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2573), 4, + ACTIONS(2589), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [26943] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2406), 1, - anon_sym_SLASH, - ACTIONS(2408), 1, + ACTIONS(2496), 5, anon_sym_PIPE_PIPE, - ACTIONS(2410), 1, anon_sym_AMP_AMP, - ACTIONS(2412), 1, anon_sym_PIPE, - ACTIONS(2414), 1, anon_sym_CARET, - ACTIONS(2416), 1, anon_sym_AMP, - ACTIONS(2605), 1, - anon_sym_RPAREN, - ACTIONS(2402), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2404), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2418), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2420), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2422), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2424), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [26992] = 8, - ACTIONS(2428), 1, + [26775] = 9, + ACTIONS(2430), 1, sym_comment, - ACTIONS(2464), 1, + ACTIONS(2434), 1, anon_sym_LF, - ACTIONS(2569), 2, + ACTIONS(2585), 1, + anon_sym_AMP, + ACTIONS(2573), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2575), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2589), 2, + ACTIONS(2587), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2571), 3, + ACTIONS(2591), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2575), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2573), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(2466), 5, + ACTIONS(2496), 4, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_CARET, - anon_sym_AMP, - [27029] = 3, - ACTIONS(2428), 1, + ACTIONS(2589), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [26814] = 3, + ACTIONS(2430), 1, sym_comment, - ACTIONS(2438), 1, + ACTIONS(2434), 1, anon_sym_LF, - ACTIONS(2440), 18, + ACTIONS(2496), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -55643,106 +54961,174 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [27056] = 9, - ACTIONS(2428), 1, + [26841] = 12, + ACTIONS(2430), 1, sym_comment, - ACTIONS(2464), 1, - anon_sym_LF, - ACTIONS(2587), 1, + ACTIONS(2577), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2579), 1, + anon_sym_AMP_AMP, + ACTIONS(2581), 1, + anon_sym_PIPE, + ACTIONS(2583), 1, + anon_sym_CARET, + ACTIONS(2585), 1, anon_sym_AMP, - ACTIONS(2569), 2, + ACTIONS(2599), 1, + anon_sym_LF, + ACTIONS(2573), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2575), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2589), 2, + ACTIONS(2587), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2571), 3, + ACTIONS(2591), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2575), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2466), 4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_CARET, - ACTIONS(2573), 4, + ACTIONS(2589), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [27095] = 10, - ACTIONS(2428), 1, + [26886] = 11, + ACTIONS(2430), 1, sym_comment, - ACTIONS(2464), 1, + ACTIONS(2434), 1, anon_sym_LF, - ACTIONS(2585), 1, + ACTIONS(2581), 1, + anon_sym_PIPE, + ACTIONS(2583), 1, anon_sym_CARET, - ACTIONS(2587), 1, + ACTIONS(2585), 1, anon_sym_AMP, - ACTIONS(2569), 2, + ACTIONS(2496), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(2573), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2575), 2, + ACTIONS(2587), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2591), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2589), 2, + ACTIONS(2575), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2589), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [26929] = 10, + ACTIONS(2430), 1, + sym_comment, + ACTIONS(2434), 1, + anon_sym_LF, + ACTIONS(2583), 1, + anon_sym_CARET, + ACTIONS(2585), 1, + anon_sym_AMP, + ACTIONS(2573), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2587), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2466), 3, + ACTIONS(2591), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2496), 3, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - ACTIONS(2571), 3, + ACTIONS(2575), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2573), 4, + ACTIONS(2589), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [27136] = 12, - ACTIONS(2428), 1, + [26970] = 12, + ACTIONS(2430), 1, sym_comment, - ACTIONS(2464), 1, - anon_sym_LF, - ACTIONS(2466), 1, + ACTIONS(2577), 1, anon_sym_PIPE_PIPE, - ACTIONS(2581), 1, + ACTIONS(2579), 1, anon_sym_AMP_AMP, - ACTIONS(2583), 1, + ACTIONS(2581), 1, anon_sym_PIPE, - ACTIONS(2585), 1, + ACTIONS(2583), 1, anon_sym_CARET, - ACTIONS(2587), 1, + ACTIONS(2585), 1, anon_sym_AMP, - ACTIONS(2569), 2, + ACTIONS(2601), 1, + anon_sym_LF, + ACTIONS(2573), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2575), 2, + ACTIONS(2587), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2591), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2589), 2, + ACTIONS(2575), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2589), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [27015] = 12, + ACTIONS(2430), 1, + sym_comment, + ACTIONS(2434), 1, + anon_sym_LF, + ACTIONS(2496), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2579), 1, + anon_sym_AMP_AMP, + ACTIONS(2581), 1, + anon_sym_PIPE, + ACTIONS(2583), 1, + anon_sym_CARET, + ACTIONS(2585), 1, + anon_sym_AMP, + ACTIONS(2573), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2587), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2571), 3, + ACTIONS(2591), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2575), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2573), 4, + ACTIONS(2589), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [27181] = 3, - ACTIONS(2428), 1, + [27060] = 3, + ACTIONS(2430), 1, sym_comment, - ACTIONS(2464), 1, + ACTIONS(2559), 1, anon_sym_LF, - ACTIONS(2466), 18, + ACTIONS(2561), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -55761,16 +55147,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [27208] = 4, - ACTIONS(2428), 1, + [27087] = 4, + ACTIONS(2430), 1, sym_comment, - ACTIONS(2464), 1, + ACTIONS(2434), 1, anon_sym_LF, - ACTIONS(2571), 3, + ACTIONS(2575), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2466), 15, + ACTIONS(2496), 15, anon_sym_DASH, anon_sym_PLUS, anon_sym_PIPE_PIPE, @@ -55786,12 +55172,36 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [27237] = 3, - ACTIONS(1868), 1, + [27116] = 3, + ACTIONS(2430), 1, + sym_comment, + ACTIONS(2484), 1, anon_sym_LF, - ACTIONS(2428), 1, + ACTIONS(2486), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + [27143] = 3, + ACTIONS(2430), 1, sym_comment, - ACTIONS(1870), 18, + ACTIONS(2480), 1, + anon_sym_LF, + ACTIONS(2482), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -55810,45 +55220,45 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [27264] = 12, - ACTIONS(2428), 1, + [27170] = 12, + ACTIONS(2430), 1, sym_comment, - ACTIONS(2579), 1, + ACTIONS(2577), 1, anon_sym_PIPE_PIPE, - ACTIONS(2581), 1, + ACTIONS(2579), 1, anon_sym_AMP_AMP, - ACTIONS(2583), 1, + ACTIONS(2581), 1, anon_sym_PIPE, - ACTIONS(2585), 1, + ACTIONS(2583), 1, anon_sym_CARET, - ACTIONS(2587), 1, + ACTIONS(2585), 1, anon_sym_AMP, - ACTIONS(2607), 1, + ACTIONS(2603), 1, anon_sym_LF, - ACTIONS(2569), 2, + ACTIONS(2573), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2575), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2589), 2, + ACTIONS(2587), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2571), 3, + ACTIONS(2591), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2575), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2573), 4, + ACTIONS(2589), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [27309] = 3, - ACTIONS(2428), 1, + [27215] = 3, + ACTIONS(2430), 1, sym_comment, - ACTIONS(2432), 1, + ACTIONS(2530), 1, anon_sym_LF, - ACTIONS(2434), 18, + ACTIONS(2532), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -55867,12 +55277,47 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [27336] = 3, - ACTIONS(2428), 1, + [27242] = 14, + ACTIONS(3), 1, sym_comment, - ACTIONS(2468), 1, + ACTIONS(2402), 1, + anon_sym_SLASH, + ACTIONS(2404), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2406), 1, + anon_sym_AMP_AMP, + ACTIONS(2408), 1, + anon_sym_PIPE, + ACTIONS(2410), 1, + anon_sym_CARET, + ACTIONS(2412), 1, + anon_sym_AMP, + ACTIONS(2605), 1, + anon_sym_RPAREN, + ACTIONS(2398), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2400), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2414), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2416), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2418), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2420), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [27291] = 3, + ACTIONS(2430), 1, + sym_comment, + ACTIONS(2555), 1, anon_sym_LF, - ACTIONS(2470), 18, + ACTIONS(2557), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -55891,35 +55336,68 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [27363] = 12, - ACTIONS(2428), 1, + [27318] = 12, + ACTIONS(2430), 1, sym_comment, - ACTIONS(2579), 1, + ACTIONS(2577), 1, anon_sym_PIPE_PIPE, - ACTIONS(2581), 1, + ACTIONS(2579), 1, anon_sym_AMP_AMP, - ACTIONS(2583), 1, + ACTIONS(2581), 1, anon_sym_PIPE, - ACTIONS(2585), 1, + ACTIONS(2583), 1, anon_sym_CARET, - ACTIONS(2587), 1, + ACTIONS(2585), 1, anon_sym_AMP, - ACTIONS(2609), 1, + ACTIONS(2607), 1, anon_sym_LF, - ACTIONS(2569), 2, + ACTIONS(2573), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2575), 2, + ACTIONS(2587), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2591), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2589), 2, + ACTIONS(2575), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2589), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [27363] = 12, + ACTIONS(2430), 1, + sym_comment, + ACTIONS(2577), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2579), 1, + anon_sym_AMP_AMP, + ACTIONS(2581), 1, + anon_sym_PIPE, + ACTIONS(2583), 1, + anon_sym_CARET, + ACTIONS(2585), 1, + anon_sym_AMP, + ACTIONS(2609), 1, + anon_sym_LF, + ACTIONS(2573), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2587), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2571), 3, + ACTIONS(2591), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2575), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2573), 4, + ACTIONS(2589), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -55947,10 +55425,38 @@ static uint16_t ts_small_parse_table[] = { anon_sym_restrict, anon_sym__Atomic, sym_identifier, - [27434] = 3, + [27434] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(2338), 1, + sym_identifier, + ACTIONS(2615), 1, + anon_sym_SEMI, + ACTIONS(2340), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + ACTIONS(39), 4, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + STATE(722), 4, + sym_attribute_specifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(37), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + [27470] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2617), 7, + ACTIONS(2619), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -55958,7 +55464,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK, anon_sym_COLON, - ACTIONS(2615), 11, + ACTIONS(2617), 11, anon_sym_extern, anon_sym___attribute__, anon_sym_static, @@ -55970,42 +55476,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_restrict, anon_sym__Atomic, sym_identifier, - [27460] = 3, + [27496] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2621), 7, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(2338), 1, + sym_identifier, + ACTIONS(2621), 1, + anon_sym_SEMI, + ACTIONS(2340), 2, anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_COLON, - ACTIONS(2619), 11, + ACTIONS(39), 4, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + STATE(722), 4, + sym_attribute_specifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(37), 5, anon_sym_extern, - anon_sym___attribute__, anon_sym_static, anon_sym_auto, anon_sym_register, anon_sym_inline, + [27532] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(2338), 1, + sym_identifier, + ACTIONS(2623), 1, + anon_sym_SEMI, + ACTIONS(2340), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + ACTIONS(39), 4, anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, - sym_identifier, - [27486] = 4, + STATE(722), 4, + sym_attribute_specifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(37), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + [27568] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2623), 1, - anon_sym_LPAREN2, - ACTIONS(1846), 6, + ACTIONS(2627), 7, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_COLON, - ACTIONS(1218), 11, + ACTIONS(2625), 11, anon_sym_extern, anon_sym___attribute__, anon_sym_static, @@ -56017,10 +55555,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_restrict, anon_sym__Atomic, sym_identifier, - [27514] = 3, + [27594] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2628), 7, + ACTIONS(2631), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -56028,7 +55566,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK, anon_sym_COLON, - ACTIONS(2626), 11, + ACTIONS(2629), 11, anon_sym_extern, anon_sym___attribute__, anon_sym_static, @@ -56040,10 +55578,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_restrict, anon_sym__Atomic, sym_identifier, - [27540] = 3, + [27620] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2632), 7, + ACTIONS(2635), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -56051,7 +55589,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK, anon_sym_COLON, - ACTIONS(2630), 11, + ACTIONS(2633), 11, anon_sym_extern, anon_sym___attribute__, anon_sym_static, @@ -56063,10 +55601,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_restrict, anon_sym__Atomic, sym_identifier, - [27566] = 3, + [27646] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2636), 7, + ACTIONS(2639), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -56074,7 +55612,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK, anon_sym_COLON, - ACTIONS(2634), 11, + ACTIONS(2637), 11, anon_sym_extern, anon_sym___attribute__, anon_sym_static, @@ -56086,10 +55624,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_restrict, anon_sym__Atomic, sym_identifier, - [27592] = 3, + [27672] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2640), 7, + ACTIONS(2643), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -56097,7 +55635,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK, anon_sym_COLON, - ACTIONS(2638), 11, + ACTIONS(2641), 11, anon_sym_extern, anon_sym___attribute__, anon_sym_static, @@ -56109,10 +55647,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_restrict, anon_sym__Atomic, sym_identifier, - [27618] = 3, + [27698] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2644), 7, + ACTIONS(2647), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -56120,7 +55658,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK, anon_sym_COLON, - ACTIONS(2642), 11, + ACTIONS(2645), 11, anon_sym_extern, anon_sym___attribute__, anon_sym_static, @@ -56132,38 +55670,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_restrict, anon_sym__Atomic, sym_identifier, - [27644] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(2340), 1, - sym_identifier, - ACTIONS(2646), 1, - anon_sym_SEMI, - ACTIONS(2342), 2, - anon_sym_LPAREN2, - anon_sym_STAR, - ACTIONS(39), 4, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - STATE(723), 4, - sym_attribute_specifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(37), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - [27680] = 3, + [27724] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2650), 7, + ACTIONS(2651), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -56171,7 +55681,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK, anon_sym_COLON, - ACTIONS(2648), 11, + ACTIONS(2649), 11, anon_sym_extern, anon_sym___attribute__, anon_sym_static, @@ -56183,38 +55693,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_restrict, anon_sym__Atomic, sym_identifier, - [27706] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(2340), 1, - sym_identifier, - ACTIONS(2652), 1, - anon_sym_SEMI, - ACTIONS(2342), 2, - anon_sym_LPAREN2, - anon_sym_STAR, - ACTIONS(39), 4, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - STATE(723), 4, - sym_attribute_specifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(37), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - [27742] = 3, + [27750] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2656), 7, + ACTIONS(2655), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -56222,7 +55704,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK, anon_sym_COLON, - ACTIONS(2654), 11, + ACTIONS(2653), 11, anon_sym_extern, anon_sym___attribute__, anon_sym_static, @@ -56234,10 +55716,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_restrict, anon_sym__Atomic, sym_identifier, - [27768] = 3, + [27776] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2660), 7, + ACTIONS(2659), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -56245,7 +55727,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK, anon_sym_COLON, - ACTIONS(2658), 11, + ACTIONS(2657), 11, anon_sym_extern, anon_sym___attribute__, anon_sym_static, @@ -56257,38 +55739,33 @@ static uint16_t ts_small_parse_table[] = { anon_sym_restrict, anon_sym__Atomic, sym_identifier, - [27794] = 8, + [27802] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(2340), 1, - sym_identifier, - ACTIONS(2662), 1, - anon_sym_SEMI, - ACTIONS(2342), 2, + ACTIONS(2663), 7, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(39), 4, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - STATE(723), 4, - sym_attribute_specifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(37), 5, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_COLON, + ACTIONS(2661), 11, anon_sym_extern, + anon_sym___attribute__, anon_sym_static, anon_sym_auto, anon_sym_register, anon_sym_inline, - [27830] = 3, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + sym_identifier, + [27828] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2666), 7, + ACTIONS(2667), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -56296,7 +55773,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK, anon_sym_COLON, - ACTIONS(2664), 11, + ACTIONS(2665), 11, anon_sym_extern, anon_sym___attribute__, anon_sym_static, @@ -56308,10 +55785,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_restrict, anon_sym__Atomic, sym_identifier, - [27856] = 3, + [27854] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2670), 7, + ACTIONS(2671), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -56319,7 +55796,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK, anon_sym_COLON, - ACTIONS(2668), 11, + ACTIONS(2669), 11, anon_sym_extern, anon_sym___attribute__, anon_sym_static, @@ -56331,10 +55808,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_restrict, anon_sym__Atomic, sym_identifier, - [27882] = 3, + [27880] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2674), 7, + ACTIONS(2675), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -56342,7 +55819,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK, anon_sym_COLON, - ACTIONS(2672), 11, + ACTIONS(2673), 11, anon_sym_extern, anon_sym___attribute__, anon_sym_static, @@ -56354,18 +55831,19 @@ static uint16_t ts_small_parse_table[] = { anon_sym_restrict, anon_sym__Atomic, sym_identifier, - [27908] = 3, + [27906] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2678), 7, + ACTIONS(2677), 1, + anon_sym_LPAREN2, + ACTIONS(1930), 6, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_COLON, - ACTIONS(2676), 11, + ACTIONS(1210), 11, anon_sym_extern, anon_sym___attribute__, anon_sym_static, @@ -56382,11 +55860,11 @@ static uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(33), 1, anon_sym___attribute__, - ACTIONS(2340), 1, + ACTIONS(2338), 1, sym_identifier, ACTIONS(2680), 1, anon_sym_SEMI, - ACTIONS(2342), 2, + ACTIONS(2340), 2, anon_sym_LPAREN2, anon_sym_STAR, ACTIONS(39), 4, @@ -56394,7 +55872,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, - STATE(723), 4, + STATE(722), 4, sym_attribute_specifier, sym_storage_class_specifier, sym_type_qualifier, @@ -56408,26 +55886,26 @@ static uint16_t ts_small_parse_table[] = { [27970] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1387), 1, + ACTIONS(1379), 1, anon_sym_LPAREN2, - ACTIONS(1389), 1, + ACTIONS(1381), 1, anon_sym_STAR, - ACTIONS(1391), 1, + ACTIONS(1383), 1, anon_sym_LBRACK, ACTIONS(2682), 1, sym_identifier, - STATE(986), 1, + STATE(973), 1, sym_parameter_list, ACTIONS(2684), 2, anon_sym_COMMA, anon_sym_RPAREN, - STATE(938), 5, + STATE(929), 5, sym__declarator, sym_parenthesized_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - STATE(947), 5, + STATE(936), 5, sym__abstract_declarator, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, @@ -56436,188 +55914,188 @@ static uint16_t ts_small_parse_table[] = { [28007] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1391), 1, + ACTIONS(1383), 1, anon_sym_LBRACK, - ACTIONS(1812), 1, + ACTIONS(1822), 1, anon_sym_LPAREN2, - ACTIONS(1814), 1, + ACTIONS(1824), 1, anon_sym_STAR, - ACTIONS(2336), 1, + ACTIONS(2686), 1, anon_sym_RPAREN, - STATE(986), 1, + STATE(973), 1, sym_parameter_list, - STATE(773), 2, + STATE(842), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(2686), 4, + ACTIONS(2688), 4, anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, - STATE(946), 5, + STATE(968), 5, sym__abstract_declarator, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, - [28043] = 9, + [28043] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1391), 1, - anon_sym_LBRACK, - ACTIONS(1812), 1, + ACTIONS(2693), 1, anon_sym_LPAREN2, - ACTIONS(1814), 1, + ACTIONS(1930), 2, + anon_sym_COMMA, anon_sym_STAR, - ACTIONS(2332), 1, + ACTIONS(2690), 2, anon_sym_RPAREN, - STATE(986), 1, - sym_parameter_list, - STATE(847), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(2686), 4, + anon_sym_LBRACK, + ACTIONS(1210), 11, + anon_sym_extern, + anon_sym___attribute__, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, - STATE(949), 5, - sym__abstract_declarator, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - [28079] = 9, + sym_identifier, + [28071] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1391), 1, + ACTIONS(1383), 1, anon_sym_LBRACK, - ACTIONS(1812), 1, + ACTIONS(1822), 1, anon_sym_LPAREN2, - ACTIONS(1814), 1, + ACTIONS(1824), 1, anon_sym_STAR, - ACTIONS(2688), 1, + ACTIONS(2697), 1, anon_sym_RPAREN, - STATE(986), 1, + STATE(973), 1, sym_parameter_list, - STATE(773), 2, + STATE(845), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(2686), 4, + ACTIONS(2688), 4, anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, - STATE(970), 5, + STATE(956), 5, sym__abstract_declarator, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, - [28115] = 9, + [28107] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1391), 1, + ACTIONS(1383), 1, anon_sym_LBRACK, - ACTIONS(1812), 1, + ACTIONS(1822), 1, anon_sym_LPAREN2, - ACTIONS(1814), 1, + ACTIONS(1824), 1, anon_sym_STAR, - ACTIONS(2690), 1, + ACTIONS(2699), 1, anon_sym_RPAREN, - STATE(986), 1, + STATE(973), 1, sym_parameter_list, - STATE(851), 2, + STATE(783), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(2686), 4, + ACTIONS(2688), 4, anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, - STATE(987), 5, + STATE(960), 5, sym__abstract_declarator, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, - [28151] = 9, + [28143] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1391), 1, + ACTIONS(1383), 1, anon_sym_LBRACK, - ACTIONS(1812), 1, + ACTIONS(1822), 1, anon_sym_LPAREN2, - ACTIONS(1814), 1, + ACTIONS(1824), 1, anon_sym_STAR, - ACTIONS(2692), 1, + ACTIONS(2332), 1, anon_sym_RPAREN, - STATE(986), 1, + STATE(973), 1, sym_parameter_list, - STATE(773), 2, + STATE(783), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(2686), 4, + ACTIONS(2688), 4, anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, - STATE(957), 5, + STATE(931), 5, sym__abstract_declarator, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, - [28187] = 9, + [28179] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1391), 1, + ACTIONS(1383), 1, anon_sym_LBRACK, - ACTIONS(1812), 1, + ACTIONS(1822), 1, anon_sym_LPAREN2, - ACTIONS(1814), 1, + ACTIONS(1824), 1, anon_sym_STAR, - ACTIONS(2694), 1, + ACTIONS(2336), 1, anon_sym_RPAREN, - STATE(986), 1, + STATE(973), 1, sym_parameter_list, - STATE(849), 2, + STATE(843), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(2686), 4, + ACTIONS(2688), 4, anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, - STATE(955), 5, + STATE(933), 5, sym__abstract_declarator, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, - [28223] = 5, + [28215] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2699), 1, + ACTIONS(1383), 1, + anon_sym_LBRACK, + ACTIONS(1822), 1, anon_sym_LPAREN2, - ACTIONS(1846), 2, - anon_sym_COMMA, + ACTIONS(1824), 1, anon_sym_STAR, - ACTIONS(2696), 2, + ACTIONS(2701), 1, anon_sym_RPAREN, - anon_sym_LBRACK, - ACTIONS(1218), 11, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, + STATE(973), 1, + sym_parameter_list, + STATE(783), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(2688), 4, anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, - sym_identifier, + STATE(946), 5, + sym__abstract_declarator, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, [28251] = 7, ACTIONS(3), 1, sym_comment, @@ -56625,7 +56103,7 @@ static uint16_t ts_small_parse_table[] = { sym_primitive_type, ACTIONS(2703), 1, sym_identifier, - STATE(713), 1, + STATE(705), 1, aux_sym_sized_type_specifier_repeat1, ACTIONS(2315), 4, anon_sym_RPAREN, @@ -56651,7 +56129,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, ACTIONS(2709), 1, anon_sym_STAR, - STATE(859), 2, + STATE(852), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(39), 4, @@ -56659,22 +56137,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, - STATE(913), 5, - sym__field_declarator, - sym_parenthesized_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, + STATE(918), 5, + sym__type_declarator, + sym_parenthesized_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, [28312] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2711), 1, + ACTIONS(2334), 1, sym_identifier, - ACTIONS(2713), 1, + ACTIONS(2711), 1, anon_sym_LPAREN2, - ACTIONS(2715), 1, + ACTIONS(2713), 1, anon_sym_STAR, - STATE(860), 2, + STATE(849), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(39), 4, @@ -56682,22 +56160,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, - STATE(924), 5, - sym__type_declarator, - sym_parenthesized_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, + STATE(880), 5, + sym__declarator, + sym_parenthesized_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, [28342] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2334), 1, + ACTIONS(2330), 1, sym_identifier, - ACTIONS(2717), 1, + ACTIONS(2711), 1, anon_sym_LPAREN2, - ACTIONS(2719), 1, + ACTIONS(2713), 1, anon_sym_STAR, - STATE(773), 2, + STATE(783), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(39), 4, @@ -56705,7 +56183,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, - STATE(883), 5, + STATE(894), 5, sym__declarator, sym_parenthesized_declarator, sym_pointer_declarator, @@ -56714,13 +56192,13 @@ static uint16_t ts_small_parse_table[] = { [28372] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2330), 1, + ACTIONS(2715), 1, sym_identifier, ACTIONS(2717), 1, anon_sym_LPAREN2, ACTIONS(2719), 1, anon_sym_STAR, - STATE(857), 2, + STATE(851), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(39), 4, @@ -56728,22 +56206,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, - STATE(898), 5, - sym__declarator, - sym_parenthesized_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, + STATE(907), 5, + sym__field_declarator, + sym_parenthesized_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, [28402] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2705), 1, + ACTIONS(2715), 1, sym_identifier, - ACTIONS(2707), 1, + ACTIONS(2717), 1, anon_sym_LPAREN2, - ACTIONS(2709), 1, + ACTIONS(2719), 1, anon_sym_STAR, - STATE(773), 2, + STATE(783), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(39), 4, @@ -56751,7 +56229,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, - STATE(910), 5, + STATE(899), 5, sym__field_declarator, sym_parenthesized_field_declarator, sym_pointer_field_declarator, @@ -56760,13 +56238,13 @@ static uint16_t ts_small_parse_table[] = { [28432] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2711), 1, + ACTIONS(2705), 1, sym_identifier, - ACTIONS(2713), 1, + ACTIONS(2707), 1, anon_sym_LPAREN2, - ACTIONS(2715), 1, + ACTIONS(2709), 1, anon_sym_STAR, - STATE(773), 2, + STATE(783), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(39), 4, @@ -56774,7 +56252,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, - STATE(933), 5, + STATE(915), 5, sym__type_declarator, sym_parenthesized_type_declarator, sym_pointer_type_declarator, @@ -56783,9 +56261,9 @@ static uint16_t ts_small_parse_table[] = { [28462] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2707), 1, + ACTIONS(2717), 1, anon_sym_LPAREN2, - ACTIONS(2709), 1, + ACTIONS(2719), 1, anon_sym_STAR, ACTIONS(2721), 1, sym_identifier, @@ -56793,9 +56271,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SEMI, ACTIONS(2725), 1, anon_sym_COLON, - STATE(1180), 1, + STATE(1128), 1, sym_bitfield_clause, - STATE(890), 5, + STATE(882), 5, sym__field_declarator, sym_parenthesized_field_declarator, sym_pointer_field_declarator, @@ -56804,9 +56282,9 @@ static uint16_t ts_small_parse_table[] = { [28491] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2707), 1, + ACTIONS(2717), 1, anon_sym_LPAREN2, - ACTIONS(2709), 1, + ACTIONS(2719), 1, anon_sym_STAR, ACTIONS(2721), 1, sym_identifier, @@ -56814,9 +56292,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COLON, ACTIONS(2727), 1, anon_sym_SEMI, - STATE(1240), 1, + STATE(1227), 1, sym_bitfield_clause, - STATE(891), 5, + STATE(892), 5, sym__field_declarator, sym_parenthesized_field_declarator, sym_pointer_field_declarator, @@ -56825,9 +56303,9 @@ static uint16_t ts_small_parse_table[] = { [28520] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2707), 1, + ACTIONS(2717), 1, anon_sym_LPAREN2, - ACTIONS(2709), 1, + ACTIONS(2719), 1, anon_sym_STAR, ACTIONS(2721), 1, sym_identifier, @@ -56835,9 +56313,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COLON, ACTIONS(2729), 1, anon_sym_SEMI, - STATE(1120), 1, + STATE(1196), 1, sym_bitfield_clause, - STATE(899), 5, + STATE(893), 5, sym__field_declarator, sym_parenthesized_field_declarator, sym_pointer_field_declarator, @@ -56848,7 +56326,7 @@ static uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(2733), 1, anon_sym___attribute__, - STATE(866), 2, + STATE(856), 2, sym_attribute_specifier, aux_sym_function_declarator_repeat1, ACTIONS(2731), 7, @@ -56862,12 +56340,12 @@ static uint16_t ts_small_parse_table[] = { [28569] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2737), 1, + ACTIONS(2738), 1, anon_sym___attribute__, - STATE(865), 2, + STATE(856), 2, sym_attribute_specifier, aux_sym_function_declarator_repeat1, - ACTIONS(2735), 7, + ACTIONS(2736), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -56878,9 +56356,9 @@ static uint16_t ts_small_parse_table[] = { [28589] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2733), 1, + ACTIONS(2738), 1, anon_sym___attribute__, - STATE(865), 2, + STATE(857), 2, sym_attribute_specifier, aux_sym_function_declarator_repeat1, ACTIONS(2740), 7, @@ -56891,203 +56369,250 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_EQ, - [28609] = 6, + [28609] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2717), 1, - anon_sym_LPAREN2, - ACTIONS(2719), 1, - anon_sym_STAR, + ACTIONS(370), 1, + anon_sym_LBRACE, ACTIONS(2742), 1, - sym_identifier, - STATE(999), 1, - sym_init_declarator, - STATE(902), 5, - sym__declarator, - sym_parenthesized_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - [28632] = 6, + anon_sym_COMMA, + ACTIONS(2744), 1, + anon_sym_LPAREN2, + ACTIONS(2746), 1, + anon_sym_SEMI, + ACTIONS(2748), 1, + anon_sym_LBRACK, + ACTIONS(2750), 1, + anon_sym_EQ, + STATE(345), 1, + sym_compound_statement, + STATE(858), 1, + sym_parameter_list, + STATE(980), 1, + aux_sym_declaration_repeat1, + [28640] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2717), 1, + ACTIONS(2711), 1, anon_sym_LPAREN2, - ACTIONS(2719), 1, + ACTIONS(2713), 1, anon_sym_STAR, - ACTIONS(2744), 1, + ACTIONS(2752), 1, sym_identifier, - STATE(1005), 1, + STATE(986), 1, sym_init_declarator, - STATE(909), 5, + STATE(902), 5, sym__declarator, sym_parenthesized_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [28655] = 2, + [28663] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2746), 9, + ACTIONS(109), 1, + anon_sym_LBRACE, + ACTIONS(2742), 1, anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2744), 1, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACE, + ACTIONS(2748), 1, anon_sym_LBRACK, + ACTIONS(2750), 1, anon_sym_EQ, - anon_sym_COLON, - [28670] = 6, + ACTIONS(2754), 1, + anon_sym_SEMI, + STATE(180), 1, + sym_compound_statement, + STATE(858), 1, + sym_parameter_list, + STATE(1023), 1, + aux_sym_declaration_repeat1, + [28694] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2717), 1, + ACTIONS(2711), 1, anon_sym_LPAREN2, - ACTIONS(2719), 1, + ACTIONS(2713), 1, anon_sym_STAR, - ACTIONS(2748), 1, + ACTIONS(2756), 1, sym_identifier, - STATE(1022), 1, + STATE(1073), 1, sym_init_declarator, - STATE(876), 5, + STATE(914), 5, sym__declarator, sym_parenthesized_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [28693] = 10, + [28717] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(450), 1, - anon_sym_LBRACE, - ACTIONS(2750), 1, - anon_sym_COMMA, - ACTIONS(2752), 1, - anon_sym_LPAREN2, - ACTIONS(2754), 1, - anon_sym_SEMI, - ACTIONS(2756), 1, - anon_sym_LBRACK, ACTIONS(2758), 1, - anon_sym_EQ, - STATE(307), 1, - sym_compound_statement, - STATE(864), 1, - sym_parameter_list, - STATE(1003), 1, - aux_sym_declaration_repeat1, - [28724] = 6, + sym_identifier, + ACTIONS(2762), 1, + sym_system_lib_string, + STATE(1165), 2, + sym_preproc_call_expression, + sym_string_literal, + ACTIONS(2760), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [28738] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2717), 1, + ACTIONS(2711), 1, anon_sym_LPAREN2, - ACTIONS(2719), 1, + ACTIONS(2713), 1, anon_sym_STAR, - ACTIONS(2760), 1, + ACTIONS(2764), 1, sym_identifier, - STATE(999), 1, + STATE(1002), 1, sym_init_declarator, - STATE(881), 5, + STATE(867), 5, sym__declarator, sym_parenthesized_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [28747] = 6, + [28761] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2717), 1, + ACTIONS(2711), 1, anon_sym_LPAREN2, - ACTIONS(2719), 1, + ACTIONS(2713), 1, anon_sym_STAR, - ACTIONS(2762), 1, + ACTIONS(2766), 1, sym_identifier, - STATE(997), 1, + STATE(1006), 1, sym_init_declarator, - STATE(915), 5, + STATE(868), 5, sym__declarator, sym_parenthesized_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [28770] = 6, + [28784] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2717), 1, + ACTIONS(2711), 1, anon_sym_LPAREN2, - ACTIONS(2719), 1, + ACTIONS(2713), 1, anon_sym_STAR, - ACTIONS(2764), 1, + ACTIONS(2768), 1, sym_identifier, - STATE(1005), 1, + STATE(1020), 1, sym_init_declarator, - STATE(880), 5, + STATE(861), 5, sym__declarator, sym_parenthesized_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [28793] = 2, + [28807] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2766), 9, + ACTIONS(35), 1, + anon_sym_LBRACE, + ACTIONS(2742), 1, anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2744), 1, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACE, + ACTIONS(2748), 1, anon_sym_LBRACK, + ACTIONS(2750), 1, anon_sym_EQ, - anon_sym_COLON, - [28808] = 10, + ACTIONS(2770), 1, + anon_sym_SEMI, + STATE(331), 1, + sym_compound_statement, + STATE(858), 1, + sym_parameter_list, + STATE(1019), 1, + aux_sym_declaration_repeat1, + [28838] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(109), 1, + ACTIONS(310), 1, anon_sym_LBRACE, - ACTIONS(2750), 1, + ACTIONS(2742), 1, anon_sym_COMMA, - ACTIONS(2752), 1, + ACTIONS(2744), 1, anon_sym_LPAREN2, - ACTIONS(2756), 1, + ACTIONS(2748), 1, anon_sym_LBRACK, - ACTIONS(2758), 1, + ACTIONS(2750), 1, anon_sym_EQ, - ACTIONS(2768), 1, + ACTIONS(2772), 1, anon_sym_SEMI, - STATE(178), 1, + STATE(344), 1, sym_compound_statement, - STATE(864), 1, + STATE(858), 1, sym_parameter_list, - STATE(1032), 1, + STATE(1000), 1, aux_sym_declaration_repeat1, - [28839] = 6, + [28869] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2717), 1, + ACTIONS(2774), 1, + sym_identifier, + ACTIONS(2776), 1, + sym_system_lib_string, + STATE(1204), 2, + sym_preproc_call_expression, + sym_string_literal, + ACTIONS(2760), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [28890] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2711), 1, anon_sym_LPAREN2, - ACTIONS(2719), 1, + ACTIONS(2713), 1, anon_sym_STAR, - ACTIONS(2770), 1, + ACTIONS(2778), 1, sym_identifier, - STATE(997), 1, + STATE(1020), 1, sym_init_declarator, - STATE(871), 5, + STATE(898), 5, sym__declarator, sym_parenthesized_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [28862] = 6, + [28913] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2717), 1, + ACTIONS(2780), 1, + sym_identifier, + ACTIONS(2782), 1, + sym_system_lib_string, + STATE(1093), 2, + sym_preproc_call_expression, + sym_string_literal, + ACTIONS(2760), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [28934] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2711), 1, anon_sym_LPAREN2, - ACTIONS(2719), 1, + ACTIONS(2713), 1, anon_sym_STAR, - ACTIONS(2772), 1, + ACTIONS(2784), 1, sym_identifier, - STATE(1022), 1, + STATE(1002), 1, sym_init_declarator, STATE(905), 5, sym__declarator, @@ -57095,10 +56620,43 @@ static uint16_t ts_small_parse_table[] = { sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [28885] = 2, + [28957] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2711), 1, + anon_sym_LPAREN2, + ACTIONS(2713), 1, + anon_sym_STAR, + ACTIONS(2786), 1, + sym_identifier, + STATE(986), 1, + sym_init_declarator, + STATE(859), 5, + sym__declarator, + sym_parenthesized_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + [28980] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2788), 1, + sym_identifier, + ACTIONS(2790), 1, + sym_system_lib_string, + STATE(1217), 2, + sym_preproc_call_expression, + sym_string_literal, + ACTIONS(2760), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [29001] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2774), 9, + ACTIONS(2792), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -57108,381 +56666,377 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_EQ, anon_sym_COLON, - [28900] = 10, + [29016] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(310), 1, - anon_sym_LBRACE, - ACTIONS(2750), 1, + ACTIONS(2794), 9, anon_sym_COMMA, - ACTIONS(2752), 1, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(2756), 1, - anon_sym_LBRACK, - ACTIONS(2758), 1, - anon_sym_EQ, - ACTIONS(2776), 1, anon_sym_SEMI, - STATE(341), 1, - sym_compound_statement, - STATE(864), 1, - sym_parameter_list, - STATE(1000), 1, - aux_sym_declaration_repeat1, - [28931] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(35), 1, + anon_sym___attribute__, anon_sym_LBRACE, - ACTIONS(2750), 1, - anon_sym_COMMA, - ACTIONS(2752), 1, - anon_sym_LPAREN2, - ACTIONS(2756), 1, anon_sym_LBRACK, - ACTIONS(2758), 1, anon_sym_EQ, - ACTIONS(2778), 1, - anon_sym_SEMI, - STATE(299), 1, - sym_compound_statement, - STATE(864), 1, - sym_parameter_list, - STATE(1004), 1, - aux_sym_declaration_repeat1, - [28962] = 6, + anon_sym_COLON, + [29031] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2717), 1, + ACTIONS(2711), 1, anon_sym_LPAREN2, - ACTIONS(2719), 1, + ACTIONS(2713), 1, anon_sym_STAR, - ACTIONS(2780), 1, + ACTIONS(2796), 1, sym_identifier, - STATE(1063), 1, + STATE(1006), 1, sym_init_declarator, - STATE(932), 5, + STATE(906), 5, sym__declarator, sym_parenthesized_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [28985] = 5, + [29054] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2752), 1, - anon_sym_LPAREN2, - ACTIONS(2756), 1, - anon_sym_LBRACK, - STATE(864), 1, - sym_parameter_list, - ACTIONS(2782), 5, + ACTIONS(2798), 9, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym___attribute__, anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_EQ, - [29005] = 5, + anon_sym_COLON, + [29069] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(2707), 1, anon_sym_LPAREN2, ACTIONS(2709), 1, anon_sym_STAR, - ACTIONS(2721), 1, - sym_identifier, - STATE(978), 5, - sym__field_declarator, - sym_parenthesized_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - [29025] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2713), 1, - anon_sym_LPAREN2, - ACTIONS(2715), 1, - anon_sym_STAR, - ACTIONS(2784), 1, - sym_identifier, - STATE(962), 5, - sym__type_declarator, - sym_parenthesized_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - [29045] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2713), 1, - anon_sym_LPAREN2, - ACTIONS(2715), 1, - anon_sym_STAR, - ACTIONS(2784), 1, - sym_identifier, - STATE(922), 5, - sym__type_declarator, - sym_parenthesized_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - [29065] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2717), 1, - anon_sym_LPAREN2, - ACTIONS(2719), 1, - anon_sym_STAR, - ACTIONS(2786), 1, - sym_identifier, - STATE(972), 5, - sym__declarator, - sym_parenthesized_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - [29085] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2713), 1, - anon_sym_LPAREN2, - ACTIONS(2715), 1, - anon_sym_STAR, - ACTIONS(2784), 1, - sym_identifier, - STATE(921), 5, - sym__type_declarator, - sym_parenthesized_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - [29105] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2713), 1, - anon_sym_LPAREN2, - ACTIONS(2715), 1, - anon_sym_STAR, - ACTIONS(2784), 1, + ACTIONS(2800), 1, sym_identifier, - STATE(944), 5, + STATE(908), 5, sym__type_declarator, sym_parenthesized_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [29125] = 9, + [29089] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2725), 1, - anon_sym_COLON, - ACTIONS(2752), 1, + ACTIONS(2744), 1, anon_sym_LPAREN2, - ACTIONS(2788), 1, - anon_sym_COMMA, - ACTIONS(2790), 1, - anon_sym_SEMI, - ACTIONS(2792), 1, + ACTIONS(2748), 1, anon_sym_LBRACK, - STATE(930), 1, + STATE(858), 1, sym_parameter_list, - STATE(942), 1, - aux_sym_field_declaration_repeat1, - STATE(1202), 1, - sym_bitfield_clause, - [29153] = 9, + ACTIONS(2802), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + [29109] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2707), 1, + anon_sym_LPAREN2, + ACTIONS(2709), 1, + anon_sym_STAR, + ACTIONS(2800), 1, + sym_identifier, + STATE(919), 5, + sym__type_declarator, + sym_parenthesized_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + [29129] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(2725), 1, anon_sym_COLON, - ACTIONS(2752), 1, + ACTIONS(2744), 1, anon_sym_LPAREN2, - ACTIONS(2788), 1, + ACTIONS(2804), 1, anon_sym_COMMA, - ACTIONS(2792), 1, - anon_sym_LBRACK, - ACTIONS(2794), 1, + ACTIONS(2806), 1, anon_sym_SEMI, - STATE(930), 1, + ACTIONS(2808), 1, + anon_sym_LBRACK, + STATE(911), 1, sym_parameter_list, - STATE(943), 1, + STATE(934), 1, aux_sym_field_declaration_repeat1, - STATE(1212), 1, + STATE(1138), 1, sym_bitfield_clause, - [29181] = 5, + [29157] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2713), 1, + ACTIONS(2707), 1, anon_sym_LPAREN2, - ACTIONS(2715), 1, + ACTIONS(2709), 1, anon_sym_STAR, - ACTIONS(2784), 1, + ACTIONS(2800), 1, sym_identifier, - STATE(920), 5, + STATE(952), 5, sym__type_declarator, sym_parenthesized_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [29201] = 5, + [29177] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2713), 1, + ACTIONS(2707), 1, anon_sym_LPAREN2, - ACTIONS(2715), 1, + ACTIONS(2709), 1, anon_sym_STAR, - ACTIONS(2784), 1, + ACTIONS(2800), 1, sym_identifier, - STATE(928), 5, + STATE(926), 5, sym__type_declarator, sym_parenthesized_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [29221] = 5, + [29197] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2713), 1, + ACTIONS(2707), 1, anon_sym_LPAREN2, - ACTIONS(2715), 1, + ACTIONS(2709), 1, anon_sym_STAR, - ACTIONS(2784), 1, + ACTIONS(2800), 1, sym_identifier, - STATE(929), 5, + STATE(938), 5, sym__type_declarator, sym_parenthesized_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [29241] = 5, + [29217] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2711), 1, + anon_sym_LPAREN2, + ACTIONS(2713), 1, + anon_sym_STAR, + ACTIONS(2810), 1, + sym_identifier, + STATE(951), 5, + sym__declarator, + sym_parenthesized_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + [29237] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(2707), 1, anon_sym_LPAREN2, ACTIONS(2709), 1, anon_sym_STAR, - ACTIONS(2721), 1, + ACTIONS(2800), 1, sym_identifier, - STATE(931), 5, - sym__field_declarator, - sym_parenthesized_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - [29261] = 5, + STATE(913), 5, + sym__type_declarator, + sym_parenthesized_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + [29257] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2713), 1, + ACTIONS(2707), 1, anon_sym_LPAREN2, - ACTIONS(2715), 1, + ACTIONS(2709), 1, anon_sym_STAR, - ACTIONS(2784), 1, + ACTIONS(2800), 1, sym_identifier, - STATE(923), 5, + STATE(925), 5, sym__type_declarator, sym_parenthesized_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [29281] = 5, + [29277] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2713), 1, + ACTIONS(2707), 1, anon_sym_LPAREN2, - ACTIONS(2715), 1, + ACTIONS(2709), 1, anon_sym_STAR, - ACTIONS(2784), 1, + ACTIONS(2800), 1, sym_identifier, - STATE(919), 5, + STATE(923), 5, sym__type_declarator, sym_parenthesized_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [29301] = 5, + [29297] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2752), 1, + ACTIONS(2717), 1, anon_sym_LPAREN2, - ACTIONS(2756), 1, - anon_sym_LBRACK, - STATE(864), 1, - sym_parameter_list, - ACTIONS(2796), 5, + ACTIONS(2719), 1, + anon_sym_STAR, + ACTIONS(2721), 1, + sym_identifier, + STATE(962), 5, + sym__field_declarator, + sym_parenthesized_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + [29317] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2717), 1, + anon_sym_LPAREN2, + ACTIONS(2719), 1, + anon_sym_STAR, + ACTIONS(2721), 1, + sym_identifier, + STATE(912), 5, + sym__field_declarator, + sym_parenthesized_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + [29337] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2725), 1, + anon_sym_COLON, + ACTIONS(2744), 1, + anon_sym_LPAREN2, + ACTIONS(2804), 1, anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2808), 1, + anon_sym_LBRACK, + ACTIONS(2812), 1, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - [29321] = 9, + STATE(911), 1, + sym_parameter_list, + STATE(932), 1, + aux_sym_field_declaration_repeat1, + STATE(1189), 1, + sym_bitfield_clause, + [29365] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(2725), 1, anon_sym_COLON, - ACTIONS(2752), 1, + ACTIONS(2744), 1, anon_sym_LPAREN2, - ACTIONS(2788), 1, + ACTIONS(2804), 1, anon_sym_COMMA, - ACTIONS(2792), 1, + ACTIONS(2808), 1, anon_sym_LBRACK, - ACTIONS(2798), 1, + ACTIONS(2814), 1, anon_sym_SEMI, - STATE(930), 1, + STATE(911), 1, sym_parameter_list, - STATE(948), 1, + STATE(930), 1, aux_sym_field_declaration_repeat1, - STATE(1107), 1, + STATE(1214), 1, sym_bitfield_clause, - [29349] = 5, + [29393] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2713), 1, + ACTIONS(2744), 1, anon_sym_LPAREN2, - ACTIONS(2715), 1, + ACTIONS(2748), 1, + anon_sym_LBRACK, + STATE(858), 1, + sym_parameter_list, + ACTIONS(2816), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + [29413] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2707), 1, + anon_sym_LPAREN2, + ACTIONS(2709), 1, anon_sym_STAR, - ACTIONS(2784), 1, + ACTIONS(2800), 1, sym_identifier, - STATE(934), 5, + STATE(924), 5, sym__type_declarator, sym_parenthesized_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [29369] = 4, + [29433] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2802), 1, - sym_system_lib_string, - STATE(302), 1, - sym_string_literal, - ACTIONS(2800), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [29386] = 8, + ACTIONS(2707), 1, + anon_sym_LPAREN2, + ACTIONS(2709), 1, + anon_sym_STAR, + ACTIONS(2800), 1, + sym_identifier, + STATE(921), 5, + sym__type_declarator, + sym_parenthesized_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + [29453] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2750), 1, + ACTIONS(2818), 7, anon_sym_COMMA, - ACTIONS(2752), 1, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(2756), 1, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_LBRACK, - ACTIONS(2758), 1, anon_sym_EQ, - ACTIONS(2778), 1, + [29466] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2742), 1, + anon_sym_COMMA, + ACTIONS(2744), 1, + anon_sym_LPAREN2, + ACTIONS(2748), 1, + anon_sym_LBRACK, + ACTIONS(2750), 1, + anon_sym_EQ, + ACTIONS(2754), 1, anon_sym_SEMI, - STATE(864), 1, + STATE(858), 1, sym_parameter_list, - STATE(1004), 1, + STATE(1023), 1, aux_sym_declaration_repeat1, - [29411] = 2, + [29491] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2744), 1, + anon_sym_LPAREN2, + ACTIONS(2808), 1, + anon_sym_LBRACK, + STATE(911), 1, + sym_parameter_list, + ACTIONS(2820), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_COLON, + [29510] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2804), 7, + ACTIONS(2822), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -57490,10 +57044,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_EQ, - [29424] = 2, + [29523] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2806), 7, + ACTIONS(2824), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -57501,40 +57055,27 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_EQ, - [29437] = 8, + [29536] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2750), 1, + ACTIONS(2742), 1, anon_sym_COMMA, - ACTIONS(2752), 1, + ACTIONS(2744), 1, anon_sym_LPAREN2, - ACTIONS(2756), 1, + ACTIONS(2746), 1, + anon_sym_SEMI, + ACTIONS(2748), 1, anon_sym_LBRACK, - ACTIONS(2758), 1, + ACTIONS(2750), 1, anon_sym_EQ, - ACTIONS(2768), 1, - anon_sym_SEMI, - STATE(864), 1, + STATE(858), 1, sym_parameter_list, - STATE(1032), 1, + STATE(980), 1, aux_sym_declaration_repeat1, - [29462] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2810), 1, - sym_system_lib_string, - STATE(187), 1, - sym_string_literal, - ACTIONS(2808), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [29479] = 2, + [29561] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2812), 7, + ACTIONS(2826), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -57542,10 +57083,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_EQ, - [29492] = 2, + [29574] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2814), 7, + ACTIONS(2828), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -57553,461 +57094,399 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_EQ, - [29505] = 8, + [29587] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2750), 1, + ACTIONS(2742), 1, anon_sym_COMMA, - ACTIONS(2752), 1, + ACTIONS(2744), 1, anon_sym_LPAREN2, - ACTIONS(2756), 1, + ACTIONS(2748), 1, anon_sym_LBRACK, - ACTIONS(2758), 1, + ACTIONS(2750), 1, anon_sym_EQ, - ACTIONS(2776), 1, + ACTIONS(2770), 1, anon_sym_SEMI, - STATE(864), 1, + STATE(858), 1, sym_parameter_list, - STATE(1000), 1, + STATE(1019), 1, aux_sym_declaration_repeat1, - [29530] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2752), 1, - anon_sym_LPAREN2, - ACTIONS(2792), 1, - anon_sym_LBRACK, - STATE(930), 1, - sym_parameter_list, - ACTIONS(2816), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_COLON, - [29549] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2820), 1, - sym_system_lib_string, - STATE(295), 1, - sym_string_literal, - ACTIONS(2818), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [29566] = 2, + [29612] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2822), 7, + ACTIONS(2742), 1, anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2744), 1, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(2748), 1, anon_sym_LBRACK, + ACTIONS(2750), 1, anon_sym_EQ, - [29579] = 5, + ACTIONS(2772), 1, + anon_sym_SEMI, + STATE(858), 1, + sym_parameter_list, + STATE(1000), 1, + aux_sym_declaration_repeat1, + [29637] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2752), 1, + ACTIONS(2744), 1, anon_sym_LPAREN2, - ACTIONS(2792), 1, + ACTIONS(2808), 1, anon_sym_LBRACK, - STATE(930), 1, + STATE(911), 1, sym_parameter_list, - ACTIONS(2824), 4, + ACTIONS(2830), 4, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, anon_sym_COLON, - [29598] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2828), 1, - sym_system_lib_string, - STATE(304), 1, - sym_string_literal, - ACTIONS(2826), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [29615] = 8, + [29656] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2750), 1, - anon_sym_COMMA, - ACTIONS(2752), 1, + ACTIONS(2744), 1, anon_sym_LPAREN2, - ACTIONS(2754), 1, + ACTIONS(2832), 1, + anon_sym_COMMA, + ACTIONS(2834), 1, anon_sym_SEMI, - ACTIONS(2756), 1, + ACTIONS(2836), 1, anon_sym_LBRACK, - ACTIONS(2758), 1, - anon_sym_EQ, - STATE(864), 1, + STATE(939), 1, sym_parameter_list, STATE(1003), 1, - aux_sym_declaration_repeat1, - [29640] = 2, + aux_sym_type_definition_repeat2, + [29678] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2830), 6, + ACTIONS(2838), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_COLON, - [29652] = 2, + [29690] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2832), 6, + ACTIONS(2840), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_COLON, - [29664] = 2, + [29702] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2834), 6, + ACTIONS(2842), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_COLON, - [29676] = 7, + [29714] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2752), 1, + ACTIONS(2744), 1, anon_sym_LPAREN2, - ACTIONS(2836), 1, - anon_sym_COMMA, - ACTIONS(2838), 1, - anon_sym_SEMI, - ACTIONS(2840), 1, + ACTIONS(2808), 1, anon_sym_LBRACK, - STATE(950), 1, + STATE(911), 1, sym_parameter_list, - STATE(994), 1, - aux_sym_type_definition_repeat2, - [29698] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2752), 1, - anon_sym_LPAREN2, - ACTIONS(2836), 1, + ACTIONS(2844), 3, anon_sym_COMMA, - ACTIONS(2840), 1, - anon_sym_LBRACK, - ACTIONS(2842), 1, anon_sym_SEMI, - STATE(950), 1, - sym_parameter_list, - STATE(1024), 1, - aux_sym_type_definition_repeat2, - [29720] = 7, + anon_sym_COLON, + [29732] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2752), 1, + ACTIONS(2744), 1, anon_sym_LPAREN2, - ACTIONS(2836), 1, + ACTIONS(2832), 1, anon_sym_COMMA, - ACTIONS(2840), 1, - anon_sym_LBRACK, - ACTIONS(2844), 1, - anon_sym_SEMI, - STATE(950), 1, - sym_parameter_list, - STATE(1018), 1, - aux_sym_type_definition_repeat2, - [29742] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2752), 1, - anon_sym_LPAREN2, ACTIONS(2836), 1, - anon_sym_COMMA, - ACTIONS(2840), 1, anon_sym_LBRACK, ACTIONS(2846), 1, anon_sym_SEMI, - STATE(950), 1, + STATE(939), 1, sym_parameter_list, - STATE(1009), 1, + STATE(985), 1, aux_sym_type_definition_repeat2, - [29764] = 7, + [29754] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2752), 1, + ACTIONS(2744), 1, anon_sym_LPAREN2, - ACTIONS(2836), 1, - anon_sym_COMMA, - ACTIONS(2840), 1, + ACTIONS(2748), 1, anon_sym_LBRACK, - ACTIONS(2848), 1, - anon_sym_SEMI, - STATE(950), 1, + ACTIONS(2750), 1, + anon_sym_EQ, + STATE(858), 1, sym_parameter_list, - STATE(1033), 1, - aux_sym_type_definition_repeat2, - [29786] = 5, + ACTIONS(2848), 2, + anon_sym_COMMA, + anon_sym_SEMI, + [29774] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2752), 1, + ACTIONS(2744), 1, anon_sym_LPAREN2, - ACTIONS(2840), 1, + ACTIONS(2836), 1, anon_sym_LBRACK, - STATE(950), 1, + STATE(939), 1, sym_parameter_list, ACTIONS(2850), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, - [29804] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2852), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_COLON, - [29816] = 2, + [29792] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2854), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, + ACTIONS(2852), 1, anon_sym_LBRACK, - anon_sym_COLON, - [29828] = 2, + ACTIONS(2855), 1, + anon_sym_EQ, + ACTIONS(2857), 1, + anon_sym_DOT, + STATE(916), 3, + sym_subscript_designator, + sym_field_designator, + aux_sym_initializer_pair_repeat1, + [29810] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2856), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, + ACTIONS(1194), 1, anon_sym_LBRACK, - anon_sym_COLON, - [29840] = 7, + ACTIONS(2860), 1, + anon_sym_EQ, + ACTIONS(2862), 1, + anon_sym_DOT, + STATE(916), 3, + sym_subscript_designator, + sym_field_designator, + aux_sym_initializer_pair_repeat1, + [29828] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2752), 1, + ACTIONS(2744), 1, anon_sym_LPAREN2, ACTIONS(2836), 1, - anon_sym_COMMA, - ACTIONS(2840), 1, anon_sym_LBRACK, - ACTIONS(2858), 1, - anon_sym_SEMI, - STATE(950), 1, + STATE(939), 1, sym_parameter_list, - STATE(995), 1, - aux_sym_type_definition_repeat2, - [29862] = 7, + ACTIONS(2864), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + [29846] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2752), 1, + ACTIONS(2744), 1, anon_sym_LPAREN2, - ACTIONS(2836), 1, + ACTIONS(2832), 1, anon_sym_COMMA, - ACTIONS(2840), 1, + ACTIONS(2836), 1, anon_sym_LBRACK, - ACTIONS(2860), 1, + ACTIONS(2866), 1, anon_sym_SEMI, - STATE(950), 1, + STATE(939), 1, sym_parameter_list, STATE(996), 1, aux_sym_type_definition_repeat2, - [29884] = 2, + [29868] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2862), 6, + ACTIONS(2868), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_COLON, - [29896] = 5, + [29880] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2752), 1, + ACTIONS(2744), 1, anon_sym_LPAREN2, - ACTIONS(2792), 1, + ACTIONS(2832), 1, + anon_sym_COMMA, + ACTIONS(2836), 1, anon_sym_LBRACK, - STATE(930), 1, + ACTIONS(2870), 1, + anon_sym_SEMI, + STATE(939), 1, sym_parameter_list, - ACTIONS(2864), 3, + STATE(1013), 1, + aux_sym_type_definition_repeat2, + [29902] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2872), 6, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_COLON, - [29914] = 6, + [29914] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2752), 1, + ACTIONS(2744), 1, anon_sym_LPAREN2, - ACTIONS(2756), 1, - anon_sym_LBRACK, - ACTIONS(2758), 1, - anon_sym_EQ, - STATE(864), 1, - sym_parameter_list, - ACTIONS(2866), 2, + ACTIONS(2832), 1, anon_sym_COMMA, + ACTIONS(2836), 1, + anon_sym_LBRACK, + ACTIONS(2874), 1, anon_sym_SEMI, - [29934] = 5, + STATE(939), 1, + sym_parameter_list, + STATE(1014), 1, + aux_sym_type_definition_repeat2, + [29936] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2752), 1, + ACTIONS(2744), 1, anon_sym_LPAREN2, - ACTIONS(2840), 1, - anon_sym_LBRACK, - STATE(950), 1, - sym_parameter_list, - ACTIONS(2868), 3, + ACTIONS(2832), 1, anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2836), 1, + anon_sym_LBRACK, + ACTIONS(2876), 1, anon_sym_SEMI, - [29952] = 7, + STATE(939), 1, + sym_parameter_list, + STATE(1022), 1, + aux_sym_type_definition_repeat2, + [29958] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2752), 1, + ACTIONS(2744), 1, anon_sym_LPAREN2, - ACTIONS(2836), 1, + ACTIONS(2832), 1, anon_sym_COMMA, - ACTIONS(2840), 1, + ACTIONS(2836), 1, anon_sym_LBRACK, - ACTIONS(2870), 1, + ACTIONS(2878), 1, anon_sym_SEMI, - STATE(950), 1, + STATE(939), 1, sym_parameter_list, - STATE(1002), 1, + STATE(987), 1, aux_sym_type_definition_repeat2, - [29974] = 5, + [29980] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2872), 1, + ACTIONS(2744), 1, + anon_sym_LPAREN2, + ACTIONS(2832), 1, + anon_sym_COMMA, + ACTIONS(2836), 1, anon_sym_LBRACK, - ACTIONS(2875), 1, - anon_sym_EQ, - ACTIONS(2877), 1, - anon_sym_DOT, - STATE(935), 3, - sym_subscript_designator, - sym_field_designator, - aux_sym_initializer_pair_repeat1, - [29992] = 5, + ACTIONS(2880), 1, + anon_sym_SEMI, + STATE(939), 1, + sym_parameter_list, + STATE(981), 1, + aux_sym_type_definition_repeat2, + [30002] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1202), 1, + ACTIONS(2882), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(2880), 1, - anon_sym_EQ, - ACTIONS(2882), 1, - anon_sym_DOT, - STATE(935), 3, - sym_subscript_designator, - sym_field_designator, - aux_sym_initializer_pair_repeat1, - [30010] = 2, + anon_sym_COLON, + [30014] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2884), 5, + ACTIONS(2884), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK, - [30021] = 5, + anon_sym_COLON, + [30026] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2752), 1, + ACTIONS(2744), 1, anon_sym_LPAREN2, - ACTIONS(2756), 1, + ACTIONS(2748), 1, anon_sym_LBRACK, - STATE(864), 1, + STATE(858), 1, sym_parameter_list, ACTIONS(2886), 2, anon_sym_COMMA, anon_sym_RPAREN, - [30038] = 2, + [30043] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2888), 5, + ACTIONS(2725), 1, + anon_sym_COLON, + ACTIONS(2804), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + ACTIONS(2888), 1, anon_sym_SEMI, - anon_sym_LBRACK, - [30049] = 2, + STATE(955), 1, + aux_sym_field_declaration_repeat1, + STATE(1167), 1, + sym_bitfield_clause, + [30062] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2890), 5, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2744), 1, anon_sym_LPAREN2, - anon_sym_SEMI, + ACTIONS(2892), 1, anon_sym_LBRACK, - [30060] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2892), 5, + STATE(945), 1, + sym_parameter_list, + ACTIONS(2890), 2, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK, - [30071] = 6, + [30079] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(2725), 1, anon_sym_COLON, - ACTIONS(2788), 1, + ACTIONS(2804), 1, anon_sym_COMMA, ACTIONS(2894), 1, anon_sym_SEMI, - STATE(988), 1, + STATE(955), 1, aux_sym_field_declaration_repeat1, - STATE(1220), 1, + STATE(1158), 1, sym_bitfield_clause, - [30090] = 6, + [30098] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2744), 1, + anon_sym_LPAREN2, + ACTIONS(2892), 1, + anon_sym_LBRACK, + STATE(945), 1, + sym_parameter_list, + ACTIONS(2896), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [30115] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(2725), 1, anon_sym_COLON, - ACTIONS(2788), 1, + ACTIONS(2804), 1, anon_sym_COMMA, - ACTIONS(2896), 1, + ACTIONS(2898), 1, anon_sym_SEMI, - STATE(988), 1, + STATE(955), 1, aux_sym_field_declaration_repeat1, - STATE(1183), 1, + STATE(1110), 1, sym_bitfield_clause, - [30109] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2752), 1, - anon_sym_LPAREN2, - ACTIONS(2840), 1, - anon_sym_LBRACK, - STATE(950), 1, - sym_parameter_list, - ACTIONS(2898), 2, - anon_sym_COMMA, - anon_sym_SEMI, - [30126] = 2, + [30134] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2900), 5, @@ -58016,56 +57495,58 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK, - [30137] = 5, + [30145] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2752), 1, + ACTIONS(2744), 1, anon_sym_LPAREN2, - ACTIONS(2904), 1, + ACTIONS(2892), 1, anon_sym_LBRACK, - STATE(975), 1, + STATE(945), 1, sym_parameter_list, - ACTIONS(2902), 2, + ACTIONS(2886), 2, anon_sym_COMMA, anon_sym_RPAREN, - [30154] = 5, + [30162] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2752), 1, - anon_sym_LPAREN2, - ACTIONS(2904), 1, - anon_sym_LBRACK, - STATE(975), 1, - sym_parameter_list, - ACTIONS(2886), 2, + ACTIONS(2902), 5, anon_sym_COMMA, anon_sym_RPAREN, - [30171] = 6, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK, + [30173] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2725), 1, - anon_sym_COLON, - ACTIONS(2788), 1, + ACTIONS(2744), 1, + anon_sym_LPAREN2, + ACTIONS(2836), 1, + anon_sym_LBRACK, + STATE(939), 1, + sym_parameter_list, + ACTIONS(2904), 2, anon_sym_COMMA, - ACTIONS(2906), 1, anon_sym_SEMI, - STATE(988), 1, - aux_sym_field_declaration_repeat1, - STATE(1090), 1, - sym_bitfield_clause, - [30190] = 5, + [30190] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2752), 1, + ACTIONS(2906), 5, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(2904), 1, + anon_sym_SEMI, anon_sym_LBRACK, - STATE(975), 1, - sym_parameter_list, - ACTIONS(2908), 2, + [30201] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2908), 5, anon_sym_COMMA, anon_sym_RPAREN, - [30207] = 2, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK, + [30212] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2910), 5, @@ -58074,7 +57555,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK, - [30218] = 2, + [30223] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2912), 5, @@ -58083,2891 +57564,2904 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK, - [30229] = 5, - ACTIONS(2428), 1, + [30234] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(2914), 1, - anon_sym_LF, - ACTIONS(2916), 1, - anon_sym_LPAREN, - ACTIONS(2918), 1, - sym_preproc_arg, - STATE(1081), 1, - sym_preproc_params, + ACTIONS(2914), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK, [30245] = 5, - ACTIONS(2428), 1, + ACTIONS(3), 1, sym_comment, + ACTIONS(2916), 1, + sym_identifier, + ACTIONS(2918), 1, + anon_sym_COMMA, ACTIONS(2920), 1, - anon_sym_DQUOTE, - ACTIONS(2922), 1, - aux_sym_string_literal_token1, - ACTIONS(2924), 1, - sym_escape_sequence, - STATE(979), 1, - aux_sym_string_literal_repeat1, - [30261] = 5, - ACTIONS(2428), 1, - sym_comment, - ACTIONS(2926), 1, - anon_sym_DQUOTE, - ACTIONS(2928), 1, - aux_sym_string_literal_token1, - ACTIONS(2930), 1, - sym_escape_sequence, - STATE(960), 1, - aux_sym_string_literal_repeat1, - [30277] = 5, + anon_sym_RBRACE, + STATE(995), 1, + sym_enumerator, + [30261] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2752), 1, + ACTIONS(2922), 4, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(2904), 1, anon_sym_LBRACK, - ACTIONS(2932), 1, - anon_sym_RPAREN, - STATE(975), 1, - sym_parameter_list, - [30293] = 5, - ACTIONS(2428), 1, - sym_comment, - ACTIONS(2934), 1, - anon_sym_DQUOTE, - ACTIONS(2936), 1, - aux_sym_string_literal_token1, - ACTIONS(2938), 1, - sym_escape_sequence, - STATE(976), 1, - aux_sym_string_literal_repeat1, - [30309] = 5, + [30271] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2752), 1, + ACTIONS(2744), 1, anon_sym_LPAREN2, - ACTIONS(2904), 1, + ACTIONS(2892), 1, anon_sym_LBRACK, - ACTIONS(2940), 1, + ACTIONS(2924), 1, anon_sym_RPAREN, - STATE(975), 1, + STATE(945), 1, sym_parameter_list, - [30325] = 5, - ACTIONS(2428), 1, + [30287] = 5, + ACTIONS(2430), 1, sym_comment, - ACTIONS(2916), 1, - anon_sym_LPAREN, - ACTIONS(2942), 1, + ACTIONS(2926), 1, anon_sym_LF, - ACTIONS(2944), 1, + ACTIONS(2928), 1, + anon_sym_LPAREN, + ACTIONS(2930), 1, sym_preproc_arg, - STATE(1048), 1, + STATE(1063), 1, sym_preproc_params, - [30341] = 5, - ACTIONS(2428), 1, + [30303] = 5, + ACTIONS(2430), 1, sym_comment, - ACTIONS(2946), 1, + ACTIONS(2932), 1, anon_sym_DQUOTE, - ACTIONS(2948), 1, - aux_sym_string_literal_token1, - ACTIONS(2950), 1, - sym_escape_sequence, - STATE(956), 1, - aux_sym_string_literal_repeat1, - [30357] = 5, - ACTIONS(2428), 1, - sym_comment, - ACTIONS(2936), 1, + ACTIONS(2934), 1, aux_sym_string_literal_token1, - ACTIONS(2938), 1, - sym_escape_sequence, - ACTIONS(2952), 1, - anon_sym_DQUOTE, - STATE(976), 1, - aux_sym_string_literal_repeat1, - [30373] = 5, - ACTIONS(2428), 1, - sym_comment, ACTIONS(2936), 1, - aux_sym_string_literal_token1, - ACTIONS(2938), 1, sym_escape_sequence, - ACTIONS(2954), 1, - anon_sym_DQUOTE, - STATE(976), 1, + STATE(964), 1, aux_sym_string_literal_repeat1, - [30389] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2752), 1, - anon_sym_LPAREN2, - ACTIONS(2840), 1, - anon_sym_LBRACK, - ACTIONS(2956), 1, - anon_sym_RPAREN, - STATE(950), 1, - sym_parameter_list, - [30405] = 5, - ACTIONS(2428), 1, + [30319] = 5, + ACTIONS(2430), 1, sym_comment, - ACTIONS(2916), 1, + ACTIONS(2928), 1, anon_sym_LPAREN, - ACTIONS(2958), 1, + ACTIONS(2938), 1, anon_sym_LF, - ACTIONS(2960), 1, + ACTIONS(2940), 1, sym_preproc_arg, - STATE(1038), 1, + STATE(1065), 1, sym_preproc_params, - [30421] = 5, - ACTIONS(2428), 1, - sym_comment, - ACTIONS(2936), 1, - aux_sym_string_literal_token1, - ACTIONS(2938), 1, - sym_escape_sequence, - ACTIONS(2962), 1, - anon_sym_DQUOTE, - STATE(976), 1, - aux_sym_string_literal_repeat1, - [30437] = 2, + [30335] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2964), 4, + ACTIONS(2942), 4, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, - [30447] = 5, + [30345] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2752), 1, + ACTIONS(2744), 1, + anon_sym_LPAREN2, + ACTIONS(2748), 1, + anon_sym_LBRACK, + ACTIONS(2944), 1, + anon_sym_RPAREN, + STATE(858), 1, + sym_parameter_list, + [30361] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2744), 1, anon_sym_LPAREN2, - ACTIONS(2904), 1, + ACTIONS(2836), 1, anon_sym_LBRACK, - ACTIONS(2966), 1, + ACTIONS(2946), 1, anon_sym_RPAREN, - STATE(975), 1, + STATE(939), 1, sym_parameter_list, - [30463] = 2, + [30377] = 5, + ACTIONS(2430), 1, + sym_comment, + ACTIONS(2928), 1, + anon_sym_LPAREN, + ACTIONS(2948), 1, + anon_sym_LF, + ACTIONS(2950), 1, + sym_preproc_arg, + STATE(1070), 1, + sym_preproc_params, + [30393] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2968), 4, + ACTIONS(2952), 4, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, - [30473] = 2, + [30403] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2970), 4, + ACTIONS(2954), 1, anon_sym_COMMA, - anon_sym_RPAREN, + STATE(955), 1, + aux_sym_field_declaration_repeat1, + ACTIONS(2957), 2, + anon_sym_SEMI, + anon_sym_COLON, + [30417] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2744), 1, anon_sym_LPAREN2, + ACTIONS(2892), 1, anon_sym_LBRACK, - [30483] = 2, + ACTIONS(2959), 1, + anon_sym_RPAREN, + STATE(945), 1, + sym_parameter_list, + [30433] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2972), 4, + ACTIONS(2961), 4, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, - [30493] = 5, + [30443] = 5, + ACTIONS(2430), 1, + sym_comment, + ACTIONS(2963), 1, + anon_sym_DQUOTE, + ACTIONS(2965), 1, + aux_sym_string_literal_token1, + ACTIONS(2967), 1, + sym_escape_sequence, + STATE(970), 1, + aux_sym_string_literal_repeat1, + [30459] = 5, + ACTIONS(2430), 1, + sym_comment, + ACTIONS(2928), 1, + anon_sym_LPAREN, + ACTIONS(2969), 1, + anon_sym_LF, + ACTIONS(2971), 1, + sym_preproc_arg, + STATE(1056), 1, + sym_preproc_params, + [30475] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2752), 1, + ACTIONS(2744), 1, anon_sym_LPAREN2, - ACTIONS(2904), 1, + ACTIONS(2892), 1, anon_sym_LBRACK, - ACTIONS(2974), 1, + ACTIONS(2973), 1, anon_sym_RPAREN, - STATE(975), 1, + STATE(945), 1, sym_parameter_list, - [30509] = 5, - ACTIONS(2428), 1, + [30491] = 5, + ACTIONS(2430), 1, sym_comment, - ACTIONS(2916), 1, + ACTIONS(2928), 1, anon_sym_LPAREN, - ACTIONS(2976), 1, + ACTIONS(2975), 1, anon_sym_LF, - ACTIONS(2978), 1, + ACTIONS(2977), 1, sym_preproc_arg, - STATE(1086), 1, + STATE(1061), 1, sym_preproc_params, - [30525] = 5, + [30507] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2752), 1, + ACTIONS(2744), 1, anon_sym_LPAREN2, - ACTIONS(2756), 1, + ACTIONS(2808), 1, anon_sym_LBRACK, - ACTIONS(2980), 1, + ACTIONS(2979), 1, anon_sym_RPAREN, - STATE(864), 1, + STATE(911), 1, sym_parameter_list, - [30541] = 2, + [30523] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2982), 4, + ACTIONS(2981), 4, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, - [30551] = 5, - ACTIONS(2428), 1, + [30533] = 5, + ACTIONS(2430), 1, sym_comment, - ACTIONS(2916), 1, - anon_sym_LPAREN, - ACTIONS(2984), 1, - anon_sym_LF, - ACTIONS(2986), 1, - sym_preproc_arg, - STATE(1076), 1, - sym_preproc_params, - [30567] = 2, + ACTIONS(2983), 1, + anon_sym_DQUOTE, + ACTIONS(2985), 1, + aux_sym_string_literal_token1, + ACTIONS(2987), 1, + sym_escape_sequence, + STATE(974), 1, + aux_sym_string_literal_repeat1, + [30549] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2988), 4, + ACTIONS(2989), 4, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, - [30577] = 5, - ACTIONS(2428), 1, + [30559] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(2990), 1, - anon_sym_DQUOTE, - ACTIONS(2992), 1, - aux_sym_string_literal_token1, - ACTIONS(2995), 1, - sym_escape_sequence, - STATE(976), 1, - aux_sym_string_literal_repeat1, - [30593] = 5, - ACTIONS(2428), 1, + ACTIONS(2991), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACK, + [30569] = 5, + ACTIONS(2430), 1, sym_comment, - ACTIONS(2998), 1, - anon_sym_DQUOTE, - ACTIONS(3000), 1, - aux_sym_string_literal_token1, - ACTIONS(3002), 1, - sym_escape_sequence, - STATE(964), 1, - aux_sym_string_literal_repeat1, - [30609] = 5, + ACTIONS(2928), 1, + anon_sym_LPAREN, + ACTIONS(2993), 1, + anon_sym_LF, + ACTIONS(2995), 1, + sym_preproc_arg, + STATE(1036), 1, + sym_preproc_params, + [30585] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2752), 1, + ACTIONS(2744), 1, anon_sym_LPAREN2, - ACTIONS(2792), 1, + ACTIONS(2892), 1, anon_sym_LBRACK, - ACTIONS(3004), 1, + ACTIONS(2997), 1, anon_sym_RPAREN, - STATE(930), 1, + STATE(945), 1, sym_parameter_list, - [30625] = 5, - ACTIONS(2428), 1, + [30601] = 5, + ACTIONS(2430), 1, sym_comment, - ACTIONS(2936), 1, + ACTIONS(2985), 1, aux_sym_string_literal_token1, - ACTIONS(2938), 1, + ACTIONS(2987), 1, sym_escape_sequence, - ACTIONS(3006), 1, + ACTIONS(2999), 1, anon_sym_DQUOTE, - STATE(976), 1, + STATE(974), 1, aux_sym_string_literal_repeat1, - [30641] = 5, - ACTIONS(2428), 1, + [30617] = 5, + ACTIONS(2430), 1, sym_comment, - ACTIONS(2936), 1, + ACTIONS(2985), 1, aux_sym_string_literal_token1, - ACTIONS(2938), 1, + ACTIONS(2987), 1, sym_escape_sequence, - ACTIONS(3008), 1, + ACTIONS(3001), 1, anon_sym_DQUOTE, - STATE(976), 1, + STATE(974), 1, aux_sym_string_literal_repeat1, - [30657] = 5, - ACTIONS(2428), 1, + [30633] = 5, + ACTIONS(2430), 1, sym_comment, - ACTIONS(2916), 1, - anon_sym_LPAREN, - ACTIONS(3010), 1, - anon_sym_LF, - ACTIONS(3012), 1, - sym_preproc_arg, - STATE(1085), 1, - sym_preproc_params, - [30673] = 5, - ACTIONS(2428), 1, + ACTIONS(3003), 1, + anon_sym_DQUOTE, + ACTIONS(3005), 1, + aux_sym_string_literal_token1, + ACTIONS(3007), 1, + sym_escape_sequence, + STATE(969), 1, + aux_sym_string_literal_repeat1, + [30649] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(2916), 1, - anon_sym_LPAREN, - ACTIONS(3014), 1, - anon_sym_LF, - ACTIONS(3016), 1, - sym_preproc_arg, - STATE(1072), 1, - sym_preproc_params, - [30689] = 2, + ACTIONS(2744), 1, + anon_sym_LPAREN2, + ACTIONS(2892), 1, + anon_sym_LBRACK, + ACTIONS(3009), 1, + anon_sym_RPAREN, + STATE(945), 1, + sym_parameter_list, + [30665] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3018), 4, + ACTIONS(3011), 4, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, - [30699] = 2, + [30675] = 5, + ACTIONS(2430), 1, + sym_comment, + ACTIONS(3013), 1, + anon_sym_DQUOTE, + ACTIONS(3015), 1, + aux_sym_string_literal_token1, + ACTIONS(3018), 1, + sym_escape_sequence, + STATE(974), 1, + aux_sym_string_literal_repeat1, + [30691] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3020), 4, + ACTIONS(3021), 4, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, - [30709] = 2, + [30701] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3022), 4, + ACTIONS(3023), 4, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, - [30719] = 2, + [30711] = 5, + ACTIONS(2430), 1, + sym_comment, + ACTIONS(2928), 1, + anon_sym_LPAREN, + ACTIONS(3025), 1, + anon_sym_LF, + ACTIONS(3027), 1, + sym_preproc_arg, + STATE(1075), 1, + sym_preproc_params, + [30727] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3024), 4, + ACTIONS(3029), 4, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, - [30729] = 5, + [30737] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2752), 1, - anon_sym_LPAREN2, - ACTIONS(2904), 1, - anon_sym_LBRACK, - ACTIONS(3026), 1, + ACTIONS(2394), 1, + anon_sym_COMMA, + ACTIONS(3031), 1, anon_sym_RPAREN, - STATE(975), 1, - sym_parameter_list, - [30745] = 4, + STATE(997), 1, + aux_sym_preproc_argument_list_repeat1, + [30750] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3028), 1, + ACTIONS(2742), 1, anon_sym_COMMA, - STATE(988), 1, - aux_sym_field_declaration_repeat1, - ACTIONS(3031), 2, + ACTIONS(3033), 1, anon_sym_SEMI, - anon_sym_COLON, - [30759] = 5, - ACTIONS(2428), 1, + STATE(1011), 1, + aux_sym_declaration_repeat1, + [30763] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(3033), 1, - anon_sym_DQUOTE, + ACTIONS(2832), 1, + anon_sym_COMMA, ACTIONS(3035), 1, - aux_sym_string_literal_token1, - ACTIONS(3037), 1, - sym_escape_sequence, - STATE(980), 1, - aux_sym_string_literal_repeat1, - [30775] = 5, - ACTIONS(2428), 1, + anon_sym_SEMI, + STATE(1009), 1, + aux_sym_type_definition_repeat2, + [30776] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(3039), 1, - anon_sym_DQUOTE, - ACTIONS(3041), 1, - aux_sym_string_literal_token1, - ACTIONS(3043), 1, - sym_escape_sequence, - STATE(961), 1, - aux_sym_string_literal_repeat1, - [30791] = 2, + ACTIONS(3037), 1, + anon_sym_COMMA, + ACTIONS(3040), 1, + anon_sym_RPAREN, + STATE(982), 1, + aux_sym_parameter_list_repeat1, + [30789] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3045), 4, + ACTIONS(3042), 1, anon_sym_COMMA, + ACTIONS(3044), 1, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_LBRACK, - [30801] = 5, + STATE(991), 1, + aux_sym_parameter_list_repeat1, + [30802] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3047), 1, + ACTIONS(2916), 1, sym_identifier, - ACTIONS(3049), 1, - anon_sym_COMMA, - ACTIONS(3051), 1, + ACTIONS(3046), 1, anon_sym_RBRACE, - STATE(1025), 1, + STATE(1038), 1, sym_enumerator, - [30817] = 4, + [30815] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3053), 1, + ACTIONS(2832), 1, anon_sym_COMMA, - ACTIONS(3055), 1, - anon_sym_RBRACE, - STATE(1020), 1, - aux_sym_enumerator_list_repeat1, - [30830] = 4, + ACTIONS(3048), 1, + anon_sym_SEMI, + STATE(1009), 1, + aux_sym_type_definition_repeat2, + [30828] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2836), 1, + ACTIONS(2742), 1, anon_sym_COMMA, - ACTIONS(3057), 1, + ACTIONS(2746), 1, anon_sym_SEMI, - STATE(1017), 1, - aux_sym_type_definition_repeat2, - [30843] = 4, + STATE(980), 1, + aux_sym_declaration_repeat1, + [30841] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2836), 1, + ACTIONS(2832), 1, anon_sym_COMMA, - ACTIONS(3059), 1, + ACTIONS(3050), 1, anon_sym_SEMI, - STATE(1017), 1, + STATE(1009), 1, aux_sym_type_definition_repeat2, - [30856] = 4, + [30854] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2836), 1, + ACTIONS(3052), 3, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_DOT, + [30863] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1202), 1, + anon_sym_RBRACE, + ACTIONS(3054), 1, anon_sym_COMMA, - ACTIONS(3061), 1, - anon_sym_SEMI, - STATE(1017), 1, - aux_sym_type_definition_repeat2, - [30869] = 4, + STATE(1015), 1, + aux_sym_initializer_list_repeat1, + [30876] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2750), 1, + ACTIONS(3056), 1, anon_sym_COMMA, - ACTIONS(2754), 1, - anon_sym_SEMI, - STATE(1003), 1, - aux_sym_declaration_repeat1, - [30882] = 4, + ACTIONS(3059), 1, + anon_sym_RPAREN, + STATE(990), 1, + aux_sym_preproc_params_repeat1, + [30889] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3063), 1, + ACTIONS(3042), 1, anon_sym_COMMA, - ACTIONS(3065), 1, + ACTIONS(3061), 1, anon_sym_RPAREN, - STATE(1015), 1, + STATE(982), 1, aux_sym_parameter_list_repeat1, - [30895] = 4, + [30902] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2750), 1, + ACTIONS(2114), 1, anon_sym_COMMA, - ACTIONS(2778), 1, - anon_sym_SEMI, - STATE(1004), 1, - aux_sym_declaration_repeat1, - [30908] = 4, + ACTIONS(2116), 1, + anon_sym_RBRACE, + STATE(989), 1, + aux_sym_initializer_list_repeat1, + [30915] = 4, + ACTIONS(2428), 1, + anon_sym_LPAREN2, + ACTIONS(2430), 1, + sym_comment, + ACTIONS(3063), 1, + anon_sym_LF, + STATE(789), 1, + sym_preproc_argument_list, + [30928] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2750), 1, - anon_sym_COMMA, ACTIONS(3067), 1, - anon_sym_SEMI, - STATE(1011), 1, - aux_sym_declaration_repeat1, - [30921] = 4, + anon_sym_EQ, + ACTIONS(3065), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [30939] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(3069), 1, anon_sym_COMMA, ACTIONS(3071), 1, - anon_sym_RPAREN, - STATE(1013), 1, - aux_sym_preproc_params_repeat1, - [30934] = 4, + anon_sym_RBRACE, + STATE(1010), 1, + aux_sym_enumerator_list_repeat1, + [30952] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2836), 1, + ACTIONS(2832), 1, anon_sym_COMMA, ACTIONS(3073), 1, anon_sym_SEMI, - STATE(1017), 1, + STATE(1009), 1, aux_sym_type_definition_repeat2, - [30947] = 4, + [30965] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2750), 1, - anon_sym_COMMA, + ACTIONS(2498), 1, + anon_sym_RPAREN, ACTIONS(3075), 1, - anon_sym_SEMI, - STATE(1011), 1, - aux_sym_declaration_repeat1, - [30960] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2750), 1, anon_sym_COMMA, - ACTIONS(3077), 1, - anon_sym_SEMI, - STATE(1011), 1, - aux_sym_declaration_repeat1, - [30973] = 4, + STATE(997), 1, + aux_sym_preproc_argument_list_repeat1, + [30978] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2750), 1, + ACTIONS(2202), 1, + anon_sym_RPAREN, + ACTIONS(3078), 1, anon_sym_COMMA, - ACTIONS(2776), 1, - anon_sym_SEMI, - STATE(1000), 1, - aux_sym_declaration_repeat1, - [30986] = 3, + STATE(998), 1, + aux_sym_argument_list_repeat1, + [30991] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3081), 1, + ACTIONS(3083), 1, anon_sym_RPAREN, - ACTIONS(3079), 2, + ACTIONS(3081), 2, anon_sym_DOT_DOT_DOT, sym_identifier, - [30997] = 4, + [31002] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2398), 1, + ACTIONS(2742), 1, anon_sym_COMMA, - ACTIONS(3083), 1, - anon_sym_RPAREN, - STATE(1026), 1, - aux_sym_preproc_argument_list_repeat1, - [31010] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2559), 1, - anon_sym_LBRACE, ACTIONS(3085), 1, - sym_identifier, - STATE(833), 1, - sym_enumerator_list, - [31023] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2836), 1, - anon_sym_COMMA, - ACTIONS(3087), 1, - anon_sym_SEMI, - STATE(1017), 1, - aux_sym_type_definition_repeat2, - [31036] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3047), 1, - sym_identifier, - ACTIONS(3055), 1, - anon_sym_RBRACE, - STATE(1054), 1, - sym_enumerator, - [31049] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3089), 1, - anon_sym_COMMA, - ACTIONS(3092), 1, anon_sym_SEMI, STATE(1011), 1, aux_sym_declaration_repeat1, - [31062] = 4, + [31015] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2114), 1, - anon_sym_COMMA, - ACTIONS(3094), 1, - anon_sym_RPAREN, - STATE(1021), 1, - aux_sym_argument_list_repeat1, - [31075] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3069), 1, + ACTIONS(3087), 1, anon_sym_COMMA, - ACTIONS(3096), 1, + ACTIONS(3089), 1, anon_sym_RPAREN, - STATE(1023), 1, + STATE(990), 1, aux_sym_preproc_params_repeat1, - [31088] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2398), 1, - anon_sym_COMMA, - ACTIONS(3098), 1, - anon_sym_RPAREN, - STATE(1026), 1, - aux_sym_preproc_argument_list_repeat1, - [31101] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3063), 1, - anon_sym_COMMA, - ACTIONS(3100), 1, - anon_sym_RPAREN, - STATE(1028), 1, - aux_sym_parameter_list_repeat1, - [31114] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2118), 1, - anon_sym_COMMA, - ACTIONS(2120), 1, - anon_sym_RBRACE, - STATE(1030), 1, - aux_sym_initializer_list_repeat1, - [31127] = 4, + [31028] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3102), 1, + ACTIONS(2742), 1, anon_sym_COMMA, - ACTIONS(3105), 1, + ACTIONS(2770), 1, anon_sym_SEMI, - STATE(1017), 1, - aux_sym_type_definition_repeat2, - [31140] = 4, + STATE(1019), 1, + aux_sym_declaration_repeat1, + [31041] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2836), 1, + ACTIONS(2832), 1, anon_sym_COMMA, - ACTIONS(3107), 1, + ACTIONS(3091), 1, anon_sym_SEMI, - STATE(1017), 1, + STATE(1009), 1, aux_sym_type_definition_repeat2, - [31153] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3047), 1, - sym_identifier, - ACTIONS(3109), 1, - anon_sym_RBRACE, - STATE(1054), 1, - sym_enumerator, - [31166] = 4, + [31054] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3111), 1, + ACTIONS(2394), 1, anon_sym_COMMA, - ACTIONS(3114), 1, - anon_sym_RBRACE, - STATE(1020), 1, - aux_sym_enumerator_list_repeat1, - [31179] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2196), 1, + ACTIONS(3093), 1, anon_sym_RPAREN, - ACTIONS(3116), 1, - anon_sym_COMMA, - STATE(1021), 1, - aux_sym_argument_list_repeat1, - [31192] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2750), 1, - anon_sym_COMMA, - ACTIONS(2768), 1, - anon_sym_SEMI, - STATE(1032), 1, - aux_sym_declaration_repeat1, - [31205] = 4, - ACTIONS(3), 1, + STATE(997), 1, + aux_sym_preproc_argument_list_repeat1, + [31067] = 4, + ACTIONS(2428), 1, + anon_sym_LPAREN2, + ACTIONS(2430), 1, sym_comment, - ACTIONS(3119), 1, - anon_sym_COMMA, - ACTIONS(3122), 1, - anon_sym_RPAREN, - STATE(1023), 1, - aux_sym_preproc_params_repeat1, - [31218] = 4, + ACTIONS(3095), 1, + anon_sym_LF, + STATE(789), 1, + sym_preproc_argument_list, + [31080] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2836), 1, + ACTIONS(2742), 1, anon_sym_COMMA, - ACTIONS(3124), 1, + ACTIONS(2772), 1, anon_sym_SEMI, - STATE(1017), 1, - aux_sym_type_definition_repeat2, - [31231] = 4, + STATE(1000), 1, + aux_sym_declaration_repeat1, + [31093] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3126), 1, + ACTIONS(2118), 1, anon_sym_COMMA, - ACTIONS(3128), 1, - anon_sym_RBRACE, - STATE(993), 1, - aux_sym_enumerator_list_repeat1, - [31244] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2515), 1, + ACTIONS(3097), 1, anon_sym_RPAREN, - ACTIONS(3130), 1, - anon_sym_COMMA, - STATE(1026), 1, - aux_sym_preproc_argument_list_repeat1, - [31257] = 3, + STATE(998), 1, + aux_sym_argument_list_repeat1, + [31106] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3135), 1, - anon_sym_EQ, - ACTIONS(3133), 2, - anon_sym_COMMA, + ACTIONS(2916), 1, + sym_identifier, + ACTIONS(3099), 1, anon_sym_RBRACE, - [31268] = 4, + STATE(1038), 1, + sym_enumerator, + [31119] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3137), 1, + ACTIONS(3101), 1, anon_sym_COMMA, - ACTIONS(3140), 1, - anon_sym_RPAREN, - STATE(1028), 1, - aux_sym_parameter_list_repeat1, - [31281] = 2, + ACTIONS(3104), 1, + anon_sym_SEMI, + STATE(1009), 1, + aux_sym_type_definition_repeat2, + [31132] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3142), 3, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_DOT, - [31290] = 4, + ACTIONS(3099), 1, + anon_sym_RBRACE, + ACTIONS(3106), 1, + anon_sym_COMMA, + STATE(1024), 1, + aux_sym_enumerator_list_repeat1, + [31145] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1210), 1, - anon_sym_RBRACE, - ACTIONS(3144), 1, + ACTIONS(3108), 1, anon_sym_COMMA, - STATE(1034), 1, - aux_sym_initializer_list_repeat1, - [31303] = 2, + ACTIONS(3111), 1, + anon_sym_SEMI, + STATE(1011), 1, + aux_sym_declaration_repeat1, + [31158] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3146), 3, + ACTIONS(3113), 3, anon_sym_LBRACK, anon_sym_EQ, anon_sym_DOT, - [31312] = 4, + [31167] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2750), 1, + ACTIONS(2832), 1, anon_sym_COMMA, - ACTIONS(3148), 1, + ACTIONS(3115), 1, anon_sym_SEMI, - STATE(1011), 1, - aux_sym_declaration_repeat1, - [31325] = 4, + STATE(1009), 1, + aux_sym_type_definition_repeat2, + [31180] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2836), 1, + ACTIONS(2832), 1, anon_sym_COMMA, - ACTIONS(3150), 1, + ACTIONS(3117), 1, anon_sym_SEMI, - STATE(1017), 1, + STATE(1009), 1, aux_sym_type_definition_repeat2, - [31338] = 4, + [31193] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2178), 1, + ACTIONS(2150), 1, anon_sym_RBRACE, - ACTIONS(3152), 1, + ACTIONS(3119), 1, anon_sym_COMMA, - STATE(1034), 1, + STATE(1015), 1, aux_sym_initializer_list_repeat1, - [31351] = 4, + [31206] = 4, + ACTIONS(2428), 1, + anon_sym_LPAREN2, + ACTIONS(2430), 1, + sym_comment, + ACTIONS(3122), 1, + anon_sym_LF, + STATE(789), 1, + sym_preproc_argument_list, + [31219] = 4, + ACTIONS(2428), 1, + anon_sym_LPAREN2, + ACTIONS(2430), 1, + sym_comment, + ACTIONS(3124), 1, + anon_sym_LF, + STATE(789), 1, + sym_preproc_argument_list, + [31232] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2545), 1, + ACTIONS(2494), 1, anon_sym_LBRACE, - ACTIONS(3155), 1, + ACTIONS(3126), 1, sym_identifier, - STATE(843), 1, + STATE(825), 1, sym_field_declaration_list, - [31364] = 4, + [31245] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2742), 1, + anon_sym_COMMA, + ACTIONS(3128), 1, + anon_sym_SEMI, + STATE(1011), 1, + aux_sym_declaration_repeat1, + [31258] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2742), 1, + anon_sym_COMMA, + ACTIONS(2754), 1, + anon_sym_SEMI, + STATE(1023), 1, + aux_sym_declaration_repeat1, + [31271] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2545), 1, + ACTIONS(2494), 1, anon_sym_LBRACE, - ACTIONS(3157), 1, + ACTIONS(3130), 1, sym_identifier, - STATE(827), 1, + STATE(830), 1, sym_field_declaration_list, - [31377] = 3, - ACTIONS(2428), 1, - sym_comment, - ACTIONS(3159), 1, - anon_sym_LF, - ACTIONS(3161), 1, - sym_preproc_arg, - [31387] = 3, - ACTIONS(2428), 1, + [31284] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(3163), 1, - anon_sym_LF, - ACTIONS(3165), 1, - sym_preproc_arg, - [31397] = 3, - ACTIONS(2428), 1, + ACTIONS(2832), 1, + anon_sym_COMMA, + ACTIONS(3132), 1, + anon_sym_SEMI, + STATE(1009), 1, + aux_sym_type_definition_repeat2, + [31297] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(3167), 1, - anon_sym_LF, - ACTIONS(3169), 1, - sym_preproc_arg, - [31407] = 2, + ACTIONS(2742), 1, + anon_sym_COMMA, + ACTIONS(3134), 1, + anon_sym_SEMI, + STATE(1011), 1, + aux_sym_declaration_repeat1, + [31310] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2132), 2, + ACTIONS(3136), 1, anon_sym_COMMA, + ACTIONS(3139), 1, anon_sym_RBRACE, - [31415] = 2, + STATE(1024), 1, + aux_sym_enumerator_list_repeat1, + [31323] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2178), 2, + ACTIONS(3087), 1, anon_sym_COMMA, - anon_sym_RBRACE, - [31423] = 3, + ACTIONS(3141), 1, + anon_sym_RPAREN, + STATE(1001), 1, + aux_sym_preproc_params_repeat1, + [31336] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3171), 1, + ACTIONS(2550), 1, + anon_sym_LBRACE, + ACTIONS(3143), 1, + sym_identifier, + STATE(835), 1, + sym_enumerator_list, + [31349] = 2, + ACTIONS(2430), 1, + sym_comment, + ACTIONS(3145), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [31357] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3147), 1, anon_sym_LPAREN2, - STATE(87), 1, + STATE(78), 1, sym_parenthesized_expression, - [31433] = 3, + [31367] = 3, + ACTIONS(2430), 1, + sym_comment, + ACTIONS(3149), 1, + anon_sym_LF, + ACTIONS(3151), 1, + sym_preproc_arg, + [31377] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3173), 1, + ACTIONS(3147), 1, anon_sym_LPAREN2, - STATE(1071), 1, + STATE(111), 1, sym_parenthesized_expression, - [31443] = 3, + [31387] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3171), 1, + ACTIONS(3147), 1, anon_sym_LPAREN2, - STATE(89), 1, + STATE(109), 1, sym_parenthesized_expression, - [31453] = 2, - ACTIONS(2428), 1, - sym_comment, - ACTIONS(3175), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [31461] = 3, + [31397] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3173), 1, + ACTIONS(3147), 1, anon_sym_LPAREN2, - STATE(1122), 1, + STATE(83), 1, sym_parenthesized_expression, - [31471] = 3, + [31407] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3047), 1, - sym_identifier, + ACTIONS(2112), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + [31415] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3153), 1, + anon_sym_LPAREN2, STATE(1054), 1, - sym_enumerator, - [31481] = 3, - ACTIONS(2428), 1, + sym_parenthesized_expression, + [31425] = 2, + ACTIONS(2430), 1, sym_comment, - ACTIONS(3177), 1, + ACTIONS(3155), 2, anon_sym_LF, - ACTIONS(3179), 1, sym_preproc_arg, - [31491] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3140), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [31499] = 2, - ACTIONS(2428), 1, + [31433] = 3, + ACTIONS(2430), 1, sym_comment, - ACTIONS(3181), 2, + ACTIONS(3157), 1, anon_sym_LF, + ACTIONS(3159), 1, sym_preproc_arg, - [31507] = 3, + [31443] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3173), 1, + ACTIONS(3147), 1, anon_sym_LPAREN2, - STATE(1084), 1, + STATE(86), 1, sym_parenthesized_expression, - [31517] = 2, + [31453] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3122), 2, + ACTIONS(3139), 2, anon_sym_COMMA, - anon_sym_RPAREN, - [31525] = 3, - ACTIONS(3), 1, + anon_sym_RBRACE, + [31461] = 2, + ACTIONS(2430), 1, sym_comment, - ACTIONS(3183), 1, - sym_identifier, - ACTIONS(3185), 1, - anon_sym_LPAREN2, - [31535] = 2, + ACTIONS(3161), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [31469] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3114), 2, + ACTIONS(2122), 2, anon_sym_COMMA, anon_sym_RBRACE, - [31543] = 3, + [31477] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3173), 1, + ACTIONS(3163), 1, + sym_identifier, + ACTIONS(3165), 1, anon_sym_LPAREN2, - STATE(1238), 1, - sym_parenthesized_expression, - [31553] = 2, - ACTIONS(2428), 1, - sym_comment, - ACTIONS(3187), 2, - anon_sym_LF, - sym_preproc_arg, - [31561] = 2, - ACTIONS(2428), 1, - sym_comment, - ACTIONS(3189), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [31569] = 3, + [31487] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(109), 1, - anon_sym_LBRACE, - STATE(142), 1, - sym_compound_statement, - [31579] = 3, + ACTIONS(3153), 1, + anon_sym_LPAREN2, + STATE(1119), 1, + sym_parenthesized_expression, + [31497] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3173), 1, + ACTIONS(3153), 1, anon_sym_LPAREN2, - STATE(1058), 1, + STATE(1079), 1, sym_parenthesized_expression, - [31589] = 2, + [31507] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3191), 2, - anon_sym_DOT_DOT_DOT, + ACTIONS(3167), 1, sym_identifier, - [31597] = 2, + ACTIONS(3169), 1, + anon_sym_LPAREN2, + [31517] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2200), 2, - anon_sym_COMMA, - anon_sym_SEMI, - [31605] = 3, + ACTIONS(1668), 1, + anon_sym_LPAREN2, + STATE(1097), 1, + sym_argument_list, + [31527] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1690), 1, + ACTIONS(3153), 1, anon_sym_LPAREN2, - STATE(1145), 1, - sym_argument_list, - [31615] = 2, + STATE(1223), 1, + sym_parenthesized_expression, + [31537] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2866), 2, + ACTIONS(2150), 2, anon_sym_COMMA, - anon_sym_SEMI, - [31623] = 3, - ACTIONS(2428), 1, + anon_sym_RBRACE, + [31545] = 3, + ACTIONS(2430), 1, sym_comment, - ACTIONS(3193), 1, + ACTIONS(3171), 1, anon_sym_LF, - ACTIONS(3195), 1, + ACTIONS(3173), 1, sym_preproc_arg, - [31633] = 3, + [31555] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3173), 1, - anon_sym_LPAREN2, - STATE(1119), 1, - sym_parenthesized_expression, - [31643] = 3, + ACTIONS(310), 1, + anon_sym_LBRACE, + STATE(243), 1, + sym_compound_statement, + [31565] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3171), 1, + ACTIONS(109), 1, + anon_sym_LBRACE, + STATE(145), 1, + sym_compound_statement, + [31575] = 2, + ACTIONS(2430), 1, + sym_comment, + ACTIONS(3175), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [31583] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3153), 1, anon_sym_LPAREN2, - STATE(134), 1, + STATE(1050), 1, sym_parenthesized_expression, - [31653] = 3, + [31593] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3197), 1, - sym_identifier, - ACTIONS(3199), 1, - anon_sym_LPAREN2, - [31663] = 2, - ACTIONS(2428), 1, + ACTIONS(2186), 2, + anon_sym_COMMA, + anon_sym_SEMI, + [31601] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(3201), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [31671] = 3, + ACTIONS(35), 1, + anon_sym_LBRACE, + STATE(206), 1, + sym_compound_statement, + [31611] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3173), 1, + ACTIONS(3153), 1, anon_sym_LPAREN2, - STATE(1078), 1, + STATE(1125), 1, sym_parenthesized_expression, - [31681] = 3, + [31621] = 3, + ACTIONS(2430), 1, + sym_comment, + ACTIONS(3177), 1, + anon_sym_LF, + ACTIONS(3179), 1, + sym_preproc_arg, + [31631] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3171), 1, + ACTIONS(3153), 1, anon_sym_LPAREN2, - STATE(103), 1, + STATE(1215), 1, sym_parenthesized_expression, - [31691] = 3, + [31641] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACE, - STATE(201), 1, - sym_compound_statement, - [31701] = 3, - ACTIONS(2428), 1, + ACTIONS(3181), 2, + anon_sym_DOT_DOT_DOT, + sym_identifier, + [31649] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3153), 1, + anon_sym_LPAREN2, + STATE(1049), 1, + sym_parenthesized_expression, + [31659] = 2, + ACTIONS(2430), 1, + sym_comment, + ACTIONS(3183), 2, + anon_sym_LF, + sym_preproc_arg, + [31667] = 3, + ACTIONS(2430), 1, + sym_comment, + ACTIONS(3185), 1, + anon_sym_LF, + ACTIONS(3187), 1, + sym_preproc_arg, + [31677] = 3, + ACTIONS(2430), 1, + sym_comment, + ACTIONS(3189), 1, + anon_sym_LF, + ACTIONS(3191), 1, + sym_preproc_arg, + [31687] = 3, + ACTIONS(2430), 1, + sym_comment, + ACTIONS(3193), 1, + anon_sym_LF, + ACTIONS(3195), 1, + sym_preproc_arg, + [31697] = 3, + ACTIONS(2430), 1, + sym_comment, + ACTIONS(3197), 1, + anon_sym_LF, + ACTIONS(3199), 1, + sym_preproc_arg, + [31707] = 3, + ACTIONS(2430), 1, sym_comment, + ACTIONS(3201), 1, + anon_sym_LF, ACTIONS(3203), 1, + sym_preproc_arg, + [31717] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3059), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [31725] = 2, + ACTIONS(2430), 1, + sym_comment, + ACTIONS(3205), 2, anon_sym_LF, - ACTIONS(3205), 1, sym_preproc_arg, - [31711] = 3, - ACTIONS(2428), 1, + [31733] = 3, + ACTIONS(2430), 1, sym_comment, ACTIONS(3207), 1, anon_sym_LF, ACTIONS(3209), 1, sym_preproc_arg, - [31721] = 3, + [31743] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3171), 1, - anon_sym_LPAREN2, - STATE(135), 1, - sym_parenthesized_expression, - [31731] = 3, - ACTIONS(2428), 1, + ACTIONS(2916), 1, + sym_identifier, + STATE(1038), 1, + sym_enumerator, + [31753] = 3, + ACTIONS(2430), 1, sym_comment, ACTIONS(3211), 1, anon_sym_LF, ACTIONS(3213), 1, sym_preproc_arg, - [31741] = 3, - ACTIONS(2428), 1, + [31763] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3147), 1, + anon_sym_LPAREN2, + STATE(79), 1, + sym_parenthesized_expression, + [31773] = 3, + ACTIONS(2430), 1, sym_comment, ACTIONS(3215), 1, anon_sym_LF, ACTIONS(3217), 1, sym_preproc_arg, - [31751] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3171), 1, - anon_sym_LPAREN2, - STATE(95), 1, - sym_parenthesized_expression, - [31761] = 3, + [31783] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(310), 1, - anon_sym_LBRACE, - STATE(202), 1, - sym_compound_statement, - [31771] = 3, + ACTIONS(2848), 2, + anon_sym_COMMA, + anon_sym_SEMI, + [31791] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3171), 1, + ACTIONS(3147), 1, anon_sym_LPAREN2, - STATE(93), 1, + STATE(120), 1, sym_parenthesized_expression, - [31781] = 3, - ACTIONS(2428), 1, + [31801] = 3, + ACTIONS(2430), 1, sym_comment, ACTIONS(3219), 1, anon_sym_LF, ACTIONS(3221), 1, sym_preproc_arg, - [31791] = 3, - ACTIONS(2428), 1, - sym_comment, - ACTIONS(3223), 1, - anon_sym_LF, - ACTIONS(3225), 1, - sym_preproc_arg, - [31801] = 3, + [31811] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3173), 1, + ACTIONS(3147), 1, anon_sym_LPAREN2, - STATE(1181), 1, + STATE(122), 1, sym_parenthesized_expression, - [31811] = 2, - ACTIONS(2428), 1, + [31821] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3040), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [31829] = 3, + ACTIONS(2430), 1, sym_comment, - ACTIONS(3227), 2, + ACTIONS(3223), 1, anon_sym_LF, + ACTIONS(3225), 1, sym_preproc_arg, - [31819] = 3, + [31839] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(450), 1, + ACTIONS(370), 1, anon_sym_LBRACE, - STATE(230), 1, + STATE(256), 1, sym_compound_statement, - [31829] = 3, - ACTIONS(2428), 1, + [31849] = 2, + ACTIONS(2430), 1, sym_comment, - ACTIONS(3229), 1, + ACTIONS(3227), 1, anon_sym_LF, - ACTIONS(3231), 1, - sym_preproc_arg, - [31839] = 3, - ACTIONS(2428), 1, + [31856] = 2, + ACTIONS(2430), 1, sym_comment, - ACTIONS(3233), 1, + ACTIONS(3229), 1, anon_sym_LF, - ACTIONS(3235), 1, - sym_preproc_arg, - [31849] = 2, + [31863] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2112), 2, + ACTIONS(2124), 1, anon_sym_RPAREN, - anon_sym_SEMI, - [31857] = 3, + [31870] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3171), 1, - anon_sym_LPAREN2, - STATE(126), 1, - sym_parenthesized_expression, - [31867] = 3, - ACTIONS(2428), 1, - sym_comment, - ACTIONS(3237), 1, - anon_sym_LF, - ACTIONS(3239), 1, - sym_preproc_arg, + ACTIONS(2154), 1, + anon_sym_SEMI, [31877] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3241), 1, - anon_sym_SEMI, + ACTIONS(3231), 1, + aux_sym_preproc_if_token2, [31884] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2152), 1, - anon_sym_RPAREN, + ACTIONS(3233), 1, + sym_identifier, [31891] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3243), 1, + ACTIONS(2176), 1, anon_sym_RPAREN, [31898] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3245), 1, - aux_sym_preproc_if_token2, + ACTIONS(3235), 1, + anon_sym_SEMI, [31905] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2130), 1, - anon_sym_RPAREN, + ACTIONS(3237), 1, + anon_sym_COLON, [31912] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3247), 1, - anon_sym_RPAREN, + ACTIONS(3239), 1, + anon_sym_SEMI, [31919] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2168), 1, + ACTIONS(3241), 1, anon_sym_SEMI, [31926] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2164), 1, - anon_sym_RPAREN, + ACTIONS(3243), 1, + anon_sym_SEMI, [31933] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2122), 1, - anon_sym_RPAREN, + ACTIONS(2206), 1, + anon_sym_SEMI, [31940] = 2, - ACTIONS(2428), 1, + ACTIONS(2430), 1, sym_comment, - ACTIONS(3249), 1, + ACTIONS(3063), 1, anon_sym_LF, [31947] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3251), 1, - aux_sym_preproc_if_token2, + ACTIONS(3245), 1, + anon_sym_COLON, [31954] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3253), 1, - aux_sym_preproc_if_token2, + ACTIONS(3071), 1, + anon_sym_RBRACE, [31961] = 2, - ACTIONS(3), 1, + ACTIONS(2430), 1, sym_comment, - ACTIONS(3255), 1, - aux_sym_preproc_if_token2, + ACTIONS(3247), 1, + anon_sym_LF, [31968] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2138), 1, + ACTIONS(3249), 1, anon_sym_RPAREN, [31975] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2174), 1, - anon_sym_SEMI, + ACTIONS(2148), 1, + anon_sym_RPAREN, [31982] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3257), 1, - anon_sym_SEMI, + ACTIONS(3251), 1, + sym_identifier, [31989] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2210), 1, - anon_sym_RPAREN, + ACTIONS(3253), 1, + aux_sym_preproc_if_token2, [31996] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2906), 1, + ACTIONS(2198), 1, anon_sym_SEMI, [32003] = 2, - ACTIONS(2428), 1, + ACTIONS(3), 1, sym_comment, - ACTIONS(3259), 1, - anon_sym_LF, + ACTIONS(3255), 1, + anon_sym_SEMI, [32010] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3261), 1, - sym_identifier, + ACTIONS(3257), 1, + aux_sym_preproc_if_token2, [32017] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3263), 1, - aux_sym_preproc_if_token2, + ACTIONS(2116), 1, + anon_sym_RBRACE, [32024] = 2, - ACTIONS(3), 1, + ACTIONS(2430), 1, sym_comment, - ACTIONS(3265), 1, - aux_sym_preproc_if_token2, + ACTIONS(3259), 1, + anon_sym_LF, [32031] = 2, - ACTIONS(2428), 1, + ACTIONS(3), 1, sym_comment, - ACTIONS(3267), 1, - anon_sym_LF, + ACTIONS(2146), 1, + anon_sym_RPAREN, [32038] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3269), 1, + ACTIONS(3261), 1, aux_sym_preproc_if_token2, [32045] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3271), 1, + ACTIONS(2164), 1, anon_sym_RPAREN, [32052] = 2, - ACTIONS(2428), 1, + ACTIONS(3), 1, sym_comment, - ACTIONS(3273), 1, - anon_sym_LF, + ACTIONS(2144), 1, + anon_sym_RPAREN, [32059] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3275), 1, - aux_sym_preproc_if_token2, + ACTIONS(3263), 1, + anon_sym_SEMI, [32066] = 2, - ACTIONS(2428), 1, + ACTIONS(3), 1, sym_comment, - ACTIONS(3277), 1, - anon_sym_LF, + ACTIONS(3265), 1, + aux_sym_preproc_if_token2, [32073] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3279), 1, + ACTIONS(3267), 1, aux_sym_preproc_if_token2, [32080] = 2, - ACTIONS(3), 1, + ACTIONS(2430), 1, sym_comment, - ACTIONS(3281), 1, - anon_sym_SEMI, + ACTIONS(3269), 1, + anon_sym_LF, [32087] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3283), 1, - anon_sym_SEMI, + ACTIONS(3271), 1, + aux_sym_preproc_if_token2, [32094] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3285), 1, + ACTIONS(3273), 1, aux_sym_preproc_if_token2, [32101] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3287), 1, - anon_sym_SEMI, + ACTIONS(3275), 1, + aux_sym_preproc_if_token2, [32108] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3289), 1, - aux_sym_preproc_if_token2, + ACTIONS(2160), 1, + anon_sym_RPAREN, [32115] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3291), 1, - aux_sym_preproc_if_token2, + ACTIONS(2168), 1, + anon_sym_RPAREN, [32122] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3293), 1, - aux_sym_preproc_if_token2, + ACTIONS(3277), 1, + anon_sym_SEMI, [32129] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3295), 1, - anon_sym_RPAREN, + ACTIONS(3279), 1, + aux_sym_preproc_if_token2, [32136] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3297), 1, - sym_identifier, + ACTIONS(3281), 1, + aux_sym_preproc_if_token2, [32143] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2188), 1, - anon_sym_RPAREN, + ACTIONS(3283), 1, + aux_sym_preproc_if_token2, [32150] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3299), 1, - anon_sym_RPAREN, + ACTIONS(3285), 1, + aux_sym_preproc_if_token2, [32157] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2186), 1, + ACTIONS(2190), 1, anon_sym_RPAREN, [32164] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3301), 1, - aux_sym_preproc_if_token2, + ACTIONS(3287), 1, + anon_sym_SEMI, [32171] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2176), 1, - anon_sym_RPAREN, + ACTIONS(3289), 1, + sym_identifier, [32178] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3303), 1, - anon_sym_SQUOTE, + ACTIONS(2200), 1, + anon_sym_RPAREN, [32185] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2158), 1, - anon_sym_RPAREN, + ACTIONS(3291), 1, + anon_sym_SEMI, [32192] = 2, - ACTIONS(3), 1, + ACTIONS(2430), 1, sym_comment, - ACTIONS(3305), 1, - anon_sym_SEMI, + ACTIONS(3293), 1, + anon_sym_LF, [32199] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2150), 1, + ACTIONS(2166), 1, anon_sym_RPAREN, [32206] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2146), 1, - anon_sym_SEMI, + ACTIONS(3295), 1, + aux_sym_preproc_if_token2, [32213] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3307), 1, - anon_sym_while, + ACTIONS(2174), 1, + anon_sym_RPAREN, [32220] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2140), 1, - anon_sym_RPAREN, + ACTIONS(3297), 1, + aux_sym_preproc_if_token2, [32227] = 2, - ACTIONS(2428), 1, + ACTIONS(3), 1, sym_comment, - ACTIONS(3309), 1, - anon_sym_LF, + ACTIONS(2170), 1, + anon_sym_RPAREN, [32234] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3311), 1, - anon_sym_SQUOTE, + ACTIONS(3299), 1, + anon_sym_RPAREN, [32241] = 2, - ACTIONS(2428), 1, + ACTIONS(3), 1, sym_comment, - ACTIONS(3313), 1, - anon_sym_LF, + ACTIONS(2130), 1, + anon_sym_RPAREN, [32248] = 2, - ACTIONS(3), 1, + ACTIONS(2430), 1, sym_comment, - ACTIONS(3315), 1, - anon_sym_SEMI, + ACTIONS(3301), 1, + anon_sym_LF, [32255] = 2, - ACTIONS(2428), 1, + ACTIONS(3), 1, sym_comment, - ACTIONS(3317), 1, - anon_sym_LF, + ACTIONS(2898), 1, + anon_sym_SEMI, [32262] = 2, - ACTIONS(3), 1, + ACTIONS(2430), 1, sym_comment, - ACTIONS(3319), 1, - anon_sym_RPAREN, + ACTIONS(3303), 1, + anon_sym_LF, [32269] = 2, - ACTIONS(2428), 1, + ACTIONS(3), 1, sym_comment, - ACTIONS(3321), 1, - anon_sym_LF, + ACTIONS(3305), 1, + aux_sym_preproc_if_token2, [32276] = 2, - ACTIONS(3), 1, + ACTIONS(2430), 1, sym_comment, - ACTIONS(3323), 1, - anon_sym_SEMI, + ACTIONS(3307), 1, + anon_sym_LF, [32283] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2166), 1, - anon_sym_SEMI, + ACTIONS(2142), 1, + anon_sym_RPAREN, [32290] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2180), 1, - anon_sym_RPAREN, + ACTIONS(3309), 1, + aux_sym_preproc_if_token2, [32297] = 2, - ACTIONS(2428), 1, + ACTIONS(2430), 1, sym_comment, - ACTIONS(3325), 1, + ACTIONS(3311), 1, anon_sym_LF, [32304] = 2, - ACTIONS(3), 1, + ACTIONS(2430), 1, sym_comment, - ACTIONS(3327), 1, - aux_sym_preproc_if_token2, + ACTIONS(3313), 1, + anon_sym_LF, [32311] = 2, - ACTIONS(2428), 1, + ACTIONS(2430), 1, sym_comment, - ACTIONS(3329), 1, + ACTIONS(3315), 1, anon_sym_LF, [32318] = 2, - ACTIONS(3), 1, + ACTIONS(2430), 1, sym_comment, - ACTIONS(3331), 1, - anon_sym_COLON, + ACTIONS(3317), 1, + anon_sym_LF, [32325] = 2, - ACTIONS(2428), 1, + ACTIONS(3), 1, sym_comment, - ACTIONS(3333), 1, - anon_sym_LF, + ACTIONS(2134), 1, + anon_sym_RPAREN, [32332] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2182), 1, - anon_sym_SEMI, + ACTIONS(3319), 1, + anon_sym_RPAREN, [32339] = 2, - ACTIONS(3), 1, + ACTIONS(2430), 1, sym_comment, - ACTIONS(3335), 1, - anon_sym_RPAREN, + ACTIONS(3321), 1, + anon_sym_LF, [32346] = 2, - ACTIONS(2428), 1, + ACTIONS(2430), 1, sym_comment, - ACTIONS(3337), 1, + ACTIONS(3323), 1, anon_sym_LF, [32353] = 2, - ACTIONS(2428), 1, - sym_comment, - ACTIONS(3339), 1, - anon_sym_LF, - [32360] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2156), 1, + ACTIONS(2152), 1, anon_sym_RPAREN, - [32367] = 2, - ACTIONS(2428), 1, + [32360] = 2, + ACTIONS(2430), 1, sym_comment, - ACTIONS(3341), 1, + ACTIONS(3325), 1, anon_sym_LF, + [32367] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3327), 1, + aux_sym_preproc_if_token2, [32374] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3343), 1, + ACTIONS(3329), 1, sym_identifier, [32381] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3345), 1, + ACTIONS(3331), 1, sym_identifier, [32388] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3347), 1, - anon_sym_COLON, + ACTIONS(3333), 1, + sym_identifier, [32395] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2190), 1, - anon_sym_RPAREN, + ACTIONS(3335), 1, + anon_sym_SEMI, [32402] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3349), 1, + ACTIONS(3337), 1, aux_sym_preproc_if_token2, [32409] = 2, - ACTIONS(2428), 1, + ACTIONS(3), 1, sym_comment, - ACTIONS(3351), 1, - anon_sym_LF, + ACTIONS(3339), 1, + aux_sym_preproc_if_token2, [32416] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3353), 1, + ACTIONS(3341), 1, sym_identifier, [32423] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2154), 1, + ACTIONS(2172), 1, anon_sym_RPAREN, [32430] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3355), 1, - anon_sym_SEMI, + ACTIONS(3343), 1, + aux_sym_preproc_if_token2, [32437] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2208), 1, - anon_sym_SEMI, + ACTIONS(3345), 1, + aux_sym_preproc_if_token2, [32444] = 2, - ACTIONS(3), 1, + ACTIONS(2430), 1, sym_comment, - ACTIONS(3357), 1, - anon_sym_SEMI, + ACTIONS(3095), 1, + anon_sym_LF, [32451] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3359), 1, - anon_sym_SEMI, + ACTIONS(3347), 1, + anon_sym_SQUOTE, [32458] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3361), 1, + ACTIONS(3349), 1, anon_sym_SEMI, [32465] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3363), 1, - anon_sym_COLON, + ACTIONS(3351), 1, + anon_sym_SEMI, [32472] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3365), 1, + ACTIONS(3353), 1, sym_identifier, [32479] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3367), 1, - aux_sym_preproc_if_token2, + ACTIONS(2188), 1, + anon_sym_SEMI, [32486] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3369), 1, + ACTIONS(3355), 1, sym_identifier, [32493] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3371), 1, + ACTIONS(2208), 1, anon_sym_SEMI, [32500] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2148), 1, - anon_sym_RPAREN, + ACTIONS(3357), 1, + anon_sym_SQUOTE, [32507] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3373), 1, + ACTIONS(3359), 1, anon_sym_SEMI, [32514] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3375), 1, - anon_sym_SEMI, + ACTIONS(2136), 1, + anon_sym_RPAREN, [32521] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3377), 1, - aux_sym_preproc_if_token2, + ACTIONS(2158), 1, + anon_sym_SEMI, [32528] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3379), 1, - anon_sym_SEMI, + ACTIONS(3361), 1, + anon_sym_while, [32535] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3381), 1, - aux_sym_preproc_if_token2, + ACTIONS(2196), 1, + anon_sym_RPAREN, [32542] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2202), 1, - anon_sym_SEMI, + ACTIONS(2132), 1, + anon_sym_RPAREN, [32549] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3383), 1, - sym_identifier, + ACTIONS(2128), 1, + anon_sym_RPAREN, [32556] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3385), 1, + ACTIONS(3363), 1, sym_identifier, [32563] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3387), 1, - anon_sym_RPAREN, + ACTIONS(3365), 1, + sym_identifier, [32570] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3389), 1, - aux_sym_preproc_if_token2, + ACTIONS(3367), 1, + anon_sym_RPAREN, [32577] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2172), 1, - anon_sym_RPAREN, + ACTIONS(3369), 1, + aux_sym_preproc_if_token2, [32584] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3391), 1, - sym_identifier, + ACTIONS(3371), 1, + aux_sym_preproc_if_token2, [32591] = 2, - ACTIONS(2428), 1, + ACTIONS(3), 1, sym_comment, - ACTIONS(3393), 1, - anon_sym_LF, + ACTIONS(3373), 1, + sym_identifier, [32598] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2134), 1, + ACTIONS(2180), 1, anon_sym_RPAREN, [32605] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3395), 1, - aux_sym_preproc_if_token2, + ACTIONS(3375), 1, + anon_sym_RPAREN, [32612] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2120), 1, - anon_sym_RBRACE, + ACTIONS(2894), 1, + anon_sym_SEMI, [32619] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3397), 1, - sym_identifier, + ACTIONS(3377), 1, + anon_sym_RPAREN, [32626] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3399), 1, - sym_identifier, + ACTIONS(3379), 1, + anon_sym_RPAREN, [32633] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3401), 1, + ACTIONS(3381), 1, sym_identifier, [32640] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2192), 1, - anon_sym_SEMI, + ACTIONS(3383), 1, + aux_sym_preproc_if_token2, [32647] = 2, - ACTIONS(2428), 1, + ACTIONS(3), 1, sym_comment, - ACTIONS(3403), 1, - anon_sym_LF, + ACTIONS(2156), 1, + anon_sym_RPAREN, [32654] = 2, - ACTIONS(3), 1, + ACTIONS(2430), 1, sym_comment, - ACTIONS(3405), 1, - aux_sym_preproc_if_token2, + ACTIONS(3385), 1, + anon_sym_LF, [32661] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2894), 1, + ACTIONS(3387), 1, anon_sym_SEMI, [32668] = 2, - ACTIONS(3), 1, + ACTIONS(2430), 1, sym_comment, - ACTIONS(2170), 1, - anon_sym_RPAREN, + ACTIONS(3389), 1, + anon_sym_LF, [32675] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2128), 1, - anon_sym_RPAREN, + ACTIONS(3391), 1, + aux_sym_preproc_if_token2, [32682] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2206), 1, + ACTIONS(3393), 1, anon_sym_RPAREN, [32689] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3407), 1, - sym_identifier, + ACTIONS(2138), 1, + anon_sym_RPAREN, [32696] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3409), 1, - sym_identifier, + ACTIONS(2162), 1, + anon_sym_SEMI, [32703] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3411), 1, - anon_sym_SEMI, + ACTIONS(3395), 1, + sym_identifier, [32710] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3413), 1, - anon_sym_SQUOTE, + ACTIONS(3397), 1, + sym_identifier, [32717] = 2, - ACTIONS(3), 1, + ACTIONS(2430), 1, sym_comment, - ACTIONS(2204), 1, - anon_sym_SEMI, + ACTIONS(3122), 1, + anon_sym_LF, [32724] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3415), 1, - sym_identifier, + ACTIONS(3399), 1, + aux_sym_preproc_if_token2, [32731] = 2, - ACTIONS(3), 1, + ACTIONS(2430), 1, sym_comment, - ACTIONS(2896), 1, - anon_sym_SEMI, + ACTIONS(3401), 1, + anon_sym_LF, [32738] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3417), 1, - aux_sym_preproc_if_token2, + ACTIONS(3403), 1, + sym_identifier, [32745] = 2, - ACTIONS(2428), 1, + ACTIONS(3), 1, sym_comment, - ACTIONS(3419), 1, - anon_sym_LF, + ACTIONS(2178), 1, + anon_sym_RPAREN, [32752] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3421), 1, + ACTIONS(3405), 1, aux_sym_preproc_if_token2, [32759] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3423), 1, - aux_sym_preproc_if_token2, + ACTIONS(2126), 1, + anon_sym_SEMI, [32766] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3425), 1, + ACTIONS(3407), 1, aux_sym_preproc_if_token2, [32773] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3427), 1, - aux_sym_preproc_if_token2, + ACTIONS(3409), 1, + anon_sym_SEMI, [32780] = 2, - ACTIONS(3), 1, + ACTIONS(1385), 1, + anon_sym_LF, + ACTIONS(2430), 1, sym_comment, - ACTIONS(3429), 1, - ts_builtin_sym_end, [32787] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3431), 1, + ACTIONS(2888), 1, anon_sym_SEMI, [32794] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3433), 1, - aux_sym_preproc_if_token2, + ACTIONS(3411), 1, + anon_sym_SEMI, [32801] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3435), 1, - sym_identifier, + ACTIONS(3413), 1, + anon_sym_SEMI, [32808] = 2, - ACTIONS(3), 1, + ACTIONS(2430), 1, sym_comment, - ACTIONS(3437), 1, - sym_identifier, + ACTIONS(3124), 1, + anon_sym_LF, [32815] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3439), 1, - sym_identifier, + ACTIONS(2204), 1, + anon_sym_SEMI, [32822] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3441), 1, + ACTIONS(3415), 1, sym_identifier, [32829] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2184), 1, - anon_sym_RPAREN, + ACTIONS(3417), 1, + sym_identifier, [32836] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3443), 1, - anon_sym_SEMI, + ACTIONS(3419), 1, + sym_identifier, [32843] = 2, - ACTIONS(3), 1, + ACTIONS(1430), 1, + anon_sym_LF, + ACTIONS(2430), 1, sym_comment, - ACTIONS(3445), 1, - anon_sym_SEMI, [32850] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3447), 1, - anon_sym_while, + ACTIONS(3421), 1, + anon_sym_SEMI, [32857] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3449), 1, - anon_sym_LPAREN2, + ACTIONS(3423), 1, + ts_builtin_sym_end, [32864] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2194), 1, - anon_sym_RPAREN, + ACTIONS(3425), 1, + anon_sym_while, [32871] = 2, - ACTIONS(2428), 1, + ACTIONS(3), 1, sym_comment, - ACTIONS(3451), 1, - anon_sym_LF, + ACTIONS(3427), 1, + anon_sym_SEMI, [32878] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2162), 1, + ACTIONS(3429), 1, anon_sym_SEMI, [32885] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2124), 1, - anon_sym_RPAREN, + ACTIONS(3431), 1, + sym_identifier, [32892] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3453), 1, - anon_sym_COLON, + ACTIONS(2140), 1, + anon_sym_SEMI, [32899] = 2, - ACTIONS(2428), 1, + ACTIONS(3), 1, sym_comment, - ACTIONS(3455), 1, - anon_sym_LF, + ACTIONS(3433), 1, + anon_sym_SEMI, [32906] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3457), 1, - anon_sym_while, + ACTIONS(3435), 1, + anon_sym_SEMI, [32913] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3459), 1, - anon_sym_SEMI, + ACTIONS(3437), 1, + anon_sym_LPAREN2, [32920] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3461), 1, - aux_sym_preproc_if_token2, + ACTIONS(3439), 1, + anon_sym_while, [32927] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3463), 1, - anon_sym_SEMI, + ACTIONS(3441), 1, + anon_sym_SQUOTE, [32934] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2160), 1, - anon_sym_SEMI, + ACTIONS(3443), 1, + anon_sym_COLON, [32941] = 2, - ACTIONS(3), 1, + ACTIONS(2430), 1, sym_comment, - ACTIONS(3465), 1, - aux_sym_preproc_if_token2, + ACTIONS(3445), 1, + anon_sym_LF, [32948] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3467), 1, - aux_sym_preproc_if_token2, + ACTIONS(2184), 1, + anon_sym_SEMI, [32955] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2136), 1, - anon_sym_RPAREN, + ACTIONS(3447), 1, + aux_sym_preproc_if_token2, [32962] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3469), 1, - anon_sym_while, + ACTIONS(3449), 1, + aux_sym_preproc_if_token2, [32969] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3471), 1, - anon_sym_LPAREN2, + ACTIONS(3451), 1, + anon_sym_COLON, [32976] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3128), 1, - anon_sym_RBRACE, + ACTIONS(3453), 1, + anon_sym_while, [32983] = 2, - ACTIONS(3), 1, + ACTIONS(2430), 1, sym_comment, - ACTIONS(2198), 1, - anon_sym_SEMI, + ACTIONS(3455), 1, + anon_sym_LF, [32990] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3473), 1, - sym_identifier, + ACTIONS(3457), 1, + anon_sym_LPAREN2, [32997] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3475), 1, - anon_sym_LPAREN2, + ACTIONS(2210), 1, + anon_sym_SEMI, [33004] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3477), 1, + ACTIONS(3459), 1, aux_sym_preproc_if_token2, [33011] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3479), 1, + ACTIONS(3461), 1, anon_sym_LPAREN2, [33018] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3481), 1, + ACTIONS(3463), 1, sym_identifier, [33025] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3483), 1, + ACTIONS(3465), 1, + anon_sym_LPAREN2, + [33032] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3467), 1, + sym_identifier, + [33039] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3469), 1, anon_sym_LPAREN2, }; static uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(361)] = 0, - [SMALL_STATE(362)] = 98, - [SMALL_STATE(363)] = 193, - [SMALL_STATE(364)] = 288, - [SMALL_STATE(365)] = 358, - [SMALL_STATE(366)] = 428, - [SMALL_STATE(367)] = 500, - [SMALL_STATE(368)] = 570, - [SMALL_STATE(369)] = 642, - [SMALL_STATE(370)] = 712, - [SMALL_STATE(371)] = 784, - [SMALL_STATE(372)] = 856, - [SMALL_STATE(373)] = 948, - [SMALL_STATE(374)] = 1045, - [SMALL_STATE(375)] = 1134, - [SMALL_STATE(376)] = 1223, - [SMALL_STATE(377)] = 1284, - [SMALL_STATE(378)] = 1381, - [SMALL_STATE(379)] = 1478, - [SMALL_STATE(380)] = 1567, - [SMALL_STATE(381)] = 1656, - [SMALL_STATE(382)] = 1745, - [SMALL_STATE(383)] = 1834, - [SMALL_STATE(384)] = 1895, - [SMALL_STATE(385)] = 1992, - [SMALL_STATE(386)] = 2053, - [SMALL_STATE(387)] = 2150, - [SMALL_STATE(388)] = 2239, - [SMALL_STATE(389)] = 2336, - [SMALL_STATE(390)] = 2425, - [SMALL_STATE(391)] = 2492, - [SMALL_STATE(392)] = 2581, - [SMALL_STATE(393)] = 2670, - [SMALL_STATE(394)] = 2767, - [SMALL_STATE(395)] = 2864, - [SMALL_STATE(396)] = 2961, - [SMALL_STATE(397)] = 3058, - [SMALL_STATE(398)] = 3155, - [SMALL_STATE(399)] = 3252, - [SMALL_STATE(400)] = 3349, - [SMALL_STATE(401)] = 3446, - [SMALL_STATE(402)] = 3542, - [SMALL_STATE(403)] = 3597, - [SMALL_STATE(404)] = 3652, - [SMALL_STATE(405)] = 3741, - [SMALL_STATE(406)] = 3828, - [SMALL_STATE(407)] = 3915, - [SMALL_STATE(408)] = 4002, - [SMALL_STATE(409)] = 4089, - [SMALL_STATE(410)] = 4176, - [SMALL_STATE(411)] = 4263, - [SMALL_STATE(412)] = 4343, - [SMALL_STATE(413)] = 4423, - [SMALL_STATE(414)] = 4503, - [SMALL_STATE(415)] = 4583, - [SMALL_STATE(416)] = 4663, - [SMALL_STATE(417)] = 4743, - [SMALL_STATE(418)] = 4823, - [SMALL_STATE(419)] = 4903, - [SMALL_STATE(420)] = 4983, - [SMALL_STATE(421)] = 5063, - [SMALL_STATE(422)] = 5143, - [SMALL_STATE(423)] = 5223, - [SMALL_STATE(424)] = 5303, - [SMALL_STATE(425)] = 5383, - [SMALL_STATE(426)] = 5463, - [SMALL_STATE(427)] = 5543, - [SMALL_STATE(428)] = 5623, - [SMALL_STATE(429)] = 5703, - [SMALL_STATE(430)] = 5783, - [SMALL_STATE(431)] = 5863, - [SMALL_STATE(432)] = 5943, - [SMALL_STATE(433)] = 6023, - [SMALL_STATE(434)] = 6103, - [SMALL_STATE(435)] = 6183, - [SMALL_STATE(436)] = 6259, - [SMALL_STATE(437)] = 6339, - [SMALL_STATE(438)] = 6419, - [SMALL_STATE(439)] = 6499, - [SMALL_STATE(440)] = 6579, - [SMALL_STATE(441)] = 6659, - [SMALL_STATE(442)] = 6739, - [SMALL_STATE(443)] = 6819, - [SMALL_STATE(444)] = 6896, - [SMALL_STATE(445)] = 6973, - [SMALL_STATE(446)] = 7046, - [SMALL_STATE(447)] = 7123, - [SMALL_STATE(448)] = 7200, - [SMALL_STATE(449)] = 7277, - [SMALL_STATE(450)] = 7338, - [SMALL_STATE(451)] = 7399, - [SMALL_STATE(452)] = 7476, - [SMALL_STATE(453)] = 7553, - [SMALL_STATE(454)] = 7630, - [SMALL_STATE(455)] = 7689, - [SMALL_STATE(456)] = 7750, - [SMALL_STATE(457)] = 7827, - [SMALL_STATE(458)] = 7904, - [SMALL_STATE(459)] = 7981, - [SMALL_STATE(460)] = 8054, - [SMALL_STATE(461)] = 8139, - [SMALL_STATE(462)] = 8216, - [SMALL_STATE(463)] = 8277, - [SMALL_STATE(464)] = 8354, - [SMALL_STATE(465)] = 8427, - [SMALL_STATE(466)] = 8500, - [SMALL_STATE(467)] = 8565, - [SMALL_STATE(468)] = 8632, - [SMALL_STATE(469)] = 8703, - [SMALL_STATE(470)] = 8776, - [SMALL_STATE(471)] = 8851, - [SMALL_STATE(472)] = 8928, - [SMALL_STATE(473)] = 9001, - [SMALL_STATE(474)] = 9080, - [SMALL_STATE(475)] = 9147, - [SMALL_STATE(476)] = 9228, - [SMALL_STATE(477)] = 9291, - [SMALL_STATE(478)] = 9368, - [SMALL_STATE(479)] = 9451, - [SMALL_STATE(480)] = 9540, - [SMALL_STATE(481)] = 9613, - [SMALL_STATE(482)] = 9690, - [SMALL_STATE(483)] = 9763, - [SMALL_STATE(484)] = 9836, - [SMALL_STATE(485)] = 9909, - [SMALL_STATE(486)] = 9986, - [SMALL_STATE(487)] = 10059, - [SMALL_STATE(488)] = 10110, - [SMALL_STATE(489)] = 10184, - [SMALL_STATE(490)] = 10246, - [SMALL_STATE(491)] = 10320, - [SMALL_STATE(492)] = 10390, - [SMALL_STATE(493)] = 10460, - [SMALL_STATE(494)] = 10534, - [SMALL_STATE(495)] = 10604, - [SMALL_STATE(496)] = 10654, - [SMALL_STATE(497)] = 10704, - [SMALL_STATE(498)] = 10774, - [SMALL_STATE(499)] = 10848, - [SMALL_STATE(500)] = 10922, - [SMALL_STATE(501)] = 10992, - [SMALL_STATE(502)] = 11062, - [SMALL_STATE(503)] = 11132, - [SMALL_STATE(504)] = 11202, - [SMALL_STATE(505)] = 11276, - [SMALL_STATE(506)] = 11330, - [SMALL_STATE(507)] = 11400, - [SMALL_STATE(508)] = 11474, - [SMALL_STATE(509)] = 11548, - [SMALL_STATE(510)] = 11598, - [SMALL_STATE(511)] = 11672, - [SMALL_STATE(512)] = 11742, - [SMALL_STATE(513)] = 11812, - [SMALL_STATE(514)] = 11862, - [SMALL_STATE(515)] = 11912, - [SMALL_STATE(516)] = 11962, - [SMALL_STATE(517)] = 12012, - [SMALL_STATE(518)] = 12086, - [SMALL_STATE(519)] = 12136, - [SMALL_STATE(520)] = 12186, - [SMALL_STATE(521)] = 12260, - [SMALL_STATE(522)] = 12334, - [SMALL_STATE(523)] = 12384, - [SMALL_STATE(524)] = 12454, - [SMALL_STATE(525)] = 12524, - [SMALL_STATE(526)] = 12598, - [SMALL_STATE(527)] = 12672, - [SMALL_STATE(528)] = 12746, - [SMALL_STATE(529)] = 12820, - [SMALL_STATE(530)] = 12894, - [SMALL_STATE(531)] = 12968, - [SMALL_STATE(532)] = 13042, - [SMALL_STATE(533)] = 13112, - [SMALL_STATE(534)] = 13182, - [SMALL_STATE(535)] = 13256, - [SMALL_STATE(536)] = 13330, - [SMALL_STATE(537)] = 13404, - [SMALL_STATE(538)] = 13454, - [SMALL_STATE(539)] = 13528, - [SMALL_STATE(540)] = 13602, - [SMALL_STATE(541)] = 13676, - [SMALL_STATE(542)] = 13726, - [SMALL_STATE(543)] = 13800, - [SMALL_STATE(544)] = 13850, - [SMALL_STATE(545)] = 13903, - [SMALL_STATE(546)] = 13956, - [SMALL_STATE(547)] = 14009, - [SMALL_STATE(548)] = 14062, - [SMALL_STATE(549)] = 14108, - [SMALL_STATE(550)] = 14177, - [SMALL_STATE(551)] = 14246, - [SMALL_STATE(552)] = 14315, - [SMALL_STATE(553)] = 14384, - [SMALL_STATE(554)] = 14454, - [SMALL_STATE(555)] = 14521, - [SMALL_STATE(556)] = 14593, - [SMALL_STATE(557)] = 14651, - [SMALL_STATE(558)] = 14719, - [SMALL_STATE(559)] = 14783, - [SMALL_STATE(560)] = 14827, - [SMALL_STATE(561)] = 14893, - [SMALL_STATE(562)] = 14955, - [SMALL_STATE(563)] = 15009, - [SMALL_STATE(564)] = 15079, - [SMALL_STATE(565)] = 15135, - [SMALL_STATE(566)] = 15209, - [SMALL_STATE(567)] = 15277, - [SMALL_STATE(568)] = 15335, - [SMALL_STATE(569)] = 15381, - [SMALL_STATE(570)] = 15419, - [SMALL_STATE(571)] = 15477, - [SMALL_STATE(572)] = 15550, - [SMALL_STATE(573)] = 15625, - [SMALL_STATE(574)] = 15700, - [SMALL_STATE(575)] = 15772, - [SMALL_STATE(576)] = 15844, - [SMALL_STATE(577)] = 15914, - [SMALL_STATE(578)] = 15986, - [SMALL_STATE(579)] = 16058, - [SMALL_STATE(580)] = 16128, - [SMALL_STATE(581)] = 16200, - [SMALL_STATE(582)] = 16272, - [SMALL_STATE(583)] = 16344, - [SMALL_STATE(584)] = 16416, - [SMALL_STATE(585)] = 16452, - [SMALL_STATE(586)] = 16524, - [SMALL_STATE(587)] = 16596, - [SMALL_STATE(588)] = 16668, - [SMALL_STATE(589)] = 16740, - [SMALL_STATE(590)] = 16812, - [SMALL_STATE(591)] = 16884, - [SMALL_STATE(592)] = 16956, - [SMALL_STATE(593)] = 17028, - [SMALL_STATE(594)] = 17100, - [SMALL_STATE(595)] = 17172, - [SMALL_STATE(596)] = 17244, - [SMALL_STATE(597)] = 17316, - [SMALL_STATE(598)] = 17388, - [SMALL_STATE(599)] = 17460, - [SMALL_STATE(600)] = 17532, - [SMALL_STATE(601)] = 17604, - [SMALL_STATE(602)] = 17674, - [SMALL_STATE(603)] = 17746, - [SMALL_STATE(604)] = 17818, - [SMALL_STATE(605)] = 17890, - [SMALL_STATE(606)] = 17962, - [SMALL_STATE(607)] = 18034, - [SMALL_STATE(608)] = 18106, - [SMALL_STATE(609)] = 18178, - [SMALL_STATE(610)] = 18250, - [SMALL_STATE(611)] = 18320, - [SMALL_STATE(612)] = 18392, - [SMALL_STATE(613)] = 18462, - [SMALL_STATE(614)] = 18534, - [SMALL_STATE(615)] = 18606, - [SMALL_STATE(616)] = 18678, - [SMALL_STATE(617)] = 18750, - [SMALL_STATE(618)] = 18822, - [SMALL_STATE(619)] = 18891, - [SMALL_STATE(620)] = 18960, - [SMALL_STATE(621)] = 19029, - [SMALL_STATE(622)] = 19098, - [SMALL_STATE(623)] = 19167, - [SMALL_STATE(624)] = 19236, - [SMALL_STATE(625)] = 19305, - [SMALL_STATE(626)] = 19374, - [SMALL_STATE(627)] = 19443, - [SMALL_STATE(628)] = 19512, - [SMALL_STATE(629)] = 19581, - [SMALL_STATE(630)] = 19650, - [SMALL_STATE(631)] = 19719, - [SMALL_STATE(632)] = 19788, - [SMALL_STATE(633)] = 19857, - [SMALL_STATE(634)] = 19926, - [SMALL_STATE(635)] = 19959, - [SMALL_STATE(636)] = 20028, - [SMALL_STATE(637)] = 20061, - [SMALL_STATE(638)] = 20094, - [SMALL_STATE(639)] = 20127, - [SMALL_STATE(640)] = 20196, - [SMALL_STATE(641)] = 20265, - [SMALL_STATE(642)] = 20298, - [SMALL_STATE(643)] = 20331, - [SMALL_STATE(644)] = 20400, - [SMALL_STATE(645)] = 20469, - [SMALL_STATE(646)] = 20538, - [SMALL_STATE(647)] = 20607, - [SMALL_STATE(648)] = 20676, - [SMALL_STATE(649)] = 20745, - [SMALL_STATE(650)] = 20814, - [SMALL_STATE(651)] = 20847, - [SMALL_STATE(652)] = 20880, - [SMALL_STATE(653)] = 20913, - [SMALL_STATE(654)] = 20946, - [SMALL_STATE(655)] = 20979, - [SMALL_STATE(656)] = 21012, - [SMALL_STATE(657)] = 21081, - [SMALL_STATE(658)] = 21150, - [SMALL_STATE(659)] = 21183, - [SMALL_STATE(660)] = 21216, - [SMALL_STATE(661)] = 21249, - [SMALL_STATE(662)] = 21318, - [SMALL_STATE(663)] = 21387, - [SMALL_STATE(664)] = 21420, - [SMALL_STATE(665)] = 21453, - [SMALL_STATE(666)] = 21486, - [SMALL_STATE(667)] = 21519, - [SMALL_STATE(668)] = 21588, - [SMALL_STATE(669)] = 21622, - [SMALL_STATE(670)] = 21656, - [SMALL_STATE(671)] = 21687, - [SMALL_STATE(672)] = 21720, - [SMALL_STATE(673)] = 21751, - [SMALL_STATE(674)] = 21782, - [SMALL_STATE(675)] = 21815, - [SMALL_STATE(676)] = 21846, - [SMALL_STATE(677)] = 21879, - [SMALL_STATE(678)] = 21914, - [SMALL_STATE(679)] = 21945, - [SMALL_STATE(680)] = 21978, - [SMALL_STATE(681)] = 22013, - [SMALL_STATE(682)] = 22046, - [SMALL_STATE(683)] = 22077, - [SMALL_STATE(684)] = 22108, - [SMALL_STATE(685)] = 22139, - [SMALL_STATE(686)] = 22172, - [SMALL_STATE(687)] = 22205, - [SMALL_STATE(688)] = 22236, - [SMALL_STATE(689)] = 22271, - [SMALL_STATE(690)] = 22304, - [SMALL_STATE(691)] = 22337, - [SMALL_STATE(692)] = 22370, - [SMALL_STATE(693)] = 22401, - [SMALL_STATE(694)] = 22432, - [SMALL_STATE(695)] = 22465, - [SMALL_STATE(696)] = 22498, - [SMALL_STATE(697)] = 22529, - [SMALL_STATE(698)] = 22560, - [SMALL_STATE(699)] = 22591, - [SMALL_STATE(700)] = 22622, - [SMALL_STATE(701)] = 22655, - [SMALL_STATE(702)] = 22686, - [SMALL_STATE(703)] = 22719, - [SMALL_STATE(704)] = 22750, - [SMALL_STATE(705)] = 22783, - [SMALL_STATE(706)] = 22816, - [SMALL_STATE(707)] = 22849, - [SMALL_STATE(708)] = 22884, - [SMALL_STATE(709)] = 22915, - [SMALL_STATE(710)] = 22948, - [SMALL_STATE(711)] = 22981, - [SMALL_STATE(712)] = 23012, - [SMALL_STATE(713)] = 23052, - [SMALL_STATE(714)] = 23088, - [SMALL_STATE(715)] = 23135, - [SMALL_STATE(716)] = 23182, - [SMALL_STATE(717)] = 23231, - [SMALL_STATE(718)] = 23277, - [SMALL_STATE(719)] = 23315, - [SMALL_STATE(720)] = 23353, - [SMALL_STATE(721)] = 23399, - [SMALL_STATE(722)] = 23445, - [SMALL_STATE(723)] = 23491, - [SMALL_STATE(724)] = 23529, - [SMALL_STATE(725)] = 23575, - [SMALL_STATE(726)] = 23609, - [SMALL_STATE(727)] = 23655, - [SMALL_STATE(728)] = 23693, - [SMALL_STATE(729)] = 23739, - [SMALL_STATE(730)] = 23785, - [SMALL_STATE(731)] = 23831, - [SMALL_STATE(732)] = 23874, - [SMALL_STATE(733)] = 23917, - [SMALL_STATE(734)] = 23972, - [SMALL_STATE(735)] = 24005, - [SMALL_STATE(736)] = 24060, - [SMALL_STATE(737)] = 24088, - [SMALL_STATE(738)] = 24128, - [SMALL_STATE(739)] = 24156, - [SMALL_STATE(740)] = 24184, - [SMALL_STATE(741)] = 24212, - [SMALL_STATE(742)] = 24240, - [SMALL_STATE(743)] = 24280, - [SMALL_STATE(744)] = 24308, - [SMALL_STATE(745)] = 24348, - [SMALL_STATE(746)] = 24388, - [SMALL_STATE(747)] = 24422, - [SMALL_STATE(748)] = 24458, - [SMALL_STATE(749)] = 24498, - [SMALL_STATE(750)] = 24540, - [SMALL_STATE(751)] = 24584, - [SMALL_STATE(752)] = 24630, - [SMALL_STATE(753)] = 24676, - [SMALL_STATE(754)] = 24724, - [SMALL_STATE(755)] = 24752, - [SMALL_STATE(756)] = 24784, - [SMALL_STATE(757)] = 24812, - [SMALL_STATE(758)] = 24852, - [SMALL_STATE(759)] = 24892, - [SMALL_STATE(760)] = 24932, - [SMALL_STATE(761)] = 24972, - [SMALL_STATE(762)] = 25012, - [SMALL_STATE(763)] = 25052, - [SMALL_STATE(764)] = 25092, - [SMALL_STATE(765)] = 25132, - [SMALL_STATE(766)] = 25172, - [SMALL_STATE(767)] = 25212, - [SMALL_STATE(768)] = 25252, - [SMALL_STATE(769)] = 25280, - [SMALL_STATE(770)] = 25308, - [SMALL_STATE(771)] = 25336, - [SMALL_STATE(772)] = 25376, - [SMALL_STATE(773)] = 25416, - [SMALL_STATE(774)] = 25448, - [SMALL_STATE(775)] = 25488, - [SMALL_STATE(776)] = 25538, - [SMALL_STATE(777)] = 25578, - [SMALL_STATE(778)] = 25618, - [SMALL_STATE(779)] = 25658, - [SMALL_STATE(780)] = 25686, - [SMALL_STATE(781)] = 25726, - [SMALL_STATE(782)] = 25766, - [SMALL_STATE(783)] = 25806, - [SMALL_STATE(784)] = 25846, - [SMALL_STATE(785)] = 25886, - [SMALL_STATE(786)] = 25926, - [SMALL_STATE(787)] = 25966, - [SMALL_STATE(788)] = 25998, - [SMALL_STATE(789)] = 26038, - [SMALL_STATE(790)] = 26078, - [SMALL_STATE(791)] = 26110, - [SMALL_STATE(792)] = 26142, - [SMALL_STATE(793)] = 26182, - [SMALL_STATE(794)] = 26222, - [SMALL_STATE(795)] = 26262, - [SMALL_STATE(796)] = 26302, - [SMALL_STATE(797)] = 26337, - [SMALL_STATE(798)] = 26382, - [SMALL_STATE(799)] = 26427, - [SMALL_STATE(800)] = 26470, - [SMALL_STATE(801)] = 26497, - [SMALL_STATE(802)] = 26542, - [SMALL_STATE(803)] = 26587, - [SMALL_STATE(804)] = 26614, - [SMALL_STATE(805)] = 26641, - [SMALL_STATE(806)] = 26668, - [SMALL_STATE(807)] = 26695, - [SMALL_STATE(808)] = 26740, - [SMALL_STATE(809)] = 26771, - [SMALL_STATE(810)] = 26820, - [SMALL_STATE(811)] = 26853, - [SMALL_STATE(812)] = 26898, - [SMALL_STATE(813)] = 26943, - [SMALL_STATE(814)] = 26992, - [SMALL_STATE(815)] = 27029, - [SMALL_STATE(816)] = 27056, - [SMALL_STATE(817)] = 27095, - [SMALL_STATE(818)] = 27136, - [SMALL_STATE(819)] = 27181, - [SMALL_STATE(820)] = 27208, - [SMALL_STATE(821)] = 27237, - [SMALL_STATE(822)] = 27264, - [SMALL_STATE(823)] = 27309, - [SMALL_STATE(824)] = 27336, - [SMALL_STATE(825)] = 27363, - [SMALL_STATE(826)] = 27408, - [SMALL_STATE(827)] = 27434, - [SMALL_STATE(828)] = 27460, - [SMALL_STATE(829)] = 27486, - [SMALL_STATE(830)] = 27514, - [SMALL_STATE(831)] = 27540, - [SMALL_STATE(832)] = 27566, - [SMALL_STATE(833)] = 27592, - [SMALL_STATE(834)] = 27618, - [SMALL_STATE(835)] = 27644, - [SMALL_STATE(836)] = 27680, - [SMALL_STATE(837)] = 27706, - [SMALL_STATE(838)] = 27742, - [SMALL_STATE(839)] = 27768, - [SMALL_STATE(840)] = 27794, - [SMALL_STATE(841)] = 27830, - [SMALL_STATE(842)] = 27856, - [SMALL_STATE(843)] = 27882, - [SMALL_STATE(844)] = 27908, - [SMALL_STATE(845)] = 27934, - [SMALL_STATE(846)] = 27970, - [SMALL_STATE(847)] = 28007, - [SMALL_STATE(848)] = 28043, - [SMALL_STATE(849)] = 28079, - [SMALL_STATE(850)] = 28115, - [SMALL_STATE(851)] = 28151, - [SMALL_STATE(852)] = 28187, - [SMALL_STATE(853)] = 28223, - [SMALL_STATE(854)] = 28251, - [SMALL_STATE(855)] = 28282, - [SMALL_STATE(856)] = 28312, - [SMALL_STATE(857)] = 28342, - [SMALL_STATE(858)] = 28372, - [SMALL_STATE(859)] = 28402, - [SMALL_STATE(860)] = 28432, - [SMALL_STATE(861)] = 28462, - [SMALL_STATE(862)] = 28491, - [SMALL_STATE(863)] = 28520, - [SMALL_STATE(864)] = 28549, - [SMALL_STATE(865)] = 28569, - [SMALL_STATE(866)] = 28589, - [SMALL_STATE(867)] = 28609, - [SMALL_STATE(868)] = 28632, - [SMALL_STATE(869)] = 28655, - [SMALL_STATE(870)] = 28670, - [SMALL_STATE(871)] = 28693, - [SMALL_STATE(872)] = 28724, - [SMALL_STATE(873)] = 28747, - [SMALL_STATE(874)] = 28770, - [SMALL_STATE(875)] = 28793, - [SMALL_STATE(876)] = 28808, - [SMALL_STATE(877)] = 28839, - [SMALL_STATE(878)] = 28862, - [SMALL_STATE(879)] = 28885, - [SMALL_STATE(880)] = 28900, - [SMALL_STATE(881)] = 28931, - [SMALL_STATE(882)] = 28962, - [SMALL_STATE(883)] = 28985, - [SMALL_STATE(884)] = 29005, - [SMALL_STATE(885)] = 29025, - [SMALL_STATE(886)] = 29045, - [SMALL_STATE(887)] = 29065, - [SMALL_STATE(888)] = 29085, - [SMALL_STATE(889)] = 29105, - [SMALL_STATE(890)] = 29125, - [SMALL_STATE(891)] = 29153, - [SMALL_STATE(892)] = 29181, - [SMALL_STATE(893)] = 29201, - [SMALL_STATE(894)] = 29221, - [SMALL_STATE(895)] = 29241, - [SMALL_STATE(896)] = 29261, - [SMALL_STATE(897)] = 29281, - [SMALL_STATE(898)] = 29301, - [SMALL_STATE(899)] = 29321, - [SMALL_STATE(900)] = 29349, - [SMALL_STATE(901)] = 29369, - [SMALL_STATE(902)] = 29386, - [SMALL_STATE(903)] = 29411, - [SMALL_STATE(904)] = 29424, - [SMALL_STATE(905)] = 29437, - [SMALL_STATE(906)] = 29462, - [SMALL_STATE(907)] = 29479, - [SMALL_STATE(908)] = 29492, - [SMALL_STATE(909)] = 29505, - [SMALL_STATE(910)] = 29530, - [SMALL_STATE(911)] = 29549, - [SMALL_STATE(912)] = 29566, - [SMALL_STATE(913)] = 29579, - [SMALL_STATE(914)] = 29598, - [SMALL_STATE(915)] = 29615, - [SMALL_STATE(916)] = 29640, - [SMALL_STATE(917)] = 29652, - [SMALL_STATE(918)] = 29664, - [SMALL_STATE(919)] = 29676, - [SMALL_STATE(920)] = 29698, - [SMALL_STATE(921)] = 29720, - [SMALL_STATE(922)] = 29742, - [SMALL_STATE(923)] = 29764, - [SMALL_STATE(924)] = 29786, - [SMALL_STATE(925)] = 29804, - [SMALL_STATE(926)] = 29816, - [SMALL_STATE(927)] = 29828, - [SMALL_STATE(928)] = 29840, - [SMALL_STATE(929)] = 29862, - [SMALL_STATE(930)] = 29884, - [SMALL_STATE(931)] = 29896, - [SMALL_STATE(932)] = 29914, - [SMALL_STATE(933)] = 29934, - [SMALL_STATE(934)] = 29952, - [SMALL_STATE(935)] = 29974, - [SMALL_STATE(936)] = 29992, - [SMALL_STATE(937)] = 30010, - [SMALL_STATE(938)] = 30021, - [SMALL_STATE(939)] = 30038, - [SMALL_STATE(940)] = 30049, - [SMALL_STATE(941)] = 30060, - [SMALL_STATE(942)] = 30071, - [SMALL_STATE(943)] = 30090, - [SMALL_STATE(944)] = 30109, - [SMALL_STATE(945)] = 30126, - [SMALL_STATE(946)] = 30137, - [SMALL_STATE(947)] = 30154, - [SMALL_STATE(948)] = 30171, - [SMALL_STATE(949)] = 30190, - [SMALL_STATE(950)] = 30207, - [SMALL_STATE(951)] = 30218, - [SMALL_STATE(952)] = 30229, - [SMALL_STATE(953)] = 30245, - [SMALL_STATE(954)] = 30261, - [SMALL_STATE(955)] = 30277, - [SMALL_STATE(956)] = 30293, - [SMALL_STATE(957)] = 30309, - [SMALL_STATE(958)] = 30325, - [SMALL_STATE(959)] = 30341, - [SMALL_STATE(960)] = 30357, - [SMALL_STATE(961)] = 30373, - [SMALL_STATE(962)] = 30389, - [SMALL_STATE(963)] = 30405, - [SMALL_STATE(964)] = 30421, - [SMALL_STATE(965)] = 30437, - [SMALL_STATE(966)] = 30447, - [SMALL_STATE(967)] = 30463, - [SMALL_STATE(968)] = 30473, - [SMALL_STATE(969)] = 30483, - [SMALL_STATE(970)] = 30493, - [SMALL_STATE(971)] = 30509, - [SMALL_STATE(972)] = 30525, - [SMALL_STATE(973)] = 30541, - [SMALL_STATE(974)] = 30551, - [SMALL_STATE(975)] = 30567, - [SMALL_STATE(976)] = 30577, - [SMALL_STATE(977)] = 30593, - [SMALL_STATE(978)] = 30609, - [SMALL_STATE(979)] = 30625, - [SMALL_STATE(980)] = 30641, - [SMALL_STATE(981)] = 30657, - [SMALL_STATE(982)] = 30673, - [SMALL_STATE(983)] = 30689, - [SMALL_STATE(984)] = 30699, - [SMALL_STATE(985)] = 30709, - [SMALL_STATE(986)] = 30719, - [SMALL_STATE(987)] = 30729, - [SMALL_STATE(988)] = 30745, - [SMALL_STATE(989)] = 30759, - [SMALL_STATE(990)] = 30775, - [SMALL_STATE(991)] = 30791, - [SMALL_STATE(992)] = 30801, - [SMALL_STATE(993)] = 30817, - [SMALL_STATE(994)] = 30830, - [SMALL_STATE(995)] = 30843, - [SMALL_STATE(996)] = 30856, - [SMALL_STATE(997)] = 30869, - [SMALL_STATE(998)] = 30882, - [SMALL_STATE(999)] = 30895, - [SMALL_STATE(1000)] = 30908, - [SMALL_STATE(1001)] = 30921, - [SMALL_STATE(1002)] = 30934, - [SMALL_STATE(1003)] = 30947, - [SMALL_STATE(1004)] = 30960, - [SMALL_STATE(1005)] = 30973, - [SMALL_STATE(1006)] = 30986, - [SMALL_STATE(1007)] = 30997, - [SMALL_STATE(1008)] = 31010, - [SMALL_STATE(1009)] = 31023, - [SMALL_STATE(1010)] = 31036, - [SMALL_STATE(1011)] = 31049, - [SMALL_STATE(1012)] = 31062, - [SMALL_STATE(1013)] = 31075, - [SMALL_STATE(1014)] = 31088, - [SMALL_STATE(1015)] = 31101, - [SMALL_STATE(1016)] = 31114, - [SMALL_STATE(1017)] = 31127, - [SMALL_STATE(1018)] = 31140, - [SMALL_STATE(1019)] = 31153, - [SMALL_STATE(1020)] = 31166, - [SMALL_STATE(1021)] = 31179, - [SMALL_STATE(1022)] = 31192, - [SMALL_STATE(1023)] = 31205, - [SMALL_STATE(1024)] = 31218, - [SMALL_STATE(1025)] = 31231, - [SMALL_STATE(1026)] = 31244, - [SMALL_STATE(1027)] = 31257, - [SMALL_STATE(1028)] = 31268, - [SMALL_STATE(1029)] = 31281, - [SMALL_STATE(1030)] = 31290, - [SMALL_STATE(1031)] = 31303, - [SMALL_STATE(1032)] = 31312, - [SMALL_STATE(1033)] = 31325, - [SMALL_STATE(1034)] = 31338, - [SMALL_STATE(1035)] = 31351, - [SMALL_STATE(1036)] = 31364, - [SMALL_STATE(1037)] = 31377, - [SMALL_STATE(1038)] = 31387, - [SMALL_STATE(1039)] = 31397, - [SMALL_STATE(1040)] = 31407, - [SMALL_STATE(1041)] = 31415, - [SMALL_STATE(1042)] = 31423, - [SMALL_STATE(1043)] = 31433, - [SMALL_STATE(1044)] = 31443, - [SMALL_STATE(1045)] = 31453, - [SMALL_STATE(1046)] = 31461, - [SMALL_STATE(1047)] = 31471, - [SMALL_STATE(1048)] = 31481, - [SMALL_STATE(1049)] = 31491, - [SMALL_STATE(1050)] = 31499, - [SMALL_STATE(1051)] = 31507, - [SMALL_STATE(1052)] = 31517, - [SMALL_STATE(1053)] = 31525, - [SMALL_STATE(1054)] = 31535, - [SMALL_STATE(1055)] = 31543, - [SMALL_STATE(1056)] = 31553, - [SMALL_STATE(1057)] = 31561, - [SMALL_STATE(1058)] = 31569, - [SMALL_STATE(1059)] = 31579, - [SMALL_STATE(1060)] = 31589, - [SMALL_STATE(1061)] = 31597, - [SMALL_STATE(1062)] = 31605, - [SMALL_STATE(1063)] = 31615, - [SMALL_STATE(1064)] = 31623, - [SMALL_STATE(1065)] = 31633, - [SMALL_STATE(1066)] = 31643, - [SMALL_STATE(1067)] = 31653, - [SMALL_STATE(1068)] = 31663, - [SMALL_STATE(1069)] = 31671, - [SMALL_STATE(1070)] = 31681, - [SMALL_STATE(1071)] = 31691, - [SMALL_STATE(1072)] = 31701, - [SMALL_STATE(1073)] = 31711, - [SMALL_STATE(1074)] = 31721, - [SMALL_STATE(1075)] = 31731, - [SMALL_STATE(1076)] = 31741, - [SMALL_STATE(1077)] = 31751, - [SMALL_STATE(1078)] = 31761, - [SMALL_STATE(1079)] = 31771, - [SMALL_STATE(1080)] = 31781, - [SMALL_STATE(1081)] = 31791, - [SMALL_STATE(1082)] = 31801, - [SMALL_STATE(1083)] = 31811, - [SMALL_STATE(1084)] = 31819, - [SMALL_STATE(1085)] = 31829, - [SMALL_STATE(1086)] = 31839, - [SMALL_STATE(1087)] = 31849, - [SMALL_STATE(1088)] = 31857, - [SMALL_STATE(1089)] = 31867, - [SMALL_STATE(1090)] = 31877, - [SMALL_STATE(1091)] = 31884, - [SMALL_STATE(1092)] = 31891, - [SMALL_STATE(1093)] = 31898, - [SMALL_STATE(1094)] = 31905, - [SMALL_STATE(1095)] = 31912, - [SMALL_STATE(1096)] = 31919, - [SMALL_STATE(1097)] = 31926, - [SMALL_STATE(1098)] = 31933, - [SMALL_STATE(1099)] = 31940, - [SMALL_STATE(1100)] = 31947, - [SMALL_STATE(1101)] = 31954, - [SMALL_STATE(1102)] = 31961, - [SMALL_STATE(1103)] = 31968, - [SMALL_STATE(1104)] = 31975, - [SMALL_STATE(1105)] = 31982, - [SMALL_STATE(1106)] = 31989, - [SMALL_STATE(1107)] = 31996, - [SMALL_STATE(1108)] = 32003, - [SMALL_STATE(1109)] = 32010, - [SMALL_STATE(1110)] = 32017, - [SMALL_STATE(1111)] = 32024, - [SMALL_STATE(1112)] = 32031, - [SMALL_STATE(1113)] = 32038, - [SMALL_STATE(1114)] = 32045, - [SMALL_STATE(1115)] = 32052, - [SMALL_STATE(1116)] = 32059, - [SMALL_STATE(1117)] = 32066, - [SMALL_STATE(1118)] = 32073, - [SMALL_STATE(1119)] = 32080, - [SMALL_STATE(1120)] = 32087, - [SMALL_STATE(1121)] = 32094, - [SMALL_STATE(1122)] = 32101, - [SMALL_STATE(1123)] = 32108, - [SMALL_STATE(1124)] = 32115, - [SMALL_STATE(1125)] = 32122, - [SMALL_STATE(1126)] = 32129, - [SMALL_STATE(1127)] = 32136, - [SMALL_STATE(1128)] = 32143, - [SMALL_STATE(1129)] = 32150, - [SMALL_STATE(1130)] = 32157, - [SMALL_STATE(1131)] = 32164, - [SMALL_STATE(1132)] = 32171, - [SMALL_STATE(1133)] = 32178, - [SMALL_STATE(1134)] = 32185, - [SMALL_STATE(1135)] = 32192, - [SMALL_STATE(1136)] = 32199, - [SMALL_STATE(1137)] = 32206, - [SMALL_STATE(1138)] = 32213, - [SMALL_STATE(1139)] = 32220, - [SMALL_STATE(1140)] = 32227, - [SMALL_STATE(1141)] = 32234, - [SMALL_STATE(1142)] = 32241, - [SMALL_STATE(1143)] = 32248, - [SMALL_STATE(1144)] = 32255, - [SMALL_STATE(1145)] = 32262, - [SMALL_STATE(1146)] = 32269, - [SMALL_STATE(1147)] = 32276, - [SMALL_STATE(1148)] = 32283, - [SMALL_STATE(1149)] = 32290, - [SMALL_STATE(1150)] = 32297, - [SMALL_STATE(1151)] = 32304, - [SMALL_STATE(1152)] = 32311, - [SMALL_STATE(1153)] = 32318, - [SMALL_STATE(1154)] = 32325, - [SMALL_STATE(1155)] = 32332, - [SMALL_STATE(1156)] = 32339, - [SMALL_STATE(1157)] = 32346, - [SMALL_STATE(1158)] = 32353, - [SMALL_STATE(1159)] = 32360, - [SMALL_STATE(1160)] = 32367, - [SMALL_STATE(1161)] = 32374, - [SMALL_STATE(1162)] = 32381, - [SMALL_STATE(1163)] = 32388, - [SMALL_STATE(1164)] = 32395, - [SMALL_STATE(1165)] = 32402, - [SMALL_STATE(1166)] = 32409, - [SMALL_STATE(1167)] = 32416, - [SMALL_STATE(1168)] = 32423, - [SMALL_STATE(1169)] = 32430, - [SMALL_STATE(1170)] = 32437, - [SMALL_STATE(1171)] = 32444, - [SMALL_STATE(1172)] = 32451, - [SMALL_STATE(1173)] = 32458, - [SMALL_STATE(1174)] = 32465, - [SMALL_STATE(1175)] = 32472, - [SMALL_STATE(1176)] = 32479, - [SMALL_STATE(1177)] = 32486, - [SMALL_STATE(1178)] = 32493, - [SMALL_STATE(1179)] = 32500, - [SMALL_STATE(1180)] = 32507, - [SMALL_STATE(1181)] = 32514, - [SMALL_STATE(1182)] = 32521, - [SMALL_STATE(1183)] = 32528, - [SMALL_STATE(1184)] = 32535, - [SMALL_STATE(1185)] = 32542, - [SMALL_STATE(1186)] = 32549, - [SMALL_STATE(1187)] = 32556, - [SMALL_STATE(1188)] = 32563, - [SMALL_STATE(1189)] = 32570, - [SMALL_STATE(1190)] = 32577, - [SMALL_STATE(1191)] = 32584, - [SMALL_STATE(1192)] = 32591, - [SMALL_STATE(1193)] = 32598, - [SMALL_STATE(1194)] = 32605, - [SMALL_STATE(1195)] = 32612, - [SMALL_STATE(1196)] = 32619, - [SMALL_STATE(1197)] = 32626, - [SMALL_STATE(1198)] = 32633, - [SMALL_STATE(1199)] = 32640, - [SMALL_STATE(1200)] = 32647, - [SMALL_STATE(1201)] = 32654, - [SMALL_STATE(1202)] = 32661, - [SMALL_STATE(1203)] = 32668, - [SMALL_STATE(1204)] = 32675, - [SMALL_STATE(1205)] = 32682, - [SMALL_STATE(1206)] = 32689, - [SMALL_STATE(1207)] = 32696, - [SMALL_STATE(1208)] = 32703, - [SMALL_STATE(1209)] = 32710, - [SMALL_STATE(1210)] = 32717, - [SMALL_STATE(1211)] = 32724, - [SMALL_STATE(1212)] = 32731, - [SMALL_STATE(1213)] = 32738, - [SMALL_STATE(1214)] = 32745, - [SMALL_STATE(1215)] = 32752, - [SMALL_STATE(1216)] = 32759, - [SMALL_STATE(1217)] = 32766, - [SMALL_STATE(1218)] = 32773, - [SMALL_STATE(1219)] = 32780, - [SMALL_STATE(1220)] = 32787, - [SMALL_STATE(1221)] = 32794, - [SMALL_STATE(1222)] = 32801, - [SMALL_STATE(1223)] = 32808, - [SMALL_STATE(1224)] = 32815, - [SMALL_STATE(1225)] = 32822, - [SMALL_STATE(1226)] = 32829, - [SMALL_STATE(1227)] = 32836, - [SMALL_STATE(1228)] = 32843, - [SMALL_STATE(1229)] = 32850, - [SMALL_STATE(1230)] = 32857, - [SMALL_STATE(1231)] = 32864, - [SMALL_STATE(1232)] = 32871, - [SMALL_STATE(1233)] = 32878, - [SMALL_STATE(1234)] = 32885, - [SMALL_STATE(1235)] = 32892, - [SMALL_STATE(1236)] = 32899, - [SMALL_STATE(1237)] = 32906, - [SMALL_STATE(1238)] = 32913, - [SMALL_STATE(1239)] = 32920, - [SMALL_STATE(1240)] = 32927, - [SMALL_STATE(1241)] = 32934, - [SMALL_STATE(1242)] = 32941, - [SMALL_STATE(1243)] = 32948, - [SMALL_STATE(1244)] = 32955, - [SMALL_STATE(1245)] = 32962, - [SMALL_STATE(1246)] = 32969, - [SMALL_STATE(1247)] = 32976, - [SMALL_STATE(1248)] = 32983, - [SMALL_STATE(1249)] = 32990, - [SMALL_STATE(1250)] = 32997, - [SMALL_STATE(1251)] = 33004, - [SMALL_STATE(1252)] = 33011, - [SMALL_STATE(1253)] = 33018, - [SMALL_STATE(1254)] = 33025, + [SMALL_STATE(353)] = 0, + [SMALL_STATE(354)] = 98, + [SMALL_STATE(355)] = 193, + [SMALL_STATE(356)] = 288, + [SMALL_STATE(357)] = 360, + [SMALL_STATE(358)] = 452, + [SMALL_STATE(359)] = 522, + [SMALL_STATE(360)] = 594, + [SMALL_STATE(361)] = 666, + [SMALL_STATE(362)] = 736, + [SMALL_STATE(363)] = 808, + [SMALL_STATE(364)] = 878, + [SMALL_STATE(365)] = 948, + [SMALL_STATE(366)] = 1045, + [SMALL_STATE(367)] = 1142, + [SMALL_STATE(368)] = 1239, + [SMALL_STATE(369)] = 1336, + [SMALL_STATE(370)] = 1425, + [SMALL_STATE(371)] = 1514, + [SMALL_STATE(372)] = 1575, + [SMALL_STATE(373)] = 1636, + [SMALL_STATE(374)] = 1733, + [SMALL_STATE(375)] = 1830, + [SMALL_STATE(376)] = 1919, + [SMALL_STATE(377)] = 2016, + [SMALL_STATE(378)] = 2105, + [SMALL_STATE(379)] = 2172, + [SMALL_STATE(380)] = 2233, + [SMALL_STATE(381)] = 2330, + [SMALL_STATE(382)] = 2427, + [SMALL_STATE(383)] = 2524, + [SMALL_STATE(384)] = 2613, + [SMALL_STATE(385)] = 2710, + [SMALL_STATE(386)] = 2807, + [SMALL_STATE(387)] = 2896, + [SMALL_STATE(388)] = 2993, + [SMALL_STATE(389)] = 3082, + [SMALL_STATE(390)] = 3179, + [SMALL_STATE(391)] = 3268, + [SMALL_STATE(392)] = 3357, + [SMALL_STATE(393)] = 3446, + [SMALL_STATE(394)] = 3542, + [SMALL_STATE(395)] = 3597, + [SMALL_STATE(396)] = 3686, + [SMALL_STATE(397)] = 3741, + [SMALL_STATE(398)] = 3828, + [SMALL_STATE(399)] = 3915, + [SMALL_STATE(400)] = 4002, + [SMALL_STATE(401)] = 4089, + [SMALL_STATE(402)] = 4176, + [SMALL_STATE(403)] = 4263, + [SMALL_STATE(404)] = 4343, + [SMALL_STATE(405)] = 4419, + [SMALL_STATE(406)] = 4499, + [SMALL_STATE(407)] = 4579, + [SMALL_STATE(408)] = 4659, + [SMALL_STATE(409)] = 4739, + [SMALL_STATE(410)] = 4819, + [SMALL_STATE(411)] = 4899, + [SMALL_STATE(412)] = 4979, + [SMALL_STATE(413)] = 5059, + [SMALL_STATE(414)] = 5139, + [SMALL_STATE(415)] = 5219, + [SMALL_STATE(416)] = 5299, + [SMALL_STATE(417)] = 5379, + [SMALL_STATE(418)] = 5459, + [SMALL_STATE(419)] = 5539, + [SMALL_STATE(420)] = 5619, + [SMALL_STATE(421)] = 5699, + [SMALL_STATE(422)] = 5779, + [SMALL_STATE(423)] = 5859, + [SMALL_STATE(424)] = 5939, + [SMALL_STATE(425)] = 6019, + [SMALL_STATE(426)] = 6099, + [SMALL_STATE(427)] = 6179, + [SMALL_STATE(428)] = 6259, + [SMALL_STATE(429)] = 6339, + [SMALL_STATE(430)] = 6419, + [SMALL_STATE(431)] = 6499, + [SMALL_STATE(432)] = 6579, + [SMALL_STATE(433)] = 6659, + [SMALL_STATE(434)] = 6739, + [SMALL_STATE(435)] = 6819, + [SMALL_STATE(436)] = 6892, + [SMALL_STATE(437)] = 6953, + [SMALL_STATE(438)] = 7030, + [SMALL_STATE(439)] = 7109, + [SMALL_STATE(440)] = 7190, + [SMALL_STATE(441)] = 7249, + [SMALL_STATE(442)] = 7312, + [SMALL_STATE(443)] = 7379, + [SMALL_STATE(444)] = 7462, + [SMALL_STATE(445)] = 7523, + [SMALL_STATE(446)] = 7596, + [SMALL_STATE(447)] = 7673, + [SMALL_STATE(448)] = 7750, + [SMALL_STATE(449)] = 7823, + [SMALL_STATE(450)] = 7894, + [SMALL_STATE(451)] = 7971, + [SMALL_STATE(452)] = 8038, + [SMALL_STATE(453)] = 8111, + [SMALL_STATE(454)] = 8188, + [SMALL_STATE(455)] = 8265, + [SMALL_STATE(456)] = 8330, + [SMALL_STATE(457)] = 8403, + [SMALL_STATE(458)] = 8476, + [SMALL_STATE(459)] = 8551, + [SMALL_STATE(460)] = 8628, + [SMALL_STATE(461)] = 8689, + [SMALL_STATE(462)] = 8766, + [SMALL_STATE(463)] = 8827, + [SMALL_STATE(464)] = 8878, + [SMALL_STATE(465)] = 8955, + [SMALL_STATE(466)] = 9028, + [SMALL_STATE(467)] = 9105, + [SMALL_STATE(468)] = 9178, + [SMALL_STATE(469)] = 9255, + [SMALL_STATE(470)] = 9340, + [SMALL_STATE(471)] = 9413, + [SMALL_STATE(472)] = 9490, + [SMALL_STATE(473)] = 9563, + [SMALL_STATE(474)] = 9636, + [SMALL_STATE(475)] = 9713, + [SMALL_STATE(476)] = 9790, + [SMALL_STATE(477)] = 9879, + [SMALL_STATE(478)] = 9956, + [SMALL_STATE(479)] = 10033, + [SMALL_STATE(480)] = 10110, + [SMALL_STATE(481)] = 10184, + [SMALL_STATE(482)] = 10254, + [SMALL_STATE(483)] = 10304, + [SMALL_STATE(484)] = 10378, + [SMALL_STATE(485)] = 10428, + [SMALL_STATE(486)] = 10502, + [SMALL_STATE(487)] = 10552, + [SMALL_STATE(488)] = 10626, + [SMALL_STATE(489)] = 10676, + [SMALL_STATE(490)] = 10750, + [SMALL_STATE(491)] = 10824, + [SMALL_STATE(492)] = 10874, + [SMALL_STATE(493)] = 10948, + [SMALL_STATE(494)] = 11018, + [SMALL_STATE(495)] = 11092, + [SMALL_STATE(496)] = 11162, + [SMALL_STATE(497)] = 11236, + [SMALL_STATE(498)] = 11306, + [SMALL_STATE(499)] = 11376, + [SMALL_STATE(500)] = 11446, + [SMALL_STATE(501)] = 11516, + [SMALL_STATE(502)] = 11586, + [SMALL_STATE(503)] = 11656, + [SMALL_STATE(504)] = 11726, + [SMALL_STATE(505)] = 11788, + [SMALL_STATE(506)] = 11838, + [SMALL_STATE(507)] = 11908, + [SMALL_STATE(508)] = 11978, + [SMALL_STATE(509)] = 12048, + [SMALL_STATE(510)] = 12118, + [SMALL_STATE(511)] = 12168, + [SMALL_STATE(512)] = 12238, + [SMALL_STATE(513)] = 12312, + [SMALL_STATE(514)] = 12362, + [SMALL_STATE(515)] = 12412, + [SMALL_STATE(516)] = 12486, + [SMALL_STATE(517)] = 12560, + [SMALL_STATE(518)] = 12634, + [SMALL_STATE(519)] = 12684, + [SMALL_STATE(520)] = 12758, + [SMALL_STATE(521)] = 12832, + [SMALL_STATE(522)] = 12906, + [SMALL_STATE(523)] = 12980, + [SMALL_STATE(524)] = 13054, + [SMALL_STATE(525)] = 13128, + [SMALL_STATE(526)] = 13202, + [SMALL_STATE(527)] = 13276, + [SMALL_STATE(528)] = 13326, + [SMALL_STATE(529)] = 13376, + [SMALL_STATE(530)] = 13450, + [SMALL_STATE(531)] = 13524, + [SMALL_STATE(532)] = 13598, + [SMALL_STATE(533)] = 13652, + [SMALL_STATE(534)] = 13702, + [SMALL_STATE(535)] = 13776, + [SMALL_STATE(536)] = 13850, + [SMALL_STATE(537)] = 13903, + [SMALL_STATE(538)] = 13956, + [SMALL_STATE(539)] = 14009, + [SMALL_STATE(540)] = 14062, + [SMALL_STATE(541)] = 14108, + [SMALL_STATE(542)] = 14177, + [SMALL_STATE(543)] = 14246, + [SMALL_STATE(544)] = 14315, + [SMALL_STATE(545)] = 14384, + [SMALL_STATE(546)] = 14454, + [SMALL_STATE(547)] = 14521, + [SMALL_STATE(548)] = 14589, + [SMALL_STATE(549)] = 14653, + [SMALL_STATE(550)] = 14715, + [SMALL_STATE(551)] = 14773, + [SMALL_STATE(552)] = 14845, + [SMALL_STATE(553)] = 14901, + [SMALL_STATE(554)] = 14955, + [SMALL_STATE(555)] = 14999, + [SMALL_STATE(556)] = 15065, + [SMALL_STATE(557)] = 15133, + [SMALL_STATE(558)] = 15203, + [SMALL_STATE(559)] = 15277, + [SMALL_STATE(560)] = 15335, + [SMALL_STATE(561)] = 15373, + [SMALL_STATE(562)] = 15431, + [SMALL_STATE(563)] = 15477, + [SMALL_STATE(564)] = 15550, + [SMALL_STATE(565)] = 15625, + [SMALL_STATE(566)] = 15700, + [SMALL_STATE(567)] = 15770, + [SMALL_STATE(568)] = 15842, + [SMALL_STATE(569)] = 15914, + [SMALL_STATE(570)] = 15986, + [SMALL_STATE(571)] = 16058, + [SMALL_STATE(572)] = 16130, + [SMALL_STATE(573)] = 16202, + [SMALL_STATE(574)] = 16274, + [SMALL_STATE(575)] = 16346, + [SMALL_STATE(576)] = 16418, + [SMALL_STATE(577)] = 16490, + [SMALL_STATE(578)] = 16562, + [SMALL_STATE(579)] = 16634, + [SMALL_STATE(580)] = 16706, + [SMALL_STATE(581)] = 16776, + [SMALL_STATE(582)] = 16848, + [SMALL_STATE(583)] = 16920, + [SMALL_STATE(584)] = 16992, + [SMALL_STATE(585)] = 17064, + [SMALL_STATE(586)] = 17136, + [SMALL_STATE(587)] = 17208, + [SMALL_STATE(588)] = 17280, + [SMALL_STATE(589)] = 17352, + [SMALL_STATE(590)] = 17424, + [SMALL_STATE(591)] = 17496, + [SMALL_STATE(592)] = 17568, + [SMALL_STATE(593)] = 17640, + [SMALL_STATE(594)] = 17712, + [SMALL_STATE(595)] = 17784, + [SMALL_STATE(596)] = 17856, + [SMALL_STATE(597)] = 17926, + [SMALL_STATE(598)] = 17998, + [SMALL_STATE(599)] = 18068, + [SMALL_STATE(600)] = 18140, + [SMALL_STATE(601)] = 18212, + [SMALL_STATE(602)] = 18248, + [SMALL_STATE(603)] = 18320, + [SMALL_STATE(604)] = 18392, + [SMALL_STATE(605)] = 18464, + [SMALL_STATE(606)] = 18534, + [SMALL_STATE(607)] = 18606, + [SMALL_STATE(608)] = 18678, + [SMALL_STATE(609)] = 18750, + [SMALL_STATE(610)] = 18822, + [SMALL_STATE(611)] = 18891, + [SMALL_STATE(612)] = 18960, + [SMALL_STATE(613)] = 19029, + [SMALL_STATE(614)] = 19098, + [SMALL_STATE(615)] = 19167, + [SMALL_STATE(616)] = 19236, + [SMALL_STATE(617)] = 19305, + [SMALL_STATE(618)] = 19338, + [SMALL_STATE(619)] = 19407, + [SMALL_STATE(620)] = 19440, + [SMALL_STATE(621)] = 19473, + [SMALL_STATE(622)] = 19506, + [SMALL_STATE(623)] = 19575, + [SMALL_STATE(624)] = 19644, + [SMALL_STATE(625)] = 19713, + [SMALL_STATE(626)] = 19746, + [SMALL_STATE(627)] = 19815, + [SMALL_STATE(628)] = 19884, + [SMALL_STATE(629)] = 19917, + [SMALL_STATE(630)] = 19986, + [SMALL_STATE(631)] = 20055, + [SMALL_STATE(632)] = 20088, + [SMALL_STATE(633)] = 20121, + [SMALL_STATE(634)] = 20154, + [SMALL_STATE(635)] = 20187, + [SMALL_STATE(636)] = 20220, + [SMALL_STATE(637)] = 20253, + [SMALL_STATE(638)] = 20286, + [SMALL_STATE(639)] = 20319, + [SMALL_STATE(640)] = 20352, + [SMALL_STATE(641)] = 20421, + [SMALL_STATE(642)] = 20490, + [SMALL_STATE(643)] = 20559, + [SMALL_STATE(644)] = 20592, + [SMALL_STATE(645)] = 20661, + [SMALL_STATE(646)] = 20694, + [SMALL_STATE(647)] = 20763, + [SMALL_STATE(648)] = 20832, + [SMALL_STATE(649)] = 20901, + [SMALL_STATE(650)] = 20970, + [SMALL_STATE(651)] = 21039, + [SMALL_STATE(652)] = 21108, + [SMALL_STATE(653)] = 21141, + [SMALL_STATE(654)] = 21210, + [SMALL_STATE(655)] = 21279, + [SMALL_STATE(656)] = 21348, + [SMALL_STATE(657)] = 21417, + [SMALL_STATE(658)] = 21486, + [SMALL_STATE(659)] = 21555, + [SMALL_STATE(660)] = 21588, + [SMALL_STATE(661)] = 21622, + [SMALL_STATE(662)] = 21656, + [SMALL_STATE(663)] = 21689, + [SMALL_STATE(664)] = 21720, + [SMALL_STATE(665)] = 21755, + [SMALL_STATE(666)] = 21786, + [SMALL_STATE(667)] = 21817, + [SMALL_STATE(668)] = 21848, + [SMALL_STATE(669)] = 21879, + [SMALL_STATE(670)] = 21910, + [SMALL_STATE(671)] = 21943, + [SMALL_STATE(672)] = 21974, + [SMALL_STATE(673)] = 22005, + [SMALL_STATE(674)] = 22036, + [SMALL_STATE(675)] = 22067, + [SMALL_STATE(676)] = 22098, + [SMALL_STATE(677)] = 22129, + [SMALL_STATE(678)] = 22160, + [SMALL_STATE(679)] = 22191, + [SMALL_STATE(680)] = 22222, + [SMALL_STATE(681)] = 22253, + [SMALL_STATE(682)] = 22284, + [SMALL_STATE(683)] = 22315, + [SMALL_STATE(684)] = 22350, + [SMALL_STATE(685)] = 22381, + [SMALL_STATE(686)] = 22416, + [SMALL_STATE(687)] = 22449, + [SMALL_STATE(688)] = 22482, + [SMALL_STATE(689)] = 22515, + [SMALL_STATE(690)] = 22548, + [SMALL_STATE(691)] = 22581, + [SMALL_STATE(692)] = 22614, + [SMALL_STATE(693)] = 22647, + [SMALL_STATE(694)] = 22680, + [SMALL_STATE(695)] = 22715, + [SMALL_STATE(696)] = 22748, + [SMALL_STATE(697)] = 22781, + [SMALL_STATE(698)] = 22814, + [SMALL_STATE(699)] = 22847, + [SMALL_STATE(700)] = 22880, + [SMALL_STATE(701)] = 22913, + [SMALL_STATE(702)] = 22946, + [SMALL_STATE(703)] = 22979, + [SMALL_STATE(704)] = 23012, + [SMALL_STATE(705)] = 23052, + [SMALL_STATE(706)] = 23088, + [SMALL_STATE(707)] = 23137, + [SMALL_STATE(708)] = 23184, + [SMALL_STATE(709)] = 23231, + [SMALL_STATE(710)] = 23269, + [SMALL_STATE(711)] = 23315, + [SMALL_STATE(712)] = 23353, + [SMALL_STATE(713)] = 23399, + [SMALL_STATE(714)] = 23433, + [SMALL_STATE(715)] = 23479, + [SMALL_STATE(716)] = 23525, + [SMALL_STATE(717)] = 23571, + [SMALL_STATE(718)] = 23617, + [SMALL_STATE(719)] = 23663, + [SMALL_STATE(720)] = 23709, + [SMALL_STATE(721)] = 23755, + [SMALL_STATE(722)] = 23793, + [SMALL_STATE(723)] = 23831, + [SMALL_STATE(724)] = 23874, + [SMALL_STATE(725)] = 23929, + [SMALL_STATE(726)] = 23984, + [SMALL_STATE(727)] = 24027, + [SMALL_STATE(728)] = 24060, + [SMALL_STATE(729)] = 24100, + [SMALL_STATE(730)] = 24146, + [SMALL_STATE(731)] = 24186, + [SMALL_STATE(732)] = 24226, + [SMALL_STATE(733)] = 24266, + [SMALL_STATE(734)] = 24306, + [SMALL_STATE(735)] = 24346, + [SMALL_STATE(736)] = 24374, + [SMALL_STATE(737)] = 24402, + [SMALL_STATE(738)] = 24442, + [SMALL_STATE(739)] = 24482, + [SMALL_STATE(740)] = 24522, + [SMALL_STATE(741)] = 24562, + [SMALL_STATE(742)] = 24602, + [SMALL_STATE(743)] = 24642, + [SMALL_STATE(744)] = 24682, + [SMALL_STATE(745)] = 24722, + [SMALL_STATE(746)] = 24762, + [SMALL_STATE(747)] = 24802, + [SMALL_STATE(748)] = 24842, + [SMALL_STATE(749)] = 24870, + [SMALL_STATE(750)] = 24898, + [SMALL_STATE(751)] = 24938, + [SMALL_STATE(752)] = 24970, + [SMALL_STATE(753)] = 25002, + [SMALL_STATE(754)] = 25052, + [SMALL_STATE(755)] = 25080, + [SMALL_STATE(756)] = 25128, + [SMALL_STATE(757)] = 25156, + [SMALL_STATE(758)] = 25196, + [SMALL_STATE(759)] = 25242, + [SMALL_STATE(760)] = 25282, + [SMALL_STATE(761)] = 25322, + [SMALL_STATE(762)] = 25362, + [SMALL_STATE(763)] = 25402, + [SMALL_STATE(764)] = 25442, + [SMALL_STATE(765)] = 25482, + [SMALL_STATE(766)] = 25526, + [SMALL_STATE(767)] = 25568, + [SMALL_STATE(768)] = 25608, + [SMALL_STATE(769)] = 25644, + [SMALL_STATE(770)] = 25684, + [SMALL_STATE(771)] = 25724, + [SMALL_STATE(772)] = 25764, + [SMALL_STATE(773)] = 25804, + [SMALL_STATE(774)] = 25844, + [SMALL_STATE(775)] = 25884, + [SMALL_STATE(776)] = 25918, + [SMALL_STATE(777)] = 25946, + [SMALL_STATE(778)] = 25986, + [SMALL_STATE(779)] = 26026, + [SMALL_STATE(780)] = 26054, + [SMALL_STATE(781)] = 26082, + [SMALL_STATE(782)] = 26110, + [SMALL_STATE(783)] = 26142, + [SMALL_STATE(784)] = 26174, + [SMALL_STATE(785)] = 26202, + [SMALL_STATE(786)] = 26230, + [SMALL_STATE(787)] = 26262, + [SMALL_STATE(788)] = 26302, + [SMALL_STATE(789)] = 26351, + [SMALL_STATE(790)] = 26378, + [SMALL_STATE(791)] = 26423, + [SMALL_STATE(792)] = 26450, + [SMALL_STATE(793)] = 26495, + [SMALL_STATE(794)] = 26522, + [SMALL_STATE(795)] = 26549, + [SMALL_STATE(796)] = 26594, + [SMALL_STATE(797)] = 26625, + [SMALL_STATE(798)] = 26670, + [SMALL_STATE(799)] = 26703, + [SMALL_STATE(800)] = 26738, + [SMALL_STATE(801)] = 26775, + [SMALL_STATE(802)] = 26814, + [SMALL_STATE(803)] = 26841, + [SMALL_STATE(804)] = 26886, + [SMALL_STATE(805)] = 26929, + [SMALL_STATE(806)] = 26970, + [SMALL_STATE(807)] = 27015, + [SMALL_STATE(808)] = 27060, + [SMALL_STATE(809)] = 27087, + [SMALL_STATE(810)] = 27116, + [SMALL_STATE(811)] = 27143, + [SMALL_STATE(812)] = 27170, + [SMALL_STATE(813)] = 27215, + [SMALL_STATE(814)] = 27242, + [SMALL_STATE(815)] = 27291, + [SMALL_STATE(816)] = 27318, + [SMALL_STATE(817)] = 27363, + [SMALL_STATE(818)] = 27408, + [SMALL_STATE(819)] = 27434, + [SMALL_STATE(820)] = 27470, + [SMALL_STATE(821)] = 27496, + [SMALL_STATE(822)] = 27532, + [SMALL_STATE(823)] = 27568, + [SMALL_STATE(824)] = 27594, + [SMALL_STATE(825)] = 27620, + [SMALL_STATE(826)] = 27646, + [SMALL_STATE(827)] = 27672, + [SMALL_STATE(828)] = 27698, + [SMALL_STATE(829)] = 27724, + [SMALL_STATE(830)] = 27750, + [SMALL_STATE(831)] = 27776, + [SMALL_STATE(832)] = 27802, + [SMALL_STATE(833)] = 27828, + [SMALL_STATE(834)] = 27854, + [SMALL_STATE(835)] = 27880, + [SMALL_STATE(836)] = 27906, + [SMALL_STATE(837)] = 27934, + [SMALL_STATE(838)] = 27970, + [SMALL_STATE(839)] = 28007, + [SMALL_STATE(840)] = 28043, + [SMALL_STATE(841)] = 28071, + [SMALL_STATE(842)] = 28107, + [SMALL_STATE(843)] = 28143, + [SMALL_STATE(844)] = 28179, + [SMALL_STATE(845)] = 28215, + [SMALL_STATE(846)] = 28251, + [SMALL_STATE(847)] = 28282, + [SMALL_STATE(848)] = 28312, + [SMALL_STATE(849)] = 28342, + [SMALL_STATE(850)] = 28372, + [SMALL_STATE(851)] = 28402, + [SMALL_STATE(852)] = 28432, + [SMALL_STATE(853)] = 28462, + [SMALL_STATE(854)] = 28491, + [SMALL_STATE(855)] = 28520, + [SMALL_STATE(856)] = 28549, + [SMALL_STATE(857)] = 28569, + [SMALL_STATE(858)] = 28589, + [SMALL_STATE(859)] = 28609, + [SMALL_STATE(860)] = 28640, + [SMALL_STATE(861)] = 28663, + [SMALL_STATE(862)] = 28694, + [SMALL_STATE(863)] = 28717, + [SMALL_STATE(864)] = 28738, + [SMALL_STATE(865)] = 28761, + [SMALL_STATE(866)] = 28784, + [SMALL_STATE(867)] = 28807, + [SMALL_STATE(868)] = 28838, + [SMALL_STATE(869)] = 28869, + [SMALL_STATE(870)] = 28890, + [SMALL_STATE(871)] = 28913, + [SMALL_STATE(872)] = 28934, + [SMALL_STATE(873)] = 28957, + [SMALL_STATE(874)] = 28980, + [SMALL_STATE(875)] = 29001, + [SMALL_STATE(876)] = 29016, + [SMALL_STATE(877)] = 29031, + [SMALL_STATE(878)] = 29054, + [SMALL_STATE(879)] = 29069, + [SMALL_STATE(880)] = 29089, + [SMALL_STATE(881)] = 29109, + [SMALL_STATE(882)] = 29129, + [SMALL_STATE(883)] = 29157, + [SMALL_STATE(884)] = 29177, + [SMALL_STATE(885)] = 29197, + [SMALL_STATE(886)] = 29217, + [SMALL_STATE(887)] = 29237, + [SMALL_STATE(888)] = 29257, + [SMALL_STATE(889)] = 29277, + [SMALL_STATE(890)] = 29297, + [SMALL_STATE(891)] = 29317, + [SMALL_STATE(892)] = 29337, + [SMALL_STATE(893)] = 29365, + [SMALL_STATE(894)] = 29393, + [SMALL_STATE(895)] = 29413, + [SMALL_STATE(896)] = 29433, + [SMALL_STATE(897)] = 29453, + [SMALL_STATE(898)] = 29466, + [SMALL_STATE(899)] = 29491, + [SMALL_STATE(900)] = 29510, + [SMALL_STATE(901)] = 29523, + [SMALL_STATE(902)] = 29536, + [SMALL_STATE(903)] = 29561, + [SMALL_STATE(904)] = 29574, + [SMALL_STATE(905)] = 29587, + [SMALL_STATE(906)] = 29612, + [SMALL_STATE(907)] = 29637, + [SMALL_STATE(908)] = 29656, + [SMALL_STATE(909)] = 29678, + [SMALL_STATE(910)] = 29690, + [SMALL_STATE(911)] = 29702, + [SMALL_STATE(912)] = 29714, + [SMALL_STATE(913)] = 29732, + [SMALL_STATE(914)] = 29754, + [SMALL_STATE(915)] = 29774, + [SMALL_STATE(916)] = 29792, + [SMALL_STATE(917)] = 29810, + [SMALL_STATE(918)] = 29828, + [SMALL_STATE(919)] = 29846, + [SMALL_STATE(920)] = 29868, + [SMALL_STATE(921)] = 29880, + [SMALL_STATE(922)] = 29902, + [SMALL_STATE(923)] = 29914, + [SMALL_STATE(924)] = 29936, + [SMALL_STATE(925)] = 29958, + [SMALL_STATE(926)] = 29980, + [SMALL_STATE(927)] = 30002, + [SMALL_STATE(928)] = 30014, + [SMALL_STATE(929)] = 30026, + [SMALL_STATE(930)] = 30043, + [SMALL_STATE(931)] = 30062, + [SMALL_STATE(932)] = 30079, + [SMALL_STATE(933)] = 30098, + [SMALL_STATE(934)] = 30115, + [SMALL_STATE(935)] = 30134, + [SMALL_STATE(936)] = 30145, + [SMALL_STATE(937)] = 30162, + [SMALL_STATE(938)] = 30173, + [SMALL_STATE(939)] = 30190, + [SMALL_STATE(940)] = 30201, + [SMALL_STATE(941)] = 30212, + [SMALL_STATE(942)] = 30223, + [SMALL_STATE(943)] = 30234, + [SMALL_STATE(944)] = 30245, + [SMALL_STATE(945)] = 30261, + [SMALL_STATE(946)] = 30271, + [SMALL_STATE(947)] = 30287, + [SMALL_STATE(948)] = 30303, + [SMALL_STATE(949)] = 30319, + [SMALL_STATE(950)] = 30335, + [SMALL_STATE(951)] = 30345, + [SMALL_STATE(952)] = 30361, + [SMALL_STATE(953)] = 30377, + [SMALL_STATE(954)] = 30393, + [SMALL_STATE(955)] = 30403, + [SMALL_STATE(956)] = 30417, + [SMALL_STATE(957)] = 30433, + [SMALL_STATE(958)] = 30443, + [SMALL_STATE(959)] = 30459, + [SMALL_STATE(960)] = 30475, + [SMALL_STATE(961)] = 30491, + [SMALL_STATE(962)] = 30507, + [SMALL_STATE(963)] = 30523, + [SMALL_STATE(964)] = 30533, + [SMALL_STATE(965)] = 30549, + [SMALL_STATE(966)] = 30559, + [SMALL_STATE(967)] = 30569, + [SMALL_STATE(968)] = 30585, + [SMALL_STATE(969)] = 30601, + [SMALL_STATE(970)] = 30617, + [SMALL_STATE(971)] = 30633, + [SMALL_STATE(972)] = 30649, + [SMALL_STATE(973)] = 30665, + [SMALL_STATE(974)] = 30675, + [SMALL_STATE(975)] = 30691, + [SMALL_STATE(976)] = 30701, + [SMALL_STATE(977)] = 30711, + [SMALL_STATE(978)] = 30727, + [SMALL_STATE(979)] = 30737, + [SMALL_STATE(980)] = 30750, + [SMALL_STATE(981)] = 30763, + [SMALL_STATE(982)] = 30776, + [SMALL_STATE(983)] = 30789, + [SMALL_STATE(984)] = 30802, + [SMALL_STATE(985)] = 30815, + [SMALL_STATE(986)] = 30828, + [SMALL_STATE(987)] = 30841, + [SMALL_STATE(988)] = 30854, + [SMALL_STATE(989)] = 30863, + [SMALL_STATE(990)] = 30876, + [SMALL_STATE(991)] = 30889, + [SMALL_STATE(992)] = 30902, + [SMALL_STATE(993)] = 30915, + [SMALL_STATE(994)] = 30928, + [SMALL_STATE(995)] = 30939, + [SMALL_STATE(996)] = 30952, + [SMALL_STATE(997)] = 30965, + [SMALL_STATE(998)] = 30978, + [SMALL_STATE(999)] = 30991, + [SMALL_STATE(1000)] = 31002, + [SMALL_STATE(1001)] = 31015, + [SMALL_STATE(1002)] = 31028, + [SMALL_STATE(1003)] = 31041, + [SMALL_STATE(1004)] = 31054, + [SMALL_STATE(1005)] = 31067, + [SMALL_STATE(1006)] = 31080, + [SMALL_STATE(1007)] = 31093, + [SMALL_STATE(1008)] = 31106, + [SMALL_STATE(1009)] = 31119, + [SMALL_STATE(1010)] = 31132, + [SMALL_STATE(1011)] = 31145, + [SMALL_STATE(1012)] = 31158, + [SMALL_STATE(1013)] = 31167, + [SMALL_STATE(1014)] = 31180, + [SMALL_STATE(1015)] = 31193, + [SMALL_STATE(1016)] = 31206, + [SMALL_STATE(1017)] = 31219, + [SMALL_STATE(1018)] = 31232, + [SMALL_STATE(1019)] = 31245, + [SMALL_STATE(1020)] = 31258, + [SMALL_STATE(1021)] = 31271, + [SMALL_STATE(1022)] = 31284, + [SMALL_STATE(1023)] = 31297, + [SMALL_STATE(1024)] = 31310, + [SMALL_STATE(1025)] = 31323, + [SMALL_STATE(1026)] = 31336, + [SMALL_STATE(1027)] = 31349, + [SMALL_STATE(1028)] = 31357, + [SMALL_STATE(1029)] = 31367, + [SMALL_STATE(1030)] = 31377, + [SMALL_STATE(1031)] = 31387, + [SMALL_STATE(1032)] = 31397, + [SMALL_STATE(1033)] = 31407, + [SMALL_STATE(1034)] = 31415, + [SMALL_STATE(1035)] = 31425, + [SMALL_STATE(1036)] = 31433, + [SMALL_STATE(1037)] = 31443, + [SMALL_STATE(1038)] = 31453, + [SMALL_STATE(1039)] = 31461, + [SMALL_STATE(1040)] = 31469, + [SMALL_STATE(1041)] = 31477, + [SMALL_STATE(1042)] = 31487, + [SMALL_STATE(1043)] = 31497, + [SMALL_STATE(1044)] = 31507, + [SMALL_STATE(1045)] = 31517, + [SMALL_STATE(1046)] = 31527, + [SMALL_STATE(1047)] = 31537, + [SMALL_STATE(1048)] = 31545, + [SMALL_STATE(1049)] = 31555, + [SMALL_STATE(1050)] = 31565, + [SMALL_STATE(1051)] = 31575, + [SMALL_STATE(1052)] = 31583, + [SMALL_STATE(1053)] = 31593, + [SMALL_STATE(1054)] = 31601, + [SMALL_STATE(1055)] = 31611, + [SMALL_STATE(1056)] = 31621, + [SMALL_STATE(1057)] = 31631, + [SMALL_STATE(1058)] = 31641, + [SMALL_STATE(1059)] = 31649, + [SMALL_STATE(1060)] = 31659, + [SMALL_STATE(1061)] = 31667, + [SMALL_STATE(1062)] = 31677, + [SMALL_STATE(1063)] = 31687, + [SMALL_STATE(1064)] = 31697, + [SMALL_STATE(1065)] = 31707, + [SMALL_STATE(1066)] = 31717, + [SMALL_STATE(1067)] = 31725, + [SMALL_STATE(1068)] = 31733, + [SMALL_STATE(1069)] = 31743, + [SMALL_STATE(1070)] = 31753, + [SMALL_STATE(1071)] = 31763, + [SMALL_STATE(1072)] = 31773, + [SMALL_STATE(1073)] = 31783, + [SMALL_STATE(1074)] = 31791, + [SMALL_STATE(1075)] = 31801, + [SMALL_STATE(1076)] = 31811, + [SMALL_STATE(1077)] = 31821, + [SMALL_STATE(1078)] = 31829, + [SMALL_STATE(1079)] = 31839, + [SMALL_STATE(1080)] = 31849, + [SMALL_STATE(1081)] = 31856, + [SMALL_STATE(1082)] = 31863, + [SMALL_STATE(1083)] = 31870, + [SMALL_STATE(1084)] = 31877, + [SMALL_STATE(1085)] = 31884, + [SMALL_STATE(1086)] = 31891, + [SMALL_STATE(1087)] = 31898, + [SMALL_STATE(1088)] = 31905, + [SMALL_STATE(1089)] = 31912, + [SMALL_STATE(1090)] = 31919, + [SMALL_STATE(1091)] = 31926, + [SMALL_STATE(1092)] = 31933, + [SMALL_STATE(1093)] = 31940, + [SMALL_STATE(1094)] = 31947, + [SMALL_STATE(1095)] = 31954, + [SMALL_STATE(1096)] = 31961, + [SMALL_STATE(1097)] = 31968, + [SMALL_STATE(1098)] = 31975, + [SMALL_STATE(1099)] = 31982, + [SMALL_STATE(1100)] = 31989, + [SMALL_STATE(1101)] = 31996, + [SMALL_STATE(1102)] = 32003, + [SMALL_STATE(1103)] = 32010, + [SMALL_STATE(1104)] = 32017, + [SMALL_STATE(1105)] = 32024, + [SMALL_STATE(1106)] = 32031, + [SMALL_STATE(1107)] = 32038, + [SMALL_STATE(1108)] = 32045, + [SMALL_STATE(1109)] = 32052, + [SMALL_STATE(1110)] = 32059, + [SMALL_STATE(1111)] = 32066, + [SMALL_STATE(1112)] = 32073, + [SMALL_STATE(1113)] = 32080, + [SMALL_STATE(1114)] = 32087, + [SMALL_STATE(1115)] = 32094, + [SMALL_STATE(1116)] = 32101, + [SMALL_STATE(1117)] = 32108, + [SMALL_STATE(1118)] = 32115, + [SMALL_STATE(1119)] = 32122, + [SMALL_STATE(1120)] = 32129, + [SMALL_STATE(1121)] = 32136, + [SMALL_STATE(1122)] = 32143, + [SMALL_STATE(1123)] = 32150, + [SMALL_STATE(1124)] = 32157, + [SMALL_STATE(1125)] = 32164, + [SMALL_STATE(1126)] = 32171, + [SMALL_STATE(1127)] = 32178, + [SMALL_STATE(1128)] = 32185, + [SMALL_STATE(1129)] = 32192, + [SMALL_STATE(1130)] = 32199, + [SMALL_STATE(1131)] = 32206, + [SMALL_STATE(1132)] = 32213, + [SMALL_STATE(1133)] = 32220, + [SMALL_STATE(1134)] = 32227, + [SMALL_STATE(1135)] = 32234, + [SMALL_STATE(1136)] = 32241, + [SMALL_STATE(1137)] = 32248, + [SMALL_STATE(1138)] = 32255, + [SMALL_STATE(1139)] = 32262, + [SMALL_STATE(1140)] = 32269, + [SMALL_STATE(1141)] = 32276, + [SMALL_STATE(1142)] = 32283, + [SMALL_STATE(1143)] = 32290, + [SMALL_STATE(1144)] = 32297, + [SMALL_STATE(1145)] = 32304, + [SMALL_STATE(1146)] = 32311, + [SMALL_STATE(1147)] = 32318, + [SMALL_STATE(1148)] = 32325, + [SMALL_STATE(1149)] = 32332, + [SMALL_STATE(1150)] = 32339, + [SMALL_STATE(1151)] = 32346, + [SMALL_STATE(1152)] = 32353, + [SMALL_STATE(1153)] = 32360, + [SMALL_STATE(1154)] = 32367, + [SMALL_STATE(1155)] = 32374, + [SMALL_STATE(1156)] = 32381, + [SMALL_STATE(1157)] = 32388, + [SMALL_STATE(1158)] = 32395, + [SMALL_STATE(1159)] = 32402, + [SMALL_STATE(1160)] = 32409, + [SMALL_STATE(1161)] = 32416, + [SMALL_STATE(1162)] = 32423, + [SMALL_STATE(1163)] = 32430, + [SMALL_STATE(1164)] = 32437, + [SMALL_STATE(1165)] = 32444, + [SMALL_STATE(1166)] = 32451, + [SMALL_STATE(1167)] = 32458, + [SMALL_STATE(1168)] = 32465, + [SMALL_STATE(1169)] = 32472, + [SMALL_STATE(1170)] = 32479, + [SMALL_STATE(1171)] = 32486, + [SMALL_STATE(1172)] = 32493, + [SMALL_STATE(1173)] = 32500, + [SMALL_STATE(1174)] = 32507, + [SMALL_STATE(1175)] = 32514, + [SMALL_STATE(1176)] = 32521, + [SMALL_STATE(1177)] = 32528, + [SMALL_STATE(1178)] = 32535, + [SMALL_STATE(1179)] = 32542, + [SMALL_STATE(1180)] = 32549, + [SMALL_STATE(1181)] = 32556, + [SMALL_STATE(1182)] = 32563, + [SMALL_STATE(1183)] = 32570, + [SMALL_STATE(1184)] = 32577, + [SMALL_STATE(1185)] = 32584, + [SMALL_STATE(1186)] = 32591, + [SMALL_STATE(1187)] = 32598, + [SMALL_STATE(1188)] = 32605, + [SMALL_STATE(1189)] = 32612, + [SMALL_STATE(1190)] = 32619, + [SMALL_STATE(1191)] = 32626, + [SMALL_STATE(1192)] = 32633, + [SMALL_STATE(1193)] = 32640, + [SMALL_STATE(1194)] = 32647, + [SMALL_STATE(1195)] = 32654, + [SMALL_STATE(1196)] = 32661, + [SMALL_STATE(1197)] = 32668, + [SMALL_STATE(1198)] = 32675, + [SMALL_STATE(1199)] = 32682, + [SMALL_STATE(1200)] = 32689, + [SMALL_STATE(1201)] = 32696, + [SMALL_STATE(1202)] = 32703, + [SMALL_STATE(1203)] = 32710, + [SMALL_STATE(1204)] = 32717, + [SMALL_STATE(1205)] = 32724, + [SMALL_STATE(1206)] = 32731, + [SMALL_STATE(1207)] = 32738, + [SMALL_STATE(1208)] = 32745, + [SMALL_STATE(1209)] = 32752, + [SMALL_STATE(1210)] = 32759, + [SMALL_STATE(1211)] = 32766, + [SMALL_STATE(1212)] = 32773, + [SMALL_STATE(1213)] = 32780, + [SMALL_STATE(1214)] = 32787, + [SMALL_STATE(1215)] = 32794, + [SMALL_STATE(1216)] = 32801, + [SMALL_STATE(1217)] = 32808, + [SMALL_STATE(1218)] = 32815, + [SMALL_STATE(1219)] = 32822, + [SMALL_STATE(1220)] = 32829, + [SMALL_STATE(1221)] = 32836, + [SMALL_STATE(1222)] = 32843, + [SMALL_STATE(1223)] = 32850, + [SMALL_STATE(1224)] = 32857, + [SMALL_STATE(1225)] = 32864, + [SMALL_STATE(1226)] = 32871, + [SMALL_STATE(1227)] = 32878, + [SMALL_STATE(1228)] = 32885, + [SMALL_STATE(1229)] = 32892, + [SMALL_STATE(1230)] = 32899, + [SMALL_STATE(1231)] = 32906, + [SMALL_STATE(1232)] = 32913, + [SMALL_STATE(1233)] = 32920, + [SMALL_STATE(1234)] = 32927, + [SMALL_STATE(1235)] = 32934, + [SMALL_STATE(1236)] = 32941, + [SMALL_STATE(1237)] = 32948, + [SMALL_STATE(1238)] = 32955, + [SMALL_STATE(1239)] = 32962, + [SMALL_STATE(1240)] = 32969, + [SMALL_STATE(1241)] = 32976, + [SMALL_STATE(1242)] = 32983, + [SMALL_STATE(1243)] = 32990, + [SMALL_STATE(1244)] = 32997, + [SMALL_STATE(1245)] = 33004, + [SMALL_STATE(1246)] = 33011, + [SMALL_STATE(1247)] = 33018, + [SMALL_STATE(1248)] = 33025, + [SMALL_STATE(1249)] = 33032, + [SMALL_STATE(1250)] = 33039, }; static TSParseActionEntry ts_parse_actions[] = { @@ -60975,1626 +60469,1619 @@ static TSParseActionEntry ts_parse_actions[] = { [1] = {.count = 1, .reusable = false}, RECOVER(), [3] = {.count = 1, .reusable = true}, SHIFT_EXTRA(), [5] = {.count = 1, .reusable = true}, REDUCE(sym_translation_unit, 0), - [7] = {.count = 1, .reusable = false}, SHIFT(370), - [9] = {.count = 1, .reusable = false}, SHIFT(914), - [11] = {.count = 1, .reusable = false}, SHIFT(1253), - [13] = {.count = 1, .reusable = false}, SHIFT(772), - [15] = {.count = 1, .reusable = false}, SHIFT(1249), - [17] = {.count = 1, .reusable = false}, SHIFT(1039), - [19] = {.count = 1, .reusable = true}, SHIFT(294), - [21] = {.count = 1, .reusable = true}, SHIFT(490), - [23] = {.count = 1, .reusable = false}, SHIFT(490), - [25] = {.count = 1, .reusable = true}, SHIFT(491), - [27] = {.count = 1, .reusable = true}, SHIFT(285), - [29] = {.count = 1, .reusable = false}, SHIFT(730), - [31] = {.count = 1, .reusable = false}, SHIFT(677), - [33] = {.count = 1, .reusable = false}, SHIFT(1246), - [35] = {.count = 1, .reusable = true}, SHIFT(21), - [37] = {.count = 1, .reusable = false}, SHIFT(668), - [39] = {.count = 1, .reusable = false}, SHIFT(669), - [41] = {.count = 1, .reusable = false}, SHIFT(712), - [43] = {.count = 1, .reusable = false}, SHIFT(840), - [45] = {.count = 1, .reusable = false}, SHIFT(1008), - [47] = {.count = 1, .reusable = false}, SHIFT(1036), - [49] = {.count = 1, .reusable = false}, SHIFT(1035), - [51] = {.count = 1, .reusable = false}, SHIFT(1042), - [53] = {.count = 1, .reusable = false}, SHIFT(1043), - [55] = {.count = 1, .reusable = false}, SHIFT(493), + [7] = {.count = 1, .reusable = false}, SHIFT(360), + [9] = {.count = 1, .reusable = false}, SHIFT(874), + [11] = {.count = 1, .reusable = false}, SHIFT(1249), + [13] = {.count = 1, .reusable = false}, SHIFT(778), + [15] = {.count = 1, .reusable = false}, SHIFT(1247), + [17] = {.count = 1, .reusable = false}, SHIFT(1029), + [19] = {.count = 1, .reusable = true}, SHIFT(198), + [21] = {.count = 1, .reusable = true}, SHIFT(480), + [23] = {.count = 1, .reusable = false}, SHIFT(480), + [25] = {.count = 1, .reusable = true}, SHIFT(493), + [27] = {.count = 1, .reusable = true}, SHIFT(290), + [29] = {.count = 1, .reusable = false}, SHIFT(712), + [31] = {.count = 1, .reusable = false}, SHIFT(664), + [33] = {.count = 1, .reusable = false}, SHIFT(1243), + [35] = {.count = 1, .reusable = true}, SHIFT(40), + [37] = {.count = 1, .reusable = false}, SHIFT(660), + [39] = {.count = 1, .reusable = false}, SHIFT(661), + [41] = {.count = 1, .reusable = false}, SHIFT(704), + [43] = {.count = 1, .reusable = false}, SHIFT(822), + [45] = {.count = 1, .reusable = false}, SHIFT(1026), + [47] = {.count = 1, .reusable = false}, SHIFT(1021), + [49] = {.count = 1, .reusable = false}, SHIFT(1018), + [51] = {.count = 1, .reusable = false}, SHIFT(1032), + [53] = {.count = 1, .reusable = false}, SHIFT(1034), + [55] = {.count = 1, .reusable = false}, SHIFT(515), [57] = {.count = 1, .reusable = false}, SHIFT(1235), - [59] = {.count = 1, .reusable = false}, SHIFT(1044), - [61] = {.count = 1, .reusable = false}, SHIFT(129), - [63] = {.count = 1, .reusable = false}, SHIFT(1230), - [65] = {.count = 1, .reusable = false}, SHIFT(442), - [67] = {.count = 1, .reusable = false}, SHIFT(1228), - [69] = {.count = 1, .reusable = false}, SHIFT(1227), - [71] = {.count = 1, .reusable = false}, SHIFT(1222), - [73] = {.count = 1, .reusable = true}, SHIFT(498), - [75] = {.count = 1, .reusable = false}, SHIFT(499), - [77] = {.count = 1, .reusable = true}, SHIFT(614), - [79] = {.count = 1, .reusable = true}, SHIFT(1045), - [81] = {.count = 1, .reusable = true}, SHIFT(990), - [83] = {.count = 1, .reusable = false}, SHIFT(614), - [85] = {.count = 1, .reusable = false}, SHIFT(366), - [87] = {.count = 1, .reusable = false}, SHIFT(906), - [89] = {.count = 1, .reusable = false}, SHIFT(1186), - [91] = {.count = 1, .reusable = false}, SHIFT(783), - [93] = {.count = 1, .reusable = false}, SHIFT(351), - [95] = {.count = 1, .reusable = false}, SHIFT(1187), - [97] = {.count = 1, .reusable = false}, SHIFT(31), - [99] = {.count = 1, .reusable = false}, SHIFT(788), - [101] = {.count = 1, .reusable = false}, SHIFT(1037), - [103] = {.count = 1, .reusable = true}, SHIFT(149), + [59] = {.count = 1, .reusable = false}, SHIFT(1037), + [61] = {.count = 1, .reusable = false}, SHIFT(82), + [63] = {.count = 1, .reusable = false}, SHIFT(1232), + [65] = {.count = 1, .reusable = false}, SHIFT(414), + [67] = {.count = 1, .reusable = false}, SHIFT(1231), + [69] = {.count = 1, .reusable = false}, SHIFT(1230), + [71] = {.count = 1, .reusable = false}, SHIFT(1228), + [73] = {.count = 1, .reusable = true}, SHIFT(496), + [75] = {.count = 1, .reusable = false}, SHIFT(492), + [77] = {.count = 1, .reusable = true}, SHIFT(606), + [79] = {.count = 1, .reusable = true}, SHIFT(1039), + [81] = {.count = 1, .reusable = true}, SHIFT(958), + [83] = {.count = 1, .reusable = false}, SHIFT(606), + [85] = {.count = 1, .reusable = false}, SHIFT(356), + [87] = {.count = 1, .reusable = false}, SHIFT(863), + [89] = {.count = 1, .reusable = false}, SHIFT(1181), + [91] = {.count = 1, .reusable = false}, SHIFT(761), + [93] = {.count = 1, .reusable = false}, SHIFT(332), + [95] = {.count = 1, .reusable = false}, SHIFT(1182), + [97] = {.count = 1, .reusable = false}, SHIFT(36), + [99] = {.count = 1, .reusable = false}, SHIFT(769), + [101] = {.count = 1, .reusable = false}, SHIFT(1078), + [103] = {.count = 1, .reusable = true}, SHIFT(158), [105] = {.count = 1, .reusable = false}, SHIFT(717), - [107] = {.count = 1, .reusable = false}, SHIFT(688), - [109] = {.count = 1, .reusable = true}, SHIFT(28), - [111] = {.count = 1, .reusable = false}, SHIFT(835), - [113] = {.count = 1, .reusable = false}, SHIFT(1074), - [115] = {.count = 1, .reusable = false}, SHIFT(1059), - [117] = {.count = 1, .reusable = false}, SHIFT(517), - [119] = {.count = 1, .reusable = false}, SHIFT(1163), - [121] = {.count = 1, .reusable = false}, SHIFT(1070), - [123] = {.count = 1, .reusable = false}, SHIFT(99), - [125] = {.count = 1, .reusable = false}, SHIFT(1252), - [127] = {.count = 1, .reusable = false}, SHIFT(418), - [129] = {.count = 1, .reusable = false}, SHIFT(1169), - [131] = {.count = 1, .reusable = false}, SHIFT(1178), - [133] = {.count = 1, .reusable = false}, SHIFT(1191), - [135] = {.count = 1, .reusable = true}, SHIFT(613), - [137] = {.count = 1, .reusable = false}, SHIFT(613), - [139] = {.count = 1, .reusable = false}, SHIFT(333), - [141] = {.count = 1, .reusable = false}, SHIFT(336), - [143] = {.count = 1, .reusable = false}, SHIFT(310), - [145] = {.count = 1, .reusable = false}, SHIFT(175), - [147] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_elif, 3, .production_id = 33), - [149] = {.count = 1, .reusable = false}, SHIFT(352), - [151] = {.count = 1, .reusable = false}, SHIFT(188), - [153] = {.count = 1, .reusable = false}, SHIFT(300), - [155] = {.count = 1, .reusable = false}, SHIFT(170), - [157] = {.count = 1, .reusable = false}, SHIFT(342), - [159] = {.count = 1, .reusable = false}, SHIFT(183), - [161] = {.count = 1, .reusable = false}, SHIFT(356), - [163] = {.count = 1, .reusable = false}, SHIFT(318), - [165] = {.count = 1, .reusable = false}, SHIFT(314), - [167] = {.count = 1, .reusable = false}, SHIFT(321), - [169] = {.count = 1, .reusable = false}, SHIFT(347), - [171] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_elif, 4, .production_id = 33), - [173] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(366), - [176] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(906), - [179] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1186), - [182] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(783), + [107] = {.count = 1, .reusable = false}, SHIFT(694), + [109] = {.count = 1, .reusable = true}, SHIFT(24), + [111] = {.count = 1, .reusable = false}, SHIFT(837), + [113] = {.count = 1, .reusable = false}, SHIFT(1071), + [115] = {.count = 1, .reusable = false}, SHIFT(1052), + [117] = {.count = 1, .reusable = false}, SHIFT(487), + [119] = {.count = 1, .reusable = false}, SHIFT(1094), + [121] = {.count = 1, .reusable = false}, SHIFT(1028), + [123] = {.count = 1, .reusable = false}, SHIFT(70), + [125] = {.count = 1, .reusable = false}, SHIFT(1248), + [127] = {.count = 1, .reusable = false}, SHIFT(434), + [129] = {.count = 1, .reusable = false}, SHIFT(1089), + [131] = {.count = 1, .reusable = false}, SHIFT(1087), + [133] = {.count = 1, .reusable = false}, SHIFT(1186), + [135] = {.count = 1, .reusable = true}, SHIFT(582), + [137] = {.count = 1, .reusable = false}, SHIFT(582), + [139] = {.count = 1, .reusable = false}, SHIFT(320), + [141] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_elif, 4, .production_id = 33), + [143] = {.count = 1, .reusable = false}, SHIFT(314), + [145] = {.count = 1, .reusable = false}, SHIFT(176), + [147] = {.count = 1, .reusable = false}, SHIFT(186), + [149] = {.count = 1, .reusable = false}, SHIFT(341), + [151] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_elif, 3, .production_id = 33), + [153] = {.count = 1, .reusable = false}, SHIFT(326), + [155] = {.count = 1, .reusable = false}, SHIFT(172), + [157] = {.count = 1, .reusable = false}, SHIFT(174), + [159] = {.count = 1, .reusable = false}, SHIFT(340), + [161] = {.count = 1, .reusable = false}, SHIFT(325), + [163] = {.count = 1, .reusable = false}, SHIFT(306), + [165] = {.count = 1, .reusable = false}, SHIFT(315), + [167] = {.count = 1, .reusable = false}, SHIFT(350), + [169] = {.count = 1, .reusable = false}, SHIFT(294), + [171] = {.count = 1, .reusable = false}, SHIFT(298), + [173] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(356), + [176] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(863), + [179] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1181), + [182] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(761), [185] = {.count = 1, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), - [187] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1187), - [190] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1037), - [193] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(294), - [196] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(490), - [199] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(490), - [202] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(491), - [205] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(149), + [187] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1182), + [190] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1078), + [193] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(198), + [196] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(480), + [199] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(480), + [202] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(493), + [205] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(158), [208] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(717), - [211] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(688), - [214] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1246), - [217] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(28), - [220] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(668), - [223] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(669), - [226] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(712), - [229] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(835), - [232] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1008), - [235] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1036), - [238] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1035), - [241] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1074), - [244] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1059), - [247] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(517), - [250] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1163), - [253] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1070), - [256] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(99), - [259] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1252), - [262] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(418), - [265] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1169), - [268] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1178), - [271] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1191), - [274] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(498), - [277] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(499), - [280] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(613), - [283] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1045), - [286] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(990), - [289] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(613), - [292] = {.count = 1, .reusable = false}, SHIFT(371), - [294] = {.count = 1, .reusable = false}, SHIFT(911), - [296] = {.count = 1, .reusable = false}, SHIFT(1161), - [298] = {.count = 1, .reusable = false}, SHIFT(786), - [300] = {.count = 1, .reusable = false}, SHIFT(1162), - [302] = {.count = 1, .reusable = false}, SHIFT(1064), - [304] = {.count = 1, .reusable = true}, SHIFT(269), + [211] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(694), + [214] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1243), + [217] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(24), + [220] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(660), + [223] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(661), + [226] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(704), + [229] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(837), + [232] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1026), + [235] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1021), + [238] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1018), + [241] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1071), + [244] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1052), + [247] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(487), + [250] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1094), + [253] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1028), + [256] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(70), + [259] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1248), + [262] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(434), + [265] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1089), + [268] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1087), + [271] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1186), + [274] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(496), + [277] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(492), + [280] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(582), + [283] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1039), + [286] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(958), + [289] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(582), + [292] = {.count = 1, .reusable = false}, SHIFT(362), + [294] = {.count = 1, .reusable = false}, SHIFT(869), + [296] = {.count = 1, .reusable = false}, SHIFT(1155), + [298] = {.count = 1, .reusable = false}, SHIFT(750), + [300] = {.count = 1, .reusable = false}, SHIFT(1156), + [302] = {.count = 1, .reusable = false}, SHIFT(1048), + [304] = {.count = 1, .reusable = true}, SHIFT(279), [306] = {.count = 1, .reusable = false}, SHIFT(720), - [308] = {.count = 1, .reusable = false}, SHIFT(680), - [310] = {.count = 1, .reusable = true}, SHIFT(40), - [312] = {.count = 1, .reusable = true}, SHIFT(253), - [314] = {.count = 1, .reusable = false}, SHIFT(845), - [316] = {.count = 1, .reusable = false}, SHIFT(1088), - [318] = {.count = 1, .reusable = false}, SHIFT(1069), - [320] = {.count = 1, .reusable = false}, SHIFT(488), - [322] = {.count = 1, .reusable = false}, SHIFT(1174), - [324] = {.count = 1, .reusable = false}, SHIFT(1066), - [326] = {.count = 1, .reusable = false}, SHIFT(107), - [328] = {.count = 1, .reusable = false}, SHIFT(1250), - [330] = {.count = 1, .reusable = false}, SHIFT(429), - [332] = {.count = 1, .reusable = false}, SHIFT(1172), - [334] = {.count = 1, .reusable = false}, SHIFT(1171), - [336] = {.count = 1, .reusable = false}, SHIFT(1167), - [338] = {.count = 1, .reusable = true}, SHIFT(616), - [340] = {.count = 1, .reusable = false}, SHIFT(616), - [342] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(368), - [345] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(901), - [348] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1223), - [351] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(778), - [354] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1207), - [357] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1089), - [360] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(213), - [363] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(726), - [366] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(707), - [369] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(25), - [372] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(837), - [375] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1077), - [378] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1051), - [381] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(504), - [384] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1153), - [387] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1079), - [390] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(90), - [393] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1254), - [396] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(425), - [399] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1147), - [402] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1173), - [405] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1211), - [408] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(596), - [411] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(596), - [414] = {.count = 1, .reusable = true}, SHIFT(339), - [416] = {.count = 1, .reusable = true}, SHIFT(139), - [418] = {.count = 1, .reusable = true}, SHIFT(215), - [420] = {.count = 1, .reusable = true}, SHIFT(317), - [422] = {.count = 1, .reusable = true}, SHIFT(325), - [424] = {.count = 1, .reusable = true}, SHIFT(147), - [426] = {.count = 1, .reusable = true}, SHIFT(173), - [428] = {.count = 1, .reusable = true}, SHIFT(315), - [430] = {.count = 1, .reusable = false}, SHIFT(368), - [432] = {.count = 1, .reusable = false}, SHIFT(901), - [434] = {.count = 1, .reusable = false}, SHIFT(1223), - [436] = {.count = 1, .reusable = false}, SHIFT(778), - [438] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_else, 1), - [440] = {.count = 1, .reusable = false}, SHIFT(1207), - [442] = {.count = 1, .reusable = false}, SHIFT(1089), - [444] = {.count = 1, .reusable = true}, SHIFT(213), - [446] = {.count = 1, .reusable = false}, SHIFT(726), - [448] = {.count = 1, .reusable = false}, SHIFT(707), - [450] = {.count = 1, .reusable = true}, SHIFT(25), - [452] = {.count = 1, .reusable = false}, SHIFT(837), - [454] = {.count = 1, .reusable = false}, SHIFT(1077), - [456] = {.count = 1, .reusable = false}, SHIFT(1051), - [458] = {.count = 1, .reusable = false}, SHIFT(504), - [460] = {.count = 1, .reusable = false}, SHIFT(1153), - [462] = {.count = 1, .reusable = false}, SHIFT(1079), - [464] = {.count = 1, .reusable = false}, SHIFT(90), - [466] = {.count = 1, .reusable = false}, SHIFT(1254), - [468] = {.count = 1, .reusable = false}, SHIFT(425), - [470] = {.count = 1, .reusable = false}, SHIFT(1147), - [472] = {.count = 1, .reusable = false}, SHIFT(1173), - [474] = {.count = 1, .reusable = false}, SHIFT(1211), - [476] = {.count = 1, .reusable = true}, SHIFT(596), - [478] = {.count = 1, .reusable = false}, SHIFT(596), - [480] = {.count = 1, .reusable = true}, SHIFT(322), - [482] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(371), - [485] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(911), - [488] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1161), - [491] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(786), - [494] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1162), - [497] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1064), - [500] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(269), - [503] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(720), - [506] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(680), - [509] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(40), - [512] = {.count = 1, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), - [514] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(845), - [517] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1088), - [520] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1069), - [523] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(488), - [526] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1174), - [529] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1066), - [532] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(107), - [535] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1250), - [538] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(429), - [541] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1172), - [544] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1171), - [547] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1167), - [550] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(616), - [553] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(616), - [556] = {.count = 1, .reusable = true}, SHIFT(180), - [558] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_else, 2), - [560] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(370), - [563] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(914), - [566] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1253), - [569] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(772), - [572] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1249), - [575] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1039), - [578] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(285), - [581] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(730), - [584] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(677), - [587] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(21), - [590] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(840), - [593] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1042), - [596] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1043), - [599] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(493), - [602] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1235), - [605] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1044), - [608] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(129), - [611] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1230), - [614] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(442), - [617] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1228), - [620] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1227), - [623] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1222), - [626] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(614), - [629] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(614), - [632] = {.count = 1, .reusable = true}, SHIFT(228), - [634] = {.count = 1, .reusable = true}, SHIFT(274), - [636] = {.count = 1, .reusable = true}, REDUCE(sym_translation_unit, 1), - [638] = {.count = 1, .reusable = true}, SHIFT(243), - [640] = {.count = 1, .reusable = true}, SHIFT(308), - [642] = {.count = 1, .reusable = true}, SHIFT(198), - [644] = {.count = 1, .reusable = false}, SHIFT(367), - [646] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 2), - [648] = {.count = 1, .reusable = false}, SHIFT(718), - [650] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 3), - [652] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 3, .production_id = 8), - [654] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 4, .production_id = 8), - [656] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(367), - [659] = {.count = 1, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), - [661] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(294), - [664] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(490), - [667] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(490), - [670] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(491), - [673] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(149), - [676] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(717), - [679] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(668), - [682] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1246), - [685] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(28), - [688] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(669), - [691] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(712), - [694] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(718), - [697] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1008), - [700] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1036), - [703] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1035), - [706] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1074), - [709] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1059), - [712] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1070), - [715] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(99), - [718] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1252), - [721] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(418), - [724] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1169), - [727] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1178), - [730] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1191), - [733] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(498), - [736] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(499), - [739] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(613), - [742] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1045), - [745] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(990), - [748] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(613), - [751] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 2), - [753] = {.count = 1, .reusable = false}, SHIFT(364), - [755] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(365), - [758] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(269), - [761] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(720), - [764] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(40), - [767] = {.count = 1, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), - [769] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1088), - [772] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1069), - [775] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1066), - [778] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(107), - [781] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1250), - [784] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(429), - [787] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1172), - [790] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1171), - [793] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1167), - [796] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(616), - [799] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(616), - [802] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 4, .production_id = 8), - [804] = {.count = 1, .reusable = false}, SHIFT(365), - [806] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(364), - [809] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(285), - [812] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(730), - [815] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(21), - [818] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1042), - [821] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1043), - [824] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1044), - [827] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(129), - [830] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1230), - [833] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(442), - [836] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1228), - [839] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1227), - [842] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1222), - [845] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(614), - [848] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(614), - [851] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 3, .production_id = 8), - [853] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 3), - [855] = {.count = 1, .reusable = false}, SHIFT(369), - [857] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(369), - [860] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(213), - [863] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(726), - [866] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(25), - [869] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1077), - [872] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1051), - [875] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1079), - [878] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(90), - [881] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1254), - [884] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(425), - [887] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1147), - [890] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1173), - [893] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1211), - [896] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(596), - [899] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(596), - [902] = {.count = 1, .reusable = false}, SHIFT(449), + [308] = {.count = 1, .reusable = false}, SHIFT(683), + [310] = {.count = 1, .reusable = true}, SHIFT(41), + [312] = {.count = 1, .reusable = true}, SHIFT(260), + [314] = {.count = 1, .reusable = false}, SHIFT(821), + [316] = {.count = 1, .reusable = false}, SHIFT(1030), + [318] = {.count = 1, .reusable = false}, SHIFT(1059), + [320] = {.count = 1, .reusable = false}, SHIFT(490), + [322] = {.count = 1, .reusable = false}, SHIFT(1240), + [324] = {.count = 1, .reusable = false}, SHIFT(1031), + [326] = {.count = 1, .reusable = false}, SHIFT(73), + [328] = {.count = 1, .reusable = false}, SHIFT(1246), + [330] = {.count = 1, .reusable = false}, SHIFT(419), + [332] = {.count = 1, .reusable = false}, SHIFT(1226), + [334] = {.count = 1, .reusable = false}, SHIFT(1216), + [336] = {.count = 1, .reusable = false}, SHIFT(1161), + [338] = {.count = 1, .reusable = true}, SHIFT(568), + [340] = {.count = 1, .reusable = false}, SHIFT(568), + [342] = {.count = 1, .reusable = true}, SHIFT(179), + [344] = {.count = 1, .reusable = true}, SHIFT(347), + [346] = {.count = 1, .reusable = true}, SHIFT(162), + [348] = {.count = 1, .reusable = true}, SHIFT(149), + [350] = {.count = 1, .reusable = false}, SHIFT(359), + [352] = {.count = 1, .reusable = false}, SHIFT(871), + [354] = {.count = 1, .reusable = false}, SHIFT(1219), + [356] = {.count = 1, .reusable = false}, SHIFT(772), + [358] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_else, 2), + [360] = {.count = 1, .reusable = false}, SHIFT(1203), + [362] = {.count = 1, .reusable = false}, SHIFT(1068), + [364] = {.count = 1, .reusable = true}, SHIFT(291), + [366] = {.count = 1, .reusable = false}, SHIFT(715), + [368] = {.count = 1, .reusable = false}, SHIFT(685), + [370] = {.count = 1, .reusable = true}, SHIFT(38), + [372] = {.count = 1, .reusable = false}, SHIFT(819), + [374] = {.count = 1, .reusable = false}, SHIFT(1074), + [376] = {.count = 1, .reusable = false}, SHIFT(1043), + [378] = {.count = 1, .reusable = false}, SHIFT(526), + [380] = {.count = 1, .reusable = false}, SHIFT(1088), + [382] = {.count = 1, .reusable = false}, SHIFT(1076), + [384] = {.count = 1, .reusable = false}, SHIFT(97), + [386] = {.count = 1, .reusable = false}, SHIFT(1250), + [388] = {.count = 1, .reusable = false}, SHIFT(405), + [390] = {.count = 1, .reusable = false}, SHIFT(1090), + [392] = {.count = 1, .reusable = false}, SHIFT(1091), + [394] = {.count = 1, .reusable = false}, SHIFT(1207), + [396] = {.count = 1, .reusable = true}, SHIFT(607), + [398] = {.count = 1, .reusable = false}, SHIFT(607), + [400] = {.count = 1, .reusable = true}, SHIFT(296), + [402] = {.count = 1, .reusable = true}, SHIFT(304), + [404] = {.count = 1, .reusable = true}, SHIFT(193), + [406] = {.count = 1, .reusable = true}, SHIFT(295), + [408] = {.count = 1, .reusable = true}, SHIFT(308), + [410] = {.count = 1, .reusable = true}, SHIFT(299), + [412] = {.count = 1, .reusable = true}, SHIFT(245), + [414] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(362), + [417] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(869), + [420] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1155), + [423] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(750), + [426] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1156), + [429] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1048), + [432] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(279), + [435] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(720), + [438] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(683), + [441] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(41), + [444] = {.count = 1, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), + [446] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(821), + [449] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1030), + [452] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1059), + [455] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(490), + [458] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1240), + [461] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1031), + [464] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(73), + [467] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1246), + [470] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(419), + [473] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1226), + [476] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1216), + [479] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1161), + [482] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(568), + [485] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(568), + [488] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(359), + [491] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(871), + [494] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1219), + [497] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(772), + [500] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1203), + [503] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1068), + [506] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(291), + [509] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(715), + [512] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(685), + [515] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(38), + [518] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(819), + [521] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1074), + [524] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1043), + [527] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(526), + [530] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1088), + [533] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1076), + [536] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(97), + [539] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1250), + [542] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(405), + [545] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1090), + [548] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1091), + [551] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1207), + [554] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(607), + [557] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(607), + [560] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_else, 1), + [562] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(360), + [565] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(874), + [568] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1249), + [571] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(778), + [574] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1247), + [577] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1029), + [580] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(290), + [583] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(712), + [586] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(664), + [589] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(40), + [592] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(822), + [595] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1032), + [598] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1034), + [601] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(515), + [604] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1235), + [607] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1037), + [610] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(82), + [613] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1232), + [616] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(414), + [619] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1231), + [622] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1230), + [625] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1228), + [628] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(606), + [631] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(606), + [634] = {.count = 1, .reusable = true}, SHIFT(276), + [636] = {.count = 1, .reusable = true}, SHIFT(178), + [638] = {.count = 1, .reusable = true}, SHIFT(234), + [640] = {.count = 1, .reusable = true}, SHIFT(272), + [642] = {.count = 1, .reusable = true}, REDUCE(sym_translation_unit, 1), + [644] = {.count = 1, .reusable = false}, SHIFT(358), + [646] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 3), + [648] = {.count = 1, .reusable = false}, SHIFT(709), + [650] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 4, .production_id = 7), + [652] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(358), + [655] = {.count = 1, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), + [657] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(198), + [660] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(480), + [663] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(480), + [666] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(493), + [669] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(158), + [672] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(717), + [675] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(660), + [678] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1243), + [681] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(24), + [684] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(661), + [687] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(704), + [690] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(709), + [693] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1026), + [696] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1021), + [699] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1018), + [702] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1071), + [705] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1052), + [708] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1028), + [711] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(70), + [714] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1248), + [717] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(434), + [720] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1089), + [723] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1087), + [726] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1186), + [729] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(496), + [732] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(492), + [735] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(582), + [738] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1039), + [741] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(958), + [744] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(582), + [747] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 2), + [749] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 3, .production_id = 7), + [751] = {.count = 1, .reusable = false}, SHIFT(363), + [753] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 2), + [755] = {.count = 1, .reusable = false}, SHIFT(364), + [757] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 4, .production_id = 7), + [759] = {.count = 1, .reusable = false}, SHIFT(361), + [761] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 3), + [763] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 3, .production_id = 7), + [765] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(364), + [768] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(291), + [771] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(715), + [774] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(38), + [777] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1074), + [780] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1043), + [783] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1076), + [786] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(97), + [789] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1250), + [792] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(405), + [795] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1090), + [798] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1091), + [801] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1207), + [804] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(607), + [807] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(607), + [810] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(363), + [813] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(279), + [816] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(720), + [819] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(41), + [822] = {.count = 1, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), + [824] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1030), + [827] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1059), + [830] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1031), + [833] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(73), + [836] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1246), + [839] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(419), + [842] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1226), + [845] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1216), + [848] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1161), + [851] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(568), + [854] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(568), + [857] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(361), + [860] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(290), + [863] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(712), + [866] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(40), + [869] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1032), + [872] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1034), + [875] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1037), + [878] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(82), + [881] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1232), + [884] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(414), + [887] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1231), + [890] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1230), + [893] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1228), + [896] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(606), + [899] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(606), + [902] = {.count = 1, .reusable = false}, SHIFT(460), [904] = {.count = 1, .reusable = true}, REDUCE(sym_sizeof_expression, 4, .production_id = 40), - [906] = {.count = 1, .reusable = true}, SHIFT(236), - [908] = {.count = 1, .reusable = false}, SHIFT(512), - [910] = {.count = 1, .reusable = true}, SHIFT(512), - [912] = {.count = 1, .reusable = false}, SHIFT(491), + [906] = {.count = 1, .reusable = true}, SHIFT(262), + [908] = {.count = 1, .reusable = false}, SHIFT(495), + [910] = {.count = 1, .reusable = true}, SHIFT(495), + [912] = {.count = 1, .reusable = false}, SHIFT(493), [914] = {.count = 1, .reusable = false}, REDUCE(sym_sizeof_expression, 4, .production_id = 40), - [916] = {.count = 1, .reusable = true}, SHIFT(361), - [918] = {.count = 1, .reusable = true}, SHIFT(500), - [920] = {.count = 1, .reusable = false}, SHIFT(523), - [922] = {.count = 1, .reusable = true}, SHIFT(449), - [924] = {.count = 1, .reusable = false}, SHIFT(390), - [926] = {.count = 1, .reusable = true}, SHIFT(448), - [928] = {.count = 1, .reusable = true}, SHIFT(611), - [930] = {.count = 1, .reusable = false}, SHIFT(611), - [932] = {.count = 1, .reusable = true}, SHIFT(453), - [934] = {.count = 1, .reusable = true}, SHIFT(592), - [936] = {.count = 1, .reusable = false}, SHIFT(592), - [938] = {.count = 1, .reusable = true}, SHIFT(458), - [940] = {.count = 1, .reusable = true}, SHIFT(593), - [942] = {.count = 1, .reusable = false}, SHIFT(593), - [944] = {.count = 1, .reusable = true}, SHIFT(485), - [946] = {.count = 1, .reusable = true}, SHIFT(603), - [948] = {.count = 1, .reusable = false}, SHIFT(603), - [950] = {.count = 1, .reusable = false}, SHIFT(545), - [952] = {.count = 1, .reusable = false}, SHIFT(546), - [954] = {.count = 1, .reusable = false}, SHIFT(547), - [956] = {.count = 1, .reusable = false}, SHIFT(544), - [958] = {.count = 1, .reusable = false}, SHIFT(505), - [960] = {.count = 1, .reusable = false}, REDUCE(sym_if_statement, 5, .production_id = 56), - [962] = {.count = 1, .reusable = true}, REDUCE(sym_if_statement, 5, .production_id = 56), - [964] = {.count = 1, .reusable = false}, REDUCE(sym_while_statement, 3, .production_id = 21), - [966] = {.count = 1, .reusable = true}, REDUCE(sym_while_statement, 3, .production_id = 21), - [968] = {.count = 1, .reusable = false}, REDUCE(sym_compound_statement, 3), - [970] = {.count = 1, .reusable = true}, REDUCE(sym_compound_statement, 3), - [972] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 7, .production_id = 64), - [974] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 7, .production_id = 64), - [976] = {.count = 1, .reusable = false}, REDUCE(sym_if_statement, 3, .production_id = 20), - [978] = {.count = 1, .reusable = true}, REDUCE(sym_if_statement, 3, .production_id = 20), - [980] = {.count = 1, .reusable = false}, SHIFT(92), - [982] = {.count = 1, .reusable = false}, REDUCE(sym_switch_statement, 3, .production_id = 21), - [984] = {.count = 1, .reusable = true}, REDUCE(sym_switch_statement, 3, .production_id = 21), - [986] = {.count = 1, .reusable = false}, REDUCE(sym_return_statement, 3), - [988] = {.count = 1, .reusable = true}, REDUCE(sym_return_statement, 3), - [990] = {.count = 1, .reusable = false}, REDUCE(sym_goto_statement, 3, .production_id = 22), - [992] = {.count = 1, .reusable = true}, REDUCE(sym_goto_statement, 3, .production_id = 22), - [994] = {.count = 1, .reusable = false}, REDUCE(sym_labeled_statement, 3, .production_id = 24), - [996] = {.count = 1, .reusable = true}, REDUCE(sym_labeled_statement, 3, .production_id = 24), - [998] = {.count = 1, .reusable = false}, REDUCE(sym_declaration, 3, .production_id = 26), - [1000] = {.count = 1, .reusable = true}, REDUCE(sym_declaration, 3, .production_id = 26), - [1002] = {.count = 1, .reusable = false}, REDUCE(sym_compound_statement, 2), - [1004] = {.count = 1, .reusable = true}, REDUCE(sym_compound_statement, 2), - [1006] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 9, .production_id = 75), - [1008] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 9, .production_id = 75), - [1010] = {.count = 1, .reusable = false}, REDUCE(sym_expression_statement, 1), - [1012] = {.count = 1, .reusable = true}, REDUCE(sym_expression_statement, 1), - [1014] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 6), - [1016] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 6), - [1018] = {.count = 1, .reusable = false}, REDUCE(sym_type_definition, 6, .production_id = 63), - [1020] = {.count = 1, .reusable = true}, REDUCE(sym_type_definition, 6, .production_id = 63), - [1022] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 6, .production_id = 64), - [1024] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 6, .production_id = 64), - [1026] = {.count = 1, .reusable = false}, REDUCE(sym_do_statement, 5, .production_id = 57), - [1028] = {.count = 1, .reusable = true}, REDUCE(sym_do_statement, 5, .production_id = 57), - [1030] = {.count = 1, .reusable = false}, REDUCE(sym_break_statement, 2), - [1032] = {.count = 1, .reusable = true}, REDUCE(sym_break_statement, 2), - [1034] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 7, .production_id = 70), - [1036] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 7, .production_id = 70), - [1038] = {.count = 1, .reusable = false}, REDUCE(sym_return_statement, 2), - [1040] = {.count = 1, .reusable = true}, REDUCE(sym_return_statement, 2), - [1042] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 7, .production_id = 69), - [1044] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 7, .production_id = 69), - [1046] = {.count = 1, .reusable = false}, REDUCE(sym_continue_statement, 2), - [1048] = {.count = 1, .reusable = true}, REDUCE(sym_continue_statement, 2), - [1050] = {.count = 1, .reusable = false}, REDUCE(sym_expression_statement, 2), - [1052] = {.count = 1, .reusable = true}, REDUCE(sym_expression_statement, 2), - [1054] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 8, .production_id = 71), - [1056] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 8, .production_id = 71), - [1058] = {.count = 1, .reusable = false}, REDUCE(sym_type_definition, 5, .production_id = 54), - [1060] = {.count = 1, .reusable = true}, REDUCE(sym_type_definition, 5, .production_id = 54), - [1062] = {.count = 1, .reusable = false}, REDUCE(sym_type_definition, 5, .production_id = 53), - [1064] = {.count = 1, .reusable = true}, REDUCE(sym_type_definition, 5, .production_id = 53), - [1066] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 8, .production_id = 72), - [1068] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 8, .production_id = 72), - [1070] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 8, .production_id = 73), - [1072] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 8, .production_id = 73), - [1074] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 8, .production_id = 74), - [1076] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 8, .production_id = 74), - [1078] = {.count = 1, .reusable = false}, REDUCE(sym_declaration, 4, .production_id = 45), - [1080] = {.count = 1, .reusable = true}, REDUCE(sym_declaration, 4, .production_id = 45), - [1082] = {.count = 1, .reusable = false}, REDUCE(sym_type_definition, 4, .production_id = 38), - [1084] = {.count = 1, .reusable = true}, REDUCE(sym_type_definition, 4, .production_id = 38), - [1086] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 7, .production_id = 67), - [1088] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 7, .production_id = 67), - [1090] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 7, .production_id = 68), - [1092] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 7, .production_id = 68), - [1094] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if, 4, .production_id = 33), - [1096] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if, 4, .production_id = 33), - [1098] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_function_def, 4, .production_id = 32), - [1100] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_function_def, 4, .production_id = 32), - [1102] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if, 6, .production_id = 60), - [1104] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if, 6, .production_id = 60), - [1106] = {.count = 1, .reusable = false}, REDUCE(sym_declaration_list, 3), - [1108] = {.count = 1, .reusable = true}, REDUCE(sym_declaration_list, 3), - [1110] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef, 5, .production_id = 50), - [1112] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef, 5, .production_id = 50), - [1114] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if, 5, .production_id = 33), - [1116] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if, 5, .production_id = 33), - [1118] = {.count = 1, .reusable = false}, REDUCE(sym_string_literal, 3), - [1120] = {.count = 1, .reusable = true}, REDUCE(sym_string_literal, 3), - [1122] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_def, 4, .production_id = 31), - [1124] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_def, 4, .production_id = 31), - [1126] = {.count = 1, .reusable = false}, REDUCE(sym_function_definition, 3, .production_id = 27), - [1128] = {.count = 1, .reusable = true}, REDUCE(sym_function_definition, 3, .production_id = 27), - [1130] = {.count = 1, .reusable = false}, REDUCE(sym_string_literal, 2), - [1132] = {.count = 1, .reusable = true}, REDUCE(sym_string_literal, 2), - [1134] = {.count = 1, .reusable = false}, REDUCE(sym_declaration_list, 2), - [1136] = {.count = 1, .reusable = true}, REDUCE(sym_declaration_list, 2), - [1138] = {.count = 1, .reusable = false}, REDUCE(sym_linkage_specification, 3, .production_id = 17), - [1140] = {.count = 1, .reusable = true}, REDUCE(sym_linkage_specification, 3, .production_id = 17), - [1142] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_call, 3, .production_id = 14), - [1144] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_call, 3, .production_id = 14), - [1146] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef, 3, .production_id = 13), - [1148] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef, 3, .production_id = 13), + [916] = {.count = 1, .reusable = true}, SHIFT(353), + [918] = {.count = 1, .reusable = true}, SHIFT(498), + [920] = {.count = 1, .reusable = false}, SHIFT(499), + [922] = {.count = 1, .reusable = true}, SHIFT(460), + [924] = {.count = 1, .reusable = false}, SHIFT(378), + [926] = {.count = 1, .reusable = true}, SHIFT(471), + [928] = {.count = 1, .reusable = true}, SHIFT(609), + [930] = {.count = 1, .reusable = false}, SHIFT(609), + [932] = {.count = 1, .reusable = true}, SHIFT(459), + [934] = {.count = 1, .reusable = true}, SHIFT(575), + [936] = {.count = 1, .reusable = false}, SHIFT(575), + [938] = {.count = 1, .reusable = true}, SHIFT(478), + [940] = {.count = 1, .reusable = true}, SHIFT(608), + [942] = {.count = 1, .reusable = false}, SHIFT(608), + [944] = {.count = 1, .reusable = true}, SHIFT(461), + [946] = {.count = 1, .reusable = true}, SHIFT(597), + [948] = {.count = 1, .reusable = false}, SHIFT(597), + [950] = {.count = 1, .reusable = false}, SHIFT(539), + [952] = {.count = 1, .reusable = false}, SHIFT(537), + [954] = {.count = 1, .reusable = false}, SHIFT(538), + [956] = {.count = 1, .reusable = false}, SHIFT(536), + [958] = {.count = 1, .reusable = false}, SHIFT(532), + [960] = {.count = 1, .reusable = false}, REDUCE(sym_type_definition, 5, .production_id = 53), + [962] = {.count = 1, .reusable = true}, REDUCE(sym_type_definition, 5, .production_id = 53), + [964] = {.count = 1, .reusable = false}, REDUCE(sym_continue_statement, 2), + [966] = {.count = 1, .reusable = true}, REDUCE(sym_continue_statement, 2), + [968] = {.count = 1, .reusable = false}, REDUCE(sym_return_statement, 3), + [970] = {.count = 1, .reusable = true}, REDUCE(sym_return_statement, 3), + [972] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 7, .production_id = 69), + [974] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 7, .production_id = 69), + [976] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 9, .production_id = 75), + [978] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 9, .production_id = 75), + [980] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 8, .production_id = 74), + [982] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 8, .production_id = 74), + [984] = {.count = 1, .reusable = false}, REDUCE(sym_while_statement, 3, .production_id = 21), + [986] = {.count = 1, .reusable = true}, REDUCE(sym_while_statement, 3, .production_id = 21), + [988] = {.count = 1, .reusable = false}, REDUCE(sym_type_definition, 5, .production_id = 54), + [990] = {.count = 1, .reusable = true}, REDUCE(sym_type_definition, 5, .production_id = 54), + [992] = {.count = 1, .reusable = false}, REDUCE(sym_switch_statement, 3, .production_id = 21), + [994] = {.count = 1, .reusable = true}, REDUCE(sym_switch_statement, 3, .production_id = 21), + [996] = {.count = 1, .reusable = false}, REDUCE(sym_if_statement, 3, .production_id = 20), + [998] = {.count = 1, .reusable = true}, REDUCE(sym_if_statement, 3, .production_id = 20), + [1000] = {.count = 1, .reusable = false}, SHIFT(104), + [1002] = {.count = 1, .reusable = false}, REDUCE(sym_type_definition, 4, .production_id = 38), + [1004] = {.count = 1, .reusable = true}, REDUCE(sym_type_definition, 4, .production_id = 38), + [1006] = {.count = 1, .reusable = false}, REDUCE(sym_labeled_statement, 3, .production_id = 24), + [1008] = {.count = 1, .reusable = true}, REDUCE(sym_labeled_statement, 3, .production_id = 24), + [1010] = {.count = 1, .reusable = false}, REDUCE(sym_compound_statement, 3), + [1012] = {.count = 1, .reusable = true}, REDUCE(sym_compound_statement, 3), + [1014] = {.count = 1, .reusable = false}, REDUCE(sym_declaration, 4, .production_id = 45), + [1016] = {.count = 1, .reusable = true}, REDUCE(sym_declaration, 4, .production_id = 45), + [1018] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 8, .production_id = 72), + [1020] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 8, .production_id = 72), + [1022] = {.count = 1, .reusable = false}, REDUCE(sym_declaration, 3, .production_id = 26), + [1024] = {.count = 1, .reusable = true}, REDUCE(sym_declaration, 3, .production_id = 26), + [1026] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 8, .production_id = 73), + [1028] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 8, .production_id = 73), + [1030] = {.count = 1, .reusable = false}, REDUCE(sym_goto_statement, 3, .production_id = 22), + [1032] = {.count = 1, .reusable = true}, REDUCE(sym_goto_statement, 3, .production_id = 22), + [1034] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 6, .production_id = 64), + [1036] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 6, .production_id = 64), + [1038] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 8, .production_id = 71), + [1040] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 8, .production_id = 71), + [1042] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 7, .production_id = 70), + [1044] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 7, .production_id = 70), + [1046] = {.count = 1, .reusable = false}, REDUCE(sym_expression_statement, 1), + [1048] = {.count = 1, .reusable = true}, REDUCE(sym_expression_statement, 1), + [1050] = {.count = 1, .reusable = false}, REDUCE(sym_type_definition, 6, .production_id = 63), + [1052] = {.count = 1, .reusable = true}, REDUCE(sym_type_definition, 6, .production_id = 63), + [1054] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 6), + [1056] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 6), + [1058] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 7, .production_id = 64), + [1060] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 7, .production_id = 64), + [1062] = {.count = 1, .reusable = false}, REDUCE(sym_compound_statement, 2), + [1064] = {.count = 1, .reusable = true}, REDUCE(sym_compound_statement, 2), + [1066] = {.count = 1, .reusable = false}, REDUCE(sym_do_statement, 5, .production_id = 57), + [1068] = {.count = 1, .reusable = true}, REDUCE(sym_do_statement, 5, .production_id = 57), + [1070] = {.count = 1, .reusable = false}, REDUCE(sym_return_statement, 2), + [1072] = {.count = 1, .reusable = true}, REDUCE(sym_return_statement, 2), + [1074] = {.count = 1, .reusable = false}, REDUCE(sym_break_statement, 2), + [1076] = {.count = 1, .reusable = true}, REDUCE(sym_break_statement, 2), + [1078] = {.count = 1, .reusable = false}, REDUCE(sym_if_statement, 5, .production_id = 56), + [1080] = {.count = 1, .reusable = true}, REDUCE(sym_if_statement, 5, .production_id = 56), + [1082] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 7, .production_id = 67), + [1084] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 7, .production_id = 67), + [1086] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 7, .production_id = 68), + [1088] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 7, .production_id = 68), + [1090] = {.count = 1, .reusable = false}, REDUCE(sym_expression_statement, 2), + [1092] = {.count = 1, .reusable = true}, REDUCE(sym_expression_statement, 2), + [1094] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_call, 3, .production_id = 14), + [1096] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_call, 3, .production_id = 14), + [1098] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if, 6, .production_id = 60), + [1100] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if, 6, .production_id = 60), + [1102] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if, 4, .production_id = 33), + [1104] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if, 4, .production_id = 33), + [1106] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if, 5, .production_id = 49), + [1108] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if, 5, .production_id = 49), + [1110] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if, 5, .production_id = 33), + [1112] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if, 5, .production_id = 33), + [1114] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef, 5, .production_id = 50), + [1116] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef, 5, .production_id = 50), + [1118] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef, 4, .production_id = 13), + [1120] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef, 4, .production_id = 13), + [1122] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef, 4, .production_id = 34), + [1124] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef, 4, .production_id = 34), + [1126] = {.count = 1, .reusable = false}, REDUCE(sym_declaration_list, 3), + [1128] = {.count = 1, .reusable = true}, REDUCE(sym_declaration_list, 3), + [1130] = {.count = 1, .reusable = false}, REDUCE(sym_declaration_list, 2), + [1132] = {.count = 1, .reusable = true}, REDUCE(sym_declaration_list, 2), + [1134] = {.count = 1, .reusable = false}, REDUCE(sym_function_definition, 3, .production_id = 27), + [1136] = {.count = 1, .reusable = true}, REDUCE(sym_function_definition, 3, .production_id = 27), + [1138] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_def, 4, .production_id = 31), + [1140] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_def, 4, .production_id = 31), + [1142] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_function_def, 4, .production_id = 32), + [1144] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_function_def, 4, .production_id = 32), + [1146] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_function_def, 5, .production_id = 48), + [1148] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_function_def, 5, .production_id = 48), [1150] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_def, 3, .production_id = 13), [1152] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_def, 3, .production_id = 13), - [1154] = {.count = 1, .reusable = false}, REDUCE(sym__empty_declaration, 2), - [1156] = {.count = 1, .reusable = true}, REDUCE(sym__empty_declaration, 2), - [1158] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_call, 2, .production_id = 4), - [1160] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_call, 2, .production_id = 4), - [1162] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_include, 2, .production_id = 3), - [1164] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_include, 2, .production_id = 3), - [1166] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef, 4, .production_id = 13), - [1168] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef, 4, .production_id = 13), - [1170] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef, 4, .production_id = 34), - [1172] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef, 4, .production_id = 34), - [1174] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if, 5, .production_id = 49), - [1176] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if, 5, .production_id = 49), - [1178] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_function_def, 5, .production_id = 48), - [1180] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_function_def, 5, .production_id = 48), - [1182] = {.count = 1, .reusable = false}, SHIFT(489), - [1184] = {.count = 1, .reusable = false}, SHIFT(854), - [1186] = {.count = 1, .reusable = false}, SHIFT(850), - [1188] = {.count = 1, .reusable = true}, SHIFT(598), - [1190] = {.count = 1, .reusable = false}, SHIFT(598), - [1192] = {.count = 1, .reusable = false}, SHIFT(94), - [1194] = {.count = 1, .reusable = false}, SHIFT(108), - [1196] = {.count = 1, .reusable = false}, SHIFT(84), - [1198] = {.count = 1, .reusable = true}, SHIFT(1195), - [1200] = {.count = 1, .reusable = true}, SHIFT(541), - [1202] = {.count = 1, .reusable = true}, SHIFT(540), - [1204] = {.count = 1, .reusable = false}, SHIFT(1196), - [1206] = {.count = 1, .reusable = true}, SHIFT(573), - [1208] = {.count = 1, .reusable = false}, SHIFT(573), - [1210] = {.count = 1, .reusable = true}, SHIFT(514), - [1212] = {.count = 1, .reusable = true}, SHIFT(601), - [1214] = {.count = 1, .reusable = false}, SHIFT(601), - [1216] = {.count = 1, .reusable = true}, SHIFT(537), - [1218] = {.count = 1, .reusable = false}, REDUCE(sym__type_specifier, 1, .production_id = 1), - [1220] = {.count = 1, .reusable = true}, REDUCE(sym__expression, 1), - [1222] = {.count = 3, .reusable = true}, REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(sym__expression, 1), SHIFT(716), - [1226] = {.count = 1, .reusable = false}, REDUCE(sym__expression, 1), - [1228] = {.count = 2, .reusable = false}, REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(sym__expression, 1), - [1231] = {.count = 1, .reusable = false}, SHIFT(527), - [1233] = {.count = 1, .reusable = true}, SHIFT(102), - [1235] = {.count = 1, .reusable = true}, SHIFT(527), - [1237] = {.count = 1, .reusable = true}, SHIFT(131), - [1239] = {.count = 2, .reusable = true}, REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(sym__expression, 1), - [1242] = {.count = 1, .reusable = true}, SHIFT(98), - [1244] = {.count = 1, .reusable = true}, SHIFT(91), - [1246] = {.count = 1, .reusable = false}, SHIFT(829), - [1248] = {.count = 1, .reusable = false}, SHIFT(1224), - [1250] = {.count = 1, .reusable = false}, SHIFT(785), - [1252] = {.count = 1, .reusable = false}, SHIFT(658), - [1254] = {.count = 1, .reusable = false}, SHIFT(1177), - [1256] = {.count = 1, .reusable = false}, SHIFT(408), - [1258] = {.count = 1, .reusable = false}, SHIFT(744), - [1260] = {.count = 1, .reusable = false}, SHIFT(1080), - [1262] = {.count = 1, .reusable = true}, SHIFT(483), - [1264] = {.count = 1, .reusable = true}, SHIFT(918), - [1266] = {.count = 1, .reusable = false}, SHIFT(569), - [1268] = {.count = 1, .reusable = true}, SHIFT(632), - [1270] = {.count = 1, .reusable = false}, SHIFT(632), - [1272] = {.count = 1, .reusable = true}, SHIFT(459), - [1274] = {.count = 1, .reusable = true}, SHIFT(985), - [1276] = {.count = 1, .reusable = true}, SHIFT(661), - [1278] = {.count = 1, .reusable = false}, SHIFT(661), - [1280] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_elif_in_field_declaration_list, 4, .production_id = 33), - [1282] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_elif_in_field_declaration_list, 3, .production_id = 33), - [1284] = {.count = 1, .reusable = true}, SHIFT(445), - [1286] = {.count = 1, .reusable = true}, SHIFT(973), - [1288] = {.count = 1, .reusable = true}, SHIFT(643), - [1290] = {.count = 1, .reusable = false}, SHIFT(643), - [1292] = {.count = 1, .reusable = true}, SHIFT(486), - [1294] = {.count = 1, .reusable = true}, SHIFT(968), - [1296] = {.count = 1, .reusable = true}, SHIFT(646), - [1298] = {.count = 1, .reusable = false}, SHIFT(646), - [1300] = {.count = 1, .reusable = true}, SHIFT(484), - [1302] = {.count = 1, .reusable = true}, SHIFT(969), - [1304] = {.count = 1, .reusable = true}, SHIFT(647), - [1306] = {.count = 1, .reusable = false}, SHIFT(647), - [1308] = {.count = 1, .reusable = true}, SHIFT(472), - [1310] = {.count = 1, .reusable = true}, SHIFT(912), - [1312] = {.count = 1, .reusable = true}, SHIFT(621), - [1314] = {.count = 1, .reusable = false}, SHIFT(621), - [1316] = {.count = 1, .reusable = true}, REDUCE(aux_sym_concatenated_string_repeat1, 2), - [1318] = {.count = 1, .reusable = false}, REDUCE(aux_sym_concatenated_string_repeat1, 2), - [1320] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(990), - [1323] = {.count = 1, .reusable = false}, SHIFT(654), - [1325] = {.count = 1, .reusable = true}, REDUCE(sym_concatenated_string, 2), - [1327] = {.count = 1, .reusable = false}, REDUCE(sym_concatenated_string, 2), - [1329] = {.count = 1, .reusable = false}, SHIFT(679), - [1331] = {.count = 1, .reusable = true}, SHIFT(464), - [1333] = {.count = 1, .reusable = true}, SHIFT(903), - [1335] = {.count = 1, .reusable = true}, SHIFT(622), - [1337] = {.count = 1, .reusable = false}, SHIFT(622), - [1339] = {.count = 1, .reusable = false}, SHIFT(692), - [1341] = {.count = 1, .reusable = true}, SHIFT(465), - [1343] = {.count = 1, .reusable = true}, SHIFT(937), - [1345] = {.count = 1, .reusable = true}, SHIFT(618), - [1347] = {.count = 1, .reusable = false}, SHIFT(618), - [1349] = {.count = 1, .reusable = true}, SHIFT(480), - [1351] = {.count = 1, .reusable = true}, SHIFT(939), - [1353] = {.count = 1, .reusable = true}, SHIFT(625), - [1355] = {.count = 1, .reusable = false}, SHIFT(625), - [1357] = {.count = 1, .reusable = true}, SHIFT(482), - [1359] = {.count = 1, .reusable = true}, SHIFT(916), - [1361] = {.count = 1, .reusable = true}, SHIFT(657), - [1363] = {.count = 1, .reusable = false}, SHIFT(657), - [1365] = {.count = 1, .reusable = false}, SHIFT(696), - [1367] = {.count = 1, .reusable = false}, SHIFT(701), - [1369] = {.count = 1, .reusable = false}, SHIFT(699), - [1371] = {.count = 1, .reusable = false}, SHIFT(671), - [1373] = {.count = 1, .reusable = false}, SHIFT(663), - [1375] = {.count = 1, .reusable = false}, SHIFT(665), - [1377] = {.count = 1, .reusable = false}, SHIFT(710), - [1379] = {.count = 1, .reusable = false}, SHIFT(706), - [1381] = {.count = 1, .reusable = false}, SHIFT(853), - [1383] = {.count = 1, .reusable = true}, SHIFT(998), - [1385] = {.count = 1, .reusable = true}, SHIFT(875), - [1387] = {.count = 1, .reusable = true}, SHIFT(401), - [1389] = {.count = 1, .reusable = true}, SHIFT(714), - [1391] = {.count = 1, .reusable = true}, SHIFT(379), - [1393] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(829), - [1396] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1224), - [1399] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(785), - [1402] = {.count = 1, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), - [1404] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1177), - [1407] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1080), - [1410] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(668), - [1413] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1246), - [1416] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(669), - [1419] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(712), - [1422] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(718), - [1425] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1008), - [1428] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1036), - [1431] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1035), - [1434] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1225), - [1437] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(782), - [1440] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1197), - [1443] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1073), - [1446] = {.count = 1, .reusable = false}, SHIFT(1206), - [1448] = {.count = 1, .reusable = false}, SHIFT(777), - [1450] = {.count = 1, .reusable = false}, SHIFT(1198), - [1452] = {.count = 1, .reusable = false}, SHIFT(1075), - [1454] = {.count = 1, .reusable = true}, SHIFT(831), - [1456] = {.count = 1, .reusable = false}, SHIFT(1225), - [1458] = {.count = 1, .reusable = false}, SHIFT(782), - [1460] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_else_in_field_declaration_list, 2), - [1462] = {.count = 1, .reusable = false}, SHIFT(1197), - [1464] = {.count = 1, .reusable = false}, SHIFT(1073), - [1466] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_else_in_field_declaration_list, 1), - [1468] = {.count = 1, .reusable = true}, SHIFT(836), - [1470] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1206), - [1473] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(777), - [1476] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1198), - [1479] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1075), - [1482] = {.count = 1, .reusable = true}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), - [1484] = {.count = 1, .reusable = true}, SHIFT(117), - [1486] = {.count = 1, .reusable = true}, SHIFT(609), - [1488] = {.count = 1, .reusable = false}, SHIFT(609), - [1490] = {.count = 1, .reusable = true}, SHIFT(120), - [1492] = {.count = 1, .reusable = true}, SHIFT(583), - [1494] = {.count = 1, .reusable = false}, SHIFT(583), - [1496] = {.count = 1, .reusable = true}, SHIFT(119), - [1498] = {.count = 1, .reusable = true}, SHIFT(600), - [1500] = {.count = 1, .reusable = false}, SHIFT(600), - [1502] = {.count = 1, .reusable = true}, SHIFT(69), - [1504] = {.count = 1, .reusable = true}, SHIFT(581), - [1506] = {.count = 1, .reusable = false}, SHIFT(581), - [1508] = {.count = 1, .reusable = true}, SHIFT(121), - [1510] = {.count = 1, .reusable = true}, SHIFT(587), - [1512] = {.count = 1, .reusable = false}, SHIFT(587), - [1514] = {.count = 1, .reusable = true}, SHIFT(85), - [1516] = {.count = 1, .reusable = true}, SHIFT(597), - [1518] = {.count = 1, .reusable = false}, SHIFT(597), - [1520] = {.count = 1, .reusable = true}, SHIFT(156), - [1522] = {.count = 1, .reusable = true}, SHIFT(608), - [1524] = {.count = 1, .reusable = false}, SHIFT(608), - [1526] = {.count = 1, .reusable = true}, SHIFT(70), - [1528] = {.count = 1, .reusable = true}, SHIFT(602), - [1530] = {.count = 1, .reusable = false}, SHIFT(602), - [1532] = {.count = 1, .reusable = true}, SHIFT(82), - [1534] = {.count = 1, .reusable = true}, SHIFT(582), - [1536] = {.count = 1, .reusable = false}, SHIFT(582), - [1538] = {.count = 1, .reusable = true}, SHIFT(81), - [1540] = {.count = 1, .reusable = true}, SHIFT(606), - [1542] = {.count = 1, .reusable = false}, SHIFT(606), - [1544] = {.count = 1, .reusable = true}, SHIFT(68), - [1546] = {.count = 1, .reusable = true}, SHIFT(604), - [1548] = {.count = 1, .reusable = false}, SHIFT(604), - [1550] = {.count = 1, .reusable = true}, SHIFT(122), - [1552] = {.count = 1, .reusable = true}, SHIFT(577), - [1554] = {.count = 1, .reusable = false}, SHIFT(577), - [1556] = {.count = 1, .reusable = true}, SHIFT(123), - [1558] = {.count = 1, .reusable = true}, SHIFT(580), - [1560] = {.count = 1, .reusable = false}, SHIFT(580), - [1562] = {.count = 1, .reusable = true}, SHIFT(221), - [1564] = {.count = 1, .reusable = true}, SHIFT(599), - [1566] = {.count = 1, .reusable = false}, SHIFT(599), - [1568] = {.count = 1, .reusable = true}, SHIFT(114), - [1570] = {.count = 1, .reusable = true}, SHIFT(591), - [1572] = {.count = 1, .reusable = false}, SHIFT(591), - [1574] = {.count = 1, .reusable = true}, SHIFT(124), - [1576] = {.count = 1, .reusable = true}, SHIFT(575), - [1578] = {.count = 1, .reusable = false}, SHIFT(575), - [1580] = {.count = 1, .reusable = true}, SHIFT(86), - [1582] = {.count = 1, .reusable = true}, SHIFT(615), - [1584] = {.count = 1, .reusable = false}, SHIFT(615), - [1586] = {.count = 1, .reusable = true}, SHIFT(194), - [1588] = {.count = 1, .reusable = true}, SHIFT(595), - [1590] = {.count = 1, .reusable = false}, SHIFT(595), - [1592] = {.count = 1, .reusable = true}, SHIFT(130), - [1594] = {.count = 1, .reusable = true}, SHIFT(586), - [1596] = {.count = 1, .reusable = false}, SHIFT(586), - [1598] = {.count = 1, .reusable = true}, SHIFT(76), - [1600] = {.count = 1, .reusable = true}, SHIFT(578), - [1602] = {.count = 1, .reusable = false}, SHIFT(578), - [1604] = {.count = 1, .reusable = true}, SHIFT(77), - [1606] = {.count = 1, .reusable = true}, SHIFT(594), - [1608] = {.count = 1, .reusable = false}, SHIFT(594), - [1610] = {.count = 1, .reusable = true}, SHIFT(83), - [1612] = {.count = 1, .reusable = true}, SHIFT(617), - [1614] = {.count = 1, .reusable = false}, SHIFT(617), - [1616] = {.count = 1, .reusable = true}, SHIFT(105), - [1618] = {.count = 1, .reusable = true}, SHIFT(588), - [1620] = {.count = 1, .reusable = false}, SHIFT(588), - [1622] = {.count = 1, .reusable = true}, SHIFT(104), - [1624] = {.count = 1, .reusable = true}, SHIFT(589), - [1626] = {.count = 1, .reusable = false}, SHIFT(589), - [1628] = {.count = 1, .reusable = true}, SHIFT(612), - [1630] = {.count = 1, .reusable = false}, SHIFT(612), - [1632] = {.count = 1, .reusable = true}, SHIFT(579), - [1634] = {.count = 1, .reusable = false}, SHIFT(579), - [1636] = {.count = 1, .reusable = true}, SHIFT(75), - [1638] = {.count = 1, .reusable = true}, SHIFT(605), - [1640] = {.count = 1, .reusable = false}, SHIFT(605), - [1642] = {.count = 1, .reusable = true}, SHIFT(118), - [1644] = {.count = 1, .reusable = true}, SHIFT(590), - [1646] = {.count = 1, .reusable = false}, SHIFT(590), - [1648] = {.count = 1, .reusable = true}, SHIFT(79), - [1650] = {.count = 1, .reusable = true}, SHIFT(574), - [1652] = {.count = 1, .reusable = false}, SHIFT(574), - [1654] = {.count = 1, .reusable = true}, SHIFT(226), - [1656] = {.count = 1, .reusable = true}, SHIFT(585), - [1658] = {.count = 1, .reusable = false}, SHIFT(585), - [1660] = {.count = 1, .reusable = true}, SHIFT(571), - [1662] = {.count = 1, .reusable = false}, SHIFT(571), - [1664] = {.count = 1, .reusable = false}, SHIFT(455), - [1666] = {.count = 1, .reusable = true}, SHIFT(967), - [1668] = {.count = 1, .reusable = true}, SHIFT(455), - [1670] = {.count = 1, .reusable = true}, SHIFT(416), - [1672] = {.count = 1, .reusable = true}, SHIFT(639), - [1674] = {.count = 1, .reusable = false}, SHIFT(639), - [1676] = {.count = 1, .reusable = true}, SHIFT(439), - [1678] = {.count = 1, .reusable = true}, SHIFT(635), - [1680] = {.count = 1, .reusable = false}, SHIFT(635), - [1682] = {.count = 1, .reusable = true}, SHIFT(421), - [1684] = {.count = 1, .reusable = true}, SHIFT(631), - [1686] = {.count = 1, .reusable = false}, SHIFT(631), - [1688] = {.count = 1, .reusable = true}, REDUCE(sym_cast_expression, 4, .production_id = 37), - [1690] = {.count = 1, .reusable = true}, SHIFT(477), - [1692] = {.count = 1, .reusable = false}, REDUCE(sym_cast_expression, 4, .production_id = 37), - [1694] = {.count = 1, .reusable = true}, SHIFT(530), - [1696] = {.count = 1, .reusable = true}, SHIFT(515), - [1698] = {.count = 1, .reusable = true}, SHIFT(1127), - [1700] = {.count = 1, .reusable = true}, REDUCE(sym_binary_expression, 3, .production_id = 29), - [1702] = {.count = 1, .reusable = false}, REDUCE(sym_binary_expression, 3, .production_id = 29), - [1704] = {.count = 1, .reusable = true}, SHIFT(436), - [1706] = {.count = 1, .reusable = true}, SHIFT(624), - [1708] = {.count = 1, .reusable = false}, SHIFT(624), - [1710] = {.count = 1, .reusable = true}, SHIFT(424), - [1712] = {.count = 1, .reusable = true}, SHIFT(627), - [1714] = {.count = 1, .reusable = false}, SHIFT(627), - [1716] = {.count = 1, .reusable = true}, SHIFT(423), - [1718] = {.count = 1, .reusable = true}, SHIFT(633), - [1720] = {.count = 1, .reusable = false}, SHIFT(633), - [1722] = {.count = 1, .reusable = true}, REDUCE(sym_unary_expression, 2, .production_id = 5), - [1724] = {.count = 1, .reusable = false}, REDUCE(sym_unary_expression, 2, .production_id = 5), - [1726] = {.count = 1, .reusable = true}, REDUCE(sym_pointer_expression, 2, .production_id = 5), - [1728] = {.count = 1, .reusable = false}, REDUCE(sym_pointer_expression, 2, .production_id = 5), - [1730] = {.count = 1, .reusable = true}, SHIFT(431), - [1732] = {.count = 1, .reusable = true}, SHIFT(619), - [1734] = {.count = 1, .reusable = false}, SHIFT(619), - [1736] = {.count = 1, .reusable = true}, SHIFT(420), - [1738] = {.count = 1, .reusable = true}, SHIFT(662), - [1740] = {.count = 1, .reusable = false}, SHIFT(662), - [1742] = {.count = 1, .reusable = true}, SHIFT(433), - [1744] = {.count = 1, .reusable = true}, SHIFT(667), - [1746] = {.count = 1, .reusable = false}, SHIFT(667), - [1748] = {.count = 1, .reusable = true}, SHIFT(991), - [1750] = {.count = 1, .reusable = true}, REDUCE(sym_conditional_expression, 5, .production_id = 59), - [1752] = {.count = 1, .reusable = false}, SHIFT(506), - [1754] = {.count = 1, .reusable = false}, SHIFT(503), - [1756] = {.count = 1, .reusable = true}, SHIFT(502), - [1758] = {.count = 1, .reusable = true}, SHIFT(501), - [1760] = {.count = 1, .reusable = false}, SHIFT(497), - [1762] = {.count = 1, .reusable = false}, SHIFT(494), - [1764] = {.count = 1, .reusable = false}, SHIFT(492), - [1766] = {.count = 1, .reusable = true}, SHIFT(511), - [1768] = {.count = 1, .reusable = false}, SHIFT(532), - [1770] = {.count = 1, .reusable = true}, SHIFT(532), - [1772] = {.count = 1, .reusable = false}, SHIFT(533), - [1774] = {.count = 1, .reusable = false}, REDUCE(sym_conditional_expression, 5, .production_id = 59), - [1776] = {.count = 1, .reusable = true}, SHIFT(520), - [1778] = {.count = 1, .reusable = true}, SHIFT(607), - [1780] = {.count = 1, .reusable = false}, SHIFT(607), - [1782] = {.count = 1, .reusable = true}, REDUCE(sym_update_expression, 2, .production_id = 5), - [1784] = {.count = 1, .reusable = false}, REDUCE(sym_update_expression, 2, .production_id = 5), - [1786] = {.count = 1, .reusable = true}, SHIFT(427), - [1788] = {.count = 1, .reusable = true}, SHIFT(623), - [1790] = {.count = 1, .reusable = false}, SHIFT(623), - [1792] = {.count = 1, .reusable = true}, SHIFT(904), - [1794] = {.count = 1, .reusable = true}, SHIFT(951), - [1796] = {.count = 1, .reusable = true}, SHIFT(908), - [1798] = {.count = 1, .reusable = true}, REDUCE(sym_sizeof_expression, 2, .production_id = 8), - [1800] = {.count = 1, .reusable = false}, REDUCE(sym_sizeof_expression, 2, .production_id = 8), - [1802] = {.count = 1, .reusable = true}, SHIFT(513), - [1804] = {.count = 1, .reusable = true}, SHIFT(572), - [1806] = {.count = 1, .reusable = false}, SHIFT(572), - [1808] = {.count = 1, .reusable = true}, REDUCE(sym_assignment_expression, 3, .production_id = 23), - [1810] = {.count = 1, .reusable = false}, REDUCE(sym_assignment_expression, 3, .production_id = 23), - [1812] = {.count = 1, .reusable = true}, SHIFT(479), - [1814] = {.count = 1, .reusable = true}, SHIFT(848), - [1816] = {.count = 1, .reusable = true}, SHIFT(940), - [1818] = {.count = 1, .reusable = true}, SHIFT(428), - [1820] = {.count = 1, .reusable = true}, SHIFT(628), - [1822] = {.count = 1, .reusable = false}, SHIFT(628), - [1824] = {.count = 1, .reusable = true}, SHIFT(926), - [1826] = {.count = 1, .reusable = true}, SHIFT(927), - [1828] = {.count = 1, .reusable = true}, SHIFT(984), - [1830] = {.count = 1, .reusable = true}, SHIFT(417), - [1832] = {.count = 1, .reusable = true}, SHIFT(630), - [1834] = {.count = 1, .reusable = false}, SHIFT(630), - [1836] = {.count = 1, .reusable = true}, SHIFT(983), - [1838] = {.count = 1, .reusable = true}, REDUCE(sym_parenthesized_expression, 3), - [1840] = {.count = 1, .reusable = false}, REDUCE(sym_parenthesized_expression, 3), - [1842] = {.count = 1, .reusable = true}, SHIFT(640), - [1844] = {.count = 1, .reusable = false}, SHIFT(640), - [1846] = {.count = 1, .reusable = true}, REDUCE(sym__type_specifier, 1, .production_id = 1), - [1848] = {.count = 1, .reusable = true}, SHIFT(454), - [1850] = {.count = 1, .reusable = false}, SHIFT(454), - [1852] = {.count = 1, .reusable = false}, SHIFT(469), - [1854] = {.count = 1, .reusable = true}, SHIFT(469), - [1856] = {.count = 1, .reusable = true}, SHIFT(656), - [1858] = {.count = 1, .reusable = false}, SHIFT(656), - [1860] = {.count = 1, .reusable = false}, SHIFT(470), - [1862] = {.count = 1, .reusable = true}, SHIFT(470), - [1864] = {.count = 1, .reusable = true}, REDUCE(sym_argument_list, 4), - [1866] = {.count = 1, .reusable = false}, REDUCE(sym_argument_list, 4), - [1868] = {.count = 1, .reusable = true}, REDUCE(sym_char_literal, 3), - [1870] = {.count = 1, .reusable = false}, REDUCE(sym_char_literal, 3), - [1872] = {.count = 1, .reusable = false}, SHIFT(471), - [1874] = {.count = 1, .reusable = true}, SHIFT(471), - [1876] = {.count = 1, .reusable = true}, SHIFT(462), - [1878] = {.count = 1, .reusable = false}, SHIFT(462), - [1880] = {.count = 1, .reusable = true}, SHIFT(218), - [1882] = {.count = 1, .reusable = true}, SHIFT(556), - [1884] = {.count = 1, .reusable = false}, SHIFT(556), - [1886] = {.count = 1, .reusable = false}, SHIFT(473), - [1888] = {.count = 1, .reusable = true}, SHIFT(473), - [1890] = {.count = 1, .reusable = false}, SHIFT(475), - [1892] = {.count = 1, .reusable = true}, SHIFT(475), - [1894] = {.count = 1, .reusable = false}, SHIFT(450), - [1896] = {.count = 1, .reusable = true}, SHIFT(450), - [1898] = {.count = 1, .reusable = true}, SHIFT(645), - [1900] = {.count = 1, .reusable = false}, SHIFT(645), - [1902] = {.count = 1, .reusable = false}, SHIFT(476), - [1904] = {.count = 1, .reusable = true}, SHIFT(476), - [1906] = {.count = 1, .reusable = true}, SHIFT(562), - [1908] = {.count = 1, .reusable = false}, SHIFT(562), - [1910] = {.count = 1, .reusable = true}, SHIFT(561), - [1912] = {.count = 1, .reusable = false}, SHIFT(561), - [1914] = {.count = 1, .reusable = true}, REDUCE(sym_compound_literal_expression, 4, .production_id = 37), - [1916] = {.count = 1, .reusable = false}, REDUCE(sym_compound_literal_expression, 4, .production_id = 37), - [1918] = {.count = 1, .reusable = true}, SHIFT(567), - [1920] = {.count = 1, .reusable = false}, SHIFT(567), - [1922] = {.count = 1, .reusable = false}, SHIFT(468), - [1924] = {.count = 1, .reusable = true}, SHIFT(468), - [1926] = {.count = 1, .reusable = true}, REDUCE(sym_argument_list, 2), - [1928] = {.count = 1, .reusable = false}, REDUCE(sym_argument_list, 2), - [1930] = {.count = 1, .reusable = true}, REDUCE(sym_initializer_list, 4), - [1932] = {.count = 1, .reusable = false}, REDUCE(sym_initializer_list, 4), - [1934] = {.count = 1, .reusable = true}, REDUCE(sym_update_expression, 2, .production_id = 9), - [1936] = {.count = 1, .reusable = false}, REDUCE(sym_update_expression, 2, .production_id = 9), - [1938] = {.count = 1, .reusable = true}, REDUCE(sym_field_expression, 3, .production_id = 30), - [1940] = {.count = 1, .reusable = false}, REDUCE(sym_field_expression, 3, .production_id = 30), - [1942] = {.count = 1, .reusable = true}, SHIFT(620), - [1944] = {.count = 1, .reusable = false}, SHIFT(620), - [1946] = {.count = 1, .reusable = true}, REDUCE(sym_argument_list, 3), - [1948] = {.count = 1, .reusable = false}, REDUCE(sym_argument_list, 3), - [1950] = {.count = 1, .reusable = true}, REDUCE(sym_subscript_expression, 4, .production_id = 47), - [1952] = {.count = 1, .reusable = false}, REDUCE(sym_subscript_expression, 4, .production_id = 47), - [1954] = {.count = 1, .reusable = true}, SHIFT(648), - [1956] = {.count = 1, .reusable = false}, SHIFT(648), - [1958] = {.count = 1, .reusable = true}, SHIFT(565), - [1960] = {.count = 1, .reusable = false}, SHIFT(565), - [1962] = {.count = 1, .reusable = true}, REDUCE(sym_initializer_list, 3), - [1964] = {.count = 1, .reusable = false}, REDUCE(sym_initializer_list, 3), - [1966] = {.count = 1, .reusable = false}, SHIFT(474), - [1968] = {.count = 1, .reusable = true}, SHIFT(193), - [1970] = {.count = 1, .reusable = true}, SHIFT(474), - [1972] = {.count = 1, .reusable = false}, SHIFT(460), - [1974] = {.count = 1, .reusable = true}, SHIFT(460), - [1976] = {.count = 1, .reusable = true}, SHIFT(610), - [1978] = {.count = 1, .reusable = false}, SHIFT(610), - [1980] = {.count = 1, .reusable = true}, SHIFT(576), - [1982] = {.count = 1, .reusable = false}, SHIFT(576), - [1984] = {.count = 1, .reusable = true}, SHIFT(555), - [1986] = {.count = 1, .reusable = false}, SHIFT(555), - [1988] = {.count = 1, .reusable = true}, SHIFT(649), - [1990] = {.count = 1, .reusable = false}, SHIFT(649), - [1992] = {.count = 1, .reusable = true}, SHIFT(564), - [1994] = {.count = 1, .reusable = false}, SHIFT(564), - [1996] = {.count = 1, .reusable = true}, SHIFT(629), - [1998] = {.count = 1, .reusable = false}, SHIFT(629), - [2000] = {.count = 1, .reusable = true}, SHIFT(626), - [2002] = {.count = 1, .reusable = false}, SHIFT(626), - [2004] = {.count = 1, .reusable = false}, SHIFT(467), - [2006] = {.count = 1, .reusable = true}, SHIFT(467), - [2008] = {.count = 1, .reusable = false}, SHIFT(466), - [2010] = {.count = 1, .reusable = true}, SHIFT(466), - [2012] = {.count = 1, .reusable = true}, SHIFT(558), - [2014] = {.count = 1, .reusable = false}, SHIFT(558), - [2016] = {.count = 1, .reusable = true}, SHIFT(560), - [2018] = {.count = 1, .reusable = false}, SHIFT(560), - [2020] = {.count = 1, .reusable = true}, SHIFT(557), - [2022] = {.count = 1, .reusable = false}, SHIFT(557), - [2024] = {.count = 1, .reusable = true}, REDUCE(sym_initializer_list, 5), - [2026] = {.count = 1, .reusable = false}, REDUCE(sym_initializer_list, 5), - [2028] = {.count = 1, .reusable = true}, SHIFT(566), - [2030] = {.count = 1, .reusable = false}, SHIFT(566), - [2032] = {.count = 1, .reusable = true}, SHIFT(563), - [2034] = {.count = 1, .reusable = false}, SHIFT(563), - [2036] = {.count = 1, .reusable = true}, SHIFT(644), - [2038] = {.count = 1, .reusable = false}, SHIFT(644), - [2040] = {.count = 1, .reusable = true}, REDUCE(sym_initializer_list, 2), - [2042] = {.count = 1, .reusable = false}, REDUCE(sym_initializer_list, 2), - [2044] = {.count = 1, .reusable = true}, REDUCE(sym_call_expression, 2, .production_id = 10), - [2046] = {.count = 1, .reusable = false}, REDUCE(sym_call_expression, 2, .production_id = 10), - [2048] = {.count = 1, .reusable = true}, SHIFT(34), - [2050] = {.count = 1, .reusable = true}, SHIFT(26), - [2052] = {.count = 1, .reusable = true}, SHIFT(30), - [2054] = {.count = 1, .reusable = true}, SHIFT(32), - [2056] = {.count = 1, .reusable = true}, SHIFT(1049), - [2058] = {.count = 1, .reusable = false}, SHIFT(507), - [2060] = {.count = 1, .reusable = true}, SHIFT(542), - [2062] = {.count = 1, .reusable = false}, SHIFT(542), - [2064] = {.count = 1, .reusable = true}, SHIFT(539), - [2066] = {.count = 1, .reusable = true}, SHIFT(538), - [2068] = {.count = 1, .reusable = false}, SHIFT(536), - [2070] = {.count = 1, .reusable = true}, SHIFT(535), - [2072] = {.count = 1, .reusable = false}, SHIFT(534), - [2074] = {.count = 1, .reusable = true}, SHIFT(508), - [2076] = {.count = 1, .reusable = false}, SHIFT(510), - [2078] = {.count = 1, .reusable = true}, SHIFT(510), - [2080] = {.count = 1, .reusable = true}, SHIFT(529), + [1154] = {.count = 1, .reusable = false}, REDUCE(sym_linkage_specification, 3, .production_id = 17), + [1156] = {.count = 1, .reusable = true}, REDUCE(sym_linkage_specification, 3, .production_id = 17), + [1158] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef, 3, .production_id = 13), + [1160] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef, 3, .production_id = 13), + [1162] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_call, 2, .production_id = 3), + [1164] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_call, 2, .production_id = 3), + [1166] = {.count = 1, .reusable = false}, REDUCE(sym__empty_declaration, 2), + [1168] = {.count = 1, .reusable = true}, REDUCE(sym__empty_declaration, 2), + [1170] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_include, 3, .production_id = 12), + [1172] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_include, 3, .production_id = 12), + [1174] = {.count = 1, .reusable = false}, SHIFT(504), + [1176] = {.count = 1, .reusable = false}, SHIFT(846), + [1178] = {.count = 1, .reusable = false}, SHIFT(839), + [1180] = {.count = 1, .reusable = true}, SHIFT(574), + [1182] = {.count = 1, .reusable = false}, SHIFT(574), + [1184] = {.count = 1, .reusable = false}, SHIFT(102), + [1186] = {.count = 1, .reusable = false}, SHIFT(100), + [1188] = {.count = 1, .reusable = false}, SHIFT(132), + [1190] = {.count = 1, .reusable = true}, SHIFT(1104), + [1192] = {.count = 1, .reusable = true}, SHIFT(486), + [1194] = {.count = 1, .reusable = true}, SHIFT(483), + [1196] = {.count = 1, .reusable = false}, SHIFT(1099), + [1198] = {.count = 1, .reusable = true}, SHIFT(564), + [1200] = {.count = 1, .reusable = false}, SHIFT(564), + [1202] = {.count = 1, .reusable = true}, SHIFT(513), + [1204] = {.count = 1, .reusable = true}, SHIFT(580), + [1206] = {.count = 1, .reusable = false}, SHIFT(580), + [1208] = {.count = 1, .reusable = true}, SHIFT(533), + [1210] = {.count = 1, .reusable = false}, REDUCE(sym__type_specifier, 1, .production_id = 1), + [1212] = {.count = 1, .reusable = true}, REDUCE(sym__expression, 1), + [1214] = {.count = 3, .reusable = true}, REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(sym__expression, 1), SHIFT(706), + [1218] = {.count = 1, .reusable = false}, REDUCE(sym__expression, 1), + [1220] = {.count = 2, .reusable = false}, REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(sym__expression, 1), + [1223] = {.count = 2, .reusable = true}, REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(sym__expression, 1), + [1226] = {.count = 1, .reusable = false}, SHIFT(489), + [1228] = {.count = 1, .reusable = true}, SHIFT(74), + [1230] = {.count = 1, .reusable = true}, SHIFT(489), + [1232] = {.count = 1, .reusable = true}, SHIFT(123), + [1234] = {.count = 1, .reusable = true}, SHIFT(103), + [1236] = {.count = 1, .reusable = true}, SHIFT(107), + [1238] = {.count = 1, .reusable = false}, SHIFT(836), + [1240] = {.count = 1, .reusable = false}, SHIFT(1220), + [1242] = {.count = 1, .reusable = false}, SHIFT(759), + [1244] = {.count = 1, .reusable = false}, SHIFT(674), + [1246] = {.count = 1, .reusable = false}, SHIFT(1171), + [1248] = {.count = 1, .reusable = false}, SHIFT(398), + [1250] = {.count = 1, .reusable = false}, SHIFT(731), + [1252] = {.count = 1, .reusable = false}, SHIFT(1064), + [1254] = {.count = 1, .reusable = false}, SHIFT(633), + [1256] = {.count = 1, .reusable = false}, SHIFT(692), + [1258] = {.count = 1, .reusable = false}, SHIFT(695), + [1260] = {.count = 1, .reusable = true}, SHIFT(452), + [1262] = {.count = 1, .reusable = true}, SHIFT(900), + [1264] = {.count = 1, .reusable = false}, SHIFT(560), + [1266] = {.count = 1, .reusable = true}, SHIFT(622), + [1268] = {.count = 1, .reusable = false}, SHIFT(622), + [1270] = {.count = 1, .reusable = true}, SHIFT(473), + [1272] = {.count = 1, .reusable = true}, SHIFT(909), + [1274] = {.count = 1, .reusable = true}, SHIFT(648), + [1276] = {.count = 1, .reusable = false}, SHIFT(648), + [1278] = {.count = 1, .reusable = true}, REDUCE(sym_concatenated_string, 2), + [1280] = {.count = 1, .reusable = false}, REDUCE(sym_concatenated_string, 2), + [1282] = {.count = 1, .reusable = true}, REDUCE(aux_sym_concatenated_string_repeat1, 2), + [1284] = {.count = 1, .reusable = false}, REDUCE(aux_sym_concatenated_string_repeat1, 2), + [1286] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(958), + [1289] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_elif_in_field_declaration_list, 4, .production_id = 33), + [1291] = {.count = 1, .reusable = false}, SHIFT(620), + [1293] = {.count = 1, .reusable = true}, SHIFT(465), + [1295] = {.count = 1, .reusable = true}, SHIFT(903), + [1297] = {.count = 1, .reusable = true}, SHIFT(657), + [1299] = {.count = 1, .reusable = false}, SHIFT(657), + [1301] = {.count = 1, .reusable = false}, SHIFT(663), + [1303] = {.count = 1, .reusable = true}, SHIFT(456), + [1305] = {.count = 1, .reusable = true}, SHIFT(966), + [1307] = {.count = 1, .reusable = true}, SHIFT(640), + [1309] = {.count = 1, .reusable = false}, SHIFT(640), + [1311] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_elif_in_field_declaration_list, 3, .production_id = 33), + [1313] = {.count = 1, .reusable = false}, SHIFT(672), + [1315] = {.count = 1, .reusable = false}, SHIFT(686), + [1317] = {.count = 1, .reusable = true}, SHIFT(472), + [1319] = {.count = 1, .reusable = true}, SHIFT(935), + [1321] = {.count = 1, .reusable = true}, SHIFT(647), + [1323] = {.count = 1, .reusable = false}, SHIFT(647), + [1325] = {.count = 1, .reusable = false}, SHIFT(703), + [1327] = {.count = 1, .reusable = false}, SHIFT(635), + [1329] = {.count = 1, .reusable = true}, SHIFT(457), + [1331] = {.count = 1, .reusable = true}, SHIFT(965), + [1333] = {.count = 1, .reusable = true}, SHIFT(641), + [1335] = {.count = 1, .reusable = false}, SHIFT(641), + [1337] = {.count = 1, .reusable = false}, SHIFT(659), + [1339] = {.count = 1, .reusable = true}, SHIFT(445), + [1341] = {.count = 1, .reusable = true}, SHIFT(957), + [1343] = {.count = 1, .reusable = true}, SHIFT(615), + [1345] = {.count = 1, .reusable = false}, SHIFT(615), + [1347] = {.count = 1, .reusable = false}, SHIFT(668), + [1349] = {.count = 1, .reusable = true}, SHIFT(470), + [1351] = {.count = 1, .reusable = true}, SHIFT(927), + [1353] = {.count = 1, .reusable = true}, SHIFT(654), + [1355] = {.count = 1, .reusable = false}, SHIFT(654), + [1357] = {.count = 1, .reusable = true}, SHIFT(467), + [1359] = {.count = 1, .reusable = true}, SHIFT(942), + [1361] = {.count = 1, .reusable = true}, SHIFT(627), + [1363] = {.count = 1, .reusable = false}, SHIFT(627), + [1365] = {.count = 1, .reusable = true}, SHIFT(435), + [1367] = {.count = 1, .reusable = true}, SHIFT(963), + [1369] = {.count = 1, .reusable = true}, SHIFT(618), + [1371] = {.count = 1, .reusable = false}, SHIFT(618), + [1373] = {.count = 1, .reusable = false}, SHIFT(840), + [1375] = {.count = 1, .reusable = true}, SHIFT(983), + [1377] = {.count = 1, .reusable = true}, SHIFT(875), + [1379] = {.count = 1, .reusable = true}, SHIFT(393), + [1381] = {.count = 1, .reusable = true}, SHIFT(708), + [1383] = {.count = 1, .reusable = true}, SHIFT(386), + [1385] = {.count = 1, .reusable = true}, REDUCE(sym_string_literal, 2), + [1387] = {.count = 1, .reusable = false}, REDUCE(sym_string_literal, 2), + [1389] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(836), + [1392] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1220), + [1395] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(759), + [1398] = {.count = 1, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), + [1400] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1171), + [1403] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1064), + [1406] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(660), + [1409] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1243), + [1412] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(661), + [1415] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(704), + [1418] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(709), + [1421] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1026), + [1424] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1021), + [1427] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1018), + [1430] = {.count = 1, .reusable = true}, REDUCE(sym_string_literal, 3), + [1432] = {.count = 1, .reusable = false}, REDUCE(sym_string_literal, 3), + [1434] = {.count = 1, .reusable = false}, SHIFT(1202), + [1436] = {.count = 1, .reusable = false}, SHIFT(787), + [1438] = {.count = 1, .reusable = false}, SHIFT(1085), + [1440] = {.count = 1, .reusable = false}, SHIFT(1072), + [1442] = {.count = 1, .reusable = true}, SHIFT(820), + [1444] = {.count = 1, .reusable = false}, SHIFT(1221), + [1446] = {.count = 1, .reusable = false}, SHIFT(770), + [1448] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_else_in_field_declaration_list, 1), + [1450] = {.count = 1, .reusable = false}, SHIFT(1192), + [1452] = {.count = 1, .reusable = false}, SHIFT(1062), + [1454] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1202), + [1457] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(787), + [1460] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1085), + [1463] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1072), + [1466] = {.count = 1, .reusable = true}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), + [1468] = {.count = 1, .reusable = true}, SHIFT(818), + [1470] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1221), + [1473] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(770), + [1476] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1192), + [1479] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1062), + [1482] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_else_in_field_declaration_list, 2), + [1484] = {.count = 1, .reusable = true}, SHIFT(128), + [1486] = {.count = 1, .reusable = true}, SHIFT(573), + [1488] = {.count = 1, .reusable = false}, SHIFT(573), + [1490] = {.count = 1, .reusable = true}, SHIFT(270), + [1492] = {.count = 1, .reusable = true}, SHIFT(603), + [1494] = {.count = 1, .reusable = false}, SHIFT(603), + [1496] = {.count = 1, .reusable = true}, SHIFT(106), + [1498] = {.count = 1, .reusable = true}, SHIFT(570), + [1500] = {.count = 1, .reusable = false}, SHIFT(570), + [1502] = {.count = 1, .reusable = true}, SHIFT(135), + [1504] = {.count = 1, .reusable = true}, SHIFT(591), + [1506] = {.count = 1, .reusable = false}, SHIFT(591), + [1508] = {.count = 1, .reusable = true}, SHIFT(131), + [1510] = {.count = 1, .reusable = true}, SHIFT(604), + [1512] = {.count = 1, .reusable = false}, SHIFT(604), + [1514] = {.count = 1, .reusable = true}, SHIFT(129), + [1516] = {.count = 1, .reusable = true}, SHIFT(588), + [1518] = {.count = 1, .reusable = false}, SHIFT(588), + [1520] = {.count = 1, .reusable = true}, SHIFT(112), + [1522] = {.count = 1, .reusable = true}, SHIFT(593), + [1524] = {.count = 1, .reusable = false}, SHIFT(593), + [1526] = {.count = 1, .reusable = true}, SHIFT(75), + [1528] = {.count = 1, .reusable = true}, SHIFT(567), + [1530] = {.count = 1, .reusable = false}, SHIFT(567), + [1532] = {.count = 1, .reusable = true}, SHIFT(76), + [1534] = {.count = 1, .reusable = true}, SHIFT(576), + [1536] = {.count = 1, .reusable = false}, SHIFT(576), + [1538] = {.count = 1, .reusable = true}, SHIFT(134), + [1540] = {.count = 1, .reusable = true}, SHIFT(600), + [1542] = {.count = 1, .reusable = false}, SHIFT(600), + [1544] = {.count = 1, .reusable = true}, SHIFT(257), + [1546] = {.count = 1, .reusable = true}, SHIFT(584), + [1548] = {.count = 1, .reusable = false}, SHIFT(584), + [1550] = {.count = 1, .reusable = true}, SHIFT(116), + [1552] = {.count = 1, .reusable = true}, SHIFT(594), + [1554] = {.count = 1, .reusable = false}, SHIFT(594), + [1556] = {.count = 1, .reusable = true}, SHIFT(80), + [1558] = {.count = 1, .reusable = true}, SHIFT(572), + [1560] = {.count = 1, .reusable = false}, SHIFT(572), + [1562] = {.count = 1, .reusable = true}, SHIFT(121), + [1564] = {.count = 1, .reusable = true}, SHIFT(592), + [1566] = {.count = 1, .reusable = false}, SHIFT(592), + [1568] = {.count = 1, .reusable = true}, SHIFT(99), + [1570] = {.count = 1, .reusable = true}, SHIFT(602), + [1572] = {.count = 1, .reusable = false}, SHIFT(602), + [1574] = {.count = 1, .reusable = true}, SHIFT(271), + [1576] = {.count = 1, .reusable = true}, SHIFT(599), + [1578] = {.count = 1, .reusable = false}, SHIFT(599), + [1580] = {.count = 1, .reusable = true}, SHIFT(133), + [1582] = {.count = 1, .reusable = true}, SHIFT(581), + [1584] = {.count = 1, .reusable = false}, SHIFT(581), + [1586] = {.count = 1, .reusable = true}, SHIFT(119), + [1588] = {.count = 1, .reusable = true}, SHIFT(590), + [1590] = {.count = 1, .reusable = false}, SHIFT(590), + [1592] = {.count = 1, .reusable = true}, SHIFT(566), + [1594] = {.count = 1, .reusable = false}, SHIFT(566), + [1596] = {.count = 1, .reusable = true}, SHIFT(101), + [1598] = {.count = 1, .reusable = true}, SHIFT(595), + [1600] = {.count = 1, .reusable = false}, SHIFT(595), + [1602] = {.count = 1, .reusable = true}, SHIFT(598), + [1604] = {.count = 1, .reusable = false}, SHIFT(598), + [1606] = {.count = 1, .reusable = true}, SHIFT(96), + [1608] = {.count = 1, .reusable = true}, SHIFT(589), + [1610] = {.count = 1, .reusable = false}, SHIFT(589), + [1612] = {.count = 1, .reusable = true}, SHIFT(95), + [1614] = {.count = 1, .reusable = true}, SHIFT(585), + [1616] = {.count = 1, .reusable = false}, SHIFT(585), + [1618] = {.count = 1, .reusable = true}, SHIFT(126), + [1620] = {.count = 1, .reusable = true}, SHIFT(571), + [1622] = {.count = 1, .reusable = false}, SHIFT(571), + [1624] = {.count = 1, .reusable = true}, SHIFT(125), + [1626] = {.count = 1, .reusable = true}, SHIFT(569), + [1628] = {.count = 1, .reusable = false}, SHIFT(569), + [1630] = {.count = 1, .reusable = true}, SHIFT(93), + [1632] = {.count = 1, .reusable = true}, SHIFT(577), + [1634] = {.count = 1, .reusable = false}, SHIFT(577), + [1636] = {.count = 1, .reusable = true}, SHIFT(91), + [1638] = {.count = 1, .reusable = true}, SHIFT(587), + [1640] = {.count = 1, .reusable = false}, SHIFT(587), + [1642] = {.count = 1, .reusable = true}, SHIFT(90), + [1644] = {.count = 1, .reusable = true}, SHIFT(578), + [1646] = {.count = 1, .reusable = false}, SHIFT(578), + [1648] = {.count = 1, .reusable = true}, SHIFT(85), + [1650] = {.count = 1, .reusable = true}, SHIFT(579), + [1652] = {.count = 1, .reusable = false}, SHIFT(579), + [1654] = {.count = 1, .reusable = true}, SHIFT(164), + [1656] = {.count = 1, .reusable = true}, SHIFT(586), + [1658] = {.count = 1, .reusable = false}, SHIFT(586), + [1660] = {.count = 1, .reusable = false}, SHIFT(444), + [1662] = {.count = 1, .reusable = true}, SHIFT(975), + [1664] = {.count = 1, .reusable = true}, SHIFT(444), + [1666] = {.count = 1, .reusable = true}, REDUCE(sym_binary_expression, 3, .production_id = 29), + [1668] = {.count = 1, .reusable = true}, SHIFT(454), + [1670] = {.count = 1, .reusable = false}, REDUCE(sym_binary_expression, 3, .production_id = 29), + [1672] = {.count = 1, .reusable = true}, SHIFT(519), + [1674] = {.count = 1, .reusable = true}, SHIFT(510), + [1676] = {.count = 1, .reusable = true}, SHIFT(1157), + [1678] = {.count = 1, .reusable = false}, SHIFT(511), + [1680] = {.count = 1, .reusable = false}, SHIFT(509), + [1682] = {.count = 1, .reusable = false}, SHIFT(502), + [1684] = {.count = 1, .reusable = false}, SHIFT(501), + [1686] = {.count = 1, .reusable = true}, SHIFT(500), + [1688] = {.count = 1, .reusable = false}, SHIFT(497), + [1690] = {.count = 1, .reusable = true}, SHIFT(497), + [1692] = {.count = 1, .reusable = false}, SHIFT(481), + [1694] = {.count = 1, .reusable = false}, SHIFT(503), + [1696] = {.count = 1, .reusable = true}, SHIFT(506), + [1698] = {.count = 1, .reusable = true}, REDUCE(sym_unary_expression, 2, .production_id = 4), + [1700] = {.count = 1, .reusable = false}, REDUCE(sym_unary_expression, 2, .production_id = 4), + [1702] = {.count = 1, .reusable = true}, REDUCE(sym_sizeof_expression, 2, .production_id = 7), + [1704] = {.count = 1, .reusable = false}, REDUCE(sym_sizeof_expression, 2, .production_id = 7), + [1706] = {.count = 1, .reusable = true}, REDUCE(sym_assignment_expression, 3, .production_id = 23), + [1708] = {.count = 1, .reusable = true}, SHIFT(508), + [1710] = {.count = 1, .reusable = false}, REDUCE(sym_assignment_expression, 3, .production_id = 23), + [1712] = {.count = 1, .reusable = true}, REDUCE(sym_pointer_expression, 2, .production_id = 4), + [1714] = {.count = 1, .reusable = false}, REDUCE(sym_pointer_expression, 2, .production_id = 4), + [1716] = {.count = 1, .reusable = true}, SHIFT(976), + [1718] = {.count = 1, .reusable = true}, SHIFT(427), + [1720] = {.count = 1, .reusable = true}, SHIFT(650), + [1722] = {.count = 1, .reusable = false}, SHIFT(650), + [1724] = {.count = 1, .reusable = true}, SHIFT(411), + [1726] = {.count = 1, .reusable = true}, SHIFT(624), + [1728] = {.count = 1, .reusable = false}, SHIFT(624), + [1730] = {.count = 1, .reusable = true}, SHIFT(418), + [1732] = {.count = 1, .reusable = true}, SHIFT(644), + [1734] = {.count = 1, .reusable = false}, SHIFT(644), + [1736] = {.count = 1, .reusable = true}, SHIFT(904), + [1738] = {.count = 1, .reusable = true}, SHIFT(563), + [1740] = {.count = 1, .reusable = false}, SHIFT(563), + [1742] = {.count = 1, .reusable = true}, SHIFT(514), + [1744] = {.count = 1, .reusable = true}, SHIFT(565), + [1746] = {.count = 1, .reusable = false}, SHIFT(565), + [1748] = {.count = 1, .reusable = true}, SHIFT(954), + [1750] = {.count = 1, .reusable = true}, SHIFT(978), + [1752] = {.count = 1, .reusable = true}, SHIFT(426), + [1754] = {.count = 1, .reusable = true}, SHIFT(612), + [1756] = {.count = 1, .reusable = false}, SHIFT(612), + [1758] = {.count = 1, .reusable = true}, REDUCE(sym_cast_expression, 4, .production_id = 37), + [1760] = {.count = 1, .reusable = false}, REDUCE(sym_cast_expression, 4, .production_id = 37), + [1762] = {.count = 1, .reusable = true}, SHIFT(423), + [1764] = {.count = 1, .reusable = true}, SHIFT(626), + [1766] = {.count = 1, .reusable = false}, SHIFT(626), + [1768] = {.count = 1, .reusable = true}, REDUCE(sym_update_expression, 2, .production_id = 4), + [1770] = {.count = 1, .reusable = false}, REDUCE(sym_update_expression, 2, .production_id = 4), + [1772] = {.count = 1, .reusable = true}, REDUCE(sym_parenthesized_expression, 3), + [1774] = {.count = 1, .reusable = false}, REDUCE(sym_parenthesized_expression, 3), + [1776] = {.count = 1, .reusable = true}, SHIFT(408), + [1778] = {.count = 1, .reusable = true}, SHIFT(616), + [1780] = {.count = 1, .reusable = false}, SHIFT(616), + [1782] = {.count = 1, .reusable = true}, SHIFT(901), + [1784] = {.count = 1, .reusable = true}, SHIFT(940), + [1786] = {.count = 1, .reusable = true}, SHIFT(421), + [1788] = {.count = 1, .reusable = true}, SHIFT(658), + [1790] = {.count = 1, .reusable = false}, SHIFT(658), + [1792] = {.count = 1, .reusable = true}, REDUCE(sym_conditional_expression, 5, .production_id = 59), + [1794] = {.count = 1, .reusable = false}, REDUCE(sym_conditional_expression, 5, .production_id = 59), + [1796] = {.count = 1, .reusable = true}, SHIFT(524), + [1798] = {.count = 1, .reusable = true}, SHIFT(910), + [1800] = {.count = 1, .reusable = true}, SHIFT(413), + [1802] = {.count = 1, .reusable = true}, SHIFT(630), + [1804] = {.count = 1, .reusable = false}, SHIFT(630), + [1806] = {.count = 1, .reusable = true}, SHIFT(943), + [1808] = {.count = 1, .reusable = true}, SHIFT(922), + [1810] = {.count = 1, .reusable = true}, SHIFT(420), + [1812] = {.count = 1, .reusable = true}, SHIFT(653), + [1814] = {.count = 1, .reusable = false}, SHIFT(653), + [1816] = {.count = 1, .reusable = true}, SHIFT(432), + [1818] = {.count = 1, .reusable = true}, SHIFT(656), + [1820] = {.count = 1, .reusable = false}, SHIFT(656), + [1822] = {.count = 1, .reusable = true}, SHIFT(476), + [1824] = {.count = 1, .reusable = true}, SHIFT(844), + [1826] = {.count = 1, .reusable = true}, SHIFT(429), + [1828] = {.count = 1, .reusable = true}, SHIFT(629), + [1830] = {.count = 1, .reusable = false}, SHIFT(629), + [1832] = {.count = 1, .reusable = true}, SHIFT(407), + [1834] = {.count = 1, .reusable = true}, SHIFT(651), + [1836] = {.count = 1, .reusable = false}, SHIFT(651), + [1838] = {.count = 1, .reusable = true}, SHIFT(583), + [1840] = {.count = 1, .reusable = false}, SHIFT(583), + [1842] = {.count = 1, .reusable = true}, SHIFT(440), + [1844] = {.count = 1, .reusable = false}, SHIFT(440), + [1846] = {.count = 1, .reusable = false}, SHIFT(455), + [1848] = {.count = 1, .reusable = true}, SHIFT(455), + [1850] = {.count = 1, .reusable = true}, REDUCE(sym_subscript_expression, 4, .production_id = 47), + [1852] = {.count = 1, .reusable = false}, REDUCE(sym_subscript_expression, 4, .production_id = 47), + [1854] = {.count = 1, .reusable = true}, SHIFT(642), + [1856] = {.count = 1, .reusable = false}, SHIFT(642), + [1858] = {.count = 1, .reusable = true}, REDUCE(sym_argument_list, 3), + [1860] = {.count = 1, .reusable = false}, REDUCE(sym_argument_list, 3), + [1862] = {.count = 1, .reusable = true}, SHIFT(605), + [1864] = {.count = 1, .reusable = false}, SHIFT(605), + [1866] = {.count = 1, .reusable = true}, REDUCE(sym_initializer_list, 2), + [1868] = {.count = 1, .reusable = false}, REDUCE(sym_initializer_list, 2), + [1870] = {.count = 1, .reusable = true}, SHIFT(623), + [1872] = {.count = 1, .reusable = false}, SHIFT(623), + [1874] = {.count = 1, .reusable = true}, REDUCE(sym_argument_list, 4), + [1876] = {.count = 1, .reusable = false}, REDUCE(sym_argument_list, 4), + [1878] = {.count = 1, .reusable = true}, SHIFT(551), + [1880] = {.count = 1, .reusable = false}, SHIFT(551), + [1882] = {.count = 1, .reusable = true}, SHIFT(610), + [1884] = {.count = 1, .reusable = false}, SHIFT(610), + [1886] = {.count = 1, .reusable = true}, REDUCE(sym_field_expression, 3, .production_id = 30), + [1888] = {.count = 1, .reusable = false}, REDUCE(sym_field_expression, 3, .production_id = 30), + [1890] = {.count = 1, .reusable = true}, SHIFT(212), + [1892] = {.count = 1, .reusable = true}, SHIFT(559), + [1894] = {.count = 1, .reusable = false}, SHIFT(559), + [1896] = {.count = 1, .reusable = true}, SHIFT(549), + [1898] = {.count = 1, .reusable = false}, SHIFT(549), + [1900] = {.count = 1, .reusable = true}, SHIFT(462), + [1902] = {.count = 1, .reusable = false}, SHIFT(462), + [1904] = {.count = 1, .reusable = false}, SHIFT(451), + [1906] = {.count = 1, .reusable = true}, SHIFT(451), + [1908] = {.count = 1, .reusable = false}, SHIFT(442), + [1910] = {.count = 1, .reusable = true}, SHIFT(211), + [1912] = {.count = 1, .reusable = true}, SHIFT(442), + [1914] = {.count = 1, .reusable = false}, SHIFT(449), + [1916] = {.count = 1, .reusable = true}, SHIFT(449), + [1918] = {.count = 1, .reusable = false}, SHIFT(448), + [1920] = {.count = 1, .reusable = true}, SHIFT(448), + [1922] = {.count = 1, .reusable = false}, SHIFT(458), + [1924] = {.count = 1, .reusable = true}, SHIFT(458), + [1926] = {.count = 1, .reusable = false}, SHIFT(437), + [1928] = {.count = 1, .reusable = true}, SHIFT(437), + [1930] = {.count = 1, .reusable = true}, REDUCE(sym__type_specifier, 1, .production_id = 1), + [1932] = {.count = 1, .reusable = true}, REDUCE(sym_call_expression, 2, .production_id = 9), + [1934] = {.count = 1, .reusable = false}, REDUCE(sym_call_expression, 2, .production_id = 9), + [1936] = {.count = 1, .reusable = false}, SHIFT(438), + [1938] = {.count = 1, .reusable = true}, SHIFT(438), + [1940] = {.count = 1, .reusable = false}, SHIFT(469), + [1942] = {.count = 1, .reusable = true}, SHIFT(469), + [1944] = {.count = 1, .reusable = false}, SHIFT(439), + [1946] = {.count = 1, .reusable = true}, SHIFT(439), + [1948] = {.count = 1, .reusable = false}, SHIFT(436), + [1950] = {.count = 1, .reusable = true}, SHIFT(436), + [1952] = {.count = 1, .reusable = true}, REDUCE(sym_update_expression, 2, .production_id = 8), + [1954] = {.count = 1, .reusable = false}, REDUCE(sym_update_expression, 2, .production_id = 8), + [1956] = {.count = 1, .reusable = false}, SHIFT(441), + [1958] = {.count = 1, .reusable = true}, SHIFT(441), + [1960] = {.count = 1, .reusable = true}, SHIFT(613), + [1962] = {.count = 1, .reusable = false}, SHIFT(613), + [1964] = {.count = 1, .reusable = true}, REDUCE(sym_initializer_list, 4), + [1966] = {.count = 1, .reusable = false}, REDUCE(sym_initializer_list, 4), + [1968] = {.count = 1, .reusable = true}, REDUCE(sym_argument_list, 2), + [1970] = {.count = 1, .reusable = false}, REDUCE(sym_argument_list, 2), + [1972] = {.count = 1, .reusable = true}, SHIFT(649), + [1974] = {.count = 1, .reusable = false}, SHIFT(649), + [1976] = {.count = 1, .reusable = true}, SHIFT(553), + [1978] = {.count = 1, .reusable = false}, SHIFT(553), + [1980] = {.count = 1, .reusable = true}, REDUCE(sym_initializer_list, 3), + [1982] = {.count = 1, .reusable = false}, REDUCE(sym_initializer_list, 3), + [1984] = {.count = 1, .reusable = true}, SHIFT(614), + [1986] = {.count = 1, .reusable = false}, SHIFT(614), + [1988] = {.count = 1, .reusable = true}, SHIFT(655), + [1990] = {.count = 1, .reusable = false}, SHIFT(655), + [1992] = {.count = 1, .reusable = true}, SHIFT(557), + [1994] = {.count = 1, .reusable = false}, SHIFT(557), + [1996] = {.count = 1, .reusable = true}, SHIFT(556), + [1998] = {.count = 1, .reusable = false}, SHIFT(556), + [2000] = {.count = 1, .reusable = true}, SHIFT(552), + [2002] = {.count = 1, .reusable = false}, SHIFT(552), + [2004] = {.count = 1, .reusable = true}, SHIFT(646), + [2006] = {.count = 1, .reusable = false}, SHIFT(646), + [2008] = {.count = 1, .reusable = true}, SHIFT(558), + [2010] = {.count = 1, .reusable = false}, SHIFT(558), + [2012] = {.count = 1, .reusable = true}, SHIFT(611), + [2014] = {.count = 1, .reusable = false}, SHIFT(611), + [2016] = {.count = 1, .reusable = true}, REDUCE(sym_char_literal, 3), + [2018] = {.count = 1, .reusable = false}, REDUCE(sym_char_literal, 3), + [2020] = {.count = 1, .reusable = true}, REDUCE(sym_compound_literal_expression, 4, .production_id = 37), + [2022] = {.count = 1, .reusable = false}, REDUCE(sym_compound_literal_expression, 4, .production_id = 37), + [2024] = {.count = 1, .reusable = true}, SHIFT(596), + [2026] = {.count = 1, .reusable = false}, SHIFT(596), + [2028] = {.count = 1, .reusable = true}, SHIFT(550), + [2030] = {.count = 1, .reusable = false}, SHIFT(550), + [2032] = {.count = 1, .reusable = true}, SHIFT(547), + [2034] = {.count = 1, .reusable = false}, SHIFT(547), + [2036] = {.count = 1, .reusable = true}, REDUCE(sym_initializer_list, 5), + [2038] = {.count = 1, .reusable = false}, REDUCE(sym_initializer_list, 5), + [2040] = {.count = 1, .reusable = true}, SHIFT(548), + [2042] = {.count = 1, .reusable = false}, SHIFT(548), + [2044] = {.count = 1, .reusable = true}, SHIFT(555), + [2046] = {.count = 1, .reusable = false}, SHIFT(555), + [2048] = {.count = 1, .reusable = true}, SHIFT(30), + [2050] = {.count = 1, .reusable = true}, SHIFT(23), + [2052] = {.count = 1, .reusable = true}, SHIFT(22), + [2054] = {.count = 1, .reusable = true}, SHIFT(28), + [2056] = {.count = 1, .reusable = true}, SHIFT(1077), + [2058] = {.count = 1, .reusable = false}, SHIFT(516), + [2060] = {.count = 1, .reusable = true}, SHIFT(517), + [2062] = {.count = 1, .reusable = false}, SHIFT(517), + [2064] = {.count = 1, .reusable = true}, SHIFT(535), + [2066] = {.count = 1, .reusable = false}, SHIFT(534), + [2068] = {.count = 1, .reusable = true}, SHIFT(494), + [2070] = {.count = 1, .reusable = false}, SHIFT(530), + [2072] = {.count = 1, .reusable = true}, SHIFT(530), + [2074] = {.count = 1, .reusable = true}, SHIFT(523), + [2076] = {.count = 1, .reusable = true}, SHIFT(521), + [2078] = {.count = 1, .reusable = true}, SHIFT(522), + [2080] = {.count = 1, .reusable = false}, SHIFT(531), [2082] = {.count = 1, .reusable = false}, REDUCE(aux_sym_type_definition_repeat1, 2), [2084] = {.count = 1, .reusable = true}, REDUCE(aux_sym_type_definition_repeat1, 2), - [2086] = {.count = 2, .reusable = false}, REDUCE(aux_sym_type_definition_repeat1, 2), SHIFT_REPEAT(569), - [2089] = {.count = 1, .reusable = true}, SHIFT(531), - [2091] = {.count = 1, .reusable = false}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), - [2093] = {.count = 1, .reusable = true}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), - [2095] = {.count = 2, .reusable = false}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(668), - [2098] = {.count = 2, .reusable = false}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(1246), - [2101] = {.count = 2, .reusable = false}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(669), - [2104] = {.count = 1, .reusable = false}, REDUCE(sym_type_qualifier, 1), - [2106] = {.count = 1, .reusable = true}, REDUCE(sym_type_qualifier, 1), - [2108] = {.count = 1, .reusable = false}, SHIFT(719), - [2110] = {.count = 1, .reusable = true}, SHIFT(443), + [2086] = {.count = 2, .reusable = false}, REDUCE(aux_sym_type_definition_repeat1, 2), SHIFT_REPEAT(560), + [2089] = {.count = 1, .reusable = true}, SHIFT(512), + [2091] = {.count = 1, .reusable = false}, REDUCE(sym_type_qualifier, 1), + [2093] = {.count = 1, .reusable = true}, REDUCE(sym_type_qualifier, 1), + [2095] = {.count = 1, .reusable = false}, SHIFT(721), + [2097] = {.count = 1, .reusable = false}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), + [2099] = {.count = 1, .reusable = true}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), + [2101] = {.count = 2, .reusable = false}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(660), + [2104] = {.count = 2, .reusable = false}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(1243), + [2107] = {.count = 2, .reusable = false}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(661), + [2110] = {.count = 1, .reusable = true}, SHIFT(453), [2112] = {.count = 1, .reusable = true}, REDUCE(sym_comma_expression, 3, .production_id = 23), - [2114] = {.count = 1, .reusable = true}, SHIFT(525), + [2114] = {.count = 1, .reusable = true}, SHIFT(354), [2116] = {.count = 1, .reusable = true}, SHIFT(518), - [2118] = {.count = 1, .reusable = true}, SHIFT(362), - [2120] = {.count = 1, .reusable = true}, SHIFT(522), - [2122] = {.count = 1, .reusable = true}, SHIFT(74), - [2124] = {.count = 1, .reusable = true}, SHIFT(101), - [2126] = {.count = 1, .reusable = true}, REDUCE(sym_enumerator, 3, .production_id = 55), - [2128] = {.count = 1, .reusable = true}, SHIFT(127), - [2130] = {.count = 1, .reusable = true}, SHIFT(71), - [2132] = {.count = 1, .reusable = true}, REDUCE(sym_initializer_pair, 3, .production_id = 66), - [2134] = {.count = 1, .reusable = true}, SHIFT(106), - [2136] = {.count = 1, .reusable = true}, SHIFT(112), - [2138] = {.count = 1, .reusable = true}, SHIFT(78), - [2140] = {.count = 1, .reusable = true}, SHIFT(110), - [2142] = {.count = 1, .reusable = false}, REDUCE(sym_attribute_specifier, 4), - [2144] = {.count = 1, .reusable = true}, REDUCE(sym_attribute_specifier, 4), - [2146] = {.count = 1, .reusable = true}, SHIFT(211), - [2148] = {.count = 1, .reusable = true}, SHIFT(88), - [2150] = {.count = 1, .reusable = true}, SHIFT(111), - [2152] = {.count = 1, .reusable = true}, SHIFT(133), - [2154] = {.count = 1, .reusable = true}, SHIFT(132), - [2156] = {.count = 1, .reusable = true}, SHIFT(100), - [2158] = {.count = 1, .reusable = true}, SHIFT(128), - [2160] = {.count = 1, .reusable = true}, SHIFT(451), - [2162] = {.count = 1, .reusable = true}, SHIFT(456), - [2164] = {.count = 1, .reusable = true}, SHIFT(73), - [2166] = {.count = 1, .reusable = true}, SHIFT(206), - [2168] = {.count = 1, .reusable = true}, SHIFT(225), - [2170] = {.count = 1, .reusable = true}, SHIFT(109), - [2172] = {.count = 1, .reusable = true}, SHIFT(487), - [2174] = {.count = 1, .reusable = true}, SHIFT(233), - [2176] = {.count = 1, .reusable = true}, SHIFT(125), - [2178] = {.count = 1, .reusable = true}, REDUCE(aux_sym_initializer_list_repeat1, 2), - [2180] = {.count = 1, .reusable = true}, SHIFT(115), - [2182] = {.count = 1, .reusable = true}, SHIFT(463), - [2184] = {.count = 1, .reusable = true}, SHIFT(96), - [2186] = {.count = 1, .reusable = true}, SHIFT(113), - [2188] = {.count = 1, .reusable = true}, SHIFT(72), - [2190] = {.count = 1, .reusable = true}, SHIFT(548), - [2192] = {.count = 1, .reusable = true}, SHIFT(143), - [2194] = {.count = 1, .reusable = true}, SHIFT(97), - [2196] = {.count = 1, .reusable = true}, REDUCE(aux_sym_argument_list_repeat1, 2), - [2198] = {.count = 1, .reusable = true}, SHIFT(446), - [2200] = {.count = 1, .reusable = true}, REDUCE(sym_init_declarator, 3, .production_id = 44), - [2202] = {.count = 1, .reusable = true}, SHIFT(159), - [2204] = {.count = 1, .reusable = true}, SHIFT(197), - [2206] = {.count = 1, .reusable = true}, SHIFT(116), - [2208] = {.count = 1, .reusable = true}, SHIFT(196), - [2210] = {.count = 1, .reusable = true}, SHIFT(80), - [2212] = {.count = 1, .reusable = true}, SHIFT(419), - [2214] = {.count = 1, .reusable = true}, SHIFT(45), - [2216] = {.count = 1, .reusable = true}, SHIFT(415), - [2218] = {.count = 1, .reusable = true}, SHIFT(440), - [2220] = {.count = 1, .reusable = true}, SHIFT(521), - [2222] = {.count = 1, .reusable = true}, SHIFT(434), - [2224] = {.count = 1, .reusable = true}, SHIFT(412), - [2226] = {.count = 1, .reusable = true}, SHIFT(519), - [2228] = {.count = 1, .reusable = true}, SHIFT(422), - [2230] = {.count = 1, .reusable = true}, SHIFT(414), - [2232] = {.count = 1, .reusable = true}, SHIFT(430), - [2234] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if_in_field_declaration_list, 6, .production_id = 60), - [2236] = {.count = 1, .reusable = true}, SHIFT(426), - [2238] = {.count = 1, .reusable = true}, SHIFT(413), - [2240] = {.count = 1, .reusable = true}, SHIFT(53), - [2242] = {.count = 1, .reusable = false}, REDUCE(sym_field_declaration, 2, .production_id = 35), - [2244] = {.count = 1, .reusable = true}, SHIFT(1031), - [2246] = {.count = 1, .reusable = true}, SHIFT(60), - [2248] = {.count = 1, .reusable = true}, SHIFT(524), - [2250] = {.count = 1, .reusable = true}, REDUCE(sym_bitfield_clause, 2), - [2252] = {.count = 1, .reusable = false}, REDUCE(sym_field_declaration, 5, .production_id = 45), - [2254] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, .production_id = 50), - [2256] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 33), - [2258] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 49), - [2260] = {.count = 1, .reusable = true}, SHIFT(55), - [2262] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, .production_id = 13), - [2264] = {.count = 1, .reusable = false}, REDUCE(sym_field_declaration, 3, .production_id = 26), - [2266] = {.count = 1, .reusable = false}, REDUCE(sym_field_declaration, 3, .production_id = 35), - [2268] = {.count = 1, .reusable = true}, SHIFT(432), - [2270] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, .production_id = 33), - [2272] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 34), - [2274] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 13), - [2276] = {.count = 1, .reusable = false}, REDUCE(sym_field_declaration, 4, .production_id = 26), - [2278] = {.count = 1, .reusable = true}, SHIFT(441), + [2118] = {.count = 1, .reusable = true}, SHIFT(485), + [2120] = {.count = 1, .reusable = true}, SHIFT(484), + [2122] = {.count = 1, .reusable = true}, REDUCE(sym_initializer_pair, 3, .production_id = 66), + [2124] = {.count = 1, .reusable = true}, SHIFT(71), + [2126] = {.count = 1, .reusable = true}, SHIFT(263), + [2128] = {.count = 1, .reusable = true}, SHIFT(117), + [2130] = {.count = 1, .reusable = true}, SHIFT(105), + [2132] = {.count = 1, .reusable = true}, SHIFT(118), + [2134] = {.count = 1, .reusable = true}, SHIFT(72), + [2136] = {.count = 1, .reusable = true}, SHIFT(69), + [2138] = {.count = 1, .reusable = true}, SHIFT(463), + [2140] = {.count = 1, .reusable = true}, SHIFT(475), + [2142] = {.count = 1, .reusable = true}, SHIFT(98), + [2144] = {.count = 1, .reusable = true}, SHIFT(89), + [2146] = {.count = 1, .reusable = true}, SHIFT(87), + [2148] = {.count = 1, .reusable = true}, SHIFT(84), + [2150] = {.count = 1, .reusable = true}, REDUCE(aux_sym_initializer_list_repeat1, 2), + [2152] = {.count = 1, .reusable = true}, SHIFT(127), + [2154] = {.count = 1, .reusable = true}, SHIFT(169), + [2156] = {.count = 1, .reusable = true}, SHIFT(540), + [2158] = {.count = 1, .reusable = true}, SHIFT(214), + [2160] = {.count = 1, .reusable = true}, SHIFT(92), + [2162] = {.count = 1, .reusable = true}, SHIFT(139), + [2164] = {.count = 1, .reusable = true}, SHIFT(88), + [2166] = {.count = 1, .reusable = true}, SHIFT(115), + [2168] = {.count = 1, .reusable = true}, SHIFT(94), + [2170] = {.count = 1, .reusable = true}, SHIFT(108), + [2172] = {.count = 1, .reusable = true}, SHIFT(130), + [2174] = {.count = 1, .reusable = true}, SHIFT(110), + [2176] = {.count = 1, .reusable = true}, SHIFT(113), + [2178] = {.count = 1, .reusable = true}, SHIFT(114), + [2180] = {.count = 1, .reusable = true}, SHIFT(81), + [2182] = {.count = 1, .reusable = true}, REDUCE(sym_enumerator, 3, .production_id = 55), + [2184] = {.count = 1, .reusable = true}, SHIFT(447), + [2186] = {.count = 1, .reusable = true}, REDUCE(sym_init_declarator, 3, .production_id = 44), + [2188] = {.count = 1, .reusable = true}, SHIFT(241), + [2190] = {.count = 1, .reusable = true}, SHIFT(68), + [2192] = {.count = 1, .reusable = false}, REDUCE(sym_attribute_specifier, 4), + [2194] = {.count = 1, .reusable = true}, REDUCE(sym_attribute_specifier, 4), + [2196] = {.count = 1, .reusable = true}, SHIFT(77), + [2198] = {.count = 1, .reusable = true}, SHIFT(252), + [2200] = {.count = 1, .reusable = true}, SHIFT(124), + [2202] = {.count = 1, .reusable = true}, REDUCE(aux_sym_argument_list_repeat1, 2), + [2204] = {.count = 1, .reusable = true}, SHIFT(273), + [2206] = {.count = 1, .reusable = true}, SHIFT(265), + [2208] = {.count = 1, .reusable = true}, SHIFT(477), + [2210] = {.count = 1, .reusable = true}, SHIFT(468), + [2212] = {.count = 1, .reusable = true}, SHIFT(57), + [2214] = {.count = 1, .reusable = true}, SHIFT(50), + [2216] = {.count = 1, .reusable = true}, SHIFT(430), + [2218] = {.count = 1, .reusable = true}, SHIFT(525), + [2220] = {.count = 1, .reusable = true}, SHIFT(482), + [2222] = {.count = 1, .reusable = true}, SHIFT(417), + [2224] = {.count = 1, .reusable = false}, REDUCE(sym_field_declaration, 5, .production_id = 45), + [2226] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, .production_id = 50), + [2228] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 33), + [2230] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 49), + [2232] = {.count = 1, .reusable = true}, SHIFT(47), + [2234] = {.count = 1, .reusable = true}, SHIFT(410), + [2236] = {.count = 1, .reusable = true}, SHIFT(416), + [2238] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if_in_field_declaration_list, 6, .production_id = 60), + [2240] = {.count = 1, .reusable = true}, SHIFT(415), + [2242] = {.count = 1, .reusable = true}, SHIFT(409), + [2244] = {.count = 1, .reusable = false}, REDUCE(sym_field_declaration, 4, .production_id = 26), + [2246] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 13), + [2248] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 34), + [2250] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, .production_id = 33), + [2252] = {.count = 1, .reusable = false}, REDUCE(sym_field_declaration, 3, .production_id = 26), + [2254] = {.count = 1, .reusable = true}, SHIFT(1012), + [2256] = {.count = 1, .reusable = false}, REDUCE(sym_field_declaration, 2, .production_id = 35), + [2258] = {.count = 1, .reusable = true}, SHIFT(412), + [2260] = {.count = 1, .reusable = true}, SHIFT(507), + [2262] = {.count = 1, .reusable = true}, SHIFT(54), + [2264] = {.count = 1, .reusable = true}, SHIFT(431), + [2266] = {.count = 1, .reusable = true}, SHIFT(403), + [2268] = {.count = 1, .reusable = false}, REDUCE(sym_field_declaration, 3, .production_id = 35), + [2270] = {.count = 1, .reusable = true}, SHIFT(428), + [2272] = {.count = 1, .reusable = true}, REDUCE(sym_bitfield_clause, 2), + [2274] = {.count = 1, .reusable = true}, SHIFT(433), + [2276] = {.count = 1, .reusable = true}, SHIFT(406), + [2278] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, .production_id = 13), [2280] = {.count = 1, .reusable = false}, REDUCE(sym_storage_class_specifier, 1), [2282] = {.count = 1, .reusable = true}, REDUCE(sym_storage_class_specifier, 1), - [2284] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, .production_id = 13), - [2286] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if_in_field_declaration_list, 6, .production_id = 60), - [2288] = {.count = 1, .reusable = true}, SHIFT(989), - [2290] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 33), - [2292] = {.count = 1, .reusable = true}, REDUCE(sym_field_declaration, 4, .production_id = 26), - [2294] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, .production_id = 50), - [2296] = {.count = 1, .reusable = true}, REDUCE(sym_field_declaration, 3, .production_id = 26), - [2298] = {.count = 1, .reusable = true}, REDUCE(sym_field_declaration, 2, .production_id = 35), - [2300] = {.count = 1, .reusable = true}, REDUCE(sym_field_declaration, 5, .production_id = 45), - [2302] = {.count = 1, .reusable = true}, REDUCE(sym_field_declaration, 3, .production_id = 35), - [2304] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 49), - [2306] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, .production_id = 33), - [2308] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 34), - [2310] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 13), - [2312] = {.count = 2, .reusable = false}, REDUCE(sym_sized_type_specifier, 1), SHIFT(830), + [2284] = {.count = 1, .reusable = true}, REDUCE(sym_field_declaration, 4, .production_id = 26), + [2286] = {.count = 1, .reusable = true}, SHIFT(948), + [2288] = {.count = 1, .reusable = true}, REDUCE(sym_field_declaration, 2, .production_id = 35), + [2290] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, .production_id = 13), + [2292] = {.count = 1, .reusable = true}, REDUCE(sym_field_declaration, 3, .production_id = 26), + [2294] = {.count = 1, .reusable = true}, REDUCE(sym_field_declaration, 3, .production_id = 35), + [2296] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, .production_id = 33), + [2298] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 34), + [2300] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 13), + [2302] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 49), + [2304] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if_in_field_declaration_list, 6, .production_id = 60), + [2306] = {.count = 1, .reusable = true}, REDUCE(sym_field_declaration, 5, .production_id = 45), + [2308] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, .production_id = 50), + [2310] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 33), + [2312] = {.count = 2, .reusable = false}, REDUCE(sym_sized_type_specifier, 1), SHIFT(826), [2315] = {.count = 1, .reusable = true}, REDUCE(sym_sized_type_specifier, 1), [2317] = {.count = 1, .reusable = false}, REDUCE(sym_sized_type_specifier, 1), - [2319] = {.count = 1, .reusable = false}, SHIFT(713), - [2321] = {.count = 1, .reusable = false}, SHIFT(832), + [2319] = {.count = 1, .reusable = false}, SHIFT(705), + [2321] = {.count = 1, .reusable = false}, SHIFT(828), [2323] = {.count = 1, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), [2325] = {.count = 1, .reusable = true}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), - [2327] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(713), - [2330] = {.count = 1, .reusable = false}, SHIFT(898), - [2332] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_pointer_declarator, 1, .dynamic_precedence = 1), - [2334] = {.count = 1, .reusable = false}, SHIFT(883), - [2336] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_pointer_declarator, 2, .dynamic_precedence = 1), - [2338] = {.count = 1, .reusable = false}, SHIFT(896), - [2340] = {.count = 1, .reusable = false}, REDUCE(sym__declaration_specifiers, 1, .production_id = 2), - [2342] = {.count = 1, .reusable = true}, REDUCE(sym__declaration_specifiers, 1, .production_id = 2), - [2344] = {.count = 1, .reusable = false}, REDUCE(sym__declaration_specifiers, 2, .production_id = 11), - [2346] = {.count = 1, .reusable = true}, REDUCE(sym__declaration_specifiers, 2, .production_id = 11), - [2348] = {.count = 1, .reusable = false}, SHIFT(897), - [2350] = {.count = 1, .reusable = false}, SHIFT(893), - [2352] = {.count = 1, .reusable = false}, SHIFT(852), - [2354] = {.count = 1, .reusable = false}, REDUCE(sym__declaration_specifiers, 2, .production_id = 2), - [2356] = {.count = 1, .reusable = true}, REDUCE(sym__declaration_specifiers, 2, .production_id = 2), - [2358] = {.count = 1, .reusable = false}, SHIFT(892), - [2360] = {.count = 1, .reusable = true}, REDUCE(sym__preproc_expression, 1), - [2362] = {.count = 1, .reusable = true}, SHIFT(732), - [2364] = {.count = 1, .reusable = false}, REDUCE(sym__preproc_expression, 1), - [2366] = {.count = 1, .reusable = false}, SHIFT(900), - [2368] = {.count = 1, .reusable = false}, REDUCE(sym__declaration_specifiers, 3, .production_id = 11), - [2370] = {.count = 1, .reusable = true}, REDUCE(sym__declaration_specifiers, 3, .production_id = 11), - [2372] = {.count = 1, .reusable = false}, SHIFT(894), - [2374] = {.count = 1, .reusable = false}, SHIFT(888), - [2376] = {.count = 1, .reusable = false}, SHIFT(886), - [2378] = {.count = 1, .reusable = false}, SHIFT(725), - [2380] = {.count = 1, .reusable = true}, SHIFT(823), - [2382] = {.count = 1, .reusable = true}, SHIFT(789), - [2384] = {.count = 1, .reusable = false}, SHIFT(1067), - [2386] = {.count = 1, .reusable = true}, SHIFT(784), - [2388] = {.count = 1, .reusable = false}, SHIFT(784), - [2390] = {.count = 1, .reusable = true}, SHIFT(735), - [2392] = {.count = 1, .reusable = true}, SHIFT(1057), - [2394] = {.count = 1, .reusable = true}, SHIFT(736), - [2396] = {.count = 1, .reusable = true}, SHIFT(733), - [2398] = {.count = 1, .reusable = true}, SHIFT(792), - [2400] = {.count = 1, .reusable = true}, SHIFT(779), - [2402] = {.count = 1, .reusable = true}, SHIFT(767), - [2404] = {.count = 1, .reusable = true}, SHIFT(766), - [2406] = {.count = 1, .reusable = false}, SHIFT(766), - [2408] = {.count = 1, .reusable = true}, SHIFT(737), - [2410] = {.count = 1, .reusable = true}, SHIFT(764), - [2412] = {.count = 1, .reusable = false}, SHIFT(763), - [2414] = {.count = 1, .reusable = true}, SHIFT(762), - [2416] = {.count = 1, .reusable = false}, SHIFT(761), - [2418] = {.count = 1, .reusable = true}, SHIFT(760), - [2420] = {.count = 1, .reusable = false}, SHIFT(759), - [2422] = {.count = 1, .reusable = true}, SHIFT(759), - [2424] = {.count = 1, .reusable = true}, SHIFT(758), - [2426] = {.count = 1, .reusable = false}, SHIFT(731), - [2428] = {.count = 1, .reusable = false}, SHIFT_EXTRA(), - [2430] = {.count = 1, .reusable = true}, SHIFT(803), - [2432] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_argument_list, 2), - [2434] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_argument_list, 2), - [2436] = {.count = 1, .reusable = true}, SHIFT(753), - [2438] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_argument_list, 4), - [2440] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_argument_list, 4), - [2442] = {.count = 1, .reusable = false}, SHIFT(734), - [2444] = {.count = 1, .reusable = true}, SHIFT(771), - [2446] = {.count = 1, .reusable = false}, SHIFT(1053), - [2448] = {.count = 1, .reusable = true}, SHIFT(742), - [2450] = {.count = 1, .reusable = false}, SHIFT(742), - [2452] = {.count = 1, .reusable = true}, SHIFT(804), - [2454] = {.count = 1, .reusable = true}, SHIFT(1068), - [2456] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_defined, 4), - [2458] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_defined, 4), - [2460] = {.count = 1, .reusable = true}, SHIFT(797), - [2462] = {.count = 1, .reusable = true}, SHIFT(817), - [2464] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_binary_expression, 3, .production_id = 29), - [2466] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_binary_expression, 3, .production_id = 29), - [2468] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_parenthesized_expression, 3), - [2470] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_parenthesized_expression, 3), - [2472] = {.count = 1, .reusable = true}, SHIFT(814), - [2474] = {.count = 1, .reusable = true}, SHIFT(746), - [2476] = {.count = 1, .reusable = true}, SHIFT(747), - [2478] = {.count = 1, .reusable = true}, SHIFT(748), - [2480] = {.count = 1, .reusable = true}, SHIFT(749), - [2482] = {.count = 1, .reusable = true}, SHIFT(750), - [2484] = {.count = 1, .reusable = true}, SHIFT(751), - [2486] = {.count = 1, .reusable = true}, SHIFT(752), - [2488] = {.count = 1, .reusable = true}, SHIFT(820), - [2490] = {.count = 1, .reusable = true}, SHIFT(754), - [2492] = {.count = 1, .reusable = true}, SHIFT(755), - [2494] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_call_expression, 2, .production_id = 10), - [2496] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_call_expression, 2, .production_id = 10), - [2498] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_unary_expression, 2, .production_id = 5), - [2500] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_unary_expression, 2, .production_id = 5), - [2502] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_defined, 2), - [2504] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_defined, 2), - [2506] = {.count = 1, .reusable = true}, SHIFT(809), - [2508] = {.count = 1, .reusable = true}, SHIFT(825), - [2510] = {.count = 2, .reusable = false}, REDUCE(aux_sym_type_definition_repeat1, 2), SHIFT_REPEAT(669), - [2513] = {.count = 1, .reusable = true}, SHIFT(799), - [2515] = {.count = 1, .reusable = true}, REDUCE(aux_sym_preproc_argument_list_repeat1, 2), - [2517] = {.count = 1, .reusable = true}, SHIFT(818), - [2519] = {.count = 1, .reusable = true}, SHIFT(807), - [2521] = {.count = 1, .reusable = true}, SHIFT(812), - [2523] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_argument_list, 3), - [2525] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_argument_list, 3), - [2527] = {.count = 1, .reusable = true}, SHIFT(816), - [2529] = {.count = 1, .reusable = true}, SHIFT(819), - [2531] = {.count = 1, .reusable = true}, SHIFT(822), - [2533] = {.count = 1, .reusable = true}, SHIFT(811), - [2535] = {.count = 1, .reusable = true}, SHIFT(769), - [2537] = {.count = 1, .reusable = true}, SHIFT(798), - [2539] = {.count = 1, .reusable = true}, SHIFT(801), - [2541] = {.count = 1, .reusable = false}, REDUCE(sym_union_specifier, 2, .production_id = 6), - [2543] = {.count = 1, .reusable = true}, REDUCE(sym_union_specifier, 2, .production_id = 6), - [2545] = {.count = 1, .reusable = true}, SHIFT(406), - [2547] = {.count = 1, .reusable = true}, SHIFT(802), - [2549] = {.count = 1, .reusable = true}, SHIFT(813), - [2551] = {.count = 1, .reusable = false}, REDUCE(sym_struct_specifier, 2, .production_id = 6), - [2553] = {.count = 1, .reusable = true}, REDUCE(sym_struct_specifier, 2, .production_id = 6), - [2555] = {.count = 1, .reusable = false}, REDUCE(sym_enum_specifier, 2, .production_id = 6), - [2557] = {.count = 1, .reusable = true}, REDUCE(sym_enum_specifier, 2, .production_id = 6), - [2559] = {.count = 1, .reusable = true}, SHIFT(992), - [2561] = {.count = 1, .reusable = true}, SHIFT(775), - [2563] = {.count = 1, .reusable = true}, SHIFT(808), - [2565] = {.count = 1, .reusable = true}, SHIFT(810), - [2567] = {.count = 1, .reusable = true}, SHIFT(796), - [2569] = {.count = 1, .reusable = false}, SHIFT(765), - [2571] = {.count = 1, .reusable = false}, SHIFT(781), - [2573] = {.count = 1, .reusable = false}, SHIFT(794), - [2575] = {.count = 1, .reusable = false}, SHIFT(793), - [2577] = {.count = 1, .reusable = true}, SHIFT(378), - [2579] = {.count = 1, .reusable = false}, SHIFT(776), - [2581] = {.count = 1, .reusable = false}, SHIFT(774), - [2583] = {.count = 1, .reusable = false}, SHIFT(745), - [2585] = {.count = 1, .reusable = false}, SHIFT(780), - [2587] = {.count = 1, .reusable = false}, SHIFT(757), - [2589] = {.count = 1, .reusable = false}, SHIFT(795), - [2591] = {.count = 1, .reusable = true}, SHIFT(397), - [2593] = {.count = 1, .reusable = true}, SHIFT(4), - [2595] = {.count = 1, .reusable = true}, SHIFT(7), - [2597] = {.count = 1, .reusable = true}, SHIFT(400), - [2599] = {.count = 1, .reusable = true}, SHIFT(824), + [2327] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(705), + [2330] = {.count = 1, .reusable = false}, SHIFT(894), + [2332] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_pointer_declarator, 2, .dynamic_precedence = 1), + [2334] = {.count = 1, .reusable = false}, SHIFT(880), + [2336] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_pointer_declarator, 1, .dynamic_precedence = 1), + [2338] = {.count = 1, .reusable = false}, REDUCE(sym__declaration_specifiers, 1, .production_id = 2), + [2340] = {.count = 1, .reusable = true}, REDUCE(sym__declaration_specifiers, 1, .production_id = 2), + [2342] = {.count = 1, .reusable = false}, SHIFT(841), + [2344] = {.count = 1, .reusable = false}, REDUCE(sym__declaration_specifiers, 3, .production_id = 10), + [2346] = {.count = 1, .reusable = true}, REDUCE(sym__declaration_specifiers, 3, .production_id = 10), + [2348] = {.count = 1, .reusable = false}, SHIFT(879), + [2350] = {.count = 1, .reusable = true}, REDUCE(sym__preproc_expression, 1), + [2352] = {.count = 1, .reusable = true}, SHIFT(726), + [2354] = {.count = 1, .reusable = false}, REDUCE(sym__preproc_expression, 1), + [2356] = {.count = 1, .reusable = false}, SHIFT(888), + [2358] = {.count = 1, .reusable = false}, SHIFT(884), + [2360] = {.count = 1, .reusable = false}, SHIFT(889), + [2362] = {.count = 1, .reusable = false}, SHIFT(895), + [2364] = {.count = 1, .reusable = false}, SHIFT(896), + [2366] = {.count = 1, .reusable = false}, SHIFT(887), + [2368] = {.count = 1, .reusable = false}, SHIFT(881), + [2370] = {.count = 1, .reusable = false}, REDUCE(sym__declaration_specifiers, 2, .production_id = 10), + [2372] = {.count = 1, .reusable = true}, REDUCE(sym__declaration_specifiers, 2, .production_id = 10), + [2374] = {.count = 1, .reusable = false}, REDUCE(sym__declaration_specifiers, 2, .production_id = 2), + [2376] = {.count = 1, .reusable = true}, REDUCE(sym__declaration_specifiers, 2, .production_id = 2), + [2378] = {.count = 1, .reusable = false}, SHIFT(713), + [2380] = {.count = 1, .reusable = true}, SHIFT(811), + [2382] = {.count = 1, .reusable = true}, SHIFT(728), + [2384] = {.count = 1, .reusable = false}, SHIFT(1044), + [2386] = {.count = 1, .reusable = true}, SHIFT(771), + [2388] = {.count = 1, .reusable = false}, SHIFT(771), + [2390] = {.count = 1, .reusable = true}, SHIFT(724), + [2392] = {.count = 1, .reusable = true}, SHIFT(1051), + [2394] = {.count = 1, .reusable = true}, SHIFT(747), + [2396] = {.count = 1, .reusable = true}, SHIFT(791), + [2398] = {.count = 1, .reusable = true}, SHIFT(777), + [2400] = {.count = 1, .reusable = true}, SHIFT(774), + [2402] = {.count = 1, .reusable = false}, SHIFT(774), + [2404] = {.count = 1, .reusable = true}, SHIFT(773), + [2406] = {.count = 1, .reusable = true}, SHIFT(764), + [2408] = {.count = 1, .reusable = false}, SHIFT(762), + [2410] = {.count = 1, .reusable = true}, SHIFT(757), + [2412] = {.count = 1, .reusable = false}, SHIFT(730), + [2414] = {.count = 1, .reusable = true}, SHIFT(732), + [2416] = {.count = 1, .reusable = false}, SHIFT(733), + [2418] = {.count = 1, .reusable = true}, SHIFT(733), + [2420] = {.count = 1, .reusable = true}, SHIFT(745), + [2422] = {.count = 1, .reusable = true}, SHIFT(779), + [2424] = {.count = 1, .reusable = true}, SHIFT(748), + [2426] = {.count = 1, .reusable = true}, SHIFT(725), + [2428] = {.count = 1, .reusable = false}, SHIFT(723), + [2430] = {.count = 1, .reusable = false}, SHIFT_EXTRA(), + [2432] = {.count = 1, .reusable = true}, SHIFT(788), + [2434] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_binary_expression, 3, .production_id = 29), + [2436] = {.count = 1, .reusable = true}, SHIFT(766), + [2438] = {.count = 1, .reusable = false}, SHIFT(727), + [2440] = {.count = 1, .reusable = true}, SHIFT(740), + [2442] = {.count = 1, .reusable = false}, SHIFT(1041), + [2444] = {.count = 1, .reusable = true}, SHIFT(738), + [2446] = {.count = 1, .reusable = false}, SHIFT(738), + [2448] = {.count = 1, .reusable = true}, SHIFT(817), + [2450] = {.count = 1, .reusable = true}, SHIFT(1027), + [2452] = {.count = 1, .reusable = true}, SHIFT(767), + [2454] = {.count = 1, .reusable = true}, SHIFT(768), + [2456] = {.count = 1, .reusable = true}, SHIFT(809), + [2458] = {.count = 1, .reusable = true}, SHIFT(802), + [2460] = {.count = 1, .reusable = true}, SHIFT(815), + [2462] = {.count = 1, .reusable = true}, SHIFT(807), + [2464] = {.count = 1, .reusable = true}, SHIFT(814), + [2466] = {.count = 1, .reusable = true}, SHIFT(804), + [2468] = {.count = 1, .reusable = true}, SHIFT(805), + [2470] = {.count = 1, .reusable = true}, SHIFT(801), + [2472] = {.count = 1, .reusable = true}, SHIFT(800), + [2474] = {.count = 1, .reusable = true}, SHIFT(775), + [2476] = {.count = 1, .reusable = true}, SHIFT(799), + [2478] = {.count = 1, .reusable = true}, SHIFT(753), + [2480] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_argument_list, 2), + [2482] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_argument_list, 2), + [2484] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_parenthesized_expression, 3), + [2486] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_parenthesized_expression, 3), + [2488] = {.count = 1, .reusable = true}, SHIFT(816), + [2490] = {.count = 1, .reusable = false}, REDUCE(sym_union_specifier, 2, .production_id = 5), + [2492] = {.count = 1, .reusable = true}, REDUCE(sym_union_specifier, 2, .production_id = 5), + [2494] = {.count = 1, .reusable = true}, SHIFT(400), + [2496] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_binary_expression, 3, .production_id = 29), + [2498] = {.count = 1, .reusable = true}, REDUCE(aux_sym_preproc_argument_list_repeat1, 2), + [2500] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_call_expression, 2, .production_id = 9), + [2502] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_call_expression, 2, .production_id = 9), + [2504] = {.count = 1, .reusable = true}, SHIFT(765), + [2506] = {.count = 1, .reusable = true}, SHIFT(812), + [2508] = {.count = 1, .reusable = true}, SHIFT(798), + [2510] = {.count = 1, .reusable = true}, SHIFT(806), + [2512] = {.count = 1, .reusable = true}, SHIFT(758), + [2514] = {.count = 1, .reusable = true}, SHIFT(796), + [2516] = {.count = 1, .reusable = true}, SHIFT(729), + [2518] = {.count = 1, .reusable = true}, SHIFT(795), + [2520] = {.count = 1, .reusable = true}, SHIFT(803), + [2522] = {.count = 1, .reusable = true}, SHIFT(784), + [2524] = {.count = 1, .reusable = true}, SHIFT(797), + [2526] = {.count = 1, .reusable = true}, SHIFT(755), + [2528] = {.count = 1, .reusable = true}, SHIFT(754), + [2530] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_argument_list, 4), + [2532] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_argument_list, 4), + [2534] = {.count = 1, .reusable = true}, SHIFT(752), + [2536] = {.count = 1, .reusable = true}, SHIFT(792), + [2538] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_argument_list, 3), + [2540] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_argument_list, 3), + [2542] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_defined, 4), + [2544] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_defined, 4), + [2546] = {.count = 1, .reusable = false}, REDUCE(sym_enum_specifier, 2, .production_id = 5), + [2548] = {.count = 1, .reusable = true}, REDUCE(sym_enum_specifier, 2, .production_id = 5), + [2550] = {.count = 1, .reusable = true}, SHIFT(944), + [2552] = {.count = 2, .reusable = false}, REDUCE(aux_sym_type_definition_repeat1, 2), SHIFT_REPEAT(661), + [2555] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_unary_expression, 2, .production_id = 4), + [2557] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_unary_expression, 2, .production_id = 4), + [2559] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_defined, 2), + [2561] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_defined, 2), + [2563] = {.count = 1, .reusable = false}, REDUCE(sym_struct_specifier, 2, .production_id = 5), + [2565] = {.count = 1, .reusable = true}, REDUCE(sym_struct_specifier, 2, .production_id = 5), + [2567] = {.count = 1, .reusable = true}, SHIFT(790), + [2569] = {.count = 1, .reusable = true}, SHIFT(749), + [2571] = {.count = 1, .reusable = true}, SHIFT(367), + [2573] = {.count = 1, .reusable = false}, SHIFT(734), + [2575] = {.count = 1, .reusable = false}, SHIFT(737), + [2577] = {.count = 1, .reusable = false}, SHIFT(739), + [2579] = {.count = 1, .reusable = false}, SHIFT(741), + [2581] = {.count = 1, .reusable = false}, SHIFT(742), + [2583] = {.count = 1, .reusable = false}, SHIFT(743), + [2585] = {.count = 1, .reusable = false}, SHIFT(744), + [2587] = {.count = 1, .reusable = false}, SHIFT(746), + [2589] = {.count = 1, .reusable = false}, SHIFT(760), + [2591] = {.count = 1, .reusable = false}, SHIFT(763), + [2593] = {.count = 1, .reusable = true}, SHIFT(2), + [2595] = {.count = 1, .reusable = true}, SHIFT(9), + [2597] = {.count = 1, .reusable = true}, SHIFT(14), + [2599] = {.count = 1, .reusable = true}, SHIFT(365), [2601] = {.count = 1, .reusable = true}, SHIFT(11), - [2603] = {.count = 1, .reusable = true}, SHIFT(16), - [2605] = {.count = 1, .reusable = true}, SHIFT(756), - [2607] = {.count = 1, .reusable = true}, SHIFT(395), - [2609] = {.count = 1, .reusable = true}, SHIFT(12), - [2611] = {.count = 1, .reusable = false}, REDUCE(sym_enumerator_list, 3), - [2613] = {.count = 1, .reusable = true}, REDUCE(sym_enumerator_list, 3), - [2615] = {.count = 1, .reusable = false}, REDUCE(sym_struct_specifier, 2, .production_id = 7), - [2617] = {.count = 1, .reusable = true}, REDUCE(sym_struct_specifier, 2, .production_id = 7), - [2619] = {.count = 1, .reusable = false}, REDUCE(sym_union_specifier, 3, .production_id = 19), - [2621] = {.count = 1, .reusable = true}, REDUCE(sym_union_specifier, 3, .production_id = 19), - [2623] = {.count = 2, .reusable = true}, REDUCE(sym__type_specifier, 1, .production_id = 1), SHIFT(716), - [2626] = {.count = 1, .reusable = false}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .production_id = 12), - [2628] = {.count = 1, .reusable = true}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .production_id = 12), - [2630] = {.count = 1, .reusable = false}, REDUCE(sym_field_declaration_list, 2), - [2632] = {.count = 1, .reusable = true}, REDUCE(sym_field_declaration_list, 2), - [2634] = {.count = 1, .reusable = false}, REDUCE(sym_sized_type_specifier, 2, .production_id = 11), - [2636] = {.count = 1, .reusable = true}, REDUCE(sym_sized_type_specifier, 2, .production_id = 11), - [2638] = {.count = 1, .reusable = false}, REDUCE(sym_enum_specifier, 2, .production_id = 7), - [2640] = {.count = 1, .reusable = true}, REDUCE(sym_enum_specifier, 2, .production_id = 7), - [2642] = {.count = 1, .reusable = false}, REDUCE(sym_enumerator_list, 2), - [2644] = {.count = 1, .reusable = true}, REDUCE(sym_enumerator_list, 2), - [2646] = {.count = 1, .reusable = true}, SHIFT(185), - [2648] = {.count = 1, .reusable = false}, REDUCE(sym_field_declaration_list, 3), - [2650] = {.count = 1, .reusable = true}, REDUCE(sym_field_declaration_list, 3), - [2652] = {.count = 1, .reusable = true}, SHIFT(298), - [2654] = {.count = 1, .reusable = false}, REDUCE(sym_enumerator_list, 5), - [2656] = {.count = 1, .reusable = true}, REDUCE(sym_enumerator_list, 5), - [2658] = {.count = 1, .reusable = false}, REDUCE(sym_enumerator_list, 4), - [2660] = {.count = 1, .reusable = true}, REDUCE(sym_enumerator_list, 4), - [2662] = {.count = 1, .reusable = true}, SHIFT(334), - [2664] = {.count = 1, .reusable = false}, REDUCE(sym_enum_specifier, 3, .production_id = 19), - [2666] = {.count = 1, .reusable = true}, REDUCE(sym_enum_specifier, 3, .production_id = 19), - [2668] = {.count = 1, .reusable = false}, REDUCE(sym_struct_specifier, 3, .production_id = 19), - [2670] = {.count = 1, .reusable = true}, REDUCE(sym_struct_specifier, 3, .production_id = 19), - [2672] = {.count = 1, .reusable = false}, REDUCE(sym_union_specifier, 2, .production_id = 7), - [2674] = {.count = 1, .reusable = true}, REDUCE(sym_union_specifier, 2, .production_id = 7), - [2676] = {.count = 1, .reusable = false}, REDUCE(sym_macro_type_specifier, 4, .dynamic_precedence = -1, .production_id = 41), - [2678] = {.count = 1, .reusable = true}, REDUCE(sym_macro_type_specifier, 4, .dynamic_precedence = -1, .production_id = 41), - [2680] = {.count = 1, .reusable = true}, SHIFT(359), - [2682] = {.count = 1, .reusable = true}, SHIFT(938), + [2603] = {.count = 1, .reusable = true}, SHIFT(385), + [2605] = {.count = 1, .reusable = true}, SHIFT(810), + [2607] = {.count = 1, .reusable = true}, SHIFT(16), + [2609] = {.count = 1, .reusable = true}, SHIFT(380), + [2611] = {.count = 1, .reusable = false}, REDUCE(sym_field_declaration_list, 2), + [2613] = {.count = 1, .reusable = true}, REDUCE(sym_field_declaration_list, 2), + [2615] = {.count = 1, .reusable = true}, SHIFT(317), + [2617] = {.count = 1, .reusable = false}, REDUCE(sym_field_declaration_list, 3), + [2619] = {.count = 1, .reusable = true}, REDUCE(sym_field_declaration_list, 3), + [2621] = {.count = 1, .reusable = true}, SHIFT(293), + [2623] = {.count = 1, .reusable = true}, SHIFT(318), + [2625] = {.count = 1, .reusable = false}, REDUCE(sym_enumerator_list, 3), + [2627] = {.count = 1, .reusable = true}, REDUCE(sym_enumerator_list, 3), + [2629] = {.count = 1, .reusable = false}, REDUCE(sym_struct_specifier, 3, .production_id = 19), + [2631] = {.count = 1, .reusable = true}, REDUCE(sym_struct_specifier, 3, .production_id = 19), + [2633] = {.count = 1, .reusable = false}, REDUCE(sym_union_specifier, 2, .production_id = 6), + [2635] = {.count = 1, .reusable = true}, REDUCE(sym_union_specifier, 2, .production_id = 6), + [2637] = {.count = 1, .reusable = false}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .production_id = 11), + [2639] = {.count = 1, .reusable = true}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .production_id = 11), + [2641] = {.count = 1, .reusable = false}, REDUCE(sym_enumerator_list, 5), + [2643] = {.count = 1, .reusable = true}, REDUCE(sym_enumerator_list, 5), + [2645] = {.count = 1, .reusable = false}, REDUCE(sym_sized_type_specifier, 2, .production_id = 10), + [2647] = {.count = 1, .reusable = true}, REDUCE(sym_sized_type_specifier, 2, .production_id = 10), + [2649] = {.count = 1, .reusable = false}, REDUCE(sym_enumerator_list, 4), + [2651] = {.count = 1, .reusable = true}, REDUCE(sym_enumerator_list, 4), + [2653] = {.count = 1, .reusable = false}, REDUCE(sym_struct_specifier, 2, .production_id = 6), + [2655] = {.count = 1, .reusable = true}, REDUCE(sym_struct_specifier, 2, .production_id = 6), + [2657] = {.count = 1, .reusable = false}, REDUCE(sym_macro_type_specifier, 4, .dynamic_precedence = -1, .production_id = 41), + [2659] = {.count = 1, .reusable = true}, REDUCE(sym_macro_type_specifier, 4, .dynamic_precedence = -1, .production_id = 41), + [2661] = {.count = 1, .reusable = false}, REDUCE(sym_enum_specifier, 3, .production_id = 19), + [2663] = {.count = 1, .reusable = true}, REDUCE(sym_enum_specifier, 3, .production_id = 19), + [2665] = {.count = 1, .reusable = false}, REDUCE(sym_union_specifier, 3, .production_id = 19), + [2667] = {.count = 1, .reusable = true}, REDUCE(sym_union_specifier, 3, .production_id = 19), + [2669] = {.count = 1, .reusable = false}, REDUCE(sym_enumerator_list, 2), + [2671] = {.count = 1, .reusable = true}, REDUCE(sym_enumerator_list, 2), + [2673] = {.count = 1, .reusable = false}, REDUCE(sym_enum_specifier, 2, .production_id = 6), + [2675] = {.count = 1, .reusable = true}, REDUCE(sym_enum_specifier, 2, .production_id = 6), + [2677] = {.count = 2, .reusable = true}, REDUCE(sym__type_specifier, 1, .production_id = 1), SHIFT(706), + [2680] = {.count = 1, .reusable = true}, SHIFT(188), + [2682] = {.count = 1, .reusable = true}, SHIFT(929), [2684] = {.count = 1, .reusable = true}, REDUCE(sym_parameter_declaration, 1, .production_id = 35), - [2686] = {.count = 1, .reusable = true}, SHIFT(669), - [2688] = {.count = 1, .reusable = true}, REDUCE(sym_type_descriptor, 3, .production_id = 11), - [2690] = {.count = 1, .reusable = true}, REDUCE(sym_type_descriptor, 1, .production_id = 2), - [2692] = {.count = 1, .reusable = true}, REDUCE(sym_type_descriptor, 2, .production_id = 2), - [2694] = {.count = 1, .reusable = true}, REDUCE(sym_type_descriptor, 2, .production_id = 11), - [2696] = {.count = 2, .reusable = true}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .production_id = 1), - [2699] = {.count = 3, .reusable = true}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .production_id = 1), SHIFT(716), - [2703] = {.count = 1, .reusable = false}, SHIFT(830), - [2705] = {.count = 1, .reusable = false}, SHIFT(925), - [2707] = {.count = 1, .reusable = true}, SHIFT(884), - [2709] = {.count = 1, .reusable = true}, SHIFT(855), - [2711] = {.count = 1, .reusable = false}, SHIFT(941), - [2713] = {.count = 1, .reusable = true}, SHIFT(885), - [2715] = {.count = 1, .reusable = true}, SHIFT(856), - [2717] = {.count = 1, .reusable = true}, SHIFT(887), - [2719] = {.count = 1, .reusable = true}, SHIFT(858), - [2721] = {.count = 1, .reusable = true}, SHIFT(925), - [2723] = {.count = 1, .reusable = true}, SHIFT(694), - [2725] = {.count = 1, .reusable = true}, SHIFT(528), - [2727] = {.count = 1, .reusable = true}, SHIFT(683), - [2729] = {.count = 1, .reusable = true}, SHIFT(641), - [2731] = {.count = 1, .reusable = true}, REDUCE(sym_function_declarator, 2, .production_id = 28), - [2733] = {.count = 1, .reusable = true}, SHIFT(1246), - [2735] = {.count = 1, .reusable = true}, REDUCE(aux_sym_function_declarator_repeat1, 2), - [2737] = {.count = 2, .reusable = true}, REDUCE(aux_sym_function_declarator_repeat1, 2), SHIFT_REPEAT(1246), - [2740] = {.count = 1, .reusable = true}, REDUCE(sym_function_declarator, 3, .production_id = 28), - [2742] = {.count = 1, .reusable = true}, SHIFT(902), - [2744] = {.count = 1, .reusable = true}, SHIFT(909), - [2746] = {.count = 1, .reusable = true}, REDUCE(sym_parameter_list, 3), - [2748] = {.count = 1, .reusable = true}, SHIFT(876), - [2750] = {.count = 1, .reusable = true}, SHIFT(882), - [2752] = {.count = 1, .reusable = true}, SHIFT(553), - [2754] = {.count = 1, .reusable = true}, SHIFT(239), - [2756] = {.count = 1, .reusable = true}, SHIFT(387), - [2758] = {.count = 1, .reusable = true}, SHIFT(437), - [2760] = {.count = 1, .reusable = true}, SHIFT(881), - [2762] = {.count = 1, .reusable = true}, SHIFT(915), - [2764] = {.count = 1, .reusable = true}, SHIFT(880), - [2766] = {.count = 1, .reusable = true}, REDUCE(sym_parameter_list, 2), - [2768] = {.count = 1, .reusable = true}, SHIFT(146), - [2770] = {.count = 1, .reusable = true}, SHIFT(871), - [2772] = {.count = 1, .reusable = true}, SHIFT(905), - [2774] = {.count = 1, .reusable = true}, REDUCE(sym_parameter_list, 4), - [2776] = {.count = 1, .reusable = true}, SHIFT(210), - [2778] = {.count = 1, .reusable = true}, SHIFT(220), - [2780] = {.count = 1, .reusable = true}, SHIFT(932), - [2782] = {.count = 1, .reusable = true}, REDUCE(sym_pointer_declarator, 3, .dynamic_precedence = 1, .production_id = 42), - [2784] = {.count = 1, .reusable = true}, SHIFT(941), - [2786] = {.count = 1, .reusable = true}, SHIFT(972), - [2788] = {.count = 1, .reusable = true}, SHIFT(895), - [2790] = {.count = 1, .reusable = true}, SHIFT(690), - [2792] = {.count = 1, .reusable = true}, SHIFT(392), - [2794] = {.count = 1, .reusable = true}, SHIFT(711), - [2796] = {.count = 1, .reusable = true}, REDUCE(sym_pointer_declarator, 2, .dynamic_precedence = 1, .production_id = 25), - [2798] = {.count = 1, .reusable = true}, SHIFT(659), - [2800] = {.count = 1, .reusable = true}, SHIFT(953), - [2802] = {.count = 1, .reusable = true}, SHIFT(302), - [2804] = {.count = 1, .reusable = true}, REDUCE(sym_array_declarator, 3, .production_id = 43), - [2806] = {.count = 1, .reusable = true}, REDUCE(sym_array_declarator, 4, .production_id = 58), - [2808] = {.count = 1, .reusable = true}, SHIFT(959), - [2810] = {.count = 1, .reusable = true}, SHIFT(187), - [2812] = {.count = 1, .reusable = true}, REDUCE(sym_parenthesized_declarator, 3, .dynamic_precedence = -10), - [2814] = {.count = 1, .reusable = true}, REDUCE(sym_array_declarator, 5, .production_id = 65), - [2816] = {.count = 1, .reusable = true}, REDUCE(sym_pointer_field_declarator, 3, .dynamic_precedence = 1, .production_id = 42), - [2818] = {.count = 1, .reusable = true}, SHIFT(977), - [2820] = {.count = 1, .reusable = true}, SHIFT(295), + [2686] = {.count = 1, .reusable = true}, REDUCE(sym_type_descriptor, 1, .production_id = 2), + [2688] = {.count = 1, .reusable = true}, SHIFT(661), + [2690] = {.count = 2, .reusable = true}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .production_id = 1), + [2693] = {.count = 3, .reusable = true}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .production_id = 1), SHIFT(706), + [2697] = {.count = 1, .reusable = true}, REDUCE(sym_type_descriptor, 2, .production_id = 10), + [2699] = {.count = 1, .reusable = true}, REDUCE(sym_type_descriptor, 2, .production_id = 2), + [2701] = {.count = 1, .reusable = true}, REDUCE(sym_type_descriptor, 3, .production_id = 10), + [2703] = {.count = 1, .reusable = false}, SHIFT(826), + [2705] = {.count = 1, .reusable = false}, SHIFT(937), + [2707] = {.count = 1, .reusable = true}, SHIFT(883), + [2709] = {.count = 1, .reusable = true}, SHIFT(847), + [2711] = {.count = 1, .reusable = true}, SHIFT(886), + [2713] = {.count = 1, .reusable = true}, SHIFT(848), + [2715] = {.count = 1, .reusable = false}, SHIFT(920), + [2717] = {.count = 1, .reusable = true}, SHIFT(890), + [2719] = {.count = 1, .reusable = true}, SHIFT(850), + [2721] = {.count = 1, .reusable = true}, SHIFT(920), + [2723] = {.count = 1, .reusable = true}, SHIFT(643), + [2725] = {.count = 1, .reusable = true}, SHIFT(520), + [2727] = {.count = 1, .reusable = true}, SHIFT(684), + [2729] = {.count = 1, .reusable = true}, SHIFT(670), + [2731] = {.count = 1, .reusable = true}, REDUCE(aux_sym_function_declarator_repeat1, 2), + [2733] = {.count = 2, .reusable = true}, REDUCE(aux_sym_function_declarator_repeat1, 2), SHIFT_REPEAT(1243), + [2736] = {.count = 1, .reusable = true}, REDUCE(sym_function_declarator, 3, .production_id = 28), + [2738] = {.count = 1, .reusable = true}, SHIFT(1243), + [2740] = {.count = 1, .reusable = true}, REDUCE(sym_function_declarator, 2, .production_id = 28), + [2742] = {.count = 1, .reusable = true}, SHIFT(862), + [2744] = {.count = 1, .reusable = true}, SHIFT(545), + [2746] = {.count = 1, .reusable = true}, SHIFT(236), + [2748] = {.count = 1, .reusable = true}, SHIFT(375), + [2750] = {.count = 1, .reusable = true}, SHIFT(424), + [2752] = {.count = 1, .reusable = true}, SHIFT(902), + [2754] = {.count = 1, .reusable = true}, SHIFT(152), + [2756] = {.count = 1, .reusable = true}, SHIFT(914), + [2758] = {.count = 1, .reusable = false}, SHIFT(1005), + [2760] = {.count = 1, .reusable = true}, SHIFT(971), + [2762] = {.count = 1, .reusable = true}, SHIFT(1165), + [2764] = {.count = 1, .reusable = true}, SHIFT(867), + [2766] = {.count = 1, .reusable = true}, SHIFT(868), + [2768] = {.count = 1, .reusable = true}, SHIFT(861), + [2770] = {.count = 1, .reusable = true}, SHIFT(228), + [2772] = {.count = 1, .reusable = true}, SHIFT(237), + [2774] = {.count = 1, .reusable = false}, SHIFT(1016), + [2776] = {.count = 1, .reusable = true}, SHIFT(1204), + [2778] = {.count = 1, .reusable = true}, SHIFT(898), + [2780] = {.count = 1, .reusable = false}, SHIFT(993), + [2782] = {.count = 1, .reusable = true}, SHIFT(1093), + [2784] = {.count = 1, .reusable = true}, SHIFT(905), + [2786] = {.count = 1, .reusable = true}, SHIFT(859), + [2788] = {.count = 1, .reusable = false}, SHIFT(1017), + [2790] = {.count = 1, .reusable = true}, SHIFT(1217), + [2792] = {.count = 1, .reusable = true}, REDUCE(sym_parameter_list, 2), + [2794] = {.count = 1, .reusable = true}, REDUCE(sym_parameter_list, 4), + [2796] = {.count = 1, .reusable = true}, SHIFT(906), + [2798] = {.count = 1, .reusable = true}, REDUCE(sym_parameter_list, 3), + [2800] = {.count = 1, .reusable = true}, SHIFT(937), + [2802] = {.count = 1, .reusable = true}, REDUCE(sym_pointer_declarator, 2, .dynamic_precedence = 1, .production_id = 25), + [2804] = {.count = 1, .reusable = true}, SHIFT(891), + [2806] = {.count = 1, .reusable = true}, SHIFT(637), + [2808] = {.count = 1, .reusable = true}, SHIFT(390), + [2810] = {.count = 1, .reusable = true}, SHIFT(951), + [2812] = {.count = 1, .reusable = true}, SHIFT(676), + [2814] = {.count = 1, .reusable = true}, SHIFT(687), + [2816] = {.count = 1, .reusable = true}, REDUCE(sym_pointer_declarator, 3, .dynamic_precedence = 1, .production_id = 42), + [2818] = {.count = 1, .reusable = true}, REDUCE(sym_parenthesized_declarator, 3, .dynamic_precedence = -10), + [2820] = {.count = 1, .reusable = true}, REDUCE(sym_pointer_field_declarator, 3, .dynamic_precedence = 1, .production_id = 42), [2822] = {.count = 1, .reusable = true}, REDUCE(sym_array_declarator, 4, .production_id = 43), - [2824] = {.count = 1, .reusable = true}, REDUCE(sym_pointer_field_declarator, 2, .dynamic_precedence = 1, .production_id = 25), - [2826] = {.count = 1, .reusable = true}, SHIFT(954), - [2828] = {.count = 1, .reusable = true}, SHIFT(304), - [2830] = {.count = 1, .reusable = true}, REDUCE(sym_array_field_declarator, 3, .production_id = 43), - [2832] = {.count = 1, .reusable = true}, REDUCE(sym_parenthesized_field_declarator, 3, .dynamic_precedence = -10), - [2834] = {.count = 1, .reusable = true}, REDUCE(sym_array_field_declarator, 4, .production_id = 43), - [2836] = {.count = 1, .reusable = true}, SHIFT(889), - [2838] = {.count = 1, .reusable = true}, SHIFT(217), - [2840] = {.count = 1, .reusable = true}, SHIFT(391), - [2842] = {.count = 1, .reusable = true}, SHIFT(161), - [2844] = {.count = 1, .reusable = true}, SHIFT(245), - [2846] = {.count = 1, .reusable = true}, SHIFT(292), - [2848] = {.count = 1, .reusable = true}, SHIFT(167), - [2850] = {.count = 1, .reusable = true}, REDUCE(sym_pointer_type_declarator, 2, .dynamic_precedence = 1, .production_id = 25), - [2852] = {.count = 1, .reusable = true}, REDUCE(sym__field_declarator, 1, .production_id = 39), - [2854] = {.count = 1, .reusable = true}, REDUCE(sym_array_field_declarator, 4, .production_id = 58), - [2856] = {.count = 1, .reusable = true}, REDUCE(sym_array_field_declarator, 5, .production_id = 65), - [2858] = {.count = 1, .reusable = true}, SHIFT(234), - [2860] = {.count = 1, .reusable = true}, SHIFT(248), - [2862] = {.count = 1, .reusable = true}, REDUCE(sym_function_field_declarator, 2, .production_id = 28), - [2864] = {.count = 1, .reusable = true}, REDUCE(aux_sym_field_declaration_repeat1, 2, .production_id = 25), - [2866] = {.count = 1, .reusable = true}, REDUCE(aux_sym_declaration_repeat1, 2, .production_id = 25), - [2868] = {.count = 1, .reusable = true}, REDUCE(sym_pointer_type_declarator, 3, .dynamic_precedence = 1, .production_id = 42), - [2870] = {.count = 1, .reusable = true}, SHIFT(240), - [2872] = {.count = 2, .reusable = true}, REDUCE(aux_sym_initializer_pair_repeat1, 2), SHIFT_REPEAT(540), - [2875] = {.count = 1, .reusable = true}, REDUCE(aux_sym_initializer_pair_repeat1, 2), - [2877] = {.count = 2, .reusable = true}, REDUCE(aux_sym_initializer_pair_repeat1, 2), SHIFT_REPEAT(1196), - [2880] = {.count = 1, .reusable = true}, SHIFT(438), - [2882] = {.count = 1, .reusable = true}, SHIFT(1196), - [2884] = {.count = 1, .reusable = true}, REDUCE(sym_array_type_declarator, 4, .production_id = 43), + [2824] = {.count = 1, .reusable = true}, REDUCE(sym_array_declarator, 4, .production_id = 58), + [2826] = {.count = 1, .reusable = true}, REDUCE(sym_array_declarator, 3, .production_id = 43), + [2828] = {.count = 1, .reusable = true}, REDUCE(sym_array_declarator, 5, .production_id = 65), + [2830] = {.count = 1, .reusable = true}, REDUCE(sym_pointer_field_declarator, 2, .dynamic_precedence = 1, .production_id = 25), + [2832] = {.count = 1, .reusable = true}, SHIFT(885), + [2834] = {.count = 1, .reusable = true}, SHIFT(289), + [2836] = {.count = 1, .reusable = true}, SHIFT(383), + [2838] = {.count = 1, .reusable = true}, REDUCE(sym_array_field_declarator, 4, .production_id = 43), + [2840] = {.count = 1, .reusable = true}, REDUCE(sym_array_field_declarator, 4, .production_id = 58), + [2842] = {.count = 1, .reusable = true}, REDUCE(sym_function_field_declarator, 2, .production_id = 28), + [2844] = {.count = 1, .reusable = true}, REDUCE(aux_sym_field_declaration_repeat1, 2, .production_id = 25), + [2846] = {.count = 1, .reusable = true}, SHIFT(194), + [2848] = {.count = 1, .reusable = true}, REDUCE(aux_sym_declaration_repeat1, 2, .production_id = 25), + [2850] = {.count = 1, .reusable = true}, REDUCE(sym_pointer_type_declarator, 3, .dynamic_precedence = 1, .production_id = 42), + [2852] = {.count = 2, .reusable = true}, REDUCE(aux_sym_initializer_pair_repeat1, 2), SHIFT_REPEAT(483), + [2855] = {.count = 1, .reusable = true}, REDUCE(aux_sym_initializer_pair_repeat1, 2), + [2857] = {.count = 2, .reusable = true}, REDUCE(aux_sym_initializer_pair_repeat1, 2), SHIFT_REPEAT(1099), + [2860] = {.count = 1, .reusable = true}, SHIFT(422), + [2862] = {.count = 1, .reusable = true}, SHIFT(1099), + [2864] = {.count = 1, .reusable = true}, REDUCE(sym_pointer_type_declarator, 2, .dynamic_precedence = 1, .production_id = 25), + [2866] = {.count = 1, .reusable = true}, SHIFT(217), + [2868] = {.count = 1, .reusable = true}, REDUCE(sym__field_declarator, 1, .production_id = 39), + [2870] = {.count = 1, .reusable = true}, SHIFT(200), + [2872] = {.count = 1, .reusable = true}, REDUCE(sym_array_field_declarator, 5, .production_id = 65), + [2874] = {.count = 1, .reusable = true}, SHIFT(144), + [2876] = {.count = 1, .reusable = true}, SHIFT(147), + [2878] = {.count = 1, .reusable = true}, SHIFT(226), + [2880] = {.count = 1, .reusable = true}, SHIFT(233), + [2882] = {.count = 1, .reusable = true}, REDUCE(sym_array_field_declarator, 3, .production_id = 43), + [2884] = {.count = 1, .reusable = true}, REDUCE(sym_parenthesized_field_declarator, 3, .dynamic_precedence = -10), [2886] = {.count = 1, .reusable = true}, REDUCE(sym_parameter_declaration, 2, .production_id = 26), - [2888] = {.count = 1, .reusable = true}, REDUCE(sym_array_type_declarator, 3, .production_id = 43), - [2890] = {.count = 1, .reusable = true}, REDUCE(sym_array_type_declarator, 4, .production_id = 58), - [2892] = {.count = 1, .reusable = true}, REDUCE(sym__type_declarator, 1, .production_id = 1), - [2894] = {.count = 1, .reusable = true}, SHIFT(686), - [2896] = {.count = 1, .reusable = true}, SHIFT(693), - [2898] = {.count = 1, .reusable = true}, REDUCE(aux_sym_type_definition_repeat2, 2, .production_id = 25), - [2900] = {.count = 1, .reusable = true}, REDUCE(sym_parenthesized_type_declarator, 3, .dynamic_precedence = -10), - [2902] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_pointer_declarator, 3, .dynamic_precedence = 1, .production_id = 42), - [2904] = {.count = 1, .reusable = true}, SHIFT(381), - [2906] = {.count = 1, .reusable = true}, SHIFT(666), - [2908] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_pointer_declarator, 2, .dynamic_precedence = 1, .production_id = 25), - [2910] = {.count = 1, .reusable = true}, REDUCE(sym_function_type_declarator, 2, .production_id = 28), - [2912] = {.count = 1, .reusable = true}, REDUCE(sym_array_type_declarator, 5, .production_id = 65), - [2914] = {.count = 1, .reusable = false}, SHIFT(332), - [2916] = {.count = 1, .reusable = true}, SHIFT(1006), - [2918] = {.count = 1, .reusable = false}, SHIFT(1144), - [2920] = {.count = 1, .reusable = false}, SHIFT(323), - [2922] = {.count = 1, .reusable = true}, SHIFT(979), - [2924] = {.count = 1, .reusable = false}, SHIFT(979), - [2926] = {.count = 1, .reusable = false}, SHIFT(360), - [2928] = {.count = 1, .reusable = true}, SHIFT(960), - [2930] = {.count = 1, .reusable = false}, SHIFT(960), - [2932] = {.count = 1, .reusable = true}, REDUCE(sym_type_descriptor, 3, .production_id = 38), - [2934] = {.count = 1, .reusable = false}, SHIFT(176), - [2936] = {.count = 1, .reusable = true}, SHIFT(976), - [2938] = {.count = 1, .reusable = false}, SHIFT(976), - [2940] = {.count = 1, .reusable = true}, REDUCE(sym_type_descriptor, 3, .production_id = 36), - [2942] = {.count = 1, .reusable = false}, SHIFT(184), - [2944] = {.count = 1, .reusable = false}, SHIFT(1214), - [2946] = {.count = 1, .reusable = false}, SHIFT(179), - [2948] = {.count = 1, .reusable = true}, SHIFT(956), - [2950] = {.count = 1, .reusable = false}, SHIFT(956), - [2952] = {.count = 1, .reusable = false}, SHIFT(343), - [2954] = {.count = 1, .reusable = false}, SHIFT(402), - [2956] = {.count = 1, .reusable = true}, SHIFT(945), - [2958] = {.count = 1, .reusable = false}, SHIFT(353), - [2960] = {.count = 1, .reusable = false}, SHIFT(1140), - [2962] = {.count = 1, .reusable = false}, SHIFT(303), - [2964] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_parenthesized_declarator, 3), - [2966] = {.count = 1, .reusable = true}, SHIFT(965), - [2968] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_array_declarator, 3, .production_id = 51), - [2970] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_array_declarator, 3), - [2972] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_array_declarator, 3, .production_id = 43), - [2974] = {.count = 1, .reusable = true}, REDUCE(sym_type_descriptor, 4, .production_id = 52), - [2976] = {.count = 1, .reusable = false}, SHIFT(685), - [2978] = {.count = 1, .reusable = false}, SHIFT(1108), - [2980] = {.count = 1, .reusable = true}, SHIFT(907), - [2982] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_array_declarator, 2), - [2984] = {.count = 1, .reusable = false}, SHIFT(637), - [2986] = {.count = 1, .reusable = false}, SHIFT(1152), - [2988] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_function_declarator, 2, .production_id = 28), - [2990] = {.count = 1, .reusable = false}, REDUCE(aux_sym_string_literal_repeat1, 2), - [2992] = {.count = 2, .reusable = true}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(976), - [2995] = {.count = 2, .reusable = false}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(976), - [2998] = {.count = 1, .reusable = false}, SHIFT(355), - [3000] = {.count = 1, .reusable = true}, SHIFT(964), - [3002] = {.count = 1, .reusable = false}, SHIFT(964), - [3004] = {.count = 1, .reusable = true}, SHIFT(917), - [3006] = {.count = 1, .reusable = false}, SHIFT(319), - [3008] = {.count = 1, .reusable = false}, SHIFT(741), - [3010] = {.count = 1, .reusable = false}, SHIFT(330), - [3012] = {.count = 1, .reusable = false}, SHIFT(1117), - [3014] = {.count = 1, .reusable = false}, SHIFT(670), - [3016] = {.count = 1, .reusable = false}, SHIFT(1158), - [3018] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 61), - [3020] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 58), - [3022] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 43), - [3024] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_function_declarator, 1, .production_id = 16), - [3026] = {.count = 1, .reusable = true}, REDUCE(sym_type_descriptor, 2, .production_id = 15), - [3028] = {.count = 2, .reusable = true}, REDUCE(aux_sym_field_declaration_repeat1, 2, .production_id = 46), SHIFT_REPEAT(895), - [3031] = {.count = 1, .reusable = true}, REDUCE(aux_sym_field_declaration_repeat1, 2, .production_id = 46), - [3033] = {.count = 1, .reusable = false}, SHIFT(739), - [3035] = {.count = 1, .reusable = true}, SHIFT(980), - [3037] = {.count = 1, .reusable = false}, SHIFT(980), - [3039] = {.count = 1, .reusable = false}, SHIFT(403), - [3041] = {.count = 1, .reusable = true}, SHIFT(961), - [3043] = {.count = 1, .reusable = false}, SHIFT(961), - [3045] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_array_declarator, 5, .production_id = 65), - [3047] = {.count = 1, .reusable = true}, SHIFT(1027), - [3049] = {.count = 1, .reusable = true}, SHIFT(1247), - [3051] = {.count = 1, .reusable = true}, SHIFT(834), - [3053] = {.count = 1, .reusable = true}, SHIFT(1019), - [3055] = {.count = 1, .reusable = true}, SHIFT(839), - [3057] = {.count = 1, .reusable = true}, SHIFT(231), - [3059] = {.count = 1, .reusable = true}, SHIFT(252), - [3061] = {.count = 1, .reusable = true}, SHIFT(256), - [3063] = {.count = 1, .reusable = true}, SHIFT(554), - [3065] = {.count = 1, .reusable = true}, SHIFT(869), - [3067] = {.count = 1, .reusable = true}, SHIFT(227), - [3069] = {.count = 1, .reusable = true}, SHIFT(1060), - [3071] = {.count = 1, .reusable = true}, SHIFT(1056), - [3073] = {.count = 1, .reusable = true}, SHIFT(247), - [3075] = {.count = 1, .reusable = true}, SHIFT(244), - [3077] = {.count = 1, .reusable = true}, SHIFT(279), - [3079] = {.count = 1, .reusable = true}, SHIFT(1001), - [3081] = {.count = 1, .reusable = true}, SHIFT(1083), - [3083] = {.count = 1, .reusable = true}, SHIFT(738), - [3085] = {.count = 1, .reusable = true}, SHIFT(791), - [3087] = {.count = 1, .reusable = true}, SHIFT(246), - [3089] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_repeat1, 2, .production_id = 46), SHIFT_REPEAT(882), - [3092] = {.count = 1, .reusable = true}, REDUCE(aux_sym_declaration_repeat1, 2, .production_id = 46), - [3094] = {.count = 1, .reusable = true}, SHIFT(495), - [3096] = {.count = 1, .reusable = true}, SHIFT(1050), - [3098] = {.count = 1, .reusable = true}, SHIFT(815), - [3100] = {.count = 1, .reusable = true}, SHIFT(879), - [3102] = {.count = 2, .reusable = true}, REDUCE(aux_sym_type_definition_repeat2, 2, .production_id = 46), SHIFT_REPEAT(889), - [3105] = {.count = 1, .reusable = true}, REDUCE(aux_sym_type_definition_repeat2, 2, .production_id = 46), - [3107] = {.count = 1, .reusable = true}, SHIFT(216), - [3109] = {.count = 1, .reusable = true}, SHIFT(838), - [3111] = {.count = 2, .reusable = true}, REDUCE(aux_sym_enumerator_list_repeat1, 2), SHIFT_REPEAT(1047), - [3114] = {.count = 1, .reusable = true}, REDUCE(aux_sym_enumerator_list_repeat1, 2), - [3116] = {.count = 2, .reusable = true}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(525), - [3119] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_params_repeat1, 2), SHIFT_REPEAT(1060), - [3122] = {.count = 1, .reusable = true}, REDUCE(aux_sym_preproc_params_repeat1, 2), - [3124] = {.count = 1, .reusable = true}, SHIFT(151), - [3126] = {.count = 1, .reusable = true}, SHIFT(1010), - [3128] = {.count = 1, .reusable = true}, SHIFT(826), - [3130] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_argument_list_repeat1, 2), SHIFT_REPEAT(792), - [3133] = {.count = 1, .reusable = true}, REDUCE(sym_enumerator, 1, .production_id = 18), - [3135] = {.count = 1, .reusable = true}, SHIFT(526), - [3137] = {.count = 2, .reusable = true}, REDUCE(aux_sym_parameter_list_repeat1, 2), SHIFT_REPEAT(554), - [3140] = {.count = 1, .reusable = true}, REDUCE(aux_sym_parameter_list_repeat1, 2), - [3142] = {.count = 1, .reusable = true}, REDUCE(sym_field_designator, 2, .production_id = 62), - [3144] = {.count = 1, .reusable = true}, SHIFT(363), - [3146] = {.count = 1, .reusable = true}, REDUCE(sym_subscript_designator, 3), - [3148] = {.count = 1, .reusable = true}, SHIFT(166), - [3150] = {.count = 1, .reusable = true}, SHIFT(162), - [3152] = {.count = 2, .reusable = true}, REDUCE(aux_sym_initializer_list_repeat1, 2), SHIFT_REPEAT(372), - [3155] = {.count = 1, .reusable = true}, SHIFT(787), - [3157] = {.count = 1, .reusable = true}, SHIFT(790), - [3159] = {.count = 1, .reusable = false}, SHIFT(186), - [3161] = {.count = 1, .reusable = false}, SHIFT(1192), - [3163] = {.count = 1, .reusable = false}, SHIFT(337), - [3165] = {.count = 1, .reusable = false}, SHIFT(1232), - [3167] = {.count = 1, .reusable = false}, SHIFT(305), - [3169] = {.count = 1, .reusable = false}, SHIFT(1200), - [3171] = {.count = 1, .reusable = true}, SHIFT(461), - [3173] = {.count = 1, .reusable = true}, SHIFT(444), - [3175] = {.count = 1, .reusable = false}, SHIFT(1133), - [3177] = {.count = 1, .reusable = false}, SHIFT(171), - [3179] = {.count = 1, .reusable = false}, SHIFT(1236), - [3181] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_params, 4), - [3183] = {.count = 1, .reusable = true}, SHIFT(806), - [3185] = {.count = 1, .reusable = true}, SHIFT(1109), - [3187] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_params, 3), - [3189] = {.count = 1, .reusable = false}, SHIFT(1209), - [3191] = {.count = 1, .reusable = true}, SHIFT(1052), - [3193] = {.count = 1, .reusable = false}, SHIFT(358), - [3195] = {.count = 1, .reusable = false}, SHIFT(1166), - [3197] = {.count = 1, .reusable = true}, SHIFT(770), - [3199] = {.count = 1, .reusable = true}, SHIFT(1175), - [3201] = {.count = 1, .reusable = false}, SHIFT(1141), - [3203] = {.count = 1, .reusable = false}, SHIFT(672), - [3205] = {.count = 1, .reusable = false}, SHIFT(1160), - [3207] = {.count = 1, .reusable = false}, SHIFT(684), - [3209] = {.count = 1, .reusable = false}, SHIFT(1157), - [3211] = {.count = 1, .reusable = false}, SHIFT(705), - [3213] = {.count = 1, .reusable = false}, SHIFT(1099), - [3215] = {.count = 1, .reusable = false}, SHIFT(650), - [3217] = {.count = 1, .reusable = false}, SHIFT(1154), - [3219] = {.count = 1, .reusable = false}, SHIFT(636), - [3221] = {.count = 1, .reusable = false}, SHIFT(1150), - [3223] = {.count = 1, .reusable = false}, SHIFT(328), + [2888] = {.count = 1, .reusable = true}, SHIFT(662), + [2890] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_pointer_declarator, 3, .dynamic_precedence = 1, .production_id = 42), + [2892] = {.count = 1, .reusable = true}, SHIFT(392), + [2894] = {.count = 1, .reusable = true}, SHIFT(671), + [2896] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_pointer_declarator, 2, .dynamic_precedence = 1, .production_id = 25), + [2898] = {.count = 1, .reusable = true}, SHIFT(632), + [2900] = {.count = 1, .reusable = true}, REDUCE(sym_array_type_declarator, 3, .production_id = 43), + [2902] = {.count = 1, .reusable = true}, REDUCE(sym__type_declarator, 1, .production_id = 1), + [2904] = {.count = 1, .reusable = true}, REDUCE(aux_sym_type_definition_repeat2, 2, .production_id = 25), + [2906] = {.count = 1, .reusable = true}, REDUCE(sym_function_type_declarator, 2, .production_id = 28), + [2908] = {.count = 1, .reusable = true}, REDUCE(sym_array_type_declarator, 5, .production_id = 65), + [2910] = {.count = 1, .reusable = true}, REDUCE(sym_parenthesized_type_declarator, 3, .dynamic_precedence = -10), + [2912] = {.count = 1, .reusable = true}, REDUCE(sym_array_type_declarator, 4, .production_id = 43), + [2914] = {.count = 1, .reusable = true}, REDUCE(sym_array_type_declarator, 4, .production_id = 58), + [2916] = {.count = 1, .reusable = true}, SHIFT(994), + [2918] = {.count = 1, .reusable = true}, SHIFT(1095), + [2920] = {.count = 1, .reusable = true}, SHIFT(834), + [2922] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_function_declarator, 2, .production_id = 28), + [2924] = {.count = 1, .reusable = true}, REDUCE(sym_type_descriptor, 4, .production_id = 52), + [2926] = {.count = 1, .reusable = false}, SHIFT(631), + [2928] = {.count = 1, .reusable = true}, SHIFT(999), + [2930] = {.count = 1, .reusable = false}, SHIFT(1145), + [2932] = {.count = 1, .reusable = false}, SHIFT(780), + [2934] = {.count = 1, .reusable = true}, SHIFT(964), + [2936] = {.count = 1, .reusable = false}, SHIFT(964), + [2938] = {.count = 1, .reusable = false}, SHIFT(322), + [2940] = {.count = 1, .reusable = false}, SHIFT(1139), + [2942] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_parenthesized_declarator, 3), + [2944] = {.count = 1, .reusable = true}, SHIFT(897), + [2946] = {.count = 1, .reusable = true}, SHIFT(941), + [2948] = {.count = 1, .reusable = false}, SHIFT(697), + [2950] = {.count = 1, .reusable = false}, SHIFT(1105), + [2952] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_array_declarator, 5, .production_id = 65), + [2954] = {.count = 2, .reusable = true}, REDUCE(aux_sym_field_declaration_repeat1, 2, .production_id = 46), SHIFT_REPEAT(891), + [2957] = {.count = 1, .reusable = true}, REDUCE(aux_sym_field_declaration_repeat1, 2, .production_id = 46), + [2959] = {.count = 1, .reusable = true}, REDUCE(sym_type_descriptor, 3, .production_id = 38), + [2961] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_array_declarator, 3), + [2963] = {.count = 1, .reusable = false}, SHIFT(394), + [2965] = {.count = 1, .reusable = true}, SHIFT(970), + [2967] = {.count = 1, .reusable = false}, SHIFT(970), + [2969] = {.count = 1, .reusable = false}, SHIFT(330), + [2971] = {.count = 1, .reusable = false}, SHIFT(1081), + [2973] = {.count = 1, .reusable = true}, REDUCE(sym_type_descriptor, 3, .production_id = 36), + [2975] = {.count = 1, .reusable = false}, SHIFT(681), + [2977] = {.count = 1, .reusable = false}, SHIFT(1151), + [2979] = {.count = 1, .reusable = true}, SHIFT(928), + [2981] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_array_declarator, 3, .production_id = 43), + [2983] = {.count = 1, .reusable = false}, SHIFT(736), + [2985] = {.count = 1, .reusable = true}, SHIFT(974), + [2987] = {.count = 1, .reusable = false}, SHIFT(974), + [2989] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_array_declarator, 2), + [2991] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 43), + [2993] = {.count = 1, .reusable = false}, SHIFT(184), + [2995] = {.count = 1, .reusable = false}, SHIFT(1236), + [2997] = {.count = 1, .reusable = true}, REDUCE(sym_type_descriptor, 2, .production_id = 15), + [2999] = {.count = 1, .reusable = false}, SHIFT(1222), + [3001] = {.count = 1, .reusable = false}, SHIFT(396), + [3003] = {.count = 1, .reusable = false}, SHIFT(1213), + [3005] = {.count = 1, .reusable = true}, SHIFT(969), + [3007] = {.count = 1, .reusable = false}, SHIFT(969), + [3009] = {.count = 1, .reusable = true}, SHIFT(950), + [3011] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_function_declarator, 1, .production_id = 16), + [3013] = {.count = 1, .reusable = false}, REDUCE(aux_sym_string_literal_repeat1, 2), + [3015] = {.count = 2, .reusable = true}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(974), + [3018] = {.count = 2, .reusable = false}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(974), + [3021] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 58), + [3023] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 61), + [3025] = {.count = 1, .reusable = false}, SHIFT(305), + [3027] = {.count = 1, .reusable = false}, SHIFT(1129), + [3029] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_array_declarator, 3, .production_id = 51), + [3031] = {.count = 1, .reusable = true}, SHIFT(776), + [3033] = {.count = 1, .reusable = true}, SHIFT(231), + [3035] = {.count = 1, .reusable = true}, SHIFT(229), + [3037] = {.count = 2, .reusable = true}, REDUCE(aux_sym_parameter_list_repeat1, 2), SHIFT_REPEAT(546), + [3040] = {.count = 1, .reusable = true}, REDUCE(aux_sym_parameter_list_repeat1, 2), + [3042] = {.count = 1, .reusable = true}, SHIFT(546), + [3044] = {.count = 1, .reusable = true}, SHIFT(878), + [3046] = {.count = 1, .reusable = true}, SHIFT(827), + [3048] = {.count = 1, .reusable = true}, SHIFT(225), + [3050] = {.count = 1, .reusable = true}, SHIFT(202), + [3052] = {.count = 1, .reusable = true}, REDUCE(sym_field_designator, 2, .production_id = 62), + [3054] = {.count = 1, .reusable = true}, SHIFT(355), + [3056] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_params_repeat1, 2), SHIFT_REPEAT(1058), + [3059] = {.count = 1, .reusable = true}, REDUCE(aux_sym_preproc_params_repeat1, 2), + [3061] = {.count = 1, .reusable = true}, SHIFT(876), + [3063] = {.count = 1, .reusable = true}, SHIFT(319), + [3065] = {.count = 1, .reusable = true}, REDUCE(sym_enumerator, 1, .production_id = 18), + [3067] = {.count = 1, .reusable = true}, SHIFT(529), + [3069] = {.count = 1, .reusable = true}, SHIFT(1008), + [3071] = {.count = 1, .reusable = true}, SHIFT(823), + [3073] = {.count = 1, .reusable = true}, SHIFT(196), + [3075] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_argument_list_repeat1, 2), SHIFT_REPEAT(747), + [3078] = {.count = 2, .reusable = true}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(485), + [3081] = {.count = 1, .reusable = true}, SHIFT(1025), + [3083] = {.count = 1, .reusable = true}, SHIFT(1035), + [3085] = {.count = 1, .reusable = true}, SHIFT(207), + [3087] = {.count = 1, .reusable = true}, SHIFT(1058), + [3089] = {.count = 1, .reusable = true}, SHIFT(1067), + [3091] = {.count = 1, .reusable = true}, SHIFT(201), + [3093] = {.count = 1, .reusable = true}, SHIFT(813), + [3095] = {.count = 1, .reusable = true}, SHIFT(189), + [3097] = {.count = 1, .reusable = true}, SHIFT(488), + [3099] = {.count = 1, .reusable = true}, SHIFT(829), + [3101] = {.count = 2, .reusable = true}, REDUCE(aux_sym_type_definition_repeat2, 2, .production_id = 46), SHIFT_REPEAT(885), + [3104] = {.count = 1, .reusable = true}, REDUCE(aux_sym_type_definition_repeat2, 2, .production_id = 46), + [3106] = {.count = 1, .reusable = true}, SHIFT(984), + [3108] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_repeat1, 2, .production_id = 46), SHIFT_REPEAT(862), + [3111] = {.count = 1, .reusable = true}, REDUCE(aux_sym_declaration_repeat1, 2, .production_id = 46), + [3113] = {.count = 1, .reusable = true}, REDUCE(sym_subscript_designator, 3), + [3115] = {.count = 1, .reusable = true}, SHIFT(247), + [3117] = {.count = 1, .reusable = true}, SHIFT(159), + [3119] = {.count = 2, .reusable = true}, REDUCE(aux_sym_initializer_list_repeat1, 2), SHIFT_REPEAT(357), + [3122] = {.count = 1, .reusable = true}, SHIFT(348), + [3124] = {.count = 1, .reusable = true}, SHIFT(338), + [3126] = {.count = 1, .reusable = true}, SHIFT(751), + [3128] = {.count = 1, .reusable = true}, SHIFT(249), + [3130] = {.count = 1, .reusable = true}, SHIFT(786), + [3132] = {.count = 1, .reusable = true}, SHIFT(137), + [3134] = {.count = 1, .reusable = true}, SHIFT(150), + [3136] = {.count = 2, .reusable = true}, REDUCE(aux_sym_enumerator_list_repeat1, 2), SHIFT_REPEAT(1069), + [3139] = {.count = 1, .reusable = true}, REDUCE(aux_sym_enumerator_list_repeat1, 2), + [3141] = {.count = 1, .reusable = true}, SHIFT(1060), + [3143] = {.count = 1, .reusable = true}, SHIFT(782), + [3145] = {.count = 1, .reusable = false}, SHIFT(1166), + [3147] = {.count = 1, .reusable = true}, SHIFT(479), + [3149] = {.count = 1, .reusable = false}, SHIFT(300), + [3151] = {.count = 1, .reusable = false}, SHIFT(1206), + [3153] = {.count = 1, .reusable = true}, SHIFT(466), + [3155] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_params, 2), + [3157] = {.count = 1, .reusable = false}, SHIFT(182), + [3159] = {.count = 1, .reusable = false}, SHIFT(1242), + [3161] = {.count = 1, .reusable = false}, SHIFT(1173), + [3163] = {.count = 1, .reusable = true}, SHIFT(808), + [3165] = {.count = 1, .reusable = true}, SHIFT(1126), + [3167] = {.count = 1, .reusable = true}, SHIFT(785), + [3169] = {.count = 1, .reusable = true}, SHIFT(1169), + [3171] = {.count = 1, .reusable = false}, SHIFT(324), + [3173] = {.count = 1, .reusable = false}, SHIFT(1197), + [3175] = {.count = 1, .reusable = false}, SHIFT(1234), + [3177] = {.count = 1, .reusable = false}, SHIFT(323), + [3179] = {.count = 1, .reusable = false}, SHIFT(1137), + [3181] = {.count = 1, .reusable = true}, SHIFT(1066), + [3183] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_params, 3), + [3185] = {.count = 1, .reusable = false}, SHIFT(678), + [3187] = {.count = 1, .reusable = false}, SHIFT(1153), + [3189] = {.count = 1, .reusable = false}, SHIFT(682), + [3191] = {.count = 1, .reusable = false}, SHIFT(1150), + [3193] = {.count = 1, .reusable = false}, SHIFT(639), + [3195] = {.count = 1, .reusable = false}, SHIFT(1147), + [3197] = {.count = 1, .reusable = false}, SHIFT(625), + [3199] = {.count = 1, .reusable = false}, SHIFT(1144), + [3201] = {.count = 1, .reusable = false}, SHIFT(333), + [3203] = {.count = 1, .reusable = false}, SHIFT(1141), + [3205] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_params, 4), + [3207] = {.count = 1, .reusable = false}, SHIFT(321), + [3209] = {.count = 1, .reusable = false}, SHIFT(1080), + [3211] = {.count = 1, .reusable = false}, SHIFT(690), + [3213] = {.count = 1, .reusable = false}, SHIFT(1113), + [3215] = {.count = 1, .reusable = false}, SHIFT(701), + [3217] = {.count = 1, .reusable = false}, SHIFT(1096), + [3219] = {.count = 1, .reusable = false}, SHIFT(337), + [3221] = {.count = 1, .reusable = false}, SHIFT(1195), + [3223] = {.count = 1, .reusable = false}, SHIFT(187), [3225] = {.count = 1, .reusable = false}, SHIFT(1146), - [3227] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_params, 2), - [3229] = {.count = 1, .reusable = false}, SHIFT(326), - [3231] = {.count = 1, .reusable = false}, SHIFT(1112), - [3233] = {.count = 1, .reusable = false}, SHIFT(676), - [3235] = {.count = 1, .reusable = false}, SHIFT(1115), - [3237] = {.count = 1, .reusable = false}, SHIFT(338), - [3239] = {.count = 1, .reusable = false}, SHIFT(1142), - [3241] = {.count = 1, .reusable = true}, SHIFT(652), - [3243] = {.count = 1, .reusable = true}, SHIFT(136), - [3245] = {.count = 1, .reusable = true}, SHIFT(634), - [3247] = {.count = 1, .reusable = true}, SHIFT(844), - [3249] = {.count = 1, .reusable = true}, SHIFT(695), - [3251] = {.count = 1, .reusable = true}, SHIFT(190), - [3253] = {.count = 1, .reusable = true}, SHIFT(653), - [3255] = {.count = 1, .reusable = true}, SHIFT(655), - [3257] = {.count = 1, .reusable = true}, SHIFT(192), + [3227] = {.count = 1, .reusable = true}, SHIFT(310), + [3229] = {.count = 1, .reusable = true}, SHIFT(346), + [3231] = {.count = 1, .reusable = true}, SHIFT(667), + [3233] = {.count = 1, .reusable = true}, SHIFT(382), + [3235] = {.count = 1, .reusable = true}, SHIFT(138), + [3237] = {.count = 1, .reusable = true}, SHIFT(53), + [3239] = {.count = 1, .reusable = true}, SHIFT(165), + [3241] = {.count = 1, .reusable = true}, SHIFT(269), + [3243] = {.count = 1, .reusable = true}, SHIFT(268), + [3245] = {.count = 1, .reusable = true}, SHIFT(46), + [3247] = {.count = 1, .reusable = true}, SHIFT(696), + [3249] = {.count = 1, .reusable = true}, SHIFT(601), + [3251] = {.count = 1, .reusable = true}, SHIFT(988), + [3253] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_elif, 4, .production_id = 49), + [3255] = {.count = 1, .reusable = true}, SHIFT(248), + [3257] = {.count = 1, .reusable = true}, SHIFT(628), [3259] = {.count = 1, .reusable = true}, SHIFT(691), - [3261] = {.count = 1, .reusable = true}, SHIFT(1114), - [3263] = {.count = 1, .reusable = true}, SHIFT(316), - [3265] = {.count = 1, .reusable = true}, SHIFT(664), - [3267] = {.count = 1, .reusable = true}, SHIFT(348), - [3269] = {.count = 1, .reusable = true}, SHIFT(306), - [3271] = {.count = 1, .reusable = true}, SHIFT(800), - [3273] = {.count = 1, .reusable = true}, SHIFT(681), - [3275] = {.count = 1, .reusable = true}, SHIFT(296), - [3277] = {.count = 1, .reusable = true}, SHIFT(324), - [3279] = {.count = 1, .reusable = true}, SHIFT(335), - [3281] = {.count = 1, .reusable = true}, SHIFT(242), - [3283] = {.count = 1, .reusable = true}, SHIFT(660), - [3285] = {.count = 1, .reusable = true}, SHIFT(350), - [3287] = {.count = 1, .reusable = true}, SHIFT(251), - [3289] = {.count = 1, .reusable = true}, SHIFT(309), - [3291] = {.count = 1, .reusable = true}, SHIFT(311), - [3293] = {.count = 1, .reusable = true}, SHIFT(349), - [3295] = {.count = 1, .reusable = true}, SHIFT(743), - [3297] = {.count = 1, .reusable = true}, SHIFT(516), - [3299] = {.count = 1, .reusable = true}, SHIFT(63), - [3301] = {.count = 1, .reusable = true}, SHIFT(320), - [3303] = {.count = 1, .reusable = true}, SHIFT(496), - [3305] = {.count = 1, .reusable = true}, SHIFT(212), - [3307] = {.count = 1, .reusable = true}, SHIFT(1082), - [3309] = {.count = 1, .reusable = true}, SHIFT(340), - [3311] = {.count = 1, .reusable = true}, SHIFT(821), - [3313] = {.count = 1, .reusable = true}, SHIFT(331), - [3315] = {.count = 1, .reusable = true}, SHIFT(207), - [3317] = {.count = 1, .reusable = true}, SHIFT(329), - [3319] = {.count = 1, .reusable = true}, SHIFT(584), - [3321] = {.count = 1, .reusable = true}, SHIFT(327), - [3323] = {.count = 1, .reusable = true}, SHIFT(222), - [3325] = {.count = 1, .reusable = true}, SHIFT(638), - [3327] = {.count = 1, .reusable = true}, SHIFT(354), - [3329] = {.count = 1, .reusable = true}, SHIFT(642), - [3331] = {.count = 1, .reusable = true}, SHIFT(57), - [3333] = {.count = 1, .reusable = true}, SHIFT(651), - [3335] = {.count = 1, .reusable = true}, SHIFT(435), - [3337] = {.count = 1, .reusable = true}, SHIFT(682), - [3339] = {.count = 1, .reusable = true}, SHIFT(673), - [3341] = {.count = 1, .reusable = true}, SHIFT(678), - [3343] = {.count = 1, .reusable = true}, SHIFT(963), - [3345] = {.count = 1, .reusable = true}, SHIFT(18), - [3347] = {.count = 1, .reusable = true}, SHIFT(43), - [3349] = {.count = 1, .reusable = true}, SHIFT(708), - [3351] = {.count = 1, .reusable = true}, SHIFT(346), - [3353] = {.count = 1, .reusable = true}, SHIFT(1143), - [3355] = {.count = 1, .reusable = true}, SHIFT(154), - [3357] = {.count = 1, .reusable = true}, SHIFT(284), - [3359] = {.count = 1, .reusable = true}, SHIFT(195), - [3361] = {.count = 1, .reusable = true}, SHIFT(223), - [3363] = {.count = 1, .reusable = true}, SHIFT(51), - [3365] = {.count = 1, .reusable = true}, SHIFT(1126), - [3367] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_elif_in_field_declaration_list, 5, .production_id = 60), - [3369] = {.count = 1, .reusable = true}, SHIFT(373), - [3371] = {.count = 1, .reusable = true}, SHIFT(158), - [3373] = {.count = 1, .reusable = true}, SHIFT(702), - [3375] = {.count = 1, .reusable = true}, SHIFT(237), - [3377] = {.count = 1, .reusable = true}, SHIFT(357), - [3379] = {.count = 1, .reusable = true}, SHIFT(675), - [3381] = {.count = 1, .reusable = true}, SHIFT(687), - [3383] = {.count = 1, .reusable = true}, SHIFT(958), - [3385] = {.count = 1, .reusable = true}, SHIFT(13), - [3387] = {.count = 1, .reusable = true}, SHIFT(411), - [3389] = {.count = 1, .reusable = true}, SHIFT(698), - [3391] = {.count = 1, .reusable = true}, SHIFT(1208), - [3393] = {.count = 1, .reusable = true}, SHIFT(182), - [3395] = {.count = 1, .reusable = true}, SHIFT(301), - [3397] = {.count = 1, .reusable = true}, SHIFT(1029), - [3399] = {.count = 1, .reusable = true}, SHIFT(394), - [3401] = {.count = 1, .reusable = true}, SHIFT(396), - [3403] = {.count = 1, .reusable = true}, SHIFT(345), - [3405] = {.count = 1, .reusable = true}, SHIFT(709), - [3407] = {.count = 1, .reusable = true}, SHIFT(971), - [3409] = {.count = 1, .reusable = true}, SHIFT(10), - [3411] = {.count = 1, .reusable = true}, SHIFT(144), - [3413] = {.count = 1, .reusable = true}, SHIFT(740), - [3415] = {.count = 1, .reusable = true}, SHIFT(1105), - [3417] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_elif, 4, .production_id = 49), - [3419] = {.count = 1, .reusable = true}, SHIFT(177), - [3421] = {.count = 1, .reusable = true}, SHIFT(697), - [3423] = {.count = 1, .reusable = true}, SHIFT(189), - [3425] = {.count = 1, .reusable = true}, SHIFT(704), - [3427] = {.count = 1, .reusable = true}, SHIFT(689), - [3429] = {.count = 1, .reusable = true}, ACCEPT_INPUT(), - [3431] = {.count = 1, .reusable = true}, SHIFT(700), - [3433] = {.count = 1, .reusable = true}, SHIFT(172), - [3435] = {.count = 1, .reusable = true}, SHIFT(1135), - [3437] = {.count = 1, .reusable = true}, SHIFT(952), - [3439] = {.count = 1, .reusable = true}, SHIFT(974), - [3441] = {.count = 1, .reusable = true}, SHIFT(982), - [3443] = {.count = 1, .reusable = true}, SHIFT(219), - [3445] = {.count = 1, .reusable = true}, SHIFT(224), - [3447] = {.count = 1, .reusable = true}, SHIFT(1065), - [3449] = {.count = 1, .reusable = true}, SHIFT(67), - [3451] = {.count = 1, .reusable = true}, SHIFT(313), - [3453] = {.count = 1, .reusable = true}, SHIFT(48), - [3455] = {.count = 1, .reusable = true}, SHIFT(191), - [3457] = {.count = 1, .reusable = true}, SHIFT(1055), - [3459] = {.count = 1, .reusable = true}, SHIFT(153), - [3461] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_elif, 5, .production_id = 60), - [3463] = {.count = 1, .reusable = true}, SHIFT(703), - [3465] = {.count = 1, .reusable = true}, SHIFT(174), - [3467] = {.count = 1, .reusable = true}, SHIFT(674), - [3469] = {.count = 1, .reusable = true}, SHIFT(1046), - [3471] = {.count = 1, .reusable = true}, SHIFT(1062), - [3473] = {.count = 1, .reusable = true}, SHIFT(8), - [3475] = {.count = 1, .reusable = true}, SHIFT(66), - [3477] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_elif_in_field_declaration_list, 4, .production_id = 49), - [3479] = {.count = 1, .reusable = true}, SHIFT(65), - [3481] = {.count = 1, .reusable = true}, SHIFT(981), - [3483] = {.count = 1, .reusable = true}, SHIFT(64), + [3261] = {.count = 1, .reusable = true}, SHIFT(349), + [3263] = {.count = 1, .reusable = true}, SHIFT(617), + [3265] = {.count = 1, .reusable = true}, SHIFT(619), + [3267] = {.count = 1, .reusable = true}, SHIFT(336), + [3269] = {.count = 1, .reusable = true}, SHIFT(689), + [3271] = {.count = 1, .reusable = true}, SHIFT(316), + [3273] = {.count = 1, .reusable = true}, SHIFT(621), + [3275] = {.count = 1, .reusable = true}, SHIFT(311), + [3277] = {.count = 1, .reusable = true}, SHIFT(220), + [3279] = {.count = 1, .reusable = true}, SHIFT(312), + [3281] = {.count = 1, .reusable = true}, SHIFT(303), + [3283] = {.count = 1, .reusable = true}, SHIFT(634), + [3285] = {.count = 1, .reusable = true}, SHIFT(309), + [3287] = {.count = 1, .reusable = true}, SHIFT(210), + [3289] = {.count = 1, .reusable = true}, SHIFT(1190), + [3291] = {.count = 1, .reusable = true}, SHIFT(652), + [3293] = {.count = 1, .reusable = true}, SHIFT(339), + [3295] = {.count = 1, .reusable = true}, SHIFT(297), + [3297] = {.count = 1, .reusable = true}, SHIFT(301), + [3299] = {.count = 1, .reusable = true}, SHIFT(781), + [3301] = {.count = 1, .reusable = true}, SHIFT(302), + [3303] = {.count = 1, .reusable = true}, SHIFT(328), + [3305] = {.count = 1, .reusable = true}, SHIFT(693), + [3307] = {.count = 1, .reusable = true}, SHIFT(334), + [3309] = {.count = 1, .reusable = true}, SHIFT(335), + [3311] = {.count = 1, .reusable = true}, SHIFT(636), + [3313] = {.count = 1, .reusable = true}, SHIFT(638), + [3315] = {.count = 1, .reusable = true}, SHIFT(170), + [3317] = {.count = 1, .reusable = true}, SHIFT(645), + [3319] = {.count = 1, .reusable = true}, SHIFT(63), + [3321] = {.count = 1, .reusable = true}, SHIFT(680), + [3323] = {.count = 1, .reusable = true}, SHIFT(679), + [3325] = {.count = 1, .reusable = true}, SHIFT(677), + [3327] = {.count = 1, .reusable = true}, SHIFT(698), + [3329] = {.count = 1, .reusable = true}, SHIFT(959), + [3331] = {.count = 1, .reusable = true}, SHIFT(13), + [3333] = {.count = 1, .reusable = true}, SHIFT(491), + [3335] = {.count = 1, .reusable = true}, SHIFT(665), + [3337] = {.count = 1, .reusable = true}, SHIFT(666), + [3339] = {.count = 1, .reusable = true}, SHIFT(702), + [3341] = {.count = 1, .reusable = true}, SHIFT(1168), + [3343] = {.count = 1, .reusable = true}, SHIFT(307), + [3345] = {.count = 1, .reusable = true}, SHIFT(669), + [3347] = {.count = 1, .reusable = true}, SHIFT(793), + [3349] = {.count = 1, .reusable = true}, SHIFT(700), + [3351] = {.count = 1, .reusable = true}, SHIFT(240), + [3353] = {.count = 1, .reusable = true}, SHIFT(1135), + [3355] = {.count = 1, .reusable = true}, SHIFT(387), + [3357] = {.count = 1, .reusable = true}, SHIFT(527), + [3359] = {.count = 1, .reusable = true}, SHIFT(215), + [3361] = {.count = 1, .reusable = true}, SHIFT(1057), + [3363] = {.count = 1, .reusable = true}, SHIFT(967), + [3365] = {.count = 1, .reusable = true}, SHIFT(7), + [3367] = {.count = 1, .reusable = true}, SHIFT(136), + [3369] = {.count = 1, .reusable = true}, SHIFT(351), + [3371] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_elif, 5, .production_id = 60), + [3373] = {.count = 1, .reusable = true}, SHIFT(1212), + [3375] = {.count = 1, .reusable = true}, SHIFT(831), + [3377] = {.count = 1, .reusable = true}, SHIFT(794), + [3379] = {.count = 1, .reusable = true}, SHIFT(404), + [3381] = {.count = 1, .reusable = true}, SHIFT(376), + [3383] = {.count = 1, .reusable = true}, SHIFT(673), + [3385] = {.count = 1, .reusable = true}, SHIFT(352), + [3387] = {.count = 1, .reusable = true}, SHIFT(688), + [3389] = {.count = 1, .reusable = true}, SHIFT(342), + [3391] = {.count = 1, .reusable = true}, SHIFT(699), + [3393] = {.count = 1, .reusable = true}, SHIFT(425), + [3395] = {.count = 1, .reusable = true}, SHIFT(953), + [3397] = {.count = 1, .reusable = true}, SHIFT(10), + [3399] = {.count = 1, .reusable = true}, SHIFT(171), + [3401] = {.count = 1, .reusable = true}, SHIFT(313), + [3403] = {.count = 1, .reusable = true}, SHIFT(1102), + [3405] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_elif_in_field_declaration_list, 4, .production_id = 49), + [3407] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_elif_in_field_declaration_list, 5, .production_id = 60), + [3409] = {.count = 1, .reusable = true}, SHIFT(154), + [3411] = {.count = 1, .reusable = true}, SHIFT(216), + [3413] = {.count = 1, .reusable = true}, SHIFT(266), + [3415] = {.count = 1, .reusable = true}, SHIFT(949), + [3417] = {.count = 1, .reusable = true}, SHIFT(947), + [3419] = {.count = 1, .reusable = true}, SHIFT(961), + [3421] = {.count = 1, .reusable = true}, SHIFT(163), + [3423] = {.count = 1, .reusable = true}, ACCEPT_INPUT(), + [3425] = {.count = 1, .reusable = true}, SHIFT(1055), + [3427] = {.count = 1, .reusable = true}, SHIFT(267), + [3429] = {.count = 1, .reusable = true}, SHIFT(675), + [3431] = {.count = 1, .reusable = true}, SHIFT(1174), + [3433] = {.count = 1, .reusable = true}, SHIFT(235), + [3435] = {.count = 1, .reusable = true}, SHIFT(239), + [3437] = {.count = 1, .reusable = true}, SHIFT(66), + [3439] = {.count = 1, .reusable = true}, SHIFT(1046), + [3441] = {.count = 1, .reusable = true}, SHIFT(735), + [3443] = {.count = 1, .reusable = true}, SHIFT(62), + [3445] = {.count = 1, .reusable = true}, SHIFT(181), + [3447] = {.count = 1, .reusable = true}, SHIFT(175), + [3449] = {.count = 1, .reusable = true}, SHIFT(173), + [3451] = {.count = 1, .reusable = true}, SHIFT(48), + [3453] = {.count = 1, .reusable = true}, SHIFT(1042), + [3455] = {.count = 1, .reusable = true}, SHIFT(183), + [3457] = {.count = 1, .reusable = true}, SHIFT(1045), + [3459] = {.count = 1, .reusable = true}, SHIFT(177), + [3461] = {.count = 1, .reusable = true}, SHIFT(65), + [3463] = {.count = 1, .reusable = true}, SHIFT(3), + [3465] = {.count = 1, .reusable = true}, SHIFT(67), + [3467] = {.count = 1, .reusable = true}, SHIFT(977), + [3469] = {.count = 1, .reusable = true}, SHIFT(64), }; #ifdef _WIN32 diff --git a/test/corpus/preprocessor.txt b/test/corpus/preprocessor.txt index 1f43a4a..3c52d1d 100644 --- a/test/corpus/preprocessor.txt +++ b/test/corpus/preprocessor.txt @@ -4,12 +4,19 @@ Include directives #include "some/path.h" #include +#include MACRO +#include MACRO(arg1, arg2) --- (translation_unit (preproc_include path: (string_literal)) - (preproc_include path: (system_lib_string))) + (preproc_include path: (system_lib_string)) + (preproc_include path: (identifier)) + (preproc_include path: + (call_expression + function: (identifier) + arguments: (argument_list (identifier) (identifier))))) ============================================ Object-like macro definitions