diff --git a/corpus/ambiguities.txt b/corpus/ambiguities.txt index a62f427..1547c64 100644 --- a/corpus/ambiguities.txt +++ b/corpus/ambiguities.txt @@ -163,3 +163,16 @@ int main() { (expression_statement (identifier)))) (comment) (expression_statement (identifier))))) + +=============================================== +Top-level macro invocations +=============================================== + +DEFINE_SOMETHING(THING_A, "this is a thing a"); +DEFINE_SOMETHING(THING_B, "this is a thing b", "thanks"); + +--- + +(translation_unit + (call_expression (identifier) (argument_list (identifier) (string_literal))) + (call_expression (identifier) (argument_list (identifier) (string_literal) (string_literal)))) diff --git a/grammar.js b/grammar.js index b048501..6696134 100644 --- a/grammar.js +++ b/grammar.js @@ -56,6 +56,7 @@ module.exports = grammar({ $.function_definition, $.linkage_specification, $.declaration, + seq($.call_expression, ';'), $.type_definition, $._empty_declaration, $.preproc_if, diff --git a/src/grammar.json b/src/grammar.json index 7196960..8d75ef4 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -24,6 +24,19 @@ "type": "SYMBOL", "name": "declaration" }, + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "call_expression" + }, + { + "type": "STRING", + "value": ";" + } + ] + }, { "type": "SYMBOL", "name": "type_definition" diff --git a/src/parser.c b/src/parser.c index bfd01de..ffc97e5 100644 --- a/src/parser.c +++ b/src/parser.c @@ -6,7 +6,7 @@ #endif #define LANGUAGE_VERSION 9 -#define STATE_COUNT 1231 +#define STATE_COUNT 1277 #define SYMBOL_COUNT 214 #define ALIAS_COUNT 3 #define TOKEN_COUNT 101 @@ -14,22 +14,22 @@ #define MAX_ALIAS_SEQUENCE_LENGTH 3 enum { - aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH = 1, - aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH = 2, - anon_sym_LF = 3, - anon_sym_LPAREN = 4, - anon_sym_DOT_DOT_DOT = 5, - anon_sym_COMMA = 6, - anon_sym_RPAREN = 7, - aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH = 8, - aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH = 9, - aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH = 10, - aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH = 11, - aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH = 12, - aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH = 13, - sym_preproc_directive = 14, - sym_preproc_arg = 15, - anon_sym_SEMI = 16, + anon_sym_SEMI = 1, + aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH = 2, + aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH = 3, + anon_sym_LF = 4, + anon_sym_LPAREN = 5, + anon_sym_DOT_DOT_DOT = 6, + anon_sym_COMMA = 7, + anon_sym_RPAREN = 8, + aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH = 9, + aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH = 10, + aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH = 11, + aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH = 12, + aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH = 13, + aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH = 14, + sym_preproc_directive = 15, + sym_preproc_arg = 16, anon_sym_typedef = 17, anon_sym_extern = 18, anon_sym_LBRACE = 19, @@ -234,6 +234,7 @@ enum { static const char *ts_symbol_names[] = { [ts_builtin_sym_end] = "END", + [anon_sym_SEMI] = ";", [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = "#include", [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = "#define", [anon_sym_LF] = "\n", @@ -249,7 +250,6 @@ static const char *ts_symbol_names[] = { [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = "#elif", [sym_preproc_directive] = "preproc_directive", [sym_preproc_arg] = "preproc_arg", - [anon_sym_SEMI] = ";", [anon_sym_typedef] = "typedef", [anon_sym_extern] = "extern", [anon_sym_LBRACE] = "{", @@ -457,6 +457,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = true, }, + [anon_sym_SEMI] = { + .visible = true, + .named = false, + }, [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = { .visible = true, .named = false, @@ -517,10 +521,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, - [anon_sym_SEMI] = { - .visible = true, - .named = false, - }, [anon_sym_typedef] = { .visible = true, .named = false, @@ -1331,19 +1331,19 @@ static TSSymbol ts_alias_sequences[8][MAX_ALIAS_SEQUENCE_LENGTH] = { [1] = alias_sym_type_identifier, }, [3] = { - [0] = alias_sym_field_identifier, + [2] = alias_sym_field_identifier, }, [4] = { - [1] = alias_sym_statement_identifier, + [0] = alias_sym_field_identifier, }, [5] = { - [0] = alias_sym_statement_identifier, + [1] = alias_sym_field_identifier, }, [6] = { - [2] = alias_sym_field_identifier, + [1] = alias_sym_statement_identifier, }, [7] = { - [1] = alias_sym_field_identifier, + [0] = alias_sym_statement_identifier, }, }; @@ -2247,222 +2247,263 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 115: if (lookahead == 0) ADVANCE(1); - if (lookahead == '#') + if (lookahead == '!') ADVANCE(116); - if (lookahead == '/') + if (lookahead == '\"') + ADVANCE(4); + if (lookahead == '#') ADVANCE(117); + if (lookahead == '&') + ADVANCE(118); + if (lookahead == '\'') + ADVANCE(43); + if (lookahead == '(') + ADVANCE(113); + if (lookahead == '*') + ADVANCE(119); + if (lookahead == '+') + ADVANCE(120); + if (lookahead == '-') + ADVANCE(121); + if (lookahead == '/') + ADVANCE(122); + if (lookahead == '0') + ADVANCE(65); + if (lookahead == '~') + ADVANCE(111); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(115); + if (('1' <= lookahead && lookahead <= '9')) + ADVANCE(73); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(114); END_STATE(); case 116: + ACCEPT_TOKEN(anon_sym_BANG); + END_STATE(); + case 117: if (lookahead == 'd') ADVANCE(6); if (lookahead == 'i') ADVANCE(23); if (lookahead == '\t' || lookahead == ' ') - ADVANCE(116); + ADVANCE(117); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(12); END_STATE(); - case 117: + case 118: + ACCEPT_TOKEN(anon_sym_AMP); + END_STATE(); + case 119: + ACCEPT_TOKEN(anon_sym_STAR); + END_STATE(); + case 120: + ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == '+') + ADVANCE(49); + END_STATE(); + case 121: + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '-') + ADVANCE(53); + END_STATE(); + case 122: if (lookahead == '*') ADVANCE(60); if (lookahead == '/') ADVANCE(63); END_STATE(); - case 118: + case 123: if (lookahead == '\"') ADVANCE(4); if (lookahead == '/') - ADVANCE(117); + ADVANCE(122); if (lookahead == '<') - ADVANCE(119); + ADVANCE(124); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(118); + SKIP(123); END_STATE(); - case 119: + case 124: if (lookahead == '>') - ADVANCE(120); + ADVANCE(125); if (lookahead == '\\') - ADVANCE(121); + ADVANCE(126); if (lookahead != 0 && lookahead != '\n') - ADVANCE(119); + ADVANCE(124); END_STATE(); - case 120: + case 125: ACCEPT_TOKEN(sym_system_lib_string); END_STATE(); - case 121: + case 126: if (lookahead == '>') - ADVANCE(122); + ADVANCE(127); if (lookahead == '\\') - ADVANCE(121); + ADVANCE(126); if (lookahead != 0 && lookahead != '\n') - ADVANCE(119); + ADVANCE(124); END_STATE(); - case 122: + case 127: ACCEPT_TOKEN(sym_system_lib_string); if (lookahead == '>') - ADVANCE(120); + ADVANCE(125); if (lookahead == '\\') - ADVANCE(121); + ADVANCE(126); if (lookahead != 0 && lookahead != '\n') - ADVANCE(119); + ADVANCE(124); END_STATE(); - case 123: + case 128: if (lookahead == '\n') - SKIP(123); + SKIP(128); if (lookahead == '/') - ADVANCE(124); - if (lookahead == '\\') ADVANCE(129); + if (lookahead == '\\') + ADVANCE(134); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') - ADVANCE(131); + ADVANCE(136); if (lookahead != 0) - ADVANCE(130); + ADVANCE(135); END_STATE(); - case 124: + case 129: ACCEPT_TOKEN(sym_preproc_arg); if (lookahead == '*') - ADVANCE(125); + ADVANCE(130); if (lookahead == '/') - ADVANCE(128); + ADVANCE(133); if (lookahead == '\\') - ADVANCE(129); + ADVANCE(134); if (lookahead != 0 && lookahead != '\n') - ADVANCE(130); + ADVANCE(135); END_STATE(); - case 125: + case 130: ACCEPT_TOKEN(sym_preproc_arg); if (lookahead == '\n') ADVANCE(60); if (lookahead == '*') - ADVANCE(126); + ADVANCE(131); if (lookahead == '\\') - ADVANCE(127); + ADVANCE(132); if (lookahead != 0) - ADVANCE(125); + ADVANCE(130); END_STATE(); - case 126: + case 131: ACCEPT_TOKEN(sym_preproc_arg); if (lookahead == '\n') ADVANCE(60); if (lookahead == '*') - ADVANCE(126); + ADVANCE(131); if (lookahead == '/') ADVANCE(62); if (lookahead == '\\') - ADVANCE(127); + ADVANCE(132); if (lookahead != 0) - ADVANCE(125); + ADVANCE(130); END_STATE(); - case 127: + case 132: ACCEPT_TOKEN(sym_preproc_arg); if (lookahead == '\n') - ADVANCE(125); + ADVANCE(130); if (lookahead == '*') - ADVANCE(126); + ADVANCE(131); if (lookahead == '\\') - ADVANCE(127); + ADVANCE(132); if (lookahead != 0) - ADVANCE(125); + ADVANCE(130); END_STATE(); - case 128: + case 133: ACCEPT_TOKEN(sym_comment); if (lookahead == '\\') - ADVANCE(128); + ADVANCE(133); if (lookahead != 0 && lookahead != '\n') - ADVANCE(128); + ADVANCE(133); END_STATE(); - case 129: + case 134: ACCEPT_TOKEN(sym_preproc_arg); if (lookahead == '\n') - ADVANCE(130); + ADVANCE(135); if (lookahead == '\\') - ADVANCE(129); + ADVANCE(134); if (lookahead != 0) - ADVANCE(130); + ADVANCE(135); END_STATE(); - case 130: + case 135: ACCEPT_TOKEN(sym_preproc_arg); if (lookahead == '\\') - ADVANCE(129); + ADVANCE(134); if (lookahead != 0 && lookahead != '\n') - ADVANCE(130); + ADVANCE(135); END_STATE(); - case 131: + case 136: ACCEPT_TOKEN(sym_preproc_arg); if (lookahead == '/') - ADVANCE(124); - if (lookahead == '\\') ADVANCE(129); + if (lookahead == '\\') + ADVANCE(134); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') - ADVANCE(131); + ADVANCE(136); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n') - ADVANCE(130); + ADVANCE(135); END_STATE(); - case 132: + case 137: if (lookahead == '\n') - ADVANCE(133); + ADVANCE(138); if (lookahead == '/') - ADVANCE(124); - if (lookahead == '\\') ADVANCE(129); + if (lookahead == '\\') + ADVANCE(134); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') - ADVANCE(134); + ADVANCE(139); if (lookahead != 0) - ADVANCE(130); + ADVANCE(135); END_STATE(); - case 133: + case 138: ACCEPT_TOKEN(anon_sym_LF); END_STATE(); - case 134: + case 139: ACCEPT_TOKEN(sym_preproc_arg); if (lookahead == '/') - ADVANCE(124); - if (lookahead == '\\') ADVANCE(129); + if (lookahead == '\\') + ADVANCE(134); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') - ADVANCE(134); + ADVANCE(139); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n') - ADVANCE(130); + ADVANCE(135); END_STATE(); - case 135: + case 140: if (lookahead == '!') - ADVANCE(136); + ADVANCE(116); if (lookahead == '\"') ADVANCE(4); if (lookahead == '&') - ADVANCE(137); + ADVANCE(118); if (lookahead == '\'') ADVANCE(43); if (lookahead == '(') @@ -2470,17 +2511,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ')') ADVANCE(45); if (lookahead == '*') - ADVANCE(138); + ADVANCE(119); if (lookahead == '+') - ADVANCE(139); + ADVANCE(120); if (lookahead == ',') ADVANCE(51); if (lookahead == '-') - ADVANCE(140); + ADVANCE(121); if (lookahead == '.') ADVANCE(141); if (lookahead == '/') - ADVANCE(117); + ADVANCE(122); if (lookahead == '0') ADVANCE(65); if (lookahead == ':') @@ -2501,7 +2542,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(135); + SKIP(140); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(73); if (('A' <= lookahead && lookahead <= 'Z') || @@ -2509,25 +2550,6 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'z')) ADVANCE(114); END_STATE(); - case 136: - ACCEPT_TOKEN(anon_sym_BANG); - END_STATE(); - case 137: - ACCEPT_TOKEN(anon_sym_AMP); - END_STATE(); - case 138: - ACCEPT_TOKEN(anon_sym_STAR); - END_STATE(); - case 139: - ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') - ADVANCE(49); - END_STATE(); - case 140: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') - ADVANCE(53); - END_STATE(); case 141: ACCEPT_TOKEN(anon_sym_DOT); END_STATE(); @@ -2535,45 +2557,127 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(anon_sym_EQ); END_STATE(); case 143: - if (lookahead == 0) - ADVANCE(1); + if (lookahead == '\n') + SKIP(144); if (lookahead == '/') - ADVANCE(117); + ADVANCE(145); + if (lookahead == '\\') + ADVANCE(146); if (lookahead == '\t' || - lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(143); + ADVANCE(147); + if (lookahead != 0 && + lookahead != '\'') + ADVANCE(147); END_STATE(); case 144: - if (lookahead == 0) - ADVANCE(1); - if (lookahead == '!') - ADVANCE(136); - if (lookahead == '\"') - ADVANCE(4); - if (lookahead == '#') - ADVANCE(116); + if (lookahead == '/') + ADVANCE(122); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(144); + END_STATE(); + case 145: + ACCEPT_TOKEN(aux_sym_SLASH_LBRACK_CARET_BSLASHn_SQUOTE_RBRACK_SLASH); + if (lookahead == '*') + ADVANCE(60); + if (lookahead == '/') + ADVANCE(63); + END_STATE(); + case 146: + ACCEPT_TOKEN(aux_sym_SLASH_LBRACK_CARET_BSLASHn_SQUOTE_RBRACK_SLASH); + if (lookahead == 'U') + ADVANCE(89); + if (lookahead == 'u') + ADVANCE(93); + if (lookahead == 'x') + ADVANCE(98); + if (('0' <= lookahead && lookahead <= '9')) + ADVANCE(101); + if (lookahead != 0) + ADVANCE(97); + END_STATE(); + case 147: + ACCEPT_TOKEN(aux_sym_SLASH_LBRACK_CARET_BSLASHn_SQUOTE_RBRACK_SLASH); + END_STATE(); + case 148: + if (lookahead == '\n') + SKIP(149); + if (lookahead == '\"') + ADVANCE(4); + if (lookahead == '/') + ADVANCE(150); + if (lookahead == '\\') + ADVANCE(88); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') + ADVANCE(150); + if (lookahead != 0) + ADVANCE(150); + END_STATE(); + case 149: + if (lookahead == '\"') + ADVANCE(4); + if (lookahead == '/') + ADVANCE(122); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(149); + END_STATE(); + case 150: + ACCEPT_TOKEN(aux_sym_SLASH_LBRACK_CARET_BSLASH_BSLASH_DQUOTE_BSLASHn_RBRACK_SLASH); + END_STATE(); + case 151: + if (lookahead == '!') + ADVANCE(2); + if (lookahead == '\"') + ADVANCE(4); + if (lookahead == '%') + ADVANCE(38); if (lookahead == '&') - ADVANCE(137); + ADVANCE(40); if (lookahead == '\'') ADVANCE(43); if (lookahead == '(') ADVANCE(113); if (lookahead == '*') - ADVANCE(138); + ADVANCE(46); if (lookahead == '+') - ADVANCE(139); + ADVANCE(48); + if (lookahead == ',') + ADVANCE(51); if (lookahead == '-') - ADVANCE(140); + ADVANCE(52); + if (lookahead == '.') + ADVANCE(141); if (lookahead == '/') - ADVANCE(117); + ADVANCE(59); if (lookahead == '0') ADVANCE(65); if (lookahead == ';') ADVANCE(75); + if (lookahead == '<') + ADVANCE(76); + if (lookahead == '=') + ADVANCE(80); + if (lookahead == '>') + ADVANCE(82); + if (lookahead == '?') + ADVANCE(86); + if (lookahead == '[') + ADVANCE(87); + if (lookahead == '^') + ADVANCE(104); if (lookahead == '{') ADVANCE(106); + if (lookahead == '|') + ADVANCE(107); if (lookahead == '}') ADVANCE(110); if (lookahead == '~') @@ -2582,7 +2686,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(144); + SKIP(151); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(73); if (('A' <= lookahead && lookahead <= 'Z') || @@ -2590,73 +2694,99 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'z')) ADVANCE(114); END_STATE(); - case 145: - if (lookahead == '\n') - SKIP(146); - if (lookahead == '\"') - ADVANCE(4); + case 152: + if (lookahead == 0) + ADVANCE(1); if (lookahead == '/') - ADVANCE(147); - if (lookahead == '\\') - ADVANCE(88); + ADVANCE(122); if (lookahead == '\t' || + lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - ADVANCE(147); - if (lookahead != 0) - ADVANCE(147); + SKIP(152); END_STATE(); - case 146: + case 153: + if (lookahead == 0) + ADVANCE(1); + if (lookahead == '!') + ADVANCE(116); if (lookahead == '\"') ADVANCE(4); - if (lookahead == '/') + if (lookahead == '#') ADVANCE(117); + if (lookahead == '&') + ADVANCE(118); + if (lookahead == '\'') + ADVANCE(43); + if (lookahead == '(') + ADVANCE(113); + if (lookahead == '*') + ADVANCE(119); + if (lookahead == '+') + ADVANCE(120); + if (lookahead == '-') + ADVANCE(121); + if (lookahead == '/') + ADVANCE(122); + if (lookahead == '0') + ADVANCE(65); + if (lookahead == ';') + ADVANCE(75); + if (lookahead == '{') + ADVANCE(106); + if (lookahead == '}') + ADVANCE(110); + if (lookahead == '~') + ADVANCE(111); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(146); - END_STATE(); - case 147: - ACCEPT_TOKEN(aux_sym_SLASH_LBRACK_CARET_BSLASH_BSLASH_DQUOTE_BSLASHn_RBRACK_SLASH); + SKIP(153); + if (('1' <= lookahead && lookahead <= '9')) + ADVANCE(73); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(114); END_STATE(); - case 148: + case 154: if (lookahead == '\n') - ADVANCE(133); + ADVANCE(138); if (lookahead == '(') ADVANCE(44); if (lookahead == '/') - ADVANCE(124); - if (lookahead == '\\') ADVANCE(129); + if (lookahead == '\\') + ADVANCE(134); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') - ADVANCE(134); + ADVANCE(139); if (lookahead != 0) - ADVANCE(130); + ADVANCE(135); END_STATE(); - case 149: + case 155: if (lookahead == '!') - ADVANCE(136); + ADVANCE(116); if (lookahead == '\"') ADVANCE(4); if (lookahead == '#') ADVANCE(5); if (lookahead == '&') - ADVANCE(137); + ADVANCE(118); if (lookahead == '\'') ADVANCE(43); if (lookahead == '(') ADVANCE(113); if (lookahead == '*') - ADVANCE(138); + ADVANCE(119); if (lookahead == '+') - ADVANCE(139); + ADVANCE(120); if (lookahead == '-') - ADVANCE(140); + ADVANCE(121); if (lookahead == '/') - ADVANCE(117); + ADVANCE(122); if (lookahead == '0') ADVANCE(65); if (lookahead == ';') @@ -2669,7 +2799,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(149); + SKIP(155); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(73); if (('A' <= lookahead && lookahead <= 'Z') || @@ -2677,17 +2807,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'z')) ADVANCE(114); END_STATE(); - case 150: + case 156: if (lookahead == '\n') - ADVANCE(133); + ADVANCE(138); if (lookahead == '/') - ADVANCE(117); + ADVANCE(122); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') - SKIP(150); + SKIP(156); END_STATE(); - case 151: + case 157: if (lookahead == '!') ADVANCE(2); if (lookahead == '\"') @@ -2700,6 +2830,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(43); if (lookahead == '(') ADVANCE(113); + if (lookahead == ')') + ADVANCE(45); if (lookahead == '*') ADVANCE(46); if (lookahead == '+') @@ -2714,8 +2846,6 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(59); if (lookahead == '0') ADVANCE(65); - if (lookahead == ';') - ADVANCE(75); if (lookahead == '<') ADVANCE(76); if (lookahead == '=') @@ -2732,15 +2862,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(106); if (lookahead == '|') ADVANCE(107); - if (lookahead == '}') - ADVANCE(110); if (lookahead == '~') ADVANCE(111); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(151); + SKIP(157); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(73); if (('A' <= lookahead && lookahead <= 'Z') || @@ -2748,201 +2876,256 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'z')) ADVANCE(114); END_STATE(); - case 152: - if (lookahead == '#') - ADVANCE(153); + case 158: + if (lookahead == '!') + ADVANCE(159); + if (lookahead == '\"') + ADVANCE(4); + if (lookahead == '%') + ADVANCE(38); + if (lookahead == '&') + ADVANCE(40); + if (lookahead == '(') + ADVANCE(113); + if (lookahead == ')') + ADVANCE(45); + if (lookahead == '*') + ADVANCE(46); + if (lookahead == '+') + ADVANCE(48); + if (lookahead == ',') + ADVANCE(51); + if (lookahead == '-') + ADVANCE(52); + if (lookahead == '.') + ADVANCE(141); if (lookahead == '/') - ADVANCE(117); + ADVANCE(59); + if (lookahead == ':') + ADVANCE(74); + if (lookahead == ';') + ADVANCE(75); + if (lookahead == '<') + ADVANCE(76); + if (lookahead == '=') + ADVANCE(80); + if (lookahead == '>') + ADVANCE(82); + if (lookahead == '?') + ADVANCE(86); + if (lookahead == '[') + ADVANCE(87); + if (lookahead == ']') + ADVANCE(103); + if (lookahead == '^') + ADVANCE(104); + if (lookahead == '{') + ADVANCE(106); + if (lookahead == '|') + ADVANCE(107); if (lookahead == '}') ADVANCE(110); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(152); + SKIP(158); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(114); END_STATE(); - case 153: - if (lookahead == 'i') - ADVANCE(154); - if (lookahead == '\t' || - lookahead == ' ') - ADVANCE(153); - END_STATE(); - case 154: + case 159: + if (lookahead == '=') + ADVANCE(3); + END_STATE(); + case 160: + if (lookahead == '#') + ADVANCE(161); + if (lookahead == '/') + ADVANCE(122); + if (lookahead == '}') + ADVANCE(110); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(160); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(114); + END_STATE(); + case 161: + if (lookahead == 'i') + ADVANCE(162); + if (lookahead == '\t' || + lookahead == ' ') + ADVANCE(161); + END_STATE(); + case 162: if (lookahead == 'f') - ADVANCE(155); + ADVANCE(163); END_STATE(); - case 155: + case 163: ACCEPT_TOKEN(aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH); if (lookahead == 'd') - ADVANCE(156); + ADVANCE(164); if (lookahead == 'n') - ADVANCE(159); + ADVANCE(167); END_STATE(); - case 156: + case 164: if (lookahead == 'e') - ADVANCE(157); + ADVANCE(165); END_STATE(); - case 157: + case 165: if (lookahead == 'f') - ADVANCE(158); + ADVANCE(166); END_STATE(); - case 158: + case 166: ACCEPT_TOKEN(aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH); END_STATE(); - case 159: + case 167: if (lookahead == 'd') - ADVANCE(160); + ADVANCE(168); END_STATE(); - case 160: + case 168: if (lookahead == 'e') - ADVANCE(161); + ADVANCE(169); END_STATE(); - case 161: + case 169: if (lookahead == 'f') - ADVANCE(162); + ADVANCE(170); END_STATE(); - case 162: + case 170: ACCEPT_TOKEN(aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH); END_STATE(); - case 163: - if (lookahead == 0) - ADVANCE(1); + case 171: if (lookahead == '!') - ADVANCE(164); + ADVANCE(116); if (lookahead == '\"') ADVANCE(4); - if (lookahead == '#') - ADVANCE(116); - if (lookahead == '%') - ADVANCE(38); if (lookahead == '&') - ADVANCE(40); + ADVANCE(118); + if (lookahead == '\'') + ADVANCE(43); if (lookahead == '(') ADVANCE(113); if (lookahead == ')') ADVANCE(45); if (lookahead == '*') - ADVANCE(46); + ADVANCE(119); if (lookahead == '+') - ADVANCE(48); - if (lookahead == ',') - ADVANCE(51); + ADVANCE(120); if (lookahead == '-') - ADVANCE(52); - if (lookahead == '.') - ADVANCE(141); + ADVANCE(121); if (lookahead == '/') - ADVANCE(59); - if (lookahead == ':') - ADVANCE(74); - if (lookahead == ';') - ADVANCE(75); - if (lookahead == '<') - ADVANCE(76); - if (lookahead == '=') - ADVANCE(80); - if (lookahead == '>') - ADVANCE(82); - if (lookahead == '?') - ADVANCE(86); - if (lookahead == '[') - ADVANCE(87); - if (lookahead == ']') - ADVANCE(103); - if (lookahead == '^') - ADVANCE(104); - if (lookahead == '{') - ADVANCE(106); - if (lookahead == '|') - ADVANCE(107); - if (lookahead == '}') - ADVANCE(110); + ADVANCE(122); + if (lookahead == '0') + ADVANCE(65); + if (lookahead == '~') + ADVANCE(111); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(163); + SKIP(171); + if (('1' <= lookahead && lookahead <= '9')) + ADVANCE(73); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(114); END_STATE(); - case 164: - if (lookahead == '=') - ADVANCE(3); - END_STATE(); - case 165: + case 172: + if (lookahead == 0) + ADVANCE(1); + if (lookahead == '!') + ADVANCE(116); + if (lookahead == '\"') + ADVANCE(4); + if (lookahead == '#') + ADVANCE(117); + if (lookahead == '&') + ADVANCE(118); + if (lookahead == '\'') + ADVANCE(43); if (lookahead == '(') ADVANCE(113); - if (lookahead == ')') - ADVANCE(45); if (lookahead == '*') - ADVANCE(138); - if (lookahead == '.') - ADVANCE(166); + ADVANCE(119); + if (lookahead == '+') + ADVANCE(120); + if (lookahead == '-') + ADVANCE(121); if (lookahead == '/') - ADVANCE(117); - if (lookahead == '[') - ADVANCE(87); + ADVANCE(122); + if (lookahead == '0') + ADVANCE(65); + if (lookahead == '}') + ADVANCE(110); + if (lookahead == '~') + ADVANCE(111); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(165); + SKIP(172); + if (('1' <= lookahead && lookahead <= '9')) + ADVANCE(73); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(114); END_STATE(); - case 166: + case 173: + if (lookahead == '(') + ADVANCE(113); + if (lookahead == ')') + ADVANCE(45); + if (lookahead == '*') + ADVANCE(119); if (lookahead == '.') - ADVANCE(57); - END_STATE(); - case 167: - if (lookahead == 0) - ADVANCE(1); - if (lookahead == '#') - ADVANCE(116); + ADVANCE(174); if (lookahead == '/') - ADVANCE(117); - if (lookahead == '}') - ADVANCE(110); + ADVANCE(122); + if (lookahead == '[') + ADVANCE(87); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(167); + SKIP(173); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(114); END_STATE(); - case 168: + case 174: + if (lookahead == '.') + ADVANCE(57); + END_STATE(); + case 175: if (lookahead == '!') - ADVANCE(136); + ADVANCE(116); if (lookahead == '\"') ADVANCE(4); if (lookahead == '#') - ADVANCE(169); + ADVANCE(176); if (lookahead == '&') - ADVANCE(137); + ADVANCE(118); if (lookahead == '\'') ADVANCE(43); if (lookahead == '(') ADVANCE(113); if (lookahead == '*') - ADVANCE(138); + ADVANCE(119); if (lookahead == '+') - ADVANCE(139); + ADVANCE(120); if (lookahead == '-') - ADVANCE(140); + ADVANCE(121); if (lookahead == '/') - ADVANCE(117); + ADVANCE(122); if (lookahead == '0') ADVANCE(65); if (lookahead == ';') @@ -2955,7 +3138,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(168); + SKIP(175); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(73); if (('A' <= lookahead && lookahead <= 'Z') || @@ -2963,21 +3146,21 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'z')) ADVANCE(114); END_STATE(); - case 169: + case 176: if (lookahead == 'd') ADVANCE(6); if (lookahead == 'e') - ADVANCE(170); + ADVANCE(177); if (lookahead == 'i') ADVANCE(23); if (lookahead == '\t' || lookahead == ' ') - ADVANCE(169); + ADVANCE(176); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(12); END_STATE(); - case 170: + case 177: ACCEPT_TOKEN(sym_preproc_directive); if (lookahead == 'n') ADVANCE(19); @@ -2987,72 +3170,72 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'z')) ADVANCE(12); END_STATE(); - case 171: + case 178: if (lookahead == '#') - ADVANCE(172); + ADVANCE(179); if (lookahead == '/') - ADVANCE(117); + ADVANCE(122); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(171); + SKIP(178); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(114); END_STATE(); - case 172: + case 179: if (lookahead == 'e') - ADVANCE(173); + ADVANCE(180); if (lookahead == 'i') - ADVANCE(154); + ADVANCE(162); if (lookahead == '\t' || lookahead == ' ') - ADVANCE(172); + ADVANCE(179); END_STATE(); - case 173: + case 180: if (lookahead == 'l') - ADVANCE(174); + ADVANCE(181); if (lookahead == 'n') - ADVANCE(179); + ADVANCE(186); END_STATE(); - case 174: + case 181: if (lookahead == 'i') - ADVANCE(175); + ADVANCE(182); if (lookahead == 's') - ADVANCE(177); + ADVANCE(184); END_STATE(); - case 175: + case 182: if (lookahead == 'f') - ADVANCE(176); + ADVANCE(183); END_STATE(); - case 176: + case 183: ACCEPT_TOKEN(aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH); END_STATE(); - case 177: + case 184: if (lookahead == 'e') - ADVANCE(178); + ADVANCE(185); END_STATE(); - case 178: + case 185: ACCEPT_TOKEN(aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH); END_STATE(); - case 179: + case 186: if (lookahead == 'd') - ADVANCE(180); + ADVANCE(187); END_STATE(); - case 180: + case 187: if (lookahead == 'i') - ADVANCE(181); + ADVANCE(188); END_STATE(); - case 181: + case 188: if (lookahead == 'f') - ADVANCE(182); + ADVANCE(189); END_STATE(); - case 182: + case 189: ACCEPT_TOKEN(aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH); END_STATE(); - case 183: + case 190: if (lookahead == '(') ADVANCE(113); if (lookahead == ')') @@ -3060,7 +3243,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ',') ADVANCE(51); if (lookahead == '/') - ADVANCE(117); + ADVANCE(122); if (lookahead == ';') ADVANCE(75); if (lookahead == '=') @@ -3073,88 +3256,27 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(183); - END_STATE(); - case 184: - if (lookahead == '!') - ADVANCE(2); - if (lookahead == '\"') - ADVANCE(4); - if (lookahead == '%') - ADVANCE(38); - if (lookahead == '&') - ADVANCE(40); - if (lookahead == '\'') - ADVANCE(43); - if (lookahead == '(') - ADVANCE(113); - if (lookahead == '*') - ADVANCE(46); - if (lookahead == '+') - ADVANCE(48); - if (lookahead == ',') - ADVANCE(51); - if (lookahead == '-') - ADVANCE(52); - if (lookahead == '.') - ADVANCE(141); - if (lookahead == '/') - ADVANCE(59); - if (lookahead == '0') - ADVANCE(65); - if (lookahead == ':') - ADVANCE(74); - if (lookahead == ';') - ADVANCE(75); - if (lookahead == '<') - ADVANCE(76); - if (lookahead == '=') - ADVANCE(80); - if (lookahead == '>') - ADVANCE(82); - if (lookahead == '?') - ADVANCE(86); - if (lookahead == '[') - ADVANCE(87); - if (lookahead == '^') - ADVANCE(104); - if (lookahead == '{') - ADVANCE(106); - if (lookahead == '|') - ADVANCE(107); - if (lookahead == '~') - ADVANCE(111); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(184); - if (('1' <= lookahead && lookahead <= '9')) - ADVANCE(73); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(114); + SKIP(190); END_STATE(); - case 185: + case 191: if (lookahead == '!') - ADVANCE(136); + ADVANCE(116); if (lookahead == '\"') ADVANCE(4); if (lookahead == '&') - ADVANCE(137); + ADVANCE(118); if (lookahead == '\'') ADVANCE(43); if (lookahead == '(') ADVANCE(113); if (lookahead == '*') - ADVANCE(138); + ADVANCE(119); if (lookahead == '+') - ADVANCE(139); + ADVANCE(120); if (lookahead == '-') - ADVANCE(140); + ADVANCE(121); if (lookahead == '/') - ADVANCE(117); + ADVANCE(122); if (lookahead == '0') ADVANCE(65); if (lookahead == ']') @@ -3165,7 +3287,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(185); + SKIP(191); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(73); if (('A' <= lookahead && lookahead <= 'Z') || @@ -3173,7 +3295,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'z')) ADVANCE(114); END_STATE(); - case 186: + case 192: if (lookahead == '!') ADVANCE(2); if (lookahead == '\"') @@ -3186,8 +3308,6 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(43); if (lookahead == '(') ADVANCE(113); - if (lookahead == ')') - ADVANCE(45); if (lookahead == '*') ADVANCE(46); if (lookahead == '+') @@ -3202,6 +3322,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(59); if (lookahead == '0') ADVANCE(65); + if (lookahead == ':') + ADVANCE(74); + if (lookahead == ';') + ADVANCE(75); if (lookahead == '<') ADVANCE(76); if (lookahead == '=') @@ -3224,7 +3348,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(186); + SKIP(192); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(73); if (('A' <= lookahead && lookahead <= 'Z') || @@ -3232,96 +3356,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'z')) ADVANCE(114); END_STATE(); - case 187: - if (lookahead == '#') - ADVANCE(172); - if (lookahead == '/') - ADVANCE(117); - if (lookahead == '}') - ADVANCE(110); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(187); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(114); - END_STATE(); - case 188: - if (lookahead == '(') - ADVANCE(113); - if (lookahead == ')') - ADVANCE(45); - if (lookahead == ',') - ADVANCE(51); - if (lookahead == '/') - ADVANCE(117); - if (lookahead == ':') - ADVANCE(74); - if (lookahead == ';') - ADVANCE(75); - if (lookahead == '=') - ADVANCE(142); - if (lookahead == '[') - ADVANCE(87); - if (lookahead == '{') - ADVANCE(106); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(188); - END_STATE(); - case 189: - if (lookahead == '\n') - SKIP(190); - if (lookahead == '/') - ADVANCE(191); - if (lookahead == '\\') - ADVANCE(192); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') - ADVANCE(193); - if (lookahead != 0 && - lookahead != '\'') - ADVANCE(193); - END_STATE(); - case 190: - if (lookahead == '/') - ADVANCE(117); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(190); - END_STATE(); - case 191: - ACCEPT_TOKEN(aux_sym_SLASH_LBRACK_CARET_BSLASHn_SQUOTE_RBRACK_SLASH); - if (lookahead == '*') - ADVANCE(60); - if (lookahead == '/') - ADVANCE(63); - END_STATE(); - case 192: - ACCEPT_TOKEN(aux_sym_SLASH_LBRACK_CARET_BSLASHn_SQUOTE_RBRACK_SLASH); - if (lookahead == 'U') - ADVANCE(89); - if (lookahead == 'u') - ADVANCE(93); - if (lookahead == 'x') - ADVANCE(98); - if (('0' <= lookahead && lookahead <= '9')) - ADVANCE(101); - if (lookahead != 0) - ADVANCE(97); - END_STATE(); case 193: - ACCEPT_TOKEN(aux_sym_SLASH_LBRACK_CARET_BSLASHn_SQUOTE_RBRACK_SLASH); - END_STATE(); - case 194: if (lookahead == '!') ADVANCE(2); if (lookahead == '\"') @@ -3370,7 +3405,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(194); + SKIP(193); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(73); if (('A' <= lookahead && lookahead <= 'Z') || @@ -3378,29 +3413,54 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'z')) ADVANCE(114); END_STATE(); + case 194: + if (lookahead == '(') + ADVANCE(113); + if (lookahead == ')') + ADVANCE(45); + if (lookahead == ',') + ADVANCE(51); + if (lookahead == '/') + ADVANCE(122); + if (lookahead == ':') + ADVANCE(74); + if (lookahead == ';') + ADVANCE(75); + if (lookahead == '=') + ADVANCE(142); + if (lookahead == '[') + ADVANCE(87); + if (lookahead == '{') + ADVANCE(106); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(194); + END_STATE(); case 195: if (lookahead == '!') - ADVANCE(136); + ADVANCE(116); if (lookahead == '\"') ADVANCE(4); if (lookahead == '&') - ADVANCE(137); + ADVANCE(118); if (lookahead == '\'') ADVANCE(43); if (lookahead == '(') ADVANCE(113); if (lookahead == '*') - ADVANCE(138); + ADVANCE(119); if (lookahead == '+') - ADVANCE(139); + ADVANCE(120); if (lookahead == ',') ADVANCE(51); if (lookahead == '-') - ADVANCE(140); + ADVANCE(121); if (lookahead == '.') ADVANCE(141); if (lookahead == '/') - ADVANCE(117); + ADVANCE(122); if (lookahead == '0') ADVANCE(65); if (lookahead == '[') @@ -3424,48 +3484,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(114); END_STATE(); case 196: - if (lookahead == '!') - ADVANCE(164); - if (lookahead == '%') - ADVANCE(38); - if (lookahead == '&') - ADVANCE(40); - if (lookahead == '(') - ADVANCE(113); - if (lookahead == ')') - ADVANCE(45); - if (lookahead == '*') - ADVANCE(46); - if (lookahead == '+') - ADVANCE(48); - if (lookahead == ',') - ADVANCE(51); - if (lookahead == '-') - ADVANCE(52); - if (lookahead == '.') - ADVANCE(141); + if (lookahead == '#') + ADVANCE(179); if (lookahead == '/') - ADVANCE(59); - if (lookahead == ':') - ADVANCE(74); - if (lookahead == ';') - ADVANCE(75); - if (lookahead == '<') - ADVANCE(76); - if (lookahead == '=') - ADVANCE(80); - if (lookahead == '>') - ADVANCE(82); - if (lookahead == '?') - ADVANCE(86); - if (lookahead == '[') - ADVANCE(87); - if (lookahead == ']') - ADVANCE(103); - if (lookahead == '^') - ADVANCE(104); - if (lookahead == '|') - ADVANCE(107); + ADVANCE(122); if (lookahead == '}') ADVANCE(110); if (lookahead == '\t' || @@ -3478,43 +3500,6 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'z')) ADVANCE(114); END_STATE(); - case 197: - if (lookahead == '!') - ADVANCE(136); - if (lookahead == '\"') - ADVANCE(4); - if (lookahead == '&') - ADVANCE(137); - if (lookahead == '\'') - ADVANCE(43); - if (lookahead == '(') - ADVANCE(113); - if (lookahead == ')') - ADVANCE(45); - if (lookahead == '*') - ADVANCE(138); - if (lookahead == '+') - ADVANCE(139); - if (lookahead == '-') - ADVANCE(140); - if (lookahead == '/') - ADVANCE(117); - if (lookahead == '0') - ADVANCE(65); - if (lookahead == '~') - ADVANCE(111); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(197); - if (('1' <= lookahead && lookahead <= '9')) - ADVANCE(73); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(114); - END_STATE(); default: return false; } @@ -4335,1240 +4320,1287 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { static TSLexMode ts_lex_modes[STATE_COUNT] = { [0] = {.lex_state = 0}, [1] = {.lex_state = 115}, - [2] = {.lex_state = 118}, + [2] = {.lex_state = 123}, [3] = {.lex_state = 115}, - [4] = {.lex_state = 123}, + [4] = {.lex_state = 128}, [5] = {.lex_state = 115}, - [6] = {.lex_state = 132}, + [6] = {.lex_state = 137}, [7] = {.lex_state = 115}, - [8] = {.lex_state = 135}, - [9] = {.lex_state = 135}, - [10] = {.lex_state = 135}, - [11] = {.lex_state = 135}, - [12] = {.lex_state = 135}, - [13] = {.lex_state = 135}, - [14] = {.lex_state = 135}, - [15] = {.lex_state = 143}, - [16] = {.lex_state = 144}, - [17] = {.lex_state = 144}, + [8] = {.lex_state = 115}, + [9] = {.lex_state = 115}, + [10] = {.lex_state = 115}, + [11] = {.lex_state = 140}, + [12] = {.lex_state = 140}, + [13] = {.lex_state = 140}, + [14] = {.lex_state = 140}, + [15] = {.lex_state = 140}, + [16] = {.lex_state = 115}, + [17] = {.lex_state = 115}, [18] = {.lex_state = 115}, [19] = {.lex_state = 115}, - [20] = {.lex_state = 144}, - [21] = {.lex_state = 145}, - [22] = {.lex_state = 144}, - [23] = {.lex_state = 148}, - [24] = {.lex_state = 149}, - [25] = {.lex_state = 149}, - [26] = {.lex_state = 144}, - [27] = {.lex_state = 150}, - [28] = {.lex_state = 135}, + [20] = {.lex_state = 143}, + [21] = {.lex_state = 148}, + [22] = {.lex_state = 151}, + [23] = {.lex_state = 152}, + [24] = {.lex_state = 151}, + [25] = {.lex_state = 151}, + [26] = {.lex_state = 151}, + [27] = {.lex_state = 151}, + [28] = {.lex_state = 151}, [29] = {.lex_state = 115}, - [30] = {.lex_state = 135}, - [31] = {.lex_state = 135}, - [32] = {.lex_state = 151}, - [33] = {.lex_state = 135}, - [34] = {.lex_state = 135}, - [35] = {.lex_state = 152}, - [36] = {.lex_state = 135}, - [37] = {.lex_state = 135}, - [38] = {.lex_state = 135}, - [39] = {.lex_state = 135}, + [30] = {.lex_state = 115}, + [31] = {.lex_state = 151}, + [32] = {.lex_state = 148}, + [33] = {.lex_state = 153}, + [34] = {.lex_state = 154}, + [35] = {.lex_state = 155}, + [36] = {.lex_state = 155}, + [37] = {.lex_state = 153}, + [38] = {.lex_state = 156}, + [39] = {.lex_state = 140}, [40] = {.lex_state = 115}, - [41] = {.lex_state = 144}, - [42] = {.lex_state = 135}, - [43] = {.lex_state = 135}, - [44] = {.lex_state = 151}, - [45] = {.lex_state = 151}, - [46] = {.lex_state = 144}, + [41] = {.lex_state = 115}, + [42] = {.lex_state = 115}, + [43] = {.lex_state = 140}, + [44] = {.lex_state = 115}, + [45] = {.lex_state = 115}, + [46] = {.lex_state = 115}, [47] = {.lex_state = 115}, - [48] = {.lex_state = 144}, + [48] = {.lex_state = 115}, [49] = {.lex_state = 115}, - [50] = {.lex_state = 135}, - [51] = {.lex_state = 135}, - [52] = {.lex_state = 144}, - [53] = {.lex_state = 163}, - [54] = {.lex_state = 145}, - [55] = {.lex_state = 144}, - [56] = {.lex_state = 165}, - [57] = {.lex_state = 150}, - [58] = {.lex_state = 132}, - [59] = {.lex_state = 118}, - [60] = {.lex_state = 115}, - [61] = {.lex_state = 123}, - [62] = {.lex_state = 167}, - [63] = {.lex_state = 115}, - [64] = {.lex_state = 168}, - [65] = {.lex_state = 123}, - [66] = {.lex_state = 132}, - [67] = {.lex_state = 115}, - [68] = {.lex_state = 135}, - [69] = {.lex_state = 171}, - [70] = {.lex_state = 144}, - [71] = {.lex_state = 149}, - [72] = {.lex_state = 167}, - [73] = {.lex_state = 171}, - [74] = {.lex_state = 149}, - [75] = {.lex_state = 144}, - [76] = {.lex_state = 135}, - [77] = {.lex_state = 135}, - [78] = {.lex_state = 183}, + [50] = {.lex_state = 157}, + [51] = {.lex_state = 157}, + [52] = {.lex_state = 157}, + [53] = {.lex_state = 157}, + [54] = {.lex_state = 157}, + [55] = {.lex_state = 157}, + [56] = {.lex_state = 115}, + [57] = {.lex_state = 157}, + [58] = {.lex_state = 158}, + [59] = {.lex_state = 151}, + [60] = {.lex_state = 140}, + [61] = {.lex_state = 140}, + [62] = {.lex_state = 160}, + [63] = {.lex_state = 140}, + [64] = {.lex_state = 140}, + [65] = {.lex_state = 140}, + [66] = {.lex_state = 140}, + [67] = {.lex_state = 158}, + [68] = {.lex_state = 158}, + [69] = {.lex_state = 158}, + [70] = {.lex_state = 115}, + [71] = {.lex_state = 151}, + [72] = {.lex_state = 115}, + [73] = {.lex_state = 158}, + [74] = {.lex_state = 148}, + [75] = {.lex_state = 115}, + [76] = {.lex_state = 153}, + [77] = {.lex_state = 115}, + [78] = {.lex_state = 115}, [79] = {.lex_state = 151}, - [80] = {.lex_state = 135}, - [81] = {.lex_state = 115}, - [82] = {.lex_state = 135}, - [83] = {.lex_state = 144}, - [84] = {.lex_state = 167}, - [85] = {.lex_state = 135}, - [86] = {.lex_state = 135}, + [80] = {.lex_state = 151}, + [81] = {.lex_state = 151}, + [82] = {.lex_state = 171}, + [83] = {.lex_state = 115}, + [84] = {.lex_state = 115}, + [85] = {.lex_state = 115}, + [86] = {.lex_state = 115}, [87] = {.lex_state = 115}, - [88] = {.lex_state = 135}, - [89] = {.lex_state = 144}, - [90] = {.lex_state = 135}, - [91] = {.lex_state = 151}, - [92] = {.lex_state = 151}, - [93] = {.lex_state = 135}, - [94] = {.lex_state = 123}, + [88] = {.lex_state = 115}, + [89] = {.lex_state = 115}, + [90] = {.lex_state = 115}, + [91] = {.lex_state = 115}, + [92] = {.lex_state = 115}, + [93] = {.lex_state = 115}, + [94] = {.lex_state = 115}, [95] = {.lex_state = 115}, - [96] = {.lex_state = 135}, - [97] = {.lex_state = 184}, - [98] = {.lex_state = 184}, - [99] = {.lex_state = 152}, - [100] = {.lex_state = 115}, - [101] = {.lex_state = 184}, - [102] = {.lex_state = 135}, - [103] = {.lex_state = 135}, - [104] = {.lex_state = 165}, - [105] = {.lex_state = 165}, - [106] = {.lex_state = 115}, - [107] = {.lex_state = 165}, - [108] = {.lex_state = 135}, - [109] = {.lex_state = 165}, - [110] = {.lex_state = 183}, - [111] = {.lex_state = 135}, - [112] = {.lex_state = 135}, - [113] = {.lex_state = 144}, - [114] = {.lex_state = 144}, - [115] = {.lex_state = 165}, - [116] = {.lex_state = 185}, - [117] = {.lex_state = 135}, - [118] = {.lex_state = 167}, - [119] = {.lex_state = 183}, - [120] = {.lex_state = 151}, - [121] = {.lex_state = 144}, - [122] = {.lex_state = 144}, - [123] = {.lex_state = 163}, - [124] = {.lex_state = 145}, - [125] = {.lex_state = 186}, - [126] = {.lex_state = 132}, - [127] = {.lex_state = 144}, - [128] = {.lex_state = 144}, - [129] = {.lex_state = 150}, - [130] = {.lex_state = 145}, - [131] = {.lex_state = 149}, - [132] = {.lex_state = 148}, - [133] = {.lex_state = 149}, - [134] = {.lex_state = 149}, - [135] = {.lex_state = 118}, + [96] = {.lex_state = 158}, + [97] = {.lex_state = 115}, + [98] = {.lex_state = 158}, + [99] = {.lex_state = 172}, + [100] = {.lex_state = 151}, + [101] = {.lex_state = 115}, + [102] = {.lex_state = 151}, + [103] = {.lex_state = 115}, + [104] = {.lex_state = 140}, + [105] = {.lex_state = 140}, + [106] = {.lex_state = 151}, + [107] = {.lex_state = 153}, + [108] = {.lex_state = 148}, + [109] = {.lex_state = 153}, + [110] = {.lex_state = 173}, + [111] = {.lex_state = 156}, + [112] = {.lex_state = 137}, + [113] = {.lex_state = 123}, + [114] = {.lex_state = 115}, + [115] = {.lex_state = 128}, + [116] = {.lex_state = 172}, + [117] = {.lex_state = 115}, + [118] = {.lex_state = 175}, + [119] = {.lex_state = 128}, + [120] = {.lex_state = 137}, + [121] = {.lex_state = 115}, + [122] = {.lex_state = 115}, + [123] = {.lex_state = 178}, + [124] = {.lex_state = 151}, + [125] = {.lex_state = 151}, + [126] = {.lex_state = 155}, + [127] = {.lex_state = 172}, + [128] = {.lex_state = 178}, + [129] = {.lex_state = 155}, + [130] = {.lex_state = 153}, + [131] = {.lex_state = 115}, + [132] = {.lex_state = 115}, + [133] = {.lex_state = 190}, + [134] = {.lex_state = 151}, + [135] = {.lex_state = 115}, [136] = {.lex_state = 115}, - [137] = {.lex_state = 123}, - [138] = {.lex_state = 115}, - [139] = {.lex_state = 132}, + [137] = {.lex_state = 115}, + [138] = {.lex_state = 153}, + [139] = {.lex_state = 172}, [140] = {.lex_state = 115}, - [141] = {.lex_state = 135}, - [142] = {.lex_state = 144}, - [143] = {.lex_state = 168}, - [144] = {.lex_state = 149}, - [145] = {.lex_state = 149}, - [146] = {.lex_state = 150}, - [147] = {.lex_state = 135}, - [148] = {.lex_state = 115}, - [149] = {.lex_state = 135}, - [150] = {.lex_state = 167}, - [151] = {.lex_state = 149}, - [152] = {.lex_state = 151}, - [153] = {.lex_state = 151}, - [154] = {.lex_state = 171}, - [155] = {.lex_state = 149}, - [156] = {.lex_state = 167}, - [157] = {.lex_state = 171}, - [158] = {.lex_state = 135}, - [159] = {.lex_state = 165}, - [160] = {.lex_state = 183}, - [161] = {.lex_state = 135}, - [162] = {.lex_state = 144}, - [163] = {.lex_state = 185}, - [164] = {.lex_state = 183}, - [165] = {.lex_state = 151}, - [166] = {.lex_state = 167}, - [167] = {.lex_state = 144}, - [168] = {.lex_state = 135}, - [169] = {.lex_state = 135}, - [170] = {.lex_state = 135}, - [171] = {.lex_state = 135}, - [172] = {.lex_state = 135}, - [173] = {.lex_state = 144}, - [174] = {.lex_state = 151}, - [175] = {.lex_state = 171}, - [176] = {.lex_state = 171}, - [177] = {.lex_state = 187}, - [178] = {.lex_state = 135}, - [179] = {.lex_state = 135}, - [180] = {.lex_state = 135}, - [181] = {.lex_state = 188}, - [182] = {.lex_state = 184}, - [183] = {.lex_state = 184}, - [184] = {.lex_state = 135}, - [185] = {.lex_state = 152}, - [186] = {.lex_state = 184}, - [187] = {.lex_state = 184}, - [188] = {.lex_state = 165}, - [189] = {.lex_state = 165}, - [190] = {.lex_state = 185}, - [191] = {.lex_state = 165}, - [192] = {.lex_state = 186}, - [193] = {.lex_state = 135}, - [194] = {.lex_state = 165}, - [195] = {.lex_state = 165}, - [196] = {.lex_state = 135}, - [197] = {.lex_state = 183}, - [198] = {.lex_state = 183}, - [199] = {.lex_state = 135}, - [200] = {.lex_state = 135}, - [201] = {.lex_state = 151}, + [141] = {.lex_state = 115}, + [142] = {.lex_state = 115}, + [143] = {.lex_state = 115}, + [144] = {.lex_state = 157}, + [145] = {.lex_state = 115}, + [146] = {.lex_state = 157}, + [147] = {.lex_state = 173}, + [148] = {.lex_state = 157}, + [149] = {.lex_state = 191}, + [150] = {.lex_state = 157}, + [151] = {.lex_state = 157}, + [152] = {.lex_state = 115}, + [153] = {.lex_state = 158}, + [154] = {.lex_state = 115}, + [155] = {.lex_state = 115}, + [156] = {.lex_state = 115}, + [157] = {.lex_state = 115}, + [158] = {.lex_state = 115}, + [159] = {.lex_state = 115}, + [160] = {.lex_state = 115}, + [161] = {.lex_state = 115}, + [162] = {.lex_state = 115}, + [163] = {.lex_state = 115}, + [164] = {.lex_state = 115}, + [165] = {.lex_state = 115}, + [166] = {.lex_state = 140}, + [167] = {.lex_state = 157}, + [168] = {.lex_state = 157}, + [169] = {.lex_state = 157}, + [170] = {.lex_state = 151}, + [171] = {.lex_state = 140}, + [172] = {.lex_state = 151}, + [173] = {.lex_state = 151}, + [174] = {.lex_state = 140}, + [175] = {.lex_state = 128}, + [176] = {.lex_state = 115}, + [177] = {.lex_state = 140}, + [178] = {.lex_state = 192}, + [179] = {.lex_state = 192}, + [180] = {.lex_state = 160}, + [181] = {.lex_state = 115}, + [182] = {.lex_state = 192}, + [183] = {.lex_state = 140}, + [184] = {.lex_state = 140}, + [185] = {.lex_state = 157}, + [186] = {.lex_state = 158}, + [187] = {.lex_state = 158}, + [188] = {.lex_state = 148}, + [189] = {.lex_state = 157}, + [190] = {.lex_state = 115}, + [191] = {.lex_state = 157}, + [192] = {.lex_state = 190}, + [193] = {.lex_state = 115}, + [194] = {.lex_state = 153}, + [195] = {.lex_state = 115}, + [196] = {.lex_state = 153}, + [197] = {.lex_state = 173}, + [198] = {.lex_state = 191}, + [199] = {.lex_state = 140}, + [200] = {.lex_state = 172}, + [201] = {.lex_state = 190}, [202] = {.lex_state = 151}, - [203] = {.lex_state = 118}, - [204] = {.lex_state = 123}, - [205] = {.lex_state = 115}, - [206] = {.lex_state = 144}, - [207] = {.lex_state = 144}, - [208] = {.lex_state = 135}, - [209] = {.lex_state = 135}, - [210] = {.lex_state = 135}, - [211] = {.lex_state = 135}, - [212] = {.lex_state = 135}, - [213] = {.lex_state = 184}, - [214] = {.lex_state = 135}, - [215] = {.lex_state = 144}, - [216] = {.lex_state = 135}, - [217] = {.lex_state = 144}, - [218] = {.lex_state = 144}, - [219] = {.lex_state = 144}, + [203] = {.lex_state = 151}, + [204] = {.lex_state = 158}, + [205] = {.lex_state = 157}, + [206] = {.lex_state = 158}, + [207] = {.lex_state = 115}, + [208] = {.lex_state = 115}, + [209] = {.lex_state = 115}, + [210] = {.lex_state = 115}, + [211] = {.lex_state = 115}, + [212] = {.lex_state = 115}, + [213] = {.lex_state = 193}, + [214] = {.lex_state = 193}, + [215] = {.lex_state = 151}, + [216] = {.lex_state = 115}, + [217] = {.lex_state = 115}, + [218] = {.lex_state = 115}, + [219] = {.lex_state = 115}, [220] = {.lex_state = 115}, - [221] = {.lex_state = 135}, - [222] = {.lex_state = 135}, - [223] = {.lex_state = 135}, - [224] = {.lex_state = 135}, - [225] = {.lex_state = 189}, - [226] = {.lex_state = 184}, - [227] = {.lex_state = 144}, + [221] = {.lex_state = 115}, + [222] = {.lex_state = 192}, + [223] = {.lex_state = 192}, + [224] = {.lex_state = 151}, + [225] = {.lex_state = 151}, + [226] = {.lex_state = 151}, + [227] = {.lex_state = 151}, [228] = {.lex_state = 151}, - [229] = {.lex_state = 144}, + [229] = {.lex_state = 151}, [230] = {.lex_state = 151}, - [231] = {.lex_state = 144}, - [232] = {.lex_state = 186}, - [233] = {.lex_state = 188}, - [234] = {.lex_state = 186}, - [235] = {.lex_state = 186}, - [236] = {.lex_state = 115}, - [237] = {.lex_state = 186}, - [238] = {.lex_state = 135}, - [239] = {.lex_state = 135}, - [240] = {.lex_state = 183}, - [241] = {.lex_state = 135}, - [242] = {.lex_state = 135}, - [243] = {.lex_state = 135}, - [244] = {.lex_state = 135}, - [245] = {.lex_state = 194}, - [246] = {.lex_state = 185}, - [247] = {.lex_state = 185}, - [248] = {.lex_state = 194}, - [249] = {.lex_state = 194}, + [231] = {.lex_state = 151}, + [232] = {.lex_state = 151}, + [233] = {.lex_state = 158}, + [234] = {.lex_state = 151}, + [235] = {.lex_state = 151}, + [236] = {.lex_state = 153}, + [237] = {.lex_state = 157}, + [238] = {.lex_state = 137}, + [239] = {.lex_state = 153}, + [240] = {.lex_state = 153}, + [241] = {.lex_state = 156}, + [242] = {.lex_state = 148}, + [243] = {.lex_state = 155}, + [244] = {.lex_state = 154}, + [245] = {.lex_state = 155}, + [246] = {.lex_state = 155}, + [247] = {.lex_state = 123}, + [248] = {.lex_state = 115}, + [249] = {.lex_state = 128}, [250] = {.lex_state = 115}, - [251] = {.lex_state = 185}, - [252] = {.lex_state = 195}, - [253] = {.lex_state = 151}, + [251] = {.lex_state = 137}, + [252] = {.lex_state = 115}, + [253] = {.lex_state = 115}, [254] = {.lex_state = 151}, - [255] = {.lex_state = 144}, - [256] = {.lex_state = 151}, - [257] = {.lex_state = 165}, - [258] = {.lex_state = 132}, - [259] = {.lex_state = 186}, - [260] = {.lex_state = 144}, - [261] = {.lex_state = 149}, - [262] = {.lex_state = 145}, - [263] = {.lex_state = 149}, - [264] = {.lex_state = 150}, - [265] = {.lex_state = 132}, - [266] = {.lex_state = 149}, - [267] = {.lex_state = 171}, - [268] = {.lex_state = 149}, - [269] = {.lex_state = 149}, - [270] = {.lex_state = 171}, - [271] = {.lex_state = 149}, - [272] = {.lex_state = 145}, - [273] = {.lex_state = 168}, - [274] = {.lex_state = 148}, - [275] = {.lex_state = 149}, - [276] = {.lex_state = 149}, - [277] = {.lex_state = 168}, - [278] = {.lex_state = 150}, - [279] = {.lex_state = 135}, - [280] = {.lex_state = 115}, - [281] = {.lex_state = 135}, - [282] = {.lex_state = 168}, - [283] = {.lex_state = 151}, - [284] = {.lex_state = 151}, - [285] = {.lex_state = 168}, - [286] = {.lex_state = 171}, - [287] = {.lex_state = 149}, - [288] = {.lex_state = 149}, - [289] = {.lex_state = 151}, - [290] = {.lex_state = 135}, - [291] = {.lex_state = 144}, - [292] = {.lex_state = 149}, - [293] = {.lex_state = 135}, - [294] = {.lex_state = 149}, - [295] = {.lex_state = 144}, - [296] = {.lex_state = 149}, - [297] = {.lex_state = 151}, - [298] = {.lex_state = 167}, - [299] = {.lex_state = 167}, - [300] = {.lex_state = 135}, - [301] = {.lex_state = 183}, - [302] = {.lex_state = 183}, - [303] = {.lex_state = 183}, - [304] = {.lex_state = 185}, - [305] = {.lex_state = 194}, - [306] = {.lex_state = 144}, - [307] = {.lex_state = 167}, - [308] = {.lex_state = 144}, - [309] = {.lex_state = 135}, - [310] = {.lex_state = 135}, - [311] = {.lex_state = 135}, - [312] = {.lex_state = 135}, - [313] = {.lex_state = 135}, - [314] = {.lex_state = 135}, - [315] = {.lex_state = 135}, - [316] = {.lex_state = 135}, - [317] = {.lex_state = 151}, - [318] = {.lex_state = 151}, - [319] = {.lex_state = 135}, - [320] = {.lex_state = 151}, - [321] = {.lex_state = 144}, - [322] = {.lex_state = 151}, - [323] = {.lex_state = 187}, - [324] = {.lex_state = 171}, - [325] = {.lex_state = 123}, - [326] = {.lex_state = 171}, - [327] = {.lex_state = 171}, - [328] = {.lex_state = 187}, - [329] = {.lex_state = 171}, - [330] = {.lex_state = 171}, - [331] = {.lex_state = 135}, - [332] = {.lex_state = 165}, - [333] = {.lex_state = 188}, - [334] = {.lex_state = 135}, - [335] = {.lex_state = 135}, - [336] = {.lex_state = 135}, - [337] = {.lex_state = 135}, - [338] = {.lex_state = 135}, - [339] = {.lex_state = 135}, - [340] = {.lex_state = 135}, - [341] = {.lex_state = 151}, - [342] = {.lex_state = 151}, - [343] = {.lex_state = 135}, - [344] = {.lex_state = 187}, - [345] = {.lex_state = 185}, - [346] = {.lex_state = 135}, - [347] = {.lex_state = 188}, - [348] = {.lex_state = 184}, - [349] = {.lex_state = 184}, - [350] = {.lex_state = 184}, - [351] = {.lex_state = 165}, - [352] = {.lex_state = 186}, - [353] = {.lex_state = 165}, - [354] = {.lex_state = 186}, - [355] = {.lex_state = 185}, - [356] = {.lex_state = 194}, - [357] = {.lex_state = 185}, - [358] = {.lex_state = 186}, - [359] = {.lex_state = 165}, - [360] = {.lex_state = 135}, - [361] = {.lex_state = 145}, - [362] = {.lex_state = 149}, - [363] = {.lex_state = 149}, - [364] = {.lex_state = 135}, - [365] = {.lex_state = 135}, - [366] = {.lex_state = 135}, - [367] = {.lex_state = 135}, - [368] = {.lex_state = 135}, - [369] = {.lex_state = 135}, - [370] = {.lex_state = 186}, - [371] = {.lex_state = 186}, - [372] = {.lex_state = 165}, - [373] = {.lex_state = 165}, - [374] = {.lex_state = 186}, - [375] = {.lex_state = 196}, - [376] = {.lex_state = 135}, - [377] = {.lex_state = 144}, - [378] = {.lex_state = 144}, - [379] = {.lex_state = 135}, - [380] = {.lex_state = 135}, - [381] = {.lex_state = 135}, - [382] = {.lex_state = 135}, - [383] = {.lex_state = 135}, - [384] = {.lex_state = 135}, - [385] = {.lex_state = 184}, - [386] = {.lex_state = 184}, - [387] = {.lex_state = 144}, - [388] = {.lex_state = 144}, - [389] = {.lex_state = 135}, - [390] = {.lex_state = 135}, - [391] = {.lex_state = 135}, - [392] = {.lex_state = 184}, - [393] = {.lex_state = 135}, - [394] = {.lex_state = 144}, - [395] = {.lex_state = 135}, - [396] = {.lex_state = 184}, + [255] = {.lex_state = 151}, + [256] = {.lex_state = 175}, + [257] = {.lex_state = 155}, + [258] = {.lex_state = 155}, + [259] = {.lex_state = 156}, + [260] = {.lex_state = 115}, + [261] = {.lex_state = 115}, + [262] = {.lex_state = 140}, + [263] = {.lex_state = 172}, + [264] = {.lex_state = 155}, + [265] = {.lex_state = 151}, + [266] = {.lex_state = 151}, + [267] = {.lex_state = 155}, + [268] = {.lex_state = 178}, + [269] = {.lex_state = 155}, + [270] = {.lex_state = 172}, + [271] = {.lex_state = 178}, + [272] = {.lex_state = 115}, + [273] = {.lex_state = 157}, + [274] = {.lex_state = 190}, + [275] = {.lex_state = 115}, + [276] = {.lex_state = 153}, + [277] = {.lex_state = 191}, + [278] = {.lex_state = 190}, + [279] = {.lex_state = 151}, + [280] = {.lex_state = 172}, + [281] = {.lex_state = 153}, + [282] = {.lex_state = 115}, + [283] = {.lex_state = 115}, + [284] = {.lex_state = 115}, + [285] = {.lex_state = 140}, + [286] = {.lex_state = 157}, + [287] = {.lex_state = 157}, + [288] = {.lex_state = 194}, + [289] = {.lex_state = 157}, + [290] = {.lex_state = 157}, + [291] = {.lex_state = 157}, + [292] = {.lex_state = 115}, + [293] = {.lex_state = 157}, + [294] = {.lex_state = 157}, + [295] = {.lex_state = 157}, + [296] = {.lex_state = 157}, + [297] = {.lex_state = 193}, + [298] = {.lex_state = 191}, + [299] = {.lex_state = 191}, + [300] = {.lex_state = 193}, + [301] = {.lex_state = 115}, + [302] = {.lex_state = 191}, + [303] = {.lex_state = 191}, + [304] = {.lex_state = 157}, + [305] = {.lex_state = 157}, + [306] = {.lex_state = 190}, + [307] = {.lex_state = 157}, + [308] = {.lex_state = 192}, + [309] = {.lex_state = 157}, + [310] = {.lex_state = 157}, + [311] = {.lex_state = 157}, + [312] = {.lex_state = 157}, + [313] = {.lex_state = 157}, + [314] = {.lex_state = 157}, + [315] = {.lex_state = 157}, + [316] = {.lex_state = 157}, + [317] = {.lex_state = 157}, + [318] = {.lex_state = 195}, + [319] = {.lex_state = 158}, + [320] = {.lex_state = 158}, + [321] = {.lex_state = 157}, + [322] = {.lex_state = 157}, + [323] = {.lex_state = 140}, + [324] = {.lex_state = 115}, + [325] = {.lex_state = 151}, + [326] = {.lex_state = 151}, + [327] = {.lex_state = 178}, + [328] = {.lex_state = 178}, + [329] = {.lex_state = 196}, + [330] = {.lex_state = 115}, + [331] = {.lex_state = 115}, + [332] = {.lex_state = 115}, + [333] = {.lex_state = 194}, + [334] = {.lex_state = 192}, + [335] = {.lex_state = 192}, + [336] = {.lex_state = 140}, + [337] = {.lex_state = 160}, + [338] = {.lex_state = 192}, + [339] = {.lex_state = 192}, + [340] = {.lex_state = 151}, + [341] = {.lex_state = 140}, + [342] = {.lex_state = 115}, + [343] = {.lex_state = 190}, + [344] = {.lex_state = 190}, + [345] = {.lex_state = 115}, + [346] = {.lex_state = 115}, + [347] = {.lex_state = 151}, + [348] = {.lex_state = 151}, + [349] = {.lex_state = 153}, + [350] = {.lex_state = 128}, + [351] = {.lex_state = 115}, + [352] = {.lex_state = 153}, + [353] = {.lex_state = 115}, + [354] = {.lex_state = 115}, + [355] = {.lex_state = 115}, + [356] = {.lex_state = 115}, + [357] = {.lex_state = 115}, + [358] = {.lex_state = 192}, + [359] = {.lex_state = 115}, + [360] = {.lex_state = 153}, + [361] = {.lex_state = 115}, + [362] = {.lex_state = 153}, + [363] = {.lex_state = 151}, + [364] = {.lex_state = 151}, + [365] = {.lex_state = 115}, + [366] = {.lex_state = 115}, + [367] = {.lex_state = 115}, + [368] = {.lex_state = 115}, + [369] = {.lex_state = 115}, + [370] = {.lex_state = 192}, + [371] = {.lex_state = 151}, + [372] = {.lex_state = 151}, + [373] = {.lex_state = 151}, + [374] = {.lex_state = 151}, + [375] = {.lex_state = 153}, + [376] = {.lex_state = 190}, + [377] = {.lex_state = 191}, + [378] = {.lex_state = 193}, + [379] = {.lex_state = 151}, + [380] = {.lex_state = 151}, + [381] = {.lex_state = 153}, + [382] = {.lex_state = 151}, + [383] = {.lex_state = 115}, + [384] = {.lex_state = 158}, + [385] = {.lex_state = 157}, + [386] = {.lex_state = 157}, + [387] = {.lex_state = 115}, + [388] = {.lex_state = 193}, + [389] = {.lex_state = 115}, + [390] = {.lex_state = 158}, + [391] = {.lex_state = 115}, + [392] = {.lex_state = 115}, + [393] = {.lex_state = 115}, + [394] = {.lex_state = 115}, + [395] = {.lex_state = 115}, + [396] = {.lex_state = 115}, [397] = {.lex_state = 115}, - [398] = {.lex_state = 144}, - [399] = {.lex_state = 144}, - [400] = {.lex_state = 151}, - [401] = {.lex_state = 144}, - [402] = {.lex_state = 144}, - [403] = {.lex_state = 144}, - [404] = {.lex_state = 196}, - [405] = {.lex_state = 196}, - [406] = {.lex_state = 196}, - [407] = {.lex_state = 135}, - [408] = {.lex_state = 151}, - [409] = {.lex_state = 135}, - [410] = {.lex_state = 144}, - [411] = {.lex_state = 151}, - [412] = {.lex_state = 135}, - [413] = {.lex_state = 144}, - [414] = {.lex_state = 197}, - [415] = {.lex_state = 135}, - [416] = {.lex_state = 135}, - [417] = {.lex_state = 135}, - [418] = {.lex_state = 135}, - [419] = {.lex_state = 135}, - [420] = {.lex_state = 135}, - [421] = {.lex_state = 135}, - [422] = {.lex_state = 135}, - [423] = {.lex_state = 135}, - [424] = {.lex_state = 135}, - [425] = {.lex_state = 135}, - [426] = {.lex_state = 135}, - [427] = {.lex_state = 135}, - [428] = {.lex_state = 196}, - [429] = {.lex_state = 115}, - [430] = {.lex_state = 196}, - [431] = {.lex_state = 151}, - [432] = {.lex_state = 144}, - [433] = {.lex_state = 144}, - [434] = {.lex_state = 165}, - [435] = {.lex_state = 188}, - [436] = {.lex_state = 186}, - [437] = {.lex_state = 165}, - [438] = {.lex_state = 186}, - [439] = {.lex_state = 186}, - [440] = {.lex_state = 186}, - [441] = {.lex_state = 186}, - [442] = {.lex_state = 186}, - [443] = {.lex_state = 186}, - [444] = {.lex_state = 165}, - [445] = {.lex_state = 135}, - [446] = {.lex_state = 194}, - [447] = {.lex_state = 183}, - [448] = {.lex_state = 194}, - [449] = {.lex_state = 185}, - [450] = {.lex_state = 135}, - [451] = {.lex_state = 135}, - [452] = {.lex_state = 135}, - [453] = {.lex_state = 135}, - [454] = {.lex_state = 135}, - [455] = {.lex_state = 135}, - [456] = {.lex_state = 135}, - [457] = {.lex_state = 135}, - [458] = {.lex_state = 135}, - [459] = {.lex_state = 135}, - [460] = {.lex_state = 135}, - [461] = {.lex_state = 135}, - [462] = {.lex_state = 194}, - [463] = {.lex_state = 185}, - [464] = {.lex_state = 185}, - [465] = {.lex_state = 144}, - [466] = {.lex_state = 196}, - [467] = {.lex_state = 135}, - [468] = {.lex_state = 115}, - [469] = {.lex_state = 151}, - [470] = {.lex_state = 151}, - [471] = {.lex_state = 135}, - [472] = {.lex_state = 186}, - [473] = {.lex_state = 132}, - [474] = {.lex_state = 186}, - [475] = {.lex_state = 149}, - [476] = {.lex_state = 149}, - [477] = {.lex_state = 149}, - [478] = {.lex_state = 150}, - [479] = {.lex_state = 149}, - [480] = {.lex_state = 171}, - [481] = {.lex_state = 149}, - [482] = {.lex_state = 171}, - [483] = {.lex_state = 168}, - [484] = {.lex_state = 145}, - [485] = {.lex_state = 168}, - [486] = {.lex_state = 150}, - [487] = {.lex_state = 132}, - [488] = {.lex_state = 168}, - [489] = {.lex_state = 171}, - [490] = {.lex_state = 149}, - [491] = {.lex_state = 168}, - [492] = {.lex_state = 171}, - [493] = {.lex_state = 149}, - [494] = {.lex_state = 168}, - [495] = {.lex_state = 151}, - [496] = {.lex_state = 135}, - [497] = {.lex_state = 144}, - [498] = {.lex_state = 168}, - [499] = {.lex_state = 135}, - [500] = {.lex_state = 168}, - [501] = {.lex_state = 144}, - [502] = {.lex_state = 168}, - [503] = {.lex_state = 151}, - [504] = {.lex_state = 171}, - [505] = {.lex_state = 149}, + [398] = {.lex_state = 115}, + [399] = {.lex_state = 115}, + [400] = {.lex_state = 115}, + [401] = {.lex_state = 115}, + [402] = {.lex_state = 193}, + [403] = {.lex_state = 157}, + [404] = {.lex_state = 115}, + [405] = {.lex_state = 192}, + [406] = {.lex_state = 115}, + [407] = {.lex_state = 115}, + [408] = {.lex_state = 115}, + [409] = {.lex_state = 115}, + [410] = {.lex_state = 115}, + [411] = {.lex_state = 115}, + [412] = {.lex_state = 115}, + [413] = {.lex_state = 115}, + [414] = {.lex_state = 115}, + [415] = {.lex_state = 115}, + [416] = {.lex_state = 115}, + [417] = {.lex_state = 115}, + [418] = {.lex_state = 115}, + [419] = {.lex_state = 192}, + [420] = {.lex_state = 173}, + [421] = {.lex_state = 137}, + [422] = {.lex_state = 157}, + [423] = {.lex_state = 153}, + [424] = {.lex_state = 155}, + [425] = {.lex_state = 148}, + [426] = {.lex_state = 155}, + [427] = {.lex_state = 156}, + [428] = {.lex_state = 137}, + [429] = {.lex_state = 155}, + [430] = {.lex_state = 178}, + [431] = {.lex_state = 155}, + [432] = {.lex_state = 155}, + [433] = {.lex_state = 178}, + [434] = {.lex_state = 155}, + [435] = {.lex_state = 148}, + [436] = {.lex_state = 175}, + [437] = {.lex_state = 154}, + [438] = {.lex_state = 155}, + [439] = {.lex_state = 155}, + [440] = {.lex_state = 175}, + [441] = {.lex_state = 156}, + [442] = {.lex_state = 115}, + [443] = {.lex_state = 115}, + [444] = {.lex_state = 140}, + [445] = {.lex_state = 175}, + [446] = {.lex_state = 151}, + [447] = {.lex_state = 151}, + [448] = {.lex_state = 175}, + [449] = {.lex_state = 175}, + [450] = {.lex_state = 178}, + [451] = {.lex_state = 155}, + [452] = {.lex_state = 155}, + [453] = {.lex_state = 151}, + [454] = {.lex_state = 115}, + [455] = {.lex_state = 153}, + [456] = {.lex_state = 155}, + [457] = {.lex_state = 115}, + [458] = {.lex_state = 155}, + [459] = {.lex_state = 153}, + [460] = {.lex_state = 155}, + [461] = {.lex_state = 151}, + [462] = {.lex_state = 172}, + [463] = {.lex_state = 172}, + [464] = {.lex_state = 115}, + [465] = {.lex_state = 190}, + [466] = {.lex_state = 190}, + [467] = {.lex_state = 190}, + [468] = {.lex_state = 191}, + [469] = {.lex_state = 193}, + [470] = {.lex_state = 153}, + [471] = {.lex_state = 172}, + [472] = {.lex_state = 153}, + [473] = {.lex_state = 115}, + [474] = {.lex_state = 115}, + [475] = {.lex_state = 157}, + [476] = {.lex_state = 173}, + [477] = {.lex_state = 194}, + [478] = {.lex_state = 157}, + [479] = {.lex_state = 173}, + [480] = {.lex_state = 157}, + [481] = {.lex_state = 157}, + [482] = {.lex_state = 157}, + [483] = {.lex_state = 157}, + [484] = {.lex_state = 157}, + [485] = {.lex_state = 157}, + [486] = {.lex_state = 157}, + [487] = {.lex_state = 157}, + [488] = {.lex_state = 157}, + [489] = {.lex_state = 157}, + [490] = {.lex_state = 193}, + [491] = {.lex_state = 191}, + [492] = {.lex_state = 191}, + [493] = {.lex_state = 191}, + [494] = {.lex_state = 191}, + [495] = {.lex_state = 115}, + [496] = {.lex_state = 151}, + [497] = {.lex_state = 158}, + [498] = {.lex_state = 115}, + [499] = {.lex_state = 115}, + [500] = {.lex_state = 115}, + [501] = {.lex_state = 115}, + [502] = {.lex_state = 115}, + [503] = {.lex_state = 115}, + [504] = {.lex_state = 115}, + [505] = {.lex_state = 115}, [506] = {.lex_state = 151}, - [507] = {.lex_state = 149}, - [508] = {.lex_state = 144}, - [509] = {.lex_state = 149}, - [510] = {.lex_state = 144}, - [511] = {.lex_state = 149}, - [512] = {.lex_state = 183}, - [513] = {.lex_state = 194}, - [514] = {.lex_state = 165}, - [515] = {.lex_state = 135}, - [516] = {.lex_state = 151}, - [517] = {.lex_state = 135}, - [518] = {.lex_state = 135}, - [519] = {.lex_state = 135}, - [520] = {.lex_state = 135}, - [521] = {.lex_state = 135}, - [522] = {.lex_state = 135}, - [523] = {.lex_state = 135}, - [524] = {.lex_state = 135}, - [525] = {.lex_state = 135}, - [526] = {.lex_state = 135}, - [527] = {.lex_state = 135}, - [528] = {.lex_state = 135}, - [529] = {.lex_state = 151}, - [530] = {.lex_state = 135}, + [507] = {.lex_state = 151}, + [508] = {.lex_state = 151}, + [509] = {.lex_state = 140}, + [510] = {.lex_state = 151}, + [511] = {.lex_state = 140}, + [512] = {.lex_state = 151}, + [513] = {.lex_state = 151}, + [514] = {.lex_state = 151}, + [515] = {.lex_state = 196}, + [516] = {.lex_state = 178}, + [517] = {.lex_state = 128}, + [518] = {.lex_state = 178}, + [519] = {.lex_state = 178}, + [520] = {.lex_state = 196}, + [521] = {.lex_state = 178}, + [522] = {.lex_state = 178}, + [523] = {.lex_state = 115}, + [524] = {.lex_state = 157}, + [525] = {.lex_state = 194}, + [526] = {.lex_state = 115}, + [527] = {.lex_state = 115}, + [528] = {.lex_state = 115}, + [529] = {.lex_state = 115}, + [530] = {.lex_state = 115}, [531] = {.lex_state = 115}, - [532] = {.lex_state = 171}, - [533] = {.lex_state = 171}, - [534] = {.lex_state = 187}, - [535] = {.lex_state = 171}, - [536] = {.lex_state = 171}, - [537] = {.lex_state = 187}, - [538] = {.lex_state = 171}, - [539] = {.lex_state = 135}, - [540] = {.lex_state = 188}, - [541] = {.lex_state = 188}, - [542] = {.lex_state = 165}, - [543] = {.lex_state = 135}, - [544] = {.lex_state = 151}, - [545] = {.lex_state = 187}, - [546] = {.lex_state = 135}, - [547] = {.lex_state = 135}, - [548] = {.lex_state = 135}, - [549] = {.lex_state = 135}, - [550] = {.lex_state = 135}, - [551] = {.lex_state = 135}, - [552] = {.lex_state = 135}, - [553] = {.lex_state = 135}, - [554] = {.lex_state = 135}, - [555] = {.lex_state = 135}, - [556] = {.lex_state = 135}, - [557] = {.lex_state = 135}, - [558] = {.lex_state = 151}, - [559] = {.lex_state = 184}, - [560] = {.lex_state = 188}, - [561] = {.lex_state = 185}, - [562] = {.lex_state = 194}, - [563] = {.lex_state = 151}, - [564] = {.lex_state = 135}, - [565] = {.lex_state = 184}, - [566] = {.lex_state = 186}, - [567] = {.lex_state = 186}, - [568] = {.lex_state = 165}, - [569] = {.lex_state = 186}, - [570] = {.lex_state = 194}, - [571] = {.lex_state = 185}, - [572] = {.lex_state = 144}, - [573] = {.lex_state = 145}, - [574] = {.lex_state = 123}, - [575] = {.lex_state = 144}, + [532] = {.lex_state = 115}, + [533] = {.lex_state = 151}, + [534] = {.lex_state = 151}, + [535] = {.lex_state = 196}, + [536] = {.lex_state = 115}, + [537] = {.lex_state = 191}, + [538] = {.lex_state = 115}, + [539] = {.lex_state = 194}, + [540] = {.lex_state = 192}, + [541] = {.lex_state = 192}, + [542] = {.lex_state = 192}, + [543] = {.lex_state = 115}, + [544] = {.lex_state = 155}, + [545] = {.lex_state = 155}, + [546] = {.lex_state = 157}, + [547] = {.lex_state = 115}, + [548] = {.lex_state = 153}, + [549] = {.lex_state = 153}, + [550] = {.lex_state = 192}, + [551] = {.lex_state = 153}, + [552] = {.lex_state = 153}, + [553] = {.lex_state = 115}, + [554] = {.lex_state = 115}, + [555] = {.lex_state = 115}, + [556] = {.lex_state = 192}, + [557] = {.lex_state = 115}, + [558] = {.lex_state = 153}, + [559] = {.lex_state = 115}, + [560] = {.lex_state = 192}, + [561] = {.lex_state = 115}, + [562] = {.lex_state = 153}, + [563] = {.lex_state = 153}, + [564] = {.lex_state = 151}, + [565] = {.lex_state = 153}, + [566] = {.lex_state = 153}, + [567] = {.lex_state = 151}, + [568] = {.lex_state = 115}, + [569] = {.lex_state = 151}, + [570] = {.lex_state = 153}, + [571] = {.lex_state = 151}, + [572] = {.lex_state = 153}, + [573] = {.lex_state = 115}, + [574] = {.lex_state = 115}, + [575] = {.lex_state = 115}, [576] = {.lex_state = 115}, - [577] = {.lex_state = 168}, - [578] = {.lex_state = 123}, - [579] = {.lex_state = 149}, - [580] = {.lex_state = 135}, - [581] = {.lex_state = 135}, - [582] = {.lex_state = 135}, - [583] = {.lex_state = 184}, - [584] = {.lex_state = 135}, - [585] = {.lex_state = 144}, - [586] = {.lex_state = 135}, - [587] = {.lex_state = 144}, - [588] = {.lex_state = 144}, - [589] = {.lex_state = 144}, - [590] = {.lex_state = 115}, - [591] = {.lex_state = 184}, - [592] = {.lex_state = 171}, - [593] = {.lex_state = 144}, - [594] = {.lex_state = 151}, - [595] = {.lex_state = 144}, - [596] = {.lex_state = 149}, - [597] = {.lex_state = 144}, - [598] = {.lex_state = 171}, - [599] = {.lex_state = 149}, - [600] = {.lex_state = 165}, - [601] = {.lex_state = 135}, - [602] = {.lex_state = 186}, - [603] = {.lex_state = 135}, - [604] = {.lex_state = 196}, - [605] = {.lex_state = 135}, - [606] = {.lex_state = 135}, - [607] = {.lex_state = 135}, - [608] = {.lex_state = 135}, - [609] = {.lex_state = 135}, - [610] = {.lex_state = 135}, - [611] = {.lex_state = 135}, - [612] = {.lex_state = 135}, - [613] = {.lex_state = 135}, - [614] = {.lex_state = 135}, - [615] = {.lex_state = 135}, - [616] = {.lex_state = 135}, - [617] = {.lex_state = 135}, - [618] = {.lex_state = 186}, - [619] = {.lex_state = 186}, - [620] = {.lex_state = 165}, - [621] = {.lex_state = 135}, - [622] = {.lex_state = 135}, - [623] = {.lex_state = 135}, - [624] = {.lex_state = 184}, - [625] = {.lex_state = 135}, - [626] = {.lex_state = 135}, - [627] = {.lex_state = 184}, - [628] = {.lex_state = 144}, - [629] = {.lex_state = 184}, - [630] = {.lex_state = 144}, - [631] = {.lex_state = 165}, - [632] = {.lex_state = 135}, - [633] = {.lex_state = 184}, - [634] = {.lex_state = 135}, - [635] = {.lex_state = 135}, - [636] = {.lex_state = 144}, - [637] = {.lex_state = 135}, - [638] = {.lex_state = 135}, - [639] = {.lex_state = 135}, - [640] = {.lex_state = 135}, - [641] = {.lex_state = 135}, - [642] = {.lex_state = 135}, - [643] = {.lex_state = 135}, - [644] = {.lex_state = 135}, - [645] = {.lex_state = 135}, - [646] = {.lex_state = 135}, - [647] = {.lex_state = 184}, - [648] = {.lex_state = 184}, - [649] = {.lex_state = 144}, - [650] = {.lex_state = 135}, - [651] = {.lex_state = 144}, - [652] = {.lex_state = 144}, - [653] = {.lex_state = 144}, - [654] = {.lex_state = 184}, - [655] = {.lex_state = 144}, - [656] = {.lex_state = 144}, - [657] = {.lex_state = 115}, - [658] = {.lex_state = 144}, - [659] = {.lex_state = 144}, - [660] = {.lex_state = 135}, - [661] = {.lex_state = 144}, - [662] = {.lex_state = 151}, - [663] = {.lex_state = 151}, - [664] = {.lex_state = 144}, - [665] = {.lex_state = 144}, - [666] = {.lex_state = 165}, - [667] = {.lex_state = 196}, - [668] = {.lex_state = 144}, - [669] = {.lex_state = 151}, - [670] = {.lex_state = 183}, - [671] = {.lex_state = 196}, - [672] = {.lex_state = 186}, - [673] = {.lex_state = 196}, - [674] = {.lex_state = 194}, - [675] = {.lex_state = 151}, - [676] = {.lex_state = 184}, - [677] = {.lex_state = 151}, - [678] = {.lex_state = 151}, - [679] = {.lex_state = 151}, - [680] = {.lex_state = 151}, + [577] = {.lex_state = 115}, + [578] = {.lex_state = 115}, + [579] = {.lex_state = 115}, + [580] = {.lex_state = 115}, + [581] = {.lex_state = 115}, + [582] = {.lex_state = 115}, + [583] = {.lex_state = 115}, + [584] = {.lex_state = 115}, + [585] = {.lex_state = 115}, + [586] = {.lex_state = 151}, + [587] = {.lex_state = 153}, + [588] = {.lex_state = 153}, + [589] = {.lex_state = 190}, + [590] = {.lex_state = 193}, + [591] = {.lex_state = 157}, + [592] = {.lex_state = 158}, + [593] = {.lex_state = 157}, + [594] = {.lex_state = 140}, + [595] = {.lex_state = 157}, + [596] = {.lex_state = 193}, + [597] = {.lex_state = 192}, + [598] = {.lex_state = 193}, + [599] = {.lex_state = 193}, + [600] = {.lex_state = 193}, + [601] = {.lex_state = 193}, + [602] = {.lex_state = 193}, + [603] = {.lex_state = 193}, + [604] = {.lex_state = 193}, + [605] = {.lex_state = 193}, + [606] = {.lex_state = 193}, + [607] = {.lex_state = 193}, + [608] = {.lex_state = 140}, + [609] = {.lex_state = 157}, + [610] = {.lex_state = 192}, + [611] = {.lex_state = 192}, + [612] = {.lex_state = 192}, + [613] = {.lex_state = 192}, + [614] = {.lex_state = 192}, + [615] = {.lex_state = 192}, + [616] = {.lex_state = 192}, + [617] = {.lex_state = 192}, + [618] = {.lex_state = 192}, + [619] = {.lex_state = 192}, + [620] = {.lex_state = 192}, + [621] = {.lex_state = 192}, + [622] = {.lex_state = 157}, + [623] = {.lex_state = 137}, + [624] = {.lex_state = 157}, + [625] = {.lex_state = 155}, + [626] = {.lex_state = 155}, + [627] = {.lex_state = 155}, + [628] = {.lex_state = 156}, + [629] = {.lex_state = 155}, + [630] = {.lex_state = 178}, + [631] = {.lex_state = 155}, + [632] = {.lex_state = 178}, + [633] = {.lex_state = 175}, + [634] = {.lex_state = 148}, + [635] = {.lex_state = 175}, + [636] = {.lex_state = 156}, + [637] = {.lex_state = 137}, + [638] = {.lex_state = 175}, + [639] = {.lex_state = 178}, + [640] = {.lex_state = 155}, + [641] = {.lex_state = 175}, + [642] = {.lex_state = 178}, + [643] = {.lex_state = 155}, + [644] = {.lex_state = 175}, + [645] = {.lex_state = 151}, + [646] = {.lex_state = 115}, + [647] = {.lex_state = 153}, + [648] = {.lex_state = 175}, + [649] = {.lex_state = 115}, + [650] = {.lex_state = 175}, + [651] = {.lex_state = 153}, + [652] = {.lex_state = 175}, + [653] = {.lex_state = 151}, + [654] = {.lex_state = 178}, + [655] = {.lex_state = 155}, + [656] = {.lex_state = 151}, + [657] = {.lex_state = 155}, + [658] = {.lex_state = 153}, + [659] = {.lex_state = 155}, + [660] = {.lex_state = 153}, + [661] = {.lex_state = 155}, + [662] = {.lex_state = 190}, + [663] = {.lex_state = 193}, + [664] = {.lex_state = 157}, + [665] = {.lex_state = 194}, + [666] = {.lex_state = 157}, + [667] = {.lex_state = 157}, + [668] = {.lex_state = 157}, + [669] = {.lex_state = 157}, + [670] = {.lex_state = 157}, + [671] = {.lex_state = 157}, + [672] = {.lex_state = 157}, + [673] = {.lex_state = 191}, + [674] = {.lex_state = 191}, + [675] = {.lex_state = 193}, + [676] = {.lex_state = 157}, + [677] = {.lex_state = 158}, + [678] = {.lex_state = 157}, + [679] = {.lex_state = 193}, + [680] = {.lex_state = 115}, [681] = {.lex_state = 151}, - [682] = {.lex_state = 151}, - [683] = {.lex_state = 151}, - [684] = {.lex_state = 151}, - [685] = {.lex_state = 151}, - [686] = {.lex_state = 196}, - [687] = {.lex_state = 151}, - [688] = {.lex_state = 186}, - [689] = {.lex_state = 188}, - [690] = {.lex_state = 186}, - [691] = {.lex_state = 165}, - [692] = {.lex_state = 186}, - [693] = {.lex_state = 186}, - [694] = {.lex_state = 186}, - [695] = {.lex_state = 186}, - [696] = {.lex_state = 135}, - [697] = {.lex_state = 165}, - [698] = {.lex_state = 183}, - [699] = {.lex_state = 185}, - [700] = {.lex_state = 194}, - [701] = {.lex_state = 184}, - [702] = {.lex_state = 194}, - [703] = {.lex_state = 194}, - [704] = {.lex_state = 194}, - [705] = {.lex_state = 194}, - [706] = {.lex_state = 194}, - [707] = {.lex_state = 194}, - [708] = {.lex_state = 194}, - [709] = {.lex_state = 194}, + [682] = {.lex_state = 140}, + [683] = {.lex_state = 195}, + [684] = {.lex_state = 115}, + [685] = {.lex_state = 115}, + [686] = {.lex_state = 115}, + [687] = {.lex_state = 115}, + [688] = {.lex_state = 115}, + [689] = {.lex_state = 115}, + [690] = {.lex_state = 115}, + [691] = {.lex_state = 115}, + [692] = {.lex_state = 115}, + [693] = {.lex_state = 115}, + [694] = {.lex_state = 115}, + [695] = {.lex_state = 115}, + [696] = {.lex_state = 151}, + [697] = {.lex_state = 151}, + [698] = {.lex_state = 140}, + [699] = {.lex_state = 140}, + [700] = {.lex_state = 140}, + [701] = {.lex_state = 115}, + [702] = {.lex_state = 178}, + [703] = {.lex_state = 178}, + [704] = {.lex_state = 196}, + [705] = {.lex_state = 178}, + [706] = {.lex_state = 178}, + [707] = {.lex_state = 196}, + [708] = {.lex_state = 178}, + [709] = {.lex_state = 115}, [710] = {.lex_state = 194}, [711] = {.lex_state = 194}, - [712] = {.lex_state = 185}, - [713] = {.lex_state = 196}, - [714] = {.lex_state = 194}, - [715] = {.lex_state = 135}, - [716] = {.lex_state = 195}, - [717] = {.lex_state = 151}, - [718] = {.lex_state = 135}, - [719] = {.lex_state = 135}, - [720] = {.lex_state = 149}, - [721] = {.lex_state = 149}, - [722] = {.lex_state = 149}, - [723] = {.lex_state = 168}, - [724] = {.lex_state = 168}, - [725] = {.lex_state = 168}, - [726] = {.lex_state = 150}, - [727] = {.lex_state = 168}, - [728] = {.lex_state = 171}, - [729] = {.lex_state = 168}, - [730] = {.lex_state = 171}, - [731] = {.lex_state = 168}, - [732] = {.lex_state = 151}, - [733] = {.lex_state = 168}, - [734] = {.lex_state = 144}, - [735] = {.lex_state = 168}, - [736] = {.lex_state = 144}, - [737] = {.lex_state = 168}, - [738] = {.lex_state = 149}, - [739] = {.lex_state = 149}, - [740] = {.lex_state = 149}, - [741] = {.lex_state = 183}, - [742] = {.lex_state = 135}, - [743] = {.lex_state = 165}, - [744] = {.lex_state = 151}, - [745] = {.lex_state = 184}, - [746] = {.lex_state = 151}, - [747] = {.lex_state = 151}, - [748] = {.lex_state = 151}, - [749] = {.lex_state = 151}, + [712] = {.lex_state = 157}, + [713] = {.lex_state = 115}, + [714] = {.lex_state = 151}, + [715] = {.lex_state = 196}, + [716] = {.lex_state = 115}, + [717] = {.lex_state = 115}, + [718] = {.lex_state = 115}, + [719] = {.lex_state = 115}, + [720] = {.lex_state = 115}, + [721] = {.lex_state = 115}, + [722] = {.lex_state = 115}, + [723] = {.lex_state = 115}, + [724] = {.lex_state = 115}, + [725] = {.lex_state = 115}, + [726] = {.lex_state = 115}, + [727] = {.lex_state = 115}, + [728] = {.lex_state = 151}, + [729] = {.lex_state = 192}, + [730] = {.lex_state = 194}, + [731] = {.lex_state = 191}, + [732] = {.lex_state = 193}, + [733] = {.lex_state = 151}, + [734] = {.lex_state = 115}, + [735] = {.lex_state = 192}, + [736] = {.lex_state = 155}, + [737] = {.lex_state = 128}, + [738] = {.lex_state = 153}, + [739] = {.lex_state = 115}, + [740] = {.lex_state = 175}, + [741] = {.lex_state = 128}, + [742] = {.lex_state = 115}, + [743] = {.lex_state = 115}, + [744] = {.lex_state = 115}, + [745] = {.lex_state = 192}, + [746] = {.lex_state = 115}, + [747] = {.lex_state = 153}, + [748] = {.lex_state = 115}, + [749] = {.lex_state = 153}, [750] = {.lex_state = 151}, [751] = {.lex_state = 151}, - [752] = {.lex_state = 151}, - [753] = {.lex_state = 151}, - [754] = {.lex_state = 151}, + [752] = {.lex_state = 115}, + [753] = {.lex_state = 192}, + [754] = {.lex_state = 178}, [755] = {.lex_state = 151}, - [756] = {.lex_state = 171}, - [757] = {.lex_state = 171}, - [758] = {.lex_state = 171}, - [759] = {.lex_state = 187}, - [760] = {.lex_state = 187}, - [761] = {.lex_state = 135}, - [762] = {.lex_state = 165}, - [763] = {.lex_state = 151}, - [764] = {.lex_state = 184}, - [765] = {.lex_state = 151}, - [766] = {.lex_state = 151}, - [767] = {.lex_state = 151}, - [768] = {.lex_state = 151}, - [769] = {.lex_state = 151}, - [770] = {.lex_state = 151}, - [771] = {.lex_state = 151}, - [772] = {.lex_state = 151}, - [773] = {.lex_state = 151}, - [774] = {.lex_state = 151}, - [775] = {.lex_state = 188}, - [776] = {.lex_state = 194}, - [777] = {.lex_state = 187}, - [778] = {.lex_state = 151}, - [779] = {.lex_state = 186}, - [780] = {.lex_state = 194}, - [781] = {.lex_state = 144}, - [782] = {.lex_state = 149}, - [783] = {.lex_state = 149}, - [784] = {.lex_state = 123}, + [756] = {.lex_state = 151}, + [757] = {.lex_state = 151}, + [758] = {.lex_state = 155}, + [759] = {.lex_state = 153}, + [760] = {.lex_state = 178}, + [761] = {.lex_state = 155}, + [762] = {.lex_state = 140}, + [763] = {.lex_state = 157}, + [764] = {.lex_state = 157}, + [765] = {.lex_state = 115}, + [766] = {.lex_state = 115}, + [767] = {.lex_state = 115}, + [768] = {.lex_state = 192}, + [769] = {.lex_state = 115}, + [770] = {.lex_state = 115}, + [771] = {.lex_state = 192}, + [772] = {.lex_state = 153}, + [773] = {.lex_state = 192}, + [774] = {.lex_state = 153}, + [775] = {.lex_state = 153}, + [776] = {.lex_state = 192}, + [777] = {.lex_state = 153}, + [778] = {.lex_state = 115}, + [779] = {.lex_state = 153}, + [780] = {.lex_state = 153}, + [781] = {.lex_state = 153}, + [782] = {.lex_state = 192}, + [783] = {.lex_state = 153}, + [784] = {.lex_state = 153}, [785] = {.lex_state = 115}, - [786] = {.lex_state = 168}, - [787] = {.lex_state = 135}, - [788] = {.lex_state = 135}, - [789] = {.lex_state = 135}, - [790] = {.lex_state = 184}, - [791] = {.lex_state = 135}, - [792] = {.lex_state = 144}, - [793] = {.lex_state = 135}, - [794] = {.lex_state = 144}, - [795] = {.lex_state = 144}, - [796] = {.lex_state = 144}, - [797] = {.lex_state = 115}, - [798] = {.lex_state = 184}, - [799] = {.lex_state = 144}, + [786] = {.lex_state = 153}, + [787] = {.lex_state = 153}, + [788] = {.lex_state = 115}, + [789] = {.lex_state = 153}, + [790] = {.lex_state = 151}, + [791] = {.lex_state = 151}, + [792] = {.lex_state = 153}, + [793] = {.lex_state = 153}, + [794] = {.lex_state = 157}, + [795] = {.lex_state = 153}, + [796] = {.lex_state = 151}, + [797] = {.lex_state = 151}, + [798] = {.lex_state = 192}, + [799] = {.lex_state = 151}, [800] = {.lex_state = 151}, - [801] = {.lex_state = 144}, - [802] = {.lex_state = 168}, - [803] = {.lex_state = 149}, - [804] = {.lex_state = 144}, - [805] = {.lex_state = 144}, - [806] = {.lex_state = 184}, - [807] = {.lex_state = 144}, - [808] = {.lex_state = 144}, - [809] = {.lex_state = 115}, - [810] = {.lex_state = 144}, - [811] = {.lex_state = 149}, - [812] = {.lex_state = 151}, - [813] = {.lex_state = 149}, - [814] = {.lex_state = 149}, - [815] = {.lex_state = 144}, - [816] = {.lex_state = 144}, - [817] = {.lex_state = 144}, - [818] = {.lex_state = 151}, - [819] = {.lex_state = 149}, - [820] = {.lex_state = 171}, - [821] = {.lex_state = 149}, - [822] = {.lex_state = 144}, - [823] = {.lex_state = 171}, - [824] = {.lex_state = 135}, - [825] = {.lex_state = 165}, - [826] = {.lex_state = 186}, - [827] = {.lex_state = 186}, - [828] = {.lex_state = 184}, - [829] = {.lex_state = 186}, - [830] = {.lex_state = 186}, - [831] = {.lex_state = 186}, - [832] = {.lex_state = 186}, - [833] = {.lex_state = 186}, - [834] = {.lex_state = 186}, - [835] = {.lex_state = 186}, - [836] = {.lex_state = 186}, - [837] = {.lex_state = 186}, - [838] = {.lex_state = 196}, - [839] = {.lex_state = 196}, - [840] = {.lex_state = 186}, - [841] = {.lex_state = 144}, - [842] = {.lex_state = 144}, - [843] = {.lex_state = 144}, - [844] = {.lex_state = 184}, - [845] = {.lex_state = 144}, - [846] = {.lex_state = 144}, - [847] = {.lex_state = 144}, - [848] = {.lex_state = 144}, - [849] = {.lex_state = 144}, - [850] = {.lex_state = 135}, - [851] = {.lex_state = 165}, - [852] = {.lex_state = 184}, - [853] = {.lex_state = 144}, - [854] = {.lex_state = 184}, - [855] = {.lex_state = 184}, - [856] = {.lex_state = 184}, - [857] = {.lex_state = 184}, - [858] = {.lex_state = 184}, - [859] = {.lex_state = 184}, - [860] = {.lex_state = 184}, - [861] = {.lex_state = 184}, - [862] = {.lex_state = 184}, - [863] = {.lex_state = 184}, - [864] = {.lex_state = 184}, - [865] = {.lex_state = 135}, - [866] = {.lex_state = 135}, - [867] = {.lex_state = 135}, - [868] = {.lex_state = 184}, - [869] = {.lex_state = 135}, - [870] = {.lex_state = 135}, - [871] = {.lex_state = 184}, - [872] = {.lex_state = 115}, - [873] = {.lex_state = 144}, - [874] = {.lex_state = 184}, - [875] = {.lex_state = 135}, - [876] = {.lex_state = 144}, + [801] = {.lex_state = 151}, + [802] = {.lex_state = 151}, + [803] = {.lex_state = 151}, + [804] = {.lex_state = 151}, + [805] = {.lex_state = 151}, + [806] = {.lex_state = 151}, + [807] = {.lex_state = 151}, + [808] = {.lex_state = 151}, + [809] = {.lex_state = 190}, + [810] = {.lex_state = 193}, + [811] = {.lex_state = 115}, + [812] = {.lex_state = 192}, + [813] = {.lex_state = 115}, + [814] = {.lex_state = 155}, + [815] = {.lex_state = 155}, + [816] = {.lex_state = 155}, + [817] = {.lex_state = 175}, + [818] = {.lex_state = 175}, + [819] = {.lex_state = 175}, + [820] = {.lex_state = 156}, + [821] = {.lex_state = 175}, + [822] = {.lex_state = 178}, + [823] = {.lex_state = 175}, + [824] = {.lex_state = 178}, + [825] = {.lex_state = 175}, + [826] = {.lex_state = 151}, + [827] = {.lex_state = 175}, + [828] = {.lex_state = 153}, + [829] = {.lex_state = 175}, + [830] = {.lex_state = 153}, + [831] = {.lex_state = 175}, + [832] = {.lex_state = 155}, + [833] = {.lex_state = 155}, + [834] = {.lex_state = 155}, + [835] = {.lex_state = 190}, + [836] = {.lex_state = 157}, + [837] = {.lex_state = 157}, + [838] = {.lex_state = 157}, + [839] = {.lex_state = 140}, + [840] = {.lex_state = 140}, + [841] = {.lex_state = 157}, + [842] = {.lex_state = 158}, + [843] = {.lex_state = 151}, + [844] = {.lex_state = 151}, + [845] = {.lex_state = 151}, + [846] = {.lex_state = 192}, + [847] = {.lex_state = 151}, + [848] = {.lex_state = 151}, + [849] = {.lex_state = 151}, + [850] = {.lex_state = 151}, + [851] = {.lex_state = 151}, + [852] = {.lex_state = 151}, + [853] = {.lex_state = 151}, + [854] = {.lex_state = 151}, + [855] = {.lex_state = 151}, + [856] = {.lex_state = 195}, + [857] = {.lex_state = 151}, + [858] = {.lex_state = 151}, + [859] = {.lex_state = 151}, + [860] = {.lex_state = 151}, + [861] = {.lex_state = 178}, + [862] = {.lex_state = 178}, + [863] = {.lex_state = 178}, + [864] = {.lex_state = 196}, + [865] = {.lex_state = 196}, + [866] = {.lex_state = 140}, + [867] = {.lex_state = 157}, + [868] = {.lex_state = 151}, + [869] = {.lex_state = 192}, + [870] = {.lex_state = 151}, + [871] = {.lex_state = 151}, + [872] = {.lex_state = 151}, + [873] = {.lex_state = 151}, + [874] = {.lex_state = 151}, + [875] = {.lex_state = 151}, + [876] = {.lex_state = 151}, [877] = {.lex_state = 151}, - [878] = {.lex_state = 144}, - [879] = {.lex_state = 197}, - [880] = {.lex_state = 151}, - [881] = {.lex_state = 144}, - [882] = {.lex_state = 151}, - [883] = {.lex_state = 135}, - [884] = {.lex_state = 196}, - [885] = {.lex_state = 186}, - [886] = {.lex_state = 196}, - [887] = {.lex_state = 135}, - [888] = {.lex_state = 165}, - [889] = {.lex_state = 186}, - [890] = {.lex_state = 194}, - [891] = {.lex_state = 135}, - [892] = {.lex_state = 135}, - [893] = {.lex_state = 196}, - [894] = {.lex_state = 151}, - [895] = {.lex_state = 151}, - [896] = {.lex_state = 195}, + [878] = {.lex_state = 151}, + [879] = {.lex_state = 151}, + [880] = {.lex_state = 194}, + [881] = {.lex_state = 193}, + [882] = {.lex_state = 196}, + [883] = {.lex_state = 151}, + [884] = {.lex_state = 155}, + [885] = {.lex_state = 155}, + [886] = {.lex_state = 175}, + [887] = {.lex_state = 128}, + [888] = {.lex_state = 115}, + [889] = {.lex_state = 115}, + [890] = {.lex_state = 115}, + [891] = {.lex_state = 115}, + [892] = {.lex_state = 192}, + [893] = {.lex_state = 115}, + [894] = {.lex_state = 153}, + [895] = {.lex_state = 115}, + [896] = {.lex_state = 153}, [897] = {.lex_state = 151}, [898] = {.lex_state = 151}, - [899] = {.lex_state = 151}, - [900] = {.lex_state = 168}, - [901] = {.lex_state = 168}, - [902] = {.lex_state = 168}, - [903] = {.lex_state = 168}, - [904] = {.lex_state = 168}, - [905] = {.lex_state = 168}, - [906] = {.lex_state = 151}, - [907] = {.lex_state = 135}, - [908] = {.lex_state = 171}, - [909] = {.lex_state = 151}, - [910] = {.lex_state = 135}, - [911] = {.lex_state = 188}, - [912] = {.lex_state = 187}, - [913] = {.lex_state = 186}, - [914] = {.lex_state = 149}, - [915] = {.lex_state = 171}, - [916] = {.lex_state = 149}, - [917] = {.lex_state = 149}, - [918] = {.lex_state = 171}, - [919] = {.lex_state = 149}, - [920] = {.lex_state = 149}, - [921] = {.lex_state = 149}, - [922] = {.lex_state = 144}, - [923] = {.lex_state = 144}, - [924] = {.lex_state = 184}, - [925] = {.lex_state = 144}, - [926] = {.lex_state = 144}, - [927] = {.lex_state = 115}, - [928] = {.lex_state = 144}, - [929] = {.lex_state = 168}, - [930] = {.lex_state = 151}, - [931] = {.lex_state = 168}, - [932] = {.lex_state = 168}, - [933] = {.lex_state = 144}, - [934] = {.lex_state = 144}, - [935] = {.lex_state = 151}, - [936] = {.lex_state = 168}, - [937] = {.lex_state = 168}, - [938] = {.lex_state = 171}, - [939] = {.lex_state = 149}, - [940] = {.lex_state = 135}, - [941] = {.lex_state = 135}, - [942] = {.lex_state = 135}, - [943] = {.lex_state = 184}, - [944] = {.lex_state = 135}, - [945] = {.lex_state = 135}, - [946] = {.lex_state = 184}, - [947] = {.lex_state = 149}, - [948] = {.lex_state = 184}, - [949] = {.lex_state = 149}, - [950] = {.lex_state = 144}, - [951] = {.lex_state = 184}, - [952] = {.lex_state = 149}, - [953] = {.lex_state = 135}, - [954] = {.lex_state = 149}, - [955] = {.lex_state = 135}, - [956] = {.lex_state = 144}, - [957] = {.lex_state = 151}, - [958] = {.lex_state = 149}, - [959] = {.lex_state = 149}, - [960] = {.lex_state = 149}, - [961] = {.lex_state = 144}, - [962] = {.lex_state = 144}, - [963] = {.lex_state = 186}, - [964] = {.lex_state = 135}, - [965] = {.lex_state = 144}, - [966] = {.lex_state = 144}, - [967] = {.lex_state = 184}, - [968] = {.lex_state = 144}, + [899] = {.lex_state = 115}, + [900] = {.lex_state = 192}, + [901] = {.lex_state = 151}, + [902] = {.lex_state = 151}, + [903] = {.lex_state = 151}, + [904] = {.lex_state = 175}, + [905] = {.lex_state = 155}, + [906] = {.lex_state = 153}, + [907] = {.lex_state = 153}, + [908] = {.lex_state = 192}, + [909] = {.lex_state = 153}, + [910] = {.lex_state = 153}, + [911] = {.lex_state = 115}, + [912] = {.lex_state = 153}, + [913] = {.lex_state = 155}, + [914] = {.lex_state = 151}, + [915] = {.lex_state = 155}, + [916] = {.lex_state = 155}, + [917] = {.lex_state = 151}, + [918] = {.lex_state = 153}, + [919] = {.lex_state = 153}, + [920] = {.lex_state = 151}, + [921] = {.lex_state = 155}, + [922] = {.lex_state = 178}, + [923] = {.lex_state = 155}, + [924] = {.lex_state = 153}, + [925] = {.lex_state = 178}, + [926] = {.lex_state = 153}, + [927] = {.lex_state = 153}, + [928] = {.lex_state = 153}, + [929] = {.lex_state = 192}, + [930] = {.lex_state = 153}, + [931] = {.lex_state = 153}, + [932] = {.lex_state = 153}, + [933] = {.lex_state = 153}, + [934] = {.lex_state = 153}, + [935] = {.lex_state = 153}, + [936] = {.lex_state = 115}, + [937] = {.lex_state = 115}, + [938] = {.lex_state = 115}, + [939] = {.lex_state = 192}, + [940] = {.lex_state = 115}, + [941] = {.lex_state = 115}, + [942] = {.lex_state = 192}, + [943] = {.lex_state = 115}, + [944] = {.lex_state = 153}, + [945] = {.lex_state = 192}, + [946] = {.lex_state = 115}, + [947] = {.lex_state = 153}, + [948] = {.lex_state = 151}, + [949] = {.lex_state = 153}, + [950] = {.lex_state = 171}, + [951] = {.lex_state = 151}, + [952] = {.lex_state = 153}, + [953] = {.lex_state = 151}, + [954] = {.lex_state = 115}, + [955] = {.lex_state = 193}, + [956] = {.lex_state = 192}, + [957] = {.lex_state = 175}, + [958] = {.lex_state = 175}, + [959] = {.lex_state = 175}, + [960] = {.lex_state = 175}, + [961] = {.lex_state = 175}, + [962] = {.lex_state = 175}, + [963] = {.lex_state = 157}, + [964] = {.lex_state = 151}, + [965] = {.lex_state = 115}, + [966] = {.lex_state = 158}, + [967] = {.lex_state = 140}, + [968] = {.lex_state = 178}, [969] = {.lex_state = 151}, - [970] = {.lex_state = 144}, - [971] = {.lex_state = 184}, - [972] = {.lex_state = 135}, - [973] = {.lex_state = 144}, - [974] = {.lex_state = 144}, - [975] = {.lex_state = 184}, - [976] = {.lex_state = 144}, - [977] = {.lex_state = 144}, - [978] = {.lex_state = 144}, - [979] = {.lex_state = 144}, - [980] = {.lex_state = 144}, - [981] = {.lex_state = 135}, - [982] = {.lex_state = 197}, - [983] = {.lex_state = 151}, - [984] = {.lex_state = 144}, - [985] = {.lex_state = 144}, - [986] = {.lex_state = 186}, - [987] = {.lex_state = 197}, - [988] = {.lex_state = 151}, - [989] = {.lex_state = 186}, - [990] = {.lex_state = 196}, - [991] = {.lex_state = 186}, + [970] = {.lex_state = 115}, + [971] = {.lex_state = 194}, + [972] = {.lex_state = 196}, + [973] = {.lex_state = 155}, + [974] = {.lex_state = 178}, + [975] = {.lex_state = 155}, + [976] = {.lex_state = 155}, + [977] = {.lex_state = 178}, + [978] = {.lex_state = 155}, + [979] = {.lex_state = 155}, + [980] = {.lex_state = 155}, + [981] = {.lex_state = 153}, + [982] = {.lex_state = 153}, + [983] = {.lex_state = 192}, + [984] = {.lex_state = 153}, + [985] = {.lex_state = 153}, + [986] = {.lex_state = 115}, + [987] = {.lex_state = 153}, + [988] = {.lex_state = 175}, + [989] = {.lex_state = 151}, + [990] = {.lex_state = 175}, + [991] = {.lex_state = 175}, [992] = {.lex_state = 151}, - [993] = {.lex_state = 165}, - [994] = {.lex_state = 194}, - [995] = {.lex_state = 196}, - [996] = {.lex_state = 135}, - [997] = {.lex_state = 151}, - [998] = {.lex_state = 151}, - [999] = {.lex_state = 149}, - [1000] = {.lex_state = 171}, - [1001] = {.lex_state = 149}, - [1002] = {.lex_state = 171}, - [1003] = {.lex_state = 168}, - [1004] = {.lex_state = 171}, - [1005] = {.lex_state = 149}, - [1006] = {.lex_state = 168}, - [1007] = {.lex_state = 171}, - [1008] = {.lex_state = 149}, - [1009] = {.lex_state = 135}, - [1010] = {.lex_state = 135}, - [1011] = {.lex_state = 135}, - [1012] = {.lex_state = 184}, - [1013] = {.lex_state = 135}, - [1014] = {.lex_state = 135}, - [1015] = {.lex_state = 184}, - [1016] = {.lex_state = 168}, - [1017] = {.lex_state = 184}, - [1018] = {.lex_state = 168}, - [1019] = {.lex_state = 144}, - [1020] = {.lex_state = 184}, - [1021] = {.lex_state = 168}, - [1022] = {.lex_state = 135}, - [1023] = {.lex_state = 168}, - [1024] = {.lex_state = 135}, - [1025] = {.lex_state = 144}, + [993] = {.lex_state = 153}, + [994] = {.lex_state = 151}, + [995] = {.lex_state = 175}, + [996] = {.lex_state = 175}, + [997] = {.lex_state = 178}, + [998] = {.lex_state = 155}, + [999] = {.lex_state = 115}, + [1000] = {.lex_state = 115}, + [1001] = {.lex_state = 115}, + [1002] = {.lex_state = 192}, + [1003] = {.lex_state = 115}, + [1004] = {.lex_state = 115}, + [1005] = {.lex_state = 192}, + [1006] = {.lex_state = 155}, + [1007] = {.lex_state = 192}, + [1008] = {.lex_state = 155}, + [1009] = {.lex_state = 153}, + [1010] = {.lex_state = 192}, + [1011] = {.lex_state = 155}, + [1012] = {.lex_state = 115}, + [1013] = {.lex_state = 155}, + [1014] = {.lex_state = 115}, + [1015] = {.lex_state = 153}, + [1016] = {.lex_state = 151}, + [1017] = {.lex_state = 155}, + [1018] = {.lex_state = 155}, + [1019] = {.lex_state = 155}, + [1020] = {.lex_state = 153}, + [1021] = {.lex_state = 153}, + [1022] = {.lex_state = 153}, + [1023] = {.lex_state = 153}, + [1024] = {.lex_state = 192}, + [1025] = {.lex_state = 153}, [1026] = {.lex_state = 151}, - [1027] = {.lex_state = 168}, - [1028] = {.lex_state = 168}, - [1029] = {.lex_state = 168}, - [1030] = {.lex_state = 171}, - [1031] = {.lex_state = 144}, - [1032] = {.lex_state = 144}, - [1033] = {.lex_state = 184}, - [1034] = {.lex_state = 144}, - [1035] = {.lex_state = 144}, - [1036] = {.lex_state = 144}, - [1037] = {.lex_state = 144}, - [1038] = {.lex_state = 144}, - [1039] = {.lex_state = 149}, - [1040] = {.lex_state = 135}, - [1041] = {.lex_state = 149}, - [1042] = {.lex_state = 197}, + [1027] = {.lex_state = 153}, + [1028] = {.lex_state = 153}, + [1029] = {.lex_state = 153}, + [1030] = {.lex_state = 192}, + [1031] = {.lex_state = 153}, + [1032] = {.lex_state = 153}, + [1033] = {.lex_state = 153}, + [1034] = {.lex_state = 153}, + [1035] = {.lex_state = 153}, + [1036] = {.lex_state = 115}, + [1037] = {.lex_state = 171}, + [1038] = {.lex_state = 151}, + [1039] = {.lex_state = 153}, + [1040] = {.lex_state = 153}, + [1041] = {.lex_state = 157}, + [1042] = {.lex_state = 171}, [1043] = {.lex_state = 151}, - [1044] = {.lex_state = 144}, - [1045] = {.lex_state = 186}, - [1046] = {.lex_state = 144}, - [1047] = {.lex_state = 197}, - [1048] = {.lex_state = 151}, - [1049] = {.lex_state = 144}, - [1050] = {.lex_state = 184}, - [1051] = {.lex_state = 115}, - [1052] = {.lex_state = 144}, - [1053] = {.lex_state = 184}, - [1054] = {.lex_state = 144}, - [1055] = {.lex_state = 151}, - [1056] = {.lex_state = 144}, - [1057] = {.lex_state = 186}, - [1058] = {.lex_state = 197}, - [1059] = {.lex_state = 151}, - [1060] = {.lex_state = 144}, - [1061] = {.lex_state = 144}, - [1062] = {.lex_state = 186}, - [1063] = {.lex_state = 186}, - [1064] = {.lex_state = 197}, - [1065] = {.lex_state = 149}, - [1066] = {.lex_state = 149}, - [1067] = {.lex_state = 168}, - [1068] = {.lex_state = 171}, - [1069] = {.lex_state = 168}, - [1070] = {.lex_state = 171}, - [1071] = {.lex_state = 144}, - [1072] = {.lex_state = 144}, - [1073] = {.lex_state = 184}, - [1074] = {.lex_state = 144}, - [1075] = {.lex_state = 144}, - [1076] = {.lex_state = 144}, - [1077] = {.lex_state = 144}, - [1078] = {.lex_state = 144}, - [1079] = {.lex_state = 168}, - [1080] = {.lex_state = 135}, - [1081] = {.lex_state = 168}, - [1082] = {.lex_state = 197}, - [1083] = {.lex_state = 151}, - [1084] = {.lex_state = 144}, - [1085] = {.lex_state = 149}, - [1086] = {.lex_state = 144}, - [1087] = {.lex_state = 184}, - [1088] = {.lex_state = 144}, - [1089] = {.lex_state = 151}, - [1090] = {.lex_state = 149}, - [1091] = {.lex_state = 186}, - [1092] = {.lex_state = 165}, - [1093] = {.lex_state = 144}, - [1094] = {.lex_state = 186}, - [1095] = {.lex_state = 197}, - [1096] = {.lex_state = 151}, - [1097] = {.lex_state = 144}, - [1098] = {.lex_state = 186}, - [1099] = {.lex_state = 197}, - [1100] = {.lex_state = 151}, - [1101] = {.lex_state = 144}, - [1102] = {.lex_state = 197}, - [1103] = {.lex_state = 151}, - [1104] = {.lex_state = 144}, - [1105] = {.lex_state = 144}, - [1106] = {.lex_state = 186}, - [1107] = {.lex_state = 186}, - [1108] = {.lex_state = 197}, - [1109] = {.lex_state = 144}, - [1110] = {.lex_state = 144}, - [1111] = {.lex_state = 186}, - [1112] = {.lex_state = 186}, - [1113] = {.lex_state = 168}, - [1114] = {.lex_state = 168}, - [1115] = {.lex_state = 168}, - [1116] = {.lex_state = 144}, - [1117] = {.lex_state = 184}, - [1118] = {.lex_state = 144}, - [1119] = {.lex_state = 151}, - [1120] = {.lex_state = 168}, - [1121] = {.lex_state = 186}, - [1122] = {.lex_state = 165}, - [1123] = {.lex_state = 144}, - [1124] = {.lex_state = 186}, - [1125] = {.lex_state = 197}, - [1126] = {.lex_state = 151}, - [1127] = {.lex_state = 144}, - [1128] = {.lex_state = 197}, + [1044] = {.lex_state = 151}, + [1045] = {.lex_state = 151}, + [1046] = {.lex_state = 151}, + [1047] = {.lex_state = 155}, + [1048] = {.lex_state = 178}, + [1049] = {.lex_state = 155}, + [1050] = {.lex_state = 178}, + [1051] = {.lex_state = 175}, + [1052] = {.lex_state = 178}, + [1053] = {.lex_state = 155}, + [1054] = {.lex_state = 175}, + [1055] = {.lex_state = 178}, + [1056] = {.lex_state = 155}, + [1057] = {.lex_state = 115}, + [1058] = {.lex_state = 115}, + [1059] = {.lex_state = 115}, + [1060] = {.lex_state = 192}, + [1061] = {.lex_state = 115}, + [1062] = {.lex_state = 115}, + [1063] = {.lex_state = 192}, + [1064] = {.lex_state = 175}, + [1065] = {.lex_state = 192}, + [1066] = {.lex_state = 175}, + [1067] = {.lex_state = 153}, + [1068] = {.lex_state = 192}, + [1069] = {.lex_state = 175}, + [1070] = {.lex_state = 115}, + [1071] = {.lex_state = 175}, + [1072] = {.lex_state = 115}, + [1073] = {.lex_state = 153}, + [1074] = {.lex_state = 151}, + [1075] = {.lex_state = 175}, + [1076] = {.lex_state = 175}, + [1077] = {.lex_state = 175}, + [1078] = {.lex_state = 178}, + [1079] = {.lex_state = 153}, + [1080] = {.lex_state = 153}, + [1081] = {.lex_state = 192}, + [1082] = {.lex_state = 153}, + [1083] = {.lex_state = 153}, + [1084] = {.lex_state = 153}, + [1085] = {.lex_state = 153}, + [1086] = {.lex_state = 153}, + [1087] = {.lex_state = 155}, + [1088] = {.lex_state = 115}, + [1089] = {.lex_state = 155}, + [1090] = {.lex_state = 171}, + [1091] = {.lex_state = 151}, + [1092] = {.lex_state = 153}, + [1093] = {.lex_state = 153}, + [1094] = {.lex_state = 171}, + [1095] = {.lex_state = 151}, + [1096] = {.lex_state = 153}, + [1097] = {.lex_state = 115}, + [1098] = {.lex_state = 153}, + [1099] = {.lex_state = 192}, + [1100] = {.lex_state = 153}, + [1101] = {.lex_state = 151}, + [1102] = {.lex_state = 153}, + [1103] = {.lex_state = 157}, + [1104] = {.lex_state = 171}, + [1105] = {.lex_state = 151}, + [1106] = {.lex_state = 153}, + [1107] = {.lex_state = 153}, + [1108] = {.lex_state = 157}, + [1109] = {.lex_state = 157}, + [1110] = {.lex_state = 171}, + [1111] = {.lex_state = 155}, + [1112] = {.lex_state = 155}, + [1113] = {.lex_state = 175}, + [1114] = {.lex_state = 178}, + [1115] = {.lex_state = 175}, + [1116] = {.lex_state = 178}, + [1117] = {.lex_state = 153}, + [1118] = {.lex_state = 153}, + [1119] = {.lex_state = 192}, + [1120] = {.lex_state = 153}, + [1121] = {.lex_state = 153}, + [1122] = {.lex_state = 153}, + [1123] = {.lex_state = 153}, + [1124] = {.lex_state = 153}, + [1125] = {.lex_state = 175}, + [1126] = {.lex_state = 115}, + [1127] = {.lex_state = 175}, + [1128] = {.lex_state = 171}, [1129] = {.lex_state = 151}, - [1130] = {.lex_state = 144}, - [1131] = {.lex_state = 149}, - [1132] = {.lex_state = 149}, - [1133] = {.lex_state = 144}, - [1134] = {.lex_state = 186}, - [1135] = {.lex_state = 186}, - [1136] = {.lex_state = 197}, - [1137] = {.lex_state = 144}, - [1138] = {.lex_state = 186}, - [1139] = {.lex_state = 186}, - [1140] = {.lex_state = 197}, - [1141] = {.lex_state = 144}, - [1142] = {.lex_state = 186}, - [1143] = {.lex_state = 197}, - [1144] = {.lex_state = 151}, - [1145] = {.lex_state = 144}, - [1146] = {.lex_state = 186}, - [1147] = {.lex_state = 186}, - [1148] = {.lex_state = 144}, - [1149] = {.lex_state = 144}, - [1150] = {.lex_state = 186}, - [1151] = {.lex_state = 144}, - [1152] = {.lex_state = 197}, - [1153] = {.lex_state = 151}, - [1154] = {.lex_state = 144}, - [1155] = {.lex_state = 168}, - [1156] = {.lex_state = 168}, - [1157] = {.lex_state = 144}, - [1158] = {.lex_state = 186}, - [1159] = {.lex_state = 186}, - [1160] = {.lex_state = 197}, - [1161] = {.lex_state = 144}, - [1162] = {.lex_state = 186}, - [1163] = {.lex_state = 197}, - [1164] = {.lex_state = 151}, - [1165] = {.lex_state = 149}, - [1166] = {.lex_state = 144}, - [1167] = {.lex_state = 186}, - [1168] = {.lex_state = 186}, - [1169] = {.lex_state = 144}, - [1170] = {.lex_state = 186}, - [1171] = {.lex_state = 186}, - [1172] = {.lex_state = 144}, - [1173] = {.lex_state = 186}, - [1174] = {.lex_state = 186}, - [1175] = {.lex_state = 197}, - [1176] = {.lex_state = 144}, - [1177] = {.lex_state = 186}, - [1178] = {.lex_state = 144}, - [1179] = {.lex_state = 144}, - [1180] = {.lex_state = 144}, - [1181] = {.lex_state = 186}, - [1182] = {.lex_state = 197}, - [1183] = {.lex_state = 151}, - [1184] = {.lex_state = 168}, - [1185] = {.lex_state = 144}, - [1186] = {.lex_state = 186}, - [1187] = {.lex_state = 186}, - [1188] = {.lex_state = 144}, - [1189] = {.lex_state = 186}, - [1190] = {.lex_state = 186}, - [1191] = {.lex_state = 197}, - [1192] = {.lex_state = 149}, - [1193] = {.lex_state = 144}, - [1194] = {.lex_state = 186}, - [1195] = {.lex_state = 144}, - [1196] = {.lex_state = 186}, - [1197] = {.lex_state = 144}, - [1198] = {.lex_state = 186}, - [1199] = {.lex_state = 186}, - [1200] = {.lex_state = 144}, - [1201] = {.lex_state = 144}, - [1202] = {.lex_state = 144}, - [1203] = {.lex_state = 186}, - [1204] = {.lex_state = 186}, - [1205] = {.lex_state = 197}, - [1206] = {.lex_state = 168}, - [1207] = {.lex_state = 144}, - [1208] = {.lex_state = 186}, - [1209] = {.lex_state = 144}, - [1210] = {.lex_state = 186}, - [1211] = {.lex_state = 186}, - [1212] = {.lex_state = 149}, - [1213] = {.lex_state = 144}, - [1214] = {.lex_state = 144}, - [1215] = {.lex_state = 144}, - [1216] = {.lex_state = 186}, - [1217] = {.lex_state = 144}, - [1218] = {.lex_state = 186}, - [1219] = {.lex_state = 186}, - [1220] = {.lex_state = 168}, - [1221] = {.lex_state = 144}, - [1222] = {.lex_state = 144}, - [1223] = {.lex_state = 186}, - [1224] = {.lex_state = 149}, - [1225] = {.lex_state = 144}, - [1226] = {.lex_state = 144}, - [1227] = {.lex_state = 186}, - [1228] = {.lex_state = 168}, - [1229] = {.lex_state = 144}, - [1230] = {.lex_state = 144}, + [1130] = {.lex_state = 153}, + [1131] = {.lex_state = 155}, + [1132] = {.lex_state = 153}, + [1133] = {.lex_state = 192}, + [1134] = {.lex_state = 153}, + [1135] = {.lex_state = 151}, + [1136] = {.lex_state = 155}, + [1137] = {.lex_state = 157}, + [1138] = {.lex_state = 157}, + [1139] = {.lex_state = 153}, + [1140] = {.lex_state = 157}, + [1141] = {.lex_state = 171}, + [1142] = {.lex_state = 151}, + [1143] = {.lex_state = 153}, + [1144] = {.lex_state = 157}, + [1145] = {.lex_state = 171}, + [1146] = {.lex_state = 151}, + [1147] = {.lex_state = 153}, + [1148] = {.lex_state = 171}, + [1149] = {.lex_state = 151}, + [1150] = {.lex_state = 153}, + [1151] = {.lex_state = 153}, + [1152] = {.lex_state = 157}, + [1153] = {.lex_state = 157}, + [1154] = {.lex_state = 171}, + [1155] = {.lex_state = 153}, + [1156] = {.lex_state = 153}, + [1157] = {.lex_state = 157}, + [1158] = {.lex_state = 157}, + [1159] = {.lex_state = 175}, + [1160] = {.lex_state = 175}, + [1161] = {.lex_state = 175}, + [1162] = {.lex_state = 153}, + [1163] = {.lex_state = 192}, + [1164] = {.lex_state = 153}, + [1165] = {.lex_state = 151}, + [1166] = {.lex_state = 175}, + [1167] = {.lex_state = 157}, + [1168] = {.lex_state = 157}, + [1169] = {.lex_state = 153}, + [1170] = {.lex_state = 157}, + [1171] = {.lex_state = 171}, + [1172] = {.lex_state = 151}, + [1173] = {.lex_state = 153}, + [1174] = {.lex_state = 171}, + [1175] = {.lex_state = 151}, + [1176] = {.lex_state = 153}, + [1177] = {.lex_state = 155}, + [1178] = {.lex_state = 155}, + [1179] = {.lex_state = 153}, + [1180] = {.lex_state = 157}, + [1181] = {.lex_state = 157}, + [1182] = {.lex_state = 171}, + [1183] = {.lex_state = 153}, + [1184] = {.lex_state = 157}, + [1185] = {.lex_state = 157}, + [1186] = {.lex_state = 171}, + [1187] = {.lex_state = 153}, + [1188] = {.lex_state = 157}, + [1189] = {.lex_state = 171}, + [1190] = {.lex_state = 151}, + [1191] = {.lex_state = 153}, + [1192] = {.lex_state = 157}, + [1193] = {.lex_state = 157}, + [1194] = {.lex_state = 153}, + [1195] = {.lex_state = 153}, + [1196] = {.lex_state = 157}, + [1197] = {.lex_state = 153}, + [1198] = {.lex_state = 171}, + [1199] = {.lex_state = 151}, + [1200] = {.lex_state = 153}, + [1201] = {.lex_state = 175}, + [1202] = {.lex_state = 175}, + [1203] = {.lex_state = 153}, + [1204] = {.lex_state = 157}, + [1205] = {.lex_state = 157}, + [1206] = {.lex_state = 171}, + [1207] = {.lex_state = 153}, + [1208] = {.lex_state = 157}, + [1209] = {.lex_state = 171}, + [1210] = {.lex_state = 151}, + [1211] = {.lex_state = 155}, + [1212] = {.lex_state = 153}, + [1213] = {.lex_state = 157}, + [1214] = {.lex_state = 157}, + [1215] = {.lex_state = 153}, + [1216] = {.lex_state = 157}, + [1217] = {.lex_state = 157}, + [1218] = {.lex_state = 153}, + [1219] = {.lex_state = 157}, + [1220] = {.lex_state = 157}, + [1221] = {.lex_state = 171}, + [1222] = {.lex_state = 153}, + [1223] = {.lex_state = 157}, + [1224] = {.lex_state = 153}, + [1225] = {.lex_state = 153}, + [1226] = {.lex_state = 153}, + [1227] = {.lex_state = 157}, + [1228] = {.lex_state = 171}, + [1229] = {.lex_state = 151}, + [1230] = {.lex_state = 175}, + [1231] = {.lex_state = 153}, + [1232] = {.lex_state = 157}, + [1233] = {.lex_state = 157}, + [1234] = {.lex_state = 153}, + [1235] = {.lex_state = 157}, + [1236] = {.lex_state = 157}, + [1237] = {.lex_state = 171}, + [1238] = {.lex_state = 155}, + [1239] = {.lex_state = 153}, + [1240] = {.lex_state = 157}, + [1241] = {.lex_state = 153}, + [1242] = {.lex_state = 157}, + [1243] = {.lex_state = 153}, + [1244] = {.lex_state = 157}, + [1245] = {.lex_state = 157}, + [1246] = {.lex_state = 153}, + [1247] = {.lex_state = 153}, + [1248] = {.lex_state = 153}, + [1249] = {.lex_state = 157}, + [1250] = {.lex_state = 157}, + [1251] = {.lex_state = 171}, + [1252] = {.lex_state = 175}, + [1253] = {.lex_state = 153}, + [1254] = {.lex_state = 157}, + [1255] = {.lex_state = 153}, + [1256] = {.lex_state = 157}, + [1257] = {.lex_state = 157}, + [1258] = {.lex_state = 155}, + [1259] = {.lex_state = 153}, + [1260] = {.lex_state = 153}, + [1261] = {.lex_state = 153}, + [1262] = {.lex_state = 157}, + [1263] = {.lex_state = 153}, + [1264] = {.lex_state = 157}, + [1265] = {.lex_state = 157}, + [1266] = {.lex_state = 175}, + [1267] = {.lex_state = 153}, + [1268] = {.lex_state = 153}, + [1269] = {.lex_state = 157}, + [1270] = {.lex_state = 155}, + [1271] = {.lex_state = 153}, + [1272] = {.lex_state = 153}, + [1273] = {.lex_state = 157}, + [1274] = {.lex_state = 175}, + [1275] = {.lex_state = 153}, + [1276] = {.lex_state = 153}, }; static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [0] = { [ts_builtin_sym_end] = ACTIONS(1), + [anon_sym_SEMI] = ACTIONS(1), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(1), @@ -5582,7 +5614,6 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(3), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(3), [sym_preproc_directive] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1), [anon_sym_typedef] = ACTIONS(3), [anon_sym_extern] = ACTIONS(3), [anon_sym_LBRACE] = ACTIONS(1), @@ -5666,30 +5697,50 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(1), }, [1] = { - [sym_translation_unit] = STATE(15), - [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_function_definition] = STATE(18), - [sym_declaration] = STATE(18), - [sym_type_definition] = STATE(18), - [sym__declaration_specifiers] = STATE(16), - [sym_linkage_specification] = STATE(18), - [sym_storage_class_specifier] = STATE(19), - [sym_type_qualifier] = STATE(19), - [sym__type_specifier] = STATE(17), - [sym_sized_type_specifier] = STATE(17), - [sym_enum_specifier] = STATE(17), - [sym_struct_specifier] = STATE(17), - [sym_union_specifier] = STATE(17), - [sym__empty_declaration] = STATE(18), - [sym_macro_type_specifier] = STATE(17), - [aux_sym_translation_unit_repeat1] = STATE(18), - [aux_sym__declaration_specifiers_repeat1] = STATE(19), - [aux_sym_sized_type_specifier_repeat1] = STATE(20), + [sym_translation_unit] = STATE(23), + [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(24), + [sym_linkage_specification] = STATE(29), + [sym_storage_class_specifier] = STATE(30), + [sym_type_qualifier] = STATE(30), + [sym__type_specifier] = STATE(25), + [sym_sized_type_specifier] = STATE(25), + [sym_enum_specifier] = STATE(25), + [sym_struct_specifier] = STATE(25), + [sym_union_specifier] = STATE(25), + [sym__expression] = STATE(26), + [sym_conditional_expression] = STATE(26), + [sym_assignment_expression] = STATE(26), + [sym_pointer_expression] = STATE(26), + [sym_logical_expression] = STATE(26), + [sym_bitwise_expression] = STATE(26), + [sym_equality_expression] = STATE(26), + [sym_relational_expression] = STATE(26), + [sym_shift_expression] = STATE(26), + [sym_math_expression] = STATE(26), + [sym_cast_expression] = STATE(26), + [sym_sizeof_expression] = STATE(26), + [sym_subscript_expression] = STATE(26), + [sym_call_expression] = STATE(27), + [sym_field_expression] = STATE(26), + [sym_compound_literal_expression] = STATE(26), + [sym_parenthesized_expression] = STATE(26), + [sym_char_literal] = STATE(26), + [sym_concatenated_string] = STATE(26), + [sym_string_literal] = STATE(28), + [sym__empty_declaration] = STATE(29), + [sym_macro_type_specifier] = STATE(25), + [aux_sym_translation_unit_repeat1] = STATE(29), + [aux_sym__declaration_specifiers_repeat1] = STATE(30), + [aux_sym_sized_type_specifier_repeat1] = STATE(31), [ts_builtin_sym_end] = ACTIONS(5), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(7), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(9), @@ -5699,1763 +5750,1918 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_directive] = ACTIONS(15), [anon_sym_typedef] = ACTIONS(17), [anon_sym_extern] = ACTIONS(19), - [anon_sym_static] = ACTIONS(21), - [anon_sym_auto] = ACTIONS(21), - [anon_sym_register] = ACTIONS(21), - [anon_sym_inline] = ACTIONS(21), - [anon_sym_const] = ACTIONS(23), - [anon_sym_restrict] = ACTIONS(23), - [anon_sym_volatile] = ACTIONS(23), - [anon_sym__Atomic] = ACTIONS(23), - [anon_sym_unsigned] = ACTIONS(25), - [anon_sym_long] = ACTIONS(25), - [anon_sym_short] = ACTIONS(25), - [sym_primitive_type] = ACTIONS(27), - [anon_sym_enum] = ACTIONS(29), - [anon_sym_struct] = ACTIONS(31), - [anon_sym_union] = ACTIONS(33), - [sym_identifier] = ACTIONS(35), - [sym_comment] = ACTIONS(37), + [anon_sym_LPAREN2] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_static] = ACTIONS(25), + [anon_sym_auto] = ACTIONS(25), + [anon_sym_register] = ACTIONS(25), + [anon_sym_inline] = ACTIONS(25), + [anon_sym_const] = ACTIONS(27), + [anon_sym_restrict] = ACTIONS(27), + [anon_sym_volatile] = ACTIONS(27), + [anon_sym__Atomic] = ACTIONS(27), + [anon_sym_unsigned] = ACTIONS(29), + [anon_sym_long] = ACTIONS(29), + [anon_sym_short] = ACTIONS(29), + [sym_primitive_type] = ACTIONS(31), + [anon_sym_enum] = ACTIONS(33), + [anon_sym_struct] = ACTIONS(35), + [anon_sym_union] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(41), + [anon_sym_PLUS] = ACTIONS(43), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_DASH_DASH] = ACTIONS(45), + [anon_sym_PLUS_PLUS] = ACTIONS(45), + [anon_sym_sizeof] = ACTIONS(47), + [sym_number_literal] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(55), + [sym_false] = ACTIONS(55), + [sym_null] = ACTIONS(55), + [sym_identifier] = ACTIONS(57), + [sym_comment] = ACTIONS(59), }, [2] = { - [sym_string_literal] = STATE(22), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_system_lib_string] = ACTIONS(41), - [sym_comment] = ACTIONS(37), + [sym_string_literal] = STATE(33), + [anon_sym_DQUOTE] = ACTIONS(61), + [sym_system_lib_string] = ACTIONS(63), + [sym_comment] = ACTIONS(59), }, [3] = { - [sym_identifier] = ACTIONS(43), - [sym_comment] = ACTIONS(37), + [sym_identifier] = ACTIONS(65), + [sym_comment] = ACTIONS(59), }, [4] = { - [sym_preproc_arg] = ACTIONS(45), - [sym_comment] = ACTIONS(47), + [sym_preproc_arg] = ACTIONS(67), + [sym_comment] = ACTIONS(69), }, [5] = { - [sym_identifier] = ACTIONS(49), - [sym_comment] = ACTIONS(37), + [sym_identifier] = ACTIONS(71), + [sym_comment] = ACTIONS(59), }, [6] = { - [anon_sym_LF] = ACTIONS(51), - [sym_preproc_arg] = ACTIONS(53), - [sym_comment] = ACTIONS(47), + [anon_sym_LF] = ACTIONS(73), + [sym_preproc_arg] = ACTIONS(75), + [sym_comment] = ACTIONS(69), }, [7] = { - [sym_type_qualifier] = STATE(29), - [sym__type_specifier] = STATE(28), - [sym_sized_type_specifier] = STATE(28), - [sym_enum_specifier] = STATE(28), - [sym_struct_specifier] = STATE(28), - [sym_union_specifier] = STATE(28), - [sym_macro_type_specifier] = STATE(28), - [aux_sym_type_definition_repeat1] = STATE(29), - [aux_sym_sized_type_specifier_repeat1] = STATE(30), - [anon_sym_const] = ACTIONS(23), - [anon_sym_restrict] = ACTIONS(23), - [anon_sym_volatile] = ACTIONS(23), - [anon_sym__Atomic] = ACTIONS(23), - [anon_sym_unsigned] = ACTIONS(55), - [anon_sym_long] = ACTIONS(55), - [anon_sym_short] = ACTIONS(55), - [sym_primitive_type] = ACTIONS(57), - [anon_sym_enum] = ACTIONS(29), - [anon_sym_struct] = ACTIONS(31), - [anon_sym_union] = ACTIONS(33), - [sym_identifier] = ACTIONS(35), - [sym_comment] = ACTIONS(37), + [sym_type_qualifier] = STATE(41), + [sym__type_specifier] = STATE(40), + [sym_sized_type_specifier] = STATE(40), + [sym_enum_specifier] = STATE(40), + [sym_struct_specifier] = STATE(40), + [sym_union_specifier] = STATE(40), + [sym_macro_type_specifier] = STATE(40), + [aux_sym_type_definition_repeat1] = STATE(41), + [aux_sym_sized_type_specifier_repeat1] = STATE(42), + [anon_sym_const] = ACTIONS(27), + [anon_sym_restrict] = ACTIONS(27), + [anon_sym_volatile] = ACTIONS(27), + [anon_sym__Atomic] = ACTIONS(27), + [anon_sym_unsigned] = ACTIONS(77), + [anon_sym_long] = ACTIONS(77), + [anon_sym_short] = ACTIONS(77), + [sym_primitive_type] = ACTIONS(79), + [anon_sym_enum] = ACTIONS(33), + [anon_sym_struct] = ACTIONS(35), + [anon_sym_union] = ACTIONS(37), + [sym_identifier] = ACTIONS(81), + [sym_comment] = ACTIONS(59), }, [8] = { - [sym_string_literal] = STATE(31), - [anon_sym_extern] = ACTIONS(59), - [anon_sym_static] = ACTIONS(59), - [anon_sym_auto] = ACTIONS(59), - [anon_sym_register] = ACTIONS(59), - [anon_sym_inline] = ACTIONS(59), - [anon_sym_const] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(59), - [anon_sym_enum] = ACTIONS(59), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_identifier] = ACTIONS(59), - [sym_comment] = ACTIONS(37), + [sym_string_literal] = STATE(43), + [anon_sym_extern] = ACTIONS(83), + [anon_sym_static] = ACTIONS(83), + [anon_sym_auto] = ACTIONS(83), + [anon_sym_register] = ACTIONS(83), + [anon_sym_inline] = ACTIONS(83), + [anon_sym_const] = ACTIONS(83), + [anon_sym_restrict] = ACTIONS(83), + [anon_sym_volatile] = ACTIONS(83), + [anon_sym__Atomic] = ACTIONS(83), + [anon_sym_unsigned] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [sym_primitive_type] = ACTIONS(83), + [anon_sym_enum] = ACTIONS(83), + [anon_sym_struct] = ACTIONS(83), + [anon_sym_union] = ACTIONS(83), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_identifier] = ACTIONS(83), + [sym_comment] = ACTIONS(59), }, [9] = { - [anon_sym_COMMA] = ACTIONS(61), - [anon_sym_RPAREN] = ACTIONS(61), - [anon_sym_SEMI] = ACTIONS(61), - [anon_sym_extern] = ACTIONS(59), - [anon_sym_LPAREN2] = ACTIONS(61), - [anon_sym_STAR] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(61), - [anon_sym_RBRACK] = ACTIONS(61), - [anon_sym_static] = ACTIONS(59), - [anon_sym_auto] = ACTIONS(59), - [anon_sym_register] = ACTIONS(59), - [anon_sym_inline] = ACTIONS(59), - [anon_sym_const] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(59), - [anon_sym_enum] = ACTIONS(59), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(59), - [anon_sym_COLON] = ACTIONS(61), - [anon_sym_AMP] = ACTIONS(61), - [anon_sym_BANG] = ACTIONS(61), - [anon_sym_TILDE] = ACTIONS(61), - [anon_sym_PLUS] = ACTIONS(59), - [anon_sym_DASH] = ACTIONS(59), - [anon_sym_DASH_DASH] = ACTIONS(61), - [anon_sym_PLUS_PLUS] = ACTIONS(61), - [anon_sym_sizeof] = ACTIONS(59), - [sym_number_literal] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(61), - [sym_true] = ACTIONS(59), - [sym_false] = ACTIONS(59), - [sym_null] = ACTIONS(59), - [sym_identifier] = ACTIONS(59), - [sym_comment] = ACTIONS(37), + [sym_type_qualifier] = STATE(56), + [sym__type_specifier] = STATE(51), + [sym_sized_type_specifier] = STATE(51), + [sym_enum_specifier] = STATE(51), + [sym_struct_specifier] = STATE(51), + [sym_union_specifier] = STATE(51), + [sym__expression] = STATE(52), + [sym_comma_expression] = STATE(53), + [sym_conditional_expression] = STATE(52), + [sym_assignment_expression] = STATE(52), + [sym_pointer_expression] = STATE(52), + [sym_logical_expression] = STATE(52), + [sym_bitwise_expression] = STATE(52), + [sym_equality_expression] = STATE(52), + [sym_relational_expression] = STATE(52), + [sym_shift_expression] = STATE(52), + [sym_math_expression] = STATE(52), + [sym_cast_expression] = STATE(52), + [sym_type_descriptor] = STATE(54), + [sym_sizeof_expression] = STATE(52), + [sym_subscript_expression] = STATE(52), + [sym_call_expression] = STATE(52), + [sym_field_expression] = STATE(52), + [sym_compound_literal_expression] = STATE(52), + [sym_parenthesized_expression] = STATE(52), + [sym_char_literal] = STATE(52), + [sym_concatenated_string] = STATE(52), + [sym_string_literal] = STATE(55), + [sym_macro_type_specifier] = STATE(51), + [aux_sym_type_definition_repeat1] = STATE(56), + [aux_sym_sized_type_specifier_repeat1] = STATE(57), + [anon_sym_LPAREN2] = ACTIONS(85), + [anon_sym_STAR] = ACTIONS(87), + [anon_sym_const] = ACTIONS(27), + [anon_sym_restrict] = ACTIONS(27), + [anon_sym_volatile] = ACTIONS(27), + [anon_sym__Atomic] = ACTIONS(27), + [anon_sym_unsigned] = ACTIONS(89), + [anon_sym_long] = ACTIONS(89), + [anon_sym_short] = ACTIONS(89), + [sym_primitive_type] = ACTIONS(91), + [anon_sym_enum] = ACTIONS(33), + [anon_sym_struct] = ACTIONS(35), + [anon_sym_union] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_PLUS] = ACTIONS(97), + [anon_sym_DASH] = ACTIONS(97), + [anon_sym_DASH_DASH] = ACTIONS(99), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(105), + [sym_false] = ACTIONS(105), + [sym_null] = ACTIONS(105), + [sym_identifier] = ACTIONS(107), + [sym_comment] = ACTIONS(59), }, [10] = { - [anon_sym_COMMA] = ACTIONS(63), - [anon_sym_RPAREN] = ACTIONS(63), - [anon_sym_SEMI] = ACTIONS(63), - [anon_sym_extern] = ACTIONS(65), - [anon_sym_LPAREN2] = ACTIONS(63), - [anon_sym_STAR] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_RBRACK] = ACTIONS(63), - [anon_sym_static] = ACTIONS(65), - [anon_sym_auto] = ACTIONS(65), - [anon_sym_register] = ACTIONS(65), - [anon_sym_inline] = ACTIONS(65), - [anon_sym_const] = ACTIONS(65), - [anon_sym_restrict] = ACTIONS(65), - [anon_sym_volatile] = ACTIONS(65), - [anon_sym__Atomic] = ACTIONS(65), - [anon_sym_unsigned] = ACTIONS(65), - [anon_sym_long] = ACTIONS(65), - [anon_sym_short] = ACTIONS(65), - [sym_primitive_type] = ACTIONS(65), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_struct] = ACTIONS(65), - [anon_sym_union] = ACTIONS(65), - [anon_sym_COLON] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(63), - [anon_sym_BANG] = ACTIONS(63), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(63), - [anon_sym_PLUS_PLUS] = ACTIONS(63), - [anon_sym_sizeof] = ACTIONS(65), - [sym_number_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_DQUOTE] = ACTIONS(63), - [sym_true] = ACTIONS(65), - [sym_false] = ACTIONS(65), - [sym_null] = ACTIONS(65), - [sym_identifier] = ACTIONS(65), - [sym_comment] = ACTIONS(37), + [sym__expression] = STATE(58), + [sym_conditional_expression] = STATE(58), + [sym_assignment_expression] = STATE(58), + [sym_pointer_expression] = STATE(58), + [sym_logical_expression] = STATE(58), + [sym_bitwise_expression] = STATE(58), + [sym_equality_expression] = STATE(58), + [sym_relational_expression] = STATE(58), + [sym_shift_expression] = STATE(58), + [sym_math_expression] = STATE(58), + [sym_cast_expression] = STATE(58), + [sym_sizeof_expression] = STATE(58), + [sym_subscript_expression] = STATE(58), + [sym_call_expression] = STATE(58), + [sym_field_expression] = STATE(58), + [sym_compound_literal_expression] = STATE(58), + [sym_parenthesized_expression] = STATE(58), + [sym_char_literal] = STATE(58), + [sym_concatenated_string] = STATE(58), + [sym_string_literal] = STATE(28), + [anon_sym_LPAREN2] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_AMP] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(41), + [anon_sym_PLUS] = ACTIONS(43), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_DASH_DASH] = ACTIONS(45), + [anon_sym_PLUS_PLUS] = ACTIONS(45), + [anon_sym_sizeof] = ACTIONS(47), + [sym_number_literal] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(111), + [sym_false] = ACTIONS(111), + [sym_null] = ACTIONS(111), + [sym_identifier] = ACTIONS(111), + [sym_comment] = ACTIONS(59), }, [11] = { - [sym_enumerator_list] = STATE(34), - [anon_sym_LBRACE] = ACTIONS(67), - [sym_identifier] = ACTIONS(69), - [sym_comment] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(113), + [anon_sym_COMMA] = ACTIONS(113), + [anon_sym_RPAREN] = ACTIONS(113), + [anon_sym_extern] = ACTIONS(83), + [anon_sym_LPAREN2] = ACTIONS(113), + [anon_sym_STAR] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(113), + [anon_sym_RBRACK] = ACTIONS(113), + [anon_sym_static] = ACTIONS(83), + [anon_sym_auto] = ACTIONS(83), + [anon_sym_register] = ACTIONS(83), + [anon_sym_inline] = ACTIONS(83), + [anon_sym_const] = ACTIONS(83), + [anon_sym_restrict] = ACTIONS(83), + [anon_sym_volatile] = ACTIONS(83), + [anon_sym__Atomic] = ACTIONS(83), + [anon_sym_unsigned] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [sym_primitive_type] = ACTIONS(83), + [anon_sym_enum] = ACTIONS(83), + [anon_sym_struct] = ACTIONS(83), + [anon_sym_union] = ACTIONS(83), + [anon_sym_COLON] = ACTIONS(113), + [anon_sym_AMP] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(113), + [anon_sym_TILDE] = ACTIONS(113), + [anon_sym_PLUS] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(83), + [anon_sym_DASH_DASH] = ACTIONS(113), + [anon_sym_PLUS_PLUS] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(83), + [sym_number_literal] = ACTIONS(113), + [anon_sym_SQUOTE] = ACTIONS(113), + [anon_sym_DQUOTE] = ACTIONS(113), + [sym_true] = ACTIONS(83), + [sym_false] = ACTIONS(83), + [sym_null] = ACTIONS(83), + [sym_identifier] = ACTIONS(83), + [sym_comment] = ACTIONS(59), }, [12] = { - [sym_field_declaration_list] = STATE(37), - [anon_sym_LBRACE] = ACTIONS(71), - [sym_identifier] = ACTIONS(73), - [sym_comment] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(115), + [anon_sym_COMMA] = ACTIONS(115), + [anon_sym_RPAREN] = ACTIONS(115), + [anon_sym_extern] = ACTIONS(117), + [anon_sym_LPAREN2] = ACTIONS(115), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_LBRACK] = ACTIONS(115), + [anon_sym_RBRACK] = ACTIONS(115), + [anon_sym_static] = ACTIONS(117), + [anon_sym_auto] = ACTIONS(117), + [anon_sym_register] = ACTIONS(117), + [anon_sym_inline] = ACTIONS(117), + [anon_sym_const] = ACTIONS(117), + [anon_sym_restrict] = ACTIONS(117), + [anon_sym_volatile] = ACTIONS(117), + [anon_sym__Atomic] = ACTIONS(117), + [anon_sym_unsigned] = ACTIONS(117), + [anon_sym_long] = ACTIONS(117), + [anon_sym_short] = ACTIONS(117), + [sym_primitive_type] = ACTIONS(117), + [anon_sym_enum] = ACTIONS(117), + [anon_sym_struct] = ACTIONS(117), + [anon_sym_union] = ACTIONS(117), + [anon_sym_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(115), + [anon_sym_BANG] = ACTIONS(115), + [anon_sym_TILDE] = ACTIONS(115), + [anon_sym_PLUS] = ACTIONS(117), + [anon_sym_DASH] = ACTIONS(117), + [anon_sym_DASH_DASH] = ACTIONS(115), + [anon_sym_PLUS_PLUS] = ACTIONS(115), + [anon_sym_sizeof] = ACTIONS(117), + [sym_number_literal] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_DQUOTE] = ACTIONS(115), + [sym_true] = ACTIONS(117), + [sym_false] = ACTIONS(117), + [sym_null] = ACTIONS(117), + [sym_identifier] = ACTIONS(117), + [sym_comment] = ACTIONS(59), }, [13] = { - [sym_field_declaration_list] = STATE(39), - [anon_sym_LBRACE] = ACTIONS(71), - [sym_identifier] = ACTIONS(75), - [sym_comment] = ACTIONS(37), + [sym_enumerator_list] = STATE(61), + [anon_sym_LBRACE] = ACTIONS(119), + [sym_identifier] = ACTIONS(121), + [sym_comment] = ACTIONS(59), }, [14] = { - [anon_sym_COMMA] = ACTIONS(77), - [anon_sym_RPAREN] = ACTIONS(77), - [anon_sym_SEMI] = ACTIONS(77), - [anon_sym_extern] = ACTIONS(79), - [anon_sym_LPAREN2] = ACTIONS(81), - [anon_sym_STAR] = ACTIONS(77), - [anon_sym_LBRACK] = ACTIONS(77), - [anon_sym_RBRACK] = ACTIONS(77), - [anon_sym_static] = ACTIONS(79), - [anon_sym_auto] = ACTIONS(79), - [anon_sym_register] = ACTIONS(79), - [anon_sym_inline] = ACTIONS(79), - [anon_sym_const] = ACTIONS(79), - [anon_sym_restrict] = ACTIONS(79), - [anon_sym_volatile] = ACTIONS(79), - [anon_sym__Atomic] = ACTIONS(79), - [anon_sym_COLON] = ACTIONS(77), - [anon_sym_AMP] = ACTIONS(77), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [sym_number_literal] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(77), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_null] = ACTIONS(79), - [sym_identifier] = ACTIONS(79), - [sym_comment] = ACTIONS(37), + [sym_field_declaration_list] = STATE(64), + [anon_sym_LBRACE] = ACTIONS(123), + [sym_identifier] = ACTIONS(125), + [sym_comment] = ACTIONS(59), }, [15] = { - [ts_builtin_sym_end] = ACTIONS(84), - [sym_comment] = ACTIONS(37), + [sym_field_declaration_list] = STATE(66), + [anon_sym_LBRACE] = ACTIONS(123), + [sym_identifier] = ACTIONS(127), + [sym_comment] = ACTIONS(59), }, [16] = { - [sym__declarator] = STATE(44), - [sym_pointer_declarator] = STATE(44), - [sym_function_declarator] = STATE(44), - [sym_array_declarator] = STATE(44), - [sym_init_declarator] = STATE(45), - [anon_sym_SEMI] = ACTIONS(86), - [anon_sym_LPAREN2] = ACTIONS(88), - [anon_sym_STAR] = ACTIONS(90), - [sym_identifier] = ACTIONS(92), - [sym_comment] = ACTIONS(37), + [sym__expression] = STATE(67), + [sym_conditional_expression] = STATE(67), + [sym_assignment_expression] = STATE(67), + [sym_pointer_expression] = STATE(67), + [sym_logical_expression] = STATE(67), + [sym_bitwise_expression] = STATE(67), + [sym_equality_expression] = STATE(67), + [sym_relational_expression] = STATE(67), + [sym_shift_expression] = STATE(67), + [sym_math_expression] = STATE(67), + [sym_cast_expression] = STATE(67), + [sym_sizeof_expression] = STATE(67), + [sym_subscript_expression] = STATE(67), + [sym_call_expression] = STATE(67), + [sym_field_expression] = STATE(67), + [sym_compound_literal_expression] = STATE(67), + [sym_parenthesized_expression] = STATE(67), + [sym_char_literal] = STATE(67), + [sym_concatenated_string] = STATE(67), + [sym_string_literal] = STATE(28), + [anon_sym_LPAREN2] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_AMP] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(41), + [anon_sym_PLUS] = ACTIONS(43), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_DASH_DASH] = ACTIONS(45), + [anon_sym_PLUS_PLUS] = ACTIONS(45), + [anon_sym_sizeof] = ACTIONS(47), + [sym_number_literal] = ACTIONS(129), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(131), + [sym_false] = ACTIONS(131), + [sym_null] = ACTIONS(131), + [sym_identifier] = ACTIONS(131), + [sym_comment] = ACTIONS(59), }, [17] = { - [sym_storage_class_specifier] = STATE(46), - [sym_type_qualifier] = STATE(46), - [aux_sym__declaration_specifiers_repeat1] = STATE(46), - [anon_sym_SEMI] = ACTIONS(94), - [anon_sym_extern] = ACTIONS(21), - [anon_sym_LPAREN2] = ACTIONS(94), - [anon_sym_STAR] = ACTIONS(94), - [anon_sym_static] = ACTIONS(21), - [anon_sym_auto] = ACTIONS(21), - [anon_sym_register] = ACTIONS(21), - [anon_sym_inline] = ACTIONS(21), - [anon_sym_const] = ACTIONS(23), - [anon_sym_restrict] = ACTIONS(23), - [anon_sym_volatile] = ACTIONS(23), - [anon_sym__Atomic] = ACTIONS(23), - [sym_identifier] = ACTIONS(96), - [sym_comment] = ACTIONS(37), + [sym__expression] = STATE(68), + [sym_conditional_expression] = STATE(68), + [sym_assignment_expression] = STATE(68), + [sym_pointer_expression] = STATE(68), + [sym_logical_expression] = STATE(68), + [sym_bitwise_expression] = STATE(68), + [sym_equality_expression] = STATE(68), + [sym_relational_expression] = STATE(68), + [sym_shift_expression] = STATE(68), + [sym_math_expression] = STATE(68), + [sym_cast_expression] = STATE(68), + [sym_sizeof_expression] = STATE(68), + [sym_subscript_expression] = STATE(68), + [sym_call_expression] = STATE(68), + [sym_field_expression] = STATE(68), + [sym_compound_literal_expression] = STATE(68), + [sym_parenthesized_expression] = STATE(68), + [sym_char_literal] = STATE(68), + [sym_concatenated_string] = STATE(68), + [sym_string_literal] = STATE(28), + [anon_sym_LPAREN2] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_AMP] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(41), + [anon_sym_PLUS] = ACTIONS(43), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_DASH_DASH] = ACTIONS(45), + [anon_sym_PLUS_PLUS] = ACTIONS(45), + [anon_sym_sizeof] = ACTIONS(47), + [sym_number_literal] = ACTIONS(133), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(135), + [sym_false] = ACTIONS(135), + [sym_null] = ACTIONS(135), + [sym_identifier] = ACTIONS(135), + [sym_comment] = ACTIONS(59), }, [18] = { - [sym_preproc_include] = STATE(47), - [sym_preproc_def] = STATE(47), - [sym_preproc_function_def] = STATE(47), - [sym_preproc_call] = STATE(47), - [sym_preproc_if] = STATE(47), - [sym_preproc_ifdef] = STATE(47), - [sym_function_definition] = STATE(47), - [sym_declaration] = STATE(47), - [sym_type_definition] = STATE(47), - [sym__declaration_specifiers] = STATE(16), - [sym_linkage_specification] = STATE(47), - [sym_storage_class_specifier] = STATE(19), - [sym_type_qualifier] = STATE(19), - [sym__type_specifier] = STATE(17), - [sym_sized_type_specifier] = STATE(17), - [sym_enum_specifier] = STATE(17), - [sym_struct_specifier] = STATE(17), - [sym_union_specifier] = STATE(17), - [sym__empty_declaration] = STATE(47), - [sym_macro_type_specifier] = STATE(17), - [aux_sym_translation_unit_repeat1] = STATE(47), - [aux_sym__declaration_specifiers_repeat1] = STATE(19), - [aux_sym_sized_type_specifier_repeat1] = STATE(20), - [ts_builtin_sym_end] = ACTIONS(98), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(7), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(9), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(11), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(13), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(13), - [sym_preproc_directive] = ACTIONS(15), - [anon_sym_typedef] = ACTIONS(17), - [anon_sym_extern] = ACTIONS(19), - [anon_sym_static] = ACTIONS(21), - [anon_sym_auto] = ACTIONS(21), - [anon_sym_register] = ACTIONS(21), - [anon_sym_inline] = ACTIONS(21), - [anon_sym_const] = ACTIONS(23), - [anon_sym_restrict] = ACTIONS(23), - [anon_sym_volatile] = ACTIONS(23), - [anon_sym__Atomic] = ACTIONS(23), - [anon_sym_unsigned] = ACTIONS(25), - [anon_sym_long] = ACTIONS(25), - [anon_sym_short] = ACTIONS(25), - [sym_primitive_type] = ACTIONS(27), - [anon_sym_enum] = ACTIONS(29), - [anon_sym_struct] = ACTIONS(31), - [anon_sym_union] = ACTIONS(33), - [sym_identifier] = ACTIONS(35), - [sym_comment] = ACTIONS(37), + [sym__expression] = STATE(69), + [sym_conditional_expression] = STATE(69), + [sym_assignment_expression] = STATE(69), + [sym_pointer_expression] = STATE(69), + [sym_logical_expression] = STATE(69), + [sym_bitwise_expression] = STATE(69), + [sym_equality_expression] = STATE(69), + [sym_relational_expression] = STATE(69), + [sym_shift_expression] = STATE(69), + [sym_math_expression] = STATE(69), + [sym_cast_expression] = STATE(69), + [sym_sizeof_expression] = STATE(69), + [sym_subscript_expression] = STATE(69), + [sym_call_expression] = STATE(69), + [sym_field_expression] = STATE(69), + [sym_compound_literal_expression] = STATE(69), + [sym_parenthesized_expression] = STATE(69), + [sym_char_literal] = STATE(69), + [sym_concatenated_string] = STATE(69), + [sym_string_literal] = STATE(28), + [anon_sym_LPAREN2] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_AMP] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(41), + [anon_sym_PLUS] = ACTIONS(43), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_DASH_DASH] = ACTIONS(45), + [anon_sym_PLUS_PLUS] = ACTIONS(45), + [anon_sym_sizeof] = ACTIONS(47), + [sym_number_literal] = ACTIONS(137), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(139), + [sym_false] = ACTIONS(139), + [sym_null] = ACTIONS(139), + [sym_identifier] = ACTIONS(139), + [sym_comment] = ACTIONS(59), }, [19] = { - [sym_storage_class_specifier] = STATE(49), - [sym_type_qualifier] = STATE(49), - [sym__type_specifier] = STATE(48), - [sym_sized_type_specifier] = STATE(48), - [sym_enum_specifier] = STATE(48), - [sym_struct_specifier] = STATE(48), - [sym_union_specifier] = STATE(48), - [sym_macro_type_specifier] = STATE(48), - [aux_sym__declaration_specifiers_repeat1] = STATE(49), - [aux_sym_sized_type_specifier_repeat1] = STATE(20), - [anon_sym_extern] = ACTIONS(21), - [anon_sym_static] = ACTIONS(21), - [anon_sym_auto] = ACTIONS(21), - [anon_sym_register] = ACTIONS(21), - [anon_sym_inline] = ACTIONS(21), - [anon_sym_const] = ACTIONS(23), - [anon_sym_restrict] = ACTIONS(23), - [anon_sym_volatile] = ACTIONS(23), - [anon_sym__Atomic] = ACTIONS(23), - [anon_sym_unsigned] = ACTIONS(25), - [anon_sym_long] = ACTIONS(25), - [anon_sym_short] = ACTIONS(25), - [sym_primitive_type] = ACTIONS(100), - [anon_sym_enum] = ACTIONS(29), - [anon_sym_struct] = ACTIONS(31), - [anon_sym_union] = ACTIONS(33), - [sym_identifier] = ACTIONS(35), - [sym_comment] = ACTIONS(37), + [sym__expression] = STATE(71), + [sym_conditional_expression] = STATE(71), + [sym_assignment_expression] = STATE(71), + [sym_pointer_expression] = STATE(71), + [sym_logical_expression] = STATE(71), + [sym_bitwise_expression] = STATE(71), + [sym_equality_expression] = STATE(71), + [sym_relational_expression] = STATE(71), + [sym_shift_expression] = STATE(71), + [sym_math_expression] = STATE(71), + [sym_cast_expression] = STATE(71), + [sym_sizeof_expression] = STATE(71), + [sym_subscript_expression] = STATE(71), + [sym_call_expression] = STATE(71), + [sym_field_expression] = STATE(71), + [sym_compound_literal_expression] = STATE(71), + [sym_parenthesized_expression] = STATE(71), + [sym_char_literal] = STATE(71), + [sym_concatenated_string] = STATE(71), + [sym_string_literal] = STATE(28), + [anon_sym_LPAREN2] = ACTIONS(141), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_AMP] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(41), + [anon_sym_PLUS] = ACTIONS(43), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_DASH_DASH] = ACTIONS(45), + [anon_sym_PLUS_PLUS] = ACTIONS(45), + [anon_sym_sizeof] = ACTIONS(47), + [sym_number_literal] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(145), + [sym_false] = ACTIONS(145), + [sym_null] = ACTIONS(145), + [sym_identifier] = ACTIONS(145), + [sym_comment] = ACTIONS(59), }, [20] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(52), - [anon_sym_SEMI] = ACTIONS(102), - [anon_sym_extern] = ACTIONS(104), - [anon_sym_LPAREN2] = ACTIONS(102), - [anon_sym_STAR] = ACTIONS(102), - [anon_sym_static] = ACTIONS(104), - [anon_sym_auto] = ACTIONS(104), - [anon_sym_register] = ACTIONS(104), - [anon_sym_inline] = ACTIONS(104), - [anon_sym_const] = ACTIONS(104), - [anon_sym_restrict] = ACTIONS(104), - [anon_sym_volatile] = ACTIONS(104), - [anon_sym__Atomic] = ACTIONS(104), - [anon_sym_unsigned] = ACTIONS(106), - [anon_sym_long] = ACTIONS(106), - [anon_sym_short] = ACTIONS(106), - [sym_primitive_type] = ACTIONS(108), - [sym_identifier] = ACTIONS(110), - [sym_comment] = ACTIONS(37), + [aux_sym_SLASH_LBRACK_CARET_BSLASHn_SQUOTE_RBRACK_SLASH] = ACTIONS(147), + [sym_escape_sequence] = ACTIONS(149), + [sym_comment] = ACTIONS(69), }, [21] = { - [aux_sym_string_literal_repeat1] = STATE(54), - [anon_sym_DQUOTE] = ACTIONS(113), - [aux_sym_SLASH_LBRACK_CARET_BSLASH_BSLASH_DQUOTE_BSLASHn_RBRACK_SLASH] = ACTIONS(115), - [sym_escape_sequence] = ACTIONS(115), - [sym_comment] = ACTIONS(47), + [aux_sym_string_literal_repeat1] = STATE(74), + [anon_sym_DQUOTE] = ACTIONS(151), + [aux_sym_SLASH_LBRACK_CARET_BSLASH_BSLASH_DQUOTE_BSLASHn_RBRACK_SLASH] = ACTIONS(153), + [sym_escape_sequence] = ACTIONS(153), + [sym_comment] = ACTIONS(69), }, [22] = { - [ts_builtin_sym_end] = ACTIONS(117), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(119), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(119), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(119), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(119), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(119), - [sym_preproc_directive] = ACTIONS(119), - [anon_sym_SEMI] = ACTIONS(117), - [anon_sym_typedef] = ACTIONS(119), - [anon_sym_extern] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(117), - [anon_sym_RBRACE] = ACTIONS(117), - [anon_sym_LPAREN2] = ACTIONS(117), - [anon_sym_STAR] = ACTIONS(117), - [anon_sym_static] = ACTIONS(119), - [anon_sym_auto] = ACTIONS(119), - [anon_sym_register] = ACTIONS(119), - [anon_sym_inline] = ACTIONS(119), - [anon_sym_const] = ACTIONS(119), - [anon_sym_restrict] = ACTIONS(119), - [anon_sym_volatile] = ACTIONS(119), - [anon_sym__Atomic] = ACTIONS(119), - [anon_sym_unsigned] = ACTIONS(119), - [anon_sym_long] = ACTIONS(119), - [anon_sym_short] = ACTIONS(119), - [sym_primitive_type] = ACTIONS(119), - [anon_sym_enum] = ACTIONS(119), - [anon_sym_struct] = ACTIONS(119), - [anon_sym_union] = ACTIONS(119), - [anon_sym_if] = ACTIONS(119), - [anon_sym_switch] = ACTIONS(119), - [anon_sym_case] = ACTIONS(119), - [anon_sym_default] = ACTIONS(119), - [anon_sym_while] = ACTIONS(119), - [anon_sym_do] = ACTIONS(119), - [anon_sym_for] = ACTIONS(119), - [anon_sym_return] = ACTIONS(119), - [anon_sym_break] = ACTIONS(119), - [anon_sym_continue] = ACTIONS(119), - [anon_sym_goto] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(117), - [anon_sym_TILDE] = ACTIONS(117), - [anon_sym_PLUS] = ACTIONS(119), - [anon_sym_DASH] = ACTIONS(119), - [anon_sym_DASH_DASH] = ACTIONS(117), - [anon_sym_PLUS_PLUS] = ACTIONS(117), - [anon_sym_sizeof] = ACTIONS(119), - [sym_number_literal] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_DQUOTE] = ACTIONS(117), - [sym_true] = ACTIONS(119), - [sym_false] = ACTIONS(119), - [sym_null] = ACTIONS(119), - [sym_identifier] = ACTIONS(119), - [sym_comment] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(155), + [anon_sym_extern] = ACTIONS(157), + [anon_sym_LPAREN2] = ACTIONS(159), + [anon_sym_STAR] = ACTIONS(163), + [anon_sym_LBRACK] = ACTIONS(166), + [anon_sym_EQ] = ACTIONS(168), + [anon_sym_static] = ACTIONS(157), + [anon_sym_auto] = ACTIONS(157), + [anon_sym_register] = ACTIONS(157), + [anon_sym_inline] = ACTIONS(157), + [anon_sym_const] = ACTIONS(157), + [anon_sym_restrict] = ACTIONS(157), + [anon_sym_volatile] = ACTIONS(157), + [anon_sym__Atomic] = ACTIONS(157), + [anon_sym_QMARK] = ACTIONS(166), + [anon_sym_STAR_EQ] = ACTIONS(166), + [anon_sym_SLASH_EQ] = ACTIONS(166), + [anon_sym_PERCENT_EQ] = ACTIONS(166), + [anon_sym_PLUS_EQ] = ACTIONS(166), + [anon_sym_DASH_EQ] = ACTIONS(166), + [anon_sym_LT_LT_EQ] = ACTIONS(166), + [anon_sym_GT_GT_EQ] = ACTIONS(166), + [anon_sym_AMP_EQ] = ACTIONS(166), + [anon_sym_CARET_EQ] = ACTIONS(166), + [anon_sym_PIPE_EQ] = ACTIONS(166), + [anon_sym_AMP] = ACTIONS(168), + [anon_sym_PIPE_PIPE] = ACTIONS(166), + [anon_sym_AMP_AMP] = ACTIONS(166), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_CARET] = ACTIONS(168), + [anon_sym_EQ_EQ] = ACTIONS(166), + [anon_sym_BANG_EQ] = ACTIONS(166), + [anon_sym_LT] = ACTIONS(168), + [anon_sym_GT] = ACTIONS(168), + [anon_sym_LT_EQ] = ACTIONS(166), + [anon_sym_GT_EQ] = ACTIONS(166), + [anon_sym_LT_LT] = ACTIONS(168), + [anon_sym_GT_GT] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(168), + [anon_sym_DASH] = ACTIONS(168), + [anon_sym_SLASH] = ACTIONS(168), + [anon_sym_PERCENT] = ACTIONS(168), + [anon_sym_DASH_DASH] = ACTIONS(166), + [anon_sym_PLUS_PLUS] = ACTIONS(166), + [anon_sym_DOT] = ACTIONS(166), + [anon_sym_DASH_GT] = ACTIONS(166), + [sym_identifier] = ACTIONS(157), + [sym_comment] = ACTIONS(59), }, [23] = { - [sym_preproc_params] = STATE(58), - [anon_sym_LF] = ACTIONS(121), - [anon_sym_LPAREN] = ACTIONS(123), - [sym_preproc_arg] = ACTIONS(125), - [sym_comment] = ACTIONS(47), + [ts_builtin_sym_end] = ACTIONS(170), + [sym_comment] = ACTIONS(59), }, [24] = { - [sym_preproc_include] = STATE(71), - [sym_preproc_def] = STATE(71), - [sym_preproc_function_def] = STATE(71), - [sym_preproc_call] = STATE(71), - [sym_preproc_if] = STATE(71), - [sym_preproc_ifdef] = STATE(71), - [sym_preproc_else] = STATE(69), - [sym_preproc_elif] = STATE(69), - [sym_function_definition] = STATE(71), - [sym_declaration] = STATE(71), - [sym_type_definition] = STATE(71), - [sym__declaration_specifiers] = STATE(70), - [sym_linkage_specification] = STATE(71), - [sym_storage_class_specifier] = STATE(19), - [sym_type_qualifier] = STATE(19), - [sym__type_specifier] = STATE(17), - [sym_sized_type_specifier] = STATE(17), - [sym_enum_specifier] = STATE(17), - [sym_struct_specifier] = STATE(17), - [sym_union_specifier] = STATE(17), - [sym__empty_declaration] = STATE(71), - [sym_macro_type_specifier] = STATE(17), - [aux_sym_translation_unit_repeat1] = STATE(71), - [aux_sym__declaration_specifiers_repeat1] = STATE(19), - [aux_sym_sized_type_specifier_repeat1] = STATE(20), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(127), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(129), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(131), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(133), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(135), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(135), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(137), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(139), - [sym_preproc_directive] = ACTIONS(141), - [anon_sym_typedef] = ACTIONS(143), - [anon_sym_extern] = ACTIONS(145), - [anon_sym_static] = ACTIONS(21), - [anon_sym_auto] = ACTIONS(21), - [anon_sym_register] = ACTIONS(21), - [anon_sym_inline] = ACTIONS(21), - [anon_sym_const] = ACTIONS(23), - [anon_sym_restrict] = ACTIONS(23), - [anon_sym_volatile] = ACTIONS(23), - [anon_sym__Atomic] = ACTIONS(23), - [anon_sym_unsigned] = ACTIONS(25), - [anon_sym_long] = ACTIONS(25), - [anon_sym_short] = ACTIONS(25), - [sym_primitive_type] = ACTIONS(27), - [anon_sym_enum] = ACTIONS(29), - [anon_sym_struct] = ACTIONS(31), - [anon_sym_union] = ACTIONS(33), - [sym_identifier] = ACTIONS(35), - [sym_comment] = ACTIONS(37), + [sym__declarator] = STATE(79), + [sym_pointer_declarator] = STATE(79), + [sym_function_declarator] = STATE(79), + [sym_array_declarator] = STATE(79), + [sym_init_declarator] = STATE(80), + [anon_sym_SEMI] = ACTIONS(172), + [anon_sym_LPAREN2] = ACTIONS(174), + [anon_sym_STAR] = ACTIONS(176), + [sym_identifier] = ACTIONS(178), + [sym_comment] = ACTIONS(59), }, [25] = { - [sym_preproc_include] = STATE(74), - [sym_preproc_def] = STATE(74), - [sym_preproc_function_def] = STATE(74), - [sym_preproc_call] = STATE(74), - [sym_preproc_if] = STATE(74), - [sym_preproc_ifdef] = STATE(74), - [sym_preproc_else] = STATE(73), - [sym_preproc_elif] = STATE(73), - [sym_function_definition] = STATE(74), - [sym_declaration] = STATE(74), - [sym_type_definition] = STATE(74), - [sym__declaration_specifiers] = STATE(70), - [sym_linkage_specification] = STATE(74), - [sym_storage_class_specifier] = STATE(19), - [sym_type_qualifier] = STATE(19), - [sym__type_specifier] = STATE(17), - [sym_sized_type_specifier] = STATE(17), - [sym_enum_specifier] = STATE(17), - [sym_struct_specifier] = STATE(17), - [sym_union_specifier] = STATE(17), - [sym__empty_declaration] = STATE(74), - [sym_macro_type_specifier] = STATE(17), - [aux_sym_translation_unit_repeat1] = STATE(74), - [aux_sym__declaration_specifiers_repeat1] = STATE(19), - [aux_sym_sized_type_specifier_repeat1] = STATE(20), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(127), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(129), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(131), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(147), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(135), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(135), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(137), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(139), - [sym_preproc_directive] = ACTIONS(141), - [anon_sym_typedef] = ACTIONS(143), - [anon_sym_extern] = ACTIONS(145), - [anon_sym_static] = ACTIONS(21), - [anon_sym_auto] = ACTIONS(21), - [anon_sym_register] = ACTIONS(21), - [anon_sym_inline] = ACTIONS(21), - [anon_sym_const] = ACTIONS(23), - [anon_sym_restrict] = ACTIONS(23), - [anon_sym_volatile] = ACTIONS(23), - [anon_sym__Atomic] = ACTIONS(23), - [anon_sym_unsigned] = ACTIONS(25), - [anon_sym_long] = ACTIONS(25), - [anon_sym_short] = ACTIONS(25), - [sym_primitive_type] = ACTIONS(27), - [anon_sym_enum] = ACTIONS(29), - [anon_sym_struct] = ACTIONS(31), - [anon_sym_union] = ACTIONS(33), - [sym_identifier] = ACTIONS(35), - [sym_comment] = ACTIONS(37), + [sym_storage_class_specifier] = STATE(81), + [sym_type_qualifier] = STATE(81), + [aux_sym__declaration_specifiers_repeat1] = STATE(81), + [anon_sym_SEMI] = ACTIONS(180), + [anon_sym_extern] = ACTIONS(25), + [anon_sym_LPAREN2] = ACTIONS(180), + [anon_sym_STAR] = ACTIONS(180), + [anon_sym_static] = ACTIONS(25), + [anon_sym_auto] = ACTIONS(25), + [anon_sym_register] = ACTIONS(25), + [anon_sym_inline] = ACTIONS(25), + [anon_sym_const] = ACTIONS(27), + [anon_sym_restrict] = ACTIONS(27), + [anon_sym_volatile] = ACTIONS(27), + [anon_sym__Atomic] = ACTIONS(27), + [sym_identifier] = ACTIONS(182), + [sym_comment] = ACTIONS(59), }, [26] = { - [ts_builtin_sym_end] = ACTIONS(149), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(151), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(151), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(151), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(151), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(151), - [sym_preproc_directive] = ACTIONS(151), - [anon_sym_SEMI] = ACTIONS(149), - [anon_sym_typedef] = ACTIONS(151), - [anon_sym_extern] = ACTIONS(151), - [anon_sym_LBRACE] = ACTIONS(149), - [anon_sym_RBRACE] = ACTIONS(149), - [anon_sym_LPAREN2] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(149), - [anon_sym_static] = ACTIONS(151), - [anon_sym_auto] = ACTIONS(151), - [anon_sym_register] = ACTIONS(151), - [anon_sym_inline] = ACTIONS(151), - [anon_sym_const] = ACTIONS(151), - [anon_sym_restrict] = ACTIONS(151), - [anon_sym_volatile] = ACTIONS(151), - [anon_sym__Atomic] = ACTIONS(151), - [anon_sym_unsigned] = ACTIONS(151), - [anon_sym_long] = ACTIONS(151), - [anon_sym_short] = ACTIONS(151), - [sym_primitive_type] = ACTIONS(151), - [anon_sym_enum] = ACTIONS(151), - [anon_sym_struct] = ACTIONS(151), - [anon_sym_union] = ACTIONS(151), - [anon_sym_if] = ACTIONS(151), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_case] = ACTIONS(151), - [anon_sym_default] = ACTIONS(151), - [anon_sym_while] = ACTIONS(151), - [anon_sym_do] = ACTIONS(151), - [anon_sym_for] = ACTIONS(151), - [anon_sym_return] = ACTIONS(151), - [anon_sym_break] = ACTIONS(151), - [anon_sym_continue] = ACTIONS(151), - [anon_sym_goto] = ACTIONS(151), - [anon_sym_AMP] = ACTIONS(149), - [anon_sym_BANG] = ACTIONS(149), - [anon_sym_TILDE] = ACTIONS(149), - [anon_sym_PLUS] = ACTIONS(151), - [anon_sym_DASH] = ACTIONS(151), - [anon_sym_DASH_DASH] = ACTIONS(149), - [anon_sym_PLUS_PLUS] = ACTIONS(149), - [anon_sym_sizeof] = ACTIONS(151), - [sym_number_literal] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(149), - [anon_sym_DQUOTE] = ACTIONS(149), - [sym_true] = ACTIONS(151), - [sym_false] = ACTIONS(151), - [sym_null] = ACTIONS(151), - [sym_identifier] = ACTIONS(151), - [sym_comment] = ACTIONS(37), + [sym_argument_list] = STATE(98), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(186), + [anon_sym_LBRACK] = ACTIONS(188), + [anon_sym_EQ] = ACTIONS(190), + [anon_sym_QMARK] = ACTIONS(192), + [anon_sym_STAR_EQ] = ACTIONS(194), + [anon_sym_SLASH_EQ] = ACTIONS(194), + [anon_sym_PERCENT_EQ] = ACTIONS(194), + [anon_sym_PLUS_EQ] = ACTIONS(194), + [anon_sym_DASH_EQ] = ACTIONS(194), + [anon_sym_LT_LT_EQ] = ACTIONS(194), + [anon_sym_GT_GT_EQ] = ACTIONS(194), + [anon_sym_AMP_EQ] = ACTIONS(194), + [anon_sym_CARET_EQ] = ACTIONS(194), + [anon_sym_PIPE_EQ] = ACTIONS(194), + [anon_sym_AMP] = ACTIONS(196), + [anon_sym_PIPE_PIPE] = ACTIONS(198), + [anon_sym_AMP_AMP] = ACTIONS(200), + [anon_sym_PIPE] = ACTIONS(202), + [anon_sym_CARET] = ACTIONS(204), + [anon_sym_EQ_EQ] = ACTIONS(206), + [anon_sym_BANG_EQ] = ACTIONS(206), + [anon_sym_LT] = ACTIONS(208), + [anon_sym_GT] = ACTIONS(208), + [anon_sym_LT_EQ] = ACTIONS(210), + [anon_sym_GT_EQ] = ACTIONS(210), + [anon_sym_LT_LT] = ACTIONS(212), + [anon_sym_GT_GT] = ACTIONS(212), + [anon_sym_PLUS] = ACTIONS(214), + [anon_sym_DASH] = ACTIONS(214), + [anon_sym_SLASH] = ACTIONS(186), + [anon_sym_PERCENT] = ACTIONS(186), + [anon_sym_DASH_DASH] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(216), + [anon_sym_DOT] = ACTIONS(218), + [anon_sym_DASH_GT] = ACTIONS(218), + [sym_comment] = ACTIONS(59), }, [27] = { - [anon_sym_LF] = ACTIONS(153), - [sym_comment] = ACTIONS(47), + [anon_sym_SEMI] = ACTIONS(220), + [anon_sym_LPAREN2] = ACTIONS(166), + [anon_sym_STAR] = ACTIONS(168), + [anon_sym_LBRACK] = ACTIONS(166), + [anon_sym_EQ] = ACTIONS(168), + [anon_sym_QMARK] = ACTIONS(166), + [anon_sym_STAR_EQ] = ACTIONS(166), + [anon_sym_SLASH_EQ] = ACTIONS(166), + [anon_sym_PERCENT_EQ] = ACTIONS(166), + [anon_sym_PLUS_EQ] = ACTIONS(166), + [anon_sym_DASH_EQ] = ACTIONS(166), + [anon_sym_LT_LT_EQ] = ACTIONS(166), + [anon_sym_GT_GT_EQ] = ACTIONS(166), + [anon_sym_AMP_EQ] = ACTIONS(166), + [anon_sym_CARET_EQ] = ACTIONS(166), + [anon_sym_PIPE_EQ] = ACTIONS(166), + [anon_sym_AMP] = ACTIONS(168), + [anon_sym_PIPE_PIPE] = ACTIONS(166), + [anon_sym_AMP_AMP] = ACTIONS(166), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_CARET] = ACTIONS(168), + [anon_sym_EQ_EQ] = ACTIONS(166), + [anon_sym_BANG_EQ] = ACTIONS(166), + [anon_sym_LT] = ACTIONS(168), + [anon_sym_GT] = ACTIONS(168), + [anon_sym_LT_EQ] = ACTIONS(166), + [anon_sym_GT_EQ] = ACTIONS(166), + [anon_sym_LT_LT] = ACTIONS(168), + [anon_sym_GT_GT] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(168), + [anon_sym_DASH] = ACTIONS(168), + [anon_sym_SLASH] = ACTIONS(168), + [anon_sym_PERCENT] = ACTIONS(168), + [anon_sym_DASH_DASH] = ACTIONS(166), + [anon_sym_PLUS_PLUS] = ACTIONS(166), + [anon_sym_DOT] = ACTIONS(166), + [anon_sym_DASH_GT] = ACTIONS(166), + [sym_comment] = ACTIONS(59), }, [28] = { - [sym__type_declarator] = STATE(79), - [sym_pointer_type_declarator] = STATE(79), - [sym_function_type_declarator] = STATE(79), - [sym_array_type_declarator] = STATE(79), - [anon_sym_LPAREN2] = ACTIONS(155), - [anon_sym_STAR] = ACTIONS(157), - [sym_identifier] = ACTIONS(159), - [sym_comment] = ACTIONS(37), + [sym_string_literal] = STATE(100), + [aux_sym_concatenated_string_repeat1] = STATE(100), + [anon_sym_LPAREN2] = ACTIONS(166), + [anon_sym_STAR] = ACTIONS(168), + [anon_sym_LBRACK] = ACTIONS(166), + [anon_sym_EQ] = ACTIONS(168), + [anon_sym_QMARK] = ACTIONS(166), + [anon_sym_STAR_EQ] = ACTIONS(166), + [anon_sym_SLASH_EQ] = ACTIONS(166), + [anon_sym_PERCENT_EQ] = ACTIONS(166), + [anon_sym_PLUS_EQ] = ACTIONS(166), + [anon_sym_DASH_EQ] = ACTIONS(166), + [anon_sym_LT_LT_EQ] = ACTIONS(166), + [anon_sym_GT_GT_EQ] = ACTIONS(166), + [anon_sym_AMP_EQ] = ACTIONS(166), + [anon_sym_CARET_EQ] = ACTIONS(166), + [anon_sym_PIPE_EQ] = ACTIONS(166), + [anon_sym_AMP] = ACTIONS(168), + [anon_sym_PIPE_PIPE] = ACTIONS(166), + [anon_sym_AMP_AMP] = ACTIONS(166), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_CARET] = ACTIONS(168), + [anon_sym_EQ_EQ] = ACTIONS(166), + [anon_sym_BANG_EQ] = ACTIONS(166), + [anon_sym_LT] = ACTIONS(168), + [anon_sym_GT] = ACTIONS(168), + [anon_sym_LT_EQ] = ACTIONS(166), + [anon_sym_GT_EQ] = ACTIONS(166), + [anon_sym_LT_LT] = ACTIONS(168), + [anon_sym_GT_GT] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(168), + [anon_sym_DASH] = ACTIONS(168), + [anon_sym_SLASH] = ACTIONS(168), + [anon_sym_PERCENT] = ACTIONS(168), + [anon_sym_DASH_DASH] = ACTIONS(166), + [anon_sym_PLUS_PLUS] = ACTIONS(166), + [anon_sym_DOT] = ACTIONS(166), + [anon_sym_DASH_GT] = ACTIONS(166), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_comment] = ACTIONS(59), }, [29] = { - [sym_type_qualifier] = STATE(81), - [sym__type_specifier] = STATE(80), - [sym_sized_type_specifier] = STATE(80), - [sym_enum_specifier] = STATE(80), - [sym_struct_specifier] = STATE(80), - [sym_union_specifier] = STATE(80), - [sym_macro_type_specifier] = STATE(80), - [aux_sym_type_definition_repeat1] = STATE(81), - [aux_sym_sized_type_specifier_repeat1] = STATE(30), - [anon_sym_const] = ACTIONS(23), - [anon_sym_restrict] = ACTIONS(23), - [anon_sym_volatile] = ACTIONS(23), - [anon_sym__Atomic] = ACTIONS(23), - [anon_sym_unsigned] = ACTIONS(55), - [anon_sym_long] = ACTIONS(55), - [anon_sym_short] = ACTIONS(55), - [sym_primitive_type] = ACTIONS(161), - [anon_sym_enum] = ACTIONS(29), - [anon_sym_struct] = ACTIONS(31), - [anon_sym_union] = ACTIONS(33), - [sym_identifier] = ACTIONS(35), - [sym_comment] = ACTIONS(37), + [sym_preproc_include] = STATE(101), + [sym_preproc_def] = STATE(101), + [sym_preproc_function_def] = STATE(101), + [sym_preproc_call] = STATE(101), + [sym_preproc_if] = STATE(101), + [sym_preproc_ifdef] = STATE(101), + [sym_function_definition] = STATE(101), + [sym_declaration] = STATE(101), + [sym_type_definition] = STATE(101), + [sym__declaration_specifiers] = STATE(24), + [sym_linkage_specification] = STATE(101), + [sym_storage_class_specifier] = STATE(30), + [sym_type_qualifier] = STATE(30), + [sym__type_specifier] = STATE(25), + [sym_sized_type_specifier] = STATE(25), + [sym_enum_specifier] = STATE(25), + [sym_struct_specifier] = STATE(25), + [sym_union_specifier] = STATE(25), + [sym__expression] = STATE(26), + [sym_conditional_expression] = STATE(26), + [sym_assignment_expression] = STATE(26), + [sym_pointer_expression] = STATE(26), + [sym_logical_expression] = STATE(26), + [sym_bitwise_expression] = STATE(26), + [sym_equality_expression] = STATE(26), + [sym_relational_expression] = STATE(26), + [sym_shift_expression] = STATE(26), + [sym_math_expression] = STATE(26), + [sym_cast_expression] = STATE(26), + [sym_sizeof_expression] = STATE(26), + [sym_subscript_expression] = STATE(26), + [sym_call_expression] = STATE(27), + [sym_field_expression] = STATE(26), + [sym_compound_literal_expression] = STATE(26), + [sym_parenthesized_expression] = STATE(26), + [sym_char_literal] = STATE(26), + [sym_concatenated_string] = STATE(26), + [sym_string_literal] = STATE(28), + [sym__empty_declaration] = STATE(101), + [sym_macro_type_specifier] = STATE(25), + [aux_sym_translation_unit_repeat1] = STATE(101), + [aux_sym__declaration_specifiers_repeat1] = STATE(30), + [aux_sym_sized_type_specifier_repeat1] = STATE(31), + [ts_builtin_sym_end] = ACTIONS(222), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(7), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(9), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(11), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(13), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(13), + [sym_preproc_directive] = ACTIONS(15), + [anon_sym_typedef] = ACTIONS(17), + [anon_sym_extern] = ACTIONS(19), + [anon_sym_LPAREN2] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_static] = ACTIONS(25), + [anon_sym_auto] = ACTIONS(25), + [anon_sym_register] = ACTIONS(25), + [anon_sym_inline] = ACTIONS(25), + [anon_sym_const] = ACTIONS(27), + [anon_sym_restrict] = ACTIONS(27), + [anon_sym_volatile] = ACTIONS(27), + [anon_sym__Atomic] = ACTIONS(27), + [anon_sym_unsigned] = ACTIONS(29), + [anon_sym_long] = ACTIONS(29), + [anon_sym_short] = ACTIONS(29), + [sym_primitive_type] = ACTIONS(31), + [anon_sym_enum] = ACTIONS(33), + [anon_sym_struct] = ACTIONS(35), + [anon_sym_union] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(41), + [anon_sym_PLUS] = ACTIONS(43), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_DASH_DASH] = ACTIONS(45), + [anon_sym_PLUS_PLUS] = ACTIONS(45), + [anon_sym_sizeof] = ACTIONS(47), + [sym_number_literal] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(55), + [sym_false] = ACTIONS(55), + [sym_null] = ACTIONS(55), + [sym_identifier] = ACTIONS(57), + [sym_comment] = ACTIONS(59), }, [30] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(82), - [anon_sym_LPAREN2] = ACTIONS(102), - [anon_sym_STAR] = ACTIONS(102), - [anon_sym_unsigned] = ACTIONS(163), - [anon_sym_long] = ACTIONS(163), - [anon_sym_short] = ACTIONS(163), - [sym_primitive_type] = ACTIONS(108), - [sym_identifier] = ACTIONS(110), - [sym_comment] = ACTIONS(37), + [sym_storage_class_specifier] = STATE(103), + [sym_type_qualifier] = STATE(103), + [sym__type_specifier] = STATE(102), + [sym_sized_type_specifier] = STATE(102), + [sym_enum_specifier] = STATE(102), + [sym_struct_specifier] = STATE(102), + [sym_union_specifier] = STATE(102), + [sym_macro_type_specifier] = STATE(102), + [aux_sym__declaration_specifiers_repeat1] = STATE(103), + [aux_sym_sized_type_specifier_repeat1] = STATE(31), + [anon_sym_extern] = ACTIONS(25), + [anon_sym_static] = ACTIONS(25), + [anon_sym_auto] = ACTIONS(25), + [anon_sym_register] = ACTIONS(25), + [anon_sym_inline] = ACTIONS(25), + [anon_sym_const] = ACTIONS(27), + [anon_sym_restrict] = ACTIONS(27), + [anon_sym_volatile] = ACTIONS(27), + [anon_sym__Atomic] = ACTIONS(27), + [anon_sym_unsigned] = ACTIONS(29), + [anon_sym_long] = ACTIONS(29), + [anon_sym_short] = ACTIONS(29), + [sym_primitive_type] = ACTIONS(224), + [anon_sym_enum] = ACTIONS(33), + [anon_sym_struct] = ACTIONS(35), + [anon_sym_union] = ACTIONS(37), + [sym_identifier] = ACTIONS(81), + [sym_comment] = ACTIONS(59), }, [31] = { - [sym_function_definition] = STATE(84), - [sym_declaration] = STATE(84), - [sym__declaration_specifiers] = STATE(85), - [sym_declaration_list] = STATE(84), - [sym_storage_class_specifier] = STATE(87), - [sym_type_qualifier] = STATE(87), - [sym__type_specifier] = STATE(86), - [sym_sized_type_specifier] = STATE(86), - [sym_enum_specifier] = STATE(86), - [sym_struct_specifier] = STATE(86), - [sym_union_specifier] = STATE(86), - [sym_macro_type_specifier] = STATE(86), - [aux_sym__declaration_specifiers_repeat1] = STATE(87), - [aux_sym_sized_type_specifier_repeat1] = STATE(88), - [anon_sym_extern] = ACTIONS(21), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_static] = ACTIONS(21), - [anon_sym_auto] = ACTIONS(21), - [anon_sym_register] = ACTIONS(21), - [anon_sym_inline] = ACTIONS(21), - [anon_sym_const] = ACTIONS(23), - [anon_sym_restrict] = ACTIONS(23), - [anon_sym_volatile] = ACTIONS(23), - [anon_sym__Atomic] = ACTIONS(23), - [anon_sym_unsigned] = ACTIONS(167), - [anon_sym_long] = ACTIONS(167), - [anon_sym_short] = ACTIONS(167), - [sym_primitive_type] = ACTIONS(169), - [anon_sym_enum] = ACTIONS(29), - [anon_sym_struct] = ACTIONS(31), - [anon_sym_union] = ACTIONS(33), - [sym_identifier] = ACTIONS(35), - [sym_comment] = ACTIONS(37), + [aux_sym_sized_type_specifier_repeat1] = STATE(106), + [anon_sym_SEMI] = ACTIONS(226), + [anon_sym_extern] = ACTIONS(228), + [anon_sym_LPAREN2] = ACTIONS(226), + [anon_sym_STAR] = ACTIONS(226), + [anon_sym_static] = ACTIONS(228), + [anon_sym_auto] = ACTIONS(228), + [anon_sym_register] = ACTIONS(228), + [anon_sym_inline] = ACTIONS(228), + [anon_sym_const] = ACTIONS(228), + [anon_sym_restrict] = ACTIONS(228), + [anon_sym_volatile] = ACTIONS(228), + [anon_sym__Atomic] = ACTIONS(228), + [anon_sym_unsigned] = ACTIONS(230), + [anon_sym_long] = ACTIONS(230), + [anon_sym_short] = ACTIONS(230), + [sym_primitive_type] = ACTIONS(232), + [sym_identifier] = ACTIONS(234), + [sym_comment] = ACTIONS(59), }, [32] = { - [sym_enumerator] = STATE(92), - [anon_sym_COMMA] = ACTIONS(171), - [anon_sym_RBRACE] = ACTIONS(173), - [sym_identifier] = ACTIONS(175), - [sym_comment] = ACTIONS(37), + [aux_sym_string_literal_repeat1] = STATE(108), + [anon_sym_DQUOTE] = ACTIONS(237), + [aux_sym_SLASH_LBRACK_CARET_BSLASH_BSLASH_DQUOTE_BSLASHn_RBRACK_SLASH] = ACTIONS(239), + [sym_escape_sequence] = ACTIONS(239), + [sym_comment] = ACTIONS(69), }, [33] = { - [sym_enumerator_list] = STATE(93), - [anon_sym_COMMA] = ACTIONS(177), - [anon_sym_RPAREN] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(177), - [anon_sym_extern] = ACTIONS(179), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_LPAREN2] = ACTIONS(177), - [anon_sym_STAR] = ACTIONS(177), - [anon_sym_LBRACK] = ACTIONS(177), - [anon_sym_RBRACK] = ACTIONS(177), - [anon_sym_static] = ACTIONS(179), - [anon_sym_auto] = ACTIONS(179), - [anon_sym_register] = ACTIONS(179), - [anon_sym_inline] = ACTIONS(179), - [anon_sym_const] = ACTIONS(179), - [anon_sym_restrict] = ACTIONS(179), - [anon_sym_volatile] = ACTIONS(179), - [anon_sym__Atomic] = ACTIONS(179), - [anon_sym_COLON] = ACTIONS(177), - [anon_sym_AMP] = ACTIONS(177), - [anon_sym_BANG] = ACTIONS(177), - [anon_sym_TILDE] = ACTIONS(177), - [anon_sym_PLUS] = ACTIONS(179), - [anon_sym_DASH] = ACTIONS(179), - [anon_sym_DASH_DASH] = ACTIONS(177), - [anon_sym_PLUS_PLUS] = ACTIONS(177), - [anon_sym_sizeof] = ACTIONS(179), - [sym_number_literal] = ACTIONS(177), - [anon_sym_SQUOTE] = ACTIONS(177), - [anon_sym_DQUOTE] = ACTIONS(177), - [sym_true] = ACTIONS(179), - [sym_false] = ACTIONS(179), - [sym_null] = ACTIONS(179), - [sym_identifier] = ACTIONS(179), - [sym_comment] = ACTIONS(37), + [ts_builtin_sym_end] = ACTIONS(241), + [anon_sym_SEMI] = ACTIONS(241), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(243), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(243), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(243), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(243), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(243), + [sym_preproc_directive] = ACTIONS(243), + [anon_sym_typedef] = ACTIONS(243), + [anon_sym_extern] = ACTIONS(243), + [anon_sym_LBRACE] = ACTIONS(241), + [anon_sym_RBRACE] = ACTIONS(241), + [anon_sym_LPAREN2] = ACTIONS(241), + [anon_sym_STAR] = ACTIONS(241), + [anon_sym_static] = ACTIONS(243), + [anon_sym_auto] = ACTIONS(243), + [anon_sym_register] = ACTIONS(243), + [anon_sym_inline] = ACTIONS(243), + [anon_sym_const] = ACTIONS(243), + [anon_sym_restrict] = ACTIONS(243), + [anon_sym_volatile] = ACTIONS(243), + [anon_sym__Atomic] = ACTIONS(243), + [anon_sym_unsigned] = ACTIONS(243), + [anon_sym_long] = ACTIONS(243), + [anon_sym_short] = ACTIONS(243), + [sym_primitive_type] = ACTIONS(243), + [anon_sym_enum] = ACTIONS(243), + [anon_sym_struct] = ACTIONS(243), + [anon_sym_union] = ACTIONS(243), + [anon_sym_if] = ACTIONS(243), + [anon_sym_switch] = ACTIONS(243), + [anon_sym_case] = ACTIONS(243), + [anon_sym_default] = ACTIONS(243), + [anon_sym_while] = ACTIONS(243), + [anon_sym_do] = ACTIONS(243), + [anon_sym_for] = ACTIONS(243), + [anon_sym_return] = ACTIONS(243), + [anon_sym_break] = ACTIONS(243), + [anon_sym_continue] = ACTIONS(243), + [anon_sym_goto] = ACTIONS(243), + [anon_sym_AMP] = ACTIONS(241), + [anon_sym_BANG] = ACTIONS(241), + [anon_sym_TILDE] = ACTIONS(241), + [anon_sym_PLUS] = ACTIONS(243), + [anon_sym_DASH] = ACTIONS(243), + [anon_sym_DASH_DASH] = ACTIONS(241), + [anon_sym_PLUS_PLUS] = ACTIONS(241), + [anon_sym_sizeof] = ACTIONS(243), + [sym_number_literal] = ACTIONS(241), + [anon_sym_SQUOTE] = ACTIONS(241), + [anon_sym_DQUOTE] = ACTIONS(241), + [sym_true] = ACTIONS(243), + [sym_false] = ACTIONS(243), + [sym_null] = ACTIONS(243), + [sym_identifier] = ACTIONS(243), + [sym_comment] = ACTIONS(59), }, [34] = { - [anon_sym_COMMA] = ACTIONS(181), - [anon_sym_RPAREN] = ACTIONS(181), - [anon_sym_SEMI] = ACTIONS(181), - [anon_sym_extern] = ACTIONS(183), - [anon_sym_LPAREN2] = ACTIONS(181), - [anon_sym_STAR] = ACTIONS(181), - [anon_sym_LBRACK] = ACTIONS(181), - [anon_sym_RBRACK] = ACTIONS(181), - [anon_sym_static] = ACTIONS(183), - [anon_sym_auto] = ACTIONS(183), - [anon_sym_register] = ACTIONS(183), - [anon_sym_inline] = ACTIONS(183), - [anon_sym_const] = ACTIONS(183), - [anon_sym_restrict] = ACTIONS(183), - [anon_sym_volatile] = ACTIONS(183), - [anon_sym__Atomic] = ACTIONS(183), - [anon_sym_COLON] = ACTIONS(181), - [anon_sym_AMP] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(181), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), - [anon_sym_DASH_DASH] = ACTIONS(181), - [anon_sym_PLUS_PLUS] = ACTIONS(181), - [anon_sym_sizeof] = ACTIONS(183), - [sym_number_literal] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(181), - [anon_sym_DQUOTE] = ACTIONS(181), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_identifier] = ACTIONS(183), - [sym_comment] = ACTIONS(37), + [sym_preproc_params] = STATE(112), + [anon_sym_LF] = ACTIONS(245), + [anon_sym_LPAREN] = ACTIONS(247), + [sym_preproc_arg] = ACTIONS(249), + [sym_comment] = ACTIONS(69), }, [35] = { - [sym_preproc_if_in_field_declaration_list] = STATE(99), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(99), - [sym__declaration_specifiers] = STATE(97), - [sym_storage_class_specifier] = STATE(100), - [sym_type_qualifier] = STATE(100), - [sym__type_specifier] = STATE(98), - [sym_sized_type_specifier] = STATE(98), - [sym_enum_specifier] = STATE(98), - [sym_struct_specifier] = STATE(98), - [sym_union_specifier] = STATE(98), - [sym__field_declaration_list_item] = STATE(99), - [sym_field_declaration] = STATE(99), - [sym_macro_type_specifier] = STATE(98), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(99), - [aux_sym__declaration_specifiers_repeat1] = STATE(100), - [aux_sym_sized_type_specifier_repeat1] = STATE(101), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(185), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(187), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(187), - [anon_sym_extern] = ACTIONS(21), - [anon_sym_RBRACE] = ACTIONS(189), - [anon_sym_static] = ACTIONS(21), - [anon_sym_auto] = ACTIONS(21), - [anon_sym_register] = ACTIONS(21), - [anon_sym_inline] = ACTIONS(21), - [anon_sym_const] = ACTIONS(23), - [anon_sym_restrict] = ACTIONS(23), - [anon_sym_volatile] = ACTIONS(23), - [anon_sym__Atomic] = ACTIONS(23), - [anon_sym_unsigned] = ACTIONS(191), - [anon_sym_long] = ACTIONS(191), - [anon_sym_short] = ACTIONS(191), - [sym_primitive_type] = ACTIONS(193), - [anon_sym_enum] = ACTIONS(29), - [anon_sym_struct] = ACTIONS(31), - [anon_sym_union] = ACTIONS(33), - [sym_identifier] = ACTIONS(35), - [sym_comment] = ACTIONS(37), + [sym_preproc_include] = STATE(126), + [sym_preproc_def] = STATE(126), + [sym_preproc_function_def] = STATE(126), + [sym_preproc_call] = STATE(126), + [sym_preproc_if] = STATE(126), + [sym_preproc_ifdef] = STATE(126), + [sym_preproc_else] = STATE(123), + [sym_preproc_elif] = STATE(123), + [sym_function_definition] = STATE(126), + [sym_declaration] = STATE(126), + [sym_type_definition] = STATE(126), + [sym__declaration_specifiers] = STATE(124), + [sym_linkage_specification] = STATE(126), + [sym_storage_class_specifier] = STATE(30), + [sym_type_qualifier] = STATE(30), + [sym__type_specifier] = STATE(25), + [sym_sized_type_specifier] = STATE(25), + [sym_enum_specifier] = STATE(25), + [sym_struct_specifier] = STATE(25), + [sym_union_specifier] = STATE(25), + [sym__expression] = STATE(26), + [sym_conditional_expression] = STATE(26), + [sym_assignment_expression] = STATE(26), + [sym_pointer_expression] = STATE(26), + [sym_logical_expression] = STATE(26), + [sym_bitwise_expression] = STATE(26), + [sym_equality_expression] = STATE(26), + [sym_relational_expression] = STATE(26), + [sym_shift_expression] = STATE(26), + [sym_math_expression] = STATE(26), + [sym_cast_expression] = STATE(26), + [sym_sizeof_expression] = STATE(26), + [sym_subscript_expression] = STATE(26), + [sym_call_expression] = STATE(125), + [sym_field_expression] = STATE(26), + [sym_compound_literal_expression] = STATE(26), + [sym_parenthesized_expression] = STATE(26), + [sym_char_literal] = STATE(26), + [sym_concatenated_string] = STATE(26), + [sym_string_literal] = STATE(28), + [sym__empty_declaration] = STATE(126), + [sym_macro_type_specifier] = STATE(25), + [aux_sym_translation_unit_repeat1] = STATE(126), + [aux_sym__declaration_specifiers_repeat1] = STATE(30), + [aux_sym_sized_type_specifier_repeat1] = STATE(31), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(251), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(253), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(255), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(257), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(259), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(259), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(261), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(263), + [sym_preproc_directive] = ACTIONS(265), + [anon_sym_typedef] = ACTIONS(267), + [anon_sym_extern] = ACTIONS(269), + [anon_sym_LPAREN2] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_static] = ACTIONS(25), + [anon_sym_auto] = ACTIONS(25), + [anon_sym_register] = ACTIONS(25), + [anon_sym_inline] = ACTIONS(25), + [anon_sym_const] = ACTIONS(27), + [anon_sym_restrict] = ACTIONS(27), + [anon_sym_volatile] = ACTIONS(27), + [anon_sym__Atomic] = ACTIONS(27), + [anon_sym_unsigned] = ACTIONS(29), + [anon_sym_long] = ACTIONS(29), + [anon_sym_short] = ACTIONS(29), + [sym_primitive_type] = ACTIONS(31), + [anon_sym_enum] = ACTIONS(33), + [anon_sym_struct] = ACTIONS(35), + [anon_sym_union] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(41), + [anon_sym_PLUS] = ACTIONS(43), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_DASH_DASH] = ACTIONS(45), + [anon_sym_PLUS_PLUS] = ACTIONS(45), + [anon_sym_sizeof] = ACTIONS(47), + [sym_number_literal] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(55), + [sym_false] = ACTIONS(55), + [sym_null] = ACTIONS(55), + [sym_identifier] = ACTIONS(57), + [sym_comment] = ACTIONS(59), }, [36] = { - [sym_field_declaration_list] = STATE(102), - [anon_sym_COMMA] = ACTIONS(195), - [anon_sym_RPAREN] = ACTIONS(195), - [anon_sym_SEMI] = ACTIONS(195), - [anon_sym_extern] = ACTIONS(197), - [anon_sym_LBRACE] = ACTIONS(71), - [anon_sym_LPAREN2] = ACTIONS(195), - [anon_sym_STAR] = ACTIONS(195), - [anon_sym_LBRACK] = ACTIONS(195), - [anon_sym_RBRACK] = ACTIONS(195), - [anon_sym_static] = ACTIONS(197), - [anon_sym_auto] = ACTIONS(197), - [anon_sym_register] = ACTIONS(197), - [anon_sym_inline] = ACTIONS(197), - [anon_sym_const] = ACTIONS(197), - [anon_sym_restrict] = ACTIONS(197), - [anon_sym_volatile] = ACTIONS(197), - [anon_sym__Atomic] = ACTIONS(197), - [anon_sym_COLON] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(195), - [anon_sym_BANG] = ACTIONS(195), - [anon_sym_TILDE] = ACTIONS(195), - [anon_sym_PLUS] = ACTIONS(197), - [anon_sym_DASH] = ACTIONS(197), - [anon_sym_DASH_DASH] = ACTIONS(195), - [anon_sym_PLUS_PLUS] = ACTIONS(195), - [anon_sym_sizeof] = ACTIONS(197), - [sym_number_literal] = ACTIONS(195), - [anon_sym_SQUOTE] = ACTIONS(195), - [anon_sym_DQUOTE] = ACTIONS(195), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_identifier] = ACTIONS(197), - [sym_comment] = ACTIONS(37), + [sym_preproc_include] = STATE(129), + [sym_preproc_def] = STATE(129), + [sym_preproc_function_def] = STATE(129), + [sym_preproc_call] = STATE(129), + [sym_preproc_if] = STATE(129), + [sym_preproc_ifdef] = STATE(129), + [sym_preproc_else] = STATE(128), + [sym_preproc_elif] = STATE(128), + [sym_function_definition] = STATE(129), + [sym_declaration] = STATE(129), + [sym_type_definition] = STATE(129), + [sym__declaration_specifiers] = STATE(124), + [sym_linkage_specification] = STATE(129), + [sym_storage_class_specifier] = STATE(30), + [sym_type_qualifier] = STATE(30), + [sym__type_specifier] = STATE(25), + [sym_sized_type_specifier] = STATE(25), + [sym_enum_specifier] = STATE(25), + [sym_struct_specifier] = STATE(25), + [sym_union_specifier] = STATE(25), + [sym__expression] = STATE(26), + [sym_conditional_expression] = STATE(26), + [sym_assignment_expression] = STATE(26), + [sym_pointer_expression] = STATE(26), + [sym_logical_expression] = STATE(26), + [sym_bitwise_expression] = STATE(26), + [sym_equality_expression] = STATE(26), + [sym_relational_expression] = STATE(26), + [sym_shift_expression] = STATE(26), + [sym_math_expression] = STATE(26), + [sym_cast_expression] = STATE(26), + [sym_sizeof_expression] = STATE(26), + [sym_subscript_expression] = STATE(26), + [sym_call_expression] = STATE(125), + [sym_field_expression] = STATE(26), + [sym_compound_literal_expression] = STATE(26), + [sym_parenthesized_expression] = STATE(26), + [sym_char_literal] = STATE(26), + [sym_concatenated_string] = STATE(26), + [sym_string_literal] = STATE(28), + [sym__empty_declaration] = STATE(129), + [sym_macro_type_specifier] = STATE(25), + [aux_sym_translation_unit_repeat1] = STATE(129), + [aux_sym__declaration_specifiers_repeat1] = STATE(30), + [aux_sym_sized_type_specifier_repeat1] = STATE(31), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(251), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(253), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(255), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(271), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(259), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(259), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(261), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(263), + [sym_preproc_directive] = ACTIONS(265), + [anon_sym_typedef] = ACTIONS(267), + [anon_sym_extern] = ACTIONS(269), + [anon_sym_LPAREN2] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_static] = ACTIONS(25), + [anon_sym_auto] = ACTIONS(25), + [anon_sym_register] = ACTIONS(25), + [anon_sym_inline] = ACTIONS(25), + [anon_sym_const] = ACTIONS(27), + [anon_sym_restrict] = ACTIONS(27), + [anon_sym_volatile] = ACTIONS(27), + [anon_sym__Atomic] = ACTIONS(27), + [anon_sym_unsigned] = ACTIONS(29), + [anon_sym_long] = ACTIONS(29), + [anon_sym_short] = ACTIONS(29), + [sym_primitive_type] = ACTIONS(31), + [anon_sym_enum] = ACTIONS(33), + [anon_sym_struct] = ACTIONS(35), + [anon_sym_union] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(41), + [anon_sym_PLUS] = ACTIONS(43), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_DASH_DASH] = ACTIONS(45), + [anon_sym_PLUS_PLUS] = ACTIONS(45), + [anon_sym_sizeof] = ACTIONS(47), + [sym_number_literal] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(55), + [sym_false] = ACTIONS(55), + [sym_null] = ACTIONS(55), + [sym_identifier] = ACTIONS(57), + [sym_comment] = ACTIONS(59), }, [37] = { - [anon_sym_COMMA] = ACTIONS(199), - [anon_sym_RPAREN] = ACTIONS(199), - [anon_sym_SEMI] = ACTIONS(199), - [anon_sym_extern] = ACTIONS(201), - [anon_sym_LPAREN2] = ACTIONS(199), - [anon_sym_STAR] = ACTIONS(199), - [anon_sym_LBRACK] = ACTIONS(199), - [anon_sym_RBRACK] = ACTIONS(199), - [anon_sym_static] = ACTIONS(201), - [anon_sym_auto] = ACTIONS(201), - [anon_sym_register] = ACTIONS(201), - [anon_sym_inline] = ACTIONS(201), - [anon_sym_const] = ACTIONS(201), - [anon_sym_restrict] = ACTIONS(201), - [anon_sym_volatile] = ACTIONS(201), - [anon_sym__Atomic] = ACTIONS(201), - [anon_sym_COLON] = ACTIONS(199), - [anon_sym_AMP] = ACTIONS(199), - [anon_sym_BANG] = ACTIONS(199), - [anon_sym_TILDE] = ACTIONS(199), - [anon_sym_PLUS] = ACTIONS(201), - [anon_sym_DASH] = ACTIONS(201), - [anon_sym_DASH_DASH] = ACTIONS(199), - [anon_sym_PLUS_PLUS] = ACTIONS(199), - [anon_sym_sizeof] = ACTIONS(201), - [sym_number_literal] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_DQUOTE] = ACTIONS(199), - [sym_true] = ACTIONS(201), - [sym_false] = ACTIONS(201), - [sym_null] = ACTIONS(201), - [sym_identifier] = ACTIONS(201), - [sym_comment] = ACTIONS(37), + [ts_builtin_sym_end] = ACTIONS(273), + [anon_sym_SEMI] = ACTIONS(273), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(275), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(275), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(275), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(275), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(275), + [sym_preproc_directive] = ACTIONS(275), + [anon_sym_typedef] = ACTIONS(275), + [anon_sym_extern] = ACTIONS(275), + [anon_sym_LBRACE] = ACTIONS(273), + [anon_sym_RBRACE] = ACTIONS(273), + [anon_sym_LPAREN2] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(273), + [anon_sym_static] = ACTIONS(275), + [anon_sym_auto] = ACTIONS(275), + [anon_sym_register] = ACTIONS(275), + [anon_sym_inline] = ACTIONS(275), + [anon_sym_const] = ACTIONS(275), + [anon_sym_restrict] = ACTIONS(275), + [anon_sym_volatile] = ACTIONS(275), + [anon_sym__Atomic] = ACTIONS(275), + [anon_sym_unsigned] = ACTIONS(275), + [anon_sym_long] = ACTIONS(275), + [anon_sym_short] = ACTIONS(275), + [sym_primitive_type] = ACTIONS(275), + [anon_sym_enum] = ACTIONS(275), + [anon_sym_struct] = ACTIONS(275), + [anon_sym_union] = ACTIONS(275), + [anon_sym_if] = ACTIONS(275), + [anon_sym_switch] = ACTIONS(275), + [anon_sym_case] = ACTIONS(275), + [anon_sym_default] = ACTIONS(275), + [anon_sym_while] = ACTIONS(275), + [anon_sym_do] = ACTIONS(275), + [anon_sym_for] = ACTIONS(275), + [anon_sym_return] = ACTIONS(275), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(275), + [anon_sym_goto] = ACTIONS(275), + [anon_sym_AMP] = ACTIONS(273), + [anon_sym_BANG] = ACTIONS(273), + [anon_sym_TILDE] = ACTIONS(273), + [anon_sym_PLUS] = ACTIONS(275), + [anon_sym_DASH] = ACTIONS(275), + [anon_sym_DASH_DASH] = ACTIONS(273), + [anon_sym_PLUS_PLUS] = ACTIONS(273), + [anon_sym_sizeof] = ACTIONS(275), + [sym_number_literal] = ACTIONS(273), + [anon_sym_SQUOTE] = ACTIONS(273), + [anon_sym_DQUOTE] = ACTIONS(273), + [sym_true] = ACTIONS(275), + [sym_false] = ACTIONS(275), + [sym_null] = ACTIONS(275), + [sym_identifier] = ACTIONS(275), + [sym_comment] = ACTIONS(59), }, [38] = { - [sym_field_declaration_list] = STATE(103), - [anon_sym_COMMA] = ACTIONS(203), - [anon_sym_RPAREN] = ACTIONS(203), - [anon_sym_SEMI] = ACTIONS(203), - [anon_sym_extern] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(71), - [anon_sym_LPAREN2] = ACTIONS(203), - [anon_sym_STAR] = ACTIONS(203), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_RBRACK] = ACTIONS(203), - [anon_sym_static] = ACTIONS(205), - [anon_sym_auto] = ACTIONS(205), - [anon_sym_register] = ACTIONS(205), - [anon_sym_inline] = ACTIONS(205), - [anon_sym_const] = ACTIONS(205), - [anon_sym_restrict] = ACTIONS(205), - [anon_sym_volatile] = ACTIONS(205), - [anon_sym__Atomic] = ACTIONS(205), - [anon_sym_COLON] = ACTIONS(203), - [anon_sym_AMP] = ACTIONS(203), - [anon_sym_BANG] = ACTIONS(203), - [anon_sym_TILDE] = ACTIONS(203), - [anon_sym_PLUS] = ACTIONS(205), - [anon_sym_DASH] = ACTIONS(205), - [anon_sym_DASH_DASH] = ACTIONS(203), - [anon_sym_PLUS_PLUS] = ACTIONS(203), - [anon_sym_sizeof] = ACTIONS(205), - [sym_number_literal] = ACTIONS(203), - [anon_sym_SQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE] = ACTIONS(203), - [sym_true] = ACTIONS(205), - [sym_false] = ACTIONS(205), - [sym_null] = ACTIONS(205), - [sym_identifier] = ACTIONS(205), - [sym_comment] = ACTIONS(37), + [anon_sym_LF] = ACTIONS(277), + [sym_comment] = ACTIONS(69), }, [39] = { - [anon_sym_COMMA] = ACTIONS(207), - [anon_sym_RPAREN] = ACTIONS(207), - [anon_sym_SEMI] = ACTIONS(207), - [anon_sym_extern] = ACTIONS(209), - [anon_sym_LPAREN2] = ACTIONS(207), - [anon_sym_STAR] = ACTIONS(207), - [anon_sym_LBRACK] = ACTIONS(207), - [anon_sym_RBRACK] = ACTIONS(207), - [anon_sym_static] = ACTIONS(209), - [anon_sym_auto] = ACTIONS(209), - [anon_sym_register] = ACTIONS(209), - [anon_sym_inline] = ACTIONS(209), - [anon_sym_const] = ACTIONS(209), - [anon_sym_restrict] = ACTIONS(209), - [anon_sym_volatile] = ACTIONS(209), - [anon_sym__Atomic] = ACTIONS(209), - [anon_sym_COLON] = ACTIONS(207), - [anon_sym_AMP] = ACTIONS(207), - [anon_sym_BANG] = ACTIONS(207), - [anon_sym_TILDE] = ACTIONS(207), - [anon_sym_PLUS] = ACTIONS(209), - [anon_sym_DASH] = ACTIONS(209), - [anon_sym_DASH_DASH] = ACTIONS(207), - [anon_sym_PLUS_PLUS] = ACTIONS(207), - [anon_sym_sizeof] = ACTIONS(209), - [sym_number_literal] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(207), - [anon_sym_DQUOTE] = ACTIONS(207), - [sym_true] = ACTIONS(209), - [sym_false] = ACTIONS(209), - [sym_null] = ACTIONS(209), - [sym_identifier] = ACTIONS(209), - [sym_comment] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(155), + [anon_sym_COMMA] = ACTIONS(155), + [anon_sym_RPAREN] = ACTIONS(155), + [anon_sym_extern] = ACTIONS(157), + [anon_sym_LPAREN2] = ACTIONS(279), + [anon_sym_STAR] = ACTIONS(155), + [anon_sym_LBRACK] = ACTIONS(155), + [anon_sym_RBRACK] = ACTIONS(155), + [anon_sym_static] = ACTIONS(157), + [anon_sym_auto] = ACTIONS(157), + [anon_sym_register] = ACTIONS(157), + [anon_sym_inline] = ACTIONS(157), + [anon_sym_const] = ACTIONS(157), + [anon_sym_restrict] = ACTIONS(157), + [anon_sym_volatile] = ACTIONS(157), + [anon_sym__Atomic] = ACTIONS(157), + [anon_sym_COLON] = ACTIONS(155), + [anon_sym_AMP] = ACTIONS(155), + [anon_sym_BANG] = ACTIONS(155), + [anon_sym_TILDE] = ACTIONS(155), + [anon_sym_PLUS] = ACTIONS(157), + [anon_sym_DASH] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(155), + [anon_sym_PLUS_PLUS] = ACTIONS(155), + [anon_sym_sizeof] = ACTIONS(157), + [sym_number_literal] = ACTIONS(155), + [anon_sym_SQUOTE] = ACTIONS(155), + [anon_sym_DQUOTE] = ACTIONS(155), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [sym_null] = ACTIONS(157), + [sym_identifier] = ACTIONS(157), + [sym_comment] = ACTIONS(59), }, [40] = { - [sym_type_qualifier] = STATE(106), - [sym__type_specifier] = STATE(104), - [sym_sized_type_specifier] = STATE(104), - [sym_enum_specifier] = STATE(104), - [sym_struct_specifier] = STATE(104), - [sym_union_specifier] = STATE(104), - [sym_type_descriptor] = STATE(105), - [sym_macro_type_specifier] = STATE(104), - [aux_sym_type_definition_repeat1] = STATE(106), - [aux_sym_sized_type_specifier_repeat1] = STATE(107), - [anon_sym_const] = ACTIONS(23), - [anon_sym_restrict] = ACTIONS(23), - [anon_sym_volatile] = ACTIONS(23), - [anon_sym__Atomic] = ACTIONS(23), - [anon_sym_unsigned] = ACTIONS(211), - [anon_sym_long] = ACTIONS(211), - [anon_sym_short] = ACTIONS(211), - [sym_primitive_type] = ACTIONS(213), - [anon_sym_enum] = ACTIONS(29), - [anon_sym_struct] = ACTIONS(31), - [anon_sym_union] = ACTIONS(33), - [sym_identifier] = ACTIONS(35), - [sym_comment] = ACTIONS(37), + [sym__type_declarator] = STATE(134), + [sym_pointer_type_declarator] = STATE(134), + [sym_function_type_declarator] = STATE(134), + [sym_array_type_declarator] = STATE(134), + [anon_sym_LPAREN2] = ACTIONS(282), + [anon_sym_STAR] = ACTIONS(284), + [sym_identifier] = ACTIONS(286), + [sym_comment] = ACTIONS(59), }, [41] = { - [ts_builtin_sym_end] = ACTIONS(215), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(217), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(217), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(217), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(217), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(217), - [sym_preproc_directive] = ACTIONS(217), - [anon_sym_SEMI] = ACTIONS(215), - [anon_sym_typedef] = ACTIONS(217), - [anon_sym_extern] = ACTIONS(217), - [anon_sym_LBRACE] = ACTIONS(215), - [anon_sym_RBRACE] = ACTIONS(215), - [anon_sym_LPAREN2] = ACTIONS(215), - [anon_sym_STAR] = ACTIONS(215), - [anon_sym_static] = ACTIONS(217), - [anon_sym_auto] = ACTIONS(217), - [anon_sym_register] = ACTIONS(217), - [anon_sym_inline] = ACTIONS(217), - [anon_sym_const] = ACTIONS(217), - [anon_sym_restrict] = ACTIONS(217), - [anon_sym_volatile] = ACTIONS(217), - [anon_sym__Atomic] = ACTIONS(217), - [anon_sym_unsigned] = ACTIONS(217), - [anon_sym_long] = ACTIONS(217), - [anon_sym_short] = ACTIONS(217), - [sym_primitive_type] = ACTIONS(217), - [anon_sym_enum] = ACTIONS(217), - [anon_sym_struct] = ACTIONS(217), - [anon_sym_union] = ACTIONS(217), - [anon_sym_if] = ACTIONS(217), - [anon_sym_switch] = ACTIONS(217), - [anon_sym_case] = ACTIONS(217), - [anon_sym_default] = ACTIONS(217), - [anon_sym_while] = ACTIONS(217), - [anon_sym_do] = ACTIONS(217), - [anon_sym_for] = ACTIONS(217), - [anon_sym_return] = ACTIONS(217), - [anon_sym_break] = ACTIONS(217), - [anon_sym_continue] = ACTIONS(217), - [anon_sym_goto] = ACTIONS(217), - [anon_sym_AMP] = ACTIONS(215), - [anon_sym_BANG] = ACTIONS(215), - [anon_sym_TILDE] = ACTIONS(215), - [anon_sym_PLUS] = ACTIONS(217), - [anon_sym_DASH] = ACTIONS(217), - [anon_sym_DASH_DASH] = ACTIONS(215), - [anon_sym_PLUS_PLUS] = ACTIONS(215), - [anon_sym_sizeof] = ACTIONS(217), - [sym_number_literal] = ACTIONS(215), - [anon_sym_SQUOTE] = ACTIONS(215), - [anon_sym_DQUOTE] = ACTIONS(215), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [sym_null] = ACTIONS(217), - [sym_identifier] = ACTIONS(217), - [sym_comment] = ACTIONS(37), + [sym_type_qualifier] = STATE(136), + [sym__type_specifier] = STATE(135), + [sym_sized_type_specifier] = STATE(135), + [sym_enum_specifier] = STATE(135), + [sym_struct_specifier] = STATE(135), + [sym_union_specifier] = STATE(135), + [sym_macro_type_specifier] = STATE(135), + [aux_sym_type_definition_repeat1] = STATE(136), + [aux_sym_sized_type_specifier_repeat1] = STATE(42), + [anon_sym_const] = ACTIONS(27), + [anon_sym_restrict] = ACTIONS(27), + [anon_sym_volatile] = ACTIONS(27), + [anon_sym__Atomic] = ACTIONS(27), + [anon_sym_unsigned] = ACTIONS(77), + [anon_sym_long] = ACTIONS(77), + [anon_sym_short] = ACTIONS(77), + [sym_primitive_type] = ACTIONS(288), + [anon_sym_enum] = ACTIONS(33), + [anon_sym_struct] = ACTIONS(35), + [anon_sym_union] = ACTIONS(37), + [sym_identifier] = ACTIONS(81), + [sym_comment] = ACTIONS(59), }, [42] = { - [sym__declarator] = STATE(109), - [sym_pointer_declarator] = STATE(109), - [sym_function_declarator] = STATE(109), - [sym_array_declarator] = STATE(109), - [anon_sym_LPAREN2] = ACTIONS(88), - [anon_sym_STAR] = ACTIONS(219), - [sym_identifier] = ACTIONS(221), - [sym_comment] = ACTIONS(37), + [aux_sym_sized_type_specifier_repeat1] = STATE(137), + [anon_sym_LPAREN2] = ACTIONS(226), + [anon_sym_STAR] = ACTIONS(226), + [anon_sym_unsigned] = ACTIONS(290), + [anon_sym_long] = ACTIONS(290), + [anon_sym_short] = ACTIONS(290), + [sym_primitive_type] = ACTIONS(232), + [sym_identifier] = ACTIONS(234), + [sym_comment] = ACTIONS(59), }, [43] = { - [sym__declarator] = STATE(110), - [sym_pointer_declarator] = STATE(110), - [sym_function_declarator] = STATE(110), - [sym_array_declarator] = STATE(110), - [sym_type_qualifier] = STATE(111), - [aux_sym_type_definition_repeat1] = STATE(111), - [anon_sym_LPAREN2] = ACTIONS(88), - [anon_sym_STAR] = ACTIONS(90), - [anon_sym_const] = ACTIONS(23), - [anon_sym_restrict] = ACTIONS(23), - [anon_sym_volatile] = ACTIONS(23), - [anon_sym__Atomic] = ACTIONS(23), - [sym_identifier] = ACTIONS(223), - [sym_comment] = ACTIONS(37), + [sym_function_definition] = STATE(139), + [sym_declaration] = STATE(139), + [sym__declaration_specifiers] = STATE(140), + [sym_declaration_list] = STATE(139), + [sym_storage_class_specifier] = STATE(142), + [sym_type_qualifier] = STATE(142), + [sym__type_specifier] = STATE(141), + [sym_sized_type_specifier] = STATE(141), + [sym_enum_specifier] = STATE(141), + [sym_struct_specifier] = STATE(141), + [sym_union_specifier] = STATE(141), + [sym_macro_type_specifier] = STATE(141), + [aux_sym__declaration_specifiers_repeat1] = STATE(142), + [aux_sym_sized_type_specifier_repeat1] = STATE(143), + [anon_sym_extern] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(292), + [anon_sym_static] = ACTIONS(25), + [anon_sym_auto] = ACTIONS(25), + [anon_sym_register] = ACTIONS(25), + [anon_sym_inline] = ACTIONS(25), + [anon_sym_const] = ACTIONS(27), + [anon_sym_restrict] = ACTIONS(27), + [anon_sym_volatile] = ACTIONS(27), + [anon_sym__Atomic] = ACTIONS(27), + [anon_sym_unsigned] = ACTIONS(294), + [anon_sym_long] = ACTIONS(294), + [anon_sym_short] = ACTIONS(294), + [sym_primitive_type] = ACTIONS(296), + [anon_sym_enum] = ACTIONS(33), + [anon_sym_struct] = ACTIONS(35), + [anon_sym_union] = ACTIONS(37), + [sym_identifier] = ACTIONS(81), + [sym_comment] = ACTIONS(59), }, [44] = { - [sym_compound_statement] = STATE(118), - [sym_parameter_list] = STATE(119), - [aux_sym_declaration_repeat1] = STATE(120), - [anon_sym_COMMA] = ACTIONS(225), - [anon_sym_SEMI] = ACTIONS(227), - [anon_sym_LBRACE] = ACTIONS(229), - [anon_sym_LPAREN2] = ACTIONS(231), - [anon_sym_LBRACK] = ACTIONS(233), - [anon_sym_EQ] = ACTIONS(235), - [sym_comment] = ACTIONS(37), + [sym_type_qualifier] = STATE(56), + [sym__type_specifier] = STATE(51), + [sym_sized_type_specifier] = STATE(51), + [sym_enum_specifier] = STATE(51), + [sym_struct_specifier] = STATE(51), + [sym_union_specifier] = STATE(51), + [sym__expression] = STATE(52), + [sym_comma_expression] = STATE(53), + [sym_conditional_expression] = STATE(52), + [sym_assignment_expression] = STATE(52), + [sym_pointer_expression] = STATE(52), + [sym_logical_expression] = STATE(52), + [sym_bitwise_expression] = STATE(52), + [sym_equality_expression] = STATE(52), + [sym_relational_expression] = STATE(52), + [sym_shift_expression] = STATE(52), + [sym_math_expression] = STATE(52), + [sym_cast_expression] = STATE(52), + [sym_type_descriptor] = STATE(144), + [sym_sizeof_expression] = STATE(52), + [sym_subscript_expression] = STATE(52), + [sym_call_expression] = STATE(52), + [sym_field_expression] = STATE(52), + [sym_compound_literal_expression] = STATE(52), + [sym_parenthesized_expression] = STATE(52), + [sym_char_literal] = STATE(52), + [sym_concatenated_string] = STATE(52), + [sym_string_literal] = STATE(55), + [sym_macro_type_specifier] = STATE(51), + [aux_sym_type_definition_repeat1] = STATE(56), + [aux_sym_sized_type_specifier_repeat1] = STATE(57), + [anon_sym_LPAREN2] = ACTIONS(85), + [anon_sym_STAR] = ACTIONS(87), + [anon_sym_const] = ACTIONS(27), + [anon_sym_restrict] = ACTIONS(27), + [anon_sym_volatile] = ACTIONS(27), + [anon_sym__Atomic] = ACTIONS(27), + [anon_sym_unsigned] = ACTIONS(89), + [anon_sym_long] = ACTIONS(89), + [anon_sym_short] = ACTIONS(89), + [sym_primitive_type] = ACTIONS(91), + [anon_sym_enum] = ACTIONS(33), + [anon_sym_struct] = ACTIONS(35), + [anon_sym_union] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_PLUS] = ACTIONS(97), + [anon_sym_DASH] = ACTIONS(97), + [anon_sym_DASH_DASH] = ACTIONS(99), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(105), + [sym_false] = ACTIONS(105), + [sym_null] = ACTIONS(105), + [sym_identifier] = ACTIONS(107), + [sym_comment] = ACTIONS(59), }, [45] = { - [aux_sym_declaration_repeat1] = STATE(120), - [anon_sym_COMMA] = ACTIONS(225), - [anon_sym_SEMI] = ACTIONS(227), - [sym_comment] = ACTIONS(37), + [sym__expression] = STATE(58), + [sym_conditional_expression] = STATE(58), + [sym_assignment_expression] = STATE(58), + [sym_pointer_expression] = STATE(58), + [sym_logical_expression] = STATE(58), + [sym_bitwise_expression] = STATE(58), + [sym_equality_expression] = STATE(58), + [sym_relational_expression] = STATE(58), + [sym_shift_expression] = STATE(58), + [sym_math_expression] = STATE(58), + [sym_cast_expression] = STATE(58), + [sym_sizeof_expression] = STATE(58), + [sym_subscript_expression] = STATE(58), + [sym_call_expression] = STATE(58), + [sym_field_expression] = STATE(58), + [sym_compound_literal_expression] = STATE(58), + [sym_parenthesized_expression] = STATE(58), + [sym_char_literal] = STATE(58), + [sym_concatenated_string] = STATE(58), + [sym_string_literal] = STATE(55), + [anon_sym_LPAREN2] = ACTIONS(85), + [anon_sym_STAR] = ACTIONS(87), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_PLUS] = ACTIONS(97), + [anon_sym_DASH] = ACTIONS(97), + [anon_sym_DASH_DASH] = ACTIONS(99), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(101), + [sym_number_literal] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(111), + [sym_false] = ACTIONS(111), + [sym_null] = ACTIONS(111), + [sym_identifier] = ACTIONS(111), + [sym_comment] = ACTIONS(59), }, [46] = { - [sym_storage_class_specifier] = STATE(121), - [sym_type_qualifier] = STATE(121), - [aux_sym__declaration_specifiers_repeat1] = STATE(121), - [anon_sym_SEMI] = ACTIONS(237), - [anon_sym_extern] = ACTIONS(21), - [anon_sym_LPAREN2] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(237), - [anon_sym_static] = ACTIONS(21), - [anon_sym_auto] = ACTIONS(21), - [anon_sym_register] = ACTIONS(21), - [anon_sym_inline] = ACTIONS(21), - [anon_sym_const] = ACTIONS(23), - [anon_sym_restrict] = ACTIONS(23), - [anon_sym_volatile] = ACTIONS(23), - [anon_sym__Atomic] = ACTIONS(23), - [sym_identifier] = ACTIONS(239), - [sym_comment] = ACTIONS(37), + [sym__expression] = STATE(67), + [sym_conditional_expression] = STATE(67), + [sym_assignment_expression] = STATE(67), + [sym_pointer_expression] = STATE(67), + [sym_logical_expression] = STATE(67), + [sym_bitwise_expression] = STATE(67), + [sym_equality_expression] = STATE(67), + [sym_relational_expression] = STATE(67), + [sym_shift_expression] = STATE(67), + [sym_math_expression] = STATE(67), + [sym_cast_expression] = STATE(67), + [sym_sizeof_expression] = STATE(67), + [sym_subscript_expression] = STATE(67), + [sym_call_expression] = STATE(67), + [sym_field_expression] = STATE(67), + [sym_compound_literal_expression] = STATE(67), + [sym_parenthesized_expression] = STATE(67), + [sym_char_literal] = STATE(67), + [sym_concatenated_string] = STATE(67), + [sym_string_literal] = STATE(55), + [anon_sym_LPAREN2] = ACTIONS(85), + [anon_sym_STAR] = ACTIONS(87), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_PLUS] = ACTIONS(97), + [anon_sym_DASH] = ACTIONS(97), + [anon_sym_DASH_DASH] = ACTIONS(99), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(101), + [sym_number_literal] = ACTIONS(129), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(131), + [sym_false] = ACTIONS(131), + [sym_null] = ACTIONS(131), + [sym_identifier] = ACTIONS(131), + [sym_comment] = ACTIONS(59), }, [47] = { - [sym_preproc_include] = STATE(47), - [sym_preproc_def] = STATE(47), - [sym_preproc_function_def] = STATE(47), - [sym_preproc_call] = STATE(47), - [sym_preproc_if] = STATE(47), - [sym_preproc_ifdef] = STATE(47), - [sym_function_definition] = STATE(47), - [sym_declaration] = STATE(47), - [sym_type_definition] = STATE(47), - [sym__declaration_specifiers] = STATE(16), - [sym_linkage_specification] = STATE(47), - [sym_storage_class_specifier] = STATE(19), - [sym_type_qualifier] = STATE(19), - [sym__type_specifier] = STATE(17), - [sym_sized_type_specifier] = STATE(17), - [sym_enum_specifier] = STATE(17), - [sym_struct_specifier] = STATE(17), - [sym_union_specifier] = STATE(17), - [sym__empty_declaration] = STATE(47), - [sym_macro_type_specifier] = STATE(17), - [aux_sym_translation_unit_repeat1] = STATE(47), - [aux_sym__declaration_specifiers_repeat1] = STATE(19), - [aux_sym_sized_type_specifier_repeat1] = STATE(20), - [ts_builtin_sym_end] = ACTIONS(241), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(243), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(246), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(249), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(252), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(252), - [sym_preproc_directive] = ACTIONS(255), - [anon_sym_typedef] = ACTIONS(258), - [anon_sym_extern] = ACTIONS(261), - [anon_sym_static] = ACTIONS(264), - [anon_sym_auto] = ACTIONS(264), - [anon_sym_register] = ACTIONS(264), - [anon_sym_inline] = ACTIONS(264), - [anon_sym_const] = ACTIONS(267), - [anon_sym_restrict] = ACTIONS(267), - [anon_sym_volatile] = ACTIONS(267), - [anon_sym__Atomic] = ACTIONS(267), - [anon_sym_unsigned] = ACTIONS(270), - [anon_sym_long] = ACTIONS(270), - [anon_sym_short] = ACTIONS(270), - [sym_primitive_type] = ACTIONS(273), - [anon_sym_enum] = ACTIONS(276), - [anon_sym_struct] = ACTIONS(279), - [anon_sym_union] = ACTIONS(282), - [sym_identifier] = ACTIONS(285), - [sym_comment] = ACTIONS(37), + [sym__expression] = STATE(68), + [sym_conditional_expression] = STATE(68), + [sym_assignment_expression] = STATE(68), + [sym_pointer_expression] = STATE(68), + [sym_logical_expression] = STATE(68), + [sym_bitwise_expression] = STATE(68), + [sym_equality_expression] = STATE(68), + [sym_relational_expression] = STATE(68), + [sym_shift_expression] = STATE(68), + [sym_math_expression] = STATE(68), + [sym_cast_expression] = STATE(68), + [sym_sizeof_expression] = STATE(68), + [sym_subscript_expression] = STATE(68), + [sym_call_expression] = STATE(68), + [sym_field_expression] = STATE(68), + [sym_compound_literal_expression] = STATE(68), + [sym_parenthesized_expression] = STATE(68), + [sym_char_literal] = STATE(68), + [sym_concatenated_string] = STATE(68), + [sym_string_literal] = STATE(55), + [anon_sym_LPAREN2] = ACTIONS(85), + [anon_sym_STAR] = ACTIONS(87), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_PLUS] = ACTIONS(97), + [anon_sym_DASH] = ACTIONS(97), + [anon_sym_DASH_DASH] = ACTIONS(99), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(101), + [sym_number_literal] = ACTIONS(133), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(135), + [sym_false] = ACTIONS(135), + [sym_null] = ACTIONS(135), + [sym_identifier] = ACTIONS(135), + [sym_comment] = ACTIONS(59), }, [48] = { - [sym_storage_class_specifier] = STATE(122), - [sym_type_qualifier] = STATE(122), - [aux_sym__declaration_specifiers_repeat1] = STATE(122), - [anon_sym_SEMI] = ACTIONS(237), - [anon_sym_extern] = ACTIONS(21), - [anon_sym_LPAREN2] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(237), - [anon_sym_static] = ACTIONS(21), - [anon_sym_auto] = ACTIONS(21), - [anon_sym_register] = ACTIONS(21), - [anon_sym_inline] = ACTIONS(21), - [anon_sym_const] = ACTIONS(23), - [anon_sym_restrict] = ACTIONS(23), - [anon_sym_volatile] = ACTIONS(23), - [anon_sym__Atomic] = ACTIONS(23), - [sym_identifier] = ACTIONS(239), - [sym_comment] = ACTIONS(37), + [sym__expression] = STATE(69), + [sym_conditional_expression] = STATE(69), + [sym_assignment_expression] = STATE(69), + [sym_pointer_expression] = STATE(69), + [sym_logical_expression] = STATE(69), + [sym_bitwise_expression] = STATE(69), + [sym_equality_expression] = STATE(69), + [sym_relational_expression] = STATE(69), + [sym_shift_expression] = STATE(69), + [sym_math_expression] = STATE(69), + [sym_cast_expression] = STATE(69), + [sym_sizeof_expression] = STATE(69), + [sym_subscript_expression] = STATE(69), + [sym_call_expression] = STATE(69), + [sym_field_expression] = STATE(69), + [sym_compound_literal_expression] = STATE(69), + [sym_parenthesized_expression] = STATE(69), + [sym_char_literal] = STATE(69), + [sym_concatenated_string] = STATE(69), + [sym_string_literal] = STATE(55), + [anon_sym_LPAREN2] = ACTIONS(85), + [anon_sym_STAR] = ACTIONS(87), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_PLUS] = ACTIONS(97), + [anon_sym_DASH] = ACTIONS(97), + [anon_sym_DASH_DASH] = ACTIONS(99), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(101), + [sym_number_literal] = ACTIONS(137), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(139), + [sym_false] = ACTIONS(139), + [sym_null] = ACTIONS(139), + [sym_identifier] = ACTIONS(139), + [sym_comment] = ACTIONS(59), }, [49] = { - [sym_storage_class_specifier] = STATE(49), - [sym_type_qualifier] = STATE(49), - [aux_sym__declaration_specifiers_repeat1] = STATE(49), - [anon_sym_extern] = ACTIONS(288), - [anon_sym_static] = ACTIONS(288), - [anon_sym_auto] = ACTIONS(288), - [anon_sym_register] = ACTIONS(288), - [anon_sym_inline] = ACTIONS(288), - [anon_sym_const] = ACTIONS(291), - [anon_sym_restrict] = ACTIONS(291), - [anon_sym_volatile] = ACTIONS(291), - [anon_sym__Atomic] = ACTIONS(291), - [anon_sym_unsigned] = ACTIONS(294), - [anon_sym_long] = ACTIONS(294), - [anon_sym_short] = ACTIONS(294), - [sym_primitive_type] = ACTIONS(294), - [anon_sym_enum] = ACTIONS(294), - [anon_sym_struct] = ACTIONS(294), - [anon_sym_union] = ACTIONS(294), - [sym_identifier] = ACTIONS(294), - [sym_comment] = ACTIONS(37), - }, - [50] = { - [anon_sym_COMMA] = ACTIONS(296), - [anon_sym_RPAREN] = ACTIONS(296), - [anon_sym_SEMI] = ACTIONS(296), - [anon_sym_extern] = ACTIONS(298), - [anon_sym_LPAREN2] = ACTIONS(296), - [anon_sym_STAR] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(296), - [anon_sym_RBRACK] = ACTIONS(296), - [anon_sym_static] = ACTIONS(298), - [anon_sym_auto] = ACTIONS(298), - [anon_sym_register] = ACTIONS(298), - [anon_sym_inline] = ACTIONS(298), - [anon_sym_const] = ACTIONS(298), - [anon_sym_restrict] = ACTIONS(298), - [anon_sym_volatile] = ACTIONS(298), - [anon_sym__Atomic] = ACTIONS(298), - [anon_sym_COLON] = ACTIONS(296), - [anon_sym_AMP] = ACTIONS(296), - [anon_sym_BANG] = ACTIONS(296), - [anon_sym_TILDE] = ACTIONS(296), - [anon_sym_PLUS] = ACTIONS(298), - [anon_sym_DASH] = ACTIONS(298), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_sizeof] = ACTIONS(298), - [sym_number_literal] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(296), - [anon_sym_DQUOTE] = ACTIONS(296), - [sym_true] = ACTIONS(298), - [sym_false] = ACTIONS(298), - [sym_null] = ACTIONS(298), - [sym_identifier] = ACTIONS(298), - [sym_comment] = ACTIONS(37), - }, - [51] = { - [anon_sym_COMMA] = ACTIONS(300), - [anon_sym_RPAREN] = ACTIONS(300), - [anon_sym_SEMI] = ACTIONS(300), - [anon_sym_extern] = ACTIONS(302), - [anon_sym_LPAREN2] = ACTIONS(300), - [anon_sym_STAR] = ACTIONS(300), - [anon_sym_LBRACK] = ACTIONS(300), - [anon_sym_RBRACK] = ACTIONS(300), - [anon_sym_static] = ACTIONS(302), - [anon_sym_auto] = ACTIONS(302), - [anon_sym_register] = ACTIONS(302), - [anon_sym_inline] = ACTIONS(302), - [anon_sym_const] = ACTIONS(302), - [anon_sym_restrict] = ACTIONS(302), - [anon_sym_volatile] = ACTIONS(302), - [anon_sym__Atomic] = ACTIONS(302), - [anon_sym_COLON] = ACTIONS(300), - [anon_sym_AMP] = ACTIONS(300), - [anon_sym_BANG] = ACTIONS(300), - [anon_sym_TILDE] = ACTIONS(300), - [anon_sym_PLUS] = ACTIONS(302), - [anon_sym_DASH] = ACTIONS(302), - [anon_sym_DASH_DASH] = ACTIONS(300), - [anon_sym_PLUS_PLUS] = ACTIONS(300), - [anon_sym_sizeof] = ACTIONS(302), + [sym__expression] = STATE(146), + [sym_conditional_expression] = STATE(146), + [sym_assignment_expression] = STATE(146), + [sym_pointer_expression] = STATE(146), + [sym_logical_expression] = STATE(146), + [sym_bitwise_expression] = STATE(146), + [sym_equality_expression] = STATE(146), + [sym_relational_expression] = STATE(146), + [sym_shift_expression] = STATE(146), + [sym_math_expression] = STATE(146), + [sym_cast_expression] = STATE(146), + [sym_sizeof_expression] = STATE(146), + [sym_subscript_expression] = STATE(146), + [sym_call_expression] = STATE(146), + [sym_field_expression] = STATE(146), + [sym_compound_literal_expression] = STATE(146), + [sym_parenthesized_expression] = STATE(146), + [sym_char_literal] = STATE(146), + [sym_concatenated_string] = STATE(146), + [sym_string_literal] = STATE(55), + [anon_sym_LPAREN2] = ACTIONS(298), + [anon_sym_STAR] = ACTIONS(87), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_PLUS] = ACTIONS(97), + [anon_sym_DASH] = ACTIONS(97), + [anon_sym_DASH_DASH] = ACTIONS(99), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(101), [sym_number_literal] = ACTIONS(300), - [anon_sym_SQUOTE] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), [sym_true] = ACTIONS(302), [sym_false] = ACTIONS(302), [sym_null] = ACTIONS(302), [sym_identifier] = ACTIONS(302), - [sym_comment] = ACTIONS(37), + [sym_comment] = ACTIONS(59), + }, + [50] = { + [anon_sym_COMMA] = ACTIONS(166), + [anon_sym_RPAREN] = ACTIONS(304), + [anon_sym_LPAREN2] = ACTIONS(159), + [anon_sym_STAR] = ACTIONS(163), + [anon_sym_LBRACK] = ACTIONS(304), + [anon_sym_EQ] = ACTIONS(168), + [anon_sym_QMARK] = ACTIONS(166), + [anon_sym_STAR_EQ] = ACTIONS(166), + [anon_sym_SLASH_EQ] = ACTIONS(166), + [anon_sym_PERCENT_EQ] = ACTIONS(166), + [anon_sym_PLUS_EQ] = ACTIONS(166), + [anon_sym_DASH_EQ] = ACTIONS(166), + [anon_sym_LT_LT_EQ] = ACTIONS(166), + [anon_sym_GT_GT_EQ] = ACTIONS(166), + [anon_sym_AMP_EQ] = ACTIONS(166), + [anon_sym_CARET_EQ] = ACTIONS(166), + [anon_sym_PIPE_EQ] = ACTIONS(166), + [anon_sym_AMP] = ACTIONS(168), + [anon_sym_PIPE_PIPE] = ACTIONS(166), + [anon_sym_AMP_AMP] = ACTIONS(166), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_CARET] = ACTIONS(168), + [anon_sym_EQ_EQ] = ACTIONS(166), + [anon_sym_BANG_EQ] = ACTIONS(166), + [anon_sym_LT] = ACTIONS(168), + [anon_sym_GT] = ACTIONS(168), + [anon_sym_LT_EQ] = ACTIONS(166), + [anon_sym_GT_EQ] = ACTIONS(166), + [anon_sym_LT_LT] = ACTIONS(168), + [anon_sym_GT_GT] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(168), + [anon_sym_DASH] = ACTIONS(168), + [anon_sym_SLASH] = ACTIONS(168), + [anon_sym_PERCENT] = ACTIONS(168), + [anon_sym_DASH_DASH] = ACTIONS(166), + [anon_sym_PLUS_PLUS] = ACTIONS(166), + [anon_sym_DOT] = ACTIONS(166), + [anon_sym_DASH_GT] = ACTIONS(166), + [sym_comment] = ACTIONS(59), + }, + [51] = { + [sym__abstract_declarator] = STATE(150), + [sym_abstract_pointer_declarator] = STATE(150), + [sym_abstract_function_declarator] = STATE(150), + [sym_abstract_array_declarator] = STATE(150), + [sym_parameter_list] = STATE(151), + [anon_sym_RPAREN] = ACTIONS(307), + [anon_sym_LPAREN2] = ACTIONS(309), + [anon_sym_STAR] = ACTIONS(311), + [anon_sym_LBRACK] = ACTIONS(313), + [sym_comment] = ACTIONS(59), }, [52] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(52), - [anon_sym_SEMI] = ACTIONS(304), - [anon_sym_extern] = ACTIONS(306), - [anon_sym_LPAREN2] = ACTIONS(304), - [anon_sym_STAR] = ACTIONS(304), - [anon_sym_static] = ACTIONS(306), - [anon_sym_auto] = ACTIONS(306), - [anon_sym_register] = ACTIONS(306), - [anon_sym_inline] = ACTIONS(306), - [anon_sym_const] = ACTIONS(306), - [anon_sym_restrict] = ACTIONS(306), - [anon_sym_volatile] = ACTIONS(306), - [anon_sym__Atomic] = ACTIONS(306), - [anon_sym_unsigned] = ACTIONS(308), - [anon_sym_long] = ACTIONS(308), - [anon_sym_short] = ACTIONS(308), - [sym_primitive_type] = ACTIONS(306), - [sym_identifier] = ACTIONS(306), - [sym_comment] = ACTIONS(37), + [sym_argument_list] = STATE(98), + [anon_sym_COMMA] = ACTIONS(315), + [anon_sym_RPAREN] = ACTIONS(317), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(319), + [anon_sym_LBRACK] = ACTIONS(188), + [anon_sym_EQ] = ACTIONS(321), + [anon_sym_QMARK] = ACTIONS(323), + [anon_sym_STAR_EQ] = ACTIONS(325), + [anon_sym_SLASH_EQ] = ACTIONS(325), + [anon_sym_PERCENT_EQ] = ACTIONS(325), + [anon_sym_PLUS_EQ] = ACTIONS(325), + [anon_sym_DASH_EQ] = ACTIONS(325), + [anon_sym_LT_LT_EQ] = ACTIONS(325), + [anon_sym_GT_GT_EQ] = ACTIONS(325), + [anon_sym_AMP_EQ] = ACTIONS(325), + [anon_sym_CARET_EQ] = ACTIONS(325), + [anon_sym_PIPE_EQ] = ACTIONS(325), + [anon_sym_AMP] = ACTIONS(327), + [anon_sym_PIPE_PIPE] = ACTIONS(329), + [anon_sym_AMP_AMP] = ACTIONS(331), + [anon_sym_PIPE] = ACTIONS(333), + [anon_sym_CARET] = ACTIONS(335), + [anon_sym_EQ_EQ] = ACTIONS(337), + [anon_sym_BANG_EQ] = ACTIONS(337), + [anon_sym_LT] = ACTIONS(339), + [anon_sym_GT] = ACTIONS(339), + [anon_sym_LT_EQ] = ACTIONS(341), + [anon_sym_GT_EQ] = ACTIONS(341), + [anon_sym_LT_LT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(343), + [anon_sym_PLUS] = ACTIONS(345), + [anon_sym_DASH] = ACTIONS(345), + [anon_sym_SLASH] = ACTIONS(319), + [anon_sym_PERCENT] = ACTIONS(319), + [anon_sym_DASH_DASH] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(216), + [anon_sym_DOT] = ACTIONS(218), + [anon_sym_DASH_GT] = ACTIONS(218), + [sym_comment] = ACTIONS(59), }, [53] = { - [ts_builtin_sym_end] = ACTIONS(311), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(313), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(313), - [anon_sym_COMMA] = ACTIONS(311), - [anon_sym_RPAREN] = ACTIONS(311), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(313), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(313), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(313), - [sym_preproc_directive] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(311), - [anon_sym_typedef] = ACTIONS(313), - [anon_sym_extern] = ACTIONS(313), - [anon_sym_LBRACE] = ACTIONS(311), - [anon_sym_RBRACE] = ACTIONS(311), - [anon_sym_LPAREN2] = ACTIONS(311), - [anon_sym_STAR] = ACTIONS(313), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_RBRACK] = ACTIONS(311), - [anon_sym_EQ] = ACTIONS(313), - [anon_sym_static] = ACTIONS(313), - [anon_sym_auto] = ACTIONS(313), - [anon_sym_register] = ACTIONS(313), - [anon_sym_inline] = ACTIONS(313), - [anon_sym_const] = ACTIONS(313), - [anon_sym_restrict] = ACTIONS(313), - [anon_sym_volatile] = ACTIONS(313), - [anon_sym__Atomic] = ACTIONS(313), - [anon_sym_unsigned] = ACTIONS(313), - [anon_sym_long] = ACTIONS(313), - [anon_sym_short] = ACTIONS(313), - [sym_primitive_type] = ACTIONS(313), - [anon_sym_enum] = ACTIONS(313), - [anon_sym_struct] = ACTIONS(313), - [anon_sym_union] = ACTIONS(313), - [anon_sym_COLON] = ACTIONS(311), - [anon_sym_QMARK] = ACTIONS(311), - [anon_sym_STAR_EQ] = ACTIONS(311), - [anon_sym_SLASH_EQ] = ACTIONS(311), - [anon_sym_PERCENT_EQ] = ACTIONS(311), - [anon_sym_PLUS_EQ] = ACTIONS(311), - [anon_sym_DASH_EQ] = ACTIONS(311), - [anon_sym_LT_LT_EQ] = ACTIONS(311), - [anon_sym_GT_GT_EQ] = ACTIONS(311), - [anon_sym_AMP_EQ] = ACTIONS(311), - [anon_sym_CARET_EQ] = ACTIONS(311), - [anon_sym_PIPE_EQ] = ACTIONS(311), - [anon_sym_AMP] = ACTIONS(313), - [anon_sym_PIPE_PIPE] = ACTIONS(311), - [anon_sym_AMP_AMP] = ACTIONS(311), - [anon_sym_PIPE] = ACTIONS(313), - [anon_sym_CARET] = ACTIONS(313), - [anon_sym_EQ_EQ] = ACTIONS(311), - [anon_sym_BANG_EQ] = ACTIONS(311), - [anon_sym_LT] = ACTIONS(313), - [anon_sym_GT] = ACTIONS(313), - [anon_sym_LT_EQ] = ACTIONS(311), - [anon_sym_GT_EQ] = ACTIONS(311), - [anon_sym_LT_LT] = ACTIONS(313), - [anon_sym_GT_GT] = ACTIONS(313), - [anon_sym_PLUS] = ACTIONS(313), - [anon_sym_DASH] = ACTIONS(313), - [anon_sym_SLASH] = ACTIONS(313), - [anon_sym_PERCENT] = ACTIONS(313), - [anon_sym_DASH_DASH] = ACTIONS(311), - [anon_sym_PLUS_PLUS] = ACTIONS(311), - [anon_sym_DOT] = ACTIONS(311), - [anon_sym_DASH_GT] = ACTIONS(311), - [anon_sym_DQUOTE] = ACTIONS(311), - [sym_identifier] = ACTIONS(313), - [sym_comment] = ACTIONS(37), + [anon_sym_RPAREN] = ACTIONS(317), + [sym_comment] = ACTIONS(59), }, [54] = { - [aux_sym_string_literal_repeat1] = STATE(124), - [anon_sym_DQUOTE] = ACTIONS(315), - [aux_sym_SLASH_LBRACK_CARET_BSLASH_BSLASH_DQUOTE_BSLASHn_RBRACK_SLASH] = ACTIONS(317), - [sym_escape_sequence] = ACTIONS(317), - [sym_comment] = ACTIONS(47), + [anon_sym_RPAREN] = ACTIONS(347), + [sym_comment] = ACTIONS(59), }, [55] = { - [ts_builtin_sym_end] = ACTIONS(319), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(321), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(321), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(321), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(321), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(321), - [sym_preproc_directive] = ACTIONS(321), - [anon_sym_SEMI] = ACTIONS(319), - [anon_sym_typedef] = ACTIONS(321), - [anon_sym_extern] = ACTIONS(321), - [anon_sym_LBRACE] = ACTIONS(319), - [anon_sym_RBRACE] = ACTIONS(319), - [anon_sym_LPAREN2] = ACTIONS(319), - [anon_sym_STAR] = ACTIONS(319), - [anon_sym_static] = ACTIONS(321), - [anon_sym_auto] = ACTIONS(321), - [anon_sym_register] = ACTIONS(321), - [anon_sym_inline] = ACTIONS(321), - [anon_sym_const] = ACTIONS(321), - [anon_sym_restrict] = ACTIONS(321), - [anon_sym_volatile] = ACTIONS(321), - [anon_sym__Atomic] = ACTIONS(321), - [anon_sym_unsigned] = ACTIONS(321), - [anon_sym_long] = ACTIONS(321), - [anon_sym_short] = ACTIONS(321), - [sym_primitive_type] = ACTIONS(321), - [anon_sym_enum] = ACTIONS(321), - [anon_sym_struct] = ACTIONS(321), - [anon_sym_union] = ACTIONS(321), - [anon_sym_if] = ACTIONS(321), - [anon_sym_switch] = ACTIONS(321), - [anon_sym_case] = ACTIONS(321), - [anon_sym_default] = ACTIONS(321), - [anon_sym_while] = ACTIONS(321), - [anon_sym_do] = ACTIONS(321), - [anon_sym_for] = ACTIONS(321), - [anon_sym_return] = ACTIONS(321), - [anon_sym_break] = ACTIONS(321), - [anon_sym_continue] = ACTIONS(321), - [anon_sym_goto] = ACTIONS(321), - [anon_sym_AMP] = ACTIONS(319), - [anon_sym_BANG] = ACTIONS(319), - [anon_sym_TILDE] = ACTIONS(319), - [anon_sym_PLUS] = ACTIONS(321), - [anon_sym_DASH] = ACTIONS(321), - [anon_sym_DASH_DASH] = ACTIONS(319), - [anon_sym_PLUS_PLUS] = ACTIONS(319), - [anon_sym_sizeof] = ACTIONS(321), - [sym_number_literal] = ACTIONS(319), - [anon_sym_SQUOTE] = ACTIONS(319), - [anon_sym_DQUOTE] = ACTIONS(319), - [sym_true] = ACTIONS(321), - [sym_false] = ACTIONS(321), - [sym_null] = ACTIONS(321), - [sym_identifier] = ACTIONS(321), - [sym_comment] = ACTIONS(37), + [sym_string_literal] = STATE(167), + [aux_sym_concatenated_string_repeat1] = STATE(167), + [anon_sym_COMMA] = ACTIONS(166), + [anon_sym_RPAREN] = ACTIONS(166), + [anon_sym_LPAREN2] = ACTIONS(166), + [anon_sym_STAR] = ACTIONS(168), + [anon_sym_LBRACK] = ACTIONS(166), + [anon_sym_EQ] = ACTIONS(168), + [anon_sym_QMARK] = ACTIONS(166), + [anon_sym_STAR_EQ] = ACTIONS(166), + [anon_sym_SLASH_EQ] = ACTIONS(166), + [anon_sym_PERCENT_EQ] = ACTIONS(166), + [anon_sym_PLUS_EQ] = ACTIONS(166), + [anon_sym_DASH_EQ] = ACTIONS(166), + [anon_sym_LT_LT_EQ] = ACTIONS(166), + [anon_sym_GT_GT_EQ] = ACTIONS(166), + [anon_sym_AMP_EQ] = ACTIONS(166), + [anon_sym_CARET_EQ] = ACTIONS(166), + [anon_sym_PIPE_EQ] = ACTIONS(166), + [anon_sym_AMP] = ACTIONS(168), + [anon_sym_PIPE_PIPE] = ACTIONS(166), + [anon_sym_AMP_AMP] = ACTIONS(166), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_CARET] = ACTIONS(168), + [anon_sym_EQ_EQ] = ACTIONS(166), + [anon_sym_BANG_EQ] = ACTIONS(166), + [anon_sym_LT] = ACTIONS(168), + [anon_sym_GT] = ACTIONS(168), + [anon_sym_LT_EQ] = ACTIONS(166), + [anon_sym_GT_EQ] = ACTIONS(166), + [anon_sym_LT_LT] = ACTIONS(168), + [anon_sym_GT_GT] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(168), + [anon_sym_DASH] = ACTIONS(168), + [anon_sym_SLASH] = ACTIONS(168), + [anon_sym_PERCENT] = ACTIONS(168), + [anon_sym_DASH_DASH] = ACTIONS(166), + [anon_sym_PLUS_PLUS] = ACTIONS(166), + [anon_sym_DOT] = ACTIONS(166), + [anon_sym_DASH_GT] = ACTIONS(166), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_comment] = ACTIONS(59), }, [56] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(323), - [anon_sym_RPAREN] = ACTIONS(325), - [sym_identifier] = ACTIONS(323), - [sym_comment] = ACTIONS(37), + [sym_type_qualifier] = STATE(136), + [sym__type_specifier] = STATE(168), + [sym_sized_type_specifier] = STATE(168), + [sym_enum_specifier] = STATE(168), + [sym_struct_specifier] = STATE(168), + [sym_union_specifier] = STATE(168), + [sym_macro_type_specifier] = STATE(168), + [aux_sym_type_definition_repeat1] = STATE(136), + [aux_sym_sized_type_specifier_repeat1] = STATE(57), + [anon_sym_const] = ACTIONS(27), + [anon_sym_restrict] = ACTIONS(27), + [anon_sym_volatile] = ACTIONS(27), + [anon_sym__Atomic] = ACTIONS(27), + [anon_sym_unsigned] = ACTIONS(89), + [anon_sym_long] = ACTIONS(89), + [anon_sym_short] = ACTIONS(89), + [sym_primitive_type] = ACTIONS(349), + [anon_sym_enum] = ACTIONS(33), + [anon_sym_struct] = ACTIONS(35), + [anon_sym_union] = ACTIONS(37), + [sym_identifier] = ACTIONS(81), + [sym_comment] = ACTIONS(59), }, [57] = { - [anon_sym_LF] = ACTIONS(327), - [sym_comment] = ACTIONS(47), + [aux_sym_sized_type_specifier_repeat1] = STATE(169), + [anon_sym_RPAREN] = ACTIONS(226), + [anon_sym_LPAREN2] = ACTIONS(226), + [anon_sym_STAR] = ACTIONS(226), + [anon_sym_LBRACK] = ACTIONS(226), + [anon_sym_unsigned] = ACTIONS(351), + [anon_sym_long] = ACTIONS(351), + [anon_sym_short] = ACTIONS(351), + [sym_primitive_type] = ACTIONS(232), + [sym_identifier] = ACTIONS(353), + [sym_comment] = ACTIONS(59), }, [58] = { - [anon_sym_LF] = ACTIONS(329), - [sym_preproc_arg] = ACTIONS(331), - [sym_comment] = ACTIONS(47), + [sym_argument_list] = STATE(98), + [anon_sym_SEMI] = ACTIONS(355), + [anon_sym_COMMA] = ACTIONS(355), + [anon_sym_RPAREN] = ACTIONS(355), + [anon_sym_RBRACE] = ACTIONS(355), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(357), + [anon_sym_LBRACK] = ACTIONS(188), + [anon_sym_RBRACK] = ACTIONS(355), + [anon_sym_EQ] = ACTIONS(357), + [anon_sym_COLON] = ACTIONS(355), + [anon_sym_QMARK] = ACTIONS(355), + [anon_sym_STAR_EQ] = ACTIONS(355), + [anon_sym_SLASH_EQ] = ACTIONS(355), + [anon_sym_PERCENT_EQ] = ACTIONS(355), + [anon_sym_PLUS_EQ] = ACTIONS(355), + [anon_sym_DASH_EQ] = ACTIONS(355), + [anon_sym_LT_LT_EQ] = ACTIONS(355), + [anon_sym_GT_GT_EQ] = ACTIONS(355), + [anon_sym_AMP_EQ] = ACTIONS(355), + [anon_sym_CARET_EQ] = ACTIONS(355), + [anon_sym_PIPE_EQ] = ACTIONS(355), + [anon_sym_AMP] = ACTIONS(357), + [anon_sym_PIPE_PIPE] = ACTIONS(355), + [anon_sym_AMP_AMP] = ACTIONS(355), + [anon_sym_PIPE] = ACTIONS(357), + [anon_sym_CARET] = ACTIONS(357), + [anon_sym_EQ_EQ] = ACTIONS(355), + [anon_sym_BANG_EQ] = ACTIONS(355), + [anon_sym_LT] = ACTIONS(357), + [anon_sym_GT] = ACTIONS(357), + [anon_sym_LT_EQ] = ACTIONS(355), + [anon_sym_GT_EQ] = ACTIONS(355), + [anon_sym_LT_LT] = ACTIONS(357), + [anon_sym_GT_GT] = ACTIONS(357), + [anon_sym_PLUS] = ACTIONS(357), + [anon_sym_DASH] = ACTIONS(357), + [anon_sym_SLASH] = ACTIONS(357), + [anon_sym_PERCENT] = ACTIONS(357), + [anon_sym_DASH_DASH] = ACTIONS(355), + [anon_sym_PLUS_PLUS] = ACTIONS(355), + [anon_sym_DOT] = ACTIONS(218), + [anon_sym_DASH_GT] = ACTIONS(218), + [sym_comment] = ACTIONS(59), }, [59] = { - [sym_string_literal] = STATE(131), - [anon_sym_DQUOTE] = ACTIONS(333), - [sym_system_lib_string] = ACTIONS(335), - [sym_comment] = ACTIONS(37), + [sym_enumerator] = STATE(173), + [anon_sym_COMMA] = ACTIONS(359), + [anon_sym_RBRACE] = ACTIONS(361), + [sym_identifier] = ACTIONS(363), + [sym_comment] = ACTIONS(59), }, [60] = { - [sym_identifier] = ACTIONS(337), - [sym_comment] = ACTIONS(37), + [sym_enumerator_list] = STATE(174), + [anon_sym_SEMI] = ACTIONS(365), + [anon_sym_COMMA] = ACTIONS(365), + [anon_sym_RPAREN] = ACTIONS(365), + [anon_sym_extern] = ACTIONS(367), + [anon_sym_LBRACE] = ACTIONS(119), + [anon_sym_LPAREN2] = ACTIONS(365), + [anon_sym_STAR] = ACTIONS(365), + [anon_sym_LBRACK] = ACTIONS(365), + [anon_sym_RBRACK] = ACTIONS(365), + [anon_sym_static] = ACTIONS(367), + [anon_sym_auto] = ACTIONS(367), + [anon_sym_register] = ACTIONS(367), + [anon_sym_inline] = ACTIONS(367), + [anon_sym_const] = ACTIONS(367), + [anon_sym_restrict] = ACTIONS(367), + [anon_sym_volatile] = ACTIONS(367), + [anon_sym__Atomic] = ACTIONS(367), + [anon_sym_COLON] = ACTIONS(365), + [anon_sym_AMP] = ACTIONS(365), + [anon_sym_BANG] = ACTIONS(365), + [anon_sym_TILDE] = ACTIONS(365), + [anon_sym_PLUS] = ACTIONS(367), + [anon_sym_DASH] = ACTIONS(367), + [anon_sym_DASH_DASH] = ACTIONS(365), + [anon_sym_PLUS_PLUS] = ACTIONS(365), + [anon_sym_sizeof] = ACTIONS(367), + [sym_number_literal] = ACTIONS(365), + [anon_sym_SQUOTE] = ACTIONS(365), + [anon_sym_DQUOTE] = ACTIONS(365), + [sym_true] = ACTIONS(367), + [sym_false] = ACTIONS(367), + [sym_null] = ACTIONS(367), + [sym_identifier] = ACTIONS(367), + [sym_comment] = ACTIONS(59), }, [61] = { - [sym_preproc_arg] = ACTIONS(339), - [sym_comment] = ACTIONS(47), + [anon_sym_SEMI] = ACTIONS(369), + [anon_sym_COMMA] = ACTIONS(369), + [anon_sym_RPAREN] = ACTIONS(369), + [anon_sym_extern] = ACTIONS(371), + [anon_sym_LPAREN2] = ACTIONS(369), + [anon_sym_STAR] = ACTIONS(369), + [anon_sym_LBRACK] = ACTIONS(369), + [anon_sym_RBRACK] = ACTIONS(369), + [anon_sym_static] = ACTIONS(371), + [anon_sym_auto] = ACTIONS(371), + [anon_sym_register] = ACTIONS(371), + [anon_sym_inline] = ACTIONS(371), + [anon_sym_const] = ACTIONS(371), + [anon_sym_restrict] = ACTIONS(371), + [anon_sym_volatile] = ACTIONS(371), + [anon_sym__Atomic] = ACTIONS(371), + [anon_sym_COLON] = ACTIONS(369), + [anon_sym_AMP] = ACTIONS(369), + [anon_sym_BANG] = ACTIONS(369), + [anon_sym_TILDE] = ACTIONS(369), + [anon_sym_PLUS] = ACTIONS(371), + [anon_sym_DASH] = ACTIONS(371), + [anon_sym_DASH_DASH] = ACTIONS(369), + [anon_sym_PLUS_PLUS] = ACTIONS(369), + [anon_sym_sizeof] = ACTIONS(371), + [sym_number_literal] = ACTIONS(369), + [anon_sym_SQUOTE] = ACTIONS(369), + [anon_sym_DQUOTE] = ACTIONS(369), + [sym_true] = ACTIONS(371), + [sym_false] = ACTIONS(371), + [sym_null] = ACTIONS(371), + [sym_identifier] = ACTIONS(371), + [sym_comment] = ACTIONS(59), }, [62] = { - [ts_builtin_sym_end] = ACTIONS(341), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(343), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(343), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(343), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(343), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(343), - [sym_preproc_directive] = ACTIONS(343), - [anon_sym_typedef] = ACTIONS(343), - [anon_sym_extern] = ACTIONS(343), - [anon_sym_RBRACE] = ACTIONS(341), - [anon_sym_static] = ACTIONS(343), - [anon_sym_auto] = ACTIONS(343), - [anon_sym_register] = ACTIONS(343), - [anon_sym_inline] = ACTIONS(343), - [anon_sym_const] = ACTIONS(343), - [anon_sym_restrict] = ACTIONS(343), - [anon_sym_volatile] = ACTIONS(343), - [anon_sym__Atomic] = ACTIONS(343), - [anon_sym_unsigned] = ACTIONS(343), - [anon_sym_long] = ACTIONS(343), - [anon_sym_short] = ACTIONS(343), - [sym_primitive_type] = ACTIONS(343), - [anon_sym_enum] = ACTIONS(343), - [anon_sym_struct] = ACTIONS(343), - [anon_sym_union] = ACTIONS(343), - [sym_identifier] = ACTIONS(343), - [sym_comment] = ACTIONS(37), + [sym_preproc_if_in_field_declaration_list] = STATE(180), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(180), + [sym__declaration_specifiers] = STATE(178), + [sym_storage_class_specifier] = STATE(181), + [sym_type_qualifier] = STATE(181), + [sym__type_specifier] = STATE(179), + [sym_sized_type_specifier] = STATE(179), + [sym_enum_specifier] = STATE(179), + [sym_struct_specifier] = STATE(179), + [sym_union_specifier] = STATE(179), + [sym__field_declaration_list_item] = STATE(180), + [sym_field_declaration] = STATE(180), + [sym_macro_type_specifier] = STATE(179), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(180), + [aux_sym__declaration_specifiers_repeat1] = STATE(181), + [aux_sym_sized_type_specifier_repeat1] = STATE(182), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(373), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(375), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(375), + [anon_sym_extern] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(377), + [anon_sym_static] = ACTIONS(25), + [anon_sym_auto] = ACTIONS(25), + [anon_sym_register] = ACTIONS(25), + [anon_sym_inline] = ACTIONS(25), + [anon_sym_const] = ACTIONS(27), + [anon_sym_restrict] = ACTIONS(27), + [anon_sym_volatile] = ACTIONS(27), + [anon_sym__Atomic] = ACTIONS(27), + [anon_sym_unsigned] = ACTIONS(379), + [anon_sym_long] = ACTIONS(379), + [anon_sym_short] = ACTIONS(379), + [sym_primitive_type] = ACTIONS(381), + [anon_sym_enum] = ACTIONS(33), + [anon_sym_struct] = ACTIONS(35), + [anon_sym_union] = ACTIONS(37), + [sym_identifier] = ACTIONS(81), + [sym_comment] = ACTIONS(59), }, [63] = { - [sym_identifier] = ACTIONS(345), - [sym_comment] = ACTIONS(37), + [sym_field_declaration_list] = STATE(183), + [anon_sym_SEMI] = ACTIONS(383), + [anon_sym_COMMA] = ACTIONS(383), + [anon_sym_RPAREN] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(123), + [anon_sym_LPAREN2] = ACTIONS(383), + [anon_sym_STAR] = ACTIONS(383), + [anon_sym_LBRACK] = ACTIONS(383), + [anon_sym_RBRACK] = ACTIONS(383), + [anon_sym_static] = ACTIONS(385), + [anon_sym_auto] = ACTIONS(385), + [anon_sym_register] = ACTIONS(385), + [anon_sym_inline] = ACTIONS(385), + [anon_sym_const] = ACTIONS(385), + [anon_sym_restrict] = ACTIONS(385), + [anon_sym_volatile] = ACTIONS(385), + [anon_sym__Atomic] = ACTIONS(385), + [anon_sym_COLON] = ACTIONS(383), + [anon_sym_AMP] = ACTIONS(383), + [anon_sym_BANG] = ACTIONS(383), + [anon_sym_TILDE] = ACTIONS(383), + [anon_sym_PLUS] = ACTIONS(385), + [anon_sym_DASH] = ACTIONS(385), + [anon_sym_DASH_DASH] = ACTIONS(383), + [anon_sym_PLUS_PLUS] = ACTIONS(383), + [anon_sym_sizeof] = ACTIONS(385), + [sym_number_literal] = ACTIONS(383), + [anon_sym_SQUOTE] = ACTIONS(383), + [anon_sym_DQUOTE] = ACTIONS(383), + [sym_true] = ACTIONS(385), + [sym_false] = ACTIONS(385), + [sym_null] = ACTIONS(385), + [sym_identifier] = ACTIONS(385), + [sym_comment] = ACTIONS(59), }, [64] = { - [sym_preproc_include] = STATE(143), - [sym_preproc_def] = STATE(143), - [sym_preproc_function_def] = STATE(143), - [sym_preproc_call] = STATE(143), - [sym_preproc_if] = STATE(143), - [sym_preproc_ifdef] = STATE(143), - [sym_function_definition] = STATE(143), - [sym_declaration] = STATE(143), - [sym_type_definition] = STATE(143), - [sym__declaration_specifiers] = STATE(142), - [sym_linkage_specification] = STATE(143), - [sym_storage_class_specifier] = STATE(19), - [sym_type_qualifier] = STATE(19), - [sym__type_specifier] = STATE(17), - [sym_sized_type_specifier] = STATE(17), - [sym_enum_specifier] = STATE(17), - [sym_struct_specifier] = STATE(17), - [sym_union_specifier] = STATE(17), - [sym__empty_declaration] = STATE(143), - [sym_macro_type_specifier] = STATE(17), - [aux_sym_translation_unit_repeat1] = STATE(143), - [aux_sym__declaration_specifiers_repeat1] = STATE(19), - [aux_sym_sized_type_specifier_repeat1] = STATE(20), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(347), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(349), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(351), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(353), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(355), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(355), - [sym_preproc_directive] = ACTIONS(357), - [anon_sym_typedef] = ACTIONS(359), - [anon_sym_extern] = ACTIONS(361), - [anon_sym_static] = ACTIONS(21), - [anon_sym_auto] = ACTIONS(21), - [anon_sym_register] = ACTIONS(21), - [anon_sym_inline] = ACTIONS(21), - [anon_sym_const] = ACTIONS(23), - [anon_sym_restrict] = ACTIONS(23), - [anon_sym_volatile] = ACTIONS(23), - [anon_sym__Atomic] = ACTIONS(23), - [anon_sym_unsigned] = ACTIONS(25), - [anon_sym_long] = ACTIONS(25), - [anon_sym_short] = ACTIONS(25), - [sym_primitive_type] = ACTIONS(27), - [anon_sym_enum] = ACTIONS(29), - [anon_sym_struct] = ACTIONS(31), - [anon_sym_union] = ACTIONS(33), - [sym_identifier] = ACTIONS(35), - [sym_comment] = ACTIONS(37), - }, - [65] = { - [sym_preproc_arg] = ACTIONS(363), - [sym_comment] = ACTIONS(47), - }, - [66] = { - [anon_sym_LF] = ACTIONS(365), - [sym_preproc_arg] = ACTIONS(367), - [sym_comment] = ACTIONS(47), - }, - [67] = { - [sym_type_qualifier] = STATE(148), - [sym__type_specifier] = STATE(147), - [sym_sized_type_specifier] = STATE(147), - [sym_enum_specifier] = STATE(147), - [sym_struct_specifier] = STATE(147), - [sym_union_specifier] = STATE(147), - [sym_macro_type_specifier] = STATE(147), - [aux_sym_type_definition_repeat1] = STATE(148), - [aux_sym_sized_type_specifier_repeat1] = STATE(30), - [anon_sym_const] = ACTIONS(23), - [anon_sym_restrict] = ACTIONS(23), - [anon_sym_volatile] = ACTIONS(23), - [anon_sym__Atomic] = ACTIONS(23), - [anon_sym_unsigned] = ACTIONS(55), - [anon_sym_long] = ACTIONS(55), - [anon_sym_short] = ACTIONS(55), - [sym_primitive_type] = ACTIONS(369), - [anon_sym_enum] = ACTIONS(29), - [anon_sym_struct] = ACTIONS(31), - [anon_sym_union] = ACTIONS(33), - [sym_identifier] = ACTIONS(35), - [sym_comment] = ACTIONS(37), - }, - [68] = { - [sym_string_literal] = STATE(149), - [anon_sym_extern] = ACTIONS(59), - [anon_sym_static] = ACTIONS(59), - [anon_sym_auto] = ACTIONS(59), - [anon_sym_register] = ACTIONS(59), - [anon_sym_inline] = ACTIONS(59), - [anon_sym_const] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(59), - [anon_sym_enum] = ACTIONS(59), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_identifier] = ACTIONS(59), - [sym_comment] = ACTIONS(37), - }, - [69] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(371), - [sym_comment] = ACTIONS(37), - }, - [70] = { - [sym__declarator] = STATE(152), - [sym_pointer_declarator] = STATE(152), - [sym_function_declarator] = STATE(152), - [sym_array_declarator] = STATE(152), - [sym_init_declarator] = STATE(153), - [anon_sym_SEMI] = ACTIONS(373), - [anon_sym_LPAREN2] = ACTIONS(88), - [anon_sym_STAR] = ACTIONS(90), - [sym_identifier] = ACTIONS(375), - [sym_comment] = ACTIONS(37), - }, - [71] = { - [sym_preproc_include] = STATE(155), - [sym_preproc_def] = STATE(155), - [sym_preproc_function_def] = STATE(155), - [sym_preproc_call] = STATE(155), - [sym_preproc_if] = STATE(155), - [sym_preproc_ifdef] = STATE(155), - [sym_preproc_else] = STATE(154), - [sym_preproc_elif] = STATE(154), - [sym_function_definition] = STATE(155), - [sym_declaration] = STATE(155), - [sym_type_definition] = STATE(155), - [sym__declaration_specifiers] = STATE(70), - [sym_linkage_specification] = STATE(155), - [sym_storage_class_specifier] = STATE(19), - [sym_type_qualifier] = STATE(19), - [sym__type_specifier] = STATE(17), - [sym_sized_type_specifier] = STATE(17), - [sym_enum_specifier] = STATE(17), - [sym_struct_specifier] = STATE(17), - [sym_union_specifier] = STATE(17), - [sym__empty_declaration] = STATE(155), - [sym_macro_type_specifier] = STATE(17), - [aux_sym_translation_unit_repeat1] = STATE(155), - [aux_sym__declaration_specifiers_repeat1] = STATE(19), - [aux_sym_sized_type_specifier_repeat1] = STATE(20), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(127), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(129), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(131), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(377), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(135), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(135), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(137), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(139), - [sym_preproc_directive] = ACTIONS(141), - [anon_sym_typedef] = ACTIONS(143), - [anon_sym_extern] = ACTIONS(145), - [anon_sym_static] = ACTIONS(21), - [anon_sym_auto] = ACTIONS(21), - [anon_sym_register] = ACTIONS(21), - [anon_sym_inline] = ACTIONS(21), - [anon_sym_const] = ACTIONS(23), - [anon_sym_restrict] = ACTIONS(23), - [anon_sym_volatile] = ACTIONS(23), - [anon_sym__Atomic] = ACTIONS(23), - [anon_sym_unsigned] = ACTIONS(25), - [anon_sym_long] = ACTIONS(25), - [anon_sym_short] = ACTIONS(25), - [sym_primitive_type] = ACTIONS(27), - [anon_sym_enum] = ACTIONS(29), - [anon_sym_struct] = ACTIONS(31), - [anon_sym_union] = ACTIONS(33), - [sym_identifier] = ACTIONS(35), - [sym_comment] = ACTIONS(37), - }, - [72] = { - [ts_builtin_sym_end] = ACTIONS(379), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(381), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(381), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(381), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(381), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(381), - [sym_preproc_directive] = ACTIONS(381), - [anon_sym_typedef] = ACTIONS(381), - [anon_sym_extern] = ACTIONS(381), - [anon_sym_RBRACE] = ACTIONS(379), - [anon_sym_static] = ACTIONS(381), - [anon_sym_auto] = ACTIONS(381), - [anon_sym_register] = ACTIONS(381), - [anon_sym_inline] = ACTIONS(381), - [anon_sym_const] = ACTIONS(381), - [anon_sym_restrict] = ACTIONS(381), - [anon_sym_volatile] = ACTIONS(381), - [anon_sym__Atomic] = ACTIONS(381), - [anon_sym_unsigned] = ACTIONS(381), - [anon_sym_long] = ACTIONS(381), - [anon_sym_short] = ACTIONS(381), - [sym_primitive_type] = ACTIONS(381), - [anon_sym_enum] = ACTIONS(381), - [anon_sym_struct] = ACTIONS(381), - [anon_sym_union] = ACTIONS(381), - [sym_identifier] = ACTIONS(381), - [sym_comment] = ACTIONS(37), - }, - [73] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(383), - [sym_comment] = ACTIONS(37), - }, - [74] = { - [sym_preproc_include] = STATE(155), - [sym_preproc_def] = STATE(155), - [sym_preproc_function_def] = STATE(155), - [sym_preproc_call] = STATE(155), - [sym_preproc_if] = STATE(155), - [sym_preproc_ifdef] = STATE(155), - [sym_preproc_else] = STATE(157), - [sym_preproc_elif] = STATE(157), - [sym_function_definition] = STATE(155), - [sym_declaration] = STATE(155), - [sym_type_definition] = STATE(155), - [sym__declaration_specifiers] = STATE(70), - [sym_linkage_specification] = STATE(155), - [sym_storage_class_specifier] = STATE(19), - [sym_type_qualifier] = STATE(19), - [sym__type_specifier] = STATE(17), - [sym_sized_type_specifier] = STATE(17), - [sym_enum_specifier] = STATE(17), - [sym_struct_specifier] = STATE(17), - [sym_union_specifier] = STATE(17), - [sym__empty_declaration] = STATE(155), - [sym_macro_type_specifier] = STATE(17), - [aux_sym_translation_unit_repeat1] = STATE(155), - [aux_sym__declaration_specifiers_repeat1] = STATE(19), - [aux_sym_sized_type_specifier_repeat1] = STATE(20), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(127), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(129), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(131), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(385), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(135), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(135), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(137), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(139), - [sym_preproc_directive] = ACTIONS(141), - [anon_sym_typedef] = ACTIONS(143), - [anon_sym_extern] = ACTIONS(145), - [anon_sym_static] = ACTIONS(21), - [anon_sym_auto] = ACTIONS(21), - [anon_sym_register] = ACTIONS(21), - [anon_sym_inline] = ACTIONS(21), - [anon_sym_const] = ACTIONS(23), - [anon_sym_restrict] = ACTIONS(23), - [anon_sym_volatile] = ACTIONS(23), - [anon_sym__Atomic] = ACTIONS(23), - [anon_sym_unsigned] = ACTIONS(25), - [anon_sym_long] = ACTIONS(25), - [anon_sym_short] = ACTIONS(25), - [sym_primitive_type] = ACTIONS(27), - [anon_sym_enum] = ACTIONS(29), - [anon_sym_struct] = ACTIONS(31), - [anon_sym_union] = ACTIONS(33), - [sym_identifier] = ACTIONS(35), - [sym_comment] = ACTIONS(37), - }, - [75] = { - [ts_builtin_sym_end] = ACTIONS(387), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(389), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(389), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(389), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(389), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(389), - [sym_preproc_directive] = ACTIONS(389), [anon_sym_SEMI] = ACTIONS(387), - [anon_sym_typedef] = ACTIONS(389), + [anon_sym_COMMA] = ACTIONS(387), + [anon_sym_RPAREN] = ACTIONS(387), [anon_sym_extern] = ACTIONS(389), - [anon_sym_LBRACE] = ACTIONS(387), - [anon_sym_RBRACE] = ACTIONS(387), [anon_sym_LPAREN2] = ACTIONS(387), [anon_sym_STAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(387), + [anon_sym_RBRACK] = ACTIONS(387), [anon_sym_static] = ACTIONS(389), [anon_sym_auto] = ACTIONS(389), [anon_sym_register] = ACTIONS(389), @@ -7464,24 +7670,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_restrict] = ACTIONS(389), [anon_sym_volatile] = ACTIONS(389), [anon_sym__Atomic] = ACTIONS(389), - [anon_sym_unsigned] = ACTIONS(389), - [anon_sym_long] = ACTIONS(389), - [anon_sym_short] = ACTIONS(389), - [sym_primitive_type] = ACTIONS(389), - [anon_sym_enum] = ACTIONS(389), - [anon_sym_struct] = ACTIONS(389), - [anon_sym_union] = ACTIONS(389), - [anon_sym_if] = ACTIONS(389), - [anon_sym_switch] = ACTIONS(389), - [anon_sym_case] = ACTIONS(389), - [anon_sym_default] = ACTIONS(389), - [anon_sym_while] = ACTIONS(389), - [anon_sym_do] = ACTIONS(389), - [anon_sym_for] = ACTIONS(389), - [anon_sym_return] = ACTIONS(389), - [anon_sym_break] = ACTIONS(389), - [anon_sym_continue] = ACTIONS(389), - [anon_sym_goto] = ACTIONS(389), + [anon_sym_COLON] = ACTIONS(387), [anon_sym_AMP] = ACTIONS(387), [anon_sym_BANG] = ACTIONS(387), [anon_sym_TILDE] = ACTIONS(387), @@ -7497,2104 +7686,2733 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(389), [sym_null] = ACTIONS(389), [sym_identifier] = ACTIONS(389), - [sym_comment] = ACTIONS(37), + [sym_comment] = ACTIONS(59), }, - [76] = { - [sym__type_declarator] = STATE(159), - [sym_pointer_type_declarator] = STATE(159), - [sym_function_type_declarator] = STATE(159), - [sym_array_type_declarator] = STATE(159), - [anon_sym_LPAREN2] = ACTIONS(155), + [65] = { + [sym_field_declaration_list] = STATE(184), + [anon_sym_SEMI] = ACTIONS(391), + [anon_sym_COMMA] = ACTIONS(391), + [anon_sym_RPAREN] = ACTIONS(391), + [anon_sym_extern] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(123), + [anon_sym_LPAREN2] = ACTIONS(391), [anon_sym_STAR] = ACTIONS(391), - [sym_identifier] = ACTIONS(159), - [sym_comment] = ACTIONS(37), - }, - [77] = { - [sym__type_declarator] = STATE(160), - [sym_pointer_type_declarator] = STATE(160), - [sym_function_type_declarator] = STATE(160), - [sym_array_type_declarator] = STATE(160), - [sym_type_qualifier] = STATE(161), - [aux_sym_type_definition_repeat1] = STATE(161), - [anon_sym_LPAREN2] = ACTIONS(155), - [anon_sym_STAR] = ACTIONS(157), - [anon_sym_const] = ACTIONS(23), - [anon_sym_restrict] = ACTIONS(23), - [anon_sym_volatile] = ACTIONS(23), - [anon_sym__Atomic] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(391), + [anon_sym_RBRACK] = ACTIONS(391), + [anon_sym_static] = ACTIONS(393), + [anon_sym_auto] = ACTIONS(393), + [anon_sym_register] = ACTIONS(393), + [anon_sym_inline] = ACTIONS(393), + [anon_sym_const] = ACTIONS(393), + [anon_sym_restrict] = ACTIONS(393), + [anon_sym_volatile] = ACTIONS(393), + [anon_sym__Atomic] = ACTIONS(393), + [anon_sym_COLON] = ACTIONS(391), + [anon_sym_AMP] = ACTIONS(391), + [anon_sym_BANG] = ACTIONS(391), + [anon_sym_TILDE] = ACTIONS(391), + [anon_sym_PLUS] = ACTIONS(393), + [anon_sym_DASH] = ACTIONS(393), + [anon_sym_DASH_DASH] = ACTIONS(391), + [anon_sym_PLUS_PLUS] = ACTIONS(391), + [anon_sym_sizeof] = ACTIONS(393), + [sym_number_literal] = ACTIONS(391), + [anon_sym_SQUOTE] = ACTIONS(391), + [anon_sym_DQUOTE] = ACTIONS(391), + [sym_true] = ACTIONS(393), + [sym_false] = ACTIONS(393), + [sym_null] = ACTIONS(393), [sym_identifier] = ACTIONS(393), - [sym_comment] = ACTIONS(37), + [sym_comment] = ACTIONS(59), }, - [78] = { - [anon_sym_RPAREN] = ACTIONS(395), + [66] = { [anon_sym_SEMI] = ACTIONS(395), + [anon_sym_COMMA] = ACTIONS(395), + [anon_sym_RPAREN] = ACTIONS(395), + [anon_sym_extern] = ACTIONS(397), [anon_sym_LPAREN2] = ACTIONS(395), + [anon_sym_STAR] = ACTIONS(395), [anon_sym_LBRACK] = ACTIONS(395), - [sym_comment] = ACTIONS(37), + [anon_sym_RBRACK] = ACTIONS(395), + [anon_sym_static] = ACTIONS(397), + [anon_sym_auto] = ACTIONS(397), + [anon_sym_register] = ACTIONS(397), + [anon_sym_inline] = ACTIONS(397), + [anon_sym_const] = ACTIONS(397), + [anon_sym_restrict] = ACTIONS(397), + [anon_sym_volatile] = ACTIONS(397), + [anon_sym__Atomic] = ACTIONS(397), + [anon_sym_COLON] = ACTIONS(395), + [anon_sym_AMP] = ACTIONS(395), + [anon_sym_BANG] = ACTIONS(395), + [anon_sym_TILDE] = ACTIONS(395), + [anon_sym_PLUS] = ACTIONS(397), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_DASH_DASH] = ACTIONS(395), + [anon_sym_PLUS_PLUS] = ACTIONS(395), + [anon_sym_sizeof] = ACTIONS(397), + [sym_number_literal] = ACTIONS(395), + [anon_sym_SQUOTE] = ACTIONS(395), + [anon_sym_DQUOTE] = ACTIONS(395), + [sym_true] = ACTIONS(397), + [sym_false] = ACTIONS(397), + [sym_null] = ACTIONS(397), + [sym_identifier] = ACTIONS(397), + [sym_comment] = ACTIONS(59), + }, + [67] = { + [sym_argument_list] = STATE(98), + [anon_sym_SEMI] = ACTIONS(399), + [anon_sym_COMMA] = ACTIONS(399), + [anon_sym_RPAREN] = ACTIONS(399), + [anon_sym_RBRACE] = ACTIONS(399), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(401), + [anon_sym_LBRACK] = ACTIONS(188), + [anon_sym_RBRACK] = ACTIONS(399), + [anon_sym_EQ] = ACTIONS(401), + [anon_sym_COLON] = ACTIONS(399), + [anon_sym_QMARK] = ACTIONS(399), + [anon_sym_STAR_EQ] = ACTIONS(399), + [anon_sym_SLASH_EQ] = ACTIONS(399), + [anon_sym_PERCENT_EQ] = ACTIONS(399), + [anon_sym_PLUS_EQ] = ACTIONS(399), + [anon_sym_DASH_EQ] = ACTIONS(399), + [anon_sym_LT_LT_EQ] = ACTIONS(399), + [anon_sym_GT_GT_EQ] = ACTIONS(399), + [anon_sym_AMP_EQ] = ACTIONS(399), + [anon_sym_CARET_EQ] = ACTIONS(399), + [anon_sym_PIPE_EQ] = ACTIONS(399), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_PIPE_PIPE] = ACTIONS(399), + [anon_sym_AMP_AMP] = ACTIONS(399), + [anon_sym_PIPE] = ACTIONS(401), + [anon_sym_CARET] = ACTIONS(401), + [anon_sym_EQ_EQ] = ACTIONS(399), + [anon_sym_BANG_EQ] = ACTIONS(399), + [anon_sym_LT] = ACTIONS(401), + [anon_sym_GT] = ACTIONS(401), + [anon_sym_LT_EQ] = ACTIONS(399), + [anon_sym_GT_EQ] = ACTIONS(399), + [anon_sym_LT_LT] = ACTIONS(401), + [anon_sym_GT_GT] = ACTIONS(401), + [anon_sym_PLUS] = ACTIONS(401), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_SLASH] = ACTIONS(401), + [anon_sym_PERCENT] = ACTIONS(401), + [anon_sym_DASH_DASH] = ACTIONS(399), + [anon_sym_PLUS_PLUS] = ACTIONS(399), + [anon_sym_DOT] = ACTIONS(218), + [anon_sym_DASH_GT] = ACTIONS(218), + [sym_comment] = ACTIONS(59), + }, + [68] = { + [sym_argument_list] = STATE(98), + [anon_sym_SEMI] = ACTIONS(403), + [anon_sym_COMMA] = ACTIONS(403), + [anon_sym_RPAREN] = ACTIONS(403), + [anon_sym_RBRACE] = ACTIONS(403), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(405), + [anon_sym_LBRACK] = ACTIONS(188), + [anon_sym_RBRACK] = ACTIONS(403), + [anon_sym_EQ] = ACTIONS(405), + [anon_sym_COLON] = ACTIONS(403), + [anon_sym_QMARK] = ACTIONS(403), + [anon_sym_STAR_EQ] = ACTIONS(403), + [anon_sym_SLASH_EQ] = ACTIONS(403), + [anon_sym_PERCENT_EQ] = ACTIONS(403), + [anon_sym_PLUS_EQ] = ACTIONS(403), + [anon_sym_DASH_EQ] = ACTIONS(403), + [anon_sym_LT_LT_EQ] = ACTIONS(403), + [anon_sym_GT_GT_EQ] = ACTIONS(403), + [anon_sym_AMP_EQ] = ACTIONS(403), + [anon_sym_CARET_EQ] = ACTIONS(403), + [anon_sym_PIPE_EQ] = ACTIONS(403), + [anon_sym_AMP] = ACTIONS(405), + [anon_sym_PIPE_PIPE] = ACTIONS(403), + [anon_sym_AMP_AMP] = ACTIONS(403), + [anon_sym_PIPE] = ACTIONS(405), + [anon_sym_CARET] = ACTIONS(405), + [anon_sym_EQ_EQ] = ACTIONS(403), + [anon_sym_BANG_EQ] = ACTIONS(403), + [anon_sym_LT] = ACTIONS(405), + [anon_sym_GT] = ACTIONS(405), + [anon_sym_LT_EQ] = ACTIONS(403), + [anon_sym_GT_EQ] = ACTIONS(403), + [anon_sym_LT_LT] = ACTIONS(405), + [anon_sym_GT_GT] = ACTIONS(405), + [anon_sym_PLUS] = ACTIONS(405), + [anon_sym_DASH] = ACTIONS(405), + [anon_sym_SLASH] = ACTIONS(405), + [anon_sym_PERCENT] = ACTIONS(405), + [anon_sym_DASH_DASH] = ACTIONS(403), + [anon_sym_PLUS_PLUS] = ACTIONS(403), + [anon_sym_DOT] = ACTIONS(218), + [anon_sym_DASH_GT] = ACTIONS(218), + [sym_comment] = ACTIONS(59), + }, + [69] = { + [sym_argument_list] = STATE(98), + [anon_sym_SEMI] = ACTIONS(407), + [anon_sym_COMMA] = ACTIONS(407), + [anon_sym_RPAREN] = ACTIONS(407), + [anon_sym_RBRACE] = ACTIONS(407), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(409), + [anon_sym_LBRACK] = ACTIONS(188), + [anon_sym_RBRACK] = ACTIONS(407), + [anon_sym_EQ] = ACTIONS(409), + [anon_sym_COLON] = ACTIONS(407), + [anon_sym_QMARK] = ACTIONS(407), + [anon_sym_STAR_EQ] = ACTIONS(407), + [anon_sym_SLASH_EQ] = ACTIONS(407), + [anon_sym_PERCENT_EQ] = ACTIONS(407), + [anon_sym_PLUS_EQ] = ACTIONS(407), + [anon_sym_DASH_EQ] = ACTIONS(407), + [anon_sym_LT_LT_EQ] = ACTIONS(407), + [anon_sym_GT_GT_EQ] = ACTIONS(407), + [anon_sym_AMP_EQ] = ACTIONS(407), + [anon_sym_CARET_EQ] = ACTIONS(407), + [anon_sym_PIPE_EQ] = ACTIONS(407), + [anon_sym_AMP] = ACTIONS(409), + [anon_sym_PIPE_PIPE] = ACTIONS(407), + [anon_sym_AMP_AMP] = ACTIONS(407), + [anon_sym_PIPE] = ACTIONS(409), + [anon_sym_CARET] = ACTIONS(409), + [anon_sym_EQ_EQ] = ACTIONS(407), + [anon_sym_BANG_EQ] = ACTIONS(407), + [anon_sym_LT] = ACTIONS(409), + [anon_sym_GT] = ACTIONS(409), + [anon_sym_LT_EQ] = ACTIONS(407), + [anon_sym_GT_EQ] = ACTIONS(407), + [anon_sym_LT_LT] = ACTIONS(409), + [anon_sym_GT_GT] = ACTIONS(409), + [anon_sym_PLUS] = ACTIONS(409), + [anon_sym_DASH] = ACTIONS(409), + [anon_sym_SLASH] = ACTIONS(409), + [anon_sym_PERCENT] = ACTIONS(409), + [anon_sym_DASH_DASH] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(216), + [anon_sym_DOT] = ACTIONS(218), + [anon_sym_DASH_GT] = ACTIONS(218), + [sym_comment] = ACTIONS(59), + }, + [70] = { + [sym_type_qualifier] = STATE(56), + [sym__type_specifier] = STATE(51), + [sym_sized_type_specifier] = STATE(51), + [sym_enum_specifier] = STATE(51), + [sym_struct_specifier] = STATE(51), + [sym_union_specifier] = STATE(51), + [sym__expression] = STATE(52), + [sym_comma_expression] = STATE(53), + [sym_conditional_expression] = STATE(52), + [sym_assignment_expression] = STATE(52), + [sym_pointer_expression] = STATE(52), + [sym_logical_expression] = STATE(52), + [sym_bitwise_expression] = STATE(52), + [sym_equality_expression] = STATE(52), + [sym_relational_expression] = STATE(52), + [sym_shift_expression] = STATE(52), + [sym_math_expression] = STATE(52), + [sym_cast_expression] = STATE(52), + [sym_type_descriptor] = STATE(185), + [sym_sizeof_expression] = STATE(52), + [sym_subscript_expression] = STATE(52), + [sym_call_expression] = STATE(52), + [sym_field_expression] = STATE(52), + [sym_compound_literal_expression] = STATE(52), + [sym_parenthesized_expression] = STATE(52), + [sym_char_literal] = STATE(52), + [sym_concatenated_string] = STATE(52), + [sym_string_literal] = STATE(55), + [sym_macro_type_specifier] = STATE(51), + [aux_sym_type_definition_repeat1] = STATE(56), + [aux_sym_sized_type_specifier_repeat1] = STATE(57), + [anon_sym_LPAREN2] = ACTIONS(85), + [anon_sym_STAR] = ACTIONS(87), + [anon_sym_const] = ACTIONS(27), + [anon_sym_restrict] = ACTIONS(27), + [anon_sym_volatile] = ACTIONS(27), + [anon_sym__Atomic] = ACTIONS(27), + [anon_sym_unsigned] = ACTIONS(89), + [anon_sym_long] = ACTIONS(89), + [anon_sym_short] = ACTIONS(89), + [sym_primitive_type] = ACTIONS(91), + [anon_sym_enum] = ACTIONS(33), + [anon_sym_struct] = ACTIONS(35), + [anon_sym_union] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_PLUS] = ACTIONS(97), + [anon_sym_DASH] = ACTIONS(97), + [anon_sym_DASH_DASH] = ACTIONS(99), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(105), + [sym_false] = ACTIONS(105), + [sym_null] = ACTIONS(105), + [sym_identifier] = ACTIONS(107), + [sym_comment] = ACTIONS(59), + }, + [71] = { + [sym_argument_list] = STATE(98), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(186), + [anon_sym_LBRACK] = ACTIONS(188), + [anon_sym_EQ] = ACTIONS(411), + [anon_sym_QMARK] = ACTIONS(413), + [anon_sym_STAR_EQ] = ACTIONS(413), + [anon_sym_SLASH_EQ] = ACTIONS(413), + [anon_sym_PERCENT_EQ] = ACTIONS(413), + [anon_sym_PLUS_EQ] = ACTIONS(413), + [anon_sym_DASH_EQ] = ACTIONS(413), + [anon_sym_LT_LT_EQ] = ACTIONS(413), + [anon_sym_GT_GT_EQ] = ACTIONS(413), + [anon_sym_AMP_EQ] = ACTIONS(413), + [anon_sym_CARET_EQ] = ACTIONS(413), + [anon_sym_PIPE_EQ] = ACTIONS(413), + [anon_sym_AMP] = ACTIONS(411), + [anon_sym_PIPE_PIPE] = ACTIONS(413), + [anon_sym_AMP_AMP] = ACTIONS(413), + [anon_sym_PIPE] = ACTIONS(411), + [anon_sym_CARET] = ACTIONS(411), + [anon_sym_EQ_EQ] = ACTIONS(413), + [anon_sym_BANG_EQ] = ACTIONS(413), + [anon_sym_LT] = ACTIONS(411), + [anon_sym_GT] = ACTIONS(411), + [anon_sym_LT_EQ] = ACTIONS(413), + [anon_sym_GT_EQ] = ACTIONS(413), + [anon_sym_LT_LT] = ACTIONS(212), + [anon_sym_GT_GT] = ACTIONS(212), + [anon_sym_PLUS] = ACTIONS(214), + [anon_sym_DASH] = ACTIONS(214), + [anon_sym_SLASH] = ACTIONS(186), + [anon_sym_PERCENT] = ACTIONS(186), + [anon_sym_DASH_DASH] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(216), + [anon_sym_DOT] = ACTIONS(218), + [anon_sym_DASH_GT] = ACTIONS(218), + [sym_comment] = ACTIONS(59), + }, + [72] = { + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_comment] = ACTIONS(59), + }, + [73] = { + [anon_sym_SEMI] = ACTIONS(417), + [anon_sym_COMMA] = ACTIONS(417), + [anon_sym_RPAREN] = ACTIONS(417), + [anon_sym_extern] = ACTIONS(419), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_RBRACE] = ACTIONS(417), + [anon_sym_LPAREN2] = ACTIONS(417), + [anon_sym_STAR] = ACTIONS(419), + [anon_sym_LBRACK] = ACTIONS(417), + [anon_sym_RBRACK] = ACTIONS(417), + [anon_sym_EQ] = ACTIONS(419), + [anon_sym_static] = ACTIONS(419), + [anon_sym_auto] = ACTIONS(419), + [anon_sym_register] = ACTIONS(419), + [anon_sym_inline] = ACTIONS(419), + [anon_sym_const] = ACTIONS(419), + [anon_sym_restrict] = ACTIONS(419), + [anon_sym_volatile] = ACTIONS(419), + [anon_sym__Atomic] = ACTIONS(419), + [anon_sym_unsigned] = ACTIONS(419), + [anon_sym_long] = ACTIONS(419), + [anon_sym_short] = ACTIONS(419), + [sym_primitive_type] = ACTIONS(419), + [anon_sym_enum] = ACTIONS(419), + [anon_sym_struct] = ACTIONS(419), + [anon_sym_union] = ACTIONS(419), + [anon_sym_COLON] = ACTIONS(417), + [anon_sym_QMARK] = ACTIONS(417), + [anon_sym_STAR_EQ] = ACTIONS(417), + [anon_sym_SLASH_EQ] = ACTIONS(417), + [anon_sym_PERCENT_EQ] = ACTIONS(417), + [anon_sym_PLUS_EQ] = ACTIONS(417), + [anon_sym_DASH_EQ] = ACTIONS(417), + [anon_sym_LT_LT_EQ] = ACTIONS(417), + [anon_sym_GT_GT_EQ] = ACTIONS(417), + [anon_sym_AMP_EQ] = ACTIONS(417), + [anon_sym_CARET_EQ] = ACTIONS(417), + [anon_sym_PIPE_EQ] = ACTIONS(417), + [anon_sym_AMP] = ACTIONS(419), + [anon_sym_PIPE_PIPE] = ACTIONS(417), + [anon_sym_AMP_AMP] = ACTIONS(417), + [anon_sym_PIPE] = ACTIONS(419), + [anon_sym_CARET] = ACTIONS(419), + [anon_sym_EQ_EQ] = ACTIONS(417), + [anon_sym_BANG_EQ] = ACTIONS(417), + [anon_sym_LT] = ACTIONS(419), + [anon_sym_GT] = ACTIONS(419), + [anon_sym_LT_EQ] = ACTIONS(417), + [anon_sym_GT_EQ] = ACTIONS(417), + [anon_sym_LT_LT] = ACTIONS(419), + [anon_sym_GT_GT] = ACTIONS(419), + [anon_sym_PLUS] = ACTIONS(419), + [anon_sym_DASH] = ACTIONS(419), + [anon_sym_SLASH] = ACTIONS(419), + [anon_sym_PERCENT] = ACTIONS(419), + [anon_sym_DASH_DASH] = ACTIONS(417), + [anon_sym_PLUS_PLUS] = ACTIONS(417), + [anon_sym_DOT] = ACTIONS(417), + [anon_sym_DASH_GT] = ACTIONS(417), + [anon_sym_DQUOTE] = ACTIONS(417), + [sym_identifier] = ACTIONS(419), + [sym_comment] = ACTIONS(59), + }, + [74] = { + [aux_sym_string_literal_repeat1] = STATE(188), + [anon_sym_DQUOTE] = ACTIONS(421), + [aux_sym_SLASH_LBRACK_CARET_BSLASH_BSLASH_DQUOTE_BSLASHn_RBRACK_SLASH] = ACTIONS(423), + [sym_escape_sequence] = ACTIONS(423), + [sym_comment] = ACTIONS(69), + }, + [75] = { + [sym_type_qualifier] = STATE(56), + [sym__type_specifier] = STATE(51), + [sym_sized_type_specifier] = STATE(51), + [sym_enum_specifier] = STATE(51), + [sym_struct_specifier] = STATE(51), + [sym_union_specifier] = STATE(51), + [sym_type_descriptor] = STATE(189), + [sym_macro_type_specifier] = STATE(51), + [aux_sym_type_definition_repeat1] = STATE(56), + [aux_sym_sized_type_specifier_repeat1] = STATE(57), + [anon_sym_const] = ACTIONS(27), + [anon_sym_restrict] = ACTIONS(27), + [anon_sym_volatile] = ACTIONS(27), + [anon_sym__Atomic] = ACTIONS(27), + [anon_sym_unsigned] = ACTIONS(89), + [anon_sym_long] = ACTIONS(89), + [anon_sym_short] = ACTIONS(89), + [sym_primitive_type] = ACTIONS(91), + [anon_sym_enum] = ACTIONS(33), + [anon_sym_struct] = ACTIONS(35), + [anon_sym_union] = ACTIONS(37), + [sym_identifier] = ACTIONS(81), + [sym_comment] = ACTIONS(59), + }, + [76] = { + [ts_builtin_sym_end] = ACTIONS(425), + [anon_sym_SEMI] = ACTIONS(425), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(427), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(427), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(427), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(427), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(427), + [sym_preproc_directive] = ACTIONS(427), + [anon_sym_typedef] = ACTIONS(427), + [anon_sym_extern] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(425), + [anon_sym_RBRACE] = ACTIONS(425), + [anon_sym_LPAREN2] = ACTIONS(425), + [anon_sym_STAR] = ACTIONS(425), + [anon_sym_static] = ACTIONS(427), + [anon_sym_auto] = ACTIONS(427), + [anon_sym_register] = ACTIONS(427), + [anon_sym_inline] = ACTIONS(427), + [anon_sym_const] = ACTIONS(427), + [anon_sym_restrict] = ACTIONS(427), + [anon_sym_volatile] = ACTIONS(427), + [anon_sym__Atomic] = ACTIONS(427), + [anon_sym_unsigned] = ACTIONS(427), + [anon_sym_long] = ACTIONS(427), + [anon_sym_short] = ACTIONS(427), + [sym_primitive_type] = ACTIONS(427), + [anon_sym_enum] = ACTIONS(427), + [anon_sym_struct] = ACTIONS(427), + [anon_sym_union] = ACTIONS(427), + [anon_sym_if] = ACTIONS(427), + [anon_sym_switch] = ACTIONS(427), + [anon_sym_case] = ACTIONS(427), + [anon_sym_default] = ACTIONS(427), + [anon_sym_while] = ACTIONS(427), + [anon_sym_do] = ACTIONS(427), + [anon_sym_for] = ACTIONS(427), + [anon_sym_return] = ACTIONS(427), + [anon_sym_break] = ACTIONS(427), + [anon_sym_continue] = ACTIONS(427), + [anon_sym_goto] = ACTIONS(427), + [anon_sym_AMP] = ACTIONS(425), + [anon_sym_BANG] = ACTIONS(425), + [anon_sym_TILDE] = ACTIONS(425), + [anon_sym_PLUS] = ACTIONS(427), + [anon_sym_DASH] = ACTIONS(427), + [anon_sym_DASH_DASH] = ACTIONS(425), + [anon_sym_PLUS_PLUS] = ACTIONS(425), + [anon_sym_sizeof] = ACTIONS(427), + [sym_number_literal] = ACTIONS(425), + [anon_sym_SQUOTE] = ACTIONS(425), + [anon_sym_DQUOTE] = ACTIONS(425), + [sym_true] = ACTIONS(427), + [sym_false] = ACTIONS(427), + [sym_null] = ACTIONS(427), + [sym_identifier] = ACTIONS(427), + [sym_comment] = ACTIONS(59), + }, + [77] = { + [sym__declarator] = STATE(191), + [sym_pointer_declarator] = STATE(191), + [sym_function_declarator] = STATE(191), + [sym_array_declarator] = STATE(191), + [anon_sym_LPAREN2] = ACTIONS(174), + [anon_sym_STAR] = ACTIONS(429), + [sym_identifier] = ACTIONS(431), + [sym_comment] = ACTIONS(59), + }, + [78] = { + [sym__declarator] = STATE(192), + [sym_pointer_declarator] = STATE(192), + [sym_function_declarator] = STATE(192), + [sym_array_declarator] = STATE(192), + [sym_type_qualifier] = STATE(193), + [aux_sym_type_definition_repeat1] = STATE(193), + [anon_sym_LPAREN2] = ACTIONS(174), + [anon_sym_STAR] = ACTIONS(176), + [anon_sym_const] = ACTIONS(27), + [anon_sym_restrict] = ACTIONS(27), + [anon_sym_volatile] = ACTIONS(27), + [anon_sym__Atomic] = ACTIONS(27), + [sym_identifier] = ACTIONS(433), + [sym_comment] = ACTIONS(59), }, [79] = { - [sym_parameter_list] = STATE(164), - [anon_sym_SEMI] = ACTIONS(397), - [anon_sym_LPAREN2] = ACTIONS(231), - [anon_sym_LBRACK] = ACTIONS(399), - [sym_comment] = ACTIONS(37), + [sym_compound_statement] = STATE(200), + [sym_parameter_list] = STATE(201), + [aux_sym_declaration_repeat1] = STATE(202), + [anon_sym_SEMI] = ACTIONS(435), + [anon_sym_COMMA] = ACTIONS(437), + [anon_sym_LBRACE] = ACTIONS(439), + [anon_sym_LPAREN2] = ACTIONS(441), + [anon_sym_LBRACK] = ACTIONS(443), + [anon_sym_EQ] = ACTIONS(445), + [sym_comment] = ACTIONS(59), }, [80] = { - [sym__type_declarator] = STATE(165), - [sym_pointer_type_declarator] = STATE(165), - [sym_function_type_declarator] = STATE(165), - [sym_array_type_declarator] = STATE(165), - [anon_sym_LPAREN2] = ACTIONS(155), - [anon_sym_STAR] = ACTIONS(157), - [sym_identifier] = ACTIONS(159), - [sym_comment] = ACTIONS(37), + [aux_sym_declaration_repeat1] = STATE(202), + [anon_sym_SEMI] = ACTIONS(435), + [anon_sym_COMMA] = ACTIONS(437), + [sym_comment] = ACTIONS(59), }, [81] = { - [sym_type_qualifier] = STATE(81), - [aux_sym_type_definition_repeat1] = STATE(81), - [anon_sym_const] = ACTIONS(401), - [anon_sym_restrict] = ACTIONS(401), - [anon_sym_volatile] = ACTIONS(401), - [anon_sym__Atomic] = ACTIONS(401), - [anon_sym_unsigned] = ACTIONS(404), - [anon_sym_long] = ACTIONS(404), - [anon_sym_short] = ACTIONS(404), - [sym_primitive_type] = ACTIONS(404), - [anon_sym_enum] = ACTIONS(404), - [anon_sym_struct] = ACTIONS(404), - [anon_sym_union] = ACTIONS(404), - [sym_identifier] = ACTIONS(404), - [sym_comment] = ACTIONS(37), + [sym_storage_class_specifier] = STATE(203), + [sym_type_qualifier] = STATE(203), + [aux_sym__declaration_specifiers_repeat1] = STATE(203), + [anon_sym_SEMI] = ACTIONS(447), + [anon_sym_extern] = ACTIONS(25), + [anon_sym_LPAREN2] = ACTIONS(447), + [anon_sym_STAR] = ACTIONS(447), + [anon_sym_static] = ACTIONS(25), + [anon_sym_auto] = ACTIONS(25), + [anon_sym_register] = ACTIONS(25), + [anon_sym_inline] = ACTIONS(25), + [anon_sym_const] = ACTIONS(27), + [anon_sym_restrict] = ACTIONS(27), + [anon_sym_volatile] = ACTIONS(27), + [anon_sym__Atomic] = ACTIONS(27), + [sym_identifier] = ACTIONS(449), + [sym_comment] = ACTIONS(59), }, [82] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(82), - [anon_sym_LPAREN2] = ACTIONS(304), - [anon_sym_STAR] = ACTIONS(304), - [anon_sym_unsigned] = ACTIONS(406), - [anon_sym_long] = ACTIONS(406), - [anon_sym_short] = ACTIONS(406), - [sym_primitive_type] = ACTIONS(306), - [sym_identifier] = ACTIONS(306), - [sym_comment] = ACTIONS(37), + [sym__expression] = STATE(205), + [sym_conditional_expression] = STATE(205), + [sym_assignment_expression] = STATE(205), + [sym_pointer_expression] = STATE(205), + [sym_logical_expression] = STATE(205), + [sym_bitwise_expression] = STATE(205), + [sym_equality_expression] = STATE(205), + [sym_relational_expression] = STATE(205), + [sym_shift_expression] = STATE(205), + [sym_math_expression] = STATE(205), + [sym_cast_expression] = STATE(205), + [sym_sizeof_expression] = STATE(205), + [sym_subscript_expression] = STATE(205), + [sym_call_expression] = STATE(205), + [sym_field_expression] = STATE(205), + [sym_compound_literal_expression] = STATE(205), + [sym_parenthesized_expression] = STATE(205), + [sym_char_literal] = STATE(205), + [sym_concatenated_string] = STATE(205), + [sym_string_literal] = STATE(55), + [anon_sym_RPAREN] = ACTIONS(451), + [anon_sym_LPAREN2] = ACTIONS(85), + [anon_sym_STAR] = ACTIONS(87), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_PLUS] = ACTIONS(97), + [anon_sym_DASH] = ACTIONS(97), + [anon_sym_DASH_DASH] = ACTIONS(99), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(101), + [sym_number_literal] = ACTIONS(453), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(455), + [sym_false] = ACTIONS(455), + [sym_null] = ACTIONS(455), + [sym_identifier] = ACTIONS(455), + [sym_comment] = ACTIONS(59), }, [83] = { - [sym_preproc_include] = STATE(167), - [sym_preproc_def] = STATE(167), - [sym_preproc_function_def] = STATE(167), - [sym_preproc_call] = STATE(167), - [sym_preproc_if] = STATE(167), - [sym_preproc_ifdef] = STATE(167), - [sym_function_definition] = STATE(167), - [sym_declaration] = STATE(167), - [sym_type_definition] = STATE(167), - [sym__declaration_specifiers] = STATE(16), - [sym_linkage_specification] = STATE(167), - [sym_storage_class_specifier] = STATE(19), - [sym_type_qualifier] = STATE(19), - [sym__type_specifier] = STATE(17), - [sym_sized_type_specifier] = STATE(17), - [sym_enum_specifier] = STATE(17), - [sym_struct_specifier] = STATE(17), - [sym_union_specifier] = STATE(17), - [sym__empty_declaration] = STATE(167), - [sym_macro_type_specifier] = STATE(17), - [aux_sym_translation_unit_repeat1] = STATE(167), - [aux_sym__declaration_specifiers_repeat1] = STATE(19), - [aux_sym_sized_type_specifier_repeat1] = STATE(20), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(7), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(9), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(11), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(13), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(13), - [sym_preproc_directive] = ACTIONS(15), - [anon_sym_typedef] = ACTIONS(17), - [anon_sym_extern] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(409), - [anon_sym_static] = ACTIONS(21), - [anon_sym_auto] = ACTIONS(21), - [anon_sym_register] = ACTIONS(21), - [anon_sym_inline] = ACTIONS(21), - [anon_sym_const] = ACTIONS(23), - [anon_sym_restrict] = ACTIONS(23), - [anon_sym_volatile] = ACTIONS(23), - [anon_sym__Atomic] = ACTIONS(23), - [anon_sym_unsigned] = ACTIONS(25), - [anon_sym_long] = ACTIONS(25), - [anon_sym_short] = ACTIONS(25), - [sym_primitive_type] = ACTIONS(27), - [anon_sym_enum] = ACTIONS(29), - [anon_sym_struct] = ACTIONS(31), - [anon_sym_union] = ACTIONS(33), - [sym_identifier] = ACTIONS(35), - [sym_comment] = ACTIONS(37), + [sym__expression] = STATE(206), + [sym_conditional_expression] = STATE(206), + [sym_assignment_expression] = STATE(206), + [sym_pointer_expression] = STATE(206), + [sym_logical_expression] = STATE(206), + [sym_bitwise_expression] = STATE(206), + [sym_equality_expression] = STATE(206), + [sym_relational_expression] = STATE(206), + [sym_shift_expression] = STATE(206), + [sym_math_expression] = STATE(206), + [sym_cast_expression] = STATE(206), + [sym_sizeof_expression] = STATE(206), + [sym_subscript_expression] = STATE(206), + [sym_call_expression] = STATE(206), + [sym_field_expression] = STATE(206), + [sym_compound_literal_expression] = STATE(206), + [sym_parenthesized_expression] = STATE(206), + [sym_char_literal] = STATE(206), + [sym_concatenated_string] = STATE(206), + [sym_string_literal] = STATE(28), + [anon_sym_LPAREN2] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_AMP] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(41), + [anon_sym_PLUS] = ACTIONS(43), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_DASH_DASH] = ACTIONS(45), + [anon_sym_PLUS_PLUS] = ACTIONS(45), + [anon_sym_sizeof] = ACTIONS(47), + [sym_number_literal] = ACTIONS(457), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(459), + [sym_false] = ACTIONS(459), + [sym_null] = ACTIONS(459), + [sym_identifier] = ACTIONS(459), + [sym_comment] = ACTIONS(59), }, [84] = { - [ts_builtin_sym_end] = ACTIONS(411), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(413), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(413), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(413), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(413), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(413), - [sym_preproc_directive] = ACTIONS(413), - [anon_sym_typedef] = ACTIONS(413), - [anon_sym_extern] = ACTIONS(413), - [anon_sym_RBRACE] = ACTIONS(411), - [anon_sym_static] = ACTIONS(413), - [anon_sym_auto] = ACTIONS(413), - [anon_sym_register] = ACTIONS(413), - [anon_sym_inline] = ACTIONS(413), - [anon_sym_const] = ACTIONS(413), - [anon_sym_restrict] = ACTIONS(413), - [anon_sym_volatile] = ACTIONS(413), - [anon_sym__Atomic] = ACTIONS(413), - [anon_sym_unsigned] = ACTIONS(413), - [anon_sym_long] = ACTIONS(413), - [anon_sym_short] = ACTIONS(413), - [sym_primitive_type] = ACTIONS(413), - [anon_sym_enum] = ACTIONS(413), - [anon_sym_struct] = ACTIONS(413), - [anon_sym_union] = ACTIONS(413), - [sym_identifier] = ACTIONS(413), - [sym_comment] = ACTIONS(37), + [sym__expression] = STATE(213), + [sym_conditional_expression] = STATE(213), + [sym_assignment_expression] = STATE(213), + [sym_pointer_expression] = STATE(213), + [sym_logical_expression] = STATE(213), + [sym_bitwise_expression] = STATE(213), + [sym_equality_expression] = STATE(213), + [sym_relational_expression] = STATE(213), + [sym_shift_expression] = STATE(213), + [sym_math_expression] = STATE(213), + [sym_cast_expression] = STATE(213), + [sym_sizeof_expression] = STATE(213), + [sym_subscript_expression] = STATE(213), + [sym_call_expression] = STATE(213), + [sym_field_expression] = STATE(213), + [sym_compound_literal_expression] = STATE(213), + [sym_parenthesized_expression] = STATE(213), + [sym_char_literal] = STATE(213), + [sym_concatenated_string] = STATE(213), + [sym_string_literal] = STATE(214), + [anon_sym_LPAREN2] = ACTIONS(461), + [anon_sym_STAR] = ACTIONS(463), + [anon_sym_AMP] = ACTIONS(463), + [anon_sym_BANG] = ACTIONS(465), + [anon_sym_TILDE] = ACTIONS(467), + [anon_sym_PLUS] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(469), + [anon_sym_DASH_DASH] = ACTIONS(471), + [anon_sym_PLUS_PLUS] = ACTIONS(471), + [anon_sym_sizeof] = ACTIONS(473), + [sym_number_literal] = ACTIONS(475), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(477), + [sym_false] = ACTIONS(477), + [sym_null] = ACTIONS(477), + [sym_identifier] = ACTIONS(477), + [sym_comment] = ACTIONS(59), }, [85] = { - [sym__declarator] = STATE(44), - [sym_pointer_declarator] = STATE(44), - [sym_function_declarator] = STATE(44), - [sym_array_declarator] = STATE(44), - [sym_init_declarator] = STATE(45), - [anon_sym_LPAREN2] = ACTIONS(88), - [anon_sym_STAR] = ACTIONS(90), - [sym_identifier] = ACTIONS(92), - [sym_comment] = ACTIONS(37), + [sym__expression] = STATE(215), + [sym_conditional_expression] = STATE(215), + [sym_assignment_expression] = STATE(215), + [sym_pointer_expression] = STATE(215), + [sym_logical_expression] = STATE(215), + [sym_bitwise_expression] = STATE(215), + [sym_equality_expression] = STATE(215), + [sym_relational_expression] = STATE(215), + [sym_shift_expression] = STATE(215), + [sym_math_expression] = STATE(215), + [sym_cast_expression] = STATE(215), + [sym_sizeof_expression] = STATE(215), + [sym_subscript_expression] = STATE(215), + [sym_call_expression] = STATE(215), + [sym_field_expression] = STATE(215), + [sym_compound_literal_expression] = STATE(215), + [sym_parenthesized_expression] = STATE(215), + [sym_char_literal] = STATE(215), + [sym_concatenated_string] = STATE(215), + [sym_string_literal] = STATE(28), + [anon_sym_LPAREN2] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_AMP] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(41), + [anon_sym_PLUS] = ACTIONS(43), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_DASH_DASH] = ACTIONS(45), + [anon_sym_PLUS_PLUS] = ACTIONS(45), + [anon_sym_sizeof] = ACTIONS(47), + [sym_number_literal] = ACTIONS(479), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(481), + [sym_false] = ACTIONS(481), + [sym_null] = ACTIONS(481), + [sym_identifier] = ACTIONS(481), + [sym_comment] = ACTIONS(59), }, [86] = { - [sym_storage_class_specifier] = STATE(168), - [sym_type_qualifier] = STATE(168), - [aux_sym__declaration_specifiers_repeat1] = STATE(168), - [anon_sym_extern] = ACTIONS(21), - [anon_sym_LPAREN2] = ACTIONS(94), - [anon_sym_STAR] = ACTIONS(94), - [anon_sym_static] = ACTIONS(21), - [anon_sym_auto] = ACTIONS(21), - [anon_sym_register] = ACTIONS(21), - [anon_sym_inline] = ACTIONS(21), - [anon_sym_const] = ACTIONS(23), - [anon_sym_restrict] = ACTIONS(23), - [anon_sym_volatile] = ACTIONS(23), - [anon_sym__Atomic] = ACTIONS(23), - [sym_identifier] = ACTIONS(96), - [sym_comment] = ACTIONS(37), + [sym__expression] = STATE(222), + [sym_conditional_expression] = STATE(222), + [sym_assignment_expression] = STATE(222), + [sym_pointer_expression] = STATE(222), + [sym_logical_expression] = STATE(222), + [sym_bitwise_expression] = STATE(222), + [sym_equality_expression] = STATE(222), + [sym_relational_expression] = STATE(222), + [sym_shift_expression] = STATE(222), + [sym_math_expression] = STATE(222), + [sym_cast_expression] = STATE(222), + [sym_sizeof_expression] = STATE(222), + [sym_subscript_expression] = STATE(222), + [sym_call_expression] = STATE(222), + [sym_field_expression] = STATE(222), + [sym_compound_literal_expression] = STATE(222), + [sym_parenthesized_expression] = STATE(222), + [sym_char_literal] = STATE(222), + [sym_concatenated_string] = STATE(222), + [sym_string_literal] = STATE(223), + [anon_sym_LPAREN2] = ACTIONS(483), + [anon_sym_STAR] = ACTIONS(485), + [anon_sym_AMP] = ACTIONS(485), + [anon_sym_BANG] = ACTIONS(487), + [anon_sym_TILDE] = ACTIONS(489), + [anon_sym_PLUS] = ACTIONS(491), + [anon_sym_DASH] = ACTIONS(491), + [anon_sym_DASH_DASH] = ACTIONS(493), + [anon_sym_PLUS_PLUS] = ACTIONS(493), + [anon_sym_sizeof] = ACTIONS(495), + [sym_number_literal] = ACTIONS(497), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(499), + [sym_false] = ACTIONS(499), + [sym_null] = ACTIONS(499), + [sym_identifier] = ACTIONS(499), + [sym_comment] = ACTIONS(59), }, [87] = { - [sym_storage_class_specifier] = STATE(49), - [sym_type_qualifier] = STATE(49), - [sym__type_specifier] = STATE(169), - [sym_sized_type_specifier] = STATE(169), - [sym_enum_specifier] = STATE(169), - [sym_struct_specifier] = STATE(169), - [sym_union_specifier] = STATE(169), - [sym_macro_type_specifier] = STATE(169), - [aux_sym__declaration_specifiers_repeat1] = STATE(49), - [aux_sym_sized_type_specifier_repeat1] = STATE(88), - [anon_sym_extern] = ACTIONS(21), - [anon_sym_static] = ACTIONS(21), - [anon_sym_auto] = ACTIONS(21), - [anon_sym_register] = ACTIONS(21), - [anon_sym_inline] = ACTIONS(21), - [anon_sym_const] = ACTIONS(23), - [anon_sym_restrict] = ACTIONS(23), - [anon_sym_volatile] = ACTIONS(23), - [anon_sym__Atomic] = ACTIONS(23), - [anon_sym_unsigned] = ACTIONS(167), - [anon_sym_long] = ACTIONS(167), - [anon_sym_short] = ACTIONS(167), - [sym_primitive_type] = ACTIONS(415), - [anon_sym_enum] = ACTIONS(29), - [anon_sym_struct] = ACTIONS(31), - [anon_sym_union] = ACTIONS(33), - [sym_identifier] = ACTIONS(35), - [sym_comment] = ACTIONS(37), + [sym__expression] = STATE(224), + [sym_conditional_expression] = STATE(224), + [sym_assignment_expression] = STATE(224), + [sym_pointer_expression] = STATE(224), + [sym_logical_expression] = STATE(224), + [sym_bitwise_expression] = STATE(224), + [sym_equality_expression] = STATE(224), + [sym_relational_expression] = STATE(224), + [sym_shift_expression] = STATE(224), + [sym_math_expression] = STATE(224), + [sym_cast_expression] = STATE(224), + [sym_sizeof_expression] = STATE(224), + [sym_subscript_expression] = STATE(224), + [sym_call_expression] = STATE(224), + [sym_field_expression] = STATE(224), + [sym_compound_literal_expression] = STATE(224), + [sym_parenthesized_expression] = STATE(224), + [sym_char_literal] = STATE(224), + [sym_concatenated_string] = STATE(224), + [sym_string_literal] = STATE(28), + [anon_sym_LPAREN2] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_AMP] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(41), + [anon_sym_PLUS] = ACTIONS(43), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_DASH_DASH] = ACTIONS(45), + [anon_sym_PLUS_PLUS] = ACTIONS(45), + [anon_sym_sizeof] = ACTIONS(47), + [sym_number_literal] = ACTIONS(501), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(503), + [sym_false] = ACTIONS(503), + [sym_null] = ACTIONS(503), + [sym_identifier] = ACTIONS(503), + [sym_comment] = ACTIONS(59), }, [88] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(170), - [anon_sym_extern] = ACTIONS(104), - [anon_sym_LPAREN2] = ACTIONS(102), - [anon_sym_STAR] = ACTIONS(102), - [anon_sym_static] = ACTIONS(104), - [anon_sym_auto] = ACTIONS(104), - [anon_sym_register] = ACTIONS(104), - [anon_sym_inline] = ACTIONS(104), - [anon_sym_const] = ACTIONS(104), - [anon_sym_restrict] = ACTIONS(104), - [anon_sym_volatile] = ACTIONS(104), - [anon_sym__Atomic] = ACTIONS(104), - [anon_sym_unsigned] = ACTIONS(417), - [anon_sym_long] = ACTIONS(417), - [anon_sym_short] = ACTIONS(417), - [sym_primitive_type] = ACTIONS(108), - [sym_identifier] = ACTIONS(110), - [sym_comment] = ACTIONS(37), + [sym__expression] = STATE(225), + [sym_conditional_expression] = STATE(225), + [sym_assignment_expression] = STATE(225), + [sym_pointer_expression] = STATE(225), + [sym_logical_expression] = STATE(225), + [sym_bitwise_expression] = STATE(225), + [sym_equality_expression] = STATE(225), + [sym_relational_expression] = STATE(225), + [sym_shift_expression] = STATE(225), + [sym_math_expression] = STATE(225), + [sym_cast_expression] = STATE(225), + [sym_sizeof_expression] = STATE(225), + [sym_subscript_expression] = STATE(225), + [sym_call_expression] = STATE(225), + [sym_field_expression] = STATE(225), + [sym_compound_literal_expression] = STATE(225), + [sym_parenthesized_expression] = STATE(225), + [sym_char_literal] = STATE(225), + [sym_concatenated_string] = STATE(225), + [sym_string_literal] = STATE(28), + [anon_sym_LPAREN2] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_AMP] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(41), + [anon_sym_PLUS] = ACTIONS(43), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_DASH_DASH] = ACTIONS(45), + [anon_sym_PLUS_PLUS] = ACTIONS(45), + [anon_sym_sizeof] = ACTIONS(47), + [sym_number_literal] = ACTIONS(505), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(507), + [sym_false] = ACTIONS(507), + [sym_null] = ACTIONS(507), + [sym_identifier] = ACTIONS(507), + [sym_comment] = ACTIONS(59), }, [89] = { - [anon_sym_RBRACE] = ACTIONS(419), - [sym_comment] = ACTIONS(37), + [sym__expression] = STATE(226), + [sym_conditional_expression] = STATE(226), + [sym_assignment_expression] = STATE(226), + [sym_pointer_expression] = STATE(226), + [sym_logical_expression] = STATE(226), + [sym_bitwise_expression] = STATE(226), + [sym_equality_expression] = STATE(226), + [sym_relational_expression] = STATE(226), + [sym_shift_expression] = STATE(226), + [sym_math_expression] = STATE(226), + [sym_cast_expression] = STATE(226), + [sym_sizeof_expression] = STATE(226), + [sym_subscript_expression] = STATE(226), + [sym_call_expression] = STATE(226), + [sym_field_expression] = STATE(226), + [sym_compound_literal_expression] = STATE(226), + [sym_parenthesized_expression] = STATE(226), + [sym_char_literal] = STATE(226), + [sym_concatenated_string] = STATE(226), + [sym_string_literal] = STATE(28), + [anon_sym_LPAREN2] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_AMP] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(41), + [anon_sym_PLUS] = ACTIONS(43), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_DASH_DASH] = ACTIONS(45), + [anon_sym_PLUS_PLUS] = ACTIONS(45), + [anon_sym_sizeof] = ACTIONS(47), + [sym_number_literal] = ACTIONS(509), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(511), + [sym_false] = ACTIONS(511), + [sym_null] = ACTIONS(511), + [sym_identifier] = ACTIONS(511), + [sym_comment] = ACTIONS(59), }, [90] = { - [anon_sym_COMMA] = ACTIONS(421), - [anon_sym_RPAREN] = ACTIONS(421), - [anon_sym_SEMI] = ACTIONS(421), - [anon_sym_extern] = ACTIONS(423), - [anon_sym_LPAREN2] = ACTIONS(421), - [anon_sym_STAR] = ACTIONS(421), - [anon_sym_LBRACK] = ACTIONS(421), - [anon_sym_RBRACK] = ACTIONS(421), - [anon_sym_static] = ACTIONS(423), - [anon_sym_auto] = ACTIONS(423), - [anon_sym_register] = ACTIONS(423), - [anon_sym_inline] = ACTIONS(423), - [anon_sym_const] = ACTIONS(423), - [anon_sym_restrict] = ACTIONS(423), - [anon_sym_volatile] = ACTIONS(423), - [anon_sym__Atomic] = ACTIONS(423), - [anon_sym_COLON] = ACTIONS(421), - [anon_sym_AMP] = ACTIONS(421), - [anon_sym_BANG] = ACTIONS(421), - [anon_sym_TILDE] = ACTIONS(421), - [anon_sym_PLUS] = ACTIONS(423), - [anon_sym_DASH] = ACTIONS(423), - [anon_sym_DASH_DASH] = ACTIONS(421), - [anon_sym_PLUS_PLUS] = ACTIONS(421), - [anon_sym_sizeof] = ACTIONS(423), - [sym_number_literal] = ACTIONS(421), - [anon_sym_SQUOTE] = ACTIONS(421), - [anon_sym_DQUOTE] = ACTIONS(421), - [sym_true] = ACTIONS(423), - [sym_false] = ACTIONS(423), - [sym_null] = ACTIONS(423), - [sym_identifier] = ACTIONS(423), - [sym_comment] = ACTIONS(37), + [sym__expression] = STATE(227), + [sym_conditional_expression] = STATE(227), + [sym_assignment_expression] = STATE(227), + [sym_pointer_expression] = STATE(227), + [sym_logical_expression] = STATE(227), + [sym_bitwise_expression] = STATE(227), + [sym_equality_expression] = STATE(227), + [sym_relational_expression] = STATE(227), + [sym_shift_expression] = STATE(227), + [sym_math_expression] = STATE(227), + [sym_cast_expression] = STATE(227), + [sym_sizeof_expression] = STATE(227), + [sym_subscript_expression] = STATE(227), + [sym_call_expression] = STATE(227), + [sym_field_expression] = STATE(227), + [sym_compound_literal_expression] = STATE(227), + [sym_parenthesized_expression] = STATE(227), + [sym_char_literal] = STATE(227), + [sym_concatenated_string] = STATE(227), + [sym_string_literal] = STATE(28), + [anon_sym_LPAREN2] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_AMP] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(41), + [anon_sym_PLUS] = ACTIONS(43), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_DASH_DASH] = ACTIONS(45), + [anon_sym_PLUS_PLUS] = ACTIONS(45), + [anon_sym_sizeof] = ACTIONS(47), + [sym_number_literal] = ACTIONS(513), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [sym_null] = ACTIONS(515), + [sym_identifier] = ACTIONS(515), + [sym_comment] = ACTIONS(59), }, [91] = { - [anon_sym_COMMA] = ACTIONS(425), - [anon_sym_RBRACE] = ACTIONS(425), - [anon_sym_EQ] = ACTIONS(427), - [sym_comment] = ACTIONS(37), + [sym__expression] = STATE(228), + [sym_conditional_expression] = STATE(228), + [sym_assignment_expression] = STATE(228), + [sym_pointer_expression] = STATE(228), + [sym_logical_expression] = STATE(228), + [sym_bitwise_expression] = STATE(228), + [sym_equality_expression] = STATE(228), + [sym_relational_expression] = STATE(228), + [sym_shift_expression] = STATE(228), + [sym_math_expression] = STATE(228), + [sym_cast_expression] = STATE(228), + [sym_sizeof_expression] = STATE(228), + [sym_subscript_expression] = STATE(228), + [sym_call_expression] = STATE(228), + [sym_field_expression] = STATE(228), + [sym_compound_literal_expression] = STATE(228), + [sym_parenthesized_expression] = STATE(228), + [sym_char_literal] = STATE(228), + [sym_concatenated_string] = STATE(228), + [sym_string_literal] = STATE(28), + [anon_sym_LPAREN2] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_AMP] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(41), + [anon_sym_PLUS] = ACTIONS(43), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_DASH_DASH] = ACTIONS(45), + [anon_sym_PLUS_PLUS] = ACTIONS(45), + [anon_sym_sizeof] = ACTIONS(47), + [sym_number_literal] = ACTIONS(517), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(519), + [sym_false] = ACTIONS(519), + [sym_null] = ACTIONS(519), + [sym_identifier] = ACTIONS(519), + [sym_comment] = ACTIONS(59), }, [92] = { - [aux_sym_enumerator_list_repeat1] = STATE(174), - [anon_sym_COMMA] = ACTIONS(429), - [anon_sym_RBRACE] = ACTIONS(419), - [sym_comment] = ACTIONS(37), + [sym__expression] = STATE(229), + [sym_conditional_expression] = STATE(229), + [sym_assignment_expression] = STATE(229), + [sym_pointer_expression] = STATE(229), + [sym_logical_expression] = STATE(229), + [sym_bitwise_expression] = STATE(229), + [sym_equality_expression] = STATE(229), + [sym_relational_expression] = STATE(229), + [sym_shift_expression] = STATE(229), + [sym_math_expression] = STATE(229), + [sym_cast_expression] = STATE(229), + [sym_sizeof_expression] = STATE(229), + [sym_subscript_expression] = STATE(229), + [sym_call_expression] = STATE(229), + [sym_field_expression] = STATE(229), + [sym_compound_literal_expression] = STATE(229), + [sym_parenthesized_expression] = STATE(229), + [sym_char_literal] = STATE(229), + [sym_concatenated_string] = STATE(229), + [sym_string_literal] = STATE(28), + [anon_sym_LPAREN2] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_AMP] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(41), + [anon_sym_PLUS] = ACTIONS(43), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_DASH_DASH] = ACTIONS(45), + [anon_sym_PLUS_PLUS] = ACTIONS(45), + [anon_sym_sizeof] = ACTIONS(47), + [sym_number_literal] = ACTIONS(521), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(523), + [sym_false] = ACTIONS(523), + [sym_null] = ACTIONS(523), + [sym_identifier] = ACTIONS(523), + [sym_comment] = ACTIONS(59), }, [93] = { - [anon_sym_COMMA] = ACTIONS(431), - [anon_sym_RPAREN] = ACTIONS(431), - [anon_sym_SEMI] = ACTIONS(431), - [anon_sym_extern] = ACTIONS(433), - [anon_sym_LPAREN2] = ACTIONS(431), - [anon_sym_STAR] = ACTIONS(431), - [anon_sym_LBRACK] = ACTIONS(431), - [anon_sym_RBRACK] = ACTIONS(431), - [anon_sym_static] = ACTIONS(433), - [anon_sym_auto] = ACTIONS(433), - [anon_sym_register] = ACTIONS(433), - [anon_sym_inline] = ACTIONS(433), - [anon_sym_const] = ACTIONS(433), - [anon_sym_restrict] = ACTIONS(433), - [anon_sym_volatile] = ACTIONS(433), - [anon_sym__Atomic] = ACTIONS(433), - [anon_sym_COLON] = ACTIONS(431), - [anon_sym_AMP] = ACTIONS(431), - [anon_sym_BANG] = ACTIONS(431), - [anon_sym_TILDE] = ACTIONS(431), - [anon_sym_PLUS] = ACTIONS(433), - [anon_sym_DASH] = ACTIONS(433), - [anon_sym_DASH_DASH] = ACTIONS(431), - [anon_sym_PLUS_PLUS] = ACTIONS(431), - [anon_sym_sizeof] = ACTIONS(433), - [sym_number_literal] = ACTIONS(431), - [anon_sym_SQUOTE] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym_true] = ACTIONS(433), - [sym_false] = ACTIONS(433), - [sym_null] = ACTIONS(433), - [sym_identifier] = ACTIONS(433), - [sym_comment] = ACTIONS(37), + [sym__expression] = STATE(230), + [sym_conditional_expression] = STATE(230), + [sym_assignment_expression] = STATE(230), + [sym_pointer_expression] = STATE(230), + [sym_logical_expression] = STATE(230), + [sym_bitwise_expression] = STATE(230), + [sym_equality_expression] = STATE(230), + [sym_relational_expression] = STATE(230), + [sym_shift_expression] = STATE(230), + [sym_math_expression] = STATE(230), + [sym_cast_expression] = STATE(230), + [sym_sizeof_expression] = STATE(230), + [sym_subscript_expression] = STATE(230), + [sym_call_expression] = STATE(230), + [sym_field_expression] = STATE(230), + [sym_compound_literal_expression] = STATE(230), + [sym_parenthesized_expression] = STATE(230), + [sym_char_literal] = STATE(230), + [sym_concatenated_string] = STATE(230), + [sym_string_literal] = STATE(28), + [anon_sym_LPAREN2] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_AMP] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(41), + [anon_sym_PLUS] = ACTIONS(43), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_DASH_DASH] = ACTIONS(45), + [anon_sym_PLUS_PLUS] = ACTIONS(45), + [anon_sym_sizeof] = ACTIONS(47), + [sym_number_literal] = ACTIONS(525), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(527), + [sym_false] = ACTIONS(527), + [sym_null] = ACTIONS(527), + [sym_identifier] = ACTIONS(527), + [sym_comment] = ACTIONS(59), }, [94] = { - [sym_preproc_arg] = ACTIONS(435), - [sym_comment] = ACTIONS(47), + [sym__expression] = STATE(231), + [sym_conditional_expression] = STATE(231), + [sym_assignment_expression] = STATE(231), + [sym_pointer_expression] = STATE(231), + [sym_logical_expression] = STATE(231), + [sym_bitwise_expression] = STATE(231), + [sym_equality_expression] = STATE(231), + [sym_relational_expression] = STATE(231), + [sym_shift_expression] = STATE(231), + [sym_math_expression] = STATE(231), + [sym_cast_expression] = STATE(231), + [sym_sizeof_expression] = STATE(231), + [sym_subscript_expression] = STATE(231), + [sym_call_expression] = STATE(231), + [sym_field_expression] = STATE(231), + [sym_compound_literal_expression] = STATE(231), + [sym_parenthesized_expression] = STATE(231), + [sym_char_literal] = STATE(231), + [sym_concatenated_string] = STATE(231), + [sym_string_literal] = STATE(28), + [anon_sym_LPAREN2] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_AMP] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(41), + [anon_sym_PLUS] = ACTIONS(43), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_DASH_DASH] = ACTIONS(45), + [anon_sym_PLUS_PLUS] = ACTIONS(45), + [anon_sym_sizeof] = ACTIONS(47), + [sym_number_literal] = ACTIONS(529), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(531), + [sym_false] = ACTIONS(531), + [sym_null] = ACTIONS(531), + [sym_identifier] = ACTIONS(531), + [sym_comment] = ACTIONS(59), }, [95] = { - [sym_identifier] = ACTIONS(437), - [sym_comment] = ACTIONS(37), + [sym__expression] = STATE(232), + [sym_conditional_expression] = STATE(232), + [sym_assignment_expression] = STATE(232), + [sym_pointer_expression] = STATE(232), + [sym_logical_expression] = STATE(232), + [sym_bitwise_expression] = STATE(232), + [sym_equality_expression] = STATE(232), + [sym_relational_expression] = STATE(232), + [sym_shift_expression] = STATE(232), + [sym_math_expression] = STATE(232), + [sym_cast_expression] = STATE(232), + [sym_sizeof_expression] = STATE(232), + [sym_subscript_expression] = STATE(232), + [sym_call_expression] = STATE(232), + [sym_field_expression] = STATE(232), + [sym_compound_literal_expression] = STATE(232), + [sym_parenthesized_expression] = STATE(232), + [sym_char_literal] = STATE(232), + [sym_concatenated_string] = STATE(232), + [sym_string_literal] = STATE(28), + [anon_sym_LPAREN2] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_AMP] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(41), + [anon_sym_PLUS] = ACTIONS(43), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_DASH_DASH] = ACTIONS(45), + [anon_sym_PLUS_PLUS] = ACTIONS(45), + [anon_sym_sizeof] = ACTIONS(47), + [sym_number_literal] = ACTIONS(533), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(535), + [sym_false] = ACTIONS(535), + [sym_null] = ACTIONS(535), + [sym_identifier] = ACTIONS(535), + [sym_comment] = ACTIONS(59), }, [96] = { - [anon_sym_COMMA] = ACTIONS(439), - [anon_sym_RPAREN] = ACTIONS(439), - [anon_sym_SEMI] = ACTIONS(439), - [anon_sym_extern] = ACTIONS(441), - [anon_sym_LPAREN2] = ACTIONS(439), - [anon_sym_STAR] = ACTIONS(439), - [anon_sym_LBRACK] = ACTIONS(439), - [anon_sym_RBRACK] = ACTIONS(439), - [anon_sym_static] = ACTIONS(441), - [anon_sym_auto] = ACTIONS(441), - [anon_sym_register] = ACTIONS(441), - [anon_sym_inline] = ACTIONS(441), - [anon_sym_const] = ACTIONS(441), - [anon_sym_restrict] = ACTIONS(441), - [anon_sym_volatile] = ACTIONS(441), - [anon_sym__Atomic] = ACTIONS(441), - [anon_sym_COLON] = ACTIONS(439), - [anon_sym_AMP] = ACTIONS(439), - [anon_sym_BANG] = ACTIONS(439), - [anon_sym_TILDE] = ACTIONS(439), - [anon_sym_PLUS] = ACTIONS(441), - [anon_sym_DASH] = ACTIONS(441), - [anon_sym_DASH_DASH] = ACTIONS(439), - [anon_sym_PLUS_PLUS] = ACTIONS(439), - [anon_sym_sizeof] = ACTIONS(441), - [sym_number_literal] = ACTIONS(439), - [anon_sym_SQUOTE] = ACTIONS(439), - [anon_sym_DQUOTE] = ACTIONS(439), - [sym_true] = ACTIONS(441), - [sym_false] = ACTIONS(441), - [sym_null] = ACTIONS(441), - [sym_identifier] = ACTIONS(441), - [sym_comment] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(407), + [anon_sym_COMMA] = ACTIONS(407), + [anon_sym_RPAREN] = ACTIONS(407), + [anon_sym_RBRACE] = ACTIONS(407), + [anon_sym_LPAREN2] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(409), + [anon_sym_LBRACK] = ACTIONS(407), + [anon_sym_RBRACK] = ACTIONS(407), + [anon_sym_EQ] = ACTIONS(409), + [anon_sym_COLON] = ACTIONS(407), + [anon_sym_QMARK] = ACTIONS(407), + [anon_sym_STAR_EQ] = ACTIONS(407), + [anon_sym_SLASH_EQ] = ACTIONS(407), + [anon_sym_PERCENT_EQ] = ACTIONS(407), + [anon_sym_PLUS_EQ] = ACTIONS(407), + [anon_sym_DASH_EQ] = ACTIONS(407), + [anon_sym_LT_LT_EQ] = ACTIONS(407), + [anon_sym_GT_GT_EQ] = ACTIONS(407), + [anon_sym_AMP_EQ] = ACTIONS(407), + [anon_sym_CARET_EQ] = ACTIONS(407), + [anon_sym_PIPE_EQ] = ACTIONS(407), + [anon_sym_AMP] = ACTIONS(409), + [anon_sym_PIPE_PIPE] = ACTIONS(407), + [anon_sym_AMP_AMP] = ACTIONS(407), + [anon_sym_PIPE] = ACTIONS(409), + [anon_sym_CARET] = ACTIONS(409), + [anon_sym_EQ_EQ] = ACTIONS(407), + [anon_sym_BANG_EQ] = ACTIONS(407), + [anon_sym_LT] = ACTIONS(409), + [anon_sym_GT] = ACTIONS(409), + [anon_sym_LT_EQ] = ACTIONS(407), + [anon_sym_GT_EQ] = ACTIONS(407), + [anon_sym_LT_LT] = ACTIONS(409), + [anon_sym_GT_GT] = ACTIONS(409), + [anon_sym_PLUS] = ACTIONS(409), + [anon_sym_DASH] = ACTIONS(409), + [anon_sym_SLASH] = ACTIONS(409), + [anon_sym_PERCENT] = ACTIONS(409), + [anon_sym_DASH_DASH] = ACTIONS(407), + [anon_sym_PLUS_PLUS] = ACTIONS(407), + [anon_sym_DOT] = ACTIONS(407), + [anon_sym_DASH_GT] = ACTIONS(407), + [sym_comment] = ACTIONS(59), }, [97] = { - [sym__field_declarator] = STATE(182), - [sym_pointer_field_declarator] = STATE(182), - [sym_function_field_declarator] = STATE(182), - [sym_array_field_declarator] = STATE(182), - [anon_sym_SEMI] = ACTIONS(443), - [anon_sym_LPAREN2] = ACTIONS(445), - [anon_sym_STAR] = ACTIONS(447), - [anon_sym_COLON] = ACTIONS(449), - [sym_identifier] = ACTIONS(451), - [sym_comment] = ACTIONS(37), + [sym_identifier] = ACTIONS(537), + [sym_comment] = ACTIONS(59), }, [98] = { - [sym_storage_class_specifier] = STATE(183), - [sym_type_qualifier] = STATE(183), - [aux_sym__declaration_specifiers_repeat1] = STATE(183), - [anon_sym_SEMI] = ACTIONS(94), - [anon_sym_extern] = ACTIONS(21), - [anon_sym_LPAREN2] = ACTIONS(94), - [anon_sym_STAR] = ACTIONS(94), - [anon_sym_static] = ACTIONS(21), - [anon_sym_auto] = ACTIONS(21), - [anon_sym_register] = ACTIONS(21), - [anon_sym_inline] = ACTIONS(21), - [anon_sym_const] = ACTIONS(23), - [anon_sym_restrict] = ACTIONS(23), - [anon_sym_volatile] = ACTIONS(23), - [anon_sym__Atomic] = ACTIONS(23), - [anon_sym_COLON] = ACTIONS(94), - [sym_identifier] = ACTIONS(96), - [sym_comment] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(539), + [anon_sym_COMMA] = ACTIONS(539), + [anon_sym_RPAREN] = ACTIONS(539), + [anon_sym_RBRACE] = ACTIONS(539), + [anon_sym_LPAREN2] = ACTIONS(539), + [anon_sym_STAR] = ACTIONS(541), + [anon_sym_LBRACK] = ACTIONS(539), + [anon_sym_RBRACK] = ACTIONS(539), + [anon_sym_EQ] = ACTIONS(541), + [anon_sym_COLON] = ACTIONS(539), + [anon_sym_QMARK] = ACTIONS(539), + [anon_sym_STAR_EQ] = ACTIONS(539), + [anon_sym_SLASH_EQ] = ACTIONS(539), + [anon_sym_PERCENT_EQ] = ACTIONS(539), + [anon_sym_PLUS_EQ] = ACTIONS(539), + [anon_sym_DASH_EQ] = ACTIONS(539), + [anon_sym_LT_LT_EQ] = ACTIONS(539), + [anon_sym_GT_GT_EQ] = ACTIONS(539), + [anon_sym_AMP_EQ] = ACTIONS(539), + [anon_sym_CARET_EQ] = ACTIONS(539), + [anon_sym_PIPE_EQ] = ACTIONS(539), + [anon_sym_AMP] = ACTIONS(541), + [anon_sym_PIPE_PIPE] = ACTIONS(539), + [anon_sym_AMP_AMP] = ACTIONS(539), + [anon_sym_PIPE] = ACTIONS(541), + [anon_sym_CARET] = ACTIONS(541), + [anon_sym_EQ_EQ] = ACTIONS(539), + [anon_sym_BANG_EQ] = ACTIONS(539), + [anon_sym_LT] = ACTIONS(541), + [anon_sym_GT] = ACTIONS(541), + [anon_sym_LT_EQ] = ACTIONS(539), + [anon_sym_GT_EQ] = ACTIONS(539), + [anon_sym_LT_LT] = ACTIONS(541), + [anon_sym_GT_GT] = ACTIONS(541), + [anon_sym_PLUS] = ACTIONS(541), + [anon_sym_DASH] = ACTIONS(541), + [anon_sym_SLASH] = ACTIONS(541), + [anon_sym_PERCENT] = ACTIONS(541), + [anon_sym_DASH_DASH] = ACTIONS(539), + [anon_sym_PLUS_PLUS] = ACTIONS(539), + [anon_sym_DOT] = ACTIONS(539), + [anon_sym_DASH_GT] = ACTIONS(539), + [sym_comment] = ACTIONS(59), }, [99] = { - [sym_preproc_if_in_field_declaration_list] = STATE(185), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(185), - [sym__declaration_specifiers] = STATE(97), - [sym_storage_class_specifier] = STATE(100), - [sym_type_qualifier] = STATE(100), - [sym__type_specifier] = STATE(98), - [sym_sized_type_specifier] = STATE(98), - [sym_enum_specifier] = STATE(98), - [sym_struct_specifier] = STATE(98), - [sym_union_specifier] = STATE(98), - [sym__field_declaration_list_item] = STATE(185), - [sym_field_declaration] = STATE(185), - [sym_macro_type_specifier] = STATE(98), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(185), - [aux_sym__declaration_specifiers_repeat1] = STATE(100), - [aux_sym_sized_type_specifier_repeat1] = STATE(101), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(185), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(187), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(187), - [anon_sym_extern] = ACTIONS(21), - [anon_sym_RBRACE] = ACTIONS(453), - [anon_sym_static] = ACTIONS(21), - [anon_sym_auto] = ACTIONS(21), - [anon_sym_register] = ACTIONS(21), - [anon_sym_inline] = ACTIONS(21), - [anon_sym_const] = ACTIONS(23), - [anon_sym_restrict] = ACTIONS(23), - [anon_sym_volatile] = ACTIONS(23), - [anon_sym__Atomic] = ACTIONS(23), - [anon_sym_unsigned] = ACTIONS(191), - [anon_sym_long] = ACTIONS(191), - [anon_sym_short] = ACTIONS(191), - [sym_primitive_type] = ACTIONS(193), - [anon_sym_enum] = ACTIONS(29), - [anon_sym_struct] = ACTIONS(31), - [anon_sym_union] = ACTIONS(33), - [sym_identifier] = ACTIONS(35), - [sym_comment] = ACTIONS(37), + [ts_builtin_sym_end] = ACTIONS(543), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(545), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(545), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(545), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(545), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(545), + [sym_preproc_directive] = ACTIONS(545), + [anon_sym_typedef] = ACTIONS(545), + [anon_sym_extern] = ACTIONS(545), + [anon_sym_RBRACE] = ACTIONS(543), + [anon_sym_LPAREN2] = ACTIONS(543), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_static] = ACTIONS(545), + [anon_sym_auto] = ACTIONS(545), + [anon_sym_register] = ACTIONS(545), + [anon_sym_inline] = ACTIONS(545), + [anon_sym_const] = ACTIONS(545), + [anon_sym_restrict] = ACTIONS(545), + [anon_sym_volatile] = ACTIONS(545), + [anon_sym__Atomic] = ACTIONS(545), + [anon_sym_unsigned] = ACTIONS(545), + [anon_sym_long] = ACTIONS(545), + [anon_sym_short] = ACTIONS(545), + [sym_primitive_type] = ACTIONS(545), + [anon_sym_enum] = ACTIONS(545), + [anon_sym_struct] = ACTIONS(545), + [anon_sym_union] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(543), + [anon_sym_BANG] = ACTIONS(543), + [anon_sym_TILDE] = ACTIONS(543), + [anon_sym_PLUS] = ACTIONS(545), + [anon_sym_DASH] = ACTIONS(545), + [anon_sym_DASH_DASH] = ACTIONS(543), + [anon_sym_PLUS_PLUS] = ACTIONS(543), + [anon_sym_sizeof] = ACTIONS(545), + [sym_number_literal] = ACTIONS(543), + [anon_sym_SQUOTE] = ACTIONS(543), + [anon_sym_DQUOTE] = ACTIONS(543), + [sym_true] = ACTIONS(545), + [sym_false] = ACTIONS(545), + [sym_null] = ACTIONS(545), + [sym_identifier] = ACTIONS(545), + [sym_comment] = ACTIONS(59), }, [100] = { - [sym_storage_class_specifier] = STATE(49), - [sym_type_qualifier] = STATE(49), - [sym__type_specifier] = STATE(186), - [sym_sized_type_specifier] = STATE(186), - [sym_enum_specifier] = STATE(186), - [sym_struct_specifier] = STATE(186), - [sym_union_specifier] = STATE(186), - [sym_macro_type_specifier] = STATE(186), - [aux_sym__declaration_specifiers_repeat1] = STATE(49), - [aux_sym_sized_type_specifier_repeat1] = STATE(101), - [anon_sym_extern] = ACTIONS(21), - [anon_sym_static] = ACTIONS(21), - [anon_sym_auto] = ACTIONS(21), - [anon_sym_register] = ACTIONS(21), - [anon_sym_inline] = ACTIONS(21), - [anon_sym_const] = ACTIONS(23), - [anon_sym_restrict] = ACTIONS(23), - [anon_sym_volatile] = ACTIONS(23), - [anon_sym__Atomic] = ACTIONS(23), - [anon_sym_unsigned] = ACTIONS(191), - [anon_sym_long] = ACTIONS(191), - [anon_sym_short] = ACTIONS(191), - [sym_primitive_type] = ACTIONS(455), - [anon_sym_enum] = ACTIONS(29), - [anon_sym_struct] = ACTIONS(31), - [anon_sym_union] = ACTIONS(33), - [sym_identifier] = ACTIONS(35), - [sym_comment] = ACTIONS(37), + [sym_string_literal] = STATE(234), + [aux_sym_concatenated_string_repeat1] = STATE(234), + [anon_sym_LPAREN2] = ACTIONS(547), + [anon_sym_STAR] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_EQ] = ACTIONS(549), + [anon_sym_QMARK] = ACTIONS(547), + [anon_sym_STAR_EQ] = ACTIONS(547), + [anon_sym_SLASH_EQ] = ACTIONS(547), + [anon_sym_PERCENT_EQ] = ACTIONS(547), + [anon_sym_PLUS_EQ] = ACTIONS(547), + [anon_sym_DASH_EQ] = ACTIONS(547), + [anon_sym_LT_LT_EQ] = ACTIONS(547), + [anon_sym_GT_GT_EQ] = ACTIONS(547), + [anon_sym_AMP_EQ] = ACTIONS(547), + [anon_sym_CARET_EQ] = ACTIONS(547), + [anon_sym_PIPE_EQ] = ACTIONS(547), + [anon_sym_AMP] = ACTIONS(549), + [anon_sym_PIPE_PIPE] = ACTIONS(547), + [anon_sym_AMP_AMP] = ACTIONS(547), + [anon_sym_PIPE] = ACTIONS(549), + [anon_sym_CARET] = ACTIONS(549), + [anon_sym_EQ_EQ] = ACTIONS(547), + [anon_sym_BANG_EQ] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(549), + [anon_sym_GT] = ACTIONS(549), + [anon_sym_LT_EQ] = ACTIONS(547), + [anon_sym_GT_EQ] = ACTIONS(547), + [anon_sym_LT_LT] = ACTIONS(549), + [anon_sym_GT_GT] = ACTIONS(549), + [anon_sym_PLUS] = ACTIONS(549), + [anon_sym_DASH] = ACTIONS(549), + [anon_sym_SLASH] = ACTIONS(549), + [anon_sym_PERCENT] = ACTIONS(549), + [anon_sym_DASH_DASH] = ACTIONS(547), + [anon_sym_PLUS_PLUS] = ACTIONS(547), + [anon_sym_DOT] = ACTIONS(547), + [anon_sym_DASH_GT] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_comment] = ACTIONS(59), }, [101] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(187), - [anon_sym_SEMI] = ACTIONS(102), - [anon_sym_extern] = ACTIONS(104), - [anon_sym_LPAREN2] = ACTIONS(102), - [anon_sym_STAR] = ACTIONS(102), - [anon_sym_static] = ACTIONS(104), - [anon_sym_auto] = ACTIONS(104), - [anon_sym_register] = ACTIONS(104), - [anon_sym_inline] = ACTIONS(104), - [anon_sym_const] = ACTIONS(104), - [anon_sym_restrict] = ACTIONS(104), - [anon_sym_volatile] = ACTIONS(104), - [anon_sym__Atomic] = ACTIONS(104), - [anon_sym_unsigned] = ACTIONS(457), - [anon_sym_long] = ACTIONS(457), - [anon_sym_short] = ACTIONS(457), - [sym_primitive_type] = ACTIONS(108), - [anon_sym_COLON] = ACTIONS(102), - [sym_identifier] = ACTIONS(110), - [sym_comment] = ACTIONS(37), + [sym_preproc_include] = STATE(101), + [sym_preproc_def] = STATE(101), + [sym_preproc_function_def] = STATE(101), + [sym_preproc_call] = STATE(101), + [sym_preproc_if] = STATE(101), + [sym_preproc_ifdef] = STATE(101), + [sym_function_definition] = STATE(101), + [sym_declaration] = STATE(101), + [sym_type_definition] = STATE(101), + [sym__declaration_specifiers] = STATE(24), + [sym_linkage_specification] = STATE(101), + [sym_storage_class_specifier] = STATE(30), + [sym_type_qualifier] = STATE(30), + [sym__type_specifier] = STATE(25), + [sym_sized_type_specifier] = STATE(25), + [sym_enum_specifier] = STATE(25), + [sym_struct_specifier] = STATE(25), + [sym_union_specifier] = STATE(25), + [sym__expression] = STATE(26), + [sym_conditional_expression] = STATE(26), + [sym_assignment_expression] = STATE(26), + [sym_pointer_expression] = STATE(26), + [sym_logical_expression] = STATE(26), + [sym_bitwise_expression] = STATE(26), + [sym_equality_expression] = STATE(26), + [sym_relational_expression] = STATE(26), + [sym_shift_expression] = STATE(26), + [sym_math_expression] = STATE(26), + [sym_cast_expression] = STATE(26), + [sym_sizeof_expression] = STATE(26), + [sym_subscript_expression] = STATE(26), + [sym_call_expression] = STATE(27), + [sym_field_expression] = STATE(26), + [sym_compound_literal_expression] = STATE(26), + [sym_parenthesized_expression] = STATE(26), + [sym_char_literal] = STATE(26), + [sym_concatenated_string] = STATE(26), + [sym_string_literal] = STATE(28), + [sym__empty_declaration] = STATE(101), + [sym_macro_type_specifier] = STATE(25), + [aux_sym_translation_unit_repeat1] = STATE(101), + [aux_sym__declaration_specifiers_repeat1] = STATE(30), + [aux_sym_sized_type_specifier_repeat1] = STATE(31), + [ts_builtin_sym_end] = ACTIONS(543), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(551), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(554), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(557), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(560), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(560), + [sym_preproc_directive] = ACTIONS(563), + [anon_sym_typedef] = ACTIONS(566), + [anon_sym_extern] = ACTIONS(569), + [anon_sym_LPAREN2] = ACTIONS(572), + [anon_sym_STAR] = ACTIONS(575), + [anon_sym_static] = ACTIONS(578), + [anon_sym_auto] = ACTIONS(578), + [anon_sym_register] = ACTIONS(578), + [anon_sym_inline] = ACTIONS(578), + [anon_sym_const] = ACTIONS(581), + [anon_sym_restrict] = ACTIONS(581), + [anon_sym_volatile] = ACTIONS(581), + [anon_sym__Atomic] = ACTIONS(581), + [anon_sym_unsigned] = ACTIONS(584), + [anon_sym_long] = ACTIONS(584), + [anon_sym_short] = ACTIONS(584), + [sym_primitive_type] = ACTIONS(587), + [anon_sym_enum] = ACTIONS(590), + [anon_sym_struct] = ACTIONS(593), + [anon_sym_union] = ACTIONS(596), + [anon_sym_AMP] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(599), + [anon_sym_TILDE] = ACTIONS(602), + [anon_sym_PLUS] = ACTIONS(605), + [anon_sym_DASH] = ACTIONS(605), + [anon_sym_DASH_DASH] = ACTIONS(608), + [anon_sym_PLUS_PLUS] = ACTIONS(608), + [anon_sym_sizeof] = ACTIONS(611), + [sym_number_literal] = ACTIONS(614), + [anon_sym_SQUOTE] = ACTIONS(617), + [anon_sym_DQUOTE] = ACTIONS(620), + [sym_true] = ACTIONS(623), + [sym_false] = ACTIONS(623), + [sym_null] = ACTIONS(623), + [sym_identifier] = ACTIONS(626), + [sym_comment] = ACTIONS(59), }, [102] = { - [anon_sym_COMMA] = ACTIONS(459), - [anon_sym_RPAREN] = ACTIONS(459), - [anon_sym_SEMI] = ACTIONS(459), - [anon_sym_extern] = ACTIONS(461), - [anon_sym_LPAREN2] = ACTIONS(459), - [anon_sym_STAR] = ACTIONS(459), - [anon_sym_LBRACK] = ACTIONS(459), - [anon_sym_RBRACK] = ACTIONS(459), - [anon_sym_static] = ACTIONS(461), - [anon_sym_auto] = ACTIONS(461), - [anon_sym_register] = ACTIONS(461), - [anon_sym_inline] = ACTIONS(461), - [anon_sym_const] = ACTIONS(461), - [anon_sym_restrict] = ACTIONS(461), - [anon_sym_volatile] = ACTIONS(461), - [anon_sym__Atomic] = ACTIONS(461), - [anon_sym_COLON] = ACTIONS(459), - [anon_sym_AMP] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(459), - [anon_sym_TILDE] = ACTIONS(459), - [anon_sym_PLUS] = ACTIONS(461), - [anon_sym_DASH] = ACTIONS(461), - [anon_sym_DASH_DASH] = ACTIONS(459), - [anon_sym_PLUS_PLUS] = ACTIONS(459), - [anon_sym_sizeof] = ACTIONS(461), - [sym_number_literal] = ACTIONS(459), - [anon_sym_SQUOTE] = ACTIONS(459), - [anon_sym_DQUOTE] = ACTIONS(459), - [sym_true] = ACTIONS(461), - [sym_false] = ACTIONS(461), - [sym_null] = ACTIONS(461), - [sym_identifier] = ACTIONS(461), - [sym_comment] = ACTIONS(37), + [sym_storage_class_specifier] = STATE(235), + [sym_type_qualifier] = STATE(235), + [aux_sym__declaration_specifiers_repeat1] = STATE(235), + [anon_sym_SEMI] = ACTIONS(447), + [anon_sym_extern] = ACTIONS(25), + [anon_sym_LPAREN2] = ACTIONS(447), + [anon_sym_STAR] = ACTIONS(447), + [anon_sym_static] = ACTIONS(25), + [anon_sym_auto] = ACTIONS(25), + [anon_sym_register] = ACTIONS(25), + [anon_sym_inline] = ACTIONS(25), + [anon_sym_const] = ACTIONS(27), + [anon_sym_restrict] = ACTIONS(27), + [anon_sym_volatile] = ACTIONS(27), + [anon_sym__Atomic] = ACTIONS(27), + [sym_identifier] = ACTIONS(449), + [sym_comment] = ACTIONS(59), }, [103] = { - [anon_sym_COMMA] = ACTIONS(463), - [anon_sym_RPAREN] = ACTIONS(463), - [anon_sym_SEMI] = ACTIONS(463), - [anon_sym_extern] = ACTIONS(465), - [anon_sym_LPAREN2] = ACTIONS(463), - [anon_sym_STAR] = ACTIONS(463), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_RBRACK] = ACTIONS(463), - [anon_sym_static] = ACTIONS(465), - [anon_sym_auto] = ACTIONS(465), - [anon_sym_register] = ACTIONS(465), - [anon_sym_inline] = ACTIONS(465), - [anon_sym_const] = ACTIONS(465), - [anon_sym_restrict] = ACTIONS(465), - [anon_sym_volatile] = ACTIONS(465), - [anon_sym__Atomic] = ACTIONS(465), - [anon_sym_COLON] = ACTIONS(463), - [anon_sym_AMP] = ACTIONS(463), - [anon_sym_BANG] = ACTIONS(463), - [anon_sym_TILDE] = ACTIONS(463), - [anon_sym_PLUS] = ACTIONS(465), - [anon_sym_DASH] = ACTIONS(465), - [anon_sym_DASH_DASH] = ACTIONS(463), - [anon_sym_PLUS_PLUS] = ACTIONS(463), - [anon_sym_sizeof] = ACTIONS(465), - [sym_number_literal] = ACTIONS(463), - [anon_sym_SQUOTE] = ACTIONS(463), - [anon_sym_DQUOTE] = ACTIONS(463), - [sym_true] = ACTIONS(465), - [sym_false] = ACTIONS(465), - [sym_null] = ACTIONS(465), - [sym_identifier] = ACTIONS(465), - [sym_comment] = ACTIONS(37), + [sym_storage_class_specifier] = STATE(103), + [sym_type_qualifier] = STATE(103), + [aux_sym__declaration_specifiers_repeat1] = STATE(103), + [anon_sym_extern] = ACTIONS(629), + [anon_sym_static] = ACTIONS(629), + [anon_sym_auto] = ACTIONS(629), + [anon_sym_register] = ACTIONS(629), + [anon_sym_inline] = ACTIONS(629), + [anon_sym_const] = ACTIONS(632), + [anon_sym_restrict] = ACTIONS(632), + [anon_sym_volatile] = ACTIONS(632), + [anon_sym__Atomic] = ACTIONS(632), + [anon_sym_unsigned] = ACTIONS(635), + [anon_sym_long] = ACTIONS(635), + [anon_sym_short] = ACTIONS(635), + [sym_primitive_type] = ACTIONS(635), + [anon_sym_enum] = ACTIONS(635), + [anon_sym_struct] = ACTIONS(635), + [anon_sym_union] = ACTIONS(635), + [sym_identifier] = ACTIONS(635), + [sym_comment] = ACTIONS(59), }, [104] = { - [sym__abstract_declarator] = STATE(191), - [sym_abstract_pointer_declarator] = STATE(191), - [sym_abstract_function_declarator] = STATE(191), - [sym_abstract_array_declarator] = STATE(191), - [sym_parameter_list] = STATE(192), - [anon_sym_RPAREN] = ACTIONS(467), - [anon_sym_LPAREN2] = ACTIONS(469), - [anon_sym_STAR] = ACTIONS(471), - [anon_sym_LBRACK] = ACTIONS(473), - [sym_comment] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(637), + [anon_sym_COMMA] = ACTIONS(637), + [anon_sym_RPAREN] = ACTIONS(637), + [anon_sym_extern] = ACTIONS(639), + [anon_sym_LPAREN2] = ACTIONS(637), + [anon_sym_STAR] = ACTIONS(637), + [anon_sym_LBRACK] = ACTIONS(637), + [anon_sym_RBRACK] = ACTIONS(637), + [anon_sym_static] = ACTIONS(639), + [anon_sym_auto] = ACTIONS(639), + [anon_sym_register] = ACTIONS(639), + [anon_sym_inline] = ACTIONS(639), + [anon_sym_const] = ACTIONS(639), + [anon_sym_restrict] = ACTIONS(639), + [anon_sym_volatile] = ACTIONS(639), + [anon_sym__Atomic] = ACTIONS(639), + [anon_sym_COLON] = ACTIONS(637), + [anon_sym_AMP] = ACTIONS(637), + [anon_sym_BANG] = ACTIONS(637), + [anon_sym_TILDE] = ACTIONS(637), + [anon_sym_PLUS] = ACTIONS(639), + [anon_sym_DASH] = ACTIONS(639), + [anon_sym_DASH_DASH] = ACTIONS(637), + [anon_sym_PLUS_PLUS] = ACTIONS(637), + [anon_sym_sizeof] = ACTIONS(639), + [sym_number_literal] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_DQUOTE] = ACTIONS(637), + [sym_true] = ACTIONS(639), + [sym_false] = ACTIONS(639), + [sym_null] = ACTIONS(639), + [sym_identifier] = ACTIONS(639), + [sym_comment] = ACTIONS(59), }, [105] = { - [anon_sym_RPAREN] = ACTIONS(475), - [sym_comment] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(641), + [anon_sym_COMMA] = ACTIONS(641), + [anon_sym_RPAREN] = ACTIONS(641), + [anon_sym_extern] = ACTIONS(643), + [anon_sym_LPAREN2] = ACTIONS(641), + [anon_sym_STAR] = ACTIONS(641), + [anon_sym_LBRACK] = ACTIONS(641), + [anon_sym_RBRACK] = ACTIONS(641), + [anon_sym_static] = ACTIONS(643), + [anon_sym_auto] = ACTIONS(643), + [anon_sym_register] = ACTIONS(643), + [anon_sym_inline] = ACTIONS(643), + [anon_sym_const] = ACTIONS(643), + [anon_sym_restrict] = ACTIONS(643), + [anon_sym_volatile] = ACTIONS(643), + [anon_sym__Atomic] = ACTIONS(643), + [anon_sym_COLON] = ACTIONS(641), + [anon_sym_AMP] = ACTIONS(641), + [anon_sym_BANG] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(641), + [anon_sym_PLUS] = ACTIONS(643), + [anon_sym_DASH] = ACTIONS(643), + [anon_sym_DASH_DASH] = ACTIONS(641), + [anon_sym_PLUS_PLUS] = ACTIONS(641), + [anon_sym_sizeof] = ACTIONS(643), + [sym_number_literal] = ACTIONS(641), + [anon_sym_SQUOTE] = ACTIONS(641), + [anon_sym_DQUOTE] = ACTIONS(641), + [sym_true] = ACTIONS(643), + [sym_false] = ACTIONS(643), + [sym_null] = ACTIONS(643), + [sym_identifier] = ACTIONS(643), + [sym_comment] = ACTIONS(59), }, [106] = { - [sym_type_qualifier] = STATE(81), - [sym__type_specifier] = STATE(194), - [sym_sized_type_specifier] = STATE(194), - [sym_enum_specifier] = STATE(194), - [sym_struct_specifier] = STATE(194), - [sym_union_specifier] = STATE(194), - [sym_macro_type_specifier] = STATE(194), - [aux_sym_type_definition_repeat1] = STATE(81), - [aux_sym_sized_type_specifier_repeat1] = STATE(107), - [anon_sym_const] = ACTIONS(23), - [anon_sym_restrict] = ACTIONS(23), - [anon_sym_volatile] = ACTIONS(23), - [anon_sym__Atomic] = ACTIONS(23), - [anon_sym_unsigned] = ACTIONS(211), - [anon_sym_long] = ACTIONS(211), - [anon_sym_short] = ACTIONS(211), - [sym_primitive_type] = ACTIONS(477), - [anon_sym_enum] = ACTIONS(29), - [anon_sym_struct] = ACTIONS(31), - [anon_sym_union] = ACTIONS(33), - [sym_identifier] = ACTIONS(35), - [sym_comment] = ACTIONS(37), + [aux_sym_sized_type_specifier_repeat1] = STATE(106), + [anon_sym_SEMI] = ACTIONS(645), + [anon_sym_extern] = ACTIONS(647), + [anon_sym_LPAREN2] = ACTIONS(645), + [anon_sym_STAR] = ACTIONS(645), + [anon_sym_static] = ACTIONS(647), + [anon_sym_auto] = ACTIONS(647), + [anon_sym_register] = ACTIONS(647), + [anon_sym_inline] = ACTIONS(647), + [anon_sym_const] = ACTIONS(647), + [anon_sym_restrict] = ACTIONS(647), + [anon_sym_volatile] = ACTIONS(647), + [anon_sym__Atomic] = ACTIONS(647), + [anon_sym_unsigned] = ACTIONS(649), + [anon_sym_long] = ACTIONS(649), + [anon_sym_short] = ACTIONS(649), + [sym_primitive_type] = ACTIONS(647), + [sym_identifier] = ACTIONS(647), + [sym_comment] = ACTIONS(59), }, [107] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(195), - [anon_sym_RPAREN] = ACTIONS(102), - [anon_sym_LPAREN2] = ACTIONS(102), - [anon_sym_STAR] = ACTIONS(102), - [anon_sym_LBRACK] = ACTIONS(102), - [anon_sym_unsigned] = ACTIONS(479), - [anon_sym_long] = ACTIONS(479), - [anon_sym_short] = ACTIONS(479), - [sym_primitive_type] = ACTIONS(108), - [sym_identifier] = ACTIONS(481), - [sym_comment] = ACTIONS(37), + [ts_builtin_sym_end] = ACTIONS(417), + [anon_sym_SEMI] = ACTIONS(417), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(419), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(419), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(419), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(419), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(419), + [sym_preproc_directive] = ACTIONS(419), + [anon_sym_typedef] = ACTIONS(419), + [anon_sym_extern] = ACTIONS(419), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_RBRACE] = ACTIONS(417), + [anon_sym_LPAREN2] = ACTIONS(417), + [anon_sym_STAR] = ACTIONS(417), + [anon_sym_static] = ACTIONS(419), + [anon_sym_auto] = ACTIONS(419), + [anon_sym_register] = ACTIONS(419), + [anon_sym_inline] = ACTIONS(419), + [anon_sym_const] = ACTIONS(419), + [anon_sym_restrict] = ACTIONS(419), + [anon_sym_volatile] = ACTIONS(419), + [anon_sym__Atomic] = ACTIONS(419), + [anon_sym_unsigned] = ACTIONS(419), + [anon_sym_long] = ACTIONS(419), + [anon_sym_short] = ACTIONS(419), + [sym_primitive_type] = ACTIONS(419), + [anon_sym_enum] = ACTIONS(419), + [anon_sym_struct] = ACTIONS(419), + [anon_sym_union] = ACTIONS(419), + [anon_sym_if] = ACTIONS(419), + [anon_sym_switch] = ACTIONS(419), + [anon_sym_case] = ACTIONS(419), + [anon_sym_default] = ACTIONS(419), + [anon_sym_while] = ACTIONS(419), + [anon_sym_do] = ACTIONS(419), + [anon_sym_for] = ACTIONS(419), + [anon_sym_return] = ACTIONS(419), + [anon_sym_break] = ACTIONS(419), + [anon_sym_continue] = ACTIONS(419), + [anon_sym_goto] = ACTIONS(419), + [anon_sym_AMP] = ACTIONS(417), + [anon_sym_BANG] = ACTIONS(417), + [anon_sym_TILDE] = ACTIONS(417), + [anon_sym_PLUS] = ACTIONS(419), + [anon_sym_DASH] = ACTIONS(419), + [anon_sym_DASH_DASH] = ACTIONS(417), + [anon_sym_PLUS_PLUS] = ACTIONS(417), + [anon_sym_sizeof] = ACTIONS(419), + [sym_number_literal] = ACTIONS(417), + [anon_sym_SQUOTE] = ACTIONS(417), + [anon_sym_DQUOTE] = ACTIONS(417), + [sym_true] = ACTIONS(419), + [sym_false] = ACTIONS(419), + [sym_null] = ACTIONS(419), + [sym_identifier] = ACTIONS(419), + [sym_comment] = ACTIONS(59), }, [108] = { - [sym__declarator] = STATE(110), - [sym_pointer_declarator] = STATE(110), - [sym_function_declarator] = STATE(110), - [sym_array_declarator] = STATE(110), - [sym_type_qualifier] = STATE(196), - [aux_sym_type_definition_repeat1] = STATE(196), - [anon_sym_LPAREN2] = ACTIONS(88), - [anon_sym_STAR] = ACTIONS(219), - [anon_sym_const] = ACTIONS(23), - [anon_sym_restrict] = ACTIONS(23), - [anon_sym_volatile] = ACTIONS(23), - [anon_sym__Atomic] = ACTIONS(23), - [sym_identifier] = ACTIONS(223), - [sym_comment] = ACTIONS(37), + [aux_sym_string_literal_repeat1] = STATE(188), + [anon_sym_DQUOTE] = ACTIONS(652), + [aux_sym_SLASH_LBRACK_CARET_BSLASH_BSLASH_DQUOTE_BSLASHn_RBRACK_SLASH] = ACTIONS(423), + [sym_escape_sequence] = ACTIONS(423), + [sym_comment] = ACTIONS(69), }, [109] = { - [sym_parameter_list] = STATE(119), - [anon_sym_RPAREN] = ACTIONS(483), - [anon_sym_LPAREN2] = ACTIONS(231), - [anon_sym_LBRACK] = ACTIONS(233), - [sym_comment] = ACTIONS(37), + [ts_builtin_sym_end] = ACTIONS(654), + [anon_sym_SEMI] = ACTIONS(654), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(656), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(656), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(656), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(656), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(656), + [sym_preproc_directive] = ACTIONS(656), + [anon_sym_typedef] = ACTIONS(656), + [anon_sym_extern] = ACTIONS(656), + [anon_sym_LBRACE] = ACTIONS(654), + [anon_sym_RBRACE] = ACTIONS(654), + [anon_sym_LPAREN2] = ACTIONS(654), + [anon_sym_STAR] = ACTIONS(654), + [anon_sym_static] = ACTIONS(656), + [anon_sym_auto] = ACTIONS(656), + [anon_sym_register] = ACTIONS(656), + [anon_sym_inline] = ACTIONS(656), + [anon_sym_const] = ACTIONS(656), + [anon_sym_restrict] = ACTIONS(656), + [anon_sym_volatile] = ACTIONS(656), + [anon_sym__Atomic] = ACTIONS(656), + [anon_sym_unsigned] = ACTIONS(656), + [anon_sym_long] = ACTIONS(656), + [anon_sym_short] = ACTIONS(656), + [sym_primitive_type] = ACTIONS(656), + [anon_sym_enum] = ACTIONS(656), + [anon_sym_struct] = ACTIONS(656), + [anon_sym_union] = ACTIONS(656), + [anon_sym_if] = ACTIONS(656), + [anon_sym_switch] = ACTIONS(656), + [anon_sym_case] = ACTIONS(656), + [anon_sym_default] = ACTIONS(656), + [anon_sym_while] = ACTIONS(656), + [anon_sym_do] = ACTIONS(656), + [anon_sym_for] = ACTIONS(656), + [anon_sym_return] = ACTIONS(656), + [anon_sym_break] = ACTIONS(656), + [anon_sym_continue] = ACTIONS(656), + [anon_sym_goto] = ACTIONS(656), + [anon_sym_AMP] = ACTIONS(654), + [anon_sym_BANG] = ACTIONS(654), + [anon_sym_TILDE] = ACTIONS(654), + [anon_sym_PLUS] = ACTIONS(656), + [anon_sym_DASH] = ACTIONS(656), + [anon_sym_DASH_DASH] = ACTIONS(654), + [anon_sym_PLUS_PLUS] = ACTIONS(654), + [anon_sym_sizeof] = ACTIONS(656), + [sym_number_literal] = ACTIONS(654), + [anon_sym_SQUOTE] = ACTIONS(654), + [anon_sym_DQUOTE] = ACTIONS(654), + [sym_true] = ACTIONS(656), + [sym_false] = ACTIONS(656), + [sym_null] = ACTIONS(656), + [sym_identifier] = ACTIONS(656), + [sym_comment] = ACTIONS(59), }, [110] = { - [sym_parameter_list] = STATE(119), - [anon_sym_COMMA] = ACTIONS(485), - [anon_sym_RPAREN] = ACTIONS(485), - [anon_sym_SEMI] = ACTIONS(485), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_LPAREN2] = ACTIONS(231), - [anon_sym_LBRACK] = ACTIONS(233), - [anon_sym_EQ] = ACTIONS(485), - [sym_comment] = ACTIONS(37), + [anon_sym_DOT_DOT_DOT] = ACTIONS(658), + [anon_sym_RPAREN] = ACTIONS(660), + [sym_identifier] = ACTIONS(658), + [sym_comment] = ACTIONS(59), }, [111] = { - [sym__declarator] = STATE(198), - [sym_pointer_declarator] = STATE(198), - [sym_function_declarator] = STATE(198), - [sym_array_declarator] = STATE(198), - [sym_type_qualifier] = STATE(199), - [aux_sym_type_definition_repeat1] = STATE(199), - [anon_sym_LPAREN2] = ACTIONS(88), - [anon_sym_STAR] = ACTIONS(90), - [anon_sym_const] = ACTIONS(23), - [anon_sym_restrict] = ACTIONS(23), - [anon_sym_volatile] = ACTIONS(23), - [anon_sym__Atomic] = ACTIONS(23), - [sym_identifier] = ACTIONS(487), - [sym_comment] = ACTIONS(37), + [anon_sym_LF] = ACTIONS(662), + [sym_comment] = ACTIONS(69), }, [112] = { - [sym__declarator] = STATE(201), - [sym_pointer_declarator] = STATE(201), - [sym_function_declarator] = STATE(201), - [sym_array_declarator] = STATE(201), - [sym_init_declarator] = STATE(202), - [anon_sym_LPAREN2] = ACTIONS(88), - [anon_sym_STAR] = ACTIONS(489), - [sym_identifier] = ACTIONS(491), - [sym_comment] = ACTIONS(37), + [anon_sym_LF] = ACTIONS(664), + [sym_preproc_arg] = ACTIONS(666), + [sym_comment] = ACTIONS(69), }, [113] = { - [ts_builtin_sym_end] = ACTIONS(493), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(495), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(495), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(495), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(495), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(495), - [sym_preproc_directive] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(493), - [anon_sym_typedef] = ACTIONS(495), - [anon_sym_extern] = ACTIONS(495), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_RBRACE] = ACTIONS(493), - [anon_sym_LPAREN2] = ACTIONS(493), - [anon_sym_STAR] = ACTIONS(493), - [anon_sym_static] = ACTIONS(495), - [anon_sym_auto] = ACTIONS(495), - [anon_sym_register] = ACTIONS(495), - [anon_sym_inline] = ACTIONS(495), - [anon_sym_const] = ACTIONS(495), - [anon_sym_restrict] = ACTIONS(495), - [anon_sym_volatile] = ACTIONS(495), - [anon_sym__Atomic] = ACTIONS(495), - [anon_sym_unsigned] = ACTIONS(495), - [anon_sym_long] = ACTIONS(495), - [anon_sym_short] = ACTIONS(495), - [sym_primitive_type] = ACTIONS(495), - [anon_sym_enum] = ACTIONS(495), - [anon_sym_struct] = ACTIONS(495), - [anon_sym_union] = ACTIONS(495), - [anon_sym_if] = ACTIONS(495), - [anon_sym_else] = ACTIONS(495), - [anon_sym_switch] = ACTIONS(495), - [anon_sym_case] = ACTIONS(495), - [anon_sym_default] = ACTIONS(495), - [anon_sym_while] = ACTIONS(495), - [anon_sym_do] = ACTIONS(495), - [anon_sym_for] = ACTIONS(495), - [anon_sym_return] = ACTIONS(495), - [anon_sym_break] = ACTIONS(495), - [anon_sym_continue] = ACTIONS(495), - [anon_sym_goto] = ACTIONS(495), - [anon_sym_AMP] = ACTIONS(493), - [anon_sym_BANG] = ACTIONS(493), - [anon_sym_TILDE] = ACTIONS(493), - [anon_sym_PLUS] = ACTIONS(495), - [anon_sym_DASH] = ACTIONS(495), - [anon_sym_DASH_DASH] = ACTIONS(493), - [anon_sym_PLUS_PLUS] = ACTIONS(493), - [anon_sym_sizeof] = ACTIONS(495), - [sym_number_literal] = ACTIONS(493), - [anon_sym_SQUOTE] = ACTIONS(493), - [anon_sym_DQUOTE] = ACTIONS(493), - [sym_true] = ACTIONS(495), - [sym_false] = ACTIONS(495), - [sym_null] = ACTIONS(495), - [sym_identifier] = ACTIONS(495), - [sym_comment] = ACTIONS(37), + [sym_string_literal] = STATE(243), + [anon_sym_DQUOTE] = ACTIONS(668), + [sym_system_lib_string] = ACTIONS(670), + [sym_comment] = ACTIONS(59), }, [114] = { - [sym_preproc_include] = STATE(231), - [sym_preproc_def] = STATE(231), - [sym_preproc_function_def] = STATE(231), - [sym_preproc_call] = STATE(231), - [sym_preproc_if_in_compound_statement] = STATE(231), - [sym_preproc_ifdef_in_compound_statement] = STATE(231), - [sym_declaration] = STATE(231), - [sym_type_definition] = STATE(231), - [sym__declaration_specifiers] = STATE(227), - [sym_compound_statement] = STATE(231), - [sym_storage_class_specifier] = STATE(19), - [sym_type_qualifier] = STATE(19), - [sym__type_specifier] = STATE(17), - [sym_sized_type_specifier] = STATE(17), - [sym_enum_specifier] = STATE(17), - [sym_struct_specifier] = STATE(17), - [sym_union_specifier] = STATE(17), - [sym_labeled_statement] = STATE(231), - [sym_expression_statement] = STATE(231), - [sym_if_statement] = STATE(231), - [sym_switch_statement] = STATE(231), - [sym_case_statement] = STATE(231), - [sym_while_statement] = STATE(231), - [sym_do_statement] = STATE(231), - [sym_for_statement] = STATE(231), - [sym_return_statement] = STATE(231), - [sym_break_statement] = STATE(231), - [sym_continue_statement] = STATE(231), - [sym_goto_statement] = STATE(231), - [sym__expression] = STATE(228), - [sym_comma_expression] = STATE(229), - [sym_conditional_expression] = STATE(228), - [sym_assignment_expression] = STATE(228), - [sym_pointer_expression] = STATE(228), - [sym_logical_expression] = STATE(228), - [sym_bitwise_expression] = STATE(228), - [sym_equality_expression] = STATE(228), - [sym_relational_expression] = STATE(228), - [sym_shift_expression] = STATE(228), - [sym_math_expression] = STATE(228), - [sym_cast_expression] = STATE(228), - [sym_sizeof_expression] = STATE(228), - [sym_subscript_expression] = STATE(228), - [sym_call_expression] = STATE(228), - [sym_field_expression] = STATE(228), - [sym_compound_literal_expression] = STATE(228), - [sym_parenthesized_expression] = STATE(228), - [sym_char_literal] = STATE(228), - [sym_concatenated_string] = STATE(228), - [sym_string_literal] = STATE(230), - [sym__empty_declaration] = STATE(231), - [sym_macro_type_specifier] = STATE(17), - [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(231), - [aux_sym__declaration_specifiers_repeat1] = STATE(19), - [aux_sym_sized_type_specifier_repeat1] = STATE(20), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(497), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(9), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(499), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(501), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(501), - [sym_preproc_directive] = ACTIONS(15), - [anon_sym_SEMI] = ACTIONS(503), - [anon_sym_typedef] = ACTIONS(17), - [anon_sym_extern] = ACTIONS(21), - [anon_sym_LBRACE] = ACTIONS(229), - [anon_sym_RBRACE] = ACTIONS(505), - [anon_sym_LPAREN2] = ACTIONS(507), - [anon_sym_STAR] = ACTIONS(509), - [anon_sym_static] = ACTIONS(21), - [anon_sym_auto] = ACTIONS(21), - [anon_sym_register] = ACTIONS(21), - [anon_sym_inline] = ACTIONS(21), - [anon_sym_const] = ACTIONS(23), - [anon_sym_restrict] = ACTIONS(23), - [anon_sym_volatile] = ACTIONS(23), - [anon_sym__Atomic] = ACTIONS(23), - [anon_sym_unsigned] = ACTIONS(25), - [anon_sym_long] = ACTIONS(25), - [anon_sym_short] = ACTIONS(25), - [sym_primitive_type] = ACTIONS(27), - [anon_sym_enum] = ACTIONS(29), - [anon_sym_struct] = ACTIONS(31), - [anon_sym_union] = ACTIONS(33), - [anon_sym_if] = ACTIONS(511), - [anon_sym_switch] = ACTIONS(513), - [anon_sym_case] = ACTIONS(515), - [anon_sym_default] = ACTIONS(517), - [anon_sym_while] = ACTIONS(519), - [anon_sym_do] = ACTIONS(521), - [anon_sym_for] = ACTIONS(523), - [anon_sym_return] = ACTIONS(525), - [anon_sym_break] = ACTIONS(527), - [anon_sym_continue] = ACTIONS(529), - [anon_sym_goto] = ACTIONS(531), - [anon_sym_AMP] = ACTIONS(509), - [anon_sym_BANG] = ACTIONS(533), - [anon_sym_TILDE] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DASH] = ACTIONS(537), - [anon_sym_DASH_DASH] = ACTIONS(539), - [anon_sym_PLUS_PLUS] = ACTIONS(539), - [anon_sym_sizeof] = ACTIONS(541), - [sym_number_literal] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(547), - [sym_false] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [sym_identifier] = ACTIONS(549), - [sym_comment] = ACTIONS(37), + [sym_identifier] = ACTIONS(672), + [sym_comment] = ACTIONS(59), }, [115] = { - [sym__declaration_specifiers] = STATE(234), - [sym_storage_class_specifier] = STATE(236), - [sym_type_qualifier] = STATE(236), - [sym__type_specifier] = STATE(235), - [sym_sized_type_specifier] = STATE(235), - [sym_enum_specifier] = STATE(235), - [sym_struct_specifier] = STATE(235), - [sym_union_specifier] = STATE(235), - [sym_parameter_declaration] = STATE(232), - [sym_macro_type_specifier] = STATE(235), - [aux_sym__declaration_specifiers_repeat1] = STATE(236), - [aux_sym_sized_type_specifier_repeat1] = STATE(237), - [anon_sym_DOT_DOT_DOT] = ACTIONS(551), - [anon_sym_RPAREN] = ACTIONS(553), - [anon_sym_extern] = ACTIONS(21), - [anon_sym_static] = ACTIONS(21), - [anon_sym_auto] = ACTIONS(21), - [anon_sym_register] = ACTIONS(21), - [anon_sym_inline] = ACTIONS(21), - [anon_sym_const] = ACTIONS(23), - [anon_sym_restrict] = ACTIONS(23), - [anon_sym_volatile] = ACTIONS(23), - [anon_sym__Atomic] = ACTIONS(23), - [anon_sym_unsigned] = ACTIONS(555), - [anon_sym_long] = ACTIONS(555), - [anon_sym_short] = ACTIONS(555), - [sym_primitive_type] = ACTIONS(557), - [anon_sym_enum] = ACTIONS(29), - [anon_sym_struct] = ACTIONS(31), - [anon_sym_union] = ACTIONS(33), - [sym_identifier] = ACTIONS(35), - [sym_comment] = ACTIONS(37), + [sym_preproc_arg] = ACTIONS(674), + [sym_comment] = ACTIONS(69), }, [116] = { - [sym__declaration_specifiers] = STATE(246), - [sym_storage_class_specifier] = STATE(250), - [sym_type_qualifier] = STATE(250), - [sym__type_specifier] = STATE(247), - [sym_sized_type_specifier] = STATE(247), - [sym_enum_specifier] = STATE(247), - [sym_struct_specifier] = STATE(247), - [sym_union_specifier] = STATE(247), - [sym__expression] = STATE(248), - [sym_conditional_expression] = STATE(248), - [sym_assignment_expression] = STATE(248), - [sym_pointer_expression] = STATE(248), - [sym_logical_expression] = STATE(248), - [sym_bitwise_expression] = STATE(248), - [sym_equality_expression] = STATE(248), - [sym_relational_expression] = STATE(248), - [sym_shift_expression] = STATE(248), - [sym_math_expression] = STATE(248), - [sym_cast_expression] = STATE(248), - [sym_sizeof_expression] = STATE(248), - [sym_subscript_expression] = STATE(248), - [sym_call_expression] = STATE(248), - [sym_field_expression] = STATE(248), - [sym_compound_literal_expression] = STATE(248), - [sym_parenthesized_expression] = STATE(248), - [sym_char_literal] = STATE(248), - [sym_concatenated_string] = STATE(248), - [sym_string_literal] = STATE(249), - [sym_macro_type_specifier] = STATE(247), - [aux_sym__declaration_specifiers_repeat1] = STATE(250), - [aux_sym_sized_type_specifier_repeat1] = STATE(251), - [anon_sym_extern] = ACTIONS(21), - [anon_sym_LPAREN2] = ACTIONS(559), - [anon_sym_STAR] = ACTIONS(561), - [anon_sym_RBRACK] = ACTIONS(563), - [anon_sym_static] = ACTIONS(21), - [anon_sym_auto] = ACTIONS(21), - [anon_sym_register] = ACTIONS(21), - [anon_sym_inline] = ACTIONS(21), - [anon_sym_const] = ACTIONS(23), - [anon_sym_restrict] = ACTIONS(23), - [anon_sym_volatile] = ACTIONS(23), - [anon_sym__Atomic] = ACTIONS(23), - [anon_sym_unsigned] = ACTIONS(565), - [anon_sym_long] = ACTIONS(565), - [anon_sym_short] = ACTIONS(565), - [sym_primitive_type] = ACTIONS(567), - [anon_sym_enum] = ACTIONS(29), - [anon_sym_struct] = ACTIONS(31), - [anon_sym_union] = ACTIONS(33), - [anon_sym_AMP] = ACTIONS(561), - [anon_sym_BANG] = ACTIONS(569), - [anon_sym_TILDE] = ACTIONS(571), - [anon_sym_PLUS] = ACTIONS(573), - [anon_sym_DASH] = ACTIONS(573), - [anon_sym_DASH_DASH] = ACTIONS(575), - [anon_sym_PLUS_PLUS] = ACTIONS(575), - [anon_sym_sizeof] = ACTIONS(577), - [sym_number_literal] = ACTIONS(579), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(581), - [sym_false] = ACTIONS(581), - [sym_null] = ACTIONS(581), - [sym_identifier] = ACTIONS(583), - [sym_comment] = ACTIONS(37), + [ts_builtin_sym_end] = ACTIONS(676), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(678), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(678), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(678), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(678), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(678), + [sym_preproc_directive] = ACTIONS(678), + [anon_sym_typedef] = ACTIONS(678), + [anon_sym_extern] = ACTIONS(678), + [anon_sym_RBRACE] = ACTIONS(676), + [anon_sym_LPAREN2] = ACTIONS(676), + [anon_sym_STAR] = ACTIONS(676), + [anon_sym_static] = ACTIONS(678), + [anon_sym_auto] = ACTIONS(678), + [anon_sym_register] = ACTIONS(678), + [anon_sym_inline] = ACTIONS(678), + [anon_sym_const] = ACTIONS(678), + [anon_sym_restrict] = ACTIONS(678), + [anon_sym_volatile] = ACTIONS(678), + [anon_sym__Atomic] = ACTIONS(678), + [anon_sym_unsigned] = ACTIONS(678), + [anon_sym_long] = ACTIONS(678), + [anon_sym_short] = ACTIONS(678), + [sym_primitive_type] = ACTIONS(678), + [anon_sym_enum] = ACTIONS(678), + [anon_sym_struct] = ACTIONS(678), + [anon_sym_union] = ACTIONS(678), + [anon_sym_AMP] = ACTIONS(676), + [anon_sym_BANG] = ACTIONS(676), + [anon_sym_TILDE] = ACTIONS(676), + [anon_sym_PLUS] = ACTIONS(678), + [anon_sym_DASH] = ACTIONS(678), + [anon_sym_DASH_DASH] = ACTIONS(676), + [anon_sym_PLUS_PLUS] = ACTIONS(676), + [anon_sym_sizeof] = ACTIONS(678), + [sym_number_literal] = ACTIONS(676), + [anon_sym_SQUOTE] = ACTIONS(676), + [anon_sym_DQUOTE] = ACTIONS(676), + [sym_true] = ACTIONS(678), + [sym_false] = ACTIONS(678), + [sym_null] = ACTIONS(678), + [sym_identifier] = ACTIONS(678), + [sym_comment] = ACTIONS(59), }, [117] = { - [sym__expression] = STATE(253), - [sym_conditional_expression] = STATE(253), - [sym_assignment_expression] = STATE(253), - [sym_pointer_expression] = STATE(253), - [sym_logical_expression] = STATE(253), - [sym_bitwise_expression] = STATE(253), - [sym_equality_expression] = STATE(253), - [sym_relational_expression] = STATE(253), - [sym_shift_expression] = STATE(253), - [sym_math_expression] = STATE(253), - [sym_cast_expression] = STATE(253), - [sym_sizeof_expression] = STATE(253), - [sym_subscript_expression] = STATE(253), - [sym_call_expression] = STATE(253), - [sym_field_expression] = STATE(253), - [sym_compound_literal_expression] = STATE(253), - [sym_parenthesized_expression] = STATE(253), - [sym_initializer_list] = STATE(254), - [sym_char_literal] = STATE(253), - [sym_concatenated_string] = STATE(253), - [sym_string_literal] = STATE(230), - [anon_sym_LBRACE] = ACTIONS(585), - [anon_sym_LPAREN2] = ACTIONS(507), - [anon_sym_STAR] = ACTIONS(509), - [anon_sym_AMP] = ACTIONS(509), - [anon_sym_BANG] = ACTIONS(533), - [anon_sym_TILDE] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DASH] = ACTIONS(537), - [anon_sym_DASH_DASH] = ACTIONS(539), - [anon_sym_PLUS_PLUS] = ACTIONS(539), - [anon_sym_sizeof] = ACTIONS(541), - [sym_number_literal] = ACTIONS(587), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(589), - [sym_false] = ACTIONS(589), - [sym_null] = ACTIONS(589), - [sym_identifier] = ACTIONS(589), - [sym_comment] = ACTIONS(37), + [sym_identifier] = ACTIONS(680), + [sym_comment] = ACTIONS(59), }, [118] = { - [ts_builtin_sym_end] = ACTIONS(591), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(593), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(593), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(593), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(593), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(593), - [sym_preproc_directive] = ACTIONS(593), - [anon_sym_typedef] = ACTIONS(593), - [anon_sym_extern] = ACTIONS(593), - [anon_sym_RBRACE] = ACTIONS(591), - [anon_sym_static] = ACTIONS(593), - [anon_sym_auto] = ACTIONS(593), - [anon_sym_register] = ACTIONS(593), - [anon_sym_inline] = ACTIONS(593), - [anon_sym_const] = ACTIONS(593), - [anon_sym_restrict] = ACTIONS(593), - [anon_sym_volatile] = ACTIONS(593), - [anon_sym__Atomic] = ACTIONS(593), - [anon_sym_unsigned] = ACTIONS(593), - [anon_sym_long] = ACTIONS(593), - [anon_sym_short] = ACTIONS(593), - [sym_primitive_type] = ACTIONS(593), - [anon_sym_enum] = ACTIONS(593), - [anon_sym_struct] = ACTIONS(593), - [anon_sym_union] = ACTIONS(593), - [sym_identifier] = ACTIONS(593), - [sym_comment] = ACTIONS(37), + [sym_preproc_include] = STATE(256), + [sym_preproc_def] = STATE(256), + [sym_preproc_function_def] = STATE(256), + [sym_preproc_call] = STATE(256), + [sym_preproc_if] = STATE(256), + [sym_preproc_ifdef] = STATE(256), + [sym_function_definition] = STATE(256), + [sym_declaration] = STATE(256), + [sym_type_definition] = STATE(256), + [sym__declaration_specifiers] = STATE(254), + [sym_linkage_specification] = STATE(256), + [sym_storage_class_specifier] = STATE(30), + [sym_type_qualifier] = STATE(30), + [sym__type_specifier] = STATE(25), + [sym_sized_type_specifier] = STATE(25), + [sym_enum_specifier] = STATE(25), + [sym_struct_specifier] = STATE(25), + [sym_union_specifier] = STATE(25), + [sym__expression] = STATE(26), + [sym_conditional_expression] = STATE(26), + [sym_assignment_expression] = STATE(26), + [sym_pointer_expression] = STATE(26), + [sym_logical_expression] = STATE(26), + [sym_bitwise_expression] = STATE(26), + [sym_equality_expression] = STATE(26), + [sym_relational_expression] = STATE(26), + [sym_shift_expression] = STATE(26), + [sym_math_expression] = STATE(26), + [sym_cast_expression] = STATE(26), + [sym_sizeof_expression] = STATE(26), + [sym_subscript_expression] = STATE(26), + [sym_call_expression] = STATE(255), + [sym_field_expression] = STATE(26), + [sym_compound_literal_expression] = STATE(26), + [sym_parenthesized_expression] = STATE(26), + [sym_char_literal] = STATE(26), + [sym_concatenated_string] = STATE(26), + [sym_string_literal] = STATE(28), + [sym__empty_declaration] = STATE(256), + [sym_macro_type_specifier] = STATE(25), + [aux_sym_translation_unit_repeat1] = STATE(256), + [aux_sym__declaration_specifiers_repeat1] = STATE(30), + [aux_sym_sized_type_specifier_repeat1] = STATE(31), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(682), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(684), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(686), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(688), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(690), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(690), + [sym_preproc_directive] = ACTIONS(692), + [anon_sym_typedef] = ACTIONS(694), + [anon_sym_extern] = ACTIONS(696), + [anon_sym_LPAREN2] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_static] = ACTIONS(25), + [anon_sym_auto] = ACTIONS(25), + [anon_sym_register] = ACTIONS(25), + [anon_sym_inline] = ACTIONS(25), + [anon_sym_const] = ACTIONS(27), + [anon_sym_restrict] = ACTIONS(27), + [anon_sym_volatile] = ACTIONS(27), + [anon_sym__Atomic] = ACTIONS(27), + [anon_sym_unsigned] = ACTIONS(29), + [anon_sym_long] = ACTIONS(29), + [anon_sym_short] = ACTIONS(29), + [sym_primitive_type] = ACTIONS(31), + [anon_sym_enum] = ACTIONS(33), + [anon_sym_struct] = ACTIONS(35), + [anon_sym_union] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(41), + [anon_sym_PLUS] = ACTIONS(43), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_DASH_DASH] = ACTIONS(45), + [anon_sym_PLUS_PLUS] = ACTIONS(45), + [anon_sym_sizeof] = ACTIONS(47), + [sym_number_literal] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(55), + [sym_false] = ACTIONS(55), + [sym_null] = ACTIONS(55), + [sym_identifier] = ACTIONS(57), + [sym_comment] = ACTIONS(59), }, [119] = { - [anon_sym_COMMA] = ACTIONS(595), - [anon_sym_RPAREN] = ACTIONS(595), - [anon_sym_SEMI] = ACTIONS(595), - [anon_sym_LBRACE] = ACTIONS(595), - [anon_sym_LPAREN2] = ACTIONS(595), - [anon_sym_LBRACK] = ACTIONS(595), - [anon_sym_EQ] = ACTIONS(595), - [sym_comment] = ACTIONS(37), + [sym_preproc_arg] = ACTIONS(698), + [sym_comment] = ACTIONS(69), }, [120] = { - [aux_sym_declaration_repeat1] = STATE(256), - [anon_sym_COMMA] = ACTIONS(225), - [anon_sym_SEMI] = ACTIONS(597), - [sym_comment] = ACTIONS(37), + [anon_sym_LF] = ACTIONS(700), + [sym_preproc_arg] = ACTIONS(702), + [sym_comment] = ACTIONS(69), }, [121] = { - [sym_storage_class_specifier] = STATE(121), - [sym_type_qualifier] = STATE(121), - [aux_sym__declaration_specifiers_repeat1] = STATE(121), - [anon_sym_SEMI] = ACTIONS(599), - [anon_sym_extern] = ACTIONS(288), - [anon_sym_LPAREN2] = ACTIONS(599), - [anon_sym_STAR] = ACTIONS(599), - [anon_sym_static] = ACTIONS(288), - [anon_sym_auto] = ACTIONS(288), - [anon_sym_register] = ACTIONS(288), - [anon_sym_inline] = ACTIONS(288), - [anon_sym_const] = ACTIONS(291), - [anon_sym_restrict] = ACTIONS(291), - [anon_sym_volatile] = ACTIONS(291), - [anon_sym__Atomic] = ACTIONS(291), - [sym_identifier] = ACTIONS(294), - [sym_comment] = ACTIONS(37), + [sym_type_qualifier] = STATE(261), + [sym__type_specifier] = STATE(260), + [sym_sized_type_specifier] = STATE(260), + [sym_enum_specifier] = STATE(260), + [sym_struct_specifier] = STATE(260), + [sym_union_specifier] = STATE(260), + [sym_macro_type_specifier] = STATE(260), + [aux_sym_type_definition_repeat1] = STATE(261), + [aux_sym_sized_type_specifier_repeat1] = STATE(42), + [anon_sym_const] = ACTIONS(27), + [anon_sym_restrict] = ACTIONS(27), + [anon_sym_volatile] = ACTIONS(27), + [anon_sym__Atomic] = ACTIONS(27), + [anon_sym_unsigned] = ACTIONS(77), + [anon_sym_long] = ACTIONS(77), + [anon_sym_short] = ACTIONS(77), + [sym_primitive_type] = ACTIONS(704), + [anon_sym_enum] = ACTIONS(33), + [anon_sym_struct] = ACTIONS(35), + [anon_sym_union] = ACTIONS(37), + [sym_identifier] = ACTIONS(81), + [sym_comment] = ACTIONS(59), }, [122] = { - [sym_storage_class_specifier] = STATE(121), - [sym_type_qualifier] = STATE(121), - [aux_sym__declaration_specifiers_repeat1] = STATE(121), - [anon_sym_SEMI] = ACTIONS(601), - [anon_sym_extern] = ACTIONS(21), - [anon_sym_LPAREN2] = ACTIONS(601), - [anon_sym_STAR] = ACTIONS(601), - [anon_sym_static] = ACTIONS(21), - [anon_sym_auto] = ACTIONS(21), - [anon_sym_register] = ACTIONS(21), - [anon_sym_inline] = ACTIONS(21), - [anon_sym_const] = ACTIONS(23), - [anon_sym_restrict] = ACTIONS(23), - [anon_sym_volatile] = ACTIONS(23), - [anon_sym__Atomic] = ACTIONS(23), - [sym_identifier] = ACTIONS(603), - [sym_comment] = ACTIONS(37), + [sym_string_literal] = STATE(262), + [anon_sym_extern] = ACTIONS(83), + [anon_sym_static] = ACTIONS(83), + [anon_sym_auto] = ACTIONS(83), + [anon_sym_register] = ACTIONS(83), + [anon_sym_inline] = ACTIONS(83), + [anon_sym_const] = ACTIONS(83), + [anon_sym_restrict] = ACTIONS(83), + [anon_sym_volatile] = ACTIONS(83), + [anon_sym__Atomic] = ACTIONS(83), + [anon_sym_unsigned] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [sym_primitive_type] = ACTIONS(83), + [anon_sym_enum] = ACTIONS(83), + [anon_sym_struct] = ACTIONS(83), + [anon_sym_union] = ACTIONS(83), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_identifier] = ACTIONS(83), + [sym_comment] = ACTIONS(59), }, [123] = { - [ts_builtin_sym_end] = ACTIONS(605), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(607), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(607), - [anon_sym_COMMA] = ACTIONS(605), - [anon_sym_RPAREN] = ACTIONS(605), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(607), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(607), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(607), - [sym_preproc_directive] = ACTIONS(607), - [anon_sym_SEMI] = ACTIONS(605), - [anon_sym_typedef] = ACTIONS(607), - [anon_sym_extern] = ACTIONS(607), - [anon_sym_LBRACE] = ACTIONS(605), - [anon_sym_RBRACE] = ACTIONS(605), - [anon_sym_LPAREN2] = ACTIONS(605), - [anon_sym_STAR] = ACTIONS(607), - [anon_sym_LBRACK] = ACTIONS(605), - [anon_sym_RBRACK] = ACTIONS(605), - [anon_sym_EQ] = ACTIONS(607), - [anon_sym_static] = ACTIONS(607), - [anon_sym_auto] = ACTIONS(607), - [anon_sym_register] = ACTIONS(607), - [anon_sym_inline] = ACTIONS(607), - [anon_sym_const] = ACTIONS(607), - [anon_sym_restrict] = ACTIONS(607), - [anon_sym_volatile] = ACTIONS(607), - [anon_sym__Atomic] = ACTIONS(607), - [anon_sym_unsigned] = ACTIONS(607), - [anon_sym_long] = ACTIONS(607), - [anon_sym_short] = ACTIONS(607), - [sym_primitive_type] = ACTIONS(607), - [anon_sym_enum] = ACTIONS(607), - [anon_sym_struct] = ACTIONS(607), - [anon_sym_union] = ACTIONS(607), - [anon_sym_COLON] = ACTIONS(605), - [anon_sym_QMARK] = ACTIONS(605), - [anon_sym_STAR_EQ] = ACTIONS(605), - [anon_sym_SLASH_EQ] = ACTIONS(605), - [anon_sym_PERCENT_EQ] = ACTIONS(605), - [anon_sym_PLUS_EQ] = ACTIONS(605), - [anon_sym_DASH_EQ] = ACTIONS(605), - [anon_sym_LT_LT_EQ] = ACTIONS(605), - [anon_sym_GT_GT_EQ] = ACTIONS(605), - [anon_sym_AMP_EQ] = ACTIONS(605), - [anon_sym_CARET_EQ] = ACTIONS(605), - [anon_sym_PIPE_EQ] = ACTIONS(605), - [anon_sym_AMP] = ACTIONS(607), - [anon_sym_PIPE_PIPE] = ACTIONS(605), - [anon_sym_AMP_AMP] = ACTIONS(605), - [anon_sym_PIPE] = ACTIONS(607), - [anon_sym_CARET] = ACTIONS(607), - [anon_sym_EQ_EQ] = ACTIONS(605), - [anon_sym_BANG_EQ] = ACTIONS(605), - [anon_sym_LT] = ACTIONS(607), - [anon_sym_GT] = ACTIONS(607), - [anon_sym_LT_EQ] = ACTIONS(605), - [anon_sym_GT_EQ] = ACTIONS(605), - [anon_sym_LT_LT] = ACTIONS(607), - [anon_sym_GT_GT] = ACTIONS(607), - [anon_sym_PLUS] = ACTIONS(607), - [anon_sym_DASH] = ACTIONS(607), - [anon_sym_SLASH] = ACTIONS(607), - [anon_sym_PERCENT] = ACTIONS(607), - [anon_sym_DASH_DASH] = ACTIONS(605), - [anon_sym_PLUS_PLUS] = ACTIONS(605), - [anon_sym_DOT] = ACTIONS(605), - [anon_sym_DASH_GT] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [sym_identifier] = ACTIONS(607), - [sym_comment] = ACTIONS(37), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(706), + [sym_comment] = ACTIONS(59), }, [124] = { - [aux_sym_string_literal_repeat1] = STATE(124), - [anon_sym_DQUOTE] = ACTIONS(609), - [aux_sym_SLASH_LBRACK_CARET_BSLASH_BSLASH_DQUOTE_BSLASHn_RBRACK_SLASH] = ACTIONS(611), - [sym_escape_sequence] = ACTIONS(611), - [sym_comment] = ACTIONS(47), + [sym__declarator] = STATE(265), + [sym_pointer_declarator] = STATE(265), + [sym_function_declarator] = STATE(265), + [sym_array_declarator] = STATE(265), + [sym_init_declarator] = STATE(266), + [anon_sym_SEMI] = ACTIONS(708), + [anon_sym_LPAREN2] = ACTIONS(174), + [anon_sym_STAR] = ACTIONS(176), + [sym_identifier] = ACTIONS(710), + [sym_comment] = ACTIONS(59), }, [125] = { - [aux_sym_preproc_params_repeat1] = STATE(259), - [anon_sym_COMMA] = ACTIONS(614), - [anon_sym_RPAREN] = ACTIONS(616), - [sym_comment] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(712), + [anon_sym_LPAREN2] = ACTIONS(166), + [anon_sym_STAR] = ACTIONS(168), + [anon_sym_LBRACK] = ACTIONS(166), + [anon_sym_EQ] = ACTIONS(168), + [anon_sym_QMARK] = ACTIONS(166), + [anon_sym_STAR_EQ] = ACTIONS(166), + [anon_sym_SLASH_EQ] = ACTIONS(166), + [anon_sym_PERCENT_EQ] = ACTIONS(166), + [anon_sym_PLUS_EQ] = ACTIONS(166), + [anon_sym_DASH_EQ] = ACTIONS(166), + [anon_sym_LT_LT_EQ] = ACTIONS(166), + [anon_sym_GT_GT_EQ] = ACTIONS(166), + [anon_sym_AMP_EQ] = ACTIONS(166), + [anon_sym_CARET_EQ] = ACTIONS(166), + [anon_sym_PIPE_EQ] = ACTIONS(166), + [anon_sym_AMP] = ACTIONS(168), + [anon_sym_PIPE_PIPE] = ACTIONS(166), + [anon_sym_AMP_AMP] = ACTIONS(166), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_CARET] = ACTIONS(168), + [anon_sym_EQ_EQ] = ACTIONS(166), + [anon_sym_BANG_EQ] = ACTIONS(166), + [anon_sym_LT] = ACTIONS(168), + [anon_sym_GT] = ACTIONS(168), + [anon_sym_LT_EQ] = ACTIONS(166), + [anon_sym_GT_EQ] = ACTIONS(166), + [anon_sym_LT_LT] = ACTIONS(168), + [anon_sym_GT_GT] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(168), + [anon_sym_DASH] = ACTIONS(168), + [anon_sym_SLASH] = ACTIONS(168), + [anon_sym_PERCENT] = ACTIONS(168), + [anon_sym_DASH_DASH] = ACTIONS(166), + [anon_sym_PLUS_PLUS] = ACTIONS(166), + [anon_sym_DOT] = ACTIONS(166), + [anon_sym_DASH_GT] = ACTIONS(166), + [sym_comment] = ACTIONS(59), }, [126] = { - [anon_sym_LF] = ACTIONS(618), - [sym_preproc_arg] = ACTIONS(618), - [sym_comment] = ACTIONS(47), + [sym_preproc_include] = STATE(269), + [sym_preproc_def] = STATE(269), + [sym_preproc_function_def] = STATE(269), + [sym_preproc_call] = STATE(269), + [sym_preproc_if] = STATE(269), + [sym_preproc_ifdef] = STATE(269), + [sym_preproc_else] = STATE(268), + [sym_preproc_elif] = STATE(268), + [sym_function_definition] = STATE(269), + [sym_declaration] = STATE(269), + [sym_type_definition] = STATE(269), + [sym__declaration_specifiers] = STATE(124), + [sym_linkage_specification] = STATE(269), + [sym_storage_class_specifier] = STATE(30), + [sym_type_qualifier] = STATE(30), + [sym__type_specifier] = STATE(25), + [sym_sized_type_specifier] = STATE(25), + [sym_enum_specifier] = STATE(25), + [sym_struct_specifier] = STATE(25), + [sym_union_specifier] = STATE(25), + [sym__expression] = STATE(26), + [sym_conditional_expression] = STATE(26), + [sym_assignment_expression] = STATE(26), + [sym_pointer_expression] = STATE(26), + [sym_logical_expression] = STATE(26), + [sym_bitwise_expression] = STATE(26), + [sym_equality_expression] = STATE(26), + [sym_relational_expression] = STATE(26), + [sym_shift_expression] = STATE(26), + [sym_math_expression] = STATE(26), + [sym_cast_expression] = STATE(26), + [sym_sizeof_expression] = STATE(26), + [sym_subscript_expression] = STATE(26), + [sym_call_expression] = STATE(125), + [sym_field_expression] = STATE(26), + [sym_compound_literal_expression] = STATE(26), + [sym_parenthesized_expression] = STATE(26), + [sym_char_literal] = STATE(26), + [sym_concatenated_string] = STATE(26), + [sym_string_literal] = STATE(28), + [sym__empty_declaration] = STATE(269), + [sym_macro_type_specifier] = STATE(25), + [aux_sym_translation_unit_repeat1] = STATE(269), + [aux_sym__declaration_specifiers_repeat1] = STATE(30), + [aux_sym_sized_type_specifier_repeat1] = STATE(31), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(251), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(253), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(255), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(714), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(259), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(259), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(261), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(263), + [sym_preproc_directive] = ACTIONS(265), + [anon_sym_typedef] = ACTIONS(267), + [anon_sym_extern] = ACTIONS(269), + [anon_sym_LPAREN2] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_static] = ACTIONS(25), + [anon_sym_auto] = ACTIONS(25), + [anon_sym_register] = ACTIONS(25), + [anon_sym_inline] = ACTIONS(25), + [anon_sym_const] = ACTIONS(27), + [anon_sym_restrict] = ACTIONS(27), + [anon_sym_volatile] = ACTIONS(27), + [anon_sym__Atomic] = ACTIONS(27), + [anon_sym_unsigned] = ACTIONS(29), + [anon_sym_long] = ACTIONS(29), + [anon_sym_short] = ACTIONS(29), + [sym_primitive_type] = ACTIONS(31), + [anon_sym_enum] = ACTIONS(33), + [anon_sym_struct] = ACTIONS(35), + [anon_sym_union] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(41), + [anon_sym_PLUS] = ACTIONS(43), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_DASH_DASH] = ACTIONS(45), + [anon_sym_PLUS_PLUS] = ACTIONS(45), + [anon_sym_sizeof] = ACTIONS(47), + [sym_number_literal] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(55), + [sym_false] = ACTIONS(55), + [sym_null] = ACTIONS(55), + [sym_identifier] = ACTIONS(57), + [sym_comment] = ACTIONS(59), }, [127] = { - [ts_builtin_sym_end] = ACTIONS(620), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(622), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(622), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(622), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(622), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(622), - [sym_preproc_directive] = ACTIONS(622), - [anon_sym_SEMI] = ACTIONS(620), - [anon_sym_typedef] = ACTIONS(622), - [anon_sym_extern] = ACTIONS(622), - [anon_sym_LBRACE] = ACTIONS(620), - [anon_sym_RBRACE] = ACTIONS(620), - [anon_sym_LPAREN2] = ACTIONS(620), - [anon_sym_STAR] = ACTIONS(620), - [anon_sym_static] = ACTIONS(622), - [anon_sym_auto] = ACTIONS(622), - [anon_sym_register] = ACTIONS(622), - [anon_sym_inline] = ACTIONS(622), - [anon_sym_const] = ACTIONS(622), - [anon_sym_restrict] = ACTIONS(622), - [anon_sym_volatile] = ACTIONS(622), - [anon_sym__Atomic] = ACTIONS(622), - [anon_sym_unsigned] = ACTIONS(622), - [anon_sym_long] = ACTIONS(622), - [anon_sym_short] = ACTIONS(622), - [sym_primitive_type] = ACTIONS(622), - [anon_sym_enum] = ACTIONS(622), - [anon_sym_struct] = ACTIONS(622), - [anon_sym_union] = ACTIONS(622), - [anon_sym_if] = ACTIONS(622), - [anon_sym_switch] = ACTIONS(622), - [anon_sym_case] = ACTIONS(622), - [anon_sym_default] = ACTIONS(622), - [anon_sym_while] = ACTIONS(622), - [anon_sym_do] = ACTIONS(622), - [anon_sym_for] = ACTIONS(622), - [anon_sym_return] = ACTIONS(622), - [anon_sym_break] = ACTIONS(622), - [anon_sym_continue] = ACTIONS(622), - [anon_sym_goto] = ACTIONS(622), - [anon_sym_AMP] = ACTIONS(620), - [anon_sym_BANG] = ACTIONS(620), - [anon_sym_TILDE] = ACTIONS(620), - [anon_sym_PLUS] = ACTIONS(622), - [anon_sym_DASH] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(620), - [anon_sym_sizeof] = ACTIONS(622), - [sym_number_literal] = ACTIONS(620), - [anon_sym_SQUOTE] = ACTIONS(620), - [anon_sym_DQUOTE] = ACTIONS(620), - [sym_true] = ACTIONS(622), - [sym_false] = ACTIONS(622), - [sym_null] = ACTIONS(622), - [sym_identifier] = ACTIONS(622), - [sym_comment] = ACTIONS(37), + [ts_builtin_sym_end] = ACTIONS(716), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(718), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(718), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(718), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(718), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(718), + [sym_preproc_directive] = ACTIONS(718), + [anon_sym_typedef] = ACTIONS(718), + [anon_sym_extern] = ACTIONS(718), + [anon_sym_RBRACE] = ACTIONS(716), + [anon_sym_LPAREN2] = ACTIONS(716), + [anon_sym_STAR] = ACTIONS(716), + [anon_sym_static] = ACTIONS(718), + [anon_sym_auto] = ACTIONS(718), + [anon_sym_register] = ACTIONS(718), + [anon_sym_inline] = ACTIONS(718), + [anon_sym_const] = ACTIONS(718), + [anon_sym_restrict] = ACTIONS(718), + [anon_sym_volatile] = ACTIONS(718), + [anon_sym__Atomic] = ACTIONS(718), + [anon_sym_unsigned] = ACTIONS(718), + [anon_sym_long] = ACTIONS(718), + [anon_sym_short] = ACTIONS(718), + [sym_primitive_type] = ACTIONS(718), + [anon_sym_enum] = ACTIONS(718), + [anon_sym_struct] = ACTIONS(718), + [anon_sym_union] = ACTIONS(718), + [anon_sym_AMP] = ACTIONS(716), + [anon_sym_BANG] = ACTIONS(716), + [anon_sym_TILDE] = ACTIONS(716), + [anon_sym_PLUS] = ACTIONS(718), + [anon_sym_DASH] = ACTIONS(718), + [anon_sym_DASH_DASH] = ACTIONS(716), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_sizeof] = ACTIONS(718), + [sym_number_literal] = ACTIONS(716), + [anon_sym_SQUOTE] = ACTIONS(716), + [anon_sym_DQUOTE] = ACTIONS(716), + [sym_true] = ACTIONS(718), + [sym_false] = ACTIONS(718), + [sym_null] = ACTIONS(718), + [sym_identifier] = ACTIONS(718), + [sym_comment] = ACTIONS(59), }, [128] = { - [ts_builtin_sym_end] = ACTIONS(624), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(626), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(626), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(626), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(626), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(626), - [sym_preproc_directive] = ACTIONS(626), - [anon_sym_SEMI] = ACTIONS(624), - [anon_sym_typedef] = ACTIONS(626), - [anon_sym_extern] = ACTIONS(626), - [anon_sym_LBRACE] = ACTIONS(624), - [anon_sym_RBRACE] = ACTIONS(624), - [anon_sym_LPAREN2] = ACTIONS(624), - [anon_sym_STAR] = ACTIONS(624), - [anon_sym_static] = ACTIONS(626), - [anon_sym_auto] = ACTIONS(626), - [anon_sym_register] = ACTIONS(626), - [anon_sym_inline] = ACTIONS(626), - [anon_sym_const] = ACTIONS(626), - [anon_sym_restrict] = ACTIONS(626), - [anon_sym_volatile] = ACTIONS(626), - [anon_sym__Atomic] = ACTIONS(626), - [anon_sym_unsigned] = ACTIONS(626), - [anon_sym_long] = ACTIONS(626), - [anon_sym_short] = ACTIONS(626), - [sym_primitive_type] = ACTIONS(626), - [anon_sym_enum] = ACTIONS(626), - [anon_sym_struct] = ACTIONS(626), - [anon_sym_union] = ACTIONS(626), - [anon_sym_if] = ACTIONS(626), - [anon_sym_switch] = ACTIONS(626), - [anon_sym_case] = ACTIONS(626), - [anon_sym_default] = ACTIONS(626), - [anon_sym_while] = ACTIONS(626), - [anon_sym_do] = ACTIONS(626), - [anon_sym_for] = ACTIONS(626), - [anon_sym_return] = ACTIONS(626), - [anon_sym_break] = ACTIONS(626), - [anon_sym_continue] = ACTIONS(626), - [anon_sym_goto] = ACTIONS(626), - [anon_sym_AMP] = ACTIONS(624), - [anon_sym_BANG] = ACTIONS(624), - [anon_sym_TILDE] = ACTIONS(624), - [anon_sym_PLUS] = ACTIONS(626), - [anon_sym_DASH] = ACTIONS(626), - [anon_sym_DASH_DASH] = ACTIONS(624), - [anon_sym_PLUS_PLUS] = ACTIONS(624), - [anon_sym_sizeof] = ACTIONS(626), - [sym_number_literal] = ACTIONS(624), - [anon_sym_SQUOTE] = ACTIONS(624), - [anon_sym_DQUOTE] = ACTIONS(624), - [sym_true] = ACTIONS(626), - [sym_false] = ACTIONS(626), - [sym_null] = ACTIONS(626), - [sym_identifier] = ACTIONS(626), - [sym_comment] = ACTIONS(37), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(720), + [sym_comment] = ACTIONS(59), }, [129] = { - [anon_sym_LF] = ACTIONS(628), - [sym_comment] = ACTIONS(47), + [sym_preproc_include] = STATE(269), + [sym_preproc_def] = STATE(269), + [sym_preproc_function_def] = STATE(269), + [sym_preproc_call] = STATE(269), + [sym_preproc_if] = STATE(269), + [sym_preproc_ifdef] = STATE(269), + [sym_preproc_else] = STATE(271), + [sym_preproc_elif] = STATE(271), + [sym_function_definition] = STATE(269), + [sym_declaration] = STATE(269), + [sym_type_definition] = STATE(269), + [sym__declaration_specifiers] = STATE(124), + [sym_linkage_specification] = STATE(269), + [sym_storage_class_specifier] = STATE(30), + [sym_type_qualifier] = STATE(30), + [sym__type_specifier] = STATE(25), + [sym_sized_type_specifier] = STATE(25), + [sym_enum_specifier] = STATE(25), + [sym_struct_specifier] = STATE(25), + [sym_union_specifier] = STATE(25), + [sym__expression] = STATE(26), + [sym_conditional_expression] = STATE(26), + [sym_assignment_expression] = STATE(26), + [sym_pointer_expression] = STATE(26), + [sym_logical_expression] = STATE(26), + [sym_bitwise_expression] = STATE(26), + [sym_equality_expression] = STATE(26), + [sym_relational_expression] = STATE(26), + [sym_shift_expression] = STATE(26), + [sym_math_expression] = STATE(26), + [sym_cast_expression] = STATE(26), + [sym_sizeof_expression] = STATE(26), + [sym_subscript_expression] = STATE(26), + [sym_call_expression] = STATE(125), + [sym_field_expression] = STATE(26), + [sym_compound_literal_expression] = STATE(26), + [sym_parenthesized_expression] = STATE(26), + [sym_char_literal] = STATE(26), + [sym_concatenated_string] = STATE(26), + [sym_string_literal] = STATE(28), + [sym__empty_declaration] = STATE(269), + [sym_macro_type_specifier] = STATE(25), + [aux_sym_translation_unit_repeat1] = STATE(269), + [aux_sym__declaration_specifiers_repeat1] = STATE(30), + [aux_sym_sized_type_specifier_repeat1] = STATE(31), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(251), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(253), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(255), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(722), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(259), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(259), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(261), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(263), + [sym_preproc_directive] = ACTIONS(265), + [anon_sym_typedef] = ACTIONS(267), + [anon_sym_extern] = ACTIONS(269), + [anon_sym_LPAREN2] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_static] = ACTIONS(25), + [anon_sym_auto] = ACTIONS(25), + [anon_sym_register] = ACTIONS(25), + [anon_sym_inline] = ACTIONS(25), + [anon_sym_const] = ACTIONS(27), + [anon_sym_restrict] = ACTIONS(27), + [anon_sym_volatile] = ACTIONS(27), + [anon_sym__Atomic] = ACTIONS(27), + [anon_sym_unsigned] = ACTIONS(29), + [anon_sym_long] = ACTIONS(29), + [anon_sym_short] = ACTIONS(29), + [sym_primitive_type] = ACTIONS(31), + [anon_sym_enum] = ACTIONS(33), + [anon_sym_struct] = ACTIONS(35), + [anon_sym_union] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(41), + [anon_sym_PLUS] = ACTIONS(43), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_DASH_DASH] = ACTIONS(45), + [anon_sym_PLUS_PLUS] = ACTIONS(45), + [anon_sym_sizeof] = ACTIONS(47), + [sym_number_literal] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(55), + [sym_false] = ACTIONS(55), + [sym_null] = ACTIONS(55), + [sym_identifier] = ACTIONS(57), + [sym_comment] = ACTIONS(59), }, [130] = { - [aux_sym_string_literal_repeat1] = STATE(262), - [anon_sym_DQUOTE] = ACTIONS(630), - [aux_sym_SLASH_LBRACK_CARET_BSLASH_BSLASH_DQUOTE_BSLASHn_RBRACK_SLASH] = ACTIONS(632), - [sym_escape_sequence] = ACTIONS(632), - [sym_comment] = ACTIONS(47), + [ts_builtin_sym_end] = ACTIONS(724), + [anon_sym_SEMI] = ACTIONS(724), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(726), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(726), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(726), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(726), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(726), + [sym_preproc_directive] = ACTIONS(726), + [anon_sym_typedef] = ACTIONS(726), + [anon_sym_extern] = ACTIONS(726), + [anon_sym_LBRACE] = ACTIONS(724), + [anon_sym_RBRACE] = ACTIONS(724), + [anon_sym_LPAREN2] = ACTIONS(724), + [anon_sym_STAR] = ACTIONS(724), + [anon_sym_static] = ACTIONS(726), + [anon_sym_auto] = ACTIONS(726), + [anon_sym_register] = ACTIONS(726), + [anon_sym_inline] = ACTIONS(726), + [anon_sym_const] = ACTIONS(726), + [anon_sym_restrict] = ACTIONS(726), + [anon_sym_volatile] = ACTIONS(726), + [anon_sym__Atomic] = ACTIONS(726), + [anon_sym_unsigned] = ACTIONS(726), + [anon_sym_long] = ACTIONS(726), + [anon_sym_short] = ACTIONS(726), + [sym_primitive_type] = ACTIONS(726), + [anon_sym_enum] = ACTIONS(726), + [anon_sym_struct] = ACTIONS(726), + [anon_sym_union] = ACTIONS(726), + [anon_sym_if] = ACTIONS(726), + [anon_sym_switch] = ACTIONS(726), + [anon_sym_case] = ACTIONS(726), + [anon_sym_default] = ACTIONS(726), + [anon_sym_while] = ACTIONS(726), + [anon_sym_do] = ACTIONS(726), + [anon_sym_for] = ACTIONS(726), + [anon_sym_return] = ACTIONS(726), + [anon_sym_break] = ACTIONS(726), + [anon_sym_continue] = ACTIONS(726), + [anon_sym_goto] = ACTIONS(726), + [anon_sym_AMP] = ACTIONS(724), + [anon_sym_BANG] = ACTIONS(724), + [anon_sym_TILDE] = ACTIONS(724), + [anon_sym_PLUS] = ACTIONS(726), + [anon_sym_DASH] = ACTIONS(726), + [anon_sym_DASH_DASH] = ACTIONS(724), + [anon_sym_PLUS_PLUS] = ACTIONS(724), + [anon_sym_sizeof] = ACTIONS(726), + [sym_number_literal] = ACTIONS(724), + [anon_sym_SQUOTE] = ACTIONS(724), + [anon_sym_DQUOTE] = ACTIONS(724), + [sym_true] = ACTIONS(726), + [sym_false] = ACTIONS(726), + [sym_null] = ACTIONS(726), + [sym_identifier] = ACTIONS(726), + [sym_comment] = ACTIONS(59), }, [131] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(119), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(119), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(119), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(119), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(119), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(119), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(119), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(119), - [sym_preproc_directive] = ACTIONS(119), - [anon_sym_SEMI] = ACTIONS(117), - [anon_sym_typedef] = ACTIONS(119), - [anon_sym_extern] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(117), - [anon_sym_LPAREN2] = ACTIONS(117), - [anon_sym_STAR] = ACTIONS(117), - [anon_sym_static] = ACTIONS(119), - [anon_sym_auto] = ACTIONS(119), - [anon_sym_register] = ACTIONS(119), - [anon_sym_inline] = ACTIONS(119), - [anon_sym_const] = ACTIONS(119), - [anon_sym_restrict] = ACTIONS(119), - [anon_sym_volatile] = ACTIONS(119), - [anon_sym__Atomic] = ACTIONS(119), - [anon_sym_unsigned] = ACTIONS(119), - [anon_sym_long] = ACTIONS(119), - [anon_sym_short] = ACTIONS(119), - [sym_primitive_type] = ACTIONS(119), - [anon_sym_enum] = ACTIONS(119), - [anon_sym_struct] = ACTIONS(119), - [anon_sym_union] = ACTIONS(119), - [anon_sym_if] = ACTIONS(119), - [anon_sym_switch] = ACTIONS(119), - [anon_sym_case] = ACTIONS(119), - [anon_sym_default] = ACTIONS(119), - [anon_sym_while] = ACTIONS(119), - [anon_sym_do] = ACTIONS(119), - [anon_sym_for] = ACTIONS(119), - [anon_sym_return] = ACTIONS(119), - [anon_sym_break] = ACTIONS(119), - [anon_sym_continue] = ACTIONS(119), - [anon_sym_goto] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(117), - [anon_sym_TILDE] = ACTIONS(117), - [anon_sym_PLUS] = ACTIONS(119), - [anon_sym_DASH] = ACTIONS(119), - [anon_sym_DASH_DASH] = ACTIONS(117), - [anon_sym_PLUS_PLUS] = ACTIONS(117), - [anon_sym_sizeof] = ACTIONS(119), - [sym_number_literal] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_DQUOTE] = ACTIONS(117), - [sym_true] = ACTIONS(119), - [sym_false] = ACTIONS(119), - [sym_null] = ACTIONS(119), - [sym_identifier] = ACTIONS(119), - [sym_comment] = ACTIONS(37), + [sym__type_declarator] = STATE(273), + [sym_pointer_type_declarator] = STATE(273), + [sym_function_type_declarator] = STATE(273), + [sym_array_type_declarator] = STATE(273), + [anon_sym_LPAREN2] = ACTIONS(282), + [anon_sym_STAR] = ACTIONS(728), + [sym_identifier] = ACTIONS(286), + [sym_comment] = ACTIONS(59), }, [132] = { - [sym_preproc_params] = STATE(265), - [anon_sym_LF] = ACTIONS(634), - [anon_sym_LPAREN] = ACTIONS(123), - [sym_preproc_arg] = ACTIONS(636), - [sym_comment] = ACTIONS(47), + [sym__type_declarator] = STATE(274), + [sym_pointer_type_declarator] = STATE(274), + [sym_function_type_declarator] = STATE(274), + [sym_array_type_declarator] = STATE(274), + [sym_type_qualifier] = STATE(275), + [aux_sym_type_definition_repeat1] = STATE(275), + [anon_sym_LPAREN2] = ACTIONS(282), + [anon_sym_STAR] = ACTIONS(284), + [anon_sym_const] = ACTIONS(27), + [anon_sym_restrict] = ACTIONS(27), + [anon_sym_volatile] = ACTIONS(27), + [anon_sym__Atomic] = ACTIONS(27), + [sym_identifier] = ACTIONS(730), + [sym_comment] = ACTIONS(59), }, [133] = { - [sym_preproc_include] = STATE(268), - [sym_preproc_def] = STATE(268), - [sym_preproc_function_def] = STATE(268), - [sym_preproc_call] = STATE(268), - [sym_preproc_if] = STATE(268), - [sym_preproc_ifdef] = STATE(268), - [sym_preproc_else] = STATE(267), - [sym_preproc_elif] = STATE(267), - [sym_function_definition] = STATE(268), - [sym_declaration] = STATE(268), - [sym_type_definition] = STATE(268), - [sym__declaration_specifiers] = STATE(70), - [sym_linkage_specification] = STATE(268), - [sym_storage_class_specifier] = STATE(19), - [sym_type_qualifier] = STATE(19), - [sym__type_specifier] = STATE(17), - [sym_sized_type_specifier] = STATE(17), - [sym_enum_specifier] = STATE(17), - [sym_struct_specifier] = STATE(17), - [sym_union_specifier] = STATE(17), - [sym__empty_declaration] = STATE(268), - [sym_macro_type_specifier] = STATE(17), - [aux_sym_translation_unit_repeat1] = STATE(268), - [aux_sym__declaration_specifiers_repeat1] = STATE(19), - [aux_sym_sized_type_specifier_repeat1] = STATE(20), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(127), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(129), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(131), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(638), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(135), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(135), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(137), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(139), - [sym_preproc_directive] = ACTIONS(141), - [anon_sym_typedef] = ACTIONS(143), - [anon_sym_extern] = ACTIONS(145), - [anon_sym_static] = ACTIONS(21), - [anon_sym_auto] = ACTIONS(21), - [anon_sym_register] = ACTIONS(21), - [anon_sym_inline] = ACTIONS(21), - [anon_sym_const] = ACTIONS(23), - [anon_sym_restrict] = ACTIONS(23), - [anon_sym_volatile] = ACTIONS(23), - [anon_sym__Atomic] = ACTIONS(23), - [anon_sym_unsigned] = ACTIONS(25), - [anon_sym_long] = ACTIONS(25), - [anon_sym_short] = ACTIONS(25), - [sym_primitive_type] = ACTIONS(27), - [anon_sym_enum] = ACTIONS(29), - [anon_sym_struct] = ACTIONS(31), - [anon_sym_union] = ACTIONS(33), - [sym_identifier] = ACTIONS(35), - [sym_comment] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(732), + [anon_sym_RPAREN] = ACTIONS(732), + [anon_sym_LPAREN2] = ACTIONS(732), + [anon_sym_LBRACK] = ACTIONS(732), + [sym_comment] = ACTIONS(59), }, [134] = { - [sym_preproc_include] = STATE(271), - [sym_preproc_def] = STATE(271), - [sym_preproc_function_def] = STATE(271), - [sym_preproc_call] = STATE(271), - [sym_preproc_if] = STATE(271), - [sym_preproc_ifdef] = STATE(271), - [sym_preproc_else] = STATE(270), - [sym_preproc_elif] = STATE(270), - [sym_function_definition] = STATE(271), - [sym_declaration] = STATE(271), - [sym_type_definition] = STATE(271), - [sym__declaration_specifiers] = STATE(70), - [sym_linkage_specification] = STATE(271), - [sym_storage_class_specifier] = STATE(19), - [sym_type_qualifier] = STATE(19), - [sym__type_specifier] = STATE(17), - [sym_sized_type_specifier] = STATE(17), - [sym_enum_specifier] = STATE(17), - [sym_struct_specifier] = STATE(17), - [sym_union_specifier] = STATE(17), - [sym__empty_declaration] = STATE(271), - [sym_macro_type_specifier] = STATE(17), - [aux_sym_translation_unit_repeat1] = STATE(271), - [aux_sym__declaration_specifiers_repeat1] = STATE(19), - [aux_sym_sized_type_specifier_repeat1] = STATE(20), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(127), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(129), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(131), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(640), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(135), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(135), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(137), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(139), - [sym_preproc_directive] = ACTIONS(141), - [anon_sym_typedef] = ACTIONS(143), - [anon_sym_extern] = ACTIONS(145), - [anon_sym_static] = ACTIONS(21), - [anon_sym_auto] = ACTIONS(21), - [anon_sym_register] = ACTIONS(21), - [anon_sym_inline] = ACTIONS(21), - [anon_sym_const] = ACTIONS(23), - [anon_sym_restrict] = ACTIONS(23), - [anon_sym_volatile] = ACTIONS(23), - [anon_sym__Atomic] = ACTIONS(23), - [anon_sym_unsigned] = ACTIONS(25), - [anon_sym_long] = ACTIONS(25), - [anon_sym_short] = ACTIONS(25), - [sym_primitive_type] = ACTIONS(27), - [anon_sym_enum] = ACTIONS(29), - [anon_sym_struct] = ACTIONS(31), - [anon_sym_union] = ACTIONS(33), - [sym_identifier] = ACTIONS(35), - [sym_comment] = ACTIONS(37), + [sym_parameter_list] = STATE(278), + [anon_sym_SEMI] = ACTIONS(734), + [anon_sym_LPAREN2] = ACTIONS(441), + [anon_sym_LBRACK] = ACTIONS(736), + [sym_comment] = ACTIONS(59), }, [135] = { - [sym_string_literal] = STATE(273), - [anon_sym_DQUOTE] = ACTIONS(642), - [sym_system_lib_string] = ACTIONS(644), - [sym_comment] = ACTIONS(37), + [sym__type_declarator] = STATE(279), + [sym_pointer_type_declarator] = STATE(279), + [sym_function_type_declarator] = STATE(279), + [sym_array_type_declarator] = STATE(279), + [anon_sym_LPAREN2] = ACTIONS(282), + [anon_sym_STAR] = ACTIONS(284), + [sym_identifier] = ACTIONS(286), + [sym_comment] = ACTIONS(59), }, [136] = { - [sym_identifier] = ACTIONS(646), - [sym_comment] = ACTIONS(37), + [sym_type_qualifier] = STATE(136), + [aux_sym_type_definition_repeat1] = STATE(136), + [anon_sym_const] = ACTIONS(738), + [anon_sym_restrict] = ACTIONS(738), + [anon_sym_volatile] = ACTIONS(738), + [anon_sym__Atomic] = ACTIONS(738), + [anon_sym_unsigned] = ACTIONS(741), + [anon_sym_long] = ACTIONS(741), + [anon_sym_short] = ACTIONS(741), + [sym_primitive_type] = ACTIONS(741), + [anon_sym_enum] = ACTIONS(741), + [anon_sym_struct] = ACTIONS(741), + [anon_sym_union] = ACTIONS(741), + [sym_identifier] = ACTIONS(741), + [sym_comment] = ACTIONS(59), }, [137] = { - [sym_preproc_arg] = ACTIONS(648), - [sym_comment] = ACTIONS(47), + [aux_sym_sized_type_specifier_repeat1] = STATE(137), + [anon_sym_LPAREN2] = ACTIONS(645), + [anon_sym_STAR] = ACTIONS(645), + [anon_sym_unsigned] = ACTIONS(743), + [anon_sym_long] = ACTIONS(743), + [anon_sym_short] = ACTIONS(743), + [sym_primitive_type] = ACTIONS(647), + [sym_identifier] = ACTIONS(647), + [sym_comment] = ACTIONS(59), }, [138] = { - [sym_identifier] = ACTIONS(650), - [sym_comment] = ACTIONS(37), + [sym_preproc_include] = STATE(281), + [sym_preproc_def] = STATE(281), + [sym_preproc_function_def] = STATE(281), + [sym_preproc_call] = STATE(281), + [sym_preproc_if] = STATE(281), + [sym_preproc_ifdef] = STATE(281), + [sym_function_definition] = STATE(281), + [sym_declaration] = STATE(281), + [sym_type_definition] = STATE(281), + [sym__declaration_specifiers] = STATE(24), + [sym_linkage_specification] = STATE(281), + [sym_storage_class_specifier] = STATE(30), + [sym_type_qualifier] = STATE(30), + [sym__type_specifier] = STATE(25), + [sym_sized_type_specifier] = STATE(25), + [sym_enum_specifier] = STATE(25), + [sym_struct_specifier] = STATE(25), + [sym_union_specifier] = STATE(25), + [sym__expression] = STATE(26), + [sym_conditional_expression] = STATE(26), + [sym_assignment_expression] = STATE(26), + [sym_pointer_expression] = STATE(26), + [sym_logical_expression] = STATE(26), + [sym_bitwise_expression] = STATE(26), + [sym_equality_expression] = STATE(26), + [sym_relational_expression] = STATE(26), + [sym_shift_expression] = STATE(26), + [sym_math_expression] = STATE(26), + [sym_cast_expression] = STATE(26), + [sym_sizeof_expression] = STATE(26), + [sym_subscript_expression] = STATE(26), + [sym_call_expression] = STATE(27), + [sym_field_expression] = STATE(26), + [sym_compound_literal_expression] = STATE(26), + [sym_parenthesized_expression] = STATE(26), + [sym_char_literal] = STATE(26), + [sym_concatenated_string] = STATE(26), + [sym_string_literal] = STATE(28), + [sym__empty_declaration] = STATE(281), + [sym_macro_type_specifier] = STATE(25), + [aux_sym_translation_unit_repeat1] = STATE(281), + [aux_sym__declaration_specifiers_repeat1] = STATE(30), + [aux_sym_sized_type_specifier_repeat1] = STATE(31), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(7), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(9), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(11), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(13), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(13), + [sym_preproc_directive] = ACTIONS(15), + [anon_sym_typedef] = ACTIONS(17), + [anon_sym_extern] = ACTIONS(19), + [anon_sym_RBRACE] = ACTIONS(746), + [anon_sym_LPAREN2] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_static] = ACTIONS(25), + [anon_sym_auto] = ACTIONS(25), + [anon_sym_register] = ACTIONS(25), + [anon_sym_inline] = ACTIONS(25), + [anon_sym_const] = ACTIONS(27), + [anon_sym_restrict] = ACTIONS(27), + [anon_sym_volatile] = ACTIONS(27), + [anon_sym__Atomic] = ACTIONS(27), + [anon_sym_unsigned] = ACTIONS(29), + [anon_sym_long] = ACTIONS(29), + [anon_sym_short] = ACTIONS(29), + [sym_primitive_type] = ACTIONS(31), + [anon_sym_enum] = ACTIONS(33), + [anon_sym_struct] = ACTIONS(35), + [anon_sym_union] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(41), + [anon_sym_PLUS] = ACTIONS(43), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_DASH_DASH] = ACTIONS(45), + [anon_sym_PLUS_PLUS] = ACTIONS(45), + [anon_sym_sizeof] = ACTIONS(47), + [sym_number_literal] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(55), + [sym_false] = ACTIONS(55), + [sym_null] = ACTIONS(55), + [sym_identifier] = ACTIONS(57), + [sym_comment] = ACTIONS(59), }, [139] = { - [anon_sym_LF] = ACTIONS(652), - [sym_preproc_arg] = ACTIONS(654), - [sym_comment] = ACTIONS(47), + [ts_builtin_sym_end] = ACTIONS(748), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(750), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(750), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(750), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(750), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(750), + [sym_preproc_directive] = ACTIONS(750), + [anon_sym_typedef] = ACTIONS(750), + [anon_sym_extern] = ACTIONS(750), + [anon_sym_RBRACE] = ACTIONS(748), + [anon_sym_LPAREN2] = ACTIONS(748), + [anon_sym_STAR] = ACTIONS(748), + [anon_sym_static] = ACTIONS(750), + [anon_sym_auto] = ACTIONS(750), + [anon_sym_register] = ACTIONS(750), + [anon_sym_inline] = ACTIONS(750), + [anon_sym_const] = ACTIONS(750), + [anon_sym_restrict] = ACTIONS(750), + [anon_sym_volatile] = ACTIONS(750), + [anon_sym__Atomic] = ACTIONS(750), + [anon_sym_unsigned] = ACTIONS(750), + [anon_sym_long] = ACTIONS(750), + [anon_sym_short] = ACTIONS(750), + [sym_primitive_type] = ACTIONS(750), + [anon_sym_enum] = ACTIONS(750), + [anon_sym_struct] = ACTIONS(750), + [anon_sym_union] = ACTIONS(750), + [anon_sym_AMP] = ACTIONS(748), + [anon_sym_BANG] = ACTIONS(748), + [anon_sym_TILDE] = ACTIONS(748), + [anon_sym_PLUS] = ACTIONS(750), + [anon_sym_DASH] = ACTIONS(750), + [anon_sym_DASH_DASH] = ACTIONS(748), + [anon_sym_PLUS_PLUS] = ACTIONS(748), + [anon_sym_sizeof] = ACTIONS(750), + [sym_number_literal] = ACTIONS(748), + [anon_sym_SQUOTE] = ACTIONS(748), + [anon_sym_DQUOTE] = ACTIONS(748), + [sym_true] = ACTIONS(750), + [sym_false] = ACTIONS(750), + [sym_null] = ACTIONS(750), + [sym_identifier] = ACTIONS(750), + [sym_comment] = ACTIONS(59), }, [140] = { - [sym_type_qualifier] = STATE(280), - [sym__type_specifier] = STATE(279), - [sym_sized_type_specifier] = STATE(279), - [sym_enum_specifier] = STATE(279), - [sym_struct_specifier] = STATE(279), - [sym_union_specifier] = STATE(279), - [sym_macro_type_specifier] = STATE(279), - [aux_sym_type_definition_repeat1] = STATE(280), - [aux_sym_sized_type_specifier_repeat1] = STATE(30), - [anon_sym_const] = ACTIONS(23), - [anon_sym_restrict] = ACTIONS(23), - [anon_sym_volatile] = ACTIONS(23), - [anon_sym__Atomic] = ACTIONS(23), - [anon_sym_unsigned] = ACTIONS(55), - [anon_sym_long] = ACTIONS(55), - [anon_sym_short] = ACTIONS(55), - [sym_primitive_type] = ACTIONS(656), - [anon_sym_enum] = ACTIONS(29), - [anon_sym_struct] = ACTIONS(31), - [anon_sym_union] = ACTIONS(33), - [sym_identifier] = ACTIONS(35), - [sym_comment] = ACTIONS(37), + [sym__declarator] = STATE(79), + [sym_pointer_declarator] = STATE(79), + [sym_function_declarator] = STATE(79), + [sym_array_declarator] = STATE(79), + [sym_init_declarator] = STATE(80), + [anon_sym_LPAREN2] = ACTIONS(174), + [anon_sym_STAR] = ACTIONS(176), + [sym_identifier] = ACTIONS(178), + [sym_comment] = ACTIONS(59), }, [141] = { - [sym_string_literal] = STATE(281), - [anon_sym_extern] = ACTIONS(59), - [anon_sym_static] = ACTIONS(59), - [anon_sym_auto] = ACTIONS(59), - [anon_sym_register] = ACTIONS(59), - [anon_sym_inline] = ACTIONS(59), - [anon_sym_const] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(59), - [anon_sym_enum] = ACTIONS(59), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_identifier] = ACTIONS(59), - [sym_comment] = ACTIONS(37), + [sym_storage_class_specifier] = STATE(282), + [sym_type_qualifier] = STATE(282), + [aux_sym__declaration_specifiers_repeat1] = STATE(282), + [anon_sym_extern] = ACTIONS(25), + [anon_sym_LPAREN2] = ACTIONS(180), + [anon_sym_STAR] = ACTIONS(180), + [anon_sym_static] = ACTIONS(25), + [anon_sym_auto] = ACTIONS(25), + [anon_sym_register] = ACTIONS(25), + [anon_sym_inline] = ACTIONS(25), + [anon_sym_const] = ACTIONS(27), + [anon_sym_restrict] = ACTIONS(27), + [anon_sym_volatile] = ACTIONS(27), + [anon_sym__Atomic] = ACTIONS(27), + [sym_identifier] = ACTIONS(182), + [sym_comment] = ACTIONS(59), }, [142] = { - [sym__declarator] = STATE(283), - [sym_pointer_declarator] = STATE(283), - [sym_function_declarator] = STATE(283), - [sym_array_declarator] = STATE(283), - [sym_init_declarator] = STATE(284), - [anon_sym_SEMI] = ACTIONS(658), - [anon_sym_LPAREN2] = ACTIONS(88), - [anon_sym_STAR] = ACTIONS(90), - [sym_identifier] = ACTIONS(660), - [sym_comment] = ACTIONS(37), + [sym_storage_class_specifier] = STATE(103), + [sym_type_qualifier] = STATE(103), + [sym__type_specifier] = STATE(283), + [sym_sized_type_specifier] = STATE(283), + [sym_enum_specifier] = STATE(283), + [sym_struct_specifier] = STATE(283), + [sym_union_specifier] = STATE(283), + [sym_macro_type_specifier] = STATE(283), + [aux_sym__declaration_specifiers_repeat1] = STATE(103), + [aux_sym_sized_type_specifier_repeat1] = STATE(143), + [anon_sym_extern] = ACTIONS(25), + [anon_sym_static] = ACTIONS(25), + [anon_sym_auto] = ACTIONS(25), + [anon_sym_register] = ACTIONS(25), + [anon_sym_inline] = ACTIONS(25), + [anon_sym_const] = ACTIONS(27), + [anon_sym_restrict] = ACTIONS(27), + [anon_sym_volatile] = ACTIONS(27), + [anon_sym__Atomic] = ACTIONS(27), + [anon_sym_unsigned] = ACTIONS(294), + [anon_sym_long] = ACTIONS(294), + [anon_sym_short] = ACTIONS(294), + [sym_primitive_type] = ACTIONS(752), + [anon_sym_enum] = ACTIONS(33), + [anon_sym_struct] = ACTIONS(35), + [anon_sym_union] = ACTIONS(37), + [sym_identifier] = ACTIONS(81), + [sym_comment] = ACTIONS(59), }, [143] = { - [sym_preproc_include] = STATE(285), - [sym_preproc_def] = STATE(285), - [sym_preproc_function_def] = STATE(285), - [sym_preproc_call] = STATE(285), - [sym_preproc_if] = STATE(285), - [sym_preproc_ifdef] = STATE(285), - [sym_function_definition] = STATE(285), - [sym_declaration] = STATE(285), - [sym_type_definition] = STATE(285), - [sym__declaration_specifiers] = STATE(142), - [sym_linkage_specification] = STATE(285), - [sym_storage_class_specifier] = STATE(19), - [sym_type_qualifier] = STATE(19), - [sym__type_specifier] = STATE(17), - [sym_sized_type_specifier] = STATE(17), - [sym_enum_specifier] = STATE(17), - [sym_struct_specifier] = STATE(17), - [sym_union_specifier] = STATE(17), - [sym__empty_declaration] = STATE(285), - [sym_macro_type_specifier] = STATE(17), - [aux_sym_translation_unit_repeat1] = STATE(285), - [aux_sym__declaration_specifiers_repeat1] = STATE(19), - [aux_sym_sized_type_specifier_repeat1] = STATE(20), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(347), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(349), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(351), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(662), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(355), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(355), - [sym_preproc_directive] = ACTIONS(357), - [anon_sym_typedef] = ACTIONS(359), - [anon_sym_extern] = ACTIONS(361), - [anon_sym_static] = ACTIONS(21), - [anon_sym_auto] = ACTIONS(21), - [anon_sym_register] = ACTIONS(21), - [anon_sym_inline] = ACTIONS(21), - [anon_sym_const] = ACTIONS(23), - [anon_sym_restrict] = ACTIONS(23), - [anon_sym_volatile] = ACTIONS(23), - [anon_sym__Atomic] = ACTIONS(23), - [anon_sym_unsigned] = ACTIONS(25), - [anon_sym_long] = ACTIONS(25), - [anon_sym_short] = ACTIONS(25), - [sym_primitive_type] = ACTIONS(27), - [anon_sym_enum] = ACTIONS(29), - [anon_sym_struct] = ACTIONS(31), - [anon_sym_union] = ACTIONS(33), - [sym_identifier] = ACTIONS(35), - [sym_comment] = ACTIONS(37), + [aux_sym_sized_type_specifier_repeat1] = STATE(284), + [anon_sym_extern] = ACTIONS(228), + [anon_sym_LPAREN2] = ACTIONS(226), + [anon_sym_STAR] = ACTIONS(226), + [anon_sym_static] = ACTIONS(228), + [anon_sym_auto] = ACTIONS(228), + [anon_sym_register] = ACTIONS(228), + [anon_sym_inline] = ACTIONS(228), + [anon_sym_const] = ACTIONS(228), + [anon_sym_restrict] = ACTIONS(228), + [anon_sym_volatile] = ACTIONS(228), + [anon_sym__Atomic] = ACTIONS(228), + [anon_sym_unsigned] = ACTIONS(754), + [anon_sym_long] = ACTIONS(754), + [anon_sym_short] = ACTIONS(754), + [sym_primitive_type] = ACTIONS(232), + [sym_identifier] = ACTIONS(234), + [sym_comment] = ACTIONS(59), }, [144] = { - [sym_preproc_include] = STATE(287), - [sym_preproc_def] = STATE(287), - [sym_preproc_function_def] = STATE(287), - [sym_preproc_call] = STATE(287), - [sym_preproc_if] = STATE(287), - [sym_preproc_ifdef] = STATE(287), - [sym_preproc_else] = STATE(286), - [sym_preproc_elif] = STATE(286), - [sym_function_definition] = STATE(287), - [sym_declaration] = STATE(287), - [sym_type_definition] = STATE(287), - [sym__declaration_specifiers] = STATE(70), - [sym_linkage_specification] = STATE(287), - [sym_storage_class_specifier] = STATE(19), - [sym_type_qualifier] = STATE(19), - [sym__type_specifier] = STATE(17), - [sym_sized_type_specifier] = STATE(17), - [sym_enum_specifier] = STATE(17), - [sym_struct_specifier] = STATE(17), - [sym_union_specifier] = STATE(17), - [sym__empty_declaration] = STATE(287), - [sym_macro_type_specifier] = STATE(17), - [aux_sym_translation_unit_repeat1] = STATE(287), - [aux_sym__declaration_specifiers_repeat1] = STATE(19), - [aux_sym_sized_type_specifier_repeat1] = STATE(20), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(127), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(129), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(131), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(664), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(135), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(135), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(137), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(139), - [sym_preproc_directive] = ACTIONS(141), - [anon_sym_typedef] = ACTIONS(143), - [anon_sym_extern] = ACTIONS(145), - [anon_sym_static] = ACTIONS(21), - [anon_sym_auto] = ACTIONS(21), - [anon_sym_register] = ACTIONS(21), - [anon_sym_inline] = ACTIONS(21), - [anon_sym_const] = ACTIONS(23), - [anon_sym_restrict] = ACTIONS(23), - [anon_sym_volatile] = ACTIONS(23), - [anon_sym__Atomic] = ACTIONS(23), - [anon_sym_unsigned] = ACTIONS(25), - [anon_sym_long] = ACTIONS(25), - [anon_sym_short] = ACTIONS(25), - [sym_primitive_type] = ACTIONS(27), - [anon_sym_enum] = ACTIONS(29), - [anon_sym_struct] = ACTIONS(31), - [anon_sym_union] = ACTIONS(33), - [sym_identifier] = ACTIONS(35), - [sym_comment] = ACTIONS(37), + [anon_sym_RPAREN] = ACTIONS(756), + [sym_comment] = ACTIONS(59), }, [145] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(151), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(151), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(151), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(151), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(151), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(151), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(151), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(151), - [sym_preproc_directive] = ACTIONS(151), - [anon_sym_SEMI] = ACTIONS(149), - [anon_sym_typedef] = ACTIONS(151), - [anon_sym_extern] = ACTIONS(151), - [anon_sym_LBRACE] = ACTIONS(149), - [anon_sym_LPAREN2] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(149), - [anon_sym_static] = ACTIONS(151), - [anon_sym_auto] = ACTIONS(151), - [anon_sym_register] = ACTIONS(151), - [anon_sym_inline] = ACTIONS(151), - [anon_sym_const] = ACTIONS(151), - [anon_sym_restrict] = ACTIONS(151), - [anon_sym_volatile] = ACTIONS(151), - [anon_sym__Atomic] = ACTIONS(151), - [anon_sym_unsigned] = ACTIONS(151), - [anon_sym_long] = ACTIONS(151), - [anon_sym_short] = ACTIONS(151), - [sym_primitive_type] = ACTIONS(151), - [anon_sym_enum] = ACTIONS(151), - [anon_sym_struct] = ACTIONS(151), - [anon_sym_union] = ACTIONS(151), - [anon_sym_if] = ACTIONS(151), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_case] = ACTIONS(151), - [anon_sym_default] = ACTIONS(151), - [anon_sym_while] = ACTIONS(151), - [anon_sym_do] = ACTIONS(151), - [anon_sym_for] = ACTIONS(151), - [anon_sym_return] = ACTIONS(151), - [anon_sym_break] = ACTIONS(151), - [anon_sym_continue] = ACTIONS(151), - [anon_sym_goto] = ACTIONS(151), - [anon_sym_AMP] = ACTIONS(149), - [anon_sym_BANG] = ACTIONS(149), - [anon_sym_TILDE] = ACTIONS(149), - [anon_sym_PLUS] = ACTIONS(151), - [anon_sym_DASH] = ACTIONS(151), - [anon_sym_DASH_DASH] = ACTIONS(149), - [anon_sym_PLUS_PLUS] = ACTIONS(149), - [anon_sym_sizeof] = ACTIONS(151), - [sym_number_literal] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(149), - [anon_sym_DQUOTE] = ACTIONS(149), - [sym_true] = ACTIONS(151), - [sym_false] = ACTIONS(151), - [sym_null] = ACTIONS(151), - [sym_identifier] = ACTIONS(151), - [sym_comment] = ACTIONS(37), + [sym_type_qualifier] = STATE(56), + [sym__type_specifier] = STATE(51), + [sym_sized_type_specifier] = STATE(51), + [sym_enum_specifier] = STATE(51), + [sym_struct_specifier] = STATE(51), + [sym_union_specifier] = STATE(51), + [sym__expression] = STATE(52), + [sym_comma_expression] = STATE(53), + [sym_conditional_expression] = STATE(52), + [sym_assignment_expression] = STATE(52), + [sym_pointer_expression] = STATE(52), + [sym_logical_expression] = STATE(52), + [sym_bitwise_expression] = STATE(52), + [sym_equality_expression] = STATE(52), + [sym_relational_expression] = STATE(52), + [sym_shift_expression] = STATE(52), + [sym_math_expression] = STATE(52), + [sym_cast_expression] = STATE(52), + [sym_type_descriptor] = STATE(286), + [sym_sizeof_expression] = STATE(52), + [sym_subscript_expression] = STATE(52), + [sym_call_expression] = STATE(52), + [sym_field_expression] = STATE(52), + [sym_compound_literal_expression] = STATE(52), + [sym_parenthesized_expression] = STATE(52), + [sym_char_literal] = STATE(52), + [sym_concatenated_string] = STATE(52), + [sym_string_literal] = STATE(55), + [sym_macro_type_specifier] = STATE(51), + [aux_sym_type_definition_repeat1] = STATE(56), + [aux_sym_sized_type_specifier_repeat1] = STATE(57), + [anon_sym_LPAREN2] = ACTIONS(85), + [anon_sym_STAR] = ACTIONS(87), + [anon_sym_const] = ACTIONS(27), + [anon_sym_restrict] = ACTIONS(27), + [anon_sym_volatile] = ACTIONS(27), + [anon_sym__Atomic] = ACTIONS(27), + [anon_sym_unsigned] = ACTIONS(89), + [anon_sym_long] = ACTIONS(89), + [anon_sym_short] = ACTIONS(89), + [sym_primitive_type] = ACTIONS(91), + [anon_sym_enum] = ACTIONS(33), + [anon_sym_struct] = ACTIONS(35), + [anon_sym_union] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_PLUS] = ACTIONS(97), + [anon_sym_DASH] = ACTIONS(97), + [anon_sym_DASH_DASH] = ACTIONS(99), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(105), + [sym_false] = ACTIONS(105), + [sym_null] = ACTIONS(105), + [sym_identifier] = ACTIONS(107), + [sym_comment] = ACTIONS(59), }, [146] = { - [anon_sym_LF] = ACTIONS(666), - [sym_comment] = ACTIONS(47), + [sym_argument_list] = STATE(98), + [anon_sym_COMMA] = ACTIONS(413), + [anon_sym_RPAREN] = ACTIONS(413), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(319), + [anon_sym_LBRACK] = ACTIONS(188), + [anon_sym_EQ] = ACTIONS(411), + [anon_sym_QMARK] = ACTIONS(413), + [anon_sym_STAR_EQ] = ACTIONS(413), + [anon_sym_SLASH_EQ] = ACTIONS(413), + [anon_sym_PERCENT_EQ] = ACTIONS(413), + [anon_sym_PLUS_EQ] = ACTIONS(413), + [anon_sym_DASH_EQ] = ACTIONS(413), + [anon_sym_LT_LT_EQ] = ACTIONS(413), + [anon_sym_GT_GT_EQ] = ACTIONS(413), + [anon_sym_AMP_EQ] = ACTIONS(413), + [anon_sym_CARET_EQ] = ACTIONS(413), + [anon_sym_PIPE_EQ] = ACTIONS(413), + [anon_sym_AMP] = ACTIONS(411), + [anon_sym_PIPE_PIPE] = ACTIONS(413), + [anon_sym_AMP_AMP] = ACTIONS(413), + [anon_sym_PIPE] = ACTIONS(411), + [anon_sym_CARET] = ACTIONS(411), + [anon_sym_EQ_EQ] = ACTIONS(413), + [anon_sym_BANG_EQ] = ACTIONS(413), + [anon_sym_LT] = ACTIONS(411), + [anon_sym_GT] = ACTIONS(411), + [anon_sym_LT_EQ] = ACTIONS(413), + [anon_sym_GT_EQ] = ACTIONS(413), + [anon_sym_LT_LT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(343), + [anon_sym_PLUS] = ACTIONS(345), + [anon_sym_DASH] = ACTIONS(345), + [anon_sym_SLASH] = ACTIONS(319), + [anon_sym_PERCENT] = ACTIONS(319), + [anon_sym_DASH_DASH] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(216), + [anon_sym_DOT] = ACTIONS(218), + [anon_sym_DASH_GT] = ACTIONS(218), + [sym_comment] = ACTIONS(59), }, [147] = { - [sym__type_declarator] = STATE(289), - [sym_pointer_type_declarator] = STATE(289), - [sym_function_type_declarator] = STATE(289), - [sym_array_type_declarator] = STATE(289), - [anon_sym_LPAREN2] = ACTIONS(155), - [anon_sym_STAR] = ACTIONS(157), - [sym_identifier] = ACTIONS(159), - [sym_comment] = ACTIONS(37), + [sym__declaration_specifiers] = STATE(289), + [sym__abstract_declarator] = STATE(290), + [sym_abstract_pointer_declarator] = STATE(290), + [sym_abstract_function_declarator] = STATE(290), + [sym_abstract_array_declarator] = STATE(290), + [sym_storage_class_specifier] = STATE(292), + [sym_type_qualifier] = STATE(292), + [sym__type_specifier] = STATE(291), + [sym_sized_type_specifier] = STATE(291), + [sym_enum_specifier] = STATE(291), + [sym_struct_specifier] = STATE(291), + [sym_union_specifier] = STATE(291), + [sym_parameter_list] = STATE(151), + [sym_parameter_declaration] = STATE(287), + [sym_macro_type_specifier] = STATE(291), + [aux_sym__declaration_specifiers_repeat1] = STATE(292), + [aux_sym_sized_type_specifier_repeat1] = STATE(293), + [anon_sym_DOT_DOT_DOT] = ACTIONS(758), + [anon_sym_RPAREN] = ACTIONS(760), + [anon_sym_extern] = ACTIONS(25), + [anon_sym_LPAREN2] = ACTIONS(309), + [anon_sym_STAR] = ACTIONS(311), + [anon_sym_LBRACK] = ACTIONS(313), + [anon_sym_static] = ACTIONS(25), + [anon_sym_auto] = ACTIONS(25), + [anon_sym_register] = ACTIONS(25), + [anon_sym_inline] = ACTIONS(25), + [anon_sym_const] = ACTIONS(27), + [anon_sym_restrict] = ACTIONS(27), + [anon_sym_volatile] = ACTIONS(27), + [anon_sym__Atomic] = ACTIONS(27), + [anon_sym_unsigned] = ACTIONS(762), + [anon_sym_long] = ACTIONS(762), + [anon_sym_short] = ACTIONS(762), + [sym_primitive_type] = ACTIONS(764), + [anon_sym_enum] = ACTIONS(33), + [anon_sym_struct] = ACTIONS(35), + [anon_sym_union] = ACTIONS(37), + [sym_identifier] = ACTIONS(81), + [sym_comment] = ACTIONS(59), }, [148] = { - [sym_type_qualifier] = STATE(81), - [sym__type_specifier] = STATE(290), - [sym_sized_type_specifier] = STATE(290), - [sym_enum_specifier] = STATE(290), - [sym_struct_specifier] = STATE(290), - [sym_union_specifier] = STATE(290), - [sym_macro_type_specifier] = STATE(290), - [aux_sym_type_definition_repeat1] = STATE(81), - [aux_sym_sized_type_specifier_repeat1] = STATE(30), - [anon_sym_const] = ACTIONS(23), - [anon_sym_restrict] = ACTIONS(23), - [anon_sym_volatile] = ACTIONS(23), - [anon_sym__Atomic] = ACTIONS(23), - [anon_sym_unsigned] = ACTIONS(55), - [anon_sym_long] = ACTIONS(55), - [anon_sym_short] = ACTIONS(55), - [sym_primitive_type] = ACTIONS(668), - [anon_sym_enum] = ACTIONS(29), - [anon_sym_struct] = ACTIONS(31), - [anon_sym_union] = ACTIONS(33), - [sym_identifier] = ACTIONS(35), - [sym_comment] = ACTIONS(37), + [sym__abstract_declarator] = STATE(294), + [sym_abstract_pointer_declarator] = STATE(294), + [sym_abstract_function_declarator] = STATE(294), + [sym_abstract_array_declarator] = STATE(294), + [sym_type_qualifier] = STATE(295), + [sym_parameter_list] = STATE(151), + [aux_sym_type_definition_repeat1] = STATE(295), + [anon_sym_RPAREN] = ACTIONS(766), + [anon_sym_LPAREN2] = ACTIONS(309), + [anon_sym_STAR] = ACTIONS(311), + [anon_sym_LBRACK] = ACTIONS(313), + [anon_sym_const] = ACTIONS(768), + [anon_sym_restrict] = ACTIONS(768), + [anon_sym_volatile] = ACTIONS(768), + [anon_sym__Atomic] = ACTIONS(768), + [sym_comment] = ACTIONS(59), }, [149] = { - [sym_function_definition] = STATE(292), - [sym_declaration] = STATE(292), - [sym__declaration_specifiers] = STATE(293), - [sym_declaration_list] = STATE(292), - [sym_storage_class_specifier] = STATE(87), - [sym_type_qualifier] = STATE(87), - [sym__type_specifier] = STATE(86), - [sym_sized_type_specifier] = STATE(86), - [sym_enum_specifier] = STATE(86), - [sym_struct_specifier] = STATE(86), - [sym_union_specifier] = STATE(86), - [sym_macro_type_specifier] = STATE(86), - [aux_sym__declaration_specifiers_repeat1] = STATE(87), - [aux_sym_sized_type_specifier_repeat1] = STATE(88), - [anon_sym_extern] = ACTIONS(21), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_static] = ACTIONS(21), - [anon_sym_auto] = ACTIONS(21), - [anon_sym_register] = ACTIONS(21), - [anon_sym_inline] = ACTIONS(21), - [anon_sym_const] = ACTIONS(23), - [anon_sym_restrict] = ACTIONS(23), - [anon_sym_volatile] = ACTIONS(23), - [anon_sym__Atomic] = ACTIONS(23), - [anon_sym_unsigned] = ACTIONS(167), - [anon_sym_long] = ACTIONS(167), - [anon_sym_short] = ACTIONS(167), - [sym_primitive_type] = ACTIONS(169), - [anon_sym_enum] = ACTIONS(29), - [anon_sym_struct] = ACTIONS(31), - [anon_sym_union] = ACTIONS(33), - [sym_identifier] = ACTIONS(35), - [sym_comment] = ACTIONS(37), + [sym__declaration_specifiers] = STATE(298), + [sym_storage_class_specifier] = STATE(301), + [sym_type_qualifier] = STATE(301), + [sym__type_specifier] = STATE(299), + [sym_sized_type_specifier] = STATE(299), + [sym_enum_specifier] = STATE(299), + [sym_struct_specifier] = STATE(299), + [sym_union_specifier] = STATE(299), + [sym__expression] = STATE(300), + [sym_conditional_expression] = STATE(300), + [sym_assignment_expression] = STATE(300), + [sym_pointer_expression] = STATE(300), + [sym_logical_expression] = STATE(300), + [sym_bitwise_expression] = STATE(300), + [sym_equality_expression] = STATE(300), + [sym_relational_expression] = STATE(300), + [sym_shift_expression] = STATE(300), + [sym_math_expression] = STATE(300), + [sym_cast_expression] = STATE(300), + [sym_sizeof_expression] = STATE(300), + [sym_subscript_expression] = STATE(300), + [sym_call_expression] = STATE(300), + [sym_field_expression] = STATE(300), + [sym_compound_literal_expression] = STATE(300), + [sym_parenthesized_expression] = STATE(300), + [sym_char_literal] = STATE(300), + [sym_concatenated_string] = STATE(300), + [sym_string_literal] = STATE(214), + [sym_macro_type_specifier] = STATE(299), + [aux_sym__declaration_specifiers_repeat1] = STATE(301), + [aux_sym_sized_type_specifier_repeat1] = STATE(302), + [anon_sym_extern] = ACTIONS(25), + [anon_sym_LPAREN2] = ACTIONS(461), + [anon_sym_STAR] = ACTIONS(463), + [anon_sym_RBRACK] = ACTIONS(770), + [anon_sym_static] = ACTIONS(25), + [anon_sym_auto] = ACTIONS(25), + [anon_sym_register] = ACTIONS(25), + [anon_sym_inline] = ACTIONS(25), + [anon_sym_const] = ACTIONS(27), + [anon_sym_restrict] = ACTIONS(27), + [anon_sym_volatile] = ACTIONS(27), + [anon_sym__Atomic] = ACTIONS(27), + [anon_sym_unsigned] = ACTIONS(772), + [anon_sym_long] = ACTIONS(772), + [anon_sym_short] = ACTIONS(772), + [sym_primitive_type] = ACTIONS(774), + [anon_sym_enum] = ACTIONS(33), + [anon_sym_struct] = ACTIONS(35), + [anon_sym_union] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(463), + [anon_sym_BANG] = ACTIONS(465), + [anon_sym_TILDE] = ACTIONS(467), + [anon_sym_PLUS] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(469), + [anon_sym_DASH_DASH] = ACTIONS(471), + [anon_sym_PLUS_PLUS] = ACTIONS(471), + [anon_sym_sizeof] = ACTIONS(473), + [sym_number_literal] = ACTIONS(776), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(778), + [sym_false] = ACTIONS(778), + [sym_null] = ACTIONS(778), + [sym_identifier] = ACTIONS(780), + [sym_comment] = ACTIONS(59), }, [150] = { - [ts_builtin_sym_end] = ACTIONS(672), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(674), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(674), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(674), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(674), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(674), - [sym_preproc_directive] = ACTIONS(674), - [anon_sym_typedef] = ACTIONS(674), - [anon_sym_extern] = ACTIONS(674), - [anon_sym_RBRACE] = ACTIONS(672), - [anon_sym_static] = ACTIONS(674), - [anon_sym_auto] = ACTIONS(674), - [anon_sym_register] = ACTIONS(674), - [anon_sym_inline] = ACTIONS(674), - [anon_sym_const] = ACTIONS(674), - [anon_sym_restrict] = ACTIONS(674), - [anon_sym_volatile] = ACTIONS(674), - [anon_sym__Atomic] = ACTIONS(674), - [anon_sym_unsigned] = ACTIONS(674), - [anon_sym_long] = ACTIONS(674), - [anon_sym_short] = ACTIONS(674), - [sym_primitive_type] = ACTIONS(674), - [anon_sym_enum] = ACTIONS(674), - [anon_sym_struct] = ACTIONS(674), - [anon_sym_union] = ACTIONS(674), - [sym_identifier] = ACTIONS(674), - [sym_comment] = ACTIONS(37), + [sym_parameter_list] = STATE(304), + [anon_sym_RPAREN] = ACTIONS(782), + [anon_sym_LPAREN2] = ACTIONS(441), + [anon_sym_LBRACK] = ACTIONS(784), + [sym_comment] = ACTIONS(59), }, [151] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(217), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(217), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(217), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(217), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(217), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(217), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(217), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(217), - [sym_preproc_directive] = ACTIONS(217), - [anon_sym_SEMI] = ACTIONS(215), - [anon_sym_typedef] = ACTIONS(217), - [anon_sym_extern] = ACTIONS(217), - [anon_sym_LBRACE] = ACTIONS(215), - [anon_sym_LPAREN2] = ACTIONS(215), - [anon_sym_STAR] = ACTIONS(215), - [anon_sym_static] = ACTIONS(217), - [anon_sym_auto] = ACTIONS(217), - [anon_sym_register] = ACTIONS(217), - [anon_sym_inline] = ACTIONS(217), - [anon_sym_const] = ACTIONS(217), - [anon_sym_restrict] = ACTIONS(217), - [anon_sym_volatile] = ACTIONS(217), - [anon_sym__Atomic] = ACTIONS(217), - [anon_sym_unsigned] = ACTIONS(217), - [anon_sym_long] = ACTIONS(217), - [anon_sym_short] = ACTIONS(217), - [sym_primitive_type] = ACTIONS(217), - [anon_sym_enum] = ACTIONS(217), - [anon_sym_struct] = ACTIONS(217), - [anon_sym_union] = ACTIONS(217), - [anon_sym_if] = ACTIONS(217), - [anon_sym_switch] = ACTIONS(217), - [anon_sym_case] = ACTIONS(217), - [anon_sym_default] = ACTIONS(217), - [anon_sym_while] = ACTIONS(217), - [anon_sym_do] = ACTIONS(217), - [anon_sym_for] = ACTIONS(217), - [anon_sym_return] = ACTIONS(217), - [anon_sym_break] = ACTIONS(217), - [anon_sym_continue] = ACTIONS(217), - [anon_sym_goto] = ACTIONS(217), - [anon_sym_AMP] = ACTIONS(215), - [anon_sym_BANG] = ACTIONS(215), - [anon_sym_TILDE] = ACTIONS(215), - [anon_sym_PLUS] = ACTIONS(217), - [anon_sym_DASH] = ACTIONS(217), - [anon_sym_DASH_DASH] = ACTIONS(215), - [anon_sym_PLUS_PLUS] = ACTIONS(215), - [anon_sym_sizeof] = ACTIONS(217), - [sym_number_literal] = ACTIONS(215), - [anon_sym_SQUOTE] = ACTIONS(215), - [anon_sym_DQUOTE] = ACTIONS(215), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [sym_null] = ACTIONS(217), - [sym_identifier] = ACTIONS(217), - [sym_comment] = ACTIONS(37), + [anon_sym_COMMA] = ACTIONS(786), + [anon_sym_RPAREN] = ACTIONS(786), + [anon_sym_LPAREN2] = ACTIONS(786), + [anon_sym_LBRACK] = ACTIONS(786), + [sym_comment] = ACTIONS(59), }, [152] = { - [sym_compound_statement] = STATE(296), - [sym_parameter_list] = STATE(119), - [aux_sym_declaration_repeat1] = STATE(297), - [anon_sym_COMMA] = ACTIONS(225), - [anon_sym_SEMI] = ACTIONS(676), - [anon_sym_LBRACE] = ACTIONS(678), - [anon_sym_LPAREN2] = ACTIONS(231), - [anon_sym_LBRACK] = ACTIONS(233), - [anon_sym_EQ] = ACTIONS(235), - [sym_comment] = ACTIONS(37), - }, - [153] = { - [aux_sym_declaration_repeat1] = STATE(297), - [anon_sym_COMMA] = ACTIONS(225), - [anon_sym_SEMI] = ACTIONS(676), - [sym_comment] = ACTIONS(37), - }, - [154] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(680), - [sym_comment] = ACTIONS(37), - }, - [155] = { - [sym_preproc_include] = STATE(155), - [sym_preproc_def] = STATE(155), - [sym_preproc_function_def] = STATE(155), - [sym_preproc_call] = STATE(155), - [sym_preproc_if] = STATE(155), - [sym_preproc_ifdef] = STATE(155), - [sym_function_definition] = STATE(155), - [sym_declaration] = STATE(155), - [sym_type_definition] = STATE(155), - [sym__declaration_specifiers] = STATE(70), - [sym_linkage_specification] = STATE(155), - [sym_storage_class_specifier] = STATE(19), - [sym_type_qualifier] = STATE(19), - [sym__type_specifier] = STATE(17), - [sym_sized_type_specifier] = STATE(17), - [sym_enum_specifier] = STATE(17), - [sym_struct_specifier] = STATE(17), - [sym_union_specifier] = STATE(17), - [sym__empty_declaration] = STATE(155), - [sym_macro_type_specifier] = STATE(17), - [aux_sym_translation_unit_repeat1] = STATE(155), - [aux_sym__declaration_specifiers_repeat1] = STATE(19), - [aux_sym_sized_type_specifier_repeat1] = STATE(20), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(682), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(685), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(688), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(691), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(693), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(693), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(691), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(691), - [sym_preproc_directive] = ACTIONS(696), - [anon_sym_typedef] = ACTIONS(699), - [anon_sym_extern] = ACTIONS(702), - [anon_sym_static] = ACTIONS(264), - [anon_sym_auto] = ACTIONS(264), - [anon_sym_register] = ACTIONS(264), - [anon_sym_inline] = ACTIONS(264), - [anon_sym_const] = ACTIONS(267), - [anon_sym_restrict] = ACTIONS(267), - [anon_sym_volatile] = ACTIONS(267), - [anon_sym__Atomic] = ACTIONS(267), - [anon_sym_unsigned] = ACTIONS(270), - [anon_sym_long] = ACTIONS(270), - [anon_sym_short] = ACTIONS(270), - [sym_primitive_type] = ACTIONS(273), - [anon_sym_enum] = ACTIONS(276), - [anon_sym_struct] = ACTIONS(279), - [anon_sym_union] = ACTIONS(282), - [sym_identifier] = ACTIONS(285), - [sym_comment] = ACTIONS(37), - }, - [156] = { - [ts_builtin_sym_end] = ACTIONS(705), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(707), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(707), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(707), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(707), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(707), - [sym_preproc_directive] = ACTIONS(707), - [anon_sym_typedef] = ACTIONS(707), - [anon_sym_extern] = ACTIONS(707), - [anon_sym_RBRACE] = ACTIONS(705), - [anon_sym_static] = ACTIONS(707), - [anon_sym_auto] = ACTIONS(707), - [anon_sym_register] = ACTIONS(707), - [anon_sym_inline] = ACTIONS(707), - [anon_sym_const] = ACTIONS(707), - [anon_sym_restrict] = ACTIONS(707), - [anon_sym_volatile] = ACTIONS(707), - [anon_sym__Atomic] = ACTIONS(707), - [anon_sym_unsigned] = ACTIONS(707), - [anon_sym_long] = ACTIONS(707), - [anon_sym_short] = ACTIONS(707), - [sym_primitive_type] = ACTIONS(707), - [anon_sym_enum] = ACTIONS(707), - [anon_sym_struct] = ACTIONS(707), - [anon_sym_union] = ACTIONS(707), - [sym_identifier] = ACTIONS(707), - [sym_comment] = ACTIONS(37), - }, - [157] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(709), - [sym_comment] = ACTIONS(37), - }, - [158] = { - [sym__type_declarator] = STATE(160), - [sym_pointer_type_declarator] = STATE(160), - [sym_function_type_declarator] = STATE(160), - [sym_array_type_declarator] = STATE(160), - [sym_type_qualifier] = STATE(300), - [aux_sym_type_definition_repeat1] = STATE(300), - [anon_sym_LPAREN2] = ACTIONS(155), - [anon_sym_STAR] = ACTIONS(391), - [anon_sym_const] = ACTIONS(23), - [anon_sym_restrict] = ACTIONS(23), - [anon_sym_volatile] = ACTIONS(23), - [anon_sym__Atomic] = ACTIONS(23), - [sym_identifier] = ACTIONS(393), - [sym_comment] = ACTIONS(37), - }, - [159] = { - [sym_parameter_list] = STATE(164), - [anon_sym_RPAREN] = ACTIONS(711), - [anon_sym_LPAREN2] = ACTIONS(231), - [anon_sym_LBRACK] = ACTIONS(399), - [sym_comment] = ACTIONS(37), - }, - [160] = { - [sym_parameter_list] = STATE(164), - [anon_sym_RPAREN] = ACTIONS(713), - [anon_sym_SEMI] = ACTIONS(713), - [anon_sym_LPAREN2] = ACTIONS(231), - [anon_sym_LBRACK] = ACTIONS(399), - [sym_comment] = ACTIONS(37), - }, - [161] = { - [sym__type_declarator] = STATE(302), - [sym_pointer_type_declarator] = STATE(302), - [sym_function_type_declarator] = STATE(302), - [sym_array_type_declarator] = STATE(302), - [sym_type_qualifier] = STATE(199), - [aux_sym_type_definition_repeat1] = STATE(199), - [anon_sym_LPAREN2] = ACTIONS(155), - [anon_sym_STAR] = ACTIONS(157), - [anon_sym_const] = ACTIONS(23), - [anon_sym_restrict] = ACTIONS(23), - [anon_sym_volatile] = ACTIONS(23), - [anon_sym__Atomic] = ACTIONS(23), - [sym_identifier] = ACTIONS(393), - [sym_comment] = ACTIONS(37), - }, - [162] = { - [ts_builtin_sym_end] = ACTIONS(715), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(717), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(717), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(717), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(717), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(717), - [sym_preproc_directive] = ACTIONS(717), - [anon_sym_SEMI] = ACTIONS(715), - [anon_sym_typedef] = ACTIONS(717), - [anon_sym_extern] = ACTIONS(717), - [anon_sym_LBRACE] = ACTIONS(715), - [anon_sym_RBRACE] = ACTIONS(715), - [anon_sym_LPAREN2] = ACTIONS(715), - [anon_sym_STAR] = ACTIONS(715), - [anon_sym_static] = ACTIONS(717), - [anon_sym_auto] = ACTIONS(717), - [anon_sym_register] = ACTIONS(717), - [anon_sym_inline] = ACTIONS(717), - [anon_sym_const] = ACTIONS(717), - [anon_sym_restrict] = ACTIONS(717), - [anon_sym_volatile] = ACTIONS(717), - [anon_sym__Atomic] = ACTIONS(717), - [anon_sym_unsigned] = ACTIONS(717), - [anon_sym_long] = ACTIONS(717), - [anon_sym_short] = ACTIONS(717), - [sym_primitive_type] = ACTIONS(717), - [anon_sym_enum] = ACTIONS(717), - [anon_sym_struct] = ACTIONS(717), - [anon_sym_union] = ACTIONS(717), - [anon_sym_if] = ACTIONS(717), - [anon_sym_else] = ACTIONS(717), - [anon_sym_switch] = ACTIONS(717), - [anon_sym_case] = ACTIONS(717), - [anon_sym_default] = ACTIONS(717), - [anon_sym_while] = ACTIONS(717), - [anon_sym_do] = ACTIONS(717), - [anon_sym_for] = ACTIONS(717), - [anon_sym_return] = ACTIONS(717), - [anon_sym_break] = ACTIONS(717), - [anon_sym_continue] = ACTIONS(717), - [anon_sym_goto] = ACTIONS(717), - [anon_sym_AMP] = ACTIONS(715), - [anon_sym_BANG] = ACTIONS(715), - [anon_sym_TILDE] = ACTIONS(715), - [anon_sym_PLUS] = ACTIONS(717), - [anon_sym_DASH] = ACTIONS(717), - [anon_sym_DASH_DASH] = ACTIONS(715), - [anon_sym_PLUS_PLUS] = ACTIONS(715), - [anon_sym_sizeof] = ACTIONS(717), - [sym_number_literal] = ACTIONS(715), - [anon_sym_SQUOTE] = ACTIONS(715), - [anon_sym_DQUOTE] = ACTIONS(715), - [sym_true] = ACTIONS(717), - [sym_false] = ACTIONS(717), - [sym_null] = ACTIONS(717), - [sym_identifier] = ACTIONS(717), - [sym_comment] = ACTIONS(37), - }, - [163] = { - [sym__declaration_specifiers] = STATE(304), - [sym_storage_class_specifier] = STATE(250), - [sym_type_qualifier] = STATE(250), - [sym__type_specifier] = STATE(247), - [sym_sized_type_specifier] = STATE(247), - [sym_enum_specifier] = STATE(247), - [sym_struct_specifier] = STATE(247), - [sym_union_specifier] = STATE(247), [sym__expression] = STATE(305), + [sym_comma_expression] = STATE(306), [sym_conditional_expression] = STATE(305), [sym_assignment_expression] = STATE(305), [sym_pointer_expression] = STATE(305), @@ -9613,232 +10431,514 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_parenthesized_expression] = STATE(305), [sym_char_literal] = STATE(305), [sym_concatenated_string] = STATE(305), - [sym_string_literal] = STATE(249), - [sym_macro_type_specifier] = STATE(247), - [aux_sym__declaration_specifiers_repeat1] = STATE(250), - [aux_sym_sized_type_specifier_repeat1] = STATE(251), - [anon_sym_extern] = ACTIONS(21), - [anon_sym_LPAREN2] = ACTIONS(559), - [anon_sym_STAR] = ACTIONS(561), - [anon_sym_RBRACK] = ACTIONS(719), - [anon_sym_static] = ACTIONS(21), - [anon_sym_auto] = ACTIONS(21), - [anon_sym_register] = ACTIONS(21), - [anon_sym_inline] = ACTIONS(21), - [anon_sym_const] = ACTIONS(23), - [anon_sym_restrict] = ACTIONS(23), - [anon_sym_volatile] = ACTIONS(23), - [anon_sym__Atomic] = ACTIONS(23), - [anon_sym_unsigned] = ACTIONS(565), - [anon_sym_long] = ACTIONS(565), - [anon_sym_short] = ACTIONS(565), - [sym_primitive_type] = ACTIONS(567), - [anon_sym_enum] = ACTIONS(29), - [anon_sym_struct] = ACTIONS(31), - [anon_sym_union] = ACTIONS(33), - [anon_sym_AMP] = ACTIONS(561), - [anon_sym_BANG] = ACTIONS(569), - [anon_sym_TILDE] = ACTIONS(571), - [anon_sym_PLUS] = ACTIONS(573), - [anon_sym_DASH] = ACTIONS(573), - [anon_sym_DASH_DASH] = ACTIONS(575), - [anon_sym_PLUS_PLUS] = ACTIONS(575), - [anon_sym_sizeof] = ACTIONS(577), - [sym_number_literal] = ACTIONS(721), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(723), - [sym_false] = ACTIONS(723), - [sym_null] = ACTIONS(723), - [sym_identifier] = ACTIONS(583), - [sym_comment] = ACTIONS(37), + [sym_string_literal] = STATE(55), + [anon_sym_LPAREN2] = ACTIONS(85), + [anon_sym_STAR] = ACTIONS(87), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_PLUS] = ACTIONS(97), + [anon_sym_DASH] = ACTIONS(97), + [anon_sym_DASH_DASH] = ACTIONS(99), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(101), + [sym_number_literal] = ACTIONS(788), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(790), + [sym_false] = ACTIONS(790), + [sym_null] = ACTIONS(790), + [sym_identifier] = ACTIONS(790), + [sym_comment] = ACTIONS(59), }, - [164] = { - [anon_sym_RPAREN] = ACTIONS(725), - [anon_sym_SEMI] = ACTIONS(725), - [anon_sym_LPAREN2] = ACTIONS(725), - [anon_sym_LBRACK] = ACTIONS(725), - [sym_comment] = ACTIONS(37), + [153] = { + [anon_sym_SEMI] = ACTIONS(792), + [anon_sym_COMMA] = ACTIONS(792), + [anon_sym_RPAREN] = ACTIONS(792), + [anon_sym_RBRACE] = ACTIONS(792), + [anon_sym_LPAREN2] = ACTIONS(792), + [anon_sym_STAR] = ACTIONS(794), + [anon_sym_LBRACK] = ACTIONS(792), + [anon_sym_RBRACK] = ACTIONS(792), + [anon_sym_EQ] = ACTIONS(794), + [anon_sym_COLON] = ACTIONS(792), + [anon_sym_else] = ACTIONS(792), + [anon_sym_while] = ACTIONS(792), + [anon_sym_QMARK] = ACTIONS(792), + [anon_sym_STAR_EQ] = ACTIONS(792), + [anon_sym_SLASH_EQ] = ACTIONS(792), + [anon_sym_PERCENT_EQ] = ACTIONS(792), + [anon_sym_PLUS_EQ] = ACTIONS(792), + [anon_sym_DASH_EQ] = ACTIONS(792), + [anon_sym_LT_LT_EQ] = ACTIONS(792), + [anon_sym_GT_GT_EQ] = ACTIONS(792), + [anon_sym_AMP_EQ] = ACTIONS(792), + [anon_sym_CARET_EQ] = ACTIONS(792), + [anon_sym_PIPE_EQ] = ACTIONS(792), + [anon_sym_AMP] = ACTIONS(794), + [anon_sym_PIPE_PIPE] = ACTIONS(792), + [anon_sym_AMP_AMP] = ACTIONS(792), + [anon_sym_PIPE] = ACTIONS(794), + [anon_sym_CARET] = ACTIONS(794), + [anon_sym_EQ_EQ] = ACTIONS(792), + [anon_sym_BANG_EQ] = ACTIONS(792), + [anon_sym_LT] = ACTIONS(794), + [anon_sym_GT] = ACTIONS(794), + [anon_sym_LT_EQ] = ACTIONS(792), + [anon_sym_GT_EQ] = ACTIONS(792), + [anon_sym_LT_LT] = ACTIONS(794), + [anon_sym_GT_GT] = ACTIONS(794), + [anon_sym_PLUS] = ACTIONS(794), + [anon_sym_DASH] = ACTIONS(794), + [anon_sym_SLASH] = ACTIONS(794), + [anon_sym_PERCENT] = ACTIONS(794), + [anon_sym_DASH_DASH] = ACTIONS(792), + [anon_sym_PLUS_PLUS] = ACTIONS(792), + [anon_sym_DOT] = ACTIONS(792), + [anon_sym_DASH_GT] = ACTIONS(792), + [sym_comment] = ACTIONS(59), }, - [165] = { - [sym_parameter_list] = STATE(164), - [anon_sym_SEMI] = ACTIONS(727), - [anon_sym_LPAREN2] = ACTIONS(231), - [anon_sym_LBRACK] = ACTIONS(399), - [sym_comment] = ACTIONS(37), + [154] = { + [sym__expression] = STATE(206), + [sym_conditional_expression] = STATE(206), + [sym_assignment_expression] = STATE(206), + [sym_pointer_expression] = STATE(206), + [sym_logical_expression] = STATE(206), + [sym_bitwise_expression] = STATE(206), + [sym_equality_expression] = STATE(206), + [sym_relational_expression] = STATE(206), + [sym_shift_expression] = STATE(206), + [sym_math_expression] = STATE(206), + [sym_cast_expression] = STATE(206), + [sym_sizeof_expression] = STATE(206), + [sym_subscript_expression] = STATE(206), + [sym_call_expression] = STATE(206), + [sym_field_expression] = STATE(206), + [sym_compound_literal_expression] = STATE(206), + [sym_parenthesized_expression] = STATE(206), + [sym_char_literal] = STATE(206), + [sym_concatenated_string] = STATE(206), + [sym_string_literal] = STATE(55), + [anon_sym_LPAREN2] = ACTIONS(85), + [anon_sym_STAR] = ACTIONS(87), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_PLUS] = ACTIONS(97), + [anon_sym_DASH] = ACTIONS(97), + [anon_sym_DASH_DASH] = ACTIONS(99), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(101), + [sym_number_literal] = ACTIONS(457), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(459), + [sym_false] = ACTIONS(459), + [sym_null] = ACTIONS(459), + [sym_identifier] = ACTIONS(459), + [sym_comment] = ACTIONS(59), }, - [166] = { - [ts_builtin_sym_end] = ACTIONS(729), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(731), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(731), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(731), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(731), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(731), - [sym_preproc_directive] = ACTIONS(731), - [anon_sym_typedef] = ACTIONS(731), - [anon_sym_extern] = ACTIONS(731), - [anon_sym_RBRACE] = ACTIONS(729), - [anon_sym_static] = ACTIONS(731), - [anon_sym_auto] = ACTIONS(731), - [anon_sym_register] = ACTIONS(731), - [anon_sym_inline] = ACTIONS(731), - [anon_sym_const] = ACTIONS(731), - [anon_sym_restrict] = ACTIONS(731), - [anon_sym_volatile] = ACTIONS(731), - [anon_sym__Atomic] = ACTIONS(731), - [anon_sym_unsigned] = ACTIONS(731), - [anon_sym_long] = ACTIONS(731), - [anon_sym_short] = ACTIONS(731), - [sym_primitive_type] = ACTIONS(731), - [anon_sym_enum] = ACTIONS(731), - [anon_sym_struct] = ACTIONS(731), - [anon_sym_union] = ACTIONS(731), - [sym_identifier] = ACTIONS(731), - [sym_comment] = ACTIONS(37), + [155] = { + [sym__expression] = STATE(307), + [sym_conditional_expression] = STATE(307), + [sym_assignment_expression] = STATE(307), + [sym_pointer_expression] = STATE(307), + [sym_logical_expression] = STATE(307), + [sym_bitwise_expression] = STATE(307), + [sym_equality_expression] = STATE(307), + [sym_relational_expression] = STATE(307), + [sym_shift_expression] = STATE(307), + [sym_math_expression] = STATE(307), + [sym_cast_expression] = STATE(307), + [sym_sizeof_expression] = STATE(307), + [sym_subscript_expression] = STATE(307), + [sym_call_expression] = STATE(307), + [sym_field_expression] = STATE(307), + [sym_compound_literal_expression] = STATE(307), + [sym_parenthesized_expression] = STATE(307), + [sym_char_literal] = STATE(307), + [sym_concatenated_string] = STATE(307), + [sym_string_literal] = STATE(55), + [anon_sym_LPAREN2] = ACTIONS(85), + [anon_sym_STAR] = ACTIONS(87), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_PLUS] = ACTIONS(97), + [anon_sym_DASH] = ACTIONS(97), + [anon_sym_DASH_DASH] = ACTIONS(99), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(101), + [sym_number_literal] = ACTIONS(796), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(798), + [sym_false] = ACTIONS(798), + [sym_null] = ACTIONS(798), + [sym_identifier] = ACTIONS(798), + [sym_comment] = ACTIONS(59), }, - [167] = { - [sym_preproc_include] = STATE(308), - [sym_preproc_def] = STATE(308), - [sym_preproc_function_def] = STATE(308), - [sym_preproc_call] = STATE(308), - [sym_preproc_if] = STATE(308), - [sym_preproc_ifdef] = STATE(308), - [sym_function_definition] = STATE(308), - [sym_declaration] = STATE(308), - [sym_type_definition] = STATE(308), - [sym__declaration_specifiers] = STATE(16), - [sym_linkage_specification] = STATE(308), - [sym_storage_class_specifier] = STATE(19), - [sym_type_qualifier] = STATE(19), - [sym__type_specifier] = STATE(17), - [sym_sized_type_specifier] = STATE(17), - [sym_enum_specifier] = STATE(17), - [sym_struct_specifier] = STATE(17), - [sym_union_specifier] = STATE(17), - [sym__empty_declaration] = STATE(308), - [sym_macro_type_specifier] = STATE(17), - [aux_sym_translation_unit_repeat1] = STATE(308), - [aux_sym__declaration_specifiers_repeat1] = STATE(19), - [aux_sym_sized_type_specifier_repeat1] = STATE(20), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(7), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(9), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(11), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(13), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(13), - [sym_preproc_directive] = ACTIONS(15), - [anon_sym_typedef] = ACTIONS(17), - [anon_sym_extern] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(733), - [anon_sym_static] = ACTIONS(21), - [anon_sym_auto] = ACTIONS(21), - [anon_sym_register] = ACTIONS(21), - [anon_sym_inline] = ACTIONS(21), - [anon_sym_const] = ACTIONS(23), - [anon_sym_restrict] = ACTIONS(23), - [anon_sym_volatile] = ACTIONS(23), - [anon_sym__Atomic] = ACTIONS(23), - [anon_sym_unsigned] = ACTIONS(25), - [anon_sym_long] = ACTIONS(25), - [anon_sym_short] = ACTIONS(25), - [sym_primitive_type] = ACTIONS(27), - [anon_sym_enum] = ACTIONS(29), - [anon_sym_struct] = ACTIONS(31), - [anon_sym_union] = ACTIONS(33), - [sym_identifier] = ACTIONS(35), - [sym_comment] = ACTIONS(37), + [156] = { + [sym__expression] = STATE(308), + [sym_conditional_expression] = STATE(308), + [sym_assignment_expression] = STATE(308), + [sym_pointer_expression] = STATE(308), + [sym_logical_expression] = STATE(308), + [sym_bitwise_expression] = STATE(308), + [sym_equality_expression] = STATE(308), + [sym_relational_expression] = STATE(308), + [sym_shift_expression] = STATE(308), + [sym_math_expression] = STATE(308), + [sym_cast_expression] = STATE(308), + [sym_sizeof_expression] = STATE(308), + [sym_subscript_expression] = STATE(308), + [sym_call_expression] = STATE(308), + [sym_field_expression] = STATE(308), + [sym_compound_literal_expression] = STATE(308), + [sym_parenthesized_expression] = STATE(308), + [sym_char_literal] = STATE(308), + [sym_concatenated_string] = STATE(308), + [sym_string_literal] = STATE(223), + [anon_sym_LPAREN2] = ACTIONS(483), + [anon_sym_STAR] = ACTIONS(485), + [anon_sym_AMP] = ACTIONS(485), + [anon_sym_BANG] = ACTIONS(487), + [anon_sym_TILDE] = ACTIONS(489), + [anon_sym_PLUS] = ACTIONS(491), + [anon_sym_DASH] = ACTIONS(491), + [anon_sym_DASH_DASH] = ACTIONS(493), + [anon_sym_PLUS_PLUS] = ACTIONS(493), + [anon_sym_sizeof] = ACTIONS(495), + [sym_number_literal] = ACTIONS(800), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(802), + [sym_false] = ACTIONS(802), + [sym_null] = ACTIONS(802), + [sym_identifier] = ACTIONS(802), + [sym_comment] = ACTIONS(59), }, - [168] = { - [sym_storage_class_specifier] = STATE(309), - [sym_type_qualifier] = STATE(309), - [aux_sym__declaration_specifiers_repeat1] = STATE(309), - [anon_sym_extern] = ACTIONS(21), - [anon_sym_LPAREN2] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(237), - [anon_sym_static] = ACTIONS(21), - [anon_sym_auto] = ACTIONS(21), - [anon_sym_register] = ACTIONS(21), - [anon_sym_inline] = ACTIONS(21), - [anon_sym_const] = ACTIONS(23), - [anon_sym_restrict] = ACTIONS(23), - [anon_sym_volatile] = ACTIONS(23), - [anon_sym__Atomic] = ACTIONS(23), - [sym_identifier] = ACTIONS(239), - [sym_comment] = ACTIONS(37), + [157] = { + [sym__expression] = STATE(309), + [sym_conditional_expression] = STATE(309), + [sym_assignment_expression] = STATE(309), + [sym_pointer_expression] = STATE(309), + [sym_logical_expression] = STATE(309), + [sym_bitwise_expression] = STATE(309), + [sym_equality_expression] = STATE(309), + [sym_relational_expression] = STATE(309), + [sym_shift_expression] = STATE(309), + [sym_math_expression] = STATE(309), + [sym_cast_expression] = STATE(309), + [sym_sizeof_expression] = STATE(309), + [sym_subscript_expression] = STATE(309), + [sym_call_expression] = STATE(309), + [sym_field_expression] = STATE(309), + [sym_compound_literal_expression] = STATE(309), + [sym_parenthesized_expression] = STATE(309), + [sym_char_literal] = STATE(309), + [sym_concatenated_string] = STATE(309), + [sym_string_literal] = STATE(55), + [anon_sym_LPAREN2] = ACTIONS(85), + [anon_sym_STAR] = ACTIONS(87), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_PLUS] = ACTIONS(97), + [anon_sym_DASH] = ACTIONS(97), + [anon_sym_DASH_DASH] = ACTIONS(99), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(101), + [sym_number_literal] = ACTIONS(804), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(806), + [sym_false] = ACTIONS(806), + [sym_null] = ACTIONS(806), + [sym_identifier] = ACTIONS(806), + [sym_comment] = ACTIONS(59), }, - [169] = { - [sym_storage_class_specifier] = STATE(310), - [sym_type_qualifier] = STATE(310), - [aux_sym__declaration_specifiers_repeat1] = STATE(310), - [anon_sym_extern] = ACTIONS(21), - [anon_sym_LPAREN2] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(237), - [anon_sym_static] = ACTIONS(21), - [anon_sym_auto] = ACTIONS(21), - [anon_sym_register] = ACTIONS(21), - [anon_sym_inline] = ACTIONS(21), - [anon_sym_const] = ACTIONS(23), - [anon_sym_restrict] = ACTIONS(23), - [anon_sym_volatile] = ACTIONS(23), - [anon_sym__Atomic] = ACTIONS(23), - [sym_identifier] = ACTIONS(239), - [sym_comment] = ACTIONS(37), + [158] = { + [sym__expression] = STATE(310), + [sym_conditional_expression] = STATE(310), + [sym_assignment_expression] = STATE(310), + [sym_pointer_expression] = STATE(310), + [sym_logical_expression] = STATE(310), + [sym_bitwise_expression] = STATE(310), + [sym_equality_expression] = STATE(310), + [sym_relational_expression] = STATE(310), + [sym_shift_expression] = STATE(310), + [sym_math_expression] = STATE(310), + [sym_cast_expression] = STATE(310), + [sym_sizeof_expression] = STATE(310), + [sym_subscript_expression] = STATE(310), + [sym_call_expression] = STATE(310), + [sym_field_expression] = STATE(310), + [sym_compound_literal_expression] = STATE(310), + [sym_parenthesized_expression] = STATE(310), + [sym_char_literal] = STATE(310), + [sym_concatenated_string] = STATE(310), + [sym_string_literal] = STATE(55), + [anon_sym_LPAREN2] = ACTIONS(85), + [anon_sym_STAR] = ACTIONS(87), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_PLUS] = ACTIONS(97), + [anon_sym_DASH] = ACTIONS(97), + [anon_sym_DASH_DASH] = ACTIONS(99), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(101), + [sym_number_literal] = ACTIONS(808), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(810), + [sym_false] = ACTIONS(810), + [sym_null] = ACTIONS(810), + [sym_identifier] = ACTIONS(810), + [sym_comment] = ACTIONS(59), }, - [170] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(170), - [anon_sym_extern] = ACTIONS(306), - [anon_sym_LPAREN2] = ACTIONS(304), - [anon_sym_STAR] = ACTIONS(304), - [anon_sym_static] = ACTIONS(306), - [anon_sym_auto] = ACTIONS(306), - [anon_sym_register] = ACTIONS(306), - [anon_sym_inline] = ACTIONS(306), - [anon_sym_const] = ACTIONS(306), - [anon_sym_restrict] = ACTIONS(306), - [anon_sym_volatile] = ACTIONS(306), - [anon_sym__Atomic] = ACTIONS(306), - [anon_sym_unsigned] = ACTIONS(735), - [anon_sym_long] = ACTIONS(735), - [anon_sym_short] = ACTIONS(735), - [sym_primitive_type] = ACTIONS(306), - [sym_identifier] = ACTIONS(306), - [sym_comment] = ACTIONS(37), + [159] = { + [sym__expression] = STATE(311), + [sym_conditional_expression] = STATE(311), + [sym_assignment_expression] = STATE(311), + [sym_pointer_expression] = STATE(311), + [sym_logical_expression] = STATE(311), + [sym_bitwise_expression] = STATE(311), + [sym_equality_expression] = STATE(311), + [sym_relational_expression] = STATE(311), + [sym_shift_expression] = STATE(311), + [sym_math_expression] = STATE(311), + [sym_cast_expression] = STATE(311), + [sym_sizeof_expression] = STATE(311), + [sym_subscript_expression] = STATE(311), + [sym_call_expression] = STATE(311), + [sym_field_expression] = STATE(311), + [sym_compound_literal_expression] = STATE(311), + [sym_parenthesized_expression] = STATE(311), + [sym_char_literal] = STATE(311), + [sym_concatenated_string] = STATE(311), + [sym_string_literal] = STATE(55), + [anon_sym_LPAREN2] = ACTIONS(85), + [anon_sym_STAR] = ACTIONS(87), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_PLUS] = ACTIONS(97), + [anon_sym_DASH] = ACTIONS(97), + [anon_sym_DASH_DASH] = ACTIONS(99), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(101), + [sym_number_literal] = ACTIONS(812), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(814), + [sym_false] = ACTIONS(814), + [sym_null] = ACTIONS(814), + [sym_identifier] = ACTIONS(814), + [sym_comment] = ACTIONS(59), }, - [171] = { - [anon_sym_COMMA] = ACTIONS(738), - [anon_sym_RPAREN] = ACTIONS(738), - [anon_sym_SEMI] = ACTIONS(738), - [anon_sym_extern] = ACTIONS(740), - [anon_sym_LPAREN2] = ACTIONS(738), - [anon_sym_STAR] = ACTIONS(738), - [anon_sym_LBRACK] = ACTIONS(738), - [anon_sym_RBRACK] = ACTIONS(738), - [anon_sym_static] = ACTIONS(740), - [anon_sym_auto] = ACTIONS(740), - [anon_sym_register] = ACTIONS(740), - [anon_sym_inline] = ACTIONS(740), - [anon_sym_const] = ACTIONS(740), - [anon_sym_restrict] = ACTIONS(740), - [anon_sym_volatile] = ACTIONS(740), - [anon_sym__Atomic] = ACTIONS(740), - [anon_sym_COLON] = ACTIONS(738), - [anon_sym_AMP] = ACTIONS(738), - [anon_sym_BANG] = ACTIONS(738), - [anon_sym_TILDE] = ACTIONS(738), - [anon_sym_PLUS] = ACTIONS(740), - [anon_sym_DASH] = ACTIONS(740), - [anon_sym_DASH_DASH] = ACTIONS(738), - [anon_sym_PLUS_PLUS] = ACTIONS(738), - [anon_sym_sizeof] = ACTIONS(740), - [sym_number_literal] = ACTIONS(738), - [anon_sym_SQUOTE] = ACTIONS(738), - [anon_sym_DQUOTE] = ACTIONS(738), - [sym_true] = ACTIONS(740), - [sym_false] = ACTIONS(740), - [sym_null] = ACTIONS(740), - [sym_identifier] = ACTIONS(740), - [sym_comment] = ACTIONS(37), + [160] = { + [sym__expression] = STATE(312), + [sym_conditional_expression] = STATE(312), + [sym_assignment_expression] = STATE(312), + [sym_pointer_expression] = STATE(312), + [sym_logical_expression] = STATE(312), + [sym_bitwise_expression] = STATE(312), + [sym_equality_expression] = STATE(312), + [sym_relational_expression] = STATE(312), + [sym_shift_expression] = STATE(312), + [sym_math_expression] = STATE(312), + [sym_cast_expression] = STATE(312), + [sym_sizeof_expression] = STATE(312), + [sym_subscript_expression] = STATE(312), + [sym_call_expression] = STATE(312), + [sym_field_expression] = STATE(312), + [sym_compound_literal_expression] = STATE(312), + [sym_parenthesized_expression] = STATE(312), + [sym_char_literal] = STATE(312), + [sym_concatenated_string] = STATE(312), + [sym_string_literal] = STATE(55), + [anon_sym_LPAREN2] = ACTIONS(85), + [anon_sym_STAR] = ACTIONS(87), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_PLUS] = ACTIONS(97), + [anon_sym_DASH] = ACTIONS(97), + [anon_sym_DASH_DASH] = ACTIONS(99), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(101), + [sym_number_literal] = ACTIONS(816), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(818), + [sym_false] = ACTIONS(818), + [sym_null] = ACTIONS(818), + [sym_identifier] = ACTIONS(818), + [sym_comment] = ACTIONS(59), }, - [172] = { + [161] = { + [sym__expression] = STATE(313), + [sym_conditional_expression] = STATE(313), + [sym_assignment_expression] = STATE(313), + [sym_pointer_expression] = STATE(313), + [sym_logical_expression] = STATE(313), + [sym_bitwise_expression] = STATE(313), + [sym_equality_expression] = STATE(313), + [sym_relational_expression] = STATE(313), + [sym_shift_expression] = STATE(313), + [sym_math_expression] = STATE(313), + [sym_cast_expression] = STATE(313), + [sym_sizeof_expression] = STATE(313), + [sym_subscript_expression] = STATE(313), + [sym_call_expression] = STATE(313), + [sym_field_expression] = STATE(313), + [sym_compound_literal_expression] = STATE(313), + [sym_parenthesized_expression] = STATE(313), + [sym_char_literal] = STATE(313), + [sym_concatenated_string] = STATE(313), + [sym_string_literal] = STATE(55), + [anon_sym_LPAREN2] = ACTIONS(85), + [anon_sym_STAR] = ACTIONS(87), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_PLUS] = ACTIONS(97), + [anon_sym_DASH] = ACTIONS(97), + [anon_sym_DASH_DASH] = ACTIONS(99), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(101), + [sym_number_literal] = ACTIONS(820), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(822), + [sym_false] = ACTIONS(822), + [sym_null] = ACTIONS(822), + [sym_identifier] = ACTIONS(822), + [sym_comment] = ACTIONS(59), + }, + [162] = { + [sym__expression] = STATE(314), + [sym_conditional_expression] = STATE(314), + [sym_assignment_expression] = STATE(314), + [sym_pointer_expression] = STATE(314), + [sym_logical_expression] = STATE(314), + [sym_bitwise_expression] = STATE(314), + [sym_equality_expression] = STATE(314), + [sym_relational_expression] = STATE(314), + [sym_shift_expression] = STATE(314), + [sym_math_expression] = STATE(314), + [sym_cast_expression] = STATE(314), + [sym_sizeof_expression] = STATE(314), + [sym_subscript_expression] = STATE(314), + [sym_call_expression] = STATE(314), + [sym_field_expression] = STATE(314), + [sym_compound_literal_expression] = STATE(314), + [sym_parenthesized_expression] = STATE(314), + [sym_char_literal] = STATE(314), + [sym_concatenated_string] = STATE(314), + [sym_string_literal] = STATE(55), + [anon_sym_LPAREN2] = ACTIONS(85), + [anon_sym_STAR] = ACTIONS(87), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_PLUS] = ACTIONS(97), + [anon_sym_DASH] = ACTIONS(97), + [anon_sym_DASH_DASH] = ACTIONS(99), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(101), + [sym_number_literal] = ACTIONS(824), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(826), + [sym_false] = ACTIONS(826), + [sym_null] = ACTIONS(826), + [sym_identifier] = ACTIONS(826), + [sym_comment] = ACTIONS(59), + }, + [163] = { + [sym__expression] = STATE(315), + [sym_conditional_expression] = STATE(315), + [sym_assignment_expression] = STATE(315), + [sym_pointer_expression] = STATE(315), + [sym_logical_expression] = STATE(315), + [sym_bitwise_expression] = STATE(315), + [sym_equality_expression] = STATE(315), + [sym_relational_expression] = STATE(315), + [sym_shift_expression] = STATE(315), + [sym_math_expression] = STATE(315), + [sym_cast_expression] = STATE(315), + [sym_sizeof_expression] = STATE(315), + [sym_subscript_expression] = STATE(315), + [sym_call_expression] = STATE(315), + [sym_field_expression] = STATE(315), + [sym_compound_literal_expression] = STATE(315), + [sym_parenthesized_expression] = STATE(315), + [sym_char_literal] = STATE(315), + [sym_concatenated_string] = STATE(315), + [sym_string_literal] = STATE(55), + [anon_sym_LPAREN2] = ACTIONS(85), + [anon_sym_STAR] = ACTIONS(87), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_PLUS] = ACTIONS(97), + [anon_sym_DASH] = ACTIONS(97), + [anon_sym_DASH_DASH] = ACTIONS(99), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(101), + [sym_number_literal] = ACTIONS(828), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(830), + [sym_false] = ACTIONS(830), + [sym_null] = ACTIONS(830), + [sym_identifier] = ACTIONS(830), + [sym_comment] = ACTIONS(59), + }, + [164] = { + [sym__expression] = STATE(316), + [sym_conditional_expression] = STATE(316), + [sym_assignment_expression] = STATE(316), + [sym_pointer_expression] = STATE(316), + [sym_logical_expression] = STATE(316), + [sym_bitwise_expression] = STATE(316), + [sym_equality_expression] = STATE(316), + [sym_relational_expression] = STATE(316), + [sym_shift_expression] = STATE(316), + [sym_math_expression] = STATE(316), + [sym_cast_expression] = STATE(316), + [sym_sizeof_expression] = STATE(316), + [sym_subscript_expression] = STATE(316), + [sym_call_expression] = STATE(316), + [sym_field_expression] = STATE(316), + [sym_compound_literal_expression] = STATE(316), + [sym_parenthesized_expression] = STATE(316), + [sym_char_literal] = STATE(316), + [sym_concatenated_string] = STATE(316), + [sym_string_literal] = STATE(55), + [anon_sym_LPAREN2] = ACTIONS(85), + [anon_sym_STAR] = ACTIONS(87), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_PLUS] = ACTIONS(97), + [anon_sym_DASH] = ACTIONS(97), + [anon_sym_DASH_DASH] = ACTIONS(99), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(101), + [sym_number_literal] = ACTIONS(832), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(834), + [sym_false] = ACTIONS(834), + [sym_null] = ACTIONS(834), + [sym_identifier] = ACTIONS(834), + [sym_comment] = ACTIONS(59), + }, + [165] = { [sym__expression] = STATE(317), [sym_conditional_expression] = STATE(317), [sym_assignment_expression] = STATE(317), @@ -9858,1113 +10958,1783 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_parenthesized_expression] = STATE(317), [sym_char_literal] = STATE(317), [sym_concatenated_string] = STATE(317), - [sym_string_literal] = STATE(318), - [anon_sym_LPAREN2] = ACTIONS(742), - [anon_sym_STAR] = ACTIONS(744), - [anon_sym_AMP] = ACTIONS(744), - [anon_sym_BANG] = ACTIONS(746), - [anon_sym_TILDE] = ACTIONS(748), - [anon_sym_PLUS] = ACTIONS(750), - [anon_sym_DASH] = ACTIONS(750), - [anon_sym_DASH_DASH] = ACTIONS(752), - [anon_sym_PLUS_PLUS] = ACTIONS(752), - [anon_sym_sizeof] = ACTIONS(754), - [sym_number_literal] = ACTIONS(756), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(758), - [sym_false] = ACTIONS(758), - [sym_null] = ACTIONS(758), - [sym_identifier] = ACTIONS(758), - [sym_comment] = ACTIONS(37), + [sym_string_literal] = STATE(55), + [anon_sym_LPAREN2] = ACTIONS(85), + [anon_sym_STAR] = ACTIONS(87), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_PLUS] = ACTIONS(97), + [anon_sym_DASH] = ACTIONS(97), + [anon_sym_DASH_DASH] = ACTIONS(99), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(101), + [sym_number_literal] = ACTIONS(836), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(838), + [sym_false] = ACTIONS(838), + [sym_null] = ACTIONS(838), + [sym_identifier] = ACTIONS(838), + [sym_comment] = ACTIONS(59), + }, + [166] = { + [sym__expression] = STATE(319), + [sym_conditional_expression] = STATE(319), + [sym_assignment_expression] = STATE(319), + [sym_pointer_expression] = STATE(319), + [sym_logical_expression] = STATE(319), + [sym_bitwise_expression] = STATE(319), + [sym_equality_expression] = STATE(319), + [sym_relational_expression] = STATE(319), + [sym_shift_expression] = STATE(319), + [sym_math_expression] = STATE(319), + [sym_cast_expression] = STATE(319), + [sym_sizeof_expression] = STATE(319), + [sym_subscript_expression] = STATE(319), + [sym_call_expression] = STATE(319), + [sym_field_expression] = STATE(319), + [sym_compound_literal_expression] = STATE(319), + [sym_parenthesized_expression] = STATE(319), + [sym_initializer_list] = STATE(320), + [sym_char_literal] = STATE(319), + [sym_concatenated_string] = STATE(319), + [sym_string_literal] = STATE(28), + [anon_sym_LBRACE] = ACTIONS(840), + [anon_sym_LPAREN2] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_AMP] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(41), + [anon_sym_PLUS] = ACTIONS(43), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_DASH_DASH] = ACTIONS(45), + [anon_sym_PLUS_PLUS] = ACTIONS(45), + [anon_sym_sizeof] = ACTIONS(47), + [sym_number_literal] = ACTIONS(842), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(844), + [sym_false] = ACTIONS(844), + [sym_null] = ACTIONS(844), + [sym_identifier] = ACTIONS(844), + [sym_comment] = ACTIONS(59), + }, + [167] = { + [sym_string_literal] = STATE(321), + [aux_sym_concatenated_string_repeat1] = STATE(321), + [anon_sym_COMMA] = ACTIONS(547), + [anon_sym_RPAREN] = ACTIONS(547), + [anon_sym_LPAREN2] = ACTIONS(547), + [anon_sym_STAR] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_EQ] = ACTIONS(549), + [anon_sym_QMARK] = ACTIONS(547), + [anon_sym_STAR_EQ] = ACTIONS(547), + [anon_sym_SLASH_EQ] = ACTIONS(547), + [anon_sym_PERCENT_EQ] = ACTIONS(547), + [anon_sym_PLUS_EQ] = ACTIONS(547), + [anon_sym_DASH_EQ] = ACTIONS(547), + [anon_sym_LT_LT_EQ] = ACTIONS(547), + [anon_sym_GT_GT_EQ] = ACTIONS(547), + [anon_sym_AMP_EQ] = ACTIONS(547), + [anon_sym_CARET_EQ] = ACTIONS(547), + [anon_sym_PIPE_EQ] = ACTIONS(547), + [anon_sym_AMP] = ACTIONS(549), + [anon_sym_PIPE_PIPE] = ACTIONS(547), + [anon_sym_AMP_AMP] = ACTIONS(547), + [anon_sym_PIPE] = ACTIONS(549), + [anon_sym_CARET] = ACTIONS(549), + [anon_sym_EQ_EQ] = ACTIONS(547), + [anon_sym_BANG_EQ] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(549), + [anon_sym_GT] = ACTIONS(549), + [anon_sym_LT_EQ] = ACTIONS(547), + [anon_sym_GT_EQ] = ACTIONS(547), + [anon_sym_LT_LT] = ACTIONS(549), + [anon_sym_GT_GT] = ACTIONS(549), + [anon_sym_PLUS] = ACTIONS(549), + [anon_sym_DASH] = ACTIONS(549), + [anon_sym_SLASH] = ACTIONS(549), + [anon_sym_PERCENT] = ACTIONS(549), + [anon_sym_DASH_DASH] = ACTIONS(547), + [anon_sym_PLUS_PLUS] = ACTIONS(547), + [anon_sym_DOT] = ACTIONS(547), + [anon_sym_DASH_GT] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_comment] = ACTIONS(59), + }, + [168] = { + [sym__abstract_declarator] = STATE(322), + [sym_abstract_pointer_declarator] = STATE(322), + [sym_abstract_function_declarator] = STATE(322), + [sym_abstract_array_declarator] = STATE(322), + [sym_parameter_list] = STATE(151), + [anon_sym_RPAREN] = ACTIONS(782), + [anon_sym_LPAREN2] = ACTIONS(309), + [anon_sym_STAR] = ACTIONS(311), + [anon_sym_LBRACK] = ACTIONS(313), + [sym_comment] = ACTIONS(59), + }, + [169] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(169), + [anon_sym_RPAREN] = ACTIONS(645), + [anon_sym_LPAREN2] = ACTIONS(645), + [anon_sym_STAR] = ACTIONS(645), + [anon_sym_LBRACK] = ACTIONS(645), + [anon_sym_unsigned] = ACTIONS(846), + [anon_sym_long] = ACTIONS(846), + [anon_sym_short] = ACTIONS(846), + [sym_primitive_type] = ACTIONS(647), + [sym_identifier] = ACTIONS(647), + [sym_comment] = ACTIONS(59), + }, + [170] = { + [anon_sym_RBRACE] = ACTIONS(849), + [sym_comment] = ACTIONS(59), + }, + [171] = { + [anon_sym_SEMI] = ACTIONS(851), + [anon_sym_COMMA] = ACTIONS(851), + [anon_sym_RPAREN] = ACTIONS(851), + [anon_sym_extern] = ACTIONS(853), + [anon_sym_LPAREN2] = ACTIONS(851), + [anon_sym_STAR] = ACTIONS(851), + [anon_sym_LBRACK] = ACTIONS(851), + [anon_sym_RBRACK] = ACTIONS(851), + [anon_sym_static] = ACTIONS(853), + [anon_sym_auto] = ACTIONS(853), + [anon_sym_register] = ACTIONS(853), + [anon_sym_inline] = ACTIONS(853), + [anon_sym_const] = ACTIONS(853), + [anon_sym_restrict] = ACTIONS(853), + [anon_sym_volatile] = ACTIONS(853), + [anon_sym__Atomic] = ACTIONS(853), + [anon_sym_COLON] = ACTIONS(851), + [anon_sym_AMP] = ACTIONS(851), + [anon_sym_BANG] = ACTIONS(851), + [anon_sym_TILDE] = ACTIONS(851), + [anon_sym_PLUS] = ACTIONS(853), + [anon_sym_DASH] = ACTIONS(853), + [anon_sym_DASH_DASH] = ACTIONS(851), + [anon_sym_PLUS_PLUS] = ACTIONS(851), + [anon_sym_sizeof] = ACTIONS(853), + [sym_number_literal] = ACTIONS(851), + [anon_sym_SQUOTE] = ACTIONS(851), + [anon_sym_DQUOTE] = ACTIONS(851), + [sym_true] = ACTIONS(853), + [sym_false] = ACTIONS(853), + [sym_null] = ACTIONS(853), + [sym_identifier] = ACTIONS(853), + [sym_comment] = ACTIONS(59), + }, + [172] = { + [anon_sym_COMMA] = ACTIONS(855), + [anon_sym_RBRACE] = ACTIONS(855), + [anon_sym_EQ] = ACTIONS(857), + [sym_comment] = ACTIONS(59), }, [173] = { - [sym_enumerator] = STATE(320), - [anon_sym_RBRACE] = ACTIONS(760), - [sym_identifier] = ACTIONS(175), - [sym_comment] = ACTIONS(37), + [aux_sym_enumerator_list_repeat1] = STATE(326), + [anon_sym_COMMA] = ACTIONS(859), + [anon_sym_RBRACE] = ACTIONS(849), + [sym_comment] = ACTIONS(59), }, [174] = { - [aux_sym_enumerator_list_repeat1] = STATE(322), - [anon_sym_COMMA] = ACTIONS(762), - [anon_sym_RBRACE] = ACTIONS(760), - [sym_comment] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(861), + [anon_sym_COMMA] = ACTIONS(861), + [anon_sym_RPAREN] = ACTIONS(861), + [anon_sym_extern] = ACTIONS(863), + [anon_sym_LPAREN2] = ACTIONS(861), + [anon_sym_STAR] = ACTIONS(861), + [anon_sym_LBRACK] = ACTIONS(861), + [anon_sym_RBRACK] = ACTIONS(861), + [anon_sym_static] = ACTIONS(863), + [anon_sym_auto] = ACTIONS(863), + [anon_sym_register] = ACTIONS(863), + [anon_sym_inline] = ACTIONS(863), + [anon_sym_const] = ACTIONS(863), + [anon_sym_restrict] = ACTIONS(863), + [anon_sym_volatile] = ACTIONS(863), + [anon_sym__Atomic] = ACTIONS(863), + [anon_sym_COLON] = ACTIONS(861), + [anon_sym_AMP] = ACTIONS(861), + [anon_sym_BANG] = ACTIONS(861), + [anon_sym_TILDE] = ACTIONS(861), + [anon_sym_PLUS] = ACTIONS(863), + [anon_sym_DASH] = ACTIONS(863), + [anon_sym_DASH_DASH] = ACTIONS(861), + [anon_sym_PLUS_PLUS] = ACTIONS(861), + [anon_sym_sizeof] = ACTIONS(863), + [sym_number_literal] = ACTIONS(861), + [anon_sym_SQUOTE] = ACTIONS(861), + [anon_sym_DQUOTE] = ACTIONS(861), + [sym_true] = ACTIONS(863), + [sym_false] = ACTIONS(863), + [sym_null] = ACTIONS(863), + [sym_identifier] = ACTIONS(863), + [sym_comment] = ACTIONS(59), }, [175] = { - [sym_preproc_if_in_field_declaration_list] = STATE(327), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(327), - [sym_preproc_else_in_field_declaration_list] = STATE(326), - [sym_preproc_elif_in_field_declaration_list] = STATE(326), - [sym__declaration_specifiers] = STATE(97), - [sym_storage_class_specifier] = STATE(100), - [sym_type_qualifier] = STATE(100), - [sym__type_specifier] = STATE(98), - [sym_sized_type_specifier] = STATE(98), - [sym_enum_specifier] = STATE(98), - [sym_struct_specifier] = STATE(98), - [sym_union_specifier] = STATE(98), - [sym__field_declaration_list_item] = STATE(327), - [sym_field_declaration] = STATE(327), - [sym_macro_type_specifier] = STATE(98), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(327), - [aux_sym__declaration_specifiers_repeat1] = STATE(100), - [aux_sym_sized_type_specifier_repeat1] = STATE(101), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(185), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(764), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(187), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(187), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(766), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(768), - [anon_sym_extern] = ACTIONS(21), - [anon_sym_static] = ACTIONS(21), - [anon_sym_auto] = ACTIONS(21), - [anon_sym_register] = ACTIONS(21), - [anon_sym_inline] = ACTIONS(21), - [anon_sym_const] = ACTIONS(23), - [anon_sym_restrict] = ACTIONS(23), - [anon_sym_volatile] = ACTIONS(23), - [anon_sym__Atomic] = ACTIONS(23), - [anon_sym_unsigned] = ACTIONS(191), - [anon_sym_long] = ACTIONS(191), - [anon_sym_short] = ACTIONS(191), - [sym_primitive_type] = ACTIONS(193), - [anon_sym_enum] = ACTIONS(29), - [anon_sym_struct] = ACTIONS(31), - [anon_sym_union] = ACTIONS(33), - [sym_identifier] = ACTIONS(35), - [sym_comment] = ACTIONS(37), + [sym_preproc_arg] = ACTIONS(865), + [sym_comment] = ACTIONS(69), }, [176] = { - [sym_preproc_if_in_field_declaration_list] = STATE(330), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(330), - [sym_preproc_else_in_field_declaration_list] = STATE(329), - [sym_preproc_elif_in_field_declaration_list] = STATE(329), - [sym__declaration_specifiers] = STATE(97), - [sym_storage_class_specifier] = STATE(100), - [sym_type_qualifier] = STATE(100), - [sym__type_specifier] = STATE(98), - [sym_sized_type_specifier] = STATE(98), - [sym_enum_specifier] = STATE(98), - [sym_struct_specifier] = STATE(98), - [sym_union_specifier] = STATE(98), - [sym__field_declaration_list_item] = STATE(330), - [sym_field_declaration] = STATE(330), - [sym_macro_type_specifier] = STATE(98), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(330), - [aux_sym__declaration_specifiers_repeat1] = STATE(100), - [aux_sym_sized_type_specifier_repeat1] = STATE(101), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(185), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(770), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(187), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(187), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(766), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(768), - [anon_sym_extern] = ACTIONS(21), - [anon_sym_static] = ACTIONS(21), - [anon_sym_auto] = ACTIONS(21), - [anon_sym_register] = ACTIONS(21), - [anon_sym_inline] = ACTIONS(21), - [anon_sym_const] = ACTIONS(23), - [anon_sym_restrict] = ACTIONS(23), - [anon_sym_volatile] = ACTIONS(23), - [anon_sym__Atomic] = ACTIONS(23), - [anon_sym_unsigned] = ACTIONS(191), - [anon_sym_long] = ACTIONS(191), - [anon_sym_short] = ACTIONS(191), - [sym_primitive_type] = ACTIONS(193), - [anon_sym_enum] = ACTIONS(29), - [anon_sym_struct] = ACTIONS(31), - [anon_sym_union] = ACTIONS(33), - [sym_identifier] = ACTIONS(35), - [sym_comment] = ACTIONS(37), + [sym_identifier] = ACTIONS(867), + [sym_comment] = ACTIONS(59), }, [177] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(772), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(774), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(774), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(774), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(774), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(774), - [anon_sym_extern] = ACTIONS(772), - [anon_sym_RBRACE] = ACTIONS(774), - [anon_sym_static] = ACTIONS(772), - [anon_sym_auto] = ACTIONS(772), - [anon_sym_register] = ACTIONS(772), - [anon_sym_inline] = ACTIONS(772), - [anon_sym_const] = ACTIONS(772), - [anon_sym_restrict] = ACTIONS(772), - [anon_sym_volatile] = ACTIONS(772), - [anon_sym__Atomic] = ACTIONS(772), - [anon_sym_unsigned] = ACTIONS(772), - [anon_sym_long] = ACTIONS(772), - [anon_sym_short] = ACTIONS(772), - [sym_primitive_type] = ACTIONS(772), - [anon_sym_enum] = ACTIONS(772), - [anon_sym_struct] = ACTIONS(772), - [anon_sym_union] = ACTIONS(772), - [sym_identifier] = ACTIONS(772), - [sym_comment] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(869), + [anon_sym_COMMA] = ACTIONS(869), + [anon_sym_RPAREN] = ACTIONS(869), + [anon_sym_extern] = ACTIONS(871), + [anon_sym_LPAREN2] = ACTIONS(869), + [anon_sym_STAR] = ACTIONS(869), + [anon_sym_LBRACK] = ACTIONS(869), + [anon_sym_RBRACK] = ACTIONS(869), + [anon_sym_static] = ACTIONS(871), + [anon_sym_auto] = ACTIONS(871), + [anon_sym_register] = ACTIONS(871), + [anon_sym_inline] = ACTIONS(871), + [anon_sym_const] = ACTIONS(871), + [anon_sym_restrict] = ACTIONS(871), + [anon_sym_volatile] = ACTIONS(871), + [anon_sym__Atomic] = ACTIONS(871), + [anon_sym_COLON] = ACTIONS(869), + [anon_sym_AMP] = ACTIONS(869), + [anon_sym_BANG] = ACTIONS(869), + [anon_sym_TILDE] = ACTIONS(869), + [anon_sym_PLUS] = ACTIONS(871), + [anon_sym_DASH] = ACTIONS(871), + [anon_sym_DASH_DASH] = ACTIONS(869), + [anon_sym_PLUS_PLUS] = ACTIONS(869), + [anon_sym_sizeof] = ACTIONS(871), + [sym_number_literal] = ACTIONS(869), + [anon_sym_SQUOTE] = ACTIONS(869), + [anon_sym_DQUOTE] = ACTIONS(869), + [sym_true] = ACTIONS(871), + [sym_false] = ACTIONS(871), + [sym_null] = ACTIONS(871), + [sym_identifier] = ACTIONS(871), + [sym_comment] = ACTIONS(59), }, [178] = { - [sym__field_declarator] = STATE(332), - [sym_pointer_field_declarator] = STATE(332), - [sym_function_field_declarator] = STATE(332), - [sym_array_field_declarator] = STATE(332), - [anon_sym_LPAREN2] = ACTIONS(445), - [anon_sym_STAR] = ACTIONS(776), - [sym_identifier] = ACTIONS(451), - [sym_comment] = ACTIONS(37), + [sym__field_declarator] = STATE(334), + [sym_pointer_field_declarator] = STATE(334), + [sym_function_field_declarator] = STATE(334), + [sym_array_field_declarator] = STATE(334), + [anon_sym_SEMI] = ACTIONS(873), + [anon_sym_LPAREN2] = ACTIONS(875), + [anon_sym_STAR] = ACTIONS(877), + [anon_sym_COLON] = ACTIONS(879), + [sym_identifier] = ACTIONS(881), + [sym_comment] = ACTIONS(59), }, [179] = { - [sym__field_declarator] = STATE(333), - [sym_pointer_field_declarator] = STATE(333), - [sym_function_field_declarator] = STATE(333), - [sym_array_field_declarator] = STATE(333), - [sym_type_qualifier] = STATE(334), - [aux_sym_type_definition_repeat1] = STATE(334), - [anon_sym_LPAREN2] = ACTIONS(445), - [anon_sym_STAR] = ACTIONS(447), - [anon_sym_const] = ACTIONS(23), - [anon_sym_restrict] = ACTIONS(23), - [anon_sym_volatile] = ACTIONS(23), - [anon_sym__Atomic] = ACTIONS(23), - [sym_identifier] = ACTIONS(778), - [sym_comment] = ACTIONS(37), + [sym_storage_class_specifier] = STATE(335), + [sym_type_qualifier] = STATE(335), + [aux_sym__declaration_specifiers_repeat1] = STATE(335), + [anon_sym_SEMI] = ACTIONS(180), + [anon_sym_extern] = ACTIONS(25), + [anon_sym_LPAREN2] = ACTIONS(180), + [anon_sym_STAR] = ACTIONS(180), + [anon_sym_static] = ACTIONS(25), + [anon_sym_auto] = ACTIONS(25), + [anon_sym_register] = ACTIONS(25), + [anon_sym_inline] = ACTIONS(25), + [anon_sym_const] = ACTIONS(27), + [anon_sym_restrict] = ACTIONS(27), + [anon_sym_volatile] = ACTIONS(27), + [anon_sym__Atomic] = ACTIONS(27), + [anon_sym_COLON] = ACTIONS(180), + [sym_identifier] = ACTIONS(182), + [sym_comment] = ACTIONS(59), }, [180] = { - [sym__expression] = STATE(341), - [sym_conditional_expression] = STATE(341), - [sym_assignment_expression] = STATE(341), - [sym_pointer_expression] = STATE(341), - [sym_logical_expression] = STATE(341), - [sym_bitwise_expression] = STATE(341), - [sym_equality_expression] = STATE(341), - [sym_relational_expression] = STATE(341), - [sym_shift_expression] = STATE(341), - [sym_math_expression] = STATE(341), - [sym_cast_expression] = STATE(341), - [sym_sizeof_expression] = STATE(341), - [sym_subscript_expression] = STATE(341), - [sym_call_expression] = STATE(341), - [sym_field_expression] = STATE(341), - [sym_compound_literal_expression] = STATE(341), - [sym_parenthesized_expression] = STATE(341), - [sym_char_literal] = STATE(341), - [sym_concatenated_string] = STATE(341), - [sym_string_literal] = STATE(342), - [anon_sym_LPAREN2] = ACTIONS(780), - [anon_sym_STAR] = ACTIONS(782), - [anon_sym_AMP] = ACTIONS(782), - [anon_sym_BANG] = ACTIONS(784), - [anon_sym_TILDE] = ACTIONS(786), - [anon_sym_PLUS] = ACTIONS(788), - [anon_sym_DASH] = ACTIONS(788), - [anon_sym_DASH_DASH] = ACTIONS(790), - [anon_sym_PLUS_PLUS] = ACTIONS(790), - [anon_sym_sizeof] = ACTIONS(792), - [sym_number_literal] = ACTIONS(794), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(796), - [sym_false] = ACTIONS(796), - [sym_null] = ACTIONS(796), - [sym_identifier] = ACTIONS(796), - [sym_comment] = ACTIONS(37), + [sym_preproc_if_in_field_declaration_list] = STATE(337), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(337), + [sym__declaration_specifiers] = STATE(178), + [sym_storage_class_specifier] = STATE(181), + [sym_type_qualifier] = STATE(181), + [sym__type_specifier] = STATE(179), + [sym_sized_type_specifier] = STATE(179), + [sym_enum_specifier] = STATE(179), + [sym_struct_specifier] = STATE(179), + [sym_union_specifier] = STATE(179), + [sym__field_declaration_list_item] = STATE(337), + [sym_field_declaration] = STATE(337), + [sym_macro_type_specifier] = STATE(179), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(337), + [aux_sym__declaration_specifiers_repeat1] = STATE(181), + [aux_sym_sized_type_specifier_repeat1] = STATE(182), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(373), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(375), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(375), + [anon_sym_extern] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(883), + [anon_sym_static] = ACTIONS(25), + [anon_sym_auto] = ACTIONS(25), + [anon_sym_register] = ACTIONS(25), + [anon_sym_inline] = ACTIONS(25), + [anon_sym_const] = ACTIONS(27), + [anon_sym_restrict] = ACTIONS(27), + [anon_sym_volatile] = ACTIONS(27), + [anon_sym__Atomic] = ACTIONS(27), + [anon_sym_unsigned] = ACTIONS(379), + [anon_sym_long] = ACTIONS(379), + [anon_sym_short] = ACTIONS(379), + [sym_primitive_type] = ACTIONS(381), + [anon_sym_enum] = ACTIONS(33), + [anon_sym_struct] = ACTIONS(35), + [anon_sym_union] = ACTIONS(37), + [sym_identifier] = ACTIONS(81), + [sym_comment] = ACTIONS(59), }, [181] = { - [anon_sym_COMMA] = ACTIONS(798), - [anon_sym_RPAREN] = ACTIONS(798), - [anon_sym_SEMI] = ACTIONS(798), - [anon_sym_LPAREN2] = ACTIONS(798), - [anon_sym_LBRACK] = ACTIONS(798), - [anon_sym_COLON] = ACTIONS(798), - [sym_comment] = ACTIONS(37), + [sym_storage_class_specifier] = STATE(103), + [sym_type_qualifier] = STATE(103), + [sym__type_specifier] = STATE(338), + [sym_sized_type_specifier] = STATE(338), + [sym_enum_specifier] = STATE(338), + [sym_struct_specifier] = STATE(338), + [sym_union_specifier] = STATE(338), + [sym_macro_type_specifier] = STATE(338), + [aux_sym__declaration_specifiers_repeat1] = STATE(103), + [aux_sym_sized_type_specifier_repeat1] = STATE(182), + [anon_sym_extern] = ACTIONS(25), + [anon_sym_static] = ACTIONS(25), + [anon_sym_auto] = ACTIONS(25), + [anon_sym_register] = ACTIONS(25), + [anon_sym_inline] = ACTIONS(25), + [anon_sym_const] = ACTIONS(27), + [anon_sym_restrict] = ACTIONS(27), + [anon_sym_volatile] = ACTIONS(27), + [anon_sym__Atomic] = ACTIONS(27), + [anon_sym_unsigned] = ACTIONS(379), + [anon_sym_long] = ACTIONS(379), + [anon_sym_short] = ACTIONS(379), + [sym_primitive_type] = ACTIONS(885), + [anon_sym_enum] = ACTIONS(33), + [anon_sym_struct] = ACTIONS(35), + [anon_sym_union] = ACTIONS(37), + [sym_identifier] = ACTIONS(81), + [sym_comment] = ACTIONS(59), }, [182] = { - [sym_parameter_list] = STATE(347), - [aux_sym_field_declaration_repeat1] = STATE(348), - [anon_sym_COMMA] = ACTIONS(800), - [anon_sym_SEMI] = ACTIONS(802), - [anon_sym_LPAREN2] = ACTIONS(231), - [anon_sym_LBRACK] = ACTIONS(804), - [anon_sym_COLON] = ACTIONS(806), - [sym_comment] = ACTIONS(37), + [aux_sym_sized_type_specifier_repeat1] = STATE(339), + [anon_sym_SEMI] = ACTIONS(226), + [anon_sym_extern] = ACTIONS(228), + [anon_sym_LPAREN2] = ACTIONS(226), + [anon_sym_STAR] = ACTIONS(226), + [anon_sym_static] = ACTIONS(228), + [anon_sym_auto] = ACTIONS(228), + [anon_sym_register] = ACTIONS(228), + [anon_sym_inline] = ACTIONS(228), + [anon_sym_const] = ACTIONS(228), + [anon_sym_restrict] = ACTIONS(228), + [anon_sym_volatile] = ACTIONS(228), + [anon_sym__Atomic] = ACTIONS(228), + [anon_sym_unsigned] = ACTIONS(887), + [anon_sym_long] = ACTIONS(887), + [anon_sym_short] = ACTIONS(887), + [sym_primitive_type] = ACTIONS(232), + [anon_sym_COLON] = ACTIONS(226), + [sym_identifier] = ACTIONS(234), + [sym_comment] = ACTIONS(59), }, [183] = { - [sym_storage_class_specifier] = STATE(349), - [sym_type_qualifier] = STATE(349), - [aux_sym__declaration_specifiers_repeat1] = STATE(349), - [anon_sym_SEMI] = ACTIONS(237), - [anon_sym_extern] = ACTIONS(21), - [anon_sym_LPAREN2] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(237), - [anon_sym_static] = ACTIONS(21), - [anon_sym_auto] = ACTIONS(21), - [anon_sym_register] = ACTIONS(21), - [anon_sym_inline] = ACTIONS(21), - [anon_sym_const] = ACTIONS(23), - [anon_sym_restrict] = ACTIONS(23), - [anon_sym_volatile] = ACTIONS(23), - [anon_sym__Atomic] = ACTIONS(23), - [anon_sym_COLON] = ACTIONS(237), - [sym_identifier] = ACTIONS(239), - [sym_comment] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(889), + [anon_sym_COMMA] = ACTIONS(889), + [anon_sym_RPAREN] = ACTIONS(889), + [anon_sym_extern] = ACTIONS(891), + [anon_sym_LPAREN2] = ACTIONS(889), + [anon_sym_STAR] = ACTIONS(889), + [anon_sym_LBRACK] = ACTIONS(889), + [anon_sym_RBRACK] = ACTIONS(889), + [anon_sym_static] = ACTIONS(891), + [anon_sym_auto] = ACTIONS(891), + [anon_sym_register] = ACTIONS(891), + [anon_sym_inline] = ACTIONS(891), + [anon_sym_const] = ACTIONS(891), + [anon_sym_restrict] = ACTIONS(891), + [anon_sym_volatile] = ACTIONS(891), + [anon_sym__Atomic] = ACTIONS(891), + [anon_sym_COLON] = ACTIONS(889), + [anon_sym_AMP] = ACTIONS(889), + [anon_sym_BANG] = ACTIONS(889), + [anon_sym_TILDE] = ACTIONS(889), + [anon_sym_PLUS] = ACTIONS(891), + [anon_sym_DASH] = ACTIONS(891), + [anon_sym_DASH_DASH] = ACTIONS(889), + [anon_sym_PLUS_PLUS] = ACTIONS(889), + [anon_sym_sizeof] = ACTIONS(891), + [sym_number_literal] = ACTIONS(889), + [anon_sym_SQUOTE] = ACTIONS(889), + [anon_sym_DQUOTE] = ACTIONS(889), + [sym_true] = ACTIONS(891), + [sym_false] = ACTIONS(891), + [sym_null] = ACTIONS(891), + [sym_identifier] = ACTIONS(891), + [sym_comment] = ACTIONS(59), }, [184] = { - [anon_sym_COMMA] = ACTIONS(808), - [anon_sym_RPAREN] = ACTIONS(808), - [anon_sym_SEMI] = ACTIONS(808), - [anon_sym_extern] = ACTIONS(810), - [anon_sym_LPAREN2] = ACTIONS(808), - [anon_sym_STAR] = ACTIONS(808), - [anon_sym_LBRACK] = ACTIONS(808), - [anon_sym_RBRACK] = ACTIONS(808), - [anon_sym_static] = ACTIONS(810), - [anon_sym_auto] = ACTIONS(810), - [anon_sym_register] = ACTIONS(810), - [anon_sym_inline] = ACTIONS(810), - [anon_sym_const] = ACTIONS(810), - [anon_sym_restrict] = ACTIONS(810), - [anon_sym_volatile] = ACTIONS(810), - [anon_sym__Atomic] = ACTIONS(810), - [anon_sym_COLON] = ACTIONS(808), - [anon_sym_AMP] = ACTIONS(808), - [anon_sym_BANG] = ACTIONS(808), - [anon_sym_TILDE] = ACTIONS(808), - [anon_sym_PLUS] = ACTIONS(810), - [anon_sym_DASH] = ACTIONS(810), - [anon_sym_DASH_DASH] = ACTIONS(808), - [anon_sym_PLUS_PLUS] = ACTIONS(808), - [anon_sym_sizeof] = ACTIONS(810), - [sym_number_literal] = ACTIONS(808), - [anon_sym_SQUOTE] = ACTIONS(808), - [anon_sym_DQUOTE] = ACTIONS(808), - [sym_true] = ACTIONS(810), - [sym_false] = ACTIONS(810), - [sym_null] = ACTIONS(810), - [sym_identifier] = ACTIONS(810), - [sym_comment] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(893), + [anon_sym_COMMA] = ACTIONS(893), + [anon_sym_RPAREN] = ACTIONS(893), + [anon_sym_extern] = ACTIONS(895), + [anon_sym_LPAREN2] = ACTIONS(893), + [anon_sym_STAR] = ACTIONS(893), + [anon_sym_LBRACK] = ACTIONS(893), + [anon_sym_RBRACK] = ACTIONS(893), + [anon_sym_static] = ACTIONS(895), + [anon_sym_auto] = ACTIONS(895), + [anon_sym_register] = ACTIONS(895), + [anon_sym_inline] = ACTIONS(895), + [anon_sym_const] = ACTIONS(895), + [anon_sym_restrict] = ACTIONS(895), + [anon_sym_volatile] = ACTIONS(895), + [anon_sym__Atomic] = ACTIONS(895), + [anon_sym_COLON] = ACTIONS(893), + [anon_sym_AMP] = ACTIONS(893), + [anon_sym_BANG] = ACTIONS(893), + [anon_sym_TILDE] = ACTIONS(893), + [anon_sym_PLUS] = ACTIONS(895), + [anon_sym_DASH] = ACTIONS(895), + [anon_sym_DASH_DASH] = ACTIONS(893), + [anon_sym_PLUS_PLUS] = ACTIONS(893), + [anon_sym_sizeof] = ACTIONS(895), + [sym_number_literal] = ACTIONS(893), + [anon_sym_SQUOTE] = ACTIONS(893), + [anon_sym_DQUOTE] = ACTIONS(893), + [sym_true] = ACTIONS(895), + [sym_false] = ACTIONS(895), + [sym_null] = ACTIONS(895), + [sym_identifier] = ACTIONS(895), + [sym_comment] = ACTIONS(59), }, [185] = { - [sym_preproc_if_in_field_declaration_list] = STATE(185), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(185), - [sym__declaration_specifiers] = STATE(97), - [sym_storage_class_specifier] = STATE(100), - [sym_type_qualifier] = STATE(100), - [sym__type_specifier] = STATE(98), - [sym_sized_type_specifier] = STATE(98), - [sym_enum_specifier] = STATE(98), - [sym_struct_specifier] = STATE(98), - [sym_union_specifier] = STATE(98), - [sym__field_declaration_list_item] = STATE(185), - [sym_field_declaration] = STATE(185), - [sym_macro_type_specifier] = STATE(98), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(185), - [aux_sym__declaration_specifiers_repeat1] = STATE(100), - [aux_sym_sized_type_specifier_repeat1] = STATE(101), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(812), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(815), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(815), - [anon_sym_extern] = ACTIONS(818), - [anon_sym_RBRACE] = ACTIONS(821), - [anon_sym_static] = ACTIONS(818), - [anon_sym_auto] = ACTIONS(818), - [anon_sym_register] = ACTIONS(818), - [anon_sym_inline] = ACTIONS(818), - [anon_sym_const] = ACTIONS(823), - [anon_sym_restrict] = ACTIONS(823), - [anon_sym_volatile] = ACTIONS(823), - [anon_sym__Atomic] = ACTIONS(823), - [anon_sym_unsigned] = ACTIONS(826), - [anon_sym_long] = ACTIONS(826), - [anon_sym_short] = ACTIONS(826), - [sym_primitive_type] = ACTIONS(829), - [anon_sym_enum] = ACTIONS(832), - [anon_sym_struct] = ACTIONS(835), - [anon_sym_union] = ACTIONS(838), - [sym_identifier] = ACTIONS(841), - [sym_comment] = ACTIONS(37), + [anon_sym_RPAREN] = ACTIONS(897), + [sym_comment] = ACTIONS(59), }, [186] = { - [sym_storage_class_specifier] = STATE(350), - [sym_type_qualifier] = STATE(350), - [aux_sym__declaration_specifiers_repeat1] = STATE(350), - [anon_sym_SEMI] = ACTIONS(237), - [anon_sym_extern] = ACTIONS(21), - [anon_sym_LPAREN2] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(237), - [anon_sym_static] = ACTIONS(21), - [anon_sym_auto] = ACTIONS(21), - [anon_sym_register] = ACTIONS(21), - [anon_sym_inline] = ACTIONS(21), - [anon_sym_const] = ACTIONS(23), - [anon_sym_restrict] = ACTIONS(23), - [anon_sym_volatile] = ACTIONS(23), - [anon_sym__Atomic] = ACTIONS(23), - [anon_sym_COLON] = ACTIONS(237), - [sym_identifier] = ACTIONS(239), - [sym_comment] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(899), + [anon_sym_COMMA] = ACTIONS(899), + [anon_sym_RPAREN] = ACTIONS(899), + [anon_sym_RBRACE] = ACTIONS(899), + [anon_sym_LPAREN2] = ACTIONS(899), + [anon_sym_STAR] = ACTIONS(901), + [anon_sym_LBRACK] = ACTIONS(899), + [anon_sym_RBRACK] = ACTIONS(899), + [anon_sym_EQ] = ACTIONS(901), + [anon_sym_COLON] = ACTIONS(899), + [anon_sym_QMARK] = ACTIONS(899), + [anon_sym_STAR_EQ] = ACTIONS(899), + [anon_sym_SLASH_EQ] = ACTIONS(899), + [anon_sym_PERCENT_EQ] = ACTIONS(899), + [anon_sym_PLUS_EQ] = ACTIONS(899), + [anon_sym_DASH_EQ] = ACTIONS(899), + [anon_sym_LT_LT_EQ] = ACTIONS(899), + [anon_sym_GT_GT_EQ] = ACTIONS(899), + [anon_sym_AMP_EQ] = ACTIONS(899), + [anon_sym_CARET_EQ] = ACTIONS(899), + [anon_sym_PIPE_EQ] = ACTIONS(899), + [anon_sym_AMP] = ACTIONS(901), + [anon_sym_PIPE_PIPE] = ACTIONS(899), + [anon_sym_AMP_AMP] = ACTIONS(899), + [anon_sym_PIPE] = ACTIONS(901), + [anon_sym_CARET] = ACTIONS(901), + [anon_sym_EQ_EQ] = ACTIONS(899), + [anon_sym_BANG_EQ] = ACTIONS(899), + [anon_sym_LT] = ACTIONS(901), + [anon_sym_GT] = ACTIONS(901), + [anon_sym_LT_EQ] = ACTIONS(899), + [anon_sym_GT_EQ] = ACTIONS(899), + [anon_sym_LT_LT] = ACTIONS(901), + [anon_sym_GT_GT] = ACTIONS(901), + [anon_sym_PLUS] = ACTIONS(901), + [anon_sym_DASH] = ACTIONS(901), + [anon_sym_SLASH] = ACTIONS(901), + [anon_sym_PERCENT] = ACTIONS(901), + [anon_sym_DASH_DASH] = ACTIONS(899), + [anon_sym_PLUS_PLUS] = ACTIONS(899), + [anon_sym_DOT] = ACTIONS(899), + [anon_sym_DASH_GT] = ACTIONS(899), + [sym_comment] = ACTIONS(59), }, [187] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(187), - [anon_sym_SEMI] = ACTIONS(304), - [anon_sym_extern] = ACTIONS(306), - [anon_sym_LPAREN2] = ACTIONS(304), - [anon_sym_STAR] = ACTIONS(304), - [anon_sym_static] = ACTIONS(306), - [anon_sym_auto] = ACTIONS(306), - [anon_sym_register] = ACTIONS(306), - [anon_sym_inline] = ACTIONS(306), - [anon_sym_const] = ACTIONS(306), - [anon_sym_restrict] = ACTIONS(306), - [anon_sym_volatile] = ACTIONS(306), - [anon_sym__Atomic] = ACTIONS(306), - [anon_sym_unsigned] = ACTIONS(844), - [anon_sym_long] = ACTIONS(844), - [anon_sym_short] = ACTIONS(844), - [sym_primitive_type] = ACTIONS(306), - [anon_sym_COLON] = ACTIONS(304), - [sym_identifier] = ACTIONS(306), - [sym_comment] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(903), + [anon_sym_COMMA] = ACTIONS(903), + [anon_sym_RPAREN] = ACTIONS(903), + [anon_sym_extern] = ACTIONS(905), + [anon_sym_LBRACE] = ACTIONS(903), + [anon_sym_RBRACE] = ACTIONS(903), + [anon_sym_LPAREN2] = ACTIONS(903), + [anon_sym_STAR] = ACTIONS(905), + [anon_sym_LBRACK] = ACTIONS(903), + [anon_sym_RBRACK] = ACTIONS(903), + [anon_sym_EQ] = ACTIONS(905), + [anon_sym_static] = ACTIONS(905), + [anon_sym_auto] = ACTIONS(905), + [anon_sym_register] = ACTIONS(905), + [anon_sym_inline] = ACTIONS(905), + [anon_sym_const] = ACTIONS(905), + [anon_sym_restrict] = ACTIONS(905), + [anon_sym_volatile] = ACTIONS(905), + [anon_sym__Atomic] = ACTIONS(905), + [anon_sym_unsigned] = ACTIONS(905), + [anon_sym_long] = ACTIONS(905), + [anon_sym_short] = ACTIONS(905), + [sym_primitive_type] = ACTIONS(905), + [anon_sym_enum] = ACTIONS(905), + [anon_sym_struct] = ACTIONS(905), + [anon_sym_union] = ACTIONS(905), + [anon_sym_COLON] = ACTIONS(903), + [anon_sym_QMARK] = ACTIONS(903), + [anon_sym_STAR_EQ] = ACTIONS(903), + [anon_sym_SLASH_EQ] = ACTIONS(903), + [anon_sym_PERCENT_EQ] = ACTIONS(903), + [anon_sym_PLUS_EQ] = ACTIONS(903), + [anon_sym_DASH_EQ] = ACTIONS(903), + [anon_sym_LT_LT_EQ] = ACTIONS(903), + [anon_sym_GT_GT_EQ] = ACTIONS(903), + [anon_sym_AMP_EQ] = ACTIONS(903), + [anon_sym_CARET_EQ] = ACTIONS(903), + [anon_sym_PIPE_EQ] = ACTIONS(903), + [anon_sym_AMP] = ACTIONS(905), + [anon_sym_PIPE_PIPE] = ACTIONS(903), + [anon_sym_AMP_AMP] = ACTIONS(903), + [anon_sym_PIPE] = ACTIONS(905), + [anon_sym_CARET] = ACTIONS(905), + [anon_sym_EQ_EQ] = ACTIONS(903), + [anon_sym_BANG_EQ] = ACTIONS(903), + [anon_sym_LT] = ACTIONS(905), + [anon_sym_GT] = ACTIONS(905), + [anon_sym_LT_EQ] = ACTIONS(903), + [anon_sym_GT_EQ] = ACTIONS(903), + [anon_sym_LT_LT] = ACTIONS(905), + [anon_sym_GT_GT] = ACTIONS(905), + [anon_sym_PLUS] = ACTIONS(905), + [anon_sym_DASH] = ACTIONS(905), + [anon_sym_SLASH] = ACTIONS(905), + [anon_sym_PERCENT] = ACTIONS(905), + [anon_sym_DASH_DASH] = ACTIONS(903), + [anon_sym_PLUS_PLUS] = ACTIONS(903), + [anon_sym_DOT] = ACTIONS(903), + [anon_sym_DASH_GT] = ACTIONS(903), + [anon_sym_DQUOTE] = ACTIONS(903), + [sym_identifier] = ACTIONS(905), + [sym_comment] = ACTIONS(59), }, [188] = { - [sym__declaration_specifiers] = STATE(234), - [sym__abstract_declarator] = STATE(351), - [sym_abstract_pointer_declarator] = STATE(351), - [sym_abstract_function_declarator] = STATE(351), - [sym_abstract_array_declarator] = STATE(351), - [sym_storage_class_specifier] = STATE(236), - [sym_type_qualifier] = STATE(236), - [sym__type_specifier] = STATE(235), - [sym_sized_type_specifier] = STATE(235), - [sym_enum_specifier] = STATE(235), - [sym_struct_specifier] = STATE(235), - [sym_union_specifier] = STATE(235), - [sym_parameter_list] = STATE(192), - [sym_parameter_declaration] = STATE(232), - [sym_macro_type_specifier] = STATE(235), - [aux_sym__declaration_specifiers_repeat1] = STATE(236), - [aux_sym_sized_type_specifier_repeat1] = STATE(237), - [anon_sym_DOT_DOT_DOT] = ACTIONS(551), - [anon_sym_RPAREN] = ACTIONS(553), - [anon_sym_extern] = ACTIONS(21), - [anon_sym_LPAREN2] = ACTIONS(469), - [anon_sym_STAR] = ACTIONS(471), - [anon_sym_LBRACK] = ACTIONS(473), - [anon_sym_static] = ACTIONS(21), - [anon_sym_auto] = ACTIONS(21), - [anon_sym_register] = ACTIONS(21), - [anon_sym_inline] = ACTIONS(21), - [anon_sym_const] = ACTIONS(23), - [anon_sym_restrict] = ACTIONS(23), - [anon_sym_volatile] = ACTIONS(23), - [anon_sym__Atomic] = ACTIONS(23), - [anon_sym_unsigned] = ACTIONS(555), - [anon_sym_long] = ACTIONS(555), - [anon_sym_short] = ACTIONS(555), - [sym_primitive_type] = ACTIONS(557), - [anon_sym_enum] = ACTIONS(29), - [anon_sym_struct] = ACTIONS(31), - [anon_sym_union] = ACTIONS(33), - [sym_identifier] = ACTIONS(35), - [sym_comment] = ACTIONS(37), + [aux_sym_string_literal_repeat1] = STATE(188), + [anon_sym_DQUOTE] = ACTIONS(907), + [aux_sym_SLASH_LBRACK_CARET_BSLASH_BSLASH_DQUOTE_BSLASHn_RBRACK_SLASH] = ACTIONS(909), + [sym_escape_sequence] = ACTIONS(909), + [sym_comment] = ACTIONS(69), }, [189] = { - [sym__abstract_declarator] = STATE(352), - [sym_abstract_pointer_declarator] = STATE(352), - [sym_abstract_function_declarator] = STATE(352), - [sym_abstract_array_declarator] = STATE(352), - [sym_type_qualifier] = STATE(353), - [sym_parameter_list] = STATE(192), - [aux_sym_type_definition_repeat1] = STATE(353), - [anon_sym_RPAREN] = ACTIONS(847), - [anon_sym_LPAREN2] = ACTIONS(469), - [anon_sym_STAR] = ACTIONS(471), - [anon_sym_LBRACK] = ACTIONS(473), - [anon_sym_const] = ACTIONS(849), - [anon_sym_restrict] = ACTIONS(849), - [anon_sym_volatile] = ACTIONS(849), - [anon_sym__Atomic] = ACTIONS(849), - [sym_comment] = ACTIONS(37), + [anon_sym_RPAREN] = ACTIONS(912), + [sym_comment] = ACTIONS(59), }, [190] = { - [sym__declaration_specifiers] = STATE(355), - [sym_storage_class_specifier] = STATE(250), - [sym_type_qualifier] = STATE(250), - [sym__type_specifier] = STATE(247), - [sym_sized_type_specifier] = STATE(247), - [sym_enum_specifier] = STATE(247), - [sym_struct_specifier] = STATE(247), - [sym_union_specifier] = STATE(247), - [sym__expression] = STATE(356), - [sym_conditional_expression] = STATE(356), - [sym_assignment_expression] = STATE(356), - [sym_pointer_expression] = STATE(356), - [sym_logical_expression] = STATE(356), - [sym_bitwise_expression] = STATE(356), - [sym_equality_expression] = STATE(356), - [sym_relational_expression] = STATE(356), - [sym_shift_expression] = STATE(356), - [sym_math_expression] = STATE(356), - [sym_cast_expression] = STATE(356), - [sym_sizeof_expression] = STATE(356), - [sym_subscript_expression] = STATE(356), - [sym_call_expression] = STATE(356), - [sym_field_expression] = STATE(356), - [sym_compound_literal_expression] = STATE(356), - [sym_parenthesized_expression] = STATE(356), - [sym_char_literal] = STATE(356), - [sym_concatenated_string] = STATE(356), - [sym_string_literal] = STATE(249), - [sym_macro_type_specifier] = STATE(247), - [aux_sym__declaration_specifiers_repeat1] = STATE(250), - [aux_sym_sized_type_specifier_repeat1] = STATE(251), - [anon_sym_extern] = ACTIONS(21), - [anon_sym_LPAREN2] = ACTIONS(559), - [anon_sym_STAR] = ACTIONS(561), - [anon_sym_RBRACK] = ACTIONS(851), - [anon_sym_static] = ACTIONS(21), - [anon_sym_auto] = ACTIONS(21), - [anon_sym_register] = ACTIONS(21), - [anon_sym_inline] = ACTIONS(21), - [anon_sym_const] = ACTIONS(23), - [anon_sym_restrict] = ACTIONS(23), - [anon_sym_volatile] = ACTIONS(23), - [anon_sym__Atomic] = ACTIONS(23), - [anon_sym_unsigned] = ACTIONS(565), - [anon_sym_long] = ACTIONS(565), - [anon_sym_short] = ACTIONS(565), - [sym_primitive_type] = ACTIONS(567), - [anon_sym_enum] = ACTIONS(29), - [anon_sym_struct] = ACTIONS(31), - [anon_sym_union] = ACTIONS(33), - [anon_sym_AMP] = ACTIONS(561), - [anon_sym_BANG] = ACTIONS(569), - [anon_sym_TILDE] = ACTIONS(571), - [anon_sym_PLUS] = ACTIONS(573), - [anon_sym_DASH] = ACTIONS(573), - [anon_sym_DASH_DASH] = ACTIONS(575), - [anon_sym_PLUS_PLUS] = ACTIONS(575), - [anon_sym_sizeof] = ACTIONS(577), - [sym_number_literal] = ACTIONS(853), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(855), - [sym_false] = ACTIONS(855), - [sym_null] = ACTIONS(855), - [sym_identifier] = ACTIONS(583), - [sym_comment] = ACTIONS(37), + [sym__declarator] = STATE(192), + [sym_pointer_declarator] = STATE(192), + [sym_function_declarator] = STATE(192), + [sym_array_declarator] = STATE(192), + [sym_type_qualifier] = STATE(342), + [aux_sym_type_definition_repeat1] = STATE(342), + [anon_sym_LPAREN2] = ACTIONS(174), + [anon_sym_STAR] = ACTIONS(429), + [anon_sym_const] = ACTIONS(27), + [anon_sym_restrict] = ACTIONS(27), + [anon_sym_volatile] = ACTIONS(27), + [anon_sym__Atomic] = ACTIONS(27), + [sym_identifier] = ACTIONS(433), + [sym_comment] = ACTIONS(59), }, [191] = { - [sym_parameter_list] = STATE(358), - [anon_sym_RPAREN] = ACTIONS(857), - [anon_sym_LPAREN2] = ACTIONS(231), - [anon_sym_LBRACK] = ACTIONS(859), - [sym_comment] = ACTIONS(37), + [sym_parameter_list] = STATE(201), + [anon_sym_RPAREN] = ACTIONS(914), + [anon_sym_LPAREN2] = ACTIONS(441), + [anon_sym_LBRACK] = ACTIONS(443), + [sym_comment] = ACTIONS(59), }, [192] = { - [anon_sym_COMMA] = ACTIONS(861), - [anon_sym_RPAREN] = ACTIONS(861), - [anon_sym_LPAREN2] = ACTIONS(861), - [anon_sym_LBRACK] = ACTIONS(861), - [sym_comment] = ACTIONS(37), + [sym_parameter_list] = STATE(201), + [anon_sym_SEMI] = ACTIONS(916), + [anon_sym_COMMA] = ACTIONS(916), + [anon_sym_RPAREN] = ACTIONS(916), + [anon_sym_LBRACE] = ACTIONS(916), + [anon_sym_LPAREN2] = ACTIONS(441), + [anon_sym_LBRACK] = ACTIONS(443), + [anon_sym_EQ] = ACTIONS(916), + [sym_comment] = ACTIONS(59), }, [193] = { - [anon_sym_COMMA] = ACTIONS(863), - [anon_sym_RPAREN] = ACTIONS(863), - [anon_sym_SEMI] = ACTIONS(863), - [anon_sym_extern] = ACTIONS(865), - [anon_sym_LPAREN2] = ACTIONS(863), - [anon_sym_STAR] = ACTIONS(863), - [anon_sym_LBRACK] = ACTIONS(863), - [anon_sym_RBRACK] = ACTIONS(863), - [anon_sym_static] = ACTIONS(865), - [anon_sym_auto] = ACTIONS(865), - [anon_sym_register] = ACTIONS(865), - [anon_sym_inline] = ACTIONS(865), - [anon_sym_const] = ACTIONS(865), - [anon_sym_restrict] = ACTIONS(865), - [anon_sym_volatile] = ACTIONS(865), - [anon_sym__Atomic] = ACTIONS(865), - [anon_sym_COLON] = ACTIONS(863), - [anon_sym_AMP] = ACTIONS(863), - [anon_sym_BANG] = ACTIONS(863), - [anon_sym_TILDE] = ACTIONS(863), - [anon_sym_PLUS] = ACTIONS(865), - [anon_sym_DASH] = ACTIONS(865), - [anon_sym_DASH_DASH] = ACTIONS(863), - [anon_sym_PLUS_PLUS] = ACTIONS(863), - [anon_sym_sizeof] = ACTIONS(865), - [sym_number_literal] = ACTIONS(863), - [anon_sym_SQUOTE] = ACTIONS(863), - [anon_sym_DQUOTE] = ACTIONS(863), - [sym_true] = ACTIONS(865), - [sym_false] = ACTIONS(865), - [sym_null] = ACTIONS(865), - [sym_identifier] = ACTIONS(865), - [sym_comment] = ACTIONS(37), + [sym__declarator] = STATE(344), + [sym_pointer_declarator] = STATE(344), + [sym_function_declarator] = STATE(344), + [sym_array_declarator] = STATE(344), + [sym_type_qualifier] = STATE(345), + [aux_sym_type_definition_repeat1] = STATE(345), + [anon_sym_LPAREN2] = ACTIONS(174), + [anon_sym_STAR] = ACTIONS(176), + [anon_sym_const] = ACTIONS(27), + [anon_sym_restrict] = ACTIONS(27), + [anon_sym_volatile] = ACTIONS(27), + [anon_sym__Atomic] = ACTIONS(27), + [sym_identifier] = ACTIONS(918), + [sym_comment] = ACTIONS(59), }, [194] = { - [sym__abstract_declarator] = STATE(359), - [sym_abstract_pointer_declarator] = STATE(359), - [sym_abstract_function_declarator] = STATE(359), - [sym_abstract_array_declarator] = STATE(359), - [sym_parameter_list] = STATE(192), - [anon_sym_RPAREN] = ACTIONS(857), - [anon_sym_LPAREN2] = ACTIONS(469), - [anon_sym_STAR] = ACTIONS(471), - [anon_sym_LBRACK] = ACTIONS(473), - [sym_comment] = ACTIONS(37), + [ts_builtin_sym_end] = ACTIONS(920), + [anon_sym_SEMI] = ACTIONS(920), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(922), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(922), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(922), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(922), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(922), + [sym_preproc_directive] = ACTIONS(922), + [anon_sym_typedef] = ACTIONS(922), + [anon_sym_extern] = ACTIONS(922), + [anon_sym_LBRACE] = ACTIONS(920), + [anon_sym_RBRACE] = ACTIONS(920), + [anon_sym_LPAREN2] = ACTIONS(920), + [anon_sym_STAR] = ACTIONS(920), + [anon_sym_static] = ACTIONS(922), + [anon_sym_auto] = ACTIONS(922), + [anon_sym_register] = ACTIONS(922), + [anon_sym_inline] = ACTIONS(922), + [anon_sym_const] = ACTIONS(922), + [anon_sym_restrict] = ACTIONS(922), + [anon_sym_volatile] = ACTIONS(922), + [anon_sym__Atomic] = ACTIONS(922), + [anon_sym_unsigned] = ACTIONS(922), + [anon_sym_long] = ACTIONS(922), + [anon_sym_short] = ACTIONS(922), + [sym_primitive_type] = ACTIONS(922), + [anon_sym_enum] = ACTIONS(922), + [anon_sym_struct] = ACTIONS(922), + [anon_sym_union] = ACTIONS(922), + [anon_sym_if] = ACTIONS(922), + [anon_sym_else] = ACTIONS(922), + [anon_sym_switch] = ACTIONS(922), + [anon_sym_case] = ACTIONS(922), + [anon_sym_default] = ACTIONS(922), + [anon_sym_while] = ACTIONS(922), + [anon_sym_do] = ACTIONS(922), + [anon_sym_for] = ACTIONS(922), + [anon_sym_return] = ACTIONS(922), + [anon_sym_break] = ACTIONS(922), + [anon_sym_continue] = ACTIONS(922), + [anon_sym_goto] = ACTIONS(922), + [anon_sym_AMP] = ACTIONS(920), + [anon_sym_BANG] = ACTIONS(920), + [anon_sym_TILDE] = ACTIONS(920), + [anon_sym_PLUS] = ACTIONS(922), + [anon_sym_DASH] = ACTIONS(922), + [anon_sym_DASH_DASH] = ACTIONS(920), + [anon_sym_PLUS_PLUS] = ACTIONS(920), + [anon_sym_sizeof] = ACTIONS(922), + [sym_number_literal] = ACTIONS(920), + [anon_sym_SQUOTE] = ACTIONS(920), + [anon_sym_DQUOTE] = ACTIONS(920), + [sym_true] = ACTIONS(922), + [sym_false] = ACTIONS(922), + [sym_null] = ACTIONS(922), + [sym_identifier] = ACTIONS(922), + [sym_comment] = ACTIONS(59), }, [195] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(195), - [anon_sym_RPAREN] = ACTIONS(304), - [anon_sym_LPAREN2] = ACTIONS(304), - [anon_sym_STAR] = ACTIONS(304), - [anon_sym_LBRACK] = ACTIONS(304), - [anon_sym_unsigned] = ACTIONS(867), - [anon_sym_long] = ACTIONS(867), - [anon_sym_short] = ACTIONS(867), - [sym_primitive_type] = ACTIONS(306), - [sym_identifier] = ACTIONS(306), - [sym_comment] = ACTIONS(37), + [sym__declarator] = STATE(347), + [sym_pointer_declarator] = STATE(347), + [sym_function_declarator] = STATE(347), + [sym_array_declarator] = STATE(347), + [sym_init_declarator] = STATE(348), + [anon_sym_LPAREN2] = ACTIONS(174), + [anon_sym_STAR] = ACTIONS(924), + [sym_identifier] = ACTIONS(926), + [sym_comment] = ACTIONS(59), }, [196] = { - [sym__declarator] = STATE(198), - [sym_pointer_declarator] = STATE(198), - [sym_function_declarator] = STATE(198), - [sym_array_declarator] = STATE(198), - [sym_type_qualifier] = STATE(199), - [aux_sym_type_definition_repeat1] = STATE(199), - [anon_sym_LPAREN2] = ACTIONS(88), - [anon_sym_STAR] = ACTIONS(219), - [anon_sym_const] = ACTIONS(23), - [anon_sym_restrict] = ACTIONS(23), - [anon_sym_volatile] = ACTIONS(23), - [anon_sym__Atomic] = ACTIONS(23), - [sym_identifier] = ACTIONS(487), - [sym_comment] = ACTIONS(37), + [sym_preproc_include] = STATE(375), + [sym_preproc_def] = STATE(375), + [sym_preproc_function_def] = STATE(375), + [sym_preproc_call] = STATE(375), + [sym_preproc_if_in_compound_statement] = STATE(375), + [sym_preproc_ifdef_in_compound_statement] = STATE(375), + [sym_declaration] = STATE(375), + [sym_type_definition] = STATE(375), + [sym__declaration_specifiers] = STATE(371), + [sym_compound_statement] = STATE(375), + [sym_storage_class_specifier] = STATE(30), + [sym_type_qualifier] = STATE(30), + [sym__type_specifier] = STATE(25), + [sym_sized_type_specifier] = STATE(25), + [sym_enum_specifier] = STATE(25), + [sym_struct_specifier] = STATE(25), + [sym_union_specifier] = STATE(25), + [sym_labeled_statement] = STATE(375), + [sym_expression_statement] = STATE(375), + [sym_if_statement] = STATE(375), + [sym_switch_statement] = STATE(375), + [sym_case_statement] = STATE(375), + [sym_while_statement] = STATE(375), + [sym_do_statement] = STATE(375), + [sym_for_statement] = STATE(375), + [sym_return_statement] = STATE(375), + [sym_break_statement] = STATE(375), + [sym_continue_statement] = STATE(375), + [sym_goto_statement] = STATE(375), + [sym__expression] = STATE(372), + [sym_comma_expression] = STATE(373), + [sym_conditional_expression] = STATE(372), + [sym_assignment_expression] = STATE(372), + [sym_pointer_expression] = STATE(372), + [sym_logical_expression] = STATE(372), + [sym_bitwise_expression] = STATE(372), + [sym_equality_expression] = STATE(372), + [sym_relational_expression] = STATE(372), + [sym_shift_expression] = STATE(372), + [sym_math_expression] = STATE(372), + [sym_cast_expression] = STATE(372), + [sym_sizeof_expression] = STATE(372), + [sym_subscript_expression] = STATE(372), + [sym_call_expression] = STATE(372), + [sym_field_expression] = STATE(372), + [sym_compound_literal_expression] = STATE(372), + [sym_parenthesized_expression] = STATE(372), + [sym_char_literal] = STATE(372), + [sym_concatenated_string] = STATE(372), + [sym_string_literal] = STATE(374), + [sym__empty_declaration] = STATE(375), + [sym_macro_type_specifier] = STATE(25), + [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(375), + [aux_sym__declaration_specifiers_repeat1] = STATE(30), + [aux_sym_sized_type_specifier_repeat1] = STATE(31), + [anon_sym_SEMI] = ACTIONS(928), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(7), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(9), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(930), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(932), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(932), + [sym_preproc_directive] = ACTIONS(15), + [anon_sym_typedef] = ACTIONS(17), + [anon_sym_extern] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(439), + [anon_sym_RBRACE] = ACTIONS(934), + [anon_sym_LPAREN2] = ACTIONS(936), + [anon_sym_STAR] = ACTIONS(938), + [anon_sym_static] = ACTIONS(25), + [anon_sym_auto] = ACTIONS(25), + [anon_sym_register] = ACTIONS(25), + [anon_sym_inline] = ACTIONS(25), + [anon_sym_const] = ACTIONS(27), + [anon_sym_restrict] = ACTIONS(27), + [anon_sym_volatile] = ACTIONS(27), + [anon_sym__Atomic] = ACTIONS(27), + [anon_sym_unsigned] = ACTIONS(29), + [anon_sym_long] = ACTIONS(29), + [anon_sym_short] = ACTIONS(29), + [sym_primitive_type] = ACTIONS(31), + [anon_sym_enum] = ACTIONS(33), + [anon_sym_struct] = ACTIONS(35), + [anon_sym_union] = ACTIONS(37), + [anon_sym_if] = ACTIONS(940), + [anon_sym_switch] = ACTIONS(942), + [anon_sym_case] = ACTIONS(944), + [anon_sym_default] = ACTIONS(946), + [anon_sym_while] = ACTIONS(948), + [anon_sym_do] = ACTIONS(950), + [anon_sym_for] = ACTIONS(952), + [anon_sym_return] = ACTIONS(954), + [anon_sym_break] = ACTIONS(956), + [anon_sym_continue] = ACTIONS(958), + [anon_sym_goto] = ACTIONS(960), + [anon_sym_AMP] = ACTIONS(938), + [anon_sym_BANG] = ACTIONS(962), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_DASH_DASH] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(968), + [anon_sym_sizeof] = ACTIONS(970), + [sym_number_literal] = ACTIONS(972), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(974), + [sym_false] = ACTIONS(974), + [sym_null] = ACTIONS(974), + [sym_identifier] = ACTIONS(976), + [sym_comment] = ACTIONS(59), }, [197] = { - [anon_sym_COMMA] = ACTIONS(870), - [anon_sym_RPAREN] = ACTIONS(870), - [anon_sym_SEMI] = ACTIONS(870), - [anon_sym_LBRACE] = ACTIONS(870), - [anon_sym_LPAREN2] = ACTIONS(870), - [anon_sym_LBRACK] = ACTIONS(870), - [anon_sym_EQ] = ACTIONS(870), - [sym_comment] = ACTIONS(37), + [sym__declaration_specifiers] = STATE(289), + [sym_storage_class_specifier] = STATE(292), + [sym_type_qualifier] = STATE(292), + [sym__type_specifier] = STATE(291), + [sym_sized_type_specifier] = STATE(291), + [sym_enum_specifier] = STATE(291), + [sym_struct_specifier] = STATE(291), + [sym_union_specifier] = STATE(291), + [sym_parameter_declaration] = STATE(287), + [sym_macro_type_specifier] = STATE(291), + [aux_sym__declaration_specifiers_repeat1] = STATE(292), + [aux_sym_sized_type_specifier_repeat1] = STATE(293), + [anon_sym_DOT_DOT_DOT] = ACTIONS(758), + [anon_sym_RPAREN] = ACTIONS(760), + [anon_sym_extern] = ACTIONS(25), + [anon_sym_static] = ACTIONS(25), + [anon_sym_auto] = ACTIONS(25), + [anon_sym_register] = ACTIONS(25), + [anon_sym_inline] = ACTIONS(25), + [anon_sym_const] = ACTIONS(27), + [anon_sym_restrict] = ACTIONS(27), + [anon_sym_volatile] = ACTIONS(27), + [anon_sym__Atomic] = ACTIONS(27), + [anon_sym_unsigned] = ACTIONS(762), + [anon_sym_long] = ACTIONS(762), + [anon_sym_short] = ACTIONS(762), + [sym_primitive_type] = ACTIONS(764), + [anon_sym_enum] = ACTIONS(33), + [anon_sym_struct] = ACTIONS(35), + [anon_sym_union] = ACTIONS(37), + [sym_identifier] = ACTIONS(81), + [sym_comment] = ACTIONS(59), }, [198] = { - [sym_parameter_list] = STATE(119), - [anon_sym_COMMA] = ACTIONS(872), - [anon_sym_RPAREN] = ACTIONS(872), - [anon_sym_SEMI] = ACTIONS(872), - [anon_sym_LBRACE] = ACTIONS(872), - [anon_sym_LPAREN2] = ACTIONS(231), - [anon_sym_LBRACK] = ACTIONS(233), - [anon_sym_EQ] = ACTIONS(872), - [sym_comment] = ACTIONS(37), + [sym__declaration_specifiers] = STATE(377), + [sym_storage_class_specifier] = STATE(301), + [sym_type_qualifier] = STATE(301), + [sym__type_specifier] = STATE(299), + [sym_sized_type_specifier] = STATE(299), + [sym_enum_specifier] = STATE(299), + [sym_struct_specifier] = STATE(299), + [sym_union_specifier] = STATE(299), + [sym__expression] = STATE(378), + [sym_conditional_expression] = STATE(378), + [sym_assignment_expression] = STATE(378), + [sym_pointer_expression] = STATE(378), + [sym_logical_expression] = STATE(378), + [sym_bitwise_expression] = STATE(378), + [sym_equality_expression] = STATE(378), + [sym_relational_expression] = STATE(378), + [sym_shift_expression] = STATE(378), + [sym_math_expression] = STATE(378), + [sym_cast_expression] = STATE(378), + [sym_sizeof_expression] = STATE(378), + [sym_subscript_expression] = STATE(378), + [sym_call_expression] = STATE(378), + [sym_field_expression] = STATE(378), + [sym_compound_literal_expression] = STATE(378), + [sym_parenthesized_expression] = STATE(378), + [sym_char_literal] = STATE(378), + [sym_concatenated_string] = STATE(378), + [sym_string_literal] = STATE(214), + [sym_macro_type_specifier] = STATE(299), + [aux_sym__declaration_specifiers_repeat1] = STATE(301), + [aux_sym_sized_type_specifier_repeat1] = STATE(302), + [anon_sym_extern] = ACTIONS(25), + [anon_sym_LPAREN2] = ACTIONS(461), + [anon_sym_STAR] = ACTIONS(463), + [anon_sym_RBRACK] = ACTIONS(978), + [anon_sym_static] = ACTIONS(25), + [anon_sym_auto] = ACTIONS(25), + [anon_sym_register] = ACTIONS(25), + [anon_sym_inline] = ACTIONS(25), + [anon_sym_const] = ACTIONS(27), + [anon_sym_restrict] = ACTIONS(27), + [anon_sym_volatile] = ACTIONS(27), + [anon_sym__Atomic] = ACTIONS(27), + [anon_sym_unsigned] = ACTIONS(772), + [anon_sym_long] = ACTIONS(772), + [anon_sym_short] = ACTIONS(772), + [sym_primitive_type] = ACTIONS(774), + [anon_sym_enum] = ACTIONS(33), + [anon_sym_struct] = ACTIONS(35), + [anon_sym_union] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(463), + [anon_sym_BANG] = ACTIONS(465), + [anon_sym_TILDE] = ACTIONS(467), + [anon_sym_PLUS] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(469), + [anon_sym_DASH_DASH] = ACTIONS(471), + [anon_sym_PLUS_PLUS] = ACTIONS(471), + [anon_sym_sizeof] = ACTIONS(473), + [sym_number_literal] = ACTIONS(980), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(982), + [sym_false] = ACTIONS(982), + [sym_null] = ACTIONS(982), + [sym_identifier] = ACTIONS(780), + [sym_comment] = ACTIONS(59), }, [199] = { - [sym_type_qualifier] = STATE(199), - [aux_sym_type_definition_repeat1] = STATE(199), - [anon_sym_LPAREN2] = ACTIONS(874), - [anon_sym_STAR] = ACTIONS(874), - [anon_sym_const] = ACTIONS(401), - [anon_sym_restrict] = ACTIONS(401), - [anon_sym_volatile] = ACTIONS(401), - [anon_sym__Atomic] = ACTIONS(401), - [sym_identifier] = ACTIONS(404), - [sym_comment] = ACTIONS(37), + [sym__expression] = STATE(379), + [sym_conditional_expression] = STATE(379), + [sym_assignment_expression] = STATE(379), + [sym_pointer_expression] = STATE(379), + [sym_logical_expression] = STATE(379), + [sym_bitwise_expression] = STATE(379), + [sym_equality_expression] = STATE(379), + [sym_relational_expression] = STATE(379), + [sym_shift_expression] = STATE(379), + [sym_math_expression] = STATE(379), + [sym_cast_expression] = STATE(379), + [sym_sizeof_expression] = STATE(379), + [sym_subscript_expression] = STATE(379), + [sym_call_expression] = STATE(379), + [sym_field_expression] = STATE(379), + [sym_compound_literal_expression] = STATE(379), + [sym_parenthesized_expression] = STATE(379), + [sym_initializer_list] = STATE(380), + [sym_char_literal] = STATE(379), + [sym_concatenated_string] = STATE(379), + [sym_string_literal] = STATE(374), + [anon_sym_LBRACE] = ACTIONS(840), + [anon_sym_LPAREN2] = ACTIONS(936), + [anon_sym_STAR] = ACTIONS(938), + [anon_sym_AMP] = ACTIONS(938), + [anon_sym_BANG] = ACTIONS(962), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_DASH_DASH] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(968), + [anon_sym_sizeof] = ACTIONS(970), + [sym_number_literal] = ACTIONS(984), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(986), + [sym_false] = ACTIONS(986), + [sym_null] = ACTIONS(986), + [sym_identifier] = ACTIONS(986), + [sym_comment] = ACTIONS(59), }, [200] = { - [sym__declarator] = STATE(110), - [sym_pointer_declarator] = STATE(110), - [sym_function_declarator] = STATE(110), - [sym_array_declarator] = STATE(110), - [sym_type_qualifier] = STATE(360), - [aux_sym_type_definition_repeat1] = STATE(360), - [anon_sym_LPAREN2] = ACTIONS(88), - [anon_sym_STAR] = ACTIONS(489), - [anon_sym_const] = ACTIONS(23), - [anon_sym_restrict] = ACTIONS(23), - [anon_sym_volatile] = ACTIONS(23), - [anon_sym__Atomic] = ACTIONS(23), - [sym_identifier] = ACTIONS(223), - [sym_comment] = ACTIONS(37), + [ts_builtin_sym_end] = ACTIONS(988), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(990), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(990), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(990), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(990), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(990), + [sym_preproc_directive] = ACTIONS(990), + [anon_sym_typedef] = ACTIONS(990), + [anon_sym_extern] = ACTIONS(990), + [anon_sym_RBRACE] = ACTIONS(988), + [anon_sym_LPAREN2] = ACTIONS(988), + [anon_sym_STAR] = ACTIONS(988), + [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_restrict] = ACTIONS(990), + [anon_sym_volatile] = ACTIONS(990), + [anon_sym__Atomic] = 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_AMP] = ACTIONS(988), + [anon_sym_BANG] = ACTIONS(988), + [anon_sym_TILDE] = ACTIONS(988), + [anon_sym_PLUS] = ACTIONS(990), + [anon_sym_DASH] = ACTIONS(990), + [anon_sym_DASH_DASH] = ACTIONS(988), + [anon_sym_PLUS_PLUS] = ACTIONS(988), + [anon_sym_sizeof] = ACTIONS(990), + [sym_number_literal] = ACTIONS(988), + [anon_sym_SQUOTE] = ACTIONS(988), + [anon_sym_DQUOTE] = ACTIONS(988), + [sym_true] = ACTIONS(990), + [sym_false] = ACTIONS(990), + [sym_null] = ACTIONS(990), + [sym_identifier] = ACTIONS(990), + [sym_comment] = ACTIONS(59), }, [201] = { - [sym_parameter_list] = STATE(119), - [anon_sym_COMMA] = ACTIONS(876), - [anon_sym_SEMI] = ACTIONS(876), - [anon_sym_LPAREN2] = ACTIONS(231), - [anon_sym_LBRACK] = ACTIONS(233), - [anon_sym_EQ] = ACTIONS(235), - [sym_comment] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(992), + [anon_sym_COMMA] = ACTIONS(992), + [anon_sym_RPAREN] = ACTIONS(992), + [anon_sym_LBRACE] = ACTIONS(992), + [anon_sym_LPAREN2] = ACTIONS(992), + [anon_sym_LBRACK] = ACTIONS(992), + [anon_sym_EQ] = ACTIONS(992), + [sym_comment] = ACTIONS(59), }, [202] = { - [anon_sym_COMMA] = ACTIONS(876), - [anon_sym_SEMI] = ACTIONS(876), - [sym_comment] = ACTIONS(37), + [aux_sym_declaration_repeat1] = STATE(382), + [anon_sym_SEMI] = ACTIONS(994), + [anon_sym_COMMA] = ACTIONS(437), + [sym_comment] = ACTIONS(59), }, [203] = { - [sym_string_literal] = STATE(22), - [anon_sym_DQUOTE] = ACTIONS(878), - [sym_system_lib_string] = ACTIONS(41), - [sym_comment] = ACTIONS(37), + [sym_storage_class_specifier] = STATE(203), + [sym_type_qualifier] = STATE(203), + [aux_sym__declaration_specifiers_repeat1] = STATE(203), + [anon_sym_SEMI] = ACTIONS(996), + [anon_sym_extern] = ACTIONS(629), + [anon_sym_LPAREN2] = ACTIONS(996), + [anon_sym_STAR] = ACTIONS(996), + [anon_sym_static] = ACTIONS(629), + [anon_sym_auto] = ACTIONS(629), + [anon_sym_register] = ACTIONS(629), + [anon_sym_inline] = ACTIONS(629), + [anon_sym_const] = ACTIONS(632), + [anon_sym_restrict] = ACTIONS(632), + [anon_sym_volatile] = ACTIONS(632), + [anon_sym__Atomic] = ACTIONS(632), + [sym_identifier] = ACTIONS(635), + [sym_comment] = ACTIONS(59), }, [204] = { - [sym_preproc_arg] = ACTIONS(880), - [sym_comment] = ACTIONS(47), + [anon_sym_SEMI] = ACTIONS(998), + [anon_sym_COMMA] = ACTIONS(998), + [anon_sym_RPAREN] = ACTIONS(998), + [anon_sym_RBRACE] = ACTIONS(998), + [anon_sym_LPAREN2] = ACTIONS(998), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_LBRACK] = ACTIONS(998), + [anon_sym_RBRACK] = ACTIONS(998), + [anon_sym_EQ] = ACTIONS(1000), + [anon_sym_COLON] = ACTIONS(998), + [anon_sym_QMARK] = ACTIONS(998), + [anon_sym_STAR_EQ] = ACTIONS(998), + [anon_sym_SLASH_EQ] = ACTIONS(998), + [anon_sym_PERCENT_EQ] = ACTIONS(998), + [anon_sym_PLUS_EQ] = ACTIONS(998), + [anon_sym_DASH_EQ] = ACTIONS(998), + [anon_sym_LT_LT_EQ] = ACTIONS(998), + [anon_sym_GT_GT_EQ] = ACTIONS(998), + [anon_sym_AMP_EQ] = ACTIONS(998), + [anon_sym_CARET_EQ] = ACTIONS(998), + [anon_sym_PIPE_EQ] = ACTIONS(998), + [anon_sym_AMP] = ACTIONS(1000), + [anon_sym_PIPE_PIPE] = ACTIONS(998), + [anon_sym_AMP_AMP] = ACTIONS(998), + [anon_sym_PIPE] = ACTIONS(1000), + [anon_sym_CARET] = ACTIONS(1000), + [anon_sym_EQ_EQ] = ACTIONS(998), + [anon_sym_BANG_EQ] = ACTIONS(998), + [anon_sym_LT] = ACTIONS(1000), + [anon_sym_GT] = ACTIONS(1000), + [anon_sym_LT_EQ] = ACTIONS(998), + [anon_sym_GT_EQ] = ACTIONS(998), + [anon_sym_LT_LT] = ACTIONS(1000), + [anon_sym_GT_GT] = ACTIONS(1000), + [anon_sym_PLUS] = ACTIONS(1000), + [anon_sym_DASH] = ACTIONS(1000), + [anon_sym_SLASH] = ACTIONS(1000), + [anon_sym_PERCENT] = ACTIONS(1000), + [anon_sym_DASH_DASH] = ACTIONS(998), + [anon_sym_PLUS_PLUS] = ACTIONS(998), + [anon_sym_DOT] = ACTIONS(998), + [anon_sym_DASH_GT] = ACTIONS(998), + [sym_comment] = ACTIONS(59), }, [205] = { - [sym_identifier] = ACTIONS(882), - [sym_comment] = ACTIONS(37), + [sym_argument_list] = STATE(98), + [aux_sym_for_statement_repeat1] = STATE(385), + [anon_sym_COMMA] = ACTIONS(1002), + [anon_sym_RPAREN] = ACTIONS(1004), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(319), + [anon_sym_LBRACK] = ACTIONS(188), + [anon_sym_EQ] = ACTIONS(321), + [anon_sym_QMARK] = ACTIONS(323), + [anon_sym_STAR_EQ] = ACTIONS(325), + [anon_sym_SLASH_EQ] = ACTIONS(325), + [anon_sym_PERCENT_EQ] = ACTIONS(325), + [anon_sym_PLUS_EQ] = ACTIONS(325), + [anon_sym_DASH_EQ] = ACTIONS(325), + [anon_sym_LT_LT_EQ] = ACTIONS(325), + [anon_sym_GT_GT_EQ] = ACTIONS(325), + [anon_sym_AMP_EQ] = ACTIONS(325), + [anon_sym_CARET_EQ] = ACTIONS(325), + [anon_sym_PIPE_EQ] = ACTIONS(325), + [anon_sym_AMP] = ACTIONS(327), + [anon_sym_PIPE_PIPE] = ACTIONS(329), + [anon_sym_AMP_AMP] = ACTIONS(331), + [anon_sym_PIPE] = ACTIONS(333), + [anon_sym_CARET] = ACTIONS(335), + [anon_sym_EQ_EQ] = ACTIONS(337), + [anon_sym_BANG_EQ] = ACTIONS(337), + [anon_sym_LT] = ACTIONS(339), + [anon_sym_GT] = ACTIONS(339), + [anon_sym_LT_EQ] = ACTIONS(341), + [anon_sym_GT_EQ] = ACTIONS(341), + [anon_sym_LT_LT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(343), + [anon_sym_PLUS] = ACTIONS(345), + [anon_sym_DASH] = ACTIONS(345), + [anon_sym_SLASH] = ACTIONS(319), + [anon_sym_PERCENT] = ACTIONS(319), + [anon_sym_DASH_DASH] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(216), + [anon_sym_DOT] = ACTIONS(218), + [anon_sym_DASH_GT] = ACTIONS(218), + [sym_comment] = ACTIONS(59), }, [206] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(884), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(884), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(884), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(884), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(884), - [sym_preproc_directive] = ACTIONS(884), - [anon_sym_SEMI] = ACTIONS(886), - [anon_sym_typedef] = ACTIONS(884), - [anon_sym_extern] = ACTIONS(884), - [anon_sym_LBRACE] = ACTIONS(886), - [anon_sym_RBRACE] = ACTIONS(886), - [anon_sym_LPAREN2] = ACTIONS(886), - [anon_sym_STAR] = ACTIONS(886), - [anon_sym_static] = ACTIONS(884), - [anon_sym_auto] = ACTIONS(884), - [anon_sym_register] = ACTIONS(884), - [anon_sym_inline] = ACTIONS(884), - [anon_sym_const] = ACTIONS(884), - [anon_sym_restrict] = ACTIONS(884), - [anon_sym_volatile] = ACTIONS(884), - [anon_sym__Atomic] = ACTIONS(884), - [anon_sym_unsigned] = ACTIONS(884), - [anon_sym_long] = ACTIONS(884), - [anon_sym_short] = ACTIONS(884), - [sym_primitive_type] = ACTIONS(884), - [anon_sym_enum] = ACTIONS(884), - [anon_sym_struct] = ACTIONS(884), - [anon_sym_union] = ACTIONS(884), - [anon_sym_if] = ACTIONS(884), - [anon_sym_else] = ACTIONS(884), - [anon_sym_switch] = ACTIONS(884), - [anon_sym_case] = ACTIONS(884), - [anon_sym_default] = ACTIONS(884), - [anon_sym_while] = ACTIONS(884), - [anon_sym_do] = ACTIONS(884), - [anon_sym_for] = ACTIONS(884), - [anon_sym_return] = ACTIONS(884), - [anon_sym_break] = ACTIONS(884), - [anon_sym_continue] = ACTIONS(884), - [anon_sym_goto] = ACTIONS(884), - [anon_sym_AMP] = ACTIONS(886), - [anon_sym_BANG] = ACTIONS(886), - [anon_sym_TILDE] = ACTIONS(886), - [anon_sym_PLUS] = ACTIONS(884), - [anon_sym_DASH] = ACTIONS(884), - [anon_sym_DASH_DASH] = ACTIONS(886), - [anon_sym_PLUS_PLUS] = ACTIONS(886), - [anon_sym_sizeof] = ACTIONS(884), - [sym_number_literal] = ACTIONS(886), - [anon_sym_SQUOTE] = ACTIONS(886), - [anon_sym_DQUOTE] = ACTIONS(886), - [sym_true] = ACTIONS(884), - [sym_false] = ACTIONS(884), - [sym_null] = ACTIONS(884), - [sym_identifier] = ACTIONS(884), - [sym_comment] = ACTIONS(37), + [sym_argument_list] = STATE(98), + [anon_sym_SEMI] = ACTIONS(1006), + [anon_sym_COMMA] = ACTIONS(1006), + [anon_sym_RPAREN] = ACTIONS(1006), + [anon_sym_RBRACE] = ACTIONS(1006), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(1008), + [anon_sym_LBRACK] = ACTIONS(188), + [anon_sym_RBRACK] = ACTIONS(1006), + [anon_sym_EQ] = ACTIONS(1008), + [anon_sym_COLON] = ACTIONS(1006), + [anon_sym_QMARK] = ACTIONS(1006), + [anon_sym_STAR_EQ] = ACTIONS(1006), + [anon_sym_SLASH_EQ] = ACTIONS(1006), + [anon_sym_PERCENT_EQ] = ACTIONS(1006), + [anon_sym_PLUS_EQ] = ACTIONS(1006), + [anon_sym_DASH_EQ] = ACTIONS(1006), + [anon_sym_LT_LT_EQ] = ACTIONS(1006), + [anon_sym_GT_GT_EQ] = ACTIONS(1006), + [anon_sym_AMP_EQ] = ACTIONS(1006), + [anon_sym_CARET_EQ] = ACTIONS(1006), + [anon_sym_PIPE_EQ] = ACTIONS(1006), + [anon_sym_AMP] = ACTIONS(1008), + [anon_sym_PIPE_PIPE] = ACTIONS(1006), + [anon_sym_AMP_AMP] = ACTIONS(1006), + [anon_sym_PIPE] = ACTIONS(1008), + [anon_sym_CARET] = ACTIONS(1008), + [anon_sym_EQ_EQ] = ACTIONS(1006), + [anon_sym_BANG_EQ] = ACTIONS(1006), + [anon_sym_LT] = ACTIONS(1008), + [anon_sym_GT] = ACTIONS(1008), + [anon_sym_LT_EQ] = ACTIONS(1006), + [anon_sym_GT_EQ] = ACTIONS(1006), + [anon_sym_LT_LT] = ACTIONS(1008), + [anon_sym_GT_GT] = ACTIONS(1008), + [anon_sym_PLUS] = ACTIONS(1008), + [anon_sym_DASH] = ACTIONS(1008), + [anon_sym_SLASH] = ACTIONS(1008), + [anon_sym_PERCENT] = ACTIONS(1008), + [anon_sym_DASH_DASH] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(216), + [anon_sym_DOT] = ACTIONS(218), + [anon_sym_DASH_GT] = ACTIONS(218), + [sym_comment] = ACTIONS(59), }, [207] = { - [ts_builtin_sym_end] = ACTIONS(888), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(890), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(890), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(890), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(890), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(890), - [sym_preproc_directive] = ACTIONS(890), - [anon_sym_SEMI] = ACTIONS(888), - [anon_sym_typedef] = ACTIONS(890), - [anon_sym_extern] = ACTIONS(890), - [anon_sym_LBRACE] = ACTIONS(888), - [anon_sym_RBRACE] = ACTIONS(888), - [anon_sym_LPAREN2] = ACTIONS(888), - [anon_sym_STAR] = ACTIONS(888), - [anon_sym_static] = ACTIONS(890), - [anon_sym_auto] = ACTIONS(890), - [anon_sym_register] = ACTIONS(890), - [anon_sym_inline] = ACTIONS(890), - [anon_sym_const] = ACTIONS(890), - [anon_sym_restrict] = ACTIONS(890), - [anon_sym_volatile] = ACTIONS(890), - [anon_sym__Atomic] = ACTIONS(890), - [anon_sym_unsigned] = ACTIONS(890), - [anon_sym_long] = ACTIONS(890), - [anon_sym_short] = ACTIONS(890), - [sym_primitive_type] = ACTIONS(890), - [anon_sym_enum] = ACTIONS(890), - [anon_sym_struct] = ACTIONS(890), - [anon_sym_union] = ACTIONS(890), - [anon_sym_if] = ACTIONS(890), - [anon_sym_else] = ACTIONS(890), - [anon_sym_switch] = ACTIONS(890), - [anon_sym_case] = ACTIONS(890), - [anon_sym_default] = ACTIONS(890), - [anon_sym_while] = ACTIONS(890), - [anon_sym_do] = ACTIONS(890), - [anon_sym_for] = ACTIONS(890), - [anon_sym_return] = ACTIONS(890), - [anon_sym_break] = ACTIONS(890), - [anon_sym_continue] = ACTIONS(890), - [anon_sym_goto] = ACTIONS(890), - [anon_sym_AMP] = ACTIONS(888), - [anon_sym_BANG] = ACTIONS(888), - [anon_sym_TILDE] = ACTIONS(888), - [anon_sym_PLUS] = ACTIONS(890), - [anon_sym_DASH] = ACTIONS(890), - [anon_sym_DASH_DASH] = ACTIONS(888), - [anon_sym_PLUS_PLUS] = ACTIONS(888), - [anon_sym_sizeof] = ACTIONS(890), - [sym_number_literal] = ACTIONS(888), - [anon_sym_SQUOTE] = ACTIONS(888), - [anon_sym_DQUOTE] = ACTIONS(888), - [sym_true] = ACTIONS(890), - [sym_false] = ACTIONS(890), - [sym_null] = ACTIONS(890), - [sym_identifier] = ACTIONS(890), - [sym_comment] = ACTIONS(37), + [sym_type_qualifier] = STATE(56), + [sym__type_specifier] = STATE(51), + [sym_sized_type_specifier] = STATE(51), + [sym_enum_specifier] = STATE(51), + [sym_struct_specifier] = STATE(51), + [sym_union_specifier] = STATE(51), + [sym__expression] = STATE(52), + [sym_comma_expression] = STATE(53), + [sym_conditional_expression] = STATE(52), + [sym_assignment_expression] = STATE(52), + [sym_pointer_expression] = STATE(52), + [sym_logical_expression] = STATE(52), + [sym_bitwise_expression] = STATE(52), + [sym_equality_expression] = STATE(52), + [sym_relational_expression] = STATE(52), + [sym_shift_expression] = STATE(52), + [sym_math_expression] = STATE(52), + [sym_cast_expression] = STATE(52), + [sym_type_descriptor] = STATE(386), + [sym_sizeof_expression] = STATE(52), + [sym_subscript_expression] = STATE(52), + [sym_call_expression] = STATE(52), + [sym_field_expression] = STATE(52), + [sym_compound_literal_expression] = STATE(52), + [sym_parenthesized_expression] = STATE(52), + [sym_char_literal] = STATE(52), + [sym_concatenated_string] = STATE(52), + [sym_string_literal] = STATE(55), + [sym_macro_type_specifier] = STATE(51), + [aux_sym_type_definition_repeat1] = STATE(56), + [aux_sym_sized_type_specifier_repeat1] = STATE(57), + [anon_sym_LPAREN2] = ACTIONS(85), + [anon_sym_STAR] = ACTIONS(87), + [anon_sym_const] = ACTIONS(27), + [anon_sym_restrict] = ACTIONS(27), + [anon_sym_volatile] = ACTIONS(27), + [anon_sym__Atomic] = ACTIONS(27), + [anon_sym_unsigned] = ACTIONS(89), + [anon_sym_long] = ACTIONS(89), + [anon_sym_short] = ACTIONS(89), + [sym_primitive_type] = ACTIONS(91), + [anon_sym_enum] = ACTIONS(33), + [anon_sym_struct] = ACTIONS(35), + [anon_sym_union] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_PLUS] = ACTIONS(97), + [anon_sym_DASH] = ACTIONS(97), + [anon_sym_DASH_DASH] = ACTIONS(99), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(105), + [sym_false] = ACTIONS(105), + [sym_null] = ACTIONS(105), + [sym_identifier] = ACTIONS(107), + [sym_comment] = ACTIONS(59), }, [208] = { - [sym_type_qualifier] = STATE(106), - [sym__type_specifier] = STATE(104), - [sym_sized_type_specifier] = STATE(104), - [sym_enum_specifier] = STATE(104), - [sym_struct_specifier] = STATE(104), - [sym_union_specifier] = STATE(104), - [sym__expression] = STATE(371), - [sym_comma_expression] = STATE(372), - [sym_conditional_expression] = STATE(371), - [sym_assignment_expression] = STATE(371), - [sym_pointer_expression] = STATE(371), - [sym_logical_expression] = STATE(371), - [sym_bitwise_expression] = STATE(371), - [sym_equality_expression] = STATE(371), - [sym_relational_expression] = STATE(371), - [sym_shift_expression] = STATE(371), - [sym_math_expression] = STATE(371), - [sym_cast_expression] = STATE(371), - [sym_type_descriptor] = STATE(373), - [sym_sizeof_expression] = STATE(371), - [sym_subscript_expression] = STATE(371), - [sym_call_expression] = STATE(371), - [sym_field_expression] = STATE(371), - [sym_compound_literal_expression] = STATE(371), - [sym_parenthesized_expression] = STATE(371), - [sym_char_literal] = STATE(371), - [sym_concatenated_string] = STATE(371), - [sym_string_literal] = STATE(374), - [sym_macro_type_specifier] = STATE(104), - [aux_sym_type_definition_repeat1] = STATE(106), - [aux_sym_sized_type_specifier_repeat1] = STATE(107), - [anon_sym_LPAREN2] = ACTIONS(892), - [anon_sym_STAR] = ACTIONS(894), - [anon_sym_const] = ACTIONS(23), - [anon_sym_restrict] = ACTIONS(23), - [anon_sym_volatile] = ACTIONS(23), - [anon_sym__Atomic] = ACTIONS(23), - [anon_sym_unsigned] = ACTIONS(211), - [anon_sym_long] = ACTIONS(211), - [anon_sym_short] = ACTIONS(211), - [sym_primitive_type] = ACTIONS(213), - [anon_sym_enum] = ACTIONS(29), - [anon_sym_struct] = ACTIONS(31), - [anon_sym_union] = ACTIONS(33), - [anon_sym_AMP] = ACTIONS(894), - [anon_sym_BANG] = ACTIONS(896), - [anon_sym_TILDE] = ACTIONS(898), - [anon_sym_PLUS] = ACTIONS(900), - [anon_sym_DASH] = ACTIONS(900), - [anon_sym_DASH_DASH] = ACTIONS(902), - [anon_sym_PLUS_PLUS] = ACTIONS(902), - [anon_sym_sizeof] = ACTIONS(904), - [sym_number_literal] = ACTIONS(906), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(908), - [sym_false] = ACTIONS(908), - [sym_null] = ACTIONS(908), - [sym_identifier] = ACTIONS(910), - [sym_comment] = ACTIONS(37), + [sym__expression] = STATE(58), + [sym_conditional_expression] = STATE(58), + [sym_assignment_expression] = STATE(58), + [sym_pointer_expression] = STATE(58), + [sym_logical_expression] = STATE(58), + [sym_bitwise_expression] = STATE(58), + [sym_equality_expression] = STATE(58), + [sym_relational_expression] = STATE(58), + [sym_shift_expression] = STATE(58), + [sym_math_expression] = STATE(58), + [sym_cast_expression] = STATE(58), + [sym_sizeof_expression] = STATE(58), + [sym_subscript_expression] = STATE(58), + [sym_call_expression] = STATE(58), + [sym_field_expression] = STATE(58), + [sym_compound_literal_expression] = STATE(58), + [sym_parenthesized_expression] = STATE(58), + [sym_char_literal] = STATE(58), + [sym_concatenated_string] = STATE(58), + [sym_string_literal] = STATE(214), + [anon_sym_LPAREN2] = ACTIONS(461), + [anon_sym_STAR] = ACTIONS(463), + [anon_sym_AMP] = ACTIONS(463), + [anon_sym_BANG] = ACTIONS(465), + [anon_sym_TILDE] = ACTIONS(467), + [anon_sym_PLUS] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(469), + [anon_sym_DASH_DASH] = ACTIONS(471), + [anon_sym_PLUS_PLUS] = ACTIONS(471), + [anon_sym_sizeof] = ACTIONS(473), + [sym_number_literal] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(111), + [sym_false] = ACTIONS(111), + [sym_null] = ACTIONS(111), + [sym_identifier] = ACTIONS(111), + [sym_comment] = ACTIONS(59), }, [209] = { - [sym__expression] = STATE(375), - [sym_conditional_expression] = STATE(375), - [sym_assignment_expression] = STATE(375), - [sym_pointer_expression] = STATE(375), - [sym_logical_expression] = STATE(375), - [sym_bitwise_expression] = STATE(375), - [sym_equality_expression] = STATE(375), - [sym_relational_expression] = STATE(375), - [sym_shift_expression] = STATE(375), - [sym_math_expression] = STATE(375), - [sym_cast_expression] = STATE(375), - [sym_sizeof_expression] = STATE(375), - [sym_subscript_expression] = STATE(375), - [sym_call_expression] = STATE(375), - [sym_field_expression] = STATE(375), - [sym_compound_literal_expression] = STATE(375), - [sym_parenthesized_expression] = STATE(375), - [sym_char_literal] = STATE(375), - [sym_concatenated_string] = STATE(375), - [sym_string_literal] = STATE(230), - [anon_sym_LPAREN2] = ACTIONS(507), - [anon_sym_STAR] = ACTIONS(509), - [anon_sym_AMP] = ACTIONS(509), - [anon_sym_BANG] = ACTIONS(533), - [anon_sym_TILDE] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DASH] = ACTIONS(537), - [anon_sym_DASH_DASH] = ACTIONS(539), - [anon_sym_PLUS_PLUS] = ACTIONS(539), - [anon_sym_sizeof] = ACTIONS(541), - [sym_number_literal] = ACTIONS(912), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(914), - [sym_false] = ACTIONS(914), - [sym_null] = ACTIONS(914), - [sym_identifier] = ACTIONS(914), - [sym_comment] = ACTIONS(37), + [sym__expression] = STATE(67), + [sym_conditional_expression] = STATE(67), + [sym_assignment_expression] = STATE(67), + [sym_pointer_expression] = STATE(67), + [sym_logical_expression] = STATE(67), + [sym_bitwise_expression] = STATE(67), + [sym_equality_expression] = STATE(67), + [sym_relational_expression] = STATE(67), + [sym_shift_expression] = STATE(67), + [sym_math_expression] = STATE(67), + [sym_cast_expression] = STATE(67), + [sym_sizeof_expression] = STATE(67), + [sym_subscript_expression] = STATE(67), + [sym_call_expression] = STATE(67), + [sym_field_expression] = STATE(67), + [sym_compound_literal_expression] = STATE(67), + [sym_parenthesized_expression] = STATE(67), + [sym_char_literal] = STATE(67), + [sym_concatenated_string] = STATE(67), + [sym_string_literal] = STATE(214), + [anon_sym_LPAREN2] = ACTIONS(461), + [anon_sym_STAR] = ACTIONS(463), + [anon_sym_AMP] = ACTIONS(463), + [anon_sym_BANG] = ACTIONS(465), + [anon_sym_TILDE] = ACTIONS(467), + [anon_sym_PLUS] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(469), + [anon_sym_DASH_DASH] = ACTIONS(471), + [anon_sym_PLUS_PLUS] = ACTIONS(471), + [anon_sym_sizeof] = ACTIONS(473), + [sym_number_literal] = ACTIONS(129), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(131), + [sym_false] = ACTIONS(131), + [sym_null] = ACTIONS(131), + [sym_identifier] = ACTIONS(131), + [sym_comment] = ACTIONS(59), }, [210] = { - [sym_parenthesized_expression] = STATE(377), - [anon_sym_LPAREN2] = ACTIONS(916), - [sym_comment] = ACTIONS(37), + [sym__expression] = STATE(68), + [sym_conditional_expression] = STATE(68), + [sym_assignment_expression] = STATE(68), + [sym_pointer_expression] = STATE(68), + [sym_logical_expression] = STATE(68), + [sym_bitwise_expression] = STATE(68), + [sym_equality_expression] = STATE(68), + [sym_relational_expression] = STATE(68), + [sym_shift_expression] = STATE(68), + [sym_math_expression] = STATE(68), + [sym_cast_expression] = STATE(68), + [sym_sizeof_expression] = STATE(68), + [sym_subscript_expression] = STATE(68), + [sym_call_expression] = STATE(68), + [sym_field_expression] = STATE(68), + [sym_compound_literal_expression] = STATE(68), + [sym_parenthesized_expression] = STATE(68), + [sym_char_literal] = STATE(68), + [sym_concatenated_string] = STATE(68), + [sym_string_literal] = STATE(214), + [anon_sym_LPAREN2] = ACTIONS(461), + [anon_sym_STAR] = ACTIONS(463), + [anon_sym_AMP] = ACTIONS(463), + [anon_sym_BANG] = ACTIONS(465), + [anon_sym_TILDE] = ACTIONS(467), + [anon_sym_PLUS] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(469), + [anon_sym_DASH_DASH] = ACTIONS(471), + [anon_sym_PLUS_PLUS] = ACTIONS(471), + [anon_sym_sizeof] = ACTIONS(473), + [sym_number_literal] = ACTIONS(133), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(135), + [sym_false] = ACTIONS(135), + [sym_null] = ACTIONS(135), + [sym_identifier] = ACTIONS(135), + [sym_comment] = ACTIONS(59), }, [211] = { - [sym_parenthesized_expression] = STATE(378), - [anon_sym_LPAREN2] = ACTIONS(916), - [sym_comment] = ACTIONS(37), + [sym__expression] = STATE(69), + [sym_conditional_expression] = STATE(69), + [sym_assignment_expression] = STATE(69), + [sym_pointer_expression] = STATE(69), + [sym_logical_expression] = STATE(69), + [sym_bitwise_expression] = STATE(69), + [sym_equality_expression] = STATE(69), + [sym_relational_expression] = STATE(69), + [sym_shift_expression] = STATE(69), + [sym_math_expression] = STATE(69), + [sym_cast_expression] = STATE(69), + [sym_sizeof_expression] = STATE(69), + [sym_subscript_expression] = STATE(69), + [sym_call_expression] = STATE(69), + [sym_field_expression] = STATE(69), + [sym_compound_literal_expression] = STATE(69), + [sym_parenthesized_expression] = STATE(69), + [sym_char_literal] = STATE(69), + [sym_concatenated_string] = STATE(69), + [sym_string_literal] = STATE(214), + [anon_sym_LPAREN2] = ACTIONS(461), + [anon_sym_STAR] = ACTIONS(463), + [anon_sym_AMP] = ACTIONS(463), + [anon_sym_BANG] = ACTIONS(465), + [anon_sym_TILDE] = ACTIONS(467), + [anon_sym_PLUS] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(469), + [anon_sym_DASH_DASH] = ACTIONS(471), + [anon_sym_PLUS_PLUS] = ACTIONS(471), + [anon_sym_sizeof] = ACTIONS(473), + [sym_number_literal] = ACTIONS(137), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(139), + [sym_false] = ACTIONS(139), + [sym_null] = ACTIONS(139), + [sym_identifier] = ACTIONS(139), + [sym_comment] = ACTIONS(59), }, [212] = { - [sym__expression] = STATE(385), - [sym_conditional_expression] = STATE(385), - [sym_assignment_expression] = STATE(385), - [sym_pointer_expression] = STATE(385), - [sym_logical_expression] = STATE(385), - [sym_bitwise_expression] = STATE(385), - [sym_equality_expression] = STATE(385), - [sym_relational_expression] = STATE(385), - [sym_shift_expression] = STATE(385), - [sym_math_expression] = STATE(385), - [sym_cast_expression] = STATE(385), - [sym_sizeof_expression] = STATE(385), - [sym_subscript_expression] = STATE(385), - [sym_call_expression] = STATE(385), - [sym_field_expression] = STATE(385), - [sym_compound_literal_expression] = STATE(385), - [sym_parenthesized_expression] = STATE(385), - [sym_char_literal] = STATE(385), - [sym_concatenated_string] = STATE(385), - [sym_string_literal] = STATE(386), - [anon_sym_LPAREN2] = ACTIONS(918), - [anon_sym_STAR] = ACTIONS(920), - [anon_sym_AMP] = ACTIONS(920), - [anon_sym_BANG] = ACTIONS(922), - [anon_sym_TILDE] = ACTIONS(924), - [anon_sym_PLUS] = ACTIONS(926), - [anon_sym_DASH] = ACTIONS(926), - [anon_sym_DASH_DASH] = ACTIONS(928), - [anon_sym_PLUS_PLUS] = ACTIONS(928), - [anon_sym_sizeof] = ACTIONS(930), - [sym_number_literal] = ACTIONS(932), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(934), - [sym_false] = ACTIONS(934), - [sym_null] = ACTIONS(934), - [sym_identifier] = ACTIONS(934), - [sym_comment] = ACTIONS(37), + [sym__expression] = STATE(388), + [sym_conditional_expression] = STATE(388), + [sym_assignment_expression] = STATE(388), + [sym_pointer_expression] = STATE(388), + [sym_logical_expression] = STATE(388), + [sym_bitwise_expression] = STATE(388), + [sym_equality_expression] = STATE(388), + [sym_relational_expression] = STATE(388), + [sym_shift_expression] = STATE(388), + [sym_math_expression] = STATE(388), + [sym_cast_expression] = STATE(388), + [sym_sizeof_expression] = STATE(388), + [sym_subscript_expression] = STATE(388), + [sym_call_expression] = STATE(388), + [sym_field_expression] = STATE(388), + [sym_compound_literal_expression] = STATE(388), + [sym_parenthesized_expression] = STATE(388), + [sym_char_literal] = STATE(388), + [sym_concatenated_string] = STATE(388), + [sym_string_literal] = STATE(214), + [anon_sym_LPAREN2] = ACTIONS(1010), + [anon_sym_STAR] = ACTIONS(463), + [anon_sym_AMP] = ACTIONS(463), + [anon_sym_BANG] = ACTIONS(465), + [anon_sym_TILDE] = ACTIONS(467), + [anon_sym_PLUS] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(469), + [anon_sym_DASH_DASH] = ACTIONS(471), + [anon_sym_PLUS_PLUS] = ACTIONS(471), + [anon_sym_sizeof] = ACTIONS(473), + [sym_number_literal] = ACTIONS(1012), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(1014), + [sym_false] = ACTIONS(1014), + [sym_null] = ACTIONS(1014), + [sym_identifier] = ACTIONS(1014), + [sym_comment] = ACTIONS(59), }, [213] = { - [anon_sym_COLON] = ACTIONS(936), - [sym_comment] = ACTIONS(37), + [sym_argument_list] = STATE(98), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(1016), + [anon_sym_LBRACK] = ACTIONS(188), + [anon_sym_RBRACK] = ACTIONS(1018), + [anon_sym_EQ] = ACTIONS(1020), + [anon_sym_QMARK] = ACTIONS(1022), + [anon_sym_STAR_EQ] = ACTIONS(1024), + [anon_sym_SLASH_EQ] = ACTIONS(1024), + [anon_sym_PERCENT_EQ] = ACTIONS(1024), + [anon_sym_PLUS_EQ] = ACTIONS(1024), + [anon_sym_DASH_EQ] = ACTIONS(1024), + [anon_sym_LT_LT_EQ] = ACTIONS(1024), + [anon_sym_GT_GT_EQ] = ACTIONS(1024), + [anon_sym_AMP_EQ] = ACTIONS(1024), + [anon_sym_CARET_EQ] = ACTIONS(1024), + [anon_sym_PIPE_EQ] = ACTIONS(1024), + [anon_sym_AMP] = ACTIONS(1026), + [anon_sym_PIPE_PIPE] = ACTIONS(1028), + [anon_sym_AMP_AMP] = ACTIONS(1030), + [anon_sym_PIPE] = ACTIONS(1032), + [anon_sym_CARET] = ACTIONS(1034), + [anon_sym_EQ_EQ] = ACTIONS(1036), + [anon_sym_BANG_EQ] = ACTIONS(1036), + [anon_sym_LT] = ACTIONS(1038), + [anon_sym_GT] = ACTIONS(1038), + [anon_sym_LT_EQ] = ACTIONS(1040), + [anon_sym_GT_EQ] = ACTIONS(1040), + [anon_sym_LT_LT] = ACTIONS(1042), + [anon_sym_GT_GT] = ACTIONS(1042), + [anon_sym_PLUS] = ACTIONS(1044), + [anon_sym_DASH] = ACTIONS(1044), + [anon_sym_SLASH] = ACTIONS(1016), + [anon_sym_PERCENT] = ACTIONS(1016), + [anon_sym_DASH_DASH] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(216), + [anon_sym_DOT] = ACTIONS(218), + [anon_sym_DASH_GT] = ACTIONS(218), + [sym_comment] = ACTIONS(59), }, [214] = { - [sym_parenthesized_expression] = STATE(388), - [anon_sym_LPAREN2] = ACTIONS(916), - [sym_comment] = ACTIONS(37), + [sym_string_literal] = STATE(402), + [aux_sym_concatenated_string_repeat1] = STATE(402), + [anon_sym_LPAREN2] = ACTIONS(166), + [anon_sym_STAR] = ACTIONS(168), + [anon_sym_LBRACK] = ACTIONS(166), + [anon_sym_RBRACK] = ACTIONS(166), + [anon_sym_EQ] = ACTIONS(168), + [anon_sym_QMARK] = ACTIONS(166), + [anon_sym_STAR_EQ] = ACTIONS(166), + [anon_sym_SLASH_EQ] = ACTIONS(166), + [anon_sym_PERCENT_EQ] = ACTIONS(166), + [anon_sym_PLUS_EQ] = ACTIONS(166), + [anon_sym_DASH_EQ] = ACTIONS(166), + [anon_sym_LT_LT_EQ] = ACTIONS(166), + [anon_sym_GT_GT_EQ] = ACTIONS(166), + [anon_sym_AMP_EQ] = ACTIONS(166), + [anon_sym_CARET_EQ] = ACTIONS(166), + [anon_sym_PIPE_EQ] = ACTIONS(166), + [anon_sym_AMP] = ACTIONS(168), + [anon_sym_PIPE_PIPE] = ACTIONS(166), + [anon_sym_AMP_AMP] = ACTIONS(166), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_CARET] = ACTIONS(168), + [anon_sym_EQ_EQ] = ACTIONS(166), + [anon_sym_BANG_EQ] = ACTIONS(166), + [anon_sym_LT] = ACTIONS(168), + [anon_sym_GT] = ACTIONS(168), + [anon_sym_LT_EQ] = ACTIONS(166), + [anon_sym_GT_EQ] = ACTIONS(166), + [anon_sym_LT_LT] = ACTIONS(168), + [anon_sym_GT_GT] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(168), + [anon_sym_DASH] = ACTIONS(168), + [anon_sym_SLASH] = ACTIONS(168), + [anon_sym_PERCENT] = ACTIONS(168), + [anon_sym_DASH_DASH] = ACTIONS(166), + [anon_sym_PLUS_PLUS] = ACTIONS(166), + [anon_sym_DOT] = ACTIONS(166), + [anon_sym_DASH_GT] = ACTIONS(166), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_comment] = ACTIONS(59), }, [215] = { - [sym_compound_statement] = STATE(397), - [sym_labeled_statement] = STATE(397), - [sym_expression_statement] = STATE(397), - [sym_if_statement] = STATE(397), - [sym_switch_statement] = STATE(397), - [sym_case_statement] = STATE(397), - [sym_while_statement] = STATE(397), - [sym_do_statement] = STATE(397), - [sym_for_statement] = STATE(397), - [sym_return_statement] = STATE(397), - [sym_break_statement] = STATE(397), - [sym_continue_statement] = STATE(397), - [sym_goto_statement] = STATE(397), - [sym__expression] = STATE(228), - [sym_comma_expression] = STATE(229), - [sym_conditional_expression] = STATE(228), - [sym_assignment_expression] = STATE(228), - [sym_pointer_expression] = STATE(228), - [sym_logical_expression] = STATE(228), - [sym_bitwise_expression] = STATE(228), - [sym_equality_expression] = STATE(228), - [sym_relational_expression] = STATE(228), - [sym_shift_expression] = STATE(228), - [sym_math_expression] = STATE(228), - [sym_cast_expression] = STATE(228), - [sym_sizeof_expression] = STATE(228), - [sym_subscript_expression] = STATE(228), - [sym_call_expression] = STATE(228), - [sym_field_expression] = STATE(228), - [sym_compound_literal_expression] = STATE(228), - [sym_parenthesized_expression] = STATE(228), - [sym_char_literal] = STATE(228), - [sym_concatenated_string] = STATE(228), - [sym_string_literal] = STATE(230), - [anon_sym_SEMI] = ACTIONS(503), - [anon_sym_LBRACE] = ACTIONS(229), - [anon_sym_LPAREN2] = ACTIONS(507), - [anon_sym_STAR] = ACTIONS(509), - [anon_sym_if] = ACTIONS(938), - [anon_sym_switch] = ACTIONS(940), - [anon_sym_case] = ACTIONS(942), - [anon_sym_default] = ACTIONS(944), - [anon_sym_while] = ACTIONS(946), - [anon_sym_do] = ACTIONS(948), - [anon_sym_for] = ACTIONS(950), - [anon_sym_return] = ACTIONS(525), - [anon_sym_break] = ACTIONS(527), - [anon_sym_continue] = ACTIONS(529), - [anon_sym_goto] = ACTIONS(531), - [anon_sym_AMP] = ACTIONS(509), - [anon_sym_BANG] = ACTIONS(533), - [anon_sym_TILDE] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DASH] = ACTIONS(537), - [anon_sym_DASH_DASH] = ACTIONS(539), - [anon_sym_PLUS_PLUS] = ACTIONS(539), - [anon_sym_sizeof] = ACTIONS(541), - [sym_number_literal] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(547), - [sym_false] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [sym_identifier] = ACTIONS(952), - [sym_comment] = ACTIONS(37), + [sym_argument_list] = STATE(98), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(186), + [anon_sym_LBRACK] = ACTIONS(188), + [anon_sym_EQ] = ACTIONS(190), + [anon_sym_QMARK] = ACTIONS(1046), + [anon_sym_STAR_EQ] = ACTIONS(194), + [anon_sym_SLASH_EQ] = ACTIONS(194), + [anon_sym_PERCENT_EQ] = ACTIONS(194), + [anon_sym_PLUS_EQ] = ACTIONS(194), + [anon_sym_DASH_EQ] = ACTIONS(194), + [anon_sym_LT_LT_EQ] = ACTIONS(194), + [anon_sym_GT_GT_EQ] = ACTIONS(194), + [anon_sym_AMP_EQ] = ACTIONS(194), + [anon_sym_CARET_EQ] = ACTIONS(194), + [anon_sym_PIPE_EQ] = ACTIONS(194), + [anon_sym_AMP] = ACTIONS(196), + [anon_sym_PIPE_PIPE] = ACTIONS(198), + [anon_sym_AMP_AMP] = ACTIONS(200), + [anon_sym_PIPE] = ACTIONS(202), + [anon_sym_CARET] = ACTIONS(204), + [anon_sym_EQ_EQ] = ACTIONS(206), + [anon_sym_BANG_EQ] = ACTIONS(206), + [anon_sym_LT] = ACTIONS(208), + [anon_sym_GT] = ACTIONS(208), + [anon_sym_LT_EQ] = ACTIONS(210), + [anon_sym_GT_EQ] = ACTIONS(210), + [anon_sym_LT_LT] = ACTIONS(212), + [anon_sym_GT_GT] = ACTIONS(212), + [anon_sym_PLUS] = ACTIONS(214), + [anon_sym_DASH] = ACTIONS(214), + [anon_sym_SLASH] = ACTIONS(186), + [anon_sym_PERCENT] = ACTIONS(186), + [anon_sym_DASH_DASH] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(216), + [anon_sym_DOT] = ACTIONS(218), + [anon_sym_DASH_GT] = ACTIONS(218), + [sym_comment] = ACTIONS(59), }, [216] = { - [anon_sym_LPAREN2] = ACTIONS(954), - [sym_comment] = ACTIONS(37), + [sym_type_qualifier] = STATE(56), + [sym__type_specifier] = STATE(51), + [sym_sized_type_specifier] = STATE(51), + [sym_enum_specifier] = STATE(51), + [sym_struct_specifier] = STATE(51), + [sym_union_specifier] = STATE(51), + [sym__expression] = STATE(52), + [sym_comma_expression] = STATE(53), + [sym_conditional_expression] = STATE(52), + [sym_assignment_expression] = STATE(52), + [sym_pointer_expression] = STATE(52), + [sym_logical_expression] = STATE(52), + [sym_bitwise_expression] = STATE(52), + [sym_equality_expression] = STATE(52), + [sym_relational_expression] = STATE(52), + [sym_shift_expression] = STATE(52), + [sym_math_expression] = STATE(52), + [sym_cast_expression] = STATE(52), + [sym_type_descriptor] = STATE(403), + [sym_sizeof_expression] = STATE(52), + [sym_subscript_expression] = STATE(52), + [sym_call_expression] = STATE(52), + [sym_field_expression] = STATE(52), + [sym_compound_literal_expression] = STATE(52), + [sym_parenthesized_expression] = STATE(52), + [sym_char_literal] = STATE(52), + [sym_concatenated_string] = STATE(52), + [sym_string_literal] = STATE(55), + [sym_macro_type_specifier] = STATE(51), + [aux_sym_type_definition_repeat1] = STATE(56), + [aux_sym_sized_type_specifier_repeat1] = STATE(57), + [anon_sym_LPAREN2] = ACTIONS(85), + [anon_sym_STAR] = ACTIONS(87), + [anon_sym_const] = ACTIONS(27), + [anon_sym_restrict] = ACTIONS(27), + [anon_sym_volatile] = ACTIONS(27), + [anon_sym__Atomic] = ACTIONS(27), + [anon_sym_unsigned] = ACTIONS(89), + [anon_sym_long] = ACTIONS(89), + [anon_sym_short] = ACTIONS(89), + [sym_primitive_type] = ACTIONS(91), + [anon_sym_enum] = ACTIONS(33), + [anon_sym_struct] = ACTIONS(35), + [anon_sym_union] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_PLUS] = ACTIONS(97), + [anon_sym_DASH] = ACTIONS(97), + [anon_sym_DASH_DASH] = ACTIONS(99), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(105), + [sym_false] = ACTIONS(105), + [sym_null] = ACTIONS(105), + [sym_identifier] = ACTIONS(107), + [sym_comment] = ACTIONS(59), }, [217] = { - [sym__expression] = STATE(400), - [sym_conditional_expression] = STATE(400), - [sym_assignment_expression] = STATE(400), - [sym_pointer_expression] = STATE(400), - [sym_logical_expression] = STATE(400), - [sym_bitwise_expression] = STATE(400), - [sym_equality_expression] = STATE(400), - [sym_relational_expression] = STATE(400), - [sym_shift_expression] = STATE(400), - [sym_math_expression] = STATE(400), - [sym_cast_expression] = STATE(400), - [sym_sizeof_expression] = STATE(400), - [sym_subscript_expression] = STATE(400), - [sym_call_expression] = STATE(400), - [sym_field_expression] = STATE(400), - [sym_compound_literal_expression] = STATE(400), - [sym_parenthesized_expression] = STATE(400), - [sym_char_literal] = STATE(400), - [sym_concatenated_string] = STATE(400), - [sym_string_literal] = STATE(342), - [anon_sym_SEMI] = ACTIONS(956), - [anon_sym_LPAREN2] = ACTIONS(780), - [anon_sym_STAR] = ACTIONS(782), - [anon_sym_AMP] = ACTIONS(782), - [anon_sym_BANG] = ACTIONS(784), - [anon_sym_TILDE] = ACTIONS(786), - [anon_sym_PLUS] = ACTIONS(788), - [anon_sym_DASH] = ACTIONS(788), - [anon_sym_DASH_DASH] = ACTIONS(790), - [anon_sym_PLUS_PLUS] = ACTIONS(790), - [anon_sym_sizeof] = ACTIONS(792), - [sym_number_literal] = ACTIONS(958), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(960), - [sym_false] = ACTIONS(960), - [sym_null] = ACTIONS(960), - [sym_identifier] = ACTIONS(960), - [sym_comment] = ACTIONS(37), + [sym__expression] = STATE(58), + [sym_conditional_expression] = STATE(58), + [sym_assignment_expression] = STATE(58), + [sym_pointer_expression] = STATE(58), + [sym_logical_expression] = STATE(58), + [sym_bitwise_expression] = STATE(58), + [sym_equality_expression] = STATE(58), + [sym_relational_expression] = STATE(58), + [sym_shift_expression] = STATE(58), + [sym_math_expression] = STATE(58), + [sym_cast_expression] = STATE(58), + [sym_sizeof_expression] = STATE(58), + [sym_subscript_expression] = STATE(58), + [sym_call_expression] = STATE(58), + [sym_field_expression] = STATE(58), + [sym_compound_literal_expression] = STATE(58), + [sym_parenthesized_expression] = STATE(58), + [sym_char_literal] = STATE(58), + [sym_concatenated_string] = STATE(58), + [sym_string_literal] = STATE(223), + [anon_sym_LPAREN2] = ACTIONS(483), + [anon_sym_STAR] = ACTIONS(485), + [anon_sym_AMP] = ACTIONS(485), + [anon_sym_BANG] = ACTIONS(487), + [anon_sym_TILDE] = ACTIONS(489), + [anon_sym_PLUS] = ACTIONS(491), + [anon_sym_DASH] = ACTIONS(491), + [anon_sym_DASH_DASH] = ACTIONS(493), + [anon_sym_PLUS_PLUS] = ACTIONS(493), + [anon_sym_sizeof] = ACTIONS(495), + [sym_number_literal] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(111), + [sym_false] = ACTIONS(111), + [sym_null] = ACTIONS(111), + [sym_identifier] = ACTIONS(111), + [sym_comment] = ACTIONS(59), }, [218] = { - [anon_sym_SEMI] = ACTIONS(962), - [sym_comment] = ACTIONS(37), + [sym__expression] = STATE(67), + [sym_conditional_expression] = STATE(67), + [sym_assignment_expression] = STATE(67), + [sym_pointer_expression] = STATE(67), + [sym_logical_expression] = STATE(67), + [sym_bitwise_expression] = STATE(67), + [sym_equality_expression] = STATE(67), + [sym_relational_expression] = STATE(67), + [sym_shift_expression] = STATE(67), + [sym_math_expression] = STATE(67), + [sym_cast_expression] = STATE(67), + [sym_sizeof_expression] = STATE(67), + [sym_subscript_expression] = STATE(67), + [sym_call_expression] = STATE(67), + [sym_field_expression] = STATE(67), + [sym_compound_literal_expression] = STATE(67), + [sym_parenthesized_expression] = STATE(67), + [sym_char_literal] = STATE(67), + [sym_concatenated_string] = STATE(67), + [sym_string_literal] = STATE(223), + [anon_sym_LPAREN2] = ACTIONS(483), + [anon_sym_STAR] = ACTIONS(485), + [anon_sym_AMP] = ACTIONS(485), + [anon_sym_BANG] = ACTIONS(487), + [anon_sym_TILDE] = ACTIONS(489), + [anon_sym_PLUS] = ACTIONS(491), + [anon_sym_DASH] = ACTIONS(491), + [anon_sym_DASH_DASH] = ACTIONS(493), + [anon_sym_PLUS_PLUS] = ACTIONS(493), + [anon_sym_sizeof] = ACTIONS(495), + [sym_number_literal] = ACTIONS(129), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(131), + [sym_false] = ACTIONS(131), + [sym_null] = ACTIONS(131), + [sym_identifier] = ACTIONS(131), + [sym_comment] = ACTIONS(59), }, [219] = { - [anon_sym_SEMI] = ACTIONS(964), - [sym_comment] = ACTIONS(37), + [sym__expression] = STATE(68), + [sym_conditional_expression] = STATE(68), + [sym_assignment_expression] = STATE(68), + [sym_pointer_expression] = STATE(68), + [sym_logical_expression] = STATE(68), + [sym_bitwise_expression] = STATE(68), + [sym_equality_expression] = STATE(68), + [sym_relational_expression] = STATE(68), + [sym_shift_expression] = STATE(68), + [sym_math_expression] = STATE(68), + [sym_cast_expression] = STATE(68), + [sym_sizeof_expression] = STATE(68), + [sym_subscript_expression] = STATE(68), + [sym_call_expression] = STATE(68), + [sym_field_expression] = STATE(68), + [sym_compound_literal_expression] = STATE(68), + [sym_parenthesized_expression] = STATE(68), + [sym_char_literal] = STATE(68), + [sym_concatenated_string] = STATE(68), + [sym_string_literal] = STATE(223), + [anon_sym_LPAREN2] = ACTIONS(483), + [anon_sym_STAR] = ACTIONS(485), + [anon_sym_AMP] = ACTIONS(485), + [anon_sym_BANG] = ACTIONS(487), + [anon_sym_TILDE] = ACTIONS(489), + [anon_sym_PLUS] = ACTIONS(491), + [anon_sym_DASH] = ACTIONS(491), + [anon_sym_DASH_DASH] = ACTIONS(493), + [anon_sym_PLUS_PLUS] = ACTIONS(493), + [anon_sym_sizeof] = ACTIONS(495), + [sym_number_literal] = ACTIONS(133), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(135), + [sym_false] = ACTIONS(135), + [sym_null] = ACTIONS(135), + [sym_identifier] = ACTIONS(135), + [sym_comment] = ACTIONS(59), }, [220] = { - [sym_identifier] = ACTIONS(966), - [sym_comment] = ACTIONS(37), + [sym__expression] = STATE(69), + [sym_conditional_expression] = STATE(69), + [sym_assignment_expression] = STATE(69), + [sym_pointer_expression] = STATE(69), + [sym_logical_expression] = STATE(69), + [sym_bitwise_expression] = STATE(69), + [sym_equality_expression] = STATE(69), + [sym_relational_expression] = STATE(69), + [sym_shift_expression] = STATE(69), + [sym_math_expression] = STATE(69), + [sym_cast_expression] = STATE(69), + [sym_sizeof_expression] = STATE(69), + [sym_subscript_expression] = STATE(69), + [sym_call_expression] = STATE(69), + [sym_field_expression] = STATE(69), + [sym_compound_literal_expression] = STATE(69), + [sym_parenthesized_expression] = STATE(69), + [sym_char_literal] = STATE(69), + [sym_concatenated_string] = STATE(69), + [sym_string_literal] = STATE(223), + [anon_sym_LPAREN2] = ACTIONS(483), + [anon_sym_STAR] = ACTIONS(485), + [anon_sym_AMP] = ACTIONS(485), + [anon_sym_BANG] = ACTIONS(487), + [anon_sym_TILDE] = ACTIONS(489), + [anon_sym_PLUS] = ACTIONS(491), + [anon_sym_DASH] = ACTIONS(491), + [anon_sym_DASH_DASH] = ACTIONS(493), + [anon_sym_PLUS_PLUS] = ACTIONS(493), + [anon_sym_sizeof] = ACTIONS(495), + [sym_number_literal] = ACTIONS(137), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(139), + [sym_false] = ACTIONS(139), + [sym_null] = ACTIONS(139), + [sym_identifier] = ACTIONS(139), + [sym_comment] = ACTIONS(59), }, [221] = { - [sym__expression] = STATE(404), - [sym_conditional_expression] = STATE(404), - [sym_assignment_expression] = STATE(404), - [sym_pointer_expression] = STATE(404), - [sym_logical_expression] = STATE(404), - [sym_bitwise_expression] = STATE(404), - [sym_equality_expression] = STATE(404), - [sym_relational_expression] = STATE(404), - [sym_shift_expression] = STATE(404), - [sym_math_expression] = STATE(404), - [sym_cast_expression] = STATE(404), - [sym_sizeof_expression] = STATE(404), - [sym_subscript_expression] = STATE(404), - [sym_call_expression] = STATE(404), - [sym_field_expression] = STATE(404), - [sym_compound_literal_expression] = STATE(404), - [sym_parenthesized_expression] = STATE(404), - [sym_char_literal] = STATE(404), - [sym_concatenated_string] = STATE(404), - [sym_string_literal] = STATE(230), - [anon_sym_LPAREN2] = ACTIONS(507), - [anon_sym_STAR] = ACTIONS(509), - [anon_sym_AMP] = ACTIONS(509), - [anon_sym_BANG] = ACTIONS(533), - [anon_sym_TILDE] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DASH] = ACTIONS(537), - [anon_sym_DASH_DASH] = ACTIONS(539), - [anon_sym_PLUS_PLUS] = ACTIONS(539), - [anon_sym_sizeof] = ACTIONS(541), - [sym_number_literal] = ACTIONS(968), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(970), - [sym_false] = ACTIONS(970), - [sym_null] = ACTIONS(970), - [sym_identifier] = ACTIONS(970), - [sym_comment] = ACTIONS(37), - }, - [222] = { [sym__expression] = STATE(405), [sym_conditional_expression] = STATE(405), [sym_assignment_expression] = STATE(405), @@ -10984,7184 +12754,6456 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_parenthesized_expression] = STATE(405), [sym_char_literal] = STATE(405), [sym_concatenated_string] = STATE(405), - [sym_string_literal] = STATE(230), - [anon_sym_LPAREN2] = ACTIONS(507), - [anon_sym_STAR] = ACTIONS(509), - [anon_sym_AMP] = ACTIONS(509), - [anon_sym_BANG] = ACTIONS(533), - [anon_sym_TILDE] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DASH] = ACTIONS(537), - [anon_sym_DASH_DASH] = ACTIONS(539), - [anon_sym_PLUS_PLUS] = ACTIONS(539), - [anon_sym_sizeof] = ACTIONS(541), - [sym_number_literal] = ACTIONS(972), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(974), - [sym_false] = ACTIONS(974), - [sym_null] = ACTIONS(974), - [sym_identifier] = ACTIONS(974), - [sym_comment] = ACTIONS(37), + [sym_string_literal] = STATE(223), + [anon_sym_LPAREN2] = ACTIONS(1048), + [anon_sym_STAR] = ACTIONS(485), + [anon_sym_AMP] = ACTIONS(485), + [anon_sym_BANG] = ACTIONS(487), + [anon_sym_TILDE] = ACTIONS(489), + [anon_sym_PLUS] = ACTIONS(491), + [anon_sym_DASH] = ACTIONS(491), + [anon_sym_DASH_DASH] = ACTIONS(493), + [anon_sym_PLUS_PLUS] = ACTIONS(493), + [anon_sym_sizeof] = ACTIONS(495), + [sym_number_literal] = ACTIONS(1050), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(1052), + [sym_false] = ACTIONS(1052), + [sym_null] = ACTIONS(1052), + [sym_identifier] = ACTIONS(1052), + [sym_comment] = ACTIONS(59), + }, + [222] = { + [sym_argument_list] = STATE(98), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(1054), + [anon_sym_LBRACK] = ACTIONS(188), + [anon_sym_EQ] = ACTIONS(1056), + [anon_sym_COLON] = ACTIONS(1058), + [anon_sym_QMARK] = ACTIONS(1060), + [anon_sym_STAR_EQ] = ACTIONS(1062), + [anon_sym_SLASH_EQ] = ACTIONS(1062), + [anon_sym_PERCENT_EQ] = ACTIONS(1062), + [anon_sym_PLUS_EQ] = ACTIONS(1062), + [anon_sym_DASH_EQ] = ACTIONS(1062), + [anon_sym_LT_LT_EQ] = ACTIONS(1062), + [anon_sym_GT_GT_EQ] = ACTIONS(1062), + [anon_sym_AMP_EQ] = ACTIONS(1062), + [anon_sym_CARET_EQ] = ACTIONS(1062), + [anon_sym_PIPE_EQ] = ACTIONS(1062), + [anon_sym_AMP] = ACTIONS(1064), + [anon_sym_PIPE_PIPE] = ACTIONS(1066), + [anon_sym_AMP_AMP] = ACTIONS(1068), + [anon_sym_PIPE] = ACTIONS(1070), + [anon_sym_CARET] = ACTIONS(1072), + [anon_sym_EQ_EQ] = ACTIONS(1074), + [anon_sym_BANG_EQ] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(1076), + [anon_sym_GT] = ACTIONS(1076), + [anon_sym_LT_EQ] = ACTIONS(1078), + [anon_sym_GT_EQ] = ACTIONS(1078), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_GT_GT] = ACTIONS(1080), + [anon_sym_PLUS] = ACTIONS(1082), + [anon_sym_DASH] = ACTIONS(1082), + [anon_sym_SLASH] = ACTIONS(1054), + [anon_sym_PERCENT] = ACTIONS(1054), + [anon_sym_DASH_DASH] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(216), + [anon_sym_DOT] = ACTIONS(218), + [anon_sym_DASH_GT] = ACTIONS(218), + [sym_comment] = ACTIONS(59), }, [223] = { - [sym__expression] = STATE(406), - [sym_conditional_expression] = STATE(406), - [sym_assignment_expression] = STATE(406), - [sym_pointer_expression] = STATE(406), - [sym_logical_expression] = STATE(406), - [sym_bitwise_expression] = STATE(406), - [sym_equality_expression] = STATE(406), - [sym_relational_expression] = STATE(406), - [sym_shift_expression] = STATE(406), - [sym_math_expression] = STATE(406), - [sym_cast_expression] = STATE(406), - [sym_sizeof_expression] = STATE(406), - [sym_subscript_expression] = STATE(406), - [sym_call_expression] = STATE(406), - [sym_field_expression] = STATE(406), - [sym_compound_literal_expression] = STATE(406), - [sym_parenthesized_expression] = STATE(406), - [sym_char_literal] = STATE(406), - [sym_concatenated_string] = STATE(406), - [sym_string_literal] = STATE(230), - [anon_sym_LPAREN2] = ACTIONS(507), - [anon_sym_STAR] = ACTIONS(509), - [anon_sym_AMP] = ACTIONS(509), - [anon_sym_BANG] = ACTIONS(533), - [anon_sym_TILDE] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DASH] = ACTIONS(537), - [anon_sym_DASH_DASH] = ACTIONS(539), - [anon_sym_PLUS_PLUS] = ACTIONS(539), - [anon_sym_sizeof] = ACTIONS(541), - [sym_number_literal] = ACTIONS(976), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(978), - [sym_false] = ACTIONS(978), - [sym_null] = ACTIONS(978), - [sym_identifier] = ACTIONS(978), - [sym_comment] = ACTIONS(37), + [sym_string_literal] = STATE(419), + [aux_sym_concatenated_string_repeat1] = STATE(419), + [anon_sym_LPAREN2] = ACTIONS(166), + [anon_sym_STAR] = ACTIONS(168), + [anon_sym_LBRACK] = ACTIONS(166), + [anon_sym_EQ] = ACTIONS(168), + [anon_sym_COLON] = ACTIONS(166), + [anon_sym_QMARK] = ACTIONS(166), + [anon_sym_STAR_EQ] = ACTIONS(166), + [anon_sym_SLASH_EQ] = ACTIONS(166), + [anon_sym_PERCENT_EQ] = ACTIONS(166), + [anon_sym_PLUS_EQ] = ACTIONS(166), + [anon_sym_DASH_EQ] = ACTIONS(166), + [anon_sym_LT_LT_EQ] = ACTIONS(166), + [anon_sym_GT_GT_EQ] = ACTIONS(166), + [anon_sym_AMP_EQ] = ACTIONS(166), + [anon_sym_CARET_EQ] = ACTIONS(166), + [anon_sym_PIPE_EQ] = ACTIONS(166), + [anon_sym_AMP] = ACTIONS(168), + [anon_sym_PIPE_PIPE] = ACTIONS(166), + [anon_sym_AMP_AMP] = ACTIONS(166), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_CARET] = ACTIONS(168), + [anon_sym_EQ_EQ] = ACTIONS(166), + [anon_sym_BANG_EQ] = ACTIONS(166), + [anon_sym_LT] = ACTIONS(168), + [anon_sym_GT] = ACTIONS(168), + [anon_sym_LT_EQ] = ACTIONS(166), + [anon_sym_GT_EQ] = ACTIONS(166), + [anon_sym_LT_LT] = ACTIONS(168), + [anon_sym_GT_GT] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(168), + [anon_sym_DASH] = ACTIONS(168), + [anon_sym_SLASH] = ACTIONS(168), + [anon_sym_PERCENT] = ACTIONS(168), + [anon_sym_DASH_DASH] = ACTIONS(166), + [anon_sym_PLUS_PLUS] = ACTIONS(166), + [anon_sym_DOT] = ACTIONS(166), + [anon_sym_DASH_GT] = ACTIONS(166), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_comment] = ACTIONS(59), }, [224] = { - [sym__expression] = STATE(408), - [sym_conditional_expression] = STATE(408), - [sym_assignment_expression] = STATE(408), - [sym_pointer_expression] = STATE(408), - [sym_logical_expression] = STATE(408), - [sym_bitwise_expression] = STATE(408), - [sym_equality_expression] = STATE(408), - [sym_relational_expression] = STATE(408), - [sym_shift_expression] = STATE(408), - [sym_math_expression] = STATE(408), - [sym_cast_expression] = STATE(408), - [sym_sizeof_expression] = STATE(408), - [sym_subscript_expression] = STATE(408), - [sym_call_expression] = STATE(408), - [sym_field_expression] = STATE(408), - [sym_compound_literal_expression] = STATE(408), - [sym_parenthesized_expression] = STATE(408), - [sym_char_literal] = STATE(408), - [sym_concatenated_string] = STATE(408), - [sym_string_literal] = STATE(230), - [anon_sym_LPAREN2] = ACTIONS(980), - [anon_sym_STAR] = ACTIONS(509), - [anon_sym_AMP] = ACTIONS(509), - [anon_sym_BANG] = ACTIONS(533), - [anon_sym_TILDE] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DASH] = ACTIONS(537), - [anon_sym_DASH_DASH] = ACTIONS(539), - [anon_sym_PLUS_PLUS] = ACTIONS(539), - [anon_sym_sizeof] = ACTIONS(541), - [sym_number_literal] = ACTIONS(982), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(984), - [sym_false] = ACTIONS(984), - [sym_null] = ACTIONS(984), - [sym_identifier] = ACTIONS(984), - [sym_comment] = ACTIONS(37), + [sym_argument_list] = STATE(98), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(186), + [anon_sym_LBRACK] = ACTIONS(188), + [anon_sym_EQ] = ACTIONS(1084), + [anon_sym_QMARK] = ACTIONS(1086), + [anon_sym_STAR_EQ] = ACTIONS(1086), + [anon_sym_SLASH_EQ] = ACTIONS(1086), + [anon_sym_PERCENT_EQ] = ACTIONS(1086), + [anon_sym_PLUS_EQ] = ACTIONS(1086), + [anon_sym_DASH_EQ] = ACTIONS(1086), + [anon_sym_LT_LT_EQ] = ACTIONS(1086), + [anon_sym_GT_GT_EQ] = ACTIONS(1086), + [anon_sym_AMP_EQ] = ACTIONS(1086), + [anon_sym_CARET_EQ] = ACTIONS(1086), + [anon_sym_PIPE_EQ] = ACTIONS(1086), + [anon_sym_AMP] = ACTIONS(1084), + [anon_sym_PIPE_PIPE] = ACTIONS(1086), + [anon_sym_AMP_AMP] = ACTIONS(1086), + [anon_sym_PIPE] = ACTIONS(1084), + [anon_sym_CARET] = ACTIONS(1084), + [anon_sym_EQ_EQ] = ACTIONS(206), + [anon_sym_BANG_EQ] = ACTIONS(206), + [anon_sym_LT] = ACTIONS(208), + [anon_sym_GT] = ACTIONS(208), + [anon_sym_LT_EQ] = ACTIONS(210), + [anon_sym_GT_EQ] = ACTIONS(210), + [anon_sym_LT_LT] = ACTIONS(212), + [anon_sym_GT_GT] = ACTIONS(212), + [anon_sym_PLUS] = ACTIONS(214), + [anon_sym_DASH] = ACTIONS(214), + [anon_sym_SLASH] = ACTIONS(186), + [anon_sym_PERCENT] = ACTIONS(186), + [anon_sym_DASH_DASH] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(216), + [anon_sym_DOT] = ACTIONS(218), + [anon_sym_DASH_GT] = ACTIONS(218), + [sym_comment] = ACTIONS(59), }, [225] = { - [aux_sym_SLASH_LBRACK_CARET_BSLASHn_SQUOTE_RBRACK_SLASH] = ACTIONS(986), - [sym_escape_sequence] = ACTIONS(988), - [sym_comment] = ACTIONS(47), + [sym_argument_list] = STATE(98), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(186), + [anon_sym_LBRACK] = ACTIONS(188), + [anon_sym_EQ] = ACTIONS(1088), + [anon_sym_QMARK] = ACTIONS(1090), + [anon_sym_STAR_EQ] = ACTIONS(1090), + [anon_sym_SLASH_EQ] = ACTIONS(1090), + [anon_sym_PERCENT_EQ] = ACTIONS(1090), + [anon_sym_PLUS_EQ] = ACTIONS(1090), + [anon_sym_DASH_EQ] = ACTIONS(1090), + [anon_sym_LT_LT_EQ] = ACTIONS(1090), + [anon_sym_GT_GT_EQ] = ACTIONS(1090), + [anon_sym_AMP_EQ] = ACTIONS(1090), + [anon_sym_CARET_EQ] = ACTIONS(1090), + [anon_sym_PIPE_EQ] = ACTIONS(1090), + [anon_sym_AMP] = ACTIONS(196), + [anon_sym_PIPE_PIPE] = ACTIONS(1090), + [anon_sym_AMP_AMP] = ACTIONS(200), + [anon_sym_PIPE] = ACTIONS(202), + [anon_sym_CARET] = ACTIONS(204), + [anon_sym_EQ_EQ] = ACTIONS(206), + [anon_sym_BANG_EQ] = ACTIONS(206), + [anon_sym_LT] = ACTIONS(208), + [anon_sym_GT] = ACTIONS(208), + [anon_sym_LT_EQ] = ACTIONS(210), + [anon_sym_GT_EQ] = ACTIONS(210), + [anon_sym_LT_LT] = ACTIONS(212), + [anon_sym_GT_GT] = ACTIONS(212), + [anon_sym_PLUS] = ACTIONS(214), + [anon_sym_DASH] = ACTIONS(214), + [anon_sym_SLASH] = ACTIONS(186), + [anon_sym_PERCENT] = ACTIONS(186), + [anon_sym_DASH_DASH] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(216), + [anon_sym_DOT] = ACTIONS(218), + [anon_sym_DASH_GT] = ACTIONS(218), + [sym_comment] = ACTIONS(59), }, [226] = { - [anon_sym_COMMA] = ACTIONS(990), - [anon_sym_SEMI] = ACTIONS(992), - [anon_sym_extern] = ACTIONS(79), - [anon_sym_LPAREN2] = ACTIONS(995), - [anon_sym_STAR] = ACTIONS(999), - [anon_sym_LBRACK] = ACTIONS(990), - [anon_sym_EQ] = ACTIONS(1002), - [anon_sym_static] = ACTIONS(79), - [anon_sym_auto] = ACTIONS(79), - [anon_sym_register] = ACTIONS(79), - [anon_sym_inline] = ACTIONS(79), - [anon_sym_const] = ACTIONS(79), - [anon_sym_restrict] = ACTIONS(79), - [anon_sym_volatile] = ACTIONS(79), - [anon_sym__Atomic] = ACTIONS(79), - [anon_sym_COLON] = ACTIONS(1004), - [anon_sym_QMARK] = ACTIONS(990), - [anon_sym_STAR_EQ] = ACTIONS(990), - [anon_sym_SLASH_EQ] = ACTIONS(990), - [anon_sym_PERCENT_EQ] = ACTIONS(990), - [anon_sym_PLUS_EQ] = ACTIONS(990), - [anon_sym_DASH_EQ] = ACTIONS(990), - [anon_sym_LT_LT_EQ] = ACTIONS(990), - [anon_sym_GT_GT_EQ] = ACTIONS(990), - [anon_sym_AMP_EQ] = ACTIONS(990), - [anon_sym_CARET_EQ] = ACTIONS(990), - [anon_sym_PIPE_EQ] = ACTIONS(990), - [anon_sym_AMP] = ACTIONS(1002), - [anon_sym_PIPE_PIPE] = ACTIONS(990), - [anon_sym_AMP_AMP] = ACTIONS(990), - [anon_sym_PIPE] = ACTIONS(1002), - [anon_sym_CARET] = ACTIONS(1002), - [anon_sym_EQ_EQ] = ACTIONS(990), - [anon_sym_BANG_EQ] = ACTIONS(990), - [anon_sym_LT] = ACTIONS(1002), - [anon_sym_GT] = ACTIONS(1002), - [anon_sym_LT_EQ] = ACTIONS(990), - [anon_sym_GT_EQ] = ACTIONS(990), - [anon_sym_LT_LT] = ACTIONS(1002), - [anon_sym_GT_GT] = ACTIONS(1002), - [anon_sym_PLUS] = ACTIONS(1002), - [anon_sym_DASH] = ACTIONS(1002), - [anon_sym_SLASH] = ACTIONS(1002), - [anon_sym_PERCENT] = ACTIONS(1002), - [anon_sym_DASH_DASH] = ACTIONS(990), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_DOT] = ACTIONS(990), - [anon_sym_DASH_GT] = ACTIONS(990), - [sym_identifier] = ACTIONS(79), - [sym_comment] = ACTIONS(37), + [sym_argument_list] = STATE(98), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(186), + [anon_sym_LBRACK] = ACTIONS(188), + [anon_sym_EQ] = ACTIONS(1088), + [anon_sym_QMARK] = ACTIONS(1090), + [anon_sym_STAR_EQ] = ACTIONS(1090), + [anon_sym_SLASH_EQ] = ACTIONS(1090), + [anon_sym_PERCENT_EQ] = ACTIONS(1090), + [anon_sym_PLUS_EQ] = ACTIONS(1090), + [anon_sym_DASH_EQ] = ACTIONS(1090), + [anon_sym_LT_LT_EQ] = ACTIONS(1090), + [anon_sym_GT_GT_EQ] = ACTIONS(1090), + [anon_sym_AMP_EQ] = ACTIONS(1090), + [anon_sym_CARET_EQ] = ACTIONS(1090), + [anon_sym_PIPE_EQ] = ACTIONS(1090), + [anon_sym_AMP] = ACTIONS(196), + [anon_sym_PIPE_PIPE] = ACTIONS(1090), + [anon_sym_AMP_AMP] = ACTIONS(1090), + [anon_sym_PIPE] = ACTIONS(202), + [anon_sym_CARET] = ACTIONS(204), + [anon_sym_EQ_EQ] = ACTIONS(206), + [anon_sym_BANG_EQ] = ACTIONS(206), + [anon_sym_LT] = ACTIONS(208), + [anon_sym_GT] = ACTIONS(208), + [anon_sym_LT_EQ] = ACTIONS(210), + [anon_sym_GT_EQ] = ACTIONS(210), + [anon_sym_LT_LT] = ACTIONS(212), + [anon_sym_GT_GT] = ACTIONS(212), + [anon_sym_PLUS] = ACTIONS(214), + [anon_sym_DASH] = ACTIONS(214), + [anon_sym_SLASH] = ACTIONS(186), + [anon_sym_PERCENT] = ACTIONS(186), + [anon_sym_DASH_DASH] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(216), + [anon_sym_DOT] = ACTIONS(218), + [anon_sym_DASH_GT] = ACTIONS(218), + [sym_comment] = ACTIONS(59), }, [227] = { - [sym__declarator] = STATE(411), - [sym_pointer_declarator] = STATE(411), - [sym_function_declarator] = STATE(411), - [sym_array_declarator] = STATE(411), - [sym_init_declarator] = STATE(45), - [anon_sym_SEMI] = ACTIONS(86), - [anon_sym_LPAREN2] = ACTIONS(88), - [anon_sym_STAR] = ACTIONS(489), - [sym_identifier] = ACTIONS(1006), - [sym_comment] = ACTIONS(37), + [sym_argument_list] = STATE(98), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(186), + [anon_sym_LBRACK] = ACTIONS(188), + [anon_sym_EQ] = ACTIONS(1084), + [anon_sym_QMARK] = ACTIONS(1086), + [anon_sym_STAR_EQ] = ACTIONS(1086), + [anon_sym_SLASH_EQ] = ACTIONS(1086), + [anon_sym_PERCENT_EQ] = ACTIONS(1086), + [anon_sym_PLUS_EQ] = ACTIONS(1086), + [anon_sym_DASH_EQ] = ACTIONS(1086), + [anon_sym_LT_LT_EQ] = ACTIONS(1086), + [anon_sym_GT_GT_EQ] = ACTIONS(1086), + [anon_sym_AMP_EQ] = ACTIONS(1086), + [anon_sym_CARET_EQ] = ACTIONS(1086), + [anon_sym_PIPE_EQ] = ACTIONS(1086), + [anon_sym_AMP] = ACTIONS(196), + [anon_sym_PIPE_PIPE] = ACTIONS(1086), + [anon_sym_AMP_AMP] = ACTIONS(1086), + [anon_sym_PIPE] = ACTIONS(1084), + [anon_sym_CARET] = ACTIONS(204), + [anon_sym_EQ_EQ] = ACTIONS(206), + [anon_sym_BANG_EQ] = ACTIONS(206), + [anon_sym_LT] = ACTIONS(208), + [anon_sym_GT] = ACTIONS(208), + [anon_sym_LT_EQ] = ACTIONS(210), + [anon_sym_GT_EQ] = ACTIONS(210), + [anon_sym_LT_LT] = ACTIONS(212), + [anon_sym_GT_GT] = ACTIONS(212), + [anon_sym_PLUS] = ACTIONS(214), + [anon_sym_DASH] = ACTIONS(214), + [anon_sym_SLASH] = ACTIONS(186), + [anon_sym_PERCENT] = ACTIONS(186), + [anon_sym_DASH_DASH] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(216), + [anon_sym_DOT] = ACTIONS(218), + [anon_sym_DASH_GT] = ACTIONS(218), + [sym_comment] = ACTIONS(59), }, [228] = { - [sym_argument_list] = STATE(430), - [anon_sym_COMMA] = ACTIONS(1008), - [anon_sym_SEMI] = ACTIONS(1010), - [anon_sym_LPAREN2] = ACTIONS(1012), - [anon_sym_STAR] = ACTIONS(1014), - [anon_sym_LBRACK] = ACTIONS(1016), - [anon_sym_EQ] = ACTIONS(1018), - [anon_sym_QMARK] = ACTIONS(1020), - [anon_sym_STAR_EQ] = ACTIONS(1022), - [anon_sym_SLASH_EQ] = ACTIONS(1022), - [anon_sym_PERCENT_EQ] = ACTIONS(1022), - [anon_sym_PLUS_EQ] = ACTIONS(1022), - [anon_sym_DASH_EQ] = ACTIONS(1022), - [anon_sym_LT_LT_EQ] = ACTIONS(1022), - [anon_sym_GT_GT_EQ] = ACTIONS(1022), - [anon_sym_AMP_EQ] = ACTIONS(1022), - [anon_sym_CARET_EQ] = ACTIONS(1022), - [anon_sym_PIPE_EQ] = ACTIONS(1022), - [anon_sym_AMP] = ACTIONS(1024), - [anon_sym_PIPE_PIPE] = ACTIONS(1026), - [anon_sym_AMP_AMP] = ACTIONS(1028), - [anon_sym_PIPE] = ACTIONS(1030), - [anon_sym_CARET] = ACTIONS(1032), - [anon_sym_EQ_EQ] = ACTIONS(1034), - [anon_sym_BANG_EQ] = ACTIONS(1034), - [anon_sym_LT] = ACTIONS(1036), - [anon_sym_GT] = ACTIONS(1036), - [anon_sym_LT_EQ] = ACTIONS(1038), - [anon_sym_GT_EQ] = ACTIONS(1038), - [anon_sym_LT_LT] = ACTIONS(1040), - [anon_sym_GT_GT] = ACTIONS(1040), - [anon_sym_PLUS] = ACTIONS(1042), - [anon_sym_DASH] = ACTIONS(1042), - [anon_sym_SLASH] = ACTIONS(1014), - [anon_sym_PERCENT] = ACTIONS(1014), - [anon_sym_DASH_DASH] = ACTIONS(1044), - [anon_sym_PLUS_PLUS] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1046), - [anon_sym_DASH_GT] = ACTIONS(1046), - [sym_comment] = ACTIONS(37), + [sym_argument_list] = STATE(98), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(186), + [anon_sym_LBRACK] = ACTIONS(188), + [anon_sym_EQ] = ACTIONS(1084), + [anon_sym_QMARK] = ACTIONS(1086), + [anon_sym_STAR_EQ] = ACTIONS(1086), + [anon_sym_SLASH_EQ] = ACTIONS(1086), + [anon_sym_PERCENT_EQ] = ACTIONS(1086), + [anon_sym_PLUS_EQ] = ACTIONS(1086), + [anon_sym_DASH_EQ] = ACTIONS(1086), + [anon_sym_LT_LT_EQ] = ACTIONS(1086), + [anon_sym_GT_GT_EQ] = ACTIONS(1086), + [anon_sym_AMP_EQ] = ACTIONS(1086), + [anon_sym_CARET_EQ] = ACTIONS(1086), + [anon_sym_PIPE_EQ] = ACTIONS(1086), + [anon_sym_AMP] = ACTIONS(196), + [anon_sym_PIPE_PIPE] = ACTIONS(1086), + [anon_sym_AMP_AMP] = ACTIONS(1086), + [anon_sym_PIPE] = ACTIONS(1084), + [anon_sym_CARET] = ACTIONS(1084), + [anon_sym_EQ_EQ] = ACTIONS(206), + [anon_sym_BANG_EQ] = ACTIONS(206), + [anon_sym_LT] = ACTIONS(208), + [anon_sym_GT] = ACTIONS(208), + [anon_sym_LT_EQ] = ACTIONS(210), + [anon_sym_GT_EQ] = ACTIONS(210), + [anon_sym_LT_LT] = ACTIONS(212), + [anon_sym_GT_GT] = ACTIONS(212), + [anon_sym_PLUS] = ACTIONS(214), + [anon_sym_DASH] = ACTIONS(214), + [anon_sym_SLASH] = ACTIONS(186), + [anon_sym_PERCENT] = ACTIONS(186), + [anon_sym_DASH_DASH] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(216), + [anon_sym_DOT] = ACTIONS(218), + [anon_sym_DASH_GT] = ACTIONS(218), + [sym_comment] = ACTIONS(59), }, [229] = { - [anon_sym_SEMI] = ACTIONS(1010), - [sym_comment] = ACTIONS(37), + [sym_argument_list] = STATE(98), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(186), + [anon_sym_LBRACK] = ACTIONS(188), + [anon_sym_EQ] = ACTIONS(1092), + [anon_sym_QMARK] = ACTIONS(1094), + [anon_sym_STAR_EQ] = ACTIONS(1094), + [anon_sym_SLASH_EQ] = ACTIONS(1094), + [anon_sym_PERCENT_EQ] = ACTIONS(1094), + [anon_sym_PLUS_EQ] = ACTIONS(1094), + [anon_sym_DASH_EQ] = ACTIONS(1094), + [anon_sym_LT_LT_EQ] = ACTIONS(1094), + [anon_sym_GT_GT_EQ] = ACTIONS(1094), + [anon_sym_AMP_EQ] = ACTIONS(1094), + [anon_sym_CARET_EQ] = ACTIONS(1094), + [anon_sym_PIPE_EQ] = ACTIONS(1094), + [anon_sym_AMP] = ACTIONS(1092), + [anon_sym_PIPE_PIPE] = ACTIONS(1094), + [anon_sym_AMP_AMP] = ACTIONS(1094), + [anon_sym_PIPE] = ACTIONS(1092), + [anon_sym_CARET] = ACTIONS(1092), + [anon_sym_EQ_EQ] = ACTIONS(1094), + [anon_sym_BANG_EQ] = ACTIONS(1094), + [anon_sym_LT] = ACTIONS(208), + [anon_sym_GT] = ACTIONS(208), + [anon_sym_LT_EQ] = ACTIONS(210), + [anon_sym_GT_EQ] = ACTIONS(210), + [anon_sym_LT_LT] = ACTIONS(212), + [anon_sym_GT_GT] = ACTIONS(212), + [anon_sym_PLUS] = ACTIONS(214), + [anon_sym_DASH] = ACTIONS(214), + [anon_sym_SLASH] = ACTIONS(186), + [anon_sym_PERCENT] = ACTIONS(186), + [anon_sym_DASH_DASH] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(216), + [anon_sym_DOT] = ACTIONS(218), + [anon_sym_DASH_GT] = ACTIONS(218), + [sym_comment] = ACTIONS(59), }, [230] = { - [sym_string_literal] = STATE(431), - [aux_sym_concatenated_string_repeat1] = STATE(431), - [anon_sym_COMMA] = ACTIONS(990), - [anon_sym_SEMI] = ACTIONS(990), - [anon_sym_LPAREN2] = ACTIONS(990), - [anon_sym_STAR] = ACTIONS(1002), - [anon_sym_LBRACK] = ACTIONS(990), - [anon_sym_EQ] = ACTIONS(1002), - [anon_sym_QMARK] = ACTIONS(990), - [anon_sym_STAR_EQ] = ACTIONS(990), - [anon_sym_SLASH_EQ] = ACTIONS(990), - [anon_sym_PERCENT_EQ] = ACTIONS(990), - [anon_sym_PLUS_EQ] = ACTIONS(990), - [anon_sym_DASH_EQ] = ACTIONS(990), - [anon_sym_LT_LT_EQ] = ACTIONS(990), - [anon_sym_GT_GT_EQ] = ACTIONS(990), - [anon_sym_AMP_EQ] = ACTIONS(990), - [anon_sym_CARET_EQ] = ACTIONS(990), - [anon_sym_PIPE_EQ] = ACTIONS(990), - [anon_sym_AMP] = ACTIONS(1002), - [anon_sym_PIPE_PIPE] = ACTIONS(990), - [anon_sym_AMP_AMP] = ACTIONS(990), - [anon_sym_PIPE] = ACTIONS(1002), - [anon_sym_CARET] = ACTIONS(1002), - [anon_sym_EQ_EQ] = ACTIONS(990), - [anon_sym_BANG_EQ] = ACTIONS(990), - [anon_sym_LT] = ACTIONS(1002), - [anon_sym_GT] = ACTIONS(1002), - [anon_sym_LT_EQ] = ACTIONS(990), - [anon_sym_GT_EQ] = ACTIONS(990), - [anon_sym_LT_LT] = ACTIONS(1002), - [anon_sym_GT_GT] = ACTIONS(1002), - [anon_sym_PLUS] = ACTIONS(1002), - [anon_sym_DASH] = ACTIONS(1002), - [anon_sym_SLASH] = ACTIONS(1002), - [anon_sym_PERCENT] = ACTIONS(1002), - [anon_sym_DASH_DASH] = ACTIONS(990), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_DOT] = ACTIONS(990), - [anon_sym_DASH_GT] = ACTIONS(990), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_comment] = ACTIONS(37), + [sym_argument_list] = STATE(98), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(186), + [anon_sym_LBRACK] = ACTIONS(188), + [anon_sym_EQ] = ACTIONS(1096), + [anon_sym_QMARK] = ACTIONS(1098), + [anon_sym_STAR_EQ] = ACTIONS(1098), + [anon_sym_SLASH_EQ] = ACTIONS(1098), + [anon_sym_PERCENT_EQ] = ACTIONS(1098), + [anon_sym_PLUS_EQ] = ACTIONS(1098), + [anon_sym_DASH_EQ] = ACTIONS(1098), + [anon_sym_LT_LT_EQ] = ACTIONS(1098), + [anon_sym_GT_GT_EQ] = ACTIONS(1098), + [anon_sym_AMP_EQ] = ACTIONS(1098), + [anon_sym_CARET_EQ] = ACTIONS(1098), + [anon_sym_PIPE_EQ] = ACTIONS(1098), + [anon_sym_AMP] = ACTIONS(1096), + [anon_sym_PIPE_PIPE] = ACTIONS(1098), + [anon_sym_AMP_AMP] = ACTIONS(1098), + [anon_sym_PIPE] = ACTIONS(1096), + [anon_sym_CARET] = ACTIONS(1096), + [anon_sym_EQ_EQ] = ACTIONS(1098), + [anon_sym_BANG_EQ] = ACTIONS(1098), + [anon_sym_LT] = ACTIONS(1096), + [anon_sym_GT] = ACTIONS(1096), + [anon_sym_LT_EQ] = ACTIONS(1098), + [anon_sym_GT_EQ] = ACTIONS(1098), + [anon_sym_LT_LT] = ACTIONS(212), + [anon_sym_GT_GT] = ACTIONS(212), + [anon_sym_PLUS] = ACTIONS(214), + [anon_sym_DASH] = ACTIONS(214), + [anon_sym_SLASH] = ACTIONS(186), + [anon_sym_PERCENT] = ACTIONS(186), + [anon_sym_DASH_DASH] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(216), + [anon_sym_DOT] = ACTIONS(218), + [anon_sym_DASH_GT] = ACTIONS(218), + [sym_comment] = ACTIONS(59), }, [231] = { - [sym_preproc_include] = STATE(433), - [sym_preproc_def] = STATE(433), - [sym_preproc_function_def] = STATE(433), - [sym_preproc_call] = STATE(433), - [sym_preproc_if_in_compound_statement] = STATE(433), - [sym_preproc_ifdef_in_compound_statement] = STATE(433), - [sym_declaration] = STATE(433), - [sym_type_definition] = STATE(433), - [sym__declaration_specifiers] = STATE(227), - [sym_compound_statement] = STATE(433), - [sym_storage_class_specifier] = STATE(19), - [sym_type_qualifier] = STATE(19), - [sym__type_specifier] = STATE(17), - [sym_sized_type_specifier] = STATE(17), - [sym_enum_specifier] = STATE(17), - [sym_struct_specifier] = STATE(17), - [sym_union_specifier] = STATE(17), - [sym_labeled_statement] = STATE(433), - [sym_expression_statement] = STATE(433), - [sym_if_statement] = STATE(433), - [sym_switch_statement] = STATE(433), - [sym_case_statement] = STATE(433), - [sym_while_statement] = STATE(433), - [sym_do_statement] = STATE(433), - [sym_for_statement] = STATE(433), - [sym_return_statement] = STATE(433), - [sym_break_statement] = STATE(433), - [sym_continue_statement] = STATE(433), - [sym_goto_statement] = STATE(433), - [sym__expression] = STATE(228), - [sym_comma_expression] = STATE(229), - [sym_conditional_expression] = STATE(228), - [sym_assignment_expression] = STATE(228), - [sym_pointer_expression] = STATE(228), - [sym_logical_expression] = STATE(228), - [sym_bitwise_expression] = STATE(228), - [sym_equality_expression] = STATE(228), - [sym_relational_expression] = STATE(228), - [sym_shift_expression] = STATE(228), - [sym_math_expression] = STATE(228), - [sym_cast_expression] = STATE(228), - [sym_sizeof_expression] = STATE(228), - [sym_subscript_expression] = STATE(228), - [sym_call_expression] = STATE(228), - [sym_field_expression] = STATE(228), - [sym_compound_literal_expression] = STATE(228), - [sym_parenthesized_expression] = STATE(228), - [sym_char_literal] = STATE(228), - [sym_concatenated_string] = STATE(228), - [sym_string_literal] = STATE(230), - [sym__empty_declaration] = STATE(433), - [sym_macro_type_specifier] = STATE(17), - [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(433), - [aux_sym__declaration_specifiers_repeat1] = STATE(19), - [aux_sym_sized_type_specifier_repeat1] = STATE(20), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(497), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(9), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(499), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(501), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(501), - [sym_preproc_directive] = ACTIONS(15), - [anon_sym_SEMI] = ACTIONS(503), - [anon_sym_typedef] = ACTIONS(17), - [anon_sym_extern] = ACTIONS(21), - [anon_sym_LBRACE] = ACTIONS(229), - [anon_sym_RBRACE] = ACTIONS(1048), - [anon_sym_LPAREN2] = ACTIONS(507), - [anon_sym_STAR] = ACTIONS(509), - [anon_sym_static] = ACTIONS(21), - [anon_sym_auto] = ACTIONS(21), - [anon_sym_register] = ACTIONS(21), - [anon_sym_inline] = ACTIONS(21), - [anon_sym_const] = ACTIONS(23), - [anon_sym_restrict] = ACTIONS(23), - [anon_sym_volatile] = ACTIONS(23), - [anon_sym__Atomic] = ACTIONS(23), - [anon_sym_unsigned] = ACTIONS(25), - [anon_sym_long] = ACTIONS(25), - [anon_sym_short] = ACTIONS(25), - [sym_primitive_type] = ACTIONS(27), - [anon_sym_enum] = ACTIONS(29), - [anon_sym_struct] = ACTIONS(31), - [anon_sym_union] = ACTIONS(33), - [anon_sym_if] = ACTIONS(511), - [anon_sym_switch] = ACTIONS(513), - [anon_sym_case] = ACTIONS(515), - [anon_sym_default] = ACTIONS(517), - [anon_sym_while] = ACTIONS(519), - [anon_sym_do] = ACTIONS(521), - [anon_sym_for] = ACTIONS(523), - [anon_sym_return] = ACTIONS(525), - [anon_sym_break] = ACTIONS(527), - [anon_sym_continue] = ACTIONS(529), - [anon_sym_goto] = ACTIONS(531), - [anon_sym_AMP] = ACTIONS(509), - [anon_sym_BANG] = ACTIONS(533), - [anon_sym_TILDE] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DASH] = ACTIONS(537), - [anon_sym_DASH_DASH] = ACTIONS(539), - [anon_sym_PLUS_PLUS] = ACTIONS(539), - [anon_sym_sizeof] = ACTIONS(541), - [sym_number_literal] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(547), - [sym_false] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [sym_identifier] = ACTIONS(549), - [sym_comment] = ACTIONS(37), + [sym_argument_list] = STATE(98), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(186), + [anon_sym_LBRACK] = ACTIONS(188), + [anon_sym_EQ] = ACTIONS(1100), + [anon_sym_QMARK] = ACTIONS(1102), + [anon_sym_STAR_EQ] = ACTIONS(1102), + [anon_sym_SLASH_EQ] = ACTIONS(1102), + [anon_sym_PERCENT_EQ] = ACTIONS(1102), + [anon_sym_PLUS_EQ] = ACTIONS(1102), + [anon_sym_DASH_EQ] = ACTIONS(1102), + [anon_sym_LT_LT_EQ] = ACTIONS(1102), + [anon_sym_GT_GT_EQ] = ACTIONS(1102), + [anon_sym_AMP_EQ] = ACTIONS(1102), + [anon_sym_CARET_EQ] = ACTIONS(1102), + [anon_sym_PIPE_EQ] = ACTIONS(1102), + [anon_sym_AMP] = ACTIONS(1100), + [anon_sym_PIPE_PIPE] = ACTIONS(1102), + [anon_sym_AMP_AMP] = ACTIONS(1102), + [anon_sym_PIPE] = ACTIONS(1100), + [anon_sym_CARET] = ACTIONS(1100), + [anon_sym_EQ_EQ] = ACTIONS(1102), + [anon_sym_BANG_EQ] = ACTIONS(1102), + [anon_sym_LT] = ACTIONS(1100), + [anon_sym_GT] = ACTIONS(1100), + [anon_sym_LT_EQ] = ACTIONS(1102), + [anon_sym_GT_EQ] = ACTIONS(1102), + [anon_sym_LT_LT] = ACTIONS(1100), + [anon_sym_GT_GT] = ACTIONS(1100), + [anon_sym_PLUS] = ACTIONS(214), + [anon_sym_DASH] = ACTIONS(214), + [anon_sym_SLASH] = ACTIONS(186), + [anon_sym_PERCENT] = ACTIONS(186), + [anon_sym_DASH_DASH] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(216), + [anon_sym_DOT] = ACTIONS(218), + [anon_sym_DASH_GT] = ACTIONS(218), + [sym_comment] = ACTIONS(59), }, [232] = { - [aux_sym_parameter_list_repeat1] = STATE(436), - [anon_sym_COMMA] = ACTIONS(1050), - [anon_sym_RPAREN] = ACTIONS(1052), - [sym_comment] = ACTIONS(37), + [sym_argument_list] = STATE(98), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(186), + [anon_sym_LBRACK] = ACTIONS(188), + [anon_sym_EQ] = ACTIONS(1008), + [anon_sym_QMARK] = ACTIONS(1006), + [anon_sym_STAR_EQ] = ACTIONS(1006), + [anon_sym_SLASH_EQ] = ACTIONS(1006), + [anon_sym_PERCENT_EQ] = ACTIONS(1006), + [anon_sym_PLUS_EQ] = ACTIONS(1006), + [anon_sym_DASH_EQ] = ACTIONS(1006), + [anon_sym_LT_LT_EQ] = ACTIONS(1006), + [anon_sym_GT_GT_EQ] = ACTIONS(1006), + [anon_sym_AMP_EQ] = ACTIONS(1006), + [anon_sym_CARET_EQ] = ACTIONS(1006), + [anon_sym_PIPE_EQ] = ACTIONS(1006), + [anon_sym_AMP] = ACTIONS(1008), + [anon_sym_PIPE_PIPE] = ACTIONS(1006), + [anon_sym_AMP_AMP] = ACTIONS(1006), + [anon_sym_PIPE] = ACTIONS(1008), + [anon_sym_CARET] = ACTIONS(1008), + [anon_sym_EQ_EQ] = ACTIONS(1006), + [anon_sym_BANG_EQ] = ACTIONS(1006), + [anon_sym_LT] = ACTIONS(1008), + [anon_sym_GT] = ACTIONS(1008), + [anon_sym_LT_EQ] = ACTIONS(1006), + [anon_sym_GT_EQ] = ACTIONS(1006), + [anon_sym_LT_LT] = ACTIONS(1008), + [anon_sym_GT_GT] = ACTIONS(1008), + [anon_sym_PLUS] = ACTIONS(1008), + [anon_sym_DASH] = ACTIONS(1008), + [anon_sym_SLASH] = ACTIONS(186), + [anon_sym_PERCENT] = ACTIONS(186), + [anon_sym_DASH_DASH] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(216), + [anon_sym_DOT] = ACTIONS(218), + [anon_sym_DASH_GT] = ACTIONS(218), + [sym_comment] = ACTIONS(59), }, [233] = { - [anon_sym_COMMA] = ACTIONS(1054), - [anon_sym_RPAREN] = ACTIONS(1054), - [anon_sym_SEMI] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1054), - [anon_sym_LPAREN2] = ACTIONS(1054), - [anon_sym_LBRACK] = ACTIONS(1054), - [anon_sym_EQ] = ACTIONS(1054), - [anon_sym_COLON] = ACTIONS(1054), - [sym_comment] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(1104), + [anon_sym_COMMA] = ACTIONS(1104), + [anon_sym_RPAREN] = ACTIONS(1104), + [anon_sym_RBRACE] = ACTIONS(1104), + [anon_sym_LPAREN2] = ACTIONS(1104), + [anon_sym_STAR] = ACTIONS(1106), + [anon_sym_LBRACK] = ACTIONS(1104), + [anon_sym_RBRACK] = ACTIONS(1104), + [anon_sym_EQ] = ACTIONS(1106), + [anon_sym_COLON] = ACTIONS(1104), + [anon_sym_QMARK] = ACTIONS(1104), + [anon_sym_STAR_EQ] = ACTIONS(1104), + [anon_sym_SLASH_EQ] = ACTIONS(1104), + [anon_sym_PERCENT_EQ] = ACTIONS(1104), + [anon_sym_PLUS_EQ] = ACTIONS(1104), + [anon_sym_DASH_EQ] = ACTIONS(1104), + [anon_sym_LT_LT_EQ] = ACTIONS(1104), + [anon_sym_GT_GT_EQ] = ACTIONS(1104), + [anon_sym_AMP_EQ] = ACTIONS(1104), + [anon_sym_CARET_EQ] = ACTIONS(1104), + [anon_sym_PIPE_EQ] = ACTIONS(1104), + [anon_sym_AMP] = ACTIONS(1106), + [anon_sym_PIPE_PIPE] = ACTIONS(1104), + [anon_sym_AMP_AMP] = ACTIONS(1104), + [anon_sym_PIPE] = ACTIONS(1106), + [anon_sym_CARET] = ACTIONS(1106), + [anon_sym_EQ_EQ] = ACTIONS(1104), + [anon_sym_BANG_EQ] = ACTIONS(1104), + [anon_sym_LT] = ACTIONS(1106), + [anon_sym_GT] = ACTIONS(1106), + [anon_sym_LT_EQ] = ACTIONS(1104), + [anon_sym_GT_EQ] = ACTIONS(1104), + [anon_sym_LT_LT] = ACTIONS(1106), + [anon_sym_GT_GT] = ACTIONS(1106), + [anon_sym_PLUS] = ACTIONS(1106), + [anon_sym_DASH] = ACTIONS(1106), + [anon_sym_SLASH] = ACTIONS(1106), + [anon_sym_PERCENT] = ACTIONS(1106), + [anon_sym_DASH_DASH] = ACTIONS(1104), + [anon_sym_PLUS_PLUS] = ACTIONS(1104), + [anon_sym_DOT] = ACTIONS(1104), + [anon_sym_DASH_GT] = ACTIONS(1104), + [sym_comment] = ACTIONS(59), }, [234] = { - [sym__declarator] = STATE(439), - [sym__abstract_declarator] = STATE(440), - [sym_pointer_declarator] = STATE(439), - [sym_abstract_pointer_declarator] = STATE(440), - [sym_function_declarator] = STATE(439), - [sym_abstract_function_declarator] = STATE(440), - [sym_array_declarator] = STATE(439), - [sym_abstract_array_declarator] = STATE(440), - [sym_parameter_list] = STATE(192), - [anon_sym_COMMA] = ACTIONS(1056), - [anon_sym_RPAREN] = ACTIONS(1056), - [anon_sym_LPAREN2] = ACTIONS(1058), - [anon_sym_STAR] = ACTIONS(1060), - [anon_sym_LBRACK] = ACTIONS(473), - [sym_identifier] = ACTIONS(1062), - [sym_comment] = ACTIONS(37), + [sym_string_literal] = STATE(234), + [aux_sym_concatenated_string_repeat1] = STATE(234), + [anon_sym_LPAREN2] = ACTIONS(1108), + [anon_sym_STAR] = ACTIONS(1110), + [anon_sym_LBRACK] = ACTIONS(1108), + [anon_sym_EQ] = ACTIONS(1110), + [anon_sym_QMARK] = ACTIONS(1108), + [anon_sym_STAR_EQ] = ACTIONS(1108), + [anon_sym_SLASH_EQ] = ACTIONS(1108), + [anon_sym_PERCENT_EQ] = ACTIONS(1108), + [anon_sym_PLUS_EQ] = ACTIONS(1108), + [anon_sym_DASH_EQ] = ACTIONS(1108), + [anon_sym_LT_LT_EQ] = ACTIONS(1108), + [anon_sym_GT_GT_EQ] = ACTIONS(1108), + [anon_sym_AMP_EQ] = ACTIONS(1108), + [anon_sym_CARET_EQ] = ACTIONS(1108), + [anon_sym_PIPE_EQ] = ACTIONS(1108), + [anon_sym_AMP] = ACTIONS(1110), + [anon_sym_PIPE_PIPE] = ACTIONS(1108), + [anon_sym_AMP_AMP] = ACTIONS(1108), + [anon_sym_PIPE] = ACTIONS(1110), + [anon_sym_CARET] = ACTIONS(1110), + [anon_sym_EQ_EQ] = ACTIONS(1108), + [anon_sym_BANG_EQ] = ACTIONS(1108), + [anon_sym_LT] = ACTIONS(1110), + [anon_sym_GT] = ACTIONS(1110), + [anon_sym_LT_EQ] = ACTIONS(1108), + [anon_sym_GT_EQ] = ACTIONS(1108), + [anon_sym_LT_LT] = ACTIONS(1110), + [anon_sym_GT_GT] = ACTIONS(1110), + [anon_sym_PLUS] = ACTIONS(1110), + [anon_sym_DASH] = ACTIONS(1110), + [anon_sym_SLASH] = ACTIONS(1110), + [anon_sym_PERCENT] = ACTIONS(1110), + [anon_sym_DASH_DASH] = ACTIONS(1108), + [anon_sym_PLUS_PLUS] = ACTIONS(1108), + [anon_sym_DOT] = ACTIONS(1108), + [anon_sym_DASH_GT] = ACTIONS(1108), + [anon_sym_DQUOTE] = ACTIONS(1112), + [sym_comment] = ACTIONS(59), }, [235] = { - [sym_storage_class_specifier] = STATE(441), - [sym_type_qualifier] = STATE(441), - [aux_sym__declaration_specifiers_repeat1] = STATE(441), - [anon_sym_COMMA] = ACTIONS(94), - [anon_sym_RPAREN] = ACTIONS(94), - [anon_sym_extern] = ACTIONS(21), - [anon_sym_LPAREN2] = ACTIONS(94), - [anon_sym_STAR] = ACTIONS(94), - [anon_sym_LBRACK] = ACTIONS(94), - [anon_sym_static] = ACTIONS(21), - [anon_sym_auto] = ACTIONS(21), - [anon_sym_register] = ACTIONS(21), - [anon_sym_inline] = ACTIONS(21), - [anon_sym_const] = ACTIONS(23), - [anon_sym_restrict] = ACTIONS(23), - [anon_sym_volatile] = ACTIONS(23), - [anon_sym__Atomic] = ACTIONS(23), - [sym_identifier] = ACTIONS(96), - [sym_comment] = ACTIONS(37), + [sym_storage_class_specifier] = STATE(203), + [sym_type_qualifier] = STATE(203), + [aux_sym__declaration_specifiers_repeat1] = STATE(203), + [anon_sym_SEMI] = ACTIONS(1115), + [anon_sym_extern] = ACTIONS(25), + [anon_sym_LPAREN2] = ACTIONS(1115), + [anon_sym_STAR] = ACTIONS(1115), + [anon_sym_static] = ACTIONS(25), + [anon_sym_auto] = ACTIONS(25), + [anon_sym_register] = ACTIONS(25), + [anon_sym_inline] = ACTIONS(25), + [anon_sym_const] = ACTIONS(27), + [anon_sym_restrict] = ACTIONS(27), + [anon_sym_volatile] = ACTIONS(27), + [anon_sym__Atomic] = ACTIONS(27), + [sym_identifier] = ACTIONS(1117), + [sym_comment] = ACTIONS(59), }, [236] = { - [sym_storage_class_specifier] = STATE(49), - [sym_type_qualifier] = STATE(49), - [sym__type_specifier] = STATE(442), - [sym_sized_type_specifier] = STATE(442), - [sym_enum_specifier] = STATE(442), - [sym_struct_specifier] = STATE(442), - [sym_union_specifier] = STATE(442), - [sym_macro_type_specifier] = STATE(442), - [aux_sym__declaration_specifiers_repeat1] = STATE(49), - [aux_sym_sized_type_specifier_repeat1] = STATE(237), - [anon_sym_extern] = ACTIONS(21), - [anon_sym_static] = ACTIONS(21), - [anon_sym_auto] = ACTIONS(21), - [anon_sym_register] = ACTIONS(21), - [anon_sym_inline] = ACTIONS(21), - [anon_sym_const] = ACTIONS(23), - [anon_sym_restrict] = ACTIONS(23), - [anon_sym_volatile] = ACTIONS(23), - [anon_sym__Atomic] = ACTIONS(23), - [anon_sym_unsigned] = ACTIONS(555), - [anon_sym_long] = ACTIONS(555), - [anon_sym_short] = ACTIONS(555), - [sym_primitive_type] = ACTIONS(1064), - [anon_sym_enum] = ACTIONS(29), - [anon_sym_struct] = ACTIONS(31), - [anon_sym_union] = ACTIONS(33), - [sym_identifier] = ACTIONS(35), - [sym_comment] = ACTIONS(37), + [ts_builtin_sym_end] = ACTIONS(903), + [anon_sym_SEMI] = ACTIONS(903), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(905), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(905), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(905), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(905), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(905), + [sym_preproc_directive] = ACTIONS(905), + [anon_sym_typedef] = ACTIONS(905), + [anon_sym_extern] = ACTIONS(905), + [anon_sym_LBRACE] = ACTIONS(903), + [anon_sym_RBRACE] = ACTIONS(903), + [anon_sym_LPAREN2] = ACTIONS(903), + [anon_sym_STAR] = ACTIONS(903), + [anon_sym_static] = ACTIONS(905), + [anon_sym_auto] = ACTIONS(905), + [anon_sym_register] = ACTIONS(905), + [anon_sym_inline] = ACTIONS(905), + [anon_sym_const] = ACTIONS(905), + [anon_sym_restrict] = ACTIONS(905), + [anon_sym_volatile] = ACTIONS(905), + [anon_sym__Atomic] = ACTIONS(905), + [anon_sym_unsigned] = ACTIONS(905), + [anon_sym_long] = ACTIONS(905), + [anon_sym_short] = ACTIONS(905), + [sym_primitive_type] = ACTIONS(905), + [anon_sym_enum] = ACTIONS(905), + [anon_sym_struct] = ACTIONS(905), + [anon_sym_union] = ACTIONS(905), + [anon_sym_if] = ACTIONS(905), + [anon_sym_switch] = ACTIONS(905), + [anon_sym_case] = ACTIONS(905), + [anon_sym_default] = ACTIONS(905), + [anon_sym_while] = ACTIONS(905), + [anon_sym_do] = ACTIONS(905), + [anon_sym_for] = ACTIONS(905), + [anon_sym_return] = ACTIONS(905), + [anon_sym_break] = ACTIONS(905), + [anon_sym_continue] = ACTIONS(905), + [anon_sym_goto] = ACTIONS(905), + [anon_sym_AMP] = ACTIONS(903), + [anon_sym_BANG] = ACTIONS(903), + [anon_sym_TILDE] = ACTIONS(903), + [anon_sym_PLUS] = ACTIONS(905), + [anon_sym_DASH] = ACTIONS(905), + [anon_sym_DASH_DASH] = ACTIONS(903), + [anon_sym_PLUS_PLUS] = ACTIONS(903), + [anon_sym_sizeof] = ACTIONS(905), + [sym_number_literal] = ACTIONS(903), + [anon_sym_SQUOTE] = ACTIONS(903), + [anon_sym_DQUOTE] = ACTIONS(903), + [sym_true] = ACTIONS(905), + [sym_false] = ACTIONS(905), + [sym_null] = ACTIONS(905), + [sym_identifier] = ACTIONS(905), + [sym_comment] = ACTIONS(59), }, [237] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(443), - [anon_sym_COMMA] = ACTIONS(102), - [anon_sym_RPAREN] = ACTIONS(102), - [anon_sym_extern] = ACTIONS(104), - [anon_sym_LPAREN2] = ACTIONS(102), - [anon_sym_STAR] = ACTIONS(102), - [anon_sym_LBRACK] = ACTIONS(102), - [anon_sym_static] = ACTIONS(104), - [anon_sym_auto] = ACTIONS(104), - [anon_sym_register] = ACTIONS(104), - [anon_sym_inline] = ACTIONS(104), - [anon_sym_const] = ACTIONS(104), - [anon_sym_restrict] = ACTIONS(104), - [anon_sym_volatile] = ACTIONS(104), - [anon_sym__Atomic] = ACTIONS(104), - [anon_sym_unsigned] = ACTIONS(1066), - [anon_sym_long] = ACTIONS(1066), - [anon_sym_short] = ACTIONS(1066), - [sym_primitive_type] = ACTIONS(108), - [sym_identifier] = ACTIONS(110), - [sym_comment] = ACTIONS(37), + [aux_sym_preproc_params_repeat1] = STATE(422), + [anon_sym_COMMA] = ACTIONS(1119), + [anon_sym_RPAREN] = ACTIONS(1121), + [sym_comment] = ACTIONS(59), }, [238] = { - [sym_type_qualifier] = STATE(106), - [sym__type_specifier] = STATE(104), - [sym_sized_type_specifier] = STATE(104), - [sym_enum_specifier] = STATE(104), - [sym_struct_specifier] = STATE(104), - [sym_union_specifier] = STATE(104), - [sym__expression] = STATE(371), - [sym_comma_expression] = STATE(372), - [sym_conditional_expression] = STATE(371), - [sym_assignment_expression] = STATE(371), - [sym_pointer_expression] = STATE(371), - [sym_logical_expression] = STATE(371), - [sym_bitwise_expression] = STATE(371), - [sym_equality_expression] = STATE(371), - [sym_relational_expression] = STATE(371), - [sym_shift_expression] = STATE(371), - [sym_math_expression] = STATE(371), - [sym_cast_expression] = STATE(371), - [sym_type_descriptor] = STATE(444), - [sym_sizeof_expression] = STATE(371), - [sym_subscript_expression] = STATE(371), - [sym_call_expression] = STATE(371), - [sym_field_expression] = STATE(371), - [sym_compound_literal_expression] = STATE(371), - [sym_parenthesized_expression] = STATE(371), - [sym_char_literal] = STATE(371), - [sym_concatenated_string] = STATE(371), - [sym_string_literal] = STATE(374), - [sym_macro_type_specifier] = STATE(104), - [aux_sym_type_definition_repeat1] = STATE(106), - [aux_sym_sized_type_specifier_repeat1] = STATE(107), - [anon_sym_LPAREN2] = ACTIONS(892), - [anon_sym_STAR] = ACTIONS(894), - [anon_sym_const] = ACTIONS(23), - [anon_sym_restrict] = ACTIONS(23), - [anon_sym_volatile] = ACTIONS(23), - [anon_sym__Atomic] = ACTIONS(23), - [anon_sym_unsigned] = ACTIONS(211), - [anon_sym_long] = ACTIONS(211), - [anon_sym_short] = ACTIONS(211), - [sym_primitive_type] = ACTIONS(213), - [anon_sym_enum] = ACTIONS(29), - [anon_sym_struct] = ACTIONS(31), - [anon_sym_union] = ACTIONS(33), - [anon_sym_AMP] = ACTIONS(894), - [anon_sym_BANG] = ACTIONS(896), - [anon_sym_TILDE] = ACTIONS(898), - [anon_sym_PLUS] = ACTIONS(900), - [anon_sym_DASH] = ACTIONS(900), - [anon_sym_DASH_DASH] = ACTIONS(902), - [anon_sym_PLUS_PLUS] = ACTIONS(902), - [anon_sym_sizeof] = ACTIONS(904), - [sym_number_literal] = ACTIONS(906), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(908), - [sym_false] = ACTIONS(908), - [sym_null] = ACTIONS(908), - [sym_identifier] = ACTIONS(910), - [sym_comment] = ACTIONS(37), + [anon_sym_LF] = ACTIONS(1123), + [sym_preproc_arg] = ACTIONS(1123), + [sym_comment] = ACTIONS(69), }, [239] = { - [sym__expression] = STATE(375), - [sym_conditional_expression] = STATE(375), - [sym_assignment_expression] = STATE(375), - [sym_pointer_expression] = STATE(375), - [sym_logical_expression] = STATE(375), - [sym_bitwise_expression] = STATE(375), - [sym_equality_expression] = STATE(375), - [sym_relational_expression] = STATE(375), - [sym_shift_expression] = STATE(375), - [sym_math_expression] = STATE(375), - [sym_cast_expression] = STATE(375), - [sym_sizeof_expression] = STATE(375), - [sym_subscript_expression] = STATE(375), - [sym_call_expression] = STATE(375), - [sym_field_expression] = STATE(375), - [sym_compound_literal_expression] = STATE(375), - [sym_parenthesized_expression] = STATE(375), - [sym_char_literal] = STATE(375), - [sym_concatenated_string] = STATE(375), - [sym_string_literal] = STATE(249), - [anon_sym_LPAREN2] = ACTIONS(559), - [anon_sym_STAR] = ACTIONS(561), - [anon_sym_AMP] = ACTIONS(561), - [anon_sym_BANG] = ACTIONS(569), - [anon_sym_TILDE] = ACTIONS(571), - [anon_sym_PLUS] = ACTIONS(573), - [anon_sym_DASH] = ACTIONS(573), - [anon_sym_DASH_DASH] = ACTIONS(575), - [anon_sym_PLUS_PLUS] = ACTIONS(575), - [anon_sym_sizeof] = ACTIONS(577), - [sym_number_literal] = ACTIONS(912), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(914), - [sym_false] = ACTIONS(914), - [sym_null] = ACTIONS(914), - [sym_identifier] = ACTIONS(914), - [sym_comment] = ACTIONS(37), + [ts_builtin_sym_end] = ACTIONS(1125), + [anon_sym_SEMI] = ACTIONS(1125), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1127), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1127), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1127), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1127), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1127), + [sym_preproc_directive] = ACTIONS(1127), + [anon_sym_typedef] = ACTIONS(1127), + [anon_sym_extern] = ACTIONS(1127), + [anon_sym_LBRACE] = ACTIONS(1125), + [anon_sym_RBRACE] = ACTIONS(1125), + [anon_sym_LPAREN2] = ACTIONS(1125), + [anon_sym_STAR] = ACTIONS(1125), + [anon_sym_static] = ACTIONS(1127), + [anon_sym_auto] = ACTIONS(1127), + [anon_sym_register] = ACTIONS(1127), + [anon_sym_inline] = ACTIONS(1127), + [anon_sym_const] = ACTIONS(1127), + [anon_sym_restrict] = ACTIONS(1127), + [anon_sym_volatile] = ACTIONS(1127), + [anon_sym__Atomic] = ACTIONS(1127), + [anon_sym_unsigned] = ACTIONS(1127), + [anon_sym_long] = ACTIONS(1127), + [anon_sym_short] = ACTIONS(1127), + [sym_primitive_type] = ACTIONS(1127), + [anon_sym_enum] = ACTIONS(1127), + [anon_sym_struct] = ACTIONS(1127), + [anon_sym_union] = ACTIONS(1127), + [anon_sym_if] = ACTIONS(1127), + [anon_sym_switch] = ACTIONS(1127), + [anon_sym_case] = ACTIONS(1127), + [anon_sym_default] = ACTIONS(1127), + [anon_sym_while] = ACTIONS(1127), + [anon_sym_do] = ACTIONS(1127), + [anon_sym_for] = ACTIONS(1127), + [anon_sym_return] = ACTIONS(1127), + [anon_sym_break] = ACTIONS(1127), + [anon_sym_continue] = ACTIONS(1127), + [anon_sym_goto] = ACTIONS(1127), + [anon_sym_AMP] = ACTIONS(1125), + [anon_sym_BANG] = ACTIONS(1125), + [anon_sym_TILDE] = ACTIONS(1125), + [anon_sym_PLUS] = ACTIONS(1127), + [anon_sym_DASH] = ACTIONS(1127), + [anon_sym_DASH_DASH] = ACTIONS(1125), + [anon_sym_PLUS_PLUS] = ACTIONS(1125), + [anon_sym_sizeof] = ACTIONS(1127), + [sym_number_literal] = ACTIONS(1125), + [anon_sym_SQUOTE] = ACTIONS(1125), + [anon_sym_DQUOTE] = ACTIONS(1125), + [sym_true] = ACTIONS(1127), + [sym_false] = ACTIONS(1127), + [sym_null] = ACTIONS(1127), + [sym_identifier] = ACTIONS(1127), + [sym_comment] = ACTIONS(59), }, [240] = { - [anon_sym_COMMA] = ACTIONS(1068), - [anon_sym_RPAREN] = ACTIONS(1068), - [anon_sym_SEMI] = ACTIONS(1068), - [anon_sym_LBRACE] = ACTIONS(1068), - [anon_sym_LPAREN2] = ACTIONS(1068), - [anon_sym_LBRACK] = ACTIONS(1068), - [anon_sym_EQ] = ACTIONS(1068), - [sym_comment] = ACTIONS(37), + [ts_builtin_sym_end] = ACTIONS(1129), + [anon_sym_SEMI] = ACTIONS(1129), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1131), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1131), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1131), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1131), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1131), + [sym_preproc_directive] = ACTIONS(1131), + [anon_sym_typedef] = ACTIONS(1131), + [anon_sym_extern] = ACTIONS(1131), + [anon_sym_LBRACE] = ACTIONS(1129), + [anon_sym_RBRACE] = ACTIONS(1129), + [anon_sym_LPAREN2] = ACTIONS(1129), + [anon_sym_STAR] = ACTIONS(1129), + [anon_sym_static] = ACTIONS(1131), + [anon_sym_auto] = ACTIONS(1131), + [anon_sym_register] = ACTIONS(1131), + [anon_sym_inline] = ACTIONS(1131), + [anon_sym_const] = ACTIONS(1131), + [anon_sym_restrict] = ACTIONS(1131), + [anon_sym_volatile] = ACTIONS(1131), + [anon_sym__Atomic] = ACTIONS(1131), + [anon_sym_unsigned] = ACTIONS(1131), + [anon_sym_long] = ACTIONS(1131), + [anon_sym_short] = ACTIONS(1131), + [sym_primitive_type] = ACTIONS(1131), + [anon_sym_enum] = ACTIONS(1131), + [anon_sym_struct] = ACTIONS(1131), + [anon_sym_union] = ACTIONS(1131), + [anon_sym_if] = ACTIONS(1131), + [anon_sym_switch] = ACTIONS(1131), + [anon_sym_case] = ACTIONS(1131), + [anon_sym_default] = ACTIONS(1131), + [anon_sym_while] = ACTIONS(1131), + [anon_sym_do] = ACTIONS(1131), + [anon_sym_for] = ACTIONS(1131), + [anon_sym_return] = ACTIONS(1131), + [anon_sym_break] = ACTIONS(1131), + [anon_sym_continue] = ACTIONS(1131), + [anon_sym_goto] = ACTIONS(1131), + [anon_sym_AMP] = ACTIONS(1129), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_TILDE] = ACTIONS(1129), + [anon_sym_PLUS] = ACTIONS(1131), + [anon_sym_DASH] = ACTIONS(1131), + [anon_sym_DASH_DASH] = ACTIONS(1129), + [anon_sym_PLUS_PLUS] = ACTIONS(1129), + [anon_sym_sizeof] = ACTIONS(1131), + [sym_number_literal] = ACTIONS(1129), + [anon_sym_SQUOTE] = ACTIONS(1129), + [anon_sym_DQUOTE] = ACTIONS(1129), + [sym_true] = ACTIONS(1131), + [sym_false] = ACTIONS(1131), + [sym_null] = ACTIONS(1131), + [sym_identifier] = ACTIONS(1131), + [sym_comment] = ACTIONS(59), }, [241] = { - [sym__expression] = STATE(404), - [sym_conditional_expression] = STATE(404), - [sym_assignment_expression] = STATE(404), - [sym_pointer_expression] = STATE(404), - [sym_logical_expression] = STATE(404), - [sym_bitwise_expression] = STATE(404), - [sym_equality_expression] = STATE(404), - [sym_relational_expression] = STATE(404), - [sym_shift_expression] = STATE(404), - [sym_math_expression] = STATE(404), - [sym_cast_expression] = STATE(404), - [sym_sizeof_expression] = STATE(404), - [sym_subscript_expression] = STATE(404), - [sym_call_expression] = STATE(404), - [sym_field_expression] = STATE(404), - [sym_compound_literal_expression] = STATE(404), - [sym_parenthesized_expression] = STATE(404), - [sym_char_literal] = STATE(404), - [sym_concatenated_string] = STATE(404), - [sym_string_literal] = STATE(249), - [anon_sym_LPAREN2] = ACTIONS(559), - [anon_sym_STAR] = ACTIONS(561), - [anon_sym_AMP] = ACTIONS(561), - [anon_sym_BANG] = ACTIONS(569), - [anon_sym_TILDE] = ACTIONS(571), - [anon_sym_PLUS] = ACTIONS(573), - [anon_sym_DASH] = ACTIONS(573), - [anon_sym_DASH_DASH] = ACTIONS(575), - [anon_sym_PLUS_PLUS] = ACTIONS(575), - [anon_sym_sizeof] = ACTIONS(577), - [sym_number_literal] = ACTIONS(968), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(970), - [sym_false] = ACTIONS(970), - [sym_null] = ACTIONS(970), - [sym_identifier] = ACTIONS(970), - [sym_comment] = ACTIONS(37), + [anon_sym_LF] = ACTIONS(1133), + [sym_comment] = ACTIONS(69), }, [242] = { - [sym__expression] = STATE(405), - [sym_conditional_expression] = STATE(405), - [sym_assignment_expression] = STATE(405), - [sym_pointer_expression] = STATE(405), - [sym_logical_expression] = STATE(405), - [sym_bitwise_expression] = STATE(405), - [sym_equality_expression] = STATE(405), - [sym_relational_expression] = STATE(405), - [sym_shift_expression] = STATE(405), - [sym_math_expression] = STATE(405), - [sym_cast_expression] = STATE(405), - [sym_sizeof_expression] = STATE(405), - [sym_subscript_expression] = STATE(405), - [sym_call_expression] = STATE(405), - [sym_field_expression] = STATE(405), - [sym_compound_literal_expression] = STATE(405), - [sym_parenthesized_expression] = STATE(405), - [sym_char_literal] = STATE(405), - [sym_concatenated_string] = STATE(405), - [sym_string_literal] = STATE(249), - [anon_sym_LPAREN2] = ACTIONS(559), - [anon_sym_STAR] = ACTIONS(561), - [anon_sym_AMP] = ACTIONS(561), - [anon_sym_BANG] = ACTIONS(569), - [anon_sym_TILDE] = ACTIONS(571), - [anon_sym_PLUS] = ACTIONS(573), - [anon_sym_DASH] = ACTIONS(573), - [anon_sym_DASH_DASH] = ACTIONS(575), - [anon_sym_PLUS_PLUS] = ACTIONS(575), - [anon_sym_sizeof] = ACTIONS(577), - [sym_number_literal] = ACTIONS(972), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(974), - [sym_false] = ACTIONS(974), - [sym_null] = ACTIONS(974), - [sym_identifier] = ACTIONS(974), - [sym_comment] = ACTIONS(37), + [aux_sym_string_literal_repeat1] = STATE(425), + [anon_sym_DQUOTE] = ACTIONS(1135), + [aux_sym_SLASH_LBRACK_CARET_BSLASH_BSLASH_DQUOTE_BSLASHn_RBRACK_SLASH] = ACTIONS(1137), + [sym_escape_sequence] = ACTIONS(1137), + [sym_comment] = ACTIONS(69), }, [243] = { - [sym__expression] = STATE(406), - [sym_conditional_expression] = STATE(406), - [sym_assignment_expression] = STATE(406), - [sym_pointer_expression] = STATE(406), - [sym_logical_expression] = STATE(406), - [sym_bitwise_expression] = STATE(406), - [sym_equality_expression] = STATE(406), - [sym_relational_expression] = STATE(406), - [sym_shift_expression] = STATE(406), - [sym_math_expression] = STATE(406), - [sym_cast_expression] = STATE(406), - [sym_sizeof_expression] = STATE(406), - [sym_subscript_expression] = STATE(406), - [sym_call_expression] = STATE(406), - [sym_field_expression] = STATE(406), - [sym_compound_literal_expression] = STATE(406), - [sym_parenthesized_expression] = STATE(406), - [sym_char_literal] = STATE(406), - [sym_concatenated_string] = STATE(406), - [sym_string_literal] = STATE(249), - [anon_sym_LPAREN2] = ACTIONS(559), - [anon_sym_STAR] = ACTIONS(561), - [anon_sym_AMP] = ACTIONS(561), - [anon_sym_BANG] = ACTIONS(569), - [anon_sym_TILDE] = ACTIONS(571), - [anon_sym_PLUS] = ACTIONS(573), - [anon_sym_DASH] = ACTIONS(573), - [anon_sym_DASH_DASH] = ACTIONS(575), - [anon_sym_PLUS_PLUS] = ACTIONS(575), - [anon_sym_sizeof] = ACTIONS(577), - [sym_number_literal] = ACTIONS(976), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(978), - [sym_false] = ACTIONS(978), - [sym_null] = ACTIONS(978), - [sym_identifier] = ACTIONS(978), - [sym_comment] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(241), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(243), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(243), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(243), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(243), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(243), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(243), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(243), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(243), + [sym_preproc_directive] = ACTIONS(243), + [anon_sym_typedef] = ACTIONS(243), + [anon_sym_extern] = ACTIONS(243), + [anon_sym_LBRACE] = ACTIONS(241), + [anon_sym_LPAREN2] = ACTIONS(241), + [anon_sym_STAR] = ACTIONS(241), + [anon_sym_static] = ACTIONS(243), + [anon_sym_auto] = ACTIONS(243), + [anon_sym_register] = ACTIONS(243), + [anon_sym_inline] = ACTIONS(243), + [anon_sym_const] = ACTIONS(243), + [anon_sym_restrict] = ACTIONS(243), + [anon_sym_volatile] = ACTIONS(243), + [anon_sym__Atomic] = ACTIONS(243), + [anon_sym_unsigned] = ACTIONS(243), + [anon_sym_long] = ACTIONS(243), + [anon_sym_short] = ACTIONS(243), + [sym_primitive_type] = ACTIONS(243), + [anon_sym_enum] = ACTIONS(243), + [anon_sym_struct] = ACTIONS(243), + [anon_sym_union] = ACTIONS(243), + [anon_sym_if] = ACTIONS(243), + [anon_sym_switch] = ACTIONS(243), + [anon_sym_case] = ACTIONS(243), + [anon_sym_default] = ACTIONS(243), + [anon_sym_while] = ACTIONS(243), + [anon_sym_do] = ACTIONS(243), + [anon_sym_for] = ACTIONS(243), + [anon_sym_return] = ACTIONS(243), + [anon_sym_break] = ACTIONS(243), + [anon_sym_continue] = ACTIONS(243), + [anon_sym_goto] = ACTIONS(243), + [anon_sym_AMP] = ACTIONS(241), + [anon_sym_BANG] = ACTIONS(241), + [anon_sym_TILDE] = ACTIONS(241), + [anon_sym_PLUS] = ACTIONS(243), + [anon_sym_DASH] = ACTIONS(243), + [anon_sym_DASH_DASH] = ACTIONS(241), + [anon_sym_PLUS_PLUS] = ACTIONS(241), + [anon_sym_sizeof] = ACTIONS(243), + [sym_number_literal] = ACTIONS(241), + [anon_sym_SQUOTE] = ACTIONS(241), + [anon_sym_DQUOTE] = ACTIONS(241), + [sym_true] = ACTIONS(243), + [sym_false] = ACTIONS(243), + [sym_null] = ACTIONS(243), + [sym_identifier] = ACTIONS(243), + [sym_comment] = ACTIONS(59), }, [244] = { - [sym__expression] = STATE(446), - [sym_conditional_expression] = STATE(446), - [sym_assignment_expression] = STATE(446), - [sym_pointer_expression] = STATE(446), - [sym_logical_expression] = STATE(446), - [sym_bitwise_expression] = STATE(446), - [sym_equality_expression] = STATE(446), - [sym_relational_expression] = STATE(446), - [sym_shift_expression] = STATE(446), - [sym_math_expression] = STATE(446), - [sym_cast_expression] = STATE(446), - [sym_sizeof_expression] = STATE(446), - [sym_subscript_expression] = STATE(446), - [sym_call_expression] = STATE(446), - [sym_field_expression] = STATE(446), - [sym_compound_literal_expression] = STATE(446), - [sym_parenthesized_expression] = STATE(446), - [sym_char_literal] = STATE(446), - [sym_concatenated_string] = STATE(446), - [sym_string_literal] = STATE(249), - [anon_sym_LPAREN2] = ACTIONS(1070), - [anon_sym_STAR] = ACTIONS(561), - [anon_sym_AMP] = ACTIONS(561), - [anon_sym_BANG] = ACTIONS(569), - [anon_sym_TILDE] = ACTIONS(571), - [anon_sym_PLUS] = ACTIONS(573), - [anon_sym_DASH] = ACTIONS(573), - [anon_sym_DASH_DASH] = ACTIONS(575), - [anon_sym_PLUS_PLUS] = ACTIONS(575), - [anon_sym_sizeof] = ACTIONS(577), - [sym_number_literal] = ACTIONS(1072), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(1074), - [sym_false] = ACTIONS(1074), - [sym_null] = ACTIONS(1074), - [sym_identifier] = ACTIONS(1074), - [sym_comment] = ACTIONS(37), + [sym_preproc_params] = STATE(428), + [anon_sym_LF] = ACTIONS(1139), + [anon_sym_LPAREN] = ACTIONS(247), + [sym_preproc_arg] = ACTIONS(1141), + [sym_comment] = ACTIONS(69), }, [245] = { - [anon_sym_extern] = ACTIONS(79), - [anon_sym_LPAREN2] = ACTIONS(995), - [anon_sym_STAR] = ACTIONS(999), - [anon_sym_LBRACK] = ACTIONS(990), - [anon_sym_RBRACK] = ACTIONS(992), - [anon_sym_EQ] = ACTIONS(1002), - [anon_sym_static] = ACTIONS(79), - [anon_sym_auto] = ACTIONS(79), - [anon_sym_register] = ACTIONS(79), - [anon_sym_inline] = ACTIONS(79), - [anon_sym_const] = ACTIONS(79), - [anon_sym_restrict] = ACTIONS(79), - [anon_sym_volatile] = ACTIONS(79), - [anon_sym__Atomic] = ACTIONS(79), - [anon_sym_QMARK] = ACTIONS(990), - [anon_sym_STAR_EQ] = ACTIONS(990), - [anon_sym_SLASH_EQ] = ACTIONS(990), - [anon_sym_PERCENT_EQ] = ACTIONS(990), - [anon_sym_PLUS_EQ] = ACTIONS(990), - [anon_sym_DASH_EQ] = ACTIONS(990), - [anon_sym_LT_LT_EQ] = ACTIONS(990), - [anon_sym_GT_GT_EQ] = ACTIONS(990), - [anon_sym_AMP_EQ] = ACTIONS(990), - [anon_sym_CARET_EQ] = ACTIONS(990), - [anon_sym_PIPE_EQ] = ACTIONS(990), - [anon_sym_AMP] = ACTIONS(999), - [anon_sym_PIPE_PIPE] = ACTIONS(990), - [anon_sym_AMP_AMP] = ACTIONS(990), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_PIPE] = ACTIONS(1002), - [anon_sym_CARET] = ACTIONS(1002), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_EQ_EQ] = ACTIONS(990), - [anon_sym_BANG_EQ] = ACTIONS(990), - [anon_sym_LT] = ACTIONS(1002), - [anon_sym_GT] = ACTIONS(1002), - [anon_sym_LT_EQ] = ACTIONS(990), - [anon_sym_GT_EQ] = ACTIONS(990), - [anon_sym_LT_LT] = ACTIONS(1002), - [anon_sym_GT_GT] = ACTIONS(1002), - [anon_sym_PLUS] = ACTIONS(999), - [anon_sym_DASH] = ACTIONS(999), - [anon_sym_SLASH] = ACTIONS(1002), - [anon_sym_PERCENT] = ACTIONS(1002), - [anon_sym_DASH_DASH] = ACTIONS(992), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_DOT] = ACTIONS(990), - [anon_sym_DASH_GT] = ACTIONS(990), - [sym_number_literal] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(77), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_null] = ACTIONS(79), - [sym_identifier] = ACTIONS(79), - [sym_comment] = ACTIONS(37), + [sym_preproc_include] = STATE(431), + [sym_preproc_def] = STATE(431), + [sym_preproc_function_def] = STATE(431), + [sym_preproc_call] = STATE(431), + [sym_preproc_if] = STATE(431), + [sym_preproc_ifdef] = STATE(431), + [sym_preproc_else] = STATE(430), + [sym_preproc_elif] = STATE(430), + [sym_function_definition] = STATE(431), + [sym_declaration] = STATE(431), + [sym_type_definition] = STATE(431), + [sym__declaration_specifiers] = STATE(124), + [sym_linkage_specification] = STATE(431), + [sym_storage_class_specifier] = STATE(30), + [sym_type_qualifier] = STATE(30), + [sym__type_specifier] = STATE(25), + [sym_sized_type_specifier] = STATE(25), + [sym_enum_specifier] = STATE(25), + [sym_struct_specifier] = STATE(25), + [sym_union_specifier] = STATE(25), + [sym__expression] = STATE(26), + [sym_conditional_expression] = STATE(26), + [sym_assignment_expression] = STATE(26), + [sym_pointer_expression] = STATE(26), + [sym_logical_expression] = STATE(26), + [sym_bitwise_expression] = STATE(26), + [sym_equality_expression] = STATE(26), + [sym_relational_expression] = STATE(26), + [sym_shift_expression] = STATE(26), + [sym_math_expression] = STATE(26), + [sym_cast_expression] = STATE(26), + [sym_sizeof_expression] = STATE(26), + [sym_subscript_expression] = STATE(26), + [sym_call_expression] = STATE(125), + [sym_field_expression] = STATE(26), + [sym_compound_literal_expression] = STATE(26), + [sym_parenthesized_expression] = STATE(26), + [sym_char_literal] = STATE(26), + [sym_concatenated_string] = STATE(26), + [sym_string_literal] = STATE(28), + [sym__empty_declaration] = STATE(431), + [sym_macro_type_specifier] = STATE(25), + [aux_sym_translation_unit_repeat1] = STATE(431), + [aux_sym__declaration_specifiers_repeat1] = STATE(30), + [aux_sym_sized_type_specifier_repeat1] = STATE(31), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(251), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(253), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(255), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1143), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(259), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(259), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(261), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(263), + [sym_preproc_directive] = ACTIONS(265), + [anon_sym_typedef] = ACTIONS(267), + [anon_sym_extern] = ACTIONS(269), + [anon_sym_LPAREN2] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_static] = ACTIONS(25), + [anon_sym_auto] = ACTIONS(25), + [anon_sym_register] = ACTIONS(25), + [anon_sym_inline] = ACTIONS(25), + [anon_sym_const] = ACTIONS(27), + [anon_sym_restrict] = ACTIONS(27), + [anon_sym_volatile] = ACTIONS(27), + [anon_sym__Atomic] = ACTIONS(27), + [anon_sym_unsigned] = ACTIONS(29), + [anon_sym_long] = ACTIONS(29), + [anon_sym_short] = ACTIONS(29), + [sym_primitive_type] = ACTIONS(31), + [anon_sym_enum] = ACTIONS(33), + [anon_sym_struct] = ACTIONS(35), + [anon_sym_union] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(41), + [anon_sym_PLUS] = ACTIONS(43), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_DASH_DASH] = ACTIONS(45), + [anon_sym_PLUS_PLUS] = ACTIONS(45), + [anon_sym_sizeof] = ACTIONS(47), + [sym_number_literal] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(55), + [sym_false] = ACTIONS(55), + [sym_null] = ACTIONS(55), + [sym_identifier] = ACTIONS(57), + [sym_comment] = ACTIONS(59), }, [246] = { - [sym__expression] = STATE(448), - [sym_conditional_expression] = STATE(448), - [sym_assignment_expression] = STATE(448), - [sym_pointer_expression] = STATE(448), - [sym_logical_expression] = STATE(448), - [sym_bitwise_expression] = STATE(448), - [sym_equality_expression] = STATE(448), - [sym_relational_expression] = STATE(448), - [sym_shift_expression] = STATE(448), - [sym_math_expression] = STATE(448), - [sym_cast_expression] = STATE(448), - [sym_sizeof_expression] = STATE(448), - [sym_subscript_expression] = STATE(448), - [sym_call_expression] = STATE(448), - [sym_field_expression] = STATE(448), - [sym_compound_literal_expression] = STATE(448), - [sym_parenthesized_expression] = STATE(448), - [sym_char_literal] = STATE(448), - [sym_concatenated_string] = STATE(448), - [sym_string_literal] = STATE(249), - [anon_sym_LPAREN2] = ACTIONS(559), - [anon_sym_STAR] = ACTIONS(561), - [anon_sym_RBRACK] = ACTIONS(1076), - [anon_sym_AMP] = ACTIONS(561), - [anon_sym_BANG] = ACTIONS(569), - [anon_sym_TILDE] = ACTIONS(571), - [anon_sym_PLUS] = ACTIONS(573), - [anon_sym_DASH] = ACTIONS(573), - [anon_sym_DASH_DASH] = ACTIONS(575), - [anon_sym_PLUS_PLUS] = ACTIONS(575), - [anon_sym_sizeof] = ACTIONS(577), - [sym_number_literal] = ACTIONS(1078), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(1080), - [sym_false] = ACTIONS(1080), - [sym_null] = ACTIONS(1080), - [sym_identifier] = ACTIONS(1080), - [sym_comment] = ACTIONS(37), + [sym_preproc_include] = STATE(434), + [sym_preproc_def] = STATE(434), + [sym_preproc_function_def] = STATE(434), + [sym_preproc_call] = STATE(434), + [sym_preproc_if] = STATE(434), + [sym_preproc_ifdef] = STATE(434), + [sym_preproc_else] = STATE(433), + [sym_preproc_elif] = STATE(433), + [sym_function_definition] = STATE(434), + [sym_declaration] = STATE(434), + [sym_type_definition] = STATE(434), + [sym__declaration_specifiers] = STATE(124), + [sym_linkage_specification] = STATE(434), + [sym_storage_class_specifier] = STATE(30), + [sym_type_qualifier] = STATE(30), + [sym__type_specifier] = STATE(25), + [sym_sized_type_specifier] = STATE(25), + [sym_enum_specifier] = STATE(25), + [sym_struct_specifier] = STATE(25), + [sym_union_specifier] = STATE(25), + [sym__expression] = STATE(26), + [sym_conditional_expression] = STATE(26), + [sym_assignment_expression] = STATE(26), + [sym_pointer_expression] = STATE(26), + [sym_logical_expression] = STATE(26), + [sym_bitwise_expression] = STATE(26), + [sym_equality_expression] = STATE(26), + [sym_relational_expression] = STATE(26), + [sym_shift_expression] = STATE(26), + [sym_math_expression] = STATE(26), + [sym_cast_expression] = STATE(26), + [sym_sizeof_expression] = STATE(26), + [sym_subscript_expression] = STATE(26), + [sym_call_expression] = STATE(125), + [sym_field_expression] = STATE(26), + [sym_compound_literal_expression] = STATE(26), + [sym_parenthesized_expression] = STATE(26), + [sym_char_literal] = STATE(26), + [sym_concatenated_string] = STATE(26), + [sym_string_literal] = STATE(28), + [sym__empty_declaration] = STATE(434), + [sym_macro_type_specifier] = STATE(25), + [aux_sym_translation_unit_repeat1] = STATE(434), + [aux_sym__declaration_specifiers_repeat1] = STATE(30), + [aux_sym_sized_type_specifier_repeat1] = STATE(31), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(251), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(253), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(255), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1145), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(259), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(259), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(261), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(263), + [sym_preproc_directive] = ACTIONS(265), + [anon_sym_typedef] = ACTIONS(267), + [anon_sym_extern] = ACTIONS(269), + [anon_sym_LPAREN2] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_static] = ACTIONS(25), + [anon_sym_auto] = ACTIONS(25), + [anon_sym_register] = ACTIONS(25), + [anon_sym_inline] = ACTIONS(25), + [anon_sym_const] = ACTIONS(27), + [anon_sym_restrict] = ACTIONS(27), + [anon_sym_volatile] = ACTIONS(27), + [anon_sym__Atomic] = ACTIONS(27), + [anon_sym_unsigned] = ACTIONS(29), + [anon_sym_long] = ACTIONS(29), + [anon_sym_short] = ACTIONS(29), + [sym_primitive_type] = ACTIONS(31), + [anon_sym_enum] = ACTIONS(33), + [anon_sym_struct] = ACTIONS(35), + [anon_sym_union] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(41), + [anon_sym_PLUS] = ACTIONS(43), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_DASH_DASH] = ACTIONS(45), + [anon_sym_PLUS_PLUS] = ACTIONS(45), + [anon_sym_sizeof] = ACTIONS(47), + [sym_number_literal] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(55), + [sym_false] = ACTIONS(55), + [sym_null] = ACTIONS(55), + [sym_identifier] = ACTIONS(57), + [sym_comment] = ACTIONS(59), }, [247] = { - [sym_storage_class_specifier] = STATE(449), - [sym_type_qualifier] = STATE(449), - [aux_sym__declaration_specifiers_repeat1] = STATE(449), - [anon_sym_extern] = ACTIONS(21), - [anon_sym_LPAREN2] = ACTIONS(94), - [anon_sym_STAR] = ACTIONS(94), - [anon_sym_RBRACK] = ACTIONS(94), - [anon_sym_static] = ACTIONS(21), - [anon_sym_auto] = ACTIONS(21), - [anon_sym_register] = ACTIONS(21), - [anon_sym_inline] = ACTIONS(21), - [anon_sym_const] = ACTIONS(23), - [anon_sym_restrict] = ACTIONS(23), - [anon_sym_volatile] = ACTIONS(23), - [anon_sym__Atomic] = ACTIONS(23), - [anon_sym_AMP] = ACTIONS(94), - [anon_sym_BANG] = ACTIONS(94), - [anon_sym_TILDE] = ACTIONS(94), - [anon_sym_PLUS] = ACTIONS(96), - [anon_sym_DASH] = ACTIONS(96), - [anon_sym_DASH_DASH] = ACTIONS(94), - [anon_sym_PLUS_PLUS] = ACTIONS(94), - [anon_sym_sizeof] = ACTIONS(96), - [sym_number_literal] = ACTIONS(94), - [anon_sym_SQUOTE] = ACTIONS(94), - [anon_sym_DQUOTE] = ACTIONS(94), - [sym_true] = ACTIONS(96), - [sym_false] = ACTIONS(96), - [sym_null] = ACTIONS(96), - [sym_identifier] = ACTIONS(96), - [sym_comment] = ACTIONS(37), + [sym_string_literal] = STATE(436), + [anon_sym_DQUOTE] = ACTIONS(1147), + [sym_system_lib_string] = ACTIONS(1149), + [sym_comment] = ACTIONS(59), }, [248] = { - [sym_argument_list] = STATE(430), - [anon_sym_LPAREN2] = ACTIONS(1012), - [anon_sym_STAR] = ACTIONS(1082), - [anon_sym_LBRACK] = ACTIONS(1016), - [anon_sym_RBRACK] = ACTIONS(1076), - [anon_sym_EQ] = ACTIONS(1084), - [anon_sym_QMARK] = ACTIONS(1086), - [anon_sym_STAR_EQ] = ACTIONS(1088), - [anon_sym_SLASH_EQ] = ACTIONS(1088), - [anon_sym_PERCENT_EQ] = ACTIONS(1088), - [anon_sym_PLUS_EQ] = ACTIONS(1088), - [anon_sym_DASH_EQ] = ACTIONS(1088), - [anon_sym_LT_LT_EQ] = ACTIONS(1088), - [anon_sym_GT_GT_EQ] = ACTIONS(1088), - [anon_sym_AMP_EQ] = ACTIONS(1088), - [anon_sym_CARET_EQ] = ACTIONS(1088), - [anon_sym_PIPE_EQ] = ACTIONS(1088), - [anon_sym_AMP] = ACTIONS(1090), - [anon_sym_PIPE_PIPE] = ACTIONS(1092), - [anon_sym_AMP_AMP] = ACTIONS(1094), - [anon_sym_PIPE] = ACTIONS(1096), - [anon_sym_CARET] = ACTIONS(1098), - [anon_sym_EQ_EQ] = ACTIONS(1100), - [anon_sym_BANG_EQ] = ACTIONS(1100), - [anon_sym_LT] = ACTIONS(1102), - [anon_sym_GT] = ACTIONS(1102), - [anon_sym_LT_EQ] = ACTIONS(1104), - [anon_sym_GT_EQ] = ACTIONS(1104), - [anon_sym_LT_LT] = ACTIONS(1106), - [anon_sym_GT_GT] = ACTIONS(1106), - [anon_sym_PLUS] = ACTIONS(1108), - [anon_sym_DASH] = ACTIONS(1108), - [anon_sym_SLASH] = ACTIONS(1082), - [anon_sym_PERCENT] = ACTIONS(1082), - [anon_sym_DASH_DASH] = ACTIONS(1044), - [anon_sym_PLUS_PLUS] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1046), - [anon_sym_DASH_GT] = ACTIONS(1046), - [sym_comment] = ACTIONS(37), + [sym_identifier] = ACTIONS(1151), + [sym_comment] = ACTIONS(59), }, [249] = { - [sym_string_literal] = STATE(462), - [aux_sym_concatenated_string_repeat1] = STATE(462), - [anon_sym_LPAREN2] = ACTIONS(990), - [anon_sym_STAR] = ACTIONS(1002), - [anon_sym_LBRACK] = ACTIONS(990), - [anon_sym_RBRACK] = ACTIONS(990), - [anon_sym_EQ] = ACTIONS(1002), - [anon_sym_QMARK] = ACTIONS(990), - [anon_sym_STAR_EQ] = ACTIONS(990), - [anon_sym_SLASH_EQ] = ACTIONS(990), - [anon_sym_PERCENT_EQ] = ACTIONS(990), - [anon_sym_PLUS_EQ] = ACTIONS(990), - [anon_sym_DASH_EQ] = ACTIONS(990), - [anon_sym_LT_LT_EQ] = ACTIONS(990), - [anon_sym_GT_GT_EQ] = ACTIONS(990), - [anon_sym_AMP_EQ] = ACTIONS(990), - [anon_sym_CARET_EQ] = ACTIONS(990), - [anon_sym_PIPE_EQ] = ACTIONS(990), - [anon_sym_AMP] = ACTIONS(1002), - [anon_sym_PIPE_PIPE] = ACTIONS(990), - [anon_sym_AMP_AMP] = ACTIONS(990), - [anon_sym_PIPE] = ACTIONS(1002), - [anon_sym_CARET] = ACTIONS(1002), - [anon_sym_EQ_EQ] = ACTIONS(990), - [anon_sym_BANG_EQ] = ACTIONS(990), - [anon_sym_LT] = ACTIONS(1002), - [anon_sym_GT] = ACTIONS(1002), - [anon_sym_LT_EQ] = ACTIONS(990), - [anon_sym_GT_EQ] = ACTIONS(990), - [anon_sym_LT_LT] = ACTIONS(1002), - [anon_sym_GT_GT] = ACTIONS(1002), - [anon_sym_PLUS] = ACTIONS(1002), - [anon_sym_DASH] = ACTIONS(1002), - [anon_sym_SLASH] = ACTIONS(1002), - [anon_sym_PERCENT] = ACTIONS(1002), - [anon_sym_DASH_DASH] = ACTIONS(990), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_DOT] = ACTIONS(990), - [anon_sym_DASH_GT] = ACTIONS(990), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_comment] = ACTIONS(37), + [sym_preproc_arg] = ACTIONS(1153), + [sym_comment] = ACTIONS(69), }, [250] = { - [sym_storage_class_specifier] = STATE(49), - [sym_type_qualifier] = STATE(49), - [sym__type_specifier] = STATE(463), - [sym_sized_type_specifier] = STATE(463), - [sym_enum_specifier] = STATE(463), - [sym_struct_specifier] = STATE(463), - [sym_union_specifier] = STATE(463), - [sym_macro_type_specifier] = STATE(463), - [aux_sym__declaration_specifiers_repeat1] = STATE(49), - [aux_sym_sized_type_specifier_repeat1] = STATE(251), - [anon_sym_extern] = ACTIONS(21), - [anon_sym_static] = ACTIONS(21), - [anon_sym_auto] = ACTIONS(21), - [anon_sym_register] = ACTIONS(21), - [anon_sym_inline] = ACTIONS(21), - [anon_sym_const] = ACTIONS(23), - [anon_sym_restrict] = ACTIONS(23), - [anon_sym_volatile] = ACTIONS(23), - [anon_sym__Atomic] = ACTIONS(23), - [anon_sym_unsigned] = ACTIONS(565), - [anon_sym_long] = ACTIONS(565), - [anon_sym_short] = ACTIONS(565), - [sym_primitive_type] = ACTIONS(1110), - [anon_sym_enum] = ACTIONS(29), - [anon_sym_struct] = ACTIONS(31), - [anon_sym_union] = ACTIONS(33), - [sym_identifier] = ACTIONS(35), - [sym_comment] = ACTIONS(37), + [sym_identifier] = ACTIONS(1155), + [sym_comment] = ACTIONS(59), }, [251] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(464), - [anon_sym_extern] = ACTIONS(104), - [anon_sym_LPAREN2] = ACTIONS(102), - [anon_sym_STAR] = ACTIONS(102), - [anon_sym_RBRACK] = ACTIONS(102), - [anon_sym_static] = ACTIONS(104), - [anon_sym_auto] = ACTIONS(104), - [anon_sym_register] = ACTIONS(104), - [anon_sym_inline] = ACTIONS(104), - [anon_sym_const] = ACTIONS(104), - [anon_sym_restrict] = ACTIONS(104), - [anon_sym_volatile] = ACTIONS(104), - [anon_sym__Atomic] = ACTIONS(104), - [anon_sym_unsigned] = ACTIONS(1112), - [anon_sym_long] = ACTIONS(1112), - [anon_sym_short] = ACTIONS(1112), - [sym_primitive_type] = ACTIONS(108), - [anon_sym_AMP] = ACTIONS(102), - [anon_sym_BANG] = ACTIONS(102), - [anon_sym_TILDE] = ACTIONS(102), - [anon_sym_PLUS] = ACTIONS(104), - [anon_sym_DASH] = ACTIONS(104), - [anon_sym_DASH_DASH] = ACTIONS(102), - [anon_sym_PLUS_PLUS] = ACTIONS(102), - [anon_sym_sizeof] = ACTIONS(104), - [sym_number_literal] = ACTIONS(102), - [anon_sym_SQUOTE] = ACTIONS(102), - [anon_sym_DQUOTE] = ACTIONS(102), - [sym_true] = ACTIONS(104), - [sym_false] = ACTIONS(104), - [sym_null] = ACTIONS(104), - [sym_identifier] = ACTIONS(110), - [sym_comment] = ACTIONS(37), + [anon_sym_LF] = ACTIONS(1157), + [sym_preproc_arg] = ACTIONS(1159), + [sym_comment] = ACTIONS(69), }, [252] = { - [sym__expression] = STATE(469), - [sym_conditional_expression] = STATE(469), - [sym_assignment_expression] = STATE(469), - [sym_pointer_expression] = STATE(469), - [sym_logical_expression] = STATE(469), - [sym_bitwise_expression] = STATE(469), - [sym_equality_expression] = STATE(469), - [sym_relational_expression] = STATE(469), - [sym_shift_expression] = STATE(469), - [sym_math_expression] = STATE(469), - [sym_cast_expression] = STATE(469), - [sym_sizeof_expression] = STATE(469), - [sym_subscript_expression] = STATE(469), - [sym_call_expression] = STATE(469), - [sym_field_expression] = STATE(469), - [sym_compound_literal_expression] = STATE(469), - [sym_parenthesized_expression] = STATE(469), - [sym_initializer_list] = STATE(470), - [sym_initializer_pair] = STATE(470), - [sym_subscript_designator] = STATE(471), - [sym_field_designator] = STATE(471), - [sym_char_literal] = STATE(469), - [sym_concatenated_string] = STATE(469), - [sym_string_literal] = STATE(318), - [aux_sym_initializer_pair_repeat1] = STATE(471), - [anon_sym_COMMA] = ACTIONS(1114), - [anon_sym_LBRACE] = ACTIONS(585), - [anon_sym_RBRACE] = ACTIONS(1116), - [anon_sym_LPAREN2] = ACTIONS(742), - [anon_sym_STAR] = ACTIONS(744), - [anon_sym_LBRACK] = ACTIONS(1118), - [anon_sym_AMP] = ACTIONS(744), - [anon_sym_BANG] = ACTIONS(746), - [anon_sym_TILDE] = ACTIONS(748), - [anon_sym_PLUS] = ACTIONS(750), - [anon_sym_DASH] = ACTIONS(750), - [anon_sym_DASH_DASH] = ACTIONS(752), - [anon_sym_PLUS_PLUS] = ACTIONS(752), - [anon_sym_sizeof] = ACTIONS(754), - [anon_sym_DOT] = ACTIONS(1120), - [sym_number_literal] = ACTIONS(1122), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(1124), - [sym_false] = ACTIONS(1124), - [sym_null] = ACTIONS(1124), - [sym_identifier] = ACTIONS(1124), - [sym_comment] = ACTIONS(37), + [sym_type_qualifier] = STATE(443), + [sym__type_specifier] = STATE(442), + [sym_sized_type_specifier] = STATE(442), + [sym_enum_specifier] = STATE(442), + [sym_struct_specifier] = STATE(442), + [sym_union_specifier] = STATE(442), + [sym_macro_type_specifier] = STATE(442), + [aux_sym_type_definition_repeat1] = STATE(443), + [aux_sym_sized_type_specifier_repeat1] = STATE(42), + [anon_sym_const] = ACTIONS(27), + [anon_sym_restrict] = ACTIONS(27), + [anon_sym_volatile] = ACTIONS(27), + [anon_sym__Atomic] = ACTIONS(27), + [anon_sym_unsigned] = ACTIONS(77), + [anon_sym_long] = ACTIONS(77), + [anon_sym_short] = ACTIONS(77), + [sym_primitive_type] = ACTIONS(1161), + [anon_sym_enum] = ACTIONS(33), + [anon_sym_struct] = ACTIONS(35), + [anon_sym_union] = ACTIONS(37), + [sym_identifier] = ACTIONS(81), + [sym_comment] = ACTIONS(59), }, [253] = { - [sym_argument_list] = STATE(430), - [anon_sym_COMMA] = ACTIONS(1126), - [anon_sym_SEMI] = ACTIONS(1126), - [anon_sym_LPAREN2] = ACTIONS(1012), - [anon_sym_STAR] = ACTIONS(1014), - [anon_sym_LBRACK] = ACTIONS(1016), - [anon_sym_EQ] = ACTIONS(1018), - [anon_sym_QMARK] = ACTIONS(1020), - [anon_sym_STAR_EQ] = ACTIONS(1022), - [anon_sym_SLASH_EQ] = ACTIONS(1022), - [anon_sym_PERCENT_EQ] = ACTIONS(1022), - [anon_sym_PLUS_EQ] = ACTIONS(1022), - [anon_sym_DASH_EQ] = ACTIONS(1022), - [anon_sym_LT_LT_EQ] = ACTIONS(1022), - [anon_sym_GT_GT_EQ] = ACTIONS(1022), - [anon_sym_AMP_EQ] = ACTIONS(1022), - [anon_sym_CARET_EQ] = ACTIONS(1022), - [anon_sym_PIPE_EQ] = ACTIONS(1022), - [anon_sym_AMP] = ACTIONS(1024), - [anon_sym_PIPE_PIPE] = ACTIONS(1026), - [anon_sym_AMP_AMP] = ACTIONS(1028), - [anon_sym_PIPE] = ACTIONS(1030), - [anon_sym_CARET] = ACTIONS(1032), - [anon_sym_EQ_EQ] = ACTIONS(1034), - [anon_sym_BANG_EQ] = ACTIONS(1034), - [anon_sym_LT] = ACTIONS(1036), - [anon_sym_GT] = ACTIONS(1036), - [anon_sym_LT_EQ] = ACTIONS(1038), - [anon_sym_GT_EQ] = ACTIONS(1038), - [anon_sym_LT_LT] = ACTIONS(1040), - [anon_sym_GT_GT] = ACTIONS(1040), - [anon_sym_PLUS] = ACTIONS(1042), - [anon_sym_DASH] = ACTIONS(1042), - [anon_sym_SLASH] = ACTIONS(1014), - [anon_sym_PERCENT] = ACTIONS(1014), - [anon_sym_DASH_DASH] = ACTIONS(1044), - [anon_sym_PLUS_PLUS] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1046), - [anon_sym_DASH_GT] = ACTIONS(1046), - [sym_comment] = ACTIONS(37), + [sym_string_literal] = STATE(444), + [anon_sym_extern] = ACTIONS(83), + [anon_sym_static] = ACTIONS(83), + [anon_sym_auto] = ACTIONS(83), + [anon_sym_register] = ACTIONS(83), + [anon_sym_inline] = ACTIONS(83), + [anon_sym_const] = ACTIONS(83), + [anon_sym_restrict] = ACTIONS(83), + [anon_sym_volatile] = ACTIONS(83), + [anon_sym__Atomic] = ACTIONS(83), + [anon_sym_unsigned] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [sym_primitive_type] = ACTIONS(83), + [anon_sym_enum] = ACTIONS(83), + [anon_sym_struct] = ACTIONS(83), + [anon_sym_union] = ACTIONS(83), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_identifier] = ACTIONS(83), + [sym_comment] = ACTIONS(59), }, [254] = { - [anon_sym_COMMA] = ACTIONS(1126), - [anon_sym_SEMI] = ACTIONS(1126), - [sym_comment] = ACTIONS(37), + [sym__declarator] = STATE(446), + [sym_pointer_declarator] = STATE(446), + [sym_function_declarator] = STATE(446), + [sym_array_declarator] = STATE(446), + [sym_init_declarator] = STATE(447), + [anon_sym_SEMI] = ACTIONS(1163), + [anon_sym_LPAREN2] = ACTIONS(174), + [anon_sym_STAR] = ACTIONS(176), + [sym_identifier] = ACTIONS(1165), + [sym_comment] = ACTIONS(59), }, [255] = { - [ts_builtin_sym_end] = ACTIONS(1128), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1130), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1130), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1130), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1130), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1130), - [sym_preproc_directive] = ACTIONS(1130), - [anon_sym_SEMI] = ACTIONS(1128), - [anon_sym_typedef] = ACTIONS(1130), - [anon_sym_extern] = ACTIONS(1130), - [anon_sym_LBRACE] = ACTIONS(1128), - [anon_sym_RBRACE] = ACTIONS(1128), - [anon_sym_LPAREN2] = ACTIONS(1128), - [anon_sym_STAR] = ACTIONS(1128), - [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_restrict] = ACTIONS(1130), - [anon_sym_volatile] = ACTIONS(1130), - [anon_sym__Atomic] = 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_else] = 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_AMP] = ACTIONS(1128), - [anon_sym_BANG] = ACTIONS(1128), - [anon_sym_TILDE] = ACTIONS(1128), - [anon_sym_PLUS] = ACTIONS(1130), - [anon_sym_DASH] = ACTIONS(1130), - [anon_sym_DASH_DASH] = ACTIONS(1128), - [anon_sym_PLUS_PLUS] = ACTIONS(1128), - [anon_sym_sizeof] = ACTIONS(1130), - [sym_number_literal] = ACTIONS(1128), - [anon_sym_SQUOTE] = ACTIONS(1128), - [anon_sym_DQUOTE] = ACTIONS(1128), - [sym_true] = ACTIONS(1130), - [sym_false] = ACTIONS(1130), - [sym_null] = ACTIONS(1130), - [sym_identifier] = ACTIONS(1130), - [sym_comment] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(1167), + [anon_sym_LPAREN2] = ACTIONS(166), + [anon_sym_STAR] = ACTIONS(168), + [anon_sym_LBRACK] = ACTIONS(166), + [anon_sym_EQ] = ACTIONS(168), + [anon_sym_QMARK] = ACTIONS(166), + [anon_sym_STAR_EQ] = ACTIONS(166), + [anon_sym_SLASH_EQ] = ACTIONS(166), + [anon_sym_PERCENT_EQ] = ACTIONS(166), + [anon_sym_PLUS_EQ] = ACTIONS(166), + [anon_sym_DASH_EQ] = ACTIONS(166), + [anon_sym_LT_LT_EQ] = ACTIONS(166), + [anon_sym_GT_GT_EQ] = ACTIONS(166), + [anon_sym_AMP_EQ] = ACTIONS(166), + [anon_sym_CARET_EQ] = ACTIONS(166), + [anon_sym_PIPE_EQ] = ACTIONS(166), + [anon_sym_AMP] = ACTIONS(168), + [anon_sym_PIPE_PIPE] = ACTIONS(166), + [anon_sym_AMP_AMP] = ACTIONS(166), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_CARET] = ACTIONS(168), + [anon_sym_EQ_EQ] = ACTIONS(166), + [anon_sym_BANG_EQ] = ACTIONS(166), + [anon_sym_LT] = ACTIONS(168), + [anon_sym_GT] = ACTIONS(168), + [anon_sym_LT_EQ] = ACTIONS(166), + [anon_sym_GT_EQ] = ACTIONS(166), + [anon_sym_LT_LT] = ACTIONS(168), + [anon_sym_GT_GT] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(168), + [anon_sym_DASH] = ACTIONS(168), + [anon_sym_SLASH] = ACTIONS(168), + [anon_sym_PERCENT] = ACTIONS(168), + [anon_sym_DASH_DASH] = ACTIONS(166), + [anon_sym_PLUS_PLUS] = ACTIONS(166), + [anon_sym_DOT] = ACTIONS(166), + [anon_sym_DASH_GT] = ACTIONS(166), + [sym_comment] = ACTIONS(59), }, [256] = { - [aux_sym_declaration_repeat1] = STATE(256), - [anon_sym_COMMA] = ACTIONS(1132), - [anon_sym_SEMI] = ACTIONS(876), - [sym_comment] = ACTIONS(37), + [sym_preproc_include] = STATE(449), + [sym_preproc_def] = STATE(449), + [sym_preproc_function_def] = STATE(449), + [sym_preproc_call] = STATE(449), + [sym_preproc_if] = STATE(449), + [sym_preproc_ifdef] = STATE(449), + [sym_function_definition] = STATE(449), + [sym_declaration] = STATE(449), + [sym_type_definition] = STATE(449), + [sym__declaration_specifiers] = STATE(254), + [sym_linkage_specification] = STATE(449), + [sym_storage_class_specifier] = STATE(30), + [sym_type_qualifier] = STATE(30), + [sym__type_specifier] = STATE(25), + [sym_sized_type_specifier] = STATE(25), + [sym_enum_specifier] = STATE(25), + [sym_struct_specifier] = STATE(25), + [sym_union_specifier] = STATE(25), + [sym__expression] = STATE(26), + [sym_conditional_expression] = STATE(26), + [sym_assignment_expression] = STATE(26), + [sym_pointer_expression] = STATE(26), + [sym_logical_expression] = STATE(26), + [sym_bitwise_expression] = STATE(26), + [sym_equality_expression] = STATE(26), + [sym_relational_expression] = STATE(26), + [sym_shift_expression] = STATE(26), + [sym_math_expression] = STATE(26), + [sym_cast_expression] = STATE(26), + [sym_sizeof_expression] = STATE(26), + [sym_subscript_expression] = STATE(26), + [sym_call_expression] = STATE(255), + [sym_field_expression] = STATE(26), + [sym_compound_literal_expression] = STATE(26), + [sym_parenthesized_expression] = STATE(26), + [sym_char_literal] = STATE(26), + [sym_concatenated_string] = STATE(26), + [sym_string_literal] = STATE(28), + [sym__empty_declaration] = STATE(449), + [sym_macro_type_specifier] = STATE(25), + [aux_sym_translation_unit_repeat1] = STATE(449), + [aux_sym__declaration_specifiers_repeat1] = STATE(30), + [aux_sym_sized_type_specifier_repeat1] = STATE(31), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(682), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(684), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(686), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1169), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(690), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(690), + [sym_preproc_directive] = ACTIONS(692), + [anon_sym_typedef] = ACTIONS(694), + [anon_sym_extern] = ACTIONS(696), + [anon_sym_LPAREN2] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_static] = ACTIONS(25), + [anon_sym_auto] = ACTIONS(25), + [anon_sym_register] = ACTIONS(25), + [anon_sym_inline] = ACTIONS(25), + [anon_sym_const] = ACTIONS(27), + [anon_sym_restrict] = ACTIONS(27), + [anon_sym_volatile] = ACTIONS(27), + [anon_sym__Atomic] = ACTIONS(27), + [anon_sym_unsigned] = ACTIONS(29), + [anon_sym_long] = ACTIONS(29), + [anon_sym_short] = ACTIONS(29), + [sym_primitive_type] = ACTIONS(31), + [anon_sym_enum] = ACTIONS(33), + [anon_sym_struct] = ACTIONS(35), + [anon_sym_union] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(41), + [anon_sym_PLUS] = ACTIONS(43), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_DASH_DASH] = ACTIONS(45), + [anon_sym_PLUS_PLUS] = ACTIONS(45), + [anon_sym_sizeof] = ACTIONS(47), + [sym_number_literal] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(55), + [sym_false] = ACTIONS(55), + [sym_null] = ACTIONS(55), + [sym_identifier] = ACTIONS(57), + [sym_comment] = ACTIONS(59), }, [257] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(1135), - [sym_identifier] = ACTIONS(1135), - [sym_comment] = ACTIONS(37), + [sym_preproc_include] = STATE(451), + [sym_preproc_def] = STATE(451), + [sym_preproc_function_def] = STATE(451), + [sym_preproc_call] = STATE(451), + [sym_preproc_if] = STATE(451), + [sym_preproc_ifdef] = STATE(451), + [sym_preproc_else] = STATE(450), + [sym_preproc_elif] = STATE(450), + [sym_function_definition] = STATE(451), + [sym_declaration] = STATE(451), + [sym_type_definition] = STATE(451), + [sym__declaration_specifiers] = STATE(124), + [sym_linkage_specification] = STATE(451), + [sym_storage_class_specifier] = STATE(30), + [sym_type_qualifier] = STATE(30), + [sym__type_specifier] = STATE(25), + [sym_sized_type_specifier] = STATE(25), + [sym_enum_specifier] = STATE(25), + [sym_struct_specifier] = STATE(25), + [sym_union_specifier] = STATE(25), + [sym__expression] = STATE(26), + [sym_conditional_expression] = STATE(26), + [sym_assignment_expression] = STATE(26), + [sym_pointer_expression] = STATE(26), + [sym_logical_expression] = STATE(26), + [sym_bitwise_expression] = STATE(26), + [sym_equality_expression] = STATE(26), + [sym_relational_expression] = STATE(26), + [sym_shift_expression] = STATE(26), + [sym_math_expression] = STATE(26), + [sym_cast_expression] = STATE(26), + [sym_sizeof_expression] = STATE(26), + [sym_subscript_expression] = STATE(26), + [sym_call_expression] = STATE(125), + [sym_field_expression] = STATE(26), + [sym_compound_literal_expression] = STATE(26), + [sym_parenthesized_expression] = STATE(26), + [sym_char_literal] = STATE(26), + [sym_concatenated_string] = STATE(26), + [sym_string_literal] = STATE(28), + [sym__empty_declaration] = STATE(451), + [sym_macro_type_specifier] = STATE(25), + [aux_sym_translation_unit_repeat1] = STATE(451), + [aux_sym__declaration_specifiers_repeat1] = STATE(30), + [aux_sym_sized_type_specifier_repeat1] = STATE(31), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(251), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(253), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(255), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1171), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(259), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(259), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(261), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(263), + [sym_preproc_directive] = ACTIONS(265), + [anon_sym_typedef] = ACTIONS(267), + [anon_sym_extern] = ACTIONS(269), + [anon_sym_LPAREN2] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_static] = ACTIONS(25), + [anon_sym_auto] = ACTIONS(25), + [anon_sym_register] = ACTIONS(25), + [anon_sym_inline] = ACTIONS(25), + [anon_sym_const] = ACTIONS(27), + [anon_sym_restrict] = ACTIONS(27), + [anon_sym_volatile] = ACTIONS(27), + [anon_sym__Atomic] = ACTIONS(27), + [anon_sym_unsigned] = ACTIONS(29), + [anon_sym_long] = ACTIONS(29), + [anon_sym_short] = ACTIONS(29), + [sym_primitive_type] = ACTIONS(31), + [anon_sym_enum] = ACTIONS(33), + [anon_sym_struct] = ACTIONS(35), + [anon_sym_union] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(41), + [anon_sym_PLUS] = ACTIONS(43), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_DASH_DASH] = ACTIONS(45), + [anon_sym_PLUS_PLUS] = ACTIONS(45), + [anon_sym_sizeof] = ACTIONS(47), + [sym_number_literal] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(55), + [sym_false] = ACTIONS(55), + [sym_null] = ACTIONS(55), + [sym_identifier] = ACTIONS(57), + [sym_comment] = ACTIONS(59), }, [258] = { - [anon_sym_LF] = ACTIONS(1137), - [sym_preproc_arg] = ACTIONS(1137), - [sym_comment] = ACTIONS(47), + [anon_sym_SEMI] = ACTIONS(273), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(275), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(275), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(275), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(275), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(275), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(275), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(275), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(275), + [sym_preproc_directive] = ACTIONS(275), + [anon_sym_typedef] = ACTIONS(275), + [anon_sym_extern] = ACTIONS(275), + [anon_sym_LBRACE] = ACTIONS(273), + [anon_sym_LPAREN2] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(273), + [anon_sym_static] = ACTIONS(275), + [anon_sym_auto] = ACTIONS(275), + [anon_sym_register] = ACTIONS(275), + [anon_sym_inline] = ACTIONS(275), + [anon_sym_const] = ACTIONS(275), + [anon_sym_restrict] = ACTIONS(275), + [anon_sym_volatile] = ACTIONS(275), + [anon_sym__Atomic] = ACTIONS(275), + [anon_sym_unsigned] = ACTIONS(275), + [anon_sym_long] = ACTIONS(275), + [anon_sym_short] = ACTIONS(275), + [sym_primitive_type] = ACTIONS(275), + [anon_sym_enum] = ACTIONS(275), + [anon_sym_struct] = ACTIONS(275), + [anon_sym_union] = ACTIONS(275), + [anon_sym_if] = ACTIONS(275), + [anon_sym_switch] = ACTIONS(275), + [anon_sym_case] = ACTIONS(275), + [anon_sym_default] = ACTIONS(275), + [anon_sym_while] = ACTIONS(275), + [anon_sym_do] = ACTIONS(275), + [anon_sym_for] = ACTIONS(275), + [anon_sym_return] = ACTIONS(275), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(275), + [anon_sym_goto] = ACTIONS(275), + [anon_sym_AMP] = ACTIONS(273), + [anon_sym_BANG] = ACTIONS(273), + [anon_sym_TILDE] = ACTIONS(273), + [anon_sym_PLUS] = ACTIONS(275), + [anon_sym_DASH] = ACTIONS(275), + [anon_sym_DASH_DASH] = ACTIONS(273), + [anon_sym_PLUS_PLUS] = ACTIONS(273), + [anon_sym_sizeof] = ACTIONS(275), + [sym_number_literal] = ACTIONS(273), + [anon_sym_SQUOTE] = ACTIONS(273), + [anon_sym_DQUOTE] = ACTIONS(273), + [sym_true] = ACTIONS(275), + [sym_false] = ACTIONS(275), + [sym_null] = ACTIONS(275), + [sym_identifier] = ACTIONS(275), + [sym_comment] = ACTIONS(59), }, [259] = { - [aux_sym_preproc_params_repeat1] = STATE(474), - [anon_sym_COMMA] = ACTIONS(614), - [anon_sym_RPAREN] = ACTIONS(1139), - [sym_comment] = ACTIONS(37), + [anon_sym_LF] = ACTIONS(1173), + [sym_comment] = ACTIONS(69), }, [260] = { - [ts_builtin_sym_end] = ACTIONS(1141), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1143), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1143), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1143), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1143), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1143), - [sym_preproc_directive] = ACTIONS(1143), - [anon_sym_SEMI] = ACTIONS(1141), - [anon_sym_typedef] = ACTIONS(1143), - [anon_sym_extern] = ACTIONS(1143), - [anon_sym_LBRACE] = ACTIONS(1141), - [anon_sym_RBRACE] = ACTIONS(1141), - [anon_sym_LPAREN2] = ACTIONS(1141), - [anon_sym_STAR] = ACTIONS(1141), - [anon_sym_static] = ACTIONS(1143), - [anon_sym_auto] = ACTIONS(1143), - [anon_sym_register] = ACTIONS(1143), - [anon_sym_inline] = ACTIONS(1143), - [anon_sym_const] = ACTIONS(1143), - [anon_sym_restrict] = ACTIONS(1143), - [anon_sym_volatile] = ACTIONS(1143), - [anon_sym__Atomic] = ACTIONS(1143), - [anon_sym_unsigned] = ACTIONS(1143), - [anon_sym_long] = ACTIONS(1143), - [anon_sym_short] = ACTIONS(1143), - [sym_primitive_type] = ACTIONS(1143), - [anon_sym_enum] = ACTIONS(1143), - [anon_sym_struct] = ACTIONS(1143), - [anon_sym_union] = ACTIONS(1143), - [anon_sym_if] = ACTIONS(1143), - [anon_sym_switch] = ACTIONS(1143), - [anon_sym_case] = ACTIONS(1143), - [anon_sym_default] = ACTIONS(1143), - [anon_sym_while] = ACTIONS(1143), - [anon_sym_do] = ACTIONS(1143), - [anon_sym_for] = ACTIONS(1143), - [anon_sym_return] = ACTIONS(1143), - [anon_sym_break] = ACTIONS(1143), - [anon_sym_continue] = ACTIONS(1143), - [anon_sym_goto] = ACTIONS(1143), - [anon_sym_AMP] = ACTIONS(1141), - [anon_sym_BANG] = ACTIONS(1141), - [anon_sym_TILDE] = ACTIONS(1141), - [anon_sym_PLUS] = ACTIONS(1143), - [anon_sym_DASH] = ACTIONS(1143), - [anon_sym_DASH_DASH] = ACTIONS(1141), - [anon_sym_PLUS_PLUS] = ACTIONS(1141), - [anon_sym_sizeof] = ACTIONS(1143), - [sym_number_literal] = ACTIONS(1141), - [anon_sym_SQUOTE] = ACTIONS(1141), - [anon_sym_DQUOTE] = ACTIONS(1141), - [sym_true] = ACTIONS(1143), - [sym_false] = ACTIONS(1143), - [sym_null] = ACTIONS(1143), - [sym_identifier] = ACTIONS(1143), - [sym_comment] = ACTIONS(37), + [sym__type_declarator] = STATE(453), + [sym_pointer_type_declarator] = STATE(453), + [sym_function_type_declarator] = STATE(453), + [sym_array_type_declarator] = STATE(453), + [anon_sym_LPAREN2] = ACTIONS(282), + [anon_sym_STAR] = ACTIONS(284), + [sym_identifier] = ACTIONS(286), + [sym_comment] = ACTIONS(59), }, [261] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(313), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(313), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(313), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(313), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(313), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(313), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(313), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(313), - [sym_preproc_directive] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(311), - [anon_sym_typedef] = ACTIONS(313), - [anon_sym_extern] = ACTIONS(313), - [anon_sym_LBRACE] = ACTIONS(311), - [anon_sym_LPAREN2] = ACTIONS(311), - [anon_sym_STAR] = ACTIONS(311), - [anon_sym_static] = ACTIONS(313), - [anon_sym_auto] = ACTIONS(313), - [anon_sym_register] = ACTIONS(313), - [anon_sym_inline] = ACTIONS(313), - [anon_sym_const] = ACTIONS(313), - [anon_sym_restrict] = ACTIONS(313), - [anon_sym_volatile] = ACTIONS(313), - [anon_sym__Atomic] = ACTIONS(313), - [anon_sym_unsigned] = ACTIONS(313), - [anon_sym_long] = ACTIONS(313), - [anon_sym_short] = ACTIONS(313), - [sym_primitive_type] = ACTIONS(313), - [anon_sym_enum] = ACTIONS(313), - [anon_sym_struct] = ACTIONS(313), - [anon_sym_union] = ACTIONS(313), - [anon_sym_if] = ACTIONS(313), - [anon_sym_switch] = ACTIONS(313), - [anon_sym_case] = ACTIONS(313), - [anon_sym_default] = ACTIONS(313), - [anon_sym_while] = ACTIONS(313), - [anon_sym_do] = ACTIONS(313), - [anon_sym_for] = ACTIONS(313), - [anon_sym_return] = ACTIONS(313), - [anon_sym_break] = ACTIONS(313), - [anon_sym_continue] = ACTIONS(313), - [anon_sym_goto] = ACTIONS(313), - [anon_sym_AMP] = ACTIONS(311), - [anon_sym_BANG] = ACTIONS(311), - [anon_sym_TILDE] = ACTIONS(311), - [anon_sym_PLUS] = ACTIONS(313), - [anon_sym_DASH] = ACTIONS(313), - [anon_sym_DASH_DASH] = ACTIONS(311), - [anon_sym_PLUS_PLUS] = ACTIONS(311), - [anon_sym_sizeof] = ACTIONS(313), - [sym_number_literal] = ACTIONS(311), - [anon_sym_SQUOTE] = ACTIONS(311), - [anon_sym_DQUOTE] = ACTIONS(311), - [sym_true] = ACTIONS(313), - [sym_false] = ACTIONS(313), - [sym_null] = ACTIONS(313), - [sym_identifier] = ACTIONS(313), - [sym_comment] = ACTIONS(37), + [sym_type_qualifier] = STATE(136), + [sym__type_specifier] = STATE(454), + [sym_sized_type_specifier] = STATE(454), + [sym_enum_specifier] = STATE(454), + [sym_struct_specifier] = STATE(454), + [sym_union_specifier] = STATE(454), + [sym_macro_type_specifier] = STATE(454), + [aux_sym_type_definition_repeat1] = STATE(136), + [aux_sym_sized_type_specifier_repeat1] = STATE(42), + [anon_sym_const] = ACTIONS(27), + [anon_sym_restrict] = ACTIONS(27), + [anon_sym_volatile] = ACTIONS(27), + [anon_sym__Atomic] = ACTIONS(27), + [anon_sym_unsigned] = ACTIONS(77), + [anon_sym_long] = ACTIONS(77), + [anon_sym_short] = ACTIONS(77), + [sym_primitive_type] = ACTIONS(1175), + [anon_sym_enum] = ACTIONS(33), + [anon_sym_struct] = ACTIONS(35), + [anon_sym_union] = ACTIONS(37), + [sym_identifier] = ACTIONS(81), + [sym_comment] = ACTIONS(59), }, [262] = { - [aux_sym_string_literal_repeat1] = STATE(124), - [anon_sym_DQUOTE] = ACTIONS(1145), - [aux_sym_SLASH_LBRACK_CARET_BSLASH_BSLASH_DQUOTE_BSLASHn_RBRACK_SLASH] = ACTIONS(317), - [sym_escape_sequence] = ACTIONS(317), - [sym_comment] = ACTIONS(47), + [sym_function_definition] = STATE(456), + [sym_declaration] = STATE(456), + [sym__declaration_specifiers] = STATE(457), + [sym_declaration_list] = STATE(456), + [sym_storage_class_specifier] = STATE(142), + [sym_type_qualifier] = STATE(142), + [sym__type_specifier] = STATE(141), + [sym_sized_type_specifier] = STATE(141), + [sym_enum_specifier] = STATE(141), + [sym_struct_specifier] = STATE(141), + [sym_union_specifier] = STATE(141), + [sym_macro_type_specifier] = STATE(141), + [aux_sym__declaration_specifiers_repeat1] = STATE(142), + [aux_sym_sized_type_specifier_repeat1] = STATE(143), + [anon_sym_extern] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(1177), + [anon_sym_static] = ACTIONS(25), + [anon_sym_auto] = ACTIONS(25), + [anon_sym_register] = ACTIONS(25), + [anon_sym_inline] = ACTIONS(25), + [anon_sym_const] = ACTIONS(27), + [anon_sym_restrict] = ACTIONS(27), + [anon_sym_volatile] = ACTIONS(27), + [anon_sym__Atomic] = ACTIONS(27), + [anon_sym_unsigned] = ACTIONS(294), + [anon_sym_long] = ACTIONS(294), + [anon_sym_short] = ACTIONS(294), + [sym_primitive_type] = ACTIONS(296), + [anon_sym_enum] = ACTIONS(33), + [anon_sym_struct] = ACTIONS(35), + [anon_sym_union] = ACTIONS(37), + [sym_identifier] = ACTIONS(81), + [sym_comment] = ACTIONS(59), }, [263] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(321), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(321), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(321), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(321), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(321), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(321), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(321), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(321), - [sym_preproc_directive] = ACTIONS(321), - [anon_sym_SEMI] = ACTIONS(319), - [anon_sym_typedef] = ACTIONS(321), - [anon_sym_extern] = ACTIONS(321), - [anon_sym_LBRACE] = ACTIONS(319), - [anon_sym_LPAREN2] = ACTIONS(319), - [anon_sym_STAR] = ACTIONS(319), - [anon_sym_static] = ACTIONS(321), - [anon_sym_auto] = ACTIONS(321), - [anon_sym_register] = ACTIONS(321), - [anon_sym_inline] = ACTIONS(321), - [anon_sym_const] = ACTIONS(321), - [anon_sym_restrict] = ACTIONS(321), - [anon_sym_volatile] = ACTIONS(321), - [anon_sym__Atomic] = ACTIONS(321), - [anon_sym_unsigned] = ACTIONS(321), - [anon_sym_long] = ACTIONS(321), - [anon_sym_short] = ACTIONS(321), - [sym_primitive_type] = ACTIONS(321), - [anon_sym_enum] = ACTIONS(321), - [anon_sym_struct] = ACTIONS(321), - [anon_sym_union] = ACTIONS(321), - [anon_sym_if] = ACTIONS(321), - [anon_sym_switch] = ACTIONS(321), - [anon_sym_case] = ACTIONS(321), - [anon_sym_default] = ACTIONS(321), - [anon_sym_while] = ACTIONS(321), - [anon_sym_do] = ACTIONS(321), - [anon_sym_for] = ACTIONS(321), - [anon_sym_return] = ACTIONS(321), - [anon_sym_break] = ACTIONS(321), - [anon_sym_continue] = ACTIONS(321), - [anon_sym_goto] = ACTIONS(321), - [anon_sym_AMP] = ACTIONS(319), - [anon_sym_BANG] = ACTIONS(319), - [anon_sym_TILDE] = ACTIONS(319), - [anon_sym_PLUS] = ACTIONS(321), - [anon_sym_DASH] = ACTIONS(321), - [anon_sym_DASH_DASH] = ACTIONS(319), - [anon_sym_PLUS_PLUS] = ACTIONS(319), - [anon_sym_sizeof] = ACTIONS(321), - [sym_number_literal] = ACTIONS(319), - [anon_sym_SQUOTE] = ACTIONS(319), - [anon_sym_DQUOTE] = ACTIONS(319), - [sym_true] = ACTIONS(321), - [sym_false] = ACTIONS(321), - [sym_null] = ACTIONS(321), - [sym_identifier] = ACTIONS(321), - [sym_comment] = ACTIONS(37), + [ts_builtin_sym_end] = ACTIONS(1179), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1181), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1181), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1181), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1181), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1181), + [sym_preproc_directive] = ACTIONS(1181), + [anon_sym_typedef] = ACTIONS(1181), + [anon_sym_extern] = ACTIONS(1181), + [anon_sym_RBRACE] = ACTIONS(1179), + [anon_sym_LPAREN2] = ACTIONS(1179), + [anon_sym_STAR] = ACTIONS(1179), + [anon_sym_static] = ACTIONS(1181), + [anon_sym_auto] = ACTIONS(1181), + [anon_sym_register] = ACTIONS(1181), + [anon_sym_inline] = ACTIONS(1181), + [anon_sym_const] = ACTIONS(1181), + [anon_sym_restrict] = ACTIONS(1181), + [anon_sym_volatile] = ACTIONS(1181), + [anon_sym__Atomic] = ACTIONS(1181), + [anon_sym_unsigned] = ACTIONS(1181), + [anon_sym_long] = ACTIONS(1181), + [anon_sym_short] = ACTIONS(1181), + [sym_primitive_type] = ACTIONS(1181), + [anon_sym_enum] = ACTIONS(1181), + [anon_sym_struct] = ACTIONS(1181), + [anon_sym_union] = ACTIONS(1181), + [anon_sym_AMP] = ACTIONS(1179), + [anon_sym_BANG] = ACTIONS(1179), + [anon_sym_TILDE] = ACTIONS(1179), + [anon_sym_PLUS] = ACTIONS(1181), + [anon_sym_DASH] = ACTIONS(1181), + [anon_sym_DASH_DASH] = ACTIONS(1179), + [anon_sym_PLUS_PLUS] = ACTIONS(1179), + [anon_sym_sizeof] = ACTIONS(1181), + [sym_number_literal] = ACTIONS(1179), + [anon_sym_SQUOTE] = ACTIONS(1179), + [anon_sym_DQUOTE] = ACTIONS(1179), + [sym_true] = ACTIONS(1181), + [sym_false] = ACTIONS(1181), + [sym_null] = ACTIONS(1181), + [sym_identifier] = ACTIONS(1181), + [sym_comment] = ACTIONS(59), }, [264] = { - [anon_sym_LF] = ACTIONS(1147), - [sym_comment] = ACTIONS(47), + [anon_sym_SEMI] = ACTIONS(425), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(427), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(427), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(427), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(427), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(427), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(427), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(427), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(427), + [sym_preproc_directive] = ACTIONS(427), + [anon_sym_typedef] = ACTIONS(427), + [anon_sym_extern] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(425), + [anon_sym_LPAREN2] = ACTIONS(425), + [anon_sym_STAR] = ACTIONS(425), + [anon_sym_static] = ACTIONS(427), + [anon_sym_auto] = ACTIONS(427), + [anon_sym_register] = ACTIONS(427), + [anon_sym_inline] = ACTIONS(427), + [anon_sym_const] = ACTIONS(427), + [anon_sym_restrict] = ACTIONS(427), + [anon_sym_volatile] = ACTIONS(427), + [anon_sym__Atomic] = ACTIONS(427), + [anon_sym_unsigned] = ACTIONS(427), + [anon_sym_long] = ACTIONS(427), + [anon_sym_short] = ACTIONS(427), + [sym_primitive_type] = ACTIONS(427), + [anon_sym_enum] = ACTIONS(427), + [anon_sym_struct] = ACTIONS(427), + [anon_sym_union] = ACTIONS(427), + [anon_sym_if] = ACTIONS(427), + [anon_sym_switch] = ACTIONS(427), + [anon_sym_case] = ACTIONS(427), + [anon_sym_default] = ACTIONS(427), + [anon_sym_while] = ACTIONS(427), + [anon_sym_do] = ACTIONS(427), + [anon_sym_for] = ACTIONS(427), + [anon_sym_return] = ACTIONS(427), + [anon_sym_break] = ACTIONS(427), + [anon_sym_continue] = ACTIONS(427), + [anon_sym_goto] = ACTIONS(427), + [anon_sym_AMP] = ACTIONS(425), + [anon_sym_BANG] = ACTIONS(425), + [anon_sym_TILDE] = ACTIONS(425), + [anon_sym_PLUS] = ACTIONS(427), + [anon_sym_DASH] = ACTIONS(427), + [anon_sym_DASH_DASH] = ACTIONS(425), + [anon_sym_PLUS_PLUS] = ACTIONS(425), + [anon_sym_sizeof] = ACTIONS(427), + [sym_number_literal] = ACTIONS(425), + [anon_sym_SQUOTE] = ACTIONS(425), + [anon_sym_DQUOTE] = ACTIONS(425), + [sym_true] = ACTIONS(427), + [sym_false] = ACTIONS(427), + [sym_null] = ACTIONS(427), + [sym_identifier] = ACTIONS(427), + [sym_comment] = ACTIONS(59), }, [265] = { - [anon_sym_LF] = ACTIONS(1149), - [sym_preproc_arg] = ACTIONS(1151), - [sym_comment] = ACTIONS(47), + [sym_compound_statement] = STATE(460), + [sym_parameter_list] = STATE(201), + [aux_sym_declaration_repeat1] = STATE(461), + [anon_sym_SEMI] = ACTIONS(1183), + [anon_sym_COMMA] = ACTIONS(437), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_LPAREN2] = ACTIONS(441), + [anon_sym_LBRACK] = ACTIONS(443), + [anon_sym_EQ] = ACTIONS(445), + [sym_comment] = ACTIONS(59), }, [266] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(343), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(343), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(343), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(343), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(343), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(343), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(343), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(343), - [sym_preproc_directive] = ACTIONS(343), - [anon_sym_typedef] = ACTIONS(343), - [anon_sym_extern] = ACTIONS(343), - [anon_sym_static] = ACTIONS(343), - [anon_sym_auto] = ACTIONS(343), - [anon_sym_register] = ACTIONS(343), - [anon_sym_inline] = ACTIONS(343), - [anon_sym_const] = ACTIONS(343), - [anon_sym_restrict] = ACTIONS(343), - [anon_sym_volatile] = ACTIONS(343), - [anon_sym__Atomic] = ACTIONS(343), - [anon_sym_unsigned] = ACTIONS(343), - [anon_sym_long] = ACTIONS(343), - [anon_sym_short] = ACTIONS(343), - [sym_primitive_type] = ACTIONS(343), - [anon_sym_enum] = ACTIONS(343), - [anon_sym_struct] = ACTIONS(343), - [anon_sym_union] = ACTIONS(343), - [sym_identifier] = ACTIONS(343), - [sym_comment] = ACTIONS(37), + [aux_sym_declaration_repeat1] = STATE(461), + [anon_sym_SEMI] = ACTIONS(1183), + [anon_sym_COMMA] = ACTIONS(437), + [sym_comment] = ACTIONS(59), }, [267] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1153), - [sym_comment] = ACTIONS(37), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(545), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(545), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(545), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(545), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(545), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(545), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(545), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(545), + [sym_preproc_directive] = ACTIONS(545), + [anon_sym_typedef] = ACTIONS(545), + [anon_sym_extern] = ACTIONS(545), + [anon_sym_LPAREN2] = ACTIONS(543), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_static] = ACTIONS(545), + [anon_sym_auto] = ACTIONS(545), + [anon_sym_register] = ACTIONS(545), + [anon_sym_inline] = ACTIONS(545), + [anon_sym_const] = ACTIONS(545), + [anon_sym_restrict] = ACTIONS(545), + [anon_sym_volatile] = ACTIONS(545), + [anon_sym__Atomic] = ACTIONS(545), + [anon_sym_unsigned] = ACTIONS(545), + [anon_sym_long] = ACTIONS(545), + [anon_sym_short] = ACTIONS(545), + [sym_primitive_type] = ACTIONS(545), + [anon_sym_enum] = ACTIONS(545), + [anon_sym_struct] = ACTIONS(545), + [anon_sym_union] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(543), + [anon_sym_BANG] = ACTIONS(543), + [anon_sym_TILDE] = ACTIONS(543), + [anon_sym_PLUS] = ACTIONS(545), + [anon_sym_DASH] = ACTIONS(545), + [anon_sym_DASH_DASH] = ACTIONS(543), + [anon_sym_PLUS_PLUS] = ACTIONS(543), + [anon_sym_sizeof] = ACTIONS(545), + [sym_number_literal] = ACTIONS(543), + [anon_sym_SQUOTE] = ACTIONS(543), + [anon_sym_DQUOTE] = ACTIONS(543), + [sym_true] = ACTIONS(545), + [sym_false] = ACTIONS(545), + [sym_null] = ACTIONS(545), + [sym_identifier] = ACTIONS(545), + [sym_comment] = ACTIONS(59), }, [268] = { - [sym_preproc_include] = STATE(155), - [sym_preproc_def] = STATE(155), - [sym_preproc_function_def] = STATE(155), - [sym_preproc_call] = STATE(155), - [sym_preproc_if] = STATE(155), - [sym_preproc_ifdef] = STATE(155), - [sym_preproc_else] = STATE(480), - [sym_preproc_elif] = STATE(480), - [sym_function_definition] = STATE(155), - [sym_declaration] = STATE(155), - [sym_type_definition] = STATE(155), - [sym__declaration_specifiers] = STATE(70), - [sym_linkage_specification] = STATE(155), - [sym_storage_class_specifier] = STATE(19), - [sym_type_qualifier] = STATE(19), - [sym__type_specifier] = STATE(17), - [sym_sized_type_specifier] = STATE(17), - [sym_enum_specifier] = STATE(17), - [sym_struct_specifier] = STATE(17), - [sym_union_specifier] = STATE(17), - [sym__empty_declaration] = STATE(155), - [sym_macro_type_specifier] = STATE(17), - [aux_sym_translation_unit_repeat1] = STATE(155), - [aux_sym__declaration_specifiers_repeat1] = STATE(19), - [aux_sym_sized_type_specifier_repeat1] = STATE(20), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(127), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(129), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(131), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1155), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(135), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(135), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(137), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(139), - [sym_preproc_directive] = ACTIONS(141), - [anon_sym_typedef] = ACTIONS(143), - [anon_sym_extern] = ACTIONS(145), - [anon_sym_static] = ACTIONS(21), - [anon_sym_auto] = ACTIONS(21), - [anon_sym_register] = ACTIONS(21), - [anon_sym_inline] = ACTIONS(21), - [anon_sym_const] = ACTIONS(23), - [anon_sym_restrict] = ACTIONS(23), - [anon_sym_volatile] = ACTIONS(23), - [anon_sym__Atomic] = ACTIONS(23), - [anon_sym_unsigned] = ACTIONS(25), - [anon_sym_long] = ACTIONS(25), - [anon_sym_short] = ACTIONS(25), - [sym_primitive_type] = ACTIONS(27), - [anon_sym_enum] = ACTIONS(29), - [anon_sym_struct] = ACTIONS(31), - [anon_sym_union] = ACTIONS(33), - [sym_identifier] = ACTIONS(35), - [sym_comment] = ACTIONS(37), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1187), + [sym_comment] = ACTIONS(59), }, [269] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(381), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(381), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(381), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(381), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(381), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(381), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(381), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(381), - [sym_preproc_directive] = ACTIONS(381), - [anon_sym_typedef] = ACTIONS(381), - [anon_sym_extern] = ACTIONS(381), - [anon_sym_static] = ACTIONS(381), - [anon_sym_auto] = ACTIONS(381), - [anon_sym_register] = ACTIONS(381), - [anon_sym_inline] = ACTIONS(381), - [anon_sym_const] = ACTIONS(381), - [anon_sym_restrict] = ACTIONS(381), - [anon_sym_volatile] = ACTIONS(381), - [anon_sym__Atomic] = ACTIONS(381), - [anon_sym_unsigned] = ACTIONS(381), - [anon_sym_long] = ACTIONS(381), - [anon_sym_short] = ACTIONS(381), - [sym_primitive_type] = ACTIONS(381), - [anon_sym_enum] = ACTIONS(381), - [anon_sym_struct] = ACTIONS(381), - [anon_sym_union] = ACTIONS(381), - [sym_identifier] = ACTIONS(381), - [sym_comment] = ACTIONS(37), + [sym_preproc_include] = STATE(269), + [sym_preproc_def] = STATE(269), + [sym_preproc_function_def] = STATE(269), + [sym_preproc_call] = STATE(269), + [sym_preproc_if] = STATE(269), + [sym_preproc_ifdef] = STATE(269), + [sym_function_definition] = STATE(269), + [sym_declaration] = STATE(269), + [sym_type_definition] = STATE(269), + [sym__declaration_specifiers] = STATE(124), + [sym_linkage_specification] = STATE(269), + [sym_storage_class_specifier] = STATE(30), + [sym_type_qualifier] = STATE(30), + [sym__type_specifier] = STATE(25), + [sym_sized_type_specifier] = STATE(25), + [sym_enum_specifier] = STATE(25), + [sym_struct_specifier] = STATE(25), + [sym_union_specifier] = STATE(25), + [sym__expression] = STATE(26), + [sym_conditional_expression] = STATE(26), + [sym_assignment_expression] = STATE(26), + [sym_pointer_expression] = STATE(26), + [sym_logical_expression] = STATE(26), + [sym_bitwise_expression] = STATE(26), + [sym_equality_expression] = STATE(26), + [sym_relational_expression] = STATE(26), + [sym_shift_expression] = STATE(26), + [sym_math_expression] = STATE(26), + [sym_cast_expression] = STATE(26), + [sym_sizeof_expression] = STATE(26), + [sym_subscript_expression] = STATE(26), + [sym_call_expression] = STATE(125), + [sym_field_expression] = STATE(26), + [sym_compound_literal_expression] = STATE(26), + [sym_parenthesized_expression] = STATE(26), + [sym_char_literal] = STATE(26), + [sym_concatenated_string] = STATE(26), + [sym_string_literal] = STATE(28), + [sym__empty_declaration] = STATE(269), + [sym_macro_type_specifier] = STATE(25), + [aux_sym_translation_unit_repeat1] = STATE(269), + [aux_sym__declaration_specifiers_repeat1] = STATE(30), + [aux_sym_sized_type_specifier_repeat1] = STATE(31), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1189), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1192), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1195), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(545), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1198), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1198), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(545), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(545), + [sym_preproc_directive] = ACTIONS(1201), + [anon_sym_typedef] = ACTIONS(1204), + [anon_sym_extern] = ACTIONS(1207), + [anon_sym_LPAREN2] = ACTIONS(572), + [anon_sym_STAR] = ACTIONS(575), + [anon_sym_static] = ACTIONS(578), + [anon_sym_auto] = ACTIONS(578), + [anon_sym_register] = ACTIONS(578), + [anon_sym_inline] = ACTIONS(578), + [anon_sym_const] = ACTIONS(581), + [anon_sym_restrict] = ACTIONS(581), + [anon_sym_volatile] = ACTIONS(581), + [anon_sym__Atomic] = ACTIONS(581), + [anon_sym_unsigned] = ACTIONS(584), + [anon_sym_long] = ACTIONS(584), + [anon_sym_short] = ACTIONS(584), + [sym_primitive_type] = ACTIONS(587), + [anon_sym_enum] = ACTIONS(590), + [anon_sym_struct] = ACTIONS(593), + [anon_sym_union] = ACTIONS(596), + [anon_sym_AMP] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(599), + [anon_sym_TILDE] = ACTIONS(602), + [anon_sym_PLUS] = ACTIONS(605), + [anon_sym_DASH] = ACTIONS(605), + [anon_sym_DASH_DASH] = ACTIONS(608), + [anon_sym_PLUS_PLUS] = ACTIONS(608), + [anon_sym_sizeof] = ACTIONS(611), + [sym_number_literal] = ACTIONS(614), + [anon_sym_SQUOTE] = ACTIONS(617), + [anon_sym_DQUOTE] = ACTIONS(620), + [sym_true] = ACTIONS(623), + [sym_false] = ACTIONS(623), + [sym_null] = ACTIONS(623), + [sym_identifier] = ACTIONS(626), + [sym_comment] = ACTIONS(59), }, [270] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1157), - [sym_comment] = ACTIONS(37), + [ts_builtin_sym_end] = ACTIONS(1210), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1212), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1212), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1212), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1212), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1212), + [sym_preproc_directive] = ACTIONS(1212), + [anon_sym_typedef] = ACTIONS(1212), + [anon_sym_extern] = ACTIONS(1212), + [anon_sym_RBRACE] = ACTIONS(1210), + [anon_sym_LPAREN2] = ACTIONS(1210), + [anon_sym_STAR] = ACTIONS(1210), + [anon_sym_static] = ACTIONS(1212), + [anon_sym_auto] = ACTIONS(1212), + [anon_sym_register] = ACTIONS(1212), + [anon_sym_inline] = ACTIONS(1212), + [anon_sym_const] = ACTIONS(1212), + [anon_sym_restrict] = ACTIONS(1212), + [anon_sym_volatile] = ACTIONS(1212), + [anon_sym__Atomic] = ACTIONS(1212), + [anon_sym_unsigned] = ACTIONS(1212), + [anon_sym_long] = ACTIONS(1212), + [anon_sym_short] = ACTIONS(1212), + [sym_primitive_type] = ACTIONS(1212), + [anon_sym_enum] = ACTIONS(1212), + [anon_sym_struct] = ACTIONS(1212), + [anon_sym_union] = ACTIONS(1212), + [anon_sym_AMP] = ACTIONS(1210), + [anon_sym_BANG] = ACTIONS(1210), + [anon_sym_TILDE] = ACTIONS(1210), + [anon_sym_PLUS] = ACTIONS(1212), + [anon_sym_DASH] = ACTIONS(1212), + [anon_sym_DASH_DASH] = ACTIONS(1210), + [anon_sym_PLUS_PLUS] = ACTIONS(1210), + [anon_sym_sizeof] = ACTIONS(1212), + [sym_number_literal] = ACTIONS(1210), + [anon_sym_SQUOTE] = ACTIONS(1210), + [anon_sym_DQUOTE] = ACTIONS(1210), + [sym_true] = ACTIONS(1212), + [sym_false] = ACTIONS(1212), + [sym_null] = ACTIONS(1212), + [sym_identifier] = ACTIONS(1212), + [sym_comment] = ACTIONS(59), }, [271] = { - [sym_preproc_include] = STATE(155), - [sym_preproc_def] = STATE(155), - [sym_preproc_function_def] = STATE(155), - [sym_preproc_call] = STATE(155), - [sym_preproc_if] = STATE(155), - [sym_preproc_ifdef] = STATE(155), - [sym_preproc_else] = STATE(482), - [sym_preproc_elif] = STATE(482), - [sym_function_definition] = STATE(155), - [sym_declaration] = STATE(155), - [sym_type_definition] = STATE(155), - [sym__declaration_specifiers] = STATE(70), - [sym_linkage_specification] = STATE(155), - [sym_storage_class_specifier] = STATE(19), - [sym_type_qualifier] = STATE(19), - [sym__type_specifier] = STATE(17), - [sym_sized_type_specifier] = STATE(17), - [sym_enum_specifier] = STATE(17), - [sym_struct_specifier] = STATE(17), - [sym_union_specifier] = STATE(17), - [sym__empty_declaration] = STATE(155), - [sym_macro_type_specifier] = STATE(17), - [aux_sym_translation_unit_repeat1] = STATE(155), - [aux_sym__declaration_specifiers_repeat1] = STATE(19), - [aux_sym_sized_type_specifier_repeat1] = STATE(20), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(127), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(129), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(131), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1159), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(135), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(135), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(137), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(139), - [sym_preproc_directive] = ACTIONS(141), - [anon_sym_typedef] = ACTIONS(143), - [anon_sym_extern] = ACTIONS(145), - [anon_sym_static] = ACTIONS(21), - [anon_sym_auto] = ACTIONS(21), - [anon_sym_register] = ACTIONS(21), - [anon_sym_inline] = ACTIONS(21), - [anon_sym_const] = ACTIONS(23), - [anon_sym_restrict] = ACTIONS(23), - [anon_sym_volatile] = ACTIONS(23), - [anon_sym__Atomic] = ACTIONS(23), - [anon_sym_unsigned] = ACTIONS(25), - [anon_sym_long] = ACTIONS(25), - [anon_sym_short] = ACTIONS(25), - [sym_primitive_type] = ACTIONS(27), - [anon_sym_enum] = ACTIONS(29), - [anon_sym_struct] = ACTIONS(31), - [anon_sym_union] = ACTIONS(33), - [sym_identifier] = ACTIONS(35), - [sym_comment] = ACTIONS(37), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1214), + [sym_comment] = ACTIONS(59), }, [272] = { - [aux_sym_string_literal_repeat1] = STATE(484), - [anon_sym_DQUOTE] = ACTIONS(1161), - [aux_sym_SLASH_LBRACK_CARET_BSLASH_BSLASH_DQUOTE_BSLASHn_RBRACK_SLASH] = ACTIONS(1163), - [sym_escape_sequence] = ACTIONS(1163), - [sym_comment] = ACTIONS(47), + [sym__type_declarator] = STATE(274), + [sym_pointer_type_declarator] = STATE(274), + [sym_function_type_declarator] = STATE(274), + [sym_array_type_declarator] = STATE(274), + [sym_type_qualifier] = STATE(464), + [aux_sym_type_definition_repeat1] = STATE(464), + [anon_sym_LPAREN2] = ACTIONS(282), + [anon_sym_STAR] = ACTIONS(728), + [anon_sym_const] = ACTIONS(27), + [anon_sym_restrict] = ACTIONS(27), + [anon_sym_volatile] = ACTIONS(27), + [anon_sym__Atomic] = ACTIONS(27), + [sym_identifier] = ACTIONS(730), + [sym_comment] = ACTIONS(59), }, [273] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(119), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(119), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(119), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(119), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(119), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(119), - [sym_preproc_directive] = ACTIONS(119), - [anon_sym_SEMI] = ACTIONS(117), - [anon_sym_typedef] = ACTIONS(119), - [anon_sym_extern] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(117), - [anon_sym_LPAREN2] = ACTIONS(117), - [anon_sym_STAR] = ACTIONS(117), - [anon_sym_static] = ACTIONS(119), - [anon_sym_auto] = ACTIONS(119), - [anon_sym_register] = ACTIONS(119), - [anon_sym_inline] = ACTIONS(119), - [anon_sym_const] = ACTIONS(119), - [anon_sym_restrict] = ACTIONS(119), - [anon_sym_volatile] = ACTIONS(119), - [anon_sym__Atomic] = ACTIONS(119), - [anon_sym_unsigned] = ACTIONS(119), - [anon_sym_long] = ACTIONS(119), - [anon_sym_short] = ACTIONS(119), - [sym_primitive_type] = ACTIONS(119), - [anon_sym_enum] = ACTIONS(119), - [anon_sym_struct] = ACTIONS(119), - [anon_sym_union] = ACTIONS(119), - [anon_sym_if] = ACTIONS(119), - [anon_sym_switch] = ACTIONS(119), - [anon_sym_case] = ACTIONS(119), - [anon_sym_default] = ACTIONS(119), - [anon_sym_while] = ACTIONS(119), - [anon_sym_do] = ACTIONS(119), - [anon_sym_for] = ACTIONS(119), - [anon_sym_return] = ACTIONS(119), - [anon_sym_break] = ACTIONS(119), - [anon_sym_continue] = ACTIONS(119), - [anon_sym_goto] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(117), - [anon_sym_TILDE] = ACTIONS(117), - [anon_sym_PLUS] = ACTIONS(119), - [anon_sym_DASH] = ACTIONS(119), - [anon_sym_DASH_DASH] = ACTIONS(117), - [anon_sym_PLUS_PLUS] = ACTIONS(117), - [anon_sym_sizeof] = ACTIONS(119), - [sym_number_literal] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_DQUOTE] = ACTIONS(117), - [sym_true] = ACTIONS(119), - [sym_false] = ACTIONS(119), - [sym_null] = ACTIONS(119), - [sym_identifier] = ACTIONS(119), - [sym_comment] = ACTIONS(37), + [sym_parameter_list] = STATE(278), + [anon_sym_RPAREN] = ACTIONS(1216), + [anon_sym_LPAREN2] = ACTIONS(441), + [anon_sym_LBRACK] = ACTIONS(736), + [sym_comment] = ACTIONS(59), }, [274] = { - [sym_preproc_params] = STATE(487), - [anon_sym_LF] = ACTIONS(1165), - [anon_sym_LPAREN] = ACTIONS(123), - [sym_preproc_arg] = ACTIONS(1167), - [sym_comment] = ACTIONS(47), + [sym_parameter_list] = STATE(278), + [anon_sym_SEMI] = ACTIONS(1218), + [anon_sym_RPAREN] = ACTIONS(1218), + [anon_sym_LPAREN2] = ACTIONS(441), + [anon_sym_LBRACK] = ACTIONS(736), + [sym_comment] = ACTIONS(59), }, [275] = { - [sym_preproc_include] = STATE(490), - [sym_preproc_def] = STATE(490), - [sym_preproc_function_def] = STATE(490), - [sym_preproc_call] = STATE(490), - [sym_preproc_if] = STATE(490), - [sym_preproc_ifdef] = STATE(490), - [sym_preproc_else] = STATE(489), - [sym_preproc_elif] = STATE(489), - [sym_function_definition] = STATE(490), - [sym_declaration] = STATE(490), - [sym_type_definition] = STATE(490), - [sym__declaration_specifiers] = STATE(70), - [sym_linkage_specification] = STATE(490), - [sym_storage_class_specifier] = STATE(19), - [sym_type_qualifier] = STATE(19), - [sym__type_specifier] = STATE(17), - [sym_sized_type_specifier] = STATE(17), - [sym_enum_specifier] = STATE(17), - [sym_struct_specifier] = STATE(17), - [sym_union_specifier] = STATE(17), - [sym__empty_declaration] = STATE(490), - [sym_macro_type_specifier] = STATE(17), - [aux_sym_translation_unit_repeat1] = STATE(490), - [aux_sym__declaration_specifiers_repeat1] = STATE(19), - [aux_sym_sized_type_specifier_repeat1] = STATE(20), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(127), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(129), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(131), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1169), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(135), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(135), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(137), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(139), - [sym_preproc_directive] = ACTIONS(141), - [anon_sym_typedef] = ACTIONS(143), - [anon_sym_extern] = ACTIONS(145), - [anon_sym_static] = ACTIONS(21), - [anon_sym_auto] = ACTIONS(21), - [anon_sym_register] = ACTIONS(21), - [anon_sym_inline] = ACTIONS(21), - [anon_sym_const] = ACTIONS(23), - [anon_sym_restrict] = ACTIONS(23), - [anon_sym_volatile] = ACTIONS(23), - [anon_sym__Atomic] = ACTIONS(23), - [anon_sym_unsigned] = ACTIONS(25), - [anon_sym_long] = ACTIONS(25), - [anon_sym_short] = ACTIONS(25), - [sym_primitive_type] = ACTIONS(27), - [anon_sym_enum] = ACTIONS(29), - [anon_sym_struct] = ACTIONS(31), - [anon_sym_union] = ACTIONS(33), - [sym_identifier] = ACTIONS(35), - [sym_comment] = ACTIONS(37), + [sym__type_declarator] = STATE(466), + [sym_pointer_type_declarator] = STATE(466), + [sym_function_type_declarator] = STATE(466), + [sym_array_type_declarator] = STATE(466), + [sym_type_qualifier] = STATE(345), + [aux_sym_type_definition_repeat1] = STATE(345), + [anon_sym_LPAREN2] = ACTIONS(282), + [anon_sym_STAR] = ACTIONS(284), + [anon_sym_const] = ACTIONS(27), + [anon_sym_restrict] = ACTIONS(27), + [anon_sym_volatile] = ACTIONS(27), + [anon_sym__Atomic] = ACTIONS(27), + [sym_identifier] = ACTIONS(730), + [sym_comment] = ACTIONS(59), }, [276] = { - [sym_preproc_include] = STATE(493), - [sym_preproc_def] = STATE(493), - [sym_preproc_function_def] = STATE(493), - [sym_preproc_call] = STATE(493), - [sym_preproc_if] = STATE(493), - [sym_preproc_ifdef] = STATE(493), - [sym_preproc_else] = STATE(492), - [sym_preproc_elif] = STATE(492), - [sym_function_definition] = STATE(493), - [sym_declaration] = STATE(493), - [sym_type_definition] = STATE(493), - [sym__declaration_specifiers] = STATE(70), - [sym_linkage_specification] = STATE(493), - [sym_storage_class_specifier] = STATE(19), - [sym_type_qualifier] = STATE(19), - [sym__type_specifier] = STATE(17), - [sym_sized_type_specifier] = STATE(17), - [sym_enum_specifier] = STATE(17), - [sym_struct_specifier] = STATE(17), - [sym_union_specifier] = STATE(17), - [sym__empty_declaration] = STATE(493), - [sym_macro_type_specifier] = STATE(17), - [aux_sym_translation_unit_repeat1] = STATE(493), - [aux_sym__declaration_specifiers_repeat1] = STATE(19), - [aux_sym_sized_type_specifier_repeat1] = STATE(20), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(127), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(129), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(131), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1171), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(135), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(135), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(137), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(139), - [sym_preproc_directive] = ACTIONS(141), - [anon_sym_typedef] = ACTIONS(143), - [anon_sym_extern] = ACTIONS(145), - [anon_sym_static] = ACTIONS(21), - [anon_sym_auto] = ACTIONS(21), - [anon_sym_register] = ACTIONS(21), - [anon_sym_inline] = ACTIONS(21), - [anon_sym_const] = ACTIONS(23), - [anon_sym_restrict] = ACTIONS(23), - [anon_sym_volatile] = ACTIONS(23), - [anon_sym__Atomic] = ACTIONS(23), - [anon_sym_unsigned] = ACTIONS(25), - [anon_sym_long] = ACTIONS(25), - [anon_sym_short] = ACTIONS(25), - [sym_primitive_type] = ACTIONS(27), - [anon_sym_enum] = ACTIONS(29), - [anon_sym_struct] = ACTIONS(31), - [anon_sym_union] = ACTIONS(33), - [sym_identifier] = ACTIONS(35), - [sym_comment] = ACTIONS(37), + [ts_builtin_sym_end] = ACTIONS(1220), + [anon_sym_SEMI] = ACTIONS(1220), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1222), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1222), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1222), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1222), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1222), + [sym_preproc_directive] = ACTIONS(1222), + [anon_sym_typedef] = ACTIONS(1222), + [anon_sym_extern] = ACTIONS(1222), + [anon_sym_LBRACE] = ACTIONS(1220), + [anon_sym_RBRACE] = ACTIONS(1220), + [anon_sym_LPAREN2] = ACTIONS(1220), + [anon_sym_STAR] = ACTIONS(1220), + [anon_sym_static] = ACTIONS(1222), + [anon_sym_auto] = ACTIONS(1222), + [anon_sym_register] = ACTIONS(1222), + [anon_sym_inline] = ACTIONS(1222), + [anon_sym_const] = ACTIONS(1222), + [anon_sym_restrict] = ACTIONS(1222), + [anon_sym_volatile] = ACTIONS(1222), + [anon_sym__Atomic] = ACTIONS(1222), + [anon_sym_unsigned] = ACTIONS(1222), + [anon_sym_long] = ACTIONS(1222), + [anon_sym_short] = ACTIONS(1222), + [sym_primitive_type] = ACTIONS(1222), + [anon_sym_enum] = ACTIONS(1222), + [anon_sym_struct] = ACTIONS(1222), + [anon_sym_union] = ACTIONS(1222), + [anon_sym_if] = ACTIONS(1222), + [anon_sym_else] = ACTIONS(1222), + [anon_sym_switch] = ACTIONS(1222), + [anon_sym_case] = ACTIONS(1222), + [anon_sym_default] = ACTIONS(1222), + [anon_sym_while] = ACTIONS(1222), + [anon_sym_do] = ACTIONS(1222), + [anon_sym_for] = ACTIONS(1222), + [anon_sym_return] = ACTIONS(1222), + [anon_sym_break] = ACTIONS(1222), + [anon_sym_continue] = ACTIONS(1222), + [anon_sym_goto] = ACTIONS(1222), + [anon_sym_AMP] = ACTIONS(1220), + [anon_sym_BANG] = ACTIONS(1220), + [anon_sym_TILDE] = ACTIONS(1220), + [anon_sym_PLUS] = ACTIONS(1222), + [anon_sym_DASH] = ACTIONS(1222), + [anon_sym_DASH_DASH] = ACTIONS(1220), + [anon_sym_PLUS_PLUS] = ACTIONS(1220), + [anon_sym_sizeof] = ACTIONS(1222), + [sym_number_literal] = ACTIONS(1220), + [anon_sym_SQUOTE] = ACTIONS(1220), + [anon_sym_DQUOTE] = ACTIONS(1220), + [sym_true] = ACTIONS(1222), + [sym_false] = ACTIONS(1222), + [sym_null] = ACTIONS(1222), + [sym_identifier] = ACTIONS(1222), + [sym_comment] = ACTIONS(59), }, [277] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(151), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(151), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(151), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(151), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(151), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(151), - [sym_preproc_directive] = ACTIONS(151), - [anon_sym_SEMI] = ACTIONS(149), - [anon_sym_typedef] = ACTIONS(151), - [anon_sym_extern] = ACTIONS(151), - [anon_sym_LBRACE] = ACTIONS(149), - [anon_sym_LPAREN2] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(149), - [anon_sym_static] = ACTIONS(151), - [anon_sym_auto] = ACTIONS(151), - [anon_sym_register] = ACTIONS(151), - [anon_sym_inline] = ACTIONS(151), - [anon_sym_const] = ACTIONS(151), - [anon_sym_restrict] = ACTIONS(151), - [anon_sym_volatile] = ACTIONS(151), - [anon_sym__Atomic] = ACTIONS(151), - [anon_sym_unsigned] = ACTIONS(151), - [anon_sym_long] = ACTIONS(151), - [anon_sym_short] = ACTIONS(151), - [sym_primitive_type] = ACTIONS(151), - [anon_sym_enum] = ACTIONS(151), - [anon_sym_struct] = ACTIONS(151), - [anon_sym_union] = ACTIONS(151), - [anon_sym_if] = ACTIONS(151), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_case] = ACTIONS(151), - [anon_sym_default] = ACTIONS(151), - [anon_sym_while] = ACTIONS(151), - [anon_sym_do] = ACTIONS(151), - [anon_sym_for] = ACTIONS(151), - [anon_sym_return] = ACTIONS(151), - [anon_sym_break] = ACTIONS(151), - [anon_sym_continue] = ACTIONS(151), - [anon_sym_goto] = ACTIONS(151), - [anon_sym_AMP] = ACTIONS(149), - [anon_sym_BANG] = ACTIONS(149), - [anon_sym_TILDE] = ACTIONS(149), - [anon_sym_PLUS] = ACTIONS(151), - [anon_sym_DASH] = ACTIONS(151), - [anon_sym_DASH_DASH] = ACTIONS(149), - [anon_sym_PLUS_PLUS] = ACTIONS(149), - [anon_sym_sizeof] = ACTIONS(151), - [sym_number_literal] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(149), - [anon_sym_DQUOTE] = ACTIONS(149), - [sym_true] = ACTIONS(151), - [sym_false] = ACTIONS(151), - [sym_null] = ACTIONS(151), - [sym_identifier] = ACTIONS(151), - [sym_comment] = ACTIONS(37), + [sym__declaration_specifiers] = STATE(468), + [sym_storage_class_specifier] = STATE(301), + [sym_type_qualifier] = STATE(301), + [sym__type_specifier] = STATE(299), + [sym_sized_type_specifier] = STATE(299), + [sym_enum_specifier] = STATE(299), + [sym_struct_specifier] = STATE(299), + [sym_union_specifier] = STATE(299), + [sym__expression] = STATE(469), + [sym_conditional_expression] = STATE(469), + [sym_assignment_expression] = STATE(469), + [sym_pointer_expression] = STATE(469), + [sym_logical_expression] = STATE(469), + [sym_bitwise_expression] = STATE(469), + [sym_equality_expression] = STATE(469), + [sym_relational_expression] = STATE(469), + [sym_shift_expression] = STATE(469), + [sym_math_expression] = STATE(469), + [sym_cast_expression] = STATE(469), + [sym_sizeof_expression] = STATE(469), + [sym_subscript_expression] = STATE(469), + [sym_call_expression] = STATE(469), + [sym_field_expression] = STATE(469), + [sym_compound_literal_expression] = STATE(469), + [sym_parenthesized_expression] = STATE(469), + [sym_char_literal] = STATE(469), + [sym_concatenated_string] = STATE(469), + [sym_string_literal] = STATE(214), + [sym_macro_type_specifier] = STATE(299), + [aux_sym__declaration_specifiers_repeat1] = STATE(301), + [aux_sym_sized_type_specifier_repeat1] = STATE(302), + [anon_sym_extern] = ACTIONS(25), + [anon_sym_LPAREN2] = ACTIONS(461), + [anon_sym_STAR] = ACTIONS(463), + [anon_sym_RBRACK] = ACTIONS(1224), + [anon_sym_static] = ACTIONS(25), + [anon_sym_auto] = ACTIONS(25), + [anon_sym_register] = ACTIONS(25), + [anon_sym_inline] = ACTIONS(25), + [anon_sym_const] = ACTIONS(27), + [anon_sym_restrict] = ACTIONS(27), + [anon_sym_volatile] = ACTIONS(27), + [anon_sym__Atomic] = ACTIONS(27), + [anon_sym_unsigned] = ACTIONS(772), + [anon_sym_long] = ACTIONS(772), + [anon_sym_short] = ACTIONS(772), + [sym_primitive_type] = ACTIONS(774), + [anon_sym_enum] = ACTIONS(33), + [anon_sym_struct] = ACTIONS(35), + [anon_sym_union] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(463), + [anon_sym_BANG] = ACTIONS(465), + [anon_sym_TILDE] = ACTIONS(467), + [anon_sym_PLUS] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(469), + [anon_sym_DASH_DASH] = ACTIONS(471), + [anon_sym_PLUS_PLUS] = ACTIONS(471), + [anon_sym_sizeof] = ACTIONS(473), + [sym_number_literal] = ACTIONS(1226), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(1228), + [sym_false] = ACTIONS(1228), + [sym_null] = ACTIONS(1228), + [sym_identifier] = ACTIONS(780), + [sym_comment] = ACTIONS(59), }, [278] = { - [anon_sym_LF] = ACTIONS(1173), - [sym_comment] = ACTIONS(47), + [anon_sym_SEMI] = ACTIONS(1230), + [anon_sym_RPAREN] = ACTIONS(1230), + [anon_sym_LPAREN2] = ACTIONS(1230), + [anon_sym_LBRACK] = ACTIONS(1230), + [sym_comment] = ACTIONS(59), }, [279] = { - [sym__type_declarator] = STATE(495), - [sym_pointer_type_declarator] = STATE(495), - [sym_function_type_declarator] = STATE(495), - [sym_array_type_declarator] = STATE(495), - [anon_sym_LPAREN2] = ACTIONS(155), - [anon_sym_STAR] = ACTIONS(157), - [sym_identifier] = ACTIONS(159), - [sym_comment] = ACTIONS(37), + [sym_parameter_list] = STATE(278), + [anon_sym_SEMI] = ACTIONS(1232), + [anon_sym_LPAREN2] = ACTIONS(441), + [anon_sym_LBRACK] = ACTIONS(736), + [sym_comment] = ACTIONS(59), }, [280] = { - [sym_type_qualifier] = STATE(81), - [sym__type_specifier] = STATE(496), - [sym_sized_type_specifier] = STATE(496), - [sym_enum_specifier] = STATE(496), - [sym_struct_specifier] = STATE(496), - [sym_union_specifier] = STATE(496), - [sym_macro_type_specifier] = STATE(496), - [aux_sym_type_definition_repeat1] = STATE(81), - [aux_sym_sized_type_specifier_repeat1] = STATE(30), - [anon_sym_const] = ACTIONS(23), - [anon_sym_restrict] = ACTIONS(23), - [anon_sym_volatile] = ACTIONS(23), - [anon_sym__Atomic] = ACTIONS(23), - [anon_sym_unsigned] = ACTIONS(55), - [anon_sym_long] = ACTIONS(55), - [anon_sym_short] = ACTIONS(55), - [sym_primitive_type] = ACTIONS(1175), - [anon_sym_enum] = ACTIONS(29), - [anon_sym_struct] = ACTIONS(31), - [anon_sym_union] = ACTIONS(33), - [sym_identifier] = ACTIONS(35), - [sym_comment] = ACTIONS(37), + [ts_builtin_sym_end] = ACTIONS(1234), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1236), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1236), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1236), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1236), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1236), + [sym_preproc_directive] = ACTIONS(1236), + [anon_sym_typedef] = ACTIONS(1236), + [anon_sym_extern] = ACTIONS(1236), + [anon_sym_RBRACE] = ACTIONS(1234), + [anon_sym_LPAREN2] = ACTIONS(1234), + [anon_sym_STAR] = ACTIONS(1234), + [anon_sym_static] = ACTIONS(1236), + [anon_sym_auto] = ACTIONS(1236), + [anon_sym_register] = ACTIONS(1236), + [anon_sym_inline] = ACTIONS(1236), + [anon_sym_const] = ACTIONS(1236), + [anon_sym_restrict] = ACTIONS(1236), + [anon_sym_volatile] = ACTIONS(1236), + [anon_sym__Atomic] = ACTIONS(1236), + [anon_sym_unsigned] = ACTIONS(1236), + [anon_sym_long] = ACTIONS(1236), + [anon_sym_short] = ACTIONS(1236), + [sym_primitive_type] = ACTIONS(1236), + [anon_sym_enum] = ACTIONS(1236), + [anon_sym_struct] = ACTIONS(1236), + [anon_sym_union] = ACTIONS(1236), + [anon_sym_AMP] = ACTIONS(1234), + [anon_sym_BANG] = ACTIONS(1234), + [anon_sym_TILDE] = ACTIONS(1234), + [anon_sym_PLUS] = ACTIONS(1236), + [anon_sym_DASH] = ACTIONS(1236), + [anon_sym_DASH_DASH] = ACTIONS(1234), + [anon_sym_PLUS_PLUS] = ACTIONS(1234), + [anon_sym_sizeof] = ACTIONS(1236), + [sym_number_literal] = ACTIONS(1234), + [anon_sym_SQUOTE] = ACTIONS(1234), + [anon_sym_DQUOTE] = ACTIONS(1234), + [sym_true] = ACTIONS(1236), + [sym_false] = ACTIONS(1236), + [sym_null] = ACTIONS(1236), + [sym_identifier] = ACTIONS(1236), + [sym_comment] = ACTIONS(59), }, [281] = { - [sym_function_definition] = STATE(498), - [sym_declaration] = STATE(498), - [sym__declaration_specifiers] = STATE(499), - [sym_declaration_list] = STATE(498), - [sym_storage_class_specifier] = STATE(87), - [sym_type_qualifier] = STATE(87), - [sym__type_specifier] = STATE(86), - [sym_sized_type_specifier] = STATE(86), - [sym_enum_specifier] = STATE(86), - [sym_struct_specifier] = STATE(86), - [sym_union_specifier] = STATE(86), - [sym_macro_type_specifier] = STATE(86), - [aux_sym__declaration_specifiers_repeat1] = STATE(87), - [aux_sym_sized_type_specifier_repeat1] = STATE(88), - [anon_sym_extern] = ACTIONS(21), - [anon_sym_LBRACE] = ACTIONS(1177), - [anon_sym_static] = ACTIONS(21), - [anon_sym_auto] = ACTIONS(21), - [anon_sym_register] = ACTIONS(21), - [anon_sym_inline] = ACTIONS(21), - [anon_sym_const] = ACTIONS(23), - [anon_sym_restrict] = ACTIONS(23), - [anon_sym_volatile] = ACTIONS(23), - [anon_sym__Atomic] = ACTIONS(23), - [anon_sym_unsigned] = ACTIONS(167), - [anon_sym_long] = ACTIONS(167), - [anon_sym_short] = ACTIONS(167), - [sym_primitive_type] = ACTIONS(169), - [anon_sym_enum] = ACTIONS(29), - [anon_sym_struct] = ACTIONS(31), - [anon_sym_union] = ACTIONS(33), - [sym_identifier] = ACTIONS(35), - [sym_comment] = ACTIONS(37), + [sym_preproc_include] = STATE(472), + [sym_preproc_def] = STATE(472), + [sym_preproc_function_def] = STATE(472), + [sym_preproc_call] = STATE(472), + [sym_preproc_if] = STATE(472), + [sym_preproc_ifdef] = STATE(472), + [sym_function_definition] = STATE(472), + [sym_declaration] = STATE(472), + [sym_type_definition] = STATE(472), + [sym__declaration_specifiers] = STATE(24), + [sym_linkage_specification] = STATE(472), + [sym_storage_class_specifier] = STATE(30), + [sym_type_qualifier] = STATE(30), + [sym__type_specifier] = STATE(25), + [sym_sized_type_specifier] = STATE(25), + [sym_enum_specifier] = STATE(25), + [sym_struct_specifier] = STATE(25), + [sym_union_specifier] = STATE(25), + [sym__expression] = STATE(26), + [sym_conditional_expression] = STATE(26), + [sym_assignment_expression] = STATE(26), + [sym_pointer_expression] = STATE(26), + [sym_logical_expression] = STATE(26), + [sym_bitwise_expression] = STATE(26), + [sym_equality_expression] = STATE(26), + [sym_relational_expression] = STATE(26), + [sym_shift_expression] = STATE(26), + [sym_math_expression] = STATE(26), + [sym_cast_expression] = STATE(26), + [sym_sizeof_expression] = STATE(26), + [sym_subscript_expression] = STATE(26), + [sym_call_expression] = STATE(27), + [sym_field_expression] = STATE(26), + [sym_compound_literal_expression] = STATE(26), + [sym_parenthesized_expression] = STATE(26), + [sym_char_literal] = STATE(26), + [sym_concatenated_string] = STATE(26), + [sym_string_literal] = STATE(28), + [sym__empty_declaration] = STATE(472), + [sym_macro_type_specifier] = STATE(25), + [aux_sym_translation_unit_repeat1] = STATE(472), + [aux_sym__declaration_specifiers_repeat1] = STATE(30), + [aux_sym_sized_type_specifier_repeat1] = STATE(31), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(7), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(9), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(11), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(13), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(13), + [sym_preproc_directive] = ACTIONS(15), + [anon_sym_typedef] = ACTIONS(17), + [anon_sym_extern] = ACTIONS(19), + [anon_sym_RBRACE] = ACTIONS(1238), + [anon_sym_LPAREN2] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_static] = ACTIONS(25), + [anon_sym_auto] = ACTIONS(25), + [anon_sym_register] = ACTIONS(25), + [anon_sym_inline] = ACTIONS(25), + [anon_sym_const] = ACTIONS(27), + [anon_sym_restrict] = ACTIONS(27), + [anon_sym_volatile] = ACTIONS(27), + [anon_sym__Atomic] = ACTIONS(27), + [anon_sym_unsigned] = ACTIONS(29), + [anon_sym_long] = ACTIONS(29), + [anon_sym_short] = ACTIONS(29), + [sym_primitive_type] = ACTIONS(31), + [anon_sym_enum] = ACTIONS(33), + [anon_sym_struct] = ACTIONS(35), + [anon_sym_union] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(41), + [anon_sym_PLUS] = ACTIONS(43), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_DASH_DASH] = ACTIONS(45), + [anon_sym_PLUS_PLUS] = ACTIONS(45), + [anon_sym_sizeof] = ACTIONS(47), + [sym_number_literal] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(55), + [sym_false] = ACTIONS(55), + [sym_null] = ACTIONS(55), + [sym_identifier] = ACTIONS(57), + [sym_comment] = ACTIONS(59), }, [282] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(217), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(217), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(217), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(217), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(217), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(217), - [sym_preproc_directive] = ACTIONS(217), - [anon_sym_SEMI] = ACTIONS(215), - [anon_sym_typedef] = ACTIONS(217), - [anon_sym_extern] = ACTIONS(217), - [anon_sym_LBRACE] = ACTIONS(215), - [anon_sym_LPAREN2] = ACTIONS(215), - [anon_sym_STAR] = ACTIONS(215), - [anon_sym_static] = ACTIONS(217), - [anon_sym_auto] = ACTIONS(217), - [anon_sym_register] = ACTIONS(217), - [anon_sym_inline] = ACTIONS(217), - [anon_sym_const] = ACTIONS(217), - [anon_sym_restrict] = ACTIONS(217), - [anon_sym_volatile] = ACTIONS(217), - [anon_sym__Atomic] = ACTIONS(217), - [anon_sym_unsigned] = ACTIONS(217), - [anon_sym_long] = ACTIONS(217), - [anon_sym_short] = ACTIONS(217), - [sym_primitive_type] = ACTIONS(217), - [anon_sym_enum] = ACTIONS(217), - [anon_sym_struct] = ACTIONS(217), - [anon_sym_union] = ACTIONS(217), - [anon_sym_if] = ACTIONS(217), - [anon_sym_switch] = ACTIONS(217), - [anon_sym_case] = ACTIONS(217), - [anon_sym_default] = ACTIONS(217), - [anon_sym_while] = ACTIONS(217), - [anon_sym_do] = ACTIONS(217), - [anon_sym_for] = ACTIONS(217), - [anon_sym_return] = ACTIONS(217), - [anon_sym_break] = ACTIONS(217), - [anon_sym_continue] = ACTIONS(217), - [anon_sym_goto] = ACTIONS(217), - [anon_sym_AMP] = ACTIONS(215), - [anon_sym_BANG] = ACTIONS(215), - [anon_sym_TILDE] = ACTIONS(215), - [anon_sym_PLUS] = ACTIONS(217), - [anon_sym_DASH] = ACTIONS(217), - [anon_sym_DASH_DASH] = ACTIONS(215), - [anon_sym_PLUS_PLUS] = ACTIONS(215), - [anon_sym_sizeof] = ACTIONS(217), - [sym_number_literal] = ACTIONS(215), - [anon_sym_SQUOTE] = ACTIONS(215), - [anon_sym_DQUOTE] = ACTIONS(215), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [sym_null] = ACTIONS(217), - [sym_identifier] = ACTIONS(217), - [sym_comment] = ACTIONS(37), + [sym_storage_class_specifier] = STATE(473), + [sym_type_qualifier] = STATE(473), + [aux_sym__declaration_specifiers_repeat1] = STATE(473), + [anon_sym_extern] = ACTIONS(25), + [anon_sym_LPAREN2] = ACTIONS(447), + [anon_sym_STAR] = ACTIONS(447), + [anon_sym_static] = ACTIONS(25), + [anon_sym_auto] = ACTIONS(25), + [anon_sym_register] = ACTIONS(25), + [anon_sym_inline] = ACTIONS(25), + [anon_sym_const] = ACTIONS(27), + [anon_sym_restrict] = ACTIONS(27), + [anon_sym_volatile] = ACTIONS(27), + [anon_sym__Atomic] = ACTIONS(27), + [sym_identifier] = ACTIONS(449), + [sym_comment] = ACTIONS(59), }, [283] = { - [sym_compound_statement] = STATE(502), - [sym_parameter_list] = STATE(119), - [aux_sym_declaration_repeat1] = STATE(503), - [anon_sym_COMMA] = ACTIONS(225), - [anon_sym_SEMI] = ACTIONS(1179), - [anon_sym_LBRACE] = ACTIONS(1181), - [anon_sym_LPAREN2] = ACTIONS(231), - [anon_sym_LBRACK] = ACTIONS(233), - [anon_sym_EQ] = ACTIONS(235), - [sym_comment] = ACTIONS(37), + [sym_storage_class_specifier] = STATE(474), + [sym_type_qualifier] = STATE(474), + [aux_sym__declaration_specifiers_repeat1] = STATE(474), + [anon_sym_extern] = ACTIONS(25), + [anon_sym_LPAREN2] = ACTIONS(447), + [anon_sym_STAR] = ACTIONS(447), + [anon_sym_static] = ACTIONS(25), + [anon_sym_auto] = ACTIONS(25), + [anon_sym_register] = ACTIONS(25), + [anon_sym_inline] = ACTIONS(25), + [anon_sym_const] = ACTIONS(27), + [anon_sym_restrict] = ACTIONS(27), + [anon_sym_volatile] = ACTIONS(27), + [anon_sym__Atomic] = ACTIONS(27), + [sym_identifier] = ACTIONS(449), + [sym_comment] = ACTIONS(59), }, [284] = { - [aux_sym_declaration_repeat1] = STATE(503), - [anon_sym_COMMA] = ACTIONS(225), - [anon_sym_SEMI] = ACTIONS(1179), - [sym_comment] = ACTIONS(37), + [aux_sym_sized_type_specifier_repeat1] = STATE(284), + [anon_sym_extern] = ACTIONS(647), + [anon_sym_LPAREN2] = ACTIONS(645), + [anon_sym_STAR] = ACTIONS(645), + [anon_sym_static] = ACTIONS(647), + [anon_sym_auto] = ACTIONS(647), + [anon_sym_register] = ACTIONS(647), + [anon_sym_inline] = ACTIONS(647), + [anon_sym_const] = ACTIONS(647), + [anon_sym_restrict] = ACTIONS(647), + [anon_sym_volatile] = ACTIONS(647), + [anon_sym__Atomic] = ACTIONS(647), + [anon_sym_unsigned] = ACTIONS(1240), + [anon_sym_long] = ACTIONS(1240), + [anon_sym_short] = ACTIONS(1240), + [sym_primitive_type] = ACTIONS(647), + [sym_identifier] = ACTIONS(647), + [sym_comment] = ACTIONS(59), }, [285] = { - [sym_preproc_include] = STATE(285), - [sym_preproc_def] = STATE(285), - [sym_preproc_function_def] = STATE(285), - [sym_preproc_call] = STATE(285), - [sym_preproc_if] = STATE(285), - [sym_preproc_ifdef] = STATE(285), - [sym_function_definition] = STATE(285), - [sym_declaration] = STATE(285), - [sym_type_definition] = STATE(285), - [sym__declaration_specifiers] = STATE(142), - [sym_linkage_specification] = STATE(285), - [sym_storage_class_specifier] = STATE(19), - [sym_type_qualifier] = STATE(19), - [sym__type_specifier] = STATE(17), - [sym_sized_type_specifier] = STATE(17), - [sym_enum_specifier] = STATE(17), - [sym_struct_specifier] = STATE(17), - [sym_union_specifier] = STATE(17), - [sym__empty_declaration] = STATE(285), - [sym_macro_type_specifier] = STATE(17), - [aux_sym_translation_unit_repeat1] = STATE(285), - [aux_sym__declaration_specifiers_repeat1] = STATE(19), - [aux_sym_sized_type_specifier_repeat1] = STATE(20), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1183), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1186), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1189), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(691), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1192), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1192), - [sym_preproc_directive] = ACTIONS(1195), - [anon_sym_typedef] = ACTIONS(1198), - [anon_sym_extern] = ACTIONS(1201), - [anon_sym_static] = ACTIONS(264), - [anon_sym_auto] = ACTIONS(264), - [anon_sym_register] = ACTIONS(264), - [anon_sym_inline] = ACTIONS(264), - [anon_sym_const] = ACTIONS(267), - [anon_sym_restrict] = ACTIONS(267), - [anon_sym_volatile] = ACTIONS(267), - [anon_sym__Atomic] = ACTIONS(267), - [anon_sym_unsigned] = ACTIONS(270), - [anon_sym_long] = ACTIONS(270), - [anon_sym_short] = ACTIONS(270), - [sym_primitive_type] = ACTIONS(273), - [anon_sym_enum] = ACTIONS(276), - [anon_sym_struct] = ACTIONS(279), - [anon_sym_union] = ACTIONS(282), - [sym_identifier] = ACTIONS(285), - [sym_comment] = ACTIONS(37), + [sym__expression] = STATE(319), + [sym_conditional_expression] = STATE(319), + [sym_assignment_expression] = STATE(319), + [sym_pointer_expression] = STATE(319), + [sym_logical_expression] = STATE(319), + [sym_bitwise_expression] = STATE(319), + [sym_equality_expression] = STATE(319), + [sym_relational_expression] = STATE(319), + [sym_shift_expression] = STATE(319), + [sym_math_expression] = STATE(319), + [sym_cast_expression] = STATE(319), + [sym_sizeof_expression] = STATE(319), + [sym_subscript_expression] = STATE(319), + [sym_call_expression] = STATE(319), + [sym_field_expression] = STATE(319), + [sym_compound_literal_expression] = STATE(319), + [sym_parenthesized_expression] = STATE(319), + [sym_initializer_list] = STATE(320), + [sym_char_literal] = STATE(319), + [sym_concatenated_string] = STATE(319), + [sym_string_literal] = STATE(55), + [anon_sym_LBRACE] = ACTIONS(840), + [anon_sym_LPAREN2] = ACTIONS(85), + [anon_sym_STAR] = ACTIONS(87), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_PLUS] = ACTIONS(97), + [anon_sym_DASH] = ACTIONS(97), + [anon_sym_DASH_DASH] = ACTIONS(99), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(101), + [sym_number_literal] = ACTIONS(842), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(844), + [sym_false] = ACTIONS(844), + [sym_null] = ACTIONS(844), + [sym_identifier] = ACTIONS(844), + [sym_comment] = ACTIONS(59), }, [286] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1204), - [sym_comment] = ACTIONS(37), + [anon_sym_RPAREN] = ACTIONS(1243), + [sym_comment] = ACTIONS(59), }, [287] = { - [sym_preproc_include] = STATE(155), - [sym_preproc_def] = STATE(155), - [sym_preproc_function_def] = STATE(155), - [sym_preproc_call] = STATE(155), - [sym_preproc_if] = STATE(155), - [sym_preproc_ifdef] = STATE(155), - [sym_preproc_else] = STATE(504), - [sym_preproc_elif] = STATE(504), - [sym_function_definition] = STATE(155), - [sym_declaration] = STATE(155), - [sym_type_definition] = STATE(155), - [sym__declaration_specifiers] = STATE(70), - [sym_linkage_specification] = STATE(155), - [sym_storage_class_specifier] = STATE(19), - [sym_type_qualifier] = STATE(19), - [sym__type_specifier] = STATE(17), - [sym_sized_type_specifier] = STATE(17), - [sym_enum_specifier] = STATE(17), - [sym_struct_specifier] = STATE(17), - [sym_union_specifier] = STATE(17), - [sym__empty_declaration] = STATE(155), - [sym_macro_type_specifier] = STATE(17), - [aux_sym_translation_unit_repeat1] = STATE(155), - [aux_sym__declaration_specifiers_repeat1] = STATE(19), - [aux_sym_sized_type_specifier_repeat1] = STATE(20), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(127), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(129), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(131), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1206), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(135), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(135), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(137), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(139), - [sym_preproc_directive] = ACTIONS(141), - [anon_sym_typedef] = ACTIONS(143), - [anon_sym_extern] = ACTIONS(145), - [anon_sym_static] = ACTIONS(21), - [anon_sym_auto] = ACTIONS(21), - [anon_sym_register] = ACTIONS(21), - [anon_sym_inline] = ACTIONS(21), - [anon_sym_const] = ACTIONS(23), - [anon_sym_restrict] = ACTIONS(23), - [anon_sym_volatile] = ACTIONS(23), - [anon_sym__Atomic] = ACTIONS(23), - [anon_sym_unsigned] = ACTIONS(25), - [anon_sym_long] = ACTIONS(25), - [anon_sym_short] = ACTIONS(25), - [sym_primitive_type] = ACTIONS(27), - [anon_sym_enum] = ACTIONS(29), - [anon_sym_struct] = ACTIONS(31), - [anon_sym_union] = ACTIONS(33), - [sym_identifier] = ACTIONS(35), - [sym_comment] = ACTIONS(37), + [aux_sym_parameter_list_repeat1] = STATE(478), + [anon_sym_COMMA] = ACTIONS(1245), + [anon_sym_RPAREN] = ACTIONS(1247), + [sym_comment] = ACTIONS(59), }, [288] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(389), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(389), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(389), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(389), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(389), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(389), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(389), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(389), - [sym_preproc_directive] = ACTIONS(389), - [anon_sym_SEMI] = ACTIONS(387), - [anon_sym_typedef] = ACTIONS(389), - [anon_sym_extern] = ACTIONS(389), - [anon_sym_LBRACE] = ACTIONS(387), - [anon_sym_LPAREN2] = ACTIONS(387), - [anon_sym_STAR] = ACTIONS(387), - [anon_sym_static] = ACTIONS(389), - [anon_sym_auto] = ACTIONS(389), - [anon_sym_register] = ACTIONS(389), - [anon_sym_inline] = ACTIONS(389), - [anon_sym_const] = ACTIONS(389), - [anon_sym_restrict] = ACTIONS(389), - [anon_sym_volatile] = ACTIONS(389), - [anon_sym__Atomic] = ACTIONS(389), - [anon_sym_unsigned] = ACTIONS(389), - [anon_sym_long] = ACTIONS(389), - [anon_sym_short] = ACTIONS(389), - [sym_primitive_type] = ACTIONS(389), - [anon_sym_enum] = ACTIONS(389), - [anon_sym_struct] = ACTIONS(389), - [anon_sym_union] = ACTIONS(389), - [anon_sym_if] = ACTIONS(389), - [anon_sym_switch] = ACTIONS(389), - [anon_sym_case] = ACTIONS(389), - [anon_sym_default] = ACTIONS(389), - [anon_sym_while] = ACTIONS(389), - [anon_sym_do] = ACTIONS(389), - [anon_sym_for] = ACTIONS(389), - [anon_sym_return] = ACTIONS(389), - [anon_sym_break] = ACTIONS(389), - [anon_sym_continue] = ACTIONS(389), - [anon_sym_goto] = ACTIONS(389), - [anon_sym_AMP] = ACTIONS(387), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_PLUS] = ACTIONS(389), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(387), - [anon_sym_PLUS_PLUS] = ACTIONS(387), - [anon_sym_sizeof] = ACTIONS(389), - [sym_number_literal] = ACTIONS(387), - [anon_sym_SQUOTE] = ACTIONS(387), - [anon_sym_DQUOTE] = ACTIONS(387), - [sym_true] = ACTIONS(389), - [sym_false] = ACTIONS(389), - [sym_null] = ACTIONS(389), - [sym_identifier] = ACTIONS(389), - [sym_comment] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(1249), + [anon_sym_COMMA] = ACTIONS(1249), + [anon_sym_RPAREN] = ACTIONS(1249), + [anon_sym_LBRACE] = ACTIONS(1249), + [anon_sym_LPAREN2] = ACTIONS(1249), + [anon_sym_LBRACK] = ACTIONS(1249), + [anon_sym_EQ] = ACTIONS(1249), + [anon_sym_COLON] = ACTIONS(1249), + [sym_comment] = ACTIONS(59), }, [289] = { - [sym_parameter_list] = STATE(164), - [anon_sym_SEMI] = ACTIONS(1208), - [anon_sym_LPAREN2] = ACTIONS(231), - [anon_sym_LBRACK] = ACTIONS(399), - [sym_comment] = ACTIONS(37), + [sym__declarator] = STATE(481), + [sym__abstract_declarator] = STATE(482), + [sym_pointer_declarator] = STATE(481), + [sym_abstract_pointer_declarator] = STATE(482), + [sym_function_declarator] = STATE(481), + [sym_abstract_function_declarator] = STATE(482), + [sym_array_declarator] = STATE(481), + [sym_abstract_array_declarator] = STATE(482), + [sym_parameter_list] = STATE(151), + [anon_sym_COMMA] = ACTIONS(1251), + [anon_sym_RPAREN] = ACTIONS(1251), + [anon_sym_LPAREN2] = ACTIONS(1253), + [anon_sym_STAR] = ACTIONS(1255), + [anon_sym_LBRACK] = ACTIONS(313), + [sym_identifier] = ACTIONS(1257), + [sym_comment] = ACTIONS(59), }, [290] = { - [sym__type_declarator] = STATE(506), - [sym_pointer_type_declarator] = STATE(506), - [sym_function_type_declarator] = STATE(506), - [sym_array_type_declarator] = STATE(506), - [anon_sym_LPAREN2] = ACTIONS(155), - [anon_sym_STAR] = ACTIONS(157), - [sym_identifier] = ACTIONS(159), - [sym_comment] = ACTIONS(37), + [sym_parameter_list] = STATE(304), + [anon_sym_RPAREN] = ACTIONS(1259), + [anon_sym_LPAREN2] = ACTIONS(441), + [anon_sym_LBRACK] = ACTIONS(784), + [sym_comment] = ACTIONS(59), }, [291] = { - [sym_preproc_include] = STATE(508), - [sym_preproc_def] = STATE(508), - [sym_preproc_function_def] = STATE(508), - [sym_preproc_call] = STATE(508), - [sym_preproc_if] = STATE(508), - [sym_preproc_ifdef] = STATE(508), - [sym_function_definition] = STATE(508), - [sym_declaration] = STATE(508), - [sym_type_definition] = STATE(508), - [sym__declaration_specifiers] = STATE(16), - [sym_linkage_specification] = STATE(508), - [sym_storage_class_specifier] = STATE(19), - [sym_type_qualifier] = STATE(19), - [sym__type_specifier] = STATE(17), - [sym_sized_type_specifier] = STATE(17), - [sym_enum_specifier] = STATE(17), - [sym_struct_specifier] = STATE(17), - [sym_union_specifier] = STATE(17), - [sym__empty_declaration] = STATE(508), - [sym_macro_type_specifier] = STATE(17), - [aux_sym_translation_unit_repeat1] = STATE(508), - [aux_sym__declaration_specifiers_repeat1] = STATE(19), - [aux_sym_sized_type_specifier_repeat1] = STATE(20), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(7), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(9), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(11), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(13), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(13), - [sym_preproc_directive] = ACTIONS(15), - [anon_sym_typedef] = ACTIONS(17), - [anon_sym_extern] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(1210), - [anon_sym_static] = ACTIONS(21), - [anon_sym_auto] = ACTIONS(21), - [anon_sym_register] = ACTIONS(21), - [anon_sym_inline] = ACTIONS(21), - [anon_sym_const] = ACTIONS(23), - [anon_sym_restrict] = ACTIONS(23), - [anon_sym_volatile] = ACTIONS(23), - [anon_sym__Atomic] = ACTIONS(23), - [anon_sym_unsigned] = ACTIONS(25), - [anon_sym_long] = ACTIONS(25), - [anon_sym_short] = ACTIONS(25), - [sym_primitive_type] = ACTIONS(27), - [anon_sym_enum] = ACTIONS(29), - [anon_sym_struct] = ACTIONS(31), - [anon_sym_union] = ACTIONS(33), - [sym_identifier] = ACTIONS(35), - [sym_comment] = ACTIONS(37), + [sym_storage_class_specifier] = STATE(484), + [sym_type_qualifier] = STATE(484), + [aux_sym__declaration_specifiers_repeat1] = STATE(484), + [anon_sym_COMMA] = ACTIONS(180), + [anon_sym_RPAREN] = ACTIONS(180), + [anon_sym_extern] = ACTIONS(25), + [anon_sym_LPAREN2] = ACTIONS(180), + [anon_sym_STAR] = ACTIONS(180), + [anon_sym_LBRACK] = ACTIONS(180), + [anon_sym_static] = ACTIONS(25), + [anon_sym_auto] = ACTIONS(25), + [anon_sym_register] = ACTIONS(25), + [anon_sym_inline] = ACTIONS(25), + [anon_sym_const] = ACTIONS(27), + [anon_sym_restrict] = ACTIONS(27), + [anon_sym_volatile] = ACTIONS(27), + [anon_sym__Atomic] = ACTIONS(27), + [sym_identifier] = ACTIONS(182), + [sym_comment] = ACTIONS(59), }, [292] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(413), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(413), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(413), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(413), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(413), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(413), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(413), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(413), - [sym_preproc_directive] = ACTIONS(413), - [anon_sym_typedef] = ACTIONS(413), - [anon_sym_extern] = ACTIONS(413), - [anon_sym_static] = ACTIONS(413), - [anon_sym_auto] = ACTIONS(413), - [anon_sym_register] = ACTIONS(413), - [anon_sym_inline] = ACTIONS(413), - [anon_sym_const] = ACTIONS(413), - [anon_sym_restrict] = ACTIONS(413), - [anon_sym_volatile] = ACTIONS(413), - [anon_sym__Atomic] = ACTIONS(413), - [anon_sym_unsigned] = ACTIONS(413), - [anon_sym_long] = ACTIONS(413), - [anon_sym_short] = ACTIONS(413), - [sym_primitive_type] = ACTIONS(413), - [anon_sym_enum] = ACTIONS(413), - [anon_sym_struct] = ACTIONS(413), - [anon_sym_union] = ACTIONS(413), - [sym_identifier] = ACTIONS(413), - [sym_comment] = ACTIONS(37), + [sym_storage_class_specifier] = STATE(103), + [sym_type_qualifier] = STATE(103), + [sym__type_specifier] = STATE(485), + [sym_sized_type_specifier] = STATE(485), + [sym_enum_specifier] = STATE(485), + [sym_struct_specifier] = STATE(485), + [sym_union_specifier] = STATE(485), + [sym_macro_type_specifier] = STATE(485), + [aux_sym__declaration_specifiers_repeat1] = STATE(103), + [aux_sym_sized_type_specifier_repeat1] = STATE(293), + [anon_sym_extern] = ACTIONS(25), + [anon_sym_static] = ACTIONS(25), + [anon_sym_auto] = ACTIONS(25), + [anon_sym_register] = ACTIONS(25), + [anon_sym_inline] = ACTIONS(25), + [anon_sym_const] = ACTIONS(27), + [anon_sym_restrict] = ACTIONS(27), + [anon_sym_volatile] = ACTIONS(27), + [anon_sym__Atomic] = ACTIONS(27), + [anon_sym_unsigned] = ACTIONS(762), + [anon_sym_long] = ACTIONS(762), + [anon_sym_short] = ACTIONS(762), + [sym_primitive_type] = ACTIONS(1261), + [anon_sym_enum] = ACTIONS(33), + [anon_sym_struct] = ACTIONS(35), + [anon_sym_union] = ACTIONS(37), + [sym_identifier] = ACTIONS(81), + [sym_comment] = ACTIONS(59), }, [293] = { - [sym__declarator] = STATE(152), - [sym_pointer_declarator] = STATE(152), - [sym_function_declarator] = STATE(152), - [sym_array_declarator] = STATE(152), - [sym_init_declarator] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(88), - [anon_sym_STAR] = ACTIONS(90), - [sym_identifier] = ACTIONS(375), - [sym_comment] = ACTIONS(37), + [aux_sym_sized_type_specifier_repeat1] = STATE(486), + [anon_sym_COMMA] = ACTIONS(226), + [anon_sym_RPAREN] = ACTIONS(226), + [anon_sym_extern] = ACTIONS(228), + [anon_sym_LPAREN2] = ACTIONS(226), + [anon_sym_STAR] = ACTIONS(226), + [anon_sym_LBRACK] = ACTIONS(226), + [anon_sym_static] = ACTIONS(228), + [anon_sym_auto] = ACTIONS(228), + [anon_sym_register] = ACTIONS(228), + [anon_sym_inline] = ACTIONS(228), + [anon_sym_const] = ACTIONS(228), + [anon_sym_restrict] = ACTIONS(228), + [anon_sym_volatile] = ACTIONS(228), + [anon_sym__Atomic] = ACTIONS(228), + [anon_sym_unsigned] = ACTIONS(1263), + [anon_sym_long] = ACTIONS(1263), + [anon_sym_short] = ACTIONS(1263), + [sym_primitive_type] = ACTIONS(232), + [sym_identifier] = ACTIONS(234), + [sym_comment] = ACTIONS(59), }, [294] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(495), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(495), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(495), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(495), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(495), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(495), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(495), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(495), - [sym_preproc_directive] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(493), - [anon_sym_typedef] = ACTIONS(495), - [anon_sym_extern] = ACTIONS(495), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_LPAREN2] = ACTIONS(493), - [anon_sym_STAR] = ACTIONS(493), - [anon_sym_static] = ACTIONS(495), - [anon_sym_auto] = ACTIONS(495), - [anon_sym_register] = ACTIONS(495), - [anon_sym_inline] = ACTIONS(495), - [anon_sym_const] = ACTIONS(495), - [anon_sym_restrict] = ACTIONS(495), - [anon_sym_volatile] = ACTIONS(495), - [anon_sym__Atomic] = ACTIONS(495), - [anon_sym_unsigned] = ACTIONS(495), - [anon_sym_long] = ACTIONS(495), - [anon_sym_short] = ACTIONS(495), - [sym_primitive_type] = ACTIONS(495), - [anon_sym_enum] = ACTIONS(495), - [anon_sym_struct] = ACTIONS(495), - [anon_sym_union] = ACTIONS(495), - [anon_sym_if] = ACTIONS(495), - [anon_sym_else] = ACTIONS(495), - [anon_sym_switch] = ACTIONS(495), - [anon_sym_case] = ACTIONS(495), - [anon_sym_default] = ACTIONS(495), - [anon_sym_while] = ACTIONS(495), - [anon_sym_do] = ACTIONS(495), - [anon_sym_for] = ACTIONS(495), - [anon_sym_return] = ACTIONS(495), - [anon_sym_break] = ACTIONS(495), - [anon_sym_continue] = ACTIONS(495), - [anon_sym_goto] = ACTIONS(495), - [anon_sym_AMP] = ACTIONS(493), - [anon_sym_BANG] = ACTIONS(493), - [anon_sym_TILDE] = ACTIONS(493), - [anon_sym_PLUS] = ACTIONS(495), - [anon_sym_DASH] = ACTIONS(495), - [anon_sym_DASH_DASH] = ACTIONS(493), - [anon_sym_PLUS_PLUS] = ACTIONS(493), - [anon_sym_sizeof] = ACTIONS(495), - [sym_number_literal] = ACTIONS(493), - [anon_sym_SQUOTE] = ACTIONS(493), - [anon_sym_DQUOTE] = ACTIONS(493), - [sym_true] = ACTIONS(495), - [sym_false] = ACTIONS(495), - [sym_null] = ACTIONS(495), - [sym_identifier] = ACTIONS(495), - [sym_comment] = ACTIONS(37), + [sym_parameter_list] = STATE(304), + [anon_sym_COMMA] = ACTIONS(1265), + [anon_sym_RPAREN] = ACTIONS(1265), + [anon_sym_LPAREN2] = ACTIONS(441), + [anon_sym_LBRACK] = ACTIONS(784), + [sym_comment] = ACTIONS(59), }, [295] = { - [sym_preproc_include] = STATE(510), - [sym_preproc_def] = STATE(510), - [sym_preproc_function_def] = STATE(510), - [sym_preproc_call] = STATE(510), - [sym_preproc_if_in_compound_statement] = STATE(510), - [sym_preproc_ifdef_in_compound_statement] = STATE(510), - [sym_declaration] = STATE(510), - [sym_type_definition] = STATE(510), - [sym__declaration_specifiers] = STATE(227), - [sym_compound_statement] = STATE(510), - [sym_storage_class_specifier] = STATE(19), - [sym_type_qualifier] = STATE(19), - [sym__type_specifier] = STATE(17), - [sym_sized_type_specifier] = STATE(17), - [sym_enum_specifier] = STATE(17), - [sym_struct_specifier] = STATE(17), - [sym_union_specifier] = STATE(17), - [sym_labeled_statement] = STATE(510), - [sym_expression_statement] = STATE(510), - [sym_if_statement] = STATE(510), - [sym_switch_statement] = STATE(510), - [sym_case_statement] = STATE(510), - [sym_while_statement] = STATE(510), - [sym_do_statement] = STATE(510), - [sym_for_statement] = STATE(510), - [sym_return_statement] = STATE(510), - [sym_break_statement] = STATE(510), - [sym_continue_statement] = STATE(510), - [sym_goto_statement] = STATE(510), - [sym__expression] = STATE(228), - [sym_comma_expression] = STATE(229), - [sym_conditional_expression] = STATE(228), - [sym_assignment_expression] = STATE(228), - [sym_pointer_expression] = STATE(228), - [sym_logical_expression] = STATE(228), - [sym_bitwise_expression] = STATE(228), - [sym_equality_expression] = STATE(228), - [sym_relational_expression] = STATE(228), - [sym_shift_expression] = STATE(228), - [sym_math_expression] = STATE(228), - [sym_cast_expression] = STATE(228), - [sym_sizeof_expression] = STATE(228), - [sym_subscript_expression] = STATE(228), - [sym_call_expression] = STATE(228), - [sym_field_expression] = STATE(228), - [sym_compound_literal_expression] = STATE(228), - [sym_parenthesized_expression] = STATE(228), - [sym_char_literal] = STATE(228), - [sym_concatenated_string] = STATE(228), - [sym_string_literal] = STATE(230), - [sym__empty_declaration] = STATE(510), - [sym_macro_type_specifier] = STATE(17), - [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(510), - [aux_sym__declaration_specifiers_repeat1] = STATE(19), - [aux_sym_sized_type_specifier_repeat1] = STATE(20), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(497), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(9), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(499), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(501), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(501), - [sym_preproc_directive] = ACTIONS(15), - [anon_sym_SEMI] = ACTIONS(503), - [anon_sym_typedef] = ACTIONS(17), - [anon_sym_extern] = ACTIONS(21), - [anon_sym_LBRACE] = ACTIONS(229), - [anon_sym_RBRACE] = ACTIONS(1212), - [anon_sym_LPAREN2] = ACTIONS(507), - [anon_sym_STAR] = ACTIONS(509), - [anon_sym_static] = ACTIONS(21), - [anon_sym_auto] = ACTIONS(21), - [anon_sym_register] = ACTIONS(21), - [anon_sym_inline] = ACTIONS(21), - [anon_sym_const] = ACTIONS(23), - [anon_sym_restrict] = ACTIONS(23), - [anon_sym_volatile] = ACTIONS(23), - [anon_sym__Atomic] = ACTIONS(23), - [anon_sym_unsigned] = ACTIONS(25), - [anon_sym_long] = ACTIONS(25), - [anon_sym_short] = ACTIONS(25), - [sym_primitive_type] = ACTIONS(27), - [anon_sym_enum] = ACTIONS(29), - [anon_sym_struct] = ACTIONS(31), - [anon_sym_union] = ACTIONS(33), - [anon_sym_if] = ACTIONS(511), - [anon_sym_switch] = ACTIONS(513), - [anon_sym_case] = ACTIONS(515), - [anon_sym_default] = ACTIONS(517), - [anon_sym_while] = ACTIONS(519), - [anon_sym_do] = ACTIONS(521), - [anon_sym_for] = ACTIONS(523), - [anon_sym_return] = ACTIONS(525), - [anon_sym_break] = ACTIONS(527), - [anon_sym_continue] = ACTIONS(529), - [anon_sym_goto] = ACTIONS(531), - [anon_sym_AMP] = ACTIONS(509), - [anon_sym_BANG] = ACTIONS(533), - [anon_sym_TILDE] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DASH] = ACTIONS(537), - [anon_sym_DASH_DASH] = ACTIONS(539), - [anon_sym_PLUS_PLUS] = ACTIONS(539), - [anon_sym_sizeof] = ACTIONS(541), - [sym_number_literal] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(547), - [sym_false] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [sym_identifier] = ACTIONS(549), - [sym_comment] = ACTIONS(37), + [sym__abstract_declarator] = STATE(487), + [sym_abstract_pointer_declarator] = STATE(487), + [sym_abstract_function_declarator] = STATE(487), + [sym_abstract_array_declarator] = STATE(487), + [sym_type_qualifier] = STATE(488), + [sym_parameter_list] = STATE(151), + [aux_sym_type_definition_repeat1] = STATE(488), + [anon_sym_RPAREN] = ACTIONS(1265), + [anon_sym_LPAREN2] = ACTIONS(309), + [anon_sym_STAR] = ACTIONS(311), + [anon_sym_LBRACK] = ACTIONS(313), + [anon_sym_const] = ACTIONS(768), + [anon_sym_restrict] = ACTIONS(768), + [anon_sym_volatile] = ACTIONS(768), + [anon_sym__Atomic] = ACTIONS(768), + [sym_comment] = ACTIONS(59), }, [296] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(593), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(593), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(593), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(593), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(593), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(593), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(593), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(593), - [sym_preproc_directive] = ACTIONS(593), - [anon_sym_typedef] = ACTIONS(593), - [anon_sym_extern] = ACTIONS(593), - [anon_sym_static] = ACTIONS(593), - [anon_sym_auto] = ACTIONS(593), - [anon_sym_register] = ACTIONS(593), - [anon_sym_inline] = ACTIONS(593), - [anon_sym_const] = ACTIONS(593), - [anon_sym_restrict] = ACTIONS(593), - [anon_sym_volatile] = ACTIONS(593), - [anon_sym__Atomic] = ACTIONS(593), - [anon_sym_unsigned] = ACTIONS(593), - [anon_sym_long] = ACTIONS(593), - [anon_sym_short] = ACTIONS(593), - [sym_primitive_type] = ACTIONS(593), - [anon_sym_enum] = ACTIONS(593), - [anon_sym_struct] = ACTIONS(593), - [anon_sym_union] = ACTIONS(593), - [sym_identifier] = ACTIONS(593), - [sym_comment] = ACTIONS(37), + [anon_sym_COMMA] = ACTIONS(1267), + [anon_sym_RPAREN] = ACTIONS(1267), + [anon_sym_LPAREN2] = ACTIONS(1267), + [anon_sym_LBRACK] = ACTIONS(1267), + [sym_comment] = ACTIONS(59), }, [297] = { - [aux_sym_declaration_repeat1] = STATE(256), - [anon_sym_COMMA] = ACTIONS(225), - [anon_sym_SEMI] = ACTIONS(1214), - [sym_comment] = ACTIONS(37), + [anon_sym_extern] = ACTIONS(157), + [anon_sym_LPAREN2] = ACTIONS(159), + [anon_sym_STAR] = ACTIONS(163), + [anon_sym_LBRACK] = ACTIONS(166), + [anon_sym_RBRACK] = ACTIONS(304), + [anon_sym_EQ] = ACTIONS(168), + [anon_sym_static] = ACTIONS(157), + [anon_sym_auto] = ACTIONS(157), + [anon_sym_register] = ACTIONS(157), + [anon_sym_inline] = ACTIONS(157), + [anon_sym_const] = ACTIONS(157), + [anon_sym_restrict] = ACTIONS(157), + [anon_sym_volatile] = ACTIONS(157), + [anon_sym__Atomic] = ACTIONS(157), + [anon_sym_QMARK] = ACTIONS(166), + [anon_sym_STAR_EQ] = ACTIONS(166), + [anon_sym_SLASH_EQ] = ACTIONS(166), + [anon_sym_PERCENT_EQ] = ACTIONS(166), + [anon_sym_PLUS_EQ] = ACTIONS(166), + [anon_sym_DASH_EQ] = ACTIONS(166), + [anon_sym_LT_LT_EQ] = ACTIONS(166), + [anon_sym_GT_GT_EQ] = ACTIONS(166), + [anon_sym_AMP_EQ] = ACTIONS(166), + [anon_sym_CARET_EQ] = ACTIONS(166), + [anon_sym_PIPE_EQ] = ACTIONS(166), + [anon_sym_AMP] = ACTIONS(163), + [anon_sym_PIPE_PIPE] = ACTIONS(166), + [anon_sym_AMP_AMP] = ACTIONS(166), + [anon_sym_BANG] = ACTIONS(157), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_CARET] = ACTIONS(168), + [anon_sym_TILDE] = ACTIONS(155), + [anon_sym_EQ_EQ] = ACTIONS(166), + [anon_sym_BANG_EQ] = ACTIONS(166), + [anon_sym_LT] = ACTIONS(168), + [anon_sym_GT] = ACTIONS(168), + [anon_sym_LT_EQ] = ACTIONS(166), + [anon_sym_GT_EQ] = ACTIONS(166), + [anon_sym_LT_LT] = ACTIONS(168), + [anon_sym_GT_GT] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(163), + [anon_sym_DASH] = ACTIONS(163), + [anon_sym_SLASH] = ACTIONS(168), + [anon_sym_PERCENT] = ACTIONS(168), + [anon_sym_DASH_DASH] = ACTIONS(304), + [anon_sym_PLUS_PLUS] = ACTIONS(304), + [anon_sym_sizeof] = ACTIONS(157), + [anon_sym_DOT] = ACTIONS(166), + [anon_sym_DASH_GT] = ACTIONS(166), + [sym_number_literal] = ACTIONS(155), + [anon_sym_SQUOTE] = ACTIONS(155), + [anon_sym_DQUOTE] = ACTIONS(155), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [sym_null] = ACTIONS(157), + [sym_identifier] = ACTIONS(157), + [sym_comment] = ACTIONS(59), }, [298] = { - [ts_builtin_sym_end] = ACTIONS(1216), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1218), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1218), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1218), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1218), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1218), - [sym_preproc_directive] = ACTIONS(1218), - [anon_sym_typedef] = ACTIONS(1218), - [anon_sym_extern] = ACTIONS(1218), - [anon_sym_RBRACE] = ACTIONS(1216), - [anon_sym_static] = ACTIONS(1218), - [anon_sym_auto] = ACTIONS(1218), - [anon_sym_register] = ACTIONS(1218), - [anon_sym_inline] = ACTIONS(1218), - [anon_sym_const] = ACTIONS(1218), - [anon_sym_restrict] = ACTIONS(1218), - [anon_sym_volatile] = ACTIONS(1218), - [anon_sym__Atomic] = ACTIONS(1218), - [anon_sym_unsigned] = ACTIONS(1218), - [anon_sym_long] = ACTIONS(1218), - [anon_sym_short] = ACTIONS(1218), - [sym_primitive_type] = ACTIONS(1218), - [anon_sym_enum] = ACTIONS(1218), - [anon_sym_struct] = ACTIONS(1218), - [anon_sym_union] = ACTIONS(1218), - [sym_identifier] = ACTIONS(1218), - [sym_comment] = ACTIONS(37), + [sym__expression] = STATE(490), + [sym_conditional_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_pointer_expression] = STATE(490), + [sym_logical_expression] = STATE(490), + [sym_bitwise_expression] = STATE(490), + [sym_equality_expression] = STATE(490), + [sym_relational_expression] = STATE(490), + [sym_shift_expression] = STATE(490), + [sym_math_expression] = STATE(490), + [sym_cast_expression] = STATE(490), + [sym_sizeof_expression] = STATE(490), + [sym_subscript_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_field_expression] = STATE(490), + [sym_compound_literal_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_char_literal] = STATE(490), + [sym_concatenated_string] = STATE(490), + [sym_string_literal] = STATE(214), + [anon_sym_LPAREN2] = ACTIONS(461), + [anon_sym_STAR] = ACTIONS(463), + [anon_sym_RBRACK] = ACTIONS(1269), + [anon_sym_AMP] = ACTIONS(463), + [anon_sym_BANG] = ACTIONS(465), + [anon_sym_TILDE] = ACTIONS(467), + [anon_sym_PLUS] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(469), + [anon_sym_DASH_DASH] = ACTIONS(471), + [anon_sym_PLUS_PLUS] = ACTIONS(471), + [anon_sym_sizeof] = ACTIONS(473), + [sym_number_literal] = ACTIONS(1271), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(1273), + [sym_false] = ACTIONS(1273), + [sym_null] = ACTIONS(1273), + [sym_identifier] = ACTIONS(1273), + [sym_comment] = ACTIONS(59), }, [299] = { - [ts_builtin_sym_end] = ACTIONS(1220), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1222), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1222), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1222), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1222), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1222), - [sym_preproc_directive] = ACTIONS(1222), - [anon_sym_typedef] = ACTIONS(1222), - [anon_sym_extern] = ACTIONS(1222), - [anon_sym_RBRACE] = ACTIONS(1220), - [anon_sym_static] = ACTIONS(1222), - [anon_sym_auto] = ACTIONS(1222), - [anon_sym_register] = ACTIONS(1222), - [anon_sym_inline] = ACTIONS(1222), - [anon_sym_const] = ACTIONS(1222), - [anon_sym_restrict] = ACTIONS(1222), - [anon_sym_volatile] = ACTIONS(1222), - [anon_sym__Atomic] = ACTIONS(1222), - [anon_sym_unsigned] = ACTIONS(1222), - [anon_sym_long] = ACTIONS(1222), - [anon_sym_short] = ACTIONS(1222), - [sym_primitive_type] = ACTIONS(1222), - [anon_sym_enum] = ACTIONS(1222), - [anon_sym_struct] = ACTIONS(1222), - [anon_sym_union] = ACTIONS(1222), - [sym_identifier] = ACTIONS(1222), - [sym_comment] = ACTIONS(37), + [sym_storage_class_specifier] = STATE(491), + [sym_type_qualifier] = STATE(491), + [aux_sym__declaration_specifiers_repeat1] = STATE(491), + [anon_sym_extern] = ACTIONS(25), + [anon_sym_LPAREN2] = ACTIONS(180), + [anon_sym_STAR] = ACTIONS(180), + [anon_sym_RBRACK] = ACTIONS(180), + [anon_sym_static] = ACTIONS(25), + [anon_sym_auto] = ACTIONS(25), + [anon_sym_register] = ACTIONS(25), + [anon_sym_inline] = ACTIONS(25), + [anon_sym_const] = ACTIONS(27), + [anon_sym_restrict] = ACTIONS(27), + [anon_sym_volatile] = ACTIONS(27), + [anon_sym__Atomic] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(180), + [anon_sym_BANG] = ACTIONS(180), + [anon_sym_TILDE] = ACTIONS(180), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_DASH_DASH] = ACTIONS(180), + [anon_sym_PLUS_PLUS] = ACTIONS(180), + [anon_sym_sizeof] = ACTIONS(182), + [sym_number_literal] = ACTIONS(180), + [anon_sym_SQUOTE] = ACTIONS(180), + [anon_sym_DQUOTE] = ACTIONS(180), + [sym_true] = ACTIONS(182), + [sym_false] = ACTIONS(182), + [sym_null] = ACTIONS(182), + [sym_identifier] = ACTIONS(182), + [sym_comment] = ACTIONS(59), }, [300] = { - [sym__type_declarator] = STATE(302), - [sym_pointer_type_declarator] = STATE(302), - [sym_function_type_declarator] = STATE(302), - [sym_array_type_declarator] = STATE(302), - [sym_type_qualifier] = STATE(199), - [aux_sym_type_definition_repeat1] = STATE(199), - [anon_sym_LPAREN2] = ACTIONS(155), - [anon_sym_STAR] = ACTIONS(391), - [anon_sym_const] = ACTIONS(23), - [anon_sym_restrict] = ACTIONS(23), - [anon_sym_volatile] = ACTIONS(23), - [anon_sym__Atomic] = ACTIONS(23), - [sym_identifier] = ACTIONS(393), - [sym_comment] = ACTIONS(37), + [sym_argument_list] = STATE(98), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(1016), + [anon_sym_LBRACK] = ACTIONS(188), + [anon_sym_RBRACK] = ACTIONS(1269), + [anon_sym_EQ] = ACTIONS(1020), + [anon_sym_QMARK] = ACTIONS(1022), + [anon_sym_STAR_EQ] = ACTIONS(1024), + [anon_sym_SLASH_EQ] = ACTIONS(1024), + [anon_sym_PERCENT_EQ] = ACTIONS(1024), + [anon_sym_PLUS_EQ] = ACTIONS(1024), + [anon_sym_DASH_EQ] = ACTIONS(1024), + [anon_sym_LT_LT_EQ] = ACTIONS(1024), + [anon_sym_GT_GT_EQ] = ACTIONS(1024), + [anon_sym_AMP_EQ] = ACTIONS(1024), + [anon_sym_CARET_EQ] = ACTIONS(1024), + [anon_sym_PIPE_EQ] = ACTIONS(1024), + [anon_sym_AMP] = ACTIONS(1026), + [anon_sym_PIPE_PIPE] = ACTIONS(1028), + [anon_sym_AMP_AMP] = ACTIONS(1030), + [anon_sym_PIPE] = ACTIONS(1032), + [anon_sym_CARET] = ACTIONS(1034), + [anon_sym_EQ_EQ] = ACTIONS(1036), + [anon_sym_BANG_EQ] = ACTIONS(1036), + [anon_sym_LT] = ACTIONS(1038), + [anon_sym_GT] = ACTIONS(1038), + [anon_sym_LT_EQ] = ACTIONS(1040), + [anon_sym_GT_EQ] = ACTIONS(1040), + [anon_sym_LT_LT] = ACTIONS(1042), + [anon_sym_GT_GT] = ACTIONS(1042), + [anon_sym_PLUS] = ACTIONS(1044), + [anon_sym_DASH] = ACTIONS(1044), + [anon_sym_SLASH] = ACTIONS(1016), + [anon_sym_PERCENT] = ACTIONS(1016), + [anon_sym_DASH_DASH] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(216), + [anon_sym_DOT] = ACTIONS(218), + [anon_sym_DASH_GT] = ACTIONS(218), + [sym_comment] = ACTIONS(59), }, [301] = { - [anon_sym_RPAREN] = ACTIONS(1224), - [anon_sym_SEMI] = ACTIONS(1224), - [anon_sym_LPAREN2] = ACTIONS(1224), - [anon_sym_LBRACK] = ACTIONS(1224), - [sym_comment] = ACTIONS(37), + [sym_storage_class_specifier] = STATE(103), + [sym_type_qualifier] = STATE(103), + [sym__type_specifier] = STATE(492), + [sym_sized_type_specifier] = STATE(492), + [sym_enum_specifier] = STATE(492), + [sym_struct_specifier] = STATE(492), + [sym_union_specifier] = STATE(492), + [sym_macro_type_specifier] = STATE(492), + [aux_sym__declaration_specifiers_repeat1] = STATE(103), + [aux_sym_sized_type_specifier_repeat1] = STATE(302), + [anon_sym_extern] = ACTIONS(25), + [anon_sym_static] = ACTIONS(25), + [anon_sym_auto] = ACTIONS(25), + [anon_sym_register] = ACTIONS(25), + [anon_sym_inline] = ACTIONS(25), + [anon_sym_const] = ACTIONS(27), + [anon_sym_restrict] = ACTIONS(27), + [anon_sym_volatile] = ACTIONS(27), + [anon_sym__Atomic] = ACTIONS(27), + [anon_sym_unsigned] = ACTIONS(772), + [anon_sym_long] = ACTIONS(772), + [anon_sym_short] = ACTIONS(772), + [sym_primitive_type] = ACTIONS(1275), + [anon_sym_enum] = ACTIONS(33), + [anon_sym_struct] = ACTIONS(35), + [anon_sym_union] = ACTIONS(37), + [sym_identifier] = ACTIONS(81), + [sym_comment] = ACTIONS(59), }, [302] = { - [sym_parameter_list] = STATE(164), - [anon_sym_RPAREN] = ACTIONS(1226), - [anon_sym_SEMI] = ACTIONS(1226), - [anon_sym_LPAREN2] = ACTIONS(231), - [anon_sym_LBRACK] = ACTIONS(399), - [sym_comment] = ACTIONS(37), + [aux_sym_sized_type_specifier_repeat1] = STATE(493), + [anon_sym_extern] = ACTIONS(228), + [anon_sym_LPAREN2] = ACTIONS(226), + [anon_sym_STAR] = ACTIONS(226), + [anon_sym_RBRACK] = ACTIONS(226), + [anon_sym_static] = ACTIONS(228), + [anon_sym_auto] = ACTIONS(228), + [anon_sym_register] = ACTIONS(228), + [anon_sym_inline] = ACTIONS(228), + [anon_sym_const] = ACTIONS(228), + [anon_sym_restrict] = ACTIONS(228), + [anon_sym_volatile] = ACTIONS(228), + [anon_sym__Atomic] = ACTIONS(228), + [anon_sym_unsigned] = ACTIONS(1277), + [anon_sym_long] = ACTIONS(1277), + [anon_sym_short] = ACTIONS(1277), + [sym_primitive_type] = ACTIONS(232), + [anon_sym_AMP] = ACTIONS(226), + [anon_sym_BANG] = ACTIONS(226), + [anon_sym_TILDE] = ACTIONS(226), + [anon_sym_PLUS] = ACTIONS(228), + [anon_sym_DASH] = ACTIONS(228), + [anon_sym_DASH_DASH] = ACTIONS(226), + [anon_sym_PLUS_PLUS] = ACTIONS(226), + [anon_sym_sizeof] = ACTIONS(228), + [sym_number_literal] = ACTIONS(226), + [anon_sym_SQUOTE] = ACTIONS(226), + [anon_sym_DQUOTE] = ACTIONS(226), + [sym_true] = ACTIONS(228), + [sym_false] = ACTIONS(228), + [sym_null] = ACTIONS(228), + [sym_identifier] = ACTIONS(234), + [sym_comment] = ACTIONS(59), }, [303] = { - [anon_sym_RPAREN] = ACTIONS(1228), - [anon_sym_SEMI] = ACTIONS(1228), - [anon_sym_LPAREN2] = ACTIONS(1228), - [anon_sym_LBRACK] = ACTIONS(1228), - [sym_comment] = ACTIONS(37), + [sym__declaration_specifiers] = STATE(494), + [sym_storage_class_specifier] = STATE(301), + [sym_type_qualifier] = STATE(301), + [sym__type_specifier] = STATE(299), + [sym_sized_type_specifier] = STATE(299), + [sym_enum_specifier] = STATE(299), + [sym_struct_specifier] = STATE(299), + [sym_union_specifier] = STATE(299), + [sym__expression] = STATE(490), + [sym_conditional_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_pointer_expression] = STATE(490), + [sym_logical_expression] = STATE(490), + [sym_bitwise_expression] = STATE(490), + [sym_equality_expression] = STATE(490), + [sym_relational_expression] = STATE(490), + [sym_shift_expression] = STATE(490), + [sym_math_expression] = STATE(490), + [sym_cast_expression] = STATE(490), + [sym_sizeof_expression] = STATE(490), + [sym_subscript_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_field_expression] = STATE(490), + [sym_compound_literal_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_char_literal] = STATE(490), + [sym_concatenated_string] = STATE(490), + [sym_string_literal] = STATE(214), + [sym_macro_type_specifier] = STATE(299), + [aux_sym__declaration_specifiers_repeat1] = STATE(301), + [aux_sym_sized_type_specifier_repeat1] = STATE(302), + [anon_sym_extern] = ACTIONS(25), + [anon_sym_LPAREN2] = ACTIONS(461), + [anon_sym_STAR] = ACTIONS(463), + [anon_sym_RBRACK] = ACTIONS(1269), + [anon_sym_static] = ACTIONS(25), + [anon_sym_auto] = ACTIONS(25), + [anon_sym_register] = ACTIONS(25), + [anon_sym_inline] = ACTIONS(25), + [anon_sym_const] = ACTIONS(27), + [anon_sym_restrict] = ACTIONS(27), + [anon_sym_volatile] = ACTIONS(27), + [anon_sym__Atomic] = ACTIONS(27), + [anon_sym_unsigned] = ACTIONS(772), + [anon_sym_long] = ACTIONS(772), + [anon_sym_short] = ACTIONS(772), + [sym_primitive_type] = ACTIONS(774), + [anon_sym_enum] = ACTIONS(33), + [anon_sym_struct] = ACTIONS(35), + [anon_sym_union] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(463), + [anon_sym_BANG] = ACTIONS(465), + [anon_sym_TILDE] = ACTIONS(467), + [anon_sym_PLUS] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(469), + [anon_sym_DASH_DASH] = ACTIONS(471), + [anon_sym_PLUS_PLUS] = ACTIONS(471), + [anon_sym_sizeof] = ACTIONS(473), + [sym_number_literal] = ACTIONS(1271), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(1273), + [sym_false] = ACTIONS(1273), + [sym_null] = ACTIONS(1273), + [sym_identifier] = ACTIONS(780), + [sym_comment] = ACTIONS(59), }, [304] = { - [sym__expression] = STATE(513), - [sym_conditional_expression] = STATE(513), - [sym_assignment_expression] = STATE(513), - [sym_pointer_expression] = STATE(513), - [sym_logical_expression] = STATE(513), - [sym_bitwise_expression] = STATE(513), - [sym_equality_expression] = STATE(513), - [sym_relational_expression] = STATE(513), - [sym_shift_expression] = STATE(513), - [sym_math_expression] = STATE(513), - [sym_cast_expression] = STATE(513), - [sym_sizeof_expression] = STATE(513), - [sym_subscript_expression] = STATE(513), - [sym_call_expression] = STATE(513), - [sym_field_expression] = STATE(513), - [sym_compound_literal_expression] = STATE(513), - [sym_parenthesized_expression] = STATE(513), - [sym_char_literal] = STATE(513), - [sym_concatenated_string] = STATE(513), - [sym_string_literal] = STATE(249), - [anon_sym_LPAREN2] = ACTIONS(559), - [anon_sym_STAR] = ACTIONS(561), - [anon_sym_RBRACK] = ACTIONS(1230), - [anon_sym_AMP] = ACTIONS(561), - [anon_sym_BANG] = ACTIONS(569), - [anon_sym_TILDE] = ACTIONS(571), - [anon_sym_PLUS] = ACTIONS(573), - [anon_sym_DASH] = ACTIONS(573), - [anon_sym_DASH_DASH] = ACTIONS(575), - [anon_sym_PLUS_PLUS] = ACTIONS(575), - [anon_sym_sizeof] = ACTIONS(577), - [sym_number_literal] = ACTIONS(1232), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(1234), - [sym_false] = ACTIONS(1234), - [sym_null] = ACTIONS(1234), - [sym_identifier] = ACTIONS(1234), - [sym_comment] = ACTIONS(37), + [anon_sym_COMMA] = ACTIONS(1279), + [anon_sym_RPAREN] = ACTIONS(1279), + [anon_sym_LPAREN2] = ACTIONS(1279), + [anon_sym_LBRACK] = ACTIONS(1279), + [sym_comment] = ACTIONS(59), }, [305] = { - [sym_argument_list] = STATE(430), - [anon_sym_LPAREN2] = ACTIONS(1012), - [anon_sym_STAR] = ACTIONS(1082), - [anon_sym_LBRACK] = ACTIONS(1016), - [anon_sym_RBRACK] = ACTIONS(1230), - [anon_sym_EQ] = ACTIONS(1084), - [anon_sym_QMARK] = ACTIONS(1086), - [anon_sym_STAR_EQ] = ACTIONS(1088), - [anon_sym_SLASH_EQ] = ACTIONS(1088), - [anon_sym_PERCENT_EQ] = ACTIONS(1088), - [anon_sym_PLUS_EQ] = ACTIONS(1088), - [anon_sym_DASH_EQ] = ACTIONS(1088), - [anon_sym_LT_LT_EQ] = ACTIONS(1088), - [anon_sym_GT_GT_EQ] = ACTIONS(1088), - [anon_sym_AMP_EQ] = ACTIONS(1088), - [anon_sym_CARET_EQ] = ACTIONS(1088), - [anon_sym_PIPE_EQ] = ACTIONS(1088), - [anon_sym_AMP] = ACTIONS(1090), - [anon_sym_PIPE_PIPE] = ACTIONS(1092), - [anon_sym_AMP_AMP] = ACTIONS(1094), - [anon_sym_PIPE] = ACTIONS(1096), - [anon_sym_CARET] = ACTIONS(1098), - [anon_sym_EQ_EQ] = ACTIONS(1100), - [anon_sym_BANG_EQ] = ACTIONS(1100), - [anon_sym_LT] = ACTIONS(1102), - [anon_sym_GT] = ACTIONS(1102), - [anon_sym_LT_EQ] = ACTIONS(1104), - [anon_sym_GT_EQ] = ACTIONS(1104), - [anon_sym_LT_LT] = ACTIONS(1106), - [anon_sym_GT_GT] = ACTIONS(1106), - [anon_sym_PLUS] = ACTIONS(1108), - [anon_sym_DASH] = ACTIONS(1108), - [anon_sym_SLASH] = ACTIONS(1082), - [anon_sym_PERCENT] = ACTIONS(1082), - [anon_sym_DASH_DASH] = ACTIONS(1044), - [anon_sym_PLUS_PLUS] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1046), - [anon_sym_DASH_GT] = ACTIONS(1046), - [sym_comment] = ACTIONS(37), + [sym_argument_list] = STATE(98), + [anon_sym_COMMA] = ACTIONS(315), + [anon_sym_RPAREN] = ACTIONS(1281), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(319), + [anon_sym_LBRACK] = ACTIONS(188), + [anon_sym_EQ] = ACTIONS(321), + [anon_sym_QMARK] = ACTIONS(323), + [anon_sym_STAR_EQ] = ACTIONS(325), + [anon_sym_SLASH_EQ] = ACTIONS(325), + [anon_sym_PERCENT_EQ] = ACTIONS(325), + [anon_sym_PLUS_EQ] = ACTIONS(325), + [anon_sym_DASH_EQ] = ACTIONS(325), + [anon_sym_LT_LT_EQ] = ACTIONS(325), + [anon_sym_GT_GT_EQ] = ACTIONS(325), + [anon_sym_AMP_EQ] = ACTIONS(325), + [anon_sym_CARET_EQ] = ACTIONS(325), + [anon_sym_PIPE_EQ] = ACTIONS(325), + [anon_sym_AMP] = ACTIONS(327), + [anon_sym_PIPE_PIPE] = ACTIONS(329), + [anon_sym_AMP_AMP] = ACTIONS(331), + [anon_sym_PIPE] = ACTIONS(333), + [anon_sym_CARET] = ACTIONS(335), + [anon_sym_EQ_EQ] = ACTIONS(337), + [anon_sym_BANG_EQ] = ACTIONS(337), + [anon_sym_LT] = ACTIONS(339), + [anon_sym_GT] = ACTIONS(339), + [anon_sym_LT_EQ] = ACTIONS(341), + [anon_sym_GT_EQ] = ACTIONS(341), + [anon_sym_LT_LT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(343), + [anon_sym_PLUS] = ACTIONS(345), + [anon_sym_DASH] = ACTIONS(345), + [anon_sym_SLASH] = ACTIONS(319), + [anon_sym_PERCENT] = ACTIONS(319), + [anon_sym_DASH_DASH] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(216), + [anon_sym_DOT] = ACTIONS(218), + [anon_sym_DASH_GT] = ACTIONS(218), + [sym_comment] = ACTIONS(59), }, [306] = { - [ts_builtin_sym_end] = ACTIONS(1236), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1238), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1238), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1238), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1238), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1238), - [sym_preproc_directive] = ACTIONS(1238), - [anon_sym_SEMI] = ACTIONS(1236), - [anon_sym_typedef] = ACTIONS(1238), - [anon_sym_extern] = ACTIONS(1238), - [anon_sym_LBRACE] = ACTIONS(1236), - [anon_sym_RBRACE] = ACTIONS(1236), - [anon_sym_LPAREN2] = ACTIONS(1236), - [anon_sym_STAR] = ACTIONS(1236), - [anon_sym_static] = ACTIONS(1238), - [anon_sym_auto] = ACTIONS(1238), - [anon_sym_register] = ACTIONS(1238), - [anon_sym_inline] = ACTIONS(1238), - [anon_sym_const] = ACTIONS(1238), - [anon_sym_restrict] = ACTIONS(1238), - [anon_sym_volatile] = ACTIONS(1238), - [anon_sym__Atomic] = ACTIONS(1238), - [anon_sym_unsigned] = ACTIONS(1238), - [anon_sym_long] = ACTIONS(1238), - [anon_sym_short] = ACTIONS(1238), - [sym_primitive_type] = ACTIONS(1238), - [anon_sym_enum] = ACTIONS(1238), - [anon_sym_struct] = ACTIONS(1238), - [anon_sym_union] = ACTIONS(1238), - [anon_sym_if] = ACTIONS(1238), - [anon_sym_else] = ACTIONS(1238), - [anon_sym_switch] = ACTIONS(1238), - [anon_sym_case] = ACTIONS(1238), - [anon_sym_default] = ACTIONS(1238), - [anon_sym_while] = ACTIONS(1238), - [anon_sym_do] = ACTIONS(1238), - [anon_sym_for] = ACTIONS(1238), - [anon_sym_return] = ACTIONS(1238), - [anon_sym_break] = ACTIONS(1238), - [anon_sym_continue] = ACTIONS(1238), - [anon_sym_goto] = ACTIONS(1238), - [anon_sym_AMP] = ACTIONS(1236), - [anon_sym_BANG] = ACTIONS(1236), - [anon_sym_TILDE] = ACTIONS(1236), - [anon_sym_PLUS] = ACTIONS(1238), - [anon_sym_DASH] = ACTIONS(1238), - [anon_sym_DASH_DASH] = ACTIONS(1236), - [anon_sym_PLUS_PLUS] = ACTIONS(1236), - [anon_sym_sizeof] = ACTIONS(1238), - [sym_number_literal] = ACTIONS(1236), - [anon_sym_SQUOTE] = ACTIONS(1236), - [anon_sym_DQUOTE] = ACTIONS(1236), - [sym_true] = ACTIONS(1238), - [sym_false] = ACTIONS(1238), - [sym_null] = ACTIONS(1238), - [sym_identifier] = ACTIONS(1238), - [sym_comment] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(1281), + [anon_sym_RPAREN] = ACTIONS(1281), + [sym_comment] = ACTIONS(59), }, [307] = { - [ts_builtin_sym_end] = ACTIONS(1240), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1242), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1242), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1242), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1242), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1242), - [sym_preproc_directive] = ACTIONS(1242), - [anon_sym_typedef] = ACTIONS(1242), - [anon_sym_extern] = ACTIONS(1242), - [anon_sym_RBRACE] = ACTIONS(1240), - [anon_sym_static] = ACTIONS(1242), - [anon_sym_auto] = ACTIONS(1242), - [anon_sym_register] = ACTIONS(1242), - [anon_sym_inline] = ACTIONS(1242), - [anon_sym_const] = ACTIONS(1242), - [anon_sym_restrict] = ACTIONS(1242), - [anon_sym_volatile] = ACTIONS(1242), - [anon_sym__Atomic] = ACTIONS(1242), - [anon_sym_unsigned] = ACTIONS(1242), - [anon_sym_long] = ACTIONS(1242), - [anon_sym_short] = ACTIONS(1242), - [sym_primitive_type] = ACTIONS(1242), - [anon_sym_enum] = ACTIONS(1242), - [anon_sym_struct] = ACTIONS(1242), - [anon_sym_union] = ACTIONS(1242), - [sym_identifier] = ACTIONS(1242), - [sym_comment] = ACTIONS(37), + [sym_argument_list] = STATE(98), + [anon_sym_COMMA] = ACTIONS(1046), + [anon_sym_RPAREN] = ACTIONS(1046), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(319), + [anon_sym_LBRACK] = ACTIONS(188), + [anon_sym_EQ] = ACTIONS(321), + [anon_sym_QMARK] = ACTIONS(1046), + [anon_sym_STAR_EQ] = ACTIONS(325), + [anon_sym_SLASH_EQ] = ACTIONS(325), + [anon_sym_PERCENT_EQ] = ACTIONS(325), + [anon_sym_PLUS_EQ] = ACTIONS(325), + [anon_sym_DASH_EQ] = ACTIONS(325), + [anon_sym_LT_LT_EQ] = ACTIONS(325), + [anon_sym_GT_GT_EQ] = ACTIONS(325), + [anon_sym_AMP_EQ] = ACTIONS(325), + [anon_sym_CARET_EQ] = ACTIONS(325), + [anon_sym_PIPE_EQ] = ACTIONS(325), + [anon_sym_AMP] = ACTIONS(327), + [anon_sym_PIPE_PIPE] = ACTIONS(329), + [anon_sym_AMP_AMP] = ACTIONS(331), + [anon_sym_PIPE] = ACTIONS(333), + [anon_sym_CARET] = ACTIONS(335), + [anon_sym_EQ_EQ] = ACTIONS(337), + [anon_sym_BANG_EQ] = ACTIONS(337), + [anon_sym_LT] = ACTIONS(339), + [anon_sym_GT] = ACTIONS(339), + [anon_sym_LT_EQ] = ACTIONS(341), + [anon_sym_GT_EQ] = ACTIONS(341), + [anon_sym_LT_LT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(343), + [anon_sym_PLUS] = ACTIONS(345), + [anon_sym_DASH] = ACTIONS(345), + [anon_sym_SLASH] = ACTIONS(319), + [anon_sym_PERCENT] = ACTIONS(319), + [anon_sym_DASH_DASH] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(216), + [anon_sym_DOT] = ACTIONS(218), + [anon_sym_DASH_GT] = ACTIONS(218), + [sym_comment] = ACTIONS(59), }, [308] = { - [sym_preproc_include] = STATE(308), - [sym_preproc_def] = STATE(308), - [sym_preproc_function_def] = STATE(308), - [sym_preproc_call] = STATE(308), - [sym_preproc_if] = STATE(308), - [sym_preproc_ifdef] = STATE(308), - [sym_function_definition] = STATE(308), - [sym_declaration] = STATE(308), - [sym_type_definition] = STATE(308), - [sym__declaration_specifiers] = STATE(16), - [sym_linkage_specification] = STATE(308), - [sym_storage_class_specifier] = STATE(19), - [sym_type_qualifier] = STATE(19), - [sym__type_specifier] = STATE(17), - [sym_sized_type_specifier] = STATE(17), - [sym_enum_specifier] = STATE(17), - [sym_struct_specifier] = STATE(17), - [sym_union_specifier] = STATE(17), - [sym__empty_declaration] = STATE(308), - [sym_macro_type_specifier] = STATE(17), - [aux_sym_translation_unit_repeat1] = STATE(308), - [aux_sym__declaration_specifiers_repeat1] = STATE(19), - [aux_sym_sized_type_specifier_repeat1] = STATE(20), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(243), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(246), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(249), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(252), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(252), - [sym_preproc_directive] = ACTIONS(255), - [anon_sym_typedef] = ACTIONS(258), - [anon_sym_extern] = ACTIONS(261), - [anon_sym_RBRACE] = ACTIONS(241), - [anon_sym_static] = ACTIONS(264), - [anon_sym_auto] = ACTIONS(264), - [anon_sym_register] = ACTIONS(264), - [anon_sym_inline] = ACTIONS(264), - [anon_sym_const] = ACTIONS(267), - [anon_sym_restrict] = ACTIONS(267), - [anon_sym_volatile] = ACTIONS(267), - [anon_sym__Atomic] = ACTIONS(267), - [anon_sym_unsigned] = ACTIONS(270), - [anon_sym_long] = ACTIONS(270), - [anon_sym_short] = ACTIONS(270), - [sym_primitive_type] = ACTIONS(273), - [anon_sym_enum] = ACTIONS(276), - [anon_sym_struct] = ACTIONS(279), - [anon_sym_union] = ACTIONS(282), - [sym_identifier] = ACTIONS(285), - [sym_comment] = ACTIONS(37), + [sym_argument_list] = STATE(98), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(1054), + [anon_sym_LBRACK] = ACTIONS(188), + [anon_sym_EQ] = ACTIONS(1056), + [anon_sym_COLON] = ACTIONS(1283), + [anon_sym_QMARK] = ACTIONS(1060), + [anon_sym_STAR_EQ] = ACTIONS(1062), + [anon_sym_SLASH_EQ] = ACTIONS(1062), + [anon_sym_PERCENT_EQ] = ACTIONS(1062), + [anon_sym_PLUS_EQ] = ACTIONS(1062), + [anon_sym_DASH_EQ] = ACTIONS(1062), + [anon_sym_LT_LT_EQ] = ACTIONS(1062), + [anon_sym_GT_GT_EQ] = ACTIONS(1062), + [anon_sym_AMP_EQ] = ACTIONS(1062), + [anon_sym_CARET_EQ] = ACTIONS(1062), + [anon_sym_PIPE_EQ] = ACTIONS(1062), + [anon_sym_AMP] = ACTIONS(1064), + [anon_sym_PIPE_PIPE] = ACTIONS(1066), + [anon_sym_AMP_AMP] = ACTIONS(1068), + [anon_sym_PIPE] = ACTIONS(1070), + [anon_sym_CARET] = ACTIONS(1072), + [anon_sym_EQ_EQ] = ACTIONS(1074), + [anon_sym_BANG_EQ] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(1076), + [anon_sym_GT] = ACTIONS(1076), + [anon_sym_LT_EQ] = ACTIONS(1078), + [anon_sym_GT_EQ] = ACTIONS(1078), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_GT_GT] = ACTIONS(1080), + [anon_sym_PLUS] = ACTIONS(1082), + [anon_sym_DASH] = ACTIONS(1082), + [anon_sym_SLASH] = ACTIONS(1054), + [anon_sym_PERCENT] = ACTIONS(1054), + [anon_sym_DASH_DASH] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(216), + [anon_sym_DOT] = ACTIONS(218), + [anon_sym_DASH_GT] = ACTIONS(218), + [sym_comment] = ACTIONS(59), }, [309] = { - [sym_storage_class_specifier] = STATE(309), - [sym_type_qualifier] = STATE(309), - [aux_sym__declaration_specifiers_repeat1] = STATE(309), - [anon_sym_extern] = ACTIONS(288), - [anon_sym_LPAREN2] = ACTIONS(599), - [anon_sym_STAR] = ACTIONS(599), - [anon_sym_static] = ACTIONS(288), - [anon_sym_auto] = ACTIONS(288), - [anon_sym_register] = ACTIONS(288), - [anon_sym_inline] = ACTIONS(288), - [anon_sym_const] = ACTIONS(291), - [anon_sym_restrict] = ACTIONS(291), - [anon_sym_volatile] = ACTIONS(291), - [anon_sym__Atomic] = ACTIONS(291), - [sym_identifier] = ACTIONS(294), - [sym_comment] = ACTIONS(37), + [sym_argument_list] = STATE(98), + [anon_sym_COMMA] = ACTIONS(1086), + [anon_sym_RPAREN] = ACTIONS(1086), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(319), + [anon_sym_LBRACK] = ACTIONS(188), + [anon_sym_EQ] = ACTIONS(1084), + [anon_sym_QMARK] = ACTIONS(1086), + [anon_sym_STAR_EQ] = ACTIONS(1086), + [anon_sym_SLASH_EQ] = ACTIONS(1086), + [anon_sym_PERCENT_EQ] = ACTIONS(1086), + [anon_sym_PLUS_EQ] = ACTIONS(1086), + [anon_sym_DASH_EQ] = ACTIONS(1086), + [anon_sym_LT_LT_EQ] = ACTIONS(1086), + [anon_sym_GT_GT_EQ] = ACTIONS(1086), + [anon_sym_AMP_EQ] = ACTIONS(1086), + [anon_sym_CARET_EQ] = ACTIONS(1086), + [anon_sym_PIPE_EQ] = ACTIONS(1086), + [anon_sym_AMP] = ACTIONS(1084), + [anon_sym_PIPE_PIPE] = ACTIONS(1086), + [anon_sym_AMP_AMP] = ACTIONS(1086), + [anon_sym_PIPE] = ACTIONS(1084), + [anon_sym_CARET] = ACTIONS(1084), + [anon_sym_EQ_EQ] = ACTIONS(337), + [anon_sym_BANG_EQ] = ACTIONS(337), + [anon_sym_LT] = ACTIONS(339), + [anon_sym_GT] = ACTIONS(339), + [anon_sym_LT_EQ] = ACTIONS(341), + [anon_sym_GT_EQ] = ACTIONS(341), + [anon_sym_LT_LT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(343), + [anon_sym_PLUS] = ACTIONS(345), + [anon_sym_DASH] = ACTIONS(345), + [anon_sym_SLASH] = ACTIONS(319), + [anon_sym_PERCENT] = ACTIONS(319), + [anon_sym_DASH_DASH] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(216), + [anon_sym_DOT] = ACTIONS(218), + [anon_sym_DASH_GT] = ACTIONS(218), + [sym_comment] = ACTIONS(59), }, [310] = { - [sym_storage_class_specifier] = STATE(309), - [sym_type_qualifier] = STATE(309), - [aux_sym__declaration_specifiers_repeat1] = STATE(309), - [anon_sym_extern] = ACTIONS(21), - [anon_sym_LPAREN2] = ACTIONS(601), - [anon_sym_STAR] = ACTIONS(601), - [anon_sym_static] = ACTIONS(21), - [anon_sym_auto] = ACTIONS(21), - [anon_sym_register] = ACTIONS(21), - [anon_sym_inline] = ACTIONS(21), - [anon_sym_const] = ACTIONS(23), - [anon_sym_restrict] = ACTIONS(23), - [anon_sym_volatile] = ACTIONS(23), - [anon_sym__Atomic] = ACTIONS(23), - [sym_identifier] = ACTIONS(603), - [sym_comment] = ACTIONS(37), + [sym_argument_list] = STATE(98), + [anon_sym_COMMA] = ACTIONS(1090), + [anon_sym_RPAREN] = ACTIONS(1090), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(319), + [anon_sym_LBRACK] = ACTIONS(188), + [anon_sym_EQ] = ACTIONS(1088), + [anon_sym_QMARK] = ACTIONS(1090), + [anon_sym_STAR_EQ] = ACTIONS(1090), + [anon_sym_SLASH_EQ] = ACTIONS(1090), + [anon_sym_PERCENT_EQ] = ACTIONS(1090), + [anon_sym_PLUS_EQ] = ACTIONS(1090), + [anon_sym_DASH_EQ] = ACTIONS(1090), + [anon_sym_LT_LT_EQ] = ACTIONS(1090), + [anon_sym_GT_GT_EQ] = ACTIONS(1090), + [anon_sym_AMP_EQ] = ACTIONS(1090), + [anon_sym_CARET_EQ] = ACTIONS(1090), + [anon_sym_PIPE_EQ] = ACTIONS(1090), + [anon_sym_AMP] = ACTIONS(327), + [anon_sym_PIPE_PIPE] = ACTIONS(1090), + [anon_sym_AMP_AMP] = ACTIONS(331), + [anon_sym_PIPE] = ACTIONS(333), + [anon_sym_CARET] = ACTIONS(335), + [anon_sym_EQ_EQ] = ACTIONS(337), + [anon_sym_BANG_EQ] = ACTIONS(337), + [anon_sym_LT] = ACTIONS(339), + [anon_sym_GT] = ACTIONS(339), + [anon_sym_LT_EQ] = ACTIONS(341), + [anon_sym_GT_EQ] = ACTIONS(341), + [anon_sym_LT_LT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(343), + [anon_sym_PLUS] = ACTIONS(345), + [anon_sym_DASH] = ACTIONS(345), + [anon_sym_SLASH] = ACTIONS(319), + [anon_sym_PERCENT] = ACTIONS(319), + [anon_sym_DASH_DASH] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(216), + [anon_sym_DOT] = ACTIONS(218), + [anon_sym_DASH_GT] = ACTIONS(218), + [sym_comment] = ACTIONS(59), }, [311] = { - [sym_type_qualifier] = STATE(106), - [sym__type_specifier] = STATE(104), - [sym_sized_type_specifier] = STATE(104), - [sym_enum_specifier] = STATE(104), - [sym_struct_specifier] = STATE(104), - [sym_union_specifier] = STATE(104), - [sym__expression] = STATE(371), - [sym_comma_expression] = STATE(372), - [sym_conditional_expression] = STATE(371), - [sym_assignment_expression] = STATE(371), - [sym_pointer_expression] = STATE(371), - [sym_logical_expression] = STATE(371), - [sym_bitwise_expression] = STATE(371), - [sym_equality_expression] = STATE(371), - [sym_relational_expression] = STATE(371), - [sym_shift_expression] = STATE(371), - [sym_math_expression] = STATE(371), - [sym_cast_expression] = STATE(371), - [sym_type_descriptor] = STATE(514), - [sym_sizeof_expression] = STATE(371), - [sym_subscript_expression] = STATE(371), - [sym_call_expression] = STATE(371), - [sym_field_expression] = STATE(371), - [sym_compound_literal_expression] = STATE(371), - [sym_parenthesized_expression] = STATE(371), - [sym_char_literal] = STATE(371), - [sym_concatenated_string] = STATE(371), - [sym_string_literal] = STATE(374), - [sym_macro_type_specifier] = STATE(104), - [aux_sym_type_definition_repeat1] = STATE(106), - [aux_sym_sized_type_specifier_repeat1] = STATE(107), - [anon_sym_LPAREN2] = ACTIONS(892), - [anon_sym_STAR] = ACTIONS(894), - [anon_sym_const] = ACTIONS(23), - [anon_sym_restrict] = ACTIONS(23), - [anon_sym_volatile] = ACTIONS(23), - [anon_sym__Atomic] = ACTIONS(23), - [anon_sym_unsigned] = ACTIONS(211), - [anon_sym_long] = ACTIONS(211), - [anon_sym_short] = ACTIONS(211), - [sym_primitive_type] = ACTIONS(213), - [anon_sym_enum] = ACTIONS(29), - [anon_sym_struct] = ACTIONS(31), - [anon_sym_union] = ACTIONS(33), - [anon_sym_AMP] = ACTIONS(894), - [anon_sym_BANG] = ACTIONS(896), - [anon_sym_TILDE] = ACTIONS(898), - [anon_sym_PLUS] = ACTIONS(900), - [anon_sym_DASH] = ACTIONS(900), - [anon_sym_DASH_DASH] = ACTIONS(902), - [anon_sym_PLUS_PLUS] = ACTIONS(902), - [anon_sym_sizeof] = ACTIONS(904), - [sym_number_literal] = ACTIONS(906), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(908), - [sym_false] = ACTIONS(908), - [sym_null] = ACTIONS(908), - [sym_identifier] = ACTIONS(910), - [sym_comment] = ACTIONS(37), + [sym_argument_list] = STATE(98), + [anon_sym_COMMA] = ACTIONS(1090), + [anon_sym_RPAREN] = ACTIONS(1090), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(319), + [anon_sym_LBRACK] = ACTIONS(188), + [anon_sym_EQ] = ACTIONS(1088), + [anon_sym_QMARK] = ACTIONS(1090), + [anon_sym_STAR_EQ] = ACTIONS(1090), + [anon_sym_SLASH_EQ] = ACTIONS(1090), + [anon_sym_PERCENT_EQ] = ACTIONS(1090), + [anon_sym_PLUS_EQ] = ACTIONS(1090), + [anon_sym_DASH_EQ] = ACTIONS(1090), + [anon_sym_LT_LT_EQ] = ACTIONS(1090), + [anon_sym_GT_GT_EQ] = ACTIONS(1090), + [anon_sym_AMP_EQ] = ACTIONS(1090), + [anon_sym_CARET_EQ] = ACTIONS(1090), + [anon_sym_PIPE_EQ] = ACTIONS(1090), + [anon_sym_AMP] = ACTIONS(327), + [anon_sym_PIPE_PIPE] = ACTIONS(1090), + [anon_sym_AMP_AMP] = ACTIONS(1090), + [anon_sym_PIPE] = ACTIONS(333), + [anon_sym_CARET] = ACTIONS(335), + [anon_sym_EQ_EQ] = ACTIONS(337), + [anon_sym_BANG_EQ] = ACTIONS(337), + [anon_sym_LT] = ACTIONS(339), + [anon_sym_GT] = ACTIONS(339), + [anon_sym_LT_EQ] = ACTIONS(341), + [anon_sym_GT_EQ] = ACTIONS(341), + [anon_sym_LT_LT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(343), + [anon_sym_PLUS] = ACTIONS(345), + [anon_sym_DASH] = ACTIONS(345), + [anon_sym_SLASH] = ACTIONS(319), + [anon_sym_PERCENT] = ACTIONS(319), + [anon_sym_DASH_DASH] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(216), + [anon_sym_DOT] = ACTIONS(218), + [anon_sym_DASH_GT] = ACTIONS(218), + [sym_comment] = ACTIONS(59), }, [312] = { - [sym__expression] = STATE(375), - [sym_conditional_expression] = STATE(375), - [sym_assignment_expression] = STATE(375), - [sym_pointer_expression] = STATE(375), - [sym_logical_expression] = STATE(375), - [sym_bitwise_expression] = STATE(375), - [sym_equality_expression] = STATE(375), - [sym_relational_expression] = STATE(375), - [sym_shift_expression] = STATE(375), - [sym_math_expression] = STATE(375), - [sym_cast_expression] = STATE(375), - [sym_sizeof_expression] = STATE(375), - [sym_subscript_expression] = STATE(375), - [sym_call_expression] = STATE(375), - [sym_field_expression] = STATE(375), - [sym_compound_literal_expression] = STATE(375), - [sym_parenthesized_expression] = STATE(375), - [sym_char_literal] = STATE(375), - [sym_concatenated_string] = STATE(375), - [sym_string_literal] = STATE(318), - [anon_sym_LPAREN2] = ACTIONS(742), - [anon_sym_STAR] = ACTIONS(744), - [anon_sym_AMP] = ACTIONS(744), - [anon_sym_BANG] = ACTIONS(746), - [anon_sym_TILDE] = ACTIONS(748), - [anon_sym_PLUS] = ACTIONS(750), - [anon_sym_DASH] = ACTIONS(750), - [anon_sym_DASH_DASH] = ACTIONS(752), - [anon_sym_PLUS_PLUS] = ACTIONS(752), - [anon_sym_sizeof] = ACTIONS(754), - [sym_number_literal] = ACTIONS(912), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(914), - [sym_false] = ACTIONS(914), - [sym_null] = ACTIONS(914), - [sym_identifier] = ACTIONS(914), - [sym_comment] = ACTIONS(37), + [sym_argument_list] = STATE(98), + [anon_sym_COMMA] = ACTIONS(1086), + [anon_sym_RPAREN] = ACTIONS(1086), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(319), + [anon_sym_LBRACK] = ACTIONS(188), + [anon_sym_EQ] = ACTIONS(1084), + [anon_sym_QMARK] = ACTIONS(1086), + [anon_sym_STAR_EQ] = ACTIONS(1086), + [anon_sym_SLASH_EQ] = ACTIONS(1086), + [anon_sym_PERCENT_EQ] = ACTIONS(1086), + [anon_sym_PLUS_EQ] = ACTIONS(1086), + [anon_sym_DASH_EQ] = ACTIONS(1086), + [anon_sym_LT_LT_EQ] = ACTIONS(1086), + [anon_sym_GT_GT_EQ] = ACTIONS(1086), + [anon_sym_AMP_EQ] = ACTIONS(1086), + [anon_sym_CARET_EQ] = ACTIONS(1086), + [anon_sym_PIPE_EQ] = ACTIONS(1086), + [anon_sym_AMP] = ACTIONS(327), + [anon_sym_PIPE_PIPE] = ACTIONS(1086), + [anon_sym_AMP_AMP] = ACTIONS(1086), + [anon_sym_PIPE] = ACTIONS(1084), + [anon_sym_CARET] = ACTIONS(335), + [anon_sym_EQ_EQ] = ACTIONS(337), + [anon_sym_BANG_EQ] = ACTIONS(337), + [anon_sym_LT] = ACTIONS(339), + [anon_sym_GT] = ACTIONS(339), + [anon_sym_LT_EQ] = ACTIONS(341), + [anon_sym_GT_EQ] = ACTIONS(341), + [anon_sym_LT_LT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(343), + [anon_sym_PLUS] = ACTIONS(345), + [anon_sym_DASH] = ACTIONS(345), + [anon_sym_SLASH] = ACTIONS(319), + [anon_sym_PERCENT] = ACTIONS(319), + [anon_sym_DASH_DASH] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(216), + [anon_sym_DOT] = ACTIONS(218), + [anon_sym_DASH_GT] = ACTIONS(218), + [sym_comment] = ACTIONS(59), }, [313] = { - [sym__expression] = STATE(404), - [sym_conditional_expression] = STATE(404), - [sym_assignment_expression] = STATE(404), - [sym_pointer_expression] = STATE(404), - [sym_logical_expression] = STATE(404), - [sym_bitwise_expression] = STATE(404), - [sym_equality_expression] = STATE(404), - [sym_relational_expression] = STATE(404), - [sym_shift_expression] = STATE(404), - [sym_math_expression] = STATE(404), - [sym_cast_expression] = STATE(404), - [sym_sizeof_expression] = STATE(404), - [sym_subscript_expression] = STATE(404), - [sym_call_expression] = STATE(404), - [sym_field_expression] = STATE(404), - [sym_compound_literal_expression] = STATE(404), - [sym_parenthesized_expression] = STATE(404), - [sym_char_literal] = STATE(404), - [sym_concatenated_string] = STATE(404), - [sym_string_literal] = STATE(318), - [anon_sym_LPAREN2] = ACTIONS(742), - [anon_sym_STAR] = ACTIONS(744), - [anon_sym_AMP] = ACTIONS(744), - [anon_sym_BANG] = ACTIONS(746), - [anon_sym_TILDE] = ACTIONS(748), - [anon_sym_PLUS] = ACTIONS(750), - [anon_sym_DASH] = ACTIONS(750), - [anon_sym_DASH_DASH] = ACTIONS(752), - [anon_sym_PLUS_PLUS] = ACTIONS(752), - [anon_sym_sizeof] = ACTIONS(754), - [sym_number_literal] = ACTIONS(968), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(970), - [sym_false] = ACTIONS(970), - [sym_null] = ACTIONS(970), - [sym_identifier] = ACTIONS(970), - [sym_comment] = ACTIONS(37), + [sym_argument_list] = STATE(98), + [anon_sym_COMMA] = ACTIONS(1086), + [anon_sym_RPAREN] = ACTIONS(1086), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(319), + [anon_sym_LBRACK] = ACTIONS(188), + [anon_sym_EQ] = ACTIONS(1084), + [anon_sym_QMARK] = ACTIONS(1086), + [anon_sym_STAR_EQ] = ACTIONS(1086), + [anon_sym_SLASH_EQ] = ACTIONS(1086), + [anon_sym_PERCENT_EQ] = ACTIONS(1086), + [anon_sym_PLUS_EQ] = ACTIONS(1086), + [anon_sym_DASH_EQ] = ACTIONS(1086), + [anon_sym_LT_LT_EQ] = ACTIONS(1086), + [anon_sym_GT_GT_EQ] = ACTIONS(1086), + [anon_sym_AMP_EQ] = ACTIONS(1086), + [anon_sym_CARET_EQ] = ACTIONS(1086), + [anon_sym_PIPE_EQ] = ACTIONS(1086), + [anon_sym_AMP] = ACTIONS(327), + [anon_sym_PIPE_PIPE] = ACTIONS(1086), + [anon_sym_AMP_AMP] = ACTIONS(1086), + [anon_sym_PIPE] = ACTIONS(1084), + [anon_sym_CARET] = ACTIONS(1084), + [anon_sym_EQ_EQ] = ACTIONS(337), + [anon_sym_BANG_EQ] = ACTIONS(337), + [anon_sym_LT] = ACTIONS(339), + [anon_sym_GT] = ACTIONS(339), + [anon_sym_LT_EQ] = ACTIONS(341), + [anon_sym_GT_EQ] = ACTIONS(341), + [anon_sym_LT_LT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(343), + [anon_sym_PLUS] = ACTIONS(345), + [anon_sym_DASH] = ACTIONS(345), + [anon_sym_SLASH] = ACTIONS(319), + [anon_sym_PERCENT] = ACTIONS(319), + [anon_sym_DASH_DASH] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(216), + [anon_sym_DOT] = ACTIONS(218), + [anon_sym_DASH_GT] = ACTIONS(218), + [sym_comment] = ACTIONS(59), }, [314] = { - [sym__expression] = STATE(405), - [sym_conditional_expression] = STATE(405), - [sym_assignment_expression] = STATE(405), - [sym_pointer_expression] = STATE(405), - [sym_logical_expression] = STATE(405), - [sym_bitwise_expression] = STATE(405), - [sym_equality_expression] = STATE(405), - [sym_relational_expression] = STATE(405), - [sym_shift_expression] = STATE(405), - [sym_math_expression] = STATE(405), - [sym_cast_expression] = STATE(405), - [sym_sizeof_expression] = STATE(405), - [sym_subscript_expression] = STATE(405), - [sym_call_expression] = STATE(405), - [sym_field_expression] = STATE(405), - [sym_compound_literal_expression] = STATE(405), - [sym_parenthesized_expression] = STATE(405), - [sym_char_literal] = STATE(405), - [sym_concatenated_string] = STATE(405), - [sym_string_literal] = STATE(318), - [anon_sym_LPAREN2] = ACTIONS(742), - [anon_sym_STAR] = ACTIONS(744), - [anon_sym_AMP] = ACTIONS(744), - [anon_sym_BANG] = ACTIONS(746), - [anon_sym_TILDE] = ACTIONS(748), - [anon_sym_PLUS] = ACTIONS(750), - [anon_sym_DASH] = ACTIONS(750), - [anon_sym_DASH_DASH] = ACTIONS(752), - [anon_sym_PLUS_PLUS] = ACTIONS(752), - [anon_sym_sizeof] = ACTIONS(754), - [sym_number_literal] = ACTIONS(972), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(974), - [sym_false] = ACTIONS(974), - [sym_null] = ACTIONS(974), - [sym_identifier] = ACTIONS(974), - [sym_comment] = ACTIONS(37), + [sym_argument_list] = STATE(98), + [anon_sym_COMMA] = ACTIONS(1094), + [anon_sym_RPAREN] = ACTIONS(1094), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(319), + [anon_sym_LBRACK] = ACTIONS(188), + [anon_sym_EQ] = ACTIONS(1092), + [anon_sym_QMARK] = ACTIONS(1094), + [anon_sym_STAR_EQ] = ACTIONS(1094), + [anon_sym_SLASH_EQ] = ACTIONS(1094), + [anon_sym_PERCENT_EQ] = ACTIONS(1094), + [anon_sym_PLUS_EQ] = ACTIONS(1094), + [anon_sym_DASH_EQ] = ACTIONS(1094), + [anon_sym_LT_LT_EQ] = ACTIONS(1094), + [anon_sym_GT_GT_EQ] = ACTIONS(1094), + [anon_sym_AMP_EQ] = ACTIONS(1094), + [anon_sym_CARET_EQ] = ACTIONS(1094), + [anon_sym_PIPE_EQ] = ACTIONS(1094), + [anon_sym_AMP] = ACTIONS(1092), + [anon_sym_PIPE_PIPE] = ACTIONS(1094), + [anon_sym_AMP_AMP] = ACTIONS(1094), + [anon_sym_PIPE] = ACTIONS(1092), + [anon_sym_CARET] = ACTIONS(1092), + [anon_sym_EQ_EQ] = ACTIONS(1094), + [anon_sym_BANG_EQ] = ACTIONS(1094), + [anon_sym_LT] = ACTIONS(339), + [anon_sym_GT] = ACTIONS(339), + [anon_sym_LT_EQ] = ACTIONS(341), + [anon_sym_GT_EQ] = ACTIONS(341), + [anon_sym_LT_LT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(343), + [anon_sym_PLUS] = ACTIONS(345), + [anon_sym_DASH] = ACTIONS(345), + [anon_sym_SLASH] = ACTIONS(319), + [anon_sym_PERCENT] = ACTIONS(319), + [anon_sym_DASH_DASH] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(216), + [anon_sym_DOT] = ACTIONS(218), + [anon_sym_DASH_GT] = ACTIONS(218), + [sym_comment] = ACTIONS(59), }, [315] = { - [sym__expression] = STATE(406), - [sym_conditional_expression] = STATE(406), - [sym_assignment_expression] = STATE(406), - [sym_pointer_expression] = STATE(406), - [sym_logical_expression] = STATE(406), - [sym_bitwise_expression] = STATE(406), - [sym_equality_expression] = STATE(406), - [sym_relational_expression] = STATE(406), - [sym_shift_expression] = STATE(406), - [sym_math_expression] = STATE(406), - [sym_cast_expression] = STATE(406), - [sym_sizeof_expression] = STATE(406), - [sym_subscript_expression] = STATE(406), - [sym_call_expression] = STATE(406), - [sym_field_expression] = STATE(406), - [sym_compound_literal_expression] = STATE(406), - [sym_parenthesized_expression] = STATE(406), - [sym_char_literal] = STATE(406), - [sym_concatenated_string] = STATE(406), - [sym_string_literal] = STATE(318), - [anon_sym_LPAREN2] = ACTIONS(742), - [anon_sym_STAR] = ACTIONS(744), - [anon_sym_AMP] = ACTIONS(744), - [anon_sym_BANG] = ACTIONS(746), - [anon_sym_TILDE] = ACTIONS(748), - [anon_sym_PLUS] = ACTIONS(750), - [anon_sym_DASH] = ACTIONS(750), - [anon_sym_DASH_DASH] = ACTIONS(752), - [anon_sym_PLUS_PLUS] = ACTIONS(752), - [anon_sym_sizeof] = ACTIONS(754), - [sym_number_literal] = ACTIONS(976), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(978), - [sym_false] = ACTIONS(978), - [sym_null] = ACTIONS(978), - [sym_identifier] = ACTIONS(978), - [sym_comment] = ACTIONS(37), + [sym_argument_list] = STATE(98), + [anon_sym_COMMA] = ACTIONS(1098), + [anon_sym_RPAREN] = ACTIONS(1098), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(319), + [anon_sym_LBRACK] = ACTIONS(188), + [anon_sym_EQ] = ACTIONS(1096), + [anon_sym_QMARK] = ACTIONS(1098), + [anon_sym_STAR_EQ] = ACTIONS(1098), + [anon_sym_SLASH_EQ] = ACTIONS(1098), + [anon_sym_PERCENT_EQ] = ACTIONS(1098), + [anon_sym_PLUS_EQ] = ACTIONS(1098), + [anon_sym_DASH_EQ] = ACTIONS(1098), + [anon_sym_LT_LT_EQ] = ACTIONS(1098), + [anon_sym_GT_GT_EQ] = ACTIONS(1098), + [anon_sym_AMP_EQ] = ACTIONS(1098), + [anon_sym_CARET_EQ] = ACTIONS(1098), + [anon_sym_PIPE_EQ] = ACTIONS(1098), + [anon_sym_AMP] = ACTIONS(1096), + [anon_sym_PIPE_PIPE] = ACTIONS(1098), + [anon_sym_AMP_AMP] = ACTIONS(1098), + [anon_sym_PIPE] = ACTIONS(1096), + [anon_sym_CARET] = ACTIONS(1096), + [anon_sym_EQ_EQ] = ACTIONS(1098), + [anon_sym_BANG_EQ] = ACTIONS(1098), + [anon_sym_LT] = ACTIONS(1096), + [anon_sym_GT] = ACTIONS(1096), + [anon_sym_LT_EQ] = ACTIONS(1098), + [anon_sym_GT_EQ] = ACTIONS(1098), + [anon_sym_LT_LT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(343), + [anon_sym_PLUS] = ACTIONS(345), + [anon_sym_DASH] = ACTIONS(345), + [anon_sym_SLASH] = ACTIONS(319), + [anon_sym_PERCENT] = ACTIONS(319), + [anon_sym_DASH_DASH] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(216), + [anon_sym_DOT] = ACTIONS(218), + [anon_sym_DASH_GT] = ACTIONS(218), + [sym_comment] = ACTIONS(59), }, [316] = { - [sym__expression] = STATE(516), - [sym_conditional_expression] = STATE(516), - [sym_assignment_expression] = STATE(516), - [sym_pointer_expression] = STATE(516), - [sym_logical_expression] = STATE(516), - [sym_bitwise_expression] = STATE(516), - [sym_equality_expression] = STATE(516), - [sym_relational_expression] = STATE(516), - [sym_shift_expression] = STATE(516), - [sym_math_expression] = STATE(516), - [sym_cast_expression] = STATE(516), - [sym_sizeof_expression] = STATE(516), - [sym_subscript_expression] = STATE(516), - [sym_call_expression] = STATE(516), - [sym_field_expression] = STATE(516), - [sym_compound_literal_expression] = STATE(516), - [sym_parenthesized_expression] = STATE(516), - [sym_char_literal] = STATE(516), - [sym_concatenated_string] = STATE(516), - [sym_string_literal] = STATE(318), - [anon_sym_LPAREN2] = ACTIONS(1244), - [anon_sym_STAR] = ACTIONS(744), - [anon_sym_AMP] = ACTIONS(744), - [anon_sym_BANG] = ACTIONS(746), - [anon_sym_TILDE] = ACTIONS(748), - [anon_sym_PLUS] = ACTIONS(750), - [anon_sym_DASH] = ACTIONS(750), - [anon_sym_DASH_DASH] = ACTIONS(752), - [anon_sym_PLUS_PLUS] = ACTIONS(752), - [anon_sym_sizeof] = ACTIONS(754), - [sym_number_literal] = ACTIONS(1246), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(1248), - [sym_false] = ACTIONS(1248), - [sym_null] = ACTIONS(1248), - [sym_identifier] = ACTIONS(1248), - [sym_comment] = ACTIONS(37), + [sym_argument_list] = STATE(98), + [anon_sym_COMMA] = ACTIONS(1102), + [anon_sym_RPAREN] = ACTIONS(1102), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(319), + [anon_sym_LBRACK] = ACTIONS(188), + [anon_sym_EQ] = ACTIONS(1100), + [anon_sym_QMARK] = ACTIONS(1102), + [anon_sym_STAR_EQ] = ACTIONS(1102), + [anon_sym_SLASH_EQ] = ACTIONS(1102), + [anon_sym_PERCENT_EQ] = ACTIONS(1102), + [anon_sym_PLUS_EQ] = ACTIONS(1102), + [anon_sym_DASH_EQ] = ACTIONS(1102), + [anon_sym_LT_LT_EQ] = ACTIONS(1102), + [anon_sym_GT_GT_EQ] = ACTIONS(1102), + [anon_sym_AMP_EQ] = ACTIONS(1102), + [anon_sym_CARET_EQ] = ACTIONS(1102), + [anon_sym_PIPE_EQ] = ACTIONS(1102), + [anon_sym_AMP] = ACTIONS(1100), + [anon_sym_PIPE_PIPE] = ACTIONS(1102), + [anon_sym_AMP_AMP] = ACTIONS(1102), + [anon_sym_PIPE] = ACTIONS(1100), + [anon_sym_CARET] = ACTIONS(1100), + [anon_sym_EQ_EQ] = ACTIONS(1102), + [anon_sym_BANG_EQ] = ACTIONS(1102), + [anon_sym_LT] = ACTIONS(1100), + [anon_sym_GT] = ACTIONS(1100), + [anon_sym_LT_EQ] = ACTIONS(1102), + [anon_sym_GT_EQ] = ACTIONS(1102), + [anon_sym_LT_LT] = ACTIONS(1100), + [anon_sym_GT_GT] = ACTIONS(1100), + [anon_sym_PLUS] = ACTIONS(345), + [anon_sym_DASH] = ACTIONS(345), + [anon_sym_SLASH] = ACTIONS(319), + [anon_sym_PERCENT] = ACTIONS(319), + [anon_sym_DASH_DASH] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(216), + [anon_sym_DOT] = ACTIONS(218), + [anon_sym_DASH_GT] = ACTIONS(218), + [sym_comment] = ACTIONS(59), }, [317] = { - [sym_argument_list] = STATE(430), - [anon_sym_COMMA] = ACTIONS(1250), - [anon_sym_RBRACE] = ACTIONS(1250), - [anon_sym_LPAREN2] = ACTIONS(1012), - [anon_sym_STAR] = ACTIONS(1252), - [anon_sym_LBRACK] = ACTIONS(1016), - [anon_sym_EQ] = ACTIONS(1254), - [anon_sym_QMARK] = ACTIONS(1256), - [anon_sym_STAR_EQ] = ACTIONS(1258), - [anon_sym_SLASH_EQ] = ACTIONS(1258), - [anon_sym_PERCENT_EQ] = ACTIONS(1258), - [anon_sym_PLUS_EQ] = ACTIONS(1258), - [anon_sym_DASH_EQ] = ACTIONS(1258), - [anon_sym_LT_LT_EQ] = ACTIONS(1258), - [anon_sym_GT_GT_EQ] = ACTIONS(1258), - [anon_sym_AMP_EQ] = ACTIONS(1258), - [anon_sym_CARET_EQ] = ACTIONS(1258), - [anon_sym_PIPE_EQ] = ACTIONS(1258), - [anon_sym_AMP] = ACTIONS(1260), - [anon_sym_PIPE_PIPE] = ACTIONS(1262), - [anon_sym_AMP_AMP] = ACTIONS(1264), - [anon_sym_PIPE] = ACTIONS(1266), - [anon_sym_CARET] = ACTIONS(1268), - [anon_sym_EQ_EQ] = ACTIONS(1270), - [anon_sym_BANG_EQ] = ACTIONS(1270), - [anon_sym_LT] = ACTIONS(1272), - [anon_sym_GT] = ACTIONS(1272), - [anon_sym_LT_EQ] = ACTIONS(1274), - [anon_sym_GT_EQ] = ACTIONS(1274), - [anon_sym_LT_LT] = ACTIONS(1276), - [anon_sym_GT_GT] = ACTIONS(1276), - [anon_sym_PLUS] = ACTIONS(1278), - [anon_sym_DASH] = ACTIONS(1278), - [anon_sym_SLASH] = ACTIONS(1252), - [anon_sym_PERCENT] = ACTIONS(1252), - [anon_sym_DASH_DASH] = ACTIONS(1044), - [anon_sym_PLUS_PLUS] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1046), - [anon_sym_DASH_GT] = ACTIONS(1046), - [sym_comment] = ACTIONS(37), + [sym_argument_list] = STATE(98), + [anon_sym_COMMA] = ACTIONS(1006), + [anon_sym_RPAREN] = ACTIONS(1006), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(319), + [anon_sym_LBRACK] = ACTIONS(188), + [anon_sym_EQ] = ACTIONS(1008), + [anon_sym_QMARK] = ACTIONS(1006), + [anon_sym_STAR_EQ] = ACTIONS(1006), + [anon_sym_SLASH_EQ] = ACTIONS(1006), + [anon_sym_PERCENT_EQ] = ACTIONS(1006), + [anon_sym_PLUS_EQ] = ACTIONS(1006), + [anon_sym_DASH_EQ] = ACTIONS(1006), + [anon_sym_LT_LT_EQ] = ACTIONS(1006), + [anon_sym_GT_GT_EQ] = ACTIONS(1006), + [anon_sym_AMP_EQ] = ACTIONS(1006), + [anon_sym_CARET_EQ] = ACTIONS(1006), + [anon_sym_PIPE_EQ] = ACTIONS(1006), + [anon_sym_AMP] = ACTIONS(1008), + [anon_sym_PIPE_PIPE] = ACTIONS(1006), + [anon_sym_AMP_AMP] = ACTIONS(1006), + [anon_sym_PIPE] = ACTIONS(1008), + [anon_sym_CARET] = ACTIONS(1008), + [anon_sym_EQ_EQ] = ACTIONS(1006), + [anon_sym_BANG_EQ] = ACTIONS(1006), + [anon_sym_LT] = ACTIONS(1008), + [anon_sym_GT] = ACTIONS(1008), + [anon_sym_LT_EQ] = ACTIONS(1006), + [anon_sym_GT_EQ] = ACTIONS(1006), + [anon_sym_LT_LT] = ACTIONS(1008), + [anon_sym_GT_GT] = ACTIONS(1008), + [anon_sym_PLUS] = ACTIONS(1008), + [anon_sym_DASH] = ACTIONS(1008), + [anon_sym_SLASH] = ACTIONS(319), + [anon_sym_PERCENT] = ACTIONS(319), + [anon_sym_DASH_DASH] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(216), + [anon_sym_DOT] = ACTIONS(218), + [anon_sym_DASH_GT] = ACTIONS(218), + [sym_comment] = ACTIONS(59), }, [318] = { - [sym_string_literal] = STATE(529), - [aux_sym_concatenated_string_repeat1] = STATE(529), - [anon_sym_COMMA] = ACTIONS(990), - [anon_sym_RBRACE] = ACTIONS(990), - [anon_sym_LPAREN2] = ACTIONS(990), - [anon_sym_STAR] = ACTIONS(1002), - [anon_sym_LBRACK] = ACTIONS(990), - [anon_sym_EQ] = ACTIONS(1002), - [anon_sym_QMARK] = ACTIONS(990), - [anon_sym_STAR_EQ] = ACTIONS(990), - [anon_sym_SLASH_EQ] = ACTIONS(990), - [anon_sym_PERCENT_EQ] = ACTIONS(990), - [anon_sym_PLUS_EQ] = ACTIONS(990), - [anon_sym_DASH_EQ] = ACTIONS(990), - [anon_sym_LT_LT_EQ] = ACTIONS(990), - [anon_sym_GT_GT_EQ] = ACTIONS(990), - [anon_sym_AMP_EQ] = ACTIONS(990), - [anon_sym_CARET_EQ] = ACTIONS(990), - [anon_sym_PIPE_EQ] = ACTIONS(990), - [anon_sym_AMP] = ACTIONS(1002), - [anon_sym_PIPE_PIPE] = ACTIONS(990), - [anon_sym_AMP_AMP] = ACTIONS(990), - [anon_sym_PIPE] = ACTIONS(1002), - [anon_sym_CARET] = ACTIONS(1002), - [anon_sym_EQ_EQ] = ACTIONS(990), - [anon_sym_BANG_EQ] = ACTIONS(990), - [anon_sym_LT] = ACTIONS(1002), - [anon_sym_GT] = ACTIONS(1002), - [anon_sym_LT_EQ] = ACTIONS(990), - [anon_sym_GT_EQ] = ACTIONS(990), - [anon_sym_LT_LT] = ACTIONS(1002), - [anon_sym_GT_GT] = ACTIONS(1002), - [anon_sym_PLUS] = ACTIONS(1002), - [anon_sym_DASH] = ACTIONS(1002), - [anon_sym_SLASH] = ACTIONS(1002), - [anon_sym_PERCENT] = ACTIONS(1002), - [anon_sym_DASH_DASH] = ACTIONS(990), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_DOT] = ACTIONS(990), - [anon_sym_DASH_GT] = ACTIONS(990), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_comment] = ACTIONS(37), + [sym__expression] = STATE(506), + [sym_conditional_expression] = STATE(506), + [sym_assignment_expression] = STATE(506), + [sym_pointer_expression] = STATE(506), + [sym_logical_expression] = STATE(506), + [sym_bitwise_expression] = STATE(506), + [sym_equality_expression] = STATE(506), + [sym_relational_expression] = STATE(506), + [sym_shift_expression] = STATE(506), + [sym_math_expression] = STATE(506), + [sym_cast_expression] = STATE(506), + [sym_sizeof_expression] = STATE(506), + [sym_subscript_expression] = STATE(506), + [sym_call_expression] = STATE(506), + [sym_field_expression] = STATE(506), + [sym_compound_literal_expression] = STATE(506), + [sym_parenthesized_expression] = STATE(506), + [sym_initializer_list] = STATE(507), + [sym_initializer_pair] = STATE(507), + [sym_subscript_designator] = STATE(509), + [sym_field_designator] = STATE(509), + [sym_char_literal] = STATE(506), + [sym_concatenated_string] = STATE(506), + [sym_string_literal] = STATE(508), + [aux_sym_initializer_pair_repeat1] = STATE(509), + [anon_sym_COMMA] = ACTIONS(1285), + [anon_sym_LBRACE] = ACTIONS(840), + [anon_sym_RBRACE] = ACTIONS(1287), + [anon_sym_LPAREN2] = ACTIONS(1289), + [anon_sym_STAR] = ACTIONS(1291), + [anon_sym_LBRACK] = ACTIONS(1293), + [anon_sym_AMP] = ACTIONS(1291), + [anon_sym_BANG] = ACTIONS(1295), + [anon_sym_TILDE] = ACTIONS(1297), + [anon_sym_PLUS] = ACTIONS(1299), + [anon_sym_DASH] = ACTIONS(1299), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_sizeof] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1305), + [sym_number_literal] = ACTIONS(1307), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(1309), + [sym_false] = ACTIONS(1309), + [sym_null] = ACTIONS(1309), + [sym_identifier] = ACTIONS(1309), + [sym_comment] = ACTIONS(59), }, [319] = { - [anon_sym_COMMA] = ACTIONS(1280), - [anon_sym_RPAREN] = ACTIONS(1280), - [anon_sym_SEMI] = ACTIONS(1280), - [anon_sym_extern] = ACTIONS(1282), - [anon_sym_LPAREN2] = ACTIONS(1280), - [anon_sym_STAR] = ACTIONS(1280), - [anon_sym_LBRACK] = ACTIONS(1280), - [anon_sym_RBRACK] = ACTIONS(1280), - [anon_sym_static] = ACTIONS(1282), - [anon_sym_auto] = ACTIONS(1282), - [anon_sym_register] = ACTIONS(1282), - [anon_sym_inline] = ACTIONS(1282), - [anon_sym_const] = ACTIONS(1282), - [anon_sym_restrict] = ACTIONS(1282), - [anon_sym_volatile] = ACTIONS(1282), - [anon_sym__Atomic] = ACTIONS(1282), - [anon_sym_COLON] = ACTIONS(1280), - [anon_sym_AMP] = ACTIONS(1280), - [anon_sym_BANG] = ACTIONS(1280), - [anon_sym_TILDE] = ACTIONS(1280), - [anon_sym_PLUS] = ACTIONS(1282), - [anon_sym_DASH] = ACTIONS(1282), - [anon_sym_DASH_DASH] = ACTIONS(1280), - [anon_sym_PLUS_PLUS] = ACTIONS(1280), - [anon_sym_sizeof] = ACTIONS(1282), - [sym_number_literal] = ACTIONS(1280), - [anon_sym_SQUOTE] = ACTIONS(1280), - [anon_sym_DQUOTE] = ACTIONS(1280), - [sym_true] = ACTIONS(1282), - [sym_false] = ACTIONS(1282), - [sym_null] = ACTIONS(1282), - [sym_identifier] = ACTIONS(1282), - [sym_comment] = ACTIONS(37), + [sym_argument_list] = STATE(98), + [anon_sym_SEMI] = ACTIONS(1311), + [anon_sym_COMMA] = ACTIONS(1311), + [anon_sym_RPAREN] = ACTIONS(1311), + [anon_sym_RBRACE] = ACTIONS(1311), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(1313), + [anon_sym_LBRACK] = ACTIONS(188), + [anon_sym_RBRACK] = ACTIONS(1311), + [anon_sym_EQ] = ACTIONS(1313), + [anon_sym_COLON] = ACTIONS(1311), + [anon_sym_QMARK] = ACTIONS(1311), + [anon_sym_STAR_EQ] = ACTIONS(1311), + [anon_sym_SLASH_EQ] = ACTIONS(1311), + [anon_sym_PERCENT_EQ] = ACTIONS(1311), + [anon_sym_PLUS_EQ] = ACTIONS(1311), + [anon_sym_DASH_EQ] = ACTIONS(1311), + [anon_sym_LT_LT_EQ] = ACTIONS(1311), + [anon_sym_GT_GT_EQ] = ACTIONS(1311), + [anon_sym_AMP_EQ] = ACTIONS(1311), + [anon_sym_CARET_EQ] = ACTIONS(1311), + [anon_sym_PIPE_EQ] = ACTIONS(1311), + [anon_sym_AMP] = ACTIONS(1313), + [anon_sym_PIPE_PIPE] = ACTIONS(1311), + [anon_sym_AMP_AMP] = ACTIONS(1311), + [anon_sym_PIPE] = ACTIONS(1313), + [anon_sym_CARET] = ACTIONS(1313), + [anon_sym_EQ_EQ] = ACTIONS(1311), + [anon_sym_BANG_EQ] = ACTIONS(1311), + [anon_sym_LT] = ACTIONS(1313), + [anon_sym_GT] = ACTIONS(1313), + [anon_sym_LT_EQ] = ACTIONS(1311), + [anon_sym_GT_EQ] = ACTIONS(1311), + [anon_sym_LT_LT] = ACTIONS(1313), + [anon_sym_GT_GT] = ACTIONS(1313), + [anon_sym_PLUS] = ACTIONS(1313), + [anon_sym_DASH] = ACTIONS(1313), + [anon_sym_SLASH] = ACTIONS(1313), + [anon_sym_PERCENT] = ACTIONS(1313), + [anon_sym_DASH_DASH] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(216), + [anon_sym_DOT] = ACTIONS(218), + [anon_sym_DASH_GT] = ACTIONS(218), + [sym_comment] = ACTIONS(59), }, [320] = { - [anon_sym_COMMA] = ACTIONS(1284), - [anon_sym_RBRACE] = ACTIONS(1284), - [sym_comment] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(1315), + [anon_sym_COMMA] = ACTIONS(1315), + [anon_sym_RPAREN] = ACTIONS(1315), + [anon_sym_RBRACE] = ACTIONS(1315), + [anon_sym_LPAREN2] = ACTIONS(1315), + [anon_sym_STAR] = ACTIONS(1317), + [anon_sym_LBRACK] = ACTIONS(1315), + [anon_sym_RBRACK] = ACTIONS(1315), + [anon_sym_EQ] = ACTIONS(1317), + [anon_sym_COLON] = ACTIONS(1315), + [anon_sym_QMARK] = ACTIONS(1315), + [anon_sym_STAR_EQ] = ACTIONS(1315), + [anon_sym_SLASH_EQ] = ACTIONS(1315), + [anon_sym_PERCENT_EQ] = ACTIONS(1315), + [anon_sym_PLUS_EQ] = ACTIONS(1315), + [anon_sym_DASH_EQ] = ACTIONS(1315), + [anon_sym_LT_LT_EQ] = ACTIONS(1315), + [anon_sym_GT_GT_EQ] = ACTIONS(1315), + [anon_sym_AMP_EQ] = ACTIONS(1315), + [anon_sym_CARET_EQ] = ACTIONS(1315), + [anon_sym_PIPE_EQ] = ACTIONS(1315), + [anon_sym_AMP] = ACTIONS(1317), + [anon_sym_PIPE_PIPE] = ACTIONS(1315), + [anon_sym_AMP_AMP] = ACTIONS(1315), + [anon_sym_PIPE] = ACTIONS(1317), + [anon_sym_CARET] = ACTIONS(1317), + [anon_sym_EQ_EQ] = ACTIONS(1315), + [anon_sym_BANG_EQ] = ACTIONS(1315), + [anon_sym_LT] = ACTIONS(1317), + [anon_sym_GT] = ACTIONS(1317), + [anon_sym_LT_EQ] = ACTIONS(1315), + [anon_sym_GT_EQ] = ACTIONS(1315), + [anon_sym_LT_LT] = ACTIONS(1317), + [anon_sym_GT_GT] = ACTIONS(1317), + [anon_sym_PLUS] = ACTIONS(1317), + [anon_sym_DASH] = ACTIONS(1317), + [anon_sym_SLASH] = ACTIONS(1317), + [anon_sym_PERCENT] = ACTIONS(1317), + [anon_sym_DASH_DASH] = ACTIONS(1315), + [anon_sym_PLUS_PLUS] = ACTIONS(1315), + [anon_sym_DOT] = ACTIONS(1315), + [anon_sym_DASH_GT] = ACTIONS(1315), + [sym_comment] = ACTIONS(59), }, [321] = { - [sym_enumerator] = STATE(320), - [anon_sym_RBRACE] = ACTIONS(1286), - [sym_identifier] = ACTIONS(175), - [sym_comment] = ACTIONS(37), + [sym_string_literal] = STATE(321), + [aux_sym_concatenated_string_repeat1] = STATE(321), + [anon_sym_COMMA] = ACTIONS(1108), + [anon_sym_RPAREN] = ACTIONS(1108), + [anon_sym_LPAREN2] = ACTIONS(1108), + [anon_sym_STAR] = ACTIONS(1110), + [anon_sym_LBRACK] = ACTIONS(1108), + [anon_sym_EQ] = ACTIONS(1110), + [anon_sym_QMARK] = ACTIONS(1108), + [anon_sym_STAR_EQ] = ACTIONS(1108), + [anon_sym_SLASH_EQ] = ACTIONS(1108), + [anon_sym_PERCENT_EQ] = ACTIONS(1108), + [anon_sym_PLUS_EQ] = ACTIONS(1108), + [anon_sym_DASH_EQ] = ACTIONS(1108), + [anon_sym_LT_LT_EQ] = ACTIONS(1108), + [anon_sym_GT_GT_EQ] = ACTIONS(1108), + [anon_sym_AMP_EQ] = ACTIONS(1108), + [anon_sym_CARET_EQ] = ACTIONS(1108), + [anon_sym_PIPE_EQ] = ACTIONS(1108), + [anon_sym_AMP] = ACTIONS(1110), + [anon_sym_PIPE_PIPE] = ACTIONS(1108), + [anon_sym_AMP_AMP] = ACTIONS(1108), + [anon_sym_PIPE] = ACTIONS(1110), + [anon_sym_CARET] = ACTIONS(1110), + [anon_sym_EQ_EQ] = ACTIONS(1108), + [anon_sym_BANG_EQ] = ACTIONS(1108), + [anon_sym_LT] = ACTIONS(1110), + [anon_sym_GT] = ACTIONS(1110), + [anon_sym_LT_EQ] = ACTIONS(1108), + [anon_sym_GT_EQ] = ACTIONS(1108), + [anon_sym_LT_LT] = ACTIONS(1110), + [anon_sym_GT_GT] = ACTIONS(1110), + [anon_sym_PLUS] = ACTIONS(1110), + [anon_sym_DASH] = ACTIONS(1110), + [anon_sym_SLASH] = ACTIONS(1110), + [anon_sym_PERCENT] = ACTIONS(1110), + [anon_sym_DASH_DASH] = ACTIONS(1108), + [anon_sym_PLUS_PLUS] = ACTIONS(1108), + [anon_sym_DOT] = ACTIONS(1108), + [anon_sym_DASH_GT] = ACTIONS(1108), + [anon_sym_DQUOTE] = ACTIONS(1112), + [sym_comment] = ACTIONS(59), }, [322] = { - [aux_sym_enumerator_list_repeat1] = STATE(322), - [anon_sym_COMMA] = ACTIONS(1288), - [anon_sym_RBRACE] = ACTIONS(1284), - [sym_comment] = ACTIONS(37), + [sym_parameter_list] = STATE(304), + [anon_sym_RPAREN] = ACTIONS(1319), + [anon_sym_LPAREN2] = ACTIONS(441), + [anon_sym_LBRACK] = ACTIONS(784), + [sym_comment] = ACTIONS(59), }, [323] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1291), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1293), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1293), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1293), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1293), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1291), - [anon_sym_RBRACE] = ACTIONS(1293), - [anon_sym_static] = ACTIONS(1291), - [anon_sym_auto] = ACTIONS(1291), - [anon_sym_register] = ACTIONS(1291), - [anon_sym_inline] = ACTIONS(1291), - [anon_sym_const] = ACTIONS(1291), - [anon_sym_restrict] = ACTIONS(1291), - [anon_sym_volatile] = ACTIONS(1291), - [anon_sym__Atomic] = ACTIONS(1291), - [anon_sym_unsigned] = ACTIONS(1291), - [anon_sym_long] = ACTIONS(1291), - [anon_sym_short] = ACTIONS(1291), - [sym_primitive_type] = ACTIONS(1291), - [anon_sym_enum] = ACTIONS(1291), - [anon_sym_struct] = ACTIONS(1291), - [anon_sym_union] = ACTIONS(1291), - [sym_identifier] = ACTIONS(1291), - [sym_comment] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(1321), + [anon_sym_COMMA] = ACTIONS(1321), + [anon_sym_RPAREN] = ACTIONS(1321), + [anon_sym_extern] = ACTIONS(1323), + [anon_sym_LPAREN2] = ACTIONS(1321), + [anon_sym_STAR] = ACTIONS(1321), + [anon_sym_LBRACK] = ACTIONS(1321), + [anon_sym_RBRACK] = ACTIONS(1321), + [anon_sym_static] = ACTIONS(1323), + [anon_sym_auto] = ACTIONS(1323), + [anon_sym_register] = ACTIONS(1323), + [anon_sym_inline] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_restrict] = ACTIONS(1323), + [anon_sym_volatile] = ACTIONS(1323), + [anon_sym__Atomic] = ACTIONS(1323), + [anon_sym_COLON] = ACTIONS(1321), + [anon_sym_AMP] = ACTIONS(1321), + [anon_sym_BANG] = ACTIONS(1321), + [anon_sym_TILDE] = ACTIONS(1321), + [anon_sym_PLUS] = ACTIONS(1323), + [anon_sym_DASH] = ACTIONS(1323), + [anon_sym_DASH_DASH] = ACTIONS(1321), + [anon_sym_PLUS_PLUS] = ACTIONS(1321), + [anon_sym_sizeof] = ACTIONS(1323), + [sym_number_literal] = ACTIONS(1321), + [anon_sym_SQUOTE] = ACTIONS(1321), + [anon_sym_DQUOTE] = ACTIONS(1321), + [sym_true] = ACTIONS(1323), + [sym_false] = ACTIONS(1323), + [sym_null] = ACTIONS(1323), + [sym_identifier] = ACTIONS(1323), + [sym_comment] = ACTIONS(59), }, [324] = { - [sym_preproc_if_in_field_declaration_list] = STATE(532), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(532), - [sym__declaration_specifiers] = STATE(97), - [sym_storage_class_specifier] = STATE(100), - [sym_type_qualifier] = STATE(100), - [sym__type_specifier] = STATE(98), - [sym_sized_type_specifier] = STATE(98), - [sym_enum_specifier] = STATE(98), - [sym_struct_specifier] = STATE(98), - [sym_union_specifier] = STATE(98), - [sym__field_declaration_list_item] = STATE(532), - [sym_field_declaration] = STATE(532), - [sym_macro_type_specifier] = STATE(98), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(532), - [aux_sym__declaration_specifiers_repeat1] = STATE(100), - [aux_sym_sized_type_specifier_repeat1] = STATE(101), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(185), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1295), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(187), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(187), - [anon_sym_extern] = ACTIONS(21), - [anon_sym_static] = ACTIONS(21), - [anon_sym_auto] = ACTIONS(21), - [anon_sym_register] = ACTIONS(21), - [anon_sym_inline] = ACTIONS(21), - [anon_sym_const] = ACTIONS(23), - [anon_sym_restrict] = ACTIONS(23), - [anon_sym_volatile] = ACTIONS(23), - [anon_sym__Atomic] = ACTIONS(23), - [anon_sym_unsigned] = ACTIONS(191), - [anon_sym_long] = ACTIONS(191), - [anon_sym_short] = ACTIONS(191), - [sym_primitive_type] = ACTIONS(193), - [anon_sym_enum] = ACTIONS(29), - [anon_sym_struct] = ACTIONS(31), - [anon_sym_union] = ACTIONS(33), - [sym_identifier] = ACTIONS(35), - [sym_comment] = ACTIONS(37), + [sym__expression] = STATE(510), + [sym_conditional_expression] = STATE(510), + [sym_assignment_expression] = STATE(510), + [sym_pointer_expression] = STATE(510), + [sym_logical_expression] = STATE(510), + [sym_bitwise_expression] = STATE(510), + [sym_equality_expression] = STATE(510), + [sym_relational_expression] = STATE(510), + [sym_shift_expression] = STATE(510), + [sym_math_expression] = STATE(510), + [sym_cast_expression] = STATE(510), + [sym_sizeof_expression] = STATE(510), + [sym_subscript_expression] = STATE(510), + [sym_call_expression] = STATE(510), + [sym_field_expression] = STATE(510), + [sym_compound_literal_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_char_literal] = STATE(510), + [sym_concatenated_string] = STATE(510), + [sym_string_literal] = STATE(508), + [anon_sym_LPAREN2] = ACTIONS(1289), + [anon_sym_STAR] = ACTIONS(1291), + [anon_sym_AMP] = ACTIONS(1291), + [anon_sym_BANG] = ACTIONS(1295), + [anon_sym_TILDE] = ACTIONS(1297), + [anon_sym_PLUS] = ACTIONS(1299), + [anon_sym_DASH] = ACTIONS(1299), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_sizeof] = ACTIONS(1303), + [sym_number_literal] = ACTIONS(1325), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(1327), + [sym_false] = ACTIONS(1327), + [sym_null] = ACTIONS(1327), + [sym_identifier] = ACTIONS(1327), + [sym_comment] = ACTIONS(59), }, [325] = { - [sym_preproc_arg] = ACTIONS(1297), - [sym_comment] = ACTIONS(47), + [sym_enumerator] = STATE(512), + [anon_sym_RBRACE] = ACTIONS(1329), + [sym_identifier] = ACTIONS(363), + [sym_comment] = ACTIONS(59), }, [326] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1299), - [sym_comment] = ACTIONS(37), + [aux_sym_enumerator_list_repeat1] = STATE(514), + [anon_sym_COMMA] = ACTIONS(1331), + [anon_sym_RBRACE] = ACTIONS(1329), + [sym_comment] = ACTIONS(59), }, [327] = { - [sym_preproc_if_in_field_declaration_list] = STATE(536), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(536), - [sym_preproc_else_in_field_declaration_list] = STATE(535), - [sym_preproc_elif_in_field_declaration_list] = STATE(535), - [sym__declaration_specifiers] = STATE(97), - [sym_storage_class_specifier] = STATE(100), - [sym_type_qualifier] = STATE(100), - [sym__type_specifier] = STATE(98), - [sym_sized_type_specifier] = STATE(98), - [sym_enum_specifier] = STATE(98), - [sym_struct_specifier] = STATE(98), - [sym_union_specifier] = STATE(98), - [sym__field_declaration_list_item] = STATE(536), - [sym_field_declaration] = STATE(536), - [sym_macro_type_specifier] = STATE(98), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(536), - [aux_sym__declaration_specifiers_repeat1] = STATE(100), - [aux_sym_sized_type_specifier_repeat1] = STATE(101), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(185), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1299), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(187), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(187), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(766), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(768), - [anon_sym_extern] = ACTIONS(21), - [anon_sym_static] = ACTIONS(21), - [anon_sym_auto] = ACTIONS(21), - [anon_sym_register] = ACTIONS(21), - [anon_sym_inline] = ACTIONS(21), - [anon_sym_const] = ACTIONS(23), - [anon_sym_restrict] = ACTIONS(23), - [anon_sym_volatile] = ACTIONS(23), - [anon_sym__Atomic] = ACTIONS(23), - [anon_sym_unsigned] = ACTIONS(191), - [anon_sym_long] = ACTIONS(191), - [anon_sym_short] = ACTIONS(191), - [sym_primitive_type] = ACTIONS(193), - [anon_sym_enum] = ACTIONS(29), - [anon_sym_struct] = ACTIONS(31), - [anon_sym_union] = ACTIONS(33), - [sym_identifier] = ACTIONS(35), - [sym_comment] = ACTIONS(37), + [sym_preproc_if_in_field_declaration_list] = STATE(519), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(519), + [sym_preproc_else_in_field_declaration_list] = STATE(518), + [sym_preproc_elif_in_field_declaration_list] = STATE(518), + [sym__declaration_specifiers] = STATE(178), + [sym_storage_class_specifier] = STATE(181), + [sym_type_qualifier] = STATE(181), + [sym__type_specifier] = STATE(179), + [sym_sized_type_specifier] = STATE(179), + [sym_enum_specifier] = STATE(179), + [sym_struct_specifier] = STATE(179), + [sym_union_specifier] = STATE(179), + [sym__field_declaration_list_item] = STATE(519), + [sym_field_declaration] = STATE(519), + [sym_macro_type_specifier] = STATE(179), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(519), + [aux_sym__declaration_specifiers_repeat1] = STATE(181), + [aux_sym_sized_type_specifier_repeat1] = STATE(182), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(373), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1333), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(375), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(375), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1335), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(25), + [anon_sym_static] = ACTIONS(25), + [anon_sym_auto] = ACTIONS(25), + [anon_sym_register] = ACTIONS(25), + [anon_sym_inline] = ACTIONS(25), + [anon_sym_const] = ACTIONS(27), + [anon_sym_restrict] = ACTIONS(27), + [anon_sym_volatile] = ACTIONS(27), + [anon_sym__Atomic] = ACTIONS(27), + [anon_sym_unsigned] = ACTIONS(379), + [anon_sym_long] = ACTIONS(379), + [anon_sym_short] = ACTIONS(379), + [sym_primitive_type] = ACTIONS(381), + [anon_sym_enum] = ACTIONS(33), + [anon_sym_struct] = ACTIONS(35), + [anon_sym_union] = ACTIONS(37), + [sym_identifier] = ACTIONS(81), + [sym_comment] = ACTIONS(59), }, [328] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1301), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1303), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1303), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1303), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1303), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1303), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_RBRACE] = ACTIONS(1303), - [anon_sym_static] = ACTIONS(1301), - [anon_sym_auto] = ACTIONS(1301), - [anon_sym_register] = ACTIONS(1301), - [anon_sym_inline] = ACTIONS(1301), - [anon_sym_const] = ACTIONS(1301), - [anon_sym_restrict] = ACTIONS(1301), - [anon_sym_volatile] = ACTIONS(1301), - [anon_sym__Atomic] = ACTIONS(1301), - [anon_sym_unsigned] = ACTIONS(1301), - [anon_sym_long] = ACTIONS(1301), - [anon_sym_short] = ACTIONS(1301), - [sym_primitive_type] = ACTIONS(1301), - [anon_sym_enum] = ACTIONS(1301), - [anon_sym_struct] = ACTIONS(1301), - [anon_sym_union] = ACTIONS(1301), - [sym_identifier] = ACTIONS(1301), - [sym_comment] = ACTIONS(37), + [sym_preproc_if_in_field_declaration_list] = STATE(522), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(522), + [sym_preproc_else_in_field_declaration_list] = STATE(521), + [sym_preproc_elif_in_field_declaration_list] = STATE(521), + [sym__declaration_specifiers] = STATE(178), + [sym_storage_class_specifier] = STATE(181), + [sym_type_qualifier] = STATE(181), + [sym__type_specifier] = STATE(179), + [sym_sized_type_specifier] = STATE(179), + [sym_enum_specifier] = STATE(179), + [sym_struct_specifier] = STATE(179), + [sym_union_specifier] = STATE(179), + [sym__field_declaration_list_item] = STATE(522), + [sym_field_declaration] = STATE(522), + [sym_macro_type_specifier] = STATE(179), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(522), + [aux_sym__declaration_specifiers_repeat1] = STATE(181), + [aux_sym_sized_type_specifier_repeat1] = STATE(182), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(373), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1339), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(375), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(375), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1335), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(25), + [anon_sym_static] = ACTIONS(25), + [anon_sym_auto] = ACTIONS(25), + [anon_sym_register] = ACTIONS(25), + [anon_sym_inline] = ACTIONS(25), + [anon_sym_const] = ACTIONS(27), + [anon_sym_restrict] = ACTIONS(27), + [anon_sym_volatile] = ACTIONS(27), + [anon_sym__Atomic] = ACTIONS(27), + [anon_sym_unsigned] = ACTIONS(379), + [anon_sym_long] = ACTIONS(379), + [anon_sym_short] = ACTIONS(379), + [sym_primitive_type] = ACTIONS(381), + [anon_sym_enum] = ACTIONS(33), + [anon_sym_struct] = ACTIONS(35), + [anon_sym_union] = ACTIONS(37), + [sym_identifier] = ACTIONS(81), + [sym_comment] = ACTIONS(59), }, [329] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1305), - [sym_comment] = ACTIONS(37), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1341), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1343), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1343), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1343), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1343), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1343), + [anon_sym_extern] = ACTIONS(1341), + [anon_sym_RBRACE] = ACTIONS(1343), + [anon_sym_static] = ACTIONS(1341), + [anon_sym_auto] = ACTIONS(1341), + [anon_sym_register] = ACTIONS(1341), + [anon_sym_inline] = ACTIONS(1341), + [anon_sym_const] = ACTIONS(1341), + [anon_sym_restrict] = ACTIONS(1341), + [anon_sym_volatile] = ACTIONS(1341), + [anon_sym__Atomic] = ACTIONS(1341), + [anon_sym_unsigned] = ACTIONS(1341), + [anon_sym_long] = ACTIONS(1341), + [anon_sym_short] = ACTIONS(1341), + [sym_primitive_type] = ACTIONS(1341), + [anon_sym_enum] = ACTIONS(1341), + [anon_sym_struct] = ACTIONS(1341), + [anon_sym_union] = ACTIONS(1341), + [sym_identifier] = ACTIONS(1341), + [sym_comment] = ACTIONS(59), }, [330] = { - [sym_preproc_if_in_field_declaration_list] = STATE(536), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(536), - [sym_preproc_else_in_field_declaration_list] = STATE(538), - [sym_preproc_elif_in_field_declaration_list] = STATE(538), - [sym__declaration_specifiers] = STATE(97), - [sym_storage_class_specifier] = STATE(100), - [sym_type_qualifier] = STATE(100), - [sym__type_specifier] = STATE(98), - [sym_sized_type_specifier] = STATE(98), - [sym_enum_specifier] = STATE(98), - [sym_struct_specifier] = STATE(98), - [sym_union_specifier] = STATE(98), - [sym__field_declaration_list_item] = STATE(536), - [sym_field_declaration] = STATE(536), - [sym_macro_type_specifier] = STATE(98), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(536), - [aux_sym__declaration_specifiers_repeat1] = STATE(100), - [aux_sym_sized_type_specifier_repeat1] = STATE(101), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(185), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1305), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(187), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(187), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(766), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(768), - [anon_sym_extern] = ACTIONS(21), - [anon_sym_static] = ACTIONS(21), - [anon_sym_auto] = ACTIONS(21), - [anon_sym_register] = ACTIONS(21), - [anon_sym_inline] = ACTIONS(21), - [anon_sym_const] = ACTIONS(23), - [anon_sym_restrict] = ACTIONS(23), - [anon_sym_volatile] = ACTIONS(23), - [anon_sym__Atomic] = ACTIONS(23), - [anon_sym_unsigned] = ACTIONS(191), - [anon_sym_long] = ACTIONS(191), - [anon_sym_short] = ACTIONS(191), - [sym_primitive_type] = ACTIONS(193), - [anon_sym_enum] = ACTIONS(29), - [anon_sym_struct] = ACTIONS(31), - [anon_sym_union] = ACTIONS(33), - [sym_identifier] = ACTIONS(35), - [sym_comment] = ACTIONS(37), + [sym__field_declarator] = STATE(524), + [sym_pointer_field_declarator] = STATE(524), + [sym_function_field_declarator] = STATE(524), + [sym_array_field_declarator] = STATE(524), + [anon_sym_LPAREN2] = ACTIONS(875), + [anon_sym_STAR] = ACTIONS(1345), + [sym_identifier] = ACTIONS(881), + [sym_comment] = ACTIONS(59), }, [331] = { - [sym__field_declarator] = STATE(333), - [sym_pointer_field_declarator] = STATE(333), - [sym_function_field_declarator] = STATE(333), - [sym_array_field_declarator] = STATE(333), - [sym_type_qualifier] = STATE(539), - [aux_sym_type_definition_repeat1] = STATE(539), - [anon_sym_LPAREN2] = ACTIONS(445), - [anon_sym_STAR] = ACTIONS(776), - [anon_sym_const] = ACTIONS(23), - [anon_sym_restrict] = ACTIONS(23), - [anon_sym_volatile] = ACTIONS(23), - [anon_sym__Atomic] = ACTIONS(23), - [sym_identifier] = ACTIONS(778), - [sym_comment] = ACTIONS(37), + [sym__field_declarator] = STATE(525), + [sym_pointer_field_declarator] = STATE(525), + [sym_function_field_declarator] = STATE(525), + [sym_array_field_declarator] = STATE(525), + [sym_type_qualifier] = STATE(526), + [aux_sym_type_definition_repeat1] = STATE(526), + [anon_sym_LPAREN2] = ACTIONS(875), + [anon_sym_STAR] = ACTIONS(877), + [anon_sym_const] = ACTIONS(27), + [anon_sym_restrict] = ACTIONS(27), + [anon_sym_volatile] = ACTIONS(27), + [anon_sym__Atomic] = ACTIONS(27), + [sym_identifier] = ACTIONS(1347), + [sym_comment] = ACTIONS(59), }, [332] = { - [sym_parameter_list] = STATE(347), - [anon_sym_RPAREN] = ACTIONS(1307), - [anon_sym_LPAREN2] = ACTIONS(231), - [anon_sym_LBRACK] = ACTIONS(804), - [sym_comment] = ACTIONS(37), + [sym__expression] = STATE(533), + [sym_conditional_expression] = STATE(533), + [sym_assignment_expression] = STATE(533), + [sym_pointer_expression] = STATE(533), + [sym_logical_expression] = STATE(533), + [sym_bitwise_expression] = STATE(533), + [sym_equality_expression] = STATE(533), + [sym_relational_expression] = STATE(533), + [sym_shift_expression] = STATE(533), + [sym_math_expression] = STATE(533), + [sym_cast_expression] = STATE(533), + [sym_sizeof_expression] = STATE(533), + [sym_subscript_expression] = STATE(533), + [sym_call_expression] = STATE(533), + [sym_field_expression] = STATE(533), + [sym_compound_literal_expression] = STATE(533), + [sym_parenthesized_expression] = STATE(533), + [sym_char_literal] = STATE(533), + [sym_concatenated_string] = STATE(533), + [sym_string_literal] = STATE(534), + [anon_sym_LPAREN2] = ACTIONS(1349), + [anon_sym_STAR] = ACTIONS(1351), + [anon_sym_AMP] = ACTIONS(1351), + [anon_sym_BANG] = ACTIONS(1353), + [anon_sym_TILDE] = ACTIONS(1355), + [anon_sym_PLUS] = ACTIONS(1357), + [anon_sym_DASH] = ACTIONS(1357), + [anon_sym_DASH_DASH] = ACTIONS(1359), + [anon_sym_PLUS_PLUS] = ACTIONS(1359), + [anon_sym_sizeof] = ACTIONS(1361), + [sym_number_literal] = ACTIONS(1363), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(1365), + [sym_false] = ACTIONS(1365), + [sym_null] = ACTIONS(1365), + [sym_identifier] = ACTIONS(1365), + [sym_comment] = ACTIONS(59), }, [333] = { - [sym_parameter_list] = STATE(347), - [anon_sym_COMMA] = ACTIONS(1309), - [anon_sym_RPAREN] = ACTIONS(1309), - [anon_sym_SEMI] = ACTIONS(1309), - [anon_sym_LPAREN2] = ACTIONS(231), - [anon_sym_LBRACK] = ACTIONS(804), - [anon_sym_COLON] = ACTIONS(1309), - [sym_comment] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(1367), + [anon_sym_COMMA] = ACTIONS(1367), + [anon_sym_RPAREN] = ACTIONS(1367), + [anon_sym_LPAREN2] = ACTIONS(1367), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_COLON] = ACTIONS(1367), + [sym_comment] = ACTIONS(59), }, [334] = { - [sym__field_declarator] = STATE(541), - [sym_pointer_field_declarator] = STATE(541), - [sym_function_field_declarator] = STATE(541), - [sym_array_field_declarator] = STATE(541), - [sym_type_qualifier] = STATE(199), - [aux_sym_type_definition_repeat1] = STATE(199), - [anon_sym_LPAREN2] = ACTIONS(445), - [anon_sym_STAR] = ACTIONS(447), - [anon_sym_const] = ACTIONS(23), - [anon_sym_restrict] = ACTIONS(23), - [anon_sym_volatile] = ACTIONS(23), - [anon_sym__Atomic] = ACTIONS(23), - [sym_identifier] = ACTIONS(778), - [sym_comment] = ACTIONS(37), + [sym_parameter_list] = STATE(539), + [aux_sym_field_declaration_repeat1] = STATE(540), + [anon_sym_SEMI] = ACTIONS(1369), + [anon_sym_COMMA] = ACTIONS(1371), + [anon_sym_LPAREN2] = ACTIONS(441), + [anon_sym_LBRACK] = ACTIONS(1373), + [anon_sym_COLON] = ACTIONS(1375), + [sym_comment] = ACTIONS(59), }, [335] = { - [sym_type_qualifier] = STATE(106), - [sym__type_specifier] = STATE(104), - [sym_sized_type_specifier] = STATE(104), - [sym_enum_specifier] = STATE(104), - [sym_struct_specifier] = STATE(104), - [sym_union_specifier] = STATE(104), - [sym__expression] = STATE(371), - [sym_comma_expression] = STATE(372), - [sym_conditional_expression] = STATE(371), - [sym_assignment_expression] = STATE(371), - [sym_pointer_expression] = STATE(371), - [sym_logical_expression] = STATE(371), - [sym_bitwise_expression] = STATE(371), - [sym_equality_expression] = STATE(371), - [sym_relational_expression] = STATE(371), - [sym_shift_expression] = STATE(371), - [sym_math_expression] = STATE(371), - [sym_cast_expression] = STATE(371), - [sym_type_descriptor] = STATE(542), - [sym_sizeof_expression] = STATE(371), - [sym_subscript_expression] = STATE(371), - [sym_call_expression] = STATE(371), - [sym_field_expression] = STATE(371), - [sym_compound_literal_expression] = STATE(371), - [sym_parenthesized_expression] = STATE(371), - [sym_char_literal] = STATE(371), - [sym_concatenated_string] = STATE(371), - [sym_string_literal] = STATE(374), - [sym_macro_type_specifier] = STATE(104), - [aux_sym_type_definition_repeat1] = STATE(106), - [aux_sym_sized_type_specifier_repeat1] = STATE(107), - [anon_sym_LPAREN2] = ACTIONS(892), - [anon_sym_STAR] = ACTIONS(894), - [anon_sym_const] = ACTIONS(23), - [anon_sym_restrict] = ACTIONS(23), - [anon_sym_volatile] = ACTIONS(23), - [anon_sym__Atomic] = ACTIONS(23), - [anon_sym_unsigned] = ACTIONS(211), - [anon_sym_long] = ACTIONS(211), - [anon_sym_short] = ACTIONS(211), - [sym_primitive_type] = ACTIONS(213), - [anon_sym_enum] = ACTIONS(29), - [anon_sym_struct] = ACTIONS(31), - [anon_sym_union] = ACTIONS(33), - [anon_sym_AMP] = ACTIONS(894), - [anon_sym_BANG] = ACTIONS(896), - [anon_sym_TILDE] = ACTIONS(898), - [anon_sym_PLUS] = ACTIONS(900), - [anon_sym_DASH] = ACTIONS(900), - [anon_sym_DASH_DASH] = ACTIONS(902), - [anon_sym_PLUS_PLUS] = ACTIONS(902), - [anon_sym_sizeof] = ACTIONS(904), - [sym_number_literal] = ACTIONS(906), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(908), - [sym_false] = ACTIONS(908), - [sym_null] = ACTIONS(908), - [sym_identifier] = ACTIONS(910), - [sym_comment] = ACTIONS(37), + [sym_storage_class_specifier] = STATE(541), + [sym_type_qualifier] = STATE(541), + [aux_sym__declaration_specifiers_repeat1] = STATE(541), + [anon_sym_SEMI] = ACTIONS(447), + [anon_sym_extern] = ACTIONS(25), + [anon_sym_LPAREN2] = ACTIONS(447), + [anon_sym_STAR] = ACTIONS(447), + [anon_sym_static] = ACTIONS(25), + [anon_sym_auto] = ACTIONS(25), + [anon_sym_register] = ACTIONS(25), + [anon_sym_inline] = ACTIONS(25), + [anon_sym_const] = ACTIONS(27), + [anon_sym_restrict] = ACTIONS(27), + [anon_sym_volatile] = ACTIONS(27), + [anon_sym__Atomic] = ACTIONS(27), + [anon_sym_COLON] = ACTIONS(447), + [sym_identifier] = ACTIONS(449), + [sym_comment] = ACTIONS(59), }, [336] = { - [sym__expression] = STATE(375), - [sym_conditional_expression] = STATE(375), - [sym_assignment_expression] = STATE(375), - [sym_pointer_expression] = STATE(375), - [sym_logical_expression] = STATE(375), - [sym_bitwise_expression] = STATE(375), - [sym_equality_expression] = STATE(375), - [sym_relational_expression] = STATE(375), - [sym_shift_expression] = STATE(375), - [sym_math_expression] = STATE(375), - [sym_cast_expression] = STATE(375), - [sym_sizeof_expression] = STATE(375), - [sym_subscript_expression] = STATE(375), - [sym_call_expression] = STATE(375), - [sym_field_expression] = STATE(375), - [sym_compound_literal_expression] = STATE(375), - [sym_parenthesized_expression] = STATE(375), - [sym_char_literal] = STATE(375), - [sym_concatenated_string] = STATE(375), - [sym_string_literal] = STATE(342), - [anon_sym_LPAREN2] = ACTIONS(780), - [anon_sym_STAR] = ACTIONS(782), - [anon_sym_AMP] = ACTIONS(782), - [anon_sym_BANG] = ACTIONS(784), - [anon_sym_TILDE] = ACTIONS(786), - [anon_sym_PLUS] = ACTIONS(788), - [anon_sym_DASH] = ACTIONS(788), - [anon_sym_DASH_DASH] = ACTIONS(790), - [anon_sym_PLUS_PLUS] = ACTIONS(790), - [anon_sym_sizeof] = ACTIONS(792), - [sym_number_literal] = ACTIONS(912), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(914), - [sym_false] = ACTIONS(914), - [sym_null] = ACTIONS(914), - [sym_identifier] = ACTIONS(914), - [sym_comment] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(1377), + [anon_sym_COMMA] = ACTIONS(1377), + [anon_sym_RPAREN] = ACTIONS(1377), + [anon_sym_extern] = ACTIONS(1379), + [anon_sym_LPAREN2] = ACTIONS(1377), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_LBRACK] = ACTIONS(1377), + [anon_sym_RBRACK] = ACTIONS(1377), + [anon_sym_static] = ACTIONS(1379), + [anon_sym_auto] = ACTIONS(1379), + [anon_sym_register] = ACTIONS(1379), + [anon_sym_inline] = ACTIONS(1379), + [anon_sym_const] = ACTIONS(1379), + [anon_sym_restrict] = ACTIONS(1379), + [anon_sym_volatile] = ACTIONS(1379), + [anon_sym__Atomic] = ACTIONS(1379), + [anon_sym_COLON] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1377), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_TILDE] = ACTIONS(1377), + [anon_sym_PLUS] = ACTIONS(1379), + [anon_sym_DASH] = ACTIONS(1379), + [anon_sym_DASH_DASH] = ACTIONS(1377), + [anon_sym_PLUS_PLUS] = ACTIONS(1377), + [anon_sym_sizeof] = ACTIONS(1379), + [sym_number_literal] = ACTIONS(1377), + [anon_sym_SQUOTE] = ACTIONS(1377), + [anon_sym_DQUOTE] = ACTIONS(1377), + [sym_true] = ACTIONS(1379), + [sym_false] = ACTIONS(1379), + [sym_null] = ACTIONS(1379), + [sym_identifier] = ACTIONS(1379), + [sym_comment] = ACTIONS(59), }, [337] = { - [sym__expression] = STATE(404), - [sym_conditional_expression] = STATE(404), - [sym_assignment_expression] = STATE(404), - [sym_pointer_expression] = STATE(404), - [sym_logical_expression] = STATE(404), - [sym_bitwise_expression] = STATE(404), - [sym_equality_expression] = STATE(404), - [sym_relational_expression] = STATE(404), - [sym_shift_expression] = STATE(404), - [sym_math_expression] = STATE(404), - [sym_cast_expression] = STATE(404), - [sym_sizeof_expression] = STATE(404), - [sym_subscript_expression] = STATE(404), - [sym_call_expression] = STATE(404), - [sym_field_expression] = STATE(404), - [sym_compound_literal_expression] = STATE(404), - [sym_parenthesized_expression] = STATE(404), - [sym_char_literal] = STATE(404), - [sym_concatenated_string] = STATE(404), - [sym_string_literal] = STATE(342), - [anon_sym_LPAREN2] = ACTIONS(780), - [anon_sym_STAR] = ACTIONS(782), - [anon_sym_AMP] = ACTIONS(782), - [anon_sym_BANG] = ACTIONS(784), - [anon_sym_TILDE] = ACTIONS(786), - [anon_sym_PLUS] = ACTIONS(788), - [anon_sym_DASH] = ACTIONS(788), - [anon_sym_DASH_DASH] = ACTIONS(790), - [anon_sym_PLUS_PLUS] = ACTIONS(790), - [anon_sym_sizeof] = ACTIONS(792), - [sym_number_literal] = ACTIONS(968), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(970), - [sym_false] = ACTIONS(970), - [sym_null] = ACTIONS(970), - [sym_identifier] = ACTIONS(970), - [sym_comment] = ACTIONS(37), + [sym_preproc_if_in_field_declaration_list] = STATE(337), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(337), + [sym__declaration_specifiers] = STATE(178), + [sym_storage_class_specifier] = STATE(181), + [sym_type_qualifier] = STATE(181), + [sym__type_specifier] = STATE(179), + [sym_sized_type_specifier] = STATE(179), + [sym_enum_specifier] = STATE(179), + [sym_struct_specifier] = STATE(179), + [sym_union_specifier] = STATE(179), + [sym__field_declaration_list_item] = STATE(337), + [sym_field_declaration] = STATE(337), + [sym_macro_type_specifier] = STATE(179), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(337), + [aux_sym__declaration_specifiers_repeat1] = STATE(181), + [aux_sym_sized_type_specifier_repeat1] = STATE(182), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1381), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1384), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1384), + [anon_sym_extern] = ACTIONS(1387), + [anon_sym_RBRACE] = ACTIONS(1390), + [anon_sym_static] = ACTIONS(1387), + [anon_sym_auto] = ACTIONS(1387), + [anon_sym_register] = ACTIONS(1387), + [anon_sym_inline] = ACTIONS(1387), + [anon_sym_const] = ACTIONS(1392), + [anon_sym_restrict] = ACTIONS(1392), + [anon_sym_volatile] = ACTIONS(1392), + [anon_sym__Atomic] = ACTIONS(1392), + [anon_sym_unsigned] = ACTIONS(1395), + [anon_sym_long] = ACTIONS(1395), + [anon_sym_short] = ACTIONS(1395), + [sym_primitive_type] = ACTIONS(1398), + [anon_sym_enum] = ACTIONS(1401), + [anon_sym_struct] = ACTIONS(1404), + [anon_sym_union] = ACTIONS(1407), + [sym_identifier] = ACTIONS(1410), + [sym_comment] = ACTIONS(59), }, [338] = { - [sym__expression] = STATE(405), - [sym_conditional_expression] = STATE(405), - [sym_assignment_expression] = STATE(405), - [sym_pointer_expression] = STATE(405), - [sym_logical_expression] = STATE(405), - [sym_bitwise_expression] = STATE(405), - [sym_equality_expression] = STATE(405), - [sym_relational_expression] = STATE(405), - [sym_shift_expression] = STATE(405), - [sym_math_expression] = STATE(405), - [sym_cast_expression] = STATE(405), - [sym_sizeof_expression] = STATE(405), - [sym_subscript_expression] = STATE(405), - [sym_call_expression] = STATE(405), - [sym_field_expression] = STATE(405), - [sym_compound_literal_expression] = STATE(405), - [sym_parenthesized_expression] = STATE(405), - [sym_char_literal] = STATE(405), - [sym_concatenated_string] = STATE(405), - [sym_string_literal] = STATE(342), - [anon_sym_LPAREN2] = ACTIONS(780), - [anon_sym_STAR] = ACTIONS(782), - [anon_sym_AMP] = ACTIONS(782), - [anon_sym_BANG] = ACTIONS(784), - [anon_sym_TILDE] = ACTIONS(786), - [anon_sym_PLUS] = ACTIONS(788), - [anon_sym_DASH] = ACTIONS(788), - [anon_sym_DASH_DASH] = ACTIONS(790), - [anon_sym_PLUS_PLUS] = ACTIONS(790), - [anon_sym_sizeof] = ACTIONS(792), - [sym_number_literal] = ACTIONS(972), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(974), - [sym_false] = ACTIONS(974), - [sym_null] = ACTIONS(974), - [sym_identifier] = ACTIONS(974), - [sym_comment] = ACTIONS(37), + [sym_storage_class_specifier] = STATE(542), + [sym_type_qualifier] = STATE(542), + [aux_sym__declaration_specifiers_repeat1] = STATE(542), + [anon_sym_SEMI] = ACTIONS(447), + [anon_sym_extern] = ACTIONS(25), + [anon_sym_LPAREN2] = ACTIONS(447), + [anon_sym_STAR] = ACTIONS(447), + [anon_sym_static] = ACTIONS(25), + [anon_sym_auto] = ACTIONS(25), + [anon_sym_register] = ACTIONS(25), + [anon_sym_inline] = ACTIONS(25), + [anon_sym_const] = ACTIONS(27), + [anon_sym_restrict] = ACTIONS(27), + [anon_sym_volatile] = ACTIONS(27), + [anon_sym__Atomic] = ACTIONS(27), + [anon_sym_COLON] = ACTIONS(447), + [sym_identifier] = ACTIONS(449), + [sym_comment] = ACTIONS(59), }, [339] = { - [sym__expression] = STATE(406), - [sym_conditional_expression] = STATE(406), - [sym_assignment_expression] = STATE(406), - [sym_pointer_expression] = STATE(406), - [sym_logical_expression] = STATE(406), - [sym_bitwise_expression] = STATE(406), - [sym_equality_expression] = STATE(406), - [sym_relational_expression] = STATE(406), - [sym_shift_expression] = STATE(406), - [sym_math_expression] = STATE(406), - [sym_cast_expression] = STATE(406), - [sym_sizeof_expression] = STATE(406), - [sym_subscript_expression] = STATE(406), - [sym_call_expression] = STATE(406), - [sym_field_expression] = STATE(406), - [sym_compound_literal_expression] = STATE(406), - [sym_parenthesized_expression] = STATE(406), - [sym_char_literal] = STATE(406), - [sym_concatenated_string] = STATE(406), - [sym_string_literal] = STATE(342), - [anon_sym_LPAREN2] = ACTIONS(780), - [anon_sym_STAR] = ACTIONS(782), - [anon_sym_AMP] = ACTIONS(782), - [anon_sym_BANG] = ACTIONS(784), - [anon_sym_TILDE] = ACTIONS(786), - [anon_sym_PLUS] = ACTIONS(788), - [anon_sym_DASH] = ACTIONS(788), - [anon_sym_DASH_DASH] = ACTIONS(790), - [anon_sym_PLUS_PLUS] = ACTIONS(790), - [anon_sym_sizeof] = ACTIONS(792), - [sym_number_literal] = ACTIONS(976), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(978), - [sym_false] = ACTIONS(978), - [sym_null] = ACTIONS(978), - [sym_identifier] = ACTIONS(978), - [sym_comment] = ACTIONS(37), + [aux_sym_sized_type_specifier_repeat1] = STATE(339), + [anon_sym_SEMI] = ACTIONS(645), + [anon_sym_extern] = ACTIONS(647), + [anon_sym_LPAREN2] = ACTIONS(645), + [anon_sym_STAR] = ACTIONS(645), + [anon_sym_static] = ACTIONS(647), + [anon_sym_auto] = ACTIONS(647), + [anon_sym_register] = ACTIONS(647), + [anon_sym_inline] = ACTIONS(647), + [anon_sym_const] = ACTIONS(647), + [anon_sym_restrict] = ACTIONS(647), + [anon_sym_volatile] = ACTIONS(647), + [anon_sym__Atomic] = ACTIONS(647), + [anon_sym_unsigned] = ACTIONS(1413), + [anon_sym_long] = ACTIONS(1413), + [anon_sym_short] = ACTIONS(1413), + [sym_primitive_type] = ACTIONS(647), + [anon_sym_COLON] = ACTIONS(645), + [sym_identifier] = ACTIONS(647), + [sym_comment] = ACTIONS(59), }, [340] = { - [sym__expression] = STATE(544), - [sym_conditional_expression] = STATE(544), - [sym_assignment_expression] = STATE(544), - [sym_pointer_expression] = STATE(544), - [sym_logical_expression] = STATE(544), - [sym_bitwise_expression] = STATE(544), - [sym_equality_expression] = STATE(544), - [sym_relational_expression] = STATE(544), - [sym_shift_expression] = STATE(544), - [sym_math_expression] = STATE(544), - [sym_cast_expression] = STATE(544), - [sym_sizeof_expression] = STATE(544), - [sym_subscript_expression] = STATE(544), - [sym_call_expression] = STATE(544), - [sym_field_expression] = STATE(544), - [sym_compound_literal_expression] = STATE(544), - [sym_parenthesized_expression] = STATE(544), - [sym_char_literal] = STATE(544), - [sym_concatenated_string] = STATE(544), - [sym_string_literal] = STATE(342), - [anon_sym_LPAREN2] = ACTIONS(1311), - [anon_sym_STAR] = ACTIONS(782), - [anon_sym_AMP] = ACTIONS(782), - [anon_sym_BANG] = ACTIONS(784), - [anon_sym_TILDE] = ACTIONS(786), - [anon_sym_PLUS] = ACTIONS(788), - [anon_sym_DASH] = ACTIONS(788), - [anon_sym_DASH_DASH] = ACTIONS(790), - [anon_sym_PLUS_PLUS] = ACTIONS(790), - [anon_sym_sizeof] = ACTIONS(792), - [sym_number_literal] = ACTIONS(1313), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(1315), - [sym_false] = ACTIONS(1315), - [sym_null] = ACTIONS(1315), - [sym_identifier] = ACTIONS(1315), - [sym_comment] = ACTIONS(37), + [sym__expression] = STATE(319), + [sym_conditional_expression] = STATE(319), + [sym_assignment_expression] = STATE(319), + [sym_pointer_expression] = STATE(319), + [sym_logical_expression] = STATE(319), + [sym_bitwise_expression] = STATE(319), + [sym_equality_expression] = STATE(319), + [sym_relational_expression] = STATE(319), + [sym_shift_expression] = STATE(319), + [sym_math_expression] = STATE(319), + [sym_cast_expression] = STATE(319), + [sym_sizeof_expression] = STATE(319), + [sym_subscript_expression] = STATE(319), + [sym_call_expression] = STATE(319), + [sym_field_expression] = STATE(319), + [sym_compound_literal_expression] = STATE(319), + [sym_parenthesized_expression] = STATE(319), + [sym_initializer_list] = STATE(320), + [sym_char_literal] = STATE(319), + [sym_concatenated_string] = STATE(319), + [sym_string_literal] = STATE(28), + [anon_sym_LBRACE] = ACTIONS(840), + [anon_sym_LPAREN2] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(1416), + [anon_sym_LBRACK] = ACTIONS(1418), + [anon_sym_EQ] = ACTIONS(1420), + [anon_sym_QMARK] = ACTIONS(1418), + [anon_sym_STAR_EQ] = ACTIONS(1418), + [anon_sym_SLASH_EQ] = ACTIONS(1418), + [anon_sym_PERCENT_EQ] = ACTIONS(1418), + [anon_sym_PLUS_EQ] = ACTIONS(1418), + [anon_sym_DASH_EQ] = ACTIONS(1418), + [anon_sym_LT_LT_EQ] = ACTIONS(1418), + [anon_sym_GT_GT_EQ] = ACTIONS(1418), + [anon_sym_AMP_EQ] = ACTIONS(1418), + [anon_sym_CARET_EQ] = ACTIONS(1418), + [anon_sym_PIPE_EQ] = ACTIONS(1418), + [anon_sym_AMP] = ACTIONS(1416), + [anon_sym_PIPE_PIPE] = ACTIONS(1418), + [anon_sym_AMP_AMP] = ACTIONS(1418), + [anon_sym_BANG] = ACTIONS(1422), + [anon_sym_PIPE] = ACTIONS(1420), + [anon_sym_CARET] = ACTIONS(1420), + [anon_sym_TILDE] = ACTIONS(41), + [anon_sym_EQ_EQ] = ACTIONS(1418), + [anon_sym_BANG_EQ] = ACTIONS(1418), + [anon_sym_LT] = ACTIONS(1420), + [anon_sym_GT] = ACTIONS(1420), + [anon_sym_LT_EQ] = ACTIONS(1418), + [anon_sym_GT_EQ] = ACTIONS(1418), + [anon_sym_LT_LT] = ACTIONS(1420), + [anon_sym_GT_GT] = ACTIONS(1420), + [anon_sym_PLUS] = ACTIONS(43), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_SLASH] = ACTIONS(1420), + [anon_sym_PERCENT] = ACTIONS(1420), + [anon_sym_DASH_DASH] = ACTIONS(45), + [anon_sym_PLUS_PLUS] = ACTIONS(45), + [anon_sym_sizeof] = ACTIONS(47), + [anon_sym_DOT] = ACTIONS(1418), + [anon_sym_DASH_GT] = ACTIONS(1418), + [sym_number_literal] = ACTIONS(842), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(844), + [sym_false] = ACTIONS(844), + [sym_null] = ACTIONS(844), + [sym_identifier] = ACTIONS(844), + [sym_comment] = ACTIONS(59), }, [341] = { - [sym_argument_list] = STATE(430), - [anon_sym_SEMI] = ACTIONS(1317), - [anon_sym_LPAREN2] = ACTIONS(1012), - [anon_sym_STAR] = ACTIONS(1319), - [anon_sym_LBRACK] = ACTIONS(1016), - [anon_sym_EQ] = ACTIONS(1321), - [anon_sym_QMARK] = ACTIONS(1323), - [anon_sym_STAR_EQ] = ACTIONS(1325), - [anon_sym_SLASH_EQ] = ACTIONS(1325), - [anon_sym_PERCENT_EQ] = ACTIONS(1325), - [anon_sym_PLUS_EQ] = ACTIONS(1325), - [anon_sym_DASH_EQ] = ACTIONS(1325), - [anon_sym_LT_LT_EQ] = ACTIONS(1325), - [anon_sym_GT_GT_EQ] = ACTIONS(1325), - [anon_sym_AMP_EQ] = ACTIONS(1325), - [anon_sym_CARET_EQ] = ACTIONS(1325), - [anon_sym_PIPE_EQ] = ACTIONS(1325), - [anon_sym_AMP] = ACTIONS(1327), - [anon_sym_PIPE_PIPE] = ACTIONS(1329), - [anon_sym_AMP_AMP] = ACTIONS(1331), - [anon_sym_PIPE] = ACTIONS(1333), - [anon_sym_CARET] = ACTIONS(1335), - [anon_sym_EQ_EQ] = ACTIONS(1337), - [anon_sym_BANG_EQ] = ACTIONS(1337), - [anon_sym_LT] = ACTIONS(1339), - [anon_sym_GT] = ACTIONS(1339), - [anon_sym_LT_EQ] = ACTIONS(1341), - [anon_sym_GT_EQ] = ACTIONS(1341), - [anon_sym_LT_LT] = ACTIONS(1343), - [anon_sym_GT_GT] = ACTIONS(1343), - [anon_sym_PLUS] = ACTIONS(1345), - [anon_sym_DASH] = ACTIONS(1345), - [anon_sym_SLASH] = ACTIONS(1319), - [anon_sym_PERCENT] = ACTIONS(1319), - [anon_sym_DASH_DASH] = ACTIONS(1044), - [anon_sym_PLUS_PLUS] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1046), - [anon_sym_DASH_GT] = ACTIONS(1046), - [sym_comment] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(1424), + [anon_sym_COMMA] = ACTIONS(1424), + [anon_sym_RPAREN] = ACTIONS(1424), + [anon_sym_extern] = ACTIONS(1426), + [anon_sym_LPAREN2] = ACTIONS(1424), + [anon_sym_STAR] = ACTIONS(1424), + [anon_sym_LBRACK] = ACTIONS(1424), + [anon_sym_RBRACK] = ACTIONS(1424), + [anon_sym_static] = ACTIONS(1426), + [anon_sym_auto] = ACTIONS(1426), + [anon_sym_register] = ACTIONS(1426), + [anon_sym_inline] = ACTIONS(1426), + [anon_sym_const] = ACTIONS(1426), + [anon_sym_restrict] = ACTIONS(1426), + [anon_sym_volatile] = ACTIONS(1426), + [anon_sym__Atomic] = ACTIONS(1426), + [anon_sym_COLON] = ACTIONS(1424), + [anon_sym_AMP] = ACTIONS(1424), + [anon_sym_BANG] = ACTIONS(1424), + [anon_sym_TILDE] = ACTIONS(1424), + [anon_sym_PLUS] = ACTIONS(1426), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DASH_DASH] = ACTIONS(1424), + [anon_sym_PLUS_PLUS] = ACTIONS(1424), + [anon_sym_sizeof] = ACTIONS(1426), + [sym_number_literal] = ACTIONS(1424), + [anon_sym_SQUOTE] = ACTIONS(1424), + [anon_sym_DQUOTE] = ACTIONS(1424), + [sym_true] = ACTIONS(1426), + [sym_false] = ACTIONS(1426), + [sym_null] = ACTIONS(1426), + [sym_identifier] = ACTIONS(1426), + [sym_comment] = ACTIONS(59), }, [342] = { - [sym_string_literal] = STATE(558), - [aux_sym_concatenated_string_repeat1] = STATE(558), - [anon_sym_SEMI] = ACTIONS(990), - [anon_sym_LPAREN2] = ACTIONS(990), - [anon_sym_STAR] = ACTIONS(1002), - [anon_sym_LBRACK] = ACTIONS(990), - [anon_sym_EQ] = ACTIONS(1002), - [anon_sym_QMARK] = ACTIONS(990), - [anon_sym_STAR_EQ] = ACTIONS(990), - [anon_sym_SLASH_EQ] = ACTIONS(990), - [anon_sym_PERCENT_EQ] = ACTIONS(990), - [anon_sym_PLUS_EQ] = ACTIONS(990), - [anon_sym_DASH_EQ] = ACTIONS(990), - [anon_sym_LT_LT_EQ] = ACTIONS(990), - [anon_sym_GT_GT_EQ] = ACTIONS(990), - [anon_sym_AMP_EQ] = ACTIONS(990), - [anon_sym_CARET_EQ] = ACTIONS(990), - [anon_sym_PIPE_EQ] = ACTIONS(990), - [anon_sym_AMP] = ACTIONS(1002), - [anon_sym_PIPE_PIPE] = ACTIONS(990), - [anon_sym_AMP_AMP] = ACTIONS(990), - [anon_sym_PIPE] = ACTIONS(1002), - [anon_sym_CARET] = ACTIONS(1002), - [anon_sym_EQ_EQ] = ACTIONS(990), - [anon_sym_BANG_EQ] = ACTIONS(990), - [anon_sym_LT] = ACTIONS(1002), - [anon_sym_GT] = ACTIONS(1002), - [anon_sym_LT_EQ] = ACTIONS(990), - [anon_sym_GT_EQ] = ACTIONS(990), - [anon_sym_LT_LT] = ACTIONS(1002), - [anon_sym_GT_GT] = ACTIONS(1002), - [anon_sym_PLUS] = ACTIONS(1002), - [anon_sym_DASH] = ACTIONS(1002), - [anon_sym_SLASH] = ACTIONS(1002), - [anon_sym_PERCENT] = ACTIONS(1002), - [anon_sym_DASH_DASH] = ACTIONS(990), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_DOT] = ACTIONS(990), - [anon_sym_DASH_GT] = ACTIONS(990), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_comment] = ACTIONS(37), + [sym__declarator] = STATE(344), + [sym_pointer_declarator] = STATE(344), + [sym_function_declarator] = STATE(344), + [sym_array_declarator] = STATE(344), + [sym_type_qualifier] = STATE(345), + [aux_sym_type_definition_repeat1] = STATE(345), + [anon_sym_LPAREN2] = ACTIONS(174), + [anon_sym_STAR] = ACTIONS(429), + [anon_sym_const] = ACTIONS(27), + [anon_sym_restrict] = ACTIONS(27), + [anon_sym_volatile] = ACTIONS(27), + [anon_sym__Atomic] = ACTIONS(27), + [sym_identifier] = ACTIONS(918), + [sym_comment] = ACTIONS(59), }, [343] = { - [sym__field_declarator] = STATE(559), - [sym_pointer_field_declarator] = STATE(559), - [sym_function_field_declarator] = STATE(559), - [sym_array_field_declarator] = STATE(559), - [anon_sym_LPAREN2] = ACTIONS(445), - [anon_sym_STAR] = ACTIONS(447), - [sym_identifier] = ACTIONS(451), - [sym_comment] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(1428), + [anon_sym_COMMA] = ACTIONS(1428), + [anon_sym_RPAREN] = ACTIONS(1428), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN2] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1428), + [anon_sym_EQ] = ACTIONS(1428), + [sym_comment] = ACTIONS(59), }, [344] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1347), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1349), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1349), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1349), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1349), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1349), - [anon_sym_extern] = ACTIONS(1347), - [anon_sym_RBRACE] = ACTIONS(1349), - [anon_sym_static] = ACTIONS(1347), - [anon_sym_auto] = ACTIONS(1347), - [anon_sym_register] = ACTIONS(1347), - [anon_sym_inline] = ACTIONS(1347), - [anon_sym_const] = ACTIONS(1347), - [anon_sym_restrict] = ACTIONS(1347), - [anon_sym_volatile] = ACTIONS(1347), - [anon_sym__Atomic] = ACTIONS(1347), - [anon_sym_unsigned] = ACTIONS(1347), - [anon_sym_long] = ACTIONS(1347), - [anon_sym_short] = ACTIONS(1347), - [sym_primitive_type] = ACTIONS(1347), - [anon_sym_enum] = ACTIONS(1347), - [anon_sym_struct] = ACTIONS(1347), - [anon_sym_union] = ACTIONS(1347), - [sym_identifier] = ACTIONS(1347), - [sym_comment] = ACTIONS(37), + [sym_parameter_list] = STATE(201), + [anon_sym_SEMI] = ACTIONS(1430), + [anon_sym_COMMA] = ACTIONS(1430), + [anon_sym_RPAREN] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1430), + [anon_sym_LPAREN2] = ACTIONS(441), + [anon_sym_LBRACK] = ACTIONS(443), + [anon_sym_EQ] = ACTIONS(1430), + [sym_comment] = ACTIONS(59), }, [345] = { - [sym__declaration_specifiers] = STATE(561), - [sym_storage_class_specifier] = STATE(250), - [sym_type_qualifier] = STATE(250), - [sym__type_specifier] = STATE(247), - [sym_sized_type_specifier] = STATE(247), - [sym_enum_specifier] = STATE(247), - [sym_struct_specifier] = STATE(247), - [sym_union_specifier] = STATE(247), - [sym__expression] = STATE(562), - [sym_conditional_expression] = STATE(562), - [sym_assignment_expression] = STATE(562), - [sym_pointer_expression] = STATE(562), - [sym_logical_expression] = STATE(562), - [sym_bitwise_expression] = STATE(562), - [sym_equality_expression] = STATE(562), - [sym_relational_expression] = STATE(562), - [sym_shift_expression] = STATE(562), - [sym_math_expression] = STATE(562), - [sym_cast_expression] = STATE(562), - [sym_sizeof_expression] = STATE(562), - [sym_subscript_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_compound_literal_expression] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_char_literal] = STATE(562), - [sym_concatenated_string] = STATE(562), - [sym_string_literal] = STATE(249), - [sym_macro_type_specifier] = STATE(247), - [aux_sym__declaration_specifiers_repeat1] = STATE(250), - [aux_sym_sized_type_specifier_repeat1] = STATE(251), - [anon_sym_extern] = ACTIONS(21), - [anon_sym_LPAREN2] = ACTIONS(559), - [anon_sym_STAR] = ACTIONS(561), - [anon_sym_RBRACK] = ACTIONS(1351), - [anon_sym_static] = ACTIONS(21), - [anon_sym_auto] = ACTIONS(21), - [anon_sym_register] = ACTIONS(21), - [anon_sym_inline] = ACTIONS(21), - [anon_sym_const] = ACTIONS(23), - [anon_sym_restrict] = ACTIONS(23), - [anon_sym_volatile] = ACTIONS(23), - [anon_sym__Atomic] = ACTIONS(23), - [anon_sym_unsigned] = ACTIONS(565), - [anon_sym_long] = ACTIONS(565), - [anon_sym_short] = ACTIONS(565), - [sym_primitive_type] = ACTIONS(567), - [anon_sym_enum] = ACTIONS(29), - [anon_sym_struct] = ACTIONS(31), - [anon_sym_union] = ACTIONS(33), - [anon_sym_AMP] = ACTIONS(561), - [anon_sym_BANG] = ACTIONS(569), - [anon_sym_TILDE] = ACTIONS(571), - [anon_sym_PLUS] = ACTIONS(573), - [anon_sym_DASH] = ACTIONS(573), - [anon_sym_DASH_DASH] = ACTIONS(575), - [anon_sym_PLUS_PLUS] = ACTIONS(575), - [anon_sym_sizeof] = ACTIONS(577), - [sym_number_literal] = ACTIONS(1353), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(1355), - [sym_false] = ACTIONS(1355), - [sym_null] = ACTIONS(1355), - [sym_identifier] = ACTIONS(583), - [sym_comment] = ACTIONS(37), + [sym_type_qualifier] = STATE(345), + [aux_sym_type_definition_repeat1] = STATE(345), + [anon_sym_LPAREN2] = ACTIONS(1432), + [anon_sym_STAR] = ACTIONS(1432), + [anon_sym_const] = ACTIONS(738), + [anon_sym_restrict] = ACTIONS(738), + [anon_sym_volatile] = ACTIONS(738), + [anon_sym__Atomic] = ACTIONS(738), + [sym_identifier] = ACTIONS(741), + [sym_comment] = ACTIONS(59), }, [346] = { - [sym__expression] = STATE(563), - [sym_conditional_expression] = STATE(563), - [sym_assignment_expression] = STATE(563), - [sym_pointer_expression] = STATE(563), - [sym_logical_expression] = STATE(563), - [sym_bitwise_expression] = STATE(563), - [sym_equality_expression] = STATE(563), - [sym_relational_expression] = STATE(563), - [sym_shift_expression] = STATE(563), - [sym_math_expression] = STATE(563), - [sym_cast_expression] = STATE(563), - [sym_sizeof_expression] = STATE(563), - [sym_subscript_expression] = STATE(563), - [sym_call_expression] = STATE(563), - [sym_field_expression] = STATE(563), - [sym_compound_literal_expression] = STATE(563), - [sym_parenthesized_expression] = STATE(563), - [sym_char_literal] = STATE(563), - [sym_concatenated_string] = STATE(563), - [sym_string_literal] = STATE(342), - [anon_sym_LPAREN2] = ACTIONS(780), - [anon_sym_STAR] = ACTIONS(782), - [anon_sym_AMP] = ACTIONS(782), - [anon_sym_BANG] = ACTIONS(784), - [anon_sym_TILDE] = ACTIONS(786), - [anon_sym_PLUS] = ACTIONS(788), - [anon_sym_DASH] = ACTIONS(788), - [anon_sym_DASH_DASH] = ACTIONS(790), - [anon_sym_PLUS_PLUS] = ACTIONS(790), - [anon_sym_sizeof] = ACTIONS(792), - [sym_number_literal] = ACTIONS(1357), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(1359), - [sym_false] = ACTIONS(1359), - [sym_null] = ACTIONS(1359), - [sym_identifier] = ACTIONS(1359), - [sym_comment] = ACTIONS(37), + [sym__declarator] = STATE(192), + [sym_pointer_declarator] = STATE(192), + [sym_function_declarator] = STATE(192), + [sym_array_declarator] = STATE(192), + [sym_type_qualifier] = STATE(543), + [aux_sym_type_definition_repeat1] = STATE(543), + [anon_sym_LPAREN2] = ACTIONS(174), + [anon_sym_STAR] = ACTIONS(924), + [anon_sym_const] = ACTIONS(27), + [anon_sym_restrict] = ACTIONS(27), + [anon_sym_volatile] = ACTIONS(27), + [anon_sym__Atomic] = ACTIONS(27), + [sym_identifier] = ACTIONS(433), + [sym_comment] = ACTIONS(59), }, [347] = { - [anon_sym_COMMA] = ACTIONS(1361), - [anon_sym_RPAREN] = ACTIONS(1361), - [anon_sym_SEMI] = ACTIONS(1361), - [anon_sym_LPAREN2] = ACTIONS(1361), - [anon_sym_LBRACK] = ACTIONS(1361), - [anon_sym_COLON] = ACTIONS(1361), - [sym_comment] = ACTIONS(37), + [sym_parameter_list] = STATE(201), + [anon_sym_SEMI] = ACTIONS(1434), + [anon_sym_COMMA] = ACTIONS(1434), + [anon_sym_LPAREN2] = ACTIONS(441), + [anon_sym_LBRACK] = ACTIONS(443), + [anon_sym_EQ] = ACTIONS(445), + [sym_comment] = ACTIONS(59), }, [348] = { - [aux_sym_field_declaration_repeat1] = STATE(565), - [anon_sym_COMMA] = ACTIONS(800), - [anon_sym_SEMI] = ACTIONS(1317), - [anon_sym_COLON] = ACTIONS(1363), - [sym_comment] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(1434), + [anon_sym_COMMA] = ACTIONS(1434), + [sym_comment] = ACTIONS(59), }, [349] = { - [sym_storage_class_specifier] = STATE(349), - [sym_type_qualifier] = STATE(349), - [aux_sym__declaration_specifiers_repeat1] = STATE(349), - [anon_sym_SEMI] = ACTIONS(599), - [anon_sym_extern] = ACTIONS(288), - [anon_sym_LPAREN2] = ACTIONS(599), - [anon_sym_STAR] = ACTIONS(599), - [anon_sym_static] = ACTIONS(288), - [anon_sym_auto] = ACTIONS(288), - [anon_sym_register] = ACTIONS(288), - [anon_sym_inline] = ACTIONS(288), - [anon_sym_const] = ACTIONS(291), - [anon_sym_restrict] = ACTIONS(291), - [anon_sym_volatile] = ACTIONS(291), - [anon_sym__Atomic] = ACTIONS(291), - [anon_sym_COLON] = ACTIONS(599), - [sym_identifier] = ACTIONS(294), - [sym_comment] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(1436), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1438), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1438), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1438), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1438), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1438), + [sym_preproc_directive] = ACTIONS(1438), + [anon_sym_typedef] = ACTIONS(1438), + [anon_sym_extern] = ACTIONS(1438), + [anon_sym_LBRACE] = ACTIONS(1436), + [anon_sym_RBRACE] = ACTIONS(1436), + [anon_sym_LPAREN2] = ACTIONS(1436), + [anon_sym_STAR] = ACTIONS(1436), + [anon_sym_static] = ACTIONS(1438), + [anon_sym_auto] = ACTIONS(1438), + [anon_sym_register] = ACTIONS(1438), + [anon_sym_inline] = ACTIONS(1438), + [anon_sym_const] = ACTIONS(1438), + [anon_sym_restrict] = ACTIONS(1438), + [anon_sym_volatile] = ACTIONS(1438), + [anon_sym__Atomic] = ACTIONS(1438), + [anon_sym_unsigned] = ACTIONS(1438), + [anon_sym_long] = ACTIONS(1438), + [anon_sym_short] = ACTIONS(1438), + [sym_primitive_type] = ACTIONS(1438), + [anon_sym_enum] = ACTIONS(1438), + [anon_sym_struct] = ACTIONS(1438), + [anon_sym_union] = ACTIONS(1438), + [anon_sym_if] = ACTIONS(1438), + [anon_sym_else] = ACTIONS(1438), + [anon_sym_switch] = ACTIONS(1438), + [anon_sym_case] = ACTIONS(1438), + [anon_sym_default] = ACTIONS(1438), + [anon_sym_while] = ACTIONS(1438), + [anon_sym_do] = ACTIONS(1438), + [anon_sym_for] = ACTIONS(1438), + [anon_sym_return] = ACTIONS(1438), + [anon_sym_break] = ACTIONS(1438), + [anon_sym_continue] = ACTIONS(1438), + [anon_sym_goto] = ACTIONS(1438), + [anon_sym_AMP] = ACTIONS(1436), + [anon_sym_BANG] = ACTIONS(1436), + [anon_sym_TILDE] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1438), + [anon_sym_DASH] = ACTIONS(1438), + [anon_sym_DASH_DASH] = ACTIONS(1436), + [anon_sym_PLUS_PLUS] = ACTIONS(1436), + [anon_sym_sizeof] = ACTIONS(1438), + [sym_number_literal] = ACTIONS(1436), + [anon_sym_SQUOTE] = ACTIONS(1436), + [anon_sym_DQUOTE] = ACTIONS(1436), + [sym_true] = ACTIONS(1438), + [sym_false] = ACTIONS(1438), + [sym_null] = ACTIONS(1438), + [sym_identifier] = ACTIONS(1438), + [sym_comment] = ACTIONS(59), }, [350] = { - [sym_storage_class_specifier] = STATE(349), - [sym_type_qualifier] = STATE(349), - [aux_sym__declaration_specifiers_repeat1] = STATE(349), - [anon_sym_SEMI] = ACTIONS(601), - [anon_sym_extern] = ACTIONS(21), - [anon_sym_LPAREN2] = ACTIONS(601), - [anon_sym_STAR] = ACTIONS(601), - [anon_sym_static] = ACTIONS(21), - [anon_sym_auto] = ACTIONS(21), - [anon_sym_register] = ACTIONS(21), - [anon_sym_inline] = ACTIONS(21), - [anon_sym_const] = ACTIONS(23), - [anon_sym_restrict] = ACTIONS(23), - [anon_sym_volatile] = ACTIONS(23), - [anon_sym__Atomic] = ACTIONS(23), - [anon_sym_COLON] = ACTIONS(601), - [sym_identifier] = ACTIONS(603), - [sym_comment] = ACTIONS(37), + [sym_preproc_arg] = ACTIONS(1440), + [sym_comment] = ACTIONS(69), }, [351] = { - [sym_parameter_list] = STATE(358), - [anon_sym_RPAREN] = ACTIONS(1365), - [anon_sym_LPAREN2] = ACTIONS(231), - [anon_sym_LBRACK] = ACTIONS(859), - [sym_comment] = ACTIONS(37), + [sym_identifier] = ACTIONS(1442), + [sym_comment] = ACTIONS(59), }, [352] = { - [sym_parameter_list] = STATE(358), - [anon_sym_COMMA] = ACTIONS(1367), - [anon_sym_RPAREN] = ACTIONS(1367), - [anon_sym_LPAREN2] = ACTIONS(231), - [anon_sym_LBRACK] = ACTIONS(859), - [sym_comment] = ACTIONS(37), + [ts_builtin_sym_end] = ACTIONS(1444), + [anon_sym_SEMI] = ACTIONS(1444), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1446), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1446), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1446), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1446), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1446), + [sym_preproc_directive] = ACTIONS(1446), + [anon_sym_typedef] = ACTIONS(1446), + [anon_sym_extern] = ACTIONS(1446), + [anon_sym_LBRACE] = ACTIONS(1444), + [anon_sym_RBRACE] = ACTIONS(1444), + [anon_sym_LPAREN2] = ACTIONS(1444), + [anon_sym_STAR] = ACTIONS(1444), + [anon_sym_static] = ACTIONS(1446), + [anon_sym_auto] = ACTIONS(1446), + [anon_sym_register] = ACTIONS(1446), + [anon_sym_inline] = ACTIONS(1446), + [anon_sym_const] = ACTIONS(1446), + [anon_sym_restrict] = ACTIONS(1446), + [anon_sym_volatile] = ACTIONS(1446), + [anon_sym__Atomic] = ACTIONS(1446), + [anon_sym_unsigned] = ACTIONS(1446), + [anon_sym_long] = ACTIONS(1446), + [anon_sym_short] = ACTIONS(1446), + [sym_primitive_type] = ACTIONS(1446), + [anon_sym_enum] = ACTIONS(1446), + [anon_sym_struct] = ACTIONS(1446), + [anon_sym_union] = ACTIONS(1446), + [anon_sym_if] = ACTIONS(1446), + [anon_sym_else] = ACTIONS(1446), + [anon_sym_switch] = ACTIONS(1446), + [anon_sym_case] = ACTIONS(1446), + [anon_sym_default] = ACTIONS(1446), + [anon_sym_while] = ACTIONS(1446), + [anon_sym_do] = ACTIONS(1446), + [anon_sym_for] = ACTIONS(1446), + [anon_sym_return] = ACTIONS(1446), + [anon_sym_break] = ACTIONS(1446), + [anon_sym_continue] = ACTIONS(1446), + [anon_sym_goto] = ACTIONS(1446), + [anon_sym_AMP] = ACTIONS(1444), + [anon_sym_BANG] = ACTIONS(1444), + [anon_sym_TILDE] = ACTIONS(1444), + [anon_sym_PLUS] = ACTIONS(1446), + [anon_sym_DASH] = ACTIONS(1446), + [anon_sym_DASH_DASH] = ACTIONS(1444), + [anon_sym_PLUS_PLUS] = ACTIONS(1444), + [anon_sym_sizeof] = ACTIONS(1446), + [sym_number_literal] = ACTIONS(1444), + [anon_sym_SQUOTE] = ACTIONS(1444), + [anon_sym_DQUOTE] = ACTIONS(1444), + [sym_true] = ACTIONS(1446), + [sym_false] = ACTIONS(1446), + [sym_null] = ACTIONS(1446), + [sym_identifier] = ACTIONS(1446), + [sym_comment] = ACTIONS(59), }, [353] = { - [sym__abstract_declarator] = STATE(567), - [sym_abstract_pointer_declarator] = STATE(567), - [sym_abstract_function_declarator] = STATE(567), - [sym_abstract_array_declarator] = STATE(567), - [sym_type_qualifier] = STATE(568), - [sym_parameter_list] = STATE(192), - [aux_sym_type_definition_repeat1] = STATE(568), - [anon_sym_RPAREN] = ACTIONS(1367), - [anon_sym_LPAREN2] = ACTIONS(469), - [anon_sym_STAR] = ACTIONS(471), - [anon_sym_LBRACK] = ACTIONS(473), - [anon_sym_const] = ACTIONS(849), - [anon_sym_restrict] = ACTIONS(849), - [anon_sym_volatile] = ACTIONS(849), - [anon_sym__Atomic] = ACTIONS(849), - [sym_comment] = ACTIONS(37), + [sym_type_qualifier] = STATE(56), + [sym__type_specifier] = STATE(51), + [sym_sized_type_specifier] = STATE(51), + [sym_enum_specifier] = STATE(51), + [sym_struct_specifier] = STATE(51), + [sym_union_specifier] = STATE(51), + [sym__expression] = STATE(52), + [sym_comma_expression] = STATE(53), + [sym_conditional_expression] = STATE(52), + [sym_assignment_expression] = STATE(52), + [sym_pointer_expression] = STATE(52), + [sym_logical_expression] = STATE(52), + [sym_bitwise_expression] = STATE(52), + [sym_equality_expression] = STATE(52), + [sym_relational_expression] = STATE(52), + [sym_shift_expression] = STATE(52), + [sym_math_expression] = STATE(52), + [sym_cast_expression] = STATE(52), + [sym_type_descriptor] = STATE(546), + [sym_sizeof_expression] = STATE(52), + [sym_subscript_expression] = STATE(52), + [sym_call_expression] = STATE(52), + [sym_field_expression] = STATE(52), + [sym_compound_literal_expression] = STATE(52), + [sym_parenthesized_expression] = STATE(52), + [sym_char_literal] = STATE(52), + [sym_concatenated_string] = STATE(52), + [sym_string_literal] = STATE(55), + [sym_macro_type_specifier] = STATE(51), + [aux_sym_type_definition_repeat1] = STATE(56), + [aux_sym_sized_type_specifier_repeat1] = STATE(57), + [anon_sym_LPAREN2] = ACTIONS(85), + [anon_sym_STAR] = ACTIONS(87), + [anon_sym_const] = ACTIONS(27), + [anon_sym_restrict] = ACTIONS(27), + [anon_sym_volatile] = ACTIONS(27), + [anon_sym__Atomic] = ACTIONS(27), + [anon_sym_unsigned] = ACTIONS(89), + [anon_sym_long] = ACTIONS(89), + [anon_sym_short] = ACTIONS(89), + [sym_primitive_type] = ACTIONS(91), + [anon_sym_enum] = ACTIONS(33), + [anon_sym_struct] = ACTIONS(35), + [anon_sym_union] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_PLUS] = ACTIONS(97), + [anon_sym_DASH] = ACTIONS(97), + [anon_sym_DASH_DASH] = ACTIONS(99), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(105), + [sym_false] = ACTIONS(105), + [sym_null] = ACTIONS(105), + [sym_identifier] = ACTIONS(107), + [sym_comment] = ACTIONS(59), }, [354] = { - [anon_sym_COMMA] = ACTIONS(1369), - [anon_sym_RPAREN] = ACTIONS(1369), - [anon_sym_LPAREN2] = ACTIONS(1369), - [anon_sym_LBRACK] = ACTIONS(1369), - [sym_comment] = ACTIONS(37), + [sym__expression] = STATE(58), + [sym_conditional_expression] = STATE(58), + [sym_assignment_expression] = STATE(58), + [sym_pointer_expression] = STATE(58), + [sym_logical_expression] = STATE(58), + [sym_bitwise_expression] = STATE(58), + [sym_equality_expression] = STATE(58), + [sym_relational_expression] = STATE(58), + [sym_shift_expression] = STATE(58), + [sym_math_expression] = STATE(58), + [sym_cast_expression] = STATE(58), + [sym_sizeof_expression] = STATE(58), + [sym_subscript_expression] = STATE(58), + [sym_call_expression] = STATE(58), + [sym_field_expression] = STATE(58), + [sym_compound_literal_expression] = STATE(58), + [sym_parenthesized_expression] = STATE(58), + [sym_char_literal] = STATE(58), + [sym_concatenated_string] = STATE(58), + [sym_string_literal] = STATE(374), + [anon_sym_LPAREN2] = ACTIONS(936), + [anon_sym_STAR] = ACTIONS(938), + [anon_sym_AMP] = ACTIONS(938), + [anon_sym_BANG] = ACTIONS(962), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_DASH_DASH] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(968), + [anon_sym_sizeof] = ACTIONS(970), + [sym_number_literal] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(111), + [sym_false] = ACTIONS(111), + [sym_null] = ACTIONS(111), + [sym_identifier] = ACTIONS(111), + [sym_comment] = ACTIONS(59), }, [355] = { - [sym__expression] = STATE(570), - [sym_conditional_expression] = STATE(570), - [sym_assignment_expression] = STATE(570), - [sym_pointer_expression] = STATE(570), - [sym_logical_expression] = STATE(570), - [sym_bitwise_expression] = STATE(570), - [sym_equality_expression] = STATE(570), - [sym_relational_expression] = STATE(570), - [sym_shift_expression] = STATE(570), - [sym_math_expression] = STATE(570), - [sym_cast_expression] = STATE(570), - [sym_sizeof_expression] = STATE(570), - [sym_subscript_expression] = STATE(570), - [sym_call_expression] = STATE(570), - [sym_field_expression] = STATE(570), - [sym_compound_literal_expression] = STATE(570), - [sym_parenthesized_expression] = STATE(570), - [sym_char_literal] = STATE(570), - [sym_concatenated_string] = STATE(570), - [sym_string_literal] = STATE(249), - [anon_sym_LPAREN2] = ACTIONS(559), - [anon_sym_STAR] = ACTIONS(561), - [anon_sym_RBRACK] = ACTIONS(1371), - [anon_sym_AMP] = ACTIONS(561), - [anon_sym_BANG] = ACTIONS(569), - [anon_sym_TILDE] = ACTIONS(571), - [anon_sym_PLUS] = ACTIONS(573), - [anon_sym_DASH] = ACTIONS(573), - [anon_sym_DASH_DASH] = ACTIONS(575), - [anon_sym_PLUS_PLUS] = ACTIONS(575), - [anon_sym_sizeof] = ACTIONS(577), - [sym_number_literal] = ACTIONS(1373), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(1375), - [sym_false] = ACTIONS(1375), - [sym_null] = ACTIONS(1375), - [sym_identifier] = ACTIONS(1375), - [sym_comment] = ACTIONS(37), + [sym_parenthesized_expression] = STATE(548), + [anon_sym_LPAREN2] = ACTIONS(1448), + [sym_comment] = ACTIONS(59), }, [356] = { - [sym_argument_list] = STATE(430), - [anon_sym_LPAREN2] = ACTIONS(1012), - [anon_sym_STAR] = ACTIONS(1082), - [anon_sym_LBRACK] = ACTIONS(1016), - [anon_sym_RBRACK] = ACTIONS(1371), - [anon_sym_EQ] = ACTIONS(1084), - [anon_sym_QMARK] = ACTIONS(1086), - [anon_sym_STAR_EQ] = ACTIONS(1088), - [anon_sym_SLASH_EQ] = ACTIONS(1088), - [anon_sym_PERCENT_EQ] = ACTIONS(1088), - [anon_sym_PLUS_EQ] = ACTIONS(1088), - [anon_sym_DASH_EQ] = ACTIONS(1088), - [anon_sym_LT_LT_EQ] = ACTIONS(1088), - [anon_sym_GT_GT_EQ] = ACTIONS(1088), - [anon_sym_AMP_EQ] = ACTIONS(1088), - [anon_sym_CARET_EQ] = ACTIONS(1088), - [anon_sym_PIPE_EQ] = ACTIONS(1088), - [anon_sym_AMP] = ACTIONS(1090), - [anon_sym_PIPE_PIPE] = ACTIONS(1092), - [anon_sym_AMP_AMP] = ACTIONS(1094), - [anon_sym_PIPE] = ACTIONS(1096), - [anon_sym_CARET] = ACTIONS(1098), - [anon_sym_EQ_EQ] = ACTIONS(1100), - [anon_sym_BANG_EQ] = ACTIONS(1100), - [anon_sym_LT] = ACTIONS(1102), - [anon_sym_GT] = ACTIONS(1102), - [anon_sym_LT_EQ] = ACTIONS(1104), - [anon_sym_GT_EQ] = ACTIONS(1104), - [anon_sym_LT_LT] = ACTIONS(1106), - [anon_sym_GT_GT] = ACTIONS(1106), - [anon_sym_PLUS] = ACTIONS(1108), - [anon_sym_DASH] = ACTIONS(1108), - [anon_sym_SLASH] = ACTIONS(1082), - [anon_sym_PERCENT] = ACTIONS(1082), - [anon_sym_DASH_DASH] = ACTIONS(1044), - [anon_sym_PLUS_PLUS] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1046), - [anon_sym_DASH_GT] = ACTIONS(1046), - [sym_comment] = ACTIONS(37), + [sym_parenthesized_expression] = STATE(549), + [anon_sym_LPAREN2] = ACTIONS(1448), + [sym_comment] = ACTIONS(59), }, [357] = { - [sym__declaration_specifiers] = STATE(571), - [sym_storage_class_specifier] = STATE(250), - [sym_type_qualifier] = STATE(250), - [sym__type_specifier] = STATE(247), - [sym_sized_type_specifier] = STATE(247), - [sym_enum_specifier] = STATE(247), - [sym_struct_specifier] = STATE(247), - [sym_union_specifier] = STATE(247), - [sym__expression] = STATE(570), - [sym_conditional_expression] = STATE(570), - [sym_assignment_expression] = STATE(570), - [sym_pointer_expression] = STATE(570), - [sym_logical_expression] = STATE(570), - [sym_bitwise_expression] = STATE(570), - [sym_equality_expression] = STATE(570), - [sym_relational_expression] = STATE(570), - [sym_shift_expression] = STATE(570), - [sym_math_expression] = STATE(570), - [sym_cast_expression] = STATE(570), - [sym_sizeof_expression] = STATE(570), - [sym_subscript_expression] = STATE(570), - [sym_call_expression] = STATE(570), - [sym_field_expression] = STATE(570), - [sym_compound_literal_expression] = STATE(570), - [sym_parenthesized_expression] = STATE(570), - [sym_char_literal] = STATE(570), - [sym_concatenated_string] = STATE(570), - [sym_string_literal] = STATE(249), - [sym_macro_type_specifier] = STATE(247), - [aux_sym__declaration_specifiers_repeat1] = STATE(250), - [aux_sym_sized_type_specifier_repeat1] = STATE(251), - [anon_sym_extern] = ACTIONS(21), - [anon_sym_LPAREN2] = ACTIONS(559), - [anon_sym_STAR] = ACTIONS(561), - [anon_sym_RBRACK] = ACTIONS(1371), - [anon_sym_static] = ACTIONS(21), - [anon_sym_auto] = ACTIONS(21), - [anon_sym_register] = ACTIONS(21), - [anon_sym_inline] = ACTIONS(21), - [anon_sym_const] = ACTIONS(23), - [anon_sym_restrict] = ACTIONS(23), - [anon_sym_volatile] = ACTIONS(23), - [anon_sym__Atomic] = ACTIONS(23), - [anon_sym_unsigned] = ACTIONS(565), - [anon_sym_long] = ACTIONS(565), - [anon_sym_short] = ACTIONS(565), - [sym_primitive_type] = ACTIONS(567), - [anon_sym_enum] = ACTIONS(29), - [anon_sym_struct] = ACTIONS(31), - [anon_sym_union] = ACTIONS(33), - [anon_sym_AMP] = ACTIONS(561), - [anon_sym_BANG] = ACTIONS(569), - [anon_sym_TILDE] = ACTIONS(571), - [anon_sym_PLUS] = ACTIONS(573), - [anon_sym_DASH] = ACTIONS(573), - [anon_sym_DASH_DASH] = ACTIONS(575), - [anon_sym_PLUS_PLUS] = ACTIONS(575), - [anon_sym_sizeof] = ACTIONS(577), - [sym_number_literal] = ACTIONS(1373), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(1375), - [sym_false] = ACTIONS(1375), - [sym_null] = ACTIONS(1375), - [sym_identifier] = ACTIONS(583), - [sym_comment] = ACTIONS(37), + [sym__expression] = STATE(550), + [sym_conditional_expression] = STATE(550), + [sym_assignment_expression] = STATE(550), + [sym_pointer_expression] = STATE(550), + [sym_logical_expression] = STATE(550), + [sym_bitwise_expression] = STATE(550), + [sym_equality_expression] = STATE(550), + [sym_relational_expression] = STATE(550), + [sym_shift_expression] = STATE(550), + [sym_math_expression] = STATE(550), + [sym_cast_expression] = STATE(550), + [sym_sizeof_expression] = STATE(550), + [sym_subscript_expression] = STATE(550), + [sym_call_expression] = STATE(550), + [sym_field_expression] = STATE(550), + [sym_compound_literal_expression] = STATE(550), + [sym_parenthesized_expression] = STATE(550), + [sym_char_literal] = STATE(550), + [sym_concatenated_string] = STATE(550), + [sym_string_literal] = STATE(223), + [anon_sym_LPAREN2] = ACTIONS(483), + [anon_sym_STAR] = ACTIONS(485), + [anon_sym_AMP] = ACTIONS(485), + [anon_sym_BANG] = ACTIONS(487), + [anon_sym_TILDE] = ACTIONS(489), + [anon_sym_PLUS] = ACTIONS(491), + [anon_sym_DASH] = ACTIONS(491), + [anon_sym_DASH_DASH] = ACTIONS(493), + [anon_sym_PLUS_PLUS] = ACTIONS(493), + [anon_sym_sizeof] = ACTIONS(495), + [sym_number_literal] = ACTIONS(1450), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(1452), + [sym_false] = ACTIONS(1452), + [sym_null] = ACTIONS(1452), + [sym_identifier] = ACTIONS(1452), + [sym_comment] = ACTIONS(59), }, [358] = { - [anon_sym_COMMA] = ACTIONS(1377), - [anon_sym_RPAREN] = ACTIONS(1377), - [anon_sym_LPAREN2] = ACTIONS(1377), - [anon_sym_LBRACK] = ACTIONS(1377), - [sym_comment] = ACTIONS(37), + [anon_sym_COLON] = ACTIONS(1454), + [sym_comment] = ACTIONS(59), }, [359] = { - [sym_parameter_list] = STATE(358), - [anon_sym_RPAREN] = ACTIONS(1379), - [anon_sym_LPAREN2] = ACTIONS(231), - [anon_sym_LBRACK] = ACTIONS(859), - [sym_comment] = ACTIONS(37), + [sym_parenthesized_expression] = STATE(552), + [anon_sym_LPAREN2] = ACTIONS(1448), + [sym_comment] = ACTIONS(59), }, [360] = { - [sym__declarator] = STATE(198), - [sym_pointer_declarator] = STATE(198), - [sym_function_declarator] = STATE(198), - [sym_array_declarator] = STATE(198), - [sym_type_qualifier] = STATE(199), - [aux_sym_type_definition_repeat1] = STATE(199), - [anon_sym_LPAREN2] = ACTIONS(88), - [anon_sym_STAR] = ACTIONS(489), - [anon_sym_const] = ACTIONS(23), - [anon_sym_restrict] = ACTIONS(23), - [anon_sym_volatile] = ACTIONS(23), - [anon_sym__Atomic] = ACTIONS(23), - [sym_identifier] = ACTIONS(487), - [sym_comment] = ACTIONS(37), + [sym_compound_statement] = STATE(561), + [sym_labeled_statement] = STATE(561), + [sym_expression_statement] = STATE(561), + [sym_if_statement] = STATE(561), + [sym_switch_statement] = STATE(561), + [sym_case_statement] = STATE(561), + [sym_while_statement] = STATE(561), + [sym_do_statement] = STATE(561), + [sym_for_statement] = STATE(561), + [sym_return_statement] = STATE(561), + [sym_break_statement] = STATE(561), + [sym_continue_statement] = STATE(561), + [sym_goto_statement] = STATE(561), + [sym__expression] = STATE(372), + [sym_comma_expression] = STATE(373), + [sym_conditional_expression] = STATE(372), + [sym_assignment_expression] = STATE(372), + [sym_pointer_expression] = STATE(372), + [sym_logical_expression] = STATE(372), + [sym_bitwise_expression] = STATE(372), + [sym_equality_expression] = STATE(372), + [sym_relational_expression] = STATE(372), + [sym_shift_expression] = STATE(372), + [sym_math_expression] = STATE(372), + [sym_cast_expression] = STATE(372), + [sym_sizeof_expression] = STATE(372), + [sym_subscript_expression] = STATE(372), + [sym_call_expression] = STATE(372), + [sym_field_expression] = STATE(372), + [sym_compound_literal_expression] = STATE(372), + [sym_parenthesized_expression] = STATE(372), + [sym_char_literal] = STATE(372), + [sym_concatenated_string] = STATE(372), + [sym_string_literal] = STATE(374), + [anon_sym_SEMI] = ACTIONS(928), + [anon_sym_LBRACE] = ACTIONS(439), + [anon_sym_LPAREN2] = ACTIONS(936), + [anon_sym_STAR] = ACTIONS(938), + [anon_sym_if] = ACTIONS(1456), + [anon_sym_switch] = ACTIONS(1458), + [anon_sym_case] = ACTIONS(1460), + [anon_sym_default] = ACTIONS(1462), + [anon_sym_while] = ACTIONS(1464), + [anon_sym_do] = ACTIONS(1466), + [anon_sym_for] = ACTIONS(1468), + [anon_sym_return] = ACTIONS(954), + [anon_sym_break] = ACTIONS(956), + [anon_sym_continue] = ACTIONS(958), + [anon_sym_goto] = ACTIONS(960), + [anon_sym_AMP] = ACTIONS(938), + [anon_sym_BANG] = ACTIONS(962), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_DASH_DASH] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(968), + [anon_sym_sizeof] = ACTIONS(970), + [sym_number_literal] = ACTIONS(972), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(974), + [sym_false] = ACTIONS(974), + [sym_null] = ACTIONS(974), + [sym_identifier] = ACTIONS(1470), + [sym_comment] = ACTIONS(59), }, [361] = { - [aux_sym_string_literal_repeat1] = STATE(573), - [anon_sym_DQUOTE] = ACTIONS(1381), - [aux_sym_SLASH_LBRACK_CARET_BSLASH_BSLASH_DQUOTE_BSLASHn_RBRACK_SLASH] = ACTIONS(1383), - [sym_escape_sequence] = ACTIONS(1383), - [sym_comment] = ACTIONS(47), + [anon_sym_LPAREN2] = ACTIONS(1472), + [sym_comment] = ACTIONS(59), }, [362] = { - [sym_preproc_include] = STATE(596), - [sym_preproc_def] = STATE(596), - [sym_preproc_function_def] = STATE(596), - [sym_preproc_call] = STATE(596), - [sym_preproc_if_in_compound_statement] = STATE(596), - [sym_preproc_ifdef_in_compound_statement] = STATE(596), - [sym_preproc_else_in_compound_statement] = STATE(592), - [sym_preproc_elif_in_compound_statement] = STATE(592), - [sym_declaration] = STATE(596), - [sym_type_definition] = STATE(596), - [sym__declaration_specifiers] = STATE(593), - [sym_compound_statement] = STATE(596), - [sym_storage_class_specifier] = STATE(19), - [sym_type_qualifier] = STATE(19), - [sym__type_specifier] = STATE(17), - [sym_sized_type_specifier] = STATE(17), - [sym_enum_specifier] = STATE(17), - [sym_struct_specifier] = STATE(17), - [sym_union_specifier] = STATE(17), - [sym_labeled_statement] = STATE(596), - [sym_expression_statement] = STATE(596), - [sym_if_statement] = STATE(596), - [sym_switch_statement] = STATE(596), - [sym_case_statement] = STATE(596), - [sym_while_statement] = STATE(596), - [sym_do_statement] = STATE(596), - [sym_for_statement] = STATE(596), - [sym_return_statement] = STATE(596), - [sym_break_statement] = STATE(596), - [sym_continue_statement] = STATE(596), - [sym_goto_statement] = STATE(596), - [sym__expression] = STATE(594), - [sym_comma_expression] = STATE(595), - [sym_conditional_expression] = STATE(594), - [sym_assignment_expression] = STATE(594), - [sym_pointer_expression] = STATE(594), - [sym_logical_expression] = STATE(594), - [sym_bitwise_expression] = STATE(594), - [sym_equality_expression] = STATE(594), - [sym_relational_expression] = STATE(594), - [sym_shift_expression] = STATE(594), - [sym_math_expression] = STATE(594), - [sym_cast_expression] = STATE(594), - [sym_sizeof_expression] = STATE(594), - [sym_subscript_expression] = STATE(594), - [sym_call_expression] = STATE(594), - [sym_field_expression] = STATE(594), - [sym_compound_literal_expression] = STATE(594), - [sym_parenthesized_expression] = STATE(594), - [sym_char_literal] = STATE(594), - [sym_concatenated_string] = STATE(594), - [sym_string_literal] = STATE(230), - [sym__empty_declaration] = STATE(596), - [sym_macro_type_specifier] = STATE(17), - [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(596), - [aux_sym__declaration_specifiers_repeat1] = STATE(19), - [aux_sym_sized_type_specifier_repeat1] = STATE(20), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(127), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(129), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1385), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1387), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1389), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1389), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1391), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1393), - [sym_preproc_directive] = ACTIONS(141), - [anon_sym_SEMI] = ACTIONS(1395), - [anon_sym_typedef] = ACTIONS(143), - [anon_sym_extern] = ACTIONS(21), - [anon_sym_LBRACE] = ACTIONS(678), - [anon_sym_LPAREN2] = ACTIONS(507), - [anon_sym_STAR] = ACTIONS(509), - [anon_sym_static] = ACTIONS(21), - [anon_sym_auto] = ACTIONS(21), - [anon_sym_register] = ACTIONS(21), - [anon_sym_inline] = ACTIONS(21), - [anon_sym_const] = ACTIONS(23), - [anon_sym_restrict] = ACTIONS(23), - [anon_sym_volatile] = ACTIONS(23), - [anon_sym__Atomic] = ACTIONS(23), - [anon_sym_unsigned] = ACTIONS(25), - [anon_sym_long] = ACTIONS(25), - [anon_sym_short] = ACTIONS(25), - [sym_primitive_type] = ACTIONS(27), - [anon_sym_enum] = ACTIONS(29), - [anon_sym_struct] = ACTIONS(31), - [anon_sym_union] = ACTIONS(33), - [anon_sym_if] = ACTIONS(1397), - [anon_sym_switch] = ACTIONS(1399), - [anon_sym_case] = ACTIONS(1401), - [anon_sym_default] = ACTIONS(1403), - [anon_sym_while] = ACTIONS(1405), - [anon_sym_do] = ACTIONS(1407), - [anon_sym_for] = ACTIONS(1409), - [anon_sym_return] = ACTIONS(1411), - [anon_sym_break] = ACTIONS(1413), - [anon_sym_continue] = ACTIONS(1415), - [anon_sym_goto] = ACTIONS(1417), - [anon_sym_AMP] = ACTIONS(509), - [anon_sym_BANG] = ACTIONS(533), - [anon_sym_TILDE] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DASH] = ACTIONS(537), - [anon_sym_DASH_DASH] = ACTIONS(539), - [anon_sym_PLUS_PLUS] = ACTIONS(539), - [anon_sym_sizeof] = ACTIONS(541), - [sym_number_literal] = ACTIONS(1419), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(1421), - [sym_false] = ACTIONS(1421), - [sym_null] = ACTIONS(1421), - [sym_identifier] = ACTIONS(1423), - [sym_comment] = ACTIONS(37), + [sym__expression] = STATE(564), + [sym_conditional_expression] = STATE(564), + [sym_assignment_expression] = STATE(564), + [sym_pointer_expression] = STATE(564), + [sym_logical_expression] = STATE(564), + [sym_bitwise_expression] = STATE(564), + [sym_equality_expression] = STATE(564), + [sym_relational_expression] = STATE(564), + [sym_shift_expression] = STATE(564), + [sym_math_expression] = STATE(564), + [sym_cast_expression] = STATE(564), + [sym_sizeof_expression] = STATE(564), + [sym_subscript_expression] = STATE(564), + [sym_call_expression] = STATE(564), + [sym_field_expression] = STATE(564), + [sym_compound_literal_expression] = STATE(564), + [sym_parenthesized_expression] = STATE(564), + [sym_char_literal] = STATE(564), + [sym_concatenated_string] = STATE(564), + [sym_string_literal] = STATE(534), + [anon_sym_SEMI] = ACTIONS(1474), + [anon_sym_LPAREN2] = ACTIONS(1349), + [anon_sym_STAR] = ACTIONS(1351), + [anon_sym_AMP] = ACTIONS(1351), + [anon_sym_BANG] = ACTIONS(1353), + [anon_sym_TILDE] = ACTIONS(1355), + [anon_sym_PLUS] = ACTIONS(1357), + [anon_sym_DASH] = ACTIONS(1357), + [anon_sym_DASH_DASH] = ACTIONS(1359), + [anon_sym_PLUS_PLUS] = ACTIONS(1359), + [anon_sym_sizeof] = ACTIONS(1361), + [sym_number_literal] = ACTIONS(1476), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(1478), + [sym_false] = ACTIONS(1478), + [sym_null] = ACTIONS(1478), + [sym_identifier] = ACTIONS(1478), + [sym_comment] = ACTIONS(59), }, [363] = { - [sym_preproc_include] = STATE(599), - [sym_preproc_def] = STATE(599), - [sym_preproc_function_def] = STATE(599), - [sym_preproc_call] = STATE(599), - [sym_preproc_if_in_compound_statement] = STATE(599), - [sym_preproc_ifdef_in_compound_statement] = STATE(599), - [sym_preproc_else_in_compound_statement] = STATE(598), - [sym_preproc_elif_in_compound_statement] = STATE(598), - [sym_declaration] = STATE(599), - [sym_type_definition] = STATE(599), - [sym__declaration_specifiers] = STATE(593), - [sym_compound_statement] = STATE(599), - [sym_storage_class_specifier] = STATE(19), - [sym_type_qualifier] = STATE(19), - [sym__type_specifier] = STATE(17), - [sym_sized_type_specifier] = STATE(17), - [sym_enum_specifier] = STATE(17), - [sym_struct_specifier] = STATE(17), - [sym_union_specifier] = STATE(17), - [sym_labeled_statement] = STATE(599), - [sym_expression_statement] = STATE(599), - [sym_if_statement] = STATE(599), - [sym_switch_statement] = STATE(599), - [sym_case_statement] = STATE(599), - [sym_while_statement] = STATE(599), - [sym_do_statement] = STATE(599), - [sym_for_statement] = STATE(599), - [sym_return_statement] = STATE(599), - [sym_break_statement] = STATE(599), - [sym_continue_statement] = STATE(599), - [sym_goto_statement] = STATE(599), - [sym__expression] = STATE(594), - [sym_comma_expression] = STATE(595), - [sym_conditional_expression] = STATE(594), - [sym_assignment_expression] = STATE(594), - [sym_pointer_expression] = STATE(594), - [sym_logical_expression] = STATE(594), - [sym_bitwise_expression] = STATE(594), - [sym_equality_expression] = STATE(594), - [sym_relational_expression] = STATE(594), - [sym_shift_expression] = STATE(594), - [sym_math_expression] = STATE(594), - [sym_cast_expression] = STATE(594), - [sym_sizeof_expression] = STATE(594), - [sym_subscript_expression] = STATE(594), - [sym_call_expression] = STATE(594), - [sym_field_expression] = STATE(594), - [sym_compound_literal_expression] = STATE(594), - [sym_parenthesized_expression] = STATE(594), - [sym_char_literal] = STATE(594), - [sym_concatenated_string] = STATE(594), - [sym_string_literal] = STATE(230), - [sym__empty_declaration] = STATE(599), - [sym_macro_type_specifier] = STATE(17), - [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(599), - [aux_sym__declaration_specifiers_repeat1] = STATE(19), - [aux_sym_sized_type_specifier_repeat1] = STATE(20), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(127), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(129), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1385), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1425), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1389), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1389), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1391), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1393), - [sym_preproc_directive] = ACTIONS(141), - [anon_sym_SEMI] = ACTIONS(1395), - [anon_sym_typedef] = ACTIONS(143), - [anon_sym_extern] = ACTIONS(21), - [anon_sym_LBRACE] = ACTIONS(678), - [anon_sym_LPAREN2] = ACTIONS(507), - [anon_sym_STAR] = ACTIONS(509), - [anon_sym_static] = ACTIONS(21), - [anon_sym_auto] = ACTIONS(21), - [anon_sym_register] = ACTIONS(21), - [anon_sym_inline] = ACTIONS(21), - [anon_sym_const] = ACTIONS(23), - [anon_sym_restrict] = ACTIONS(23), - [anon_sym_volatile] = ACTIONS(23), - [anon_sym__Atomic] = ACTIONS(23), - [anon_sym_unsigned] = ACTIONS(25), - [anon_sym_long] = ACTIONS(25), - [anon_sym_short] = ACTIONS(25), - [sym_primitive_type] = ACTIONS(27), - [anon_sym_enum] = ACTIONS(29), - [anon_sym_struct] = ACTIONS(31), - [anon_sym_union] = ACTIONS(33), - [anon_sym_if] = ACTIONS(1397), - [anon_sym_switch] = ACTIONS(1399), - [anon_sym_case] = ACTIONS(1401), - [anon_sym_default] = ACTIONS(1403), - [anon_sym_while] = ACTIONS(1405), - [anon_sym_do] = ACTIONS(1407), - [anon_sym_for] = ACTIONS(1409), - [anon_sym_return] = ACTIONS(1411), - [anon_sym_break] = ACTIONS(1413), - [anon_sym_continue] = ACTIONS(1415), - [anon_sym_goto] = ACTIONS(1417), - [anon_sym_AMP] = ACTIONS(509), - [anon_sym_BANG] = ACTIONS(533), - [anon_sym_TILDE] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DASH] = ACTIONS(537), - [anon_sym_DASH_DASH] = ACTIONS(539), - [anon_sym_PLUS_PLUS] = ACTIONS(539), - [anon_sym_sizeof] = ACTIONS(541), - [sym_number_literal] = ACTIONS(1419), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(1421), - [sym_false] = ACTIONS(1421), - [sym_null] = ACTIONS(1421), - [sym_identifier] = ACTIONS(1423), - [sym_comment] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(1480), + [sym_comment] = ACTIONS(59), }, [364] = { - [sym_type_qualifier] = STATE(106), - [sym__type_specifier] = STATE(104), - [sym_sized_type_specifier] = STATE(104), - [sym_enum_specifier] = STATE(104), - [sym_struct_specifier] = STATE(104), - [sym_union_specifier] = STATE(104), - [sym__expression] = STATE(371), - [sym_comma_expression] = STATE(372), - [sym_conditional_expression] = STATE(371), - [sym_assignment_expression] = STATE(371), - [sym_pointer_expression] = STATE(371), - [sym_logical_expression] = STATE(371), - [sym_bitwise_expression] = STATE(371), - [sym_equality_expression] = STATE(371), - [sym_relational_expression] = STATE(371), - [sym_shift_expression] = STATE(371), - [sym_math_expression] = STATE(371), - [sym_cast_expression] = STATE(371), - [sym_type_descriptor] = STATE(600), - [sym_sizeof_expression] = STATE(371), - [sym_subscript_expression] = STATE(371), - [sym_call_expression] = STATE(371), - [sym_field_expression] = STATE(371), - [sym_compound_literal_expression] = STATE(371), - [sym_parenthesized_expression] = STATE(371), - [sym_char_literal] = STATE(371), - [sym_concatenated_string] = STATE(371), - [sym_string_literal] = STATE(374), - [sym_macro_type_specifier] = STATE(104), - [aux_sym_type_definition_repeat1] = STATE(106), - [aux_sym_sized_type_specifier_repeat1] = STATE(107), - [anon_sym_LPAREN2] = ACTIONS(892), - [anon_sym_STAR] = ACTIONS(894), - [anon_sym_const] = ACTIONS(23), - [anon_sym_restrict] = ACTIONS(23), - [anon_sym_volatile] = ACTIONS(23), - [anon_sym__Atomic] = ACTIONS(23), - [anon_sym_unsigned] = ACTIONS(211), - [anon_sym_long] = ACTIONS(211), - [anon_sym_short] = ACTIONS(211), - [sym_primitive_type] = ACTIONS(213), - [anon_sym_enum] = ACTIONS(29), - [anon_sym_struct] = ACTIONS(31), - [anon_sym_union] = ACTIONS(33), - [anon_sym_AMP] = ACTIONS(894), - [anon_sym_BANG] = ACTIONS(896), - [anon_sym_TILDE] = ACTIONS(898), - [anon_sym_PLUS] = ACTIONS(900), - [anon_sym_DASH] = ACTIONS(900), - [anon_sym_DASH_DASH] = ACTIONS(902), - [anon_sym_PLUS_PLUS] = ACTIONS(902), - [anon_sym_sizeof] = ACTIONS(904), - [sym_number_literal] = ACTIONS(906), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(908), - [sym_false] = ACTIONS(908), - [sym_null] = ACTIONS(908), - [sym_identifier] = ACTIONS(910), - [sym_comment] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(1482), + [sym_comment] = ACTIONS(59), }, [365] = { - [sym__expression] = STATE(375), - [sym_conditional_expression] = STATE(375), - [sym_assignment_expression] = STATE(375), - [sym_pointer_expression] = STATE(375), - [sym_logical_expression] = STATE(375), - [sym_bitwise_expression] = STATE(375), - [sym_equality_expression] = STATE(375), - [sym_relational_expression] = STATE(375), - [sym_shift_expression] = STATE(375), - [sym_math_expression] = STATE(375), - [sym_cast_expression] = STATE(375), - [sym_sizeof_expression] = STATE(375), - [sym_subscript_expression] = STATE(375), - [sym_call_expression] = STATE(375), - [sym_field_expression] = STATE(375), - [sym_compound_literal_expression] = STATE(375), - [sym_parenthesized_expression] = STATE(375), - [sym_char_literal] = STATE(375), - [sym_concatenated_string] = STATE(375), - [sym_string_literal] = STATE(374), - [anon_sym_LPAREN2] = ACTIONS(892), - [anon_sym_STAR] = ACTIONS(894), - [anon_sym_AMP] = ACTIONS(894), - [anon_sym_BANG] = ACTIONS(896), - [anon_sym_TILDE] = ACTIONS(898), - [anon_sym_PLUS] = ACTIONS(900), - [anon_sym_DASH] = ACTIONS(900), - [anon_sym_DASH_DASH] = ACTIONS(902), - [anon_sym_PLUS_PLUS] = ACTIONS(902), - [anon_sym_sizeof] = ACTIONS(904), - [sym_number_literal] = ACTIONS(912), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(914), - [sym_false] = ACTIONS(914), - [sym_null] = ACTIONS(914), - [sym_identifier] = ACTIONS(914), - [sym_comment] = ACTIONS(37), + [sym_identifier] = ACTIONS(1484), + [sym_comment] = ACTIONS(59), }, [366] = { - [sym__expression] = STATE(404), - [sym_conditional_expression] = STATE(404), - [sym_assignment_expression] = STATE(404), - [sym_pointer_expression] = STATE(404), - [sym_logical_expression] = STATE(404), - [sym_bitwise_expression] = STATE(404), - [sym_equality_expression] = STATE(404), - [sym_relational_expression] = STATE(404), - [sym_shift_expression] = STATE(404), - [sym_math_expression] = STATE(404), - [sym_cast_expression] = STATE(404), - [sym_sizeof_expression] = STATE(404), - [sym_subscript_expression] = STATE(404), - [sym_call_expression] = STATE(404), - [sym_field_expression] = STATE(404), - [sym_compound_literal_expression] = STATE(404), - [sym_parenthesized_expression] = STATE(404), - [sym_char_literal] = STATE(404), - [sym_concatenated_string] = STATE(404), + [sym__expression] = STATE(67), + [sym_conditional_expression] = STATE(67), + [sym_assignment_expression] = STATE(67), + [sym_pointer_expression] = STATE(67), + [sym_logical_expression] = STATE(67), + [sym_bitwise_expression] = STATE(67), + [sym_equality_expression] = STATE(67), + [sym_relational_expression] = STATE(67), + [sym_shift_expression] = STATE(67), + [sym_math_expression] = STATE(67), + [sym_cast_expression] = STATE(67), + [sym_sizeof_expression] = STATE(67), + [sym_subscript_expression] = STATE(67), + [sym_call_expression] = STATE(67), + [sym_field_expression] = STATE(67), + [sym_compound_literal_expression] = STATE(67), + [sym_parenthesized_expression] = STATE(67), + [sym_char_literal] = STATE(67), + [sym_concatenated_string] = STATE(67), [sym_string_literal] = STATE(374), - [anon_sym_LPAREN2] = ACTIONS(892), - [anon_sym_STAR] = ACTIONS(894), - [anon_sym_AMP] = ACTIONS(894), - [anon_sym_BANG] = ACTIONS(896), - [anon_sym_TILDE] = ACTIONS(898), - [anon_sym_PLUS] = ACTIONS(900), - [anon_sym_DASH] = ACTIONS(900), - [anon_sym_DASH_DASH] = ACTIONS(902), - [anon_sym_PLUS_PLUS] = ACTIONS(902), - [anon_sym_sizeof] = ACTIONS(904), - [sym_number_literal] = ACTIONS(968), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(970), - [sym_false] = ACTIONS(970), - [sym_null] = ACTIONS(970), - [sym_identifier] = ACTIONS(970), - [sym_comment] = ACTIONS(37), + [anon_sym_LPAREN2] = ACTIONS(936), + [anon_sym_STAR] = ACTIONS(938), + [anon_sym_AMP] = ACTIONS(938), + [anon_sym_BANG] = ACTIONS(962), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_DASH_DASH] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(968), + [anon_sym_sizeof] = ACTIONS(970), + [sym_number_literal] = ACTIONS(129), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(131), + [sym_false] = ACTIONS(131), + [sym_null] = ACTIONS(131), + [sym_identifier] = ACTIONS(131), + [sym_comment] = ACTIONS(59), }, [367] = { - [sym__expression] = STATE(405), - [sym_conditional_expression] = STATE(405), - [sym_assignment_expression] = STATE(405), - [sym_pointer_expression] = STATE(405), - [sym_logical_expression] = STATE(405), - [sym_bitwise_expression] = STATE(405), - [sym_equality_expression] = STATE(405), - [sym_relational_expression] = STATE(405), - [sym_shift_expression] = STATE(405), - [sym_math_expression] = STATE(405), - [sym_cast_expression] = STATE(405), - [sym_sizeof_expression] = STATE(405), - [sym_subscript_expression] = STATE(405), - [sym_call_expression] = STATE(405), - [sym_field_expression] = STATE(405), - [sym_compound_literal_expression] = STATE(405), - [sym_parenthesized_expression] = STATE(405), - [sym_char_literal] = STATE(405), - [sym_concatenated_string] = STATE(405), + [sym__expression] = STATE(68), + [sym_conditional_expression] = STATE(68), + [sym_assignment_expression] = STATE(68), + [sym_pointer_expression] = STATE(68), + [sym_logical_expression] = STATE(68), + [sym_bitwise_expression] = STATE(68), + [sym_equality_expression] = STATE(68), + [sym_relational_expression] = STATE(68), + [sym_shift_expression] = STATE(68), + [sym_math_expression] = STATE(68), + [sym_cast_expression] = STATE(68), + [sym_sizeof_expression] = STATE(68), + [sym_subscript_expression] = STATE(68), + [sym_call_expression] = STATE(68), + [sym_field_expression] = STATE(68), + [sym_compound_literal_expression] = STATE(68), + [sym_parenthesized_expression] = STATE(68), + [sym_char_literal] = STATE(68), + [sym_concatenated_string] = STATE(68), [sym_string_literal] = STATE(374), - [anon_sym_LPAREN2] = ACTIONS(892), - [anon_sym_STAR] = ACTIONS(894), - [anon_sym_AMP] = ACTIONS(894), - [anon_sym_BANG] = ACTIONS(896), - [anon_sym_TILDE] = ACTIONS(898), - [anon_sym_PLUS] = ACTIONS(900), - [anon_sym_DASH] = ACTIONS(900), - [anon_sym_DASH_DASH] = ACTIONS(902), - [anon_sym_PLUS_PLUS] = ACTIONS(902), - [anon_sym_sizeof] = ACTIONS(904), - [sym_number_literal] = ACTIONS(972), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(974), - [sym_false] = ACTIONS(974), - [sym_null] = ACTIONS(974), - [sym_identifier] = ACTIONS(974), - [sym_comment] = ACTIONS(37), + [anon_sym_LPAREN2] = ACTIONS(936), + [anon_sym_STAR] = ACTIONS(938), + [anon_sym_AMP] = ACTIONS(938), + [anon_sym_BANG] = ACTIONS(962), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_DASH_DASH] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(968), + [anon_sym_sizeof] = ACTIONS(970), + [sym_number_literal] = ACTIONS(133), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(135), + [sym_false] = ACTIONS(135), + [sym_null] = ACTIONS(135), + [sym_identifier] = ACTIONS(135), + [sym_comment] = ACTIONS(59), }, [368] = { - [sym__expression] = STATE(406), - [sym_conditional_expression] = STATE(406), - [sym_assignment_expression] = STATE(406), - [sym_pointer_expression] = STATE(406), - [sym_logical_expression] = STATE(406), - [sym_bitwise_expression] = STATE(406), - [sym_equality_expression] = STATE(406), - [sym_relational_expression] = STATE(406), - [sym_shift_expression] = STATE(406), - [sym_math_expression] = STATE(406), - [sym_cast_expression] = STATE(406), - [sym_sizeof_expression] = STATE(406), - [sym_subscript_expression] = STATE(406), - [sym_call_expression] = STATE(406), - [sym_field_expression] = STATE(406), - [sym_compound_literal_expression] = STATE(406), - [sym_parenthesized_expression] = STATE(406), - [sym_char_literal] = STATE(406), - [sym_concatenated_string] = STATE(406), + [sym__expression] = STATE(69), + [sym_conditional_expression] = STATE(69), + [sym_assignment_expression] = STATE(69), + [sym_pointer_expression] = STATE(69), + [sym_logical_expression] = STATE(69), + [sym_bitwise_expression] = STATE(69), + [sym_equality_expression] = STATE(69), + [sym_relational_expression] = STATE(69), + [sym_shift_expression] = STATE(69), + [sym_math_expression] = STATE(69), + [sym_cast_expression] = STATE(69), + [sym_sizeof_expression] = STATE(69), + [sym_subscript_expression] = STATE(69), + [sym_call_expression] = STATE(69), + [sym_field_expression] = STATE(69), + [sym_compound_literal_expression] = STATE(69), + [sym_parenthesized_expression] = STATE(69), + [sym_char_literal] = STATE(69), + [sym_concatenated_string] = STATE(69), [sym_string_literal] = STATE(374), - [anon_sym_LPAREN2] = ACTIONS(892), - [anon_sym_STAR] = ACTIONS(894), - [anon_sym_AMP] = ACTIONS(894), - [anon_sym_BANG] = ACTIONS(896), - [anon_sym_TILDE] = ACTIONS(898), - [anon_sym_PLUS] = ACTIONS(900), - [anon_sym_DASH] = ACTIONS(900), - [anon_sym_DASH_DASH] = ACTIONS(902), - [anon_sym_PLUS_PLUS] = ACTIONS(902), - [anon_sym_sizeof] = ACTIONS(904), - [sym_number_literal] = ACTIONS(976), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(978), - [sym_false] = ACTIONS(978), - [sym_null] = ACTIONS(978), - [sym_identifier] = ACTIONS(978), - [sym_comment] = ACTIONS(37), + [anon_sym_LPAREN2] = ACTIONS(936), + [anon_sym_STAR] = ACTIONS(938), + [anon_sym_AMP] = ACTIONS(938), + [anon_sym_BANG] = ACTIONS(962), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_DASH_DASH] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(968), + [anon_sym_sizeof] = ACTIONS(970), + [sym_number_literal] = ACTIONS(137), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(139), + [sym_false] = ACTIONS(139), + [sym_null] = ACTIONS(139), + [sym_identifier] = ACTIONS(139), + [sym_comment] = ACTIONS(59), }, [369] = { - [sym__expression] = STATE(602), - [sym_conditional_expression] = STATE(602), - [sym_assignment_expression] = STATE(602), - [sym_pointer_expression] = STATE(602), - [sym_logical_expression] = STATE(602), - [sym_bitwise_expression] = STATE(602), - [sym_equality_expression] = STATE(602), - [sym_relational_expression] = STATE(602), - [sym_shift_expression] = STATE(602), - [sym_math_expression] = STATE(602), - [sym_cast_expression] = STATE(602), - [sym_sizeof_expression] = STATE(602), - [sym_subscript_expression] = STATE(602), - [sym_call_expression] = STATE(602), - [sym_field_expression] = STATE(602), - [sym_compound_literal_expression] = STATE(602), - [sym_parenthesized_expression] = STATE(602), - [sym_char_literal] = STATE(602), - [sym_concatenated_string] = STATE(602), + [sym__expression] = STATE(569), + [sym_conditional_expression] = STATE(569), + [sym_assignment_expression] = STATE(569), + [sym_pointer_expression] = STATE(569), + [sym_logical_expression] = STATE(569), + [sym_bitwise_expression] = STATE(569), + [sym_equality_expression] = STATE(569), + [sym_relational_expression] = STATE(569), + [sym_shift_expression] = STATE(569), + [sym_math_expression] = STATE(569), + [sym_cast_expression] = STATE(569), + [sym_sizeof_expression] = STATE(569), + [sym_subscript_expression] = STATE(569), + [sym_call_expression] = STATE(569), + [sym_field_expression] = STATE(569), + [sym_compound_literal_expression] = STATE(569), + [sym_parenthesized_expression] = STATE(569), + [sym_char_literal] = STATE(569), + [sym_concatenated_string] = STATE(569), [sym_string_literal] = STATE(374), - [anon_sym_LPAREN2] = ACTIONS(1427), - [anon_sym_STAR] = ACTIONS(894), - [anon_sym_AMP] = ACTIONS(894), - [anon_sym_BANG] = ACTIONS(896), - [anon_sym_TILDE] = ACTIONS(898), - [anon_sym_PLUS] = ACTIONS(900), - [anon_sym_DASH] = ACTIONS(900), - [anon_sym_DASH_DASH] = ACTIONS(902), - [anon_sym_PLUS_PLUS] = ACTIONS(902), - [anon_sym_sizeof] = ACTIONS(904), - [sym_number_literal] = ACTIONS(1429), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(1431), - [sym_false] = ACTIONS(1431), - [sym_null] = ACTIONS(1431), - [sym_identifier] = ACTIONS(1431), - [sym_comment] = ACTIONS(37), + [anon_sym_LPAREN2] = ACTIONS(1486), + [anon_sym_STAR] = ACTIONS(938), + [anon_sym_AMP] = ACTIONS(938), + [anon_sym_BANG] = ACTIONS(962), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_DASH_DASH] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(968), + [anon_sym_sizeof] = ACTIONS(970), + [sym_number_literal] = ACTIONS(1488), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(1490), + [sym_false] = ACTIONS(1490), + [sym_null] = ACTIONS(1490), + [sym_identifier] = ACTIONS(1490), + [sym_comment] = ACTIONS(59), }, [370] = { - [anon_sym_COMMA] = ACTIONS(990), - [anon_sym_RPAREN] = ACTIONS(992), - [anon_sym_LPAREN2] = ACTIONS(995), - [anon_sym_STAR] = ACTIONS(999), - [anon_sym_LBRACK] = ACTIONS(992), - [anon_sym_EQ] = ACTIONS(1002), - [anon_sym_QMARK] = ACTIONS(990), - [anon_sym_STAR_EQ] = ACTIONS(990), - [anon_sym_SLASH_EQ] = ACTIONS(990), - [anon_sym_PERCENT_EQ] = ACTIONS(990), - [anon_sym_PLUS_EQ] = ACTIONS(990), - [anon_sym_DASH_EQ] = ACTIONS(990), - [anon_sym_LT_LT_EQ] = ACTIONS(990), - [anon_sym_GT_GT_EQ] = ACTIONS(990), - [anon_sym_AMP_EQ] = ACTIONS(990), - [anon_sym_CARET_EQ] = ACTIONS(990), - [anon_sym_PIPE_EQ] = ACTIONS(990), - [anon_sym_AMP] = ACTIONS(1002), - [anon_sym_PIPE_PIPE] = ACTIONS(990), - [anon_sym_AMP_AMP] = ACTIONS(990), - [anon_sym_PIPE] = ACTIONS(1002), - [anon_sym_CARET] = ACTIONS(1002), - [anon_sym_EQ_EQ] = ACTIONS(990), - [anon_sym_BANG_EQ] = ACTIONS(990), - [anon_sym_LT] = ACTIONS(1002), - [anon_sym_GT] = ACTIONS(1002), - [anon_sym_LT_EQ] = ACTIONS(990), - [anon_sym_GT_EQ] = ACTIONS(990), - [anon_sym_LT_LT] = ACTIONS(1002), - [anon_sym_GT_GT] = ACTIONS(1002), - [anon_sym_PLUS] = ACTIONS(1002), - [anon_sym_DASH] = ACTIONS(1002), - [anon_sym_SLASH] = ACTIONS(1002), - [anon_sym_PERCENT] = ACTIONS(1002), - [anon_sym_DASH_DASH] = ACTIONS(990), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_DOT] = ACTIONS(990), - [anon_sym_DASH_GT] = ACTIONS(990), - [sym_comment] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(304), + [anon_sym_COMMA] = ACTIONS(166), + [anon_sym_extern] = ACTIONS(157), + [anon_sym_LPAREN2] = ACTIONS(159), + [anon_sym_STAR] = ACTIONS(163), + [anon_sym_LBRACK] = ACTIONS(166), + [anon_sym_EQ] = ACTIONS(168), + [anon_sym_static] = ACTIONS(157), + [anon_sym_auto] = ACTIONS(157), + [anon_sym_register] = ACTIONS(157), + [anon_sym_inline] = ACTIONS(157), + [anon_sym_const] = ACTIONS(157), + [anon_sym_restrict] = ACTIONS(157), + [anon_sym_volatile] = ACTIONS(157), + [anon_sym__Atomic] = ACTIONS(157), + [anon_sym_COLON] = ACTIONS(1492), + [anon_sym_QMARK] = ACTIONS(166), + [anon_sym_STAR_EQ] = ACTIONS(166), + [anon_sym_SLASH_EQ] = ACTIONS(166), + [anon_sym_PERCENT_EQ] = ACTIONS(166), + [anon_sym_PLUS_EQ] = ACTIONS(166), + [anon_sym_DASH_EQ] = ACTIONS(166), + [anon_sym_LT_LT_EQ] = ACTIONS(166), + [anon_sym_GT_GT_EQ] = ACTIONS(166), + [anon_sym_AMP_EQ] = ACTIONS(166), + [anon_sym_CARET_EQ] = ACTIONS(166), + [anon_sym_PIPE_EQ] = ACTIONS(166), + [anon_sym_AMP] = ACTIONS(168), + [anon_sym_PIPE_PIPE] = ACTIONS(166), + [anon_sym_AMP_AMP] = ACTIONS(166), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_CARET] = ACTIONS(168), + [anon_sym_EQ_EQ] = ACTIONS(166), + [anon_sym_BANG_EQ] = ACTIONS(166), + [anon_sym_LT] = ACTIONS(168), + [anon_sym_GT] = ACTIONS(168), + [anon_sym_LT_EQ] = ACTIONS(166), + [anon_sym_GT_EQ] = ACTIONS(166), + [anon_sym_LT_LT] = ACTIONS(168), + [anon_sym_GT_GT] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(168), + [anon_sym_DASH] = ACTIONS(168), + [anon_sym_SLASH] = ACTIONS(168), + [anon_sym_PERCENT] = ACTIONS(168), + [anon_sym_DASH_DASH] = ACTIONS(166), + [anon_sym_PLUS_PLUS] = ACTIONS(166), + [anon_sym_DOT] = ACTIONS(166), + [anon_sym_DASH_GT] = ACTIONS(166), + [sym_identifier] = ACTIONS(157), + [sym_comment] = ACTIONS(59), }, [371] = { - [sym_argument_list] = STATE(430), - [anon_sym_COMMA] = ACTIONS(1433), - [anon_sym_RPAREN] = ACTIONS(1435), - [anon_sym_LPAREN2] = ACTIONS(1012), - [anon_sym_STAR] = ACTIONS(1437), - [anon_sym_LBRACK] = ACTIONS(1016), - [anon_sym_EQ] = ACTIONS(1439), - [anon_sym_QMARK] = ACTIONS(1441), - [anon_sym_STAR_EQ] = ACTIONS(1443), - [anon_sym_SLASH_EQ] = ACTIONS(1443), - [anon_sym_PERCENT_EQ] = ACTIONS(1443), - [anon_sym_PLUS_EQ] = ACTIONS(1443), - [anon_sym_DASH_EQ] = ACTIONS(1443), - [anon_sym_LT_LT_EQ] = ACTIONS(1443), - [anon_sym_GT_GT_EQ] = ACTIONS(1443), - [anon_sym_AMP_EQ] = ACTIONS(1443), - [anon_sym_CARET_EQ] = ACTIONS(1443), - [anon_sym_PIPE_EQ] = ACTIONS(1443), - [anon_sym_AMP] = ACTIONS(1445), - [anon_sym_PIPE_PIPE] = ACTIONS(1447), - [anon_sym_AMP_AMP] = ACTIONS(1449), - [anon_sym_PIPE] = ACTIONS(1451), - [anon_sym_CARET] = ACTIONS(1453), - [anon_sym_EQ_EQ] = ACTIONS(1455), - [anon_sym_BANG_EQ] = ACTIONS(1455), - [anon_sym_LT] = ACTIONS(1457), - [anon_sym_GT] = ACTIONS(1457), - [anon_sym_LT_EQ] = ACTIONS(1459), - [anon_sym_GT_EQ] = ACTIONS(1459), - [anon_sym_LT_LT] = ACTIONS(1461), - [anon_sym_GT_GT] = ACTIONS(1461), - [anon_sym_PLUS] = ACTIONS(1463), - [anon_sym_DASH] = ACTIONS(1463), - [anon_sym_SLASH] = ACTIONS(1437), - [anon_sym_PERCENT] = ACTIONS(1437), - [anon_sym_DASH_DASH] = ACTIONS(1044), - [anon_sym_PLUS_PLUS] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1046), - [anon_sym_DASH_GT] = ACTIONS(1046), - [sym_comment] = ACTIONS(37), + [sym__declarator] = STATE(571), + [sym_pointer_declarator] = STATE(571), + [sym_function_declarator] = STATE(571), + [sym_array_declarator] = STATE(571), + [sym_init_declarator] = STATE(80), + [anon_sym_SEMI] = ACTIONS(172), + [anon_sym_LPAREN2] = ACTIONS(174), + [anon_sym_STAR] = ACTIONS(924), + [sym_identifier] = ACTIONS(1494), + [sym_comment] = ACTIONS(59), }, [372] = { - [anon_sym_RPAREN] = ACTIONS(1435), - [sym_comment] = ACTIONS(37), + [sym_argument_list] = STATE(98), + [anon_sym_SEMI] = ACTIONS(1496), + [anon_sym_COMMA] = ACTIONS(1498), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(1500), + [anon_sym_LBRACK] = ACTIONS(188), + [anon_sym_EQ] = ACTIONS(1502), + [anon_sym_QMARK] = ACTIONS(1504), + [anon_sym_STAR_EQ] = ACTIONS(1506), + [anon_sym_SLASH_EQ] = ACTIONS(1506), + [anon_sym_PERCENT_EQ] = ACTIONS(1506), + [anon_sym_PLUS_EQ] = ACTIONS(1506), + [anon_sym_DASH_EQ] = ACTIONS(1506), + [anon_sym_LT_LT_EQ] = ACTIONS(1506), + [anon_sym_GT_GT_EQ] = ACTIONS(1506), + [anon_sym_AMP_EQ] = ACTIONS(1506), + [anon_sym_CARET_EQ] = ACTIONS(1506), + [anon_sym_PIPE_EQ] = ACTIONS(1506), + [anon_sym_AMP] = ACTIONS(1508), + [anon_sym_PIPE_PIPE] = ACTIONS(1510), + [anon_sym_AMP_AMP] = ACTIONS(1512), + [anon_sym_PIPE] = ACTIONS(1514), + [anon_sym_CARET] = ACTIONS(1516), + [anon_sym_EQ_EQ] = ACTIONS(1518), + [anon_sym_BANG_EQ] = ACTIONS(1518), + [anon_sym_LT] = ACTIONS(1520), + [anon_sym_GT] = ACTIONS(1520), + [anon_sym_LT_EQ] = ACTIONS(1522), + [anon_sym_GT_EQ] = ACTIONS(1522), + [anon_sym_LT_LT] = ACTIONS(1524), + [anon_sym_GT_GT] = ACTIONS(1524), + [anon_sym_PLUS] = ACTIONS(1526), + [anon_sym_DASH] = ACTIONS(1526), + [anon_sym_SLASH] = ACTIONS(1500), + [anon_sym_PERCENT] = ACTIONS(1500), + [anon_sym_DASH_DASH] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(216), + [anon_sym_DOT] = ACTIONS(218), + [anon_sym_DASH_GT] = ACTIONS(218), + [sym_comment] = ACTIONS(59), }, [373] = { - [anon_sym_RPAREN] = ACTIONS(1465), - [sym_comment] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(1496), + [sym_comment] = ACTIONS(59), }, [374] = { - [sym_string_literal] = STATE(618), - [aux_sym_concatenated_string_repeat1] = STATE(618), - [anon_sym_COMMA] = ACTIONS(990), - [anon_sym_RPAREN] = ACTIONS(990), - [anon_sym_LPAREN2] = ACTIONS(990), - [anon_sym_STAR] = ACTIONS(1002), - [anon_sym_LBRACK] = ACTIONS(990), - [anon_sym_EQ] = ACTIONS(1002), - [anon_sym_QMARK] = ACTIONS(990), - [anon_sym_STAR_EQ] = ACTIONS(990), - [anon_sym_SLASH_EQ] = ACTIONS(990), - [anon_sym_PERCENT_EQ] = ACTIONS(990), - [anon_sym_PLUS_EQ] = ACTIONS(990), - [anon_sym_DASH_EQ] = ACTIONS(990), - [anon_sym_LT_LT_EQ] = ACTIONS(990), - [anon_sym_GT_GT_EQ] = ACTIONS(990), - [anon_sym_AMP_EQ] = ACTIONS(990), - [anon_sym_CARET_EQ] = ACTIONS(990), - [anon_sym_PIPE_EQ] = ACTIONS(990), - [anon_sym_AMP] = ACTIONS(1002), - [anon_sym_PIPE_PIPE] = ACTIONS(990), - [anon_sym_AMP_AMP] = ACTIONS(990), - [anon_sym_PIPE] = ACTIONS(1002), - [anon_sym_CARET] = ACTIONS(1002), - [anon_sym_EQ_EQ] = ACTIONS(990), - [anon_sym_BANG_EQ] = ACTIONS(990), - [anon_sym_LT] = ACTIONS(1002), - [anon_sym_GT] = ACTIONS(1002), - [anon_sym_LT_EQ] = ACTIONS(990), - [anon_sym_GT_EQ] = ACTIONS(990), - [anon_sym_LT_LT] = ACTIONS(1002), - [anon_sym_GT_GT] = ACTIONS(1002), - [anon_sym_PLUS] = ACTIONS(1002), - [anon_sym_DASH] = ACTIONS(1002), - [anon_sym_SLASH] = ACTIONS(1002), - [anon_sym_PERCENT] = ACTIONS(1002), - [anon_sym_DASH_DASH] = ACTIONS(990), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_DOT] = ACTIONS(990), - [anon_sym_DASH_GT] = ACTIONS(990), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_comment] = ACTIONS(37), + [sym_string_literal] = STATE(586), + [aux_sym_concatenated_string_repeat1] = STATE(586), + [anon_sym_SEMI] = ACTIONS(166), + [anon_sym_COMMA] = ACTIONS(166), + [anon_sym_LPAREN2] = ACTIONS(166), + [anon_sym_STAR] = ACTIONS(168), + [anon_sym_LBRACK] = ACTIONS(166), + [anon_sym_EQ] = ACTIONS(168), + [anon_sym_QMARK] = ACTIONS(166), + [anon_sym_STAR_EQ] = ACTIONS(166), + [anon_sym_SLASH_EQ] = ACTIONS(166), + [anon_sym_PERCENT_EQ] = ACTIONS(166), + [anon_sym_PLUS_EQ] = ACTIONS(166), + [anon_sym_DASH_EQ] = ACTIONS(166), + [anon_sym_LT_LT_EQ] = ACTIONS(166), + [anon_sym_GT_GT_EQ] = ACTIONS(166), + [anon_sym_AMP_EQ] = ACTIONS(166), + [anon_sym_CARET_EQ] = ACTIONS(166), + [anon_sym_PIPE_EQ] = ACTIONS(166), + [anon_sym_AMP] = ACTIONS(168), + [anon_sym_PIPE_PIPE] = ACTIONS(166), + [anon_sym_AMP_AMP] = ACTIONS(166), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_CARET] = ACTIONS(168), + [anon_sym_EQ_EQ] = ACTIONS(166), + [anon_sym_BANG_EQ] = ACTIONS(166), + [anon_sym_LT] = ACTIONS(168), + [anon_sym_GT] = ACTIONS(168), + [anon_sym_LT_EQ] = ACTIONS(166), + [anon_sym_GT_EQ] = ACTIONS(166), + [anon_sym_LT_LT] = ACTIONS(168), + [anon_sym_GT_GT] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(168), + [anon_sym_DASH] = ACTIONS(168), + [anon_sym_SLASH] = ACTIONS(168), + [anon_sym_PERCENT] = ACTIONS(168), + [anon_sym_DASH_DASH] = ACTIONS(166), + [anon_sym_PLUS_PLUS] = ACTIONS(166), + [anon_sym_DOT] = ACTIONS(166), + [anon_sym_DASH_GT] = ACTIONS(166), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_comment] = ACTIONS(59), }, [375] = { - [sym_argument_list] = STATE(430), - [anon_sym_COMMA] = ACTIONS(1467), - [anon_sym_RPAREN] = ACTIONS(1467), - [anon_sym_SEMI] = ACTIONS(1467), - [anon_sym_RBRACE] = ACTIONS(1467), - [anon_sym_LPAREN2] = ACTIONS(1012), - [anon_sym_STAR] = ACTIONS(1469), - [anon_sym_LBRACK] = ACTIONS(1016), - [anon_sym_RBRACK] = ACTIONS(1467), - [anon_sym_EQ] = ACTIONS(1469), - [anon_sym_COLON] = ACTIONS(1467), - [anon_sym_QMARK] = ACTIONS(1467), - [anon_sym_STAR_EQ] = ACTIONS(1467), - [anon_sym_SLASH_EQ] = ACTIONS(1467), - [anon_sym_PERCENT_EQ] = ACTIONS(1467), - [anon_sym_PLUS_EQ] = ACTIONS(1467), - [anon_sym_DASH_EQ] = ACTIONS(1467), - [anon_sym_LT_LT_EQ] = ACTIONS(1467), - [anon_sym_GT_GT_EQ] = ACTIONS(1467), - [anon_sym_AMP_EQ] = ACTIONS(1467), - [anon_sym_CARET_EQ] = ACTIONS(1467), - [anon_sym_PIPE_EQ] = ACTIONS(1467), - [anon_sym_AMP] = ACTIONS(1469), - [anon_sym_PIPE_PIPE] = ACTIONS(1467), - [anon_sym_AMP_AMP] = ACTIONS(1467), - [anon_sym_PIPE] = ACTIONS(1469), - [anon_sym_CARET] = ACTIONS(1469), - [anon_sym_EQ_EQ] = ACTIONS(1467), - [anon_sym_BANG_EQ] = ACTIONS(1467), - [anon_sym_LT] = ACTIONS(1469), - [anon_sym_GT] = ACTIONS(1469), - [anon_sym_LT_EQ] = ACTIONS(1467), - [anon_sym_GT_EQ] = ACTIONS(1467), - [anon_sym_LT_LT] = ACTIONS(1469), - [anon_sym_GT_GT] = ACTIONS(1469), - [anon_sym_PLUS] = ACTIONS(1469), - [anon_sym_DASH] = ACTIONS(1469), - [anon_sym_SLASH] = ACTIONS(1469), - [anon_sym_PERCENT] = ACTIONS(1469), - [anon_sym_DASH_DASH] = ACTIONS(1467), - [anon_sym_PLUS_PLUS] = ACTIONS(1467), - [anon_sym_DOT] = ACTIONS(1046), - [anon_sym_DASH_GT] = ACTIONS(1046), - [sym_comment] = ACTIONS(37), + [sym_preproc_include] = STATE(588), + [sym_preproc_def] = STATE(588), + [sym_preproc_function_def] = STATE(588), + [sym_preproc_call] = STATE(588), + [sym_preproc_if_in_compound_statement] = STATE(588), + [sym_preproc_ifdef_in_compound_statement] = STATE(588), + [sym_declaration] = STATE(588), + [sym_type_definition] = STATE(588), + [sym__declaration_specifiers] = STATE(371), + [sym_compound_statement] = STATE(588), + [sym_storage_class_specifier] = STATE(30), + [sym_type_qualifier] = STATE(30), + [sym__type_specifier] = STATE(25), + [sym_sized_type_specifier] = STATE(25), + [sym_enum_specifier] = STATE(25), + [sym_struct_specifier] = STATE(25), + [sym_union_specifier] = STATE(25), + [sym_labeled_statement] = STATE(588), + [sym_expression_statement] = STATE(588), + [sym_if_statement] = STATE(588), + [sym_switch_statement] = STATE(588), + [sym_case_statement] = STATE(588), + [sym_while_statement] = STATE(588), + [sym_do_statement] = STATE(588), + [sym_for_statement] = STATE(588), + [sym_return_statement] = STATE(588), + [sym_break_statement] = STATE(588), + [sym_continue_statement] = STATE(588), + [sym_goto_statement] = STATE(588), + [sym__expression] = STATE(372), + [sym_comma_expression] = STATE(373), + [sym_conditional_expression] = STATE(372), + [sym_assignment_expression] = STATE(372), + [sym_pointer_expression] = STATE(372), + [sym_logical_expression] = STATE(372), + [sym_bitwise_expression] = STATE(372), + [sym_equality_expression] = STATE(372), + [sym_relational_expression] = STATE(372), + [sym_shift_expression] = STATE(372), + [sym_math_expression] = STATE(372), + [sym_cast_expression] = STATE(372), + [sym_sizeof_expression] = STATE(372), + [sym_subscript_expression] = STATE(372), + [sym_call_expression] = STATE(372), + [sym_field_expression] = STATE(372), + [sym_compound_literal_expression] = STATE(372), + [sym_parenthesized_expression] = STATE(372), + [sym_char_literal] = STATE(372), + [sym_concatenated_string] = STATE(372), + [sym_string_literal] = STATE(374), + [sym__empty_declaration] = STATE(588), + [sym_macro_type_specifier] = STATE(25), + [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(588), + [aux_sym__declaration_specifiers_repeat1] = STATE(30), + [aux_sym_sized_type_specifier_repeat1] = STATE(31), + [anon_sym_SEMI] = ACTIONS(928), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(7), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(9), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(930), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(932), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(932), + [sym_preproc_directive] = ACTIONS(15), + [anon_sym_typedef] = ACTIONS(17), + [anon_sym_extern] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(439), + [anon_sym_RBRACE] = ACTIONS(1528), + [anon_sym_LPAREN2] = ACTIONS(936), + [anon_sym_STAR] = ACTIONS(938), + [anon_sym_static] = ACTIONS(25), + [anon_sym_auto] = ACTIONS(25), + [anon_sym_register] = ACTIONS(25), + [anon_sym_inline] = ACTIONS(25), + [anon_sym_const] = ACTIONS(27), + [anon_sym_restrict] = ACTIONS(27), + [anon_sym_volatile] = ACTIONS(27), + [anon_sym__Atomic] = ACTIONS(27), + [anon_sym_unsigned] = ACTIONS(29), + [anon_sym_long] = ACTIONS(29), + [anon_sym_short] = ACTIONS(29), + [sym_primitive_type] = ACTIONS(31), + [anon_sym_enum] = ACTIONS(33), + [anon_sym_struct] = ACTIONS(35), + [anon_sym_union] = ACTIONS(37), + [anon_sym_if] = ACTIONS(940), + [anon_sym_switch] = ACTIONS(942), + [anon_sym_case] = ACTIONS(944), + [anon_sym_default] = ACTIONS(946), + [anon_sym_while] = ACTIONS(948), + [anon_sym_do] = ACTIONS(950), + [anon_sym_for] = ACTIONS(952), + [anon_sym_return] = ACTIONS(954), + [anon_sym_break] = ACTIONS(956), + [anon_sym_continue] = ACTIONS(958), + [anon_sym_goto] = ACTIONS(960), + [anon_sym_AMP] = ACTIONS(938), + [anon_sym_BANG] = ACTIONS(962), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_DASH_DASH] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(968), + [anon_sym_sizeof] = ACTIONS(970), + [sym_number_literal] = ACTIONS(972), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(974), + [sym_false] = ACTIONS(974), + [sym_null] = ACTIONS(974), + [sym_identifier] = ACTIONS(976), + [sym_comment] = ACTIONS(59), }, [376] = { - [sym__expression] = STATE(619), - [sym_comma_expression] = STATE(620), - [sym_conditional_expression] = STATE(619), - [sym_assignment_expression] = STATE(619), - [sym_pointer_expression] = STATE(619), - [sym_logical_expression] = STATE(619), - [sym_bitwise_expression] = STATE(619), - [sym_equality_expression] = STATE(619), - [sym_relational_expression] = STATE(619), - [sym_shift_expression] = STATE(619), - [sym_math_expression] = STATE(619), - [sym_cast_expression] = STATE(619), - [sym_sizeof_expression] = STATE(619), - [sym_subscript_expression] = STATE(619), - [sym_call_expression] = STATE(619), - [sym_field_expression] = STATE(619), - [sym_compound_literal_expression] = STATE(619), - [sym_parenthesized_expression] = STATE(619), - [sym_char_literal] = STATE(619), - [sym_concatenated_string] = STATE(619), - [sym_string_literal] = STATE(374), - [anon_sym_LPAREN2] = ACTIONS(892), - [anon_sym_STAR] = ACTIONS(894), - [anon_sym_AMP] = ACTIONS(894), - [anon_sym_BANG] = ACTIONS(896), - [anon_sym_TILDE] = ACTIONS(898), - [anon_sym_PLUS] = ACTIONS(900), - [anon_sym_DASH] = ACTIONS(900), - [anon_sym_DASH_DASH] = ACTIONS(902), - [anon_sym_PLUS_PLUS] = ACTIONS(902), - [anon_sym_sizeof] = ACTIONS(904), - [sym_number_literal] = ACTIONS(1471), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(1473), - [sym_false] = ACTIONS(1473), - [sym_null] = ACTIONS(1473), - [sym_identifier] = ACTIONS(1473), - [sym_comment] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(1530), + [anon_sym_COMMA] = ACTIONS(1530), + [anon_sym_RPAREN] = ACTIONS(1530), + [anon_sym_LBRACE] = ACTIONS(1530), + [anon_sym_LPAREN2] = ACTIONS(1530), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_EQ] = ACTIONS(1530), + [sym_comment] = ACTIONS(59), }, [377] = { - [sym_compound_statement] = STATE(628), - [sym_labeled_statement] = STATE(628), - [sym_expression_statement] = STATE(628), - [sym_if_statement] = STATE(628), - [sym_switch_statement] = STATE(628), - [sym_case_statement] = STATE(628), - [sym_while_statement] = STATE(628), - [sym_do_statement] = STATE(628), - [sym_for_statement] = STATE(628), - [sym_return_statement] = STATE(628), - [sym_break_statement] = STATE(628), - [sym_continue_statement] = STATE(628), - [sym_goto_statement] = STATE(628), - [sym__expression] = STATE(228), - [sym_comma_expression] = STATE(229), - [sym_conditional_expression] = STATE(228), - [sym_assignment_expression] = STATE(228), - [sym_pointer_expression] = STATE(228), - [sym_logical_expression] = STATE(228), - [sym_bitwise_expression] = STATE(228), - [sym_equality_expression] = STATE(228), - [sym_relational_expression] = STATE(228), - [sym_shift_expression] = STATE(228), - [sym_math_expression] = STATE(228), - [sym_cast_expression] = STATE(228), - [sym_sizeof_expression] = STATE(228), - [sym_subscript_expression] = STATE(228), - [sym_call_expression] = STATE(228), - [sym_field_expression] = STATE(228), - [sym_compound_literal_expression] = STATE(228), - [sym_parenthesized_expression] = STATE(228), - [sym_char_literal] = STATE(228), - [sym_concatenated_string] = STATE(228), - [sym_string_literal] = STATE(230), - [anon_sym_SEMI] = ACTIONS(503), - [anon_sym_LBRACE] = ACTIONS(229), - [anon_sym_LPAREN2] = ACTIONS(507), - [anon_sym_STAR] = ACTIONS(509), - [anon_sym_if] = ACTIONS(1475), - [anon_sym_switch] = ACTIONS(1477), - [anon_sym_case] = ACTIONS(1479), - [anon_sym_default] = ACTIONS(1481), - [anon_sym_while] = ACTIONS(1483), - [anon_sym_do] = ACTIONS(521), - [anon_sym_for] = ACTIONS(1485), - [anon_sym_return] = ACTIONS(525), - [anon_sym_break] = ACTIONS(527), - [anon_sym_continue] = ACTIONS(529), - [anon_sym_goto] = ACTIONS(531), - [anon_sym_AMP] = ACTIONS(509), - [anon_sym_BANG] = ACTIONS(533), - [anon_sym_TILDE] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DASH] = ACTIONS(537), - [anon_sym_DASH_DASH] = ACTIONS(539), - [anon_sym_PLUS_PLUS] = ACTIONS(539), - [anon_sym_sizeof] = ACTIONS(541), - [sym_number_literal] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(547), - [sym_false] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [sym_identifier] = ACTIONS(1487), - [sym_comment] = ACTIONS(37), + [sym__expression] = STATE(590), + [sym_conditional_expression] = STATE(590), + [sym_assignment_expression] = STATE(590), + [sym_pointer_expression] = STATE(590), + [sym_logical_expression] = STATE(590), + [sym_bitwise_expression] = STATE(590), + [sym_equality_expression] = STATE(590), + [sym_relational_expression] = STATE(590), + [sym_shift_expression] = STATE(590), + [sym_math_expression] = STATE(590), + [sym_cast_expression] = STATE(590), + [sym_sizeof_expression] = STATE(590), + [sym_subscript_expression] = STATE(590), + [sym_call_expression] = STATE(590), + [sym_field_expression] = STATE(590), + [sym_compound_literal_expression] = STATE(590), + [sym_parenthesized_expression] = STATE(590), + [sym_char_literal] = STATE(590), + [sym_concatenated_string] = STATE(590), + [sym_string_literal] = STATE(214), + [anon_sym_LPAREN2] = ACTIONS(461), + [anon_sym_STAR] = ACTIONS(463), + [anon_sym_RBRACK] = ACTIONS(1532), + [anon_sym_AMP] = ACTIONS(463), + [anon_sym_BANG] = ACTIONS(465), + [anon_sym_TILDE] = ACTIONS(467), + [anon_sym_PLUS] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(469), + [anon_sym_DASH_DASH] = ACTIONS(471), + [anon_sym_PLUS_PLUS] = ACTIONS(471), + [anon_sym_sizeof] = ACTIONS(473), + [sym_number_literal] = ACTIONS(1534), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(1536), + [sym_false] = ACTIONS(1536), + [sym_null] = ACTIONS(1536), + [sym_identifier] = ACTIONS(1536), + [sym_comment] = ACTIONS(59), }, [378] = { - [sym_compound_statement] = STATE(630), - [sym_labeled_statement] = STATE(630), - [sym_expression_statement] = STATE(630), - [sym_if_statement] = STATE(630), - [sym_switch_statement] = STATE(630), - [sym_case_statement] = STATE(630), - [sym_while_statement] = STATE(630), - [sym_do_statement] = STATE(630), - [sym_for_statement] = STATE(630), - [sym_return_statement] = STATE(630), - [sym_break_statement] = STATE(630), - [sym_continue_statement] = STATE(630), - [sym_goto_statement] = STATE(630), - [sym__expression] = STATE(228), - [sym_comma_expression] = STATE(229), - [sym_conditional_expression] = STATE(228), - [sym_assignment_expression] = STATE(228), - [sym_pointer_expression] = STATE(228), - [sym_logical_expression] = STATE(228), - [sym_bitwise_expression] = STATE(228), - [sym_equality_expression] = STATE(228), - [sym_relational_expression] = STATE(228), - [sym_shift_expression] = STATE(228), - [sym_math_expression] = STATE(228), - [sym_cast_expression] = STATE(228), - [sym_sizeof_expression] = STATE(228), - [sym_subscript_expression] = STATE(228), - [sym_call_expression] = STATE(228), - [sym_field_expression] = STATE(228), - [sym_compound_literal_expression] = STATE(228), - [sym_parenthesized_expression] = STATE(228), - [sym_char_literal] = STATE(228), - [sym_concatenated_string] = STATE(228), - [sym_string_literal] = STATE(230), - [anon_sym_SEMI] = ACTIONS(503), - [anon_sym_LBRACE] = ACTIONS(229), - [anon_sym_LPAREN2] = ACTIONS(507), - [anon_sym_STAR] = ACTIONS(509), - [anon_sym_if] = ACTIONS(511), - [anon_sym_switch] = ACTIONS(513), - [anon_sym_case] = ACTIONS(515), - [anon_sym_default] = ACTIONS(517), - [anon_sym_while] = ACTIONS(519), - [anon_sym_do] = ACTIONS(521), - [anon_sym_for] = ACTIONS(523), - [anon_sym_return] = ACTIONS(525), - [anon_sym_break] = ACTIONS(527), - [anon_sym_continue] = ACTIONS(529), - [anon_sym_goto] = ACTIONS(531), - [anon_sym_AMP] = ACTIONS(509), - [anon_sym_BANG] = ACTIONS(533), - [anon_sym_TILDE] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DASH] = ACTIONS(537), - [anon_sym_DASH_DASH] = ACTIONS(539), - [anon_sym_PLUS_PLUS] = ACTIONS(539), - [anon_sym_sizeof] = ACTIONS(541), - [sym_number_literal] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(547), - [sym_false] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [sym_identifier] = ACTIONS(1489), - [sym_comment] = ACTIONS(37), + [sym_argument_list] = STATE(98), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(1016), + [anon_sym_LBRACK] = ACTIONS(188), + [anon_sym_RBRACK] = ACTIONS(1532), + [anon_sym_EQ] = ACTIONS(1020), + [anon_sym_QMARK] = ACTIONS(1022), + [anon_sym_STAR_EQ] = ACTIONS(1024), + [anon_sym_SLASH_EQ] = ACTIONS(1024), + [anon_sym_PERCENT_EQ] = ACTIONS(1024), + [anon_sym_PLUS_EQ] = ACTIONS(1024), + [anon_sym_DASH_EQ] = ACTIONS(1024), + [anon_sym_LT_LT_EQ] = ACTIONS(1024), + [anon_sym_GT_GT_EQ] = ACTIONS(1024), + [anon_sym_AMP_EQ] = ACTIONS(1024), + [anon_sym_CARET_EQ] = ACTIONS(1024), + [anon_sym_PIPE_EQ] = ACTIONS(1024), + [anon_sym_AMP] = ACTIONS(1026), + [anon_sym_PIPE_PIPE] = ACTIONS(1028), + [anon_sym_AMP_AMP] = ACTIONS(1030), + [anon_sym_PIPE] = ACTIONS(1032), + [anon_sym_CARET] = ACTIONS(1034), + [anon_sym_EQ_EQ] = ACTIONS(1036), + [anon_sym_BANG_EQ] = ACTIONS(1036), + [anon_sym_LT] = ACTIONS(1038), + [anon_sym_GT] = ACTIONS(1038), + [anon_sym_LT_EQ] = ACTIONS(1040), + [anon_sym_GT_EQ] = ACTIONS(1040), + [anon_sym_LT_LT] = ACTIONS(1042), + [anon_sym_GT_GT] = ACTIONS(1042), + [anon_sym_PLUS] = ACTIONS(1044), + [anon_sym_DASH] = ACTIONS(1044), + [anon_sym_SLASH] = ACTIONS(1016), + [anon_sym_PERCENT] = ACTIONS(1016), + [anon_sym_DASH_DASH] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(216), + [anon_sym_DOT] = ACTIONS(218), + [anon_sym_DASH_GT] = ACTIONS(218), + [sym_comment] = ACTIONS(59), }, [379] = { - [sym_type_qualifier] = STATE(106), - [sym__type_specifier] = STATE(104), - [sym_sized_type_specifier] = STATE(104), - [sym_enum_specifier] = STATE(104), - [sym_struct_specifier] = STATE(104), - [sym_union_specifier] = STATE(104), - [sym__expression] = STATE(371), - [sym_comma_expression] = STATE(372), - [sym_conditional_expression] = STATE(371), - [sym_assignment_expression] = STATE(371), - [sym_pointer_expression] = STATE(371), - [sym_logical_expression] = STATE(371), - [sym_bitwise_expression] = STATE(371), - [sym_equality_expression] = STATE(371), - [sym_relational_expression] = STATE(371), - [sym_shift_expression] = STATE(371), - [sym_math_expression] = STATE(371), - [sym_cast_expression] = STATE(371), - [sym_type_descriptor] = STATE(631), - [sym_sizeof_expression] = STATE(371), - [sym_subscript_expression] = STATE(371), - [sym_call_expression] = STATE(371), - [sym_field_expression] = STATE(371), - [sym_compound_literal_expression] = STATE(371), - [sym_parenthesized_expression] = STATE(371), - [sym_char_literal] = STATE(371), - [sym_concatenated_string] = STATE(371), - [sym_string_literal] = STATE(374), - [sym_macro_type_specifier] = STATE(104), - [aux_sym_type_definition_repeat1] = STATE(106), - [aux_sym_sized_type_specifier_repeat1] = STATE(107), - [anon_sym_LPAREN2] = ACTIONS(892), - [anon_sym_STAR] = ACTIONS(894), - [anon_sym_const] = ACTIONS(23), - [anon_sym_restrict] = ACTIONS(23), - [anon_sym_volatile] = ACTIONS(23), - [anon_sym__Atomic] = ACTIONS(23), - [anon_sym_unsigned] = ACTIONS(211), - [anon_sym_long] = ACTIONS(211), - [anon_sym_short] = ACTIONS(211), - [sym_primitive_type] = ACTIONS(213), - [anon_sym_enum] = ACTIONS(29), - [anon_sym_struct] = ACTIONS(31), - [anon_sym_union] = ACTIONS(33), - [anon_sym_AMP] = ACTIONS(894), - [anon_sym_BANG] = ACTIONS(896), - [anon_sym_TILDE] = ACTIONS(898), - [anon_sym_PLUS] = ACTIONS(900), - [anon_sym_DASH] = ACTIONS(900), - [anon_sym_DASH_DASH] = ACTIONS(902), - [anon_sym_PLUS_PLUS] = ACTIONS(902), - [anon_sym_sizeof] = ACTIONS(904), - [sym_number_literal] = ACTIONS(906), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(908), - [sym_false] = ACTIONS(908), - [sym_null] = ACTIONS(908), - [sym_identifier] = ACTIONS(910), - [sym_comment] = ACTIONS(37), + [sym_argument_list] = STATE(98), + [anon_sym_SEMI] = ACTIONS(1538), + [anon_sym_COMMA] = ACTIONS(1538), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(1500), + [anon_sym_LBRACK] = ACTIONS(188), + [anon_sym_EQ] = ACTIONS(1502), + [anon_sym_QMARK] = ACTIONS(1504), + [anon_sym_STAR_EQ] = ACTIONS(1506), + [anon_sym_SLASH_EQ] = ACTIONS(1506), + [anon_sym_PERCENT_EQ] = ACTIONS(1506), + [anon_sym_PLUS_EQ] = ACTIONS(1506), + [anon_sym_DASH_EQ] = ACTIONS(1506), + [anon_sym_LT_LT_EQ] = ACTIONS(1506), + [anon_sym_GT_GT_EQ] = ACTIONS(1506), + [anon_sym_AMP_EQ] = ACTIONS(1506), + [anon_sym_CARET_EQ] = ACTIONS(1506), + [anon_sym_PIPE_EQ] = ACTIONS(1506), + [anon_sym_AMP] = ACTIONS(1508), + [anon_sym_PIPE_PIPE] = ACTIONS(1510), + [anon_sym_AMP_AMP] = ACTIONS(1512), + [anon_sym_PIPE] = ACTIONS(1514), + [anon_sym_CARET] = ACTIONS(1516), + [anon_sym_EQ_EQ] = ACTIONS(1518), + [anon_sym_BANG_EQ] = ACTIONS(1518), + [anon_sym_LT] = ACTIONS(1520), + [anon_sym_GT] = ACTIONS(1520), + [anon_sym_LT_EQ] = ACTIONS(1522), + [anon_sym_GT_EQ] = ACTIONS(1522), + [anon_sym_LT_LT] = ACTIONS(1524), + [anon_sym_GT_GT] = ACTIONS(1524), + [anon_sym_PLUS] = ACTIONS(1526), + [anon_sym_DASH] = ACTIONS(1526), + [anon_sym_SLASH] = ACTIONS(1500), + [anon_sym_PERCENT] = ACTIONS(1500), + [anon_sym_DASH_DASH] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(216), + [anon_sym_DOT] = ACTIONS(218), + [anon_sym_DASH_GT] = ACTIONS(218), + [sym_comment] = ACTIONS(59), }, [380] = { - [sym__expression] = STATE(375), - [sym_conditional_expression] = STATE(375), - [sym_assignment_expression] = STATE(375), - [sym_pointer_expression] = STATE(375), - [sym_logical_expression] = STATE(375), - [sym_bitwise_expression] = STATE(375), - [sym_equality_expression] = STATE(375), - [sym_relational_expression] = STATE(375), - [sym_shift_expression] = STATE(375), - [sym_math_expression] = STATE(375), - [sym_cast_expression] = STATE(375), - [sym_sizeof_expression] = STATE(375), - [sym_subscript_expression] = STATE(375), - [sym_call_expression] = STATE(375), - [sym_field_expression] = STATE(375), - [sym_compound_literal_expression] = STATE(375), - [sym_parenthesized_expression] = STATE(375), - [sym_char_literal] = STATE(375), - [sym_concatenated_string] = STATE(375), - [sym_string_literal] = STATE(386), - [anon_sym_LPAREN2] = ACTIONS(918), - [anon_sym_STAR] = ACTIONS(920), - [anon_sym_AMP] = ACTIONS(920), - [anon_sym_BANG] = ACTIONS(922), - [anon_sym_TILDE] = ACTIONS(924), - [anon_sym_PLUS] = ACTIONS(926), - [anon_sym_DASH] = ACTIONS(926), - [anon_sym_DASH_DASH] = ACTIONS(928), - [anon_sym_PLUS_PLUS] = ACTIONS(928), - [anon_sym_sizeof] = ACTIONS(930), - [sym_number_literal] = ACTIONS(912), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(914), - [sym_false] = ACTIONS(914), - [sym_null] = ACTIONS(914), - [sym_identifier] = ACTIONS(914), - [sym_comment] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(1538), + [anon_sym_COMMA] = ACTIONS(1538), + [sym_comment] = ACTIONS(59), }, [381] = { - [sym__expression] = STATE(404), - [sym_conditional_expression] = STATE(404), - [sym_assignment_expression] = STATE(404), - [sym_pointer_expression] = STATE(404), - [sym_logical_expression] = STATE(404), - [sym_bitwise_expression] = STATE(404), - [sym_equality_expression] = STATE(404), - [sym_relational_expression] = STATE(404), - [sym_shift_expression] = STATE(404), - [sym_math_expression] = STATE(404), - [sym_cast_expression] = STATE(404), - [sym_sizeof_expression] = STATE(404), - [sym_subscript_expression] = STATE(404), - [sym_call_expression] = STATE(404), - [sym_field_expression] = STATE(404), - [sym_compound_literal_expression] = STATE(404), - [sym_parenthesized_expression] = STATE(404), - [sym_char_literal] = STATE(404), - [sym_concatenated_string] = STATE(404), - [sym_string_literal] = STATE(386), - [anon_sym_LPAREN2] = ACTIONS(918), - [anon_sym_STAR] = ACTIONS(920), - [anon_sym_AMP] = ACTIONS(920), - [anon_sym_BANG] = ACTIONS(922), - [anon_sym_TILDE] = ACTIONS(924), - [anon_sym_PLUS] = ACTIONS(926), - [anon_sym_DASH] = ACTIONS(926), - [anon_sym_DASH_DASH] = ACTIONS(928), - [anon_sym_PLUS_PLUS] = ACTIONS(928), - [anon_sym_sizeof] = ACTIONS(930), - [sym_number_literal] = ACTIONS(968), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(970), - [sym_false] = ACTIONS(970), - [sym_null] = ACTIONS(970), - [sym_identifier] = ACTIONS(970), - [sym_comment] = ACTIONS(37), + [ts_builtin_sym_end] = ACTIONS(1540), + [anon_sym_SEMI] = ACTIONS(1540), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1542), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1542), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1542), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1542), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1542), + [sym_preproc_directive] = ACTIONS(1542), + [anon_sym_typedef] = ACTIONS(1542), + [anon_sym_extern] = ACTIONS(1542), + [anon_sym_LBRACE] = ACTIONS(1540), + [anon_sym_RBRACE] = ACTIONS(1540), + [anon_sym_LPAREN2] = ACTIONS(1540), + [anon_sym_STAR] = ACTIONS(1540), + [anon_sym_static] = ACTIONS(1542), + [anon_sym_auto] = ACTIONS(1542), + [anon_sym_register] = ACTIONS(1542), + [anon_sym_inline] = ACTIONS(1542), + [anon_sym_const] = ACTIONS(1542), + [anon_sym_restrict] = ACTIONS(1542), + [anon_sym_volatile] = ACTIONS(1542), + [anon_sym__Atomic] = ACTIONS(1542), + [anon_sym_unsigned] = ACTIONS(1542), + [anon_sym_long] = ACTIONS(1542), + [anon_sym_short] = ACTIONS(1542), + [sym_primitive_type] = ACTIONS(1542), + [anon_sym_enum] = ACTIONS(1542), + [anon_sym_struct] = ACTIONS(1542), + [anon_sym_union] = ACTIONS(1542), + [anon_sym_if] = ACTIONS(1542), + [anon_sym_else] = ACTIONS(1542), + [anon_sym_switch] = ACTIONS(1542), + [anon_sym_case] = ACTIONS(1542), + [anon_sym_default] = ACTIONS(1542), + [anon_sym_while] = ACTIONS(1542), + [anon_sym_do] = ACTIONS(1542), + [anon_sym_for] = ACTIONS(1542), + [anon_sym_return] = ACTIONS(1542), + [anon_sym_break] = ACTIONS(1542), + [anon_sym_continue] = ACTIONS(1542), + [anon_sym_goto] = ACTIONS(1542), + [anon_sym_AMP] = ACTIONS(1540), + [anon_sym_BANG] = ACTIONS(1540), + [anon_sym_TILDE] = ACTIONS(1540), + [anon_sym_PLUS] = ACTIONS(1542), + [anon_sym_DASH] = ACTIONS(1542), + [anon_sym_DASH_DASH] = ACTIONS(1540), + [anon_sym_PLUS_PLUS] = ACTIONS(1540), + [anon_sym_sizeof] = ACTIONS(1542), + [sym_number_literal] = ACTIONS(1540), + [anon_sym_SQUOTE] = ACTIONS(1540), + [anon_sym_DQUOTE] = ACTIONS(1540), + [sym_true] = ACTIONS(1542), + [sym_false] = ACTIONS(1542), + [sym_null] = ACTIONS(1542), + [sym_identifier] = ACTIONS(1542), + [sym_comment] = ACTIONS(59), }, [382] = { - [sym__expression] = STATE(405), - [sym_conditional_expression] = STATE(405), - [sym_assignment_expression] = STATE(405), - [sym_pointer_expression] = STATE(405), - [sym_logical_expression] = STATE(405), - [sym_bitwise_expression] = STATE(405), - [sym_equality_expression] = STATE(405), - [sym_relational_expression] = STATE(405), - [sym_shift_expression] = STATE(405), - [sym_math_expression] = STATE(405), - [sym_cast_expression] = STATE(405), - [sym_sizeof_expression] = STATE(405), - [sym_subscript_expression] = STATE(405), - [sym_call_expression] = STATE(405), - [sym_field_expression] = STATE(405), - [sym_compound_literal_expression] = STATE(405), - [sym_parenthesized_expression] = STATE(405), - [sym_char_literal] = STATE(405), - [sym_concatenated_string] = STATE(405), - [sym_string_literal] = STATE(386), - [anon_sym_LPAREN2] = ACTIONS(918), - [anon_sym_STAR] = ACTIONS(920), - [anon_sym_AMP] = ACTIONS(920), - [anon_sym_BANG] = ACTIONS(922), - [anon_sym_TILDE] = ACTIONS(924), - [anon_sym_PLUS] = ACTIONS(926), - [anon_sym_DASH] = ACTIONS(926), - [anon_sym_DASH_DASH] = ACTIONS(928), - [anon_sym_PLUS_PLUS] = ACTIONS(928), - [anon_sym_sizeof] = ACTIONS(930), - [sym_number_literal] = ACTIONS(972), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(974), - [sym_false] = ACTIONS(974), - [sym_null] = ACTIONS(974), - [sym_identifier] = ACTIONS(974), - [sym_comment] = ACTIONS(37), + [aux_sym_declaration_repeat1] = STATE(382), + [anon_sym_SEMI] = ACTIONS(1434), + [anon_sym_COMMA] = ACTIONS(1544), + [sym_comment] = ACTIONS(59), }, [383] = { - [sym__expression] = STATE(406), - [sym_conditional_expression] = STATE(406), - [sym_assignment_expression] = STATE(406), - [sym_pointer_expression] = STATE(406), - [sym_logical_expression] = STATE(406), - [sym_bitwise_expression] = STATE(406), - [sym_equality_expression] = STATE(406), - [sym_relational_expression] = STATE(406), - [sym_shift_expression] = STATE(406), - [sym_math_expression] = STATE(406), - [sym_cast_expression] = STATE(406), - [sym_sizeof_expression] = STATE(406), - [sym_subscript_expression] = STATE(406), - [sym_call_expression] = STATE(406), - [sym_field_expression] = STATE(406), - [sym_compound_literal_expression] = STATE(406), - [sym_parenthesized_expression] = STATE(406), - [sym_char_literal] = STATE(406), - [sym_concatenated_string] = STATE(406), - [sym_string_literal] = STATE(386), - [anon_sym_LPAREN2] = ACTIONS(918), - [anon_sym_STAR] = ACTIONS(920), - [anon_sym_AMP] = ACTIONS(920), - [anon_sym_BANG] = ACTIONS(922), - [anon_sym_TILDE] = ACTIONS(924), - [anon_sym_PLUS] = ACTIONS(926), - [anon_sym_DASH] = ACTIONS(926), - [anon_sym_DASH_DASH] = ACTIONS(928), - [anon_sym_PLUS_PLUS] = ACTIONS(928), - [anon_sym_sizeof] = ACTIONS(930), - [sym_number_literal] = ACTIONS(976), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(978), - [sym_false] = ACTIONS(978), - [sym_null] = ACTIONS(978), - [sym_identifier] = ACTIONS(978), - [sym_comment] = ACTIONS(37), + [sym__expression] = STATE(591), + [sym_conditional_expression] = STATE(591), + [sym_assignment_expression] = STATE(591), + [sym_pointer_expression] = STATE(591), + [sym_logical_expression] = STATE(591), + [sym_bitwise_expression] = STATE(591), + [sym_equality_expression] = STATE(591), + [sym_relational_expression] = STATE(591), + [sym_shift_expression] = STATE(591), + [sym_math_expression] = STATE(591), + [sym_cast_expression] = STATE(591), + [sym_sizeof_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym_call_expression] = STATE(591), + [sym_field_expression] = STATE(591), + [sym_compound_literal_expression] = STATE(591), + [sym_parenthesized_expression] = STATE(591), + [sym_char_literal] = STATE(591), + [sym_concatenated_string] = STATE(591), + [sym_string_literal] = STATE(55), + [anon_sym_LPAREN2] = ACTIONS(85), + [anon_sym_STAR] = ACTIONS(87), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_PLUS] = ACTIONS(97), + [anon_sym_DASH] = ACTIONS(97), + [anon_sym_DASH_DASH] = ACTIONS(99), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(101), + [sym_number_literal] = ACTIONS(1547), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(1549), + [sym_false] = ACTIONS(1549), + [sym_null] = ACTIONS(1549), + [sym_identifier] = ACTIONS(1549), + [sym_comment] = ACTIONS(59), }, [384] = { - [sym__expression] = STATE(633), - [sym_conditional_expression] = STATE(633), - [sym_assignment_expression] = STATE(633), - [sym_pointer_expression] = STATE(633), - [sym_logical_expression] = STATE(633), - [sym_bitwise_expression] = STATE(633), - [sym_equality_expression] = STATE(633), - [sym_relational_expression] = STATE(633), - [sym_shift_expression] = STATE(633), - [sym_math_expression] = STATE(633), - [sym_cast_expression] = STATE(633), - [sym_sizeof_expression] = STATE(633), - [sym_subscript_expression] = STATE(633), - [sym_call_expression] = STATE(633), - [sym_field_expression] = STATE(633), - [sym_compound_literal_expression] = STATE(633), - [sym_parenthesized_expression] = STATE(633), - [sym_char_literal] = STATE(633), - [sym_concatenated_string] = STATE(633), - [sym_string_literal] = STATE(386), - [anon_sym_LPAREN2] = ACTIONS(1491), - [anon_sym_STAR] = ACTIONS(920), - [anon_sym_AMP] = ACTIONS(920), - [anon_sym_BANG] = ACTIONS(922), - [anon_sym_TILDE] = ACTIONS(924), - [anon_sym_PLUS] = ACTIONS(926), - [anon_sym_DASH] = ACTIONS(926), - [anon_sym_DASH_DASH] = ACTIONS(928), - [anon_sym_PLUS_PLUS] = ACTIONS(928), - [anon_sym_sizeof] = ACTIONS(930), - [sym_number_literal] = ACTIONS(1493), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(1495), - [sym_false] = ACTIONS(1495), - [sym_null] = ACTIONS(1495), - [sym_identifier] = ACTIONS(1495), - [sym_comment] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(1551), + [anon_sym_COMMA] = ACTIONS(1551), + [anon_sym_RPAREN] = ACTIONS(1551), + [anon_sym_RBRACE] = ACTIONS(1551), + [anon_sym_LPAREN2] = ACTIONS(1551), + [anon_sym_STAR] = ACTIONS(1553), + [anon_sym_LBRACK] = ACTIONS(1551), + [anon_sym_RBRACK] = ACTIONS(1551), + [anon_sym_EQ] = ACTIONS(1553), + [anon_sym_COLON] = ACTIONS(1551), + [anon_sym_QMARK] = ACTIONS(1551), + [anon_sym_STAR_EQ] = ACTIONS(1551), + [anon_sym_SLASH_EQ] = ACTIONS(1551), + [anon_sym_PERCENT_EQ] = ACTIONS(1551), + [anon_sym_PLUS_EQ] = ACTIONS(1551), + [anon_sym_DASH_EQ] = ACTIONS(1551), + [anon_sym_LT_LT_EQ] = ACTIONS(1551), + [anon_sym_GT_GT_EQ] = ACTIONS(1551), + [anon_sym_AMP_EQ] = ACTIONS(1551), + [anon_sym_CARET_EQ] = ACTIONS(1551), + [anon_sym_PIPE_EQ] = ACTIONS(1551), + [anon_sym_AMP] = ACTIONS(1553), + [anon_sym_PIPE_PIPE] = ACTIONS(1551), + [anon_sym_AMP_AMP] = ACTIONS(1551), + [anon_sym_PIPE] = ACTIONS(1553), + [anon_sym_CARET] = ACTIONS(1553), + [anon_sym_EQ_EQ] = ACTIONS(1551), + [anon_sym_BANG_EQ] = ACTIONS(1551), + [anon_sym_LT] = ACTIONS(1553), + [anon_sym_GT] = ACTIONS(1553), + [anon_sym_LT_EQ] = ACTIONS(1551), + [anon_sym_GT_EQ] = ACTIONS(1551), + [anon_sym_LT_LT] = ACTIONS(1553), + [anon_sym_GT_GT] = ACTIONS(1553), + [anon_sym_PLUS] = ACTIONS(1553), + [anon_sym_DASH] = ACTIONS(1553), + [anon_sym_SLASH] = ACTIONS(1553), + [anon_sym_PERCENT] = ACTIONS(1553), + [anon_sym_DASH_DASH] = ACTIONS(1551), + [anon_sym_PLUS_PLUS] = ACTIONS(1551), + [anon_sym_DOT] = ACTIONS(1551), + [anon_sym_DASH_GT] = ACTIONS(1551), + [sym_comment] = ACTIONS(59), }, [385] = { - [sym_argument_list] = STATE(430), - [anon_sym_LPAREN2] = ACTIONS(1012), - [anon_sym_STAR] = ACTIONS(1497), - [anon_sym_LBRACK] = ACTIONS(1016), - [anon_sym_EQ] = ACTIONS(1499), - [anon_sym_COLON] = ACTIONS(1501), - [anon_sym_QMARK] = ACTIONS(1503), - [anon_sym_STAR_EQ] = ACTIONS(1505), - [anon_sym_SLASH_EQ] = ACTIONS(1505), - [anon_sym_PERCENT_EQ] = ACTIONS(1505), - [anon_sym_PLUS_EQ] = ACTIONS(1505), - [anon_sym_DASH_EQ] = ACTIONS(1505), - [anon_sym_LT_LT_EQ] = ACTIONS(1505), - [anon_sym_GT_GT_EQ] = ACTIONS(1505), - [anon_sym_AMP_EQ] = ACTIONS(1505), - [anon_sym_CARET_EQ] = ACTIONS(1505), - [anon_sym_PIPE_EQ] = ACTIONS(1505), - [anon_sym_AMP] = ACTIONS(1507), - [anon_sym_PIPE_PIPE] = ACTIONS(1509), - [anon_sym_AMP_AMP] = ACTIONS(1511), - [anon_sym_PIPE] = ACTIONS(1513), - [anon_sym_CARET] = ACTIONS(1515), - [anon_sym_EQ_EQ] = ACTIONS(1517), - [anon_sym_BANG_EQ] = ACTIONS(1517), - [anon_sym_LT] = ACTIONS(1519), - [anon_sym_GT] = ACTIONS(1519), - [anon_sym_LT_EQ] = ACTIONS(1521), - [anon_sym_GT_EQ] = ACTIONS(1521), - [anon_sym_LT_LT] = ACTIONS(1523), - [anon_sym_GT_GT] = ACTIONS(1523), - [anon_sym_PLUS] = ACTIONS(1525), - [anon_sym_DASH] = ACTIONS(1525), - [anon_sym_SLASH] = ACTIONS(1497), - [anon_sym_PERCENT] = ACTIONS(1497), - [anon_sym_DASH_DASH] = ACTIONS(1044), - [anon_sym_PLUS_PLUS] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1046), - [anon_sym_DASH_GT] = ACTIONS(1046), - [sym_comment] = ACTIONS(37), + [aux_sym_for_statement_repeat1] = STATE(593), + [anon_sym_COMMA] = ACTIONS(1002), + [anon_sym_RPAREN] = ACTIONS(1555), + [sym_comment] = ACTIONS(59), }, [386] = { - [sym_string_literal] = STATE(647), - [aux_sym_concatenated_string_repeat1] = STATE(647), - [anon_sym_LPAREN2] = ACTIONS(990), - [anon_sym_STAR] = ACTIONS(1002), - [anon_sym_LBRACK] = ACTIONS(990), - [anon_sym_EQ] = ACTIONS(1002), - [anon_sym_COLON] = ACTIONS(990), - [anon_sym_QMARK] = ACTIONS(990), - [anon_sym_STAR_EQ] = ACTIONS(990), - [anon_sym_SLASH_EQ] = ACTIONS(990), - [anon_sym_PERCENT_EQ] = ACTIONS(990), - [anon_sym_PLUS_EQ] = ACTIONS(990), - [anon_sym_DASH_EQ] = ACTIONS(990), - [anon_sym_LT_LT_EQ] = ACTIONS(990), - [anon_sym_GT_GT_EQ] = ACTIONS(990), - [anon_sym_AMP_EQ] = ACTIONS(990), - [anon_sym_CARET_EQ] = ACTIONS(990), - [anon_sym_PIPE_EQ] = ACTIONS(990), - [anon_sym_AMP] = ACTIONS(1002), - [anon_sym_PIPE_PIPE] = ACTIONS(990), - [anon_sym_AMP_AMP] = ACTIONS(990), - [anon_sym_PIPE] = ACTIONS(1002), - [anon_sym_CARET] = ACTIONS(1002), - [anon_sym_EQ_EQ] = ACTIONS(990), - [anon_sym_BANG_EQ] = ACTIONS(990), - [anon_sym_LT] = ACTIONS(1002), - [anon_sym_GT] = ACTIONS(1002), - [anon_sym_LT_EQ] = ACTIONS(990), - [anon_sym_GT_EQ] = ACTIONS(990), - [anon_sym_LT_LT] = ACTIONS(1002), - [anon_sym_GT_GT] = ACTIONS(1002), - [anon_sym_PLUS] = ACTIONS(1002), - [anon_sym_DASH] = ACTIONS(1002), - [anon_sym_SLASH] = ACTIONS(1002), - [anon_sym_PERCENT] = ACTIONS(1002), - [anon_sym_DASH_DASH] = ACTIONS(990), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_DOT] = ACTIONS(990), - [anon_sym_DASH_GT] = ACTIONS(990), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_comment] = ACTIONS(37), + [anon_sym_RPAREN] = ACTIONS(1557), + [sym_comment] = ACTIONS(59), }, [387] = { - [sym_declaration] = STATE(649), - [sym_type_definition] = STATE(649), - [sym__declaration_specifiers] = STATE(650), - [sym_compound_statement] = STATE(649), - [sym_storage_class_specifier] = STATE(87), - [sym_type_qualifier] = STATE(87), - [sym__type_specifier] = STATE(86), - [sym_sized_type_specifier] = STATE(86), - [sym_enum_specifier] = STATE(86), - [sym_struct_specifier] = STATE(86), - [sym_union_specifier] = STATE(86), - [sym_labeled_statement] = STATE(649), - [sym_expression_statement] = STATE(649), - [sym_if_statement] = STATE(649), - [sym_switch_statement] = STATE(649), - [sym_case_statement] = STATE(649), - [sym_while_statement] = STATE(649), - [sym_do_statement] = STATE(649), - [sym_for_statement] = STATE(649), - [sym_return_statement] = STATE(649), - [sym_break_statement] = STATE(649), - [sym_continue_statement] = STATE(649), - [sym_goto_statement] = STATE(649), - [sym__expression] = STATE(228), - [sym_comma_expression] = STATE(229), - [sym_conditional_expression] = STATE(228), - [sym_assignment_expression] = STATE(228), - [sym_pointer_expression] = STATE(228), - [sym_logical_expression] = STATE(228), - [sym_bitwise_expression] = STATE(228), - [sym_equality_expression] = STATE(228), - [sym_relational_expression] = STATE(228), - [sym_shift_expression] = STATE(228), - [sym_math_expression] = STATE(228), - [sym_cast_expression] = STATE(228), - [sym_sizeof_expression] = STATE(228), - [sym_subscript_expression] = STATE(228), - [sym_call_expression] = STATE(228), - [sym_field_expression] = STATE(228), - [sym_compound_literal_expression] = STATE(228), - [sym_parenthesized_expression] = STATE(228), - [sym_char_literal] = STATE(228), - [sym_concatenated_string] = STATE(228), - [sym_string_literal] = STATE(230), - [sym_macro_type_specifier] = STATE(86), - [aux_sym__declaration_specifiers_repeat1] = STATE(87), - [aux_sym_sized_type_specifier_repeat1] = STATE(88), - [anon_sym_SEMI] = ACTIONS(503), - [anon_sym_typedef] = ACTIONS(17), - [anon_sym_extern] = ACTIONS(21), - [anon_sym_LBRACE] = ACTIONS(229), - [anon_sym_LPAREN2] = ACTIONS(507), - [anon_sym_STAR] = ACTIONS(509), - [anon_sym_static] = ACTIONS(21), - [anon_sym_auto] = ACTIONS(21), - [anon_sym_register] = ACTIONS(21), - [anon_sym_inline] = ACTIONS(21), - [anon_sym_const] = ACTIONS(23), - [anon_sym_restrict] = ACTIONS(23), - [anon_sym_volatile] = ACTIONS(23), - [anon_sym__Atomic] = ACTIONS(23), - [anon_sym_unsigned] = ACTIONS(167), - [anon_sym_long] = ACTIONS(167), - [anon_sym_short] = ACTIONS(167), - [sym_primitive_type] = ACTIONS(169), - [anon_sym_enum] = ACTIONS(29), - [anon_sym_struct] = ACTIONS(31), - [anon_sym_union] = ACTIONS(33), - [anon_sym_if] = ACTIONS(511), - [anon_sym_switch] = ACTIONS(513), - [anon_sym_case] = ACTIONS(515), - [anon_sym_default] = ACTIONS(517), - [anon_sym_while] = ACTIONS(519), - [anon_sym_do] = ACTIONS(521), - [anon_sym_for] = ACTIONS(523), - [anon_sym_return] = ACTIONS(525), - [anon_sym_break] = ACTIONS(527), - [anon_sym_continue] = ACTIONS(529), - [anon_sym_goto] = ACTIONS(531), - [anon_sym_AMP] = ACTIONS(509), - [anon_sym_BANG] = ACTIONS(533), - [anon_sym_TILDE] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DASH] = ACTIONS(537), - [anon_sym_DASH_DASH] = ACTIONS(539), - [anon_sym_PLUS_PLUS] = ACTIONS(539), - [anon_sym_sizeof] = ACTIONS(541), - [sym_number_literal] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(547), - [sym_false] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [sym_identifier] = ACTIONS(1527), - [sym_comment] = ACTIONS(37), + [sym_type_qualifier] = STATE(56), + [sym__type_specifier] = STATE(51), + [sym_sized_type_specifier] = STATE(51), + [sym_enum_specifier] = STATE(51), + [sym_struct_specifier] = STATE(51), + [sym_union_specifier] = STATE(51), + [sym__expression] = STATE(52), + [sym_comma_expression] = STATE(53), + [sym_conditional_expression] = STATE(52), + [sym_assignment_expression] = STATE(52), + [sym_pointer_expression] = STATE(52), + [sym_logical_expression] = STATE(52), + [sym_bitwise_expression] = STATE(52), + [sym_equality_expression] = STATE(52), + [sym_relational_expression] = STATE(52), + [sym_shift_expression] = STATE(52), + [sym_math_expression] = STATE(52), + [sym_cast_expression] = STATE(52), + [sym_type_descriptor] = STATE(595), + [sym_sizeof_expression] = STATE(52), + [sym_subscript_expression] = STATE(52), + [sym_call_expression] = STATE(52), + [sym_field_expression] = STATE(52), + [sym_compound_literal_expression] = STATE(52), + [sym_parenthesized_expression] = STATE(52), + [sym_char_literal] = STATE(52), + [sym_concatenated_string] = STATE(52), + [sym_string_literal] = STATE(55), + [sym_macro_type_specifier] = STATE(51), + [aux_sym_type_definition_repeat1] = STATE(56), + [aux_sym_sized_type_specifier_repeat1] = STATE(57), + [anon_sym_LPAREN2] = ACTIONS(85), + [anon_sym_STAR] = ACTIONS(87), + [anon_sym_const] = ACTIONS(27), + [anon_sym_restrict] = ACTIONS(27), + [anon_sym_volatile] = ACTIONS(27), + [anon_sym__Atomic] = ACTIONS(27), + [anon_sym_unsigned] = ACTIONS(89), + [anon_sym_long] = ACTIONS(89), + [anon_sym_short] = ACTIONS(89), + [sym_primitive_type] = ACTIONS(91), + [anon_sym_enum] = ACTIONS(33), + [anon_sym_struct] = ACTIONS(35), + [anon_sym_union] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_PLUS] = ACTIONS(97), + [anon_sym_DASH] = ACTIONS(97), + [anon_sym_DASH_DASH] = ACTIONS(99), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(105), + [sym_false] = ACTIONS(105), + [sym_null] = ACTIONS(105), + [sym_identifier] = ACTIONS(107), + [sym_comment] = ACTIONS(59), }, [388] = { - [sym_compound_statement] = STATE(651), - [sym_labeled_statement] = STATE(651), - [sym_expression_statement] = STATE(651), - [sym_if_statement] = STATE(651), - [sym_switch_statement] = STATE(651), - [sym_case_statement] = STATE(651), - [sym_while_statement] = STATE(651), - [sym_do_statement] = STATE(651), - [sym_for_statement] = STATE(651), - [sym_return_statement] = STATE(651), - [sym_break_statement] = STATE(651), - [sym_continue_statement] = STATE(651), - [sym_goto_statement] = STATE(651), - [sym__expression] = STATE(228), - [sym_comma_expression] = STATE(229), - [sym_conditional_expression] = STATE(228), - [sym_assignment_expression] = STATE(228), - [sym_pointer_expression] = STATE(228), - [sym_logical_expression] = STATE(228), - [sym_bitwise_expression] = STATE(228), - [sym_equality_expression] = STATE(228), - [sym_relational_expression] = STATE(228), - [sym_shift_expression] = STATE(228), - [sym_math_expression] = STATE(228), - [sym_cast_expression] = STATE(228), - [sym_sizeof_expression] = STATE(228), - [sym_subscript_expression] = STATE(228), - [sym_call_expression] = STATE(228), - [sym_field_expression] = STATE(228), - [sym_compound_literal_expression] = STATE(228), - [sym_parenthesized_expression] = STATE(228), - [sym_char_literal] = STATE(228), - [sym_concatenated_string] = STATE(228), - [sym_string_literal] = STATE(230), - [anon_sym_SEMI] = ACTIONS(503), - [anon_sym_LBRACE] = ACTIONS(229), - [anon_sym_LPAREN2] = ACTIONS(507), - [anon_sym_STAR] = ACTIONS(509), - [anon_sym_if] = ACTIONS(511), - [anon_sym_switch] = ACTIONS(513), - [anon_sym_case] = ACTIONS(515), - [anon_sym_default] = ACTIONS(517), - [anon_sym_while] = ACTIONS(519), - [anon_sym_do] = ACTIONS(521), - [anon_sym_for] = ACTIONS(523), - [anon_sym_return] = ACTIONS(525), - [anon_sym_break] = ACTIONS(527), - [anon_sym_continue] = ACTIONS(529), - [anon_sym_goto] = ACTIONS(531), - [anon_sym_AMP] = ACTIONS(509), - [anon_sym_BANG] = ACTIONS(533), - [anon_sym_TILDE] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DASH] = ACTIONS(537), - [anon_sym_DASH_DASH] = ACTIONS(539), - [anon_sym_PLUS_PLUS] = ACTIONS(539), - [anon_sym_sizeof] = ACTIONS(541), - [sym_number_literal] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(547), - [sym_false] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [sym_identifier] = ACTIONS(1489), - [sym_comment] = ACTIONS(37), + [sym_argument_list] = STATE(98), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(1016), + [anon_sym_LBRACK] = ACTIONS(188), + [anon_sym_RBRACK] = ACTIONS(413), + [anon_sym_EQ] = ACTIONS(411), + [anon_sym_QMARK] = ACTIONS(413), + [anon_sym_STAR_EQ] = ACTIONS(413), + [anon_sym_SLASH_EQ] = ACTIONS(413), + [anon_sym_PERCENT_EQ] = ACTIONS(413), + [anon_sym_PLUS_EQ] = ACTIONS(413), + [anon_sym_DASH_EQ] = ACTIONS(413), + [anon_sym_LT_LT_EQ] = ACTIONS(413), + [anon_sym_GT_GT_EQ] = ACTIONS(413), + [anon_sym_AMP_EQ] = ACTIONS(413), + [anon_sym_CARET_EQ] = ACTIONS(413), + [anon_sym_PIPE_EQ] = ACTIONS(413), + [anon_sym_AMP] = ACTIONS(411), + [anon_sym_PIPE_PIPE] = ACTIONS(413), + [anon_sym_AMP_AMP] = ACTIONS(413), + [anon_sym_PIPE] = ACTIONS(411), + [anon_sym_CARET] = ACTIONS(411), + [anon_sym_EQ_EQ] = ACTIONS(413), + [anon_sym_BANG_EQ] = ACTIONS(413), + [anon_sym_LT] = ACTIONS(411), + [anon_sym_GT] = ACTIONS(411), + [anon_sym_LT_EQ] = ACTIONS(413), + [anon_sym_GT_EQ] = ACTIONS(413), + [anon_sym_LT_LT] = ACTIONS(1042), + [anon_sym_GT_GT] = ACTIONS(1042), + [anon_sym_PLUS] = ACTIONS(1044), + [anon_sym_DASH] = ACTIONS(1044), + [anon_sym_SLASH] = ACTIONS(1016), + [anon_sym_PERCENT] = ACTIONS(1016), + [anon_sym_DASH_DASH] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(216), + [anon_sym_DOT] = ACTIONS(218), + [anon_sym_DASH_GT] = ACTIONS(218), + [sym_comment] = ACTIONS(59), }, [389] = { - [sym_parenthesized_expression] = STATE(652), - [anon_sym_LPAREN2] = ACTIONS(916), - [sym_comment] = ACTIONS(37), + [sym__expression] = STATE(206), + [sym_conditional_expression] = STATE(206), + [sym_assignment_expression] = STATE(206), + [sym_pointer_expression] = STATE(206), + [sym_logical_expression] = STATE(206), + [sym_bitwise_expression] = STATE(206), + [sym_equality_expression] = STATE(206), + [sym_relational_expression] = STATE(206), + [sym_shift_expression] = STATE(206), + [sym_math_expression] = STATE(206), + [sym_cast_expression] = STATE(206), + [sym_sizeof_expression] = STATE(206), + [sym_subscript_expression] = STATE(206), + [sym_call_expression] = STATE(206), + [sym_field_expression] = STATE(206), + [sym_compound_literal_expression] = STATE(206), + [sym_parenthesized_expression] = STATE(206), + [sym_char_literal] = STATE(206), + [sym_concatenated_string] = STATE(206), + [sym_string_literal] = STATE(214), + [anon_sym_LPAREN2] = ACTIONS(461), + [anon_sym_STAR] = ACTIONS(463), + [anon_sym_AMP] = ACTIONS(463), + [anon_sym_BANG] = ACTIONS(465), + [anon_sym_TILDE] = ACTIONS(467), + [anon_sym_PLUS] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(469), + [anon_sym_DASH_DASH] = ACTIONS(471), + [anon_sym_PLUS_PLUS] = ACTIONS(471), + [anon_sym_sizeof] = ACTIONS(473), + [sym_number_literal] = ACTIONS(457), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(459), + [sym_false] = ACTIONS(459), + [sym_null] = ACTIONS(459), + [sym_identifier] = ACTIONS(459), + [sym_comment] = ACTIONS(59), }, [390] = { - [sym_parenthesized_expression] = STATE(653), - [anon_sym_LPAREN2] = ACTIONS(916), - [sym_comment] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(1559), + [anon_sym_COMMA] = ACTIONS(1559), + [anon_sym_RPAREN] = ACTIONS(1559), + [anon_sym_RBRACE] = ACTIONS(1559), + [anon_sym_LPAREN2] = ACTIONS(1559), + [anon_sym_STAR] = ACTIONS(1561), + [anon_sym_LBRACK] = ACTIONS(1559), + [anon_sym_RBRACK] = ACTIONS(1559), + [anon_sym_EQ] = ACTIONS(1561), + [anon_sym_COLON] = ACTIONS(1559), + [anon_sym_QMARK] = ACTIONS(1559), + [anon_sym_STAR_EQ] = ACTIONS(1559), + [anon_sym_SLASH_EQ] = ACTIONS(1559), + [anon_sym_PERCENT_EQ] = ACTIONS(1559), + [anon_sym_PLUS_EQ] = ACTIONS(1559), + [anon_sym_DASH_EQ] = ACTIONS(1559), + [anon_sym_LT_LT_EQ] = ACTIONS(1559), + [anon_sym_GT_GT_EQ] = ACTIONS(1559), + [anon_sym_AMP_EQ] = ACTIONS(1559), + [anon_sym_CARET_EQ] = ACTIONS(1559), + [anon_sym_PIPE_EQ] = ACTIONS(1559), + [anon_sym_AMP] = ACTIONS(1561), + [anon_sym_PIPE_PIPE] = ACTIONS(1559), + [anon_sym_AMP_AMP] = ACTIONS(1559), + [anon_sym_PIPE] = ACTIONS(1561), + [anon_sym_CARET] = ACTIONS(1561), + [anon_sym_EQ_EQ] = ACTIONS(1559), + [anon_sym_BANG_EQ] = ACTIONS(1559), + [anon_sym_LT] = ACTIONS(1561), + [anon_sym_GT] = ACTIONS(1561), + [anon_sym_LT_EQ] = ACTIONS(1559), + [anon_sym_GT_EQ] = ACTIONS(1559), + [anon_sym_LT_LT] = ACTIONS(1561), + [anon_sym_GT_GT] = ACTIONS(1561), + [anon_sym_PLUS] = ACTIONS(1561), + [anon_sym_DASH] = ACTIONS(1561), + [anon_sym_SLASH] = ACTIONS(1561), + [anon_sym_PERCENT] = ACTIONS(1561), + [anon_sym_DASH_DASH] = ACTIONS(1559), + [anon_sym_PLUS_PLUS] = ACTIONS(1559), + [anon_sym_DOT] = ACTIONS(1559), + [anon_sym_DASH_GT] = ACTIONS(1559), + [sym_comment] = ACTIONS(59), }, [391] = { - [sym__expression] = STATE(654), - [sym_conditional_expression] = STATE(654), - [sym_assignment_expression] = STATE(654), - [sym_pointer_expression] = STATE(654), - [sym_logical_expression] = STATE(654), - [sym_bitwise_expression] = STATE(654), - [sym_equality_expression] = STATE(654), - [sym_relational_expression] = STATE(654), - [sym_shift_expression] = STATE(654), - [sym_math_expression] = STATE(654), - [sym_cast_expression] = STATE(654), - [sym_sizeof_expression] = STATE(654), - [sym_subscript_expression] = STATE(654), - [sym_call_expression] = STATE(654), - [sym_field_expression] = STATE(654), - [sym_compound_literal_expression] = STATE(654), - [sym_parenthesized_expression] = STATE(654), - [sym_char_literal] = STATE(654), - [sym_concatenated_string] = STATE(654), - [sym_string_literal] = STATE(386), - [anon_sym_LPAREN2] = ACTIONS(918), - [anon_sym_STAR] = ACTIONS(920), - [anon_sym_AMP] = ACTIONS(920), - [anon_sym_BANG] = ACTIONS(922), - [anon_sym_TILDE] = ACTIONS(924), - [anon_sym_PLUS] = ACTIONS(926), - [anon_sym_DASH] = ACTIONS(926), - [anon_sym_DASH_DASH] = ACTIONS(928), - [anon_sym_PLUS_PLUS] = ACTIONS(928), - [anon_sym_sizeof] = ACTIONS(930), - [sym_number_literal] = ACTIONS(1529), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(1531), - [sym_false] = ACTIONS(1531), - [sym_null] = ACTIONS(1531), - [sym_identifier] = ACTIONS(1531), - [sym_comment] = ACTIONS(37), + [sym__expression] = STATE(596), + [sym_conditional_expression] = STATE(596), + [sym_assignment_expression] = STATE(596), + [sym_pointer_expression] = STATE(596), + [sym_logical_expression] = STATE(596), + [sym_bitwise_expression] = STATE(596), + [sym_equality_expression] = STATE(596), + [sym_relational_expression] = STATE(596), + [sym_shift_expression] = STATE(596), + [sym_math_expression] = STATE(596), + [sym_cast_expression] = STATE(596), + [sym_sizeof_expression] = STATE(596), + [sym_subscript_expression] = STATE(596), + [sym_call_expression] = STATE(596), + [sym_field_expression] = STATE(596), + [sym_compound_literal_expression] = STATE(596), + [sym_parenthesized_expression] = STATE(596), + [sym_char_literal] = STATE(596), + [sym_concatenated_string] = STATE(596), + [sym_string_literal] = STATE(214), + [anon_sym_LPAREN2] = ACTIONS(461), + [anon_sym_STAR] = ACTIONS(463), + [anon_sym_AMP] = ACTIONS(463), + [anon_sym_BANG] = ACTIONS(465), + [anon_sym_TILDE] = ACTIONS(467), + [anon_sym_PLUS] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(469), + [anon_sym_DASH_DASH] = ACTIONS(471), + [anon_sym_PLUS_PLUS] = ACTIONS(471), + [anon_sym_sizeof] = ACTIONS(473), + [sym_number_literal] = ACTIONS(1563), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(1565), + [sym_false] = ACTIONS(1565), + [sym_null] = ACTIONS(1565), + [sym_identifier] = ACTIONS(1565), + [sym_comment] = ACTIONS(59), }, [392] = { - [anon_sym_COLON] = ACTIONS(1533), - [sym_comment] = ACTIONS(37), + [sym__expression] = STATE(597), + [sym_conditional_expression] = STATE(597), + [sym_assignment_expression] = STATE(597), + [sym_pointer_expression] = STATE(597), + [sym_logical_expression] = STATE(597), + [sym_bitwise_expression] = STATE(597), + [sym_equality_expression] = STATE(597), + [sym_relational_expression] = STATE(597), + [sym_shift_expression] = STATE(597), + [sym_math_expression] = STATE(597), + [sym_cast_expression] = STATE(597), + [sym_sizeof_expression] = STATE(597), + [sym_subscript_expression] = STATE(597), + [sym_call_expression] = STATE(597), + [sym_field_expression] = STATE(597), + [sym_compound_literal_expression] = STATE(597), + [sym_parenthesized_expression] = STATE(597), + [sym_char_literal] = STATE(597), + [sym_concatenated_string] = STATE(597), + [sym_string_literal] = STATE(223), + [anon_sym_LPAREN2] = ACTIONS(483), + [anon_sym_STAR] = ACTIONS(485), + [anon_sym_AMP] = ACTIONS(485), + [anon_sym_BANG] = ACTIONS(487), + [anon_sym_TILDE] = ACTIONS(489), + [anon_sym_PLUS] = ACTIONS(491), + [anon_sym_DASH] = ACTIONS(491), + [anon_sym_DASH_DASH] = ACTIONS(493), + [anon_sym_PLUS_PLUS] = ACTIONS(493), + [anon_sym_sizeof] = ACTIONS(495), + [sym_number_literal] = ACTIONS(1567), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(1569), + [sym_false] = ACTIONS(1569), + [sym_null] = ACTIONS(1569), + [sym_identifier] = ACTIONS(1569), + [sym_comment] = ACTIONS(59), }, [393] = { - [sym_parenthesized_expression] = STATE(656), - [anon_sym_LPAREN2] = ACTIONS(916), - [sym_comment] = ACTIONS(37), + [sym__expression] = STATE(598), + [sym_conditional_expression] = STATE(598), + [sym_assignment_expression] = STATE(598), + [sym_pointer_expression] = STATE(598), + [sym_logical_expression] = STATE(598), + [sym_bitwise_expression] = STATE(598), + [sym_equality_expression] = STATE(598), + [sym_relational_expression] = STATE(598), + [sym_shift_expression] = STATE(598), + [sym_math_expression] = STATE(598), + [sym_cast_expression] = STATE(598), + [sym_sizeof_expression] = STATE(598), + [sym_subscript_expression] = STATE(598), + [sym_call_expression] = STATE(598), + [sym_field_expression] = STATE(598), + [sym_compound_literal_expression] = STATE(598), + [sym_parenthesized_expression] = STATE(598), + [sym_char_literal] = STATE(598), + [sym_concatenated_string] = STATE(598), + [sym_string_literal] = STATE(214), + [anon_sym_LPAREN2] = ACTIONS(461), + [anon_sym_STAR] = ACTIONS(463), + [anon_sym_AMP] = ACTIONS(463), + [anon_sym_BANG] = ACTIONS(465), + [anon_sym_TILDE] = ACTIONS(467), + [anon_sym_PLUS] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(469), + [anon_sym_DASH_DASH] = ACTIONS(471), + [anon_sym_PLUS_PLUS] = ACTIONS(471), + [anon_sym_sizeof] = ACTIONS(473), + [sym_number_literal] = ACTIONS(1571), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(1573), + [sym_false] = ACTIONS(1573), + [sym_null] = ACTIONS(1573), + [sym_identifier] = ACTIONS(1573), + [sym_comment] = ACTIONS(59), }, [394] = { - [sym_compound_statement] = STATE(657), - [sym_labeled_statement] = STATE(657), - [sym_expression_statement] = STATE(657), - [sym_if_statement] = STATE(657), - [sym_switch_statement] = STATE(657), - [sym_case_statement] = STATE(657), - [sym_while_statement] = STATE(657), - [sym_do_statement] = STATE(657), - [sym_for_statement] = STATE(657), - [sym_return_statement] = STATE(657), - [sym_break_statement] = STATE(657), - [sym_continue_statement] = STATE(657), - [sym_goto_statement] = STATE(657), - [sym__expression] = STATE(228), - [sym_comma_expression] = STATE(229), - [sym_conditional_expression] = STATE(228), - [sym_assignment_expression] = STATE(228), - [sym_pointer_expression] = STATE(228), - [sym_logical_expression] = STATE(228), - [sym_bitwise_expression] = STATE(228), - [sym_equality_expression] = STATE(228), - [sym_relational_expression] = STATE(228), - [sym_shift_expression] = STATE(228), - [sym_math_expression] = STATE(228), - [sym_cast_expression] = STATE(228), - [sym_sizeof_expression] = STATE(228), - [sym_subscript_expression] = STATE(228), - [sym_call_expression] = STATE(228), - [sym_field_expression] = STATE(228), - [sym_compound_literal_expression] = STATE(228), - [sym_parenthesized_expression] = STATE(228), - [sym_char_literal] = STATE(228), - [sym_concatenated_string] = STATE(228), - [sym_string_literal] = STATE(230), - [anon_sym_SEMI] = ACTIONS(503), - [anon_sym_LBRACE] = ACTIONS(229), - [anon_sym_LPAREN2] = ACTIONS(507), - [anon_sym_STAR] = ACTIONS(509), - [anon_sym_if] = ACTIONS(938), - [anon_sym_switch] = ACTIONS(940), - [anon_sym_case] = ACTIONS(942), - [anon_sym_default] = ACTIONS(944), - [anon_sym_while] = ACTIONS(946), - [anon_sym_do] = ACTIONS(948), - [anon_sym_for] = ACTIONS(950), - [anon_sym_return] = ACTIONS(525), - [anon_sym_break] = ACTIONS(527), - [anon_sym_continue] = ACTIONS(529), - [anon_sym_goto] = ACTIONS(531), - [anon_sym_AMP] = ACTIONS(509), - [anon_sym_BANG] = ACTIONS(533), - [anon_sym_TILDE] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DASH] = ACTIONS(537), - [anon_sym_DASH_DASH] = ACTIONS(539), - [anon_sym_PLUS_PLUS] = ACTIONS(539), - [anon_sym_sizeof] = ACTIONS(541), - [sym_number_literal] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(547), - [sym_false] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [sym_identifier] = ACTIONS(952), - [sym_comment] = ACTIONS(37), + [sym__expression] = STATE(599), + [sym_conditional_expression] = STATE(599), + [sym_assignment_expression] = STATE(599), + [sym_pointer_expression] = STATE(599), + [sym_logical_expression] = STATE(599), + [sym_bitwise_expression] = STATE(599), + [sym_equality_expression] = STATE(599), + [sym_relational_expression] = STATE(599), + [sym_shift_expression] = STATE(599), + [sym_math_expression] = STATE(599), + [sym_cast_expression] = STATE(599), + [sym_sizeof_expression] = STATE(599), + [sym_subscript_expression] = STATE(599), + [sym_call_expression] = STATE(599), + [sym_field_expression] = STATE(599), + [sym_compound_literal_expression] = STATE(599), + [sym_parenthesized_expression] = STATE(599), + [sym_char_literal] = STATE(599), + [sym_concatenated_string] = STATE(599), + [sym_string_literal] = STATE(214), + [anon_sym_LPAREN2] = ACTIONS(461), + [anon_sym_STAR] = ACTIONS(463), + [anon_sym_AMP] = ACTIONS(463), + [anon_sym_BANG] = ACTIONS(465), + [anon_sym_TILDE] = ACTIONS(467), + [anon_sym_PLUS] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(469), + [anon_sym_DASH_DASH] = ACTIONS(471), + [anon_sym_PLUS_PLUS] = ACTIONS(471), + [anon_sym_sizeof] = ACTIONS(473), + [sym_number_literal] = ACTIONS(1575), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(1577), + [sym_false] = ACTIONS(1577), + [sym_null] = ACTIONS(1577), + [sym_identifier] = ACTIONS(1577), + [sym_comment] = ACTIONS(59), }, [395] = { - [anon_sym_LPAREN2] = ACTIONS(1535), - [sym_comment] = ACTIONS(37), + [sym__expression] = STATE(600), + [sym_conditional_expression] = STATE(600), + [sym_assignment_expression] = STATE(600), + [sym_pointer_expression] = STATE(600), + [sym_logical_expression] = STATE(600), + [sym_bitwise_expression] = STATE(600), + [sym_equality_expression] = STATE(600), + [sym_relational_expression] = STATE(600), + [sym_shift_expression] = STATE(600), + [sym_math_expression] = STATE(600), + [sym_cast_expression] = STATE(600), + [sym_sizeof_expression] = STATE(600), + [sym_subscript_expression] = STATE(600), + [sym_call_expression] = STATE(600), + [sym_field_expression] = STATE(600), + [sym_compound_literal_expression] = STATE(600), + [sym_parenthesized_expression] = STATE(600), + [sym_char_literal] = STATE(600), + [sym_concatenated_string] = STATE(600), + [sym_string_literal] = STATE(214), + [anon_sym_LPAREN2] = ACTIONS(461), + [anon_sym_STAR] = ACTIONS(463), + [anon_sym_AMP] = ACTIONS(463), + [anon_sym_BANG] = ACTIONS(465), + [anon_sym_TILDE] = ACTIONS(467), + [anon_sym_PLUS] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(469), + [anon_sym_DASH_DASH] = ACTIONS(471), + [anon_sym_PLUS_PLUS] = ACTIONS(471), + [anon_sym_sizeof] = ACTIONS(473), + [sym_number_literal] = ACTIONS(1579), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(1581), + [sym_false] = ACTIONS(1581), + [sym_null] = ACTIONS(1581), + [sym_identifier] = ACTIONS(1581), + [sym_comment] = ACTIONS(59), }, [396] = { - [anon_sym_COMMA] = ACTIONS(990), - [anon_sym_SEMI] = ACTIONS(990), - [anon_sym_LPAREN2] = ACTIONS(990), - [anon_sym_STAR] = ACTIONS(1002), - [anon_sym_LBRACK] = ACTIONS(990), - [anon_sym_EQ] = ACTIONS(1002), - [anon_sym_COLON] = ACTIONS(1537), - [anon_sym_QMARK] = ACTIONS(990), - [anon_sym_STAR_EQ] = ACTIONS(990), - [anon_sym_SLASH_EQ] = ACTIONS(990), - [anon_sym_PERCENT_EQ] = ACTIONS(990), - [anon_sym_PLUS_EQ] = ACTIONS(990), - [anon_sym_DASH_EQ] = ACTIONS(990), - [anon_sym_LT_LT_EQ] = ACTIONS(990), - [anon_sym_GT_GT_EQ] = ACTIONS(990), - [anon_sym_AMP_EQ] = ACTIONS(990), - [anon_sym_CARET_EQ] = ACTIONS(990), - [anon_sym_PIPE_EQ] = ACTIONS(990), - [anon_sym_AMP] = ACTIONS(1002), - [anon_sym_PIPE_PIPE] = ACTIONS(990), - [anon_sym_AMP_AMP] = ACTIONS(990), - [anon_sym_PIPE] = ACTIONS(1002), - [anon_sym_CARET] = ACTIONS(1002), - [anon_sym_EQ_EQ] = ACTIONS(990), - [anon_sym_BANG_EQ] = ACTIONS(990), - [anon_sym_LT] = ACTIONS(1002), - [anon_sym_GT] = ACTIONS(1002), - [anon_sym_LT_EQ] = ACTIONS(990), - [anon_sym_GT_EQ] = ACTIONS(990), - [anon_sym_LT_LT] = ACTIONS(1002), - [anon_sym_GT_GT] = ACTIONS(1002), - [anon_sym_PLUS] = ACTIONS(1002), - [anon_sym_DASH] = ACTIONS(1002), - [anon_sym_SLASH] = ACTIONS(1002), - [anon_sym_PERCENT] = ACTIONS(1002), - [anon_sym_DASH_DASH] = ACTIONS(990), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_DOT] = ACTIONS(990), - [anon_sym_DASH_GT] = ACTIONS(990), - [sym_comment] = ACTIONS(37), + [sym__expression] = STATE(601), + [sym_conditional_expression] = STATE(601), + [sym_assignment_expression] = STATE(601), + [sym_pointer_expression] = STATE(601), + [sym_logical_expression] = STATE(601), + [sym_bitwise_expression] = STATE(601), + [sym_equality_expression] = STATE(601), + [sym_relational_expression] = STATE(601), + [sym_shift_expression] = STATE(601), + [sym_math_expression] = STATE(601), + [sym_cast_expression] = STATE(601), + [sym_sizeof_expression] = STATE(601), + [sym_subscript_expression] = STATE(601), + [sym_call_expression] = STATE(601), + [sym_field_expression] = STATE(601), + [sym_compound_literal_expression] = STATE(601), + [sym_parenthesized_expression] = STATE(601), + [sym_char_literal] = STATE(601), + [sym_concatenated_string] = STATE(601), + [sym_string_literal] = STATE(214), + [anon_sym_LPAREN2] = ACTIONS(461), + [anon_sym_STAR] = ACTIONS(463), + [anon_sym_AMP] = ACTIONS(463), + [anon_sym_BANG] = ACTIONS(465), + [anon_sym_TILDE] = ACTIONS(467), + [anon_sym_PLUS] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(469), + [anon_sym_DASH_DASH] = ACTIONS(471), + [anon_sym_PLUS_PLUS] = ACTIONS(471), + [anon_sym_sizeof] = ACTIONS(473), + [sym_number_literal] = ACTIONS(1583), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(1585), + [sym_false] = ACTIONS(1585), + [sym_null] = ACTIONS(1585), + [sym_identifier] = ACTIONS(1585), + [sym_comment] = ACTIONS(59), }, [397] = { - [anon_sym_while] = ACTIONS(1539), - [sym_comment] = ACTIONS(37), + [sym__expression] = STATE(602), + [sym_conditional_expression] = STATE(602), + [sym_assignment_expression] = STATE(602), + [sym_pointer_expression] = STATE(602), + [sym_logical_expression] = STATE(602), + [sym_bitwise_expression] = STATE(602), + [sym_equality_expression] = STATE(602), + [sym_relational_expression] = STATE(602), + [sym_shift_expression] = STATE(602), + [sym_math_expression] = STATE(602), + [sym_cast_expression] = STATE(602), + [sym_sizeof_expression] = STATE(602), + [sym_subscript_expression] = STATE(602), + [sym_call_expression] = STATE(602), + [sym_field_expression] = STATE(602), + [sym_compound_literal_expression] = STATE(602), + [sym_parenthesized_expression] = STATE(602), + [sym_char_literal] = STATE(602), + [sym_concatenated_string] = STATE(602), + [sym_string_literal] = STATE(214), + [anon_sym_LPAREN2] = ACTIONS(461), + [anon_sym_STAR] = ACTIONS(463), + [anon_sym_AMP] = ACTIONS(463), + [anon_sym_BANG] = ACTIONS(465), + [anon_sym_TILDE] = ACTIONS(467), + [anon_sym_PLUS] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(469), + [anon_sym_DASH_DASH] = ACTIONS(471), + [anon_sym_PLUS_PLUS] = ACTIONS(471), + [anon_sym_sizeof] = ACTIONS(473), + [sym_number_literal] = ACTIONS(1587), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(1589), + [sym_false] = ACTIONS(1589), + [sym_null] = ACTIONS(1589), + [sym_identifier] = ACTIONS(1589), + [sym_comment] = ACTIONS(59), }, [398] = { - [sym_declaration] = STATE(661), - [sym__declaration_specifiers] = STATE(650), - [sym_storage_class_specifier] = STATE(87), - [sym_type_qualifier] = STATE(87), - [sym__type_specifier] = STATE(86), - [sym_sized_type_specifier] = STATE(86), - [sym_enum_specifier] = STATE(86), - [sym_struct_specifier] = STATE(86), - [sym_union_specifier] = STATE(86), - [sym__expression] = STATE(663), - [sym_conditional_expression] = STATE(663), - [sym_assignment_expression] = STATE(663), - [sym_pointer_expression] = STATE(663), - [sym_logical_expression] = STATE(663), - [sym_bitwise_expression] = STATE(663), - [sym_equality_expression] = STATE(663), - [sym_relational_expression] = STATE(663), - [sym_shift_expression] = STATE(663), - [sym_math_expression] = STATE(663), - [sym_cast_expression] = STATE(663), - [sym_sizeof_expression] = STATE(663), - [sym_subscript_expression] = STATE(663), - [sym_call_expression] = STATE(663), - [sym_field_expression] = STATE(663), - [sym_compound_literal_expression] = STATE(663), - [sym_parenthesized_expression] = STATE(663), - [sym_char_literal] = STATE(663), - [sym_concatenated_string] = STATE(663), - [sym_string_literal] = STATE(342), - [sym_macro_type_specifier] = STATE(86), - [aux_sym__declaration_specifiers_repeat1] = STATE(87), - [aux_sym_sized_type_specifier_repeat1] = STATE(88), - [anon_sym_SEMI] = ACTIONS(1541), - [anon_sym_extern] = ACTIONS(21), - [anon_sym_LPAREN2] = ACTIONS(780), - [anon_sym_STAR] = ACTIONS(782), - [anon_sym_static] = ACTIONS(21), - [anon_sym_auto] = ACTIONS(21), - [anon_sym_register] = ACTIONS(21), - [anon_sym_inline] = ACTIONS(21), - [anon_sym_const] = ACTIONS(23), - [anon_sym_restrict] = ACTIONS(23), - [anon_sym_volatile] = ACTIONS(23), - [anon_sym__Atomic] = ACTIONS(23), - [anon_sym_unsigned] = ACTIONS(167), - [anon_sym_long] = ACTIONS(167), - [anon_sym_short] = ACTIONS(167), - [sym_primitive_type] = ACTIONS(169), - [anon_sym_enum] = ACTIONS(29), - [anon_sym_struct] = ACTIONS(31), - [anon_sym_union] = ACTIONS(33), - [anon_sym_AMP] = ACTIONS(782), - [anon_sym_BANG] = ACTIONS(784), - [anon_sym_TILDE] = ACTIONS(786), - [anon_sym_PLUS] = ACTIONS(788), - [anon_sym_DASH] = ACTIONS(788), - [anon_sym_DASH_DASH] = ACTIONS(790), - [anon_sym_PLUS_PLUS] = ACTIONS(790), - [anon_sym_sizeof] = ACTIONS(792), - [sym_number_literal] = ACTIONS(1543), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(1545), - [sym_false] = ACTIONS(1545), - [sym_null] = ACTIONS(1545), - [sym_identifier] = ACTIONS(1547), - [sym_comment] = ACTIONS(37), + [sym__expression] = STATE(603), + [sym_conditional_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_pointer_expression] = STATE(603), + [sym_logical_expression] = STATE(603), + [sym_bitwise_expression] = STATE(603), + [sym_equality_expression] = STATE(603), + [sym_relational_expression] = STATE(603), + [sym_shift_expression] = STATE(603), + [sym_math_expression] = STATE(603), + [sym_cast_expression] = STATE(603), + [sym_sizeof_expression] = STATE(603), + [sym_subscript_expression] = STATE(603), + [sym_call_expression] = STATE(603), + [sym_field_expression] = STATE(603), + [sym_compound_literal_expression] = STATE(603), + [sym_parenthesized_expression] = STATE(603), + [sym_char_literal] = STATE(603), + [sym_concatenated_string] = STATE(603), + [sym_string_literal] = STATE(214), + [anon_sym_LPAREN2] = ACTIONS(461), + [anon_sym_STAR] = ACTIONS(463), + [anon_sym_AMP] = ACTIONS(463), + [anon_sym_BANG] = ACTIONS(465), + [anon_sym_TILDE] = ACTIONS(467), + [anon_sym_PLUS] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(469), + [anon_sym_DASH_DASH] = ACTIONS(471), + [anon_sym_PLUS_PLUS] = ACTIONS(471), + [anon_sym_sizeof] = ACTIONS(473), + [sym_number_literal] = ACTIONS(1591), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(1593), + [sym_false] = ACTIONS(1593), + [sym_null] = ACTIONS(1593), + [sym_identifier] = ACTIONS(1593), + [sym_comment] = ACTIONS(59), }, [399] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1549), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1549), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1549), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1549), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1549), - [sym_preproc_directive] = ACTIONS(1549), - [anon_sym_SEMI] = ACTIONS(1551), - [anon_sym_typedef] = ACTIONS(1549), - [anon_sym_extern] = ACTIONS(1549), - [anon_sym_LBRACE] = ACTIONS(1551), - [anon_sym_RBRACE] = ACTIONS(1551), - [anon_sym_LPAREN2] = ACTIONS(1551), - [anon_sym_STAR] = ACTIONS(1551), - [anon_sym_static] = ACTIONS(1549), - [anon_sym_auto] = ACTIONS(1549), - [anon_sym_register] = ACTIONS(1549), - [anon_sym_inline] = ACTIONS(1549), - [anon_sym_const] = ACTIONS(1549), - [anon_sym_restrict] = ACTIONS(1549), - [anon_sym_volatile] = ACTIONS(1549), - [anon_sym__Atomic] = ACTIONS(1549), - [anon_sym_unsigned] = ACTIONS(1549), - [anon_sym_long] = ACTIONS(1549), - [anon_sym_short] = ACTIONS(1549), - [sym_primitive_type] = ACTIONS(1549), - [anon_sym_enum] = ACTIONS(1549), - [anon_sym_struct] = ACTIONS(1549), - [anon_sym_union] = ACTIONS(1549), - [anon_sym_if] = ACTIONS(1549), - [anon_sym_else] = ACTIONS(1549), - [anon_sym_switch] = ACTIONS(1549), - [anon_sym_case] = ACTIONS(1549), - [anon_sym_default] = ACTIONS(1549), - [anon_sym_while] = ACTIONS(1549), - [anon_sym_do] = ACTIONS(1549), - [anon_sym_for] = ACTIONS(1549), - [anon_sym_return] = ACTIONS(1549), - [anon_sym_break] = ACTIONS(1549), - [anon_sym_continue] = ACTIONS(1549), - [anon_sym_goto] = ACTIONS(1549), - [anon_sym_AMP] = ACTIONS(1551), - [anon_sym_BANG] = ACTIONS(1551), - [anon_sym_TILDE] = ACTIONS(1551), - [anon_sym_PLUS] = ACTIONS(1549), - [anon_sym_DASH] = ACTIONS(1549), - [anon_sym_DASH_DASH] = ACTIONS(1551), - [anon_sym_PLUS_PLUS] = ACTIONS(1551), - [anon_sym_sizeof] = ACTIONS(1549), - [sym_number_literal] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1551), - [anon_sym_DQUOTE] = ACTIONS(1551), - [sym_true] = ACTIONS(1549), - [sym_false] = ACTIONS(1549), - [sym_null] = ACTIONS(1549), - [sym_identifier] = ACTIONS(1549), - [sym_comment] = ACTIONS(37), + [sym__expression] = STATE(604), + [sym_conditional_expression] = STATE(604), + [sym_assignment_expression] = STATE(604), + [sym_pointer_expression] = STATE(604), + [sym_logical_expression] = STATE(604), + [sym_bitwise_expression] = STATE(604), + [sym_equality_expression] = STATE(604), + [sym_relational_expression] = STATE(604), + [sym_shift_expression] = STATE(604), + [sym_math_expression] = STATE(604), + [sym_cast_expression] = STATE(604), + [sym_sizeof_expression] = STATE(604), + [sym_subscript_expression] = STATE(604), + [sym_call_expression] = STATE(604), + [sym_field_expression] = STATE(604), + [sym_compound_literal_expression] = STATE(604), + [sym_parenthesized_expression] = STATE(604), + [sym_char_literal] = STATE(604), + [sym_concatenated_string] = STATE(604), + [sym_string_literal] = STATE(214), + [anon_sym_LPAREN2] = ACTIONS(461), + [anon_sym_STAR] = ACTIONS(463), + [anon_sym_AMP] = ACTIONS(463), + [anon_sym_BANG] = ACTIONS(465), + [anon_sym_TILDE] = ACTIONS(467), + [anon_sym_PLUS] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(469), + [anon_sym_DASH_DASH] = ACTIONS(471), + [anon_sym_PLUS_PLUS] = ACTIONS(471), + [anon_sym_sizeof] = ACTIONS(473), + [sym_number_literal] = ACTIONS(1595), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(1597), + [sym_false] = ACTIONS(1597), + [sym_null] = ACTIONS(1597), + [sym_identifier] = ACTIONS(1597), + [sym_comment] = ACTIONS(59), }, [400] = { - [sym_argument_list] = STATE(430), - [anon_sym_SEMI] = ACTIONS(1553), - [anon_sym_LPAREN2] = ACTIONS(1012), - [anon_sym_STAR] = ACTIONS(1319), - [anon_sym_LBRACK] = ACTIONS(1016), - [anon_sym_EQ] = ACTIONS(1321), - [anon_sym_QMARK] = ACTIONS(1323), - [anon_sym_STAR_EQ] = ACTIONS(1325), - [anon_sym_SLASH_EQ] = ACTIONS(1325), - [anon_sym_PERCENT_EQ] = ACTIONS(1325), - [anon_sym_PLUS_EQ] = ACTIONS(1325), - [anon_sym_DASH_EQ] = ACTIONS(1325), - [anon_sym_LT_LT_EQ] = ACTIONS(1325), - [anon_sym_GT_GT_EQ] = ACTIONS(1325), - [anon_sym_AMP_EQ] = ACTIONS(1325), - [anon_sym_CARET_EQ] = ACTIONS(1325), - [anon_sym_PIPE_EQ] = ACTIONS(1325), - [anon_sym_AMP] = ACTIONS(1327), - [anon_sym_PIPE_PIPE] = ACTIONS(1329), - [anon_sym_AMP_AMP] = ACTIONS(1331), - [anon_sym_PIPE] = ACTIONS(1333), - [anon_sym_CARET] = ACTIONS(1335), - [anon_sym_EQ_EQ] = ACTIONS(1337), - [anon_sym_BANG_EQ] = ACTIONS(1337), - [anon_sym_LT] = ACTIONS(1339), - [anon_sym_GT] = ACTIONS(1339), - [anon_sym_LT_EQ] = ACTIONS(1341), - [anon_sym_GT_EQ] = ACTIONS(1341), - [anon_sym_LT_LT] = ACTIONS(1343), - [anon_sym_GT_GT] = ACTIONS(1343), - [anon_sym_PLUS] = ACTIONS(1345), - [anon_sym_DASH] = ACTIONS(1345), - [anon_sym_SLASH] = ACTIONS(1319), - [anon_sym_PERCENT] = ACTIONS(1319), - [anon_sym_DASH_DASH] = ACTIONS(1044), - [anon_sym_PLUS_PLUS] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1046), - [anon_sym_DASH_GT] = ACTIONS(1046), - [sym_comment] = ACTIONS(37), + [sym__expression] = STATE(605), + [sym_conditional_expression] = STATE(605), + [sym_assignment_expression] = STATE(605), + [sym_pointer_expression] = STATE(605), + [sym_logical_expression] = STATE(605), + [sym_bitwise_expression] = STATE(605), + [sym_equality_expression] = STATE(605), + [sym_relational_expression] = STATE(605), + [sym_shift_expression] = STATE(605), + [sym_math_expression] = STATE(605), + [sym_cast_expression] = STATE(605), + [sym_sizeof_expression] = STATE(605), + [sym_subscript_expression] = STATE(605), + [sym_call_expression] = STATE(605), + [sym_field_expression] = STATE(605), + [sym_compound_literal_expression] = STATE(605), + [sym_parenthesized_expression] = STATE(605), + [sym_char_literal] = STATE(605), + [sym_concatenated_string] = STATE(605), + [sym_string_literal] = STATE(214), + [anon_sym_LPAREN2] = ACTIONS(461), + [anon_sym_STAR] = ACTIONS(463), + [anon_sym_AMP] = ACTIONS(463), + [anon_sym_BANG] = ACTIONS(465), + [anon_sym_TILDE] = ACTIONS(467), + [anon_sym_PLUS] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(469), + [anon_sym_DASH_DASH] = ACTIONS(471), + [anon_sym_PLUS_PLUS] = ACTIONS(471), + [anon_sym_sizeof] = ACTIONS(473), + [sym_number_literal] = ACTIONS(1599), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(1601), + [sym_false] = ACTIONS(1601), + [sym_null] = ACTIONS(1601), + [sym_identifier] = ACTIONS(1601), + [sym_comment] = ACTIONS(59), }, [401] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1555), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1555), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1555), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1555), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1555), - [sym_preproc_directive] = ACTIONS(1555), - [anon_sym_SEMI] = ACTIONS(1557), - [anon_sym_typedef] = ACTIONS(1555), - [anon_sym_extern] = ACTIONS(1555), - [anon_sym_LBRACE] = ACTIONS(1557), - [anon_sym_RBRACE] = ACTIONS(1557), - [anon_sym_LPAREN2] = ACTIONS(1557), - [anon_sym_STAR] = ACTIONS(1557), - [anon_sym_static] = ACTIONS(1555), - [anon_sym_auto] = ACTIONS(1555), - [anon_sym_register] = ACTIONS(1555), - [anon_sym_inline] = ACTIONS(1555), - [anon_sym_const] = ACTIONS(1555), - [anon_sym_restrict] = ACTIONS(1555), - [anon_sym_volatile] = ACTIONS(1555), - [anon_sym__Atomic] = ACTIONS(1555), - [anon_sym_unsigned] = ACTIONS(1555), - [anon_sym_long] = ACTIONS(1555), - [anon_sym_short] = ACTIONS(1555), - [sym_primitive_type] = ACTIONS(1555), - [anon_sym_enum] = ACTIONS(1555), - [anon_sym_struct] = ACTIONS(1555), - [anon_sym_union] = ACTIONS(1555), - [anon_sym_if] = ACTIONS(1555), - [anon_sym_else] = ACTIONS(1555), - [anon_sym_switch] = ACTIONS(1555), - [anon_sym_case] = ACTIONS(1555), - [anon_sym_default] = ACTIONS(1555), - [anon_sym_while] = ACTIONS(1555), - [anon_sym_do] = ACTIONS(1555), - [anon_sym_for] = ACTIONS(1555), - [anon_sym_return] = ACTIONS(1555), - [anon_sym_break] = ACTIONS(1555), - [anon_sym_continue] = ACTIONS(1555), - [anon_sym_goto] = ACTIONS(1555), - [anon_sym_AMP] = ACTIONS(1557), - [anon_sym_BANG] = ACTIONS(1557), - [anon_sym_TILDE] = ACTIONS(1557), - [anon_sym_PLUS] = ACTIONS(1555), - [anon_sym_DASH] = ACTIONS(1555), - [anon_sym_DASH_DASH] = ACTIONS(1557), - [anon_sym_PLUS_PLUS] = ACTIONS(1557), - [anon_sym_sizeof] = ACTIONS(1555), - [sym_number_literal] = ACTIONS(1557), - [anon_sym_SQUOTE] = ACTIONS(1557), - [anon_sym_DQUOTE] = ACTIONS(1557), - [sym_true] = ACTIONS(1555), - [sym_false] = ACTIONS(1555), - [sym_null] = ACTIONS(1555), - [sym_identifier] = ACTIONS(1555), - [sym_comment] = ACTIONS(37), + [sym__expression] = STATE(606), + [sym_conditional_expression] = STATE(606), + [sym_assignment_expression] = STATE(606), + [sym_pointer_expression] = STATE(606), + [sym_logical_expression] = STATE(606), + [sym_bitwise_expression] = STATE(606), + [sym_equality_expression] = STATE(606), + [sym_relational_expression] = STATE(606), + [sym_shift_expression] = STATE(606), + [sym_math_expression] = STATE(606), + [sym_cast_expression] = STATE(606), + [sym_sizeof_expression] = STATE(606), + [sym_subscript_expression] = STATE(606), + [sym_call_expression] = STATE(606), + [sym_field_expression] = STATE(606), + [sym_compound_literal_expression] = STATE(606), + [sym_parenthesized_expression] = STATE(606), + [sym_char_literal] = STATE(606), + [sym_concatenated_string] = STATE(606), + [sym_string_literal] = STATE(214), + [anon_sym_LPAREN2] = ACTIONS(461), + [anon_sym_STAR] = ACTIONS(463), + [anon_sym_AMP] = ACTIONS(463), + [anon_sym_BANG] = ACTIONS(465), + [anon_sym_TILDE] = ACTIONS(467), + [anon_sym_PLUS] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(469), + [anon_sym_DASH_DASH] = ACTIONS(471), + [anon_sym_PLUS_PLUS] = ACTIONS(471), + [anon_sym_sizeof] = ACTIONS(473), + [sym_number_literal] = ACTIONS(1603), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(1605), + [sym_false] = ACTIONS(1605), + [sym_null] = ACTIONS(1605), + [sym_identifier] = ACTIONS(1605), + [sym_comment] = ACTIONS(59), }, [402] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1559), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1559), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1559), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1559), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1559), - [sym_preproc_directive] = ACTIONS(1559), - [anon_sym_SEMI] = ACTIONS(1561), - [anon_sym_typedef] = ACTIONS(1559), - [anon_sym_extern] = ACTIONS(1559), - [anon_sym_LBRACE] = ACTIONS(1561), - [anon_sym_RBRACE] = ACTIONS(1561), - [anon_sym_LPAREN2] = ACTIONS(1561), - [anon_sym_STAR] = ACTIONS(1561), - [anon_sym_static] = ACTIONS(1559), - [anon_sym_auto] = ACTIONS(1559), - [anon_sym_register] = ACTIONS(1559), - [anon_sym_inline] = ACTIONS(1559), - [anon_sym_const] = ACTIONS(1559), - [anon_sym_restrict] = ACTIONS(1559), - [anon_sym_volatile] = ACTIONS(1559), - [anon_sym__Atomic] = ACTIONS(1559), - [anon_sym_unsigned] = ACTIONS(1559), - [anon_sym_long] = ACTIONS(1559), - [anon_sym_short] = ACTIONS(1559), - [sym_primitive_type] = ACTIONS(1559), - [anon_sym_enum] = ACTIONS(1559), - [anon_sym_struct] = ACTIONS(1559), - [anon_sym_union] = ACTIONS(1559), - [anon_sym_if] = ACTIONS(1559), - [anon_sym_else] = ACTIONS(1559), - [anon_sym_switch] = ACTIONS(1559), - [anon_sym_case] = ACTIONS(1559), - [anon_sym_default] = ACTIONS(1559), - [anon_sym_while] = ACTIONS(1559), - [anon_sym_do] = ACTIONS(1559), - [anon_sym_for] = ACTIONS(1559), - [anon_sym_return] = ACTIONS(1559), - [anon_sym_break] = ACTIONS(1559), - [anon_sym_continue] = ACTIONS(1559), - [anon_sym_goto] = ACTIONS(1559), - [anon_sym_AMP] = ACTIONS(1561), - [anon_sym_BANG] = ACTIONS(1561), - [anon_sym_TILDE] = ACTIONS(1561), - [anon_sym_PLUS] = ACTIONS(1559), - [anon_sym_DASH] = ACTIONS(1559), - [anon_sym_DASH_DASH] = ACTIONS(1561), - [anon_sym_PLUS_PLUS] = ACTIONS(1561), - [anon_sym_sizeof] = ACTIONS(1559), - [sym_number_literal] = ACTIONS(1561), - [anon_sym_SQUOTE] = ACTIONS(1561), - [anon_sym_DQUOTE] = ACTIONS(1561), - [sym_true] = ACTIONS(1559), - [sym_false] = ACTIONS(1559), - [sym_null] = ACTIONS(1559), - [sym_identifier] = ACTIONS(1559), - [sym_comment] = ACTIONS(37), + [sym_string_literal] = STATE(607), + [aux_sym_concatenated_string_repeat1] = STATE(607), + [anon_sym_LPAREN2] = ACTIONS(547), + [anon_sym_STAR] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_RBRACK] = ACTIONS(547), + [anon_sym_EQ] = ACTIONS(549), + [anon_sym_QMARK] = ACTIONS(547), + [anon_sym_STAR_EQ] = ACTIONS(547), + [anon_sym_SLASH_EQ] = ACTIONS(547), + [anon_sym_PERCENT_EQ] = ACTIONS(547), + [anon_sym_PLUS_EQ] = ACTIONS(547), + [anon_sym_DASH_EQ] = ACTIONS(547), + [anon_sym_LT_LT_EQ] = ACTIONS(547), + [anon_sym_GT_GT_EQ] = ACTIONS(547), + [anon_sym_AMP_EQ] = ACTIONS(547), + [anon_sym_CARET_EQ] = ACTIONS(547), + [anon_sym_PIPE_EQ] = ACTIONS(547), + [anon_sym_AMP] = ACTIONS(549), + [anon_sym_PIPE_PIPE] = ACTIONS(547), + [anon_sym_AMP_AMP] = ACTIONS(547), + [anon_sym_PIPE] = ACTIONS(549), + [anon_sym_CARET] = ACTIONS(549), + [anon_sym_EQ_EQ] = ACTIONS(547), + [anon_sym_BANG_EQ] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(549), + [anon_sym_GT] = ACTIONS(549), + [anon_sym_LT_EQ] = ACTIONS(547), + [anon_sym_GT_EQ] = ACTIONS(547), + [anon_sym_LT_LT] = ACTIONS(549), + [anon_sym_GT_GT] = ACTIONS(549), + [anon_sym_PLUS] = ACTIONS(549), + [anon_sym_DASH] = ACTIONS(549), + [anon_sym_SLASH] = ACTIONS(549), + [anon_sym_PERCENT] = ACTIONS(549), + [anon_sym_DASH_DASH] = ACTIONS(547), + [anon_sym_PLUS_PLUS] = ACTIONS(547), + [anon_sym_DOT] = ACTIONS(547), + [anon_sym_DASH_GT] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_comment] = ACTIONS(59), }, [403] = { - [anon_sym_SEMI] = ACTIONS(1563), - [sym_comment] = ACTIONS(37), + [anon_sym_RPAREN] = ACTIONS(1607), + [sym_comment] = ACTIONS(59), }, [404] = { - [sym_argument_list] = STATE(430), - [anon_sym_COMMA] = ACTIONS(1565), - [anon_sym_RPAREN] = ACTIONS(1565), - [anon_sym_SEMI] = ACTIONS(1565), - [anon_sym_RBRACE] = ACTIONS(1565), - [anon_sym_LPAREN2] = ACTIONS(1012), - [anon_sym_STAR] = ACTIONS(1567), - [anon_sym_LBRACK] = ACTIONS(1016), - [anon_sym_RBRACK] = ACTIONS(1565), - [anon_sym_EQ] = ACTIONS(1567), - [anon_sym_COLON] = ACTIONS(1565), - [anon_sym_QMARK] = ACTIONS(1565), - [anon_sym_STAR_EQ] = ACTIONS(1565), - [anon_sym_SLASH_EQ] = ACTIONS(1565), - [anon_sym_PERCENT_EQ] = ACTIONS(1565), - [anon_sym_PLUS_EQ] = ACTIONS(1565), - [anon_sym_DASH_EQ] = ACTIONS(1565), - [anon_sym_LT_LT_EQ] = ACTIONS(1565), - [anon_sym_GT_GT_EQ] = ACTIONS(1565), - [anon_sym_AMP_EQ] = ACTIONS(1565), - [anon_sym_CARET_EQ] = ACTIONS(1565), - [anon_sym_PIPE_EQ] = ACTIONS(1565), - [anon_sym_AMP] = ACTIONS(1567), - [anon_sym_PIPE_PIPE] = ACTIONS(1565), - [anon_sym_AMP_AMP] = ACTIONS(1565), - [anon_sym_PIPE] = ACTIONS(1567), - [anon_sym_CARET] = ACTIONS(1567), - [anon_sym_EQ_EQ] = ACTIONS(1565), - [anon_sym_BANG_EQ] = ACTIONS(1565), - [anon_sym_LT] = ACTIONS(1567), - [anon_sym_GT] = ACTIONS(1567), - [anon_sym_LT_EQ] = ACTIONS(1565), - [anon_sym_GT_EQ] = ACTIONS(1565), - [anon_sym_LT_LT] = ACTIONS(1567), - [anon_sym_GT_GT] = ACTIONS(1567), - [anon_sym_PLUS] = ACTIONS(1567), - [anon_sym_DASH] = ACTIONS(1567), - [anon_sym_SLASH] = ACTIONS(1567), - [anon_sym_PERCENT] = ACTIONS(1567), - [anon_sym_DASH_DASH] = ACTIONS(1565), - [anon_sym_PLUS_PLUS] = ACTIONS(1565), - [anon_sym_DOT] = ACTIONS(1046), - [anon_sym_DASH_GT] = ACTIONS(1046), - [sym_comment] = ACTIONS(37), + [sym_type_qualifier] = STATE(56), + [sym__type_specifier] = STATE(51), + [sym_sized_type_specifier] = STATE(51), + [sym_enum_specifier] = STATE(51), + [sym_struct_specifier] = STATE(51), + [sym_union_specifier] = STATE(51), + [sym__expression] = STATE(52), + [sym_comma_expression] = STATE(53), + [sym_conditional_expression] = STATE(52), + [sym_assignment_expression] = STATE(52), + [sym_pointer_expression] = STATE(52), + [sym_logical_expression] = STATE(52), + [sym_bitwise_expression] = STATE(52), + [sym_equality_expression] = STATE(52), + [sym_relational_expression] = STATE(52), + [sym_shift_expression] = STATE(52), + [sym_math_expression] = STATE(52), + [sym_cast_expression] = STATE(52), + [sym_type_descriptor] = STATE(609), + [sym_sizeof_expression] = STATE(52), + [sym_subscript_expression] = STATE(52), + [sym_call_expression] = STATE(52), + [sym_field_expression] = STATE(52), + [sym_compound_literal_expression] = STATE(52), + [sym_parenthesized_expression] = STATE(52), + [sym_char_literal] = STATE(52), + [sym_concatenated_string] = STATE(52), + [sym_string_literal] = STATE(55), + [sym_macro_type_specifier] = STATE(51), + [aux_sym_type_definition_repeat1] = STATE(56), + [aux_sym_sized_type_specifier_repeat1] = STATE(57), + [anon_sym_LPAREN2] = ACTIONS(85), + [anon_sym_STAR] = ACTIONS(87), + [anon_sym_const] = ACTIONS(27), + [anon_sym_restrict] = ACTIONS(27), + [anon_sym_volatile] = ACTIONS(27), + [anon_sym__Atomic] = ACTIONS(27), + [anon_sym_unsigned] = ACTIONS(89), + [anon_sym_long] = ACTIONS(89), + [anon_sym_short] = ACTIONS(89), + [sym_primitive_type] = ACTIONS(91), + [anon_sym_enum] = ACTIONS(33), + [anon_sym_struct] = ACTIONS(35), + [anon_sym_union] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_PLUS] = ACTIONS(97), + [anon_sym_DASH] = ACTIONS(97), + [anon_sym_DASH_DASH] = ACTIONS(99), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(105), + [sym_false] = ACTIONS(105), + [sym_null] = ACTIONS(105), + [sym_identifier] = ACTIONS(107), + [sym_comment] = ACTIONS(59), }, [405] = { - [sym_argument_list] = STATE(430), - [anon_sym_COMMA] = ACTIONS(1569), - [anon_sym_RPAREN] = ACTIONS(1569), - [anon_sym_SEMI] = ACTIONS(1569), - [anon_sym_RBRACE] = ACTIONS(1569), - [anon_sym_LPAREN2] = ACTIONS(1012), - [anon_sym_STAR] = ACTIONS(1571), - [anon_sym_LBRACK] = ACTIONS(1016), - [anon_sym_RBRACK] = ACTIONS(1569), - [anon_sym_EQ] = ACTIONS(1571), - [anon_sym_COLON] = ACTIONS(1569), - [anon_sym_QMARK] = ACTIONS(1569), - [anon_sym_STAR_EQ] = ACTIONS(1569), - [anon_sym_SLASH_EQ] = ACTIONS(1569), - [anon_sym_PERCENT_EQ] = ACTIONS(1569), - [anon_sym_PLUS_EQ] = ACTIONS(1569), - [anon_sym_DASH_EQ] = ACTIONS(1569), - [anon_sym_LT_LT_EQ] = ACTIONS(1569), - [anon_sym_GT_GT_EQ] = ACTIONS(1569), - [anon_sym_AMP_EQ] = ACTIONS(1569), - [anon_sym_CARET_EQ] = ACTIONS(1569), - [anon_sym_PIPE_EQ] = ACTIONS(1569), - [anon_sym_AMP] = ACTIONS(1571), - [anon_sym_PIPE_PIPE] = ACTIONS(1569), - [anon_sym_AMP_AMP] = ACTIONS(1569), - [anon_sym_PIPE] = ACTIONS(1571), - [anon_sym_CARET] = ACTIONS(1571), - [anon_sym_EQ_EQ] = ACTIONS(1569), - [anon_sym_BANG_EQ] = ACTIONS(1569), - [anon_sym_LT] = ACTIONS(1571), - [anon_sym_GT] = ACTIONS(1571), - [anon_sym_LT_EQ] = ACTIONS(1569), - [anon_sym_GT_EQ] = ACTIONS(1569), - [anon_sym_LT_LT] = ACTIONS(1571), - [anon_sym_GT_GT] = ACTIONS(1571), - [anon_sym_PLUS] = ACTIONS(1571), - [anon_sym_DASH] = ACTIONS(1571), - [anon_sym_SLASH] = ACTIONS(1571), - [anon_sym_PERCENT] = ACTIONS(1571), - [anon_sym_DASH_DASH] = ACTIONS(1569), - [anon_sym_PLUS_PLUS] = ACTIONS(1569), - [anon_sym_DOT] = ACTIONS(1046), - [anon_sym_DASH_GT] = ACTIONS(1046), - [sym_comment] = ACTIONS(37), + [sym_argument_list] = STATE(98), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(1054), + [anon_sym_LBRACK] = ACTIONS(188), + [anon_sym_EQ] = ACTIONS(411), + [anon_sym_COLON] = ACTIONS(413), + [anon_sym_QMARK] = ACTIONS(413), + [anon_sym_STAR_EQ] = ACTIONS(413), + [anon_sym_SLASH_EQ] = ACTIONS(413), + [anon_sym_PERCENT_EQ] = ACTIONS(413), + [anon_sym_PLUS_EQ] = ACTIONS(413), + [anon_sym_DASH_EQ] = ACTIONS(413), + [anon_sym_LT_LT_EQ] = ACTIONS(413), + [anon_sym_GT_GT_EQ] = ACTIONS(413), + [anon_sym_AMP_EQ] = ACTIONS(413), + [anon_sym_CARET_EQ] = ACTIONS(413), + [anon_sym_PIPE_EQ] = ACTIONS(413), + [anon_sym_AMP] = ACTIONS(411), + [anon_sym_PIPE_PIPE] = ACTIONS(413), + [anon_sym_AMP_AMP] = ACTIONS(413), + [anon_sym_PIPE] = ACTIONS(411), + [anon_sym_CARET] = ACTIONS(411), + [anon_sym_EQ_EQ] = ACTIONS(413), + [anon_sym_BANG_EQ] = ACTIONS(413), + [anon_sym_LT] = ACTIONS(411), + [anon_sym_GT] = ACTIONS(411), + [anon_sym_LT_EQ] = ACTIONS(413), + [anon_sym_GT_EQ] = ACTIONS(413), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_GT_GT] = ACTIONS(1080), + [anon_sym_PLUS] = ACTIONS(1082), + [anon_sym_DASH] = ACTIONS(1082), + [anon_sym_SLASH] = ACTIONS(1054), + [anon_sym_PERCENT] = ACTIONS(1054), + [anon_sym_DASH_DASH] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(216), + [anon_sym_DOT] = ACTIONS(218), + [anon_sym_DASH_GT] = ACTIONS(218), + [sym_comment] = ACTIONS(59), }, [406] = { - [sym_argument_list] = STATE(430), - [anon_sym_COMMA] = ACTIONS(1573), - [anon_sym_RPAREN] = ACTIONS(1573), - [anon_sym_SEMI] = ACTIONS(1573), - [anon_sym_RBRACE] = ACTIONS(1573), - [anon_sym_LPAREN2] = ACTIONS(1012), - [anon_sym_STAR] = ACTIONS(1575), - [anon_sym_LBRACK] = ACTIONS(1016), - [anon_sym_RBRACK] = ACTIONS(1573), - [anon_sym_EQ] = ACTIONS(1575), - [anon_sym_COLON] = ACTIONS(1573), - [anon_sym_QMARK] = ACTIONS(1573), - [anon_sym_STAR_EQ] = ACTIONS(1573), - [anon_sym_SLASH_EQ] = ACTIONS(1573), - [anon_sym_PERCENT_EQ] = ACTIONS(1573), - [anon_sym_PLUS_EQ] = ACTIONS(1573), - [anon_sym_DASH_EQ] = ACTIONS(1573), - [anon_sym_LT_LT_EQ] = ACTIONS(1573), - [anon_sym_GT_GT_EQ] = ACTIONS(1573), - [anon_sym_AMP_EQ] = ACTIONS(1573), - [anon_sym_CARET_EQ] = ACTIONS(1573), - [anon_sym_PIPE_EQ] = ACTIONS(1573), - [anon_sym_AMP] = ACTIONS(1575), - [anon_sym_PIPE_PIPE] = ACTIONS(1573), - [anon_sym_AMP_AMP] = ACTIONS(1573), - [anon_sym_PIPE] = ACTIONS(1575), - [anon_sym_CARET] = ACTIONS(1575), - [anon_sym_EQ_EQ] = ACTIONS(1573), - [anon_sym_BANG_EQ] = ACTIONS(1573), - [anon_sym_LT] = ACTIONS(1575), - [anon_sym_GT] = ACTIONS(1575), - [anon_sym_LT_EQ] = ACTIONS(1573), - [anon_sym_GT_EQ] = ACTIONS(1573), - [anon_sym_LT_LT] = ACTIONS(1575), - [anon_sym_GT_GT] = ACTIONS(1575), - [anon_sym_PLUS] = ACTIONS(1575), - [anon_sym_DASH] = ACTIONS(1575), - [anon_sym_SLASH] = ACTIONS(1575), - [anon_sym_PERCENT] = ACTIONS(1575), - [anon_sym_DASH_DASH] = ACTIONS(1044), - [anon_sym_PLUS_PLUS] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1046), - [anon_sym_DASH_GT] = ACTIONS(1046), - [sym_comment] = ACTIONS(37), + [sym__expression] = STATE(206), + [sym_conditional_expression] = STATE(206), + [sym_assignment_expression] = STATE(206), + [sym_pointer_expression] = STATE(206), + [sym_logical_expression] = STATE(206), + [sym_bitwise_expression] = STATE(206), + [sym_equality_expression] = STATE(206), + [sym_relational_expression] = STATE(206), + [sym_shift_expression] = STATE(206), + [sym_math_expression] = STATE(206), + [sym_cast_expression] = STATE(206), + [sym_sizeof_expression] = STATE(206), + [sym_subscript_expression] = STATE(206), + [sym_call_expression] = STATE(206), + [sym_field_expression] = STATE(206), + [sym_compound_literal_expression] = STATE(206), + [sym_parenthesized_expression] = STATE(206), + [sym_char_literal] = STATE(206), + [sym_concatenated_string] = STATE(206), + [sym_string_literal] = STATE(223), + [anon_sym_LPAREN2] = ACTIONS(483), + [anon_sym_STAR] = ACTIONS(485), + [anon_sym_AMP] = ACTIONS(485), + [anon_sym_BANG] = ACTIONS(487), + [anon_sym_TILDE] = ACTIONS(489), + [anon_sym_PLUS] = ACTIONS(491), + [anon_sym_DASH] = ACTIONS(491), + [anon_sym_DASH_DASH] = ACTIONS(493), + [anon_sym_PLUS_PLUS] = ACTIONS(493), + [anon_sym_sizeof] = ACTIONS(495), + [sym_number_literal] = ACTIONS(457), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(459), + [sym_false] = ACTIONS(459), + [sym_null] = ACTIONS(459), + [sym_identifier] = ACTIONS(459), + [sym_comment] = ACTIONS(59), }, [407] = { - [sym_type_qualifier] = STATE(106), - [sym__type_specifier] = STATE(104), - [sym_sized_type_specifier] = STATE(104), - [sym_enum_specifier] = STATE(104), - [sym_struct_specifier] = STATE(104), - [sym_union_specifier] = STATE(104), - [sym__expression] = STATE(371), - [sym_comma_expression] = STATE(372), - [sym_conditional_expression] = STATE(371), - [sym_assignment_expression] = STATE(371), - [sym_pointer_expression] = STATE(371), - [sym_logical_expression] = STATE(371), - [sym_bitwise_expression] = STATE(371), - [sym_equality_expression] = STATE(371), - [sym_relational_expression] = STATE(371), - [sym_shift_expression] = STATE(371), - [sym_math_expression] = STATE(371), - [sym_cast_expression] = STATE(371), - [sym_type_descriptor] = STATE(666), - [sym_sizeof_expression] = STATE(371), - [sym_subscript_expression] = STATE(371), - [sym_call_expression] = STATE(371), - [sym_field_expression] = STATE(371), - [sym_compound_literal_expression] = STATE(371), - [sym_parenthesized_expression] = STATE(371), - [sym_char_literal] = STATE(371), - [sym_concatenated_string] = STATE(371), - [sym_string_literal] = STATE(374), - [sym_macro_type_specifier] = STATE(104), - [aux_sym_type_definition_repeat1] = STATE(106), - [aux_sym_sized_type_specifier_repeat1] = STATE(107), - [anon_sym_LPAREN2] = ACTIONS(892), - [anon_sym_STAR] = ACTIONS(894), - [anon_sym_const] = ACTIONS(23), - [anon_sym_restrict] = ACTIONS(23), - [anon_sym_volatile] = ACTIONS(23), - [anon_sym__Atomic] = ACTIONS(23), - [anon_sym_unsigned] = ACTIONS(211), - [anon_sym_long] = ACTIONS(211), - [anon_sym_short] = ACTIONS(211), - [sym_primitive_type] = ACTIONS(213), - [anon_sym_enum] = ACTIONS(29), - [anon_sym_struct] = ACTIONS(31), - [anon_sym_union] = ACTIONS(33), - [anon_sym_AMP] = ACTIONS(894), - [anon_sym_BANG] = ACTIONS(896), - [anon_sym_TILDE] = ACTIONS(898), - [anon_sym_PLUS] = ACTIONS(900), - [anon_sym_DASH] = ACTIONS(900), - [anon_sym_DASH_DASH] = ACTIONS(902), - [anon_sym_PLUS_PLUS] = ACTIONS(902), - [anon_sym_sizeof] = ACTIONS(904), - [sym_number_literal] = ACTIONS(906), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(908), - [sym_false] = ACTIONS(908), - [sym_null] = ACTIONS(908), - [sym_identifier] = ACTIONS(910), - [sym_comment] = ACTIONS(37), + [sym__expression] = STATE(610), + [sym_conditional_expression] = STATE(610), + [sym_assignment_expression] = STATE(610), + [sym_pointer_expression] = STATE(610), + [sym_logical_expression] = STATE(610), + [sym_bitwise_expression] = STATE(610), + [sym_equality_expression] = STATE(610), + [sym_relational_expression] = STATE(610), + [sym_shift_expression] = STATE(610), + [sym_math_expression] = STATE(610), + [sym_cast_expression] = STATE(610), + [sym_sizeof_expression] = STATE(610), + [sym_subscript_expression] = STATE(610), + [sym_call_expression] = STATE(610), + [sym_field_expression] = STATE(610), + [sym_compound_literal_expression] = STATE(610), + [sym_parenthesized_expression] = STATE(610), + [sym_char_literal] = STATE(610), + [sym_concatenated_string] = STATE(610), + [sym_string_literal] = STATE(223), + [anon_sym_LPAREN2] = ACTIONS(483), + [anon_sym_STAR] = ACTIONS(485), + [anon_sym_AMP] = ACTIONS(485), + [anon_sym_BANG] = ACTIONS(487), + [anon_sym_TILDE] = ACTIONS(489), + [anon_sym_PLUS] = ACTIONS(491), + [anon_sym_DASH] = ACTIONS(491), + [anon_sym_DASH_DASH] = ACTIONS(493), + [anon_sym_PLUS_PLUS] = ACTIONS(493), + [anon_sym_sizeof] = ACTIONS(495), + [sym_number_literal] = ACTIONS(1609), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(1611), + [sym_false] = ACTIONS(1611), + [sym_null] = ACTIONS(1611), + [sym_identifier] = ACTIONS(1611), + [sym_comment] = ACTIONS(59), }, [408] = { - [sym_argument_list] = STATE(430), - [anon_sym_COMMA] = ACTIONS(1577), - [anon_sym_SEMI] = ACTIONS(1577), - [anon_sym_LPAREN2] = ACTIONS(1012), - [anon_sym_STAR] = ACTIONS(1014), - [anon_sym_LBRACK] = ACTIONS(1016), - [anon_sym_EQ] = ACTIONS(1579), - [anon_sym_QMARK] = ACTIONS(1577), - [anon_sym_STAR_EQ] = ACTIONS(1577), - [anon_sym_SLASH_EQ] = ACTIONS(1577), - [anon_sym_PERCENT_EQ] = ACTIONS(1577), - [anon_sym_PLUS_EQ] = ACTIONS(1577), - [anon_sym_DASH_EQ] = ACTIONS(1577), - [anon_sym_LT_LT_EQ] = ACTIONS(1577), - [anon_sym_GT_GT_EQ] = ACTIONS(1577), - [anon_sym_AMP_EQ] = ACTIONS(1577), - [anon_sym_CARET_EQ] = ACTIONS(1577), - [anon_sym_PIPE_EQ] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(1579), - [anon_sym_PIPE_PIPE] = ACTIONS(1577), - [anon_sym_AMP_AMP] = ACTIONS(1577), - [anon_sym_PIPE] = ACTIONS(1579), - [anon_sym_CARET] = ACTIONS(1579), - [anon_sym_EQ_EQ] = ACTIONS(1577), - [anon_sym_BANG_EQ] = ACTIONS(1577), - [anon_sym_LT] = ACTIONS(1579), - [anon_sym_GT] = ACTIONS(1579), - [anon_sym_LT_EQ] = ACTIONS(1577), - [anon_sym_GT_EQ] = ACTIONS(1577), - [anon_sym_LT_LT] = ACTIONS(1040), - [anon_sym_GT_GT] = ACTIONS(1040), - [anon_sym_PLUS] = ACTIONS(1042), - [anon_sym_DASH] = ACTIONS(1042), - [anon_sym_SLASH] = ACTIONS(1014), - [anon_sym_PERCENT] = ACTIONS(1014), - [anon_sym_DASH_DASH] = ACTIONS(1044), - [anon_sym_PLUS_PLUS] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1046), - [anon_sym_DASH_GT] = ACTIONS(1046), - [sym_comment] = ACTIONS(37), + [sym__expression] = STATE(26), + [sym_conditional_expression] = STATE(26), + [sym_assignment_expression] = STATE(26), + [sym_pointer_expression] = STATE(26), + [sym_logical_expression] = STATE(26), + [sym_bitwise_expression] = STATE(26), + [sym_equality_expression] = STATE(26), + [sym_relational_expression] = STATE(26), + [sym_shift_expression] = STATE(26), + [sym_math_expression] = STATE(26), + [sym_cast_expression] = STATE(26), + [sym_sizeof_expression] = STATE(26), + [sym_subscript_expression] = STATE(26), + [sym_call_expression] = STATE(26), + [sym_field_expression] = STATE(26), + [sym_compound_literal_expression] = STATE(26), + [sym_parenthesized_expression] = STATE(26), + [sym_char_literal] = STATE(26), + [sym_concatenated_string] = STATE(26), + [sym_string_literal] = STATE(28), + [anon_sym_LPAREN2] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_AMP] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(41), + [anon_sym_PLUS] = ACTIONS(43), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_DASH_DASH] = ACTIONS(45), + [anon_sym_PLUS_PLUS] = ACTIONS(45), + [anon_sym_sizeof] = ACTIONS(47), + [sym_number_literal] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(55), + [sym_false] = ACTIONS(55), + [sym_null] = ACTIONS(55), + [sym_identifier] = ACTIONS(55), + [sym_comment] = ACTIONS(59), }, [409] = { - [anon_sym_SQUOTE] = ACTIONS(1581), - [sym_comment] = ACTIONS(37), + [sym__expression] = STATE(611), + [sym_conditional_expression] = STATE(611), + [sym_assignment_expression] = STATE(611), + [sym_pointer_expression] = STATE(611), + [sym_logical_expression] = STATE(611), + [sym_bitwise_expression] = STATE(611), + [sym_equality_expression] = STATE(611), + [sym_relational_expression] = STATE(611), + [sym_shift_expression] = STATE(611), + [sym_math_expression] = STATE(611), + [sym_cast_expression] = STATE(611), + [sym_sizeof_expression] = STATE(611), + [sym_subscript_expression] = STATE(611), + [sym_call_expression] = STATE(611), + [sym_field_expression] = STATE(611), + [sym_compound_literal_expression] = STATE(611), + [sym_parenthesized_expression] = STATE(611), + [sym_char_literal] = STATE(611), + [sym_concatenated_string] = STATE(611), + [sym_string_literal] = STATE(223), + [anon_sym_LPAREN2] = ACTIONS(483), + [anon_sym_STAR] = ACTIONS(485), + [anon_sym_AMP] = ACTIONS(485), + [anon_sym_BANG] = ACTIONS(487), + [anon_sym_TILDE] = ACTIONS(489), + [anon_sym_PLUS] = ACTIONS(491), + [anon_sym_DASH] = ACTIONS(491), + [anon_sym_DASH_DASH] = ACTIONS(493), + [anon_sym_PLUS_PLUS] = ACTIONS(493), + [anon_sym_sizeof] = ACTIONS(495), + [sym_number_literal] = ACTIONS(1613), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(1615), + [sym_false] = ACTIONS(1615), + [sym_null] = ACTIONS(1615), + [sym_identifier] = ACTIONS(1615), + [sym_comment] = ACTIONS(59), }, [410] = { - [sym_compound_statement] = STATE(668), - [sym_labeled_statement] = STATE(668), - [sym_expression_statement] = STATE(668), - [sym_if_statement] = STATE(668), - [sym_switch_statement] = STATE(668), - [sym_case_statement] = STATE(668), - [sym_while_statement] = STATE(668), - [sym_do_statement] = STATE(668), - [sym_for_statement] = STATE(668), - [sym_return_statement] = STATE(668), - [sym_break_statement] = STATE(668), - [sym_continue_statement] = STATE(668), - [sym_goto_statement] = STATE(668), - [sym__expression] = STATE(228), - [sym_comma_expression] = STATE(229), - [sym_conditional_expression] = STATE(228), - [sym_assignment_expression] = STATE(228), - [sym_pointer_expression] = STATE(228), - [sym_logical_expression] = STATE(228), - [sym_bitwise_expression] = STATE(228), - [sym_equality_expression] = STATE(228), - [sym_relational_expression] = STATE(228), - [sym_shift_expression] = STATE(228), - [sym_math_expression] = STATE(228), - [sym_cast_expression] = STATE(228), - [sym_sizeof_expression] = STATE(228), - [sym_subscript_expression] = STATE(228), - [sym_call_expression] = STATE(228), - [sym_field_expression] = STATE(228), - [sym_compound_literal_expression] = STATE(228), - [sym_parenthesized_expression] = STATE(228), - [sym_char_literal] = STATE(228), - [sym_concatenated_string] = STATE(228), - [sym_string_literal] = STATE(230), - [anon_sym_SEMI] = ACTIONS(503), - [anon_sym_LBRACE] = ACTIONS(229), - [anon_sym_LPAREN2] = ACTIONS(507), - [anon_sym_STAR] = ACTIONS(509), - [anon_sym_if] = ACTIONS(511), - [anon_sym_switch] = ACTIONS(513), - [anon_sym_case] = ACTIONS(515), - [anon_sym_default] = ACTIONS(517), - [anon_sym_while] = ACTIONS(519), - [anon_sym_do] = ACTIONS(521), - [anon_sym_for] = ACTIONS(523), - [anon_sym_return] = ACTIONS(525), - [anon_sym_break] = ACTIONS(527), - [anon_sym_continue] = ACTIONS(529), - [anon_sym_goto] = ACTIONS(531), - [anon_sym_AMP] = ACTIONS(509), - [anon_sym_BANG] = ACTIONS(533), - [anon_sym_TILDE] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DASH] = ACTIONS(537), - [anon_sym_DASH_DASH] = ACTIONS(539), - [anon_sym_PLUS_PLUS] = ACTIONS(539), - [anon_sym_sizeof] = ACTIONS(541), - [sym_number_literal] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(547), - [sym_false] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [sym_identifier] = ACTIONS(1489), - [sym_comment] = ACTIONS(37), + [sym__expression] = STATE(612), + [sym_conditional_expression] = STATE(612), + [sym_assignment_expression] = STATE(612), + [sym_pointer_expression] = STATE(612), + [sym_logical_expression] = STATE(612), + [sym_bitwise_expression] = STATE(612), + [sym_equality_expression] = STATE(612), + [sym_relational_expression] = STATE(612), + [sym_shift_expression] = STATE(612), + [sym_math_expression] = STATE(612), + [sym_cast_expression] = STATE(612), + [sym_sizeof_expression] = STATE(612), + [sym_subscript_expression] = STATE(612), + [sym_call_expression] = STATE(612), + [sym_field_expression] = STATE(612), + [sym_compound_literal_expression] = STATE(612), + [sym_parenthesized_expression] = STATE(612), + [sym_char_literal] = STATE(612), + [sym_concatenated_string] = STATE(612), + [sym_string_literal] = STATE(223), + [anon_sym_LPAREN2] = ACTIONS(483), + [anon_sym_STAR] = ACTIONS(485), + [anon_sym_AMP] = ACTIONS(485), + [anon_sym_BANG] = ACTIONS(487), + [anon_sym_TILDE] = ACTIONS(489), + [anon_sym_PLUS] = ACTIONS(491), + [anon_sym_DASH] = ACTIONS(491), + [anon_sym_DASH_DASH] = ACTIONS(493), + [anon_sym_PLUS_PLUS] = ACTIONS(493), + [anon_sym_sizeof] = ACTIONS(495), + [sym_number_literal] = ACTIONS(1617), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(1619), + [sym_false] = ACTIONS(1619), + [sym_null] = ACTIONS(1619), + [sym_identifier] = ACTIONS(1619), + [sym_comment] = ACTIONS(59), }, [411] = { - [sym_parameter_list] = STATE(119), - [aux_sym_declaration_repeat1] = STATE(120), - [anon_sym_COMMA] = ACTIONS(225), - [anon_sym_SEMI] = ACTIONS(227), - [anon_sym_LPAREN2] = ACTIONS(231), - [anon_sym_LBRACK] = ACTIONS(233), - [anon_sym_EQ] = ACTIONS(235), - [sym_comment] = ACTIONS(37), + [sym__expression] = STATE(613), + [sym_conditional_expression] = STATE(613), + [sym_assignment_expression] = STATE(613), + [sym_pointer_expression] = STATE(613), + [sym_logical_expression] = STATE(613), + [sym_bitwise_expression] = STATE(613), + [sym_equality_expression] = STATE(613), + [sym_relational_expression] = STATE(613), + [sym_shift_expression] = STATE(613), + [sym_math_expression] = STATE(613), + [sym_cast_expression] = STATE(613), + [sym_sizeof_expression] = STATE(613), + [sym_subscript_expression] = STATE(613), + [sym_call_expression] = STATE(613), + [sym_field_expression] = STATE(613), + [sym_compound_literal_expression] = STATE(613), + [sym_parenthesized_expression] = STATE(613), + [sym_char_literal] = STATE(613), + [sym_concatenated_string] = STATE(613), + [sym_string_literal] = STATE(223), + [anon_sym_LPAREN2] = ACTIONS(483), + [anon_sym_STAR] = ACTIONS(485), + [anon_sym_AMP] = ACTIONS(485), + [anon_sym_BANG] = ACTIONS(487), + [anon_sym_TILDE] = ACTIONS(489), + [anon_sym_PLUS] = ACTIONS(491), + [anon_sym_DASH] = ACTIONS(491), + [anon_sym_DASH_DASH] = ACTIONS(493), + [anon_sym_PLUS_PLUS] = ACTIONS(493), + [anon_sym_sizeof] = ACTIONS(495), + [sym_number_literal] = ACTIONS(1621), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(1623), + [sym_false] = ACTIONS(1623), + [sym_null] = ACTIONS(1623), + [sym_identifier] = ACTIONS(1623), + [sym_comment] = ACTIONS(59), }, [412] = { - [sym__expression] = STATE(669), - [sym_comma_expression] = STATE(670), - [sym_conditional_expression] = STATE(669), - [sym_assignment_expression] = STATE(669), - [sym_pointer_expression] = STATE(669), - [sym_logical_expression] = STATE(669), - [sym_bitwise_expression] = STATE(669), - [sym_equality_expression] = STATE(669), - [sym_relational_expression] = STATE(669), - [sym_shift_expression] = STATE(669), - [sym_math_expression] = STATE(669), - [sym_cast_expression] = STATE(669), - [sym_sizeof_expression] = STATE(669), - [sym_subscript_expression] = STATE(669), - [sym_call_expression] = STATE(669), - [sym_field_expression] = STATE(669), - [sym_compound_literal_expression] = STATE(669), - [sym_parenthesized_expression] = STATE(669), - [sym_char_literal] = STATE(669), - [sym_concatenated_string] = STATE(669), - [sym_string_literal] = STATE(230), - [anon_sym_LPAREN2] = ACTIONS(507), - [anon_sym_STAR] = ACTIONS(509), - [anon_sym_AMP] = ACTIONS(509), - [anon_sym_BANG] = ACTIONS(533), - [anon_sym_TILDE] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DASH] = ACTIONS(537), - [anon_sym_DASH_DASH] = ACTIONS(539), - [anon_sym_PLUS_PLUS] = ACTIONS(539), - [anon_sym_sizeof] = ACTIONS(541), - [sym_number_literal] = ACTIONS(1583), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(1585), - [sym_false] = ACTIONS(1585), - [sym_null] = ACTIONS(1585), - [sym_identifier] = ACTIONS(1585), - [sym_comment] = ACTIONS(37), + [sym__expression] = STATE(614), + [sym_conditional_expression] = STATE(614), + [sym_assignment_expression] = STATE(614), + [sym_pointer_expression] = STATE(614), + [sym_logical_expression] = STATE(614), + [sym_bitwise_expression] = STATE(614), + [sym_equality_expression] = STATE(614), + [sym_relational_expression] = STATE(614), + [sym_shift_expression] = STATE(614), + [sym_math_expression] = STATE(614), + [sym_cast_expression] = STATE(614), + [sym_sizeof_expression] = STATE(614), + [sym_subscript_expression] = STATE(614), + [sym_call_expression] = STATE(614), + [sym_field_expression] = STATE(614), + [sym_compound_literal_expression] = STATE(614), + [sym_parenthesized_expression] = STATE(614), + [sym_char_literal] = STATE(614), + [sym_concatenated_string] = STATE(614), + [sym_string_literal] = STATE(223), + [anon_sym_LPAREN2] = ACTIONS(483), + [anon_sym_STAR] = ACTIONS(485), + [anon_sym_AMP] = ACTIONS(485), + [anon_sym_BANG] = ACTIONS(487), + [anon_sym_TILDE] = ACTIONS(489), + [anon_sym_PLUS] = ACTIONS(491), + [anon_sym_DASH] = ACTIONS(491), + [anon_sym_DASH_DASH] = ACTIONS(493), + [anon_sym_PLUS_PLUS] = ACTIONS(493), + [anon_sym_sizeof] = ACTIONS(495), + [sym_number_literal] = ACTIONS(1625), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(1627), + [sym_false] = ACTIONS(1627), + [sym_null] = ACTIONS(1627), + [sym_identifier] = ACTIONS(1627), + [sym_comment] = ACTIONS(59), }, [413] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1587), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1587), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1587), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1587), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1587), - [sym_preproc_directive] = ACTIONS(1587), - [anon_sym_SEMI] = ACTIONS(1589), - [anon_sym_typedef] = ACTIONS(1587), - [anon_sym_extern] = ACTIONS(1587), - [anon_sym_LBRACE] = ACTIONS(1589), - [anon_sym_RBRACE] = ACTIONS(1589), - [anon_sym_LPAREN2] = ACTIONS(1589), - [anon_sym_STAR] = ACTIONS(1589), - [anon_sym_static] = ACTIONS(1587), - [anon_sym_auto] = ACTIONS(1587), - [anon_sym_register] = ACTIONS(1587), - [anon_sym_inline] = ACTIONS(1587), - [anon_sym_const] = ACTIONS(1587), - [anon_sym_restrict] = ACTIONS(1587), - [anon_sym_volatile] = ACTIONS(1587), - [anon_sym__Atomic] = ACTIONS(1587), - [anon_sym_unsigned] = ACTIONS(1587), - [anon_sym_long] = ACTIONS(1587), - [anon_sym_short] = ACTIONS(1587), - [sym_primitive_type] = ACTIONS(1587), - [anon_sym_enum] = ACTIONS(1587), - [anon_sym_struct] = ACTIONS(1587), - [anon_sym_union] = ACTIONS(1587), - [anon_sym_if] = ACTIONS(1587), - [anon_sym_else] = ACTIONS(1587), - [anon_sym_switch] = ACTIONS(1587), - [anon_sym_case] = ACTIONS(1587), - [anon_sym_default] = ACTIONS(1587), - [anon_sym_while] = ACTIONS(1587), - [anon_sym_do] = ACTIONS(1587), - [anon_sym_for] = ACTIONS(1587), - [anon_sym_return] = ACTIONS(1587), - [anon_sym_break] = ACTIONS(1587), - [anon_sym_continue] = ACTIONS(1587), - [anon_sym_goto] = ACTIONS(1587), - [anon_sym_AMP] = ACTIONS(1589), - [anon_sym_BANG] = ACTIONS(1589), - [anon_sym_TILDE] = ACTIONS(1589), - [anon_sym_PLUS] = ACTIONS(1587), - [anon_sym_DASH] = ACTIONS(1587), - [anon_sym_DASH_DASH] = ACTIONS(1589), - [anon_sym_PLUS_PLUS] = ACTIONS(1589), - [anon_sym_sizeof] = ACTIONS(1587), - [sym_number_literal] = ACTIONS(1589), - [anon_sym_SQUOTE] = ACTIONS(1589), - [anon_sym_DQUOTE] = ACTIONS(1589), - [sym_true] = ACTIONS(1587), - [sym_false] = ACTIONS(1587), - [sym_null] = ACTIONS(1587), - [sym_identifier] = ACTIONS(1587), - [sym_comment] = ACTIONS(37), - }, - [414] = { - [sym__expression] = STATE(672), - [sym_conditional_expression] = STATE(672), - [sym_assignment_expression] = STATE(672), - [sym_pointer_expression] = STATE(672), - [sym_logical_expression] = STATE(672), - [sym_bitwise_expression] = STATE(672), - [sym_equality_expression] = STATE(672), - [sym_relational_expression] = STATE(672), - [sym_shift_expression] = STATE(672), - [sym_math_expression] = STATE(672), - [sym_cast_expression] = STATE(672), - [sym_sizeof_expression] = STATE(672), - [sym_subscript_expression] = STATE(672), - [sym_call_expression] = STATE(672), - [sym_field_expression] = STATE(672), - [sym_compound_literal_expression] = STATE(672), - [sym_parenthesized_expression] = STATE(672), - [sym_char_literal] = STATE(672), - [sym_concatenated_string] = STATE(672), - [sym_string_literal] = STATE(374), - [anon_sym_RPAREN] = ACTIONS(1591), - [anon_sym_LPAREN2] = ACTIONS(892), - [anon_sym_STAR] = ACTIONS(894), - [anon_sym_AMP] = ACTIONS(894), - [anon_sym_BANG] = ACTIONS(896), - [anon_sym_TILDE] = ACTIONS(898), - [anon_sym_PLUS] = ACTIONS(900), - [anon_sym_DASH] = ACTIONS(900), - [anon_sym_DASH_DASH] = ACTIONS(902), - [anon_sym_PLUS_PLUS] = ACTIONS(902), - [anon_sym_sizeof] = ACTIONS(904), - [sym_number_literal] = ACTIONS(1593), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(1595), - [sym_false] = ACTIONS(1595), - [sym_null] = ACTIONS(1595), - [sym_identifier] = ACTIONS(1595), - [sym_comment] = ACTIONS(37), - }, - [415] = { - [sym__expression] = STATE(673), - [sym_conditional_expression] = STATE(673), - [sym_assignment_expression] = STATE(673), - [sym_pointer_expression] = STATE(673), - [sym_logical_expression] = STATE(673), - [sym_bitwise_expression] = STATE(673), - [sym_equality_expression] = STATE(673), - [sym_relational_expression] = STATE(673), - [sym_shift_expression] = STATE(673), - [sym_math_expression] = STATE(673), - [sym_cast_expression] = STATE(673), - [sym_sizeof_expression] = STATE(673), - [sym_subscript_expression] = STATE(673), - [sym_call_expression] = STATE(673), - [sym_field_expression] = STATE(673), - [sym_compound_literal_expression] = STATE(673), - [sym_parenthesized_expression] = STATE(673), - [sym_char_literal] = STATE(673), - [sym_concatenated_string] = STATE(673), - [sym_string_literal] = STATE(230), - [anon_sym_LPAREN2] = ACTIONS(507), - [anon_sym_STAR] = ACTIONS(509), - [anon_sym_AMP] = ACTIONS(509), - [anon_sym_BANG] = ACTIONS(533), - [anon_sym_TILDE] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DASH] = ACTIONS(537), - [anon_sym_DASH_DASH] = ACTIONS(539), - [anon_sym_PLUS_PLUS] = ACTIONS(539), - [anon_sym_sizeof] = ACTIONS(541), - [sym_number_literal] = ACTIONS(1597), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(1599), - [sym_false] = ACTIONS(1599), - [sym_null] = ACTIONS(1599), - [sym_identifier] = ACTIONS(1599), - [sym_comment] = ACTIONS(37), - }, - [416] = { - [sym__expression] = STATE(674), - [sym_conditional_expression] = STATE(674), - [sym_assignment_expression] = STATE(674), - [sym_pointer_expression] = STATE(674), - [sym_logical_expression] = STATE(674), - [sym_bitwise_expression] = STATE(674), - [sym_equality_expression] = STATE(674), - [sym_relational_expression] = STATE(674), - [sym_shift_expression] = STATE(674), - [sym_math_expression] = STATE(674), - [sym_cast_expression] = STATE(674), - [sym_sizeof_expression] = STATE(674), - [sym_subscript_expression] = STATE(674), - [sym_call_expression] = STATE(674), - [sym_field_expression] = STATE(674), - [sym_compound_literal_expression] = STATE(674), - [sym_parenthesized_expression] = STATE(674), - [sym_char_literal] = STATE(674), - [sym_concatenated_string] = STATE(674), - [sym_string_literal] = STATE(249), - [anon_sym_LPAREN2] = ACTIONS(559), - [anon_sym_STAR] = ACTIONS(561), - [anon_sym_AMP] = ACTIONS(561), - [anon_sym_BANG] = ACTIONS(569), - [anon_sym_TILDE] = ACTIONS(571), - [anon_sym_PLUS] = ACTIONS(573), - [anon_sym_DASH] = ACTIONS(573), - [anon_sym_DASH_DASH] = ACTIONS(575), - [anon_sym_PLUS_PLUS] = ACTIONS(575), - [anon_sym_sizeof] = ACTIONS(577), - [sym_number_literal] = ACTIONS(1601), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(1603), - [sym_false] = ACTIONS(1603), - [sym_null] = ACTIONS(1603), - [sym_identifier] = ACTIONS(1603), - [sym_comment] = ACTIONS(37), - }, - [417] = { - [sym__expression] = STATE(675), - [sym_conditional_expression] = STATE(675), - [sym_assignment_expression] = STATE(675), - [sym_pointer_expression] = STATE(675), - [sym_logical_expression] = STATE(675), - [sym_bitwise_expression] = STATE(675), - [sym_equality_expression] = STATE(675), - [sym_relational_expression] = STATE(675), - [sym_shift_expression] = STATE(675), - [sym_math_expression] = STATE(675), - [sym_cast_expression] = STATE(675), - [sym_sizeof_expression] = STATE(675), - [sym_subscript_expression] = STATE(675), - [sym_call_expression] = STATE(675), - [sym_field_expression] = STATE(675), - [sym_compound_literal_expression] = STATE(675), - [sym_parenthesized_expression] = STATE(675), - [sym_char_literal] = STATE(675), - [sym_concatenated_string] = STATE(675), - [sym_string_literal] = STATE(230), - [anon_sym_LPAREN2] = ACTIONS(507), - [anon_sym_STAR] = ACTIONS(509), - [anon_sym_AMP] = ACTIONS(509), - [anon_sym_BANG] = ACTIONS(533), - [anon_sym_TILDE] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DASH] = ACTIONS(537), - [anon_sym_DASH_DASH] = ACTIONS(539), - [anon_sym_PLUS_PLUS] = ACTIONS(539), - [anon_sym_sizeof] = ACTIONS(541), - [sym_number_literal] = ACTIONS(1605), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(1607), - [sym_false] = ACTIONS(1607), - [sym_null] = ACTIONS(1607), - [sym_identifier] = ACTIONS(1607), - [sym_comment] = ACTIONS(37), - }, - [418] = { - [sym__expression] = STATE(676), - [sym_conditional_expression] = STATE(676), - [sym_assignment_expression] = STATE(676), - [sym_pointer_expression] = STATE(676), - [sym_logical_expression] = STATE(676), - [sym_bitwise_expression] = STATE(676), - [sym_equality_expression] = STATE(676), - [sym_relational_expression] = STATE(676), - [sym_shift_expression] = STATE(676), - [sym_math_expression] = STATE(676), - [sym_cast_expression] = STATE(676), - [sym_sizeof_expression] = STATE(676), - [sym_subscript_expression] = STATE(676), - [sym_call_expression] = STATE(676), - [sym_field_expression] = STATE(676), - [sym_compound_literal_expression] = STATE(676), - [sym_parenthesized_expression] = STATE(676), - [sym_char_literal] = STATE(676), - [sym_concatenated_string] = STATE(676), - [sym_string_literal] = STATE(386), - [anon_sym_LPAREN2] = ACTIONS(918), - [anon_sym_STAR] = ACTIONS(920), - [anon_sym_AMP] = ACTIONS(920), - [anon_sym_BANG] = ACTIONS(922), - [anon_sym_TILDE] = ACTIONS(924), - [anon_sym_PLUS] = ACTIONS(926), - [anon_sym_DASH] = ACTIONS(926), - [anon_sym_DASH_DASH] = ACTIONS(928), - [anon_sym_PLUS_PLUS] = ACTIONS(928), - [anon_sym_sizeof] = ACTIONS(930), - [sym_number_literal] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(1611), - [sym_false] = ACTIONS(1611), - [sym_null] = ACTIONS(1611), - [sym_identifier] = ACTIONS(1611), - [sym_comment] = ACTIONS(37), - }, - [419] = { - [sym__expression] = STATE(677), - [sym_conditional_expression] = STATE(677), - [sym_assignment_expression] = STATE(677), - [sym_pointer_expression] = STATE(677), - [sym_logical_expression] = STATE(677), - [sym_bitwise_expression] = STATE(677), - [sym_equality_expression] = STATE(677), - [sym_relational_expression] = STATE(677), - [sym_shift_expression] = STATE(677), - [sym_math_expression] = STATE(677), - [sym_cast_expression] = STATE(677), - [sym_sizeof_expression] = STATE(677), - [sym_subscript_expression] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_field_expression] = STATE(677), - [sym_compound_literal_expression] = STATE(677), - [sym_parenthesized_expression] = STATE(677), - [sym_char_literal] = STATE(677), - [sym_concatenated_string] = STATE(677), - [sym_string_literal] = STATE(230), - [anon_sym_LPAREN2] = ACTIONS(507), - [anon_sym_STAR] = ACTIONS(509), - [anon_sym_AMP] = ACTIONS(509), - [anon_sym_BANG] = ACTIONS(533), - [anon_sym_TILDE] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DASH] = ACTIONS(537), - [anon_sym_DASH_DASH] = ACTIONS(539), - [anon_sym_PLUS_PLUS] = ACTIONS(539), - [anon_sym_sizeof] = ACTIONS(541), - [sym_number_literal] = ACTIONS(1613), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(1615), - [sym_false] = ACTIONS(1615), - [sym_null] = ACTIONS(1615), - [sym_identifier] = ACTIONS(1615), - [sym_comment] = ACTIONS(37), - }, - [420] = { - [sym__expression] = STATE(678), - [sym_conditional_expression] = STATE(678), - [sym_assignment_expression] = STATE(678), - [sym_pointer_expression] = STATE(678), - [sym_logical_expression] = STATE(678), - [sym_bitwise_expression] = STATE(678), - [sym_equality_expression] = STATE(678), - [sym_relational_expression] = STATE(678), - [sym_shift_expression] = STATE(678), - [sym_math_expression] = STATE(678), - [sym_cast_expression] = STATE(678), - [sym_sizeof_expression] = STATE(678), - [sym_subscript_expression] = STATE(678), - [sym_call_expression] = STATE(678), - [sym_field_expression] = STATE(678), - [sym_compound_literal_expression] = STATE(678), - [sym_parenthesized_expression] = STATE(678), - [sym_char_literal] = STATE(678), - [sym_concatenated_string] = STATE(678), - [sym_string_literal] = STATE(230), - [anon_sym_LPAREN2] = ACTIONS(507), - [anon_sym_STAR] = ACTIONS(509), - [anon_sym_AMP] = ACTIONS(509), - [anon_sym_BANG] = ACTIONS(533), - [anon_sym_TILDE] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DASH] = ACTIONS(537), - [anon_sym_DASH_DASH] = ACTIONS(539), - [anon_sym_PLUS_PLUS] = ACTIONS(539), - [anon_sym_sizeof] = ACTIONS(541), - [sym_number_literal] = ACTIONS(1617), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(1619), - [sym_false] = ACTIONS(1619), - [sym_null] = ACTIONS(1619), - [sym_identifier] = ACTIONS(1619), - [sym_comment] = ACTIONS(37), - }, - [421] = { - [sym__expression] = STATE(679), - [sym_conditional_expression] = STATE(679), - [sym_assignment_expression] = STATE(679), - [sym_pointer_expression] = STATE(679), - [sym_logical_expression] = STATE(679), - [sym_bitwise_expression] = STATE(679), - [sym_equality_expression] = STATE(679), - [sym_relational_expression] = STATE(679), - [sym_shift_expression] = STATE(679), - [sym_math_expression] = STATE(679), - [sym_cast_expression] = STATE(679), - [sym_sizeof_expression] = STATE(679), - [sym_subscript_expression] = STATE(679), - [sym_call_expression] = STATE(679), - [sym_field_expression] = STATE(679), - [sym_compound_literal_expression] = STATE(679), - [sym_parenthesized_expression] = STATE(679), - [sym_char_literal] = STATE(679), - [sym_concatenated_string] = STATE(679), - [sym_string_literal] = STATE(230), - [anon_sym_LPAREN2] = ACTIONS(507), - [anon_sym_STAR] = ACTIONS(509), - [anon_sym_AMP] = ACTIONS(509), - [anon_sym_BANG] = ACTIONS(533), - [anon_sym_TILDE] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DASH] = ACTIONS(537), - [anon_sym_DASH_DASH] = ACTIONS(539), - [anon_sym_PLUS_PLUS] = ACTIONS(539), - [anon_sym_sizeof] = ACTIONS(541), - [sym_number_literal] = ACTIONS(1621), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(1623), - [sym_false] = ACTIONS(1623), - [sym_null] = ACTIONS(1623), - [sym_identifier] = ACTIONS(1623), - [sym_comment] = ACTIONS(37), - }, - [422] = { - [sym__expression] = STATE(680), - [sym_conditional_expression] = STATE(680), - [sym_assignment_expression] = STATE(680), - [sym_pointer_expression] = STATE(680), - [sym_logical_expression] = STATE(680), - [sym_bitwise_expression] = STATE(680), - [sym_equality_expression] = STATE(680), - [sym_relational_expression] = STATE(680), - [sym_shift_expression] = STATE(680), - [sym_math_expression] = STATE(680), - [sym_cast_expression] = STATE(680), - [sym_sizeof_expression] = STATE(680), - [sym_subscript_expression] = STATE(680), - [sym_call_expression] = STATE(680), - [sym_field_expression] = STATE(680), - [sym_compound_literal_expression] = STATE(680), - [sym_parenthesized_expression] = STATE(680), - [sym_char_literal] = STATE(680), - [sym_concatenated_string] = STATE(680), - [sym_string_literal] = STATE(230), - [anon_sym_LPAREN2] = ACTIONS(507), - [anon_sym_STAR] = ACTIONS(509), - [anon_sym_AMP] = ACTIONS(509), - [anon_sym_BANG] = ACTIONS(533), - [anon_sym_TILDE] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DASH] = ACTIONS(537), - [anon_sym_DASH_DASH] = ACTIONS(539), - [anon_sym_PLUS_PLUS] = ACTIONS(539), - [anon_sym_sizeof] = ACTIONS(541), - [sym_number_literal] = ACTIONS(1625), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [sym_null] = ACTIONS(1627), - [sym_identifier] = ACTIONS(1627), - [sym_comment] = ACTIONS(37), - }, - [423] = { - [sym__expression] = STATE(681), - [sym_conditional_expression] = STATE(681), - [sym_assignment_expression] = STATE(681), - [sym_pointer_expression] = STATE(681), - [sym_logical_expression] = STATE(681), - [sym_bitwise_expression] = STATE(681), - [sym_equality_expression] = STATE(681), - [sym_relational_expression] = STATE(681), - [sym_shift_expression] = STATE(681), - [sym_math_expression] = STATE(681), - [sym_cast_expression] = STATE(681), - [sym_sizeof_expression] = STATE(681), - [sym_subscript_expression] = STATE(681), - [sym_call_expression] = STATE(681), - [sym_field_expression] = STATE(681), - [sym_compound_literal_expression] = STATE(681), - [sym_parenthesized_expression] = STATE(681), - [sym_char_literal] = STATE(681), - [sym_concatenated_string] = STATE(681), - [sym_string_literal] = STATE(230), - [anon_sym_LPAREN2] = ACTIONS(507), - [anon_sym_STAR] = ACTIONS(509), - [anon_sym_AMP] = ACTIONS(509), - [anon_sym_BANG] = ACTIONS(533), - [anon_sym_TILDE] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DASH] = ACTIONS(537), - [anon_sym_DASH_DASH] = ACTIONS(539), - [anon_sym_PLUS_PLUS] = ACTIONS(539), - [anon_sym_sizeof] = ACTIONS(541), + [sym__expression] = STATE(615), + [sym_conditional_expression] = STATE(615), + [sym_assignment_expression] = STATE(615), + [sym_pointer_expression] = STATE(615), + [sym_logical_expression] = STATE(615), + [sym_bitwise_expression] = STATE(615), + [sym_equality_expression] = STATE(615), + [sym_relational_expression] = STATE(615), + [sym_shift_expression] = STATE(615), + [sym_math_expression] = STATE(615), + [sym_cast_expression] = STATE(615), + [sym_sizeof_expression] = STATE(615), + [sym_subscript_expression] = STATE(615), + [sym_call_expression] = STATE(615), + [sym_field_expression] = STATE(615), + [sym_compound_literal_expression] = STATE(615), + [sym_parenthesized_expression] = STATE(615), + [sym_char_literal] = STATE(615), + [sym_concatenated_string] = STATE(615), + [sym_string_literal] = STATE(223), + [anon_sym_LPAREN2] = ACTIONS(483), + [anon_sym_STAR] = ACTIONS(485), + [anon_sym_AMP] = ACTIONS(485), + [anon_sym_BANG] = ACTIONS(487), + [anon_sym_TILDE] = ACTIONS(489), + [anon_sym_PLUS] = ACTIONS(491), + [anon_sym_DASH] = ACTIONS(491), + [anon_sym_DASH_DASH] = ACTIONS(493), + [anon_sym_PLUS_PLUS] = ACTIONS(493), + [anon_sym_sizeof] = ACTIONS(495), [sym_number_literal] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), [sym_true] = ACTIONS(1631), [sym_false] = ACTIONS(1631), [sym_null] = ACTIONS(1631), [sym_identifier] = ACTIONS(1631), - [sym_comment] = ACTIONS(37), + [sym_comment] = ACTIONS(59), }, - [424] = { - [sym__expression] = STATE(682), - [sym_conditional_expression] = STATE(682), - [sym_assignment_expression] = STATE(682), - [sym_pointer_expression] = STATE(682), - [sym_logical_expression] = STATE(682), - [sym_bitwise_expression] = STATE(682), - [sym_equality_expression] = STATE(682), - [sym_relational_expression] = STATE(682), - [sym_shift_expression] = STATE(682), - [sym_math_expression] = STATE(682), - [sym_cast_expression] = STATE(682), - [sym_sizeof_expression] = STATE(682), - [sym_subscript_expression] = STATE(682), - [sym_call_expression] = STATE(682), - [sym_field_expression] = STATE(682), - [sym_compound_literal_expression] = STATE(682), - [sym_parenthesized_expression] = STATE(682), - [sym_char_literal] = STATE(682), - [sym_concatenated_string] = STATE(682), - [sym_string_literal] = STATE(230), - [anon_sym_LPAREN2] = ACTIONS(507), - [anon_sym_STAR] = ACTIONS(509), - [anon_sym_AMP] = ACTIONS(509), - [anon_sym_BANG] = ACTIONS(533), - [anon_sym_TILDE] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DASH] = ACTIONS(537), - [anon_sym_DASH_DASH] = ACTIONS(539), - [anon_sym_PLUS_PLUS] = ACTIONS(539), - [anon_sym_sizeof] = ACTIONS(541), + [414] = { + [sym__expression] = STATE(616), + [sym_conditional_expression] = STATE(616), + [sym_assignment_expression] = STATE(616), + [sym_pointer_expression] = STATE(616), + [sym_logical_expression] = STATE(616), + [sym_bitwise_expression] = STATE(616), + [sym_equality_expression] = STATE(616), + [sym_relational_expression] = STATE(616), + [sym_shift_expression] = STATE(616), + [sym_math_expression] = STATE(616), + [sym_cast_expression] = STATE(616), + [sym_sizeof_expression] = STATE(616), + [sym_subscript_expression] = STATE(616), + [sym_call_expression] = STATE(616), + [sym_field_expression] = STATE(616), + [sym_compound_literal_expression] = STATE(616), + [sym_parenthesized_expression] = STATE(616), + [sym_char_literal] = STATE(616), + [sym_concatenated_string] = STATE(616), + [sym_string_literal] = STATE(223), + [anon_sym_LPAREN2] = ACTIONS(483), + [anon_sym_STAR] = ACTIONS(485), + [anon_sym_AMP] = ACTIONS(485), + [anon_sym_BANG] = ACTIONS(487), + [anon_sym_TILDE] = ACTIONS(489), + [anon_sym_PLUS] = ACTIONS(491), + [anon_sym_DASH] = ACTIONS(491), + [anon_sym_DASH_DASH] = ACTIONS(493), + [anon_sym_PLUS_PLUS] = ACTIONS(493), + [anon_sym_sizeof] = ACTIONS(495), [sym_number_literal] = ACTIONS(1633), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), [sym_true] = ACTIONS(1635), [sym_false] = ACTIONS(1635), [sym_null] = ACTIONS(1635), [sym_identifier] = ACTIONS(1635), - [sym_comment] = ACTIONS(37), + [sym_comment] = ACTIONS(59), }, - [425] = { - [sym__expression] = STATE(683), - [sym_conditional_expression] = STATE(683), - [sym_assignment_expression] = STATE(683), - [sym_pointer_expression] = STATE(683), - [sym_logical_expression] = STATE(683), - [sym_bitwise_expression] = STATE(683), - [sym_equality_expression] = STATE(683), - [sym_relational_expression] = STATE(683), - [sym_shift_expression] = STATE(683), - [sym_math_expression] = STATE(683), - [sym_cast_expression] = STATE(683), - [sym_sizeof_expression] = STATE(683), - [sym_subscript_expression] = STATE(683), - [sym_call_expression] = STATE(683), - [sym_field_expression] = STATE(683), - [sym_compound_literal_expression] = STATE(683), - [sym_parenthesized_expression] = STATE(683), - [sym_char_literal] = STATE(683), - [sym_concatenated_string] = STATE(683), - [sym_string_literal] = STATE(230), - [anon_sym_LPAREN2] = ACTIONS(507), - [anon_sym_STAR] = ACTIONS(509), - [anon_sym_AMP] = ACTIONS(509), - [anon_sym_BANG] = ACTIONS(533), - [anon_sym_TILDE] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DASH] = ACTIONS(537), - [anon_sym_DASH_DASH] = ACTIONS(539), - [anon_sym_PLUS_PLUS] = ACTIONS(539), - [anon_sym_sizeof] = ACTIONS(541), + [415] = { + [sym__expression] = STATE(617), + [sym_conditional_expression] = STATE(617), + [sym_assignment_expression] = STATE(617), + [sym_pointer_expression] = STATE(617), + [sym_logical_expression] = STATE(617), + [sym_bitwise_expression] = STATE(617), + [sym_equality_expression] = STATE(617), + [sym_relational_expression] = STATE(617), + [sym_shift_expression] = STATE(617), + [sym_math_expression] = STATE(617), + [sym_cast_expression] = STATE(617), + [sym_sizeof_expression] = STATE(617), + [sym_subscript_expression] = STATE(617), + [sym_call_expression] = STATE(617), + [sym_field_expression] = STATE(617), + [sym_compound_literal_expression] = STATE(617), + [sym_parenthesized_expression] = STATE(617), + [sym_char_literal] = STATE(617), + [sym_concatenated_string] = STATE(617), + [sym_string_literal] = STATE(223), + [anon_sym_LPAREN2] = ACTIONS(483), + [anon_sym_STAR] = ACTIONS(485), + [anon_sym_AMP] = ACTIONS(485), + [anon_sym_BANG] = ACTIONS(487), + [anon_sym_TILDE] = ACTIONS(489), + [anon_sym_PLUS] = ACTIONS(491), + [anon_sym_DASH] = ACTIONS(491), + [anon_sym_DASH_DASH] = ACTIONS(493), + [anon_sym_PLUS_PLUS] = ACTIONS(493), + [anon_sym_sizeof] = ACTIONS(495), [sym_number_literal] = ACTIONS(1637), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), [sym_true] = ACTIONS(1639), [sym_false] = ACTIONS(1639), [sym_null] = ACTIONS(1639), [sym_identifier] = ACTIONS(1639), - [sym_comment] = ACTIONS(37), + [sym_comment] = ACTIONS(59), }, - [426] = { - [sym__expression] = STATE(684), - [sym_conditional_expression] = STATE(684), - [sym_assignment_expression] = STATE(684), - [sym_pointer_expression] = STATE(684), - [sym_logical_expression] = STATE(684), - [sym_bitwise_expression] = STATE(684), - [sym_equality_expression] = STATE(684), - [sym_relational_expression] = STATE(684), - [sym_shift_expression] = STATE(684), - [sym_math_expression] = STATE(684), - [sym_cast_expression] = STATE(684), - [sym_sizeof_expression] = STATE(684), - [sym_subscript_expression] = STATE(684), - [sym_call_expression] = STATE(684), - [sym_field_expression] = STATE(684), - [sym_compound_literal_expression] = STATE(684), - [sym_parenthesized_expression] = STATE(684), - [sym_char_literal] = STATE(684), - [sym_concatenated_string] = STATE(684), - [sym_string_literal] = STATE(230), - [anon_sym_LPAREN2] = ACTIONS(507), - [anon_sym_STAR] = ACTIONS(509), - [anon_sym_AMP] = ACTIONS(509), - [anon_sym_BANG] = ACTIONS(533), - [anon_sym_TILDE] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DASH] = ACTIONS(537), - [anon_sym_DASH_DASH] = ACTIONS(539), - [anon_sym_PLUS_PLUS] = ACTIONS(539), - [anon_sym_sizeof] = ACTIONS(541), + [416] = { + [sym__expression] = STATE(618), + [sym_conditional_expression] = STATE(618), + [sym_assignment_expression] = STATE(618), + [sym_pointer_expression] = STATE(618), + [sym_logical_expression] = STATE(618), + [sym_bitwise_expression] = STATE(618), + [sym_equality_expression] = STATE(618), + [sym_relational_expression] = STATE(618), + [sym_shift_expression] = STATE(618), + [sym_math_expression] = STATE(618), + [sym_cast_expression] = STATE(618), + [sym_sizeof_expression] = STATE(618), + [sym_subscript_expression] = STATE(618), + [sym_call_expression] = STATE(618), + [sym_field_expression] = STATE(618), + [sym_compound_literal_expression] = STATE(618), + [sym_parenthesized_expression] = STATE(618), + [sym_char_literal] = STATE(618), + [sym_concatenated_string] = STATE(618), + [sym_string_literal] = STATE(223), + [anon_sym_LPAREN2] = ACTIONS(483), + [anon_sym_STAR] = ACTIONS(485), + [anon_sym_AMP] = ACTIONS(485), + [anon_sym_BANG] = ACTIONS(487), + [anon_sym_TILDE] = ACTIONS(489), + [anon_sym_PLUS] = ACTIONS(491), + [anon_sym_DASH] = ACTIONS(491), + [anon_sym_DASH_DASH] = ACTIONS(493), + [anon_sym_PLUS_PLUS] = ACTIONS(493), + [anon_sym_sizeof] = ACTIONS(495), [sym_number_literal] = ACTIONS(1641), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), [sym_true] = ACTIONS(1643), [sym_false] = ACTIONS(1643), [sym_null] = ACTIONS(1643), [sym_identifier] = ACTIONS(1643), - [sym_comment] = ACTIONS(37), + [sym_comment] = ACTIONS(59), }, - [427] = { - [sym__expression] = STATE(685), - [sym_conditional_expression] = STATE(685), - [sym_assignment_expression] = STATE(685), - [sym_pointer_expression] = STATE(685), - [sym_logical_expression] = STATE(685), - [sym_bitwise_expression] = STATE(685), - [sym_equality_expression] = STATE(685), - [sym_relational_expression] = STATE(685), - [sym_shift_expression] = STATE(685), - [sym_math_expression] = STATE(685), - [sym_cast_expression] = STATE(685), - [sym_sizeof_expression] = STATE(685), - [sym_subscript_expression] = STATE(685), - [sym_call_expression] = STATE(685), - [sym_field_expression] = STATE(685), - [sym_compound_literal_expression] = STATE(685), - [sym_parenthesized_expression] = STATE(685), - [sym_char_literal] = STATE(685), - [sym_concatenated_string] = STATE(685), - [sym_string_literal] = STATE(230), - [anon_sym_LPAREN2] = ACTIONS(507), - [anon_sym_STAR] = ACTIONS(509), - [anon_sym_AMP] = ACTIONS(509), - [anon_sym_BANG] = ACTIONS(533), - [anon_sym_TILDE] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DASH] = ACTIONS(537), - [anon_sym_DASH_DASH] = ACTIONS(539), - [anon_sym_PLUS_PLUS] = ACTIONS(539), - [anon_sym_sizeof] = ACTIONS(541), + [417] = { + [sym__expression] = STATE(619), + [sym_conditional_expression] = STATE(619), + [sym_assignment_expression] = STATE(619), + [sym_pointer_expression] = STATE(619), + [sym_logical_expression] = STATE(619), + [sym_bitwise_expression] = STATE(619), + [sym_equality_expression] = STATE(619), + [sym_relational_expression] = STATE(619), + [sym_shift_expression] = STATE(619), + [sym_math_expression] = STATE(619), + [sym_cast_expression] = STATE(619), + [sym_sizeof_expression] = STATE(619), + [sym_subscript_expression] = STATE(619), + [sym_call_expression] = STATE(619), + [sym_field_expression] = STATE(619), + [sym_compound_literal_expression] = STATE(619), + [sym_parenthesized_expression] = STATE(619), + [sym_char_literal] = STATE(619), + [sym_concatenated_string] = STATE(619), + [sym_string_literal] = STATE(223), + [anon_sym_LPAREN2] = ACTIONS(483), + [anon_sym_STAR] = ACTIONS(485), + [anon_sym_AMP] = ACTIONS(485), + [anon_sym_BANG] = ACTIONS(487), + [anon_sym_TILDE] = ACTIONS(489), + [anon_sym_PLUS] = ACTIONS(491), + [anon_sym_DASH] = ACTIONS(491), + [anon_sym_DASH_DASH] = ACTIONS(493), + [anon_sym_PLUS_PLUS] = ACTIONS(493), + [anon_sym_sizeof] = ACTIONS(495), [sym_number_literal] = ACTIONS(1645), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), [sym_true] = ACTIONS(1647), [sym_false] = ACTIONS(1647), [sym_null] = ACTIONS(1647), [sym_identifier] = ACTIONS(1647), - [sym_comment] = ACTIONS(37), + [sym_comment] = ACTIONS(59), }, - [428] = { - [anon_sym_COMMA] = ACTIONS(1573), - [anon_sym_RPAREN] = ACTIONS(1573), - [anon_sym_SEMI] = ACTIONS(1573), - [anon_sym_RBRACE] = ACTIONS(1573), - [anon_sym_LPAREN2] = ACTIONS(1573), - [anon_sym_STAR] = ACTIONS(1575), - [anon_sym_LBRACK] = ACTIONS(1573), - [anon_sym_RBRACK] = ACTIONS(1573), - [anon_sym_EQ] = ACTIONS(1575), - [anon_sym_COLON] = ACTIONS(1573), - [anon_sym_QMARK] = ACTIONS(1573), - [anon_sym_STAR_EQ] = ACTIONS(1573), - [anon_sym_SLASH_EQ] = ACTIONS(1573), - [anon_sym_PERCENT_EQ] = ACTIONS(1573), - [anon_sym_PLUS_EQ] = ACTIONS(1573), - [anon_sym_DASH_EQ] = ACTIONS(1573), - [anon_sym_LT_LT_EQ] = ACTIONS(1573), - [anon_sym_GT_GT_EQ] = ACTIONS(1573), - [anon_sym_AMP_EQ] = ACTIONS(1573), - [anon_sym_CARET_EQ] = ACTIONS(1573), - [anon_sym_PIPE_EQ] = ACTIONS(1573), - [anon_sym_AMP] = ACTIONS(1575), - [anon_sym_PIPE_PIPE] = ACTIONS(1573), - [anon_sym_AMP_AMP] = ACTIONS(1573), - [anon_sym_PIPE] = ACTIONS(1575), - [anon_sym_CARET] = ACTIONS(1575), - [anon_sym_EQ_EQ] = ACTIONS(1573), - [anon_sym_BANG_EQ] = ACTIONS(1573), - [anon_sym_LT] = ACTIONS(1575), - [anon_sym_GT] = ACTIONS(1575), - [anon_sym_LT_EQ] = ACTIONS(1573), - [anon_sym_GT_EQ] = ACTIONS(1573), - [anon_sym_LT_LT] = ACTIONS(1575), - [anon_sym_GT_GT] = ACTIONS(1575), - [anon_sym_PLUS] = ACTIONS(1575), - [anon_sym_DASH] = ACTIONS(1575), - [anon_sym_SLASH] = ACTIONS(1575), - [anon_sym_PERCENT] = ACTIONS(1575), - [anon_sym_DASH_DASH] = ACTIONS(1573), - [anon_sym_PLUS_PLUS] = ACTIONS(1573), - [anon_sym_DOT] = ACTIONS(1573), - [anon_sym_DASH_GT] = ACTIONS(1573), - [sym_comment] = ACTIONS(37), + [418] = { + [sym__expression] = STATE(620), + [sym_conditional_expression] = STATE(620), + [sym_assignment_expression] = STATE(620), + [sym_pointer_expression] = STATE(620), + [sym_logical_expression] = STATE(620), + [sym_bitwise_expression] = STATE(620), + [sym_equality_expression] = STATE(620), + [sym_relational_expression] = STATE(620), + [sym_shift_expression] = STATE(620), + [sym_math_expression] = STATE(620), + [sym_cast_expression] = STATE(620), + [sym_sizeof_expression] = STATE(620), + [sym_subscript_expression] = STATE(620), + [sym_call_expression] = STATE(620), + [sym_field_expression] = STATE(620), + [sym_compound_literal_expression] = STATE(620), + [sym_parenthesized_expression] = STATE(620), + [sym_char_literal] = STATE(620), + [sym_concatenated_string] = STATE(620), + [sym_string_literal] = STATE(223), + [anon_sym_LPAREN2] = ACTIONS(483), + [anon_sym_STAR] = ACTIONS(485), + [anon_sym_AMP] = ACTIONS(485), + [anon_sym_BANG] = ACTIONS(487), + [anon_sym_TILDE] = ACTIONS(489), + [anon_sym_PLUS] = ACTIONS(491), + [anon_sym_DASH] = ACTIONS(491), + [anon_sym_DASH_DASH] = ACTIONS(493), + [anon_sym_PLUS_PLUS] = ACTIONS(493), + [anon_sym_sizeof] = ACTIONS(495), + [sym_number_literal] = ACTIONS(1649), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(1651), + [sym_false] = ACTIONS(1651), + [sym_null] = ACTIONS(1651), + [sym_identifier] = ACTIONS(1651), + [sym_comment] = ACTIONS(59), }, - [429] = { - [sym_identifier] = ACTIONS(1649), - [sym_comment] = ACTIONS(37), + [419] = { + [sym_string_literal] = STATE(621), + [aux_sym_concatenated_string_repeat1] = STATE(621), + [anon_sym_LPAREN2] = ACTIONS(547), + [anon_sym_STAR] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_EQ] = ACTIONS(549), + [anon_sym_COLON] = ACTIONS(547), + [anon_sym_QMARK] = ACTIONS(547), + [anon_sym_STAR_EQ] = ACTIONS(547), + [anon_sym_SLASH_EQ] = ACTIONS(547), + [anon_sym_PERCENT_EQ] = ACTIONS(547), + [anon_sym_PLUS_EQ] = ACTIONS(547), + [anon_sym_DASH_EQ] = ACTIONS(547), + [anon_sym_LT_LT_EQ] = ACTIONS(547), + [anon_sym_GT_GT_EQ] = ACTIONS(547), + [anon_sym_AMP_EQ] = ACTIONS(547), + [anon_sym_CARET_EQ] = ACTIONS(547), + [anon_sym_PIPE_EQ] = ACTIONS(547), + [anon_sym_AMP] = ACTIONS(549), + [anon_sym_PIPE_PIPE] = ACTIONS(547), + [anon_sym_AMP_AMP] = ACTIONS(547), + [anon_sym_PIPE] = ACTIONS(549), + [anon_sym_CARET] = ACTIONS(549), + [anon_sym_EQ_EQ] = ACTIONS(547), + [anon_sym_BANG_EQ] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(549), + [anon_sym_GT] = ACTIONS(549), + [anon_sym_LT_EQ] = ACTIONS(547), + [anon_sym_GT_EQ] = ACTIONS(547), + [anon_sym_LT_LT] = ACTIONS(549), + [anon_sym_GT_GT] = ACTIONS(549), + [anon_sym_PLUS] = ACTIONS(549), + [anon_sym_DASH] = ACTIONS(549), + [anon_sym_SLASH] = ACTIONS(549), + [anon_sym_PERCENT] = ACTIONS(549), + [anon_sym_DASH_DASH] = ACTIONS(547), + [anon_sym_PLUS_PLUS] = ACTIONS(547), + [anon_sym_DOT] = ACTIONS(547), + [anon_sym_DASH_GT] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_comment] = ACTIONS(59), }, - [430] = { - [anon_sym_COMMA] = ACTIONS(1651), - [anon_sym_RPAREN] = ACTIONS(1651), - [anon_sym_SEMI] = ACTIONS(1651), - [anon_sym_RBRACE] = ACTIONS(1651), - [anon_sym_LPAREN2] = ACTIONS(1651), - [anon_sym_STAR] = ACTIONS(1653), - [anon_sym_LBRACK] = ACTIONS(1651), - [anon_sym_RBRACK] = ACTIONS(1651), - [anon_sym_EQ] = ACTIONS(1653), - [anon_sym_COLON] = ACTIONS(1651), - [anon_sym_QMARK] = ACTIONS(1651), - [anon_sym_STAR_EQ] = ACTIONS(1651), - [anon_sym_SLASH_EQ] = ACTIONS(1651), - [anon_sym_PERCENT_EQ] = ACTIONS(1651), - [anon_sym_PLUS_EQ] = ACTIONS(1651), - [anon_sym_DASH_EQ] = ACTIONS(1651), - [anon_sym_LT_LT_EQ] = ACTIONS(1651), - [anon_sym_GT_GT_EQ] = ACTIONS(1651), - [anon_sym_AMP_EQ] = ACTIONS(1651), - [anon_sym_CARET_EQ] = ACTIONS(1651), - [anon_sym_PIPE_EQ] = ACTIONS(1651), - [anon_sym_AMP] = ACTIONS(1653), - [anon_sym_PIPE_PIPE] = ACTIONS(1651), - [anon_sym_AMP_AMP] = ACTIONS(1651), - [anon_sym_PIPE] = ACTIONS(1653), - [anon_sym_CARET] = ACTIONS(1653), - [anon_sym_EQ_EQ] = ACTIONS(1651), - [anon_sym_BANG_EQ] = ACTIONS(1651), - [anon_sym_LT] = ACTIONS(1653), - [anon_sym_GT] = ACTIONS(1653), - [anon_sym_LT_EQ] = ACTIONS(1651), - [anon_sym_GT_EQ] = ACTIONS(1651), - [anon_sym_LT_LT] = ACTIONS(1653), - [anon_sym_GT_GT] = ACTIONS(1653), - [anon_sym_PLUS] = ACTIONS(1653), - [anon_sym_DASH] = ACTIONS(1653), - [anon_sym_SLASH] = ACTIONS(1653), - [anon_sym_PERCENT] = ACTIONS(1653), - [anon_sym_DASH_DASH] = ACTIONS(1651), - [anon_sym_PLUS_PLUS] = ACTIONS(1651), - [anon_sym_DOT] = ACTIONS(1651), - [anon_sym_DASH_GT] = ACTIONS(1651), - [sym_comment] = ACTIONS(37), + [420] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(1653), + [sym_identifier] = ACTIONS(1653), + [sym_comment] = ACTIONS(59), }, - [431] = { - [sym_string_literal] = STATE(687), - [aux_sym_concatenated_string_repeat1] = STATE(687), - [anon_sym_COMMA] = ACTIONS(1655), - [anon_sym_SEMI] = ACTIONS(1655), - [anon_sym_LPAREN2] = ACTIONS(1655), - [anon_sym_STAR] = ACTIONS(1657), - [anon_sym_LBRACK] = ACTIONS(1655), - [anon_sym_EQ] = ACTIONS(1657), - [anon_sym_QMARK] = ACTIONS(1655), - [anon_sym_STAR_EQ] = ACTIONS(1655), - [anon_sym_SLASH_EQ] = ACTIONS(1655), - [anon_sym_PERCENT_EQ] = ACTIONS(1655), - [anon_sym_PLUS_EQ] = ACTIONS(1655), - [anon_sym_DASH_EQ] = ACTIONS(1655), - [anon_sym_LT_LT_EQ] = ACTIONS(1655), - [anon_sym_GT_GT_EQ] = ACTIONS(1655), - [anon_sym_AMP_EQ] = ACTIONS(1655), - [anon_sym_CARET_EQ] = ACTIONS(1655), - [anon_sym_PIPE_EQ] = ACTIONS(1655), - [anon_sym_AMP] = ACTIONS(1657), - [anon_sym_PIPE_PIPE] = ACTIONS(1655), - [anon_sym_AMP_AMP] = ACTIONS(1655), - [anon_sym_PIPE] = ACTIONS(1657), - [anon_sym_CARET] = ACTIONS(1657), - [anon_sym_EQ_EQ] = ACTIONS(1655), - [anon_sym_BANG_EQ] = ACTIONS(1655), - [anon_sym_LT] = ACTIONS(1657), - [anon_sym_GT] = ACTIONS(1657), - [anon_sym_LT_EQ] = ACTIONS(1655), - [anon_sym_GT_EQ] = ACTIONS(1655), - [anon_sym_LT_LT] = ACTIONS(1657), - [anon_sym_GT_GT] = ACTIONS(1657), - [anon_sym_PLUS] = ACTIONS(1657), - [anon_sym_DASH] = ACTIONS(1657), - [anon_sym_SLASH] = ACTIONS(1657), - [anon_sym_PERCENT] = ACTIONS(1657), - [anon_sym_DASH_DASH] = ACTIONS(1655), - [anon_sym_PLUS_PLUS] = ACTIONS(1655), - [anon_sym_DOT] = ACTIONS(1655), - [anon_sym_DASH_GT] = ACTIONS(1655), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_comment] = ACTIONS(37), + [421] = { + [anon_sym_LF] = ACTIONS(1655), + [sym_preproc_arg] = ACTIONS(1655), + [sym_comment] = ACTIONS(69), }, - [432] = { + [422] = { + [aux_sym_preproc_params_repeat1] = STATE(624), + [anon_sym_COMMA] = ACTIONS(1119), + [anon_sym_RPAREN] = ACTIONS(1657), + [sym_comment] = ACTIONS(59), + }, + [423] = { [ts_builtin_sym_end] = ACTIONS(1659), + [anon_sym_SEMI] = ACTIONS(1659), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1661), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1661), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1661), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1661), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1661), [sym_preproc_directive] = ACTIONS(1661), - [anon_sym_SEMI] = ACTIONS(1659), [anon_sym_typedef] = ACTIONS(1661), [anon_sym_extern] = ACTIONS(1661), [anon_sym_LBRACE] = ACTIONS(1659), @@ -18184,7 +19226,6 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(1661), [anon_sym_union] = ACTIONS(1661), [anon_sym_if] = ACTIONS(1661), - [anon_sym_else] = ACTIONS(1661), [anon_sym_switch] = ACTIONS(1661), [anon_sym_case] = ACTIONS(1661), [anon_sym_default] = ACTIONS(1661), @@ -18210,3694 +19251,4117 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1661), [sym_null] = ACTIONS(1661), [sym_identifier] = ACTIONS(1661), - [sym_comment] = ACTIONS(37), + [sym_comment] = ACTIONS(59), + }, + [424] = { + [anon_sym_SEMI] = ACTIONS(417), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(419), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(419), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(419), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(419), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(419), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(419), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(419), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(419), + [sym_preproc_directive] = ACTIONS(419), + [anon_sym_typedef] = ACTIONS(419), + [anon_sym_extern] = ACTIONS(419), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_LPAREN2] = ACTIONS(417), + [anon_sym_STAR] = ACTIONS(417), + [anon_sym_static] = ACTIONS(419), + [anon_sym_auto] = ACTIONS(419), + [anon_sym_register] = ACTIONS(419), + [anon_sym_inline] = ACTIONS(419), + [anon_sym_const] = ACTIONS(419), + [anon_sym_restrict] = ACTIONS(419), + [anon_sym_volatile] = ACTIONS(419), + [anon_sym__Atomic] = ACTIONS(419), + [anon_sym_unsigned] = ACTIONS(419), + [anon_sym_long] = ACTIONS(419), + [anon_sym_short] = ACTIONS(419), + [sym_primitive_type] = ACTIONS(419), + [anon_sym_enum] = ACTIONS(419), + [anon_sym_struct] = ACTIONS(419), + [anon_sym_union] = ACTIONS(419), + [anon_sym_if] = ACTIONS(419), + [anon_sym_switch] = ACTIONS(419), + [anon_sym_case] = ACTIONS(419), + [anon_sym_default] = ACTIONS(419), + [anon_sym_while] = ACTIONS(419), + [anon_sym_do] = ACTIONS(419), + [anon_sym_for] = ACTIONS(419), + [anon_sym_return] = ACTIONS(419), + [anon_sym_break] = ACTIONS(419), + [anon_sym_continue] = ACTIONS(419), + [anon_sym_goto] = ACTIONS(419), + [anon_sym_AMP] = ACTIONS(417), + [anon_sym_BANG] = ACTIONS(417), + [anon_sym_TILDE] = ACTIONS(417), + [anon_sym_PLUS] = ACTIONS(419), + [anon_sym_DASH] = ACTIONS(419), + [anon_sym_DASH_DASH] = ACTIONS(417), + [anon_sym_PLUS_PLUS] = ACTIONS(417), + [anon_sym_sizeof] = ACTIONS(419), + [sym_number_literal] = ACTIONS(417), + [anon_sym_SQUOTE] = ACTIONS(417), + [anon_sym_DQUOTE] = ACTIONS(417), + [sym_true] = ACTIONS(419), + [sym_false] = ACTIONS(419), + [sym_null] = ACTIONS(419), + [sym_identifier] = ACTIONS(419), + [sym_comment] = ACTIONS(59), + }, + [425] = { + [aux_sym_string_literal_repeat1] = STATE(188), + [anon_sym_DQUOTE] = ACTIONS(1663), + [aux_sym_SLASH_LBRACK_CARET_BSLASH_BSLASH_DQUOTE_BSLASHn_RBRACK_SLASH] = ACTIONS(423), + [sym_escape_sequence] = ACTIONS(423), + [sym_comment] = ACTIONS(69), + }, + [426] = { + [anon_sym_SEMI] = ACTIONS(654), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(656), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(656), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(656), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(656), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(656), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(656), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(656), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(656), + [sym_preproc_directive] = ACTIONS(656), + [anon_sym_typedef] = ACTIONS(656), + [anon_sym_extern] = ACTIONS(656), + [anon_sym_LBRACE] = ACTIONS(654), + [anon_sym_LPAREN2] = ACTIONS(654), + [anon_sym_STAR] = ACTIONS(654), + [anon_sym_static] = ACTIONS(656), + [anon_sym_auto] = ACTIONS(656), + [anon_sym_register] = ACTIONS(656), + [anon_sym_inline] = ACTIONS(656), + [anon_sym_const] = ACTIONS(656), + [anon_sym_restrict] = ACTIONS(656), + [anon_sym_volatile] = ACTIONS(656), + [anon_sym__Atomic] = ACTIONS(656), + [anon_sym_unsigned] = ACTIONS(656), + [anon_sym_long] = ACTIONS(656), + [anon_sym_short] = ACTIONS(656), + [sym_primitive_type] = ACTIONS(656), + [anon_sym_enum] = ACTIONS(656), + [anon_sym_struct] = ACTIONS(656), + [anon_sym_union] = ACTIONS(656), + [anon_sym_if] = ACTIONS(656), + [anon_sym_switch] = ACTIONS(656), + [anon_sym_case] = ACTIONS(656), + [anon_sym_default] = ACTIONS(656), + [anon_sym_while] = ACTIONS(656), + [anon_sym_do] = ACTIONS(656), + [anon_sym_for] = ACTIONS(656), + [anon_sym_return] = ACTIONS(656), + [anon_sym_break] = ACTIONS(656), + [anon_sym_continue] = ACTIONS(656), + [anon_sym_goto] = ACTIONS(656), + [anon_sym_AMP] = ACTIONS(654), + [anon_sym_BANG] = ACTIONS(654), + [anon_sym_TILDE] = ACTIONS(654), + [anon_sym_PLUS] = ACTIONS(656), + [anon_sym_DASH] = ACTIONS(656), + [anon_sym_DASH_DASH] = ACTIONS(654), + [anon_sym_PLUS_PLUS] = ACTIONS(654), + [anon_sym_sizeof] = ACTIONS(656), + [sym_number_literal] = ACTIONS(654), + [anon_sym_SQUOTE] = ACTIONS(654), + [anon_sym_DQUOTE] = ACTIONS(654), + [sym_true] = ACTIONS(656), + [sym_false] = ACTIONS(656), + [sym_null] = ACTIONS(656), + [sym_identifier] = ACTIONS(656), + [sym_comment] = ACTIONS(59), + }, + [427] = { + [anon_sym_LF] = ACTIONS(1665), + [sym_comment] = ACTIONS(69), + }, + [428] = { + [anon_sym_LF] = ACTIONS(1667), + [sym_preproc_arg] = ACTIONS(1669), + [sym_comment] = ACTIONS(69), + }, + [429] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(678), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(678), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(678), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(678), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(678), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(678), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(678), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(678), + [sym_preproc_directive] = ACTIONS(678), + [anon_sym_typedef] = ACTIONS(678), + [anon_sym_extern] = ACTIONS(678), + [anon_sym_LPAREN2] = ACTIONS(676), + [anon_sym_STAR] = ACTIONS(676), + [anon_sym_static] = ACTIONS(678), + [anon_sym_auto] = ACTIONS(678), + [anon_sym_register] = ACTIONS(678), + [anon_sym_inline] = ACTIONS(678), + [anon_sym_const] = ACTIONS(678), + [anon_sym_restrict] = ACTIONS(678), + [anon_sym_volatile] = ACTIONS(678), + [anon_sym__Atomic] = ACTIONS(678), + [anon_sym_unsigned] = ACTIONS(678), + [anon_sym_long] = ACTIONS(678), + [anon_sym_short] = ACTIONS(678), + [sym_primitive_type] = ACTIONS(678), + [anon_sym_enum] = ACTIONS(678), + [anon_sym_struct] = ACTIONS(678), + [anon_sym_union] = ACTIONS(678), + [anon_sym_AMP] = ACTIONS(676), + [anon_sym_BANG] = ACTIONS(676), + [anon_sym_TILDE] = ACTIONS(676), + [anon_sym_PLUS] = ACTIONS(678), + [anon_sym_DASH] = ACTIONS(678), + [anon_sym_DASH_DASH] = ACTIONS(676), + [anon_sym_PLUS_PLUS] = ACTIONS(676), + [anon_sym_sizeof] = ACTIONS(678), + [sym_number_literal] = ACTIONS(676), + [anon_sym_SQUOTE] = ACTIONS(676), + [anon_sym_DQUOTE] = ACTIONS(676), + [sym_true] = ACTIONS(678), + [sym_false] = ACTIONS(678), + [sym_null] = ACTIONS(678), + [sym_identifier] = ACTIONS(678), + [sym_comment] = ACTIONS(59), + }, + [430] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1671), + [sym_comment] = ACTIONS(59), + }, + [431] = { + [sym_preproc_include] = STATE(269), + [sym_preproc_def] = STATE(269), + [sym_preproc_function_def] = STATE(269), + [sym_preproc_call] = STATE(269), + [sym_preproc_if] = STATE(269), + [sym_preproc_ifdef] = STATE(269), + [sym_preproc_else] = STATE(630), + [sym_preproc_elif] = STATE(630), + [sym_function_definition] = STATE(269), + [sym_declaration] = STATE(269), + [sym_type_definition] = STATE(269), + [sym__declaration_specifiers] = STATE(124), + [sym_linkage_specification] = STATE(269), + [sym_storage_class_specifier] = STATE(30), + [sym_type_qualifier] = STATE(30), + [sym__type_specifier] = STATE(25), + [sym_sized_type_specifier] = STATE(25), + [sym_enum_specifier] = STATE(25), + [sym_struct_specifier] = STATE(25), + [sym_union_specifier] = STATE(25), + [sym__expression] = STATE(26), + [sym_conditional_expression] = STATE(26), + [sym_assignment_expression] = STATE(26), + [sym_pointer_expression] = STATE(26), + [sym_logical_expression] = STATE(26), + [sym_bitwise_expression] = STATE(26), + [sym_equality_expression] = STATE(26), + [sym_relational_expression] = STATE(26), + [sym_shift_expression] = STATE(26), + [sym_math_expression] = STATE(26), + [sym_cast_expression] = STATE(26), + [sym_sizeof_expression] = STATE(26), + [sym_subscript_expression] = STATE(26), + [sym_call_expression] = STATE(125), + [sym_field_expression] = STATE(26), + [sym_compound_literal_expression] = STATE(26), + [sym_parenthesized_expression] = STATE(26), + [sym_char_literal] = STATE(26), + [sym_concatenated_string] = STATE(26), + [sym_string_literal] = STATE(28), + [sym__empty_declaration] = STATE(269), + [sym_macro_type_specifier] = STATE(25), + [aux_sym_translation_unit_repeat1] = STATE(269), + [aux_sym__declaration_specifiers_repeat1] = STATE(30), + [aux_sym_sized_type_specifier_repeat1] = STATE(31), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(251), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(253), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(255), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1673), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(259), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(259), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(261), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(263), + [sym_preproc_directive] = ACTIONS(265), + [anon_sym_typedef] = ACTIONS(267), + [anon_sym_extern] = ACTIONS(269), + [anon_sym_LPAREN2] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_static] = ACTIONS(25), + [anon_sym_auto] = ACTIONS(25), + [anon_sym_register] = ACTIONS(25), + [anon_sym_inline] = ACTIONS(25), + [anon_sym_const] = ACTIONS(27), + [anon_sym_restrict] = ACTIONS(27), + [anon_sym_volatile] = ACTIONS(27), + [anon_sym__Atomic] = ACTIONS(27), + [anon_sym_unsigned] = ACTIONS(29), + [anon_sym_long] = ACTIONS(29), + [anon_sym_short] = ACTIONS(29), + [sym_primitive_type] = ACTIONS(31), + [anon_sym_enum] = ACTIONS(33), + [anon_sym_struct] = ACTIONS(35), + [anon_sym_union] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(41), + [anon_sym_PLUS] = ACTIONS(43), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_DASH_DASH] = ACTIONS(45), + [anon_sym_PLUS_PLUS] = ACTIONS(45), + [anon_sym_sizeof] = ACTIONS(47), + [sym_number_literal] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(55), + [sym_false] = ACTIONS(55), + [sym_null] = ACTIONS(55), + [sym_identifier] = ACTIONS(57), + [sym_comment] = ACTIONS(59), + }, + [432] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(718), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(718), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(718), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(718), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(718), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(718), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(718), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(718), + [sym_preproc_directive] = ACTIONS(718), + [anon_sym_typedef] = ACTIONS(718), + [anon_sym_extern] = ACTIONS(718), + [anon_sym_LPAREN2] = ACTIONS(716), + [anon_sym_STAR] = ACTIONS(716), + [anon_sym_static] = ACTIONS(718), + [anon_sym_auto] = ACTIONS(718), + [anon_sym_register] = ACTIONS(718), + [anon_sym_inline] = ACTIONS(718), + [anon_sym_const] = ACTIONS(718), + [anon_sym_restrict] = ACTIONS(718), + [anon_sym_volatile] = ACTIONS(718), + [anon_sym__Atomic] = ACTIONS(718), + [anon_sym_unsigned] = ACTIONS(718), + [anon_sym_long] = ACTIONS(718), + [anon_sym_short] = ACTIONS(718), + [sym_primitive_type] = ACTIONS(718), + [anon_sym_enum] = ACTIONS(718), + [anon_sym_struct] = ACTIONS(718), + [anon_sym_union] = ACTIONS(718), + [anon_sym_AMP] = ACTIONS(716), + [anon_sym_BANG] = ACTIONS(716), + [anon_sym_TILDE] = ACTIONS(716), + [anon_sym_PLUS] = ACTIONS(718), + [anon_sym_DASH] = ACTIONS(718), + [anon_sym_DASH_DASH] = ACTIONS(716), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_sizeof] = ACTIONS(718), + [sym_number_literal] = ACTIONS(716), + [anon_sym_SQUOTE] = ACTIONS(716), + [anon_sym_DQUOTE] = ACTIONS(716), + [sym_true] = ACTIONS(718), + [sym_false] = ACTIONS(718), + [sym_null] = ACTIONS(718), + [sym_identifier] = ACTIONS(718), + [sym_comment] = ACTIONS(59), }, [433] = { - [sym_preproc_include] = STATE(433), - [sym_preproc_def] = STATE(433), - [sym_preproc_function_def] = STATE(433), - [sym_preproc_call] = STATE(433), - [sym_preproc_if_in_compound_statement] = STATE(433), - [sym_preproc_ifdef_in_compound_statement] = STATE(433), - [sym_declaration] = STATE(433), - [sym_type_definition] = STATE(433), - [sym__declaration_specifiers] = STATE(227), - [sym_compound_statement] = STATE(433), - [sym_storage_class_specifier] = STATE(19), - [sym_type_qualifier] = STATE(19), - [sym__type_specifier] = STATE(17), - [sym_sized_type_specifier] = STATE(17), - [sym_enum_specifier] = STATE(17), - [sym_struct_specifier] = STATE(17), - [sym_union_specifier] = STATE(17), - [sym_labeled_statement] = STATE(433), - [sym_expression_statement] = STATE(433), - [sym_if_statement] = STATE(433), - [sym_switch_statement] = STATE(433), - [sym_case_statement] = STATE(433), - [sym_while_statement] = STATE(433), - [sym_do_statement] = STATE(433), - [sym_for_statement] = STATE(433), - [sym_return_statement] = STATE(433), - [sym_break_statement] = STATE(433), - [sym_continue_statement] = STATE(433), - [sym_goto_statement] = STATE(433), - [sym__expression] = STATE(228), - [sym_comma_expression] = STATE(229), - [sym_conditional_expression] = STATE(228), - [sym_assignment_expression] = STATE(228), - [sym_pointer_expression] = STATE(228), - [sym_logical_expression] = STATE(228), - [sym_bitwise_expression] = STATE(228), - [sym_equality_expression] = STATE(228), - [sym_relational_expression] = STATE(228), - [sym_shift_expression] = STATE(228), - [sym_math_expression] = STATE(228), - [sym_cast_expression] = STATE(228), - [sym_sizeof_expression] = STATE(228), - [sym_subscript_expression] = STATE(228), - [sym_call_expression] = STATE(228), - [sym_field_expression] = STATE(228), - [sym_compound_literal_expression] = STATE(228), - [sym_parenthesized_expression] = STATE(228), - [sym_char_literal] = STATE(228), - [sym_concatenated_string] = STATE(228), - [sym_string_literal] = STATE(230), - [sym__empty_declaration] = STATE(433), - [sym_macro_type_specifier] = STATE(17), - [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(433), - [aux_sym__declaration_specifiers_repeat1] = STATE(19), - [aux_sym_sized_type_specifier_repeat1] = STATE(20), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1663), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1666), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1669), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1672), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1672), - [sym_preproc_directive] = ACTIONS(1675), - [anon_sym_SEMI] = ACTIONS(1678), - [anon_sym_typedef] = ACTIONS(1681), - [anon_sym_extern] = ACTIONS(1684), - [anon_sym_LBRACE] = ACTIONS(1687), - [anon_sym_RBRACE] = ACTIONS(1690), - [anon_sym_LPAREN2] = ACTIONS(1692), - [anon_sym_STAR] = ACTIONS(1695), - [anon_sym_static] = ACTIONS(1684), - [anon_sym_auto] = ACTIONS(1684), - [anon_sym_register] = ACTIONS(1684), - [anon_sym_inline] = ACTIONS(1684), - [anon_sym_const] = ACTIONS(1698), - [anon_sym_restrict] = ACTIONS(1698), - [anon_sym_volatile] = ACTIONS(1698), - [anon_sym__Atomic] = ACTIONS(1698), - [anon_sym_unsigned] = ACTIONS(1701), - [anon_sym_long] = ACTIONS(1701), - [anon_sym_short] = ACTIONS(1701), - [sym_primitive_type] = ACTIONS(1704), - [anon_sym_enum] = ACTIONS(1707), - [anon_sym_struct] = ACTIONS(1710), - [anon_sym_union] = ACTIONS(1713), - [anon_sym_if] = ACTIONS(1716), - [anon_sym_switch] = ACTIONS(1719), - [anon_sym_case] = ACTIONS(1722), - [anon_sym_default] = ACTIONS(1725), - [anon_sym_while] = ACTIONS(1728), - [anon_sym_do] = ACTIONS(1731), - [anon_sym_for] = ACTIONS(1734), - [anon_sym_return] = ACTIONS(1737), - [anon_sym_break] = ACTIONS(1740), - [anon_sym_continue] = ACTIONS(1743), - [anon_sym_goto] = ACTIONS(1746), - [anon_sym_AMP] = ACTIONS(1695), - [anon_sym_BANG] = ACTIONS(1749), - [anon_sym_TILDE] = ACTIONS(1752), - [anon_sym_PLUS] = ACTIONS(1755), - [anon_sym_DASH] = ACTIONS(1755), - [anon_sym_DASH_DASH] = ACTIONS(1758), - [anon_sym_PLUS_PLUS] = ACTIONS(1758), - [anon_sym_sizeof] = ACTIONS(1761), - [sym_number_literal] = ACTIONS(1764), - [anon_sym_SQUOTE] = ACTIONS(1767), - [anon_sym_DQUOTE] = ACTIONS(1770), - [sym_true] = ACTIONS(1773), - [sym_false] = ACTIONS(1773), - [sym_null] = ACTIONS(1773), - [sym_identifier] = ACTIONS(1776), - [sym_comment] = ACTIONS(37), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1675), + [sym_comment] = ACTIONS(59), }, [434] = { - [sym__declaration_specifiers] = STATE(234), - [sym_storage_class_specifier] = STATE(236), - [sym_type_qualifier] = STATE(236), - [sym__type_specifier] = STATE(235), - [sym_sized_type_specifier] = STATE(235), - [sym_enum_specifier] = STATE(235), - [sym_struct_specifier] = STATE(235), - [sym_union_specifier] = STATE(235), - [sym_parameter_declaration] = STATE(688), - [sym_macro_type_specifier] = STATE(235), - [aux_sym__declaration_specifiers_repeat1] = STATE(236), - [aux_sym_sized_type_specifier_repeat1] = STATE(237), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1779), - [anon_sym_extern] = ACTIONS(21), - [anon_sym_static] = ACTIONS(21), - [anon_sym_auto] = ACTIONS(21), - [anon_sym_register] = ACTIONS(21), - [anon_sym_inline] = ACTIONS(21), - [anon_sym_const] = ACTIONS(23), - [anon_sym_restrict] = ACTIONS(23), - [anon_sym_volatile] = ACTIONS(23), - [anon_sym__Atomic] = ACTIONS(23), - [anon_sym_unsigned] = ACTIONS(555), - [anon_sym_long] = ACTIONS(555), - [anon_sym_short] = ACTIONS(555), - [sym_primitive_type] = ACTIONS(557), - [anon_sym_enum] = ACTIONS(29), - [anon_sym_struct] = ACTIONS(31), - [anon_sym_union] = ACTIONS(33), - [sym_identifier] = ACTIONS(35), - [sym_comment] = ACTIONS(37), + [sym_preproc_include] = STATE(269), + [sym_preproc_def] = STATE(269), + [sym_preproc_function_def] = STATE(269), + [sym_preproc_call] = STATE(269), + [sym_preproc_if] = STATE(269), + [sym_preproc_ifdef] = STATE(269), + [sym_preproc_else] = STATE(632), + [sym_preproc_elif] = STATE(632), + [sym_function_definition] = STATE(269), + [sym_declaration] = STATE(269), + [sym_type_definition] = STATE(269), + [sym__declaration_specifiers] = STATE(124), + [sym_linkage_specification] = STATE(269), + [sym_storage_class_specifier] = STATE(30), + [sym_type_qualifier] = STATE(30), + [sym__type_specifier] = STATE(25), + [sym_sized_type_specifier] = STATE(25), + [sym_enum_specifier] = STATE(25), + [sym_struct_specifier] = STATE(25), + [sym_union_specifier] = STATE(25), + [sym__expression] = STATE(26), + [sym_conditional_expression] = STATE(26), + [sym_assignment_expression] = STATE(26), + [sym_pointer_expression] = STATE(26), + [sym_logical_expression] = STATE(26), + [sym_bitwise_expression] = STATE(26), + [sym_equality_expression] = STATE(26), + [sym_relational_expression] = STATE(26), + [sym_shift_expression] = STATE(26), + [sym_math_expression] = STATE(26), + [sym_cast_expression] = STATE(26), + [sym_sizeof_expression] = STATE(26), + [sym_subscript_expression] = STATE(26), + [sym_call_expression] = STATE(125), + [sym_field_expression] = STATE(26), + [sym_compound_literal_expression] = STATE(26), + [sym_parenthesized_expression] = STATE(26), + [sym_char_literal] = STATE(26), + [sym_concatenated_string] = STATE(26), + [sym_string_literal] = STATE(28), + [sym__empty_declaration] = STATE(269), + [sym_macro_type_specifier] = STATE(25), + [aux_sym_translation_unit_repeat1] = STATE(269), + [aux_sym__declaration_specifiers_repeat1] = STATE(30), + [aux_sym_sized_type_specifier_repeat1] = STATE(31), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(251), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(253), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(255), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1677), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(259), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(259), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(261), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(263), + [sym_preproc_directive] = ACTIONS(265), + [anon_sym_typedef] = ACTIONS(267), + [anon_sym_extern] = ACTIONS(269), + [anon_sym_LPAREN2] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_static] = ACTIONS(25), + [anon_sym_auto] = ACTIONS(25), + [anon_sym_register] = ACTIONS(25), + [anon_sym_inline] = ACTIONS(25), + [anon_sym_const] = ACTIONS(27), + [anon_sym_restrict] = ACTIONS(27), + [anon_sym_volatile] = ACTIONS(27), + [anon_sym__Atomic] = ACTIONS(27), + [anon_sym_unsigned] = ACTIONS(29), + [anon_sym_long] = ACTIONS(29), + [anon_sym_short] = ACTIONS(29), + [sym_primitive_type] = ACTIONS(31), + [anon_sym_enum] = ACTIONS(33), + [anon_sym_struct] = ACTIONS(35), + [anon_sym_union] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(41), + [anon_sym_PLUS] = ACTIONS(43), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_DASH_DASH] = ACTIONS(45), + [anon_sym_PLUS_PLUS] = ACTIONS(45), + [anon_sym_sizeof] = ACTIONS(47), + [sym_number_literal] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(55), + [sym_false] = ACTIONS(55), + [sym_null] = ACTIONS(55), + [sym_identifier] = ACTIONS(57), + [sym_comment] = ACTIONS(59), }, [435] = { - [anon_sym_COMMA] = ACTIONS(1781), - [anon_sym_RPAREN] = ACTIONS(1781), - [anon_sym_SEMI] = ACTIONS(1781), - [anon_sym_LBRACE] = ACTIONS(1781), - [anon_sym_LPAREN2] = ACTIONS(1781), - [anon_sym_LBRACK] = ACTIONS(1781), - [anon_sym_EQ] = ACTIONS(1781), - [anon_sym_COLON] = ACTIONS(1781), - [sym_comment] = ACTIONS(37), + [aux_sym_string_literal_repeat1] = STATE(634), + [anon_sym_DQUOTE] = ACTIONS(1679), + [aux_sym_SLASH_LBRACK_CARET_BSLASH_BSLASH_DQUOTE_BSLASHn_RBRACK_SLASH] = ACTIONS(1681), + [sym_escape_sequence] = ACTIONS(1681), + [sym_comment] = ACTIONS(69), }, [436] = { - [aux_sym_parameter_list_repeat1] = STATE(690), - [anon_sym_COMMA] = ACTIONS(1050), - [anon_sym_RPAREN] = ACTIONS(1783), - [sym_comment] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(241), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(243), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(243), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(243), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(243), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(243), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(243), + [sym_preproc_directive] = ACTIONS(243), + [anon_sym_typedef] = ACTIONS(243), + [anon_sym_extern] = ACTIONS(243), + [anon_sym_LBRACE] = ACTIONS(241), + [anon_sym_LPAREN2] = ACTIONS(241), + [anon_sym_STAR] = ACTIONS(241), + [anon_sym_static] = ACTIONS(243), + [anon_sym_auto] = ACTIONS(243), + [anon_sym_register] = ACTIONS(243), + [anon_sym_inline] = ACTIONS(243), + [anon_sym_const] = ACTIONS(243), + [anon_sym_restrict] = ACTIONS(243), + [anon_sym_volatile] = ACTIONS(243), + [anon_sym__Atomic] = ACTIONS(243), + [anon_sym_unsigned] = ACTIONS(243), + [anon_sym_long] = ACTIONS(243), + [anon_sym_short] = ACTIONS(243), + [sym_primitive_type] = ACTIONS(243), + [anon_sym_enum] = ACTIONS(243), + [anon_sym_struct] = ACTIONS(243), + [anon_sym_union] = ACTIONS(243), + [anon_sym_if] = ACTIONS(243), + [anon_sym_switch] = ACTIONS(243), + [anon_sym_case] = ACTIONS(243), + [anon_sym_default] = ACTIONS(243), + [anon_sym_while] = ACTIONS(243), + [anon_sym_do] = ACTIONS(243), + [anon_sym_for] = ACTIONS(243), + [anon_sym_return] = ACTIONS(243), + [anon_sym_break] = ACTIONS(243), + [anon_sym_continue] = ACTIONS(243), + [anon_sym_goto] = ACTIONS(243), + [anon_sym_AMP] = ACTIONS(241), + [anon_sym_BANG] = ACTIONS(241), + [anon_sym_TILDE] = ACTIONS(241), + [anon_sym_PLUS] = ACTIONS(243), + [anon_sym_DASH] = ACTIONS(243), + [anon_sym_DASH_DASH] = ACTIONS(241), + [anon_sym_PLUS_PLUS] = ACTIONS(241), + [anon_sym_sizeof] = ACTIONS(243), + [sym_number_literal] = ACTIONS(241), + [anon_sym_SQUOTE] = ACTIONS(241), + [anon_sym_DQUOTE] = ACTIONS(241), + [sym_true] = ACTIONS(243), + [sym_false] = ACTIONS(243), + [sym_null] = ACTIONS(243), + [sym_identifier] = ACTIONS(243), + [sym_comment] = ACTIONS(59), }, [437] = { - [sym__declaration_specifiers] = STATE(234), - [sym__declarator] = STATE(109), - [sym__abstract_declarator] = STATE(351), - [sym_pointer_declarator] = STATE(109), - [sym_abstract_pointer_declarator] = STATE(351), - [sym_function_declarator] = STATE(109), - [sym_abstract_function_declarator] = STATE(351), - [sym_array_declarator] = STATE(109), - [sym_abstract_array_declarator] = STATE(351), - [sym_storage_class_specifier] = STATE(236), - [sym_type_qualifier] = STATE(236), - [sym__type_specifier] = STATE(235), - [sym_sized_type_specifier] = STATE(235), - [sym_enum_specifier] = STATE(235), - [sym_struct_specifier] = STATE(235), - [sym_union_specifier] = STATE(235), - [sym_parameter_list] = STATE(192), - [sym_parameter_declaration] = STATE(232), - [sym_macro_type_specifier] = STATE(235), - [aux_sym__declaration_specifiers_repeat1] = STATE(236), - [aux_sym_sized_type_specifier_repeat1] = STATE(237), - [anon_sym_DOT_DOT_DOT] = ACTIONS(551), - [anon_sym_RPAREN] = ACTIONS(553), - [anon_sym_extern] = ACTIONS(21), - [anon_sym_LPAREN2] = ACTIONS(1058), - [anon_sym_STAR] = ACTIONS(1785), - [anon_sym_LBRACK] = ACTIONS(473), - [anon_sym_static] = ACTIONS(21), - [anon_sym_auto] = ACTIONS(21), - [anon_sym_register] = ACTIONS(21), - [anon_sym_inline] = ACTIONS(21), - [anon_sym_const] = ACTIONS(23), - [anon_sym_restrict] = ACTIONS(23), - [anon_sym_volatile] = ACTIONS(23), - [anon_sym__Atomic] = ACTIONS(23), - [anon_sym_unsigned] = ACTIONS(555), - [anon_sym_long] = ACTIONS(555), - [anon_sym_short] = ACTIONS(555), - [sym_primitive_type] = ACTIONS(557), - [anon_sym_enum] = ACTIONS(29), - [anon_sym_struct] = ACTIONS(31), - [anon_sym_union] = ACTIONS(33), - [sym_identifier] = ACTIONS(1787), - [sym_comment] = ACTIONS(37), + [sym_preproc_params] = STATE(637), + [anon_sym_LF] = ACTIONS(1683), + [anon_sym_LPAREN] = ACTIONS(247), + [sym_preproc_arg] = ACTIONS(1685), + [sym_comment] = ACTIONS(69), }, [438] = { - [sym__declarator] = STATE(110), - [sym__abstract_declarator] = STATE(352), - [sym_pointer_declarator] = STATE(110), - [sym_abstract_pointer_declarator] = STATE(352), - [sym_function_declarator] = STATE(110), - [sym_abstract_function_declarator] = STATE(352), - [sym_array_declarator] = STATE(110), - [sym_abstract_array_declarator] = STATE(352), - [sym_type_qualifier] = STATE(693), - [sym_parameter_list] = STATE(192), - [aux_sym_type_definition_repeat1] = STATE(693), - [anon_sym_COMMA] = ACTIONS(847), - [anon_sym_RPAREN] = ACTIONS(847), - [anon_sym_LPAREN2] = ACTIONS(1058), - [anon_sym_STAR] = ACTIONS(1060), - [anon_sym_LBRACK] = ACTIONS(473), - [anon_sym_const] = ACTIONS(23), - [anon_sym_restrict] = ACTIONS(23), - [anon_sym_volatile] = ACTIONS(23), - [anon_sym__Atomic] = ACTIONS(23), - [sym_identifier] = ACTIONS(223), - [sym_comment] = ACTIONS(37), + [sym_preproc_include] = STATE(640), + [sym_preproc_def] = STATE(640), + [sym_preproc_function_def] = STATE(640), + [sym_preproc_call] = STATE(640), + [sym_preproc_if] = STATE(640), + [sym_preproc_ifdef] = STATE(640), + [sym_preproc_else] = STATE(639), + [sym_preproc_elif] = STATE(639), + [sym_function_definition] = STATE(640), + [sym_declaration] = STATE(640), + [sym_type_definition] = STATE(640), + [sym__declaration_specifiers] = STATE(124), + [sym_linkage_specification] = STATE(640), + [sym_storage_class_specifier] = STATE(30), + [sym_type_qualifier] = STATE(30), + [sym__type_specifier] = STATE(25), + [sym_sized_type_specifier] = STATE(25), + [sym_enum_specifier] = STATE(25), + [sym_struct_specifier] = STATE(25), + [sym_union_specifier] = STATE(25), + [sym__expression] = STATE(26), + [sym_conditional_expression] = STATE(26), + [sym_assignment_expression] = STATE(26), + [sym_pointer_expression] = STATE(26), + [sym_logical_expression] = STATE(26), + [sym_bitwise_expression] = STATE(26), + [sym_equality_expression] = STATE(26), + [sym_relational_expression] = STATE(26), + [sym_shift_expression] = STATE(26), + [sym_math_expression] = STATE(26), + [sym_cast_expression] = STATE(26), + [sym_sizeof_expression] = STATE(26), + [sym_subscript_expression] = STATE(26), + [sym_call_expression] = STATE(125), + [sym_field_expression] = STATE(26), + [sym_compound_literal_expression] = STATE(26), + [sym_parenthesized_expression] = STATE(26), + [sym_char_literal] = STATE(26), + [sym_concatenated_string] = STATE(26), + [sym_string_literal] = STATE(28), + [sym__empty_declaration] = STATE(640), + [sym_macro_type_specifier] = STATE(25), + [aux_sym_translation_unit_repeat1] = STATE(640), + [aux_sym__declaration_specifiers_repeat1] = STATE(30), + [aux_sym_sized_type_specifier_repeat1] = STATE(31), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(251), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(253), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(255), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1687), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(259), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(259), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(261), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(263), + [sym_preproc_directive] = ACTIONS(265), + [anon_sym_typedef] = ACTIONS(267), + [anon_sym_extern] = ACTIONS(269), + [anon_sym_LPAREN2] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_static] = ACTIONS(25), + [anon_sym_auto] = ACTIONS(25), + [anon_sym_register] = ACTIONS(25), + [anon_sym_inline] = ACTIONS(25), + [anon_sym_const] = ACTIONS(27), + [anon_sym_restrict] = ACTIONS(27), + [anon_sym_volatile] = ACTIONS(27), + [anon_sym__Atomic] = ACTIONS(27), + [anon_sym_unsigned] = ACTIONS(29), + [anon_sym_long] = ACTIONS(29), + [anon_sym_short] = ACTIONS(29), + [sym_primitive_type] = ACTIONS(31), + [anon_sym_enum] = ACTIONS(33), + [anon_sym_struct] = ACTIONS(35), + [anon_sym_union] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(41), + [anon_sym_PLUS] = ACTIONS(43), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_DASH_DASH] = ACTIONS(45), + [anon_sym_PLUS_PLUS] = ACTIONS(45), + [anon_sym_sizeof] = ACTIONS(47), + [sym_number_literal] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(55), + [sym_false] = ACTIONS(55), + [sym_null] = ACTIONS(55), + [sym_identifier] = ACTIONS(57), + [sym_comment] = ACTIONS(59), }, [439] = { - [sym_parameter_list] = STATE(119), - [anon_sym_COMMA] = ACTIONS(1789), - [anon_sym_RPAREN] = ACTIONS(1789), - [anon_sym_LPAREN2] = ACTIONS(231), - [anon_sym_LBRACK] = ACTIONS(233), - [sym_comment] = ACTIONS(37), + [sym_preproc_include] = STATE(643), + [sym_preproc_def] = STATE(643), + [sym_preproc_function_def] = STATE(643), + [sym_preproc_call] = STATE(643), + [sym_preproc_if] = STATE(643), + [sym_preproc_ifdef] = STATE(643), + [sym_preproc_else] = STATE(642), + [sym_preproc_elif] = STATE(642), + [sym_function_definition] = STATE(643), + [sym_declaration] = STATE(643), + [sym_type_definition] = STATE(643), + [sym__declaration_specifiers] = STATE(124), + [sym_linkage_specification] = STATE(643), + [sym_storage_class_specifier] = STATE(30), + [sym_type_qualifier] = STATE(30), + [sym__type_specifier] = STATE(25), + [sym_sized_type_specifier] = STATE(25), + [sym_enum_specifier] = STATE(25), + [sym_struct_specifier] = STATE(25), + [sym_union_specifier] = STATE(25), + [sym__expression] = STATE(26), + [sym_conditional_expression] = STATE(26), + [sym_assignment_expression] = STATE(26), + [sym_pointer_expression] = STATE(26), + [sym_logical_expression] = STATE(26), + [sym_bitwise_expression] = STATE(26), + [sym_equality_expression] = STATE(26), + [sym_relational_expression] = STATE(26), + [sym_shift_expression] = STATE(26), + [sym_math_expression] = STATE(26), + [sym_cast_expression] = STATE(26), + [sym_sizeof_expression] = STATE(26), + [sym_subscript_expression] = STATE(26), + [sym_call_expression] = STATE(125), + [sym_field_expression] = STATE(26), + [sym_compound_literal_expression] = STATE(26), + [sym_parenthesized_expression] = STATE(26), + [sym_char_literal] = STATE(26), + [sym_concatenated_string] = STATE(26), + [sym_string_literal] = STATE(28), + [sym__empty_declaration] = STATE(643), + [sym_macro_type_specifier] = STATE(25), + [aux_sym_translation_unit_repeat1] = STATE(643), + [aux_sym__declaration_specifiers_repeat1] = STATE(30), + [aux_sym_sized_type_specifier_repeat1] = STATE(31), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(251), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(253), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(255), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1689), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(259), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(259), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(261), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(263), + [sym_preproc_directive] = ACTIONS(265), + [anon_sym_typedef] = ACTIONS(267), + [anon_sym_extern] = ACTIONS(269), + [anon_sym_LPAREN2] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_static] = ACTIONS(25), + [anon_sym_auto] = ACTIONS(25), + [anon_sym_register] = ACTIONS(25), + [anon_sym_inline] = ACTIONS(25), + [anon_sym_const] = ACTIONS(27), + [anon_sym_restrict] = ACTIONS(27), + [anon_sym_volatile] = ACTIONS(27), + [anon_sym__Atomic] = ACTIONS(27), + [anon_sym_unsigned] = ACTIONS(29), + [anon_sym_long] = ACTIONS(29), + [anon_sym_short] = ACTIONS(29), + [sym_primitive_type] = ACTIONS(31), + [anon_sym_enum] = ACTIONS(33), + [anon_sym_struct] = ACTIONS(35), + [anon_sym_union] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(41), + [anon_sym_PLUS] = ACTIONS(43), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_DASH_DASH] = ACTIONS(45), + [anon_sym_PLUS_PLUS] = ACTIONS(45), + [anon_sym_sizeof] = ACTIONS(47), + [sym_number_literal] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(55), + [sym_false] = ACTIONS(55), + [sym_null] = ACTIONS(55), + [sym_identifier] = ACTIONS(57), + [sym_comment] = ACTIONS(59), }, [440] = { - [sym_parameter_list] = STATE(358), - [anon_sym_COMMA] = ACTIONS(1789), - [anon_sym_RPAREN] = ACTIONS(1789), - [anon_sym_LPAREN2] = ACTIONS(231), - [anon_sym_LBRACK] = ACTIONS(859), - [sym_comment] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(273), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(275), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(275), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(275), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(275), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(275), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(275), + [sym_preproc_directive] = ACTIONS(275), + [anon_sym_typedef] = ACTIONS(275), + [anon_sym_extern] = ACTIONS(275), + [anon_sym_LBRACE] = ACTIONS(273), + [anon_sym_LPAREN2] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(273), + [anon_sym_static] = ACTIONS(275), + [anon_sym_auto] = ACTIONS(275), + [anon_sym_register] = ACTIONS(275), + [anon_sym_inline] = ACTIONS(275), + [anon_sym_const] = ACTIONS(275), + [anon_sym_restrict] = ACTIONS(275), + [anon_sym_volatile] = ACTIONS(275), + [anon_sym__Atomic] = ACTIONS(275), + [anon_sym_unsigned] = ACTIONS(275), + [anon_sym_long] = ACTIONS(275), + [anon_sym_short] = ACTIONS(275), + [sym_primitive_type] = ACTIONS(275), + [anon_sym_enum] = ACTIONS(275), + [anon_sym_struct] = ACTIONS(275), + [anon_sym_union] = ACTIONS(275), + [anon_sym_if] = ACTIONS(275), + [anon_sym_switch] = ACTIONS(275), + [anon_sym_case] = ACTIONS(275), + [anon_sym_default] = ACTIONS(275), + [anon_sym_while] = ACTIONS(275), + [anon_sym_do] = ACTIONS(275), + [anon_sym_for] = ACTIONS(275), + [anon_sym_return] = ACTIONS(275), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(275), + [anon_sym_goto] = ACTIONS(275), + [anon_sym_AMP] = ACTIONS(273), + [anon_sym_BANG] = ACTIONS(273), + [anon_sym_TILDE] = ACTIONS(273), + [anon_sym_PLUS] = ACTIONS(275), + [anon_sym_DASH] = ACTIONS(275), + [anon_sym_DASH_DASH] = ACTIONS(273), + [anon_sym_PLUS_PLUS] = ACTIONS(273), + [anon_sym_sizeof] = ACTIONS(275), + [sym_number_literal] = ACTIONS(273), + [anon_sym_SQUOTE] = ACTIONS(273), + [anon_sym_DQUOTE] = ACTIONS(273), + [sym_true] = ACTIONS(275), + [sym_false] = ACTIONS(275), + [sym_null] = ACTIONS(275), + [sym_identifier] = ACTIONS(275), + [sym_comment] = ACTIONS(59), }, [441] = { - [sym_storage_class_specifier] = STATE(694), - [sym_type_qualifier] = STATE(694), - [aux_sym__declaration_specifiers_repeat1] = STATE(694), - [anon_sym_COMMA] = ACTIONS(237), - [anon_sym_RPAREN] = ACTIONS(237), - [anon_sym_extern] = ACTIONS(21), - [anon_sym_LPAREN2] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(237), - [anon_sym_LBRACK] = ACTIONS(237), - [anon_sym_static] = ACTIONS(21), - [anon_sym_auto] = ACTIONS(21), - [anon_sym_register] = ACTIONS(21), - [anon_sym_inline] = ACTIONS(21), - [anon_sym_const] = ACTIONS(23), - [anon_sym_restrict] = ACTIONS(23), - [anon_sym_volatile] = ACTIONS(23), - [anon_sym__Atomic] = ACTIONS(23), - [sym_identifier] = ACTIONS(239), - [sym_comment] = ACTIONS(37), + [anon_sym_LF] = ACTIONS(1691), + [sym_comment] = ACTIONS(69), }, [442] = { - [sym_storage_class_specifier] = STATE(695), - [sym_type_qualifier] = STATE(695), - [aux_sym__declaration_specifiers_repeat1] = STATE(695), - [anon_sym_COMMA] = ACTIONS(237), - [anon_sym_RPAREN] = ACTIONS(237), - [anon_sym_extern] = ACTIONS(21), - [anon_sym_LPAREN2] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(237), - [anon_sym_LBRACK] = ACTIONS(237), - [anon_sym_static] = ACTIONS(21), - [anon_sym_auto] = ACTIONS(21), - [anon_sym_register] = ACTIONS(21), - [anon_sym_inline] = ACTIONS(21), - [anon_sym_const] = ACTIONS(23), - [anon_sym_restrict] = ACTIONS(23), - [anon_sym_volatile] = ACTIONS(23), - [anon_sym__Atomic] = ACTIONS(23), - [sym_identifier] = ACTIONS(239), - [sym_comment] = ACTIONS(37), + [sym__type_declarator] = STATE(645), + [sym_pointer_type_declarator] = STATE(645), + [sym_function_type_declarator] = STATE(645), + [sym_array_type_declarator] = STATE(645), + [anon_sym_LPAREN2] = ACTIONS(282), + [anon_sym_STAR] = ACTIONS(284), + [sym_identifier] = ACTIONS(286), + [sym_comment] = ACTIONS(59), }, [443] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(443), - [anon_sym_COMMA] = ACTIONS(304), - [anon_sym_RPAREN] = ACTIONS(304), - [anon_sym_extern] = ACTIONS(306), - [anon_sym_LPAREN2] = ACTIONS(304), - [anon_sym_STAR] = ACTIONS(304), - [anon_sym_LBRACK] = ACTIONS(304), - [anon_sym_static] = ACTIONS(306), - [anon_sym_auto] = ACTIONS(306), - [anon_sym_register] = ACTIONS(306), - [anon_sym_inline] = ACTIONS(306), - [anon_sym_const] = ACTIONS(306), - [anon_sym_restrict] = ACTIONS(306), - [anon_sym_volatile] = ACTIONS(306), - [anon_sym__Atomic] = ACTIONS(306), - [anon_sym_unsigned] = ACTIONS(1791), - [anon_sym_long] = ACTIONS(1791), - [anon_sym_short] = ACTIONS(1791), - [sym_primitive_type] = ACTIONS(306), - [sym_identifier] = ACTIONS(306), - [sym_comment] = ACTIONS(37), + [sym_type_qualifier] = STATE(136), + [sym__type_specifier] = STATE(646), + [sym_sized_type_specifier] = STATE(646), + [sym_enum_specifier] = STATE(646), + [sym_struct_specifier] = STATE(646), + [sym_union_specifier] = STATE(646), + [sym_macro_type_specifier] = STATE(646), + [aux_sym_type_definition_repeat1] = STATE(136), + [aux_sym_sized_type_specifier_repeat1] = STATE(42), + [anon_sym_const] = ACTIONS(27), + [anon_sym_restrict] = ACTIONS(27), + [anon_sym_volatile] = ACTIONS(27), + [anon_sym__Atomic] = ACTIONS(27), + [anon_sym_unsigned] = ACTIONS(77), + [anon_sym_long] = ACTIONS(77), + [anon_sym_short] = ACTIONS(77), + [sym_primitive_type] = ACTIONS(1693), + [anon_sym_enum] = ACTIONS(33), + [anon_sym_struct] = ACTIONS(35), + [anon_sym_union] = ACTIONS(37), + [sym_identifier] = ACTIONS(81), + [sym_comment] = ACTIONS(59), }, [444] = { - [anon_sym_RPAREN] = ACTIONS(1794), - [sym_comment] = ACTIONS(37), + [sym_function_definition] = STATE(648), + [sym_declaration] = STATE(648), + [sym__declaration_specifiers] = STATE(649), + [sym_declaration_list] = STATE(648), + [sym_storage_class_specifier] = STATE(142), + [sym_type_qualifier] = STATE(142), + [sym__type_specifier] = STATE(141), + [sym_sized_type_specifier] = STATE(141), + [sym_enum_specifier] = STATE(141), + [sym_struct_specifier] = STATE(141), + [sym_union_specifier] = STATE(141), + [sym_macro_type_specifier] = STATE(141), + [aux_sym__declaration_specifiers_repeat1] = STATE(142), + [aux_sym_sized_type_specifier_repeat1] = STATE(143), + [anon_sym_extern] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(1695), + [anon_sym_static] = ACTIONS(25), + [anon_sym_auto] = ACTIONS(25), + [anon_sym_register] = ACTIONS(25), + [anon_sym_inline] = ACTIONS(25), + [anon_sym_const] = ACTIONS(27), + [anon_sym_restrict] = ACTIONS(27), + [anon_sym_volatile] = ACTIONS(27), + [anon_sym__Atomic] = ACTIONS(27), + [anon_sym_unsigned] = ACTIONS(294), + [anon_sym_long] = ACTIONS(294), + [anon_sym_short] = ACTIONS(294), + [sym_primitive_type] = ACTIONS(296), + [anon_sym_enum] = ACTIONS(33), + [anon_sym_struct] = ACTIONS(35), + [anon_sym_union] = ACTIONS(37), + [sym_identifier] = ACTIONS(81), + [sym_comment] = ACTIONS(59), }, [445] = { - [sym_type_qualifier] = STATE(106), - [sym__type_specifier] = STATE(104), - [sym_sized_type_specifier] = STATE(104), - [sym_enum_specifier] = STATE(104), - [sym_struct_specifier] = STATE(104), - [sym_union_specifier] = STATE(104), - [sym__expression] = STATE(371), - [sym_comma_expression] = STATE(372), - [sym_conditional_expression] = STATE(371), - [sym_assignment_expression] = STATE(371), - [sym_pointer_expression] = STATE(371), - [sym_logical_expression] = STATE(371), - [sym_bitwise_expression] = STATE(371), - [sym_equality_expression] = STATE(371), - [sym_relational_expression] = STATE(371), - [sym_shift_expression] = STATE(371), - [sym_math_expression] = STATE(371), - [sym_cast_expression] = STATE(371), - [sym_type_descriptor] = STATE(697), - [sym_sizeof_expression] = STATE(371), - [sym_subscript_expression] = STATE(371), - [sym_call_expression] = STATE(371), - [sym_field_expression] = STATE(371), - [sym_compound_literal_expression] = STATE(371), - [sym_parenthesized_expression] = STATE(371), - [sym_char_literal] = STATE(371), - [sym_concatenated_string] = STATE(371), - [sym_string_literal] = STATE(374), - [sym_macro_type_specifier] = STATE(104), - [aux_sym_type_definition_repeat1] = STATE(106), - [aux_sym_sized_type_specifier_repeat1] = STATE(107), - [anon_sym_LPAREN2] = ACTIONS(892), - [anon_sym_STAR] = ACTIONS(894), - [anon_sym_const] = ACTIONS(23), - [anon_sym_restrict] = ACTIONS(23), - [anon_sym_volatile] = ACTIONS(23), - [anon_sym__Atomic] = ACTIONS(23), - [anon_sym_unsigned] = ACTIONS(211), - [anon_sym_long] = ACTIONS(211), - [anon_sym_short] = ACTIONS(211), - [sym_primitive_type] = ACTIONS(213), - [anon_sym_enum] = ACTIONS(29), - [anon_sym_struct] = ACTIONS(31), - [anon_sym_union] = ACTIONS(33), - [anon_sym_AMP] = ACTIONS(894), - [anon_sym_BANG] = ACTIONS(896), - [anon_sym_TILDE] = ACTIONS(898), - [anon_sym_PLUS] = ACTIONS(900), - [anon_sym_DASH] = ACTIONS(900), - [anon_sym_DASH_DASH] = ACTIONS(902), - [anon_sym_PLUS_PLUS] = ACTIONS(902), - [anon_sym_sizeof] = ACTIONS(904), - [sym_number_literal] = ACTIONS(906), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(908), - [sym_false] = ACTIONS(908), - [sym_null] = ACTIONS(908), - [sym_identifier] = ACTIONS(910), - [sym_comment] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(425), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(427), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(427), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(427), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(427), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(427), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(427), + [sym_preproc_directive] = ACTIONS(427), + [anon_sym_typedef] = ACTIONS(427), + [anon_sym_extern] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(425), + [anon_sym_LPAREN2] = ACTIONS(425), + [anon_sym_STAR] = ACTIONS(425), + [anon_sym_static] = ACTIONS(427), + [anon_sym_auto] = ACTIONS(427), + [anon_sym_register] = ACTIONS(427), + [anon_sym_inline] = ACTIONS(427), + [anon_sym_const] = ACTIONS(427), + [anon_sym_restrict] = ACTIONS(427), + [anon_sym_volatile] = ACTIONS(427), + [anon_sym__Atomic] = ACTIONS(427), + [anon_sym_unsigned] = ACTIONS(427), + [anon_sym_long] = ACTIONS(427), + [anon_sym_short] = ACTIONS(427), + [sym_primitive_type] = ACTIONS(427), + [anon_sym_enum] = ACTIONS(427), + [anon_sym_struct] = ACTIONS(427), + [anon_sym_union] = ACTIONS(427), + [anon_sym_if] = ACTIONS(427), + [anon_sym_switch] = ACTIONS(427), + [anon_sym_case] = ACTIONS(427), + [anon_sym_default] = ACTIONS(427), + [anon_sym_while] = ACTIONS(427), + [anon_sym_do] = ACTIONS(427), + [anon_sym_for] = ACTIONS(427), + [anon_sym_return] = ACTIONS(427), + [anon_sym_break] = ACTIONS(427), + [anon_sym_continue] = ACTIONS(427), + [anon_sym_goto] = ACTIONS(427), + [anon_sym_AMP] = ACTIONS(425), + [anon_sym_BANG] = ACTIONS(425), + [anon_sym_TILDE] = ACTIONS(425), + [anon_sym_PLUS] = ACTIONS(427), + [anon_sym_DASH] = ACTIONS(427), + [anon_sym_DASH_DASH] = ACTIONS(425), + [anon_sym_PLUS_PLUS] = ACTIONS(425), + [anon_sym_sizeof] = ACTIONS(427), + [sym_number_literal] = ACTIONS(425), + [anon_sym_SQUOTE] = ACTIONS(425), + [anon_sym_DQUOTE] = ACTIONS(425), + [sym_true] = ACTIONS(427), + [sym_false] = ACTIONS(427), + [sym_null] = ACTIONS(427), + [sym_identifier] = ACTIONS(427), + [sym_comment] = ACTIONS(59), }, [446] = { - [sym_argument_list] = STATE(430), - [anon_sym_LPAREN2] = ACTIONS(1012), - [anon_sym_STAR] = ACTIONS(1082), - [anon_sym_LBRACK] = ACTIONS(1016), - [anon_sym_RBRACK] = ACTIONS(1577), - [anon_sym_EQ] = ACTIONS(1579), - [anon_sym_QMARK] = ACTIONS(1577), - [anon_sym_STAR_EQ] = ACTIONS(1577), - [anon_sym_SLASH_EQ] = ACTIONS(1577), - [anon_sym_PERCENT_EQ] = ACTIONS(1577), - [anon_sym_PLUS_EQ] = ACTIONS(1577), - [anon_sym_DASH_EQ] = ACTIONS(1577), - [anon_sym_LT_LT_EQ] = ACTIONS(1577), - [anon_sym_GT_GT_EQ] = ACTIONS(1577), - [anon_sym_AMP_EQ] = ACTIONS(1577), - [anon_sym_CARET_EQ] = ACTIONS(1577), - [anon_sym_PIPE_EQ] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(1579), - [anon_sym_PIPE_PIPE] = ACTIONS(1577), - [anon_sym_AMP_AMP] = ACTIONS(1577), - [anon_sym_PIPE] = ACTIONS(1579), - [anon_sym_CARET] = ACTIONS(1579), - [anon_sym_EQ_EQ] = ACTIONS(1577), - [anon_sym_BANG_EQ] = ACTIONS(1577), - [anon_sym_LT] = ACTIONS(1579), - [anon_sym_GT] = ACTIONS(1579), - [anon_sym_LT_EQ] = ACTIONS(1577), - [anon_sym_GT_EQ] = ACTIONS(1577), - [anon_sym_LT_LT] = ACTIONS(1106), - [anon_sym_GT_GT] = ACTIONS(1106), - [anon_sym_PLUS] = ACTIONS(1108), - [anon_sym_DASH] = ACTIONS(1108), - [anon_sym_SLASH] = ACTIONS(1082), - [anon_sym_PERCENT] = ACTIONS(1082), - [anon_sym_DASH_DASH] = ACTIONS(1044), - [anon_sym_PLUS_PLUS] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1046), - [anon_sym_DASH_GT] = ACTIONS(1046), - [sym_comment] = ACTIONS(37), + [sym_compound_statement] = STATE(652), + [sym_parameter_list] = STATE(201), + [aux_sym_declaration_repeat1] = STATE(653), + [anon_sym_SEMI] = ACTIONS(1697), + [anon_sym_COMMA] = ACTIONS(437), + [anon_sym_LBRACE] = ACTIONS(1699), + [anon_sym_LPAREN2] = ACTIONS(441), + [anon_sym_LBRACK] = ACTIONS(443), + [anon_sym_EQ] = ACTIONS(445), + [sym_comment] = ACTIONS(59), }, [447] = { - [anon_sym_COMMA] = ACTIONS(1796), - [anon_sym_RPAREN] = ACTIONS(1796), - [anon_sym_SEMI] = ACTIONS(1796), - [anon_sym_LBRACE] = ACTIONS(1796), - [anon_sym_LPAREN2] = ACTIONS(1796), - [anon_sym_LBRACK] = ACTIONS(1796), - [anon_sym_EQ] = ACTIONS(1796), - [sym_comment] = ACTIONS(37), + [aux_sym_declaration_repeat1] = STATE(653), + [anon_sym_SEMI] = ACTIONS(1697), + [anon_sym_COMMA] = ACTIONS(437), + [sym_comment] = ACTIONS(59), }, [448] = { - [sym_argument_list] = STATE(430), - [anon_sym_LPAREN2] = ACTIONS(1012), - [anon_sym_STAR] = ACTIONS(1082), - [anon_sym_LBRACK] = ACTIONS(1016), - [anon_sym_RBRACK] = ACTIONS(1798), - [anon_sym_EQ] = ACTIONS(1084), - [anon_sym_QMARK] = ACTIONS(1086), - [anon_sym_STAR_EQ] = ACTIONS(1088), - [anon_sym_SLASH_EQ] = ACTIONS(1088), - [anon_sym_PERCENT_EQ] = ACTIONS(1088), - [anon_sym_PLUS_EQ] = ACTIONS(1088), - [anon_sym_DASH_EQ] = ACTIONS(1088), - [anon_sym_LT_LT_EQ] = ACTIONS(1088), - [anon_sym_GT_GT_EQ] = ACTIONS(1088), - [anon_sym_AMP_EQ] = ACTIONS(1088), - [anon_sym_CARET_EQ] = ACTIONS(1088), - [anon_sym_PIPE_EQ] = ACTIONS(1088), - [anon_sym_AMP] = ACTIONS(1090), - [anon_sym_PIPE_PIPE] = ACTIONS(1092), - [anon_sym_AMP_AMP] = ACTIONS(1094), - [anon_sym_PIPE] = ACTIONS(1096), - [anon_sym_CARET] = ACTIONS(1098), - [anon_sym_EQ_EQ] = ACTIONS(1100), - [anon_sym_BANG_EQ] = ACTIONS(1100), - [anon_sym_LT] = ACTIONS(1102), - [anon_sym_GT] = ACTIONS(1102), - [anon_sym_LT_EQ] = ACTIONS(1104), - [anon_sym_GT_EQ] = ACTIONS(1104), - [anon_sym_LT_LT] = ACTIONS(1106), - [anon_sym_GT_GT] = ACTIONS(1106), - [anon_sym_PLUS] = ACTIONS(1108), - [anon_sym_DASH] = ACTIONS(1108), - [anon_sym_SLASH] = ACTIONS(1082), - [anon_sym_PERCENT] = ACTIONS(1082), - [anon_sym_DASH_DASH] = ACTIONS(1044), - [anon_sym_PLUS_PLUS] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1046), - [anon_sym_DASH_GT] = ACTIONS(1046), - [sym_comment] = ACTIONS(37), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(545), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(545), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(545), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(545), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(545), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(545), + [sym_preproc_directive] = ACTIONS(545), + [anon_sym_typedef] = ACTIONS(545), + [anon_sym_extern] = ACTIONS(545), + [anon_sym_LPAREN2] = ACTIONS(543), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_static] = ACTIONS(545), + [anon_sym_auto] = ACTIONS(545), + [anon_sym_register] = ACTIONS(545), + [anon_sym_inline] = ACTIONS(545), + [anon_sym_const] = ACTIONS(545), + [anon_sym_restrict] = ACTIONS(545), + [anon_sym_volatile] = ACTIONS(545), + [anon_sym__Atomic] = ACTIONS(545), + [anon_sym_unsigned] = ACTIONS(545), + [anon_sym_long] = ACTIONS(545), + [anon_sym_short] = ACTIONS(545), + [sym_primitive_type] = ACTIONS(545), + [anon_sym_enum] = ACTIONS(545), + [anon_sym_struct] = ACTIONS(545), + [anon_sym_union] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(543), + [anon_sym_BANG] = ACTIONS(543), + [anon_sym_TILDE] = ACTIONS(543), + [anon_sym_PLUS] = ACTIONS(545), + [anon_sym_DASH] = ACTIONS(545), + [anon_sym_DASH_DASH] = ACTIONS(543), + [anon_sym_PLUS_PLUS] = ACTIONS(543), + [anon_sym_sizeof] = ACTIONS(545), + [sym_number_literal] = ACTIONS(543), + [anon_sym_SQUOTE] = ACTIONS(543), + [anon_sym_DQUOTE] = ACTIONS(543), + [sym_true] = ACTIONS(545), + [sym_false] = ACTIONS(545), + [sym_null] = ACTIONS(545), + [sym_identifier] = ACTIONS(545), + [sym_comment] = ACTIONS(59), }, [449] = { - [sym_storage_class_specifier] = STATE(699), - [sym_type_qualifier] = STATE(699), - [aux_sym__declaration_specifiers_repeat1] = STATE(699), - [anon_sym_extern] = ACTIONS(21), - [anon_sym_LPAREN2] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(237), - [anon_sym_RBRACK] = ACTIONS(237), - [anon_sym_static] = ACTIONS(21), - [anon_sym_auto] = ACTIONS(21), - [anon_sym_register] = ACTIONS(21), - [anon_sym_inline] = ACTIONS(21), - [anon_sym_const] = ACTIONS(23), - [anon_sym_restrict] = ACTIONS(23), - [anon_sym_volatile] = ACTIONS(23), - [anon_sym__Atomic] = ACTIONS(23), - [anon_sym_AMP] = ACTIONS(237), - [anon_sym_BANG] = ACTIONS(237), - [anon_sym_TILDE] = ACTIONS(237), - [anon_sym_PLUS] = ACTIONS(239), - [anon_sym_DASH] = ACTIONS(239), - [anon_sym_DASH_DASH] = ACTIONS(237), - [anon_sym_PLUS_PLUS] = ACTIONS(237), - [anon_sym_sizeof] = ACTIONS(239), - [sym_number_literal] = ACTIONS(237), - [anon_sym_SQUOTE] = ACTIONS(237), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym_true] = ACTIONS(239), - [sym_false] = ACTIONS(239), - [sym_null] = ACTIONS(239), - [sym_identifier] = ACTIONS(239), - [sym_comment] = ACTIONS(37), + [sym_preproc_include] = STATE(449), + [sym_preproc_def] = STATE(449), + [sym_preproc_function_def] = STATE(449), + [sym_preproc_call] = STATE(449), + [sym_preproc_if] = STATE(449), + [sym_preproc_ifdef] = STATE(449), + [sym_function_definition] = STATE(449), + [sym_declaration] = STATE(449), + [sym_type_definition] = STATE(449), + [sym__declaration_specifiers] = STATE(254), + [sym_linkage_specification] = STATE(449), + [sym_storage_class_specifier] = STATE(30), + [sym_type_qualifier] = STATE(30), + [sym__type_specifier] = STATE(25), + [sym_sized_type_specifier] = STATE(25), + [sym_enum_specifier] = STATE(25), + [sym_struct_specifier] = STATE(25), + [sym_union_specifier] = STATE(25), + [sym__expression] = STATE(26), + [sym_conditional_expression] = STATE(26), + [sym_assignment_expression] = STATE(26), + [sym_pointer_expression] = STATE(26), + [sym_logical_expression] = STATE(26), + [sym_bitwise_expression] = STATE(26), + [sym_equality_expression] = STATE(26), + [sym_relational_expression] = STATE(26), + [sym_shift_expression] = STATE(26), + [sym_math_expression] = STATE(26), + [sym_cast_expression] = STATE(26), + [sym_sizeof_expression] = STATE(26), + [sym_subscript_expression] = STATE(26), + [sym_call_expression] = STATE(255), + [sym_field_expression] = STATE(26), + [sym_compound_literal_expression] = STATE(26), + [sym_parenthesized_expression] = STATE(26), + [sym_char_literal] = STATE(26), + [sym_concatenated_string] = STATE(26), + [sym_string_literal] = STATE(28), + [sym__empty_declaration] = STATE(449), + [sym_macro_type_specifier] = STATE(25), + [aux_sym_translation_unit_repeat1] = STATE(449), + [aux_sym__declaration_specifiers_repeat1] = STATE(30), + [aux_sym_sized_type_specifier_repeat1] = STATE(31), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1701), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1704), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1707), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(545), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1710), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1710), + [sym_preproc_directive] = ACTIONS(1713), + [anon_sym_typedef] = ACTIONS(1716), + [anon_sym_extern] = ACTIONS(1719), + [anon_sym_LPAREN2] = ACTIONS(572), + [anon_sym_STAR] = ACTIONS(575), + [anon_sym_static] = ACTIONS(578), + [anon_sym_auto] = ACTIONS(578), + [anon_sym_register] = ACTIONS(578), + [anon_sym_inline] = ACTIONS(578), + [anon_sym_const] = ACTIONS(581), + [anon_sym_restrict] = ACTIONS(581), + [anon_sym_volatile] = ACTIONS(581), + [anon_sym__Atomic] = ACTIONS(581), + [anon_sym_unsigned] = ACTIONS(584), + [anon_sym_long] = ACTIONS(584), + [anon_sym_short] = ACTIONS(584), + [sym_primitive_type] = ACTIONS(587), + [anon_sym_enum] = ACTIONS(590), + [anon_sym_struct] = ACTIONS(593), + [anon_sym_union] = ACTIONS(596), + [anon_sym_AMP] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(599), + [anon_sym_TILDE] = ACTIONS(602), + [anon_sym_PLUS] = ACTIONS(605), + [anon_sym_DASH] = ACTIONS(605), + [anon_sym_DASH_DASH] = ACTIONS(608), + [anon_sym_PLUS_PLUS] = ACTIONS(608), + [anon_sym_sizeof] = ACTIONS(611), + [sym_number_literal] = ACTIONS(614), + [anon_sym_SQUOTE] = ACTIONS(617), + [anon_sym_DQUOTE] = ACTIONS(620), + [sym_true] = ACTIONS(623), + [sym_false] = ACTIONS(623), + [sym_null] = ACTIONS(623), + [sym_identifier] = ACTIONS(626), + [sym_comment] = ACTIONS(59), }, [450] = { - [sym__expression] = STATE(673), - [sym_conditional_expression] = STATE(673), - [sym_assignment_expression] = STATE(673), - [sym_pointer_expression] = STATE(673), - [sym_logical_expression] = STATE(673), - [sym_bitwise_expression] = STATE(673), - [sym_equality_expression] = STATE(673), - [sym_relational_expression] = STATE(673), - [sym_shift_expression] = STATE(673), - [sym_math_expression] = STATE(673), - [sym_cast_expression] = STATE(673), - [sym_sizeof_expression] = STATE(673), - [sym_subscript_expression] = STATE(673), - [sym_call_expression] = STATE(673), - [sym_field_expression] = STATE(673), - [sym_compound_literal_expression] = STATE(673), - [sym_parenthesized_expression] = STATE(673), - [sym_char_literal] = STATE(673), - [sym_concatenated_string] = STATE(673), - [sym_string_literal] = STATE(249), - [anon_sym_LPAREN2] = ACTIONS(559), - [anon_sym_STAR] = ACTIONS(561), - [anon_sym_AMP] = ACTIONS(561), - [anon_sym_BANG] = ACTIONS(569), - [anon_sym_TILDE] = ACTIONS(571), - [anon_sym_PLUS] = ACTIONS(573), - [anon_sym_DASH] = ACTIONS(573), - [anon_sym_DASH_DASH] = ACTIONS(575), - [anon_sym_PLUS_PLUS] = ACTIONS(575), - [anon_sym_sizeof] = ACTIONS(577), - [sym_number_literal] = ACTIONS(1597), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(1599), - [sym_false] = ACTIONS(1599), - [sym_null] = ACTIONS(1599), - [sym_identifier] = ACTIONS(1599), - [sym_comment] = ACTIONS(37), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1722), + [sym_comment] = ACTIONS(59), }, [451] = { - [sym__expression] = STATE(700), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(700), - [sym_logical_expression] = STATE(700), - [sym_bitwise_expression] = STATE(700), - [sym_equality_expression] = STATE(700), - [sym_relational_expression] = STATE(700), - [sym_shift_expression] = STATE(700), - [sym_math_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_subscript_expression] = STATE(700), - [sym_call_expression] = STATE(700), - [sym_field_expression] = STATE(700), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(700), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(249), - [anon_sym_LPAREN2] = ACTIONS(559), - [anon_sym_STAR] = ACTIONS(561), - [anon_sym_AMP] = ACTIONS(561), - [anon_sym_BANG] = ACTIONS(569), - [anon_sym_TILDE] = ACTIONS(571), - [anon_sym_PLUS] = ACTIONS(573), - [anon_sym_DASH] = ACTIONS(573), - [anon_sym_DASH_DASH] = ACTIONS(575), - [anon_sym_PLUS_PLUS] = ACTIONS(575), - [anon_sym_sizeof] = ACTIONS(577), - [sym_number_literal] = ACTIONS(1800), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_null] = ACTIONS(1802), - [sym_identifier] = ACTIONS(1802), - [sym_comment] = ACTIONS(37), + [sym_preproc_include] = STATE(269), + [sym_preproc_def] = STATE(269), + [sym_preproc_function_def] = STATE(269), + [sym_preproc_call] = STATE(269), + [sym_preproc_if] = STATE(269), + [sym_preproc_ifdef] = STATE(269), + [sym_preproc_else] = STATE(654), + [sym_preproc_elif] = STATE(654), + [sym_function_definition] = STATE(269), + [sym_declaration] = STATE(269), + [sym_type_definition] = STATE(269), + [sym__declaration_specifiers] = STATE(124), + [sym_linkage_specification] = STATE(269), + [sym_storage_class_specifier] = STATE(30), + [sym_type_qualifier] = STATE(30), + [sym__type_specifier] = STATE(25), + [sym_sized_type_specifier] = STATE(25), + [sym_enum_specifier] = STATE(25), + [sym_struct_specifier] = STATE(25), + [sym_union_specifier] = STATE(25), + [sym__expression] = STATE(26), + [sym_conditional_expression] = STATE(26), + [sym_assignment_expression] = STATE(26), + [sym_pointer_expression] = STATE(26), + [sym_logical_expression] = STATE(26), + [sym_bitwise_expression] = STATE(26), + [sym_equality_expression] = STATE(26), + [sym_relational_expression] = STATE(26), + [sym_shift_expression] = STATE(26), + [sym_math_expression] = STATE(26), + [sym_cast_expression] = STATE(26), + [sym_sizeof_expression] = STATE(26), + [sym_subscript_expression] = STATE(26), + [sym_call_expression] = STATE(125), + [sym_field_expression] = STATE(26), + [sym_compound_literal_expression] = STATE(26), + [sym_parenthesized_expression] = STATE(26), + [sym_char_literal] = STATE(26), + [sym_concatenated_string] = STATE(26), + [sym_string_literal] = STATE(28), + [sym__empty_declaration] = STATE(269), + [sym_macro_type_specifier] = STATE(25), + [aux_sym_translation_unit_repeat1] = STATE(269), + [aux_sym__declaration_specifiers_repeat1] = STATE(30), + [aux_sym_sized_type_specifier_repeat1] = STATE(31), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(251), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(253), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(255), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1724), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(259), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(259), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(261), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(263), + [sym_preproc_directive] = ACTIONS(265), + [anon_sym_typedef] = ACTIONS(267), + [anon_sym_extern] = ACTIONS(269), + [anon_sym_LPAREN2] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_static] = ACTIONS(25), + [anon_sym_auto] = ACTIONS(25), + [anon_sym_register] = ACTIONS(25), + [anon_sym_inline] = ACTIONS(25), + [anon_sym_const] = ACTIONS(27), + [anon_sym_restrict] = ACTIONS(27), + [anon_sym_volatile] = ACTIONS(27), + [anon_sym__Atomic] = ACTIONS(27), + [anon_sym_unsigned] = ACTIONS(29), + [anon_sym_long] = ACTIONS(29), + [anon_sym_short] = ACTIONS(29), + [sym_primitive_type] = ACTIONS(31), + [anon_sym_enum] = ACTIONS(33), + [anon_sym_struct] = ACTIONS(35), + [anon_sym_union] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(41), + [anon_sym_PLUS] = ACTIONS(43), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_DASH_DASH] = ACTIONS(45), + [anon_sym_PLUS_PLUS] = ACTIONS(45), + [anon_sym_sizeof] = ACTIONS(47), + [sym_number_literal] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(55), + [sym_false] = ACTIONS(55), + [sym_null] = ACTIONS(55), + [sym_identifier] = ACTIONS(57), + [sym_comment] = ACTIONS(59), }, [452] = { - [sym__expression] = STATE(701), - [sym_conditional_expression] = STATE(701), - [sym_assignment_expression] = STATE(701), - [sym_pointer_expression] = STATE(701), - [sym_logical_expression] = STATE(701), - [sym_bitwise_expression] = STATE(701), - [sym_equality_expression] = STATE(701), - [sym_relational_expression] = STATE(701), - [sym_shift_expression] = STATE(701), - [sym_math_expression] = STATE(701), - [sym_cast_expression] = STATE(701), - [sym_sizeof_expression] = STATE(701), - [sym_subscript_expression] = STATE(701), - [sym_call_expression] = STATE(701), - [sym_field_expression] = STATE(701), - [sym_compound_literal_expression] = STATE(701), - [sym_parenthesized_expression] = STATE(701), - [sym_char_literal] = STATE(701), - [sym_concatenated_string] = STATE(701), - [sym_string_literal] = STATE(386), - [anon_sym_LPAREN2] = ACTIONS(918), - [anon_sym_STAR] = ACTIONS(920), - [anon_sym_AMP] = ACTIONS(920), - [anon_sym_BANG] = ACTIONS(922), - [anon_sym_TILDE] = ACTIONS(924), - [anon_sym_PLUS] = ACTIONS(926), - [anon_sym_DASH] = ACTIONS(926), - [anon_sym_DASH_DASH] = ACTIONS(928), - [anon_sym_PLUS_PLUS] = ACTIONS(928), - [anon_sym_sizeof] = ACTIONS(930), - [sym_number_literal] = ACTIONS(1804), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(1806), - [sym_false] = ACTIONS(1806), - [sym_null] = ACTIONS(1806), - [sym_identifier] = ACTIONS(1806), - [sym_comment] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(724), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(726), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(726), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(726), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(726), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(726), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(726), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(726), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(726), + [sym_preproc_directive] = ACTIONS(726), + [anon_sym_typedef] = ACTIONS(726), + [anon_sym_extern] = ACTIONS(726), + [anon_sym_LBRACE] = ACTIONS(724), + [anon_sym_LPAREN2] = ACTIONS(724), + [anon_sym_STAR] = ACTIONS(724), + [anon_sym_static] = ACTIONS(726), + [anon_sym_auto] = ACTIONS(726), + [anon_sym_register] = ACTIONS(726), + [anon_sym_inline] = ACTIONS(726), + [anon_sym_const] = ACTIONS(726), + [anon_sym_restrict] = ACTIONS(726), + [anon_sym_volatile] = ACTIONS(726), + [anon_sym__Atomic] = ACTIONS(726), + [anon_sym_unsigned] = ACTIONS(726), + [anon_sym_long] = ACTIONS(726), + [anon_sym_short] = ACTIONS(726), + [sym_primitive_type] = ACTIONS(726), + [anon_sym_enum] = ACTIONS(726), + [anon_sym_struct] = ACTIONS(726), + [anon_sym_union] = ACTIONS(726), + [anon_sym_if] = ACTIONS(726), + [anon_sym_switch] = ACTIONS(726), + [anon_sym_case] = ACTIONS(726), + [anon_sym_default] = ACTIONS(726), + [anon_sym_while] = ACTIONS(726), + [anon_sym_do] = ACTIONS(726), + [anon_sym_for] = ACTIONS(726), + [anon_sym_return] = ACTIONS(726), + [anon_sym_break] = ACTIONS(726), + [anon_sym_continue] = ACTIONS(726), + [anon_sym_goto] = ACTIONS(726), + [anon_sym_AMP] = ACTIONS(724), + [anon_sym_BANG] = ACTIONS(724), + [anon_sym_TILDE] = ACTIONS(724), + [anon_sym_PLUS] = ACTIONS(726), + [anon_sym_DASH] = ACTIONS(726), + [anon_sym_DASH_DASH] = ACTIONS(724), + [anon_sym_PLUS_PLUS] = ACTIONS(724), + [anon_sym_sizeof] = ACTIONS(726), + [sym_number_literal] = ACTIONS(724), + [anon_sym_SQUOTE] = ACTIONS(724), + [anon_sym_DQUOTE] = ACTIONS(724), + [sym_true] = ACTIONS(726), + [sym_false] = ACTIONS(726), + [sym_null] = ACTIONS(726), + [sym_identifier] = ACTIONS(726), + [sym_comment] = ACTIONS(59), }, [453] = { - [sym__expression] = STATE(702), - [sym_conditional_expression] = STATE(702), - [sym_assignment_expression] = STATE(702), - [sym_pointer_expression] = STATE(702), - [sym_logical_expression] = STATE(702), - [sym_bitwise_expression] = STATE(702), - [sym_equality_expression] = STATE(702), - [sym_relational_expression] = STATE(702), - [sym_shift_expression] = STATE(702), - [sym_math_expression] = STATE(702), - [sym_cast_expression] = STATE(702), - [sym_sizeof_expression] = STATE(702), - [sym_subscript_expression] = STATE(702), - [sym_call_expression] = STATE(702), - [sym_field_expression] = STATE(702), - [sym_compound_literal_expression] = STATE(702), - [sym_parenthesized_expression] = STATE(702), - [sym_char_literal] = STATE(702), - [sym_concatenated_string] = STATE(702), - [sym_string_literal] = STATE(249), - [anon_sym_LPAREN2] = ACTIONS(559), - [anon_sym_STAR] = ACTIONS(561), - [anon_sym_AMP] = ACTIONS(561), - [anon_sym_BANG] = ACTIONS(569), - [anon_sym_TILDE] = ACTIONS(571), - [anon_sym_PLUS] = ACTIONS(573), - [anon_sym_DASH] = ACTIONS(573), - [anon_sym_DASH_DASH] = ACTIONS(575), - [anon_sym_PLUS_PLUS] = ACTIONS(575), - [anon_sym_sizeof] = ACTIONS(577), - [sym_number_literal] = ACTIONS(1808), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(1810), - [sym_false] = ACTIONS(1810), - [sym_null] = ACTIONS(1810), - [sym_identifier] = ACTIONS(1810), - [sym_comment] = ACTIONS(37), + [sym_parameter_list] = STATE(278), + [anon_sym_SEMI] = ACTIONS(1726), + [anon_sym_LPAREN2] = ACTIONS(441), + [anon_sym_LBRACK] = ACTIONS(736), + [sym_comment] = ACTIONS(59), }, [454] = { - [sym__expression] = STATE(703), - [sym_conditional_expression] = STATE(703), - [sym_assignment_expression] = STATE(703), - [sym_pointer_expression] = STATE(703), - [sym_logical_expression] = STATE(703), - [sym_bitwise_expression] = STATE(703), - [sym_equality_expression] = STATE(703), - [sym_relational_expression] = STATE(703), - [sym_shift_expression] = STATE(703), - [sym_math_expression] = STATE(703), - [sym_cast_expression] = STATE(703), - [sym_sizeof_expression] = STATE(703), - [sym_subscript_expression] = STATE(703), - [sym_call_expression] = STATE(703), - [sym_field_expression] = STATE(703), - [sym_compound_literal_expression] = STATE(703), - [sym_parenthesized_expression] = STATE(703), - [sym_char_literal] = STATE(703), - [sym_concatenated_string] = STATE(703), - [sym_string_literal] = STATE(249), - [anon_sym_LPAREN2] = ACTIONS(559), - [anon_sym_STAR] = ACTIONS(561), - [anon_sym_AMP] = ACTIONS(561), - [anon_sym_BANG] = ACTIONS(569), - [anon_sym_TILDE] = ACTIONS(571), - [anon_sym_PLUS] = ACTIONS(573), - [anon_sym_DASH] = ACTIONS(573), - [anon_sym_DASH_DASH] = ACTIONS(575), - [anon_sym_PLUS_PLUS] = ACTIONS(575), - [anon_sym_sizeof] = ACTIONS(577), - [sym_number_literal] = ACTIONS(1812), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(1814), - [sym_false] = ACTIONS(1814), - [sym_null] = ACTIONS(1814), - [sym_identifier] = ACTIONS(1814), - [sym_comment] = ACTIONS(37), + [sym__type_declarator] = STATE(656), + [sym_pointer_type_declarator] = STATE(656), + [sym_function_type_declarator] = STATE(656), + [sym_array_type_declarator] = STATE(656), + [anon_sym_LPAREN2] = ACTIONS(282), + [anon_sym_STAR] = ACTIONS(284), + [sym_identifier] = ACTIONS(286), + [sym_comment] = ACTIONS(59), }, [455] = { - [sym__expression] = STATE(704), - [sym_conditional_expression] = STATE(704), - [sym_assignment_expression] = STATE(704), - [sym_pointer_expression] = STATE(704), - [sym_logical_expression] = STATE(704), - [sym_bitwise_expression] = STATE(704), - [sym_equality_expression] = STATE(704), - [sym_relational_expression] = STATE(704), - [sym_shift_expression] = STATE(704), - [sym_math_expression] = STATE(704), - [sym_cast_expression] = STATE(704), - [sym_sizeof_expression] = STATE(704), - [sym_subscript_expression] = STATE(704), - [sym_call_expression] = STATE(704), - [sym_field_expression] = STATE(704), - [sym_compound_literal_expression] = STATE(704), - [sym_parenthesized_expression] = STATE(704), - [sym_char_literal] = STATE(704), - [sym_concatenated_string] = STATE(704), - [sym_string_literal] = STATE(249), - [anon_sym_LPAREN2] = ACTIONS(559), - [anon_sym_STAR] = ACTIONS(561), - [anon_sym_AMP] = ACTIONS(561), - [anon_sym_BANG] = ACTIONS(569), - [anon_sym_TILDE] = ACTIONS(571), - [anon_sym_PLUS] = ACTIONS(573), - [anon_sym_DASH] = ACTIONS(573), - [anon_sym_DASH_DASH] = ACTIONS(575), - [anon_sym_PLUS_PLUS] = ACTIONS(575), - [anon_sym_sizeof] = ACTIONS(577), - [sym_number_literal] = ACTIONS(1816), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(1818), - [sym_false] = ACTIONS(1818), - [sym_null] = ACTIONS(1818), - [sym_identifier] = ACTIONS(1818), - [sym_comment] = ACTIONS(37), + [sym_preproc_include] = STATE(658), + [sym_preproc_def] = STATE(658), + [sym_preproc_function_def] = STATE(658), + [sym_preproc_call] = STATE(658), + [sym_preproc_if] = STATE(658), + [sym_preproc_ifdef] = STATE(658), + [sym_function_definition] = STATE(658), + [sym_declaration] = STATE(658), + [sym_type_definition] = STATE(658), + [sym__declaration_specifiers] = STATE(24), + [sym_linkage_specification] = STATE(658), + [sym_storage_class_specifier] = STATE(30), + [sym_type_qualifier] = STATE(30), + [sym__type_specifier] = STATE(25), + [sym_sized_type_specifier] = STATE(25), + [sym_enum_specifier] = STATE(25), + [sym_struct_specifier] = STATE(25), + [sym_union_specifier] = STATE(25), + [sym__expression] = STATE(26), + [sym_conditional_expression] = STATE(26), + [sym_assignment_expression] = STATE(26), + [sym_pointer_expression] = STATE(26), + [sym_logical_expression] = STATE(26), + [sym_bitwise_expression] = STATE(26), + [sym_equality_expression] = STATE(26), + [sym_relational_expression] = STATE(26), + [sym_shift_expression] = STATE(26), + [sym_math_expression] = STATE(26), + [sym_cast_expression] = STATE(26), + [sym_sizeof_expression] = STATE(26), + [sym_subscript_expression] = STATE(26), + [sym_call_expression] = STATE(27), + [sym_field_expression] = STATE(26), + [sym_compound_literal_expression] = STATE(26), + [sym_parenthesized_expression] = STATE(26), + [sym_char_literal] = STATE(26), + [sym_concatenated_string] = STATE(26), + [sym_string_literal] = STATE(28), + [sym__empty_declaration] = STATE(658), + [sym_macro_type_specifier] = STATE(25), + [aux_sym_translation_unit_repeat1] = STATE(658), + [aux_sym__declaration_specifiers_repeat1] = STATE(30), + [aux_sym_sized_type_specifier_repeat1] = STATE(31), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(7), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(9), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(11), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(13), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(13), + [sym_preproc_directive] = ACTIONS(15), + [anon_sym_typedef] = ACTIONS(17), + [anon_sym_extern] = ACTIONS(19), + [anon_sym_RBRACE] = ACTIONS(1728), + [anon_sym_LPAREN2] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_static] = ACTIONS(25), + [anon_sym_auto] = ACTIONS(25), + [anon_sym_register] = ACTIONS(25), + [anon_sym_inline] = ACTIONS(25), + [anon_sym_const] = ACTIONS(27), + [anon_sym_restrict] = ACTIONS(27), + [anon_sym_volatile] = ACTIONS(27), + [anon_sym__Atomic] = ACTIONS(27), + [anon_sym_unsigned] = ACTIONS(29), + [anon_sym_long] = ACTIONS(29), + [anon_sym_short] = ACTIONS(29), + [sym_primitive_type] = ACTIONS(31), + [anon_sym_enum] = ACTIONS(33), + [anon_sym_struct] = ACTIONS(35), + [anon_sym_union] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(41), + [anon_sym_PLUS] = ACTIONS(43), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_DASH_DASH] = ACTIONS(45), + [anon_sym_PLUS_PLUS] = ACTIONS(45), + [anon_sym_sizeof] = ACTIONS(47), + [sym_number_literal] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(55), + [sym_false] = ACTIONS(55), + [sym_null] = ACTIONS(55), + [sym_identifier] = ACTIONS(57), + [sym_comment] = ACTIONS(59), }, [456] = { - [sym__expression] = STATE(705), - [sym_conditional_expression] = STATE(705), - [sym_assignment_expression] = STATE(705), - [sym_pointer_expression] = STATE(705), - [sym_logical_expression] = STATE(705), - [sym_bitwise_expression] = STATE(705), - [sym_equality_expression] = STATE(705), - [sym_relational_expression] = STATE(705), - [sym_shift_expression] = STATE(705), - [sym_math_expression] = STATE(705), - [sym_cast_expression] = STATE(705), - [sym_sizeof_expression] = STATE(705), - [sym_subscript_expression] = STATE(705), - [sym_call_expression] = STATE(705), - [sym_field_expression] = STATE(705), - [sym_compound_literal_expression] = STATE(705), - [sym_parenthesized_expression] = STATE(705), - [sym_char_literal] = STATE(705), - [sym_concatenated_string] = STATE(705), - [sym_string_literal] = STATE(249), - [anon_sym_LPAREN2] = ACTIONS(559), - [anon_sym_STAR] = ACTIONS(561), - [anon_sym_AMP] = ACTIONS(561), - [anon_sym_BANG] = ACTIONS(569), - [anon_sym_TILDE] = ACTIONS(571), - [anon_sym_PLUS] = ACTIONS(573), - [anon_sym_DASH] = ACTIONS(573), - [anon_sym_DASH_DASH] = ACTIONS(575), - [anon_sym_PLUS_PLUS] = ACTIONS(575), - [anon_sym_sizeof] = ACTIONS(577), - [sym_number_literal] = ACTIONS(1820), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(1822), - [sym_false] = ACTIONS(1822), - [sym_null] = ACTIONS(1822), - [sym_identifier] = ACTIONS(1822), - [sym_comment] = ACTIONS(37), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(750), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(750), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(750), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(750), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(750), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(750), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(750), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(750), + [sym_preproc_directive] = ACTIONS(750), + [anon_sym_typedef] = ACTIONS(750), + [anon_sym_extern] = ACTIONS(750), + [anon_sym_LPAREN2] = ACTIONS(748), + [anon_sym_STAR] = ACTIONS(748), + [anon_sym_static] = ACTIONS(750), + [anon_sym_auto] = ACTIONS(750), + [anon_sym_register] = ACTIONS(750), + [anon_sym_inline] = ACTIONS(750), + [anon_sym_const] = ACTIONS(750), + [anon_sym_restrict] = ACTIONS(750), + [anon_sym_volatile] = ACTIONS(750), + [anon_sym__Atomic] = ACTIONS(750), + [anon_sym_unsigned] = ACTIONS(750), + [anon_sym_long] = ACTIONS(750), + [anon_sym_short] = ACTIONS(750), + [sym_primitive_type] = ACTIONS(750), + [anon_sym_enum] = ACTIONS(750), + [anon_sym_struct] = ACTIONS(750), + [anon_sym_union] = ACTIONS(750), + [anon_sym_AMP] = ACTIONS(748), + [anon_sym_BANG] = ACTIONS(748), + [anon_sym_TILDE] = ACTIONS(748), + [anon_sym_PLUS] = ACTIONS(750), + [anon_sym_DASH] = ACTIONS(750), + [anon_sym_DASH_DASH] = ACTIONS(748), + [anon_sym_PLUS_PLUS] = ACTIONS(748), + [anon_sym_sizeof] = ACTIONS(750), + [sym_number_literal] = ACTIONS(748), + [anon_sym_SQUOTE] = ACTIONS(748), + [anon_sym_DQUOTE] = ACTIONS(748), + [sym_true] = ACTIONS(750), + [sym_false] = ACTIONS(750), + [sym_null] = ACTIONS(750), + [sym_identifier] = ACTIONS(750), + [sym_comment] = ACTIONS(59), }, [457] = { - [sym__expression] = STATE(706), - [sym_conditional_expression] = STATE(706), - [sym_assignment_expression] = STATE(706), - [sym_pointer_expression] = STATE(706), - [sym_logical_expression] = STATE(706), - [sym_bitwise_expression] = STATE(706), - [sym_equality_expression] = STATE(706), - [sym_relational_expression] = STATE(706), - [sym_shift_expression] = STATE(706), - [sym_math_expression] = STATE(706), - [sym_cast_expression] = STATE(706), - [sym_sizeof_expression] = STATE(706), - [sym_subscript_expression] = STATE(706), - [sym_call_expression] = STATE(706), - [sym_field_expression] = STATE(706), - [sym_compound_literal_expression] = STATE(706), - [sym_parenthesized_expression] = STATE(706), - [sym_char_literal] = STATE(706), - [sym_concatenated_string] = STATE(706), - [sym_string_literal] = STATE(249), - [anon_sym_LPAREN2] = ACTIONS(559), - [anon_sym_STAR] = ACTIONS(561), - [anon_sym_AMP] = ACTIONS(561), - [anon_sym_BANG] = ACTIONS(569), - [anon_sym_TILDE] = ACTIONS(571), - [anon_sym_PLUS] = ACTIONS(573), - [anon_sym_DASH] = ACTIONS(573), - [anon_sym_DASH_DASH] = ACTIONS(575), - [anon_sym_PLUS_PLUS] = ACTIONS(575), - [anon_sym_sizeof] = ACTIONS(577), - [sym_number_literal] = ACTIONS(1824), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(1826), - [sym_false] = ACTIONS(1826), - [sym_null] = ACTIONS(1826), - [sym_identifier] = ACTIONS(1826), - [sym_comment] = ACTIONS(37), + [sym__declarator] = STATE(265), + [sym_pointer_declarator] = STATE(265), + [sym_function_declarator] = STATE(265), + [sym_array_declarator] = STATE(265), + [sym_init_declarator] = STATE(266), + [anon_sym_LPAREN2] = ACTIONS(174), + [anon_sym_STAR] = ACTIONS(176), + [sym_identifier] = ACTIONS(710), + [sym_comment] = ACTIONS(59), }, [458] = { - [sym__expression] = STATE(707), - [sym_conditional_expression] = STATE(707), - [sym_assignment_expression] = STATE(707), - [sym_pointer_expression] = STATE(707), - [sym_logical_expression] = STATE(707), - [sym_bitwise_expression] = STATE(707), - [sym_equality_expression] = STATE(707), - [sym_relational_expression] = STATE(707), - [sym_shift_expression] = STATE(707), - [sym_math_expression] = STATE(707), - [sym_cast_expression] = STATE(707), - [sym_sizeof_expression] = STATE(707), - [sym_subscript_expression] = STATE(707), - [sym_call_expression] = STATE(707), - [sym_field_expression] = STATE(707), - [sym_compound_literal_expression] = STATE(707), - [sym_parenthesized_expression] = STATE(707), - [sym_char_literal] = STATE(707), - [sym_concatenated_string] = STATE(707), - [sym_string_literal] = STATE(249), - [anon_sym_LPAREN2] = ACTIONS(559), - [anon_sym_STAR] = ACTIONS(561), - [anon_sym_AMP] = ACTIONS(561), - [anon_sym_BANG] = ACTIONS(569), - [anon_sym_TILDE] = ACTIONS(571), - [anon_sym_PLUS] = ACTIONS(573), - [anon_sym_DASH] = ACTIONS(573), - [anon_sym_DASH_DASH] = ACTIONS(575), - [anon_sym_PLUS_PLUS] = ACTIONS(575), - [anon_sym_sizeof] = ACTIONS(577), - [sym_number_literal] = ACTIONS(1828), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(1830), - [sym_false] = ACTIONS(1830), - [sym_null] = ACTIONS(1830), - [sym_identifier] = ACTIONS(1830), - [sym_comment] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(920), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(922), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(922), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(922), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(922), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(922), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(922), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(922), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(922), + [sym_preproc_directive] = ACTIONS(922), + [anon_sym_typedef] = ACTIONS(922), + [anon_sym_extern] = ACTIONS(922), + [anon_sym_LBRACE] = ACTIONS(920), + [anon_sym_LPAREN2] = ACTIONS(920), + [anon_sym_STAR] = ACTIONS(920), + [anon_sym_static] = ACTIONS(922), + [anon_sym_auto] = ACTIONS(922), + [anon_sym_register] = ACTIONS(922), + [anon_sym_inline] = ACTIONS(922), + [anon_sym_const] = ACTIONS(922), + [anon_sym_restrict] = ACTIONS(922), + [anon_sym_volatile] = ACTIONS(922), + [anon_sym__Atomic] = ACTIONS(922), + [anon_sym_unsigned] = ACTIONS(922), + [anon_sym_long] = ACTIONS(922), + [anon_sym_short] = ACTIONS(922), + [sym_primitive_type] = ACTIONS(922), + [anon_sym_enum] = ACTIONS(922), + [anon_sym_struct] = ACTIONS(922), + [anon_sym_union] = ACTIONS(922), + [anon_sym_if] = ACTIONS(922), + [anon_sym_else] = ACTIONS(922), + [anon_sym_switch] = ACTIONS(922), + [anon_sym_case] = ACTIONS(922), + [anon_sym_default] = ACTIONS(922), + [anon_sym_while] = ACTIONS(922), + [anon_sym_do] = ACTIONS(922), + [anon_sym_for] = ACTIONS(922), + [anon_sym_return] = ACTIONS(922), + [anon_sym_break] = ACTIONS(922), + [anon_sym_continue] = ACTIONS(922), + [anon_sym_goto] = ACTIONS(922), + [anon_sym_AMP] = ACTIONS(920), + [anon_sym_BANG] = ACTIONS(920), + [anon_sym_TILDE] = ACTIONS(920), + [anon_sym_PLUS] = ACTIONS(922), + [anon_sym_DASH] = ACTIONS(922), + [anon_sym_DASH_DASH] = ACTIONS(920), + [anon_sym_PLUS_PLUS] = ACTIONS(920), + [anon_sym_sizeof] = ACTIONS(922), + [sym_number_literal] = ACTIONS(920), + [anon_sym_SQUOTE] = ACTIONS(920), + [anon_sym_DQUOTE] = ACTIONS(920), + [sym_true] = ACTIONS(922), + [sym_false] = ACTIONS(922), + [sym_null] = ACTIONS(922), + [sym_identifier] = ACTIONS(922), + [sym_comment] = ACTIONS(59), }, [459] = { - [sym__expression] = STATE(708), - [sym_conditional_expression] = STATE(708), - [sym_assignment_expression] = STATE(708), - [sym_pointer_expression] = STATE(708), - [sym_logical_expression] = STATE(708), - [sym_bitwise_expression] = STATE(708), - [sym_equality_expression] = STATE(708), - [sym_relational_expression] = STATE(708), - [sym_shift_expression] = STATE(708), - [sym_math_expression] = STATE(708), - [sym_cast_expression] = STATE(708), - [sym_sizeof_expression] = STATE(708), - [sym_subscript_expression] = STATE(708), - [sym_call_expression] = STATE(708), - [sym_field_expression] = STATE(708), - [sym_compound_literal_expression] = STATE(708), - [sym_parenthesized_expression] = STATE(708), - [sym_char_literal] = STATE(708), - [sym_concatenated_string] = STATE(708), - [sym_string_literal] = STATE(249), - [anon_sym_LPAREN2] = ACTIONS(559), - [anon_sym_STAR] = ACTIONS(561), - [anon_sym_AMP] = ACTIONS(561), - [anon_sym_BANG] = ACTIONS(569), - [anon_sym_TILDE] = ACTIONS(571), - [anon_sym_PLUS] = ACTIONS(573), - [anon_sym_DASH] = ACTIONS(573), - [anon_sym_DASH_DASH] = ACTIONS(575), - [anon_sym_PLUS_PLUS] = ACTIONS(575), - [anon_sym_sizeof] = ACTIONS(577), - [sym_number_literal] = ACTIONS(1832), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(1834), - [sym_false] = ACTIONS(1834), - [sym_null] = ACTIONS(1834), - [sym_identifier] = ACTIONS(1834), - [sym_comment] = ACTIONS(37), + [sym_preproc_include] = STATE(660), + [sym_preproc_def] = STATE(660), + [sym_preproc_function_def] = STATE(660), + [sym_preproc_call] = STATE(660), + [sym_preproc_if_in_compound_statement] = STATE(660), + [sym_preproc_ifdef_in_compound_statement] = STATE(660), + [sym_declaration] = STATE(660), + [sym_type_definition] = STATE(660), + [sym__declaration_specifiers] = STATE(371), + [sym_compound_statement] = STATE(660), + [sym_storage_class_specifier] = STATE(30), + [sym_type_qualifier] = STATE(30), + [sym__type_specifier] = STATE(25), + [sym_sized_type_specifier] = STATE(25), + [sym_enum_specifier] = STATE(25), + [sym_struct_specifier] = STATE(25), + [sym_union_specifier] = STATE(25), + [sym_labeled_statement] = STATE(660), + [sym_expression_statement] = STATE(660), + [sym_if_statement] = STATE(660), + [sym_switch_statement] = STATE(660), + [sym_case_statement] = STATE(660), + [sym_while_statement] = STATE(660), + [sym_do_statement] = STATE(660), + [sym_for_statement] = STATE(660), + [sym_return_statement] = STATE(660), + [sym_break_statement] = STATE(660), + [sym_continue_statement] = STATE(660), + [sym_goto_statement] = STATE(660), + [sym__expression] = STATE(372), + [sym_comma_expression] = STATE(373), + [sym_conditional_expression] = STATE(372), + [sym_assignment_expression] = STATE(372), + [sym_pointer_expression] = STATE(372), + [sym_logical_expression] = STATE(372), + [sym_bitwise_expression] = STATE(372), + [sym_equality_expression] = STATE(372), + [sym_relational_expression] = STATE(372), + [sym_shift_expression] = STATE(372), + [sym_math_expression] = STATE(372), + [sym_cast_expression] = STATE(372), + [sym_sizeof_expression] = STATE(372), + [sym_subscript_expression] = STATE(372), + [sym_call_expression] = STATE(372), + [sym_field_expression] = STATE(372), + [sym_compound_literal_expression] = STATE(372), + [sym_parenthesized_expression] = STATE(372), + [sym_char_literal] = STATE(372), + [sym_concatenated_string] = STATE(372), + [sym_string_literal] = STATE(374), + [sym__empty_declaration] = STATE(660), + [sym_macro_type_specifier] = STATE(25), + [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(660), + [aux_sym__declaration_specifiers_repeat1] = STATE(30), + [aux_sym_sized_type_specifier_repeat1] = STATE(31), + [anon_sym_SEMI] = ACTIONS(928), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(7), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(9), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(930), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(932), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(932), + [sym_preproc_directive] = ACTIONS(15), + [anon_sym_typedef] = ACTIONS(17), + [anon_sym_extern] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(439), + [anon_sym_RBRACE] = ACTIONS(1730), + [anon_sym_LPAREN2] = ACTIONS(936), + [anon_sym_STAR] = ACTIONS(938), + [anon_sym_static] = ACTIONS(25), + [anon_sym_auto] = ACTIONS(25), + [anon_sym_register] = ACTIONS(25), + [anon_sym_inline] = ACTIONS(25), + [anon_sym_const] = ACTIONS(27), + [anon_sym_restrict] = ACTIONS(27), + [anon_sym_volatile] = ACTIONS(27), + [anon_sym__Atomic] = ACTIONS(27), + [anon_sym_unsigned] = ACTIONS(29), + [anon_sym_long] = ACTIONS(29), + [anon_sym_short] = ACTIONS(29), + [sym_primitive_type] = ACTIONS(31), + [anon_sym_enum] = ACTIONS(33), + [anon_sym_struct] = ACTIONS(35), + [anon_sym_union] = ACTIONS(37), + [anon_sym_if] = ACTIONS(940), + [anon_sym_switch] = ACTIONS(942), + [anon_sym_case] = ACTIONS(944), + [anon_sym_default] = ACTIONS(946), + [anon_sym_while] = ACTIONS(948), + [anon_sym_do] = ACTIONS(950), + [anon_sym_for] = ACTIONS(952), + [anon_sym_return] = ACTIONS(954), + [anon_sym_break] = ACTIONS(956), + [anon_sym_continue] = ACTIONS(958), + [anon_sym_goto] = ACTIONS(960), + [anon_sym_AMP] = ACTIONS(938), + [anon_sym_BANG] = ACTIONS(962), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_DASH_DASH] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(968), + [anon_sym_sizeof] = ACTIONS(970), + [sym_number_literal] = ACTIONS(972), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(974), + [sym_false] = ACTIONS(974), + [sym_null] = ACTIONS(974), + [sym_identifier] = ACTIONS(976), + [sym_comment] = ACTIONS(59), }, [460] = { - [sym__expression] = STATE(709), - [sym_conditional_expression] = STATE(709), - [sym_assignment_expression] = STATE(709), - [sym_pointer_expression] = STATE(709), - [sym_logical_expression] = STATE(709), - [sym_bitwise_expression] = STATE(709), - [sym_equality_expression] = STATE(709), - [sym_relational_expression] = STATE(709), - [sym_shift_expression] = STATE(709), - [sym_math_expression] = STATE(709), - [sym_cast_expression] = STATE(709), - [sym_sizeof_expression] = STATE(709), - [sym_subscript_expression] = STATE(709), - [sym_call_expression] = STATE(709), - [sym_field_expression] = STATE(709), - [sym_compound_literal_expression] = STATE(709), - [sym_parenthesized_expression] = STATE(709), - [sym_char_literal] = STATE(709), - [sym_concatenated_string] = STATE(709), - [sym_string_literal] = STATE(249), - [anon_sym_LPAREN2] = ACTIONS(559), - [anon_sym_STAR] = ACTIONS(561), - [anon_sym_AMP] = ACTIONS(561), - [anon_sym_BANG] = ACTIONS(569), - [anon_sym_TILDE] = ACTIONS(571), - [anon_sym_PLUS] = ACTIONS(573), - [anon_sym_DASH] = ACTIONS(573), - [anon_sym_DASH_DASH] = ACTIONS(575), - [anon_sym_PLUS_PLUS] = ACTIONS(575), - [anon_sym_sizeof] = ACTIONS(577), - [sym_number_literal] = ACTIONS(1836), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(1838), - [sym_false] = ACTIONS(1838), - [sym_null] = ACTIONS(1838), - [sym_identifier] = ACTIONS(1838), - [sym_comment] = ACTIONS(37), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(990), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(990), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(990), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(990), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(990), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(990), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(990), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(990), + [sym_preproc_directive] = ACTIONS(990), + [anon_sym_typedef] = ACTIONS(990), + [anon_sym_extern] = ACTIONS(990), + [anon_sym_LPAREN2] = ACTIONS(988), + [anon_sym_STAR] = ACTIONS(988), + [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_restrict] = ACTIONS(990), + [anon_sym_volatile] = ACTIONS(990), + [anon_sym__Atomic] = 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_AMP] = ACTIONS(988), + [anon_sym_BANG] = ACTIONS(988), + [anon_sym_TILDE] = ACTIONS(988), + [anon_sym_PLUS] = ACTIONS(990), + [anon_sym_DASH] = ACTIONS(990), + [anon_sym_DASH_DASH] = ACTIONS(988), + [anon_sym_PLUS_PLUS] = ACTIONS(988), + [anon_sym_sizeof] = ACTIONS(990), + [sym_number_literal] = ACTIONS(988), + [anon_sym_SQUOTE] = ACTIONS(988), + [anon_sym_DQUOTE] = ACTIONS(988), + [sym_true] = ACTIONS(990), + [sym_false] = ACTIONS(990), + [sym_null] = ACTIONS(990), + [sym_identifier] = ACTIONS(990), + [sym_comment] = ACTIONS(59), }, [461] = { - [sym__expression] = STATE(710), - [sym_conditional_expression] = STATE(710), - [sym_assignment_expression] = STATE(710), - [sym_pointer_expression] = STATE(710), - [sym_logical_expression] = STATE(710), - [sym_bitwise_expression] = STATE(710), - [sym_equality_expression] = STATE(710), - [sym_relational_expression] = STATE(710), - [sym_shift_expression] = STATE(710), - [sym_math_expression] = STATE(710), - [sym_cast_expression] = STATE(710), - [sym_sizeof_expression] = STATE(710), - [sym_subscript_expression] = STATE(710), - [sym_call_expression] = STATE(710), - [sym_field_expression] = STATE(710), - [sym_compound_literal_expression] = STATE(710), - [sym_parenthesized_expression] = STATE(710), - [sym_char_literal] = STATE(710), - [sym_concatenated_string] = STATE(710), - [sym_string_literal] = STATE(249), - [anon_sym_LPAREN2] = ACTIONS(559), - [anon_sym_STAR] = ACTIONS(561), - [anon_sym_AMP] = ACTIONS(561), - [anon_sym_BANG] = ACTIONS(569), - [anon_sym_TILDE] = ACTIONS(571), - [anon_sym_PLUS] = ACTIONS(573), - [anon_sym_DASH] = ACTIONS(573), - [anon_sym_DASH_DASH] = ACTIONS(575), - [anon_sym_PLUS_PLUS] = ACTIONS(575), - [anon_sym_sizeof] = ACTIONS(577), - [sym_number_literal] = ACTIONS(1840), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(1842), - [sym_false] = ACTIONS(1842), - [sym_null] = ACTIONS(1842), - [sym_identifier] = ACTIONS(1842), - [sym_comment] = ACTIONS(37), + [aux_sym_declaration_repeat1] = STATE(382), + [anon_sym_SEMI] = ACTIONS(1732), + [anon_sym_COMMA] = ACTIONS(437), + [sym_comment] = ACTIONS(59), }, [462] = { - [sym_string_literal] = STATE(711), - [aux_sym_concatenated_string_repeat1] = STATE(711), - [anon_sym_LPAREN2] = ACTIONS(1655), - [anon_sym_STAR] = ACTIONS(1657), - [anon_sym_LBRACK] = ACTIONS(1655), - [anon_sym_RBRACK] = ACTIONS(1655), - [anon_sym_EQ] = ACTIONS(1657), - [anon_sym_QMARK] = ACTIONS(1655), - [anon_sym_STAR_EQ] = ACTIONS(1655), - [anon_sym_SLASH_EQ] = ACTIONS(1655), - [anon_sym_PERCENT_EQ] = ACTIONS(1655), - [anon_sym_PLUS_EQ] = ACTIONS(1655), - [anon_sym_DASH_EQ] = ACTIONS(1655), - [anon_sym_LT_LT_EQ] = ACTIONS(1655), - [anon_sym_GT_GT_EQ] = ACTIONS(1655), - [anon_sym_AMP_EQ] = ACTIONS(1655), - [anon_sym_CARET_EQ] = ACTIONS(1655), - [anon_sym_PIPE_EQ] = ACTIONS(1655), - [anon_sym_AMP] = ACTIONS(1657), - [anon_sym_PIPE_PIPE] = ACTIONS(1655), - [anon_sym_AMP_AMP] = ACTIONS(1655), - [anon_sym_PIPE] = ACTIONS(1657), - [anon_sym_CARET] = ACTIONS(1657), - [anon_sym_EQ_EQ] = ACTIONS(1655), - [anon_sym_BANG_EQ] = ACTIONS(1655), - [anon_sym_LT] = ACTIONS(1657), - [anon_sym_GT] = ACTIONS(1657), - [anon_sym_LT_EQ] = ACTIONS(1655), - [anon_sym_GT_EQ] = ACTIONS(1655), - [anon_sym_LT_LT] = ACTIONS(1657), - [anon_sym_GT_GT] = ACTIONS(1657), - [anon_sym_PLUS] = ACTIONS(1657), - [anon_sym_DASH] = ACTIONS(1657), - [anon_sym_SLASH] = ACTIONS(1657), - [anon_sym_PERCENT] = ACTIONS(1657), - [anon_sym_DASH_DASH] = ACTIONS(1655), - [anon_sym_PLUS_PLUS] = ACTIONS(1655), - [anon_sym_DOT] = ACTIONS(1655), - [anon_sym_DASH_GT] = ACTIONS(1655), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_comment] = ACTIONS(37), + [ts_builtin_sym_end] = ACTIONS(1734), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1736), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1736), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1736), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1736), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1736), + [sym_preproc_directive] = ACTIONS(1736), + [anon_sym_typedef] = ACTIONS(1736), + [anon_sym_extern] = ACTIONS(1736), + [anon_sym_RBRACE] = ACTIONS(1734), + [anon_sym_LPAREN2] = ACTIONS(1734), + [anon_sym_STAR] = ACTIONS(1734), + [anon_sym_static] = ACTIONS(1736), + [anon_sym_auto] = ACTIONS(1736), + [anon_sym_register] = ACTIONS(1736), + [anon_sym_inline] = ACTIONS(1736), + [anon_sym_const] = ACTIONS(1736), + [anon_sym_restrict] = ACTIONS(1736), + [anon_sym_volatile] = ACTIONS(1736), + [anon_sym__Atomic] = ACTIONS(1736), + [anon_sym_unsigned] = ACTIONS(1736), + [anon_sym_long] = ACTIONS(1736), + [anon_sym_short] = ACTIONS(1736), + [sym_primitive_type] = ACTIONS(1736), + [anon_sym_enum] = ACTIONS(1736), + [anon_sym_struct] = ACTIONS(1736), + [anon_sym_union] = ACTIONS(1736), + [anon_sym_AMP] = ACTIONS(1734), + [anon_sym_BANG] = ACTIONS(1734), + [anon_sym_TILDE] = ACTIONS(1734), + [anon_sym_PLUS] = ACTIONS(1736), + [anon_sym_DASH] = ACTIONS(1736), + [anon_sym_DASH_DASH] = ACTIONS(1734), + [anon_sym_PLUS_PLUS] = ACTIONS(1734), + [anon_sym_sizeof] = ACTIONS(1736), + [sym_number_literal] = ACTIONS(1734), + [anon_sym_SQUOTE] = ACTIONS(1734), + [anon_sym_DQUOTE] = ACTIONS(1734), + [sym_true] = ACTIONS(1736), + [sym_false] = ACTIONS(1736), + [sym_null] = ACTIONS(1736), + [sym_identifier] = ACTIONS(1736), + [sym_comment] = ACTIONS(59), }, [463] = { - [sym_storage_class_specifier] = STATE(712), - [sym_type_qualifier] = STATE(712), - [aux_sym__declaration_specifiers_repeat1] = STATE(712), - [anon_sym_extern] = ACTIONS(21), - [anon_sym_LPAREN2] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(237), - [anon_sym_RBRACK] = ACTIONS(237), - [anon_sym_static] = ACTIONS(21), - [anon_sym_auto] = ACTIONS(21), - [anon_sym_register] = ACTIONS(21), - [anon_sym_inline] = ACTIONS(21), - [anon_sym_const] = ACTIONS(23), - [anon_sym_restrict] = ACTIONS(23), - [anon_sym_volatile] = ACTIONS(23), - [anon_sym__Atomic] = ACTIONS(23), - [anon_sym_AMP] = ACTIONS(237), - [anon_sym_BANG] = ACTIONS(237), - [anon_sym_TILDE] = ACTIONS(237), - [anon_sym_PLUS] = ACTIONS(239), - [anon_sym_DASH] = ACTIONS(239), - [anon_sym_DASH_DASH] = ACTIONS(237), - [anon_sym_PLUS_PLUS] = ACTIONS(237), - [anon_sym_sizeof] = ACTIONS(239), - [sym_number_literal] = ACTIONS(237), - [anon_sym_SQUOTE] = ACTIONS(237), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym_true] = ACTIONS(239), - [sym_false] = ACTIONS(239), - [sym_null] = ACTIONS(239), - [sym_identifier] = ACTIONS(239), - [sym_comment] = ACTIONS(37), + [ts_builtin_sym_end] = ACTIONS(1738), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1740), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1740), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1740), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1740), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1740), + [sym_preproc_directive] = ACTIONS(1740), + [anon_sym_typedef] = ACTIONS(1740), + [anon_sym_extern] = ACTIONS(1740), + [anon_sym_RBRACE] = ACTIONS(1738), + [anon_sym_LPAREN2] = ACTIONS(1738), + [anon_sym_STAR] = ACTIONS(1738), + [anon_sym_static] = ACTIONS(1740), + [anon_sym_auto] = ACTIONS(1740), + [anon_sym_register] = ACTIONS(1740), + [anon_sym_inline] = ACTIONS(1740), + [anon_sym_const] = ACTIONS(1740), + [anon_sym_restrict] = ACTIONS(1740), + [anon_sym_volatile] = ACTIONS(1740), + [anon_sym__Atomic] = ACTIONS(1740), + [anon_sym_unsigned] = ACTIONS(1740), + [anon_sym_long] = ACTIONS(1740), + [anon_sym_short] = ACTIONS(1740), + [sym_primitive_type] = ACTIONS(1740), + [anon_sym_enum] = ACTIONS(1740), + [anon_sym_struct] = ACTIONS(1740), + [anon_sym_union] = ACTIONS(1740), + [anon_sym_AMP] = ACTIONS(1738), + [anon_sym_BANG] = ACTIONS(1738), + [anon_sym_TILDE] = ACTIONS(1738), + [anon_sym_PLUS] = ACTIONS(1740), + [anon_sym_DASH] = ACTIONS(1740), + [anon_sym_DASH_DASH] = ACTIONS(1738), + [anon_sym_PLUS_PLUS] = ACTIONS(1738), + [anon_sym_sizeof] = ACTIONS(1740), + [sym_number_literal] = ACTIONS(1738), + [anon_sym_SQUOTE] = ACTIONS(1738), + [anon_sym_DQUOTE] = ACTIONS(1738), + [sym_true] = ACTIONS(1740), + [sym_false] = ACTIONS(1740), + [sym_null] = ACTIONS(1740), + [sym_identifier] = ACTIONS(1740), + [sym_comment] = ACTIONS(59), }, [464] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(464), - [anon_sym_extern] = ACTIONS(306), - [anon_sym_LPAREN2] = ACTIONS(304), - [anon_sym_STAR] = ACTIONS(304), - [anon_sym_RBRACK] = ACTIONS(304), - [anon_sym_static] = ACTIONS(306), - [anon_sym_auto] = ACTIONS(306), - [anon_sym_register] = ACTIONS(306), - [anon_sym_inline] = ACTIONS(306), - [anon_sym_const] = ACTIONS(306), - [anon_sym_restrict] = ACTIONS(306), - [anon_sym_volatile] = ACTIONS(306), - [anon_sym__Atomic] = ACTIONS(306), - [anon_sym_unsigned] = ACTIONS(1844), - [anon_sym_long] = ACTIONS(1844), - [anon_sym_short] = ACTIONS(1844), - [sym_primitive_type] = ACTIONS(306), - [anon_sym_AMP] = ACTIONS(304), - [anon_sym_BANG] = ACTIONS(304), - [anon_sym_TILDE] = ACTIONS(304), - [anon_sym_PLUS] = ACTIONS(306), - [anon_sym_DASH] = ACTIONS(306), - [anon_sym_DASH_DASH] = ACTIONS(304), - [anon_sym_PLUS_PLUS] = ACTIONS(304), - [anon_sym_sizeof] = ACTIONS(306), - [sym_number_literal] = ACTIONS(304), - [anon_sym_SQUOTE] = ACTIONS(304), - [anon_sym_DQUOTE] = ACTIONS(304), - [sym_true] = ACTIONS(306), - [sym_false] = ACTIONS(306), - [sym_null] = ACTIONS(306), - [sym_identifier] = ACTIONS(306), - [sym_comment] = ACTIONS(37), + [sym__type_declarator] = STATE(466), + [sym_pointer_type_declarator] = STATE(466), + [sym_function_type_declarator] = STATE(466), + [sym_array_type_declarator] = STATE(466), + [sym_type_qualifier] = STATE(345), + [aux_sym_type_definition_repeat1] = STATE(345), + [anon_sym_LPAREN2] = ACTIONS(282), + [anon_sym_STAR] = ACTIONS(728), + [anon_sym_const] = ACTIONS(27), + [anon_sym_restrict] = ACTIONS(27), + [anon_sym_volatile] = ACTIONS(27), + [anon_sym__Atomic] = ACTIONS(27), + [sym_identifier] = ACTIONS(730), + [sym_comment] = ACTIONS(59), }, [465] = { - [anon_sym_RBRACE] = ACTIONS(1847), - [sym_comment] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(1742), + [anon_sym_RPAREN] = ACTIONS(1742), + [anon_sym_LPAREN2] = ACTIONS(1742), + [anon_sym_LBRACK] = ACTIONS(1742), + [sym_comment] = ACTIONS(59), }, [466] = { - [anon_sym_COMMA] = ACTIONS(1849), - [anon_sym_RPAREN] = ACTIONS(1849), - [anon_sym_SEMI] = ACTIONS(1849), - [anon_sym_RBRACE] = ACTIONS(1849), - [anon_sym_LPAREN2] = ACTIONS(1849), - [anon_sym_STAR] = ACTIONS(1851), - [anon_sym_LBRACK] = ACTIONS(1849), - [anon_sym_RBRACK] = ACTIONS(1849), - [anon_sym_EQ] = ACTIONS(1851), - [anon_sym_COLON] = ACTIONS(1849), - [anon_sym_QMARK] = ACTIONS(1849), - [anon_sym_STAR_EQ] = ACTIONS(1849), - [anon_sym_SLASH_EQ] = ACTIONS(1849), - [anon_sym_PERCENT_EQ] = ACTIONS(1849), - [anon_sym_PLUS_EQ] = ACTIONS(1849), - [anon_sym_DASH_EQ] = ACTIONS(1849), - [anon_sym_LT_LT_EQ] = ACTIONS(1849), - [anon_sym_GT_GT_EQ] = ACTIONS(1849), - [anon_sym_AMP_EQ] = ACTIONS(1849), - [anon_sym_CARET_EQ] = ACTIONS(1849), - [anon_sym_PIPE_EQ] = ACTIONS(1849), - [anon_sym_AMP] = ACTIONS(1851), - [anon_sym_PIPE_PIPE] = ACTIONS(1849), - [anon_sym_AMP_AMP] = ACTIONS(1849), - [anon_sym_PIPE] = ACTIONS(1851), - [anon_sym_CARET] = ACTIONS(1851), - [anon_sym_EQ_EQ] = ACTIONS(1849), - [anon_sym_BANG_EQ] = ACTIONS(1849), - [anon_sym_LT] = ACTIONS(1851), - [anon_sym_GT] = ACTIONS(1851), - [anon_sym_LT_EQ] = ACTIONS(1849), - [anon_sym_GT_EQ] = ACTIONS(1849), - [anon_sym_LT_LT] = ACTIONS(1851), - [anon_sym_GT_GT] = ACTIONS(1851), - [anon_sym_PLUS] = ACTIONS(1851), - [anon_sym_DASH] = ACTIONS(1851), - [anon_sym_SLASH] = ACTIONS(1851), - [anon_sym_PERCENT] = ACTIONS(1851), - [anon_sym_DASH_DASH] = ACTIONS(1849), - [anon_sym_PLUS_PLUS] = ACTIONS(1849), - [anon_sym_DOT] = ACTIONS(1849), - [anon_sym_DASH_GT] = ACTIONS(1849), - [sym_comment] = ACTIONS(37), + [sym_parameter_list] = STATE(278), + [anon_sym_SEMI] = ACTIONS(1744), + [anon_sym_RPAREN] = ACTIONS(1744), + [anon_sym_LPAREN2] = ACTIONS(441), + [anon_sym_LBRACK] = ACTIONS(736), + [sym_comment] = ACTIONS(59), }, [467] = { - [sym__expression] = STATE(714), - [sym_conditional_expression] = STATE(714), - [sym_assignment_expression] = STATE(714), - [sym_pointer_expression] = STATE(714), - [sym_logical_expression] = STATE(714), - [sym_bitwise_expression] = STATE(714), - [sym_equality_expression] = STATE(714), - [sym_relational_expression] = STATE(714), - [sym_shift_expression] = STATE(714), - [sym_math_expression] = STATE(714), - [sym_cast_expression] = STATE(714), - [sym_sizeof_expression] = STATE(714), - [sym_subscript_expression] = STATE(714), - [sym_call_expression] = STATE(714), - [sym_field_expression] = STATE(714), - [sym_compound_literal_expression] = STATE(714), - [sym_parenthesized_expression] = STATE(714), - [sym_char_literal] = STATE(714), - [sym_concatenated_string] = STATE(714), - [sym_string_literal] = STATE(249), - [anon_sym_LPAREN2] = ACTIONS(559), - [anon_sym_STAR] = ACTIONS(561), - [anon_sym_AMP] = ACTIONS(561), - [anon_sym_BANG] = ACTIONS(569), - [anon_sym_TILDE] = ACTIONS(571), - [anon_sym_PLUS] = ACTIONS(573), - [anon_sym_DASH] = ACTIONS(573), - [anon_sym_DASH_DASH] = ACTIONS(575), - [anon_sym_PLUS_PLUS] = ACTIONS(575), - [anon_sym_sizeof] = ACTIONS(577), - [sym_number_literal] = ACTIONS(1853), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(1855), - [sym_false] = ACTIONS(1855), - [sym_null] = ACTIONS(1855), - [sym_identifier] = ACTIONS(1855), - [sym_comment] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(1746), + [anon_sym_RPAREN] = ACTIONS(1746), + [anon_sym_LPAREN2] = ACTIONS(1746), + [anon_sym_LBRACK] = ACTIONS(1746), + [sym_comment] = ACTIONS(59), }, [468] = { - [sym_identifier] = ACTIONS(1857), - [sym_comment] = ACTIONS(37), + [sym__expression] = STATE(663), + [sym_conditional_expression] = STATE(663), + [sym_assignment_expression] = STATE(663), + [sym_pointer_expression] = STATE(663), + [sym_logical_expression] = STATE(663), + [sym_bitwise_expression] = STATE(663), + [sym_equality_expression] = STATE(663), + [sym_relational_expression] = STATE(663), + [sym_shift_expression] = STATE(663), + [sym_math_expression] = STATE(663), + [sym_cast_expression] = STATE(663), + [sym_sizeof_expression] = STATE(663), + [sym_subscript_expression] = STATE(663), + [sym_call_expression] = STATE(663), + [sym_field_expression] = STATE(663), + [sym_compound_literal_expression] = STATE(663), + [sym_parenthesized_expression] = STATE(663), + [sym_char_literal] = STATE(663), + [sym_concatenated_string] = STATE(663), + [sym_string_literal] = STATE(214), + [anon_sym_LPAREN2] = ACTIONS(461), + [anon_sym_STAR] = ACTIONS(463), + [anon_sym_RBRACK] = ACTIONS(1748), + [anon_sym_AMP] = ACTIONS(463), + [anon_sym_BANG] = ACTIONS(465), + [anon_sym_TILDE] = ACTIONS(467), + [anon_sym_PLUS] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(469), + [anon_sym_DASH_DASH] = ACTIONS(471), + [anon_sym_PLUS_PLUS] = ACTIONS(471), + [anon_sym_sizeof] = ACTIONS(473), + [sym_number_literal] = ACTIONS(1750), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(1752), + [sym_false] = ACTIONS(1752), + [sym_null] = ACTIONS(1752), + [sym_identifier] = ACTIONS(1752), + [sym_comment] = ACTIONS(59), }, [469] = { - [sym_argument_list] = STATE(430), - [aux_sym_initializer_list_repeat1] = STATE(717), - [anon_sym_COMMA] = ACTIONS(1859), - [anon_sym_RBRACE] = ACTIONS(1847), - [anon_sym_LPAREN2] = ACTIONS(1012), - [anon_sym_STAR] = ACTIONS(1252), - [anon_sym_LBRACK] = ACTIONS(1016), - [anon_sym_EQ] = ACTIONS(1254), - [anon_sym_QMARK] = ACTIONS(1256), - [anon_sym_STAR_EQ] = ACTIONS(1258), - [anon_sym_SLASH_EQ] = ACTIONS(1258), - [anon_sym_PERCENT_EQ] = ACTIONS(1258), - [anon_sym_PLUS_EQ] = ACTIONS(1258), - [anon_sym_DASH_EQ] = ACTIONS(1258), - [anon_sym_LT_LT_EQ] = ACTIONS(1258), - [anon_sym_GT_GT_EQ] = ACTIONS(1258), - [anon_sym_AMP_EQ] = ACTIONS(1258), - [anon_sym_CARET_EQ] = ACTIONS(1258), - [anon_sym_PIPE_EQ] = ACTIONS(1258), - [anon_sym_AMP] = ACTIONS(1260), - [anon_sym_PIPE_PIPE] = ACTIONS(1262), - [anon_sym_AMP_AMP] = ACTIONS(1264), - [anon_sym_PIPE] = ACTIONS(1266), - [anon_sym_CARET] = ACTIONS(1268), - [anon_sym_EQ_EQ] = ACTIONS(1270), - [anon_sym_BANG_EQ] = ACTIONS(1270), - [anon_sym_LT] = ACTIONS(1272), - [anon_sym_GT] = ACTIONS(1272), - [anon_sym_LT_EQ] = ACTIONS(1274), - [anon_sym_GT_EQ] = ACTIONS(1274), - [anon_sym_LT_LT] = ACTIONS(1276), - [anon_sym_GT_GT] = ACTIONS(1276), - [anon_sym_PLUS] = ACTIONS(1278), - [anon_sym_DASH] = ACTIONS(1278), - [anon_sym_SLASH] = ACTIONS(1252), - [anon_sym_PERCENT] = ACTIONS(1252), - [anon_sym_DASH_DASH] = ACTIONS(1044), - [anon_sym_PLUS_PLUS] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1046), - [anon_sym_DASH_GT] = ACTIONS(1046), - [sym_comment] = ACTIONS(37), + [sym_argument_list] = STATE(98), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(1016), + [anon_sym_LBRACK] = ACTIONS(188), + [anon_sym_RBRACK] = ACTIONS(1748), + [anon_sym_EQ] = ACTIONS(1020), + [anon_sym_QMARK] = ACTIONS(1022), + [anon_sym_STAR_EQ] = ACTIONS(1024), + [anon_sym_SLASH_EQ] = ACTIONS(1024), + [anon_sym_PERCENT_EQ] = ACTIONS(1024), + [anon_sym_PLUS_EQ] = ACTIONS(1024), + [anon_sym_DASH_EQ] = ACTIONS(1024), + [anon_sym_LT_LT_EQ] = ACTIONS(1024), + [anon_sym_GT_GT_EQ] = ACTIONS(1024), + [anon_sym_AMP_EQ] = ACTIONS(1024), + [anon_sym_CARET_EQ] = ACTIONS(1024), + [anon_sym_PIPE_EQ] = ACTIONS(1024), + [anon_sym_AMP] = ACTIONS(1026), + [anon_sym_PIPE_PIPE] = ACTIONS(1028), + [anon_sym_AMP_AMP] = ACTIONS(1030), + [anon_sym_PIPE] = ACTIONS(1032), + [anon_sym_CARET] = ACTIONS(1034), + [anon_sym_EQ_EQ] = ACTIONS(1036), + [anon_sym_BANG_EQ] = ACTIONS(1036), + [anon_sym_LT] = ACTIONS(1038), + [anon_sym_GT] = ACTIONS(1038), + [anon_sym_LT_EQ] = ACTIONS(1040), + [anon_sym_GT_EQ] = ACTIONS(1040), + [anon_sym_LT_LT] = ACTIONS(1042), + [anon_sym_GT_GT] = ACTIONS(1042), + [anon_sym_PLUS] = ACTIONS(1044), + [anon_sym_DASH] = ACTIONS(1044), + [anon_sym_SLASH] = ACTIONS(1016), + [anon_sym_PERCENT] = ACTIONS(1016), + [anon_sym_DASH_DASH] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(216), + [anon_sym_DOT] = ACTIONS(218), + [anon_sym_DASH_GT] = ACTIONS(218), + [sym_comment] = ACTIONS(59), }, [470] = { - [aux_sym_initializer_list_repeat1] = STATE(717), - [anon_sym_COMMA] = ACTIONS(1859), - [anon_sym_RBRACE] = ACTIONS(1847), - [sym_comment] = ACTIONS(37), + [ts_builtin_sym_end] = ACTIONS(1754), + [anon_sym_SEMI] = ACTIONS(1754), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1756), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1756), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1756), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1756), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1756), + [sym_preproc_directive] = ACTIONS(1756), + [anon_sym_typedef] = ACTIONS(1756), + [anon_sym_extern] = ACTIONS(1756), + [anon_sym_LBRACE] = ACTIONS(1754), + [anon_sym_RBRACE] = ACTIONS(1754), + [anon_sym_LPAREN2] = ACTIONS(1754), + [anon_sym_STAR] = ACTIONS(1754), + [anon_sym_static] = ACTIONS(1756), + [anon_sym_auto] = ACTIONS(1756), + [anon_sym_register] = ACTIONS(1756), + [anon_sym_inline] = ACTIONS(1756), + [anon_sym_const] = ACTIONS(1756), + [anon_sym_restrict] = ACTIONS(1756), + [anon_sym_volatile] = ACTIONS(1756), + [anon_sym__Atomic] = ACTIONS(1756), + [anon_sym_unsigned] = ACTIONS(1756), + [anon_sym_long] = ACTIONS(1756), + [anon_sym_short] = ACTIONS(1756), + [sym_primitive_type] = ACTIONS(1756), + [anon_sym_enum] = ACTIONS(1756), + [anon_sym_struct] = ACTIONS(1756), + [anon_sym_union] = ACTIONS(1756), + [anon_sym_if] = ACTIONS(1756), + [anon_sym_else] = ACTIONS(1756), + [anon_sym_switch] = ACTIONS(1756), + [anon_sym_case] = ACTIONS(1756), + [anon_sym_default] = ACTIONS(1756), + [anon_sym_while] = ACTIONS(1756), + [anon_sym_do] = ACTIONS(1756), + [anon_sym_for] = ACTIONS(1756), + [anon_sym_return] = ACTIONS(1756), + [anon_sym_break] = ACTIONS(1756), + [anon_sym_continue] = ACTIONS(1756), + [anon_sym_goto] = ACTIONS(1756), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_PLUS] = ACTIONS(1756), + [anon_sym_DASH] = ACTIONS(1756), + [anon_sym_DASH_DASH] = ACTIONS(1754), + [anon_sym_PLUS_PLUS] = ACTIONS(1754), + [anon_sym_sizeof] = ACTIONS(1756), + [sym_number_literal] = ACTIONS(1754), + [anon_sym_SQUOTE] = ACTIONS(1754), + [anon_sym_DQUOTE] = ACTIONS(1754), + [sym_true] = ACTIONS(1756), + [sym_false] = ACTIONS(1756), + [sym_null] = ACTIONS(1756), + [sym_identifier] = ACTIONS(1756), + [sym_comment] = ACTIONS(59), }, [471] = { - [sym_subscript_designator] = STATE(719), - [sym_field_designator] = STATE(719), - [aux_sym_initializer_pair_repeat1] = STATE(719), - [anon_sym_LBRACK] = ACTIONS(1118), - [anon_sym_EQ] = ACTIONS(1861), - [anon_sym_DOT] = ACTIONS(1120), - [sym_comment] = ACTIONS(37), + [ts_builtin_sym_end] = ACTIONS(1758), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1760), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1760), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1760), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1760), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1760), + [sym_preproc_directive] = ACTIONS(1760), + [anon_sym_typedef] = ACTIONS(1760), + [anon_sym_extern] = ACTIONS(1760), + [anon_sym_RBRACE] = ACTIONS(1758), + [anon_sym_LPAREN2] = ACTIONS(1758), + [anon_sym_STAR] = ACTIONS(1758), + [anon_sym_static] = ACTIONS(1760), + [anon_sym_auto] = ACTIONS(1760), + [anon_sym_register] = ACTIONS(1760), + [anon_sym_inline] = ACTIONS(1760), + [anon_sym_const] = ACTIONS(1760), + [anon_sym_restrict] = ACTIONS(1760), + [anon_sym_volatile] = ACTIONS(1760), + [anon_sym__Atomic] = ACTIONS(1760), + [anon_sym_unsigned] = ACTIONS(1760), + [anon_sym_long] = ACTIONS(1760), + [anon_sym_short] = ACTIONS(1760), + [sym_primitive_type] = ACTIONS(1760), + [anon_sym_enum] = ACTIONS(1760), + [anon_sym_struct] = ACTIONS(1760), + [anon_sym_union] = ACTIONS(1760), + [anon_sym_AMP] = ACTIONS(1758), + [anon_sym_BANG] = ACTIONS(1758), + [anon_sym_TILDE] = ACTIONS(1758), + [anon_sym_PLUS] = ACTIONS(1760), + [anon_sym_DASH] = ACTIONS(1760), + [anon_sym_DASH_DASH] = ACTIONS(1758), + [anon_sym_PLUS_PLUS] = ACTIONS(1758), + [anon_sym_sizeof] = ACTIONS(1760), + [sym_number_literal] = ACTIONS(1758), + [anon_sym_SQUOTE] = ACTIONS(1758), + [anon_sym_DQUOTE] = ACTIONS(1758), + [sym_true] = ACTIONS(1760), + [sym_false] = ACTIONS(1760), + [sym_null] = ACTIONS(1760), + [sym_identifier] = ACTIONS(1760), + [sym_comment] = ACTIONS(59), }, [472] = { - [anon_sym_COMMA] = ACTIONS(1863), - [anon_sym_RPAREN] = ACTIONS(1863), - [sym_comment] = ACTIONS(37), + [sym_preproc_include] = STATE(472), + [sym_preproc_def] = STATE(472), + [sym_preproc_function_def] = STATE(472), + [sym_preproc_call] = STATE(472), + [sym_preproc_if] = STATE(472), + [sym_preproc_ifdef] = STATE(472), + [sym_function_definition] = STATE(472), + [sym_declaration] = STATE(472), + [sym_type_definition] = STATE(472), + [sym__declaration_specifiers] = STATE(24), + [sym_linkage_specification] = STATE(472), + [sym_storage_class_specifier] = STATE(30), + [sym_type_qualifier] = STATE(30), + [sym__type_specifier] = STATE(25), + [sym_sized_type_specifier] = STATE(25), + [sym_enum_specifier] = STATE(25), + [sym_struct_specifier] = STATE(25), + [sym_union_specifier] = STATE(25), + [sym__expression] = STATE(26), + [sym_conditional_expression] = STATE(26), + [sym_assignment_expression] = STATE(26), + [sym_pointer_expression] = STATE(26), + [sym_logical_expression] = STATE(26), + [sym_bitwise_expression] = STATE(26), + [sym_equality_expression] = STATE(26), + [sym_relational_expression] = STATE(26), + [sym_shift_expression] = STATE(26), + [sym_math_expression] = STATE(26), + [sym_cast_expression] = STATE(26), + [sym_sizeof_expression] = STATE(26), + [sym_subscript_expression] = STATE(26), + [sym_call_expression] = STATE(27), + [sym_field_expression] = STATE(26), + [sym_compound_literal_expression] = STATE(26), + [sym_parenthesized_expression] = STATE(26), + [sym_char_literal] = STATE(26), + [sym_concatenated_string] = STATE(26), + [sym_string_literal] = STATE(28), + [sym__empty_declaration] = STATE(472), + [sym_macro_type_specifier] = STATE(25), + [aux_sym_translation_unit_repeat1] = STATE(472), + [aux_sym__declaration_specifiers_repeat1] = STATE(30), + [aux_sym_sized_type_specifier_repeat1] = STATE(31), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(551), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(554), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(557), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(560), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(560), + [sym_preproc_directive] = ACTIONS(563), + [anon_sym_typedef] = ACTIONS(566), + [anon_sym_extern] = ACTIONS(569), + [anon_sym_RBRACE] = ACTIONS(543), + [anon_sym_LPAREN2] = ACTIONS(572), + [anon_sym_STAR] = ACTIONS(575), + [anon_sym_static] = ACTIONS(578), + [anon_sym_auto] = ACTIONS(578), + [anon_sym_register] = ACTIONS(578), + [anon_sym_inline] = ACTIONS(578), + [anon_sym_const] = ACTIONS(581), + [anon_sym_restrict] = ACTIONS(581), + [anon_sym_volatile] = ACTIONS(581), + [anon_sym__Atomic] = ACTIONS(581), + [anon_sym_unsigned] = ACTIONS(584), + [anon_sym_long] = ACTIONS(584), + [anon_sym_short] = ACTIONS(584), + [sym_primitive_type] = ACTIONS(587), + [anon_sym_enum] = ACTIONS(590), + [anon_sym_struct] = ACTIONS(593), + [anon_sym_union] = ACTIONS(596), + [anon_sym_AMP] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(599), + [anon_sym_TILDE] = ACTIONS(602), + [anon_sym_PLUS] = ACTIONS(605), + [anon_sym_DASH] = ACTIONS(605), + [anon_sym_DASH_DASH] = ACTIONS(608), + [anon_sym_PLUS_PLUS] = ACTIONS(608), + [anon_sym_sizeof] = ACTIONS(611), + [sym_number_literal] = ACTIONS(614), + [anon_sym_SQUOTE] = ACTIONS(617), + [anon_sym_DQUOTE] = ACTIONS(620), + [sym_true] = ACTIONS(623), + [sym_false] = ACTIONS(623), + [sym_null] = ACTIONS(623), + [sym_identifier] = ACTIONS(626), + [sym_comment] = ACTIONS(59), }, [473] = { - [anon_sym_LF] = ACTIONS(1865), - [sym_preproc_arg] = ACTIONS(1865), - [sym_comment] = ACTIONS(47), + [sym_storage_class_specifier] = STATE(473), + [sym_type_qualifier] = STATE(473), + [aux_sym__declaration_specifiers_repeat1] = STATE(473), + [anon_sym_extern] = ACTIONS(629), + [anon_sym_LPAREN2] = ACTIONS(996), + [anon_sym_STAR] = ACTIONS(996), + [anon_sym_static] = ACTIONS(629), + [anon_sym_auto] = ACTIONS(629), + [anon_sym_register] = ACTIONS(629), + [anon_sym_inline] = ACTIONS(629), + [anon_sym_const] = ACTIONS(632), + [anon_sym_restrict] = ACTIONS(632), + [anon_sym_volatile] = ACTIONS(632), + [anon_sym__Atomic] = ACTIONS(632), + [sym_identifier] = ACTIONS(635), + [sym_comment] = ACTIONS(59), }, [474] = { - [aux_sym_preproc_params_repeat1] = STATE(474), - [anon_sym_COMMA] = ACTIONS(1867), - [anon_sym_RPAREN] = ACTIONS(1863), - [sym_comment] = ACTIONS(37), + [sym_storage_class_specifier] = STATE(473), + [sym_type_qualifier] = STATE(473), + [aux_sym__declaration_specifiers_repeat1] = STATE(473), + [anon_sym_extern] = ACTIONS(25), + [anon_sym_LPAREN2] = ACTIONS(1115), + [anon_sym_STAR] = ACTIONS(1115), + [anon_sym_static] = ACTIONS(25), + [anon_sym_auto] = ACTIONS(25), + [anon_sym_register] = ACTIONS(25), + [anon_sym_inline] = ACTIONS(25), + [anon_sym_const] = ACTIONS(27), + [anon_sym_restrict] = ACTIONS(27), + [anon_sym_volatile] = ACTIONS(27), + [anon_sym__Atomic] = ACTIONS(27), + [sym_identifier] = ACTIONS(1117), + [sym_comment] = ACTIONS(59), }, [475] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(607), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(607), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(607), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(607), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(607), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(607), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(607), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(607), - [sym_preproc_directive] = ACTIONS(607), - [anon_sym_SEMI] = ACTIONS(605), - [anon_sym_typedef] = ACTIONS(607), - [anon_sym_extern] = ACTIONS(607), - [anon_sym_LBRACE] = ACTIONS(605), - [anon_sym_LPAREN2] = ACTIONS(605), - [anon_sym_STAR] = ACTIONS(605), - [anon_sym_static] = ACTIONS(607), - [anon_sym_auto] = ACTIONS(607), - [anon_sym_register] = ACTIONS(607), - [anon_sym_inline] = ACTIONS(607), - [anon_sym_const] = ACTIONS(607), - [anon_sym_restrict] = ACTIONS(607), - [anon_sym_volatile] = ACTIONS(607), - [anon_sym__Atomic] = ACTIONS(607), - [anon_sym_unsigned] = ACTIONS(607), - [anon_sym_long] = ACTIONS(607), - [anon_sym_short] = ACTIONS(607), - [sym_primitive_type] = ACTIONS(607), - [anon_sym_enum] = ACTIONS(607), - [anon_sym_struct] = ACTIONS(607), - [anon_sym_union] = ACTIONS(607), - [anon_sym_if] = ACTIONS(607), - [anon_sym_switch] = ACTIONS(607), - [anon_sym_case] = ACTIONS(607), - [anon_sym_default] = ACTIONS(607), - [anon_sym_while] = ACTIONS(607), - [anon_sym_do] = ACTIONS(607), - [anon_sym_for] = ACTIONS(607), - [anon_sym_return] = ACTIONS(607), - [anon_sym_break] = ACTIONS(607), - [anon_sym_continue] = ACTIONS(607), - [anon_sym_goto] = ACTIONS(607), - [anon_sym_AMP] = ACTIONS(605), - [anon_sym_BANG] = ACTIONS(605), - [anon_sym_TILDE] = ACTIONS(605), - [anon_sym_PLUS] = ACTIONS(607), - [anon_sym_DASH] = ACTIONS(607), - [anon_sym_DASH_DASH] = ACTIONS(605), - [anon_sym_PLUS_PLUS] = ACTIONS(605), - [anon_sym_sizeof] = ACTIONS(607), - [sym_number_literal] = ACTIONS(605), - [anon_sym_SQUOTE] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [sym_true] = ACTIONS(607), - [sym_false] = ACTIONS(607), - [sym_null] = ACTIONS(607), - [sym_identifier] = ACTIONS(607), - [sym_comment] = ACTIONS(37), + [sym__expression] = STATE(319), + [sym_conditional_expression] = STATE(319), + [sym_assignment_expression] = STATE(319), + [sym_pointer_expression] = STATE(319), + [sym_logical_expression] = STATE(319), + [sym_bitwise_expression] = STATE(319), + [sym_equality_expression] = STATE(319), + [sym_relational_expression] = STATE(319), + [sym_shift_expression] = STATE(319), + [sym_math_expression] = STATE(319), + [sym_cast_expression] = STATE(319), + [sym_sizeof_expression] = STATE(319), + [sym_subscript_expression] = STATE(319), + [sym_call_expression] = STATE(319), + [sym_field_expression] = STATE(319), + [sym_compound_literal_expression] = STATE(319), + [sym_parenthesized_expression] = STATE(319), + [sym_initializer_list] = STATE(320), + [sym_char_literal] = STATE(319), + [sym_concatenated_string] = STATE(319), + [sym_string_literal] = STATE(55), + [anon_sym_COMMA] = ACTIONS(1418), + [anon_sym_RPAREN] = ACTIONS(1418), + [anon_sym_LBRACE] = ACTIONS(840), + [anon_sym_LPAREN2] = ACTIONS(85), + [anon_sym_STAR] = ACTIONS(1762), + [anon_sym_LBRACK] = ACTIONS(1418), + [anon_sym_EQ] = ACTIONS(1420), + [anon_sym_QMARK] = ACTIONS(1418), + [anon_sym_STAR_EQ] = ACTIONS(1418), + [anon_sym_SLASH_EQ] = ACTIONS(1418), + [anon_sym_PERCENT_EQ] = ACTIONS(1418), + [anon_sym_PLUS_EQ] = ACTIONS(1418), + [anon_sym_DASH_EQ] = ACTIONS(1418), + [anon_sym_LT_LT_EQ] = ACTIONS(1418), + [anon_sym_GT_GT_EQ] = ACTIONS(1418), + [anon_sym_AMP_EQ] = ACTIONS(1418), + [anon_sym_CARET_EQ] = ACTIONS(1418), + [anon_sym_PIPE_EQ] = ACTIONS(1418), + [anon_sym_AMP] = ACTIONS(1762), + [anon_sym_PIPE_PIPE] = ACTIONS(1418), + [anon_sym_AMP_AMP] = ACTIONS(1418), + [anon_sym_BANG] = ACTIONS(1764), + [anon_sym_PIPE] = ACTIONS(1420), + [anon_sym_CARET] = ACTIONS(1420), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_EQ_EQ] = ACTIONS(1418), + [anon_sym_BANG_EQ] = ACTIONS(1418), + [anon_sym_LT] = ACTIONS(1420), + [anon_sym_GT] = ACTIONS(1420), + [anon_sym_LT_EQ] = ACTIONS(1418), + [anon_sym_GT_EQ] = ACTIONS(1418), + [anon_sym_LT_LT] = ACTIONS(1420), + [anon_sym_GT_GT] = ACTIONS(1420), + [anon_sym_PLUS] = ACTIONS(97), + [anon_sym_DASH] = ACTIONS(97), + [anon_sym_SLASH] = ACTIONS(1420), + [anon_sym_PERCENT] = ACTIONS(1420), + [anon_sym_DASH_DASH] = ACTIONS(99), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(101), + [anon_sym_DOT] = ACTIONS(1418), + [anon_sym_DASH_GT] = ACTIONS(1418), + [sym_number_literal] = ACTIONS(842), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(844), + [sym_false] = ACTIONS(844), + [sym_null] = ACTIONS(844), + [sym_identifier] = ACTIONS(844), + [sym_comment] = ACTIONS(59), }, [476] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(622), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(622), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(622), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(622), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(622), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(622), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(622), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(622), - [sym_preproc_directive] = ACTIONS(622), - [anon_sym_SEMI] = ACTIONS(620), - [anon_sym_typedef] = ACTIONS(622), - [anon_sym_extern] = ACTIONS(622), - [anon_sym_LBRACE] = ACTIONS(620), - [anon_sym_LPAREN2] = ACTIONS(620), - [anon_sym_STAR] = ACTIONS(620), - [anon_sym_static] = ACTIONS(622), - [anon_sym_auto] = ACTIONS(622), - [anon_sym_register] = ACTIONS(622), - [anon_sym_inline] = ACTIONS(622), - [anon_sym_const] = ACTIONS(622), - [anon_sym_restrict] = ACTIONS(622), - [anon_sym_volatile] = ACTIONS(622), - [anon_sym__Atomic] = ACTIONS(622), - [anon_sym_unsigned] = ACTIONS(622), - [anon_sym_long] = ACTIONS(622), - [anon_sym_short] = ACTIONS(622), - [sym_primitive_type] = ACTIONS(622), - [anon_sym_enum] = ACTIONS(622), - [anon_sym_struct] = ACTIONS(622), - [anon_sym_union] = ACTIONS(622), - [anon_sym_if] = ACTIONS(622), - [anon_sym_switch] = ACTIONS(622), - [anon_sym_case] = ACTIONS(622), - [anon_sym_default] = ACTIONS(622), - [anon_sym_while] = ACTIONS(622), - [anon_sym_do] = ACTIONS(622), - [anon_sym_for] = ACTIONS(622), - [anon_sym_return] = ACTIONS(622), - [anon_sym_break] = ACTIONS(622), - [anon_sym_continue] = ACTIONS(622), - [anon_sym_goto] = ACTIONS(622), - [anon_sym_AMP] = ACTIONS(620), - [anon_sym_BANG] = ACTIONS(620), - [anon_sym_TILDE] = ACTIONS(620), - [anon_sym_PLUS] = ACTIONS(622), - [anon_sym_DASH] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(620), - [anon_sym_sizeof] = ACTIONS(622), - [sym_number_literal] = ACTIONS(620), - [anon_sym_SQUOTE] = ACTIONS(620), - [anon_sym_DQUOTE] = ACTIONS(620), - [sym_true] = ACTIONS(622), - [sym_false] = ACTIONS(622), - [sym_null] = ACTIONS(622), - [sym_identifier] = ACTIONS(622), - [sym_comment] = ACTIONS(37), + [sym__declaration_specifiers] = STATE(289), + [sym_storage_class_specifier] = STATE(292), + [sym_type_qualifier] = STATE(292), + [sym__type_specifier] = STATE(291), + [sym_sized_type_specifier] = STATE(291), + [sym_enum_specifier] = STATE(291), + [sym_struct_specifier] = STATE(291), + [sym_union_specifier] = STATE(291), + [sym_parameter_declaration] = STATE(664), + [sym_macro_type_specifier] = STATE(291), + [aux_sym__declaration_specifiers_repeat1] = STATE(292), + [aux_sym_sized_type_specifier_repeat1] = STATE(293), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1766), + [anon_sym_extern] = ACTIONS(25), + [anon_sym_static] = ACTIONS(25), + [anon_sym_auto] = ACTIONS(25), + [anon_sym_register] = ACTIONS(25), + [anon_sym_inline] = ACTIONS(25), + [anon_sym_const] = ACTIONS(27), + [anon_sym_restrict] = ACTIONS(27), + [anon_sym_volatile] = ACTIONS(27), + [anon_sym__Atomic] = ACTIONS(27), + [anon_sym_unsigned] = ACTIONS(762), + [anon_sym_long] = ACTIONS(762), + [anon_sym_short] = ACTIONS(762), + [sym_primitive_type] = ACTIONS(764), + [anon_sym_enum] = ACTIONS(33), + [anon_sym_struct] = ACTIONS(35), + [anon_sym_union] = ACTIONS(37), + [sym_identifier] = ACTIONS(81), + [sym_comment] = ACTIONS(59), }, [477] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(626), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(626), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(626), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(626), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(626), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(626), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(626), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(626), - [sym_preproc_directive] = ACTIONS(626), - [anon_sym_SEMI] = ACTIONS(624), - [anon_sym_typedef] = ACTIONS(626), - [anon_sym_extern] = ACTIONS(626), - [anon_sym_LBRACE] = ACTIONS(624), - [anon_sym_LPAREN2] = ACTIONS(624), - [anon_sym_STAR] = ACTIONS(624), - [anon_sym_static] = ACTIONS(626), - [anon_sym_auto] = ACTIONS(626), - [anon_sym_register] = ACTIONS(626), - [anon_sym_inline] = ACTIONS(626), - [anon_sym_const] = ACTIONS(626), - [anon_sym_restrict] = ACTIONS(626), - [anon_sym_volatile] = ACTIONS(626), - [anon_sym__Atomic] = ACTIONS(626), - [anon_sym_unsigned] = ACTIONS(626), - [anon_sym_long] = ACTIONS(626), - [anon_sym_short] = ACTIONS(626), - [sym_primitive_type] = ACTIONS(626), - [anon_sym_enum] = ACTIONS(626), - [anon_sym_struct] = ACTIONS(626), - [anon_sym_union] = ACTIONS(626), - [anon_sym_if] = ACTIONS(626), - [anon_sym_switch] = ACTIONS(626), - [anon_sym_case] = ACTIONS(626), - [anon_sym_default] = ACTIONS(626), - [anon_sym_while] = ACTIONS(626), - [anon_sym_do] = ACTIONS(626), - [anon_sym_for] = ACTIONS(626), - [anon_sym_return] = ACTIONS(626), - [anon_sym_break] = ACTIONS(626), - [anon_sym_continue] = ACTIONS(626), - [anon_sym_goto] = ACTIONS(626), - [anon_sym_AMP] = ACTIONS(624), - [anon_sym_BANG] = ACTIONS(624), - [anon_sym_TILDE] = ACTIONS(624), - [anon_sym_PLUS] = ACTIONS(626), - [anon_sym_DASH] = ACTIONS(626), - [anon_sym_DASH_DASH] = ACTIONS(624), - [anon_sym_PLUS_PLUS] = ACTIONS(624), - [anon_sym_sizeof] = ACTIONS(626), - [sym_number_literal] = ACTIONS(624), - [anon_sym_SQUOTE] = ACTIONS(624), - [anon_sym_DQUOTE] = ACTIONS(624), - [sym_true] = ACTIONS(626), - [sym_false] = ACTIONS(626), - [sym_null] = ACTIONS(626), - [sym_identifier] = ACTIONS(626), - [sym_comment] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(1768), + [anon_sym_COMMA] = ACTIONS(1768), + [anon_sym_RPAREN] = ACTIONS(1768), + [anon_sym_LBRACE] = ACTIONS(1768), + [anon_sym_LPAREN2] = ACTIONS(1768), + [anon_sym_LBRACK] = ACTIONS(1768), + [anon_sym_EQ] = ACTIONS(1768), + [anon_sym_COLON] = ACTIONS(1768), + [sym_comment] = ACTIONS(59), }, [478] = { - [anon_sym_LF] = ACTIONS(1870), - [sym_comment] = ACTIONS(47), + [aux_sym_parameter_list_repeat1] = STATE(666), + [anon_sym_COMMA] = ACTIONS(1245), + [anon_sym_RPAREN] = ACTIONS(1770), + [sym_comment] = ACTIONS(59), }, [479] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(674), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(674), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(674), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(674), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(674), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(674), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(674), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(674), - [sym_preproc_directive] = ACTIONS(674), - [anon_sym_typedef] = ACTIONS(674), - [anon_sym_extern] = ACTIONS(674), - [anon_sym_static] = ACTIONS(674), - [anon_sym_auto] = ACTIONS(674), - [anon_sym_register] = ACTIONS(674), - [anon_sym_inline] = ACTIONS(674), - [anon_sym_const] = ACTIONS(674), - [anon_sym_restrict] = ACTIONS(674), - [anon_sym_volatile] = ACTIONS(674), - [anon_sym__Atomic] = ACTIONS(674), - [anon_sym_unsigned] = ACTIONS(674), - [anon_sym_long] = ACTIONS(674), - [anon_sym_short] = ACTIONS(674), - [sym_primitive_type] = ACTIONS(674), - [anon_sym_enum] = ACTIONS(674), - [anon_sym_struct] = ACTIONS(674), - [anon_sym_union] = ACTIONS(674), - [sym_identifier] = ACTIONS(674), - [sym_comment] = ACTIONS(37), + [sym__declaration_specifiers] = STATE(289), + [sym__declarator] = STATE(191), + [sym__abstract_declarator] = STATE(290), + [sym_pointer_declarator] = STATE(191), + [sym_abstract_pointer_declarator] = STATE(290), + [sym_function_declarator] = STATE(191), + [sym_abstract_function_declarator] = STATE(290), + [sym_array_declarator] = STATE(191), + [sym_abstract_array_declarator] = STATE(290), + [sym_storage_class_specifier] = STATE(292), + [sym_type_qualifier] = STATE(292), + [sym__type_specifier] = STATE(291), + [sym_sized_type_specifier] = STATE(291), + [sym_enum_specifier] = STATE(291), + [sym_struct_specifier] = STATE(291), + [sym_union_specifier] = STATE(291), + [sym_parameter_list] = STATE(151), + [sym_parameter_declaration] = STATE(287), + [sym_macro_type_specifier] = STATE(291), + [aux_sym__declaration_specifiers_repeat1] = STATE(292), + [aux_sym_sized_type_specifier_repeat1] = STATE(293), + [anon_sym_DOT_DOT_DOT] = ACTIONS(758), + [anon_sym_RPAREN] = ACTIONS(760), + [anon_sym_extern] = ACTIONS(25), + [anon_sym_LPAREN2] = ACTIONS(1253), + [anon_sym_STAR] = ACTIONS(1772), + [anon_sym_LBRACK] = ACTIONS(313), + [anon_sym_static] = ACTIONS(25), + [anon_sym_auto] = ACTIONS(25), + [anon_sym_register] = ACTIONS(25), + [anon_sym_inline] = ACTIONS(25), + [anon_sym_const] = ACTIONS(27), + [anon_sym_restrict] = ACTIONS(27), + [anon_sym_volatile] = ACTIONS(27), + [anon_sym__Atomic] = ACTIONS(27), + [anon_sym_unsigned] = ACTIONS(762), + [anon_sym_long] = ACTIONS(762), + [anon_sym_short] = ACTIONS(762), + [sym_primitive_type] = ACTIONS(764), + [anon_sym_enum] = ACTIONS(33), + [anon_sym_struct] = ACTIONS(35), + [anon_sym_union] = ACTIONS(37), + [sym_identifier] = ACTIONS(1774), + [sym_comment] = ACTIONS(59), }, [480] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1872), - [sym_comment] = ACTIONS(37), + [sym__declarator] = STATE(192), + [sym__abstract_declarator] = STATE(294), + [sym_pointer_declarator] = STATE(192), + [sym_abstract_pointer_declarator] = STATE(294), + [sym_function_declarator] = STATE(192), + [sym_abstract_function_declarator] = STATE(294), + [sym_array_declarator] = STATE(192), + [sym_abstract_array_declarator] = STATE(294), + [sym_type_qualifier] = STATE(669), + [sym_parameter_list] = STATE(151), + [aux_sym_type_definition_repeat1] = STATE(669), + [anon_sym_COMMA] = ACTIONS(766), + [anon_sym_RPAREN] = ACTIONS(766), + [anon_sym_LPAREN2] = ACTIONS(1253), + [anon_sym_STAR] = ACTIONS(1255), + [anon_sym_LBRACK] = ACTIONS(313), + [anon_sym_const] = ACTIONS(27), + [anon_sym_restrict] = ACTIONS(27), + [anon_sym_volatile] = ACTIONS(27), + [anon_sym__Atomic] = ACTIONS(27), + [sym_identifier] = ACTIONS(433), + [sym_comment] = ACTIONS(59), }, [481] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(707), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(707), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(707), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(707), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(707), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(707), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(707), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(707), - [sym_preproc_directive] = ACTIONS(707), - [anon_sym_typedef] = ACTIONS(707), - [anon_sym_extern] = ACTIONS(707), - [anon_sym_static] = ACTIONS(707), - [anon_sym_auto] = ACTIONS(707), - [anon_sym_register] = ACTIONS(707), - [anon_sym_inline] = ACTIONS(707), - [anon_sym_const] = ACTIONS(707), - [anon_sym_restrict] = ACTIONS(707), - [anon_sym_volatile] = ACTIONS(707), - [anon_sym__Atomic] = ACTIONS(707), - [anon_sym_unsigned] = ACTIONS(707), - [anon_sym_long] = ACTIONS(707), - [anon_sym_short] = ACTIONS(707), - [sym_primitive_type] = ACTIONS(707), - [anon_sym_enum] = ACTIONS(707), - [anon_sym_struct] = ACTIONS(707), - [anon_sym_union] = ACTIONS(707), - [sym_identifier] = ACTIONS(707), - [sym_comment] = ACTIONS(37), + [sym_parameter_list] = STATE(201), + [anon_sym_COMMA] = ACTIONS(1776), + [anon_sym_RPAREN] = ACTIONS(1776), + [anon_sym_LPAREN2] = ACTIONS(441), + [anon_sym_LBRACK] = ACTIONS(443), + [sym_comment] = ACTIONS(59), }, [482] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1874), - [sym_comment] = ACTIONS(37), + [sym_parameter_list] = STATE(304), + [anon_sym_COMMA] = ACTIONS(1776), + [anon_sym_RPAREN] = ACTIONS(1776), + [anon_sym_LPAREN2] = ACTIONS(441), + [anon_sym_LBRACK] = ACTIONS(784), + [sym_comment] = ACTIONS(59), }, [483] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(313), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(313), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(313), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(313), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(313), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(313), - [sym_preproc_directive] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(311), - [anon_sym_typedef] = ACTIONS(313), - [anon_sym_extern] = ACTIONS(313), - [anon_sym_LBRACE] = ACTIONS(311), - [anon_sym_LPAREN2] = ACTIONS(311), - [anon_sym_STAR] = ACTIONS(311), - [anon_sym_static] = ACTIONS(313), - [anon_sym_auto] = ACTIONS(313), - [anon_sym_register] = ACTIONS(313), - [anon_sym_inline] = ACTIONS(313), - [anon_sym_const] = ACTIONS(313), - [anon_sym_restrict] = ACTIONS(313), - [anon_sym_volatile] = ACTIONS(313), - [anon_sym__Atomic] = ACTIONS(313), - [anon_sym_unsigned] = ACTIONS(313), - [anon_sym_long] = ACTIONS(313), - [anon_sym_short] = ACTIONS(313), - [sym_primitive_type] = ACTIONS(313), - [anon_sym_enum] = ACTIONS(313), - [anon_sym_struct] = ACTIONS(313), - [anon_sym_union] = ACTIONS(313), - [anon_sym_if] = ACTIONS(313), - [anon_sym_switch] = ACTIONS(313), - [anon_sym_case] = ACTIONS(313), - [anon_sym_default] = ACTIONS(313), - [anon_sym_while] = ACTIONS(313), - [anon_sym_do] = ACTIONS(313), - [anon_sym_for] = ACTIONS(313), - [anon_sym_return] = ACTIONS(313), - [anon_sym_break] = ACTIONS(313), - [anon_sym_continue] = ACTIONS(313), - [anon_sym_goto] = ACTIONS(313), - [anon_sym_AMP] = ACTIONS(311), - [anon_sym_BANG] = ACTIONS(311), - [anon_sym_TILDE] = ACTIONS(311), - [anon_sym_PLUS] = ACTIONS(313), - [anon_sym_DASH] = ACTIONS(313), - [anon_sym_DASH_DASH] = ACTIONS(311), - [anon_sym_PLUS_PLUS] = ACTIONS(311), - [anon_sym_sizeof] = ACTIONS(313), - [sym_number_literal] = ACTIONS(311), - [anon_sym_SQUOTE] = ACTIONS(311), - [anon_sym_DQUOTE] = ACTIONS(311), - [sym_true] = ACTIONS(313), - [sym_false] = ACTIONS(313), - [sym_null] = ACTIONS(313), - [sym_identifier] = ACTIONS(313), - [sym_comment] = ACTIONS(37), + [anon_sym_COMMA] = ACTIONS(1778), + [anon_sym_RPAREN] = ACTIONS(1778), + [anon_sym_LPAREN2] = ACTIONS(1778), + [anon_sym_LBRACK] = ACTIONS(1778), + [sym_comment] = ACTIONS(59), }, [484] = { - [aux_sym_string_literal_repeat1] = STATE(124), - [anon_sym_DQUOTE] = ACTIONS(1876), - [aux_sym_SLASH_LBRACK_CARET_BSLASH_BSLASH_DQUOTE_BSLASHn_RBRACK_SLASH] = ACTIONS(317), - [sym_escape_sequence] = ACTIONS(317), - [sym_comment] = ACTIONS(47), + [sym_storage_class_specifier] = STATE(670), + [sym_type_qualifier] = STATE(670), + [aux_sym__declaration_specifiers_repeat1] = STATE(670), + [anon_sym_COMMA] = ACTIONS(447), + [anon_sym_RPAREN] = ACTIONS(447), + [anon_sym_extern] = ACTIONS(25), + [anon_sym_LPAREN2] = ACTIONS(447), + [anon_sym_STAR] = ACTIONS(447), + [anon_sym_LBRACK] = ACTIONS(447), + [anon_sym_static] = ACTIONS(25), + [anon_sym_auto] = ACTIONS(25), + [anon_sym_register] = ACTIONS(25), + [anon_sym_inline] = ACTIONS(25), + [anon_sym_const] = ACTIONS(27), + [anon_sym_restrict] = ACTIONS(27), + [anon_sym_volatile] = ACTIONS(27), + [anon_sym__Atomic] = ACTIONS(27), + [sym_identifier] = ACTIONS(449), + [sym_comment] = ACTIONS(59), }, [485] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(321), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(321), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(321), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(321), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(321), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(321), - [sym_preproc_directive] = ACTIONS(321), - [anon_sym_SEMI] = ACTIONS(319), - [anon_sym_typedef] = ACTIONS(321), - [anon_sym_extern] = ACTIONS(321), - [anon_sym_LBRACE] = ACTIONS(319), - [anon_sym_LPAREN2] = ACTIONS(319), - [anon_sym_STAR] = ACTIONS(319), - [anon_sym_static] = ACTIONS(321), - [anon_sym_auto] = ACTIONS(321), - [anon_sym_register] = ACTIONS(321), - [anon_sym_inline] = ACTIONS(321), - [anon_sym_const] = ACTIONS(321), - [anon_sym_restrict] = ACTIONS(321), - [anon_sym_volatile] = ACTIONS(321), - [anon_sym__Atomic] = ACTIONS(321), - [anon_sym_unsigned] = ACTIONS(321), - [anon_sym_long] = ACTIONS(321), - [anon_sym_short] = ACTIONS(321), - [sym_primitive_type] = ACTIONS(321), - [anon_sym_enum] = ACTIONS(321), - [anon_sym_struct] = ACTIONS(321), - [anon_sym_union] = ACTIONS(321), - [anon_sym_if] = ACTIONS(321), - [anon_sym_switch] = ACTIONS(321), - [anon_sym_case] = ACTIONS(321), - [anon_sym_default] = ACTIONS(321), - [anon_sym_while] = ACTIONS(321), - [anon_sym_do] = ACTIONS(321), - [anon_sym_for] = ACTIONS(321), - [anon_sym_return] = ACTIONS(321), - [anon_sym_break] = ACTIONS(321), - [anon_sym_continue] = ACTIONS(321), - [anon_sym_goto] = ACTIONS(321), - [anon_sym_AMP] = ACTIONS(319), - [anon_sym_BANG] = ACTIONS(319), - [anon_sym_TILDE] = ACTIONS(319), - [anon_sym_PLUS] = ACTIONS(321), - [anon_sym_DASH] = ACTIONS(321), - [anon_sym_DASH_DASH] = ACTIONS(319), - [anon_sym_PLUS_PLUS] = ACTIONS(319), - [anon_sym_sizeof] = ACTIONS(321), - [sym_number_literal] = ACTIONS(319), - [anon_sym_SQUOTE] = ACTIONS(319), - [anon_sym_DQUOTE] = ACTIONS(319), - [sym_true] = ACTIONS(321), - [sym_false] = ACTIONS(321), - [sym_null] = ACTIONS(321), - [sym_identifier] = ACTIONS(321), - [sym_comment] = ACTIONS(37), + [sym_storage_class_specifier] = STATE(671), + [sym_type_qualifier] = STATE(671), + [aux_sym__declaration_specifiers_repeat1] = STATE(671), + [anon_sym_COMMA] = ACTIONS(447), + [anon_sym_RPAREN] = ACTIONS(447), + [anon_sym_extern] = ACTIONS(25), + [anon_sym_LPAREN2] = ACTIONS(447), + [anon_sym_STAR] = ACTIONS(447), + [anon_sym_LBRACK] = ACTIONS(447), + [anon_sym_static] = ACTIONS(25), + [anon_sym_auto] = ACTIONS(25), + [anon_sym_register] = ACTIONS(25), + [anon_sym_inline] = ACTIONS(25), + [anon_sym_const] = ACTIONS(27), + [anon_sym_restrict] = ACTIONS(27), + [anon_sym_volatile] = ACTIONS(27), + [anon_sym__Atomic] = ACTIONS(27), + [sym_identifier] = ACTIONS(449), + [sym_comment] = ACTIONS(59), }, [486] = { - [anon_sym_LF] = ACTIONS(1878), - [sym_comment] = ACTIONS(47), + [aux_sym_sized_type_specifier_repeat1] = STATE(486), + [anon_sym_COMMA] = ACTIONS(645), + [anon_sym_RPAREN] = ACTIONS(645), + [anon_sym_extern] = ACTIONS(647), + [anon_sym_LPAREN2] = ACTIONS(645), + [anon_sym_STAR] = ACTIONS(645), + [anon_sym_LBRACK] = ACTIONS(645), + [anon_sym_static] = ACTIONS(647), + [anon_sym_auto] = ACTIONS(647), + [anon_sym_register] = ACTIONS(647), + [anon_sym_inline] = ACTIONS(647), + [anon_sym_const] = ACTIONS(647), + [anon_sym_restrict] = ACTIONS(647), + [anon_sym_volatile] = ACTIONS(647), + [anon_sym__Atomic] = ACTIONS(647), + [anon_sym_unsigned] = ACTIONS(1780), + [anon_sym_long] = ACTIONS(1780), + [anon_sym_short] = ACTIONS(1780), + [sym_primitive_type] = ACTIONS(647), + [sym_identifier] = ACTIONS(647), + [sym_comment] = ACTIONS(59), }, [487] = { - [anon_sym_LF] = ACTIONS(1880), - [sym_preproc_arg] = ACTIONS(1882), - [sym_comment] = ACTIONS(47), + [sym_parameter_list] = STATE(304), + [anon_sym_COMMA] = ACTIONS(1783), + [anon_sym_RPAREN] = ACTIONS(1783), + [anon_sym_LPAREN2] = ACTIONS(441), + [anon_sym_LBRACK] = ACTIONS(784), + [sym_comment] = ACTIONS(59), }, [488] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(343), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(343), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(343), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(343), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(343), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(343), - [sym_preproc_directive] = ACTIONS(343), - [anon_sym_typedef] = ACTIONS(343), - [anon_sym_extern] = ACTIONS(343), - [anon_sym_static] = ACTIONS(343), - [anon_sym_auto] = ACTIONS(343), - [anon_sym_register] = ACTIONS(343), - [anon_sym_inline] = ACTIONS(343), - [anon_sym_const] = ACTIONS(343), - [anon_sym_restrict] = ACTIONS(343), - [anon_sym_volatile] = ACTIONS(343), - [anon_sym__Atomic] = ACTIONS(343), - [anon_sym_unsigned] = ACTIONS(343), - [anon_sym_long] = ACTIONS(343), - [anon_sym_short] = ACTIONS(343), - [sym_primitive_type] = ACTIONS(343), - [anon_sym_enum] = ACTIONS(343), - [anon_sym_struct] = ACTIONS(343), - [anon_sym_union] = ACTIONS(343), - [sym_identifier] = ACTIONS(343), - [sym_comment] = ACTIONS(37), + [sym_type_qualifier] = STATE(488), + [aux_sym_type_definition_repeat1] = STATE(488), + [anon_sym_RPAREN] = ACTIONS(1432), + [anon_sym_LPAREN2] = ACTIONS(1432), + [anon_sym_STAR] = ACTIONS(1432), + [anon_sym_LBRACK] = ACTIONS(1432), + [anon_sym_const] = ACTIONS(1785), + [anon_sym_restrict] = ACTIONS(1785), + [anon_sym_volatile] = ACTIONS(1785), + [anon_sym__Atomic] = ACTIONS(1785), + [sym_comment] = ACTIONS(59), }, [489] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1884), - [sym_comment] = ACTIONS(37), + [anon_sym_COMMA] = ACTIONS(1788), + [anon_sym_RPAREN] = ACTIONS(1788), + [anon_sym_LPAREN2] = ACTIONS(1788), + [anon_sym_LBRACK] = ACTIONS(1788), + [sym_comment] = ACTIONS(59), }, [490] = { - [sym_preproc_include] = STATE(155), - [sym_preproc_def] = STATE(155), - [sym_preproc_function_def] = STATE(155), - [sym_preproc_call] = STATE(155), - [sym_preproc_if] = STATE(155), - [sym_preproc_ifdef] = STATE(155), - [sym_preproc_else] = STATE(728), - [sym_preproc_elif] = STATE(728), - [sym_function_definition] = STATE(155), - [sym_declaration] = STATE(155), - [sym_type_definition] = STATE(155), - [sym__declaration_specifiers] = STATE(70), - [sym_linkage_specification] = STATE(155), - [sym_storage_class_specifier] = STATE(19), - [sym_type_qualifier] = STATE(19), - [sym__type_specifier] = STATE(17), - [sym_sized_type_specifier] = STATE(17), - [sym_enum_specifier] = STATE(17), - [sym_struct_specifier] = STATE(17), - [sym_union_specifier] = STATE(17), - [sym__empty_declaration] = STATE(155), - [sym_macro_type_specifier] = STATE(17), - [aux_sym_translation_unit_repeat1] = STATE(155), - [aux_sym__declaration_specifiers_repeat1] = STATE(19), - [aux_sym_sized_type_specifier_repeat1] = STATE(20), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(127), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(129), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(131), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1886), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(135), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(135), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(137), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(139), - [sym_preproc_directive] = ACTIONS(141), - [anon_sym_typedef] = ACTIONS(143), - [anon_sym_extern] = ACTIONS(145), - [anon_sym_static] = ACTIONS(21), - [anon_sym_auto] = ACTIONS(21), - [anon_sym_register] = ACTIONS(21), - [anon_sym_inline] = ACTIONS(21), - [anon_sym_const] = ACTIONS(23), - [anon_sym_restrict] = ACTIONS(23), - [anon_sym_volatile] = ACTIONS(23), - [anon_sym__Atomic] = ACTIONS(23), - [anon_sym_unsigned] = ACTIONS(25), - [anon_sym_long] = ACTIONS(25), - [anon_sym_short] = ACTIONS(25), - [sym_primitive_type] = ACTIONS(27), - [anon_sym_enum] = ACTIONS(29), - [anon_sym_struct] = ACTIONS(31), - [anon_sym_union] = ACTIONS(33), - [sym_identifier] = ACTIONS(35), - [sym_comment] = ACTIONS(37), + [sym_argument_list] = STATE(98), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(1016), + [anon_sym_LBRACK] = ACTIONS(188), + [anon_sym_RBRACK] = ACTIONS(1790), + [anon_sym_EQ] = ACTIONS(1020), + [anon_sym_QMARK] = ACTIONS(1022), + [anon_sym_STAR_EQ] = ACTIONS(1024), + [anon_sym_SLASH_EQ] = ACTIONS(1024), + [anon_sym_PERCENT_EQ] = ACTIONS(1024), + [anon_sym_PLUS_EQ] = ACTIONS(1024), + [anon_sym_DASH_EQ] = ACTIONS(1024), + [anon_sym_LT_LT_EQ] = ACTIONS(1024), + [anon_sym_GT_GT_EQ] = ACTIONS(1024), + [anon_sym_AMP_EQ] = ACTIONS(1024), + [anon_sym_CARET_EQ] = ACTIONS(1024), + [anon_sym_PIPE_EQ] = ACTIONS(1024), + [anon_sym_AMP] = ACTIONS(1026), + [anon_sym_PIPE_PIPE] = ACTIONS(1028), + [anon_sym_AMP_AMP] = ACTIONS(1030), + [anon_sym_PIPE] = ACTIONS(1032), + [anon_sym_CARET] = ACTIONS(1034), + [anon_sym_EQ_EQ] = ACTIONS(1036), + [anon_sym_BANG_EQ] = ACTIONS(1036), + [anon_sym_LT] = ACTIONS(1038), + [anon_sym_GT] = ACTIONS(1038), + [anon_sym_LT_EQ] = ACTIONS(1040), + [anon_sym_GT_EQ] = ACTIONS(1040), + [anon_sym_LT_LT] = ACTIONS(1042), + [anon_sym_GT_GT] = ACTIONS(1042), + [anon_sym_PLUS] = ACTIONS(1044), + [anon_sym_DASH] = ACTIONS(1044), + [anon_sym_SLASH] = ACTIONS(1016), + [anon_sym_PERCENT] = ACTIONS(1016), + [anon_sym_DASH_DASH] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(216), + [anon_sym_DOT] = ACTIONS(218), + [anon_sym_DASH_GT] = ACTIONS(218), + [sym_comment] = ACTIONS(59), }, [491] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(381), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(381), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(381), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(381), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(381), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(381), - [sym_preproc_directive] = ACTIONS(381), - [anon_sym_typedef] = ACTIONS(381), - [anon_sym_extern] = ACTIONS(381), - [anon_sym_static] = ACTIONS(381), - [anon_sym_auto] = ACTIONS(381), - [anon_sym_register] = ACTIONS(381), - [anon_sym_inline] = ACTIONS(381), - [anon_sym_const] = ACTIONS(381), - [anon_sym_restrict] = ACTIONS(381), - [anon_sym_volatile] = ACTIONS(381), - [anon_sym__Atomic] = ACTIONS(381), - [anon_sym_unsigned] = ACTIONS(381), - [anon_sym_long] = ACTIONS(381), - [anon_sym_short] = ACTIONS(381), - [sym_primitive_type] = ACTIONS(381), - [anon_sym_enum] = ACTIONS(381), - [anon_sym_struct] = ACTIONS(381), - [anon_sym_union] = ACTIONS(381), - [sym_identifier] = ACTIONS(381), - [sym_comment] = ACTIONS(37), + [sym_storage_class_specifier] = STATE(673), + [sym_type_qualifier] = STATE(673), + [aux_sym__declaration_specifiers_repeat1] = STATE(673), + [anon_sym_extern] = ACTIONS(25), + [anon_sym_LPAREN2] = ACTIONS(447), + [anon_sym_STAR] = ACTIONS(447), + [anon_sym_RBRACK] = ACTIONS(447), + [anon_sym_static] = ACTIONS(25), + [anon_sym_auto] = ACTIONS(25), + [anon_sym_register] = ACTIONS(25), + [anon_sym_inline] = ACTIONS(25), + [anon_sym_const] = ACTIONS(27), + [anon_sym_restrict] = ACTIONS(27), + [anon_sym_volatile] = ACTIONS(27), + [anon_sym__Atomic] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(447), + [anon_sym_BANG] = ACTIONS(447), + [anon_sym_TILDE] = ACTIONS(447), + [anon_sym_PLUS] = ACTIONS(449), + [anon_sym_DASH] = ACTIONS(449), + [anon_sym_DASH_DASH] = ACTIONS(447), + [anon_sym_PLUS_PLUS] = ACTIONS(447), + [anon_sym_sizeof] = ACTIONS(449), + [sym_number_literal] = ACTIONS(447), + [anon_sym_SQUOTE] = ACTIONS(447), + [anon_sym_DQUOTE] = ACTIONS(447), + [sym_true] = ACTIONS(449), + [sym_false] = ACTIONS(449), + [sym_null] = ACTIONS(449), + [sym_identifier] = ACTIONS(449), + [sym_comment] = ACTIONS(59), }, [492] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1888), - [sym_comment] = ACTIONS(37), + [sym_storage_class_specifier] = STATE(674), + [sym_type_qualifier] = STATE(674), + [aux_sym__declaration_specifiers_repeat1] = STATE(674), + [anon_sym_extern] = ACTIONS(25), + [anon_sym_LPAREN2] = ACTIONS(447), + [anon_sym_STAR] = ACTIONS(447), + [anon_sym_RBRACK] = ACTIONS(447), + [anon_sym_static] = ACTIONS(25), + [anon_sym_auto] = ACTIONS(25), + [anon_sym_register] = ACTIONS(25), + [anon_sym_inline] = ACTIONS(25), + [anon_sym_const] = ACTIONS(27), + [anon_sym_restrict] = ACTIONS(27), + [anon_sym_volatile] = ACTIONS(27), + [anon_sym__Atomic] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(447), + [anon_sym_BANG] = ACTIONS(447), + [anon_sym_TILDE] = ACTIONS(447), + [anon_sym_PLUS] = ACTIONS(449), + [anon_sym_DASH] = ACTIONS(449), + [anon_sym_DASH_DASH] = ACTIONS(447), + [anon_sym_PLUS_PLUS] = ACTIONS(447), + [anon_sym_sizeof] = ACTIONS(449), + [sym_number_literal] = ACTIONS(447), + [anon_sym_SQUOTE] = ACTIONS(447), + [anon_sym_DQUOTE] = ACTIONS(447), + [sym_true] = ACTIONS(449), + [sym_false] = ACTIONS(449), + [sym_null] = ACTIONS(449), + [sym_identifier] = ACTIONS(449), + [sym_comment] = ACTIONS(59), }, [493] = { - [sym_preproc_include] = STATE(155), - [sym_preproc_def] = STATE(155), - [sym_preproc_function_def] = STATE(155), - [sym_preproc_call] = STATE(155), - [sym_preproc_if] = STATE(155), - [sym_preproc_ifdef] = STATE(155), - [sym_preproc_else] = STATE(730), - [sym_preproc_elif] = STATE(730), - [sym_function_definition] = STATE(155), - [sym_declaration] = STATE(155), - [sym_type_definition] = STATE(155), - [sym__declaration_specifiers] = STATE(70), - [sym_linkage_specification] = STATE(155), - [sym_storage_class_specifier] = STATE(19), - [sym_type_qualifier] = STATE(19), - [sym__type_specifier] = STATE(17), - [sym_sized_type_specifier] = STATE(17), - [sym_enum_specifier] = STATE(17), - [sym_struct_specifier] = STATE(17), - [sym_union_specifier] = STATE(17), - [sym__empty_declaration] = STATE(155), - [sym_macro_type_specifier] = STATE(17), - [aux_sym_translation_unit_repeat1] = STATE(155), - [aux_sym__declaration_specifiers_repeat1] = STATE(19), - [aux_sym_sized_type_specifier_repeat1] = STATE(20), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(127), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(129), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(131), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1890), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(135), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(135), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(137), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(139), - [sym_preproc_directive] = ACTIONS(141), - [anon_sym_typedef] = ACTIONS(143), - [anon_sym_extern] = ACTIONS(145), - [anon_sym_static] = ACTIONS(21), - [anon_sym_auto] = ACTIONS(21), - [anon_sym_register] = ACTIONS(21), - [anon_sym_inline] = ACTIONS(21), - [anon_sym_const] = ACTIONS(23), - [anon_sym_restrict] = ACTIONS(23), - [anon_sym_volatile] = ACTIONS(23), - [anon_sym__Atomic] = ACTIONS(23), - [anon_sym_unsigned] = ACTIONS(25), - [anon_sym_long] = ACTIONS(25), - [anon_sym_short] = ACTIONS(25), - [sym_primitive_type] = ACTIONS(27), - [anon_sym_enum] = ACTIONS(29), - [anon_sym_struct] = ACTIONS(31), - [anon_sym_union] = ACTIONS(33), - [sym_identifier] = ACTIONS(35), - [sym_comment] = ACTIONS(37), + [aux_sym_sized_type_specifier_repeat1] = STATE(493), + [anon_sym_extern] = ACTIONS(647), + [anon_sym_LPAREN2] = ACTIONS(645), + [anon_sym_STAR] = ACTIONS(645), + [anon_sym_RBRACK] = ACTIONS(645), + [anon_sym_static] = ACTIONS(647), + [anon_sym_auto] = ACTIONS(647), + [anon_sym_register] = ACTIONS(647), + [anon_sym_inline] = ACTIONS(647), + [anon_sym_const] = ACTIONS(647), + [anon_sym_restrict] = ACTIONS(647), + [anon_sym_volatile] = ACTIONS(647), + [anon_sym__Atomic] = ACTIONS(647), + [anon_sym_unsigned] = ACTIONS(1792), + [anon_sym_long] = ACTIONS(1792), + [anon_sym_short] = ACTIONS(1792), + [sym_primitive_type] = ACTIONS(647), + [anon_sym_AMP] = ACTIONS(645), + [anon_sym_BANG] = ACTIONS(645), + [anon_sym_TILDE] = ACTIONS(645), + [anon_sym_PLUS] = ACTIONS(647), + [anon_sym_DASH] = ACTIONS(647), + [anon_sym_DASH_DASH] = ACTIONS(645), + [anon_sym_PLUS_PLUS] = ACTIONS(645), + [anon_sym_sizeof] = ACTIONS(647), + [sym_number_literal] = ACTIONS(645), + [anon_sym_SQUOTE] = ACTIONS(645), + [anon_sym_DQUOTE] = ACTIONS(645), + [sym_true] = ACTIONS(647), + [sym_false] = ACTIONS(647), + [sym_null] = ACTIONS(647), + [sym_identifier] = ACTIONS(647), + [sym_comment] = ACTIONS(59), }, [494] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(389), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(389), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(389), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(389), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(389), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(389), - [sym_preproc_directive] = ACTIONS(389), - [anon_sym_SEMI] = ACTIONS(387), - [anon_sym_typedef] = ACTIONS(389), - [anon_sym_extern] = ACTIONS(389), - [anon_sym_LBRACE] = ACTIONS(387), - [anon_sym_LPAREN2] = ACTIONS(387), - [anon_sym_STAR] = ACTIONS(387), - [anon_sym_static] = ACTIONS(389), - [anon_sym_auto] = ACTIONS(389), - [anon_sym_register] = ACTIONS(389), - [anon_sym_inline] = ACTIONS(389), - [anon_sym_const] = ACTIONS(389), - [anon_sym_restrict] = ACTIONS(389), - [anon_sym_volatile] = ACTIONS(389), - [anon_sym__Atomic] = ACTIONS(389), - [anon_sym_unsigned] = ACTIONS(389), - [anon_sym_long] = ACTIONS(389), - [anon_sym_short] = ACTIONS(389), - [sym_primitive_type] = ACTIONS(389), - [anon_sym_enum] = ACTIONS(389), - [anon_sym_struct] = ACTIONS(389), - [anon_sym_union] = ACTIONS(389), - [anon_sym_if] = ACTIONS(389), - [anon_sym_switch] = ACTIONS(389), - [anon_sym_case] = ACTIONS(389), - [anon_sym_default] = ACTIONS(389), - [anon_sym_while] = ACTIONS(389), - [anon_sym_do] = ACTIONS(389), - [anon_sym_for] = ACTIONS(389), - [anon_sym_return] = ACTIONS(389), - [anon_sym_break] = ACTIONS(389), - [anon_sym_continue] = ACTIONS(389), - [anon_sym_goto] = ACTIONS(389), - [anon_sym_AMP] = ACTIONS(387), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_PLUS] = ACTIONS(389), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(387), - [anon_sym_PLUS_PLUS] = ACTIONS(387), - [anon_sym_sizeof] = ACTIONS(389), - [sym_number_literal] = ACTIONS(387), - [anon_sym_SQUOTE] = ACTIONS(387), - [anon_sym_DQUOTE] = ACTIONS(387), - [sym_true] = ACTIONS(389), - [sym_false] = ACTIONS(389), - [sym_null] = ACTIONS(389), - [sym_identifier] = ACTIONS(389), - [sym_comment] = ACTIONS(37), + [sym__expression] = STATE(675), + [sym_conditional_expression] = STATE(675), + [sym_assignment_expression] = STATE(675), + [sym_pointer_expression] = STATE(675), + [sym_logical_expression] = STATE(675), + [sym_bitwise_expression] = STATE(675), + [sym_equality_expression] = STATE(675), + [sym_relational_expression] = STATE(675), + [sym_shift_expression] = STATE(675), + [sym_math_expression] = STATE(675), + [sym_cast_expression] = STATE(675), + [sym_sizeof_expression] = STATE(675), + [sym_subscript_expression] = STATE(675), + [sym_call_expression] = STATE(675), + [sym_field_expression] = STATE(675), + [sym_compound_literal_expression] = STATE(675), + [sym_parenthesized_expression] = STATE(675), + [sym_char_literal] = STATE(675), + [sym_concatenated_string] = STATE(675), + [sym_string_literal] = STATE(214), + [anon_sym_LPAREN2] = ACTIONS(461), + [anon_sym_STAR] = ACTIONS(463), + [anon_sym_RBRACK] = ACTIONS(1790), + [anon_sym_AMP] = ACTIONS(463), + [anon_sym_BANG] = ACTIONS(465), + [anon_sym_TILDE] = ACTIONS(467), + [anon_sym_PLUS] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(469), + [anon_sym_DASH_DASH] = ACTIONS(471), + [anon_sym_PLUS_PLUS] = ACTIONS(471), + [anon_sym_sizeof] = ACTIONS(473), + [sym_number_literal] = ACTIONS(1795), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(1797), + [sym_false] = ACTIONS(1797), + [sym_null] = ACTIONS(1797), + [sym_identifier] = ACTIONS(1797), + [sym_comment] = ACTIONS(59), }, [495] = { - [sym_parameter_list] = STATE(164), - [anon_sym_SEMI] = ACTIONS(1892), - [anon_sym_LPAREN2] = ACTIONS(231), - [anon_sym_LBRACK] = ACTIONS(399), - [sym_comment] = ACTIONS(37), + [sym__expression] = STATE(676), + [sym_conditional_expression] = STATE(676), + [sym_assignment_expression] = STATE(676), + [sym_pointer_expression] = STATE(676), + [sym_logical_expression] = STATE(676), + [sym_bitwise_expression] = STATE(676), + [sym_equality_expression] = STATE(676), + [sym_relational_expression] = STATE(676), + [sym_shift_expression] = STATE(676), + [sym_math_expression] = STATE(676), + [sym_cast_expression] = STATE(676), + [sym_sizeof_expression] = STATE(676), + [sym_subscript_expression] = STATE(676), + [sym_call_expression] = STATE(676), + [sym_field_expression] = STATE(676), + [sym_compound_literal_expression] = STATE(676), + [sym_parenthesized_expression] = STATE(676), + [sym_char_literal] = STATE(676), + [sym_concatenated_string] = STATE(676), + [sym_string_literal] = STATE(55), + [anon_sym_LPAREN2] = ACTIONS(85), + [anon_sym_STAR] = ACTIONS(87), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_PLUS] = ACTIONS(97), + [anon_sym_DASH] = ACTIONS(97), + [anon_sym_DASH_DASH] = ACTIONS(99), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(101), + [sym_number_literal] = ACTIONS(1799), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(1801), + [sym_false] = ACTIONS(1801), + [sym_null] = ACTIONS(1801), + [sym_identifier] = ACTIONS(1801), + [sym_comment] = ACTIONS(59), }, [496] = { - [sym__type_declarator] = STATE(732), - [sym_pointer_type_declarator] = STATE(732), - [sym_function_type_declarator] = STATE(732), - [sym_array_type_declarator] = STATE(732), - [anon_sym_LPAREN2] = ACTIONS(155), - [anon_sym_STAR] = ACTIONS(157), - [sym_identifier] = ACTIONS(159), - [sym_comment] = ACTIONS(37), + [anon_sym_RBRACE] = ACTIONS(1803), + [sym_comment] = ACTIONS(59), }, [497] = { - [sym_preproc_include] = STATE(734), - [sym_preproc_def] = STATE(734), - [sym_preproc_function_def] = STATE(734), - [sym_preproc_call] = STATE(734), - [sym_preproc_if] = STATE(734), - [sym_preproc_ifdef] = STATE(734), - [sym_function_definition] = STATE(734), - [sym_declaration] = STATE(734), - [sym_type_definition] = STATE(734), - [sym__declaration_specifiers] = STATE(16), - [sym_linkage_specification] = STATE(734), - [sym_storage_class_specifier] = STATE(19), - [sym_type_qualifier] = STATE(19), - [sym__type_specifier] = STATE(17), - [sym_sized_type_specifier] = STATE(17), - [sym_enum_specifier] = STATE(17), - [sym_struct_specifier] = STATE(17), - [sym_union_specifier] = STATE(17), - [sym__empty_declaration] = STATE(734), - [sym_macro_type_specifier] = STATE(17), - [aux_sym_translation_unit_repeat1] = STATE(734), - [aux_sym__declaration_specifiers_repeat1] = STATE(19), - [aux_sym_sized_type_specifier_repeat1] = STATE(20), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(7), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(9), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(11), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(13), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(13), - [sym_preproc_directive] = ACTIONS(15), - [anon_sym_typedef] = ACTIONS(17), - [anon_sym_extern] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(1894), - [anon_sym_static] = ACTIONS(21), - [anon_sym_auto] = ACTIONS(21), - [anon_sym_register] = ACTIONS(21), - [anon_sym_inline] = ACTIONS(21), - [anon_sym_const] = ACTIONS(23), - [anon_sym_restrict] = ACTIONS(23), - [anon_sym_volatile] = ACTIONS(23), - [anon_sym__Atomic] = ACTIONS(23), - [anon_sym_unsigned] = ACTIONS(25), - [anon_sym_long] = ACTIONS(25), - [anon_sym_short] = ACTIONS(25), - [sym_primitive_type] = ACTIONS(27), - [anon_sym_enum] = ACTIONS(29), - [anon_sym_struct] = ACTIONS(31), - [anon_sym_union] = ACTIONS(33), - [sym_identifier] = ACTIONS(35), - [sym_comment] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(1805), + [anon_sym_COMMA] = ACTIONS(1805), + [anon_sym_RPAREN] = ACTIONS(1805), + [anon_sym_RBRACE] = ACTIONS(1805), + [anon_sym_LPAREN2] = ACTIONS(1805), + [anon_sym_STAR] = ACTIONS(1807), + [anon_sym_LBRACK] = ACTIONS(1805), + [anon_sym_RBRACK] = ACTIONS(1805), + [anon_sym_EQ] = ACTIONS(1807), + [anon_sym_COLON] = ACTIONS(1805), + [anon_sym_QMARK] = ACTIONS(1805), + [anon_sym_STAR_EQ] = ACTIONS(1805), + [anon_sym_SLASH_EQ] = ACTIONS(1805), + [anon_sym_PERCENT_EQ] = ACTIONS(1805), + [anon_sym_PLUS_EQ] = ACTIONS(1805), + [anon_sym_DASH_EQ] = ACTIONS(1805), + [anon_sym_LT_LT_EQ] = ACTIONS(1805), + [anon_sym_GT_GT_EQ] = ACTIONS(1805), + [anon_sym_AMP_EQ] = ACTIONS(1805), + [anon_sym_CARET_EQ] = ACTIONS(1805), + [anon_sym_PIPE_EQ] = ACTIONS(1805), + [anon_sym_AMP] = ACTIONS(1807), + [anon_sym_PIPE_PIPE] = ACTIONS(1805), + [anon_sym_AMP_AMP] = ACTIONS(1805), + [anon_sym_PIPE] = ACTIONS(1807), + [anon_sym_CARET] = ACTIONS(1807), + [anon_sym_EQ_EQ] = ACTIONS(1805), + [anon_sym_BANG_EQ] = ACTIONS(1805), + [anon_sym_LT] = ACTIONS(1807), + [anon_sym_GT] = ACTIONS(1807), + [anon_sym_LT_EQ] = ACTIONS(1805), + [anon_sym_GT_EQ] = ACTIONS(1805), + [anon_sym_LT_LT] = ACTIONS(1807), + [anon_sym_GT_GT] = ACTIONS(1807), + [anon_sym_PLUS] = ACTIONS(1807), + [anon_sym_DASH] = ACTIONS(1807), + [anon_sym_SLASH] = ACTIONS(1807), + [anon_sym_PERCENT] = ACTIONS(1807), + [anon_sym_DASH_DASH] = ACTIONS(1805), + [anon_sym_PLUS_PLUS] = ACTIONS(1805), + [anon_sym_DOT] = ACTIONS(1805), + [anon_sym_DASH_GT] = ACTIONS(1805), + [sym_comment] = ACTIONS(59), }, [498] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(413), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(413), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(413), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(413), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(413), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(413), - [sym_preproc_directive] = ACTIONS(413), - [anon_sym_typedef] = ACTIONS(413), - [anon_sym_extern] = ACTIONS(413), - [anon_sym_static] = ACTIONS(413), - [anon_sym_auto] = ACTIONS(413), - [anon_sym_register] = ACTIONS(413), - [anon_sym_inline] = ACTIONS(413), - [anon_sym_const] = ACTIONS(413), - [anon_sym_restrict] = ACTIONS(413), - [anon_sym_volatile] = ACTIONS(413), - [anon_sym__Atomic] = ACTIONS(413), - [anon_sym_unsigned] = ACTIONS(413), - [anon_sym_long] = ACTIONS(413), - [anon_sym_short] = ACTIONS(413), - [sym_primitive_type] = ACTIONS(413), - [anon_sym_enum] = ACTIONS(413), - [anon_sym_struct] = ACTIONS(413), - [anon_sym_union] = ACTIONS(413), - [sym_identifier] = ACTIONS(413), - [sym_comment] = ACTIONS(37), + [sym_type_qualifier] = STATE(56), + [sym__type_specifier] = STATE(51), + [sym_sized_type_specifier] = STATE(51), + [sym_enum_specifier] = STATE(51), + [sym_struct_specifier] = STATE(51), + [sym_union_specifier] = STATE(51), + [sym__expression] = STATE(52), + [sym_comma_expression] = STATE(53), + [sym_conditional_expression] = STATE(52), + [sym_assignment_expression] = STATE(52), + [sym_pointer_expression] = STATE(52), + [sym_logical_expression] = STATE(52), + [sym_bitwise_expression] = STATE(52), + [sym_equality_expression] = STATE(52), + [sym_relational_expression] = STATE(52), + [sym_shift_expression] = STATE(52), + [sym_math_expression] = STATE(52), + [sym_cast_expression] = STATE(52), + [sym_type_descriptor] = STATE(678), + [sym_sizeof_expression] = STATE(52), + [sym_subscript_expression] = STATE(52), + [sym_call_expression] = STATE(52), + [sym_field_expression] = STATE(52), + [sym_compound_literal_expression] = STATE(52), + [sym_parenthesized_expression] = STATE(52), + [sym_char_literal] = STATE(52), + [sym_concatenated_string] = STATE(52), + [sym_string_literal] = STATE(55), + [sym_macro_type_specifier] = STATE(51), + [aux_sym_type_definition_repeat1] = STATE(56), + [aux_sym_sized_type_specifier_repeat1] = STATE(57), + [anon_sym_LPAREN2] = ACTIONS(85), + [anon_sym_STAR] = ACTIONS(87), + [anon_sym_const] = ACTIONS(27), + [anon_sym_restrict] = ACTIONS(27), + [anon_sym_volatile] = ACTIONS(27), + [anon_sym__Atomic] = ACTIONS(27), + [anon_sym_unsigned] = ACTIONS(89), + [anon_sym_long] = ACTIONS(89), + [anon_sym_short] = ACTIONS(89), + [sym_primitive_type] = ACTIONS(91), + [anon_sym_enum] = ACTIONS(33), + [anon_sym_struct] = ACTIONS(35), + [anon_sym_union] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_PLUS] = ACTIONS(97), + [anon_sym_DASH] = ACTIONS(97), + [anon_sym_DASH_DASH] = ACTIONS(99), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(105), + [sym_false] = ACTIONS(105), + [sym_null] = ACTIONS(105), + [sym_identifier] = ACTIONS(107), + [sym_comment] = ACTIONS(59), }, [499] = { - [sym__declarator] = STATE(283), - [sym_pointer_declarator] = STATE(283), - [sym_function_declarator] = STATE(283), - [sym_array_declarator] = STATE(283), - [sym_init_declarator] = STATE(284), - [anon_sym_LPAREN2] = ACTIONS(88), - [anon_sym_STAR] = ACTIONS(90), - [sym_identifier] = ACTIONS(660), - [sym_comment] = ACTIONS(37), + [sym__expression] = STATE(58), + [sym_conditional_expression] = STATE(58), + [sym_assignment_expression] = STATE(58), + [sym_pointer_expression] = STATE(58), + [sym_logical_expression] = STATE(58), + [sym_bitwise_expression] = STATE(58), + [sym_equality_expression] = STATE(58), + [sym_relational_expression] = STATE(58), + [sym_shift_expression] = STATE(58), + [sym_math_expression] = STATE(58), + [sym_cast_expression] = STATE(58), + [sym_sizeof_expression] = STATE(58), + [sym_subscript_expression] = STATE(58), + [sym_call_expression] = STATE(58), + [sym_field_expression] = STATE(58), + [sym_compound_literal_expression] = STATE(58), + [sym_parenthesized_expression] = STATE(58), + [sym_char_literal] = STATE(58), + [sym_concatenated_string] = STATE(58), + [sym_string_literal] = STATE(508), + [anon_sym_LPAREN2] = ACTIONS(1289), + [anon_sym_STAR] = ACTIONS(1291), + [anon_sym_AMP] = ACTIONS(1291), + [anon_sym_BANG] = ACTIONS(1295), + [anon_sym_TILDE] = ACTIONS(1297), + [anon_sym_PLUS] = ACTIONS(1299), + [anon_sym_DASH] = ACTIONS(1299), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_sizeof] = ACTIONS(1303), + [sym_number_literal] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(111), + [sym_false] = ACTIONS(111), + [sym_null] = ACTIONS(111), + [sym_identifier] = ACTIONS(111), + [sym_comment] = ACTIONS(59), }, [500] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(495), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(495), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(495), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(495), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(495), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(495), - [sym_preproc_directive] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(493), - [anon_sym_typedef] = ACTIONS(495), - [anon_sym_extern] = ACTIONS(495), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_LPAREN2] = ACTIONS(493), - [anon_sym_STAR] = ACTIONS(493), - [anon_sym_static] = ACTIONS(495), - [anon_sym_auto] = ACTIONS(495), - [anon_sym_register] = ACTIONS(495), - [anon_sym_inline] = ACTIONS(495), - [anon_sym_const] = ACTIONS(495), - [anon_sym_restrict] = ACTIONS(495), - [anon_sym_volatile] = ACTIONS(495), - [anon_sym__Atomic] = ACTIONS(495), - [anon_sym_unsigned] = ACTIONS(495), - [anon_sym_long] = ACTIONS(495), - [anon_sym_short] = ACTIONS(495), - [sym_primitive_type] = ACTIONS(495), - [anon_sym_enum] = ACTIONS(495), - [anon_sym_struct] = ACTIONS(495), - [anon_sym_union] = ACTIONS(495), - [anon_sym_if] = ACTIONS(495), - [anon_sym_else] = ACTIONS(495), - [anon_sym_switch] = ACTIONS(495), - [anon_sym_case] = ACTIONS(495), - [anon_sym_default] = ACTIONS(495), - [anon_sym_while] = ACTIONS(495), - [anon_sym_do] = ACTIONS(495), - [anon_sym_for] = ACTIONS(495), - [anon_sym_return] = ACTIONS(495), - [anon_sym_break] = ACTIONS(495), - [anon_sym_continue] = ACTIONS(495), - [anon_sym_goto] = ACTIONS(495), - [anon_sym_AMP] = ACTIONS(493), - [anon_sym_BANG] = ACTIONS(493), - [anon_sym_TILDE] = ACTIONS(493), - [anon_sym_PLUS] = ACTIONS(495), - [anon_sym_DASH] = ACTIONS(495), - [anon_sym_DASH_DASH] = ACTIONS(493), - [anon_sym_PLUS_PLUS] = ACTIONS(493), - [anon_sym_sizeof] = ACTIONS(495), - [sym_number_literal] = ACTIONS(493), - [anon_sym_SQUOTE] = ACTIONS(493), - [anon_sym_DQUOTE] = ACTIONS(493), - [sym_true] = ACTIONS(495), - [sym_false] = ACTIONS(495), - [sym_null] = ACTIONS(495), - [sym_identifier] = ACTIONS(495), - [sym_comment] = ACTIONS(37), + [sym__expression] = STATE(679), + [sym_conditional_expression] = STATE(679), + [sym_assignment_expression] = STATE(679), + [sym_pointer_expression] = STATE(679), + [sym_logical_expression] = STATE(679), + [sym_bitwise_expression] = STATE(679), + [sym_equality_expression] = STATE(679), + [sym_relational_expression] = STATE(679), + [sym_shift_expression] = STATE(679), + [sym_math_expression] = STATE(679), + [sym_cast_expression] = STATE(679), + [sym_sizeof_expression] = STATE(679), + [sym_subscript_expression] = STATE(679), + [sym_call_expression] = STATE(679), + [sym_field_expression] = STATE(679), + [sym_compound_literal_expression] = STATE(679), + [sym_parenthesized_expression] = STATE(679), + [sym_char_literal] = STATE(679), + [sym_concatenated_string] = STATE(679), + [sym_string_literal] = STATE(214), + [anon_sym_LPAREN2] = ACTIONS(461), + [anon_sym_STAR] = ACTIONS(463), + [anon_sym_AMP] = ACTIONS(463), + [anon_sym_BANG] = ACTIONS(465), + [anon_sym_TILDE] = ACTIONS(467), + [anon_sym_PLUS] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(469), + [anon_sym_DASH_DASH] = ACTIONS(471), + [anon_sym_PLUS_PLUS] = ACTIONS(471), + [anon_sym_sizeof] = ACTIONS(473), + [sym_number_literal] = ACTIONS(1809), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(1811), + [sym_false] = ACTIONS(1811), + [sym_null] = ACTIONS(1811), + [sym_identifier] = ACTIONS(1811), + [sym_comment] = ACTIONS(59), }, [501] = { - [sym_preproc_include] = STATE(736), - [sym_preproc_def] = STATE(736), - [sym_preproc_function_def] = STATE(736), - [sym_preproc_call] = STATE(736), - [sym_preproc_if_in_compound_statement] = STATE(736), - [sym_preproc_ifdef_in_compound_statement] = STATE(736), - [sym_declaration] = STATE(736), - [sym_type_definition] = STATE(736), - [sym__declaration_specifiers] = STATE(227), - [sym_compound_statement] = STATE(736), - [sym_storage_class_specifier] = STATE(19), - [sym_type_qualifier] = STATE(19), - [sym__type_specifier] = STATE(17), - [sym_sized_type_specifier] = STATE(17), - [sym_enum_specifier] = STATE(17), - [sym_struct_specifier] = STATE(17), - [sym_union_specifier] = STATE(17), - [sym_labeled_statement] = STATE(736), - [sym_expression_statement] = STATE(736), - [sym_if_statement] = STATE(736), - [sym_switch_statement] = STATE(736), - [sym_case_statement] = STATE(736), - [sym_while_statement] = STATE(736), - [sym_do_statement] = STATE(736), - [sym_for_statement] = STATE(736), - [sym_return_statement] = STATE(736), - [sym_break_statement] = STATE(736), - [sym_continue_statement] = STATE(736), - [sym_goto_statement] = STATE(736), - [sym__expression] = STATE(228), - [sym_comma_expression] = STATE(229), - [sym_conditional_expression] = STATE(228), - [sym_assignment_expression] = STATE(228), - [sym_pointer_expression] = STATE(228), - [sym_logical_expression] = STATE(228), - [sym_bitwise_expression] = STATE(228), - [sym_equality_expression] = STATE(228), - [sym_relational_expression] = STATE(228), - [sym_shift_expression] = STATE(228), - [sym_math_expression] = STATE(228), - [sym_cast_expression] = STATE(228), - [sym_sizeof_expression] = STATE(228), - [sym_subscript_expression] = STATE(228), - [sym_call_expression] = STATE(228), - [sym_field_expression] = STATE(228), - [sym_compound_literal_expression] = STATE(228), - [sym_parenthesized_expression] = STATE(228), - [sym_char_literal] = STATE(228), - [sym_concatenated_string] = STATE(228), - [sym_string_literal] = STATE(230), - [sym__empty_declaration] = STATE(736), - [sym_macro_type_specifier] = STATE(17), - [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(736), - [aux_sym__declaration_specifiers_repeat1] = STATE(19), - [aux_sym_sized_type_specifier_repeat1] = STATE(20), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(497), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(9), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(499), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(501), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(501), - [sym_preproc_directive] = ACTIONS(15), - [anon_sym_SEMI] = ACTIONS(503), - [anon_sym_typedef] = ACTIONS(17), - [anon_sym_extern] = ACTIONS(21), - [anon_sym_LBRACE] = ACTIONS(229), - [anon_sym_RBRACE] = ACTIONS(1896), - [anon_sym_LPAREN2] = ACTIONS(507), - [anon_sym_STAR] = ACTIONS(509), - [anon_sym_static] = ACTIONS(21), - [anon_sym_auto] = ACTIONS(21), - [anon_sym_register] = ACTIONS(21), - [anon_sym_inline] = ACTIONS(21), - [anon_sym_const] = ACTIONS(23), - [anon_sym_restrict] = ACTIONS(23), - [anon_sym_volatile] = ACTIONS(23), - [anon_sym__Atomic] = ACTIONS(23), - [anon_sym_unsigned] = ACTIONS(25), - [anon_sym_long] = ACTIONS(25), - [anon_sym_short] = ACTIONS(25), - [sym_primitive_type] = ACTIONS(27), - [anon_sym_enum] = ACTIONS(29), - [anon_sym_struct] = ACTIONS(31), - [anon_sym_union] = ACTIONS(33), - [anon_sym_if] = ACTIONS(511), - [anon_sym_switch] = ACTIONS(513), - [anon_sym_case] = ACTIONS(515), - [anon_sym_default] = ACTIONS(517), - [anon_sym_while] = ACTIONS(519), - [anon_sym_do] = ACTIONS(521), - [anon_sym_for] = ACTIONS(523), - [anon_sym_return] = ACTIONS(525), - [anon_sym_break] = ACTIONS(527), - [anon_sym_continue] = ACTIONS(529), - [anon_sym_goto] = ACTIONS(531), - [anon_sym_AMP] = ACTIONS(509), - [anon_sym_BANG] = ACTIONS(533), - [anon_sym_TILDE] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DASH] = ACTIONS(537), - [anon_sym_DASH_DASH] = ACTIONS(539), - [anon_sym_PLUS_PLUS] = ACTIONS(539), - [anon_sym_sizeof] = ACTIONS(541), - [sym_number_literal] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(547), - [sym_false] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [sym_identifier] = ACTIONS(549), - [sym_comment] = ACTIONS(37), + [sym__expression] = STATE(67), + [sym_conditional_expression] = STATE(67), + [sym_assignment_expression] = STATE(67), + [sym_pointer_expression] = STATE(67), + [sym_logical_expression] = STATE(67), + [sym_bitwise_expression] = STATE(67), + [sym_equality_expression] = STATE(67), + [sym_relational_expression] = STATE(67), + [sym_shift_expression] = STATE(67), + [sym_math_expression] = STATE(67), + [sym_cast_expression] = STATE(67), + [sym_sizeof_expression] = STATE(67), + [sym_subscript_expression] = STATE(67), + [sym_call_expression] = STATE(67), + [sym_field_expression] = STATE(67), + [sym_compound_literal_expression] = STATE(67), + [sym_parenthesized_expression] = STATE(67), + [sym_char_literal] = STATE(67), + [sym_concatenated_string] = STATE(67), + [sym_string_literal] = STATE(508), + [anon_sym_LPAREN2] = ACTIONS(1289), + [anon_sym_STAR] = ACTIONS(1291), + [anon_sym_AMP] = ACTIONS(1291), + [anon_sym_BANG] = ACTIONS(1295), + [anon_sym_TILDE] = ACTIONS(1297), + [anon_sym_PLUS] = ACTIONS(1299), + [anon_sym_DASH] = ACTIONS(1299), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_sizeof] = ACTIONS(1303), + [sym_number_literal] = ACTIONS(129), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(131), + [sym_false] = ACTIONS(131), + [sym_null] = ACTIONS(131), + [sym_identifier] = ACTIONS(131), + [sym_comment] = ACTIONS(59), }, [502] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(593), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(593), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(593), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(593), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(593), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(593), - [sym_preproc_directive] = ACTIONS(593), - [anon_sym_typedef] = ACTIONS(593), - [anon_sym_extern] = ACTIONS(593), - [anon_sym_static] = ACTIONS(593), - [anon_sym_auto] = ACTIONS(593), - [anon_sym_register] = ACTIONS(593), - [anon_sym_inline] = ACTIONS(593), - [anon_sym_const] = ACTIONS(593), - [anon_sym_restrict] = ACTIONS(593), - [anon_sym_volatile] = ACTIONS(593), - [anon_sym__Atomic] = ACTIONS(593), - [anon_sym_unsigned] = ACTIONS(593), - [anon_sym_long] = ACTIONS(593), - [anon_sym_short] = ACTIONS(593), - [sym_primitive_type] = ACTIONS(593), - [anon_sym_enum] = ACTIONS(593), - [anon_sym_struct] = ACTIONS(593), - [anon_sym_union] = ACTIONS(593), - [sym_identifier] = ACTIONS(593), - [sym_comment] = ACTIONS(37), + [sym__expression] = STATE(68), + [sym_conditional_expression] = STATE(68), + [sym_assignment_expression] = STATE(68), + [sym_pointer_expression] = STATE(68), + [sym_logical_expression] = STATE(68), + [sym_bitwise_expression] = STATE(68), + [sym_equality_expression] = STATE(68), + [sym_relational_expression] = STATE(68), + [sym_shift_expression] = STATE(68), + [sym_math_expression] = STATE(68), + [sym_cast_expression] = STATE(68), + [sym_sizeof_expression] = STATE(68), + [sym_subscript_expression] = STATE(68), + [sym_call_expression] = STATE(68), + [sym_field_expression] = STATE(68), + [sym_compound_literal_expression] = STATE(68), + [sym_parenthesized_expression] = STATE(68), + [sym_char_literal] = STATE(68), + [sym_concatenated_string] = STATE(68), + [sym_string_literal] = STATE(508), + [anon_sym_LPAREN2] = ACTIONS(1289), + [anon_sym_STAR] = ACTIONS(1291), + [anon_sym_AMP] = ACTIONS(1291), + [anon_sym_BANG] = ACTIONS(1295), + [anon_sym_TILDE] = ACTIONS(1297), + [anon_sym_PLUS] = ACTIONS(1299), + [anon_sym_DASH] = ACTIONS(1299), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_sizeof] = ACTIONS(1303), + [sym_number_literal] = ACTIONS(133), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(135), + [sym_false] = ACTIONS(135), + [sym_null] = ACTIONS(135), + [sym_identifier] = ACTIONS(135), + [sym_comment] = ACTIONS(59), }, [503] = { - [aux_sym_declaration_repeat1] = STATE(256), - [anon_sym_COMMA] = ACTIONS(225), - [anon_sym_SEMI] = ACTIONS(1898), - [sym_comment] = ACTIONS(37), + [sym__expression] = STATE(69), + [sym_conditional_expression] = STATE(69), + [sym_assignment_expression] = STATE(69), + [sym_pointer_expression] = STATE(69), + [sym_logical_expression] = STATE(69), + [sym_bitwise_expression] = STATE(69), + [sym_equality_expression] = STATE(69), + [sym_relational_expression] = STATE(69), + [sym_shift_expression] = STATE(69), + [sym_math_expression] = STATE(69), + [sym_cast_expression] = STATE(69), + [sym_sizeof_expression] = STATE(69), + [sym_subscript_expression] = STATE(69), + [sym_call_expression] = STATE(69), + [sym_field_expression] = STATE(69), + [sym_compound_literal_expression] = STATE(69), + [sym_parenthesized_expression] = STATE(69), + [sym_char_literal] = STATE(69), + [sym_concatenated_string] = STATE(69), + [sym_string_literal] = STATE(508), + [anon_sym_LPAREN2] = ACTIONS(1289), + [anon_sym_STAR] = ACTIONS(1291), + [anon_sym_AMP] = ACTIONS(1291), + [anon_sym_BANG] = ACTIONS(1295), + [anon_sym_TILDE] = ACTIONS(1297), + [anon_sym_PLUS] = ACTIONS(1299), + [anon_sym_DASH] = ACTIONS(1299), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_sizeof] = ACTIONS(1303), + [sym_number_literal] = ACTIONS(137), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(139), + [sym_false] = ACTIONS(139), + [sym_null] = ACTIONS(139), + [sym_identifier] = ACTIONS(139), + [sym_comment] = ACTIONS(59), }, [504] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1900), - [sym_comment] = ACTIONS(37), + [sym__expression] = STATE(681), + [sym_conditional_expression] = STATE(681), + [sym_assignment_expression] = STATE(681), + [sym_pointer_expression] = STATE(681), + [sym_logical_expression] = STATE(681), + [sym_bitwise_expression] = STATE(681), + [sym_equality_expression] = STATE(681), + [sym_relational_expression] = STATE(681), + [sym_shift_expression] = STATE(681), + [sym_math_expression] = STATE(681), + [sym_cast_expression] = STATE(681), + [sym_sizeof_expression] = STATE(681), + [sym_subscript_expression] = STATE(681), + [sym_call_expression] = STATE(681), + [sym_field_expression] = STATE(681), + [sym_compound_literal_expression] = STATE(681), + [sym_parenthesized_expression] = STATE(681), + [sym_char_literal] = STATE(681), + [sym_concatenated_string] = STATE(681), + [sym_string_literal] = STATE(508), + [anon_sym_LPAREN2] = ACTIONS(1813), + [anon_sym_STAR] = ACTIONS(1291), + [anon_sym_AMP] = ACTIONS(1291), + [anon_sym_BANG] = ACTIONS(1295), + [anon_sym_TILDE] = ACTIONS(1297), + [anon_sym_PLUS] = ACTIONS(1299), + [anon_sym_DASH] = ACTIONS(1299), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_sizeof] = ACTIONS(1303), + [sym_number_literal] = ACTIONS(1815), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(1817), + [sym_false] = ACTIONS(1817), + [sym_null] = ACTIONS(1817), + [sym_identifier] = ACTIONS(1817), + [sym_comment] = ACTIONS(59), }, [505] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(717), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(717), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(717), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(717), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(717), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(717), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(717), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(717), - [sym_preproc_directive] = ACTIONS(717), - [anon_sym_SEMI] = ACTIONS(715), - [anon_sym_typedef] = ACTIONS(717), - [anon_sym_extern] = ACTIONS(717), - [anon_sym_LBRACE] = ACTIONS(715), - [anon_sym_LPAREN2] = ACTIONS(715), - [anon_sym_STAR] = ACTIONS(715), - [anon_sym_static] = ACTIONS(717), - [anon_sym_auto] = ACTIONS(717), - [anon_sym_register] = ACTIONS(717), - [anon_sym_inline] = ACTIONS(717), - [anon_sym_const] = ACTIONS(717), - [anon_sym_restrict] = ACTIONS(717), - [anon_sym_volatile] = ACTIONS(717), - [anon_sym__Atomic] = ACTIONS(717), - [anon_sym_unsigned] = ACTIONS(717), - [anon_sym_long] = ACTIONS(717), - [anon_sym_short] = ACTIONS(717), - [sym_primitive_type] = ACTIONS(717), - [anon_sym_enum] = ACTIONS(717), - [anon_sym_struct] = ACTIONS(717), - [anon_sym_union] = ACTIONS(717), - [anon_sym_if] = ACTIONS(717), - [anon_sym_else] = ACTIONS(717), - [anon_sym_switch] = ACTIONS(717), - [anon_sym_case] = ACTIONS(717), - [anon_sym_default] = ACTIONS(717), - [anon_sym_while] = ACTIONS(717), - [anon_sym_do] = ACTIONS(717), - [anon_sym_for] = ACTIONS(717), - [anon_sym_return] = ACTIONS(717), - [anon_sym_break] = ACTIONS(717), - [anon_sym_continue] = ACTIONS(717), - [anon_sym_goto] = ACTIONS(717), - [anon_sym_AMP] = ACTIONS(715), - [anon_sym_BANG] = ACTIONS(715), - [anon_sym_TILDE] = ACTIONS(715), - [anon_sym_PLUS] = ACTIONS(717), - [anon_sym_DASH] = ACTIONS(717), - [anon_sym_DASH_DASH] = ACTIONS(715), - [anon_sym_PLUS_PLUS] = ACTIONS(715), - [anon_sym_sizeof] = ACTIONS(717), - [sym_number_literal] = ACTIONS(715), - [anon_sym_SQUOTE] = ACTIONS(715), - [anon_sym_DQUOTE] = ACTIONS(715), - [sym_true] = ACTIONS(717), - [sym_false] = ACTIONS(717), - [sym_null] = ACTIONS(717), - [sym_identifier] = ACTIONS(717), - [sym_comment] = ACTIONS(37), + [sym_identifier] = ACTIONS(1819), + [sym_comment] = ACTIONS(59), }, [506] = { - [sym_parameter_list] = STATE(164), - [anon_sym_SEMI] = ACTIONS(1902), - [anon_sym_LPAREN2] = ACTIONS(231), - [anon_sym_LBRACK] = ACTIONS(399), - [sym_comment] = ACTIONS(37), + [sym_argument_list] = STATE(98), + [aux_sym_initializer_list_repeat1] = STATE(696), + [anon_sym_COMMA] = ACTIONS(1821), + [anon_sym_RBRACE] = ACTIONS(1803), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(1823), + [anon_sym_LBRACK] = ACTIONS(188), + [anon_sym_EQ] = ACTIONS(1825), + [anon_sym_QMARK] = ACTIONS(1827), + [anon_sym_STAR_EQ] = ACTIONS(1829), + [anon_sym_SLASH_EQ] = ACTIONS(1829), + [anon_sym_PERCENT_EQ] = ACTIONS(1829), + [anon_sym_PLUS_EQ] = ACTIONS(1829), + [anon_sym_DASH_EQ] = ACTIONS(1829), + [anon_sym_LT_LT_EQ] = ACTIONS(1829), + [anon_sym_GT_GT_EQ] = ACTIONS(1829), + [anon_sym_AMP_EQ] = ACTIONS(1829), + [anon_sym_CARET_EQ] = ACTIONS(1829), + [anon_sym_PIPE_EQ] = ACTIONS(1829), + [anon_sym_AMP] = ACTIONS(1831), + [anon_sym_PIPE_PIPE] = ACTIONS(1833), + [anon_sym_AMP_AMP] = ACTIONS(1835), + [anon_sym_PIPE] = ACTIONS(1837), + [anon_sym_CARET] = ACTIONS(1839), + [anon_sym_EQ_EQ] = ACTIONS(1841), + [anon_sym_BANG_EQ] = ACTIONS(1841), + [anon_sym_LT] = ACTIONS(1843), + [anon_sym_GT] = ACTIONS(1843), + [anon_sym_LT_EQ] = ACTIONS(1845), + [anon_sym_GT_EQ] = ACTIONS(1845), + [anon_sym_LT_LT] = ACTIONS(1847), + [anon_sym_GT_GT] = ACTIONS(1847), + [anon_sym_PLUS] = ACTIONS(1849), + [anon_sym_DASH] = ACTIONS(1849), + [anon_sym_SLASH] = ACTIONS(1823), + [anon_sym_PERCENT] = ACTIONS(1823), + [anon_sym_DASH_DASH] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(216), + [anon_sym_DOT] = ACTIONS(218), + [anon_sym_DASH_GT] = ACTIONS(218), + [sym_comment] = ACTIONS(59), }, [507] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(731), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(731), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(731), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(731), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(731), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(731), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(731), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(731), - [sym_preproc_directive] = ACTIONS(731), - [anon_sym_typedef] = ACTIONS(731), - [anon_sym_extern] = ACTIONS(731), - [anon_sym_static] = ACTIONS(731), - [anon_sym_auto] = ACTIONS(731), - [anon_sym_register] = ACTIONS(731), - [anon_sym_inline] = ACTIONS(731), - [anon_sym_const] = ACTIONS(731), - [anon_sym_restrict] = ACTIONS(731), - [anon_sym_volatile] = ACTIONS(731), - [anon_sym__Atomic] = ACTIONS(731), - [anon_sym_unsigned] = ACTIONS(731), - [anon_sym_long] = ACTIONS(731), - [anon_sym_short] = ACTIONS(731), - [sym_primitive_type] = ACTIONS(731), - [anon_sym_enum] = ACTIONS(731), - [anon_sym_struct] = ACTIONS(731), - [anon_sym_union] = ACTIONS(731), - [sym_identifier] = ACTIONS(731), - [sym_comment] = ACTIONS(37), + [aux_sym_initializer_list_repeat1] = STATE(696), + [anon_sym_COMMA] = ACTIONS(1821), + [anon_sym_RBRACE] = ACTIONS(1803), + [sym_comment] = ACTIONS(59), }, [508] = { - [sym_preproc_include] = STATE(308), - [sym_preproc_def] = STATE(308), - [sym_preproc_function_def] = STATE(308), - [sym_preproc_call] = STATE(308), - [sym_preproc_if] = STATE(308), - [sym_preproc_ifdef] = STATE(308), - [sym_function_definition] = STATE(308), - [sym_declaration] = STATE(308), - [sym_type_definition] = STATE(308), - [sym__declaration_specifiers] = STATE(16), - [sym_linkage_specification] = STATE(308), - [sym_storage_class_specifier] = STATE(19), - [sym_type_qualifier] = STATE(19), - [sym__type_specifier] = STATE(17), - [sym_sized_type_specifier] = STATE(17), - [sym_enum_specifier] = STATE(17), - [sym_struct_specifier] = STATE(17), - [sym_union_specifier] = STATE(17), - [sym__empty_declaration] = STATE(308), - [sym_macro_type_specifier] = STATE(17), - [aux_sym_translation_unit_repeat1] = STATE(308), - [aux_sym__declaration_specifiers_repeat1] = STATE(19), - [aux_sym_sized_type_specifier_repeat1] = STATE(20), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(7), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(9), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(11), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(13), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(13), - [sym_preproc_directive] = ACTIONS(15), - [anon_sym_typedef] = ACTIONS(17), - [anon_sym_extern] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(1904), - [anon_sym_static] = ACTIONS(21), - [anon_sym_auto] = ACTIONS(21), - [anon_sym_register] = ACTIONS(21), - [anon_sym_inline] = ACTIONS(21), - [anon_sym_const] = ACTIONS(23), - [anon_sym_restrict] = ACTIONS(23), - [anon_sym_volatile] = ACTIONS(23), - [anon_sym__Atomic] = ACTIONS(23), - [anon_sym_unsigned] = ACTIONS(25), - [anon_sym_long] = ACTIONS(25), - [anon_sym_short] = ACTIONS(25), - [sym_primitive_type] = ACTIONS(27), - [anon_sym_enum] = ACTIONS(29), - [anon_sym_struct] = ACTIONS(31), - [anon_sym_union] = ACTIONS(33), - [sym_identifier] = ACTIONS(35), - [sym_comment] = ACTIONS(37), + [sym_string_literal] = STATE(697), + [aux_sym_concatenated_string_repeat1] = STATE(697), + [anon_sym_COMMA] = ACTIONS(166), + [anon_sym_RBRACE] = ACTIONS(166), + [anon_sym_LPAREN2] = ACTIONS(166), + [anon_sym_STAR] = ACTIONS(168), + [anon_sym_LBRACK] = ACTIONS(166), + [anon_sym_EQ] = ACTIONS(168), + [anon_sym_QMARK] = ACTIONS(166), + [anon_sym_STAR_EQ] = ACTIONS(166), + [anon_sym_SLASH_EQ] = ACTIONS(166), + [anon_sym_PERCENT_EQ] = ACTIONS(166), + [anon_sym_PLUS_EQ] = ACTIONS(166), + [anon_sym_DASH_EQ] = ACTIONS(166), + [anon_sym_LT_LT_EQ] = ACTIONS(166), + [anon_sym_GT_GT_EQ] = ACTIONS(166), + [anon_sym_AMP_EQ] = ACTIONS(166), + [anon_sym_CARET_EQ] = ACTIONS(166), + [anon_sym_PIPE_EQ] = ACTIONS(166), + [anon_sym_AMP] = ACTIONS(168), + [anon_sym_PIPE_PIPE] = ACTIONS(166), + [anon_sym_AMP_AMP] = ACTIONS(166), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_CARET] = ACTIONS(168), + [anon_sym_EQ_EQ] = ACTIONS(166), + [anon_sym_BANG_EQ] = ACTIONS(166), + [anon_sym_LT] = ACTIONS(168), + [anon_sym_GT] = ACTIONS(168), + [anon_sym_LT_EQ] = ACTIONS(166), + [anon_sym_GT_EQ] = ACTIONS(166), + [anon_sym_LT_LT] = ACTIONS(168), + [anon_sym_GT_GT] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(168), + [anon_sym_DASH] = ACTIONS(168), + [anon_sym_SLASH] = ACTIONS(168), + [anon_sym_PERCENT] = ACTIONS(168), + [anon_sym_DASH_DASH] = ACTIONS(166), + [anon_sym_PLUS_PLUS] = ACTIONS(166), + [anon_sym_DOT] = ACTIONS(166), + [anon_sym_DASH_GT] = ACTIONS(166), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_comment] = ACTIONS(59), }, [509] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(890), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(890), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(890), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(890), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(890), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(890), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(890), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(890), - [sym_preproc_directive] = ACTIONS(890), - [anon_sym_SEMI] = ACTIONS(888), - [anon_sym_typedef] = ACTIONS(890), - [anon_sym_extern] = ACTIONS(890), - [anon_sym_LBRACE] = ACTIONS(888), - [anon_sym_LPAREN2] = ACTIONS(888), - [anon_sym_STAR] = ACTIONS(888), - [anon_sym_static] = ACTIONS(890), - [anon_sym_auto] = ACTIONS(890), - [anon_sym_register] = ACTIONS(890), - [anon_sym_inline] = ACTIONS(890), - [anon_sym_const] = ACTIONS(890), - [anon_sym_restrict] = ACTIONS(890), - [anon_sym_volatile] = ACTIONS(890), - [anon_sym__Atomic] = ACTIONS(890), - [anon_sym_unsigned] = ACTIONS(890), - [anon_sym_long] = ACTIONS(890), - [anon_sym_short] = ACTIONS(890), - [sym_primitive_type] = ACTIONS(890), - [anon_sym_enum] = ACTIONS(890), - [anon_sym_struct] = ACTIONS(890), - [anon_sym_union] = ACTIONS(890), - [anon_sym_if] = ACTIONS(890), - [anon_sym_else] = ACTIONS(890), - [anon_sym_switch] = ACTIONS(890), - [anon_sym_case] = ACTIONS(890), - [anon_sym_default] = ACTIONS(890), - [anon_sym_while] = ACTIONS(890), - [anon_sym_do] = ACTIONS(890), - [anon_sym_for] = ACTIONS(890), - [anon_sym_return] = ACTIONS(890), - [anon_sym_break] = ACTIONS(890), - [anon_sym_continue] = ACTIONS(890), - [anon_sym_goto] = ACTIONS(890), - [anon_sym_AMP] = ACTIONS(888), - [anon_sym_BANG] = ACTIONS(888), - [anon_sym_TILDE] = ACTIONS(888), - [anon_sym_PLUS] = ACTIONS(890), - [anon_sym_DASH] = ACTIONS(890), - [anon_sym_DASH_DASH] = ACTIONS(888), - [anon_sym_PLUS_PLUS] = ACTIONS(888), - [anon_sym_sizeof] = ACTIONS(890), - [sym_number_literal] = ACTIONS(888), - [anon_sym_SQUOTE] = ACTIONS(888), - [anon_sym_DQUOTE] = ACTIONS(888), - [sym_true] = ACTIONS(890), - [sym_false] = ACTIONS(890), - [sym_null] = ACTIONS(890), - [sym_identifier] = ACTIONS(890), - [sym_comment] = ACTIONS(37), + [sym_subscript_designator] = STATE(699), + [sym_field_designator] = STATE(699), + [aux_sym_initializer_pair_repeat1] = STATE(699), + [anon_sym_LBRACK] = ACTIONS(1293), + [anon_sym_EQ] = ACTIONS(1851), + [anon_sym_DOT] = ACTIONS(1305), + [sym_comment] = ACTIONS(59), }, [510] = { - [sym_preproc_include] = STATE(433), - [sym_preproc_def] = STATE(433), - [sym_preproc_function_def] = STATE(433), - [sym_preproc_call] = STATE(433), - [sym_preproc_if_in_compound_statement] = STATE(433), - [sym_preproc_ifdef_in_compound_statement] = STATE(433), - [sym_declaration] = STATE(433), - [sym_type_definition] = STATE(433), - [sym__declaration_specifiers] = STATE(227), - [sym_compound_statement] = STATE(433), - [sym_storage_class_specifier] = STATE(19), - [sym_type_qualifier] = STATE(19), - [sym__type_specifier] = STATE(17), - [sym_sized_type_specifier] = STATE(17), - [sym_enum_specifier] = STATE(17), - [sym_struct_specifier] = STATE(17), - [sym_union_specifier] = STATE(17), - [sym_labeled_statement] = STATE(433), - [sym_expression_statement] = STATE(433), - [sym_if_statement] = STATE(433), - [sym_switch_statement] = STATE(433), - [sym_case_statement] = STATE(433), - [sym_while_statement] = STATE(433), - [sym_do_statement] = STATE(433), - [sym_for_statement] = STATE(433), - [sym_return_statement] = STATE(433), - [sym_break_statement] = STATE(433), - [sym_continue_statement] = STATE(433), - [sym_goto_statement] = STATE(433), - [sym__expression] = STATE(228), - [sym_comma_expression] = STATE(229), - [sym_conditional_expression] = STATE(228), - [sym_assignment_expression] = STATE(228), - [sym_pointer_expression] = STATE(228), - [sym_logical_expression] = STATE(228), - [sym_bitwise_expression] = STATE(228), - [sym_equality_expression] = STATE(228), - [sym_relational_expression] = STATE(228), - [sym_shift_expression] = STATE(228), - [sym_math_expression] = STATE(228), - [sym_cast_expression] = STATE(228), - [sym_sizeof_expression] = STATE(228), - [sym_subscript_expression] = STATE(228), - [sym_call_expression] = STATE(228), - [sym_field_expression] = STATE(228), - [sym_compound_literal_expression] = STATE(228), - [sym_parenthesized_expression] = STATE(228), - [sym_char_literal] = STATE(228), - [sym_concatenated_string] = STATE(228), - [sym_string_literal] = STATE(230), - [sym__empty_declaration] = STATE(433), - [sym_macro_type_specifier] = STATE(17), - [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(433), - [aux_sym__declaration_specifiers_repeat1] = STATE(19), - [aux_sym_sized_type_specifier_repeat1] = STATE(20), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(497), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(9), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(499), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(501), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(501), - [sym_preproc_directive] = ACTIONS(15), - [anon_sym_SEMI] = ACTIONS(503), - [anon_sym_typedef] = ACTIONS(17), - [anon_sym_extern] = ACTIONS(21), - [anon_sym_LBRACE] = ACTIONS(229), - [anon_sym_RBRACE] = ACTIONS(1906), - [anon_sym_LPAREN2] = ACTIONS(507), - [anon_sym_STAR] = ACTIONS(509), - [anon_sym_static] = ACTIONS(21), - [anon_sym_auto] = ACTIONS(21), - [anon_sym_register] = ACTIONS(21), - [anon_sym_inline] = ACTIONS(21), - [anon_sym_const] = ACTIONS(23), - [anon_sym_restrict] = ACTIONS(23), - [anon_sym_volatile] = ACTIONS(23), - [anon_sym__Atomic] = ACTIONS(23), - [anon_sym_unsigned] = ACTIONS(25), - [anon_sym_long] = ACTIONS(25), - [anon_sym_short] = ACTIONS(25), - [sym_primitive_type] = ACTIONS(27), - [anon_sym_enum] = ACTIONS(29), - [anon_sym_struct] = ACTIONS(31), - [anon_sym_union] = ACTIONS(33), - [anon_sym_if] = ACTIONS(511), - [anon_sym_switch] = ACTIONS(513), - [anon_sym_case] = ACTIONS(515), - [anon_sym_default] = ACTIONS(517), - [anon_sym_while] = ACTIONS(519), - [anon_sym_do] = ACTIONS(521), - [anon_sym_for] = ACTIONS(523), - [anon_sym_return] = ACTIONS(525), - [anon_sym_break] = ACTIONS(527), - [anon_sym_continue] = ACTIONS(529), - [anon_sym_goto] = ACTIONS(531), - [anon_sym_AMP] = ACTIONS(509), - [anon_sym_BANG] = ACTIONS(533), - [anon_sym_TILDE] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DASH] = ACTIONS(537), - [anon_sym_DASH_DASH] = ACTIONS(539), - [anon_sym_PLUS_PLUS] = ACTIONS(539), - [anon_sym_sizeof] = ACTIONS(541), - [sym_number_literal] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(547), - [sym_false] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [sym_identifier] = ACTIONS(549), - [sym_comment] = ACTIONS(37), + [sym_argument_list] = STATE(98), + [anon_sym_COMMA] = ACTIONS(1853), + [anon_sym_RBRACE] = ACTIONS(1853), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(1823), + [anon_sym_LBRACK] = ACTIONS(188), + [anon_sym_EQ] = ACTIONS(1825), + [anon_sym_QMARK] = ACTIONS(1827), + [anon_sym_STAR_EQ] = ACTIONS(1829), + [anon_sym_SLASH_EQ] = ACTIONS(1829), + [anon_sym_PERCENT_EQ] = ACTIONS(1829), + [anon_sym_PLUS_EQ] = ACTIONS(1829), + [anon_sym_DASH_EQ] = ACTIONS(1829), + [anon_sym_LT_LT_EQ] = ACTIONS(1829), + [anon_sym_GT_GT_EQ] = ACTIONS(1829), + [anon_sym_AMP_EQ] = ACTIONS(1829), + [anon_sym_CARET_EQ] = ACTIONS(1829), + [anon_sym_PIPE_EQ] = ACTIONS(1829), + [anon_sym_AMP] = ACTIONS(1831), + [anon_sym_PIPE_PIPE] = ACTIONS(1833), + [anon_sym_AMP_AMP] = ACTIONS(1835), + [anon_sym_PIPE] = ACTIONS(1837), + [anon_sym_CARET] = ACTIONS(1839), + [anon_sym_EQ_EQ] = ACTIONS(1841), + [anon_sym_BANG_EQ] = ACTIONS(1841), + [anon_sym_LT] = ACTIONS(1843), + [anon_sym_GT] = ACTIONS(1843), + [anon_sym_LT_EQ] = ACTIONS(1845), + [anon_sym_GT_EQ] = ACTIONS(1845), + [anon_sym_LT_LT] = ACTIONS(1847), + [anon_sym_GT_GT] = ACTIONS(1847), + [anon_sym_PLUS] = ACTIONS(1849), + [anon_sym_DASH] = ACTIONS(1849), + [anon_sym_SLASH] = ACTIONS(1823), + [anon_sym_PERCENT] = ACTIONS(1823), + [anon_sym_DASH_DASH] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(216), + [anon_sym_DOT] = ACTIONS(218), + [anon_sym_DASH_GT] = ACTIONS(218), + [sym_comment] = ACTIONS(59), }, [511] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1130), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1130), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1130), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1130), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1130), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1130), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1130), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1130), - [sym_preproc_directive] = ACTIONS(1130), - [anon_sym_SEMI] = ACTIONS(1128), - [anon_sym_typedef] = ACTIONS(1130), - [anon_sym_extern] = ACTIONS(1130), - [anon_sym_LBRACE] = ACTIONS(1128), - [anon_sym_LPAREN2] = ACTIONS(1128), - [anon_sym_STAR] = ACTIONS(1128), - [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_restrict] = ACTIONS(1130), - [anon_sym_volatile] = ACTIONS(1130), - [anon_sym__Atomic] = 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_else] = 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_AMP] = ACTIONS(1128), - [anon_sym_BANG] = ACTIONS(1128), - [anon_sym_TILDE] = ACTIONS(1128), - [anon_sym_PLUS] = ACTIONS(1130), - [anon_sym_DASH] = ACTIONS(1130), - [anon_sym_DASH_DASH] = ACTIONS(1128), - [anon_sym_PLUS_PLUS] = ACTIONS(1128), - [anon_sym_sizeof] = ACTIONS(1130), - [sym_number_literal] = ACTIONS(1128), - [anon_sym_SQUOTE] = ACTIONS(1128), - [anon_sym_DQUOTE] = ACTIONS(1128), - [sym_true] = ACTIONS(1130), - [sym_false] = ACTIONS(1130), - [sym_null] = ACTIONS(1130), - [sym_identifier] = ACTIONS(1130), - [sym_comment] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(1855), + [anon_sym_COMMA] = ACTIONS(1855), + [anon_sym_RPAREN] = ACTIONS(1855), + [anon_sym_extern] = ACTIONS(1857), + [anon_sym_LPAREN2] = ACTIONS(1855), + [anon_sym_STAR] = ACTIONS(1855), + [anon_sym_LBRACK] = ACTIONS(1855), + [anon_sym_RBRACK] = ACTIONS(1855), + [anon_sym_static] = ACTIONS(1857), + [anon_sym_auto] = ACTIONS(1857), + [anon_sym_register] = ACTIONS(1857), + [anon_sym_inline] = ACTIONS(1857), + [anon_sym_const] = ACTIONS(1857), + [anon_sym_restrict] = ACTIONS(1857), + [anon_sym_volatile] = ACTIONS(1857), + [anon_sym__Atomic] = ACTIONS(1857), + [anon_sym_COLON] = ACTIONS(1855), + [anon_sym_AMP] = ACTIONS(1855), + [anon_sym_BANG] = ACTIONS(1855), + [anon_sym_TILDE] = ACTIONS(1855), + [anon_sym_PLUS] = ACTIONS(1857), + [anon_sym_DASH] = ACTIONS(1857), + [anon_sym_DASH_DASH] = ACTIONS(1855), + [anon_sym_PLUS_PLUS] = ACTIONS(1855), + [anon_sym_sizeof] = ACTIONS(1857), + [sym_number_literal] = ACTIONS(1855), + [anon_sym_SQUOTE] = ACTIONS(1855), + [anon_sym_DQUOTE] = ACTIONS(1855), + [sym_true] = ACTIONS(1857), + [sym_false] = ACTIONS(1857), + [sym_null] = ACTIONS(1857), + [sym_identifier] = ACTIONS(1857), + [sym_comment] = ACTIONS(59), }, [512] = { - [anon_sym_RPAREN] = ACTIONS(1908), - [anon_sym_SEMI] = ACTIONS(1908), - [anon_sym_LPAREN2] = ACTIONS(1908), - [anon_sym_LBRACK] = ACTIONS(1908), - [sym_comment] = ACTIONS(37), + [anon_sym_COMMA] = ACTIONS(1859), + [anon_sym_RBRACE] = ACTIONS(1859), + [sym_comment] = ACTIONS(59), }, [513] = { - [sym_argument_list] = STATE(430), - [anon_sym_LPAREN2] = ACTIONS(1012), - [anon_sym_STAR] = ACTIONS(1082), - [anon_sym_LBRACK] = ACTIONS(1016), - [anon_sym_RBRACK] = ACTIONS(1910), - [anon_sym_EQ] = ACTIONS(1084), - [anon_sym_QMARK] = ACTIONS(1086), - [anon_sym_STAR_EQ] = ACTIONS(1088), - [anon_sym_SLASH_EQ] = ACTIONS(1088), - [anon_sym_PERCENT_EQ] = ACTIONS(1088), - [anon_sym_PLUS_EQ] = ACTIONS(1088), - [anon_sym_DASH_EQ] = ACTIONS(1088), - [anon_sym_LT_LT_EQ] = ACTIONS(1088), - [anon_sym_GT_GT_EQ] = ACTIONS(1088), - [anon_sym_AMP_EQ] = ACTIONS(1088), - [anon_sym_CARET_EQ] = ACTIONS(1088), - [anon_sym_PIPE_EQ] = ACTIONS(1088), - [anon_sym_AMP] = ACTIONS(1090), - [anon_sym_PIPE_PIPE] = ACTIONS(1092), - [anon_sym_AMP_AMP] = ACTIONS(1094), - [anon_sym_PIPE] = ACTIONS(1096), - [anon_sym_CARET] = ACTIONS(1098), - [anon_sym_EQ_EQ] = ACTIONS(1100), - [anon_sym_BANG_EQ] = ACTIONS(1100), - [anon_sym_LT] = ACTIONS(1102), - [anon_sym_GT] = ACTIONS(1102), - [anon_sym_LT_EQ] = ACTIONS(1104), - [anon_sym_GT_EQ] = ACTIONS(1104), - [anon_sym_LT_LT] = ACTIONS(1106), - [anon_sym_GT_GT] = ACTIONS(1106), - [anon_sym_PLUS] = ACTIONS(1108), - [anon_sym_DASH] = ACTIONS(1108), - [anon_sym_SLASH] = ACTIONS(1082), - [anon_sym_PERCENT] = ACTIONS(1082), - [anon_sym_DASH_DASH] = ACTIONS(1044), - [anon_sym_PLUS_PLUS] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1046), - [anon_sym_DASH_GT] = ACTIONS(1046), - [sym_comment] = ACTIONS(37), + [sym_enumerator] = STATE(512), + [anon_sym_RBRACE] = ACTIONS(1861), + [sym_identifier] = ACTIONS(363), + [sym_comment] = ACTIONS(59), }, [514] = { - [anon_sym_RPAREN] = ACTIONS(1912), - [sym_comment] = ACTIONS(37), + [aux_sym_enumerator_list_repeat1] = STATE(514), + [anon_sym_COMMA] = ACTIONS(1863), + [anon_sym_RBRACE] = ACTIONS(1859), + [sym_comment] = ACTIONS(59), }, [515] = { - [sym_type_qualifier] = STATE(106), - [sym__type_specifier] = STATE(104), - [sym_sized_type_specifier] = STATE(104), - [sym_enum_specifier] = STATE(104), - [sym_struct_specifier] = STATE(104), - [sym_union_specifier] = STATE(104), - [sym__expression] = STATE(371), - [sym_comma_expression] = STATE(372), - [sym_conditional_expression] = STATE(371), - [sym_assignment_expression] = STATE(371), - [sym_pointer_expression] = STATE(371), - [sym_logical_expression] = STATE(371), - [sym_bitwise_expression] = STATE(371), - [sym_equality_expression] = STATE(371), - [sym_relational_expression] = STATE(371), - [sym_shift_expression] = STATE(371), - [sym_math_expression] = STATE(371), - [sym_cast_expression] = STATE(371), - [sym_type_descriptor] = STATE(743), - [sym_sizeof_expression] = STATE(371), - [sym_subscript_expression] = STATE(371), - [sym_call_expression] = STATE(371), - [sym_field_expression] = STATE(371), - [sym_compound_literal_expression] = STATE(371), - [sym_parenthesized_expression] = STATE(371), - [sym_char_literal] = STATE(371), - [sym_concatenated_string] = STATE(371), - [sym_string_literal] = STATE(374), - [sym_macro_type_specifier] = STATE(104), - [aux_sym_type_definition_repeat1] = STATE(106), - [aux_sym_sized_type_specifier_repeat1] = STATE(107), - [anon_sym_LPAREN2] = ACTIONS(892), - [anon_sym_STAR] = ACTIONS(894), - [anon_sym_const] = ACTIONS(23), - [anon_sym_restrict] = ACTIONS(23), - [anon_sym_volatile] = ACTIONS(23), - [anon_sym__Atomic] = ACTIONS(23), - [anon_sym_unsigned] = ACTIONS(211), - [anon_sym_long] = ACTIONS(211), - [anon_sym_short] = ACTIONS(211), - [sym_primitive_type] = ACTIONS(213), - [anon_sym_enum] = ACTIONS(29), - [anon_sym_struct] = ACTIONS(31), - [anon_sym_union] = ACTIONS(33), - [anon_sym_AMP] = ACTIONS(894), - [anon_sym_BANG] = ACTIONS(896), - [anon_sym_TILDE] = ACTIONS(898), - [anon_sym_PLUS] = ACTIONS(900), - [anon_sym_DASH] = ACTIONS(900), - [anon_sym_DASH_DASH] = ACTIONS(902), - [anon_sym_PLUS_PLUS] = ACTIONS(902), - [anon_sym_sizeof] = ACTIONS(904), - [sym_number_literal] = ACTIONS(906), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(908), - [sym_false] = ACTIONS(908), - [sym_null] = ACTIONS(908), - [sym_identifier] = ACTIONS(910), - [sym_comment] = ACTIONS(37), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1866), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1868), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1868), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1868), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1868), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1868), + [anon_sym_extern] = ACTIONS(1866), + [anon_sym_RBRACE] = ACTIONS(1868), + [anon_sym_static] = ACTIONS(1866), + [anon_sym_auto] = ACTIONS(1866), + [anon_sym_register] = ACTIONS(1866), + [anon_sym_inline] = ACTIONS(1866), + [anon_sym_const] = ACTIONS(1866), + [anon_sym_restrict] = ACTIONS(1866), + [anon_sym_volatile] = ACTIONS(1866), + [anon_sym__Atomic] = ACTIONS(1866), + [anon_sym_unsigned] = ACTIONS(1866), + [anon_sym_long] = ACTIONS(1866), + [anon_sym_short] = ACTIONS(1866), + [sym_primitive_type] = ACTIONS(1866), + [anon_sym_enum] = ACTIONS(1866), + [anon_sym_struct] = ACTIONS(1866), + [anon_sym_union] = ACTIONS(1866), + [sym_identifier] = ACTIONS(1866), + [sym_comment] = ACTIONS(59), }, [516] = { - [sym_argument_list] = STATE(430), - [anon_sym_COMMA] = ACTIONS(1577), - [anon_sym_RBRACE] = ACTIONS(1577), - [anon_sym_LPAREN2] = ACTIONS(1012), - [anon_sym_STAR] = ACTIONS(1252), - [anon_sym_LBRACK] = ACTIONS(1016), - [anon_sym_EQ] = ACTIONS(1579), - [anon_sym_QMARK] = ACTIONS(1577), - [anon_sym_STAR_EQ] = ACTIONS(1577), - [anon_sym_SLASH_EQ] = ACTIONS(1577), - [anon_sym_PERCENT_EQ] = ACTIONS(1577), - [anon_sym_PLUS_EQ] = ACTIONS(1577), - [anon_sym_DASH_EQ] = ACTIONS(1577), - [anon_sym_LT_LT_EQ] = ACTIONS(1577), - [anon_sym_GT_GT_EQ] = ACTIONS(1577), - [anon_sym_AMP_EQ] = ACTIONS(1577), - [anon_sym_CARET_EQ] = ACTIONS(1577), - [anon_sym_PIPE_EQ] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(1579), - [anon_sym_PIPE_PIPE] = ACTIONS(1577), - [anon_sym_AMP_AMP] = ACTIONS(1577), - [anon_sym_PIPE] = ACTIONS(1579), - [anon_sym_CARET] = ACTIONS(1579), - [anon_sym_EQ_EQ] = ACTIONS(1577), - [anon_sym_BANG_EQ] = ACTIONS(1577), - [anon_sym_LT] = ACTIONS(1579), - [anon_sym_GT] = ACTIONS(1579), - [anon_sym_LT_EQ] = ACTIONS(1577), - [anon_sym_GT_EQ] = ACTIONS(1577), - [anon_sym_LT_LT] = ACTIONS(1276), - [anon_sym_GT_GT] = ACTIONS(1276), - [anon_sym_PLUS] = ACTIONS(1278), - [anon_sym_DASH] = ACTIONS(1278), - [anon_sym_SLASH] = ACTIONS(1252), - [anon_sym_PERCENT] = ACTIONS(1252), - [anon_sym_DASH_DASH] = ACTIONS(1044), - [anon_sym_PLUS_PLUS] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1046), - [anon_sym_DASH_GT] = ACTIONS(1046), - [sym_comment] = ACTIONS(37), + [sym_preproc_if_in_field_declaration_list] = STATE(702), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(702), + [sym__declaration_specifiers] = STATE(178), + [sym_storage_class_specifier] = STATE(181), + [sym_type_qualifier] = STATE(181), + [sym__type_specifier] = STATE(179), + [sym_sized_type_specifier] = STATE(179), + [sym_enum_specifier] = STATE(179), + [sym_struct_specifier] = STATE(179), + [sym_union_specifier] = STATE(179), + [sym__field_declaration_list_item] = STATE(702), + [sym_field_declaration] = STATE(702), + [sym_macro_type_specifier] = STATE(179), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(702), + [aux_sym__declaration_specifiers_repeat1] = STATE(181), + [aux_sym_sized_type_specifier_repeat1] = STATE(182), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(373), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1870), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(375), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(375), + [anon_sym_extern] = ACTIONS(25), + [anon_sym_static] = ACTIONS(25), + [anon_sym_auto] = ACTIONS(25), + [anon_sym_register] = ACTIONS(25), + [anon_sym_inline] = ACTIONS(25), + [anon_sym_const] = ACTIONS(27), + [anon_sym_restrict] = ACTIONS(27), + [anon_sym_volatile] = ACTIONS(27), + [anon_sym__Atomic] = ACTIONS(27), + [anon_sym_unsigned] = ACTIONS(379), + [anon_sym_long] = ACTIONS(379), + [anon_sym_short] = ACTIONS(379), + [sym_primitive_type] = ACTIONS(381), + [anon_sym_enum] = ACTIONS(33), + [anon_sym_struct] = ACTIONS(35), + [anon_sym_union] = ACTIONS(37), + [sym_identifier] = ACTIONS(81), + [sym_comment] = ACTIONS(59), }, [517] = { - [sym__expression] = STATE(673), - [sym_conditional_expression] = STATE(673), - [sym_assignment_expression] = STATE(673), - [sym_pointer_expression] = STATE(673), - [sym_logical_expression] = STATE(673), - [sym_bitwise_expression] = STATE(673), - [sym_equality_expression] = STATE(673), - [sym_relational_expression] = STATE(673), - [sym_shift_expression] = STATE(673), - [sym_math_expression] = STATE(673), - [sym_cast_expression] = STATE(673), - [sym_sizeof_expression] = STATE(673), - [sym_subscript_expression] = STATE(673), - [sym_call_expression] = STATE(673), - [sym_field_expression] = STATE(673), - [sym_compound_literal_expression] = STATE(673), - [sym_parenthesized_expression] = STATE(673), - [sym_char_literal] = STATE(673), - [sym_concatenated_string] = STATE(673), - [sym_string_literal] = STATE(318), - [anon_sym_LPAREN2] = ACTIONS(742), - [anon_sym_STAR] = ACTIONS(744), - [anon_sym_AMP] = ACTIONS(744), - [anon_sym_BANG] = ACTIONS(746), - [anon_sym_TILDE] = ACTIONS(748), - [anon_sym_PLUS] = ACTIONS(750), - [anon_sym_DASH] = ACTIONS(750), - [anon_sym_DASH_DASH] = ACTIONS(752), - [anon_sym_PLUS_PLUS] = ACTIONS(752), - [anon_sym_sizeof] = ACTIONS(754), - [sym_number_literal] = ACTIONS(1597), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(1599), - [sym_false] = ACTIONS(1599), - [sym_null] = ACTIONS(1599), - [sym_identifier] = ACTIONS(1599), - [sym_comment] = ACTIONS(37), + [sym_preproc_arg] = ACTIONS(1872), + [sym_comment] = ACTIONS(69), }, [518] = { - [sym__expression] = STATE(744), - [sym_conditional_expression] = STATE(744), - [sym_assignment_expression] = STATE(744), - [sym_pointer_expression] = STATE(744), - [sym_logical_expression] = STATE(744), - [sym_bitwise_expression] = STATE(744), - [sym_equality_expression] = STATE(744), - [sym_relational_expression] = STATE(744), - [sym_shift_expression] = STATE(744), - [sym_math_expression] = STATE(744), - [sym_cast_expression] = STATE(744), - [sym_sizeof_expression] = STATE(744), - [sym_subscript_expression] = STATE(744), - [sym_call_expression] = STATE(744), - [sym_field_expression] = STATE(744), - [sym_compound_literal_expression] = STATE(744), - [sym_parenthesized_expression] = STATE(744), - [sym_char_literal] = STATE(744), - [sym_concatenated_string] = STATE(744), - [sym_string_literal] = STATE(318), - [anon_sym_LPAREN2] = ACTIONS(742), - [anon_sym_STAR] = ACTIONS(744), - [anon_sym_AMP] = ACTIONS(744), - [anon_sym_BANG] = ACTIONS(746), - [anon_sym_TILDE] = ACTIONS(748), - [anon_sym_PLUS] = ACTIONS(750), - [anon_sym_DASH] = ACTIONS(750), - [anon_sym_DASH_DASH] = ACTIONS(752), - [anon_sym_PLUS_PLUS] = ACTIONS(752), - [anon_sym_sizeof] = ACTIONS(754), - [sym_number_literal] = ACTIONS(1914), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(1916), - [sym_false] = ACTIONS(1916), - [sym_null] = ACTIONS(1916), - [sym_identifier] = ACTIONS(1916), - [sym_comment] = ACTIONS(37), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1874), + [sym_comment] = ACTIONS(59), }, [519] = { - [sym__expression] = STATE(745), - [sym_conditional_expression] = STATE(745), - [sym_assignment_expression] = STATE(745), - [sym_pointer_expression] = STATE(745), - [sym_logical_expression] = STATE(745), - [sym_bitwise_expression] = STATE(745), - [sym_equality_expression] = STATE(745), - [sym_relational_expression] = STATE(745), - [sym_shift_expression] = STATE(745), - [sym_math_expression] = STATE(745), - [sym_cast_expression] = STATE(745), - [sym_sizeof_expression] = STATE(745), - [sym_subscript_expression] = STATE(745), - [sym_call_expression] = STATE(745), - [sym_field_expression] = STATE(745), - [sym_compound_literal_expression] = STATE(745), - [sym_parenthesized_expression] = STATE(745), - [sym_char_literal] = STATE(745), - [sym_concatenated_string] = STATE(745), - [sym_string_literal] = STATE(386), - [anon_sym_LPAREN2] = ACTIONS(918), - [anon_sym_STAR] = ACTIONS(920), - [anon_sym_AMP] = ACTIONS(920), - [anon_sym_BANG] = ACTIONS(922), - [anon_sym_TILDE] = ACTIONS(924), - [anon_sym_PLUS] = ACTIONS(926), - [anon_sym_DASH] = ACTIONS(926), - [anon_sym_DASH_DASH] = ACTIONS(928), - [anon_sym_PLUS_PLUS] = ACTIONS(928), - [anon_sym_sizeof] = ACTIONS(930), - [sym_number_literal] = ACTIONS(1918), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(1920), - [sym_false] = ACTIONS(1920), - [sym_null] = ACTIONS(1920), - [sym_identifier] = ACTIONS(1920), - [sym_comment] = ACTIONS(37), + [sym_preproc_if_in_field_declaration_list] = STATE(706), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(706), + [sym_preproc_else_in_field_declaration_list] = STATE(705), + [sym_preproc_elif_in_field_declaration_list] = STATE(705), + [sym__declaration_specifiers] = STATE(178), + [sym_storage_class_specifier] = STATE(181), + [sym_type_qualifier] = STATE(181), + [sym__type_specifier] = STATE(179), + [sym_sized_type_specifier] = STATE(179), + [sym_enum_specifier] = STATE(179), + [sym_struct_specifier] = STATE(179), + [sym_union_specifier] = STATE(179), + [sym__field_declaration_list_item] = STATE(706), + [sym_field_declaration] = STATE(706), + [sym_macro_type_specifier] = STATE(179), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(706), + [aux_sym__declaration_specifiers_repeat1] = STATE(181), + [aux_sym_sized_type_specifier_repeat1] = STATE(182), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(373), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1874), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(375), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(375), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1335), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(25), + [anon_sym_static] = ACTIONS(25), + [anon_sym_auto] = ACTIONS(25), + [anon_sym_register] = ACTIONS(25), + [anon_sym_inline] = ACTIONS(25), + [anon_sym_const] = ACTIONS(27), + [anon_sym_restrict] = ACTIONS(27), + [anon_sym_volatile] = ACTIONS(27), + [anon_sym__Atomic] = ACTIONS(27), + [anon_sym_unsigned] = ACTIONS(379), + [anon_sym_long] = ACTIONS(379), + [anon_sym_short] = ACTIONS(379), + [sym_primitive_type] = ACTIONS(381), + [anon_sym_enum] = ACTIONS(33), + [anon_sym_struct] = ACTIONS(35), + [anon_sym_union] = ACTIONS(37), + [sym_identifier] = ACTIONS(81), + [sym_comment] = ACTIONS(59), }, [520] = { - [sym__expression] = STATE(746), - [sym_conditional_expression] = STATE(746), - [sym_assignment_expression] = STATE(746), - [sym_pointer_expression] = STATE(746), - [sym_logical_expression] = STATE(746), - [sym_bitwise_expression] = STATE(746), - [sym_equality_expression] = STATE(746), - [sym_relational_expression] = STATE(746), - [sym_shift_expression] = STATE(746), - [sym_math_expression] = STATE(746), - [sym_cast_expression] = STATE(746), - [sym_sizeof_expression] = STATE(746), - [sym_subscript_expression] = STATE(746), - [sym_call_expression] = STATE(746), - [sym_field_expression] = STATE(746), - [sym_compound_literal_expression] = STATE(746), - [sym_parenthesized_expression] = STATE(746), - [sym_char_literal] = STATE(746), - [sym_concatenated_string] = STATE(746), - [sym_string_literal] = STATE(318), - [anon_sym_LPAREN2] = ACTIONS(742), - [anon_sym_STAR] = ACTIONS(744), - [anon_sym_AMP] = ACTIONS(744), - [anon_sym_BANG] = ACTIONS(746), - [anon_sym_TILDE] = ACTIONS(748), - [anon_sym_PLUS] = ACTIONS(750), - [anon_sym_DASH] = ACTIONS(750), - [anon_sym_DASH_DASH] = ACTIONS(752), - [anon_sym_PLUS_PLUS] = ACTIONS(752), - [anon_sym_sizeof] = ACTIONS(754), - [sym_number_literal] = ACTIONS(1922), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(1924), - [sym_false] = ACTIONS(1924), - [sym_null] = ACTIONS(1924), - [sym_identifier] = ACTIONS(1924), - [sym_comment] = ACTIONS(37), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1876), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1878), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1878), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1878), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1878), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1878), + [anon_sym_extern] = ACTIONS(1876), + [anon_sym_RBRACE] = ACTIONS(1878), + [anon_sym_static] = ACTIONS(1876), + [anon_sym_auto] = ACTIONS(1876), + [anon_sym_register] = ACTIONS(1876), + [anon_sym_inline] = ACTIONS(1876), + [anon_sym_const] = ACTIONS(1876), + [anon_sym_restrict] = ACTIONS(1876), + [anon_sym_volatile] = ACTIONS(1876), + [anon_sym__Atomic] = ACTIONS(1876), + [anon_sym_unsigned] = ACTIONS(1876), + [anon_sym_long] = ACTIONS(1876), + [anon_sym_short] = ACTIONS(1876), + [sym_primitive_type] = ACTIONS(1876), + [anon_sym_enum] = ACTIONS(1876), + [anon_sym_struct] = ACTIONS(1876), + [anon_sym_union] = ACTIONS(1876), + [sym_identifier] = ACTIONS(1876), + [sym_comment] = ACTIONS(59), }, [521] = { - [sym__expression] = STATE(747), - [sym_conditional_expression] = STATE(747), - [sym_assignment_expression] = STATE(747), - [sym_pointer_expression] = STATE(747), - [sym_logical_expression] = STATE(747), - [sym_bitwise_expression] = STATE(747), - [sym_equality_expression] = STATE(747), - [sym_relational_expression] = STATE(747), - [sym_shift_expression] = STATE(747), - [sym_math_expression] = STATE(747), - [sym_cast_expression] = STATE(747), - [sym_sizeof_expression] = STATE(747), - [sym_subscript_expression] = STATE(747), - [sym_call_expression] = STATE(747), - [sym_field_expression] = STATE(747), - [sym_compound_literal_expression] = STATE(747), - [sym_parenthesized_expression] = STATE(747), - [sym_char_literal] = STATE(747), - [sym_concatenated_string] = STATE(747), - [sym_string_literal] = STATE(318), - [anon_sym_LPAREN2] = ACTIONS(742), - [anon_sym_STAR] = ACTIONS(744), - [anon_sym_AMP] = ACTIONS(744), - [anon_sym_BANG] = ACTIONS(746), - [anon_sym_TILDE] = ACTIONS(748), - [anon_sym_PLUS] = ACTIONS(750), - [anon_sym_DASH] = ACTIONS(750), - [anon_sym_DASH_DASH] = ACTIONS(752), - [anon_sym_PLUS_PLUS] = ACTIONS(752), - [anon_sym_sizeof] = ACTIONS(754), - [sym_number_literal] = ACTIONS(1926), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(1928), - [sym_false] = ACTIONS(1928), - [sym_null] = ACTIONS(1928), - [sym_identifier] = ACTIONS(1928), - [sym_comment] = ACTIONS(37), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1880), + [sym_comment] = ACTIONS(59), }, [522] = { - [sym__expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_assignment_expression] = STATE(748), - [sym_pointer_expression] = STATE(748), - [sym_logical_expression] = STATE(748), - [sym_bitwise_expression] = STATE(748), - [sym_equality_expression] = STATE(748), - [sym_relational_expression] = STATE(748), - [sym_shift_expression] = STATE(748), - [sym_math_expression] = STATE(748), - [sym_cast_expression] = STATE(748), - [sym_sizeof_expression] = STATE(748), - [sym_subscript_expression] = STATE(748), - [sym_call_expression] = STATE(748), - [sym_field_expression] = STATE(748), - [sym_compound_literal_expression] = STATE(748), - [sym_parenthesized_expression] = STATE(748), - [sym_char_literal] = STATE(748), - [sym_concatenated_string] = STATE(748), - [sym_string_literal] = STATE(318), - [anon_sym_LPAREN2] = ACTIONS(742), - [anon_sym_STAR] = ACTIONS(744), - [anon_sym_AMP] = ACTIONS(744), - [anon_sym_BANG] = ACTIONS(746), - [anon_sym_TILDE] = ACTIONS(748), - [anon_sym_PLUS] = ACTIONS(750), - [anon_sym_DASH] = ACTIONS(750), - [anon_sym_DASH_DASH] = ACTIONS(752), - [anon_sym_PLUS_PLUS] = ACTIONS(752), - [anon_sym_sizeof] = ACTIONS(754), - [sym_number_literal] = ACTIONS(1930), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(1932), - [sym_false] = ACTIONS(1932), - [sym_null] = ACTIONS(1932), - [sym_identifier] = ACTIONS(1932), - [sym_comment] = ACTIONS(37), + [sym_preproc_if_in_field_declaration_list] = STATE(706), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(706), + [sym_preproc_else_in_field_declaration_list] = STATE(708), + [sym_preproc_elif_in_field_declaration_list] = STATE(708), + [sym__declaration_specifiers] = STATE(178), + [sym_storage_class_specifier] = STATE(181), + [sym_type_qualifier] = STATE(181), + [sym__type_specifier] = STATE(179), + [sym_sized_type_specifier] = STATE(179), + [sym_enum_specifier] = STATE(179), + [sym_struct_specifier] = STATE(179), + [sym_union_specifier] = STATE(179), + [sym__field_declaration_list_item] = STATE(706), + [sym_field_declaration] = STATE(706), + [sym_macro_type_specifier] = STATE(179), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(706), + [aux_sym__declaration_specifiers_repeat1] = STATE(181), + [aux_sym_sized_type_specifier_repeat1] = STATE(182), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(373), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1880), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(375), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(375), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1335), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(25), + [anon_sym_static] = ACTIONS(25), + [anon_sym_auto] = ACTIONS(25), + [anon_sym_register] = ACTIONS(25), + [anon_sym_inline] = ACTIONS(25), + [anon_sym_const] = ACTIONS(27), + [anon_sym_restrict] = ACTIONS(27), + [anon_sym_volatile] = ACTIONS(27), + [anon_sym__Atomic] = ACTIONS(27), + [anon_sym_unsigned] = ACTIONS(379), + [anon_sym_long] = ACTIONS(379), + [anon_sym_short] = ACTIONS(379), + [sym_primitive_type] = ACTIONS(381), + [anon_sym_enum] = ACTIONS(33), + [anon_sym_struct] = ACTIONS(35), + [anon_sym_union] = ACTIONS(37), + [sym_identifier] = ACTIONS(81), + [sym_comment] = ACTIONS(59), }, [523] = { - [sym__expression] = STATE(749), - [sym_conditional_expression] = STATE(749), - [sym_assignment_expression] = STATE(749), - [sym_pointer_expression] = STATE(749), - [sym_logical_expression] = STATE(749), - [sym_bitwise_expression] = STATE(749), - [sym_equality_expression] = STATE(749), - [sym_relational_expression] = STATE(749), - [sym_shift_expression] = STATE(749), - [sym_math_expression] = STATE(749), - [sym_cast_expression] = STATE(749), - [sym_sizeof_expression] = STATE(749), - [sym_subscript_expression] = STATE(749), - [sym_call_expression] = STATE(749), - [sym_field_expression] = STATE(749), - [sym_compound_literal_expression] = STATE(749), - [sym_parenthesized_expression] = STATE(749), - [sym_char_literal] = STATE(749), - [sym_concatenated_string] = STATE(749), - [sym_string_literal] = STATE(318), - [anon_sym_LPAREN2] = ACTIONS(742), - [anon_sym_STAR] = ACTIONS(744), - [anon_sym_AMP] = ACTIONS(744), - [anon_sym_BANG] = ACTIONS(746), - [anon_sym_TILDE] = ACTIONS(748), - [anon_sym_PLUS] = ACTIONS(750), - [anon_sym_DASH] = ACTIONS(750), - [anon_sym_DASH_DASH] = ACTIONS(752), - [anon_sym_PLUS_PLUS] = ACTIONS(752), - [anon_sym_sizeof] = ACTIONS(754), - [sym_number_literal] = ACTIONS(1934), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(1936), - [sym_false] = ACTIONS(1936), - [sym_null] = ACTIONS(1936), - [sym_identifier] = ACTIONS(1936), - [sym_comment] = ACTIONS(37), + [sym__field_declarator] = STATE(525), + [sym_pointer_field_declarator] = STATE(525), + [sym_function_field_declarator] = STATE(525), + [sym_array_field_declarator] = STATE(525), + [sym_type_qualifier] = STATE(709), + [aux_sym_type_definition_repeat1] = STATE(709), + [anon_sym_LPAREN2] = ACTIONS(875), + [anon_sym_STAR] = ACTIONS(1345), + [anon_sym_const] = ACTIONS(27), + [anon_sym_restrict] = ACTIONS(27), + [anon_sym_volatile] = ACTIONS(27), + [anon_sym__Atomic] = ACTIONS(27), + [sym_identifier] = ACTIONS(1347), + [sym_comment] = ACTIONS(59), }, [524] = { - [sym__expression] = STATE(750), - [sym_conditional_expression] = STATE(750), - [sym_assignment_expression] = STATE(750), - [sym_pointer_expression] = STATE(750), - [sym_logical_expression] = STATE(750), - [sym_bitwise_expression] = STATE(750), - [sym_equality_expression] = STATE(750), - [sym_relational_expression] = STATE(750), - [sym_shift_expression] = STATE(750), - [sym_math_expression] = STATE(750), - [sym_cast_expression] = STATE(750), - [sym_sizeof_expression] = STATE(750), - [sym_subscript_expression] = STATE(750), - [sym_call_expression] = STATE(750), - [sym_field_expression] = STATE(750), - [sym_compound_literal_expression] = STATE(750), - [sym_parenthesized_expression] = STATE(750), - [sym_char_literal] = STATE(750), - [sym_concatenated_string] = STATE(750), - [sym_string_literal] = STATE(318), - [anon_sym_LPAREN2] = ACTIONS(742), - [anon_sym_STAR] = ACTIONS(744), - [anon_sym_AMP] = ACTIONS(744), - [anon_sym_BANG] = ACTIONS(746), - [anon_sym_TILDE] = ACTIONS(748), - [anon_sym_PLUS] = ACTIONS(750), - [anon_sym_DASH] = ACTIONS(750), - [anon_sym_DASH_DASH] = ACTIONS(752), - [anon_sym_PLUS_PLUS] = ACTIONS(752), - [anon_sym_sizeof] = ACTIONS(754), - [sym_number_literal] = ACTIONS(1938), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(1940), - [sym_false] = ACTIONS(1940), - [sym_null] = ACTIONS(1940), - [sym_identifier] = ACTIONS(1940), - [sym_comment] = ACTIONS(37), + [sym_parameter_list] = STATE(539), + [anon_sym_RPAREN] = ACTIONS(1882), + [anon_sym_LPAREN2] = ACTIONS(441), + [anon_sym_LBRACK] = ACTIONS(1373), + [sym_comment] = ACTIONS(59), }, [525] = { - [sym__expression] = STATE(751), - [sym_conditional_expression] = STATE(751), - [sym_assignment_expression] = STATE(751), - [sym_pointer_expression] = STATE(751), - [sym_logical_expression] = STATE(751), - [sym_bitwise_expression] = STATE(751), - [sym_equality_expression] = STATE(751), - [sym_relational_expression] = STATE(751), - [sym_shift_expression] = STATE(751), - [sym_math_expression] = STATE(751), - [sym_cast_expression] = STATE(751), - [sym_sizeof_expression] = STATE(751), - [sym_subscript_expression] = STATE(751), - [sym_call_expression] = STATE(751), - [sym_field_expression] = STATE(751), - [sym_compound_literal_expression] = STATE(751), - [sym_parenthesized_expression] = STATE(751), - [sym_char_literal] = STATE(751), - [sym_concatenated_string] = STATE(751), - [sym_string_literal] = STATE(318), - [anon_sym_LPAREN2] = ACTIONS(742), - [anon_sym_STAR] = ACTIONS(744), - [anon_sym_AMP] = ACTIONS(744), - [anon_sym_BANG] = ACTIONS(746), - [anon_sym_TILDE] = ACTIONS(748), - [anon_sym_PLUS] = ACTIONS(750), - [anon_sym_DASH] = ACTIONS(750), - [anon_sym_DASH_DASH] = ACTIONS(752), - [anon_sym_PLUS_PLUS] = ACTIONS(752), - [anon_sym_sizeof] = ACTIONS(754), - [sym_number_literal] = ACTIONS(1942), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(1944), - [sym_false] = ACTIONS(1944), - [sym_null] = ACTIONS(1944), - [sym_identifier] = ACTIONS(1944), - [sym_comment] = ACTIONS(37), + [sym_parameter_list] = STATE(539), + [anon_sym_SEMI] = ACTIONS(1884), + [anon_sym_COMMA] = ACTIONS(1884), + [anon_sym_RPAREN] = ACTIONS(1884), + [anon_sym_LPAREN2] = ACTIONS(441), + [anon_sym_LBRACK] = ACTIONS(1373), + [anon_sym_COLON] = ACTIONS(1884), + [sym_comment] = ACTIONS(59), }, [526] = { - [sym__expression] = STATE(752), - [sym_conditional_expression] = STATE(752), - [sym_assignment_expression] = STATE(752), - [sym_pointer_expression] = STATE(752), - [sym_logical_expression] = STATE(752), - [sym_bitwise_expression] = STATE(752), - [sym_equality_expression] = STATE(752), - [sym_relational_expression] = STATE(752), - [sym_shift_expression] = STATE(752), - [sym_math_expression] = STATE(752), - [sym_cast_expression] = STATE(752), - [sym_sizeof_expression] = STATE(752), - [sym_subscript_expression] = STATE(752), - [sym_call_expression] = STATE(752), - [sym_field_expression] = STATE(752), - [sym_compound_literal_expression] = STATE(752), - [sym_parenthesized_expression] = STATE(752), - [sym_char_literal] = STATE(752), - [sym_concatenated_string] = STATE(752), - [sym_string_literal] = STATE(318), - [anon_sym_LPAREN2] = ACTIONS(742), - [anon_sym_STAR] = ACTIONS(744), - [anon_sym_AMP] = ACTIONS(744), - [anon_sym_BANG] = ACTIONS(746), - [anon_sym_TILDE] = ACTIONS(748), - [anon_sym_PLUS] = ACTIONS(750), - [anon_sym_DASH] = ACTIONS(750), - [anon_sym_DASH_DASH] = ACTIONS(752), - [anon_sym_PLUS_PLUS] = ACTIONS(752), - [anon_sym_sizeof] = ACTIONS(754), - [sym_number_literal] = ACTIONS(1946), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(1948), - [sym_false] = ACTIONS(1948), - [sym_null] = ACTIONS(1948), - [sym_identifier] = ACTIONS(1948), - [sym_comment] = ACTIONS(37), + [sym__field_declarator] = STATE(711), + [sym_pointer_field_declarator] = STATE(711), + [sym_function_field_declarator] = STATE(711), + [sym_array_field_declarator] = STATE(711), + [sym_type_qualifier] = STATE(345), + [aux_sym_type_definition_repeat1] = STATE(345), + [anon_sym_LPAREN2] = ACTIONS(875), + [anon_sym_STAR] = ACTIONS(877), + [anon_sym_const] = ACTIONS(27), + [anon_sym_restrict] = ACTIONS(27), + [anon_sym_volatile] = ACTIONS(27), + [anon_sym__Atomic] = ACTIONS(27), + [sym_identifier] = ACTIONS(1347), + [sym_comment] = ACTIONS(59), }, [527] = { - [sym__expression] = STATE(753), - [sym_conditional_expression] = STATE(753), - [sym_assignment_expression] = STATE(753), - [sym_pointer_expression] = STATE(753), - [sym_logical_expression] = STATE(753), - [sym_bitwise_expression] = STATE(753), - [sym_equality_expression] = STATE(753), - [sym_relational_expression] = STATE(753), - [sym_shift_expression] = STATE(753), - [sym_math_expression] = STATE(753), - [sym_cast_expression] = STATE(753), - [sym_sizeof_expression] = STATE(753), - [sym_subscript_expression] = STATE(753), - [sym_call_expression] = STATE(753), - [sym_field_expression] = STATE(753), - [sym_compound_literal_expression] = STATE(753), - [sym_parenthesized_expression] = STATE(753), - [sym_char_literal] = STATE(753), - [sym_concatenated_string] = STATE(753), - [sym_string_literal] = STATE(318), - [anon_sym_LPAREN2] = ACTIONS(742), - [anon_sym_STAR] = ACTIONS(744), - [anon_sym_AMP] = ACTIONS(744), - [anon_sym_BANG] = ACTIONS(746), - [anon_sym_TILDE] = ACTIONS(748), - [anon_sym_PLUS] = ACTIONS(750), - [anon_sym_DASH] = ACTIONS(750), - [anon_sym_DASH_DASH] = ACTIONS(752), - [anon_sym_PLUS_PLUS] = ACTIONS(752), - [anon_sym_sizeof] = ACTIONS(754), - [sym_number_literal] = ACTIONS(1950), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(1952), - [sym_false] = ACTIONS(1952), - [sym_null] = ACTIONS(1952), - [sym_identifier] = ACTIONS(1952), - [sym_comment] = ACTIONS(37), + [sym_type_qualifier] = STATE(56), + [sym__type_specifier] = STATE(51), + [sym_sized_type_specifier] = STATE(51), + [sym_enum_specifier] = STATE(51), + [sym_struct_specifier] = STATE(51), + [sym_union_specifier] = STATE(51), + [sym__expression] = STATE(52), + [sym_comma_expression] = STATE(53), + [sym_conditional_expression] = STATE(52), + [sym_assignment_expression] = STATE(52), + [sym_pointer_expression] = STATE(52), + [sym_logical_expression] = STATE(52), + [sym_bitwise_expression] = STATE(52), + [sym_equality_expression] = STATE(52), + [sym_relational_expression] = STATE(52), + [sym_shift_expression] = STATE(52), + [sym_math_expression] = STATE(52), + [sym_cast_expression] = STATE(52), + [sym_type_descriptor] = STATE(712), + [sym_sizeof_expression] = STATE(52), + [sym_subscript_expression] = STATE(52), + [sym_call_expression] = STATE(52), + [sym_field_expression] = STATE(52), + [sym_compound_literal_expression] = STATE(52), + [sym_parenthesized_expression] = STATE(52), + [sym_char_literal] = STATE(52), + [sym_concatenated_string] = STATE(52), + [sym_string_literal] = STATE(55), + [sym_macro_type_specifier] = STATE(51), + [aux_sym_type_definition_repeat1] = STATE(56), + [aux_sym_sized_type_specifier_repeat1] = STATE(57), + [anon_sym_LPAREN2] = ACTIONS(85), + [anon_sym_STAR] = ACTIONS(87), + [anon_sym_const] = ACTIONS(27), + [anon_sym_restrict] = ACTIONS(27), + [anon_sym_volatile] = ACTIONS(27), + [anon_sym__Atomic] = ACTIONS(27), + [anon_sym_unsigned] = ACTIONS(89), + [anon_sym_long] = ACTIONS(89), + [anon_sym_short] = ACTIONS(89), + [sym_primitive_type] = ACTIONS(91), + [anon_sym_enum] = ACTIONS(33), + [anon_sym_struct] = ACTIONS(35), + [anon_sym_union] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_PLUS] = ACTIONS(97), + [anon_sym_DASH] = ACTIONS(97), + [anon_sym_DASH_DASH] = ACTIONS(99), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(105), + [sym_false] = ACTIONS(105), + [sym_null] = ACTIONS(105), + [sym_identifier] = ACTIONS(107), + [sym_comment] = ACTIONS(59), }, [528] = { - [sym__expression] = STATE(754), - [sym_conditional_expression] = STATE(754), - [sym_assignment_expression] = STATE(754), - [sym_pointer_expression] = STATE(754), - [sym_logical_expression] = STATE(754), - [sym_bitwise_expression] = STATE(754), - [sym_equality_expression] = STATE(754), - [sym_relational_expression] = STATE(754), - [sym_shift_expression] = STATE(754), - [sym_math_expression] = STATE(754), - [sym_cast_expression] = STATE(754), - [sym_sizeof_expression] = STATE(754), - [sym_subscript_expression] = STATE(754), - [sym_call_expression] = STATE(754), - [sym_field_expression] = STATE(754), - [sym_compound_literal_expression] = STATE(754), - [sym_parenthesized_expression] = STATE(754), - [sym_char_literal] = STATE(754), - [sym_concatenated_string] = STATE(754), - [sym_string_literal] = STATE(318), - [anon_sym_LPAREN2] = ACTIONS(742), - [anon_sym_STAR] = ACTIONS(744), - [anon_sym_AMP] = ACTIONS(744), - [anon_sym_BANG] = ACTIONS(746), - [anon_sym_TILDE] = ACTIONS(748), - [anon_sym_PLUS] = ACTIONS(750), - [anon_sym_DASH] = ACTIONS(750), - [anon_sym_DASH_DASH] = ACTIONS(752), - [anon_sym_PLUS_PLUS] = ACTIONS(752), - [anon_sym_sizeof] = ACTIONS(754), - [sym_number_literal] = ACTIONS(1954), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(1956), - [sym_false] = ACTIONS(1956), - [sym_null] = ACTIONS(1956), - [sym_identifier] = ACTIONS(1956), - [sym_comment] = ACTIONS(37), + [sym__expression] = STATE(58), + [sym_conditional_expression] = STATE(58), + [sym_assignment_expression] = STATE(58), + [sym_pointer_expression] = STATE(58), + [sym_logical_expression] = STATE(58), + [sym_bitwise_expression] = STATE(58), + [sym_equality_expression] = STATE(58), + [sym_relational_expression] = STATE(58), + [sym_shift_expression] = STATE(58), + [sym_math_expression] = STATE(58), + [sym_cast_expression] = STATE(58), + [sym_sizeof_expression] = STATE(58), + [sym_subscript_expression] = STATE(58), + [sym_call_expression] = STATE(58), + [sym_field_expression] = STATE(58), + [sym_compound_literal_expression] = STATE(58), + [sym_parenthesized_expression] = STATE(58), + [sym_char_literal] = STATE(58), + [sym_concatenated_string] = STATE(58), + [sym_string_literal] = STATE(534), + [anon_sym_LPAREN2] = ACTIONS(1349), + [anon_sym_STAR] = ACTIONS(1351), + [anon_sym_AMP] = ACTIONS(1351), + [anon_sym_BANG] = ACTIONS(1353), + [anon_sym_TILDE] = ACTIONS(1355), + [anon_sym_PLUS] = ACTIONS(1357), + [anon_sym_DASH] = ACTIONS(1357), + [anon_sym_DASH_DASH] = ACTIONS(1359), + [anon_sym_PLUS_PLUS] = ACTIONS(1359), + [anon_sym_sizeof] = ACTIONS(1361), + [sym_number_literal] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(111), + [sym_false] = ACTIONS(111), + [sym_null] = ACTIONS(111), + [sym_identifier] = ACTIONS(111), + [sym_comment] = ACTIONS(59), }, [529] = { - [sym_string_literal] = STATE(755), - [aux_sym_concatenated_string_repeat1] = STATE(755), - [anon_sym_COMMA] = ACTIONS(1655), - [anon_sym_RBRACE] = ACTIONS(1655), - [anon_sym_LPAREN2] = ACTIONS(1655), - [anon_sym_STAR] = ACTIONS(1657), - [anon_sym_LBRACK] = ACTIONS(1655), - [anon_sym_EQ] = ACTIONS(1657), - [anon_sym_QMARK] = ACTIONS(1655), - [anon_sym_STAR_EQ] = ACTIONS(1655), - [anon_sym_SLASH_EQ] = ACTIONS(1655), - [anon_sym_PERCENT_EQ] = ACTIONS(1655), - [anon_sym_PLUS_EQ] = ACTIONS(1655), - [anon_sym_DASH_EQ] = ACTIONS(1655), - [anon_sym_LT_LT_EQ] = ACTIONS(1655), - [anon_sym_GT_GT_EQ] = ACTIONS(1655), - [anon_sym_AMP_EQ] = ACTIONS(1655), - [anon_sym_CARET_EQ] = ACTIONS(1655), - [anon_sym_PIPE_EQ] = ACTIONS(1655), - [anon_sym_AMP] = ACTIONS(1657), - [anon_sym_PIPE_PIPE] = ACTIONS(1655), - [anon_sym_AMP_AMP] = ACTIONS(1655), - [anon_sym_PIPE] = ACTIONS(1657), - [anon_sym_CARET] = ACTIONS(1657), - [anon_sym_EQ_EQ] = ACTIONS(1655), - [anon_sym_BANG_EQ] = ACTIONS(1655), - [anon_sym_LT] = ACTIONS(1657), - [anon_sym_GT] = ACTIONS(1657), - [anon_sym_LT_EQ] = ACTIONS(1655), - [anon_sym_GT_EQ] = ACTIONS(1655), - [anon_sym_LT_LT] = ACTIONS(1657), - [anon_sym_GT_GT] = ACTIONS(1657), - [anon_sym_PLUS] = ACTIONS(1657), - [anon_sym_DASH] = ACTIONS(1657), - [anon_sym_SLASH] = ACTIONS(1657), - [anon_sym_PERCENT] = ACTIONS(1657), - [anon_sym_DASH_DASH] = ACTIONS(1655), - [anon_sym_PLUS_PLUS] = ACTIONS(1655), - [anon_sym_DOT] = ACTIONS(1655), - [anon_sym_DASH_GT] = ACTIONS(1655), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_comment] = ACTIONS(37), + [sym__expression] = STATE(67), + [sym_conditional_expression] = STATE(67), + [sym_assignment_expression] = STATE(67), + [sym_pointer_expression] = STATE(67), + [sym_logical_expression] = STATE(67), + [sym_bitwise_expression] = STATE(67), + [sym_equality_expression] = STATE(67), + [sym_relational_expression] = STATE(67), + [sym_shift_expression] = STATE(67), + [sym_math_expression] = STATE(67), + [sym_cast_expression] = STATE(67), + [sym_sizeof_expression] = STATE(67), + [sym_subscript_expression] = STATE(67), + [sym_call_expression] = STATE(67), + [sym_field_expression] = STATE(67), + [sym_compound_literal_expression] = STATE(67), + [sym_parenthesized_expression] = STATE(67), + [sym_char_literal] = STATE(67), + [sym_concatenated_string] = STATE(67), + [sym_string_literal] = STATE(534), + [anon_sym_LPAREN2] = ACTIONS(1349), + [anon_sym_STAR] = ACTIONS(1351), + [anon_sym_AMP] = ACTIONS(1351), + [anon_sym_BANG] = ACTIONS(1353), + [anon_sym_TILDE] = ACTIONS(1355), + [anon_sym_PLUS] = ACTIONS(1357), + [anon_sym_DASH] = ACTIONS(1357), + [anon_sym_DASH_DASH] = ACTIONS(1359), + [anon_sym_PLUS_PLUS] = ACTIONS(1359), + [anon_sym_sizeof] = ACTIONS(1361), + [sym_number_literal] = ACTIONS(129), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(131), + [sym_false] = ACTIONS(131), + [sym_null] = ACTIONS(131), + [sym_identifier] = ACTIONS(131), + [sym_comment] = ACTIONS(59), }, [530] = { - [anon_sym_COMMA] = ACTIONS(1958), - [anon_sym_RPAREN] = ACTIONS(1958), - [anon_sym_SEMI] = ACTIONS(1958), - [anon_sym_extern] = ACTIONS(1960), - [anon_sym_LPAREN2] = ACTIONS(1958), - [anon_sym_STAR] = ACTIONS(1958), - [anon_sym_LBRACK] = ACTIONS(1958), - [anon_sym_RBRACK] = ACTIONS(1958), - [anon_sym_static] = ACTIONS(1960), - [anon_sym_auto] = ACTIONS(1960), - [anon_sym_register] = ACTIONS(1960), - [anon_sym_inline] = ACTIONS(1960), - [anon_sym_const] = ACTIONS(1960), - [anon_sym_restrict] = ACTIONS(1960), - [anon_sym_volatile] = ACTIONS(1960), - [anon_sym__Atomic] = ACTIONS(1960), - [anon_sym_COLON] = ACTIONS(1958), - [anon_sym_AMP] = ACTIONS(1958), - [anon_sym_BANG] = ACTIONS(1958), - [anon_sym_TILDE] = ACTIONS(1958), - [anon_sym_PLUS] = ACTIONS(1960), - [anon_sym_DASH] = ACTIONS(1960), - [anon_sym_DASH_DASH] = ACTIONS(1958), - [anon_sym_PLUS_PLUS] = ACTIONS(1958), - [anon_sym_sizeof] = ACTIONS(1960), - [sym_number_literal] = ACTIONS(1958), - [anon_sym_SQUOTE] = ACTIONS(1958), - [anon_sym_DQUOTE] = ACTIONS(1958), - [sym_true] = ACTIONS(1960), - [sym_false] = ACTIONS(1960), - [sym_null] = ACTIONS(1960), - [sym_identifier] = ACTIONS(1960), - [sym_comment] = ACTIONS(37), + [sym__expression] = STATE(68), + [sym_conditional_expression] = STATE(68), + [sym_assignment_expression] = STATE(68), + [sym_pointer_expression] = STATE(68), + [sym_logical_expression] = STATE(68), + [sym_bitwise_expression] = STATE(68), + [sym_equality_expression] = STATE(68), + [sym_relational_expression] = STATE(68), + [sym_shift_expression] = STATE(68), + [sym_math_expression] = STATE(68), + [sym_cast_expression] = STATE(68), + [sym_sizeof_expression] = STATE(68), + [sym_subscript_expression] = STATE(68), + [sym_call_expression] = STATE(68), + [sym_field_expression] = STATE(68), + [sym_compound_literal_expression] = STATE(68), + [sym_parenthesized_expression] = STATE(68), + [sym_char_literal] = STATE(68), + [sym_concatenated_string] = STATE(68), + [sym_string_literal] = STATE(534), + [anon_sym_LPAREN2] = ACTIONS(1349), + [anon_sym_STAR] = ACTIONS(1351), + [anon_sym_AMP] = ACTIONS(1351), + [anon_sym_BANG] = ACTIONS(1353), + [anon_sym_TILDE] = ACTIONS(1355), + [anon_sym_PLUS] = ACTIONS(1357), + [anon_sym_DASH] = ACTIONS(1357), + [anon_sym_DASH_DASH] = ACTIONS(1359), + [anon_sym_PLUS_PLUS] = ACTIONS(1359), + [anon_sym_sizeof] = ACTIONS(1361), + [sym_number_literal] = ACTIONS(133), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(135), + [sym_false] = ACTIONS(135), + [sym_null] = ACTIONS(135), + [sym_identifier] = ACTIONS(135), + [sym_comment] = ACTIONS(59), }, [531] = { - [sym_enumerator] = STATE(320), - [sym_identifier] = ACTIONS(175), - [sym_comment] = ACTIONS(37), + [sym__expression] = STATE(69), + [sym_conditional_expression] = STATE(69), + [sym_assignment_expression] = STATE(69), + [sym_pointer_expression] = STATE(69), + [sym_logical_expression] = STATE(69), + [sym_bitwise_expression] = STATE(69), + [sym_equality_expression] = STATE(69), + [sym_relational_expression] = STATE(69), + [sym_shift_expression] = STATE(69), + [sym_math_expression] = STATE(69), + [sym_cast_expression] = STATE(69), + [sym_sizeof_expression] = STATE(69), + [sym_subscript_expression] = STATE(69), + [sym_call_expression] = STATE(69), + [sym_field_expression] = STATE(69), + [sym_compound_literal_expression] = STATE(69), + [sym_parenthesized_expression] = STATE(69), + [sym_char_literal] = STATE(69), + [sym_concatenated_string] = STATE(69), + [sym_string_literal] = STATE(534), + [anon_sym_LPAREN2] = ACTIONS(1349), + [anon_sym_STAR] = ACTIONS(1351), + [anon_sym_AMP] = ACTIONS(1351), + [anon_sym_BANG] = ACTIONS(1353), + [anon_sym_TILDE] = ACTIONS(1355), + [anon_sym_PLUS] = ACTIONS(1357), + [anon_sym_DASH] = ACTIONS(1357), + [anon_sym_DASH_DASH] = ACTIONS(1359), + [anon_sym_PLUS_PLUS] = ACTIONS(1359), + [anon_sym_sizeof] = ACTIONS(1361), + [sym_number_literal] = ACTIONS(137), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(139), + [sym_false] = ACTIONS(139), + [sym_null] = ACTIONS(139), + [sym_identifier] = ACTIONS(139), + [sym_comment] = ACTIONS(59), }, [532] = { - [sym_preproc_if_in_field_declaration_list] = STATE(756), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(756), - [sym__declaration_specifiers] = STATE(97), - [sym_storage_class_specifier] = STATE(100), - [sym_type_qualifier] = STATE(100), - [sym__type_specifier] = STATE(98), - [sym_sized_type_specifier] = STATE(98), - [sym_enum_specifier] = STATE(98), - [sym_struct_specifier] = STATE(98), - [sym_union_specifier] = STATE(98), - [sym__field_declaration_list_item] = STATE(756), - [sym_field_declaration] = STATE(756), - [sym_macro_type_specifier] = STATE(98), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(756), - [aux_sym__declaration_specifiers_repeat1] = STATE(100), - [aux_sym_sized_type_specifier_repeat1] = STATE(101), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(185), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1962), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(187), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(187), - [anon_sym_extern] = ACTIONS(21), - [anon_sym_static] = ACTIONS(21), - [anon_sym_auto] = ACTIONS(21), - [anon_sym_register] = ACTIONS(21), - [anon_sym_inline] = ACTIONS(21), - [anon_sym_const] = ACTIONS(23), - [anon_sym_restrict] = ACTIONS(23), - [anon_sym_volatile] = ACTIONS(23), - [anon_sym__Atomic] = ACTIONS(23), - [anon_sym_unsigned] = ACTIONS(191), - [anon_sym_long] = ACTIONS(191), - [anon_sym_short] = ACTIONS(191), - [sym_primitive_type] = ACTIONS(193), - [anon_sym_enum] = ACTIONS(29), - [anon_sym_struct] = ACTIONS(31), - [anon_sym_union] = ACTIONS(33), - [sym_identifier] = ACTIONS(35), - [sym_comment] = ACTIONS(37), + [sym__expression] = STATE(714), + [sym_conditional_expression] = STATE(714), + [sym_assignment_expression] = STATE(714), + [sym_pointer_expression] = STATE(714), + [sym_logical_expression] = STATE(714), + [sym_bitwise_expression] = STATE(714), + [sym_equality_expression] = STATE(714), + [sym_relational_expression] = STATE(714), + [sym_shift_expression] = STATE(714), + [sym_math_expression] = STATE(714), + [sym_cast_expression] = STATE(714), + [sym_sizeof_expression] = STATE(714), + [sym_subscript_expression] = STATE(714), + [sym_call_expression] = STATE(714), + [sym_field_expression] = STATE(714), + [sym_compound_literal_expression] = STATE(714), + [sym_parenthesized_expression] = STATE(714), + [sym_char_literal] = STATE(714), + [sym_concatenated_string] = STATE(714), + [sym_string_literal] = STATE(534), + [anon_sym_LPAREN2] = ACTIONS(1886), + [anon_sym_STAR] = ACTIONS(1351), + [anon_sym_AMP] = ACTIONS(1351), + [anon_sym_BANG] = ACTIONS(1353), + [anon_sym_TILDE] = ACTIONS(1355), + [anon_sym_PLUS] = ACTIONS(1357), + [anon_sym_DASH] = ACTIONS(1357), + [anon_sym_DASH_DASH] = ACTIONS(1359), + [anon_sym_PLUS_PLUS] = ACTIONS(1359), + [anon_sym_sizeof] = ACTIONS(1361), + [sym_number_literal] = ACTIONS(1888), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(1890), + [sym_false] = ACTIONS(1890), + [sym_null] = ACTIONS(1890), + [sym_identifier] = ACTIONS(1890), + [sym_comment] = ACTIONS(59), }, [533] = { - [sym_preproc_if_in_field_declaration_list] = STATE(758), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(758), - [sym_preproc_else_in_field_declaration_list] = STATE(757), - [sym_preproc_elif_in_field_declaration_list] = STATE(757), - [sym__declaration_specifiers] = STATE(97), - [sym_storage_class_specifier] = STATE(100), - [sym_type_qualifier] = STATE(100), - [sym__type_specifier] = STATE(98), - [sym_sized_type_specifier] = STATE(98), - [sym_enum_specifier] = STATE(98), - [sym_struct_specifier] = STATE(98), - [sym_union_specifier] = STATE(98), - [sym__field_declaration_list_item] = STATE(758), - [sym_field_declaration] = STATE(758), - [sym_macro_type_specifier] = STATE(98), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(758), - [aux_sym__declaration_specifiers_repeat1] = STATE(100), - [aux_sym_sized_type_specifier_repeat1] = STATE(101), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(185), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1964), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(187), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(187), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(766), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(768), - [anon_sym_extern] = ACTIONS(21), - [anon_sym_static] = ACTIONS(21), - [anon_sym_auto] = ACTIONS(21), - [anon_sym_register] = ACTIONS(21), - [anon_sym_inline] = ACTIONS(21), - [anon_sym_const] = ACTIONS(23), - [anon_sym_restrict] = ACTIONS(23), - [anon_sym_volatile] = ACTIONS(23), - [anon_sym__Atomic] = ACTIONS(23), - [anon_sym_unsigned] = ACTIONS(191), - [anon_sym_long] = ACTIONS(191), - [anon_sym_short] = ACTIONS(191), - [sym_primitive_type] = ACTIONS(193), - [anon_sym_enum] = ACTIONS(29), - [anon_sym_struct] = ACTIONS(31), - [anon_sym_union] = ACTIONS(33), - [sym_identifier] = ACTIONS(35), - [sym_comment] = ACTIONS(37), + [sym_argument_list] = STATE(98), + [anon_sym_SEMI] = ACTIONS(1892), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_LBRACK] = ACTIONS(188), + [anon_sym_EQ] = ACTIONS(1896), + [anon_sym_QMARK] = ACTIONS(1898), + [anon_sym_STAR_EQ] = ACTIONS(1900), + [anon_sym_SLASH_EQ] = ACTIONS(1900), + [anon_sym_PERCENT_EQ] = ACTIONS(1900), + [anon_sym_PLUS_EQ] = ACTIONS(1900), + [anon_sym_DASH_EQ] = ACTIONS(1900), + [anon_sym_LT_LT_EQ] = ACTIONS(1900), + [anon_sym_GT_GT_EQ] = ACTIONS(1900), + [anon_sym_AMP_EQ] = ACTIONS(1900), + [anon_sym_CARET_EQ] = ACTIONS(1900), + [anon_sym_PIPE_EQ] = ACTIONS(1900), + [anon_sym_AMP] = ACTIONS(1902), + [anon_sym_PIPE_PIPE] = ACTIONS(1904), + [anon_sym_AMP_AMP] = ACTIONS(1906), + [anon_sym_PIPE] = ACTIONS(1908), + [anon_sym_CARET] = ACTIONS(1910), + [anon_sym_EQ_EQ] = ACTIONS(1912), + [anon_sym_BANG_EQ] = ACTIONS(1912), + [anon_sym_LT] = ACTIONS(1914), + [anon_sym_GT] = ACTIONS(1914), + [anon_sym_LT_EQ] = ACTIONS(1916), + [anon_sym_GT_EQ] = ACTIONS(1916), + [anon_sym_LT_LT] = ACTIONS(1918), + [anon_sym_GT_GT] = ACTIONS(1918), + [anon_sym_PLUS] = ACTIONS(1920), + [anon_sym_DASH] = ACTIONS(1920), + [anon_sym_SLASH] = ACTIONS(1894), + [anon_sym_PERCENT] = ACTIONS(1894), + [anon_sym_DASH_DASH] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(216), + [anon_sym_DOT] = ACTIONS(218), + [anon_sym_DASH_GT] = ACTIONS(218), + [sym_comment] = ACTIONS(59), }, [534] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1966), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1968), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1968), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1968), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1968), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1968), - [anon_sym_extern] = ACTIONS(1966), - [anon_sym_RBRACE] = ACTIONS(1968), - [anon_sym_static] = ACTIONS(1966), - [anon_sym_auto] = ACTIONS(1966), - [anon_sym_register] = ACTIONS(1966), - [anon_sym_inline] = ACTIONS(1966), - [anon_sym_const] = ACTIONS(1966), - [anon_sym_restrict] = ACTIONS(1966), - [anon_sym_volatile] = ACTIONS(1966), - [anon_sym__Atomic] = ACTIONS(1966), - [anon_sym_unsigned] = ACTIONS(1966), - [anon_sym_long] = ACTIONS(1966), - [anon_sym_short] = ACTIONS(1966), - [sym_primitive_type] = ACTIONS(1966), - [anon_sym_enum] = ACTIONS(1966), - [anon_sym_struct] = ACTIONS(1966), - [anon_sym_union] = ACTIONS(1966), - [sym_identifier] = ACTIONS(1966), - [sym_comment] = ACTIONS(37), + [sym_string_literal] = STATE(728), + [aux_sym_concatenated_string_repeat1] = STATE(728), + [anon_sym_SEMI] = ACTIONS(166), + [anon_sym_LPAREN2] = ACTIONS(166), + [anon_sym_STAR] = ACTIONS(168), + [anon_sym_LBRACK] = ACTIONS(166), + [anon_sym_EQ] = ACTIONS(168), + [anon_sym_QMARK] = ACTIONS(166), + [anon_sym_STAR_EQ] = ACTIONS(166), + [anon_sym_SLASH_EQ] = ACTIONS(166), + [anon_sym_PERCENT_EQ] = ACTIONS(166), + [anon_sym_PLUS_EQ] = ACTIONS(166), + [anon_sym_DASH_EQ] = ACTIONS(166), + [anon_sym_LT_LT_EQ] = ACTIONS(166), + [anon_sym_GT_GT_EQ] = ACTIONS(166), + [anon_sym_AMP_EQ] = ACTIONS(166), + [anon_sym_CARET_EQ] = ACTIONS(166), + [anon_sym_PIPE_EQ] = ACTIONS(166), + [anon_sym_AMP] = ACTIONS(168), + [anon_sym_PIPE_PIPE] = ACTIONS(166), + [anon_sym_AMP_AMP] = ACTIONS(166), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_CARET] = ACTIONS(168), + [anon_sym_EQ_EQ] = ACTIONS(166), + [anon_sym_BANG_EQ] = ACTIONS(166), + [anon_sym_LT] = ACTIONS(168), + [anon_sym_GT] = ACTIONS(168), + [anon_sym_LT_EQ] = ACTIONS(166), + [anon_sym_GT_EQ] = ACTIONS(166), + [anon_sym_LT_LT] = ACTIONS(168), + [anon_sym_GT_GT] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(168), + [anon_sym_DASH] = ACTIONS(168), + [anon_sym_SLASH] = ACTIONS(168), + [anon_sym_PERCENT] = ACTIONS(168), + [anon_sym_DASH_DASH] = ACTIONS(166), + [anon_sym_PLUS_PLUS] = ACTIONS(166), + [anon_sym_DOT] = ACTIONS(166), + [anon_sym_DASH_GT] = ACTIONS(166), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_comment] = ACTIONS(59), }, [535] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1970), - [sym_comment] = ACTIONS(37), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1922), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1924), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1924), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1924), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1924), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1924), + [anon_sym_extern] = ACTIONS(1922), + [anon_sym_RBRACE] = ACTIONS(1924), + [anon_sym_static] = ACTIONS(1922), + [anon_sym_auto] = ACTIONS(1922), + [anon_sym_register] = ACTIONS(1922), + [anon_sym_inline] = ACTIONS(1922), + [anon_sym_const] = ACTIONS(1922), + [anon_sym_restrict] = ACTIONS(1922), + [anon_sym_volatile] = ACTIONS(1922), + [anon_sym__Atomic] = ACTIONS(1922), + [anon_sym_unsigned] = ACTIONS(1922), + [anon_sym_long] = ACTIONS(1922), + [anon_sym_short] = ACTIONS(1922), + [sym_primitive_type] = ACTIONS(1922), + [anon_sym_enum] = ACTIONS(1922), + [anon_sym_struct] = ACTIONS(1922), + [anon_sym_union] = ACTIONS(1922), + [sym_identifier] = ACTIONS(1922), + [sym_comment] = ACTIONS(59), }, [536] = { - [sym_preproc_if_in_field_declaration_list] = STATE(536), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(536), - [sym__declaration_specifiers] = STATE(97), - [sym_storage_class_specifier] = STATE(100), - [sym_type_qualifier] = STATE(100), - [sym__type_specifier] = STATE(98), - [sym_sized_type_specifier] = STATE(98), - [sym_enum_specifier] = STATE(98), - [sym_struct_specifier] = STATE(98), - [sym_union_specifier] = STATE(98), - [sym__field_declaration_list_item] = STATE(536), - [sym_field_declaration] = STATE(536), - [sym_macro_type_specifier] = STATE(98), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(536), - [aux_sym__declaration_specifiers_repeat1] = STATE(100), - [aux_sym_sized_type_specifier_repeat1] = STATE(101), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(812), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(821), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(815), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(815), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(821), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(821), - [anon_sym_extern] = ACTIONS(818), - [anon_sym_static] = ACTIONS(818), - [anon_sym_auto] = ACTIONS(818), - [anon_sym_register] = ACTIONS(818), - [anon_sym_inline] = ACTIONS(818), - [anon_sym_const] = ACTIONS(823), - [anon_sym_restrict] = ACTIONS(823), - [anon_sym_volatile] = ACTIONS(823), - [anon_sym__Atomic] = ACTIONS(823), - [anon_sym_unsigned] = ACTIONS(826), - [anon_sym_long] = ACTIONS(826), - [anon_sym_short] = ACTIONS(826), - [sym_primitive_type] = ACTIONS(829), - [anon_sym_enum] = ACTIONS(832), - [anon_sym_struct] = ACTIONS(835), - [anon_sym_union] = ACTIONS(838), - [sym_identifier] = ACTIONS(841), - [sym_comment] = ACTIONS(37), + [sym__field_declarator] = STATE(729), + [sym_pointer_field_declarator] = STATE(729), + [sym_function_field_declarator] = STATE(729), + [sym_array_field_declarator] = STATE(729), + [anon_sym_LPAREN2] = ACTIONS(875), + [anon_sym_STAR] = ACTIONS(877), + [sym_identifier] = ACTIONS(881), + [sym_comment] = ACTIONS(59), }, [537] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1972), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1974), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1974), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1974), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1974), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1974), - [anon_sym_extern] = ACTIONS(1972), - [anon_sym_RBRACE] = ACTIONS(1974), - [anon_sym_static] = ACTIONS(1972), - [anon_sym_auto] = ACTIONS(1972), - [anon_sym_register] = ACTIONS(1972), - [anon_sym_inline] = ACTIONS(1972), - [anon_sym_const] = ACTIONS(1972), - [anon_sym_restrict] = ACTIONS(1972), - [anon_sym_volatile] = ACTIONS(1972), - [anon_sym__Atomic] = ACTIONS(1972), - [anon_sym_unsigned] = ACTIONS(1972), - [anon_sym_long] = ACTIONS(1972), - [anon_sym_short] = ACTIONS(1972), - [sym_primitive_type] = ACTIONS(1972), - [anon_sym_enum] = ACTIONS(1972), - [anon_sym_struct] = ACTIONS(1972), - [anon_sym_union] = ACTIONS(1972), - [sym_identifier] = ACTIONS(1972), - [sym_comment] = ACTIONS(37), + [sym__declaration_specifiers] = STATE(731), + [sym_storage_class_specifier] = STATE(301), + [sym_type_qualifier] = STATE(301), + [sym__type_specifier] = STATE(299), + [sym_sized_type_specifier] = STATE(299), + [sym_enum_specifier] = STATE(299), + [sym_struct_specifier] = STATE(299), + [sym_union_specifier] = STATE(299), + [sym__expression] = STATE(732), + [sym_conditional_expression] = STATE(732), + [sym_assignment_expression] = STATE(732), + [sym_pointer_expression] = STATE(732), + [sym_logical_expression] = STATE(732), + [sym_bitwise_expression] = STATE(732), + [sym_equality_expression] = STATE(732), + [sym_relational_expression] = STATE(732), + [sym_shift_expression] = STATE(732), + [sym_math_expression] = STATE(732), + [sym_cast_expression] = STATE(732), + [sym_sizeof_expression] = STATE(732), + [sym_subscript_expression] = STATE(732), + [sym_call_expression] = STATE(732), + [sym_field_expression] = STATE(732), + [sym_compound_literal_expression] = STATE(732), + [sym_parenthesized_expression] = STATE(732), + [sym_char_literal] = STATE(732), + [sym_concatenated_string] = STATE(732), + [sym_string_literal] = STATE(214), + [sym_macro_type_specifier] = STATE(299), + [aux_sym__declaration_specifiers_repeat1] = STATE(301), + [aux_sym_sized_type_specifier_repeat1] = STATE(302), + [anon_sym_extern] = ACTIONS(25), + [anon_sym_LPAREN2] = ACTIONS(461), + [anon_sym_STAR] = ACTIONS(463), + [anon_sym_RBRACK] = ACTIONS(1926), + [anon_sym_static] = ACTIONS(25), + [anon_sym_auto] = ACTIONS(25), + [anon_sym_register] = ACTIONS(25), + [anon_sym_inline] = ACTIONS(25), + [anon_sym_const] = ACTIONS(27), + [anon_sym_restrict] = ACTIONS(27), + [anon_sym_volatile] = ACTIONS(27), + [anon_sym__Atomic] = ACTIONS(27), + [anon_sym_unsigned] = ACTIONS(772), + [anon_sym_long] = ACTIONS(772), + [anon_sym_short] = ACTIONS(772), + [sym_primitive_type] = ACTIONS(774), + [anon_sym_enum] = ACTIONS(33), + [anon_sym_struct] = ACTIONS(35), + [anon_sym_union] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(463), + [anon_sym_BANG] = ACTIONS(465), + [anon_sym_TILDE] = ACTIONS(467), + [anon_sym_PLUS] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(469), + [anon_sym_DASH_DASH] = ACTIONS(471), + [anon_sym_PLUS_PLUS] = ACTIONS(471), + [anon_sym_sizeof] = ACTIONS(473), + [sym_number_literal] = ACTIONS(1928), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(1930), + [sym_false] = ACTIONS(1930), + [sym_null] = ACTIONS(1930), + [sym_identifier] = ACTIONS(780), + [sym_comment] = ACTIONS(59), }, [538] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1976), - [sym_comment] = ACTIONS(37), + [sym__expression] = STATE(733), + [sym_conditional_expression] = STATE(733), + [sym_assignment_expression] = STATE(733), + [sym_pointer_expression] = STATE(733), + [sym_logical_expression] = STATE(733), + [sym_bitwise_expression] = STATE(733), + [sym_equality_expression] = STATE(733), + [sym_relational_expression] = STATE(733), + [sym_shift_expression] = STATE(733), + [sym_math_expression] = STATE(733), + [sym_cast_expression] = STATE(733), + [sym_sizeof_expression] = STATE(733), + [sym_subscript_expression] = STATE(733), + [sym_call_expression] = STATE(733), + [sym_field_expression] = STATE(733), + [sym_compound_literal_expression] = STATE(733), + [sym_parenthesized_expression] = STATE(733), + [sym_char_literal] = STATE(733), + [sym_concatenated_string] = STATE(733), + [sym_string_literal] = STATE(534), + [anon_sym_LPAREN2] = ACTIONS(1349), + [anon_sym_STAR] = ACTIONS(1351), + [anon_sym_AMP] = ACTIONS(1351), + [anon_sym_BANG] = ACTIONS(1353), + [anon_sym_TILDE] = ACTIONS(1355), + [anon_sym_PLUS] = ACTIONS(1357), + [anon_sym_DASH] = ACTIONS(1357), + [anon_sym_DASH_DASH] = ACTIONS(1359), + [anon_sym_PLUS_PLUS] = ACTIONS(1359), + [anon_sym_sizeof] = ACTIONS(1361), + [sym_number_literal] = ACTIONS(1932), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(1934), + [sym_false] = ACTIONS(1934), + [sym_null] = ACTIONS(1934), + [sym_identifier] = ACTIONS(1934), + [sym_comment] = ACTIONS(59), }, [539] = { - [sym__field_declarator] = STATE(541), - [sym_pointer_field_declarator] = STATE(541), - [sym_function_field_declarator] = STATE(541), - [sym_array_field_declarator] = STATE(541), - [sym_type_qualifier] = STATE(199), - [aux_sym_type_definition_repeat1] = STATE(199), - [anon_sym_LPAREN2] = ACTIONS(445), - [anon_sym_STAR] = ACTIONS(776), - [anon_sym_const] = ACTIONS(23), - [anon_sym_restrict] = ACTIONS(23), - [anon_sym_volatile] = ACTIONS(23), - [anon_sym__Atomic] = ACTIONS(23), - [sym_identifier] = ACTIONS(778), - [sym_comment] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(1936), + [anon_sym_COMMA] = ACTIONS(1936), + [anon_sym_RPAREN] = ACTIONS(1936), + [anon_sym_LPAREN2] = ACTIONS(1936), + [anon_sym_LBRACK] = ACTIONS(1936), + [anon_sym_COLON] = ACTIONS(1936), + [sym_comment] = ACTIONS(59), }, [540] = { - [anon_sym_COMMA] = ACTIONS(1978), - [anon_sym_RPAREN] = ACTIONS(1978), - [anon_sym_SEMI] = ACTIONS(1978), - [anon_sym_LPAREN2] = ACTIONS(1978), - [anon_sym_LBRACK] = ACTIONS(1978), - [anon_sym_COLON] = ACTIONS(1978), - [sym_comment] = ACTIONS(37), + [aux_sym_field_declaration_repeat1] = STATE(735), + [anon_sym_SEMI] = ACTIONS(1892), + [anon_sym_COMMA] = ACTIONS(1371), + [anon_sym_COLON] = ACTIONS(1938), + [sym_comment] = ACTIONS(59), }, [541] = { - [sym_parameter_list] = STATE(347), - [anon_sym_COMMA] = ACTIONS(1980), - [anon_sym_RPAREN] = ACTIONS(1980), - [anon_sym_SEMI] = ACTIONS(1980), - [anon_sym_LPAREN2] = ACTIONS(231), - [anon_sym_LBRACK] = ACTIONS(804), - [anon_sym_COLON] = ACTIONS(1980), - [sym_comment] = ACTIONS(37), + [sym_storage_class_specifier] = STATE(541), + [sym_type_qualifier] = STATE(541), + [aux_sym__declaration_specifiers_repeat1] = STATE(541), + [anon_sym_SEMI] = ACTIONS(996), + [anon_sym_extern] = ACTIONS(629), + [anon_sym_LPAREN2] = ACTIONS(996), + [anon_sym_STAR] = ACTIONS(996), + [anon_sym_static] = ACTIONS(629), + [anon_sym_auto] = ACTIONS(629), + [anon_sym_register] = ACTIONS(629), + [anon_sym_inline] = ACTIONS(629), + [anon_sym_const] = ACTIONS(632), + [anon_sym_restrict] = ACTIONS(632), + [anon_sym_volatile] = ACTIONS(632), + [anon_sym__Atomic] = ACTIONS(632), + [anon_sym_COLON] = ACTIONS(996), + [sym_identifier] = ACTIONS(635), + [sym_comment] = ACTIONS(59), }, [542] = { - [anon_sym_RPAREN] = ACTIONS(1982), - [sym_comment] = ACTIONS(37), + [sym_storage_class_specifier] = STATE(541), + [sym_type_qualifier] = STATE(541), + [aux_sym__declaration_specifiers_repeat1] = STATE(541), + [anon_sym_SEMI] = ACTIONS(1115), + [anon_sym_extern] = ACTIONS(25), + [anon_sym_LPAREN2] = ACTIONS(1115), + [anon_sym_STAR] = ACTIONS(1115), + [anon_sym_static] = ACTIONS(25), + [anon_sym_auto] = ACTIONS(25), + [anon_sym_register] = ACTIONS(25), + [anon_sym_inline] = ACTIONS(25), + [anon_sym_const] = ACTIONS(27), + [anon_sym_restrict] = ACTIONS(27), + [anon_sym_volatile] = ACTIONS(27), + [anon_sym__Atomic] = ACTIONS(27), + [anon_sym_COLON] = ACTIONS(1115), + [sym_identifier] = ACTIONS(1117), + [sym_comment] = ACTIONS(59), }, [543] = { - [sym_type_qualifier] = STATE(106), - [sym__type_specifier] = STATE(104), - [sym_sized_type_specifier] = STATE(104), - [sym_enum_specifier] = STATE(104), - [sym_struct_specifier] = STATE(104), - [sym_union_specifier] = STATE(104), - [sym__expression] = STATE(371), - [sym_comma_expression] = STATE(372), - [sym_conditional_expression] = STATE(371), - [sym_assignment_expression] = STATE(371), - [sym_pointer_expression] = STATE(371), - [sym_logical_expression] = STATE(371), - [sym_bitwise_expression] = STATE(371), - [sym_equality_expression] = STATE(371), - [sym_relational_expression] = STATE(371), - [sym_shift_expression] = STATE(371), - [sym_math_expression] = STATE(371), - [sym_cast_expression] = STATE(371), - [sym_type_descriptor] = STATE(762), - [sym_sizeof_expression] = STATE(371), - [sym_subscript_expression] = STATE(371), - [sym_call_expression] = STATE(371), - [sym_field_expression] = STATE(371), - [sym_compound_literal_expression] = STATE(371), - [sym_parenthesized_expression] = STATE(371), - [sym_char_literal] = STATE(371), - [sym_concatenated_string] = STATE(371), - [sym_string_literal] = STATE(374), - [sym_macro_type_specifier] = STATE(104), - [aux_sym_type_definition_repeat1] = STATE(106), - [aux_sym_sized_type_specifier_repeat1] = STATE(107), - [anon_sym_LPAREN2] = ACTIONS(892), - [anon_sym_STAR] = ACTIONS(894), - [anon_sym_const] = ACTIONS(23), - [anon_sym_restrict] = ACTIONS(23), - [anon_sym_volatile] = ACTIONS(23), - [anon_sym__Atomic] = ACTIONS(23), - [anon_sym_unsigned] = ACTIONS(211), - [anon_sym_long] = ACTIONS(211), - [anon_sym_short] = ACTIONS(211), - [sym_primitive_type] = ACTIONS(213), - [anon_sym_enum] = ACTIONS(29), - [anon_sym_struct] = ACTIONS(31), - [anon_sym_union] = ACTIONS(33), - [anon_sym_AMP] = ACTIONS(894), - [anon_sym_BANG] = ACTIONS(896), - [anon_sym_TILDE] = ACTIONS(898), - [anon_sym_PLUS] = ACTIONS(900), - [anon_sym_DASH] = ACTIONS(900), - [anon_sym_DASH_DASH] = ACTIONS(902), - [anon_sym_PLUS_PLUS] = ACTIONS(902), - [anon_sym_sizeof] = ACTIONS(904), - [sym_number_literal] = ACTIONS(906), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(908), - [sym_false] = ACTIONS(908), - [sym_null] = ACTIONS(908), - [sym_identifier] = ACTIONS(910), - [sym_comment] = ACTIONS(37), + [sym__declarator] = STATE(344), + [sym_pointer_declarator] = STATE(344), + [sym_function_declarator] = STATE(344), + [sym_array_declarator] = STATE(344), + [sym_type_qualifier] = STATE(345), + [aux_sym_type_definition_repeat1] = STATE(345), + [anon_sym_LPAREN2] = ACTIONS(174), + [anon_sym_STAR] = ACTIONS(924), + [anon_sym_const] = ACTIONS(27), + [anon_sym_restrict] = ACTIONS(27), + [anon_sym_volatile] = ACTIONS(27), + [anon_sym__Atomic] = ACTIONS(27), + [sym_identifier] = ACTIONS(918), + [sym_comment] = ACTIONS(59), }, [544] = { - [sym_argument_list] = STATE(430), - [anon_sym_SEMI] = ACTIONS(1577), - [anon_sym_LPAREN2] = ACTIONS(1012), - [anon_sym_STAR] = ACTIONS(1319), - [anon_sym_LBRACK] = ACTIONS(1016), - [anon_sym_EQ] = ACTIONS(1579), - [anon_sym_QMARK] = ACTIONS(1577), - [anon_sym_STAR_EQ] = ACTIONS(1577), - [anon_sym_SLASH_EQ] = ACTIONS(1577), - [anon_sym_PERCENT_EQ] = ACTIONS(1577), - [anon_sym_PLUS_EQ] = ACTIONS(1577), - [anon_sym_DASH_EQ] = ACTIONS(1577), - [anon_sym_LT_LT_EQ] = ACTIONS(1577), - [anon_sym_GT_GT_EQ] = ACTIONS(1577), - [anon_sym_AMP_EQ] = ACTIONS(1577), - [anon_sym_CARET_EQ] = ACTIONS(1577), - [anon_sym_PIPE_EQ] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(1579), - [anon_sym_PIPE_PIPE] = ACTIONS(1577), - [anon_sym_AMP_AMP] = ACTIONS(1577), - [anon_sym_PIPE] = ACTIONS(1579), - [anon_sym_CARET] = ACTIONS(1579), - [anon_sym_EQ_EQ] = ACTIONS(1577), - [anon_sym_BANG_EQ] = ACTIONS(1577), - [anon_sym_LT] = ACTIONS(1579), - [anon_sym_GT] = ACTIONS(1579), - [anon_sym_LT_EQ] = ACTIONS(1577), - [anon_sym_GT_EQ] = ACTIONS(1577), - [anon_sym_LT_LT] = ACTIONS(1343), - [anon_sym_GT_GT] = ACTIONS(1343), - [anon_sym_PLUS] = ACTIONS(1345), - [anon_sym_DASH] = ACTIONS(1345), - [anon_sym_SLASH] = ACTIONS(1319), - [anon_sym_PERCENT] = ACTIONS(1319), - [anon_sym_DASH_DASH] = ACTIONS(1044), - [anon_sym_PLUS_PLUS] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1046), - [anon_sym_DASH_GT] = ACTIONS(1046), - [sym_comment] = ACTIONS(37), + [sym_preproc_include] = STATE(758), + [sym_preproc_def] = STATE(758), + [sym_preproc_function_def] = STATE(758), + [sym_preproc_call] = STATE(758), + [sym_preproc_if_in_compound_statement] = STATE(758), + [sym_preproc_ifdef_in_compound_statement] = STATE(758), + [sym_preproc_else_in_compound_statement] = STATE(754), + [sym_preproc_elif_in_compound_statement] = STATE(754), + [sym_declaration] = STATE(758), + [sym_type_definition] = STATE(758), + [sym__declaration_specifiers] = STATE(755), + [sym_compound_statement] = STATE(758), + [sym_storage_class_specifier] = STATE(30), + [sym_type_qualifier] = STATE(30), + [sym__type_specifier] = STATE(25), + [sym_sized_type_specifier] = STATE(25), + [sym_enum_specifier] = STATE(25), + [sym_struct_specifier] = STATE(25), + [sym_union_specifier] = STATE(25), + [sym_labeled_statement] = STATE(758), + [sym_expression_statement] = STATE(758), + [sym_if_statement] = STATE(758), + [sym_switch_statement] = STATE(758), + [sym_case_statement] = STATE(758), + [sym_while_statement] = STATE(758), + [sym_do_statement] = STATE(758), + [sym_for_statement] = STATE(758), + [sym_return_statement] = STATE(758), + [sym_break_statement] = STATE(758), + [sym_continue_statement] = STATE(758), + [sym_goto_statement] = STATE(758), + [sym__expression] = STATE(756), + [sym_comma_expression] = STATE(757), + [sym_conditional_expression] = STATE(756), + [sym_assignment_expression] = STATE(756), + [sym_pointer_expression] = STATE(756), + [sym_logical_expression] = STATE(756), + [sym_bitwise_expression] = STATE(756), + [sym_equality_expression] = STATE(756), + [sym_relational_expression] = STATE(756), + [sym_shift_expression] = STATE(756), + [sym_math_expression] = STATE(756), + [sym_cast_expression] = STATE(756), + [sym_sizeof_expression] = STATE(756), + [sym_subscript_expression] = STATE(756), + [sym_call_expression] = STATE(756), + [sym_field_expression] = STATE(756), + [sym_compound_literal_expression] = STATE(756), + [sym_parenthesized_expression] = STATE(756), + [sym_char_literal] = STATE(756), + [sym_concatenated_string] = STATE(756), + [sym_string_literal] = STATE(374), + [sym__empty_declaration] = STATE(758), + [sym_macro_type_specifier] = STATE(25), + [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(758), + [aux_sym__declaration_specifiers_repeat1] = STATE(30), + [aux_sym_sized_type_specifier_repeat1] = STATE(31), + [anon_sym_SEMI] = ACTIONS(1940), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(251), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(253), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1942), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1944), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1946), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1946), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1948), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1950), + [sym_preproc_directive] = ACTIONS(265), + [anon_sym_typedef] = ACTIONS(267), + [anon_sym_extern] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_LPAREN2] = ACTIONS(936), + [anon_sym_STAR] = ACTIONS(938), + [anon_sym_static] = ACTIONS(25), + [anon_sym_auto] = ACTIONS(25), + [anon_sym_register] = ACTIONS(25), + [anon_sym_inline] = ACTIONS(25), + [anon_sym_const] = ACTIONS(27), + [anon_sym_restrict] = ACTIONS(27), + [anon_sym_volatile] = ACTIONS(27), + [anon_sym__Atomic] = ACTIONS(27), + [anon_sym_unsigned] = ACTIONS(29), + [anon_sym_long] = ACTIONS(29), + [anon_sym_short] = ACTIONS(29), + [sym_primitive_type] = ACTIONS(31), + [anon_sym_enum] = ACTIONS(33), + [anon_sym_struct] = ACTIONS(35), + [anon_sym_union] = ACTIONS(37), + [anon_sym_if] = ACTIONS(1952), + [anon_sym_switch] = ACTIONS(1954), + [anon_sym_case] = ACTIONS(1956), + [anon_sym_default] = ACTIONS(1958), + [anon_sym_while] = ACTIONS(1960), + [anon_sym_do] = ACTIONS(1962), + [anon_sym_for] = ACTIONS(1964), + [anon_sym_return] = ACTIONS(1966), + [anon_sym_break] = ACTIONS(1968), + [anon_sym_continue] = ACTIONS(1970), + [anon_sym_goto] = ACTIONS(1972), + [anon_sym_AMP] = ACTIONS(938), + [anon_sym_BANG] = ACTIONS(962), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_DASH_DASH] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(968), + [anon_sym_sizeof] = ACTIONS(970), + [sym_number_literal] = ACTIONS(1974), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(1976), + [sym_false] = ACTIONS(1976), + [sym_null] = ACTIONS(1976), + [sym_identifier] = ACTIONS(1978), + [sym_comment] = ACTIONS(59), }, [545] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1984), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1986), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1986), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1986), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1986), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1986), - [anon_sym_extern] = ACTIONS(1984), - [anon_sym_RBRACE] = ACTIONS(1986), - [anon_sym_static] = ACTIONS(1984), - [anon_sym_auto] = ACTIONS(1984), - [anon_sym_register] = ACTIONS(1984), - [anon_sym_inline] = ACTIONS(1984), - [anon_sym_const] = ACTIONS(1984), - [anon_sym_restrict] = ACTIONS(1984), - [anon_sym_volatile] = ACTIONS(1984), - [anon_sym__Atomic] = ACTIONS(1984), - [anon_sym_unsigned] = ACTIONS(1984), - [anon_sym_long] = ACTIONS(1984), - [anon_sym_short] = ACTIONS(1984), - [sym_primitive_type] = ACTIONS(1984), - [anon_sym_enum] = ACTIONS(1984), - [anon_sym_struct] = ACTIONS(1984), - [anon_sym_union] = ACTIONS(1984), - [sym_identifier] = ACTIONS(1984), - [sym_comment] = ACTIONS(37), + [sym_preproc_include] = STATE(761), + [sym_preproc_def] = STATE(761), + [sym_preproc_function_def] = STATE(761), + [sym_preproc_call] = STATE(761), + [sym_preproc_if_in_compound_statement] = STATE(761), + [sym_preproc_ifdef_in_compound_statement] = STATE(761), + [sym_preproc_else_in_compound_statement] = STATE(760), + [sym_preproc_elif_in_compound_statement] = STATE(760), + [sym_declaration] = STATE(761), + [sym_type_definition] = STATE(761), + [sym__declaration_specifiers] = STATE(755), + [sym_compound_statement] = STATE(761), + [sym_storage_class_specifier] = STATE(30), + [sym_type_qualifier] = STATE(30), + [sym__type_specifier] = STATE(25), + [sym_sized_type_specifier] = STATE(25), + [sym_enum_specifier] = STATE(25), + [sym_struct_specifier] = STATE(25), + [sym_union_specifier] = STATE(25), + [sym_labeled_statement] = STATE(761), + [sym_expression_statement] = STATE(761), + [sym_if_statement] = STATE(761), + [sym_switch_statement] = STATE(761), + [sym_case_statement] = STATE(761), + [sym_while_statement] = STATE(761), + [sym_do_statement] = STATE(761), + [sym_for_statement] = STATE(761), + [sym_return_statement] = STATE(761), + [sym_break_statement] = STATE(761), + [sym_continue_statement] = STATE(761), + [sym_goto_statement] = STATE(761), + [sym__expression] = STATE(756), + [sym_comma_expression] = STATE(757), + [sym_conditional_expression] = STATE(756), + [sym_assignment_expression] = STATE(756), + [sym_pointer_expression] = STATE(756), + [sym_logical_expression] = STATE(756), + [sym_bitwise_expression] = STATE(756), + [sym_equality_expression] = STATE(756), + [sym_relational_expression] = STATE(756), + [sym_shift_expression] = STATE(756), + [sym_math_expression] = STATE(756), + [sym_cast_expression] = STATE(756), + [sym_sizeof_expression] = STATE(756), + [sym_subscript_expression] = STATE(756), + [sym_call_expression] = STATE(756), + [sym_field_expression] = STATE(756), + [sym_compound_literal_expression] = STATE(756), + [sym_parenthesized_expression] = STATE(756), + [sym_char_literal] = STATE(756), + [sym_concatenated_string] = STATE(756), + [sym_string_literal] = STATE(374), + [sym__empty_declaration] = STATE(761), + [sym_macro_type_specifier] = STATE(25), + [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(761), + [aux_sym__declaration_specifiers_repeat1] = STATE(30), + [aux_sym_sized_type_specifier_repeat1] = STATE(31), + [anon_sym_SEMI] = ACTIONS(1940), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(251), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(253), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1942), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1980), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1946), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1946), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1948), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1950), + [sym_preproc_directive] = ACTIONS(265), + [anon_sym_typedef] = ACTIONS(267), + [anon_sym_extern] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_LPAREN2] = ACTIONS(936), + [anon_sym_STAR] = ACTIONS(938), + [anon_sym_static] = ACTIONS(25), + [anon_sym_auto] = ACTIONS(25), + [anon_sym_register] = ACTIONS(25), + [anon_sym_inline] = ACTIONS(25), + [anon_sym_const] = ACTIONS(27), + [anon_sym_restrict] = ACTIONS(27), + [anon_sym_volatile] = ACTIONS(27), + [anon_sym__Atomic] = ACTIONS(27), + [anon_sym_unsigned] = ACTIONS(29), + [anon_sym_long] = ACTIONS(29), + [anon_sym_short] = ACTIONS(29), + [sym_primitive_type] = ACTIONS(31), + [anon_sym_enum] = ACTIONS(33), + [anon_sym_struct] = ACTIONS(35), + [anon_sym_union] = ACTIONS(37), + [anon_sym_if] = ACTIONS(1952), + [anon_sym_switch] = ACTIONS(1954), + [anon_sym_case] = ACTIONS(1956), + [anon_sym_default] = ACTIONS(1958), + [anon_sym_while] = ACTIONS(1960), + [anon_sym_do] = ACTIONS(1962), + [anon_sym_for] = ACTIONS(1964), + [anon_sym_return] = ACTIONS(1966), + [anon_sym_break] = ACTIONS(1968), + [anon_sym_continue] = ACTIONS(1970), + [anon_sym_goto] = ACTIONS(1972), + [anon_sym_AMP] = ACTIONS(938), + [anon_sym_BANG] = ACTIONS(962), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_DASH_DASH] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(968), + [anon_sym_sizeof] = ACTIONS(970), + [sym_number_literal] = ACTIONS(1974), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(1976), + [sym_false] = ACTIONS(1976), + [sym_null] = ACTIONS(1976), + [sym_identifier] = ACTIONS(1978), + [sym_comment] = ACTIONS(59), }, [546] = { - [sym__expression] = STATE(673), - [sym_conditional_expression] = STATE(673), - [sym_assignment_expression] = STATE(673), - [sym_pointer_expression] = STATE(673), - [sym_logical_expression] = STATE(673), - [sym_bitwise_expression] = STATE(673), - [sym_equality_expression] = STATE(673), - [sym_relational_expression] = STATE(673), - [sym_shift_expression] = STATE(673), - [sym_math_expression] = STATE(673), - [sym_cast_expression] = STATE(673), - [sym_sizeof_expression] = STATE(673), - [sym_subscript_expression] = STATE(673), - [sym_call_expression] = STATE(673), - [sym_field_expression] = STATE(673), - [sym_compound_literal_expression] = STATE(673), - [sym_parenthesized_expression] = STATE(673), - [sym_char_literal] = STATE(673), - [sym_concatenated_string] = STATE(673), - [sym_string_literal] = STATE(342), - [anon_sym_LPAREN2] = ACTIONS(780), - [anon_sym_STAR] = ACTIONS(782), - [anon_sym_AMP] = ACTIONS(782), - [anon_sym_BANG] = ACTIONS(784), - [anon_sym_TILDE] = ACTIONS(786), - [anon_sym_PLUS] = ACTIONS(788), - [anon_sym_DASH] = ACTIONS(788), - [anon_sym_DASH_DASH] = ACTIONS(790), - [anon_sym_PLUS_PLUS] = ACTIONS(790), - [anon_sym_sizeof] = ACTIONS(792), - [sym_number_literal] = ACTIONS(1597), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(1599), - [sym_false] = ACTIONS(1599), - [sym_null] = ACTIONS(1599), - [sym_identifier] = ACTIONS(1599), - [sym_comment] = ACTIONS(37), + [anon_sym_RPAREN] = ACTIONS(1982), + [sym_comment] = ACTIONS(59), }, [547] = { [sym__expression] = STATE(763), + [sym_comma_expression] = STATE(764), [sym_conditional_expression] = STATE(763), [sym_assignment_expression] = STATE(763), [sym_pointer_expression] = STATE(763), @@ -21916,935 +23380,1271 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_parenthesized_expression] = STATE(763), [sym_char_literal] = STATE(763), [sym_concatenated_string] = STATE(763), - [sym_string_literal] = STATE(342), - [anon_sym_LPAREN2] = ACTIONS(780), - [anon_sym_STAR] = ACTIONS(782), - [anon_sym_AMP] = ACTIONS(782), - [anon_sym_BANG] = ACTIONS(784), - [anon_sym_TILDE] = ACTIONS(786), - [anon_sym_PLUS] = ACTIONS(788), - [anon_sym_DASH] = ACTIONS(788), - [anon_sym_DASH_DASH] = ACTIONS(790), - [anon_sym_PLUS_PLUS] = ACTIONS(790), - [anon_sym_sizeof] = ACTIONS(792), - [sym_number_literal] = ACTIONS(1988), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(1990), - [sym_false] = ACTIONS(1990), - [sym_null] = ACTIONS(1990), - [sym_identifier] = ACTIONS(1990), - [sym_comment] = ACTIONS(37), + [sym_string_literal] = STATE(55), + [anon_sym_LPAREN2] = ACTIONS(85), + [anon_sym_STAR] = ACTIONS(87), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_PLUS] = ACTIONS(97), + [anon_sym_DASH] = ACTIONS(97), + [anon_sym_DASH_DASH] = ACTIONS(99), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(101), + [sym_number_literal] = ACTIONS(1984), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(1986), + [sym_false] = ACTIONS(1986), + [sym_null] = ACTIONS(1986), + [sym_identifier] = ACTIONS(1986), + [sym_comment] = ACTIONS(59), }, [548] = { - [sym__expression] = STATE(764), - [sym_conditional_expression] = STATE(764), - [sym_assignment_expression] = STATE(764), - [sym_pointer_expression] = STATE(764), - [sym_logical_expression] = STATE(764), - [sym_bitwise_expression] = STATE(764), - [sym_equality_expression] = STATE(764), - [sym_relational_expression] = STATE(764), - [sym_shift_expression] = STATE(764), - [sym_math_expression] = STATE(764), - [sym_cast_expression] = STATE(764), - [sym_sizeof_expression] = STATE(764), - [sym_subscript_expression] = STATE(764), - [sym_call_expression] = STATE(764), - [sym_field_expression] = STATE(764), - [sym_compound_literal_expression] = STATE(764), - [sym_parenthesized_expression] = STATE(764), - [sym_char_literal] = STATE(764), - [sym_concatenated_string] = STATE(764), - [sym_string_literal] = STATE(386), - [anon_sym_LPAREN2] = ACTIONS(918), - [anon_sym_STAR] = ACTIONS(920), - [anon_sym_AMP] = ACTIONS(920), - [anon_sym_BANG] = ACTIONS(922), - [anon_sym_TILDE] = ACTIONS(924), - [anon_sym_PLUS] = ACTIONS(926), - [anon_sym_DASH] = ACTIONS(926), - [anon_sym_DASH_DASH] = ACTIONS(928), - [anon_sym_PLUS_PLUS] = ACTIONS(928), - [anon_sym_sizeof] = ACTIONS(930), - [sym_number_literal] = ACTIONS(1992), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(1994), - [sym_false] = ACTIONS(1994), - [sym_null] = ACTIONS(1994), - [sym_identifier] = ACTIONS(1994), - [sym_comment] = ACTIONS(37), + [sym_compound_statement] = STATE(772), + [sym_labeled_statement] = STATE(772), + [sym_expression_statement] = STATE(772), + [sym_if_statement] = STATE(772), + [sym_switch_statement] = STATE(772), + [sym_case_statement] = STATE(772), + [sym_while_statement] = STATE(772), + [sym_do_statement] = STATE(772), + [sym_for_statement] = STATE(772), + [sym_return_statement] = STATE(772), + [sym_break_statement] = STATE(772), + [sym_continue_statement] = STATE(772), + [sym_goto_statement] = STATE(772), + [sym__expression] = STATE(372), + [sym_comma_expression] = STATE(373), + [sym_conditional_expression] = STATE(372), + [sym_assignment_expression] = STATE(372), + [sym_pointer_expression] = STATE(372), + [sym_logical_expression] = STATE(372), + [sym_bitwise_expression] = STATE(372), + [sym_equality_expression] = STATE(372), + [sym_relational_expression] = STATE(372), + [sym_shift_expression] = STATE(372), + [sym_math_expression] = STATE(372), + [sym_cast_expression] = STATE(372), + [sym_sizeof_expression] = STATE(372), + [sym_subscript_expression] = STATE(372), + [sym_call_expression] = STATE(372), + [sym_field_expression] = STATE(372), + [sym_compound_literal_expression] = STATE(372), + [sym_parenthesized_expression] = STATE(372), + [sym_char_literal] = STATE(372), + [sym_concatenated_string] = STATE(372), + [sym_string_literal] = STATE(374), + [anon_sym_SEMI] = ACTIONS(928), + [anon_sym_LBRACE] = ACTIONS(439), + [anon_sym_LPAREN2] = ACTIONS(936), + [anon_sym_STAR] = ACTIONS(938), + [anon_sym_if] = ACTIONS(1988), + [anon_sym_switch] = ACTIONS(1990), + [anon_sym_case] = ACTIONS(1992), + [anon_sym_default] = ACTIONS(1994), + [anon_sym_while] = ACTIONS(1996), + [anon_sym_do] = ACTIONS(950), + [anon_sym_for] = ACTIONS(1998), + [anon_sym_return] = ACTIONS(954), + [anon_sym_break] = ACTIONS(956), + [anon_sym_continue] = ACTIONS(958), + [anon_sym_goto] = ACTIONS(960), + [anon_sym_AMP] = ACTIONS(938), + [anon_sym_BANG] = ACTIONS(962), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_DASH_DASH] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(968), + [anon_sym_sizeof] = ACTIONS(970), + [sym_number_literal] = ACTIONS(972), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(974), + [sym_false] = ACTIONS(974), + [sym_null] = ACTIONS(974), + [sym_identifier] = ACTIONS(2000), + [sym_comment] = ACTIONS(59), }, [549] = { - [sym__expression] = STATE(765), - [sym_conditional_expression] = STATE(765), - [sym_assignment_expression] = STATE(765), - [sym_pointer_expression] = STATE(765), - [sym_logical_expression] = STATE(765), - [sym_bitwise_expression] = STATE(765), - [sym_equality_expression] = STATE(765), - [sym_relational_expression] = STATE(765), - [sym_shift_expression] = STATE(765), - [sym_math_expression] = STATE(765), - [sym_cast_expression] = STATE(765), - [sym_sizeof_expression] = STATE(765), - [sym_subscript_expression] = STATE(765), - [sym_call_expression] = STATE(765), - [sym_field_expression] = STATE(765), - [sym_compound_literal_expression] = STATE(765), - [sym_parenthesized_expression] = STATE(765), - [sym_char_literal] = STATE(765), - [sym_concatenated_string] = STATE(765), - [sym_string_literal] = STATE(342), - [anon_sym_LPAREN2] = ACTIONS(780), - [anon_sym_STAR] = ACTIONS(782), - [anon_sym_AMP] = ACTIONS(782), - [anon_sym_BANG] = ACTIONS(784), - [anon_sym_TILDE] = ACTIONS(786), - [anon_sym_PLUS] = ACTIONS(788), - [anon_sym_DASH] = ACTIONS(788), - [anon_sym_DASH_DASH] = ACTIONS(790), - [anon_sym_PLUS_PLUS] = ACTIONS(790), - [anon_sym_sizeof] = ACTIONS(792), - [sym_number_literal] = ACTIONS(1996), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(1998), - [sym_false] = ACTIONS(1998), - [sym_null] = ACTIONS(1998), - [sym_identifier] = ACTIONS(1998), - [sym_comment] = ACTIONS(37), + [sym_compound_statement] = STATE(774), + [sym_labeled_statement] = STATE(774), + [sym_expression_statement] = STATE(774), + [sym_if_statement] = STATE(774), + [sym_switch_statement] = STATE(774), + [sym_case_statement] = STATE(774), + [sym_while_statement] = STATE(774), + [sym_do_statement] = STATE(774), + [sym_for_statement] = STATE(774), + [sym_return_statement] = STATE(774), + [sym_break_statement] = STATE(774), + [sym_continue_statement] = STATE(774), + [sym_goto_statement] = STATE(774), + [sym__expression] = STATE(372), + [sym_comma_expression] = STATE(373), + [sym_conditional_expression] = STATE(372), + [sym_assignment_expression] = STATE(372), + [sym_pointer_expression] = STATE(372), + [sym_logical_expression] = STATE(372), + [sym_bitwise_expression] = STATE(372), + [sym_equality_expression] = STATE(372), + [sym_relational_expression] = STATE(372), + [sym_shift_expression] = STATE(372), + [sym_math_expression] = STATE(372), + [sym_cast_expression] = STATE(372), + [sym_sizeof_expression] = STATE(372), + [sym_subscript_expression] = STATE(372), + [sym_call_expression] = STATE(372), + [sym_field_expression] = STATE(372), + [sym_compound_literal_expression] = STATE(372), + [sym_parenthesized_expression] = STATE(372), + [sym_char_literal] = STATE(372), + [sym_concatenated_string] = STATE(372), + [sym_string_literal] = STATE(374), + [anon_sym_SEMI] = ACTIONS(928), + [anon_sym_LBRACE] = ACTIONS(439), + [anon_sym_LPAREN2] = ACTIONS(936), + [anon_sym_STAR] = ACTIONS(938), + [anon_sym_if] = ACTIONS(940), + [anon_sym_switch] = ACTIONS(942), + [anon_sym_case] = ACTIONS(944), + [anon_sym_default] = ACTIONS(946), + [anon_sym_while] = ACTIONS(948), + [anon_sym_do] = ACTIONS(950), + [anon_sym_for] = ACTIONS(952), + [anon_sym_return] = ACTIONS(954), + [anon_sym_break] = ACTIONS(956), + [anon_sym_continue] = ACTIONS(958), + [anon_sym_goto] = ACTIONS(960), + [anon_sym_AMP] = ACTIONS(938), + [anon_sym_BANG] = ACTIONS(962), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_DASH_DASH] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(968), + [anon_sym_sizeof] = ACTIONS(970), + [sym_number_literal] = ACTIONS(972), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(974), + [sym_false] = ACTIONS(974), + [sym_null] = ACTIONS(974), + [sym_identifier] = ACTIONS(2002), + [sym_comment] = ACTIONS(59), }, [550] = { - [sym__expression] = STATE(766), - [sym_conditional_expression] = STATE(766), - [sym_assignment_expression] = STATE(766), - [sym_pointer_expression] = STATE(766), - [sym_logical_expression] = STATE(766), - [sym_bitwise_expression] = STATE(766), - [sym_equality_expression] = STATE(766), - [sym_relational_expression] = STATE(766), - [sym_shift_expression] = STATE(766), - [sym_math_expression] = STATE(766), - [sym_cast_expression] = STATE(766), - [sym_sizeof_expression] = STATE(766), - [sym_subscript_expression] = STATE(766), - [sym_call_expression] = STATE(766), - [sym_field_expression] = STATE(766), - [sym_compound_literal_expression] = STATE(766), - [sym_parenthesized_expression] = STATE(766), - [sym_char_literal] = STATE(766), - [sym_concatenated_string] = STATE(766), - [sym_string_literal] = STATE(342), - [anon_sym_LPAREN2] = ACTIONS(780), - [anon_sym_STAR] = ACTIONS(782), - [anon_sym_AMP] = ACTIONS(782), - [anon_sym_BANG] = ACTIONS(784), - [anon_sym_TILDE] = ACTIONS(786), - [anon_sym_PLUS] = ACTIONS(788), - [anon_sym_DASH] = ACTIONS(788), - [anon_sym_DASH_DASH] = ACTIONS(790), - [anon_sym_PLUS_PLUS] = ACTIONS(790), - [anon_sym_sizeof] = ACTIONS(792), - [sym_number_literal] = ACTIONS(2000), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(2002), - [sym_false] = ACTIONS(2002), - [sym_null] = ACTIONS(2002), - [sym_identifier] = ACTIONS(2002), - [sym_comment] = ACTIONS(37), + [sym_argument_list] = STATE(98), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(1054), + [anon_sym_LBRACK] = ACTIONS(188), + [anon_sym_EQ] = ACTIONS(1056), + [anon_sym_COLON] = ACTIONS(2004), + [anon_sym_QMARK] = ACTIONS(1060), + [anon_sym_STAR_EQ] = ACTIONS(1062), + [anon_sym_SLASH_EQ] = ACTIONS(1062), + [anon_sym_PERCENT_EQ] = ACTIONS(1062), + [anon_sym_PLUS_EQ] = ACTIONS(1062), + [anon_sym_DASH_EQ] = ACTIONS(1062), + [anon_sym_LT_LT_EQ] = ACTIONS(1062), + [anon_sym_GT_GT_EQ] = ACTIONS(1062), + [anon_sym_AMP_EQ] = ACTIONS(1062), + [anon_sym_CARET_EQ] = ACTIONS(1062), + [anon_sym_PIPE_EQ] = ACTIONS(1062), + [anon_sym_AMP] = ACTIONS(1064), + [anon_sym_PIPE_PIPE] = ACTIONS(1066), + [anon_sym_AMP_AMP] = ACTIONS(1068), + [anon_sym_PIPE] = ACTIONS(1070), + [anon_sym_CARET] = ACTIONS(1072), + [anon_sym_EQ_EQ] = ACTIONS(1074), + [anon_sym_BANG_EQ] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(1076), + [anon_sym_GT] = ACTIONS(1076), + [anon_sym_LT_EQ] = ACTIONS(1078), + [anon_sym_GT_EQ] = ACTIONS(1078), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_GT_GT] = ACTIONS(1080), + [anon_sym_PLUS] = ACTIONS(1082), + [anon_sym_DASH] = ACTIONS(1082), + [anon_sym_SLASH] = ACTIONS(1054), + [anon_sym_PERCENT] = ACTIONS(1054), + [anon_sym_DASH_DASH] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(216), + [anon_sym_DOT] = ACTIONS(218), + [anon_sym_DASH_GT] = ACTIONS(218), + [sym_comment] = ACTIONS(59), }, [551] = { - [sym__expression] = STATE(767), - [sym_conditional_expression] = STATE(767), - [sym_assignment_expression] = STATE(767), - [sym_pointer_expression] = STATE(767), - [sym_logical_expression] = STATE(767), - [sym_bitwise_expression] = STATE(767), - [sym_equality_expression] = STATE(767), - [sym_relational_expression] = STATE(767), - [sym_shift_expression] = STATE(767), - [sym_math_expression] = STATE(767), - [sym_cast_expression] = STATE(767), - [sym_sizeof_expression] = STATE(767), - [sym_subscript_expression] = STATE(767), - [sym_call_expression] = STATE(767), - [sym_field_expression] = STATE(767), - [sym_compound_literal_expression] = STATE(767), - [sym_parenthesized_expression] = STATE(767), - [sym_char_literal] = STATE(767), - [sym_concatenated_string] = STATE(767), - [sym_string_literal] = STATE(342), - [anon_sym_LPAREN2] = ACTIONS(780), - [anon_sym_STAR] = ACTIONS(782), - [anon_sym_AMP] = ACTIONS(782), - [anon_sym_BANG] = ACTIONS(784), - [anon_sym_TILDE] = ACTIONS(786), - [anon_sym_PLUS] = ACTIONS(788), - [anon_sym_DASH] = ACTIONS(788), - [anon_sym_DASH_DASH] = ACTIONS(790), - [anon_sym_PLUS_PLUS] = ACTIONS(790), - [anon_sym_sizeof] = ACTIONS(792), - [sym_number_literal] = ACTIONS(2004), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(2006), - [sym_false] = ACTIONS(2006), - [sym_null] = ACTIONS(2006), + [sym_declaration] = STATE(777), + [sym_type_definition] = STATE(777), + [sym__declaration_specifiers] = STATE(778), + [sym_compound_statement] = STATE(777), + [sym_storage_class_specifier] = STATE(142), + [sym_type_qualifier] = STATE(142), + [sym__type_specifier] = STATE(141), + [sym_sized_type_specifier] = STATE(141), + [sym_enum_specifier] = STATE(141), + [sym_struct_specifier] = STATE(141), + [sym_union_specifier] = STATE(141), + [sym_labeled_statement] = STATE(777), + [sym_expression_statement] = STATE(777), + [sym_if_statement] = STATE(777), + [sym_switch_statement] = STATE(777), + [sym_case_statement] = STATE(777), + [sym_while_statement] = STATE(777), + [sym_do_statement] = STATE(777), + [sym_for_statement] = STATE(777), + [sym_return_statement] = STATE(777), + [sym_break_statement] = STATE(777), + [sym_continue_statement] = STATE(777), + [sym_goto_statement] = STATE(777), + [sym__expression] = STATE(372), + [sym_comma_expression] = STATE(373), + [sym_conditional_expression] = STATE(372), + [sym_assignment_expression] = STATE(372), + [sym_pointer_expression] = STATE(372), + [sym_logical_expression] = STATE(372), + [sym_bitwise_expression] = STATE(372), + [sym_equality_expression] = STATE(372), + [sym_relational_expression] = STATE(372), + [sym_shift_expression] = STATE(372), + [sym_math_expression] = STATE(372), + [sym_cast_expression] = STATE(372), + [sym_sizeof_expression] = STATE(372), + [sym_subscript_expression] = STATE(372), + [sym_call_expression] = STATE(372), + [sym_field_expression] = STATE(372), + [sym_compound_literal_expression] = STATE(372), + [sym_parenthesized_expression] = STATE(372), + [sym_char_literal] = STATE(372), + [sym_concatenated_string] = STATE(372), + [sym_string_literal] = STATE(374), + [sym_macro_type_specifier] = STATE(141), + [aux_sym__declaration_specifiers_repeat1] = STATE(142), + [aux_sym_sized_type_specifier_repeat1] = STATE(143), + [anon_sym_SEMI] = ACTIONS(928), + [anon_sym_typedef] = ACTIONS(17), + [anon_sym_extern] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(439), + [anon_sym_LPAREN2] = ACTIONS(936), + [anon_sym_STAR] = ACTIONS(938), + [anon_sym_static] = ACTIONS(25), + [anon_sym_auto] = ACTIONS(25), + [anon_sym_register] = ACTIONS(25), + [anon_sym_inline] = ACTIONS(25), + [anon_sym_const] = ACTIONS(27), + [anon_sym_restrict] = ACTIONS(27), + [anon_sym_volatile] = ACTIONS(27), + [anon_sym__Atomic] = ACTIONS(27), + [anon_sym_unsigned] = ACTIONS(294), + [anon_sym_long] = ACTIONS(294), + [anon_sym_short] = ACTIONS(294), + [sym_primitive_type] = ACTIONS(296), + [anon_sym_enum] = ACTIONS(33), + [anon_sym_struct] = ACTIONS(35), + [anon_sym_union] = ACTIONS(37), + [anon_sym_if] = ACTIONS(940), + [anon_sym_switch] = ACTIONS(942), + [anon_sym_case] = ACTIONS(944), + [anon_sym_default] = ACTIONS(946), + [anon_sym_while] = ACTIONS(948), + [anon_sym_do] = ACTIONS(950), + [anon_sym_for] = ACTIONS(952), + [anon_sym_return] = ACTIONS(954), + [anon_sym_break] = ACTIONS(956), + [anon_sym_continue] = ACTIONS(958), + [anon_sym_goto] = ACTIONS(960), + [anon_sym_AMP] = ACTIONS(938), + [anon_sym_BANG] = ACTIONS(962), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_DASH_DASH] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(968), + [anon_sym_sizeof] = ACTIONS(970), + [sym_number_literal] = ACTIONS(972), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(974), + [sym_false] = ACTIONS(974), + [sym_null] = ACTIONS(974), [sym_identifier] = ACTIONS(2006), - [sym_comment] = ACTIONS(37), + [sym_comment] = ACTIONS(59), }, [552] = { - [sym__expression] = STATE(768), - [sym_conditional_expression] = STATE(768), - [sym_assignment_expression] = STATE(768), - [sym_pointer_expression] = STATE(768), - [sym_logical_expression] = STATE(768), - [sym_bitwise_expression] = STATE(768), - [sym_equality_expression] = STATE(768), - [sym_relational_expression] = STATE(768), - [sym_shift_expression] = STATE(768), - [sym_math_expression] = STATE(768), - [sym_cast_expression] = STATE(768), - [sym_sizeof_expression] = STATE(768), - [sym_subscript_expression] = STATE(768), - [sym_call_expression] = STATE(768), - [sym_field_expression] = STATE(768), - [sym_compound_literal_expression] = STATE(768), - [sym_parenthesized_expression] = STATE(768), - [sym_char_literal] = STATE(768), - [sym_concatenated_string] = STATE(768), - [sym_string_literal] = STATE(342), - [anon_sym_LPAREN2] = ACTIONS(780), - [anon_sym_STAR] = ACTIONS(782), - [anon_sym_AMP] = ACTIONS(782), - [anon_sym_BANG] = ACTIONS(784), - [anon_sym_TILDE] = ACTIONS(786), - [anon_sym_PLUS] = ACTIONS(788), - [anon_sym_DASH] = ACTIONS(788), - [anon_sym_DASH_DASH] = ACTIONS(790), - [anon_sym_PLUS_PLUS] = ACTIONS(790), - [anon_sym_sizeof] = ACTIONS(792), - [sym_number_literal] = ACTIONS(2008), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(2010), - [sym_false] = ACTIONS(2010), - [sym_null] = ACTIONS(2010), - [sym_identifier] = ACTIONS(2010), - [sym_comment] = ACTIONS(37), + [sym_compound_statement] = STATE(779), + [sym_labeled_statement] = STATE(779), + [sym_expression_statement] = STATE(779), + [sym_if_statement] = STATE(779), + [sym_switch_statement] = STATE(779), + [sym_case_statement] = STATE(779), + [sym_while_statement] = STATE(779), + [sym_do_statement] = STATE(779), + [sym_for_statement] = STATE(779), + [sym_return_statement] = STATE(779), + [sym_break_statement] = STATE(779), + [sym_continue_statement] = STATE(779), + [sym_goto_statement] = STATE(779), + [sym__expression] = STATE(372), + [sym_comma_expression] = STATE(373), + [sym_conditional_expression] = STATE(372), + [sym_assignment_expression] = STATE(372), + [sym_pointer_expression] = STATE(372), + [sym_logical_expression] = STATE(372), + [sym_bitwise_expression] = STATE(372), + [sym_equality_expression] = STATE(372), + [sym_relational_expression] = STATE(372), + [sym_shift_expression] = STATE(372), + [sym_math_expression] = STATE(372), + [sym_cast_expression] = STATE(372), + [sym_sizeof_expression] = STATE(372), + [sym_subscript_expression] = STATE(372), + [sym_call_expression] = STATE(372), + [sym_field_expression] = STATE(372), + [sym_compound_literal_expression] = STATE(372), + [sym_parenthesized_expression] = STATE(372), + [sym_char_literal] = STATE(372), + [sym_concatenated_string] = STATE(372), + [sym_string_literal] = STATE(374), + [anon_sym_SEMI] = ACTIONS(928), + [anon_sym_LBRACE] = ACTIONS(439), + [anon_sym_LPAREN2] = ACTIONS(936), + [anon_sym_STAR] = ACTIONS(938), + [anon_sym_if] = ACTIONS(940), + [anon_sym_switch] = ACTIONS(942), + [anon_sym_case] = ACTIONS(944), + [anon_sym_default] = ACTIONS(946), + [anon_sym_while] = ACTIONS(948), + [anon_sym_do] = ACTIONS(950), + [anon_sym_for] = ACTIONS(952), + [anon_sym_return] = ACTIONS(954), + [anon_sym_break] = ACTIONS(956), + [anon_sym_continue] = ACTIONS(958), + [anon_sym_goto] = ACTIONS(960), + [anon_sym_AMP] = ACTIONS(938), + [anon_sym_BANG] = ACTIONS(962), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_DASH_DASH] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(968), + [anon_sym_sizeof] = ACTIONS(970), + [sym_number_literal] = ACTIONS(972), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(974), + [sym_false] = ACTIONS(974), + [sym_null] = ACTIONS(974), + [sym_identifier] = ACTIONS(2002), + [sym_comment] = ACTIONS(59), }, [553] = { - [sym__expression] = STATE(769), - [sym_conditional_expression] = STATE(769), - [sym_assignment_expression] = STATE(769), - [sym_pointer_expression] = STATE(769), - [sym_logical_expression] = STATE(769), - [sym_bitwise_expression] = STATE(769), - [sym_equality_expression] = STATE(769), - [sym_relational_expression] = STATE(769), - [sym_shift_expression] = STATE(769), - [sym_math_expression] = STATE(769), - [sym_cast_expression] = STATE(769), - [sym_sizeof_expression] = STATE(769), - [sym_subscript_expression] = STATE(769), - [sym_call_expression] = STATE(769), - [sym_field_expression] = STATE(769), - [sym_compound_literal_expression] = STATE(769), - [sym_parenthesized_expression] = STATE(769), - [sym_char_literal] = STATE(769), - [sym_concatenated_string] = STATE(769), - [sym_string_literal] = STATE(342), - [anon_sym_LPAREN2] = ACTIONS(780), - [anon_sym_STAR] = ACTIONS(782), - [anon_sym_AMP] = ACTIONS(782), - [anon_sym_BANG] = ACTIONS(784), - [anon_sym_TILDE] = ACTIONS(786), - [anon_sym_PLUS] = ACTIONS(788), - [anon_sym_DASH] = ACTIONS(788), - [anon_sym_DASH_DASH] = ACTIONS(790), - [anon_sym_PLUS_PLUS] = ACTIONS(790), - [anon_sym_sizeof] = ACTIONS(792), - [sym_number_literal] = ACTIONS(2012), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(2014), - [sym_false] = ACTIONS(2014), - [sym_null] = ACTIONS(2014), - [sym_identifier] = ACTIONS(2014), - [sym_comment] = ACTIONS(37), + [sym_parenthesized_expression] = STATE(780), + [anon_sym_LPAREN2] = ACTIONS(1448), + [sym_comment] = ACTIONS(59), }, [554] = { - [sym__expression] = STATE(770), - [sym_conditional_expression] = STATE(770), - [sym_assignment_expression] = STATE(770), - [sym_pointer_expression] = STATE(770), - [sym_logical_expression] = STATE(770), - [sym_bitwise_expression] = STATE(770), - [sym_equality_expression] = STATE(770), - [sym_relational_expression] = STATE(770), - [sym_shift_expression] = STATE(770), - [sym_math_expression] = STATE(770), - [sym_cast_expression] = STATE(770), - [sym_sizeof_expression] = STATE(770), - [sym_subscript_expression] = STATE(770), - [sym_call_expression] = STATE(770), - [sym_field_expression] = STATE(770), - [sym_compound_literal_expression] = STATE(770), - [sym_parenthesized_expression] = STATE(770), - [sym_char_literal] = STATE(770), - [sym_concatenated_string] = STATE(770), - [sym_string_literal] = STATE(342), - [anon_sym_LPAREN2] = ACTIONS(780), - [anon_sym_STAR] = ACTIONS(782), - [anon_sym_AMP] = ACTIONS(782), - [anon_sym_BANG] = ACTIONS(784), - [anon_sym_TILDE] = ACTIONS(786), - [anon_sym_PLUS] = ACTIONS(788), - [anon_sym_DASH] = ACTIONS(788), - [anon_sym_DASH_DASH] = ACTIONS(790), - [anon_sym_PLUS_PLUS] = ACTIONS(790), - [anon_sym_sizeof] = ACTIONS(792), - [sym_number_literal] = ACTIONS(2016), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(2018), - [sym_false] = ACTIONS(2018), - [sym_null] = ACTIONS(2018), - [sym_identifier] = ACTIONS(2018), - [sym_comment] = ACTIONS(37), + [sym_parenthesized_expression] = STATE(781), + [anon_sym_LPAREN2] = ACTIONS(1448), + [sym_comment] = ACTIONS(59), }, [555] = { - [sym__expression] = STATE(771), - [sym_conditional_expression] = STATE(771), - [sym_assignment_expression] = STATE(771), - [sym_pointer_expression] = STATE(771), - [sym_logical_expression] = STATE(771), - [sym_bitwise_expression] = STATE(771), - [sym_equality_expression] = STATE(771), - [sym_relational_expression] = STATE(771), - [sym_shift_expression] = STATE(771), - [sym_math_expression] = STATE(771), - [sym_cast_expression] = STATE(771), - [sym_sizeof_expression] = STATE(771), - [sym_subscript_expression] = STATE(771), - [sym_call_expression] = STATE(771), - [sym_field_expression] = STATE(771), - [sym_compound_literal_expression] = STATE(771), - [sym_parenthesized_expression] = STATE(771), - [sym_char_literal] = STATE(771), - [sym_concatenated_string] = STATE(771), - [sym_string_literal] = STATE(342), - [anon_sym_LPAREN2] = ACTIONS(780), - [anon_sym_STAR] = ACTIONS(782), - [anon_sym_AMP] = ACTIONS(782), - [anon_sym_BANG] = ACTIONS(784), - [anon_sym_TILDE] = ACTIONS(786), - [anon_sym_PLUS] = ACTIONS(788), - [anon_sym_DASH] = ACTIONS(788), - [anon_sym_DASH_DASH] = ACTIONS(790), - [anon_sym_PLUS_PLUS] = ACTIONS(790), - [anon_sym_sizeof] = ACTIONS(792), - [sym_number_literal] = ACTIONS(2020), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(2022), - [sym_false] = ACTIONS(2022), - [sym_null] = ACTIONS(2022), - [sym_identifier] = ACTIONS(2022), - [sym_comment] = ACTIONS(37), + [sym__expression] = STATE(782), + [sym_conditional_expression] = STATE(782), + [sym_assignment_expression] = STATE(782), + [sym_pointer_expression] = STATE(782), + [sym_logical_expression] = STATE(782), + [sym_bitwise_expression] = STATE(782), + [sym_equality_expression] = STATE(782), + [sym_relational_expression] = STATE(782), + [sym_shift_expression] = STATE(782), + [sym_math_expression] = STATE(782), + [sym_cast_expression] = STATE(782), + [sym_sizeof_expression] = STATE(782), + [sym_subscript_expression] = STATE(782), + [sym_call_expression] = STATE(782), + [sym_field_expression] = STATE(782), + [sym_compound_literal_expression] = STATE(782), + [sym_parenthesized_expression] = STATE(782), + [sym_char_literal] = STATE(782), + [sym_concatenated_string] = STATE(782), + [sym_string_literal] = STATE(223), + [anon_sym_LPAREN2] = ACTIONS(483), + [anon_sym_STAR] = ACTIONS(485), + [anon_sym_AMP] = ACTIONS(485), + [anon_sym_BANG] = ACTIONS(487), + [anon_sym_TILDE] = ACTIONS(489), + [anon_sym_PLUS] = ACTIONS(491), + [anon_sym_DASH] = ACTIONS(491), + [anon_sym_DASH_DASH] = ACTIONS(493), + [anon_sym_PLUS_PLUS] = ACTIONS(493), + [anon_sym_sizeof] = ACTIONS(495), + [sym_number_literal] = ACTIONS(2008), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(2010), + [sym_false] = ACTIONS(2010), + [sym_null] = ACTIONS(2010), + [sym_identifier] = ACTIONS(2010), + [sym_comment] = ACTIONS(59), }, [556] = { - [sym__expression] = STATE(772), - [sym_conditional_expression] = STATE(772), - [sym_assignment_expression] = STATE(772), - [sym_pointer_expression] = STATE(772), - [sym_logical_expression] = STATE(772), - [sym_bitwise_expression] = STATE(772), - [sym_equality_expression] = STATE(772), - [sym_relational_expression] = STATE(772), - [sym_shift_expression] = STATE(772), - [sym_math_expression] = STATE(772), - [sym_cast_expression] = STATE(772), - [sym_sizeof_expression] = STATE(772), - [sym_subscript_expression] = STATE(772), - [sym_call_expression] = STATE(772), - [sym_field_expression] = STATE(772), - [sym_compound_literal_expression] = STATE(772), - [sym_parenthesized_expression] = STATE(772), - [sym_char_literal] = STATE(772), - [sym_concatenated_string] = STATE(772), - [sym_string_literal] = STATE(342), - [anon_sym_LPAREN2] = ACTIONS(780), - [anon_sym_STAR] = ACTIONS(782), - [anon_sym_AMP] = ACTIONS(782), - [anon_sym_BANG] = ACTIONS(784), - [anon_sym_TILDE] = ACTIONS(786), - [anon_sym_PLUS] = ACTIONS(788), - [anon_sym_DASH] = ACTIONS(788), - [anon_sym_DASH_DASH] = ACTIONS(790), - [anon_sym_PLUS_PLUS] = ACTIONS(790), - [anon_sym_sizeof] = ACTIONS(792), - [sym_number_literal] = ACTIONS(2024), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(2026), - [sym_false] = ACTIONS(2026), - [sym_null] = ACTIONS(2026), - [sym_identifier] = ACTIONS(2026), - [sym_comment] = ACTIONS(37), + [anon_sym_COLON] = ACTIONS(2012), + [sym_comment] = ACTIONS(59), }, [557] = { - [sym__expression] = STATE(773), - [sym_conditional_expression] = STATE(773), - [sym_assignment_expression] = STATE(773), - [sym_pointer_expression] = STATE(773), - [sym_logical_expression] = STATE(773), - [sym_bitwise_expression] = STATE(773), - [sym_equality_expression] = STATE(773), - [sym_relational_expression] = STATE(773), - [sym_shift_expression] = STATE(773), - [sym_math_expression] = STATE(773), - [sym_cast_expression] = STATE(773), - [sym_sizeof_expression] = STATE(773), - [sym_subscript_expression] = STATE(773), - [sym_call_expression] = STATE(773), - [sym_field_expression] = STATE(773), - [sym_compound_literal_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_char_literal] = STATE(773), - [sym_concatenated_string] = STATE(773), - [sym_string_literal] = STATE(342), - [anon_sym_LPAREN2] = ACTIONS(780), - [anon_sym_STAR] = ACTIONS(782), - [anon_sym_AMP] = ACTIONS(782), - [anon_sym_BANG] = ACTIONS(784), - [anon_sym_TILDE] = ACTIONS(786), - [anon_sym_PLUS] = ACTIONS(788), - [anon_sym_DASH] = ACTIONS(788), - [anon_sym_DASH_DASH] = ACTIONS(790), - [anon_sym_PLUS_PLUS] = ACTIONS(790), - [anon_sym_sizeof] = ACTIONS(792), - [sym_number_literal] = ACTIONS(2028), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(2030), - [sym_false] = ACTIONS(2030), - [sym_null] = ACTIONS(2030), - [sym_identifier] = ACTIONS(2030), - [sym_comment] = ACTIONS(37), + [sym_parenthesized_expression] = STATE(784), + [anon_sym_LPAREN2] = ACTIONS(1448), + [sym_comment] = ACTIONS(59), }, [558] = { - [sym_string_literal] = STATE(774), - [aux_sym_concatenated_string_repeat1] = STATE(774), - [anon_sym_SEMI] = ACTIONS(1655), - [anon_sym_LPAREN2] = ACTIONS(1655), - [anon_sym_STAR] = ACTIONS(1657), - [anon_sym_LBRACK] = ACTIONS(1655), - [anon_sym_EQ] = ACTIONS(1657), - [anon_sym_QMARK] = ACTIONS(1655), - [anon_sym_STAR_EQ] = ACTIONS(1655), - [anon_sym_SLASH_EQ] = ACTIONS(1655), - [anon_sym_PERCENT_EQ] = ACTIONS(1655), - [anon_sym_PLUS_EQ] = ACTIONS(1655), - [anon_sym_DASH_EQ] = ACTIONS(1655), - [anon_sym_LT_LT_EQ] = ACTIONS(1655), - [anon_sym_GT_GT_EQ] = ACTIONS(1655), - [anon_sym_AMP_EQ] = ACTIONS(1655), - [anon_sym_CARET_EQ] = ACTIONS(1655), - [anon_sym_PIPE_EQ] = ACTIONS(1655), - [anon_sym_AMP] = ACTIONS(1657), - [anon_sym_PIPE_PIPE] = ACTIONS(1655), - [anon_sym_AMP_AMP] = ACTIONS(1655), - [anon_sym_PIPE] = ACTIONS(1657), - [anon_sym_CARET] = ACTIONS(1657), - [anon_sym_EQ_EQ] = ACTIONS(1655), - [anon_sym_BANG_EQ] = ACTIONS(1655), - [anon_sym_LT] = ACTIONS(1657), - [anon_sym_GT] = ACTIONS(1657), - [anon_sym_LT_EQ] = ACTIONS(1655), - [anon_sym_GT_EQ] = ACTIONS(1655), - [anon_sym_LT_LT] = ACTIONS(1657), - [anon_sym_GT_GT] = ACTIONS(1657), - [anon_sym_PLUS] = ACTIONS(1657), - [anon_sym_DASH] = ACTIONS(1657), - [anon_sym_SLASH] = ACTIONS(1657), - [anon_sym_PERCENT] = ACTIONS(1657), - [anon_sym_DASH_DASH] = ACTIONS(1655), - [anon_sym_PLUS_PLUS] = ACTIONS(1655), - [anon_sym_DOT] = ACTIONS(1655), - [anon_sym_DASH_GT] = ACTIONS(1655), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_comment] = ACTIONS(37), + [sym_compound_statement] = STATE(785), + [sym_labeled_statement] = STATE(785), + [sym_expression_statement] = STATE(785), + [sym_if_statement] = STATE(785), + [sym_switch_statement] = STATE(785), + [sym_case_statement] = STATE(785), + [sym_while_statement] = STATE(785), + [sym_do_statement] = STATE(785), + [sym_for_statement] = STATE(785), + [sym_return_statement] = STATE(785), + [sym_break_statement] = STATE(785), + [sym_continue_statement] = STATE(785), + [sym_goto_statement] = STATE(785), + [sym__expression] = STATE(372), + [sym_comma_expression] = STATE(373), + [sym_conditional_expression] = STATE(372), + [sym_assignment_expression] = STATE(372), + [sym_pointer_expression] = STATE(372), + [sym_logical_expression] = STATE(372), + [sym_bitwise_expression] = STATE(372), + [sym_equality_expression] = STATE(372), + [sym_relational_expression] = STATE(372), + [sym_shift_expression] = STATE(372), + [sym_math_expression] = STATE(372), + [sym_cast_expression] = STATE(372), + [sym_sizeof_expression] = STATE(372), + [sym_subscript_expression] = STATE(372), + [sym_call_expression] = STATE(372), + [sym_field_expression] = STATE(372), + [sym_compound_literal_expression] = STATE(372), + [sym_parenthesized_expression] = STATE(372), + [sym_char_literal] = STATE(372), + [sym_concatenated_string] = STATE(372), + [sym_string_literal] = STATE(374), + [anon_sym_SEMI] = ACTIONS(928), + [anon_sym_LBRACE] = ACTIONS(439), + [anon_sym_LPAREN2] = ACTIONS(936), + [anon_sym_STAR] = ACTIONS(938), + [anon_sym_if] = ACTIONS(1456), + [anon_sym_switch] = ACTIONS(1458), + [anon_sym_case] = ACTIONS(1460), + [anon_sym_default] = ACTIONS(1462), + [anon_sym_while] = ACTIONS(1464), + [anon_sym_do] = ACTIONS(1466), + [anon_sym_for] = ACTIONS(1468), + [anon_sym_return] = ACTIONS(954), + [anon_sym_break] = ACTIONS(956), + [anon_sym_continue] = ACTIONS(958), + [anon_sym_goto] = ACTIONS(960), + [anon_sym_AMP] = ACTIONS(938), + [anon_sym_BANG] = ACTIONS(962), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_DASH_DASH] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(968), + [anon_sym_sizeof] = ACTIONS(970), + [sym_number_literal] = ACTIONS(972), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(974), + [sym_false] = ACTIONS(974), + [sym_null] = ACTIONS(974), + [sym_identifier] = ACTIONS(1470), + [sym_comment] = ACTIONS(59), }, [559] = { - [sym_parameter_list] = STATE(347), - [anon_sym_COMMA] = ACTIONS(2032), - [anon_sym_SEMI] = ACTIONS(2032), - [anon_sym_LPAREN2] = ACTIONS(231), - [anon_sym_LBRACK] = ACTIONS(804), - [anon_sym_COLON] = ACTIONS(2032), - [sym_comment] = ACTIONS(37), + [anon_sym_LPAREN2] = ACTIONS(2014), + [sym_comment] = ACTIONS(59), }, [560] = { - [anon_sym_COMMA] = ACTIONS(2034), - [anon_sym_RPAREN] = ACTIONS(2034), - [anon_sym_SEMI] = ACTIONS(2034), - [anon_sym_LPAREN2] = ACTIONS(2034), - [anon_sym_LBRACK] = ACTIONS(2034), - [anon_sym_COLON] = ACTIONS(2034), - [sym_comment] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(166), + [anon_sym_COMMA] = ACTIONS(166), + [anon_sym_LPAREN2] = ACTIONS(166), + [anon_sym_STAR] = ACTIONS(168), + [anon_sym_LBRACK] = ACTIONS(166), + [anon_sym_EQ] = ACTIONS(168), + [anon_sym_COLON] = ACTIONS(2016), + [anon_sym_QMARK] = ACTIONS(166), + [anon_sym_STAR_EQ] = ACTIONS(166), + [anon_sym_SLASH_EQ] = ACTIONS(166), + [anon_sym_PERCENT_EQ] = ACTIONS(166), + [anon_sym_PLUS_EQ] = ACTIONS(166), + [anon_sym_DASH_EQ] = ACTIONS(166), + [anon_sym_LT_LT_EQ] = ACTIONS(166), + [anon_sym_GT_GT_EQ] = ACTIONS(166), + [anon_sym_AMP_EQ] = ACTIONS(166), + [anon_sym_CARET_EQ] = ACTIONS(166), + [anon_sym_PIPE_EQ] = ACTIONS(166), + [anon_sym_AMP] = ACTIONS(168), + [anon_sym_PIPE_PIPE] = ACTIONS(166), + [anon_sym_AMP_AMP] = ACTIONS(166), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_CARET] = ACTIONS(168), + [anon_sym_EQ_EQ] = ACTIONS(166), + [anon_sym_BANG_EQ] = ACTIONS(166), + [anon_sym_LT] = ACTIONS(168), + [anon_sym_GT] = ACTIONS(168), + [anon_sym_LT_EQ] = ACTIONS(166), + [anon_sym_GT_EQ] = ACTIONS(166), + [anon_sym_LT_LT] = ACTIONS(168), + [anon_sym_GT_GT] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(168), + [anon_sym_DASH] = ACTIONS(168), + [anon_sym_SLASH] = ACTIONS(168), + [anon_sym_PERCENT] = ACTIONS(168), + [anon_sym_DASH_DASH] = ACTIONS(166), + [anon_sym_PLUS_PLUS] = ACTIONS(166), + [anon_sym_DOT] = ACTIONS(166), + [anon_sym_DASH_GT] = ACTIONS(166), + [sym_comment] = ACTIONS(59), }, [561] = { - [sym__expression] = STATE(776), - [sym_conditional_expression] = STATE(776), - [sym_assignment_expression] = STATE(776), - [sym_pointer_expression] = STATE(776), - [sym_logical_expression] = STATE(776), - [sym_bitwise_expression] = STATE(776), - [sym_equality_expression] = STATE(776), - [sym_relational_expression] = STATE(776), - [sym_shift_expression] = STATE(776), - [sym_math_expression] = STATE(776), - [sym_cast_expression] = STATE(776), - [sym_sizeof_expression] = STATE(776), - [sym_subscript_expression] = STATE(776), - [sym_call_expression] = STATE(776), - [sym_field_expression] = STATE(776), - [sym_compound_literal_expression] = STATE(776), - [sym_parenthesized_expression] = STATE(776), - [sym_char_literal] = STATE(776), - [sym_concatenated_string] = STATE(776), - [sym_string_literal] = STATE(249), - [anon_sym_LPAREN2] = ACTIONS(559), - [anon_sym_STAR] = ACTIONS(561), - [anon_sym_RBRACK] = ACTIONS(2036), - [anon_sym_AMP] = ACTIONS(561), - [anon_sym_BANG] = ACTIONS(569), - [anon_sym_TILDE] = ACTIONS(571), - [anon_sym_PLUS] = ACTIONS(573), - [anon_sym_DASH] = ACTIONS(573), - [anon_sym_DASH_DASH] = ACTIONS(575), - [anon_sym_PLUS_PLUS] = ACTIONS(575), - [anon_sym_sizeof] = ACTIONS(577), - [sym_number_literal] = ACTIONS(2038), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(2040), - [sym_false] = ACTIONS(2040), - [sym_null] = ACTIONS(2040), - [sym_identifier] = ACTIONS(2040), - [sym_comment] = ACTIONS(37), + [anon_sym_while] = ACTIONS(2018), + [sym_comment] = ACTIONS(59), }, [562] = { - [sym_argument_list] = STATE(430), - [anon_sym_LPAREN2] = ACTIONS(1012), - [anon_sym_STAR] = ACTIONS(1082), - [anon_sym_LBRACK] = ACTIONS(1016), - [anon_sym_RBRACK] = ACTIONS(2036), - [anon_sym_EQ] = ACTIONS(1084), - [anon_sym_QMARK] = ACTIONS(1086), - [anon_sym_STAR_EQ] = ACTIONS(1088), - [anon_sym_SLASH_EQ] = ACTIONS(1088), - [anon_sym_PERCENT_EQ] = ACTIONS(1088), - [anon_sym_PLUS_EQ] = ACTIONS(1088), - [anon_sym_DASH_EQ] = ACTIONS(1088), - [anon_sym_LT_LT_EQ] = ACTIONS(1088), - [anon_sym_GT_GT_EQ] = ACTIONS(1088), - [anon_sym_AMP_EQ] = ACTIONS(1088), - [anon_sym_CARET_EQ] = ACTIONS(1088), - [anon_sym_PIPE_EQ] = ACTIONS(1088), - [anon_sym_AMP] = ACTIONS(1090), - [anon_sym_PIPE_PIPE] = ACTIONS(1092), - [anon_sym_AMP_AMP] = ACTIONS(1094), - [anon_sym_PIPE] = ACTIONS(1096), - [anon_sym_CARET] = ACTIONS(1098), - [anon_sym_EQ_EQ] = ACTIONS(1100), - [anon_sym_BANG_EQ] = ACTIONS(1100), - [anon_sym_LT] = ACTIONS(1102), - [anon_sym_GT] = ACTIONS(1102), - [anon_sym_LT_EQ] = ACTIONS(1104), - [anon_sym_GT_EQ] = ACTIONS(1104), - [anon_sym_LT_LT] = ACTIONS(1106), - [anon_sym_GT_GT] = ACTIONS(1106), - [anon_sym_PLUS] = ACTIONS(1108), - [anon_sym_DASH] = ACTIONS(1108), - [anon_sym_SLASH] = ACTIONS(1082), - [anon_sym_PERCENT] = ACTIONS(1082), - [anon_sym_DASH_DASH] = ACTIONS(1044), - [anon_sym_PLUS_PLUS] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1046), - [anon_sym_DASH_GT] = ACTIONS(1046), - [sym_comment] = ACTIONS(37), + [sym_declaration] = STATE(789), + [sym__declaration_specifiers] = STATE(778), + [sym_storage_class_specifier] = STATE(142), + [sym_type_qualifier] = STATE(142), + [sym__type_specifier] = STATE(141), + [sym_sized_type_specifier] = STATE(141), + [sym_enum_specifier] = STATE(141), + [sym_struct_specifier] = STATE(141), + [sym_union_specifier] = STATE(141), + [sym__expression] = STATE(791), + [sym_conditional_expression] = STATE(791), + [sym_assignment_expression] = STATE(791), + [sym_pointer_expression] = STATE(791), + [sym_logical_expression] = STATE(791), + [sym_bitwise_expression] = STATE(791), + [sym_equality_expression] = STATE(791), + [sym_relational_expression] = STATE(791), + [sym_shift_expression] = STATE(791), + [sym_math_expression] = STATE(791), + [sym_cast_expression] = STATE(791), + [sym_sizeof_expression] = STATE(791), + [sym_subscript_expression] = STATE(791), + [sym_call_expression] = STATE(791), + [sym_field_expression] = STATE(791), + [sym_compound_literal_expression] = STATE(791), + [sym_parenthesized_expression] = STATE(791), + [sym_char_literal] = STATE(791), + [sym_concatenated_string] = STATE(791), + [sym_string_literal] = STATE(534), + [sym_macro_type_specifier] = STATE(141), + [aux_sym__declaration_specifiers_repeat1] = STATE(142), + [aux_sym_sized_type_specifier_repeat1] = STATE(143), + [anon_sym_SEMI] = ACTIONS(2020), + [anon_sym_extern] = ACTIONS(25), + [anon_sym_LPAREN2] = ACTIONS(1349), + [anon_sym_STAR] = ACTIONS(1351), + [anon_sym_static] = ACTIONS(25), + [anon_sym_auto] = ACTIONS(25), + [anon_sym_register] = ACTIONS(25), + [anon_sym_inline] = ACTIONS(25), + [anon_sym_const] = ACTIONS(27), + [anon_sym_restrict] = ACTIONS(27), + [anon_sym_volatile] = ACTIONS(27), + [anon_sym__Atomic] = ACTIONS(27), + [anon_sym_unsigned] = ACTIONS(294), + [anon_sym_long] = ACTIONS(294), + [anon_sym_short] = ACTIONS(294), + [sym_primitive_type] = ACTIONS(296), + [anon_sym_enum] = ACTIONS(33), + [anon_sym_struct] = ACTIONS(35), + [anon_sym_union] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(1351), + [anon_sym_BANG] = ACTIONS(1353), + [anon_sym_TILDE] = ACTIONS(1355), + [anon_sym_PLUS] = ACTIONS(1357), + [anon_sym_DASH] = ACTIONS(1357), + [anon_sym_DASH_DASH] = ACTIONS(1359), + [anon_sym_PLUS_PLUS] = ACTIONS(1359), + [anon_sym_sizeof] = ACTIONS(1361), + [sym_number_literal] = ACTIONS(2022), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(2024), + [sym_false] = ACTIONS(2024), + [sym_null] = ACTIONS(2024), + [sym_identifier] = ACTIONS(2026), + [sym_comment] = ACTIONS(59), }, [563] = { - [sym_argument_list] = STATE(430), - [anon_sym_SEMI] = ACTIONS(2042), - [anon_sym_LPAREN2] = ACTIONS(1012), - [anon_sym_STAR] = ACTIONS(1319), - [anon_sym_LBRACK] = ACTIONS(1016), - [anon_sym_EQ] = ACTIONS(1321), - [anon_sym_QMARK] = ACTIONS(1323), - [anon_sym_STAR_EQ] = ACTIONS(1325), - [anon_sym_SLASH_EQ] = ACTIONS(1325), - [anon_sym_PERCENT_EQ] = ACTIONS(1325), - [anon_sym_PLUS_EQ] = ACTIONS(1325), - [anon_sym_DASH_EQ] = ACTIONS(1325), - [anon_sym_LT_LT_EQ] = ACTIONS(1325), - [anon_sym_GT_GT_EQ] = ACTIONS(1325), - [anon_sym_AMP_EQ] = ACTIONS(1325), - [anon_sym_CARET_EQ] = ACTIONS(1325), - [anon_sym_PIPE_EQ] = ACTIONS(1325), - [anon_sym_AMP] = ACTIONS(1327), - [anon_sym_PIPE_PIPE] = ACTIONS(1329), - [anon_sym_AMP_AMP] = ACTIONS(1331), - [anon_sym_PIPE] = ACTIONS(1333), - [anon_sym_CARET] = ACTIONS(1335), - [anon_sym_EQ_EQ] = ACTIONS(1337), - [anon_sym_BANG_EQ] = ACTIONS(1337), - [anon_sym_LT] = ACTIONS(1339), - [anon_sym_GT] = ACTIONS(1339), - [anon_sym_LT_EQ] = ACTIONS(1341), - [anon_sym_GT_EQ] = ACTIONS(1341), - [anon_sym_LT_LT] = ACTIONS(1343), - [anon_sym_GT_GT] = ACTIONS(1343), - [anon_sym_PLUS] = ACTIONS(1345), - [anon_sym_DASH] = ACTIONS(1345), - [anon_sym_SLASH] = ACTIONS(1319), - [anon_sym_PERCENT] = ACTIONS(1319), - [anon_sym_DASH_DASH] = ACTIONS(1044), - [anon_sym_PLUS_PLUS] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1046), - [anon_sym_DASH_GT] = ACTIONS(1046), - [sym_comment] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(2028), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2030), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2030), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2030), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2030), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2030), + [sym_preproc_directive] = ACTIONS(2030), + [anon_sym_typedef] = ACTIONS(2030), + [anon_sym_extern] = ACTIONS(2030), + [anon_sym_LBRACE] = ACTIONS(2028), + [anon_sym_RBRACE] = ACTIONS(2028), + [anon_sym_LPAREN2] = ACTIONS(2028), + [anon_sym_STAR] = ACTIONS(2028), + [anon_sym_static] = ACTIONS(2030), + [anon_sym_auto] = ACTIONS(2030), + [anon_sym_register] = ACTIONS(2030), + [anon_sym_inline] = ACTIONS(2030), + [anon_sym_const] = ACTIONS(2030), + [anon_sym_restrict] = ACTIONS(2030), + [anon_sym_volatile] = ACTIONS(2030), + [anon_sym__Atomic] = ACTIONS(2030), + [anon_sym_unsigned] = ACTIONS(2030), + [anon_sym_long] = ACTIONS(2030), + [anon_sym_short] = ACTIONS(2030), + [sym_primitive_type] = ACTIONS(2030), + [anon_sym_enum] = ACTIONS(2030), + [anon_sym_struct] = ACTIONS(2030), + [anon_sym_union] = ACTIONS(2030), + [anon_sym_if] = ACTIONS(2030), + [anon_sym_else] = ACTIONS(2030), + [anon_sym_switch] = ACTIONS(2030), + [anon_sym_case] = ACTIONS(2030), + [anon_sym_default] = ACTIONS(2030), + [anon_sym_while] = ACTIONS(2030), + [anon_sym_do] = ACTIONS(2030), + [anon_sym_for] = ACTIONS(2030), + [anon_sym_return] = ACTIONS(2030), + [anon_sym_break] = ACTIONS(2030), + [anon_sym_continue] = ACTIONS(2030), + [anon_sym_goto] = ACTIONS(2030), + [anon_sym_AMP] = ACTIONS(2028), + [anon_sym_BANG] = ACTIONS(2028), + [anon_sym_TILDE] = ACTIONS(2028), + [anon_sym_PLUS] = ACTIONS(2030), + [anon_sym_DASH] = ACTIONS(2030), + [anon_sym_DASH_DASH] = ACTIONS(2028), + [anon_sym_PLUS_PLUS] = ACTIONS(2028), + [anon_sym_sizeof] = ACTIONS(2030), + [sym_number_literal] = ACTIONS(2028), + [anon_sym_SQUOTE] = ACTIONS(2028), + [anon_sym_DQUOTE] = ACTIONS(2028), + [sym_true] = ACTIONS(2030), + [sym_false] = ACTIONS(2030), + [sym_null] = ACTIONS(2030), + [sym_identifier] = ACTIONS(2030), + [sym_comment] = ACTIONS(59), }, [564] = { - [sym__expression] = STATE(778), - [sym_conditional_expression] = STATE(778), - [sym_assignment_expression] = STATE(778), - [sym_pointer_expression] = STATE(778), - [sym_logical_expression] = STATE(778), - [sym_bitwise_expression] = STATE(778), - [sym_equality_expression] = STATE(778), - [sym_relational_expression] = STATE(778), - [sym_shift_expression] = STATE(778), - [sym_math_expression] = STATE(778), - [sym_cast_expression] = STATE(778), - [sym_sizeof_expression] = STATE(778), - [sym_subscript_expression] = STATE(778), - [sym_call_expression] = STATE(778), - [sym_field_expression] = STATE(778), - [sym_compound_literal_expression] = STATE(778), - [sym_parenthesized_expression] = STATE(778), - [sym_char_literal] = STATE(778), - [sym_concatenated_string] = STATE(778), - [sym_string_literal] = STATE(342), - [anon_sym_LPAREN2] = ACTIONS(780), - [anon_sym_STAR] = ACTIONS(782), - [anon_sym_AMP] = ACTIONS(782), - [anon_sym_BANG] = ACTIONS(784), - [anon_sym_TILDE] = ACTIONS(786), - [anon_sym_PLUS] = ACTIONS(788), - [anon_sym_DASH] = ACTIONS(788), - [anon_sym_DASH_DASH] = ACTIONS(790), - [anon_sym_PLUS_PLUS] = ACTIONS(790), - [anon_sym_sizeof] = ACTIONS(792), - [sym_number_literal] = ACTIONS(2044), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(2046), - [sym_false] = ACTIONS(2046), - [sym_null] = ACTIONS(2046), - [sym_identifier] = ACTIONS(2046), - [sym_comment] = ACTIONS(37), + [sym_argument_list] = STATE(98), + [anon_sym_SEMI] = ACTIONS(2032), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_LBRACK] = ACTIONS(188), + [anon_sym_EQ] = ACTIONS(1896), + [anon_sym_QMARK] = ACTIONS(1898), + [anon_sym_STAR_EQ] = ACTIONS(1900), + [anon_sym_SLASH_EQ] = ACTIONS(1900), + [anon_sym_PERCENT_EQ] = ACTIONS(1900), + [anon_sym_PLUS_EQ] = ACTIONS(1900), + [anon_sym_DASH_EQ] = ACTIONS(1900), + [anon_sym_LT_LT_EQ] = ACTIONS(1900), + [anon_sym_GT_GT_EQ] = ACTIONS(1900), + [anon_sym_AMP_EQ] = ACTIONS(1900), + [anon_sym_CARET_EQ] = ACTIONS(1900), + [anon_sym_PIPE_EQ] = ACTIONS(1900), + [anon_sym_AMP] = ACTIONS(1902), + [anon_sym_PIPE_PIPE] = ACTIONS(1904), + [anon_sym_AMP_AMP] = ACTIONS(1906), + [anon_sym_PIPE] = ACTIONS(1908), + [anon_sym_CARET] = ACTIONS(1910), + [anon_sym_EQ_EQ] = ACTIONS(1912), + [anon_sym_BANG_EQ] = ACTIONS(1912), + [anon_sym_LT] = ACTIONS(1914), + [anon_sym_GT] = ACTIONS(1914), + [anon_sym_LT_EQ] = ACTIONS(1916), + [anon_sym_GT_EQ] = ACTIONS(1916), + [anon_sym_LT_LT] = ACTIONS(1918), + [anon_sym_GT_GT] = ACTIONS(1918), + [anon_sym_PLUS] = ACTIONS(1920), + [anon_sym_DASH] = ACTIONS(1920), + [anon_sym_SLASH] = ACTIONS(1894), + [anon_sym_PERCENT] = ACTIONS(1894), + [anon_sym_DASH_DASH] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(216), + [anon_sym_DOT] = ACTIONS(218), + [anon_sym_DASH_GT] = ACTIONS(218), + [sym_comment] = ACTIONS(59), }, [565] = { - [aux_sym_field_declaration_repeat1] = STATE(565), - [anon_sym_COMMA] = ACTIONS(2048), - [anon_sym_SEMI] = ACTIONS(2032), - [anon_sym_COLON] = ACTIONS(2032), - [sym_comment] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(2034), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2036), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2036), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2036), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2036), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2036), + [sym_preproc_directive] = ACTIONS(2036), + [anon_sym_typedef] = ACTIONS(2036), + [anon_sym_extern] = ACTIONS(2036), + [anon_sym_LBRACE] = ACTIONS(2034), + [anon_sym_RBRACE] = ACTIONS(2034), + [anon_sym_LPAREN2] = ACTIONS(2034), + [anon_sym_STAR] = ACTIONS(2034), + [anon_sym_static] = ACTIONS(2036), + [anon_sym_auto] = ACTIONS(2036), + [anon_sym_register] = ACTIONS(2036), + [anon_sym_inline] = ACTIONS(2036), + [anon_sym_const] = ACTIONS(2036), + [anon_sym_restrict] = ACTIONS(2036), + [anon_sym_volatile] = ACTIONS(2036), + [anon_sym__Atomic] = ACTIONS(2036), + [anon_sym_unsigned] = ACTIONS(2036), + [anon_sym_long] = ACTIONS(2036), + [anon_sym_short] = ACTIONS(2036), + [sym_primitive_type] = ACTIONS(2036), + [anon_sym_enum] = ACTIONS(2036), + [anon_sym_struct] = ACTIONS(2036), + [anon_sym_union] = ACTIONS(2036), + [anon_sym_if] = ACTIONS(2036), + [anon_sym_else] = ACTIONS(2036), + [anon_sym_switch] = ACTIONS(2036), + [anon_sym_case] = ACTIONS(2036), + [anon_sym_default] = ACTIONS(2036), + [anon_sym_while] = ACTIONS(2036), + [anon_sym_do] = ACTIONS(2036), + [anon_sym_for] = ACTIONS(2036), + [anon_sym_return] = ACTIONS(2036), + [anon_sym_break] = ACTIONS(2036), + [anon_sym_continue] = ACTIONS(2036), + [anon_sym_goto] = ACTIONS(2036), + [anon_sym_AMP] = ACTIONS(2034), + [anon_sym_BANG] = ACTIONS(2034), + [anon_sym_TILDE] = ACTIONS(2034), + [anon_sym_PLUS] = ACTIONS(2036), + [anon_sym_DASH] = ACTIONS(2036), + [anon_sym_DASH_DASH] = ACTIONS(2034), + [anon_sym_PLUS_PLUS] = ACTIONS(2034), + [anon_sym_sizeof] = ACTIONS(2036), + [sym_number_literal] = ACTIONS(2034), + [anon_sym_SQUOTE] = ACTIONS(2034), + [anon_sym_DQUOTE] = ACTIONS(2034), + [sym_true] = ACTIONS(2036), + [sym_false] = ACTIONS(2036), + [sym_null] = ACTIONS(2036), + [sym_identifier] = ACTIONS(2036), + [sym_comment] = ACTIONS(59), }, [566] = { - [anon_sym_COMMA] = ACTIONS(2051), - [anon_sym_RPAREN] = ACTIONS(2051), - [anon_sym_LPAREN2] = ACTIONS(2051), - [anon_sym_LBRACK] = ACTIONS(2051), - [sym_comment] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(2038), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2040), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2040), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2040), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2040), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2040), + [sym_preproc_directive] = ACTIONS(2040), + [anon_sym_typedef] = ACTIONS(2040), + [anon_sym_extern] = ACTIONS(2040), + [anon_sym_LBRACE] = ACTIONS(2038), + [anon_sym_RBRACE] = ACTIONS(2038), + [anon_sym_LPAREN2] = ACTIONS(2038), + [anon_sym_STAR] = ACTIONS(2038), + [anon_sym_static] = ACTIONS(2040), + [anon_sym_auto] = ACTIONS(2040), + [anon_sym_register] = ACTIONS(2040), + [anon_sym_inline] = ACTIONS(2040), + [anon_sym_const] = ACTIONS(2040), + [anon_sym_restrict] = ACTIONS(2040), + [anon_sym_volatile] = ACTIONS(2040), + [anon_sym__Atomic] = ACTIONS(2040), + [anon_sym_unsigned] = ACTIONS(2040), + [anon_sym_long] = ACTIONS(2040), + [anon_sym_short] = ACTIONS(2040), + [sym_primitive_type] = ACTIONS(2040), + [anon_sym_enum] = ACTIONS(2040), + [anon_sym_struct] = ACTIONS(2040), + [anon_sym_union] = ACTIONS(2040), + [anon_sym_if] = ACTIONS(2040), + [anon_sym_else] = ACTIONS(2040), + [anon_sym_switch] = ACTIONS(2040), + [anon_sym_case] = ACTIONS(2040), + [anon_sym_default] = ACTIONS(2040), + [anon_sym_while] = ACTIONS(2040), + [anon_sym_do] = ACTIONS(2040), + [anon_sym_for] = ACTIONS(2040), + [anon_sym_return] = ACTIONS(2040), + [anon_sym_break] = ACTIONS(2040), + [anon_sym_continue] = ACTIONS(2040), + [anon_sym_goto] = ACTIONS(2040), + [anon_sym_AMP] = ACTIONS(2038), + [anon_sym_BANG] = ACTIONS(2038), + [anon_sym_TILDE] = ACTIONS(2038), + [anon_sym_PLUS] = ACTIONS(2040), + [anon_sym_DASH] = ACTIONS(2040), + [anon_sym_DASH_DASH] = ACTIONS(2038), + [anon_sym_PLUS_PLUS] = ACTIONS(2038), + [anon_sym_sizeof] = ACTIONS(2040), + [sym_number_literal] = ACTIONS(2038), + [anon_sym_SQUOTE] = ACTIONS(2038), + [anon_sym_DQUOTE] = ACTIONS(2038), + [sym_true] = ACTIONS(2040), + [sym_false] = ACTIONS(2040), + [sym_null] = ACTIONS(2040), + [sym_identifier] = ACTIONS(2040), + [sym_comment] = ACTIONS(59), }, [567] = { - [sym_parameter_list] = STATE(358), - [anon_sym_COMMA] = ACTIONS(2053), - [anon_sym_RPAREN] = ACTIONS(2053), - [anon_sym_LPAREN2] = ACTIONS(231), - [anon_sym_LBRACK] = ACTIONS(859), - [sym_comment] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(2042), + [sym_comment] = ACTIONS(59), }, [568] = { - [sym_type_qualifier] = STATE(568), - [aux_sym_type_definition_repeat1] = STATE(568), - [anon_sym_RPAREN] = ACTIONS(874), - [anon_sym_LPAREN2] = ACTIONS(874), - [anon_sym_STAR] = ACTIONS(874), - [anon_sym_LBRACK] = ACTIONS(874), - [anon_sym_const] = ACTIONS(2055), - [anon_sym_restrict] = ACTIONS(2055), - [anon_sym_volatile] = ACTIONS(2055), - [anon_sym__Atomic] = ACTIONS(2055), - [sym_comment] = ACTIONS(37), + [sym_type_qualifier] = STATE(56), + [sym__type_specifier] = STATE(51), + [sym_sized_type_specifier] = STATE(51), + [sym_enum_specifier] = STATE(51), + [sym_struct_specifier] = STATE(51), + [sym_union_specifier] = STATE(51), + [sym__expression] = STATE(52), + [sym_comma_expression] = STATE(53), + [sym_conditional_expression] = STATE(52), + [sym_assignment_expression] = STATE(52), + [sym_pointer_expression] = STATE(52), + [sym_logical_expression] = STATE(52), + [sym_bitwise_expression] = STATE(52), + [sym_equality_expression] = STATE(52), + [sym_relational_expression] = STATE(52), + [sym_shift_expression] = STATE(52), + [sym_math_expression] = STATE(52), + [sym_cast_expression] = STATE(52), + [sym_type_descriptor] = STATE(794), + [sym_sizeof_expression] = STATE(52), + [sym_subscript_expression] = STATE(52), + [sym_call_expression] = STATE(52), + [sym_field_expression] = STATE(52), + [sym_compound_literal_expression] = STATE(52), + [sym_parenthesized_expression] = STATE(52), + [sym_char_literal] = STATE(52), + [sym_concatenated_string] = STATE(52), + [sym_string_literal] = STATE(55), + [sym_macro_type_specifier] = STATE(51), + [aux_sym_type_definition_repeat1] = STATE(56), + [aux_sym_sized_type_specifier_repeat1] = STATE(57), + [anon_sym_LPAREN2] = ACTIONS(85), + [anon_sym_STAR] = ACTIONS(87), + [anon_sym_const] = ACTIONS(27), + [anon_sym_restrict] = ACTIONS(27), + [anon_sym_volatile] = ACTIONS(27), + [anon_sym__Atomic] = ACTIONS(27), + [anon_sym_unsigned] = ACTIONS(89), + [anon_sym_long] = ACTIONS(89), + [anon_sym_short] = ACTIONS(89), + [sym_primitive_type] = ACTIONS(91), + [anon_sym_enum] = ACTIONS(33), + [anon_sym_struct] = ACTIONS(35), + [anon_sym_union] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_PLUS] = ACTIONS(97), + [anon_sym_DASH] = ACTIONS(97), + [anon_sym_DASH_DASH] = ACTIONS(99), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(105), + [sym_false] = ACTIONS(105), + [sym_null] = ACTIONS(105), + [sym_identifier] = ACTIONS(107), + [sym_comment] = ACTIONS(59), }, [569] = { - [anon_sym_COMMA] = ACTIONS(2058), - [anon_sym_RPAREN] = ACTIONS(2058), - [anon_sym_LPAREN2] = ACTIONS(2058), - [anon_sym_LBRACK] = ACTIONS(2058), - [sym_comment] = ACTIONS(37), + [sym_argument_list] = STATE(98), + [anon_sym_SEMI] = ACTIONS(413), + [anon_sym_COMMA] = ACTIONS(413), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(1500), + [anon_sym_LBRACK] = ACTIONS(188), + [anon_sym_EQ] = ACTIONS(411), + [anon_sym_QMARK] = ACTIONS(413), + [anon_sym_STAR_EQ] = ACTIONS(413), + [anon_sym_SLASH_EQ] = ACTIONS(413), + [anon_sym_PERCENT_EQ] = ACTIONS(413), + [anon_sym_PLUS_EQ] = ACTIONS(413), + [anon_sym_DASH_EQ] = ACTIONS(413), + [anon_sym_LT_LT_EQ] = ACTIONS(413), + [anon_sym_GT_GT_EQ] = ACTIONS(413), + [anon_sym_AMP_EQ] = ACTIONS(413), + [anon_sym_CARET_EQ] = ACTIONS(413), + [anon_sym_PIPE_EQ] = ACTIONS(413), + [anon_sym_AMP] = ACTIONS(411), + [anon_sym_PIPE_PIPE] = ACTIONS(413), + [anon_sym_AMP_AMP] = ACTIONS(413), + [anon_sym_PIPE] = ACTIONS(411), + [anon_sym_CARET] = ACTIONS(411), + [anon_sym_EQ_EQ] = ACTIONS(413), + [anon_sym_BANG_EQ] = ACTIONS(413), + [anon_sym_LT] = ACTIONS(411), + [anon_sym_GT] = ACTIONS(411), + [anon_sym_LT_EQ] = ACTIONS(413), + [anon_sym_GT_EQ] = ACTIONS(413), + [anon_sym_LT_LT] = ACTIONS(1524), + [anon_sym_GT_GT] = ACTIONS(1524), + [anon_sym_PLUS] = ACTIONS(1526), + [anon_sym_DASH] = ACTIONS(1526), + [anon_sym_SLASH] = ACTIONS(1500), + [anon_sym_PERCENT] = ACTIONS(1500), + [anon_sym_DASH_DASH] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(216), + [anon_sym_DOT] = ACTIONS(218), + [anon_sym_DASH_GT] = ACTIONS(218), + [sym_comment] = ACTIONS(59), }, [570] = { - [sym_argument_list] = STATE(430), - [anon_sym_LPAREN2] = ACTIONS(1012), - [anon_sym_STAR] = ACTIONS(1082), - [anon_sym_LBRACK] = ACTIONS(1016), - [anon_sym_RBRACK] = ACTIONS(2060), - [anon_sym_EQ] = ACTIONS(1084), - [anon_sym_QMARK] = ACTIONS(1086), - [anon_sym_STAR_EQ] = ACTIONS(1088), - [anon_sym_SLASH_EQ] = ACTIONS(1088), - [anon_sym_PERCENT_EQ] = ACTIONS(1088), - [anon_sym_PLUS_EQ] = ACTIONS(1088), - [anon_sym_DASH_EQ] = ACTIONS(1088), - [anon_sym_LT_LT_EQ] = ACTIONS(1088), - [anon_sym_GT_GT_EQ] = ACTIONS(1088), - [anon_sym_AMP_EQ] = ACTIONS(1088), - [anon_sym_CARET_EQ] = ACTIONS(1088), - [anon_sym_PIPE_EQ] = ACTIONS(1088), - [anon_sym_AMP] = ACTIONS(1090), - [anon_sym_PIPE_PIPE] = ACTIONS(1092), - [anon_sym_AMP_AMP] = ACTIONS(1094), - [anon_sym_PIPE] = ACTIONS(1096), - [anon_sym_CARET] = ACTIONS(1098), - [anon_sym_EQ_EQ] = ACTIONS(1100), - [anon_sym_BANG_EQ] = ACTIONS(1100), - [anon_sym_LT] = ACTIONS(1102), - [anon_sym_GT] = ACTIONS(1102), - [anon_sym_LT_EQ] = ACTIONS(1104), - [anon_sym_GT_EQ] = ACTIONS(1104), - [anon_sym_LT_LT] = ACTIONS(1106), - [anon_sym_GT_GT] = ACTIONS(1106), - [anon_sym_PLUS] = ACTIONS(1108), - [anon_sym_DASH] = ACTIONS(1108), - [anon_sym_SLASH] = ACTIONS(1082), - [anon_sym_PERCENT] = ACTIONS(1082), - [anon_sym_DASH_DASH] = ACTIONS(1044), - [anon_sym_PLUS_PLUS] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1046), - [anon_sym_DASH_GT] = ACTIONS(1046), - [sym_comment] = ACTIONS(37), + [sym_compound_statement] = STATE(795), + [sym_labeled_statement] = STATE(795), + [sym_expression_statement] = STATE(795), + [sym_if_statement] = STATE(795), + [sym_switch_statement] = STATE(795), + [sym_case_statement] = STATE(795), + [sym_while_statement] = STATE(795), + [sym_do_statement] = STATE(795), + [sym_for_statement] = STATE(795), + [sym_return_statement] = STATE(795), + [sym_break_statement] = STATE(795), + [sym_continue_statement] = STATE(795), + [sym_goto_statement] = STATE(795), + [sym__expression] = STATE(372), + [sym_comma_expression] = STATE(373), + [sym_conditional_expression] = STATE(372), + [sym_assignment_expression] = STATE(372), + [sym_pointer_expression] = STATE(372), + [sym_logical_expression] = STATE(372), + [sym_bitwise_expression] = STATE(372), + [sym_equality_expression] = STATE(372), + [sym_relational_expression] = STATE(372), + [sym_shift_expression] = STATE(372), + [sym_math_expression] = STATE(372), + [sym_cast_expression] = STATE(372), + [sym_sizeof_expression] = STATE(372), + [sym_subscript_expression] = STATE(372), + [sym_call_expression] = STATE(372), + [sym_field_expression] = STATE(372), + [sym_compound_literal_expression] = STATE(372), + [sym_parenthesized_expression] = STATE(372), + [sym_char_literal] = STATE(372), + [sym_concatenated_string] = STATE(372), + [sym_string_literal] = STATE(374), + [anon_sym_SEMI] = ACTIONS(928), + [anon_sym_LBRACE] = ACTIONS(439), + [anon_sym_LPAREN2] = ACTIONS(936), + [anon_sym_STAR] = ACTIONS(938), + [anon_sym_if] = ACTIONS(940), + [anon_sym_switch] = ACTIONS(942), + [anon_sym_case] = ACTIONS(944), + [anon_sym_default] = ACTIONS(946), + [anon_sym_while] = ACTIONS(948), + [anon_sym_do] = ACTIONS(950), + [anon_sym_for] = ACTIONS(952), + [anon_sym_return] = ACTIONS(954), + [anon_sym_break] = ACTIONS(956), + [anon_sym_continue] = ACTIONS(958), + [anon_sym_goto] = ACTIONS(960), + [anon_sym_AMP] = ACTIONS(938), + [anon_sym_BANG] = ACTIONS(962), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_DASH_DASH] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(968), + [anon_sym_sizeof] = ACTIONS(970), + [sym_number_literal] = ACTIONS(972), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(974), + [sym_false] = ACTIONS(974), + [sym_null] = ACTIONS(974), + [sym_identifier] = ACTIONS(2002), + [sym_comment] = ACTIONS(59), }, [571] = { - [sym__expression] = STATE(780), - [sym_conditional_expression] = STATE(780), - [sym_assignment_expression] = STATE(780), - [sym_pointer_expression] = STATE(780), - [sym_logical_expression] = STATE(780), - [sym_bitwise_expression] = STATE(780), - [sym_equality_expression] = STATE(780), - [sym_relational_expression] = STATE(780), - [sym_shift_expression] = STATE(780), - [sym_math_expression] = STATE(780), - [sym_cast_expression] = STATE(780), - [sym_sizeof_expression] = STATE(780), - [sym_subscript_expression] = STATE(780), - [sym_call_expression] = STATE(780), - [sym_field_expression] = STATE(780), - [sym_compound_literal_expression] = STATE(780), - [sym_parenthesized_expression] = STATE(780), - [sym_char_literal] = STATE(780), - [sym_concatenated_string] = STATE(780), - [sym_string_literal] = STATE(249), - [anon_sym_LPAREN2] = ACTIONS(559), - [anon_sym_STAR] = ACTIONS(561), - [anon_sym_RBRACK] = ACTIONS(2060), - [anon_sym_AMP] = ACTIONS(561), - [anon_sym_BANG] = ACTIONS(569), - [anon_sym_TILDE] = ACTIONS(571), - [anon_sym_PLUS] = ACTIONS(573), - [anon_sym_DASH] = ACTIONS(573), - [anon_sym_DASH_DASH] = ACTIONS(575), - [anon_sym_PLUS_PLUS] = ACTIONS(575), - [anon_sym_sizeof] = ACTIONS(577), - [sym_number_literal] = ACTIONS(2062), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(2064), - [sym_false] = ACTIONS(2064), - [sym_null] = ACTIONS(2064), - [sym_identifier] = ACTIONS(2064), - [sym_comment] = ACTIONS(37), + [sym_parameter_list] = STATE(201), + [aux_sym_declaration_repeat1] = STATE(202), + [anon_sym_SEMI] = ACTIONS(435), + [anon_sym_COMMA] = ACTIONS(437), + [anon_sym_LPAREN2] = ACTIONS(441), + [anon_sym_LBRACK] = ACTIONS(443), + [anon_sym_EQ] = ACTIONS(445), + [sym_comment] = ACTIONS(59), }, [572] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(313), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(313), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(313), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(313), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(313), - [sym_preproc_directive] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(311), - [anon_sym_typedef] = ACTIONS(313), - [anon_sym_extern] = ACTIONS(313), - [anon_sym_LBRACE] = ACTIONS(311), - [anon_sym_RBRACE] = ACTIONS(311), - [anon_sym_LPAREN2] = ACTIONS(311), - [anon_sym_STAR] = ACTIONS(311), - [anon_sym_static] = ACTIONS(313), - [anon_sym_auto] = ACTIONS(313), - [anon_sym_register] = ACTIONS(313), - [anon_sym_inline] = ACTIONS(313), - [anon_sym_const] = ACTIONS(313), - [anon_sym_restrict] = ACTIONS(313), - [anon_sym_volatile] = ACTIONS(313), - [anon_sym__Atomic] = ACTIONS(313), - [anon_sym_unsigned] = ACTIONS(313), - [anon_sym_long] = ACTIONS(313), - [anon_sym_short] = ACTIONS(313), - [sym_primitive_type] = ACTIONS(313), - [anon_sym_enum] = ACTIONS(313), - [anon_sym_struct] = ACTIONS(313), - [anon_sym_union] = ACTIONS(313), - [anon_sym_if] = ACTIONS(313), - [anon_sym_switch] = ACTIONS(313), - [anon_sym_case] = ACTIONS(313), - [anon_sym_default] = ACTIONS(313), - [anon_sym_while] = ACTIONS(313), - [anon_sym_do] = ACTIONS(313), - [anon_sym_for] = ACTIONS(313), - [anon_sym_return] = ACTIONS(313), - [anon_sym_break] = ACTIONS(313), - [anon_sym_continue] = ACTIONS(313), - [anon_sym_goto] = ACTIONS(313), - [anon_sym_AMP] = ACTIONS(311), - [anon_sym_BANG] = ACTIONS(311), - [anon_sym_TILDE] = ACTIONS(311), - [anon_sym_PLUS] = ACTIONS(313), - [anon_sym_DASH] = ACTIONS(313), - [anon_sym_DASH_DASH] = ACTIONS(311), - [anon_sym_PLUS_PLUS] = ACTIONS(311), - [anon_sym_sizeof] = ACTIONS(313), - [sym_number_literal] = ACTIONS(311), - [anon_sym_SQUOTE] = ACTIONS(311), - [anon_sym_DQUOTE] = ACTIONS(311), - [sym_true] = ACTIONS(313), - [sym_false] = ACTIONS(313), - [sym_null] = ACTIONS(313), - [sym_identifier] = ACTIONS(313), - [sym_comment] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(2044), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2046), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2046), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2046), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2046), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2046), + [sym_preproc_directive] = ACTIONS(2046), + [anon_sym_typedef] = ACTIONS(2046), + [anon_sym_extern] = ACTIONS(2046), + [anon_sym_LBRACE] = ACTIONS(2044), + [anon_sym_RBRACE] = ACTIONS(2044), + [anon_sym_LPAREN2] = ACTIONS(2044), + [anon_sym_STAR] = ACTIONS(2044), + [anon_sym_static] = ACTIONS(2046), + [anon_sym_auto] = ACTIONS(2046), + [anon_sym_register] = ACTIONS(2046), + [anon_sym_inline] = ACTIONS(2046), + [anon_sym_const] = ACTIONS(2046), + [anon_sym_restrict] = ACTIONS(2046), + [anon_sym_volatile] = ACTIONS(2046), + [anon_sym__Atomic] = ACTIONS(2046), + [anon_sym_unsigned] = ACTIONS(2046), + [anon_sym_long] = ACTIONS(2046), + [anon_sym_short] = ACTIONS(2046), + [sym_primitive_type] = ACTIONS(2046), + [anon_sym_enum] = ACTIONS(2046), + [anon_sym_struct] = ACTIONS(2046), + [anon_sym_union] = ACTIONS(2046), + [anon_sym_if] = ACTIONS(2046), + [anon_sym_else] = ACTIONS(2046), + [anon_sym_switch] = ACTIONS(2046), + [anon_sym_case] = ACTIONS(2046), + [anon_sym_default] = ACTIONS(2046), + [anon_sym_while] = ACTIONS(2046), + [anon_sym_do] = ACTIONS(2046), + [anon_sym_for] = ACTIONS(2046), + [anon_sym_return] = ACTIONS(2046), + [anon_sym_break] = ACTIONS(2046), + [anon_sym_continue] = ACTIONS(2046), + [anon_sym_goto] = ACTIONS(2046), + [anon_sym_AMP] = ACTIONS(2044), + [anon_sym_BANG] = ACTIONS(2044), + [anon_sym_TILDE] = ACTIONS(2044), + [anon_sym_PLUS] = ACTIONS(2046), + [anon_sym_DASH] = ACTIONS(2046), + [anon_sym_DASH_DASH] = ACTIONS(2044), + [anon_sym_PLUS_PLUS] = ACTIONS(2044), + [anon_sym_sizeof] = ACTIONS(2046), + [sym_number_literal] = ACTIONS(2044), + [anon_sym_SQUOTE] = ACTIONS(2044), + [anon_sym_DQUOTE] = ACTIONS(2044), + [sym_true] = ACTIONS(2046), + [sym_false] = ACTIONS(2046), + [sym_null] = ACTIONS(2046), + [sym_identifier] = ACTIONS(2046), + [sym_comment] = ACTIONS(59), }, [573] = { - [aux_sym_string_literal_repeat1] = STATE(124), - [anon_sym_DQUOTE] = ACTIONS(2066), - [aux_sym_SLASH_LBRACK_CARET_BSLASH_BSLASH_DQUOTE_BSLASHn_RBRACK_SLASH] = ACTIONS(317), - [sym_escape_sequence] = ACTIONS(317), - [sym_comment] = ACTIONS(47), + [sym__expression] = STATE(796), + [sym_comma_expression] = STATE(306), + [sym_conditional_expression] = STATE(796), + [sym_assignment_expression] = STATE(796), + [sym_pointer_expression] = STATE(796), + [sym_logical_expression] = STATE(796), + [sym_bitwise_expression] = STATE(796), + [sym_equality_expression] = STATE(796), + [sym_relational_expression] = STATE(796), + [sym_shift_expression] = STATE(796), + [sym_math_expression] = STATE(796), + [sym_cast_expression] = STATE(796), + [sym_sizeof_expression] = STATE(796), + [sym_subscript_expression] = STATE(796), + [sym_call_expression] = STATE(796), + [sym_field_expression] = STATE(796), + [sym_compound_literal_expression] = STATE(796), + [sym_parenthesized_expression] = STATE(796), + [sym_char_literal] = STATE(796), + [sym_concatenated_string] = STATE(796), + [sym_string_literal] = STATE(374), + [anon_sym_LPAREN2] = ACTIONS(936), + [anon_sym_STAR] = ACTIONS(938), + [anon_sym_AMP] = ACTIONS(938), + [anon_sym_BANG] = ACTIONS(962), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_DASH_DASH] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(968), + [anon_sym_sizeof] = ACTIONS(970), + [sym_number_literal] = ACTIONS(2048), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(2050), + [sym_false] = ACTIONS(2050), + [sym_null] = ACTIONS(2050), + [sym_identifier] = ACTIONS(2050), + [sym_comment] = ACTIONS(59), }, [574] = { - [sym_preproc_arg] = ACTIONS(2068), - [sym_comment] = ACTIONS(47), + [sym__expression] = STATE(206), + [sym_conditional_expression] = STATE(206), + [sym_assignment_expression] = STATE(206), + [sym_pointer_expression] = STATE(206), + [sym_logical_expression] = STATE(206), + [sym_bitwise_expression] = STATE(206), + [sym_equality_expression] = STATE(206), + [sym_relational_expression] = STATE(206), + [sym_shift_expression] = STATE(206), + [sym_math_expression] = STATE(206), + [sym_cast_expression] = STATE(206), + [sym_sizeof_expression] = STATE(206), + [sym_subscript_expression] = STATE(206), + [sym_call_expression] = STATE(206), + [sym_field_expression] = STATE(206), + [sym_compound_literal_expression] = STATE(206), + [sym_parenthesized_expression] = STATE(206), + [sym_char_literal] = STATE(206), + [sym_concatenated_string] = STATE(206), + [sym_string_literal] = STATE(374), + [anon_sym_LPAREN2] = ACTIONS(936), + [anon_sym_STAR] = ACTIONS(938), + [anon_sym_AMP] = ACTIONS(938), + [anon_sym_BANG] = ACTIONS(962), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_DASH_DASH] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(968), + [anon_sym_sizeof] = ACTIONS(970), + [sym_number_literal] = ACTIONS(457), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(459), + [sym_false] = ACTIONS(459), + [sym_null] = ACTIONS(459), + [sym_identifier] = ACTIONS(459), + [sym_comment] = ACTIONS(59), }, [575] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2070), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2070), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2070), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2070), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2070), - [sym_preproc_directive] = ACTIONS(2070), - [anon_sym_SEMI] = ACTIONS(2072), - [anon_sym_typedef] = ACTIONS(2070), - [anon_sym_extern] = ACTIONS(2070), - [anon_sym_LBRACE] = ACTIONS(2072), - [anon_sym_RBRACE] = ACTIONS(2072), - [anon_sym_LPAREN2] = ACTIONS(2072), - [anon_sym_STAR] = ACTIONS(2072), - [anon_sym_static] = ACTIONS(2070), - [anon_sym_auto] = ACTIONS(2070), - [anon_sym_register] = ACTIONS(2070), - [anon_sym_inline] = ACTIONS(2070), - [anon_sym_const] = ACTIONS(2070), - [anon_sym_restrict] = ACTIONS(2070), - [anon_sym_volatile] = ACTIONS(2070), - [anon_sym__Atomic] = ACTIONS(2070), - [anon_sym_unsigned] = ACTIONS(2070), - [anon_sym_long] = ACTIONS(2070), - [anon_sym_short] = ACTIONS(2070), - [sym_primitive_type] = ACTIONS(2070), - [anon_sym_enum] = ACTIONS(2070), - [anon_sym_struct] = ACTIONS(2070), - [anon_sym_union] = ACTIONS(2070), - [anon_sym_if] = ACTIONS(2070), - [anon_sym_switch] = ACTIONS(2070), - [anon_sym_case] = ACTIONS(2070), - [anon_sym_default] = ACTIONS(2070), - [anon_sym_while] = ACTIONS(2070), - [anon_sym_do] = ACTIONS(2070), - [anon_sym_for] = ACTIONS(2070), - [anon_sym_return] = ACTIONS(2070), - [anon_sym_break] = ACTIONS(2070), - [anon_sym_continue] = ACTIONS(2070), - [anon_sym_goto] = ACTIONS(2070), - [anon_sym_AMP] = ACTIONS(2072), - [anon_sym_BANG] = ACTIONS(2072), - [anon_sym_TILDE] = ACTIONS(2072), - [anon_sym_PLUS] = ACTIONS(2070), - [anon_sym_DASH] = ACTIONS(2070), - [anon_sym_DASH_DASH] = ACTIONS(2072), - [anon_sym_PLUS_PLUS] = ACTIONS(2072), - [anon_sym_sizeof] = ACTIONS(2070), - [sym_number_literal] = ACTIONS(2072), - [anon_sym_SQUOTE] = ACTIONS(2072), - [anon_sym_DQUOTE] = ACTIONS(2072), - [sym_true] = ACTIONS(2070), - [sym_false] = ACTIONS(2070), - [sym_null] = ACTIONS(2070), - [sym_identifier] = ACTIONS(2070), - [sym_comment] = ACTIONS(37), + [sym__expression] = STATE(797), + [sym_conditional_expression] = STATE(797), + [sym_assignment_expression] = STATE(797), + [sym_pointer_expression] = STATE(797), + [sym_logical_expression] = STATE(797), + [sym_bitwise_expression] = STATE(797), + [sym_equality_expression] = STATE(797), + [sym_relational_expression] = STATE(797), + [sym_shift_expression] = STATE(797), + [sym_math_expression] = STATE(797), + [sym_cast_expression] = STATE(797), + [sym_sizeof_expression] = STATE(797), + [sym_subscript_expression] = STATE(797), + [sym_call_expression] = STATE(797), + [sym_field_expression] = STATE(797), + [sym_compound_literal_expression] = STATE(797), + [sym_parenthesized_expression] = STATE(797), + [sym_char_literal] = STATE(797), + [sym_concatenated_string] = STATE(797), + [sym_string_literal] = STATE(374), + [anon_sym_LPAREN2] = ACTIONS(936), + [anon_sym_STAR] = ACTIONS(938), + [anon_sym_AMP] = ACTIONS(938), + [anon_sym_BANG] = ACTIONS(962), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_DASH_DASH] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(968), + [anon_sym_sizeof] = ACTIONS(970), + [sym_number_literal] = ACTIONS(2052), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(2054), + [sym_false] = ACTIONS(2054), + [sym_null] = ACTIONS(2054), + [sym_identifier] = ACTIONS(2054), + [sym_comment] = ACTIONS(59), }, [576] = { - [sym_identifier] = ACTIONS(2074), - [sym_comment] = ACTIONS(37), + [sym__expression] = STATE(798), + [sym_conditional_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_pointer_expression] = STATE(798), + [sym_logical_expression] = STATE(798), + [sym_bitwise_expression] = STATE(798), + [sym_equality_expression] = STATE(798), + [sym_relational_expression] = STATE(798), + [sym_shift_expression] = STATE(798), + [sym_math_expression] = STATE(798), + [sym_cast_expression] = STATE(798), + [sym_sizeof_expression] = STATE(798), + [sym_subscript_expression] = STATE(798), + [sym_call_expression] = STATE(798), + [sym_field_expression] = STATE(798), + [sym_compound_literal_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(798), + [sym_char_literal] = STATE(798), + [sym_concatenated_string] = STATE(798), + [sym_string_literal] = STATE(223), + [anon_sym_LPAREN2] = ACTIONS(483), + [anon_sym_STAR] = ACTIONS(485), + [anon_sym_AMP] = ACTIONS(485), + [anon_sym_BANG] = ACTIONS(487), + [anon_sym_TILDE] = ACTIONS(489), + [anon_sym_PLUS] = ACTIONS(491), + [anon_sym_DASH] = ACTIONS(491), + [anon_sym_DASH_DASH] = ACTIONS(493), + [anon_sym_PLUS_PLUS] = ACTIONS(493), + [anon_sym_sizeof] = ACTIONS(495), + [sym_number_literal] = ACTIONS(2056), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(2058), + [sym_false] = ACTIONS(2058), + [sym_null] = ACTIONS(2058), + [sym_identifier] = ACTIONS(2058), + [sym_comment] = ACTIONS(59), }, [577] = { - [sym_preproc_include] = STATE(802), - [sym_preproc_def] = STATE(802), - [sym_preproc_function_def] = STATE(802), - [sym_preproc_call] = STATE(802), - [sym_preproc_if_in_compound_statement] = STATE(802), - [sym_preproc_ifdef_in_compound_statement] = STATE(802), - [sym_declaration] = STATE(802), - [sym_type_definition] = STATE(802), - [sym__declaration_specifiers] = STATE(799), - [sym_compound_statement] = STATE(802), - [sym_storage_class_specifier] = STATE(19), - [sym_type_qualifier] = STATE(19), - [sym__type_specifier] = STATE(17), - [sym_sized_type_specifier] = STATE(17), - [sym_enum_specifier] = STATE(17), - [sym_struct_specifier] = STATE(17), - [sym_union_specifier] = STATE(17), - [sym_labeled_statement] = STATE(802), - [sym_expression_statement] = STATE(802), - [sym_if_statement] = STATE(802), - [sym_switch_statement] = STATE(802), - [sym_case_statement] = STATE(802), - [sym_while_statement] = STATE(802), - [sym_do_statement] = STATE(802), - [sym_for_statement] = STATE(802), - [sym_return_statement] = STATE(802), - [sym_break_statement] = STATE(802), - [sym_continue_statement] = STATE(802), - [sym_goto_statement] = STATE(802), + [sym__expression] = STATE(799), + [sym_conditional_expression] = STATE(799), + [sym_assignment_expression] = STATE(799), + [sym_pointer_expression] = STATE(799), + [sym_logical_expression] = STATE(799), + [sym_bitwise_expression] = STATE(799), + [sym_equality_expression] = STATE(799), + [sym_relational_expression] = STATE(799), + [sym_shift_expression] = STATE(799), + [sym_math_expression] = STATE(799), + [sym_cast_expression] = STATE(799), + [sym_sizeof_expression] = STATE(799), + [sym_subscript_expression] = STATE(799), + [sym_call_expression] = STATE(799), + [sym_field_expression] = STATE(799), + [sym_compound_literal_expression] = STATE(799), + [sym_parenthesized_expression] = STATE(799), + [sym_char_literal] = STATE(799), + [sym_concatenated_string] = STATE(799), + [sym_string_literal] = STATE(374), + [anon_sym_LPAREN2] = ACTIONS(936), + [anon_sym_STAR] = ACTIONS(938), + [anon_sym_AMP] = ACTIONS(938), + [anon_sym_BANG] = ACTIONS(962), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_DASH_DASH] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(968), + [anon_sym_sizeof] = ACTIONS(970), + [sym_number_literal] = ACTIONS(2060), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(2062), + [sym_false] = ACTIONS(2062), + [sym_null] = ACTIONS(2062), + [sym_identifier] = ACTIONS(2062), + [sym_comment] = ACTIONS(59), + }, + [578] = { [sym__expression] = STATE(800), - [sym_comma_expression] = STATE(801), [sym_conditional_expression] = STATE(800), [sym_assignment_expression] = STATE(800), [sym_pointer_expression] = STATE(800), @@ -22863,145 +24663,229 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_parenthesized_expression] = STATE(800), [sym_char_literal] = STATE(800), [sym_concatenated_string] = STATE(800), - [sym_string_literal] = STATE(230), - [sym__empty_declaration] = STATE(802), - [sym_macro_type_specifier] = STATE(17), - [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(802), - [aux_sym__declaration_specifiers_repeat1] = STATE(19), - [aux_sym_sized_type_specifier_repeat1] = STATE(20), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(347), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(349), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2076), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2078), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2080), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2080), - [sym_preproc_directive] = ACTIONS(357), - [anon_sym_SEMI] = ACTIONS(2082), - [anon_sym_typedef] = ACTIONS(359), - [anon_sym_extern] = ACTIONS(21), - [anon_sym_LBRACE] = ACTIONS(1181), - [anon_sym_LPAREN2] = ACTIONS(507), - [anon_sym_STAR] = ACTIONS(509), - [anon_sym_static] = ACTIONS(21), - [anon_sym_auto] = ACTIONS(21), - [anon_sym_register] = ACTIONS(21), - [anon_sym_inline] = ACTIONS(21), - [anon_sym_const] = ACTIONS(23), - [anon_sym_restrict] = ACTIONS(23), - [anon_sym_volatile] = ACTIONS(23), - [anon_sym__Atomic] = ACTIONS(23), - [anon_sym_unsigned] = ACTIONS(25), - [anon_sym_long] = ACTIONS(25), - [anon_sym_short] = ACTIONS(25), - [sym_primitive_type] = ACTIONS(27), - [anon_sym_enum] = ACTIONS(29), - [anon_sym_struct] = ACTIONS(31), - [anon_sym_union] = ACTIONS(33), - [anon_sym_if] = ACTIONS(2084), - [anon_sym_switch] = ACTIONS(2086), - [anon_sym_case] = ACTIONS(2088), - [anon_sym_default] = ACTIONS(2090), - [anon_sym_while] = ACTIONS(2092), - [anon_sym_do] = ACTIONS(2094), - [anon_sym_for] = ACTIONS(2096), - [anon_sym_return] = ACTIONS(2098), - [anon_sym_break] = ACTIONS(2100), - [anon_sym_continue] = ACTIONS(2102), - [anon_sym_goto] = ACTIONS(2104), - [anon_sym_AMP] = ACTIONS(509), - [anon_sym_BANG] = ACTIONS(533), - [anon_sym_TILDE] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DASH] = ACTIONS(537), - [anon_sym_DASH_DASH] = ACTIONS(539), - [anon_sym_PLUS_PLUS] = ACTIONS(539), - [anon_sym_sizeof] = ACTIONS(541), - [sym_number_literal] = ACTIONS(2106), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(2108), - [sym_false] = ACTIONS(2108), - [sym_null] = ACTIONS(2108), - [sym_identifier] = ACTIONS(2110), - [sym_comment] = ACTIONS(37), - }, - [578] = { - [sym_preproc_arg] = ACTIONS(2112), - [sym_comment] = ACTIONS(47), + [sym_string_literal] = STATE(374), + [anon_sym_LPAREN2] = ACTIONS(936), + [anon_sym_STAR] = ACTIONS(938), + [anon_sym_AMP] = ACTIONS(938), + [anon_sym_BANG] = ACTIONS(962), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_DASH_DASH] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(968), + [anon_sym_sizeof] = ACTIONS(970), + [sym_number_literal] = ACTIONS(2064), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(2066), + [sym_false] = ACTIONS(2066), + [sym_null] = ACTIONS(2066), + [sym_identifier] = ACTIONS(2066), + [sym_comment] = ACTIONS(59), }, [579] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(884), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(884), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(884), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(884), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(884), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(884), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(884), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(884), - [sym_preproc_directive] = ACTIONS(884), - [anon_sym_SEMI] = ACTIONS(886), - [anon_sym_typedef] = ACTIONS(884), - [anon_sym_extern] = ACTIONS(884), - [anon_sym_LBRACE] = ACTIONS(886), - [anon_sym_LPAREN2] = ACTIONS(886), - [anon_sym_STAR] = ACTIONS(886), - [anon_sym_static] = ACTIONS(884), - [anon_sym_auto] = ACTIONS(884), - [anon_sym_register] = ACTIONS(884), - [anon_sym_inline] = ACTIONS(884), - [anon_sym_const] = ACTIONS(884), - [anon_sym_restrict] = ACTIONS(884), - [anon_sym_volatile] = ACTIONS(884), - [anon_sym__Atomic] = ACTIONS(884), - [anon_sym_unsigned] = ACTIONS(884), - [anon_sym_long] = ACTIONS(884), - [anon_sym_short] = ACTIONS(884), - [sym_primitive_type] = ACTIONS(884), - [anon_sym_enum] = ACTIONS(884), - [anon_sym_struct] = ACTIONS(884), - [anon_sym_union] = ACTIONS(884), - [anon_sym_if] = ACTIONS(884), - [anon_sym_else] = ACTIONS(884), - [anon_sym_switch] = ACTIONS(884), - [anon_sym_case] = ACTIONS(884), - [anon_sym_default] = ACTIONS(884), - [anon_sym_while] = ACTIONS(884), - [anon_sym_do] = ACTIONS(884), - [anon_sym_for] = ACTIONS(884), - [anon_sym_return] = ACTIONS(884), - [anon_sym_break] = ACTIONS(884), - [anon_sym_continue] = ACTIONS(884), - [anon_sym_goto] = ACTIONS(884), - [anon_sym_AMP] = ACTIONS(886), - [anon_sym_BANG] = ACTIONS(886), - [anon_sym_TILDE] = ACTIONS(886), - [anon_sym_PLUS] = ACTIONS(884), - [anon_sym_DASH] = ACTIONS(884), - [anon_sym_DASH_DASH] = ACTIONS(886), - [anon_sym_PLUS_PLUS] = ACTIONS(886), - [anon_sym_sizeof] = ACTIONS(884), - [sym_number_literal] = ACTIONS(886), - [anon_sym_SQUOTE] = ACTIONS(886), - [anon_sym_DQUOTE] = ACTIONS(886), - [sym_true] = ACTIONS(884), - [sym_false] = ACTIONS(884), - [sym_null] = ACTIONS(884), - [sym_identifier] = ACTIONS(884), - [sym_comment] = ACTIONS(37), + [sym__expression] = STATE(801), + [sym_conditional_expression] = STATE(801), + [sym_assignment_expression] = STATE(801), + [sym_pointer_expression] = STATE(801), + [sym_logical_expression] = STATE(801), + [sym_bitwise_expression] = STATE(801), + [sym_equality_expression] = STATE(801), + [sym_relational_expression] = STATE(801), + [sym_shift_expression] = STATE(801), + [sym_math_expression] = STATE(801), + [sym_cast_expression] = STATE(801), + [sym_sizeof_expression] = STATE(801), + [sym_subscript_expression] = STATE(801), + [sym_call_expression] = STATE(801), + [sym_field_expression] = STATE(801), + [sym_compound_literal_expression] = STATE(801), + [sym_parenthesized_expression] = STATE(801), + [sym_char_literal] = STATE(801), + [sym_concatenated_string] = STATE(801), + [sym_string_literal] = STATE(374), + [anon_sym_LPAREN2] = ACTIONS(936), + [anon_sym_STAR] = ACTIONS(938), + [anon_sym_AMP] = ACTIONS(938), + [anon_sym_BANG] = ACTIONS(962), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_DASH_DASH] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(968), + [anon_sym_sizeof] = ACTIONS(970), + [sym_number_literal] = ACTIONS(2068), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(2070), + [sym_false] = ACTIONS(2070), + [sym_null] = ACTIONS(2070), + [sym_identifier] = ACTIONS(2070), + [sym_comment] = ACTIONS(59), }, [580] = { - [sym_parenthesized_expression] = STATE(804), - [anon_sym_LPAREN2] = ACTIONS(916), - [sym_comment] = ACTIONS(37), + [sym__expression] = STATE(802), + [sym_conditional_expression] = STATE(802), + [sym_assignment_expression] = STATE(802), + [sym_pointer_expression] = STATE(802), + [sym_logical_expression] = STATE(802), + [sym_bitwise_expression] = STATE(802), + [sym_equality_expression] = STATE(802), + [sym_relational_expression] = STATE(802), + [sym_shift_expression] = STATE(802), + [sym_math_expression] = STATE(802), + [sym_cast_expression] = STATE(802), + [sym_sizeof_expression] = STATE(802), + [sym_subscript_expression] = STATE(802), + [sym_call_expression] = STATE(802), + [sym_field_expression] = STATE(802), + [sym_compound_literal_expression] = STATE(802), + [sym_parenthesized_expression] = STATE(802), + [sym_char_literal] = STATE(802), + [sym_concatenated_string] = STATE(802), + [sym_string_literal] = STATE(374), + [anon_sym_LPAREN2] = ACTIONS(936), + [anon_sym_STAR] = ACTIONS(938), + [anon_sym_AMP] = ACTIONS(938), + [anon_sym_BANG] = ACTIONS(962), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_DASH_DASH] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(968), + [anon_sym_sizeof] = ACTIONS(970), + [sym_number_literal] = ACTIONS(2072), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(2074), + [sym_false] = ACTIONS(2074), + [sym_null] = ACTIONS(2074), + [sym_identifier] = ACTIONS(2074), + [sym_comment] = ACTIONS(59), }, [581] = { - [sym_parenthesized_expression] = STATE(805), - [anon_sym_LPAREN2] = ACTIONS(916), - [sym_comment] = ACTIONS(37), + [sym__expression] = STATE(803), + [sym_conditional_expression] = STATE(803), + [sym_assignment_expression] = STATE(803), + [sym_pointer_expression] = STATE(803), + [sym_logical_expression] = STATE(803), + [sym_bitwise_expression] = STATE(803), + [sym_equality_expression] = STATE(803), + [sym_relational_expression] = STATE(803), + [sym_shift_expression] = STATE(803), + [sym_math_expression] = STATE(803), + [sym_cast_expression] = STATE(803), + [sym_sizeof_expression] = STATE(803), + [sym_subscript_expression] = STATE(803), + [sym_call_expression] = STATE(803), + [sym_field_expression] = STATE(803), + [sym_compound_literal_expression] = STATE(803), + [sym_parenthesized_expression] = STATE(803), + [sym_char_literal] = STATE(803), + [sym_concatenated_string] = STATE(803), + [sym_string_literal] = STATE(374), + [anon_sym_LPAREN2] = ACTIONS(936), + [anon_sym_STAR] = ACTIONS(938), + [anon_sym_AMP] = ACTIONS(938), + [anon_sym_BANG] = ACTIONS(962), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_DASH_DASH] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(968), + [anon_sym_sizeof] = ACTIONS(970), + [sym_number_literal] = ACTIONS(2076), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(2078), + [sym_false] = ACTIONS(2078), + [sym_null] = ACTIONS(2078), + [sym_identifier] = ACTIONS(2078), + [sym_comment] = ACTIONS(59), }, [582] = { - [sym__expression] = STATE(806), - [sym_conditional_expression] = STATE(806), + [sym__expression] = STATE(804), + [sym_conditional_expression] = STATE(804), + [sym_assignment_expression] = STATE(804), + [sym_pointer_expression] = STATE(804), + [sym_logical_expression] = STATE(804), + [sym_bitwise_expression] = STATE(804), + [sym_equality_expression] = STATE(804), + [sym_relational_expression] = STATE(804), + [sym_shift_expression] = STATE(804), + [sym_math_expression] = STATE(804), + [sym_cast_expression] = STATE(804), + [sym_sizeof_expression] = STATE(804), + [sym_subscript_expression] = STATE(804), + [sym_call_expression] = STATE(804), + [sym_field_expression] = STATE(804), + [sym_compound_literal_expression] = STATE(804), + [sym_parenthesized_expression] = STATE(804), + [sym_char_literal] = STATE(804), + [sym_concatenated_string] = STATE(804), + [sym_string_literal] = STATE(374), + [anon_sym_LPAREN2] = ACTIONS(936), + [anon_sym_STAR] = ACTIONS(938), + [anon_sym_AMP] = ACTIONS(938), + [anon_sym_BANG] = ACTIONS(962), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_DASH_DASH] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(968), + [anon_sym_sizeof] = ACTIONS(970), + [sym_number_literal] = ACTIONS(2080), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(2082), + [sym_false] = ACTIONS(2082), + [sym_null] = ACTIONS(2082), + [sym_identifier] = ACTIONS(2082), + [sym_comment] = ACTIONS(59), + }, + [583] = { + [sym__expression] = STATE(805), + [sym_conditional_expression] = STATE(805), + [sym_assignment_expression] = STATE(805), + [sym_pointer_expression] = STATE(805), + [sym_logical_expression] = STATE(805), + [sym_bitwise_expression] = STATE(805), + [sym_equality_expression] = STATE(805), + [sym_relational_expression] = STATE(805), + [sym_shift_expression] = STATE(805), + [sym_math_expression] = STATE(805), + [sym_cast_expression] = STATE(805), + [sym_sizeof_expression] = STATE(805), + [sym_subscript_expression] = STATE(805), + [sym_call_expression] = STATE(805), + [sym_field_expression] = STATE(805), + [sym_compound_literal_expression] = STATE(805), + [sym_parenthesized_expression] = STATE(805), + [sym_char_literal] = STATE(805), + [sym_concatenated_string] = STATE(805), + [sym_string_literal] = STATE(374), + [anon_sym_LPAREN2] = ACTIONS(936), + [anon_sym_STAR] = ACTIONS(938), + [anon_sym_AMP] = ACTIONS(938), + [anon_sym_BANG] = ACTIONS(962), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_DASH_DASH] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(968), + [anon_sym_sizeof] = ACTIONS(970), + [sym_number_literal] = ACTIONS(2084), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(2086), + [sym_false] = ACTIONS(2086), + [sym_null] = ACTIONS(2086), + [sym_identifier] = ACTIONS(2086), + [sym_comment] = ACTIONS(59), + }, + [584] = { + [sym__expression] = STATE(806), + [sym_conditional_expression] = STATE(806), [sym_assignment_expression] = STATE(806), [sym_pointer_expression] = STATE(806), [sym_logical_expression] = STATE(806), @@ -23019,9222 +24903,7499 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_parenthesized_expression] = STATE(806), [sym_char_literal] = STATE(806), [sym_concatenated_string] = STATE(806), - [sym_string_literal] = STATE(386), - [anon_sym_LPAREN2] = ACTIONS(918), - [anon_sym_STAR] = ACTIONS(920), - [anon_sym_AMP] = ACTIONS(920), - [anon_sym_BANG] = ACTIONS(922), - [anon_sym_TILDE] = ACTIONS(924), - [anon_sym_PLUS] = ACTIONS(926), - [anon_sym_DASH] = ACTIONS(926), - [anon_sym_DASH_DASH] = ACTIONS(928), - [anon_sym_PLUS_PLUS] = ACTIONS(928), - [anon_sym_sizeof] = ACTIONS(930), - [sym_number_literal] = ACTIONS(2114), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(2116), - [sym_false] = ACTIONS(2116), - [sym_null] = ACTIONS(2116), - [sym_identifier] = ACTIONS(2116), - [sym_comment] = ACTIONS(37), - }, - [583] = { - [anon_sym_COLON] = ACTIONS(2118), - [sym_comment] = ACTIONS(37), - }, - [584] = { - [sym_parenthesized_expression] = STATE(808), - [anon_sym_LPAREN2] = ACTIONS(916), - [sym_comment] = ACTIONS(37), + [sym_string_literal] = STATE(374), + [anon_sym_LPAREN2] = ACTIONS(936), + [anon_sym_STAR] = ACTIONS(938), + [anon_sym_AMP] = ACTIONS(938), + [anon_sym_BANG] = ACTIONS(962), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_DASH_DASH] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(968), + [anon_sym_sizeof] = ACTIONS(970), + [sym_number_literal] = ACTIONS(2088), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(2090), + [sym_false] = ACTIONS(2090), + [sym_null] = ACTIONS(2090), + [sym_identifier] = ACTIONS(2090), + [sym_comment] = ACTIONS(59), }, [585] = { - [sym_compound_statement] = STATE(809), - [sym_labeled_statement] = STATE(809), - [sym_expression_statement] = STATE(809), - [sym_if_statement] = STATE(809), - [sym_switch_statement] = STATE(809), - [sym_case_statement] = STATE(809), - [sym_while_statement] = STATE(809), - [sym_do_statement] = STATE(809), - [sym_for_statement] = STATE(809), - [sym_return_statement] = STATE(809), - [sym_break_statement] = STATE(809), - [sym_continue_statement] = STATE(809), - [sym_goto_statement] = STATE(809), - [sym__expression] = STATE(228), - [sym_comma_expression] = STATE(229), - [sym_conditional_expression] = STATE(228), - [sym_assignment_expression] = STATE(228), - [sym_pointer_expression] = STATE(228), - [sym_logical_expression] = STATE(228), - [sym_bitwise_expression] = STATE(228), - [sym_equality_expression] = STATE(228), - [sym_relational_expression] = STATE(228), - [sym_shift_expression] = STATE(228), - [sym_math_expression] = STATE(228), - [sym_cast_expression] = STATE(228), - [sym_sizeof_expression] = STATE(228), - [sym_subscript_expression] = STATE(228), - [sym_call_expression] = STATE(228), - [sym_field_expression] = STATE(228), - [sym_compound_literal_expression] = STATE(228), - [sym_parenthesized_expression] = STATE(228), - [sym_char_literal] = STATE(228), - [sym_concatenated_string] = STATE(228), - [sym_string_literal] = STATE(230), - [anon_sym_SEMI] = ACTIONS(503), - [anon_sym_LBRACE] = ACTIONS(229), - [anon_sym_LPAREN2] = ACTIONS(507), - [anon_sym_STAR] = ACTIONS(509), - [anon_sym_if] = ACTIONS(938), - [anon_sym_switch] = ACTIONS(940), - [anon_sym_case] = ACTIONS(942), - [anon_sym_default] = ACTIONS(944), - [anon_sym_while] = ACTIONS(946), - [anon_sym_do] = ACTIONS(948), - [anon_sym_for] = ACTIONS(950), - [anon_sym_return] = ACTIONS(525), - [anon_sym_break] = ACTIONS(527), - [anon_sym_continue] = ACTIONS(529), - [anon_sym_goto] = ACTIONS(531), - [anon_sym_AMP] = ACTIONS(509), - [anon_sym_BANG] = ACTIONS(533), - [anon_sym_TILDE] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DASH] = ACTIONS(537), - [anon_sym_DASH_DASH] = ACTIONS(539), - [anon_sym_PLUS_PLUS] = ACTIONS(539), - [anon_sym_sizeof] = ACTIONS(541), - [sym_number_literal] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(547), - [sym_false] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [sym_identifier] = ACTIONS(952), - [sym_comment] = ACTIONS(37), + [sym__expression] = STATE(807), + [sym_conditional_expression] = STATE(807), + [sym_assignment_expression] = STATE(807), + [sym_pointer_expression] = STATE(807), + [sym_logical_expression] = STATE(807), + [sym_bitwise_expression] = STATE(807), + [sym_equality_expression] = STATE(807), + [sym_relational_expression] = STATE(807), + [sym_shift_expression] = STATE(807), + [sym_math_expression] = STATE(807), + [sym_cast_expression] = STATE(807), + [sym_sizeof_expression] = STATE(807), + [sym_subscript_expression] = STATE(807), + [sym_call_expression] = STATE(807), + [sym_field_expression] = STATE(807), + [sym_compound_literal_expression] = STATE(807), + [sym_parenthesized_expression] = STATE(807), + [sym_char_literal] = STATE(807), + [sym_concatenated_string] = STATE(807), + [sym_string_literal] = STATE(374), + [anon_sym_LPAREN2] = ACTIONS(936), + [anon_sym_STAR] = ACTIONS(938), + [anon_sym_AMP] = ACTIONS(938), + [anon_sym_BANG] = ACTIONS(962), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_DASH_DASH] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(968), + [anon_sym_sizeof] = ACTIONS(970), + [sym_number_literal] = ACTIONS(2092), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(2094), + [sym_false] = ACTIONS(2094), + [sym_null] = ACTIONS(2094), + [sym_identifier] = ACTIONS(2094), + [sym_comment] = ACTIONS(59), }, [586] = { - [anon_sym_LPAREN2] = ACTIONS(2120), - [sym_comment] = ACTIONS(37), + [sym_string_literal] = STATE(808), + [aux_sym_concatenated_string_repeat1] = STATE(808), + [anon_sym_SEMI] = ACTIONS(547), + [anon_sym_COMMA] = ACTIONS(547), + [anon_sym_LPAREN2] = ACTIONS(547), + [anon_sym_STAR] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_EQ] = ACTIONS(549), + [anon_sym_QMARK] = ACTIONS(547), + [anon_sym_STAR_EQ] = ACTIONS(547), + [anon_sym_SLASH_EQ] = ACTIONS(547), + [anon_sym_PERCENT_EQ] = ACTIONS(547), + [anon_sym_PLUS_EQ] = ACTIONS(547), + [anon_sym_DASH_EQ] = ACTIONS(547), + [anon_sym_LT_LT_EQ] = ACTIONS(547), + [anon_sym_GT_GT_EQ] = ACTIONS(547), + [anon_sym_AMP_EQ] = ACTIONS(547), + [anon_sym_CARET_EQ] = ACTIONS(547), + [anon_sym_PIPE_EQ] = ACTIONS(547), + [anon_sym_AMP] = ACTIONS(549), + [anon_sym_PIPE_PIPE] = ACTIONS(547), + [anon_sym_AMP_AMP] = ACTIONS(547), + [anon_sym_PIPE] = ACTIONS(549), + [anon_sym_CARET] = ACTIONS(549), + [anon_sym_EQ_EQ] = ACTIONS(547), + [anon_sym_BANG_EQ] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(549), + [anon_sym_GT] = ACTIONS(549), + [anon_sym_LT_EQ] = ACTIONS(547), + [anon_sym_GT_EQ] = ACTIONS(547), + [anon_sym_LT_LT] = ACTIONS(549), + [anon_sym_GT_GT] = ACTIONS(549), + [anon_sym_PLUS] = ACTIONS(549), + [anon_sym_DASH] = ACTIONS(549), + [anon_sym_SLASH] = ACTIONS(549), + [anon_sym_PERCENT] = ACTIONS(549), + [anon_sym_DASH_DASH] = ACTIONS(547), + [anon_sym_PLUS_PLUS] = ACTIONS(547), + [anon_sym_DOT] = ACTIONS(547), + [anon_sym_DASH_GT] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_comment] = ACTIONS(59), }, [587] = { - [sym__expression] = STATE(812), - [sym_conditional_expression] = STATE(812), - [sym_assignment_expression] = STATE(812), - [sym_pointer_expression] = STATE(812), - [sym_logical_expression] = STATE(812), - [sym_bitwise_expression] = STATE(812), - [sym_equality_expression] = STATE(812), - [sym_relational_expression] = STATE(812), - [sym_shift_expression] = STATE(812), - [sym_math_expression] = STATE(812), - [sym_cast_expression] = STATE(812), - [sym_sizeof_expression] = STATE(812), - [sym_subscript_expression] = STATE(812), - [sym_call_expression] = STATE(812), - [sym_field_expression] = STATE(812), - [sym_compound_literal_expression] = STATE(812), - [sym_parenthesized_expression] = STATE(812), - [sym_char_literal] = STATE(812), - [sym_concatenated_string] = STATE(812), - [sym_string_literal] = STATE(342), - [anon_sym_SEMI] = ACTIONS(2122), - [anon_sym_LPAREN2] = ACTIONS(780), - [anon_sym_STAR] = ACTIONS(782), - [anon_sym_AMP] = ACTIONS(782), - [anon_sym_BANG] = ACTIONS(784), - [anon_sym_TILDE] = ACTIONS(786), - [anon_sym_PLUS] = ACTIONS(788), - [anon_sym_DASH] = ACTIONS(788), - [anon_sym_DASH_DASH] = ACTIONS(790), - [anon_sym_PLUS_PLUS] = ACTIONS(790), - [anon_sym_sizeof] = ACTIONS(792), - [sym_number_literal] = ACTIONS(2124), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(2126), - [sym_false] = ACTIONS(2126), - [sym_null] = ACTIONS(2126), - [sym_identifier] = ACTIONS(2126), - [sym_comment] = ACTIONS(37), + [ts_builtin_sym_end] = ACTIONS(2096), + [anon_sym_SEMI] = ACTIONS(2096), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2098), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2098), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2098), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2098), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2098), + [sym_preproc_directive] = ACTIONS(2098), + [anon_sym_typedef] = ACTIONS(2098), + [anon_sym_extern] = ACTIONS(2098), + [anon_sym_LBRACE] = ACTIONS(2096), + [anon_sym_RBRACE] = ACTIONS(2096), + [anon_sym_LPAREN2] = ACTIONS(2096), + [anon_sym_STAR] = ACTIONS(2096), + [anon_sym_static] = ACTIONS(2098), + [anon_sym_auto] = ACTIONS(2098), + [anon_sym_register] = ACTIONS(2098), + [anon_sym_inline] = ACTIONS(2098), + [anon_sym_const] = ACTIONS(2098), + [anon_sym_restrict] = ACTIONS(2098), + [anon_sym_volatile] = ACTIONS(2098), + [anon_sym__Atomic] = ACTIONS(2098), + [anon_sym_unsigned] = ACTIONS(2098), + [anon_sym_long] = ACTIONS(2098), + [anon_sym_short] = ACTIONS(2098), + [sym_primitive_type] = ACTIONS(2098), + [anon_sym_enum] = ACTIONS(2098), + [anon_sym_struct] = ACTIONS(2098), + [anon_sym_union] = ACTIONS(2098), + [anon_sym_if] = ACTIONS(2098), + [anon_sym_else] = ACTIONS(2098), + [anon_sym_switch] = ACTIONS(2098), + [anon_sym_case] = ACTIONS(2098), + [anon_sym_default] = ACTIONS(2098), + [anon_sym_while] = ACTIONS(2098), + [anon_sym_do] = ACTIONS(2098), + [anon_sym_for] = ACTIONS(2098), + [anon_sym_return] = ACTIONS(2098), + [anon_sym_break] = ACTIONS(2098), + [anon_sym_continue] = ACTIONS(2098), + [anon_sym_goto] = ACTIONS(2098), + [anon_sym_AMP] = ACTIONS(2096), + [anon_sym_BANG] = ACTIONS(2096), + [anon_sym_TILDE] = ACTIONS(2096), + [anon_sym_PLUS] = ACTIONS(2098), + [anon_sym_DASH] = ACTIONS(2098), + [anon_sym_DASH_DASH] = ACTIONS(2096), + [anon_sym_PLUS_PLUS] = ACTIONS(2096), + [anon_sym_sizeof] = ACTIONS(2098), + [sym_number_literal] = ACTIONS(2096), + [anon_sym_SQUOTE] = ACTIONS(2096), + [anon_sym_DQUOTE] = ACTIONS(2096), + [sym_true] = ACTIONS(2098), + [sym_false] = ACTIONS(2098), + [sym_null] = ACTIONS(2098), + [sym_identifier] = ACTIONS(2098), + [sym_comment] = ACTIONS(59), }, [588] = { - [anon_sym_SEMI] = ACTIONS(2128), - [sym_comment] = ACTIONS(37), + [sym_preproc_include] = STATE(588), + [sym_preproc_def] = STATE(588), + [sym_preproc_function_def] = STATE(588), + [sym_preproc_call] = STATE(588), + [sym_preproc_if_in_compound_statement] = STATE(588), + [sym_preproc_ifdef_in_compound_statement] = STATE(588), + [sym_declaration] = STATE(588), + [sym_type_definition] = STATE(588), + [sym__declaration_specifiers] = STATE(371), + [sym_compound_statement] = STATE(588), + [sym_storage_class_specifier] = STATE(30), + [sym_type_qualifier] = STATE(30), + [sym__type_specifier] = STATE(25), + [sym_sized_type_specifier] = STATE(25), + [sym_enum_specifier] = STATE(25), + [sym_struct_specifier] = STATE(25), + [sym_union_specifier] = STATE(25), + [sym_labeled_statement] = STATE(588), + [sym_expression_statement] = STATE(588), + [sym_if_statement] = STATE(588), + [sym_switch_statement] = STATE(588), + [sym_case_statement] = STATE(588), + [sym_while_statement] = STATE(588), + [sym_do_statement] = STATE(588), + [sym_for_statement] = STATE(588), + [sym_return_statement] = STATE(588), + [sym_break_statement] = STATE(588), + [sym_continue_statement] = STATE(588), + [sym_goto_statement] = STATE(588), + [sym__expression] = STATE(372), + [sym_comma_expression] = STATE(373), + [sym_conditional_expression] = STATE(372), + [sym_assignment_expression] = STATE(372), + [sym_pointer_expression] = STATE(372), + [sym_logical_expression] = STATE(372), + [sym_bitwise_expression] = STATE(372), + [sym_equality_expression] = STATE(372), + [sym_relational_expression] = STATE(372), + [sym_shift_expression] = STATE(372), + [sym_math_expression] = STATE(372), + [sym_cast_expression] = STATE(372), + [sym_sizeof_expression] = STATE(372), + [sym_subscript_expression] = STATE(372), + [sym_call_expression] = STATE(372), + [sym_field_expression] = STATE(372), + [sym_compound_literal_expression] = STATE(372), + [sym_parenthesized_expression] = STATE(372), + [sym_char_literal] = STATE(372), + [sym_concatenated_string] = STATE(372), + [sym_string_literal] = STATE(374), + [sym__empty_declaration] = STATE(588), + [sym_macro_type_specifier] = STATE(25), + [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(588), + [aux_sym__declaration_specifiers_repeat1] = STATE(30), + [aux_sym_sized_type_specifier_repeat1] = STATE(31), + [anon_sym_SEMI] = ACTIONS(2100), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2103), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2106), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2109), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2112), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2112), + [sym_preproc_directive] = ACTIONS(2115), + [anon_sym_typedef] = ACTIONS(2118), + [anon_sym_extern] = ACTIONS(2121), + [anon_sym_LBRACE] = ACTIONS(2124), + [anon_sym_RBRACE] = ACTIONS(2127), + [anon_sym_LPAREN2] = ACTIONS(2129), + [anon_sym_STAR] = ACTIONS(2132), + [anon_sym_static] = ACTIONS(2121), + [anon_sym_auto] = ACTIONS(2121), + [anon_sym_register] = ACTIONS(2121), + [anon_sym_inline] = ACTIONS(2121), + [anon_sym_const] = ACTIONS(2135), + [anon_sym_restrict] = ACTIONS(2135), + [anon_sym_volatile] = ACTIONS(2135), + [anon_sym__Atomic] = ACTIONS(2135), + [anon_sym_unsigned] = ACTIONS(2138), + [anon_sym_long] = ACTIONS(2138), + [anon_sym_short] = ACTIONS(2138), + [sym_primitive_type] = ACTIONS(2141), + [anon_sym_enum] = ACTIONS(2144), + [anon_sym_struct] = ACTIONS(2147), + [anon_sym_union] = ACTIONS(2150), + [anon_sym_if] = ACTIONS(2153), + [anon_sym_switch] = ACTIONS(2156), + [anon_sym_case] = ACTIONS(2159), + [anon_sym_default] = ACTIONS(2162), + [anon_sym_while] = ACTIONS(2165), + [anon_sym_do] = ACTIONS(2168), + [anon_sym_for] = ACTIONS(2171), + [anon_sym_return] = ACTIONS(2174), + [anon_sym_break] = ACTIONS(2177), + [anon_sym_continue] = ACTIONS(2180), + [anon_sym_goto] = ACTIONS(2183), + [anon_sym_AMP] = ACTIONS(2132), + [anon_sym_BANG] = ACTIONS(2186), + [anon_sym_TILDE] = ACTIONS(2189), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_DASH] = ACTIONS(2192), + [anon_sym_DASH_DASH] = ACTIONS(2195), + [anon_sym_PLUS_PLUS] = ACTIONS(2195), + [anon_sym_sizeof] = ACTIONS(2198), + [sym_number_literal] = ACTIONS(2201), + [anon_sym_SQUOTE] = ACTIONS(2204), + [anon_sym_DQUOTE] = ACTIONS(2207), + [sym_true] = ACTIONS(2210), + [sym_false] = ACTIONS(2210), + [sym_null] = ACTIONS(2210), + [sym_identifier] = ACTIONS(2213), + [sym_comment] = ACTIONS(59), }, [589] = { - [anon_sym_SEMI] = ACTIONS(2130), - [sym_comment] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(2216), + [anon_sym_COMMA] = ACTIONS(2216), + [anon_sym_RPAREN] = ACTIONS(2216), + [anon_sym_LBRACE] = ACTIONS(2216), + [anon_sym_LPAREN2] = ACTIONS(2216), + [anon_sym_LBRACK] = ACTIONS(2216), + [anon_sym_EQ] = ACTIONS(2216), + [sym_comment] = ACTIONS(59), }, [590] = { - [sym_identifier] = ACTIONS(2132), - [sym_comment] = ACTIONS(37), + [sym_argument_list] = STATE(98), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(1016), + [anon_sym_LBRACK] = ACTIONS(188), + [anon_sym_RBRACK] = ACTIONS(2218), + [anon_sym_EQ] = ACTIONS(1020), + [anon_sym_QMARK] = ACTIONS(1022), + [anon_sym_STAR_EQ] = ACTIONS(1024), + [anon_sym_SLASH_EQ] = ACTIONS(1024), + [anon_sym_PERCENT_EQ] = ACTIONS(1024), + [anon_sym_PLUS_EQ] = ACTIONS(1024), + [anon_sym_DASH_EQ] = ACTIONS(1024), + [anon_sym_LT_LT_EQ] = ACTIONS(1024), + [anon_sym_GT_GT_EQ] = ACTIONS(1024), + [anon_sym_AMP_EQ] = ACTIONS(1024), + [anon_sym_CARET_EQ] = ACTIONS(1024), + [anon_sym_PIPE_EQ] = ACTIONS(1024), + [anon_sym_AMP] = ACTIONS(1026), + [anon_sym_PIPE_PIPE] = ACTIONS(1028), + [anon_sym_AMP_AMP] = ACTIONS(1030), + [anon_sym_PIPE] = ACTIONS(1032), + [anon_sym_CARET] = ACTIONS(1034), + [anon_sym_EQ_EQ] = ACTIONS(1036), + [anon_sym_BANG_EQ] = ACTIONS(1036), + [anon_sym_LT] = ACTIONS(1038), + [anon_sym_GT] = ACTIONS(1038), + [anon_sym_LT_EQ] = ACTIONS(1040), + [anon_sym_GT_EQ] = ACTIONS(1040), + [anon_sym_LT_LT] = ACTIONS(1042), + [anon_sym_GT_GT] = ACTIONS(1042), + [anon_sym_PLUS] = ACTIONS(1044), + [anon_sym_DASH] = ACTIONS(1044), + [anon_sym_SLASH] = ACTIONS(1016), + [anon_sym_PERCENT] = ACTIONS(1016), + [anon_sym_DASH_DASH] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(216), + [anon_sym_DOT] = ACTIONS(218), + [anon_sym_DASH_GT] = ACTIONS(218), + [sym_comment] = ACTIONS(59), }, [591] = { - [anon_sym_COMMA] = ACTIONS(990), - [anon_sym_SEMI] = ACTIONS(992), - [anon_sym_extern] = ACTIONS(79), - [anon_sym_LPAREN2] = ACTIONS(995), - [anon_sym_STAR] = ACTIONS(999), - [anon_sym_LBRACK] = ACTIONS(990), - [anon_sym_EQ] = ACTIONS(1002), - [anon_sym_static] = ACTIONS(79), - [anon_sym_auto] = ACTIONS(79), - [anon_sym_register] = ACTIONS(79), - [anon_sym_inline] = ACTIONS(79), - [anon_sym_const] = ACTIONS(79), - [anon_sym_restrict] = ACTIONS(79), - [anon_sym_volatile] = ACTIONS(79), - [anon_sym__Atomic] = ACTIONS(79), - [anon_sym_COLON] = ACTIONS(2134), - [anon_sym_QMARK] = ACTIONS(990), - [anon_sym_STAR_EQ] = ACTIONS(990), - [anon_sym_SLASH_EQ] = ACTIONS(990), - [anon_sym_PERCENT_EQ] = ACTIONS(990), - [anon_sym_PLUS_EQ] = ACTIONS(990), - [anon_sym_DASH_EQ] = ACTIONS(990), - [anon_sym_LT_LT_EQ] = ACTIONS(990), - [anon_sym_GT_GT_EQ] = ACTIONS(990), - [anon_sym_AMP_EQ] = ACTIONS(990), - [anon_sym_CARET_EQ] = ACTIONS(990), - [anon_sym_PIPE_EQ] = ACTIONS(990), - [anon_sym_AMP] = ACTIONS(1002), - [anon_sym_PIPE_PIPE] = ACTIONS(990), - [anon_sym_AMP_AMP] = ACTIONS(990), - [anon_sym_PIPE] = ACTIONS(1002), - [anon_sym_CARET] = ACTIONS(1002), - [anon_sym_EQ_EQ] = ACTIONS(990), - [anon_sym_BANG_EQ] = ACTIONS(990), - [anon_sym_LT] = ACTIONS(1002), - [anon_sym_GT] = ACTIONS(1002), - [anon_sym_LT_EQ] = ACTIONS(990), - [anon_sym_GT_EQ] = ACTIONS(990), - [anon_sym_LT_LT] = ACTIONS(1002), - [anon_sym_GT_GT] = ACTIONS(1002), - [anon_sym_PLUS] = ACTIONS(1002), - [anon_sym_DASH] = ACTIONS(1002), - [anon_sym_SLASH] = ACTIONS(1002), - [anon_sym_PERCENT] = ACTIONS(1002), - [anon_sym_DASH_DASH] = ACTIONS(990), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_DOT] = ACTIONS(990), - [anon_sym_DASH_GT] = ACTIONS(990), - [sym_identifier] = ACTIONS(79), - [sym_comment] = ACTIONS(37), + [sym_argument_list] = STATE(98), + [anon_sym_COMMA] = ACTIONS(2220), + [anon_sym_RPAREN] = ACTIONS(2220), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(319), + [anon_sym_LBRACK] = ACTIONS(188), + [anon_sym_EQ] = ACTIONS(321), + [anon_sym_QMARK] = ACTIONS(323), + [anon_sym_STAR_EQ] = ACTIONS(325), + [anon_sym_SLASH_EQ] = ACTIONS(325), + [anon_sym_PERCENT_EQ] = ACTIONS(325), + [anon_sym_PLUS_EQ] = ACTIONS(325), + [anon_sym_DASH_EQ] = ACTIONS(325), + [anon_sym_LT_LT_EQ] = ACTIONS(325), + [anon_sym_GT_GT_EQ] = ACTIONS(325), + [anon_sym_AMP_EQ] = ACTIONS(325), + [anon_sym_CARET_EQ] = ACTIONS(325), + [anon_sym_PIPE_EQ] = ACTIONS(325), + [anon_sym_AMP] = ACTIONS(327), + [anon_sym_PIPE_PIPE] = ACTIONS(329), + [anon_sym_AMP_AMP] = ACTIONS(331), + [anon_sym_PIPE] = ACTIONS(333), + [anon_sym_CARET] = ACTIONS(335), + [anon_sym_EQ_EQ] = ACTIONS(337), + [anon_sym_BANG_EQ] = ACTIONS(337), + [anon_sym_LT] = ACTIONS(339), + [anon_sym_GT] = ACTIONS(339), + [anon_sym_LT_EQ] = ACTIONS(341), + [anon_sym_GT_EQ] = ACTIONS(341), + [anon_sym_LT_LT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(343), + [anon_sym_PLUS] = ACTIONS(345), + [anon_sym_DASH] = ACTIONS(345), + [anon_sym_SLASH] = ACTIONS(319), + [anon_sym_PERCENT] = ACTIONS(319), + [anon_sym_DASH_DASH] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(216), + [anon_sym_DOT] = ACTIONS(218), + [anon_sym_DASH_GT] = ACTIONS(218), + [sym_comment] = ACTIONS(59), }, [592] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2136), - [sym_comment] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(2222), + [anon_sym_COMMA] = ACTIONS(2222), + [anon_sym_RPAREN] = ACTIONS(2222), + [anon_sym_RBRACE] = ACTIONS(2222), + [anon_sym_LPAREN2] = ACTIONS(2222), + [anon_sym_STAR] = ACTIONS(2224), + [anon_sym_LBRACK] = ACTIONS(2222), + [anon_sym_RBRACK] = ACTIONS(2222), + [anon_sym_EQ] = ACTIONS(2224), + [anon_sym_COLON] = ACTIONS(2222), + [anon_sym_QMARK] = ACTIONS(2222), + [anon_sym_STAR_EQ] = ACTIONS(2222), + [anon_sym_SLASH_EQ] = ACTIONS(2222), + [anon_sym_PERCENT_EQ] = ACTIONS(2222), + [anon_sym_PLUS_EQ] = ACTIONS(2222), + [anon_sym_DASH_EQ] = ACTIONS(2222), + [anon_sym_LT_LT_EQ] = ACTIONS(2222), + [anon_sym_GT_GT_EQ] = ACTIONS(2222), + [anon_sym_AMP_EQ] = ACTIONS(2222), + [anon_sym_CARET_EQ] = ACTIONS(2222), + [anon_sym_PIPE_EQ] = ACTIONS(2222), + [anon_sym_AMP] = ACTIONS(2224), + [anon_sym_PIPE_PIPE] = ACTIONS(2222), + [anon_sym_AMP_AMP] = ACTIONS(2222), + [anon_sym_PIPE] = ACTIONS(2224), + [anon_sym_CARET] = ACTIONS(2224), + [anon_sym_EQ_EQ] = ACTIONS(2222), + [anon_sym_BANG_EQ] = ACTIONS(2222), + [anon_sym_LT] = ACTIONS(2224), + [anon_sym_GT] = ACTIONS(2224), + [anon_sym_LT_EQ] = ACTIONS(2222), + [anon_sym_GT_EQ] = ACTIONS(2222), + [anon_sym_LT_LT] = ACTIONS(2224), + [anon_sym_GT_GT] = ACTIONS(2224), + [anon_sym_PLUS] = ACTIONS(2224), + [anon_sym_DASH] = ACTIONS(2224), + [anon_sym_SLASH] = ACTIONS(2224), + [anon_sym_PERCENT] = ACTIONS(2224), + [anon_sym_DASH_DASH] = ACTIONS(2222), + [anon_sym_PLUS_PLUS] = ACTIONS(2222), + [anon_sym_DOT] = ACTIONS(2222), + [anon_sym_DASH_GT] = ACTIONS(2222), + [sym_comment] = ACTIONS(59), }, [593] = { - [sym__declarator] = STATE(818), - [sym_pointer_declarator] = STATE(818), - [sym_function_declarator] = STATE(818), - [sym_array_declarator] = STATE(818), - [sym_init_declarator] = STATE(153), - [anon_sym_SEMI] = ACTIONS(373), - [anon_sym_LPAREN2] = ACTIONS(88), - [anon_sym_STAR] = ACTIONS(489), - [sym_identifier] = ACTIONS(2138), - [sym_comment] = ACTIONS(37), + [aux_sym_for_statement_repeat1] = STATE(593), + [anon_sym_COMMA] = ACTIONS(2226), + [anon_sym_RPAREN] = ACTIONS(2220), + [sym_comment] = ACTIONS(59), }, [594] = { - [sym_argument_list] = STATE(430), - [anon_sym_COMMA] = ACTIONS(1008), - [anon_sym_SEMI] = ACTIONS(2140), - [anon_sym_LPAREN2] = ACTIONS(1012), - [anon_sym_STAR] = ACTIONS(1014), - [anon_sym_LBRACK] = ACTIONS(1016), - [anon_sym_EQ] = ACTIONS(1018), - [anon_sym_QMARK] = ACTIONS(1020), - [anon_sym_STAR_EQ] = ACTIONS(1022), - [anon_sym_SLASH_EQ] = ACTIONS(1022), - [anon_sym_PERCENT_EQ] = ACTIONS(1022), - [anon_sym_PLUS_EQ] = ACTIONS(1022), - [anon_sym_DASH_EQ] = ACTIONS(1022), - [anon_sym_LT_LT_EQ] = ACTIONS(1022), - [anon_sym_GT_GT_EQ] = ACTIONS(1022), - [anon_sym_AMP_EQ] = ACTIONS(1022), - [anon_sym_CARET_EQ] = ACTIONS(1022), - [anon_sym_PIPE_EQ] = ACTIONS(1022), - [anon_sym_AMP] = ACTIONS(1024), - [anon_sym_PIPE_PIPE] = ACTIONS(1026), - [anon_sym_AMP_AMP] = ACTIONS(1028), - [anon_sym_PIPE] = ACTIONS(1030), - [anon_sym_CARET] = ACTIONS(1032), - [anon_sym_EQ_EQ] = ACTIONS(1034), - [anon_sym_BANG_EQ] = ACTIONS(1034), - [anon_sym_LT] = ACTIONS(1036), - [anon_sym_GT] = ACTIONS(1036), - [anon_sym_LT_EQ] = ACTIONS(1038), - [anon_sym_GT_EQ] = ACTIONS(1038), - [anon_sym_LT_LT] = ACTIONS(1040), - [anon_sym_GT_GT] = ACTIONS(1040), - [anon_sym_PLUS] = ACTIONS(1042), - [anon_sym_DASH] = ACTIONS(1042), - [anon_sym_SLASH] = ACTIONS(1014), - [anon_sym_PERCENT] = ACTIONS(1014), - [anon_sym_DASH_DASH] = ACTIONS(1044), - [anon_sym_PLUS_PLUS] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1046), - [anon_sym_DASH_GT] = ACTIONS(1046), - [sym_comment] = ACTIONS(37), + [sym__expression] = STATE(319), + [sym_conditional_expression] = STATE(319), + [sym_assignment_expression] = STATE(319), + [sym_pointer_expression] = STATE(319), + [sym_logical_expression] = STATE(319), + [sym_bitwise_expression] = STATE(319), + [sym_equality_expression] = STATE(319), + [sym_relational_expression] = STATE(319), + [sym_shift_expression] = STATE(319), + [sym_math_expression] = STATE(319), + [sym_cast_expression] = STATE(319), + [sym_sizeof_expression] = STATE(319), + [sym_subscript_expression] = STATE(319), + [sym_call_expression] = STATE(319), + [sym_field_expression] = STATE(319), + [sym_compound_literal_expression] = STATE(319), + [sym_parenthesized_expression] = STATE(319), + [sym_initializer_list] = STATE(320), + [sym_char_literal] = STATE(319), + [sym_concatenated_string] = STATE(319), + [sym_string_literal] = STATE(214), + [anon_sym_LBRACE] = ACTIONS(840), + [anon_sym_LPAREN2] = ACTIONS(461), + [anon_sym_STAR] = ACTIONS(463), + [anon_sym_AMP] = ACTIONS(463), + [anon_sym_BANG] = ACTIONS(465), + [anon_sym_TILDE] = ACTIONS(467), + [anon_sym_PLUS] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(469), + [anon_sym_DASH_DASH] = ACTIONS(471), + [anon_sym_PLUS_PLUS] = ACTIONS(471), + [anon_sym_sizeof] = ACTIONS(473), + [sym_number_literal] = ACTIONS(842), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(844), + [sym_false] = ACTIONS(844), + [sym_null] = ACTIONS(844), + [sym_identifier] = ACTIONS(844), + [sym_comment] = ACTIONS(59), }, [595] = { - [anon_sym_SEMI] = ACTIONS(2140), - [sym_comment] = ACTIONS(37), + [anon_sym_RPAREN] = ACTIONS(2229), + [sym_comment] = ACTIONS(59), }, [596] = { - [sym_preproc_include] = STATE(821), - [sym_preproc_def] = STATE(821), - [sym_preproc_function_def] = STATE(821), - [sym_preproc_call] = STATE(821), - [sym_preproc_if_in_compound_statement] = STATE(821), - [sym_preproc_ifdef_in_compound_statement] = STATE(821), - [sym_preproc_else_in_compound_statement] = STATE(820), - [sym_preproc_elif_in_compound_statement] = STATE(820), - [sym_declaration] = STATE(821), - [sym_type_definition] = STATE(821), - [sym__declaration_specifiers] = STATE(593), - [sym_compound_statement] = STATE(821), - [sym_storage_class_specifier] = STATE(19), - [sym_type_qualifier] = STATE(19), - [sym__type_specifier] = STATE(17), - [sym_sized_type_specifier] = STATE(17), - [sym_enum_specifier] = STATE(17), - [sym_struct_specifier] = STATE(17), - [sym_union_specifier] = STATE(17), - [sym_labeled_statement] = STATE(821), - [sym_expression_statement] = STATE(821), - [sym_if_statement] = STATE(821), - [sym_switch_statement] = STATE(821), - [sym_case_statement] = STATE(821), - [sym_while_statement] = STATE(821), - [sym_do_statement] = STATE(821), - [sym_for_statement] = STATE(821), - [sym_return_statement] = STATE(821), - [sym_break_statement] = STATE(821), - [sym_continue_statement] = STATE(821), - [sym_goto_statement] = STATE(821), - [sym__expression] = STATE(594), - [sym_comma_expression] = STATE(595), - [sym_conditional_expression] = STATE(594), - [sym_assignment_expression] = STATE(594), - [sym_pointer_expression] = STATE(594), - [sym_logical_expression] = STATE(594), - [sym_bitwise_expression] = STATE(594), - [sym_equality_expression] = STATE(594), - [sym_relational_expression] = STATE(594), - [sym_shift_expression] = STATE(594), - [sym_math_expression] = STATE(594), - [sym_cast_expression] = STATE(594), - [sym_sizeof_expression] = STATE(594), - [sym_subscript_expression] = STATE(594), - [sym_call_expression] = STATE(594), - [sym_field_expression] = STATE(594), - [sym_compound_literal_expression] = STATE(594), - [sym_parenthesized_expression] = STATE(594), - [sym_char_literal] = STATE(594), - [sym_concatenated_string] = STATE(594), - [sym_string_literal] = STATE(230), - [sym__empty_declaration] = STATE(821), - [sym_macro_type_specifier] = STATE(17), - [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(821), - [aux_sym__declaration_specifiers_repeat1] = STATE(19), - [aux_sym_sized_type_specifier_repeat1] = STATE(20), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(127), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(129), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1385), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2142), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1389), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1389), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1391), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1393), - [sym_preproc_directive] = ACTIONS(141), - [anon_sym_SEMI] = ACTIONS(1395), - [anon_sym_typedef] = ACTIONS(143), - [anon_sym_extern] = ACTIONS(21), - [anon_sym_LBRACE] = ACTIONS(678), - [anon_sym_LPAREN2] = ACTIONS(507), - [anon_sym_STAR] = ACTIONS(509), - [anon_sym_static] = ACTIONS(21), - [anon_sym_auto] = ACTIONS(21), - [anon_sym_register] = ACTIONS(21), - [anon_sym_inline] = ACTIONS(21), - [anon_sym_const] = ACTIONS(23), - [anon_sym_restrict] = ACTIONS(23), - [anon_sym_volatile] = ACTIONS(23), - [anon_sym__Atomic] = ACTIONS(23), - [anon_sym_unsigned] = ACTIONS(25), - [anon_sym_long] = ACTIONS(25), - [anon_sym_short] = ACTIONS(25), - [sym_primitive_type] = ACTIONS(27), - [anon_sym_enum] = ACTIONS(29), - [anon_sym_struct] = ACTIONS(31), - [anon_sym_union] = ACTIONS(33), - [anon_sym_if] = ACTIONS(1397), - [anon_sym_switch] = ACTIONS(1399), - [anon_sym_case] = ACTIONS(1401), - [anon_sym_default] = ACTIONS(1403), - [anon_sym_while] = ACTIONS(1405), - [anon_sym_do] = ACTIONS(1407), - [anon_sym_for] = ACTIONS(1409), - [anon_sym_return] = ACTIONS(1411), - [anon_sym_break] = ACTIONS(1413), - [anon_sym_continue] = ACTIONS(1415), - [anon_sym_goto] = ACTIONS(1417), - [anon_sym_AMP] = ACTIONS(509), - [anon_sym_BANG] = ACTIONS(533), - [anon_sym_TILDE] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DASH] = ACTIONS(537), - [anon_sym_DASH_DASH] = ACTIONS(539), - [anon_sym_PLUS_PLUS] = ACTIONS(539), - [anon_sym_sizeof] = ACTIONS(541), - [sym_number_literal] = ACTIONS(1419), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(1421), - [sym_false] = ACTIONS(1421), - [sym_null] = ACTIONS(1421), - [sym_identifier] = ACTIONS(1423), - [sym_comment] = ACTIONS(37), + [sym_argument_list] = STATE(98), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(1016), + [anon_sym_LBRACK] = ACTIONS(188), + [anon_sym_RBRACK] = ACTIONS(1046), + [anon_sym_EQ] = ACTIONS(1020), + [anon_sym_QMARK] = ACTIONS(1046), + [anon_sym_STAR_EQ] = ACTIONS(1024), + [anon_sym_SLASH_EQ] = ACTIONS(1024), + [anon_sym_PERCENT_EQ] = ACTIONS(1024), + [anon_sym_PLUS_EQ] = ACTIONS(1024), + [anon_sym_DASH_EQ] = ACTIONS(1024), + [anon_sym_LT_LT_EQ] = ACTIONS(1024), + [anon_sym_GT_GT_EQ] = ACTIONS(1024), + [anon_sym_AMP_EQ] = ACTIONS(1024), + [anon_sym_CARET_EQ] = ACTIONS(1024), + [anon_sym_PIPE_EQ] = ACTIONS(1024), + [anon_sym_AMP] = ACTIONS(1026), + [anon_sym_PIPE_PIPE] = ACTIONS(1028), + [anon_sym_AMP_AMP] = ACTIONS(1030), + [anon_sym_PIPE] = ACTIONS(1032), + [anon_sym_CARET] = ACTIONS(1034), + [anon_sym_EQ_EQ] = ACTIONS(1036), + [anon_sym_BANG_EQ] = ACTIONS(1036), + [anon_sym_LT] = ACTIONS(1038), + [anon_sym_GT] = ACTIONS(1038), + [anon_sym_LT_EQ] = ACTIONS(1040), + [anon_sym_GT_EQ] = ACTIONS(1040), + [anon_sym_LT_LT] = ACTIONS(1042), + [anon_sym_GT_GT] = ACTIONS(1042), + [anon_sym_PLUS] = ACTIONS(1044), + [anon_sym_DASH] = ACTIONS(1044), + [anon_sym_SLASH] = ACTIONS(1016), + [anon_sym_PERCENT] = ACTIONS(1016), + [anon_sym_DASH_DASH] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(216), + [anon_sym_DOT] = ACTIONS(218), + [anon_sym_DASH_GT] = ACTIONS(218), + [sym_comment] = ACTIONS(59), }, [597] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2144), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2144), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2144), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2144), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2144), - [sym_preproc_directive] = ACTIONS(2144), - [anon_sym_SEMI] = ACTIONS(2146), - [anon_sym_typedef] = ACTIONS(2144), - [anon_sym_extern] = ACTIONS(2144), - [anon_sym_LBRACE] = ACTIONS(2146), - [anon_sym_RBRACE] = ACTIONS(2146), - [anon_sym_LPAREN2] = ACTIONS(2146), - [anon_sym_STAR] = ACTIONS(2146), - [anon_sym_static] = ACTIONS(2144), - [anon_sym_auto] = ACTIONS(2144), - [anon_sym_register] = ACTIONS(2144), - [anon_sym_inline] = ACTIONS(2144), - [anon_sym_const] = ACTIONS(2144), - [anon_sym_restrict] = ACTIONS(2144), - [anon_sym_volatile] = ACTIONS(2144), - [anon_sym__Atomic] = ACTIONS(2144), - [anon_sym_unsigned] = ACTIONS(2144), - [anon_sym_long] = ACTIONS(2144), - [anon_sym_short] = ACTIONS(2144), - [sym_primitive_type] = ACTIONS(2144), - [anon_sym_enum] = ACTIONS(2144), - [anon_sym_struct] = ACTIONS(2144), - [anon_sym_union] = ACTIONS(2144), - [anon_sym_if] = ACTIONS(2144), - [anon_sym_switch] = ACTIONS(2144), - [anon_sym_case] = ACTIONS(2144), - [anon_sym_default] = ACTIONS(2144), - [anon_sym_while] = ACTIONS(2144), - [anon_sym_do] = ACTIONS(2144), - [anon_sym_for] = ACTIONS(2144), - [anon_sym_return] = ACTIONS(2144), - [anon_sym_break] = ACTIONS(2144), - [anon_sym_continue] = ACTIONS(2144), - [anon_sym_goto] = ACTIONS(2144), - [anon_sym_AMP] = ACTIONS(2146), - [anon_sym_BANG] = ACTIONS(2146), - [anon_sym_TILDE] = ACTIONS(2146), - [anon_sym_PLUS] = ACTIONS(2144), - [anon_sym_DASH] = ACTIONS(2144), - [anon_sym_DASH_DASH] = ACTIONS(2146), - [anon_sym_PLUS_PLUS] = ACTIONS(2146), - [anon_sym_sizeof] = ACTIONS(2144), - [sym_number_literal] = ACTIONS(2146), - [anon_sym_SQUOTE] = ACTIONS(2146), - [anon_sym_DQUOTE] = ACTIONS(2146), - [sym_true] = ACTIONS(2144), - [sym_false] = ACTIONS(2144), - [sym_null] = ACTIONS(2144), - [sym_identifier] = ACTIONS(2144), - [sym_comment] = ACTIONS(37), + [sym_argument_list] = STATE(98), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(1054), + [anon_sym_LBRACK] = ACTIONS(188), + [anon_sym_EQ] = ACTIONS(1056), + [anon_sym_COLON] = ACTIONS(2231), + [anon_sym_QMARK] = ACTIONS(1060), + [anon_sym_STAR_EQ] = ACTIONS(1062), + [anon_sym_SLASH_EQ] = ACTIONS(1062), + [anon_sym_PERCENT_EQ] = ACTIONS(1062), + [anon_sym_PLUS_EQ] = ACTIONS(1062), + [anon_sym_DASH_EQ] = ACTIONS(1062), + [anon_sym_LT_LT_EQ] = ACTIONS(1062), + [anon_sym_GT_GT_EQ] = ACTIONS(1062), + [anon_sym_AMP_EQ] = ACTIONS(1062), + [anon_sym_CARET_EQ] = ACTIONS(1062), + [anon_sym_PIPE_EQ] = ACTIONS(1062), + [anon_sym_AMP] = ACTIONS(1064), + [anon_sym_PIPE_PIPE] = ACTIONS(1066), + [anon_sym_AMP_AMP] = ACTIONS(1068), + [anon_sym_PIPE] = ACTIONS(1070), + [anon_sym_CARET] = ACTIONS(1072), + [anon_sym_EQ_EQ] = ACTIONS(1074), + [anon_sym_BANG_EQ] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(1076), + [anon_sym_GT] = ACTIONS(1076), + [anon_sym_LT_EQ] = ACTIONS(1078), + [anon_sym_GT_EQ] = ACTIONS(1078), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_GT_GT] = ACTIONS(1080), + [anon_sym_PLUS] = ACTIONS(1082), + [anon_sym_DASH] = ACTIONS(1082), + [anon_sym_SLASH] = ACTIONS(1054), + [anon_sym_PERCENT] = ACTIONS(1054), + [anon_sym_DASH_DASH] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(216), + [anon_sym_DOT] = ACTIONS(218), + [anon_sym_DASH_GT] = ACTIONS(218), + [sym_comment] = ACTIONS(59), }, [598] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2148), - [sym_comment] = ACTIONS(37), + [sym_argument_list] = STATE(98), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(1016), + [anon_sym_LBRACK] = ACTIONS(188), + [anon_sym_RBRACK] = ACTIONS(1086), + [anon_sym_EQ] = ACTIONS(1084), + [anon_sym_QMARK] = ACTIONS(1086), + [anon_sym_STAR_EQ] = ACTIONS(1086), + [anon_sym_SLASH_EQ] = ACTIONS(1086), + [anon_sym_PERCENT_EQ] = ACTIONS(1086), + [anon_sym_PLUS_EQ] = ACTIONS(1086), + [anon_sym_DASH_EQ] = ACTIONS(1086), + [anon_sym_LT_LT_EQ] = ACTIONS(1086), + [anon_sym_GT_GT_EQ] = ACTIONS(1086), + [anon_sym_AMP_EQ] = ACTIONS(1086), + [anon_sym_CARET_EQ] = ACTIONS(1086), + [anon_sym_PIPE_EQ] = ACTIONS(1086), + [anon_sym_AMP] = ACTIONS(1084), + [anon_sym_PIPE_PIPE] = ACTIONS(1086), + [anon_sym_AMP_AMP] = ACTIONS(1086), + [anon_sym_PIPE] = ACTIONS(1084), + [anon_sym_CARET] = ACTIONS(1084), + [anon_sym_EQ_EQ] = ACTIONS(1036), + [anon_sym_BANG_EQ] = ACTIONS(1036), + [anon_sym_LT] = ACTIONS(1038), + [anon_sym_GT] = ACTIONS(1038), + [anon_sym_LT_EQ] = ACTIONS(1040), + [anon_sym_GT_EQ] = ACTIONS(1040), + [anon_sym_LT_LT] = ACTIONS(1042), + [anon_sym_GT_GT] = ACTIONS(1042), + [anon_sym_PLUS] = ACTIONS(1044), + [anon_sym_DASH] = ACTIONS(1044), + [anon_sym_SLASH] = ACTIONS(1016), + [anon_sym_PERCENT] = ACTIONS(1016), + [anon_sym_DASH_DASH] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(216), + [anon_sym_DOT] = ACTIONS(218), + [anon_sym_DASH_GT] = ACTIONS(218), + [sym_comment] = ACTIONS(59), }, [599] = { - [sym_preproc_include] = STATE(821), - [sym_preproc_def] = STATE(821), - [sym_preproc_function_def] = STATE(821), - [sym_preproc_call] = STATE(821), - [sym_preproc_if_in_compound_statement] = STATE(821), - [sym_preproc_ifdef_in_compound_statement] = STATE(821), - [sym_preproc_else_in_compound_statement] = STATE(823), - [sym_preproc_elif_in_compound_statement] = STATE(823), - [sym_declaration] = STATE(821), - [sym_type_definition] = STATE(821), - [sym__declaration_specifiers] = STATE(593), - [sym_compound_statement] = STATE(821), - [sym_storage_class_specifier] = STATE(19), - [sym_type_qualifier] = STATE(19), - [sym__type_specifier] = STATE(17), - [sym_sized_type_specifier] = STATE(17), - [sym_enum_specifier] = STATE(17), - [sym_struct_specifier] = STATE(17), - [sym_union_specifier] = STATE(17), - [sym_labeled_statement] = STATE(821), - [sym_expression_statement] = STATE(821), - [sym_if_statement] = STATE(821), - [sym_switch_statement] = STATE(821), - [sym_case_statement] = STATE(821), - [sym_while_statement] = STATE(821), - [sym_do_statement] = STATE(821), - [sym_for_statement] = STATE(821), - [sym_return_statement] = STATE(821), - [sym_break_statement] = STATE(821), - [sym_continue_statement] = STATE(821), - [sym_goto_statement] = STATE(821), - [sym__expression] = STATE(594), - [sym_comma_expression] = STATE(595), - [sym_conditional_expression] = STATE(594), - [sym_assignment_expression] = STATE(594), - [sym_pointer_expression] = STATE(594), - [sym_logical_expression] = STATE(594), - [sym_bitwise_expression] = STATE(594), - [sym_equality_expression] = STATE(594), - [sym_relational_expression] = STATE(594), - [sym_shift_expression] = STATE(594), - [sym_math_expression] = STATE(594), - [sym_cast_expression] = STATE(594), - [sym_sizeof_expression] = STATE(594), - [sym_subscript_expression] = STATE(594), - [sym_call_expression] = STATE(594), - [sym_field_expression] = STATE(594), - [sym_compound_literal_expression] = STATE(594), - [sym_parenthesized_expression] = STATE(594), - [sym_char_literal] = STATE(594), - [sym_concatenated_string] = STATE(594), - [sym_string_literal] = STATE(230), - [sym__empty_declaration] = STATE(821), - [sym_macro_type_specifier] = STATE(17), - [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(821), - [aux_sym__declaration_specifiers_repeat1] = STATE(19), - [aux_sym_sized_type_specifier_repeat1] = STATE(20), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(127), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(129), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1385), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2150), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1389), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1389), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1391), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1393), - [sym_preproc_directive] = ACTIONS(141), - [anon_sym_SEMI] = ACTIONS(1395), - [anon_sym_typedef] = ACTIONS(143), - [anon_sym_extern] = ACTIONS(21), - [anon_sym_LBRACE] = ACTIONS(678), - [anon_sym_LPAREN2] = ACTIONS(507), - [anon_sym_STAR] = ACTIONS(509), - [anon_sym_static] = ACTIONS(21), - [anon_sym_auto] = ACTIONS(21), - [anon_sym_register] = ACTIONS(21), - [anon_sym_inline] = ACTIONS(21), - [anon_sym_const] = ACTIONS(23), - [anon_sym_restrict] = ACTIONS(23), - [anon_sym_volatile] = ACTIONS(23), - [anon_sym__Atomic] = ACTIONS(23), - [anon_sym_unsigned] = ACTIONS(25), - [anon_sym_long] = ACTIONS(25), - [anon_sym_short] = ACTIONS(25), - [sym_primitive_type] = ACTIONS(27), - [anon_sym_enum] = ACTIONS(29), - [anon_sym_struct] = ACTIONS(31), - [anon_sym_union] = ACTIONS(33), - [anon_sym_if] = ACTIONS(1397), - [anon_sym_switch] = ACTIONS(1399), - [anon_sym_case] = ACTIONS(1401), - [anon_sym_default] = ACTIONS(1403), - [anon_sym_while] = ACTIONS(1405), - [anon_sym_do] = ACTIONS(1407), - [anon_sym_for] = ACTIONS(1409), - [anon_sym_return] = ACTIONS(1411), - [anon_sym_break] = ACTIONS(1413), - [anon_sym_continue] = ACTIONS(1415), - [anon_sym_goto] = ACTIONS(1417), - [anon_sym_AMP] = ACTIONS(509), - [anon_sym_BANG] = ACTIONS(533), - [anon_sym_TILDE] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DASH] = ACTIONS(537), - [anon_sym_DASH_DASH] = ACTIONS(539), - [anon_sym_PLUS_PLUS] = ACTIONS(539), - [anon_sym_sizeof] = ACTIONS(541), - [sym_number_literal] = ACTIONS(1419), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(1421), - [sym_false] = ACTIONS(1421), - [sym_null] = ACTIONS(1421), - [sym_identifier] = ACTIONS(1423), - [sym_comment] = ACTIONS(37), + [sym_argument_list] = STATE(98), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(1016), + [anon_sym_LBRACK] = ACTIONS(188), + [anon_sym_RBRACK] = ACTIONS(1090), + [anon_sym_EQ] = ACTIONS(1088), + [anon_sym_QMARK] = ACTIONS(1090), + [anon_sym_STAR_EQ] = ACTIONS(1090), + [anon_sym_SLASH_EQ] = ACTIONS(1090), + [anon_sym_PERCENT_EQ] = ACTIONS(1090), + [anon_sym_PLUS_EQ] = ACTIONS(1090), + [anon_sym_DASH_EQ] = ACTIONS(1090), + [anon_sym_LT_LT_EQ] = ACTIONS(1090), + [anon_sym_GT_GT_EQ] = ACTIONS(1090), + [anon_sym_AMP_EQ] = ACTIONS(1090), + [anon_sym_CARET_EQ] = ACTIONS(1090), + [anon_sym_PIPE_EQ] = ACTIONS(1090), + [anon_sym_AMP] = ACTIONS(1026), + [anon_sym_PIPE_PIPE] = ACTIONS(1090), + [anon_sym_AMP_AMP] = ACTIONS(1030), + [anon_sym_PIPE] = ACTIONS(1032), + [anon_sym_CARET] = ACTIONS(1034), + [anon_sym_EQ_EQ] = ACTIONS(1036), + [anon_sym_BANG_EQ] = ACTIONS(1036), + [anon_sym_LT] = ACTIONS(1038), + [anon_sym_GT] = ACTIONS(1038), + [anon_sym_LT_EQ] = ACTIONS(1040), + [anon_sym_GT_EQ] = ACTIONS(1040), + [anon_sym_LT_LT] = ACTIONS(1042), + [anon_sym_GT_GT] = ACTIONS(1042), + [anon_sym_PLUS] = ACTIONS(1044), + [anon_sym_DASH] = ACTIONS(1044), + [anon_sym_SLASH] = ACTIONS(1016), + [anon_sym_PERCENT] = ACTIONS(1016), + [anon_sym_DASH_DASH] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(216), + [anon_sym_DOT] = ACTIONS(218), + [anon_sym_DASH_GT] = ACTIONS(218), + [sym_comment] = ACTIONS(59), }, [600] = { - [anon_sym_RPAREN] = ACTIONS(2152), - [sym_comment] = ACTIONS(37), + [sym_argument_list] = STATE(98), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(1016), + [anon_sym_LBRACK] = ACTIONS(188), + [anon_sym_RBRACK] = ACTIONS(1090), + [anon_sym_EQ] = ACTIONS(1088), + [anon_sym_QMARK] = ACTIONS(1090), + [anon_sym_STAR_EQ] = ACTIONS(1090), + [anon_sym_SLASH_EQ] = ACTIONS(1090), + [anon_sym_PERCENT_EQ] = ACTIONS(1090), + [anon_sym_PLUS_EQ] = ACTIONS(1090), + [anon_sym_DASH_EQ] = ACTIONS(1090), + [anon_sym_LT_LT_EQ] = ACTIONS(1090), + [anon_sym_GT_GT_EQ] = ACTIONS(1090), + [anon_sym_AMP_EQ] = ACTIONS(1090), + [anon_sym_CARET_EQ] = ACTIONS(1090), + [anon_sym_PIPE_EQ] = ACTIONS(1090), + [anon_sym_AMP] = ACTIONS(1026), + [anon_sym_PIPE_PIPE] = ACTIONS(1090), + [anon_sym_AMP_AMP] = ACTIONS(1090), + [anon_sym_PIPE] = ACTIONS(1032), + [anon_sym_CARET] = ACTIONS(1034), + [anon_sym_EQ_EQ] = ACTIONS(1036), + [anon_sym_BANG_EQ] = ACTIONS(1036), + [anon_sym_LT] = ACTIONS(1038), + [anon_sym_GT] = ACTIONS(1038), + [anon_sym_LT_EQ] = ACTIONS(1040), + [anon_sym_GT_EQ] = ACTIONS(1040), + [anon_sym_LT_LT] = ACTIONS(1042), + [anon_sym_GT_GT] = ACTIONS(1042), + [anon_sym_PLUS] = ACTIONS(1044), + [anon_sym_DASH] = ACTIONS(1044), + [anon_sym_SLASH] = ACTIONS(1016), + [anon_sym_PERCENT] = ACTIONS(1016), + [anon_sym_DASH_DASH] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(216), + [anon_sym_DOT] = ACTIONS(218), + [anon_sym_DASH_GT] = ACTIONS(218), + [sym_comment] = ACTIONS(59), }, [601] = { - [sym_type_qualifier] = STATE(106), - [sym__type_specifier] = STATE(104), - [sym_sized_type_specifier] = STATE(104), - [sym_enum_specifier] = STATE(104), - [sym_struct_specifier] = STATE(104), - [sym_union_specifier] = STATE(104), - [sym__expression] = STATE(371), - [sym_comma_expression] = STATE(372), - [sym_conditional_expression] = STATE(371), - [sym_assignment_expression] = STATE(371), - [sym_pointer_expression] = STATE(371), - [sym_logical_expression] = STATE(371), - [sym_bitwise_expression] = STATE(371), - [sym_equality_expression] = STATE(371), - [sym_relational_expression] = STATE(371), - [sym_shift_expression] = STATE(371), - [sym_math_expression] = STATE(371), - [sym_cast_expression] = STATE(371), - [sym_type_descriptor] = STATE(825), - [sym_sizeof_expression] = STATE(371), - [sym_subscript_expression] = STATE(371), - [sym_call_expression] = STATE(371), - [sym_field_expression] = STATE(371), - [sym_compound_literal_expression] = STATE(371), - [sym_parenthesized_expression] = STATE(371), - [sym_char_literal] = STATE(371), - [sym_concatenated_string] = STATE(371), - [sym_string_literal] = STATE(374), - [sym_macro_type_specifier] = STATE(104), - [aux_sym_type_definition_repeat1] = STATE(106), - [aux_sym_sized_type_specifier_repeat1] = STATE(107), - [anon_sym_LPAREN2] = ACTIONS(892), - [anon_sym_STAR] = ACTIONS(894), - [anon_sym_const] = ACTIONS(23), - [anon_sym_restrict] = ACTIONS(23), - [anon_sym_volatile] = ACTIONS(23), - [anon_sym__Atomic] = ACTIONS(23), - [anon_sym_unsigned] = ACTIONS(211), - [anon_sym_long] = ACTIONS(211), - [anon_sym_short] = ACTIONS(211), - [sym_primitive_type] = ACTIONS(213), - [anon_sym_enum] = ACTIONS(29), - [anon_sym_struct] = ACTIONS(31), - [anon_sym_union] = ACTIONS(33), - [anon_sym_AMP] = ACTIONS(894), - [anon_sym_BANG] = ACTIONS(896), - [anon_sym_TILDE] = ACTIONS(898), - [anon_sym_PLUS] = ACTIONS(900), - [anon_sym_DASH] = ACTIONS(900), - [anon_sym_DASH_DASH] = ACTIONS(902), - [anon_sym_PLUS_PLUS] = ACTIONS(902), - [anon_sym_sizeof] = ACTIONS(904), - [sym_number_literal] = ACTIONS(906), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(908), - [sym_false] = ACTIONS(908), - [sym_null] = ACTIONS(908), - [sym_identifier] = ACTIONS(910), - [sym_comment] = ACTIONS(37), + [sym_argument_list] = STATE(98), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(1016), + [anon_sym_LBRACK] = ACTIONS(188), + [anon_sym_RBRACK] = ACTIONS(1086), + [anon_sym_EQ] = ACTIONS(1084), + [anon_sym_QMARK] = ACTIONS(1086), + [anon_sym_STAR_EQ] = ACTIONS(1086), + [anon_sym_SLASH_EQ] = ACTIONS(1086), + [anon_sym_PERCENT_EQ] = ACTIONS(1086), + [anon_sym_PLUS_EQ] = ACTIONS(1086), + [anon_sym_DASH_EQ] = ACTIONS(1086), + [anon_sym_LT_LT_EQ] = ACTIONS(1086), + [anon_sym_GT_GT_EQ] = ACTIONS(1086), + [anon_sym_AMP_EQ] = ACTIONS(1086), + [anon_sym_CARET_EQ] = ACTIONS(1086), + [anon_sym_PIPE_EQ] = ACTIONS(1086), + [anon_sym_AMP] = ACTIONS(1026), + [anon_sym_PIPE_PIPE] = ACTIONS(1086), + [anon_sym_AMP_AMP] = ACTIONS(1086), + [anon_sym_PIPE] = ACTIONS(1084), + [anon_sym_CARET] = ACTIONS(1034), + [anon_sym_EQ_EQ] = ACTIONS(1036), + [anon_sym_BANG_EQ] = ACTIONS(1036), + [anon_sym_LT] = ACTIONS(1038), + [anon_sym_GT] = ACTIONS(1038), + [anon_sym_LT_EQ] = ACTIONS(1040), + [anon_sym_GT_EQ] = ACTIONS(1040), + [anon_sym_LT_LT] = ACTIONS(1042), + [anon_sym_GT_GT] = ACTIONS(1042), + [anon_sym_PLUS] = ACTIONS(1044), + [anon_sym_DASH] = ACTIONS(1044), + [anon_sym_SLASH] = ACTIONS(1016), + [anon_sym_PERCENT] = ACTIONS(1016), + [anon_sym_DASH_DASH] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(216), + [anon_sym_DOT] = ACTIONS(218), + [anon_sym_DASH_GT] = ACTIONS(218), + [sym_comment] = ACTIONS(59), }, [602] = { - [sym_argument_list] = STATE(430), - [anon_sym_COMMA] = ACTIONS(1577), - [anon_sym_RPAREN] = ACTIONS(1577), - [anon_sym_LPAREN2] = ACTIONS(1012), - [anon_sym_STAR] = ACTIONS(1437), - [anon_sym_LBRACK] = ACTIONS(1016), - [anon_sym_EQ] = ACTIONS(1579), - [anon_sym_QMARK] = ACTIONS(1577), - [anon_sym_STAR_EQ] = ACTIONS(1577), - [anon_sym_SLASH_EQ] = ACTIONS(1577), - [anon_sym_PERCENT_EQ] = ACTIONS(1577), - [anon_sym_PLUS_EQ] = ACTIONS(1577), - [anon_sym_DASH_EQ] = ACTIONS(1577), - [anon_sym_LT_LT_EQ] = ACTIONS(1577), - [anon_sym_GT_GT_EQ] = ACTIONS(1577), - [anon_sym_AMP_EQ] = ACTIONS(1577), - [anon_sym_CARET_EQ] = ACTIONS(1577), - [anon_sym_PIPE_EQ] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(1579), - [anon_sym_PIPE_PIPE] = ACTIONS(1577), - [anon_sym_AMP_AMP] = ACTIONS(1577), - [anon_sym_PIPE] = ACTIONS(1579), - [anon_sym_CARET] = ACTIONS(1579), - [anon_sym_EQ_EQ] = ACTIONS(1577), - [anon_sym_BANG_EQ] = ACTIONS(1577), - [anon_sym_LT] = ACTIONS(1579), - [anon_sym_GT] = ACTIONS(1579), - [anon_sym_LT_EQ] = ACTIONS(1577), - [anon_sym_GT_EQ] = ACTIONS(1577), - [anon_sym_LT_LT] = ACTIONS(1461), - [anon_sym_GT_GT] = ACTIONS(1461), - [anon_sym_PLUS] = ACTIONS(1463), - [anon_sym_DASH] = ACTIONS(1463), - [anon_sym_SLASH] = ACTIONS(1437), - [anon_sym_PERCENT] = ACTIONS(1437), - [anon_sym_DASH_DASH] = ACTIONS(1044), - [anon_sym_PLUS_PLUS] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1046), - [anon_sym_DASH_GT] = ACTIONS(1046), - [sym_comment] = ACTIONS(37), + [sym_argument_list] = STATE(98), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(1016), + [anon_sym_LBRACK] = ACTIONS(188), + [anon_sym_RBRACK] = ACTIONS(1086), + [anon_sym_EQ] = ACTIONS(1084), + [anon_sym_QMARK] = ACTIONS(1086), + [anon_sym_STAR_EQ] = ACTIONS(1086), + [anon_sym_SLASH_EQ] = ACTIONS(1086), + [anon_sym_PERCENT_EQ] = ACTIONS(1086), + [anon_sym_PLUS_EQ] = ACTIONS(1086), + [anon_sym_DASH_EQ] = ACTIONS(1086), + [anon_sym_LT_LT_EQ] = ACTIONS(1086), + [anon_sym_GT_GT_EQ] = ACTIONS(1086), + [anon_sym_AMP_EQ] = ACTIONS(1086), + [anon_sym_CARET_EQ] = ACTIONS(1086), + [anon_sym_PIPE_EQ] = ACTIONS(1086), + [anon_sym_AMP] = ACTIONS(1026), + [anon_sym_PIPE_PIPE] = ACTIONS(1086), + [anon_sym_AMP_AMP] = ACTIONS(1086), + [anon_sym_PIPE] = ACTIONS(1084), + [anon_sym_CARET] = ACTIONS(1084), + [anon_sym_EQ_EQ] = ACTIONS(1036), + [anon_sym_BANG_EQ] = ACTIONS(1036), + [anon_sym_LT] = ACTIONS(1038), + [anon_sym_GT] = ACTIONS(1038), + [anon_sym_LT_EQ] = ACTIONS(1040), + [anon_sym_GT_EQ] = ACTIONS(1040), + [anon_sym_LT_LT] = ACTIONS(1042), + [anon_sym_GT_GT] = ACTIONS(1042), + [anon_sym_PLUS] = ACTIONS(1044), + [anon_sym_DASH] = ACTIONS(1044), + [anon_sym_SLASH] = ACTIONS(1016), + [anon_sym_PERCENT] = ACTIONS(1016), + [anon_sym_DASH_DASH] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(216), + [anon_sym_DOT] = ACTIONS(218), + [anon_sym_DASH_GT] = ACTIONS(218), + [sym_comment] = ACTIONS(59), }, [603] = { - [sym__expression] = STATE(826), - [sym_comma_expression] = STATE(670), - [sym_conditional_expression] = STATE(826), - [sym_assignment_expression] = STATE(826), - [sym_pointer_expression] = STATE(826), - [sym_logical_expression] = STATE(826), - [sym_bitwise_expression] = STATE(826), - [sym_equality_expression] = STATE(826), - [sym_relational_expression] = STATE(826), - [sym_shift_expression] = STATE(826), - [sym_math_expression] = STATE(826), - [sym_cast_expression] = STATE(826), - [sym_sizeof_expression] = STATE(826), - [sym_subscript_expression] = STATE(826), - [sym_call_expression] = STATE(826), - [sym_field_expression] = STATE(826), - [sym_compound_literal_expression] = STATE(826), - [sym_parenthesized_expression] = STATE(826), - [sym_char_literal] = STATE(826), - [sym_concatenated_string] = STATE(826), - [sym_string_literal] = STATE(374), - [anon_sym_LPAREN2] = ACTIONS(892), - [anon_sym_STAR] = ACTIONS(894), - [anon_sym_AMP] = ACTIONS(894), - [anon_sym_BANG] = ACTIONS(896), - [anon_sym_TILDE] = ACTIONS(898), - [anon_sym_PLUS] = ACTIONS(900), - [anon_sym_DASH] = ACTIONS(900), - [anon_sym_DASH_DASH] = ACTIONS(902), - [anon_sym_PLUS_PLUS] = ACTIONS(902), - [anon_sym_sizeof] = ACTIONS(904), - [sym_number_literal] = ACTIONS(2154), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(2156), - [sym_false] = ACTIONS(2156), - [sym_null] = ACTIONS(2156), - [sym_identifier] = ACTIONS(2156), - [sym_comment] = ACTIONS(37), + [sym_argument_list] = STATE(98), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(1016), + [anon_sym_LBRACK] = ACTIONS(188), + [anon_sym_RBRACK] = ACTIONS(1094), + [anon_sym_EQ] = ACTIONS(1092), + [anon_sym_QMARK] = ACTIONS(1094), + [anon_sym_STAR_EQ] = ACTIONS(1094), + [anon_sym_SLASH_EQ] = ACTIONS(1094), + [anon_sym_PERCENT_EQ] = ACTIONS(1094), + [anon_sym_PLUS_EQ] = ACTIONS(1094), + [anon_sym_DASH_EQ] = ACTIONS(1094), + [anon_sym_LT_LT_EQ] = ACTIONS(1094), + [anon_sym_GT_GT_EQ] = ACTIONS(1094), + [anon_sym_AMP_EQ] = ACTIONS(1094), + [anon_sym_CARET_EQ] = ACTIONS(1094), + [anon_sym_PIPE_EQ] = ACTIONS(1094), + [anon_sym_AMP] = ACTIONS(1092), + [anon_sym_PIPE_PIPE] = ACTIONS(1094), + [anon_sym_AMP_AMP] = ACTIONS(1094), + [anon_sym_PIPE] = ACTIONS(1092), + [anon_sym_CARET] = ACTIONS(1092), + [anon_sym_EQ_EQ] = ACTIONS(1094), + [anon_sym_BANG_EQ] = ACTIONS(1094), + [anon_sym_LT] = ACTIONS(1038), + [anon_sym_GT] = ACTIONS(1038), + [anon_sym_LT_EQ] = ACTIONS(1040), + [anon_sym_GT_EQ] = ACTIONS(1040), + [anon_sym_LT_LT] = ACTIONS(1042), + [anon_sym_GT_GT] = ACTIONS(1042), + [anon_sym_PLUS] = ACTIONS(1044), + [anon_sym_DASH] = ACTIONS(1044), + [anon_sym_SLASH] = ACTIONS(1016), + [anon_sym_PERCENT] = ACTIONS(1016), + [anon_sym_DASH_DASH] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(216), + [anon_sym_DOT] = ACTIONS(218), + [anon_sym_DASH_GT] = ACTIONS(218), + [sym_comment] = ACTIONS(59), }, [604] = { - [anon_sym_COMMA] = ACTIONS(2158), - [anon_sym_RPAREN] = ACTIONS(2158), - [anon_sym_SEMI] = ACTIONS(2158), - [anon_sym_RBRACE] = ACTIONS(2158), - [anon_sym_LPAREN2] = ACTIONS(2158), - [anon_sym_STAR] = ACTIONS(2160), - [anon_sym_LBRACK] = ACTIONS(2158), - [anon_sym_RBRACK] = ACTIONS(2158), - [anon_sym_EQ] = ACTIONS(2160), - [anon_sym_COLON] = ACTIONS(2158), - [anon_sym_else] = ACTIONS(2158), - [anon_sym_while] = ACTIONS(2158), - [anon_sym_QMARK] = ACTIONS(2158), - [anon_sym_STAR_EQ] = ACTIONS(2158), - [anon_sym_SLASH_EQ] = ACTIONS(2158), - [anon_sym_PERCENT_EQ] = ACTIONS(2158), - [anon_sym_PLUS_EQ] = ACTIONS(2158), - [anon_sym_DASH_EQ] = ACTIONS(2158), - [anon_sym_LT_LT_EQ] = ACTIONS(2158), - [anon_sym_GT_GT_EQ] = ACTIONS(2158), - [anon_sym_AMP_EQ] = ACTIONS(2158), - [anon_sym_CARET_EQ] = ACTIONS(2158), - [anon_sym_PIPE_EQ] = ACTIONS(2158), - [anon_sym_AMP] = ACTIONS(2160), - [anon_sym_PIPE_PIPE] = ACTIONS(2158), - [anon_sym_AMP_AMP] = ACTIONS(2158), - [anon_sym_PIPE] = ACTIONS(2160), - [anon_sym_CARET] = ACTIONS(2160), - [anon_sym_EQ_EQ] = ACTIONS(2158), - [anon_sym_BANG_EQ] = ACTIONS(2158), - [anon_sym_LT] = ACTIONS(2160), - [anon_sym_GT] = ACTIONS(2160), - [anon_sym_LT_EQ] = ACTIONS(2158), - [anon_sym_GT_EQ] = ACTIONS(2158), - [anon_sym_LT_LT] = ACTIONS(2160), - [anon_sym_GT_GT] = ACTIONS(2160), - [anon_sym_PLUS] = ACTIONS(2160), - [anon_sym_DASH] = ACTIONS(2160), - [anon_sym_SLASH] = ACTIONS(2160), - [anon_sym_PERCENT] = ACTIONS(2160), - [anon_sym_DASH_DASH] = ACTIONS(2158), - [anon_sym_PLUS_PLUS] = ACTIONS(2158), - [anon_sym_DOT] = ACTIONS(2158), - [anon_sym_DASH_GT] = ACTIONS(2158), - [sym_comment] = ACTIONS(37), + [sym_argument_list] = STATE(98), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(1016), + [anon_sym_LBRACK] = ACTIONS(188), + [anon_sym_RBRACK] = ACTIONS(1098), + [anon_sym_EQ] = ACTIONS(1096), + [anon_sym_QMARK] = ACTIONS(1098), + [anon_sym_STAR_EQ] = ACTIONS(1098), + [anon_sym_SLASH_EQ] = ACTIONS(1098), + [anon_sym_PERCENT_EQ] = ACTIONS(1098), + [anon_sym_PLUS_EQ] = ACTIONS(1098), + [anon_sym_DASH_EQ] = ACTIONS(1098), + [anon_sym_LT_LT_EQ] = ACTIONS(1098), + [anon_sym_GT_GT_EQ] = ACTIONS(1098), + [anon_sym_AMP_EQ] = ACTIONS(1098), + [anon_sym_CARET_EQ] = ACTIONS(1098), + [anon_sym_PIPE_EQ] = ACTIONS(1098), + [anon_sym_AMP] = ACTIONS(1096), + [anon_sym_PIPE_PIPE] = ACTIONS(1098), + [anon_sym_AMP_AMP] = ACTIONS(1098), + [anon_sym_PIPE] = ACTIONS(1096), + [anon_sym_CARET] = ACTIONS(1096), + [anon_sym_EQ_EQ] = ACTIONS(1098), + [anon_sym_BANG_EQ] = ACTIONS(1098), + [anon_sym_LT] = ACTIONS(1096), + [anon_sym_GT] = ACTIONS(1096), + [anon_sym_LT_EQ] = ACTIONS(1098), + [anon_sym_GT_EQ] = ACTIONS(1098), + [anon_sym_LT_LT] = ACTIONS(1042), + [anon_sym_GT_GT] = ACTIONS(1042), + [anon_sym_PLUS] = ACTIONS(1044), + [anon_sym_DASH] = ACTIONS(1044), + [anon_sym_SLASH] = ACTIONS(1016), + [anon_sym_PERCENT] = ACTIONS(1016), + [anon_sym_DASH_DASH] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(216), + [anon_sym_DOT] = ACTIONS(218), + [anon_sym_DASH_GT] = ACTIONS(218), + [sym_comment] = ACTIONS(59), }, [605] = { - [sym__expression] = STATE(673), - [sym_conditional_expression] = STATE(673), - [sym_assignment_expression] = STATE(673), - [sym_pointer_expression] = STATE(673), - [sym_logical_expression] = STATE(673), - [sym_bitwise_expression] = STATE(673), - [sym_equality_expression] = STATE(673), - [sym_relational_expression] = STATE(673), - [sym_shift_expression] = STATE(673), - [sym_math_expression] = STATE(673), - [sym_cast_expression] = STATE(673), - [sym_sizeof_expression] = STATE(673), - [sym_subscript_expression] = STATE(673), - [sym_call_expression] = STATE(673), - [sym_field_expression] = STATE(673), - [sym_compound_literal_expression] = STATE(673), - [sym_parenthesized_expression] = STATE(673), - [sym_char_literal] = STATE(673), - [sym_concatenated_string] = STATE(673), - [sym_string_literal] = STATE(374), - [anon_sym_LPAREN2] = ACTIONS(892), - [anon_sym_STAR] = ACTIONS(894), - [anon_sym_AMP] = ACTIONS(894), - [anon_sym_BANG] = ACTIONS(896), - [anon_sym_TILDE] = ACTIONS(898), - [anon_sym_PLUS] = ACTIONS(900), - [anon_sym_DASH] = ACTIONS(900), - [anon_sym_DASH_DASH] = ACTIONS(902), - [anon_sym_PLUS_PLUS] = ACTIONS(902), - [anon_sym_sizeof] = ACTIONS(904), - [sym_number_literal] = ACTIONS(1597), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(1599), - [sym_false] = ACTIONS(1599), - [sym_null] = ACTIONS(1599), - [sym_identifier] = ACTIONS(1599), - [sym_comment] = ACTIONS(37), + [sym_argument_list] = STATE(98), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(1016), + [anon_sym_LBRACK] = ACTIONS(188), + [anon_sym_RBRACK] = ACTIONS(1102), + [anon_sym_EQ] = ACTIONS(1100), + [anon_sym_QMARK] = ACTIONS(1102), + [anon_sym_STAR_EQ] = ACTIONS(1102), + [anon_sym_SLASH_EQ] = ACTIONS(1102), + [anon_sym_PERCENT_EQ] = ACTIONS(1102), + [anon_sym_PLUS_EQ] = ACTIONS(1102), + [anon_sym_DASH_EQ] = ACTIONS(1102), + [anon_sym_LT_LT_EQ] = ACTIONS(1102), + [anon_sym_GT_GT_EQ] = ACTIONS(1102), + [anon_sym_AMP_EQ] = ACTIONS(1102), + [anon_sym_CARET_EQ] = ACTIONS(1102), + [anon_sym_PIPE_EQ] = ACTIONS(1102), + [anon_sym_AMP] = ACTIONS(1100), + [anon_sym_PIPE_PIPE] = ACTIONS(1102), + [anon_sym_AMP_AMP] = ACTIONS(1102), + [anon_sym_PIPE] = ACTIONS(1100), + [anon_sym_CARET] = ACTIONS(1100), + [anon_sym_EQ_EQ] = ACTIONS(1102), + [anon_sym_BANG_EQ] = ACTIONS(1102), + [anon_sym_LT] = ACTIONS(1100), + [anon_sym_GT] = ACTIONS(1100), + [anon_sym_LT_EQ] = ACTIONS(1102), + [anon_sym_GT_EQ] = ACTIONS(1102), + [anon_sym_LT_LT] = ACTIONS(1100), + [anon_sym_GT_GT] = ACTIONS(1100), + [anon_sym_PLUS] = ACTIONS(1044), + [anon_sym_DASH] = ACTIONS(1044), + [anon_sym_SLASH] = ACTIONS(1016), + [anon_sym_PERCENT] = ACTIONS(1016), + [anon_sym_DASH_DASH] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(216), + [anon_sym_DOT] = ACTIONS(218), + [anon_sym_DASH_GT] = ACTIONS(218), + [sym_comment] = ACTIONS(59), }, [606] = { - [sym__expression] = STATE(827), - [sym_conditional_expression] = STATE(827), - [sym_assignment_expression] = STATE(827), - [sym_pointer_expression] = STATE(827), - [sym_logical_expression] = STATE(827), - [sym_bitwise_expression] = STATE(827), - [sym_equality_expression] = STATE(827), - [sym_relational_expression] = STATE(827), - [sym_shift_expression] = STATE(827), - [sym_math_expression] = STATE(827), - [sym_cast_expression] = STATE(827), - [sym_sizeof_expression] = STATE(827), - [sym_subscript_expression] = STATE(827), - [sym_call_expression] = STATE(827), - [sym_field_expression] = STATE(827), - [sym_compound_literal_expression] = STATE(827), - [sym_parenthesized_expression] = STATE(827), - [sym_char_literal] = STATE(827), - [sym_concatenated_string] = STATE(827), - [sym_string_literal] = STATE(374), - [anon_sym_LPAREN2] = ACTIONS(892), - [anon_sym_STAR] = ACTIONS(894), - [anon_sym_AMP] = ACTIONS(894), - [anon_sym_BANG] = ACTIONS(896), - [anon_sym_TILDE] = ACTIONS(898), - [anon_sym_PLUS] = ACTIONS(900), - [anon_sym_DASH] = ACTIONS(900), - [anon_sym_DASH_DASH] = ACTIONS(902), - [anon_sym_PLUS_PLUS] = ACTIONS(902), - [anon_sym_sizeof] = ACTIONS(904), - [sym_number_literal] = ACTIONS(2162), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(2164), - [sym_false] = ACTIONS(2164), - [sym_null] = ACTIONS(2164), - [sym_identifier] = ACTIONS(2164), - [sym_comment] = ACTIONS(37), + [sym_argument_list] = STATE(98), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(1016), + [anon_sym_LBRACK] = ACTIONS(188), + [anon_sym_RBRACK] = ACTIONS(1006), + [anon_sym_EQ] = ACTIONS(1008), + [anon_sym_QMARK] = ACTIONS(1006), + [anon_sym_STAR_EQ] = ACTIONS(1006), + [anon_sym_SLASH_EQ] = ACTIONS(1006), + [anon_sym_PERCENT_EQ] = ACTIONS(1006), + [anon_sym_PLUS_EQ] = ACTIONS(1006), + [anon_sym_DASH_EQ] = ACTIONS(1006), + [anon_sym_LT_LT_EQ] = ACTIONS(1006), + [anon_sym_GT_GT_EQ] = ACTIONS(1006), + [anon_sym_AMP_EQ] = ACTIONS(1006), + [anon_sym_CARET_EQ] = ACTIONS(1006), + [anon_sym_PIPE_EQ] = ACTIONS(1006), + [anon_sym_AMP] = ACTIONS(1008), + [anon_sym_PIPE_PIPE] = ACTIONS(1006), + [anon_sym_AMP_AMP] = ACTIONS(1006), + [anon_sym_PIPE] = ACTIONS(1008), + [anon_sym_CARET] = ACTIONS(1008), + [anon_sym_EQ_EQ] = ACTIONS(1006), + [anon_sym_BANG_EQ] = ACTIONS(1006), + [anon_sym_LT] = ACTIONS(1008), + [anon_sym_GT] = ACTIONS(1008), + [anon_sym_LT_EQ] = ACTIONS(1006), + [anon_sym_GT_EQ] = ACTIONS(1006), + [anon_sym_LT_LT] = ACTIONS(1008), + [anon_sym_GT_GT] = ACTIONS(1008), + [anon_sym_PLUS] = ACTIONS(1008), + [anon_sym_DASH] = ACTIONS(1008), + [anon_sym_SLASH] = ACTIONS(1016), + [anon_sym_PERCENT] = ACTIONS(1016), + [anon_sym_DASH_DASH] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(216), + [anon_sym_DOT] = ACTIONS(218), + [anon_sym_DASH_GT] = ACTIONS(218), + [sym_comment] = ACTIONS(59), }, [607] = { - [sym__expression] = STATE(828), - [sym_conditional_expression] = STATE(828), - [sym_assignment_expression] = STATE(828), - [sym_pointer_expression] = STATE(828), - [sym_logical_expression] = STATE(828), - [sym_bitwise_expression] = STATE(828), - [sym_equality_expression] = STATE(828), - [sym_relational_expression] = STATE(828), - [sym_shift_expression] = STATE(828), - [sym_math_expression] = STATE(828), - [sym_cast_expression] = STATE(828), - [sym_sizeof_expression] = STATE(828), - [sym_subscript_expression] = STATE(828), - [sym_call_expression] = STATE(828), - [sym_field_expression] = STATE(828), - [sym_compound_literal_expression] = STATE(828), - [sym_parenthesized_expression] = STATE(828), - [sym_char_literal] = STATE(828), - [sym_concatenated_string] = STATE(828), - [sym_string_literal] = STATE(386), - [anon_sym_LPAREN2] = ACTIONS(918), - [anon_sym_STAR] = ACTIONS(920), - [anon_sym_AMP] = ACTIONS(920), - [anon_sym_BANG] = ACTIONS(922), - [anon_sym_TILDE] = ACTIONS(924), - [anon_sym_PLUS] = ACTIONS(926), - [anon_sym_DASH] = ACTIONS(926), - [anon_sym_DASH_DASH] = ACTIONS(928), - [anon_sym_PLUS_PLUS] = ACTIONS(928), - [anon_sym_sizeof] = ACTIONS(930), - [sym_number_literal] = ACTIONS(2166), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(2168), - [sym_false] = ACTIONS(2168), - [sym_null] = ACTIONS(2168), - [sym_identifier] = ACTIONS(2168), - [sym_comment] = ACTIONS(37), + [sym_string_literal] = STATE(607), + [aux_sym_concatenated_string_repeat1] = STATE(607), + [anon_sym_LPAREN2] = ACTIONS(1108), + [anon_sym_STAR] = ACTIONS(1110), + [anon_sym_LBRACK] = ACTIONS(1108), + [anon_sym_RBRACK] = ACTIONS(1108), + [anon_sym_EQ] = ACTIONS(1110), + [anon_sym_QMARK] = ACTIONS(1108), + [anon_sym_STAR_EQ] = ACTIONS(1108), + [anon_sym_SLASH_EQ] = ACTIONS(1108), + [anon_sym_PERCENT_EQ] = ACTIONS(1108), + [anon_sym_PLUS_EQ] = ACTIONS(1108), + [anon_sym_DASH_EQ] = ACTIONS(1108), + [anon_sym_LT_LT_EQ] = ACTIONS(1108), + [anon_sym_GT_GT_EQ] = ACTIONS(1108), + [anon_sym_AMP_EQ] = ACTIONS(1108), + [anon_sym_CARET_EQ] = ACTIONS(1108), + [anon_sym_PIPE_EQ] = ACTIONS(1108), + [anon_sym_AMP] = ACTIONS(1110), + [anon_sym_PIPE_PIPE] = ACTIONS(1108), + [anon_sym_AMP_AMP] = ACTIONS(1108), + [anon_sym_PIPE] = ACTIONS(1110), + [anon_sym_CARET] = ACTIONS(1110), + [anon_sym_EQ_EQ] = ACTIONS(1108), + [anon_sym_BANG_EQ] = ACTIONS(1108), + [anon_sym_LT] = ACTIONS(1110), + [anon_sym_GT] = ACTIONS(1110), + [anon_sym_LT_EQ] = ACTIONS(1108), + [anon_sym_GT_EQ] = ACTIONS(1108), + [anon_sym_LT_LT] = ACTIONS(1110), + [anon_sym_GT_GT] = ACTIONS(1110), + [anon_sym_PLUS] = ACTIONS(1110), + [anon_sym_DASH] = ACTIONS(1110), + [anon_sym_SLASH] = ACTIONS(1110), + [anon_sym_PERCENT] = ACTIONS(1110), + [anon_sym_DASH_DASH] = ACTIONS(1108), + [anon_sym_PLUS_PLUS] = ACTIONS(1108), + [anon_sym_DOT] = ACTIONS(1108), + [anon_sym_DASH_GT] = ACTIONS(1108), + [anon_sym_DQUOTE] = ACTIONS(1112), + [sym_comment] = ACTIONS(59), }, [608] = { - [sym__expression] = STATE(829), - [sym_conditional_expression] = STATE(829), - [sym_assignment_expression] = STATE(829), - [sym_pointer_expression] = STATE(829), - [sym_logical_expression] = STATE(829), - [sym_bitwise_expression] = STATE(829), - [sym_equality_expression] = STATE(829), - [sym_relational_expression] = STATE(829), - [sym_shift_expression] = STATE(829), - [sym_math_expression] = STATE(829), - [sym_cast_expression] = STATE(829), - [sym_sizeof_expression] = STATE(829), - [sym_subscript_expression] = STATE(829), - [sym_call_expression] = STATE(829), - [sym_field_expression] = STATE(829), - [sym_compound_literal_expression] = STATE(829), - [sym_parenthesized_expression] = STATE(829), - [sym_char_literal] = STATE(829), - [sym_concatenated_string] = STATE(829), - [sym_string_literal] = STATE(374), - [anon_sym_LPAREN2] = ACTIONS(892), - [anon_sym_STAR] = ACTIONS(894), - [anon_sym_AMP] = ACTIONS(894), - [anon_sym_BANG] = ACTIONS(896), - [anon_sym_TILDE] = ACTIONS(898), - [anon_sym_PLUS] = ACTIONS(900), - [anon_sym_DASH] = ACTIONS(900), - [anon_sym_DASH_DASH] = ACTIONS(902), - [anon_sym_PLUS_PLUS] = ACTIONS(902), - [anon_sym_sizeof] = ACTIONS(904), - [sym_number_literal] = ACTIONS(2170), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(2172), - [sym_false] = ACTIONS(2172), - [sym_null] = ACTIONS(2172), - [sym_identifier] = ACTIONS(2172), - [sym_comment] = ACTIONS(37), + [sym__expression] = STATE(319), + [sym_conditional_expression] = STATE(319), + [sym_assignment_expression] = STATE(319), + [sym_pointer_expression] = STATE(319), + [sym_logical_expression] = STATE(319), + [sym_bitwise_expression] = STATE(319), + [sym_equality_expression] = STATE(319), + [sym_relational_expression] = STATE(319), + [sym_shift_expression] = STATE(319), + [sym_math_expression] = STATE(319), + [sym_cast_expression] = STATE(319), + [sym_sizeof_expression] = STATE(319), + [sym_subscript_expression] = STATE(319), + [sym_call_expression] = STATE(319), + [sym_field_expression] = STATE(319), + [sym_compound_literal_expression] = STATE(319), + [sym_parenthesized_expression] = STATE(319), + [sym_initializer_list] = STATE(320), + [sym_char_literal] = STATE(319), + [sym_concatenated_string] = STATE(319), + [sym_string_literal] = STATE(223), + [anon_sym_LBRACE] = ACTIONS(840), + [anon_sym_LPAREN2] = ACTIONS(483), + [anon_sym_STAR] = ACTIONS(485), + [anon_sym_AMP] = ACTIONS(485), + [anon_sym_BANG] = ACTIONS(487), + [anon_sym_TILDE] = ACTIONS(489), + [anon_sym_PLUS] = ACTIONS(491), + [anon_sym_DASH] = ACTIONS(491), + [anon_sym_DASH_DASH] = ACTIONS(493), + [anon_sym_PLUS_PLUS] = ACTIONS(493), + [anon_sym_sizeof] = ACTIONS(495), + [sym_number_literal] = ACTIONS(842), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(844), + [sym_false] = ACTIONS(844), + [sym_null] = ACTIONS(844), + [sym_identifier] = ACTIONS(844), + [sym_comment] = ACTIONS(59), }, [609] = { - [sym__expression] = STATE(830), - [sym_conditional_expression] = STATE(830), - [sym_assignment_expression] = STATE(830), - [sym_pointer_expression] = STATE(830), - [sym_logical_expression] = STATE(830), - [sym_bitwise_expression] = STATE(830), - [sym_equality_expression] = STATE(830), - [sym_relational_expression] = STATE(830), - [sym_shift_expression] = STATE(830), - [sym_math_expression] = STATE(830), - [sym_cast_expression] = STATE(830), - [sym_sizeof_expression] = STATE(830), - [sym_subscript_expression] = STATE(830), - [sym_call_expression] = STATE(830), - [sym_field_expression] = STATE(830), - [sym_compound_literal_expression] = STATE(830), - [sym_parenthesized_expression] = STATE(830), - [sym_char_literal] = STATE(830), - [sym_concatenated_string] = STATE(830), - [sym_string_literal] = STATE(374), - [anon_sym_LPAREN2] = ACTIONS(892), - [anon_sym_STAR] = ACTIONS(894), - [anon_sym_AMP] = ACTIONS(894), - [anon_sym_BANG] = ACTIONS(896), - [anon_sym_TILDE] = ACTIONS(898), - [anon_sym_PLUS] = ACTIONS(900), - [anon_sym_DASH] = ACTIONS(900), - [anon_sym_DASH_DASH] = ACTIONS(902), - [anon_sym_PLUS_PLUS] = ACTIONS(902), - [anon_sym_sizeof] = ACTIONS(904), - [sym_number_literal] = ACTIONS(2174), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(2176), - [sym_false] = ACTIONS(2176), - [sym_null] = ACTIONS(2176), - [sym_identifier] = ACTIONS(2176), - [sym_comment] = ACTIONS(37), + [anon_sym_RPAREN] = ACTIONS(2233), + [sym_comment] = ACTIONS(59), }, [610] = { - [sym__expression] = STATE(831), - [sym_conditional_expression] = STATE(831), - [sym_assignment_expression] = STATE(831), - [sym_pointer_expression] = STATE(831), - [sym_logical_expression] = STATE(831), - [sym_bitwise_expression] = STATE(831), - [sym_equality_expression] = STATE(831), - [sym_relational_expression] = STATE(831), - [sym_shift_expression] = STATE(831), - [sym_math_expression] = STATE(831), - [sym_cast_expression] = STATE(831), - [sym_sizeof_expression] = STATE(831), - [sym_subscript_expression] = STATE(831), - [sym_call_expression] = STATE(831), - [sym_field_expression] = STATE(831), - [sym_compound_literal_expression] = STATE(831), - [sym_parenthesized_expression] = STATE(831), - [sym_char_literal] = STATE(831), - [sym_concatenated_string] = STATE(831), - [sym_string_literal] = STATE(374), - [anon_sym_LPAREN2] = ACTIONS(892), - [anon_sym_STAR] = ACTIONS(894), - [anon_sym_AMP] = ACTIONS(894), - [anon_sym_BANG] = ACTIONS(896), - [anon_sym_TILDE] = ACTIONS(898), - [anon_sym_PLUS] = ACTIONS(900), - [anon_sym_DASH] = ACTIONS(900), - [anon_sym_DASH_DASH] = ACTIONS(902), - [anon_sym_PLUS_PLUS] = ACTIONS(902), - [anon_sym_sizeof] = ACTIONS(904), - [sym_number_literal] = ACTIONS(2178), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(2180), - [sym_false] = ACTIONS(2180), - [sym_null] = ACTIONS(2180), - [sym_identifier] = ACTIONS(2180), - [sym_comment] = ACTIONS(37), + [sym_argument_list] = STATE(98), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(1054), + [anon_sym_LBRACK] = ACTIONS(188), + [anon_sym_EQ] = ACTIONS(1056), + [anon_sym_COLON] = ACTIONS(1046), + [anon_sym_QMARK] = ACTIONS(1046), + [anon_sym_STAR_EQ] = ACTIONS(1062), + [anon_sym_SLASH_EQ] = ACTIONS(1062), + [anon_sym_PERCENT_EQ] = ACTIONS(1062), + [anon_sym_PLUS_EQ] = ACTIONS(1062), + [anon_sym_DASH_EQ] = ACTIONS(1062), + [anon_sym_LT_LT_EQ] = ACTIONS(1062), + [anon_sym_GT_GT_EQ] = ACTIONS(1062), + [anon_sym_AMP_EQ] = ACTIONS(1062), + [anon_sym_CARET_EQ] = ACTIONS(1062), + [anon_sym_PIPE_EQ] = ACTIONS(1062), + [anon_sym_AMP] = ACTIONS(1064), + [anon_sym_PIPE_PIPE] = ACTIONS(1066), + [anon_sym_AMP_AMP] = ACTIONS(1068), + [anon_sym_PIPE] = ACTIONS(1070), + [anon_sym_CARET] = ACTIONS(1072), + [anon_sym_EQ_EQ] = ACTIONS(1074), + [anon_sym_BANG_EQ] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(1076), + [anon_sym_GT] = ACTIONS(1076), + [anon_sym_LT_EQ] = ACTIONS(1078), + [anon_sym_GT_EQ] = ACTIONS(1078), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_GT_GT] = ACTIONS(1080), + [anon_sym_PLUS] = ACTIONS(1082), + [anon_sym_DASH] = ACTIONS(1082), + [anon_sym_SLASH] = ACTIONS(1054), + [anon_sym_PERCENT] = ACTIONS(1054), + [anon_sym_DASH_DASH] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(216), + [anon_sym_DOT] = ACTIONS(218), + [anon_sym_DASH_GT] = ACTIONS(218), + [sym_comment] = ACTIONS(59), }, [611] = { - [sym__expression] = STATE(832), - [sym_conditional_expression] = STATE(832), - [sym_assignment_expression] = STATE(832), - [sym_pointer_expression] = STATE(832), - [sym_logical_expression] = STATE(832), - [sym_bitwise_expression] = STATE(832), - [sym_equality_expression] = STATE(832), - [sym_relational_expression] = STATE(832), - [sym_shift_expression] = STATE(832), - [sym_math_expression] = STATE(832), - [sym_cast_expression] = STATE(832), - [sym_sizeof_expression] = STATE(832), - [sym_subscript_expression] = STATE(832), - [sym_call_expression] = STATE(832), - [sym_field_expression] = STATE(832), - [sym_compound_literal_expression] = STATE(832), - [sym_parenthesized_expression] = STATE(832), - [sym_char_literal] = STATE(832), - [sym_concatenated_string] = STATE(832), - [sym_string_literal] = STATE(374), - [anon_sym_LPAREN2] = ACTIONS(892), - [anon_sym_STAR] = ACTIONS(894), - [anon_sym_AMP] = ACTIONS(894), - [anon_sym_BANG] = ACTIONS(896), - [anon_sym_TILDE] = ACTIONS(898), - [anon_sym_PLUS] = ACTIONS(900), - [anon_sym_DASH] = ACTIONS(900), - [anon_sym_DASH_DASH] = ACTIONS(902), - [anon_sym_PLUS_PLUS] = ACTIONS(902), - [anon_sym_sizeof] = ACTIONS(904), - [sym_number_literal] = ACTIONS(2182), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(2184), - [sym_false] = ACTIONS(2184), - [sym_null] = ACTIONS(2184), - [sym_identifier] = ACTIONS(2184), - [sym_comment] = ACTIONS(37), + [sym_argument_list] = STATE(98), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(1054), + [anon_sym_LBRACK] = ACTIONS(188), + [anon_sym_EQ] = ACTIONS(1056), + [anon_sym_COLON] = ACTIONS(2235), + [anon_sym_QMARK] = ACTIONS(1060), + [anon_sym_STAR_EQ] = ACTIONS(1062), + [anon_sym_SLASH_EQ] = ACTIONS(1062), + [anon_sym_PERCENT_EQ] = ACTIONS(1062), + [anon_sym_PLUS_EQ] = ACTIONS(1062), + [anon_sym_DASH_EQ] = ACTIONS(1062), + [anon_sym_LT_LT_EQ] = ACTIONS(1062), + [anon_sym_GT_GT_EQ] = ACTIONS(1062), + [anon_sym_AMP_EQ] = ACTIONS(1062), + [anon_sym_CARET_EQ] = ACTIONS(1062), + [anon_sym_PIPE_EQ] = ACTIONS(1062), + [anon_sym_AMP] = ACTIONS(1064), + [anon_sym_PIPE_PIPE] = ACTIONS(1066), + [anon_sym_AMP_AMP] = ACTIONS(1068), + [anon_sym_PIPE] = ACTIONS(1070), + [anon_sym_CARET] = ACTIONS(1072), + [anon_sym_EQ_EQ] = ACTIONS(1074), + [anon_sym_BANG_EQ] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(1076), + [anon_sym_GT] = ACTIONS(1076), + [anon_sym_LT_EQ] = ACTIONS(1078), + [anon_sym_GT_EQ] = ACTIONS(1078), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_GT_GT] = ACTIONS(1080), + [anon_sym_PLUS] = ACTIONS(1082), + [anon_sym_DASH] = ACTIONS(1082), + [anon_sym_SLASH] = ACTIONS(1054), + [anon_sym_PERCENT] = ACTIONS(1054), + [anon_sym_DASH_DASH] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(216), + [anon_sym_DOT] = ACTIONS(218), + [anon_sym_DASH_GT] = ACTIONS(218), + [sym_comment] = ACTIONS(59), }, [612] = { - [sym__expression] = STATE(833), - [sym_conditional_expression] = STATE(833), - [sym_assignment_expression] = STATE(833), - [sym_pointer_expression] = STATE(833), - [sym_logical_expression] = STATE(833), - [sym_bitwise_expression] = STATE(833), - [sym_equality_expression] = STATE(833), - [sym_relational_expression] = STATE(833), - [sym_shift_expression] = STATE(833), - [sym_math_expression] = STATE(833), - [sym_cast_expression] = STATE(833), - [sym_sizeof_expression] = STATE(833), - [sym_subscript_expression] = STATE(833), - [sym_call_expression] = STATE(833), - [sym_field_expression] = STATE(833), - [sym_compound_literal_expression] = STATE(833), - [sym_parenthesized_expression] = STATE(833), - [sym_char_literal] = STATE(833), - [sym_concatenated_string] = STATE(833), - [sym_string_literal] = STATE(374), - [anon_sym_LPAREN2] = ACTIONS(892), - [anon_sym_STAR] = ACTIONS(894), - [anon_sym_AMP] = ACTIONS(894), - [anon_sym_BANG] = ACTIONS(896), - [anon_sym_TILDE] = ACTIONS(898), - [anon_sym_PLUS] = ACTIONS(900), - [anon_sym_DASH] = ACTIONS(900), - [anon_sym_DASH_DASH] = ACTIONS(902), - [anon_sym_PLUS_PLUS] = ACTIONS(902), - [anon_sym_sizeof] = ACTIONS(904), - [sym_number_literal] = ACTIONS(2186), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(2188), - [sym_false] = ACTIONS(2188), - [sym_null] = ACTIONS(2188), - [sym_identifier] = ACTIONS(2188), - [sym_comment] = ACTIONS(37), + [sym_argument_list] = STATE(98), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(1054), + [anon_sym_LBRACK] = ACTIONS(188), + [anon_sym_EQ] = ACTIONS(1084), + [anon_sym_COLON] = ACTIONS(1086), + [anon_sym_QMARK] = ACTIONS(1086), + [anon_sym_STAR_EQ] = ACTIONS(1086), + [anon_sym_SLASH_EQ] = ACTIONS(1086), + [anon_sym_PERCENT_EQ] = ACTIONS(1086), + [anon_sym_PLUS_EQ] = ACTIONS(1086), + [anon_sym_DASH_EQ] = ACTIONS(1086), + [anon_sym_LT_LT_EQ] = ACTIONS(1086), + [anon_sym_GT_GT_EQ] = ACTIONS(1086), + [anon_sym_AMP_EQ] = ACTIONS(1086), + [anon_sym_CARET_EQ] = ACTIONS(1086), + [anon_sym_PIPE_EQ] = ACTIONS(1086), + [anon_sym_AMP] = ACTIONS(1084), + [anon_sym_PIPE_PIPE] = ACTIONS(1086), + [anon_sym_AMP_AMP] = ACTIONS(1086), + [anon_sym_PIPE] = ACTIONS(1084), + [anon_sym_CARET] = ACTIONS(1084), + [anon_sym_EQ_EQ] = ACTIONS(1074), + [anon_sym_BANG_EQ] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(1076), + [anon_sym_GT] = ACTIONS(1076), + [anon_sym_LT_EQ] = ACTIONS(1078), + [anon_sym_GT_EQ] = ACTIONS(1078), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_GT_GT] = ACTIONS(1080), + [anon_sym_PLUS] = ACTIONS(1082), + [anon_sym_DASH] = ACTIONS(1082), + [anon_sym_SLASH] = ACTIONS(1054), + [anon_sym_PERCENT] = ACTIONS(1054), + [anon_sym_DASH_DASH] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(216), + [anon_sym_DOT] = ACTIONS(218), + [anon_sym_DASH_GT] = ACTIONS(218), + [sym_comment] = ACTIONS(59), }, [613] = { - [sym__expression] = STATE(834), - [sym_conditional_expression] = STATE(834), - [sym_assignment_expression] = STATE(834), - [sym_pointer_expression] = STATE(834), - [sym_logical_expression] = STATE(834), - [sym_bitwise_expression] = STATE(834), - [sym_equality_expression] = STATE(834), - [sym_relational_expression] = STATE(834), - [sym_shift_expression] = STATE(834), - [sym_math_expression] = STATE(834), - [sym_cast_expression] = STATE(834), - [sym_sizeof_expression] = STATE(834), - [sym_subscript_expression] = STATE(834), - [sym_call_expression] = STATE(834), - [sym_field_expression] = STATE(834), - [sym_compound_literal_expression] = STATE(834), - [sym_parenthesized_expression] = STATE(834), - [sym_char_literal] = STATE(834), - [sym_concatenated_string] = STATE(834), - [sym_string_literal] = STATE(374), - [anon_sym_LPAREN2] = ACTIONS(892), - [anon_sym_STAR] = ACTIONS(894), - [anon_sym_AMP] = ACTIONS(894), - [anon_sym_BANG] = ACTIONS(896), - [anon_sym_TILDE] = ACTIONS(898), - [anon_sym_PLUS] = ACTIONS(900), - [anon_sym_DASH] = ACTIONS(900), - [anon_sym_DASH_DASH] = ACTIONS(902), - [anon_sym_PLUS_PLUS] = ACTIONS(902), - [anon_sym_sizeof] = ACTIONS(904), - [sym_number_literal] = ACTIONS(2190), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(2192), - [sym_false] = ACTIONS(2192), - [sym_null] = ACTIONS(2192), - [sym_identifier] = ACTIONS(2192), - [sym_comment] = ACTIONS(37), + [sym_argument_list] = STATE(98), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(1054), + [anon_sym_LBRACK] = ACTIONS(188), + [anon_sym_EQ] = ACTIONS(1088), + [anon_sym_COLON] = ACTIONS(1090), + [anon_sym_QMARK] = ACTIONS(1090), + [anon_sym_STAR_EQ] = ACTIONS(1090), + [anon_sym_SLASH_EQ] = ACTIONS(1090), + [anon_sym_PERCENT_EQ] = ACTIONS(1090), + [anon_sym_PLUS_EQ] = ACTIONS(1090), + [anon_sym_DASH_EQ] = ACTIONS(1090), + [anon_sym_LT_LT_EQ] = ACTIONS(1090), + [anon_sym_GT_GT_EQ] = ACTIONS(1090), + [anon_sym_AMP_EQ] = ACTIONS(1090), + [anon_sym_CARET_EQ] = ACTIONS(1090), + [anon_sym_PIPE_EQ] = ACTIONS(1090), + [anon_sym_AMP] = ACTIONS(1064), + [anon_sym_PIPE_PIPE] = ACTIONS(1090), + [anon_sym_AMP_AMP] = ACTIONS(1068), + [anon_sym_PIPE] = ACTIONS(1070), + [anon_sym_CARET] = ACTIONS(1072), + [anon_sym_EQ_EQ] = ACTIONS(1074), + [anon_sym_BANG_EQ] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(1076), + [anon_sym_GT] = ACTIONS(1076), + [anon_sym_LT_EQ] = ACTIONS(1078), + [anon_sym_GT_EQ] = ACTIONS(1078), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_GT_GT] = ACTIONS(1080), + [anon_sym_PLUS] = ACTIONS(1082), + [anon_sym_DASH] = ACTIONS(1082), + [anon_sym_SLASH] = ACTIONS(1054), + [anon_sym_PERCENT] = ACTIONS(1054), + [anon_sym_DASH_DASH] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(216), + [anon_sym_DOT] = ACTIONS(218), + [anon_sym_DASH_GT] = ACTIONS(218), + [sym_comment] = ACTIONS(59), }, [614] = { - [sym__expression] = STATE(835), - [sym_conditional_expression] = STATE(835), - [sym_assignment_expression] = STATE(835), - [sym_pointer_expression] = STATE(835), - [sym_logical_expression] = STATE(835), - [sym_bitwise_expression] = STATE(835), - [sym_equality_expression] = STATE(835), - [sym_relational_expression] = STATE(835), - [sym_shift_expression] = STATE(835), - [sym_math_expression] = STATE(835), - [sym_cast_expression] = STATE(835), - [sym_sizeof_expression] = STATE(835), - [sym_subscript_expression] = STATE(835), - [sym_call_expression] = STATE(835), - [sym_field_expression] = STATE(835), - [sym_compound_literal_expression] = STATE(835), - [sym_parenthesized_expression] = STATE(835), - [sym_char_literal] = STATE(835), - [sym_concatenated_string] = STATE(835), - [sym_string_literal] = STATE(374), - [anon_sym_LPAREN2] = ACTIONS(892), - [anon_sym_STAR] = ACTIONS(894), - [anon_sym_AMP] = ACTIONS(894), - [anon_sym_BANG] = ACTIONS(896), - [anon_sym_TILDE] = ACTIONS(898), - [anon_sym_PLUS] = ACTIONS(900), - [anon_sym_DASH] = ACTIONS(900), - [anon_sym_DASH_DASH] = ACTIONS(902), - [anon_sym_PLUS_PLUS] = ACTIONS(902), - [anon_sym_sizeof] = ACTIONS(904), - [sym_number_literal] = ACTIONS(2194), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(2196), - [sym_false] = ACTIONS(2196), - [sym_null] = ACTIONS(2196), - [sym_identifier] = ACTIONS(2196), - [sym_comment] = ACTIONS(37), + [sym_argument_list] = STATE(98), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(1054), + [anon_sym_LBRACK] = ACTIONS(188), + [anon_sym_EQ] = ACTIONS(1088), + [anon_sym_COLON] = ACTIONS(1090), + [anon_sym_QMARK] = ACTIONS(1090), + [anon_sym_STAR_EQ] = ACTIONS(1090), + [anon_sym_SLASH_EQ] = ACTIONS(1090), + [anon_sym_PERCENT_EQ] = ACTIONS(1090), + [anon_sym_PLUS_EQ] = ACTIONS(1090), + [anon_sym_DASH_EQ] = ACTIONS(1090), + [anon_sym_LT_LT_EQ] = ACTIONS(1090), + [anon_sym_GT_GT_EQ] = ACTIONS(1090), + [anon_sym_AMP_EQ] = ACTIONS(1090), + [anon_sym_CARET_EQ] = ACTIONS(1090), + [anon_sym_PIPE_EQ] = ACTIONS(1090), + [anon_sym_AMP] = ACTIONS(1064), + [anon_sym_PIPE_PIPE] = ACTIONS(1090), + [anon_sym_AMP_AMP] = ACTIONS(1090), + [anon_sym_PIPE] = ACTIONS(1070), + [anon_sym_CARET] = ACTIONS(1072), + [anon_sym_EQ_EQ] = ACTIONS(1074), + [anon_sym_BANG_EQ] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(1076), + [anon_sym_GT] = ACTIONS(1076), + [anon_sym_LT_EQ] = ACTIONS(1078), + [anon_sym_GT_EQ] = ACTIONS(1078), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_GT_GT] = ACTIONS(1080), + [anon_sym_PLUS] = ACTIONS(1082), + [anon_sym_DASH] = ACTIONS(1082), + [anon_sym_SLASH] = ACTIONS(1054), + [anon_sym_PERCENT] = ACTIONS(1054), + [anon_sym_DASH_DASH] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(216), + [anon_sym_DOT] = ACTIONS(218), + [anon_sym_DASH_GT] = ACTIONS(218), + [sym_comment] = ACTIONS(59), }, [615] = { - [sym__expression] = STATE(836), - [sym_conditional_expression] = STATE(836), - [sym_assignment_expression] = STATE(836), - [sym_pointer_expression] = STATE(836), - [sym_logical_expression] = STATE(836), - [sym_bitwise_expression] = STATE(836), - [sym_equality_expression] = STATE(836), - [sym_relational_expression] = STATE(836), - [sym_shift_expression] = STATE(836), - [sym_math_expression] = STATE(836), - [sym_cast_expression] = STATE(836), - [sym_sizeof_expression] = STATE(836), - [sym_subscript_expression] = STATE(836), - [sym_call_expression] = STATE(836), - [sym_field_expression] = STATE(836), - [sym_compound_literal_expression] = STATE(836), - [sym_parenthesized_expression] = STATE(836), - [sym_char_literal] = STATE(836), - [sym_concatenated_string] = STATE(836), - [sym_string_literal] = STATE(374), - [anon_sym_LPAREN2] = ACTIONS(892), - [anon_sym_STAR] = ACTIONS(894), - [anon_sym_AMP] = ACTIONS(894), - [anon_sym_BANG] = ACTIONS(896), - [anon_sym_TILDE] = ACTIONS(898), - [anon_sym_PLUS] = ACTIONS(900), - [anon_sym_DASH] = ACTIONS(900), - [anon_sym_DASH_DASH] = ACTIONS(902), - [anon_sym_PLUS_PLUS] = ACTIONS(902), - [anon_sym_sizeof] = ACTIONS(904), - [sym_number_literal] = ACTIONS(2198), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(2200), - [sym_false] = ACTIONS(2200), - [sym_null] = ACTIONS(2200), - [sym_identifier] = ACTIONS(2200), - [sym_comment] = ACTIONS(37), + [sym_argument_list] = STATE(98), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(1054), + [anon_sym_LBRACK] = ACTIONS(188), + [anon_sym_EQ] = ACTIONS(1084), + [anon_sym_COLON] = ACTIONS(1086), + [anon_sym_QMARK] = ACTIONS(1086), + [anon_sym_STAR_EQ] = ACTIONS(1086), + [anon_sym_SLASH_EQ] = ACTIONS(1086), + [anon_sym_PERCENT_EQ] = ACTIONS(1086), + [anon_sym_PLUS_EQ] = ACTIONS(1086), + [anon_sym_DASH_EQ] = ACTIONS(1086), + [anon_sym_LT_LT_EQ] = ACTIONS(1086), + [anon_sym_GT_GT_EQ] = ACTIONS(1086), + [anon_sym_AMP_EQ] = ACTIONS(1086), + [anon_sym_CARET_EQ] = ACTIONS(1086), + [anon_sym_PIPE_EQ] = ACTIONS(1086), + [anon_sym_AMP] = ACTIONS(1064), + [anon_sym_PIPE_PIPE] = ACTIONS(1086), + [anon_sym_AMP_AMP] = ACTIONS(1086), + [anon_sym_PIPE] = ACTIONS(1084), + [anon_sym_CARET] = ACTIONS(1072), + [anon_sym_EQ_EQ] = ACTIONS(1074), + [anon_sym_BANG_EQ] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(1076), + [anon_sym_GT] = ACTIONS(1076), + [anon_sym_LT_EQ] = ACTIONS(1078), + [anon_sym_GT_EQ] = ACTIONS(1078), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_GT_GT] = ACTIONS(1080), + [anon_sym_PLUS] = ACTIONS(1082), + [anon_sym_DASH] = ACTIONS(1082), + [anon_sym_SLASH] = ACTIONS(1054), + [anon_sym_PERCENT] = ACTIONS(1054), + [anon_sym_DASH_DASH] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(216), + [anon_sym_DOT] = ACTIONS(218), + [anon_sym_DASH_GT] = ACTIONS(218), + [sym_comment] = ACTIONS(59), }, [616] = { - [sym__expression] = STATE(837), - [sym_conditional_expression] = STATE(837), - [sym_assignment_expression] = STATE(837), - [sym_pointer_expression] = STATE(837), - [sym_logical_expression] = STATE(837), - [sym_bitwise_expression] = STATE(837), - [sym_equality_expression] = STATE(837), - [sym_relational_expression] = STATE(837), - [sym_shift_expression] = STATE(837), - [sym_math_expression] = STATE(837), - [sym_cast_expression] = STATE(837), - [sym_sizeof_expression] = STATE(837), - [sym_subscript_expression] = STATE(837), - [sym_call_expression] = STATE(837), - [sym_field_expression] = STATE(837), - [sym_compound_literal_expression] = STATE(837), - [sym_parenthesized_expression] = STATE(837), - [sym_char_literal] = STATE(837), - [sym_concatenated_string] = STATE(837), - [sym_string_literal] = STATE(374), - [anon_sym_LPAREN2] = ACTIONS(892), - [anon_sym_STAR] = ACTIONS(894), - [anon_sym_AMP] = ACTIONS(894), - [anon_sym_BANG] = ACTIONS(896), - [anon_sym_TILDE] = ACTIONS(898), - [anon_sym_PLUS] = ACTIONS(900), - [anon_sym_DASH] = ACTIONS(900), - [anon_sym_DASH_DASH] = ACTIONS(902), - [anon_sym_PLUS_PLUS] = ACTIONS(902), - [anon_sym_sizeof] = ACTIONS(904), - [sym_number_literal] = ACTIONS(2202), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(2204), - [sym_false] = ACTIONS(2204), - [sym_null] = ACTIONS(2204), - [sym_identifier] = ACTIONS(2204), - [sym_comment] = ACTIONS(37), + [sym_argument_list] = STATE(98), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(1054), + [anon_sym_LBRACK] = ACTIONS(188), + [anon_sym_EQ] = ACTIONS(1084), + [anon_sym_COLON] = ACTIONS(1086), + [anon_sym_QMARK] = ACTIONS(1086), + [anon_sym_STAR_EQ] = ACTIONS(1086), + [anon_sym_SLASH_EQ] = ACTIONS(1086), + [anon_sym_PERCENT_EQ] = ACTIONS(1086), + [anon_sym_PLUS_EQ] = ACTIONS(1086), + [anon_sym_DASH_EQ] = ACTIONS(1086), + [anon_sym_LT_LT_EQ] = ACTIONS(1086), + [anon_sym_GT_GT_EQ] = ACTIONS(1086), + [anon_sym_AMP_EQ] = ACTIONS(1086), + [anon_sym_CARET_EQ] = ACTIONS(1086), + [anon_sym_PIPE_EQ] = ACTIONS(1086), + [anon_sym_AMP] = ACTIONS(1064), + [anon_sym_PIPE_PIPE] = ACTIONS(1086), + [anon_sym_AMP_AMP] = ACTIONS(1086), + [anon_sym_PIPE] = ACTIONS(1084), + [anon_sym_CARET] = ACTIONS(1084), + [anon_sym_EQ_EQ] = ACTIONS(1074), + [anon_sym_BANG_EQ] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(1076), + [anon_sym_GT] = ACTIONS(1076), + [anon_sym_LT_EQ] = ACTIONS(1078), + [anon_sym_GT_EQ] = ACTIONS(1078), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_GT_GT] = ACTIONS(1080), + [anon_sym_PLUS] = ACTIONS(1082), + [anon_sym_DASH] = ACTIONS(1082), + [anon_sym_SLASH] = ACTIONS(1054), + [anon_sym_PERCENT] = ACTIONS(1054), + [anon_sym_DASH_DASH] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(216), + [anon_sym_DOT] = ACTIONS(218), + [anon_sym_DASH_GT] = ACTIONS(218), + [sym_comment] = ACTIONS(59), }, [617] = { - [sym__expression] = STATE(838), - [sym_conditional_expression] = STATE(838), - [sym_assignment_expression] = STATE(838), - [sym_pointer_expression] = STATE(838), - [sym_logical_expression] = STATE(838), - [sym_bitwise_expression] = STATE(838), - [sym_equality_expression] = STATE(838), - [sym_relational_expression] = STATE(838), - [sym_shift_expression] = STATE(838), - [sym_math_expression] = STATE(838), - [sym_cast_expression] = STATE(838), - [sym_sizeof_expression] = STATE(838), - [sym_subscript_expression] = STATE(838), - [sym_call_expression] = STATE(838), - [sym_field_expression] = STATE(838), - [sym_compound_literal_expression] = STATE(838), - [sym_parenthesized_expression] = STATE(838), - [sym_initializer_list] = STATE(839), - [sym_char_literal] = STATE(838), - [sym_concatenated_string] = STATE(838), - [sym_string_literal] = STATE(230), - [anon_sym_LBRACE] = ACTIONS(585), - [anon_sym_LPAREN2] = ACTIONS(507), - [anon_sym_STAR] = ACTIONS(509), - [anon_sym_AMP] = ACTIONS(509), - [anon_sym_BANG] = ACTIONS(533), - [anon_sym_TILDE] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DASH] = ACTIONS(537), - [anon_sym_DASH_DASH] = ACTIONS(539), - [anon_sym_PLUS_PLUS] = ACTIONS(539), - [anon_sym_sizeof] = ACTIONS(541), - [sym_number_literal] = ACTIONS(2206), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(2208), - [sym_false] = ACTIONS(2208), - [sym_null] = ACTIONS(2208), - [sym_identifier] = ACTIONS(2208), - [sym_comment] = ACTIONS(37), + [sym_argument_list] = STATE(98), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(1054), + [anon_sym_LBRACK] = ACTIONS(188), + [anon_sym_EQ] = ACTIONS(1092), + [anon_sym_COLON] = ACTIONS(1094), + [anon_sym_QMARK] = ACTIONS(1094), + [anon_sym_STAR_EQ] = ACTIONS(1094), + [anon_sym_SLASH_EQ] = ACTIONS(1094), + [anon_sym_PERCENT_EQ] = ACTIONS(1094), + [anon_sym_PLUS_EQ] = ACTIONS(1094), + [anon_sym_DASH_EQ] = ACTIONS(1094), + [anon_sym_LT_LT_EQ] = ACTIONS(1094), + [anon_sym_GT_GT_EQ] = ACTIONS(1094), + [anon_sym_AMP_EQ] = ACTIONS(1094), + [anon_sym_CARET_EQ] = ACTIONS(1094), + [anon_sym_PIPE_EQ] = ACTIONS(1094), + [anon_sym_AMP] = ACTIONS(1092), + [anon_sym_PIPE_PIPE] = ACTIONS(1094), + [anon_sym_AMP_AMP] = ACTIONS(1094), + [anon_sym_PIPE] = ACTIONS(1092), + [anon_sym_CARET] = ACTIONS(1092), + [anon_sym_EQ_EQ] = ACTIONS(1094), + [anon_sym_BANG_EQ] = ACTIONS(1094), + [anon_sym_LT] = ACTIONS(1076), + [anon_sym_GT] = ACTIONS(1076), + [anon_sym_LT_EQ] = ACTIONS(1078), + [anon_sym_GT_EQ] = ACTIONS(1078), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_GT_GT] = ACTIONS(1080), + [anon_sym_PLUS] = ACTIONS(1082), + [anon_sym_DASH] = ACTIONS(1082), + [anon_sym_SLASH] = ACTIONS(1054), + [anon_sym_PERCENT] = ACTIONS(1054), + [anon_sym_DASH_DASH] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(216), + [anon_sym_DOT] = ACTIONS(218), + [anon_sym_DASH_GT] = ACTIONS(218), + [sym_comment] = ACTIONS(59), }, [618] = { - [sym_string_literal] = STATE(840), - [aux_sym_concatenated_string_repeat1] = STATE(840), - [anon_sym_COMMA] = ACTIONS(1655), - [anon_sym_RPAREN] = ACTIONS(1655), - [anon_sym_LPAREN2] = ACTIONS(1655), - [anon_sym_STAR] = ACTIONS(1657), - [anon_sym_LBRACK] = ACTIONS(1655), - [anon_sym_EQ] = ACTIONS(1657), - [anon_sym_QMARK] = ACTIONS(1655), - [anon_sym_STAR_EQ] = ACTIONS(1655), - [anon_sym_SLASH_EQ] = ACTIONS(1655), - [anon_sym_PERCENT_EQ] = ACTIONS(1655), - [anon_sym_PLUS_EQ] = ACTIONS(1655), - [anon_sym_DASH_EQ] = ACTIONS(1655), - [anon_sym_LT_LT_EQ] = ACTIONS(1655), - [anon_sym_GT_GT_EQ] = ACTIONS(1655), - [anon_sym_AMP_EQ] = ACTIONS(1655), - [anon_sym_CARET_EQ] = ACTIONS(1655), - [anon_sym_PIPE_EQ] = ACTIONS(1655), - [anon_sym_AMP] = ACTIONS(1657), - [anon_sym_PIPE_PIPE] = ACTIONS(1655), - [anon_sym_AMP_AMP] = ACTIONS(1655), - [anon_sym_PIPE] = ACTIONS(1657), - [anon_sym_CARET] = ACTIONS(1657), - [anon_sym_EQ_EQ] = ACTIONS(1655), - [anon_sym_BANG_EQ] = ACTIONS(1655), - [anon_sym_LT] = ACTIONS(1657), - [anon_sym_GT] = ACTIONS(1657), - [anon_sym_LT_EQ] = ACTIONS(1655), - [anon_sym_GT_EQ] = ACTIONS(1655), - [anon_sym_LT_LT] = ACTIONS(1657), - [anon_sym_GT_GT] = ACTIONS(1657), - [anon_sym_PLUS] = ACTIONS(1657), - [anon_sym_DASH] = ACTIONS(1657), - [anon_sym_SLASH] = ACTIONS(1657), - [anon_sym_PERCENT] = ACTIONS(1657), - [anon_sym_DASH_DASH] = ACTIONS(1655), - [anon_sym_PLUS_PLUS] = ACTIONS(1655), - [anon_sym_DOT] = ACTIONS(1655), - [anon_sym_DASH_GT] = ACTIONS(1655), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_comment] = ACTIONS(37), + [sym_argument_list] = STATE(98), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(1054), + [anon_sym_LBRACK] = ACTIONS(188), + [anon_sym_EQ] = ACTIONS(1096), + [anon_sym_COLON] = ACTIONS(1098), + [anon_sym_QMARK] = ACTIONS(1098), + [anon_sym_STAR_EQ] = ACTIONS(1098), + [anon_sym_SLASH_EQ] = ACTIONS(1098), + [anon_sym_PERCENT_EQ] = ACTIONS(1098), + [anon_sym_PLUS_EQ] = ACTIONS(1098), + [anon_sym_DASH_EQ] = ACTIONS(1098), + [anon_sym_LT_LT_EQ] = ACTIONS(1098), + [anon_sym_GT_GT_EQ] = ACTIONS(1098), + [anon_sym_AMP_EQ] = ACTIONS(1098), + [anon_sym_CARET_EQ] = ACTIONS(1098), + [anon_sym_PIPE_EQ] = ACTIONS(1098), + [anon_sym_AMP] = ACTIONS(1096), + [anon_sym_PIPE_PIPE] = ACTIONS(1098), + [anon_sym_AMP_AMP] = ACTIONS(1098), + [anon_sym_PIPE] = ACTIONS(1096), + [anon_sym_CARET] = ACTIONS(1096), + [anon_sym_EQ_EQ] = ACTIONS(1098), + [anon_sym_BANG_EQ] = ACTIONS(1098), + [anon_sym_LT] = ACTIONS(1096), + [anon_sym_GT] = ACTIONS(1096), + [anon_sym_LT_EQ] = ACTIONS(1098), + [anon_sym_GT_EQ] = ACTIONS(1098), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_GT_GT] = ACTIONS(1080), + [anon_sym_PLUS] = ACTIONS(1082), + [anon_sym_DASH] = ACTIONS(1082), + [anon_sym_SLASH] = ACTIONS(1054), + [anon_sym_PERCENT] = ACTIONS(1054), + [anon_sym_DASH_DASH] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(216), + [anon_sym_DOT] = ACTIONS(218), + [anon_sym_DASH_GT] = ACTIONS(218), + [sym_comment] = ACTIONS(59), }, [619] = { - [sym_argument_list] = STATE(430), - [anon_sym_COMMA] = ACTIONS(1433), - [anon_sym_RPAREN] = ACTIONS(2210), - [anon_sym_LPAREN2] = ACTIONS(1012), - [anon_sym_STAR] = ACTIONS(1437), - [anon_sym_LBRACK] = ACTIONS(1016), - [anon_sym_EQ] = ACTIONS(1439), - [anon_sym_QMARK] = ACTIONS(1441), - [anon_sym_STAR_EQ] = ACTIONS(1443), - [anon_sym_SLASH_EQ] = ACTIONS(1443), - [anon_sym_PERCENT_EQ] = ACTIONS(1443), - [anon_sym_PLUS_EQ] = ACTIONS(1443), - [anon_sym_DASH_EQ] = ACTIONS(1443), - [anon_sym_LT_LT_EQ] = ACTIONS(1443), - [anon_sym_GT_GT_EQ] = ACTIONS(1443), - [anon_sym_AMP_EQ] = ACTIONS(1443), - [anon_sym_CARET_EQ] = ACTIONS(1443), - [anon_sym_PIPE_EQ] = ACTIONS(1443), - [anon_sym_AMP] = ACTIONS(1445), - [anon_sym_PIPE_PIPE] = ACTIONS(1447), - [anon_sym_AMP_AMP] = ACTIONS(1449), - [anon_sym_PIPE] = ACTIONS(1451), - [anon_sym_CARET] = ACTIONS(1453), - [anon_sym_EQ_EQ] = ACTIONS(1455), - [anon_sym_BANG_EQ] = ACTIONS(1455), - [anon_sym_LT] = ACTIONS(1457), - [anon_sym_GT] = ACTIONS(1457), - [anon_sym_LT_EQ] = ACTIONS(1459), - [anon_sym_GT_EQ] = ACTIONS(1459), - [anon_sym_LT_LT] = ACTIONS(1461), - [anon_sym_GT_GT] = ACTIONS(1461), - [anon_sym_PLUS] = ACTIONS(1463), - [anon_sym_DASH] = ACTIONS(1463), - [anon_sym_SLASH] = ACTIONS(1437), - [anon_sym_PERCENT] = ACTIONS(1437), - [anon_sym_DASH_DASH] = ACTIONS(1044), - [anon_sym_PLUS_PLUS] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1046), - [anon_sym_DASH_GT] = ACTIONS(1046), - [sym_comment] = ACTIONS(37), + [sym_argument_list] = STATE(98), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(1054), + [anon_sym_LBRACK] = ACTIONS(188), + [anon_sym_EQ] = ACTIONS(1100), + [anon_sym_COLON] = ACTIONS(1102), + [anon_sym_QMARK] = ACTIONS(1102), + [anon_sym_STAR_EQ] = ACTIONS(1102), + [anon_sym_SLASH_EQ] = ACTIONS(1102), + [anon_sym_PERCENT_EQ] = ACTIONS(1102), + [anon_sym_PLUS_EQ] = ACTIONS(1102), + [anon_sym_DASH_EQ] = ACTIONS(1102), + [anon_sym_LT_LT_EQ] = ACTIONS(1102), + [anon_sym_GT_GT_EQ] = ACTIONS(1102), + [anon_sym_AMP_EQ] = ACTIONS(1102), + [anon_sym_CARET_EQ] = ACTIONS(1102), + [anon_sym_PIPE_EQ] = ACTIONS(1102), + [anon_sym_AMP] = ACTIONS(1100), + [anon_sym_PIPE_PIPE] = ACTIONS(1102), + [anon_sym_AMP_AMP] = ACTIONS(1102), + [anon_sym_PIPE] = ACTIONS(1100), + [anon_sym_CARET] = ACTIONS(1100), + [anon_sym_EQ_EQ] = ACTIONS(1102), + [anon_sym_BANG_EQ] = ACTIONS(1102), + [anon_sym_LT] = ACTIONS(1100), + [anon_sym_GT] = ACTIONS(1100), + [anon_sym_LT_EQ] = ACTIONS(1102), + [anon_sym_GT_EQ] = ACTIONS(1102), + [anon_sym_LT_LT] = ACTIONS(1100), + [anon_sym_GT_GT] = ACTIONS(1100), + [anon_sym_PLUS] = ACTIONS(1082), + [anon_sym_DASH] = ACTIONS(1082), + [anon_sym_SLASH] = ACTIONS(1054), + [anon_sym_PERCENT] = ACTIONS(1054), + [anon_sym_DASH_DASH] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(216), + [anon_sym_DOT] = ACTIONS(218), + [anon_sym_DASH_GT] = ACTIONS(218), + [sym_comment] = ACTIONS(59), }, [620] = { - [anon_sym_RPAREN] = ACTIONS(2210), - [sym_comment] = ACTIONS(37), + [sym_argument_list] = STATE(98), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(1054), + [anon_sym_LBRACK] = ACTIONS(188), + [anon_sym_EQ] = ACTIONS(1008), + [anon_sym_COLON] = ACTIONS(1006), + [anon_sym_QMARK] = ACTIONS(1006), + [anon_sym_STAR_EQ] = ACTIONS(1006), + [anon_sym_SLASH_EQ] = ACTIONS(1006), + [anon_sym_PERCENT_EQ] = ACTIONS(1006), + [anon_sym_PLUS_EQ] = ACTIONS(1006), + [anon_sym_DASH_EQ] = ACTIONS(1006), + [anon_sym_LT_LT_EQ] = ACTIONS(1006), + [anon_sym_GT_GT_EQ] = ACTIONS(1006), + [anon_sym_AMP_EQ] = ACTIONS(1006), + [anon_sym_CARET_EQ] = ACTIONS(1006), + [anon_sym_PIPE_EQ] = ACTIONS(1006), + [anon_sym_AMP] = ACTIONS(1008), + [anon_sym_PIPE_PIPE] = ACTIONS(1006), + [anon_sym_AMP_AMP] = ACTIONS(1006), + [anon_sym_PIPE] = ACTIONS(1008), + [anon_sym_CARET] = ACTIONS(1008), + [anon_sym_EQ_EQ] = ACTIONS(1006), + [anon_sym_BANG_EQ] = ACTIONS(1006), + [anon_sym_LT] = ACTIONS(1008), + [anon_sym_GT] = ACTIONS(1008), + [anon_sym_LT_EQ] = ACTIONS(1006), + [anon_sym_GT_EQ] = ACTIONS(1006), + [anon_sym_LT_LT] = ACTIONS(1008), + [anon_sym_GT_GT] = ACTIONS(1008), + [anon_sym_PLUS] = ACTIONS(1008), + [anon_sym_DASH] = ACTIONS(1008), + [anon_sym_SLASH] = ACTIONS(1054), + [anon_sym_PERCENT] = ACTIONS(1054), + [anon_sym_DASH_DASH] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(216), + [anon_sym_DOT] = ACTIONS(218), + [anon_sym_DASH_GT] = ACTIONS(218), + [sym_comment] = ACTIONS(59), }, [621] = { - [sym_parenthesized_expression] = STATE(842), - [anon_sym_LPAREN2] = ACTIONS(916), - [sym_comment] = ACTIONS(37), + [sym_string_literal] = STATE(621), + [aux_sym_concatenated_string_repeat1] = STATE(621), + [anon_sym_LPAREN2] = ACTIONS(1108), + [anon_sym_STAR] = ACTIONS(1110), + [anon_sym_LBRACK] = ACTIONS(1108), + [anon_sym_EQ] = ACTIONS(1110), + [anon_sym_COLON] = ACTIONS(1108), + [anon_sym_QMARK] = ACTIONS(1108), + [anon_sym_STAR_EQ] = ACTIONS(1108), + [anon_sym_SLASH_EQ] = ACTIONS(1108), + [anon_sym_PERCENT_EQ] = ACTIONS(1108), + [anon_sym_PLUS_EQ] = ACTIONS(1108), + [anon_sym_DASH_EQ] = ACTIONS(1108), + [anon_sym_LT_LT_EQ] = ACTIONS(1108), + [anon_sym_GT_GT_EQ] = ACTIONS(1108), + [anon_sym_AMP_EQ] = ACTIONS(1108), + [anon_sym_CARET_EQ] = ACTIONS(1108), + [anon_sym_PIPE_EQ] = ACTIONS(1108), + [anon_sym_AMP] = ACTIONS(1110), + [anon_sym_PIPE_PIPE] = ACTIONS(1108), + [anon_sym_AMP_AMP] = ACTIONS(1108), + [anon_sym_PIPE] = ACTIONS(1110), + [anon_sym_CARET] = ACTIONS(1110), + [anon_sym_EQ_EQ] = ACTIONS(1108), + [anon_sym_BANG_EQ] = ACTIONS(1108), + [anon_sym_LT] = ACTIONS(1110), + [anon_sym_GT] = ACTIONS(1110), + [anon_sym_LT_EQ] = ACTIONS(1108), + [anon_sym_GT_EQ] = ACTIONS(1108), + [anon_sym_LT_LT] = ACTIONS(1110), + [anon_sym_GT_GT] = ACTIONS(1110), + [anon_sym_PLUS] = ACTIONS(1110), + [anon_sym_DASH] = ACTIONS(1110), + [anon_sym_SLASH] = ACTIONS(1110), + [anon_sym_PERCENT] = ACTIONS(1110), + [anon_sym_DASH_DASH] = ACTIONS(1108), + [anon_sym_PLUS_PLUS] = ACTIONS(1108), + [anon_sym_DOT] = ACTIONS(1108), + [anon_sym_DASH_GT] = ACTIONS(1108), + [anon_sym_DQUOTE] = ACTIONS(1112), + [sym_comment] = ACTIONS(59), }, [622] = { - [sym_parenthesized_expression] = STATE(843), - [anon_sym_LPAREN2] = ACTIONS(916), - [sym_comment] = ACTIONS(37), + [anon_sym_COMMA] = ACTIONS(2237), + [anon_sym_RPAREN] = ACTIONS(2237), + [sym_comment] = ACTIONS(59), }, [623] = { - [sym__expression] = STATE(844), - [sym_conditional_expression] = STATE(844), - [sym_assignment_expression] = STATE(844), - [sym_pointer_expression] = STATE(844), - [sym_logical_expression] = STATE(844), - [sym_bitwise_expression] = STATE(844), - [sym_equality_expression] = STATE(844), - [sym_relational_expression] = STATE(844), - [sym_shift_expression] = STATE(844), - [sym_math_expression] = STATE(844), - [sym_cast_expression] = STATE(844), - [sym_sizeof_expression] = STATE(844), - [sym_subscript_expression] = STATE(844), - [sym_call_expression] = STATE(844), - [sym_field_expression] = STATE(844), - [sym_compound_literal_expression] = STATE(844), - [sym_parenthesized_expression] = STATE(844), - [sym_char_literal] = STATE(844), - [sym_concatenated_string] = STATE(844), - [sym_string_literal] = STATE(386), - [anon_sym_LPAREN2] = ACTIONS(918), - [anon_sym_STAR] = ACTIONS(920), - [anon_sym_AMP] = ACTIONS(920), - [anon_sym_BANG] = ACTIONS(922), - [anon_sym_TILDE] = ACTIONS(924), - [anon_sym_PLUS] = ACTIONS(926), - [anon_sym_DASH] = ACTIONS(926), - [anon_sym_DASH_DASH] = ACTIONS(928), - [anon_sym_PLUS_PLUS] = ACTIONS(928), - [anon_sym_sizeof] = ACTIONS(930), - [sym_number_literal] = ACTIONS(2212), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(2214), - [sym_false] = ACTIONS(2214), - [sym_null] = ACTIONS(2214), - [sym_identifier] = ACTIONS(2214), - [sym_comment] = ACTIONS(37), + [anon_sym_LF] = ACTIONS(2239), + [sym_preproc_arg] = ACTIONS(2239), + [sym_comment] = ACTIONS(69), }, [624] = { - [anon_sym_COLON] = ACTIONS(2216), - [sym_comment] = ACTIONS(37), + [aux_sym_preproc_params_repeat1] = STATE(624), + [anon_sym_COMMA] = ACTIONS(2241), + [anon_sym_RPAREN] = ACTIONS(2237), + [sym_comment] = ACTIONS(59), }, [625] = { - [sym_parenthesized_expression] = STATE(846), - [anon_sym_LPAREN2] = ACTIONS(916), - [sym_comment] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(903), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(905), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(905), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(905), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(905), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(905), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(905), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(905), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(905), + [sym_preproc_directive] = ACTIONS(905), + [anon_sym_typedef] = ACTIONS(905), + [anon_sym_extern] = ACTIONS(905), + [anon_sym_LBRACE] = ACTIONS(903), + [anon_sym_LPAREN2] = ACTIONS(903), + [anon_sym_STAR] = ACTIONS(903), + [anon_sym_static] = ACTIONS(905), + [anon_sym_auto] = ACTIONS(905), + [anon_sym_register] = ACTIONS(905), + [anon_sym_inline] = ACTIONS(905), + [anon_sym_const] = ACTIONS(905), + [anon_sym_restrict] = ACTIONS(905), + [anon_sym_volatile] = ACTIONS(905), + [anon_sym__Atomic] = ACTIONS(905), + [anon_sym_unsigned] = ACTIONS(905), + [anon_sym_long] = ACTIONS(905), + [anon_sym_short] = ACTIONS(905), + [sym_primitive_type] = ACTIONS(905), + [anon_sym_enum] = ACTIONS(905), + [anon_sym_struct] = ACTIONS(905), + [anon_sym_union] = ACTIONS(905), + [anon_sym_if] = ACTIONS(905), + [anon_sym_switch] = ACTIONS(905), + [anon_sym_case] = ACTIONS(905), + [anon_sym_default] = ACTIONS(905), + [anon_sym_while] = ACTIONS(905), + [anon_sym_do] = ACTIONS(905), + [anon_sym_for] = ACTIONS(905), + [anon_sym_return] = ACTIONS(905), + [anon_sym_break] = ACTIONS(905), + [anon_sym_continue] = ACTIONS(905), + [anon_sym_goto] = ACTIONS(905), + [anon_sym_AMP] = ACTIONS(903), + [anon_sym_BANG] = ACTIONS(903), + [anon_sym_TILDE] = ACTIONS(903), + [anon_sym_PLUS] = ACTIONS(905), + [anon_sym_DASH] = ACTIONS(905), + [anon_sym_DASH_DASH] = ACTIONS(903), + [anon_sym_PLUS_PLUS] = ACTIONS(903), + [anon_sym_sizeof] = ACTIONS(905), + [sym_number_literal] = ACTIONS(903), + [anon_sym_SQUOTE] = ACTIONS(903), + [anon_sym_DQUOTE] = ACTIONS(903), + [sym_true] = ACTIONS(905), + [sym_false] = ACTIONS(905), + [sym_null] = ACTIONS(905), + [sym_identifier] = ACTIONS(905), + [sym_comment] = ACTIONS(59), }, [626] = { - [anon_sym_LPAREN2] = ACTIONS(2218), - [sym_comment] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(1125), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1127), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1127), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1127), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1127), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1127), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1127), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1127), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1127), + [sym_preproc_directive] = ACTIONS(1127), + [anon_sym_typedef] = ACTIONS(1127), + [anon_sym_extern] = ACTIONS(1127), + [anon_sym_LBRACE] = ACTIONS(1125), + [anon_sym_LPAREN2] = ACTIONS(1125), + [anon_sym_STAR] = ACTIONS(1125), + [anon_sym_static] = ACTIONS(1127), + [anon_sym_auto] = ACTIONS(1127), + [anon_sym_register] = ACTIONS(1127), + [anon_sym_inline] = ACTIONS(1127), + [anon_sym_const] = ACTIONS(1127), + [anon_sym_restrict] = ACTIONS(1127), + [anon_sym_volatile] = ACTIONS(1127), + [anon_sym__Atomic] = ACTIONS(1127), + [anon_sym_unsigned] = ACTIONS(1127), + [anon_sym_long] = ACTIONS(1127), + [anon_sym_short] = ACTIONS(1127), + [sym_primitive_type] = ACTIONS(1127), + [anon_sym_enum] = ACTIONS(1127), + [anon_sym_struct] = ACTIONS(1127), + [anon_sym_union] = ACTIONS(1127), + [anon_sym_if] = ACTIONS(1127), + [anon_sym_switch] = ACTIONS(1127), + [anon_sym_case] = ACTIONS(1127), + [anon_sym_default] = ACTIONS(1127), + [anon_sym_while] = ACTIONS(1127), + [anon_sym_do] = ACTIONS(1127), + [anon_sym_for] = ACTIONS(1127), + [anon_sym_return] = ACTIONS(1127), + [anon_sym_break] = ACTIONS(1127), + [anon_sym_continue] = ACTIONS(1127), + [anon_sym_goto] = ACTIONS(1127), + [anon_sym_AMP] = ACTIONS(1125), + [anon_sym_BANG] = ACTIONS(1125), + [anon_sym_TILDE] = ACTIONS(1125), + [anon_sym_PLUS] = ACTIONS(1127), + [anon_sym_DASH] = ACTIONS(1127), + [anon_sym_DASH_DASH] = ACTIONS(1125), + [anon_sym_PLUS_PLUS] = ACTIONS(1125), + [anon_sym_sizeof] = ACTIONS(1127), + [sym_number_literal] = ACTIONS(1125), + [anon_sym_SQUOTE] = ACTIONS(1125), + [anon_sym_DQUOTE] = ACTIONS(1125), + [sym_true] = ACTIONS(1127), + [sym_false] = ACTIONS(1127), + [sym_null] = ACTIONS(1127), + [sym_identifier] = ACTIONS(1127), + [sym_comment] = ACTIONS(59), }, [627] = { - [anon_sym_COMMA] = ACTIONS(990), - [anon_sym_SEMI] = ACTIONS(990), - [anon_sym_LPAREN2] = ACTIONS(990), - [anon_sym_STAR] = ACTIONS(1002), - [anon_sym_LBRACK] = ACTIONS(990), - [anon_sym_EQ] = ACTIONS(1002), - [anon_sym_COLON] = ACTIONS(2220), - [anon_sym_QMARK] = ACTIONS(990), - [anon_sym_STAR_EQ] = ACTIONS(990), - [anon_sym_SLASH_EQ] = ACTIONS(990), - [anon_sym_PERCENT_EQ] = ACTIONS(990), - [anon_sym_PLUS_EQ] = ACTIONS(990), - [anon_sym_DASH_EQ] = ACTIONS(990), - [anon_sym_LT_LT_EQ] = ACTIONS(990), - [anon_sym_GT_GT_EQ] = ACTIONS(990), - [anon_sym_AMP_EQ] = ACTIONS(990), - [anon_sym_CARET_EQ] = ACTIONS(990), - [anon_sym_PIPE_EQ] = ACTIONS(990), - [anon_sym_AMP] = ACTIONS(1002), - [anon_sym_PIPE_PIPE] = ACTIONS(990), - [anon_sym_AMP_AMP] = ACTIONS(990), - [anon_sym_PIPE] = ACTIONS(1002), - [anon_sym_CARET] = ACTIONS(1002), - [anon_sym_EQ_EQ] = ACTIONS(990), - [anon_sym_BANG_EQ] = ACTIONS(990), - [anon_sym_LT] = ACTIONS(1002), - [anon_sym_GT] = ACTIONS(1002), - [anon_sym_LT_EQ] = ACTIONS(990), - [anon_sym_GT_EQ] = ACTIONS(990), - [anon_sym_LT_LT] = ACTIONS(1002), - [anon_sym_GT_GT] = ACTIONS(1002), - [anon_sym_PLUS] = ACTIONS(1002), - [anon_sym_DASH] = ACTIONS(1002), - [anon_sym_SLASH] = ACTIONS(1002), - [anon_sym_PERCENT] = ACTIONS(1002), - [anon_sym_DASH_DASH] = ACTIONS(990), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_DOT] = ACTIONS(990), - [anon_sym_DASH_GT] = ACTIONS(990), - [sym_comment] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(1129), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1131), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1131), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1131), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1131), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1131), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1131), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1131), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1131), + [sym_preproc_directive] = ACTIONS(1131), + [anon_sym_typedef] = ACTIONS(1131), + [anon_sym_extern] = ACTIONS(1131), + [anon_sym_LBRACE] = ACTIONS(1129), + [anon_sym_LPAREN2] = ACTIONS(1129), + [anon_sym_STAR] = ACTIONS(1129), + [anon_sym_static] = ACTIONS(1131), + [anon_sym_auto] = ACTIONS(1131), + [anon_sym_register] = ACTIONS(1131), + [anon_sym_inline] = ACTIONS(1131), + [anon_sym_const] = ACTIONS(1131), + [anon_sym_restrict] = ACTIONS(1131), + [anon_sym_volatile] = ACTIONS(1131), + [anon_sym__Atomic] = ACTIONS(1131), + [anon_sym_unsigned] = ACTIONS(1131), + [anon_sym_long] = ACTIONS(1131), + [anon_sym_short] = ACTIONS(1131), + [sym_primitive_type] = ACTIONS(1131), + [anon_sym_enum] = ACTIONS(1131), + [anon_sym_struct] = ACTIONS(1131), + [anon_sym_union] = ACTIONS(1131), + [anon_sym_if] = ACTIONS(1131), + [anon_sym_switch] = ACTIONS(1131), + [anon_sym_case] = ACTIONS(1131), + [anon_sym_default] = ACTIONS(1131), + [anon_sym_while] = ACTIONS(1131), + [anon_sym_do] = ACTIONS(1131), + [anon_sym_for] = ACTIONS(1131), + [anon_sym_return] = ACTIONS(1131), + [anon_sym_break] = ACTIONS(1131), + [anon_sym_continue] = ACTIONS(1131), + [anon_sym_goto] = ACTIONS(1131), + [anon_sym_AMP] = ACTIONS(1129), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_TILDE] = ACTIONS(1129), + [anon_sym_PLUS] = ACTIONS(1131), + [anon_sym_DASH] = ACTIONS(1131), + [anon_sym_DASH_DASH] = ACTIONS(1129), + [anon_sym_PLUS_PLUS] = ACTIONS(1129), + [anon_sym_sizeof] = ACTIONS(1131), + [sym_number_literal] = ACTIONS(1129), + [anon_sym_SQUOTE] = ACTIONS(1129), + [anon_sym_DQUOTE] = ACTIONS(1129), + [sym_true] = ACTIONS(1131), + [sym_false] = ACTIONS(1131), + [sym_null] = ACTIONS(1131), + [sym_identifier] = ACTIONS(1131), + [sym_comment] = ACTIONS(59), }, [628] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2222), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2222), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2222), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2222), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2222), - [sym_preproc_directive] = ACTIONS(2222), - [anon_sym_SEMI] = ACTIONS(2224), - [anon_sym_typedef] = ACTIONS(2222), - [anon_sym_extern] = ACTIONS(2222), - [anon_sym_LBRACE] = ACTIONS(2224), - [anon_sym_RBRACE] = ACTIONS(2224), - [anon_sym_LPAREN2] = ACTIONS(2224), - [anon_sym_STAR] = ACTIONS(2224), - [anon_sym_static] = ACTIONS(2222), - [anon_sym_auto] = ACTIONS(2222), - [anon_sym_register] = ACTIONS(2222), - [anon_sym_inline] = ACTIONS(2222), - [anon_sym_const] = ACTIONS(2222), - [anon_sym_restrict] = ACTIONS(2222), - [anon_sym_volatile] = ACTIONS(2222), - [anon_sym__Atomic] = ACTIONS(2222), - [anon_sym_unsigned] = ACTIONS(2222), - [anon_sym_long] = ACTIONS(2222), - [anon_sym_short] = ACTIONS(2222), - [sym_primitive_type] = ACTIONS(2222), - [anon_sym_enum] = ACTIONS(2222), - [anon_sym_struct] = ACTIONS(2222), - [anon_sym_union] = ACTIONS(2222), - [anon_sym_if] = ACTIONS(2222), - [anon_sym_else] = ACTIONS(2226), - [anon_sym_switch] = ACTIONS(2222), - [anon_sym_case] = ACTIONS(2222), - [anon_sym_default] = ACTIONS(2222), - [anon_sym_while] = ACTIONS(2222), - [anon_sym_do] = ACTIONS(2222), - [anon_sym_for] = ACTIONS(2222), - [anon_sym_return] = ACTIONS(2222), - [anon_sym_break] = ACTIONS(2222), - [anon_sym_continue] = ACTIONS(2222), - [anon_sym_goto] = ACTIONS(2222), - [anon_sym_AMP] = ACTIONS(2224), - [anon_sym_BANG] = ACTIONS(2224), - [anon_sym_TILDE] = ACTIONS(2224), - [anon_sym_PLUS] = ACTIONS(2222), - [anon_sym_DASH] = ACTIONS(2222), - [anon_sym_DASH_DASH] = ACTIONS(2224), - [anon_sym_PLUS_PLUS] = ACTIONS(2224), - [anon_sym_sizeof] = ACTIONS(2222), - [sym_number_literal] = ACTIONS(2224), - [anon_sym_SQUOTE] = ACTIONS(2224), - [anon_sym_DQUOTE] = ACTIONS(2224), - [sym_true] = ACTIONS(2222), - [sym_false] = ACTIONS(2222), - [sym_null] = ACTIONS(2222), - [sym_identifier] = ACTIONS(2222), - [sym_comment] = ACTIONS(37), + [anon_sym_LF] = ACTIONS(2244), + [sym_comment] = ACTIONS(69), }, [629] = { - [anon_sym_COMMA] = ACTIONS(990), - [anon_sym_SEMI] = ACTIONS(990), - [anon_sym_LPAREN2] = ACTIONS(990), - [anon_sym_STAR] = ACTIONS(1002), - [anon_sym_LBRACK] = ACTIONS(990), - [anon_sym_EQ] = ACTIONS(1002), - [anon_sym_COLON] = ACTIONS(1004), - [anon_sym_QMARK] = ACTIONS(990), - [anon_sym_STAR_EQ] = ACTIONS(990), - [anon_sym_SLASH_EQ] = ACTIONS(990), - [anon_sym_PERCENT_EQ] = ACTIONS(990), - [anon_sym_PLUS_EQ] = ACTIONS(990), - [anon_sym_DASH_EQ] = ACTIONS(990), - [anon_sym_LT_LT_EQ] = ACTIONS(990), - [anon_sym_GT_GT_EQ] = ACTIONS(990), - [anon_sym_AMP_EQ] = ACTIONS(990), - [anon_sym_CARET_EQ] = ACTIONS(990), - [anon_sym_PIPE_EQ] = ACTIONS(990), - [anon_sym_AMP] = ACTIONS(1002), - [anon_sym_PIPE_PIPE] = ACTIONS(990), - [anon_sym_AMP_AMP] = ACTIONS(990), - [anon_sym_PIPE] = ACTIONS(1002), - [anon_sym_CARET] = ACTIONS(1002), - [anon_sym_EQ_EQ] = ACTIONS(990), - [anon_sym_BANG_EQ] = ACTIONS(990), - [anon_sym_LT] = ACTIONS(1002), - [anon_sym_GT] = ACTIONS(1002), - [anon_sym_LT_EQ] = ACTIONS(990), - [anon_sym_GT_EQ] = ACTIONS(990), - [anon_sym_LT_LT] = ACTIONS(1002), - [anon_sym_GT_GT] = ACTIONS(1002), - [anon_sym_PLUS] = ACTIONS(1002), - [anon_sym_DASH] = ACTIONS(1002), - [anon_sym_SLASH] = ACTIONS(1002), - [anon_sym_PERCENT] = ACTIONS(1002), - [anon_sym_DASH_DASH] = ACTIONS(990), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_DOT] = ACTIONS(990), - [anon_sym_DASH_GT] = ACTIONS(990), - [sym_comment] = ACTIONS(37), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1181), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1181), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1181), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1181), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1181), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1181), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1181), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1181), + [sym_preproc_directive] = ACTIONS(1181), + [anon_sym_typedef] = ACTIONS(1181), + [anon_sym_extern] = ACTIONS(1181), + [anon_sym_LPAREN2] = ACTIONS(1179), + [anon_sym_STAR] = ACTIONS(1179), + [anon_sym_static] = ACTIONS(1181), + [anon_sym_auto] = ACTIONS(1181), + [anon_sym_register] = ACTIONS(1181), + [anon_sym_inline] = ACTIONS(1181), + [anon_sym_const] = ACTIONS(1181), + [anon_sym_restrict] = ACTIONS(1181), + [anon_sym_volatile] = ACTIONS(1181), + [anon_sym__Atomic] = ACTIONS(1181), + [anon_sym_unsigned] = ACTIONS(1181), + [anon_sym_long] = ACTIONS(1181), + [anon_sym_short] = ACTIONS(1181), + [sym_primitive_type] = ACTIONS(1181), + [anon_sym_enum] = ACTIONS(1181), + [anon_sym_struct] = ACTIONS(1181), + [anon_sym_union] = ACTIONS(1181), + [anon_sym_AMP] = ACTIONS(1179), + [anon_sym_BANG] = ACTIONS(1179), + [anon_sym_TILDE] = ACTIONS(1179), + [anon_sym_PLUS] = ACTIONS(1181), + [anon_sym_DASH] = ACTIONS(1181), + [anon_sym_DASH_DASH] = ACTIONS(1179), + [anon_sym_PLUS_PLUS] = ACTIONS(1179), + [anon_sym_sizeof] = ACTIONS(1181), + [sym_number_literal] = ACTIONS(1179), + [anon_sym_SQUOTE] = ACTIONS(1179), + [anon_sym_DQUOTE] = ACTIONS(1179), + [sym_true] = ACTIONS(1181), + [sym_false] = ACTIONS(1181), + [sym_null] = ACTIONS(1181), + [sym_identifier] = ACTIONS(1181), + [sym_comment] = ACTIONS(59), }, [630] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2228), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2228), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2228), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2228), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2228), - [sym_preproc_directive] = ACTIONS(2228), - [anon_sym_SEMI] = ACTIONS(2230), - [anon_sym_typedef] = ACTIONS(2228), - [anon_sym_extern] = ACTIONS(2228), - [anon_sym_LBRACE] = ACTIONS(2230), - [anon_sym_RBRACE] = ACTIONS(2230), - [anon_sym_LPAREN2] = ACTIONS(2230), - [anon_sym_STAR] = ACTIONS(2230), - [anon_sym_static] = ACTIONS(2228), - [anon_sym_auto] = ACTIONS(2228), - [anon_sym_register] = ACTIONS(2228), - [anon_sym_inline] = ACTIONS(2228), - [anon_sym_const] = ACTIONS(2228), - [anon_sym_restrict] = ACTIONS(2228), - [anon_sym_volatile] = ACTIONS(2228), - [anon_sym__Atomic] = ACTIONS(2228), - [anon_sym_unsigned] = ACTIONS(2228), - [anon_sym_long] = ACTIONS(2228), - [anon_sym_short] = ACTIONS(2228), - [sym_primitive_type] = ACTIONS(2228), - [anon_sym_enum] = ACTIONS(2228), - [anon_sym_struct] = ACTIONS(2228), - [anon_sym_union] = ACTIONS(2228), - [anon_sym_if] = ACTIONS(2228), - [anon_sym_else] = ACTIONS(2228), - [anon_sym_switch] = ACTIONS(2228), - [anon_sym_case] = ACTIONS(2228), - [anon_sym_default] = ACTIONS(2228), - [anon_sym_while] = ACTIONS(2228), - [anon_sym_do] = ACTIONS(2228), - [anon_sym_for] = ACTIONS(2228), - [anon_sym_return] = ACTIONS(2228), - [anon_sym_break] = ACTIONS(2228), - [anon_sym_continue] = ACTIONS(2228), - [anon_sym_goto] = ACTIONS(2228), - [anon_sym_AMP] = ACTIONS(2230), - [anon_sym_BANG] = ACTIONS(2230), - [anon_sym_TILDE] = ACTIONS(2230), - [anon_sym_PLUS] = ACTIONS(2228), - [anon_sym_DASH] = ACTIONS(2228), - [anon_sym_DASH_DASH] = ACTIONS(2230), - [anon_sym_PLUS_PLUS] = ACTIONS(2230), - [anon_sym_sizeof] = ACTIONS(2228), - [sym_number_literal] = ACTIONS(2230), - [anon_sym_SQUOTE] = ACTIONS(2230), - [anon_sym_DQUOTE] = ACTIONS(2230), - [sym_true] = ACTIONS(2228), - [sym_false] = ACTIONS(2228), - [sym_null] = ACTIONS(2228), - [sym_identifier] = ACTIONS(2228), - [sym_comment] = ACTIONS(37), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2246), + [sym_comment] = ACTIONS(59), }, [631] = { - [anon_sym_RPAREN] = ACTIONS(2232), - [sym_comment] = ACTIONS(37), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1212), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1212), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1212), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1212), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1212), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1212), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1212), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1212), + [sym_preproc_directive] = ACTIONS(1212), + [anon_sym_typedef] = ACTIONS(1212), + [anon_sym_extern] = ACTIONS(1212), + [anon_sym_LPAREN2] = ACTIONS(1210), + [anon_sym_STAR] = ACTIONS(1210), + [anon_sym_static] = ACTIONS(1212), + [anon_sym_auto] = ACTIONS(1212), + [anon_sym_register] = ACTIONS(1212), + [anon_sym_inline] = ACTIONS(1212), + [anon_sym_const] = ACTIONS(1212), + [anon_sym_restrict] = ACTIONS(1212), + [anon_sym_volatile] = ACTIONS(1212), + [anon_sym__Atomic] = ACTIONS(1212), + [anon_sym_unsigned] = ACTIONS(1212), + [anon_sym_long] = ACTIONS(1212), + [anon_sym_short] = ACTIONS(1212), + [sym_primitive_type] = ACTIONS(1212), + [anon_sym_enum] = ACTIONS(1212), + [anon_sym_struct] = ACTIONS(1212), + [anon_sym_union] = ACTIONS(1212), + [anon_sym_AMP] = ACTIONS(1210), + [anon_sym_BANG] = ACTIONS(1210), + [anon_sym_TILDE] = ACTIONS(1210), + [anon_sym_PLUS] = ACTIONS(1212), + [anon_sym_DASH] = ACTIONS(1212), + [anon_sym_DASH_DASH] = ACTIONS(1210), + [anon_sym_PLUS_PLUS] = ACTIONS(1210), + [anon_sym_sizeof] = ACTIONS(1212), + [sym_number_literal] = ACTIONS(1210), + [anon_sym_SQUOTE] = ACTIONS(1210), + [anon_sym_DQUOTE] = ACTIONS(1210), + [sym_true] = ACTIONS(1212), + [sym_false] = ACTIONS(1212), + [sym_null] = ACTIONS(1212), + [sym_identifier] = ACTIONS(1212), + [sym_comment] = ACTIONS(59), }, [632] = { - [sym_type_qualifier] = STATE(106), - [sym__type_specifier] = STATE(104), - [sym_sized_type_specifier] = STATE(104), - [sym_enum_specifier] = STATE(104), - [sym_struct_specifier] = STATE(104), - [sym_union_specifier] = STATE(104), - [sym__expression] = STATE(371), - [sym_comma_expression] = STATE(372), - [sym_conditional_expression] = STATE(371), - [sym_assignment_expression] = STATE(371), - [sym_pointer_expression] = STATE(371), - [sym_logical_expression] = STATE(371), - [sym_bitwise_expression] = STATE(371), - [sym_equality_expression] = STATE(371), - [sym_relational_expression] = STATE(371), - [sym_shift_expression] = STATE(371), - [sym_math_expression] = STATE(371), - [sym_cast_expression] = STATE(371), - [sym_type_descriptor] = STATE(851), - [sym_sizeof_expression] = STATE(371), - [sym_subscript_expression] = STATE(371), - [sym_call_expression] = STATE(371), - [sym_field_expression] = STATE(371), - [sym_compound_literal_expression] = STATE(371), - [sym_parenthesized_expression] = STATE(371), - [sym_char_literal] = STATE(371), - [sym_concatenated_string] = STATE(371), - [sym_string_literal] = STATE(374), - [sym_macro_type_specifier] = STATE(104), - [aux_sym_type_definition_repeat1] = STATE(106), - [aux_sym_sized_type_specifier_repeat1] = STATE(107), - [anon_sym_LPAREN2] = ACTIONS(892), - [anon_sym_STAR] = ACTIONS(894), - [anon_sym_const] = ACTIONS(23), - [anon_sym_restrict] = ACTIONS(23), - [anon_sym_volatile] = ACTIONS(23), - [anon_sym__Atomic] = ACTIONS(23), - [anon_sym_unsigned] = ACTIONS(211), - [anon_sym_long] = ACTIONS(211), - [anon_sym_short] = ACTIONS(211), - [sym_primitive_type] = ACTIONS(213), - [anon_sym_enum] = ACTIONS(29), - [anon_sym_struct] = ACTIONS(31), - [anon_sym_union] = ACTIONS(33), - [anon_sym_AMP] = ACTIONS(894), - [anon_sym_BANG] = ACTIONS(896), - [anon_sym_TILDE] = ACTIONS(898), - [anon_sym_PLUS] = ACTIONS(900), - [anon_sym_DASH] = ACTIONS(900), - [anon_sym_DASH_DASH] = ACTIONS(902), - [anon_sym_PLUS_PLUS] = ACTIONS(902), - [anon_sym_sizeof] = ACTIONS(904), - [sym_number_literal] = ACTIONS(906), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(908), - [sym_false] = ACTIONS(908), - [sym_null] = ACTIONS(908), - [sym_identifier] = ACTIONS(910), - [sym_comment] = ACTIONS(37), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2248), + [sym_comment] = ACTIONS(59), }, [633] = { - [sym_argument_list] = STATE(430), - [anon_sym_LPAREN2] = ACTIONS(1012), - [anon_sym_STAR] = ACTIONS(1497), - [anon_sym_LBRACK] = ACTIONS(1016), - [anon_sym_EQ] = ACTIONS(1579), - [anon_sym_COLON] = ACTIONS(1577), - [anon_sym_QMARK] = ACTIONS(1577), - [anon_sym_STAR_EQ] = ACTIONS(1577), - [anon_sym_SLASH_EQ] = ACTIONS(1577), - [anon_sym_PERCENT_EQ] = ACTIONS(1577), - [anon_sym_PLUS_EQ] = ACTIONS(1577), - [anon_sym_DASH_EQ] = ACTIONS(1577), - [anon_sym_LT_LT_EQ] = ACTIONS(1577), - [anon_sym_GT_GT_EQ] = ACTIONS(1577), - [anon_sym_AMP_EQ] = ACTIONS(1577), - [anon_sym_CARET_EQ] = ACTIONS(1577), - [anon_sym_PIPE_EQ] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(1579), - [anon_sym_PIPE_PIPE] = ACTIONS(1577), - [anon_sym_AMP_AMP] = ACTIONS(1577), - [anon_sym_PIPE] = ACTIONS(1579), - [anon_sym_CARET] = ACTIONS(1579), - [anon_sym_EQ_EQ] = ACTIONS(1577), - [anon_sym_BANG_EQ] = ACTIONS(1577), - [anon_sym_LT] = ACTIONS(1579), - [anon_sym_GT] = ACTIONS(1579), - [anon_sym_LT_EQ] = ACTIONS(1577), - [anon_sym_GT_EQ] = ACTIONS(1577), - [anon_sym_LT_LT] = ACTIONS(1523), - [anon_sym_GT_GT] = ACTIONS(1523), - [anon_sym_PLUS] = ACTIONS(1525), - [anon_sym_DASH] = ACTIONS(1525), - [anon_sym_SLASH] = ACTIONS(1497), - [anon_sym_PERCENT] = ACTIONS(1497), - [anon_sym_DASH_DASH] = ACTIONS(1044), - [anon_sym_PLUS_PLUS] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1046), - [anon_sym_DASH_GT] = ACTIONS(1046), - [sym_comment] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(417), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(419), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(419), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(419), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(419), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(419), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(419), + [sym_preproc_directive] = ACTIONS(419), + [anon_sym_typedef] = ACTIONS(419), + [anon_sym_extern] = ACTIONS(419), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_LPAREN2] = ACTIONS(417), + [anon_sym_STAR] = ACTIONS(417), + [anon_sym_static] = ACTIONS(419), + [anon_sym_auto] = ACTIONS(419), + [anon_sym_register] = ACTIONS(419), + [anon_sym_inline] = ACTIONS(419), + [anon_sym_const] = ACTIONS(419), + [anon_sym_restrict] = ACTIONS(419), + [anon_sym_volatile] = ACTIONS(419), + [anon_sym__Atomic] = ACTIONS(419), + [anon_sym_unsigned] = ACTIONS(419), + [anon_sym_long] = ACTIONS(419), + [anon_sym_short] = ACTIONS(419), + [sym_primitive_type] = ACTIONS(419), + [anon_sym_enum] = ACTIONS(419), + [anon_sym_struct] = ACTIONS(419), + [anon_sym_union] = ACTIONS(419), + [anon_sym_if] = ACTIONS(419), + [anon_sym_switch] = ACTIONS(419), + [anon_sym_case] = ACTIONS(419), + [anon_sym_default] = ACTIONS(419), + [anon_sym_while] = ACTIONS(419), + [anon_sym_do] = ACTIONS(419), + [anon_sym_for] = ACTIONS(419), + [anon_sym_return] = ACTIONS(419), + [anon_sym_break] = ACTIONS(419), + [anon_sym_continue] = ACTIONS(419), + [anon_sym_goto] = ACTIONS(419), + [anon_sym_AMP] = ACTIONS(417), + [anon_sym_BANG] = ACTIONS(417), + [anon_sym_TILDE] = ACTIONS(417), + [anon_sym_PLUS] = ACTIONS(419), + [anon_sym_DASH] = ACTIONS(419), + [anon_sym_DASH_DASH] = ACTIONS(417), + [anon_sym_PLUS_PLUS] = ACTIONS(417), + [anon_sym_sizeof] = ACTIONS(419), + [sym_number_literal] = ACTIONS(417), + [anon_sym_SQUOTE] = ACTIONS(417), + [anon_sym_DQUOTE] = ACTIONS(417), + [sym_true] = ACTIONS(419), + [sym_false] = ACTIONS(419), + [sym_null] = ACTIONS(419), + [sym_identifier] = ACTIONS(419), + [sym_comment] = ACTIONS(59), }, [634] = { - [sym__expression] = STATE(673), - [sym_conditional_expression] = STATE(673), - [sym_assignment_expression] = STATE(673), - [sym_pointer_expression] = STATE(673), - [sym_logical_expression] = STATE(673), - [sym_bitwise_expression] = STATE(673), - [sym_equality_expression] = STATE(673), - [sym_relational_expression] = STATE(673), - [sym_shift_expression] = STATE(673), - [sym_math_expression] = STATE(673), - [sym_cast_expression] = STATE(673), - [sym_sizeof_expression] = STATE(673), - [sym_subscript_expression] = STATE(673), - [sym_call_expression] = STATE(673), - [sym_field_expression] = STATE(673), - [sym_compound_literal_expression] = STATE(673), - [sym_parenthesized_expression] = STATE(673), - [sym_char_literal] = STATE(673), - [sym_concatenated_string] = STATE(673), - [sym_string_literal] = STATE(386), - [anon_sym_LPAREN2] = ACTIONS(918), - [anon_sym_STAR] = ACTIONS(920), - [anon_sym_AMP] = ACTIONS(920), - [anon_sym_BANG] = ACTIONS(922), - [anon_sym_TILDE] = ACTIONS(924), - [anon_sym_PLUS] = ACTIONS(926), - [anon_sym_DASH] = ACTIONS(926), - [anon_sym_DASH_DASH] = ACTIONS(928), - [anon_sym_PLUS_PLUS] = ACTIONS(928), - [anon_sym_sizeof] = ACTIONS(930), - [sym_number_literal] = ACTIONS(1597), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(1599), - [sym_false] = ACTIONS(1599), - [sym_null] = ACTIONS(1599), - [sym_identifier] = ACTIONS(1599), - [sym_comment] = ACTIONS(37), + [aux_sym_string_literal_repeat1] = STATE(188), + [anon_sym_DQUOTE] = ACTIONS(2250), + [aux_sym_SLASH_LBRACK_CARET_BSLASH_BSLASH_DQUOTE_BSLASHn_RBRACK_SLASH] = ACTIONS(423), + [sym_escape_sequence] = ACTIONS(423), + [sym_comment] = ACTIONS(69), }, [635] = { - [sym__expression] = STATE(852), - [sym_conditional_expression] = STATE(852), - [sym_assignment_expression] = STATE(852), - [sym_pointer_expression] = STATE(852), - [sym_logical_expression] = STATE(852), - [sym_bitwise_expression] = STATE(852), - [sym_equality_expression] = STATE(852), - [sym_relational_expression] = STATE(852), - [sym_shift_expression] = STATE(852), - [sym_math_expression] = STATE(852), - [sym_cast_expression] = STATE(852), - [sym_sizeof_expression] = STATE(852), - [sym_subscript_expression] = STATE(852), - [sym_call_expression] = STATE(852), - [sym_field_expression] = STATE(852), - [sym_compound_literal_expression] = STATE(852), - [sym_parenthesized_expression] = STATE(852), - [sym_char_literal] = STATE(852), - [sym_concatenated_string] = STATE(852), - [sym_string_literal] = STATE(386), - [anon_sym_LPAREN2] = ACTIONS(918), - [anon_sym_STAR] = ACTIONS(920), - [anon_sym_AMP] = ACTIONS(920), - [anon_sym_BANG] = ACTIONS(922), - [anon_sym_TILDE] = ACTIONS(924), - [anon_sym_PLUS] = ACTIONS(926), - [anon_sym_DASH] = ACTIONS(926), - [anon_sym_DASH_DASH] = ACTIONS(928), - [anon_sym_PLUS_PLUS] = ACTIONS(928), - [anon_sym_sizeof] = ACTIONS(930), - [sym_number_literal] = ACTIONS(2234), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(2236), - [sym_false] = ACTIONS(2236), - [sym_null] = ACTIONS(2236), - [sym_identifier] = ACTIONS(2236), - [sym_comment] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(654), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(656), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(656), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(656), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(656), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(656), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(656), + [sym_preproc_directive] = ACTIONS(656), + [anon_sym_typedef] = ACTIONS(656), + [anon_sym_extern] = ACTIONS(656), + [anon_sym_LBRACE] = ACTIONS(654), + [anon_sym_LPAREN2] = ACTIONS(654), + [anon_sym_STAR] = ACTIONS(654), + [anon_sym_static] = ACTIONS(656), + [anon_sym_auto] = ACTIONS(656), + [anon_sym_register] = ACTIONS(656), + [anon_sym_inline] = ACTIONS(656), + [anon_sym_const] = ACTIONS(656), + [anon_sym_restrict] = ACTIONS(656), + [anon_sym_volatile] = ACTIONS(656), + [anon_sym__Atomic] = ACTIONS(656), + [anon_sym_unsigned] = ACTIONS(656), + [anon_sym_long] = ACTIONS(656), + [anon_sym_short] = ACTIONS(656), + [sym_primitive_type] = ACTIONS(656), + [anon_sym_enum] = ACTIONS(656), + [anon_sym_struct] = ACTIONS(656), + [anon_sym_union] = ACTIONS(656), + [anon_sym_if] = ACTIONS(656), + [anon_sym_switch] = ACTIONS(656), + [anon_sym_case] = ACTIONS(656), + [anon_sym_default] = ACTIONS(656), + [anon_sym_while] = ACTIONS(656), + [anon_sym_do] = ACTIONS(656), + [anon_sym_for] = ACTIONS(656), + [anon_sym_return] = ACTIONS(656), + [anon_sym_break] = ACTIONS(656), + [anon_sym_continue] = ACTIONS(656), + [anon_sym_goto] = ACTIONS(656), + [anon_sym_AMP] = ACTIONS(654), + [anon_sym_BANG] = ACTIONS(654), + [anon_sym_TILDE] = ACTIONS(654), + [anon_sym_PLUS] = ACTIONS(656), + [anon_sym_DASH] = ACTIONS(656), + [anon_sym_DASH_DASH] = ACTIONS(654), + [anon_sym_PLUS_PLUS] = ACTIONS(654), + [anon_sym_sizeof] = ACTIONS(656), + [sym_number_literal] = ACTIONS(654), + [anon_sym_SQUOTE] = ACTIONS(654), + [anon_sym_DQUOTE] = ACTIONS(654), + [sym_true] = ACTIONS(656), + [sym_false] = ACTIONS(656), + [sym_null] = ACTIONS(656), + [sym_identifier] = ACTIONS(656), + [sym_comment] = ACTIONS(59), }, [636] = { - [sym_declaration] = STATE(853), - [sym_type_definition] = STATE(853), - [sym__declaration_specifiers] = STATE(650), - [sym_compound_statement] = STATE(853), - [sym_storage_class_specifier] = STATE(87), - [sym_type_qualifier] = STATE(87), - [sym__type_specifier] = STATE(86), - [sym_sized_type_specifier] = STATE(86), - [sym_enum_specifier] = STATE(86), - [sym_struct_specifier] = STATE(86), - [sym_union_specifier] = STATE(86), - [sym_labeled_statement] = STATE(853), - [sym_expression_statement] = STATE(853), - [sym_if_statement] = STATE(853), - [sym_switch_statement] = STATE(853), - [sym_case_statement] = STATE(853), - [sym_while_statement] = STATE(853), - [sym_do_statement] = STATE(853), - [sym_for_statement] = STATE(853), - [sym_return_statement] = STATE(853), - [sym_break_statement] = STATE(853), - [sym_continue_statement] = STATE(853), - [sym_goto_statement] = STATE(853), - [sym__expression] = STATE(228), - [sym_comma_expression] = STATE(229), - [sym_conditional_expression] = STATE(228), - [sym_assignment_expression] = STATE(228), - [sym_pointer_expression] = STATE(228), - [sym_logical_expression] = STATE(228), - [sym_bitwise_expression] = STATE(228), - [sym_equality_expression] = STATE(228), - [sym_relational_expression] = STATE(228), - [sym_shift_expression] = STATE(228), - [sym_math_expression] = STATE(228), - [sym_cast_expression] = STATE(228), - [sym_sizeof_expression] = STATE(228), - [sym_subscript_expression] = STATE(228), - [sym_call_expression] = STATE(228), - [sym_field_expression] = STATE(228), - [sym_compound_literal_expression] = STATE(228), - [sym_parenthesized_expression] = STATE(228), - [sym_char_literal] = STATE(228), - [sym_concatenated_string] = STATE(228), - [sym_string_literal] = STATE(230), - [sym_macro_type_specifier] = STATE(86), - [aux_sym__declaration_specifiers_repeat1] = STATE(87), - [aux_sym_sized_type_specifier_repeat1] = STATE(88), - [anon_sym_SEMI] = ACTIONS(503), - [anon_sym_typedef] = ACTIONS(17), - [anon_sym_extern] = ACTIONS(21), - [anon_sym_LBRACE] = ACTIONS(229), - [anon_sym_LPAREN2] = ACTIONS(507), - [anon_sym_STAR] = ACTIONS(509), - [anon_sym_static] = ACTIONS(21), - [anon_sym_auto] = ACTIONS(21), - [anon_sym_register] = ACTIONS(21), - [anon_sym_inline] = ACTIONS(21), - [anon_sym_const] = ACTIONS(23), - [anon_sym_restrict] = ACTIONS(23), - [anon_sym_volatile] = ACTIONS(23), - [anon_sym__Atomic] = ACTIONS(23), - [anon_sym_unsigned] = ACTIONS(167), - [anon_sym_long] = ACTIONS(167), - [anon_sym_short] = ACTIONS(167), - [sym_primitive_type] = ACTIONS(169), - [anon_sym_enum] = ACTIONS(29), - [anon_sym_struct] = ACTIONS(31), - [anon_sym_union] = ACTIONS(33), - [anon_sym_if] = ACTIONS(511), - [anon_sym_switch] = ACTIONS(513), - [anon_sym_case] = ACTIONS(515), - [anon_sym_default] = ACTIONS(517), - [anon_sym_while] = ACTIONS(519), - [anon_sym_do] = ACTIONS(521), - [anon_sym_for] = ACTIONS(523), - [anon_sym_return] = ACTIONS(525), - [anon_sym_break] = ACTIONS(527), - [anon_sym_continue] = ACTIONS(529), - [anon_sym_goto] = ACTIONS(531), - [anon_sym_AMP] = ACTIONS(509), - [anon_sym_BANG] = ACTIONS(533), - [anon_sym_TILDE] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DASH] = ACTIONS(537), - [anon_sym_DASH_DASH] = ACTIONS(539), - [anon_sym_PLUS_PLUS] = ACTIONS(539), - [anon_sym_sizeof] = ACTIONS(541), - [sym_number_literal] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(547), - [sym_false] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [sym_identifier] = ACTIONS(1527), - [sym_comment] = ACTIONS(37), + [anon_sym_LF] = ACTIONS(2252), + [sym_comment] = ACTIONS(69), }, [637] = { - [sym__expression] = STATE(854), - [sym_conditional_expression] = STATE(854), - [sym_assignment_expression] = STATE(854), - [sym_pointer_expression] = STATE(854), - [sym_logical_expression] = STATE(854), - [sym_bitwise_expression] = STATE(854), - [sym_equality_expression] = STATE(854), - [sym_relational_expression] = STATE(854), - [sym_shift_expression] = STATE(854), - [sym_math_expression] = STATE(854), - [sym_cast_expression] = STATE(854), - [sym_sizeof_expression] = STATE(854), - [sym_subscript_expression] = STATE(854), - [sym_call_expression] = STATE(854), - [sym_field_expression] = STATE(854), - [sym_compound_literal_expression] = STATE(854), - [sym_parenthesized_expression] = STATE(854), - [sym_char_literal] = STATE(854), - [sym_concatenated_string] = STATE(854), - [sym_string_literal] = STATE(386), - [anon_sym_LPAREN2] = ACTIONS(918), - [anon_sym_STAR] = ACTIONS(920), - [anon_sym_AMP] = ACTIONS(920), - [anon_sym_BANG] = ACTIONS(922), - [anon_sym_TILDE] = ACTIONS(924), - [anon_sym_PLUS] = ACTIONS(926), - [anon_sym_DASH] = ACTIONS(926), - [anon_sym_DASH_DASH] = ACTIONS(928), - [anon_sym_PLUS_PLUS] = ACTIONS(928), - [anon_sym_sizeof] = ACTIONS(930), - [sym_number_literal] = ACTIONS(2238), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(2240), - [sym_false] = ACTIONS(2240), - [sym_null] = ACTIONS(2240), - [sym_identifier] = ACTIONS(2240), - [sym_comment] = ACTIONS(37), + [anon_sym_LF] = ACTIONS(2254), + [sym_preproc_arg] = ACTIONS(2256), + [sym_comment] = ACTIONS(69), }, [638] = { - [sym__expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_assignment_expression] = STATE(855), - [sym_pointer_expression] = STATE(855), - [sym_logical_expression] = STATE(855), - [sym_bitwise_expression] = STATE(855), - [sym_equality_expression] = STATE(855), - [sym_relational_expression] = STATE(855), - [sym_shift_expression] = STATE(855), - [sym_math_expression] = STATE(855), - [sym_cast_expression] = STATE(855), - [sym_sizeof_expression] = STATE(855), - [sym_subscript_expression] = STATE(855), - [sym_call_expression] = STATE(855), - [sym_field_expression] = STATE(855), - [sym_compound_literal_expression] = STATE(855), - [sym_parenthesized_expression] = STATE(855), - [sym_char_literal] = STATE(855), - [sym_concatenated_string] = STATE(855), - [sym_string_literal] = STATE(386), - [anon_sym_LPAREN2] = ACTIONS(918), - [anon_sym_STAR] = ACTIONS(920), - [anon_sym_AMP] = ACTIONS(920), - [anon_sym_BANG] = ACTIONS(922), - [anon_sym_TILDE] = ACTIONS(924), - [anon_sym_PLUS] = ACTIONS(926), - [anon_sym_DASH] = ACTIONS(926), - [anon_sym_DASH_DASH] = ACTIONS(928), - [anon_sym_PLUS_PLUS] = ACTIONS(928), - [anon_sym_sizeof] = ACTIONS(930), - [sym_number_literal] = ACTIONS(2242), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(2244), - [sym_false] = ACTIONS(2244), - [sym_null] = ACTIONS(2244), - [sym_identifier] = ACTIONS(2244), - [sym_comment] = ACTIONS(37), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(678), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(678), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(678), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(678), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(678), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(678), + [sym_preproc_directive] = ACTIONS(678), + [anon_sym_typedef] = ACTIONS(678), + [anon_sym_extern] = ACTIONS(678), + [anon_sym_LPAREN2] = ACTIONS(676), + [anon_sym_STAR] = ACTIONS(676), + [anon_sym_static] = ACTIONS(678), + [anon_sym_auto] = ACTIONS(678), + [anon_sym_register] = ACTIONS(678), + [anon_sym_inline] = ACTIONS(678), + [anon_sym_const] = ACTIONS(678), + [anon_sym_restrict] = ACTIONS(678), + [anon_sym_volatile] = ACTIONS(678), + [anon_sym__Atomic] = ACTIONS(678), + [anon_sym_unsigned] = ACTIONS(678), + [anon_sym_long] = ACTIONS(678), + [anon_sym_short] = ACTIONS(678), + [sym_primitive_type] = ACTIONS(678), + [anon_sym_enum] = ACTIONS(678), + [anon_sym_struct] = ACTIONS(678), + [anon_sym_union] = ACTIONS(678), + [anon_sym_AMP] = ACTIONS(676), + [anon_sym_BANG] = ACTIONS(676), + [anon_sym_TILDE] = ACTIONS(676), + [anon_sym_PLUS] = ACTIONS(678), + [anon_sym_DASH] = ACTIONS(678), + [anon_sym_DASH_DASH] = ACTIONS(676), + [anon_sym_PLUS_PLUS] = ACTIONS(676), + [anon_sym_sizeof] = ACTIONS(678), + [sym_number_literal] = ACTIONS(676), + [anon_sym_SQUOTE] = ACTIONS(676), + [anon_sym_DQUOTE] = ACTIONS(676), + [sym_true] = ACTIONS(678), + [sym_false] = ACTIONS(678), + [sym_null] = ACTIONS(678), + [sym_identifier] = ACTIONS(678), + [sym_comment] = ACTIONS(59), }, [639] = { - [sym__expression] = STATE(856), - [sym_conditional_expression] = STATE(856), - [sym_assignment_expression] = STATE(856), - [sym_pointer_expression] = STATE(856), - [sym_logical_expression] = STATE(856), - [sym_bitwise_expression] = STATE(856), - [sym_equality_expression] = STATE(856), - [sym_relational_expression] = STATE(856), - [sym_shift_expression] = STATE(856), - [sym_math_expression] = STATE(856), - [sym_cast_expression] = STATE(856), - [sym_sizeof_expression] = STATE(856), - [sym_subscript_expression] = STATE(856), - [sym_call_expression] = STATE(856), - [sym_field_expression] = STATE(856), - [sym_compound_literal_expression] = STATE(856), - [sym_parenthesized_expression] = STATE(856), - [sym_char_literal] = STATE(856), - [sym_concatenated_string] = STATE(856), - [sym_string_literal] = STATE(386), - [anon_sym_LPAREN2] = ACTIONS(918), - [anon_sym_STAR] = ACTIONS(920), - [anon_sym_AMP] = ACTIONS(920), - [anon_sym_BANG] = ACTIONS(922), - [anon_sym_TILDE] = ACTIONS(924), - [anon_sym_PLUS] = ACTIONS(926), - [anon_sym_DASH] = ACTIONS(926), - [anon_sym_DASH_DASH] = ACTIONS(928), - [anon_sym_PLUS_PLUS] = ACTIONS(928), - [anon_sym_sizeof] = ACTIONS(930), - [sym_number_literal] = ACTIONS(2246), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(2248), - [sym_false] = ACTIONS(2248), - [sym_null] = ACTIONS(2248), - [sym_identifier] = ACTIONS(2248), - [sym_comment] = ACTIONS(37), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2258), + [sym_comment] = ACTIONS(59), }, [640] = { - [sym__expression] = STATE(857), - [sym_conditional_expression] = STATE(857), - [sym_assignment_expression] = STATE(857), - [sym_pointer_expression] = STATE(857), - [sym_logical_expression] = STATE(857), - [sym_bitwise_expression] = STATE(857), - [sym_equality_expression] = STATE(857), - [sym_relational_expression] = STATE(857), - [sym_shift_expression] = STATE(857), - [sym_math_expression] = STATE(857), - [sym_cast_expression] = STATE(857), - [sym_sizeof_expression] = STATE(857), - [sym_subscript_expression] = STATE(857), - [sym_call_expression] = STATE(857), - [sym_field_expression] = STATE(857), - [sym_compound_literal_expression] = STATE(857), - [sym_parenthesized_expression] = STATE(857), - [sym_char_literal] = STATE(857), - [sym_concatenated_string] = STATE(857), - [sym_string_literal] = STATE(386), - [anon_sym_LPAREN2] = ACTIONS(918), - [anon_sym_STAR] = ACTIONS(920), - [anon_sym_AMP] = ACTIONS(920), - [anon_sym_BANG] = ACTIONS(922), - [anon_sym_TILDE] = ACTIONS(924), - [anon_sym_PLUS] = ACTIONS(926), - [anon_sym_DASH] = ACTIONS(926), - [anon_sym_DASH_DASH] = ACTIONS(928), - [anon_sym_PLUS_PLUS] = ACTIONS(928), - [anon_sym_sizeof] = ACTIONS(930), - [sym_number_literal] = ACTIONS(2250), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(2252), - [sym_false] = ACTIONS(2252), - [sym_null] = ACTIONS(2252), - [sym_identifier] = ACTIONS(2252), - [sym_comment] = ACTIONS(37), + [sym_preproc_include] = STATE(269), + [sym_preproc_def] = STATE(269), + [sym_preproc_function_def] = STATE(269), + [sym_preproc_call] = STATE(269), + [sym_preproc_if] = STATE(269), + [sym_preproc_ifdef] = STATE(269), + [sym_preproc_else] = STATE(822), + [sym_preproc_elif] = STATE(822), + [sym_function_definition] = STATE(269), + [sym_declaration] = STATE(269), + [sym_type_definition] = STATE(269), + [sym__declaration_specifiers] = STATE(124), + [sym_linkage_specification] = STATE(269), + [sym_storage_class_specifier] = STATE(30), + [sym_type_qualifier] = STATE(30), + [sym__type_specifier] = STATE(25), + [sym_sized_type_specifier] = STATE(25), + [sym_enum_specifier] = STATE(25), + [sym_struct_specifier] = STATE(25), + [sym_union_specifier] = STATE(25), + [sym__expression] = STATE(26), + [sym_conditional_expression] = STATE(26), + [sym_assignment_expression] = STATE(26), + [sym_pointer_expression] = STATE(26), + [sym_logical_expression] = STATE(26), + [sym_bitwise_expression] = STATE(26), + [sym_equality_expression] = STATE(26), + [sym_relational_expression] = STATE(26), + [sym_shift_expression] = STATE(26), + [sym_math_expression] = STATE(26), + [sym_cast_expression] = STATE(26), + [sym_sizeof_expression] = STATE(26), + [sym_subscript_expression] = STATE(26), + [sym_call_expression] = STATE(125), + [sym_field_expression] = STATE(26), + [sym_compound_literal_expression] = STATE(26), + [sym_parenthesized_expression] = STATE(26), + [sym_char_literal] = STATE(26), + [sym_concatenated_string] = STATE(26), + [sym_string_literal] = STATE(28), + [sym__empty_declaration] = STATE(269), + [sym_macro_type_specifier] = STATE(25), + [aux_sym_translation_unit_repeat1] = STATE(269), + [aux_sym__declaration_specifiers_repeat1] = STATE(30), + [aux_sym_sized_type_specifier_repeat1] = STATE(31), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(251), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(253), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(255), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2260), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(259), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(259), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(261), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(263), + [sym_preproc_directive] = ACTIONS(265), + [anon_sym_typedef] = ACTIONS(267), + [anon_sym_extern] = ACTIONS(269), + [anon_sym_LPAREN2] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_static] = ACTIONS(25), + [anon_sym_auto] = ACTIONS(25), + [anon_sym_register] = ACTIONS(25), + [anon_sym_inline] = ACTIONS(25), + [anon_sym_const] = ACTIONS(27), + [anon_sym_restrict] = ACTIONS(27), + [anon_sym_volatile] = ACTIONS(27), + [anon_sym__Atomic] = ACTIONS(27), + [anon_sym_unsigned] = ACTIONS(29), + [anon_sym_long] = ACTIONS(29), + [anon_sym_short] = ACTIONS(29), + [sym_primitive_type] = ACTIONS(31), + [anon_sym_enum] = ACTIONS(33), + [anon_sym_struct] = ACTIONS(35), + [anon_sym_union] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(41), + [anon_sym_PLUS] = ACTIONS(43), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_DASH_DASH] = ACTIONS(45), + [anon_sym_PLUS_PLUS] = ACTIONS(45), + [anon_sym_sizeof] = ACTIONS(47), + [sym_number_literal] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(55), + [sym_false] = ACTIONS(55), + [sym_null] = ACTIONS(55), + [sym_identifier] = ACTIONS(57), + [sym_comment] = ACTIONS(59), }, [641] = { - [sym__expression] = STATE(858), - [sym_conditional_expression] = STATE(858), - [sym_assignment_expression] = STATE(858), - [sym_pointer_expression] = STATE(858), - [sym_logical_expression] = STATE(858), - [sym_bitwise_expression] = STATE(858), - [sym_equality_expression] = STATE(858), - [sym_relational_expression] = STATE(858), - [sym_shift_expression] = STATE(858), - [sym_math_expression] = STATE(858), - [sym_cast_expression] = STATE(858), - [sym_sizeof_expression] = STATE(858), - [sym_subscript_expression] = STATE(858), - [sym_call_expression] = STATE(858), - [sym_field_expression] = STATE(858), - [sym_compound_literal_expression] = STATE(858), - [sym_parenthesized_expression] = STATE(858), - [sym_char_literal] = STATE(858), - [sym_concatenated_string] = STATE(858), - [sym_string_literal] = STATE(386), - [anon_sym_LPAREN2] = ACTIONS(918), - [anon_sym_STAR] = ACTIONS(920), - [anon_sym_AMP] = ACTIONS(920), - [anon_sym_BANG] = ACTIONS(922), - [anon_sym_TILDE] = ACTIONS(924), - [anon_sym_PLUS] = ACTIONS(926), - [anon_sym_DASH] = ACTIONS(926), - [anon_sym_DASH_DASH] = ACTIONS(928), - [anon_sym_PLUS_PLUS] = ACTIONS(928), - [anon_sym_sizeof] = ACTIONS(930), - [sym_number_literal] = ACTIONS(2254), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(2256), - [sym_false] = ACTIONS(2256), - [sym_null] = ACTIONS(2256), - [sym_identifier] = ACTIONS(2256), - [sym_comment] = ACTIONS(37), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(718), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(718), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(718), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(718), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(718), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(718), + [sym_preproc_directive] = ACTIONS(718), + [anon_sym_typedef] = ACTIONS(718), + [anon_sym_extern] = ACTIONS(718), + [anon_sym_LPAREN2] = ACTIONS(716), + [anon_sym_STAR] = ACTIONS(716), + [anon_sym_static] = ACTIONS(718), + [anon_sym_auto] = ACTIONS(718), + [anon_sym_register] = ACTIONS(718), + [anon_sym_inline] = ACTIONS(718), + [anon_sym_const] = ACTIONS(718), + [anon_sym_restrict] = ACTIONS(718), + [anon_sym_volatile] = ACTIONS(718), + [anon_sym__Atomic] = ACTIONS(718), + [anon_sym_unsigned] = ACTIONS(718), + [anon_sym_long] = ACTIONS(718), + [anon_sym_short] = ACTIONS(718), + [sym_primitive_type] = ACTIONS(718), + [anon_sym_enum] = ACTIONS(718), + [anon_sym_struct] = ACTIONS(718), + [anon_sym_union] = ACTIONS(718), + [anon_sym_AMP] = ACTIONS(716), + [anon_sym_BANG] = ACTIONS(716), + [anon_sym_TILDE] = ACTIONS(716), + [anon_sym_PLUS] = ACTIONS(718), + [anon_sym_DASH] = ACTIONS(718), + [anon_sym_DASH_DASH] = ACTIONS(716), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_sizeof] = ACTIONS(718), + [sym_number_literal] = ACTIONS(716), + [anon_sym_SQUOTE] = ACTIONS(716), + [anon_sym_DQUOTE] = ACTIONS(716), + [sym_true] = ACTIONS(718), + [sym_false] = ACTIONS(718), + [sym_null] = ACTIONS(718), + [sym_identifier] = ACTIONS(718), + [sym_comment] = ACTIONS(59), }, [642] = { - [sym__expression] = STATE(859), - [sym_conditional_expression] = STATE(859), - [sym_assignment_expression] = STATE(859), - [sym_pointer_expression] = STATE(859), - [sym_logical_expression] = STATE(859), - [sym_bitwise_expression] = STATE(859), - [sym_equality_expression] = STATE(859), - [sym_relational_expression] = STATE(859), - [sym_shift_expression] = STATE(859), - [sym_math_expression] = STATE(859), - [sym_cast_expression] = STATE(859), - [sym_sizeof_expression] = STATE(859), - [sym_subscript_expression] = STATE(859), - [sym_call_expression] = STATE(859), - [sym_field_expression] = STATE(859), - [sym_compound_literal_expression] = STATE(859), - [sym_parenthesized_expression] = STATE(859), - [sym_char_literal] = STATE(859), - [sym_concatenated_string] = STATE(859), - [sym_string_literal] = STATE(386), - [anon_sym_LPAREN2] = ACTIONS(918), - [anon_sym_STAR] = ACTIONS(920), - [anon_sym_AMP] = ACTIONS(920), - [anon_sym_BANG] = ACTIONS(922), - [anon_sym_TILDE] = ACTIONS(924), - [anon_sym_PLUS] = ACTIONS(926), - [anon_sym_DASH] = ACTIONS(926), - [anon_sym_DASH_DASH] = ACTIONS(928), - [anon_sym_PLUS_PLUS] = ACTIONS(928), - [anon_sym_sizeof] = ACTIONS(930), - [sym_number_literal] = ACTIONS(2258), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(2260), - [sym_false] = ACTIONS(2260), - [sym_null] = ACTIONS(2260), - [sym_identifier] = ACTIONS(2260), - [sym_comment] = ACTIONS(37), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2262), + [sym_comment] = ACTIONS(59), }, [643] = { - [sym__expression] = STATE(860), - [sym_conditional_expression] = STATE(860), - [sym_assignment_expression] = STATE(860), - [sym_pointer_expression] = STATE(860), - [sym_logical_expression] = STATE(860), - [sym_bitwise_expression] = STATE(860), - [sym_equality_expression] = STATE(860), - [sym_relational_expression] = STATE(860), - [sym_shift_expression] = STATE(860), - [sym_math_expression] = STATE(860), - [sym_cast_expression] = STATE(860), - [sym_sizeof_expression] = STATE(860), - [sym_subscript_expression] = STATE(860), - [sym_call_expression] = STATE(860), - [sym_field_expression] = STATE(860), - [sym_compound_literal_expression] = STATE(860), - [sym_parenthesized_expression] = STATE(860), - [sym_char_literal] = STATE(860), - [sym_concatenated_string] = STATE(860), - [sym_string_literal] = STATE(386), - [anon_sym_LPAREN2] = ACTIONS(918), - [anon_sym_STAR] = ACTIONS(920), - [anon_sym_AMP] = ACTIONS(920), - [anon_sym_BANG] = ACTIONS(922), - [anon_sym_TILDE] = ACTIONS(924), - [anon_sym_PLUS] = ACTIONS(926), - [anon_sym_DASH] = ACTIONS(926), - [anon_sym_DASH_DASH] = ACTIONS(928), - [anon_sym_PLUS_PLUS] = ACTIONS(928), - [anon_sym_sizeof] = ACTIONS(930), - [sym_number_literal] = ACTIONS(2262), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(2264), - [sym_false] = ACTIONS(2264), - [sym_null] = ACTIONS(2264), - [sym_identifier] = ACTIONS(2264), - [sym_comment] = ACTIONS(37), + [sym_preproc_include] = STATE(269), + [sym_preproc_def] = STATE(269), + [sym_preproc_function_def] = STATE(269), + [sym_preproc_call] = STATE(269), + [sym_preproc_if] = STATE(269), + [sym_preproc_ifdef] = STATE(269), + [sym_preproc_else] = STATE(824), + [sym_preproc_elif] = STATE(824), + [sym_function_definition] = STATE(269), + [sym_declaration] = STATE(269), + [sym_type_definition] = STATE(269), + [sym__declaration_specifiers] = STATE(124), + [sym_linkage_specification] = STATE(269), + [sym_storage_class_specifier] = STATE(30), + [sym_type_qualifier] = STATE(30), + [sym__type_specifier] = STATE(25), + [sym_sized_type_specifier] = STATE(25), + [sym_enum_specifier] = STATE(25), + [sym_struct_specifier] = STATE(25), + [sym_union_specifier] = STATE(25), + [sym__expression] = STATE(26), + [sym_conditional_expression] = STATE(26), + [sym_assignment_expression] = STATE(26), + [sym_pointer_expression] = STATE(26), + [sym_logical_expression] = STATE(26), + [sym_bitwise_expression] = STATE(26), + [sym_equality_expression] = STATE(26), + [sym_relational_expression] = STATE(26), + [sym_shift_expression] = STATE(26), + [sym_math_expression] = STATE(26), + [sym_cast_expression] = STATE(26), + [sym_sizeof_expression] = STATE(26), + [sym_subscript_expression] = STATE(26), + [sym_call_expression] = STATE(125), + [sym_field_expression] = STATE(26), + [sym_compound_literal_expression] = STATE(26), + [sym_parenthesized_expression] = STATE(26), + [sym_char_literal] = STATE(26), + [sym_concatenated_string] = STATE(26), + [sym_string_literal] = STATE(28), + [sym__empty_declaration] = STATE(269), + [sym_macro_type_specifier] = STATE(25), + [aux_sym_translation_unit_repeat1] = STATE(269), + [aux_sym__declaration_specifiers_repeat1] = STATE(30), + [aux_sym_sized_type_specifier_repeat1] = STATE(31), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(251), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(253), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(255), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2264), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(259), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(259), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(261), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(263), + [sym_preproc_directive] = ACTIONS(265), + [anon_sym_typedef] = ACTIONS(267), + [anon_sym_extern] = ACTIONS(269), + [anon_sym_LPAREN2] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_static] = ACTIONS(25), + [anon_sym_auto] = ACTIONS(25), + [anon_sym_register] = ACTIONS(25), + [anon_sym_inline] = ACTIONS(25), + [anon_sym_const] = ACTIONS(27), + [anon_sym_restrict] = ACTIONS(27), + [anon_sym_volatile] = ACTIONS(27), + [anon_sym__Atomic] = ACTIONS(27), + [anon_sym_unsigned] = ACTIONS(29), + [anon_sym_long] = ACTIONS(29), + [anon_sym_short] = ACTIONS(29), + [sym_primitive_type] = ACTIONS(31), + [anon_sym_enum] = ACTIONS(33), + [anon_sym_struct] = ACTIONS(35), + [anon_sym_union] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(41), + [anon_sym_PLUS] = ACTIONS(43), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_DASH_DASH] = ACTIONS(45), + [anon_sym_PLUS_PLUS] = ACTIONS(45), + [anon_sym_sizeof] = ACTIONS(47), + [sym_number_literal] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(55), + [sym_false] = ACTIONS(55), + [sym_null] = ACTIONS(55), + [sym_identifier] = ACTIONS(57), + [sym_comment] = ACTIONS(59), }, [644] = { - [sym__expression] = STATE(861), - [sym_conditional_expression] = STATE(861), - [sym_assignment_expression] = STATE(861), - [sym_pointer_expression] = STATE(861), - [sym_logical_expression] = STATE(861), - [sym_bitwise_expression] = STATE(861), - [sym_equality_expression] = STATE(861), - [sym_relational_expression] = STATE(861), - [sym_shift_expression] = STATE(861), - [sym_math_expression] = STATE(861), - [sym_cast_expression] = STATE(861), - [sym_sizeof_expression] = STATE(861), - [sym_subscript_expression] = STATE(861), - [sym_call_expression] = STATE(861), - [sym_field_expression] = STATE(861), - [sym_compound_literal_expression] = STATE(861), - [sym_parenthesized_expression] = STATE(861), - [sym_char_literal] = STATE(861), - [sym_concatenated_string] = STATE(861), - [sym_string_literal] = STATE(386), - [anon_sym_LPAREN2] = ACTIONS(918), - [anon_sym_STAR] = ACTIONS(920), - [anon_sym_AMP] = ACTIONS(920), - [anon_sym_BANG] = ACTIONS(922), - [anon_sym_TILDE] = ACTIONS(924), - [anon_sym_PLUS] = ACTIONS(926), - [anon_sym_DASH] = ACTIONS(926), - [anon_sym_DASH_DASH] = ACTIONS(928), - [anon_sym_PLUS_PLUS] = ACTIONS(928), - [anon_sym_sizeof] = ACTIONS(930), - [sym_number_literal] = ACTIONS(2266), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(2268), - [sym_false] = ACTIONS(2268), - [sym_null] = ACTIONS(2268), - [sym_identifier] = ACTIONS(2268), - [sym_comment] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(724), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(726), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(726), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(726), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(726), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(726), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(726), + [sym_preproc_directive] = ACTIONS(726), + [anon_sym_typedef] = ACTIONS(726), + [anon_sym_extern] = ACTIONS(726), + [anon_sym_LBRACE] = ACTIONS(724), + [anon_sym_LPAREN2] = ACTIONS(724), + [anon_sym_STAR] = ACTIONS(724), + [anon_sym_static] = ACTIONS(726), + [anon_sym_auto] = ACTIONS(726), + [anon_sym_register] = ACTIONS(726), + [anon_sym_inline] = ACTIONS(726), + [anon_sym_const] = ACTIONS(726), + [anon_sym_restrict] = ACTIONS(726), + [anon_sym_volatile] = ACTIONS(726), + [anon_sym__Atomic] = ACTIONS(726), + [anon_sym_unsigned] = ACTIONS(726), + [anon_sym_long] = ACTIONS(726), + [anon_sym_short] = ACTIONS(726), + [sym_primitive_type] = ACTIONS(726), + [anon_sym_enum] = ACTIONS(726), + [anon_sym_struct] = ACTIONS(726), + [anon_sym_union] = ACTIONS(726), + [anon_sym_if] = ACTIONS(726), + [anon_sym_switch] = ACTIONS(726), + [anon_sym_case] = ACTIONS(726), + [anon_sym_default] = ACTIONS(726), + [anon_sym_while] = ACTIONS(726), + [anon_sym_do] = ACTIONS(726), + [anon_sym_for] = ACTIONS(726), + [anon_sym_return] = ACTIONS(726), + [anon_sym_break] = ACTIONS(726), + [anon_sym_continue] = ACTIONS(726), + [anon_sym_goto] = ACTIONS(726), + [anon_sym_AMP] = ACTIONS(724), + [anon_sym_BANG] = ACTIONS(724), + [anon_sym_TILDE] = ACTIONS(724), + [anon_sym_PLUS] = ACTIONS(726), + [anon_sym_DASH] = ACTIONS(726), + [anon_sym_DASH_DASH] = ACTIONS(724), + [anon_sym_PLUS_PLUS] = ACTIONS(724), + [anon_sym_sizeof] = ACTIONS(726), + [sym_number_literal] = ACTIONS(724), + [anon_sym_SQUOTE] = ACTIONS(724), + [anon_sym_DQUOTE] = ACTIONS(724), + [sym_true] = ACTIONS(726), + [sym_false] = ACTIONS(726), + [sym_null] = ACTIONS(726), + [sym_identifier] = ACTIONS(726), + [sym_comment] = ACTIONS(59), }, [645] = { - [sym__expression] = STATE(862), - [sym_conditional_expression] = STATE(862), - [sym_assignment_expression] = STATE(862), - [sym_pointer_expression] = STATE(862), - [sym_logical_expression] = STATE(862), - [sym_bitwise_expression] = STATE(862), - [sym_equality_expression] = STATE(862), - [sym_relational_expression] = STATE(862), - [sym_shift_expression] = STATE(862), - [sym_math_expression] = STATE(862), - [sym_cast_expression] = STATE(862), - [sym_sizeof_expression] = STATE(862), - [sym_subscript_expression] = STATE(862), - [sym_call_expression] = STATE(862), - [sym_field_expression] = STATE(862), - [sym_compound_literal_expression] = STATE(862), - [sym_parenthesized_expression] = STATE(862), - [sym_char_literal] = STATE(862), - [sym_concatenated_string] = STATE(862), - [sym_string_literal] = STATE(386), - [anon_sym_LPAREN2] = ACTIONS(918), - [anon_sym_STAR] = ACTIONS(920), - [anon_sym_AMP] = ACTIONS(920), - [anon_sym_BANG] = ACTIONS(922), - [anon_sym_TILDE] = ACTIONS(924), - [anon_sym_PLUS] = ACTIONS(926), - [anon_sym_DASH] = ACTIONS(926), - [anon_sym_DASH_DASH] = ACTIONS(928), - [anon_sym_PLUS_PLUS] = ACTIONS(928), - [anon_sym_sizeof] = ACTIONS(930), - [sym_number_literal] = ACTIONS(2270), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(2272), - [sym_false] = ACTIONS(2272), - [sym_null] = ACTIONS(2272), - [sym_identifier] = ACTIONS(2272), - [sym_comment] = ACTIONS(37), + [sym_parameter_list] = STATE(278), + [anon_sym_SEMI] = ACTIONS(2266), + [anon_sym_LPAREN2] = ACTIONS(441), + [anon_sym_LBRACK] = ACTIONS(736), + [sym_comment] = ACTIONS(59), }, [646] = { - [sym__expression] = STATE(863), - [sym_conditional_expression] = STATE(863), - [sym_assignment_expression] = STATE(863), - [sym_pointer_expression] = STATE(863), - [sym_logical_expression] = STATE(863), - [sym_bitwise_expression] = STATE(863), - [sym_equality_expression] = STATE(863), - [sym_relational_expression] = STATE(863), - [sym_shift_expression] = STATE(863), - [sym_math_expression] = STATE(863), - [sym_cast_expression] = STATE(863), - [sym_sizeof_expression] = STATE(863), - [sym_subscript_expression] = STATE(863), - [sym_call_expression] = STATE(863), - [sym_field_expression] = STATE(863), - [sym_compound_literal_expression] = STATE(863), - [sym_parenthesized_expression] = STATE(863), - [sym_char_literal] = STATE(863), - [sym_concatenated_string] = STATE(863), - [sym_string_literal] = STATE(386), - [anon_sym_LPAREN2] = ACTIONS(918), - [anon_sym_STAR] = ACTIONS(920), - [anon_sym_AMP] = ACTIONS(920), - [anon_sym_BANG] = ACTIONS(922), - [anon_sym_TILDE] = ACTIONS(924), - [anon_sym_PLUS] = ACTIONS(926), - [anon_sym_DASH] = ACTIONS(926), - [anon_sym_DASH_DASH] = ACTIONS(928), - [anon_sym_PLUS_PLUS] = ACTIONS(928), - [anon_sym_sizeof] = ACTIONS(930), - [sym_number_literal] = ACTIONS(2274), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(2276), - [sym_false] = ACTIONS(2276), - [sym_null] = ACTIONS(2276), - [sym_identifier] = ACTIONS(2276), - [sym_comment] = ACTIONS(37), + [sym__type_declarator] = STATE(826), + [sym_pointer_type_declarator] = STATE(826), + [sym_function_type_declarator] = STATE(826), + [sym_array_type_declarator] = STATE(826), + [anon_sym_LPAREN2] = ACTIONS(282), + [anon_sym_STAR] = ACTIONS(284), + [sym_identifier] = ACTIONS(286), + [sym_comment] = ACTIONS(59), }, [647] = { - [sym_string_literal] = STATE(864), - [aux_sym_concatenated_string_repeat1] = STATE(864), - [anon_sym_LPAREN2] = ACTIONS(1655), - [anon_sym_STAR] = ACTIONS(1657), - [anon_sym_LBRACK] = ACTIONS(1655), - [anon_sym_EQ] = ACTIONS(1657), - [anon_sym_COLON] = ACTIONS(1655), - [anon_sym_QMARK] = ACTIONS(1655), - [anon_sym_STAR_EQ] = ACTIONS(1655), - [anon_sym_SLASH_EQ] = ACTIONS(1655), - [anon_sym_PERCENT_EQ] = ACTIONS(1655), - [anon_sym_PLUS_EQ] = ACTIONS(1655), - [anon_sym_DASH_EQ] = ACTIONS(1655), - [anon_sym_LT_LT_EQ] = ACTIONS(1655), - [anon_sym_GT_GT_EQ] = ACTIONS(1655), - [anon_sym_AMP_EQ] = ACTIONS(1655), - [anon_sym_CARET_EQ] = ACTIONS(1655), - [anon_sym_PIPE_EQ] = ACTIONS(1655), - [anon_sym_AMP] = ACTIONS(1657), - [anon_sym_PIPE_PIPE] = ACTIONS(1655), - [anon_sym_AMP_AMP] = ACTIONS(1655), - [anon_sym_PIPE] = ACTIONS(1657), - [anon_sym_CARET] = ACTIONS(1657), - [anon_sym_EQ_EQ] = ACTIONS(1655), - [anon_sym_BANG_EQ] = ACTIONS(1655), - [anon_sym_LT] = ACTIONS(1657), - [anon_sym_GT] = ACTIONS(1657), - [anon_sym_LT_EQ] = ACTIONS(1655), - [anon_sym_GT_EQ] = ACTIONS(1655), - [anon_sym_LT_LT] = ACTIONS(1657), - [anon_sym_GT_GT] = ACTIONS(1657), - [anon_sym_PLUS] = ACTIONS(1657), - [anon_sym_DASH] = ACTIONS(1657), - [anon_sym_SLASH] = ACTIONS(1657), - [anon_sym_PERCENT] = ACTIONS(1657), - [anon_sym_DASH_DASH] = ACTIONS(1655), - [anon_sym_PLUS_PLUS] = ACTIONS(1655), - [anon_sym_DOT] = ACTIONS(1655), - [anon_sym_DASH_GT] = ACTIONS(1655), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_comment] = ACTIONS(37), + [sym_preproc_include] = STATE(828), + [sym_preproc_def] = STATE(828), + [sym_preproc_function_def] = STATE(828), + [sym_preproc_call] = STATE(828), + [sym_preproc_if] = STATE(828), + [sym_preproc_ifdef] = STATE(828), + [sym_function_definition] = STATE(828), + [sym_declaration] = STATE(828), + [sym_type_definition] = STATE(828), + [sym__declaration_specifiers] = STATE(24), + [sym_linkage_specification] = STATE(828), + [sym_storage_class_specifier] = STATE(30), + [sym_type_qualifier] = STATE(30), + [sym__type_specifier] = STATE(25), + [sym_sized_type_specifier] = STATE(25), + [sym_enum_specifier] = STATE(25), + [sym_struct_specifier] = STATE(25), + [sym_union_specifier] = STATE(25), + [sym__expression] = STATE(26), + [sym_conditional_expression] = STATE(26), + [sym_assignment_expression] = STATE(26), + [sym_pointer_expression] = STATE(26), + [sym_logical_expression] = STATE(26), + [sym_bitwise_expression] = STATE(26), + [sym_equality_expression] = STATE(26), + [sym_relational_expression] = STATE(26), + [sym_shift_expression] = STATE(26), + [sym_math_expression] = STATE(26), + [sym_cast_expression] = STATE(26), + [sym_sizeof_expression] = STATE(26), + [sym_subscript_expression] = STATE(26), + [sym_call_expression] = STATE(27), + [sym_field_expression] = STATE(26), + [sym_compound_literal_expression] = STATE(26), + [sym_parenthesized_expression] = STATE(26), + [sym_char_literal] = STATE(26), + [sym_concatenated_string] = STATE(26), + [sym_string_literal] = STATE(28), + [sym__empty_declaration] = STATE(828), + [sym_macro_type_specifier] = STATE(25), + [aux_sym_translation_unit_repeat1] = STATE(828), + [aux_sym__declaration_specifiers_repeat1] = STATE(30), + [aux_sym_sized_type_specifier_repeat1] = STATE(31), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(7), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(9), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(11), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(13), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(13), + [sym_preproc_directive] = ACTIONS(15), + [anon_sym_typedef] = ACTIONS(17), + [anon_sym_extern] = ACTIONS(19), + [anon_sym_RBRACE] = ACTIONS(2268), + [anon_sym_LPAREN2] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_static] = ACTIONS(25), + [anon_sym_auto] = ACTIONS(25), + [anon_sym_register] = ACTIONS(25), + [anon_sym_inline] = ACTIONS(25), + [anon_sym_const] = ACTIONS(27), + [anon_sym_restrict] = ACTIONS(27), + [anon_sym_volatile] = ACTIONS(27), + [anon_sym__Atomic] = ACTIONS(27), + [anon_sym_unsigned] = ACTIONS(29), + [anon_sym_long] = ACTIONS(29), + [anon_sym_short] = ACTIONS(29), + [sym_primitive_type] = ACTIONS(31), + [anon_sym_enum] = ACTIONS(33), + [anon_sym_struct] = ACTIONS(35), + [anon_sym_union] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(41), + [anon_sym_PLUS] = ACTIONS(43), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_DASH_DASH] = ACTIONS(45), + [anon_sym_PLUS_PLUS] = ACTIONS(45), + [anon_sym_sizeof] = ACTIONS(47), + [sym_number_literal] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(55), + [sym_false] = ACTIONS(55), + [sym_null] = ACTIONS(55), + [sym_identifier] = ACTIONS(57), + [sym_comment] = ACTIONS(59), }, [648] = { - [anon_sym_COMMA] = ACTIONS(990), - [anon_sym_SEMI] = ACTIONS(990), - [anon_sym_extern] = ACTIONS(79), - [anon_sym_LPAREN2] = ACTIONS(995), - [anon_sym_STAR] = ACTIONS(999), - [anon_sym_LBRACK] = ACTIONS(990), - [anon_sym_EQ] = ACTIONS(1002), - [anon_sym_static] = ACTIONS(79), - [anon_sym_auto] = ACTIONS(79), - [anon_sym_register] = ACTIONS(79), - [anon_sym_inline] = ACTIONS(79), - [anon_sym_const] = ACTIONS(79), - [anon_sym_restrict] = ACTIONS(79), - [anon_sym_volatile] = ACTIONS(79), - [anon_sym__Atomic] = ACTIONS(79), - [anon_sym_COLON] = ACTIONS(1004), - [anon_sym_QMARK] = ACTIONS(990), - [anon_sym_STAR_EQ] = ACTIONS(990), - [anon_sym_SLASH_EQ] = ACTIONS(990), - [anon_sym_PERCENT_EQ] = ACTIONS(990), - [anon_sym_PLUS_EQ] = ACTIONS(990), - [anon_sym_DASH_EQ] = ACTIONS(990), - [anon_sym_LT_LT_EQ] = ACTIONS(990), - [anon_sym_GT_GT_EQ] = ACTIONS(990), - [anon_sym_AMP_EQ] = ACTIONS(990), - [anon_sym_CARET_EQ] = ACTIONS(990), - [anon_sym_PIPE_EQ] = ACTIONS(990), - [anon_sym_AMP] = ACTIONS(1002), - [anon_sym_PIPE_PIPE] = ACTIONS(990), - [anon_sym_AMP_AMP] = ACTIONS(990), - [anon_sym_PIPE] = ACTIONS(1002), - [anon_sym_CARET] = ACTIONS(1002), - [anon_sym_EQ_EQ] = ACTIONS(990), - [anon_sym_BANG_EQ] = ACTIONS(990), - [anon_sym_LT] = ACTIONS(1002), - [anon_sym_GT] = ACTIONS(1002), - [anon_sym_LT_EQ] = ACTIONS(990), - [anon_sym_GT_EQ] = ACTIONS(990), - [anon_sym_LT_LT] = ACTIONS(1002), - [anon_sym_GT_GT] = ACTIONS(1002), - [anon_sym_PLUS] = ACTIONS(1002), - [anon_sym_DASH] = ACTIONS(1002), - [anon_sym_SLASH] = ACTIONS(1002), - [anon_sym_PERCENT] = ACTIONS(1002), - [anon_sym_DASH_DASH] = ACTIONS(990), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_DOT] = ACTIONS(990), - [anon_sym_DASH_GT] = ACTIONS(990), - [sym_identifier] = ACTIONS(79), - [sym_comment] = ACTIONS(37), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(750), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(750), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(750), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(750), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(750), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(750), + [sym_preproc_directive] = ACTIONS(750), + [anon_sym_typedef] = ACTIONS(750), + [anon_sym_extern] = ACTIONS(750), + [anon_sym_LPAREN2] = ACTIONS(748), + [anon_sym_STAR] = ACTIONS(748), + [anon_sym_static] = ACTIONS(750), + [anon_sym_auto] = ACTIONS(750), + [anon_sym_register] = ACTIONS(750), + [anon_sym_inline] = ACTIONS(750), + [anon_sym_const] = ACTIONS(750), + [anon_sym_restrict] = ACTIONS(750), + [anon_sym_volatile] = ACTIONS(750), + [anon_sym__Atomic] = ACTIONS(750), + [anon_sym_unsigned] = ACTIONS(750), + [anon_sym_long] = ACTIONS(750), + [anon_sym_short] = ACTIONS(750), + [sym_primitive_type] = ACTIONS(750), + [anon_sym_enum] = ACTIONS(750), + [anon_sym_struct] = ACTIONS(750), + [anon_sym_union] = ACTIONS(750), + [anon_sym_AMP] = ACTIONS(748), + [anon_sym_BANG] = ACTIONS(748), + [anon_sym_TILDE] = ACTIONS(748), + [anon_sym_PLUS] = ACTIONS(750), + [anon_sym_DASH] = ACTIONS(750), + [anon_sym_DASH_DASH] = ACTIONS(748), + [anon_sym_PLUS_PLUS] = ACTIONS(748), + [anon_sym_sizeof] = ACTIONS(750), + [sym_number_literal] = ACTIONS(748), + [anon_sym_SQUOTE] = ACTIONS(748), + [anon_sym_DQUOTE] = ACTIONS(748), + [sym_true] = ACTIONS(750), + [sym_false] = ACTIONS(750), + [sym_null] = ACTIONS(750), + [sym_identifier] = ACTIONS(750), + [sym_comment] = ACTIONS(59), }, [649] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2278), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2278), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2278), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2278), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2278), - [sym_preproc_directive] = ACTIONS(2278), - [anon_sym_SEMI] = ACTIONS(2280), - [anon_sym_typedef] = ACTIONS(2278), - [anon_sym_extern] = ACTIONS(2278), - [anon_sym_LBRACE] = ACTIONS(2280), - [anon_sym_RBRACE] = ACTIONS(2280), - [anon_sym_LPAREN2] = ACTIONS(2280), - [anon_sym_STAR] = ACTIONS(2280), - [anon_sym_static] = ACTIONS(2278), - [anon_sym_auto] = ACTIONS(2278), - [anon_sym_register] = ACTIONS(2278), - [anon_sym_inline] = ACTIONS(2278), - [anon_sym_const] = ACTIONS(2278), - [anon_sym_restrict] = ACTIONS(2278), - [anon_sym_volatile] = ACTIONS(2278), - [anon_sym__Atomic] = ACTIONS(2278), - [anon_sym_unsigned] = ACTIONS(2278), - [anon_sym_long] = ACTIONS(2278), - [anon_sym_short] = ACTIONS(2278), - [sym_primitive_type] = ACTIONS(2278), - [anon_sym_enum] = ACTIONS(2278), - [anon_sym_struct] = ACTIONS(2278), - [anon_sym_union] = ACTIONS(2278), - [anon_sym_if] = ACTIONS(2278), - [anon_sym_else] = ACTIONS(2278), - [anon_sym_switch] = ACTIONS(2278), - [anon_sym_case] = ACTIONS(2278), - [anon_sym_default] = ACTIONS(2278), - [anon_sym_while] = ACTIONS(2278), - [anon_sym_do] = ACTIONS(2278), - [anon_sym_for] = ACTIONS(2278), - [anon_sym_return] = ACTIONS(2278), - [anon_sym_break] = ACTIONS(2278), - [anon_sym_continue] = ACTIONS(2278), - [anon_sym_goto] = ACTIONS(2278), - [anon_sym_AMP] = ACTIONS(2280), - [anon_sym_BANG] = ACTIONS(2280), - [anon_sym_TILDE] = ACTIONS(2280), - [anon_sym_PLUS] = ACTIONS(2278), - [anon_sym_DASH] = ACTIONS(2278), - [anon_sym_DASH_DASH] = ACTIONS(2280), - [anon_sym_PLUS_PLUS] = ACTIONS(2280), - [anon_sym_sizeof] = ACTIONS(2278), - [sym_number_literal] = ACTIONS(2280), - [anon_sym_SQUOTE] = ACTIONS(2280), - [anon_sym_DQUOTE] = ACTIONS(2280), - [sym_true] = ACTIONS(2278), - [sym_false] = ACTIONS(2278), - [sym_null] = ACTIONS(2278), - [sym_identifier] = ACTIONS(2278), - [sym_comment] = ACTIONS(37), + [sym__declarator] = STATE(446), + [sym_pointer_declarator] = STATE(446), + [sym_function_declarator] = STATE(446), + [sym_array_declarator] = STATE(446), + [sym_init_declarator] = STATE(447), + [anon_sym_LPAREN2] = ACTIONS(174), + [anon_sym_STAR] = ACTIONS(176), + [sym_identifier] = ACTIONS(1165), + [sym_comment] = ACTIONS(59), }, [650] = { - [sym__declarator] = STATE(411), - [sym_pointer_declarator] = STATE(411), - [sym_function_declarator] = STATE(411), - [sym_array_declarator] = STATE(411), - [sym_init_declarator] = STATE(45), - [anon_sym_LPAREN2] = ACTIONS(88), - [anon_sym_STAR] = ACTIONS(489), - [sym_identifier] = ACTIONS(1006), - [sym_comment] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(920), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(922), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(922), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(922), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(922), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(922), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(922), + [sym_preproc_directive] = ACTIONS(922), + [anon_sym_typedef] = ACTIONS(922), + [anon_sym_extern] = ACTIONS(922), + [anon_sym_LBRACE] = ACTIONS(920), + [anon_sym_LPAREN2] = ACTIONS(920), + [anon_sym_STAR] = ACTIONS(920), + [anon_sym_static] = ACTIONS(922), + [anon_sym_auto] = ACTIONS(922), + [anon_sym_register] = ACTIONS(922), + [anon_sym_inline] = ACTIONS(922), + [anon_sym_const] = ACTIONS(922), + [anon_sym_restrict] = ACTIONS(922), + [anon_sym_volatile] = ACTIONS(922), + [anon_sym__Atomic] = ACTIONS(922), + [anon_sym_unsigned] = ACTIONS(922), + [anon_sym_long] = ACTIONS(922), + [anon_sym_short] = ACTIONS(922), + [sym_primitive_type] = ACTIONS(922), + [anon_sym_enum] = ACTIONS(922), + [anon_sym_struct] = ACTIONS(922), + [anon_sym_union] = ACTIONS(922), + [anon_sym_if] = ACTIONS(922), + [anon_sym_else] = ACTIONS(922), + [anon_sym_switch] = ACTIONS(922), + [anon_sym_case] = ACTIONS(922), + [anon_sym_default] = ACTIONS(922), + [anon_sym_while] = ACTIONS(922), + [anon_sym_do] = ACTIONS(922), + [anon_sym_for] = ACTIONS(922), + [anon_sym_return] = ACTIONS(922), + [anon_sym_break] = ACTIONS(922), + [anon_sym_continue] = ACTIONS(922), + [anon_sym_goto] = ACTIONS(922), + [anon_sym_AMP] = ACTIONS(920), + [anon_sym_BANG] = ACTIONS(920), + [anon_sym_TILDE] = ACTIONS(920), + [anon_sym_PLUS] = ACTIONS(922), + [anon_sym_DASH] = ACTIONS(922), + [anon_sym_DASH_DASH] = ACTIONS(920), + [anon_sym_PLUS_PLUS] = ACTIONS(920), + [anon_sym_sizeof] = ACTIONS(922), + [sym_number_literal] = ACTIONS(920), + [anon_sym_SQUOTE] = ACTIONS(920), + [anon_sym_DQUOTE] = ACTIONS(920), + [sym_true] = ACTIONS(922), + [sym_false] = ACTIONS(922), + [sym_null] = ACTIONS(922), + [sym_identifier] = ACTIONS(922), + [sym_comment] = ACTIONS(59), }, [651] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2282), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2282), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2282), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2282), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2282), - [sym_preproc_directive] = ACTIONS(2282), - [anon_sym_SEMI] = ACTIONS(2284), - [anon_sym_typedef] = ACTIONS(2282), - [anon_sym_extern] = ACTIONS(2282), - [anon_sym_LBRACE] = ACTIONS(2284), - [anon_sym_RBRACE] = ACTIONS(2284), - [anon_sym_LPAREN2] = ACTIONS(2284), - [anon_sym_STAR] = ACTIONS(2284), - [anon_sym_static] = ACTIONS(2282), - [anon_sym_auto] = ACTIONS(2282), - [anon_sym_register] = ACTIONS(2282), - [anon_sym_inline] = ACTIONS(2282), - [anon_sym_const] = ACTIONS(2282), - [anon_sym_restrict] = ACTIONS(2282), - [anon_sym_volatile] = ACTIONS(2282), - [anon_sym__Atomic] = ACTIONS(2282), - [anon_sym_unsigned] = ACTIONS(2282), - [anon_sym_long] = ACTIONS(2282), - [anon_sym_short] = ACTIONS(2282), - [sym_primitive_type] = ACTIONS(2282), - [anon_sym_enum] = ACTIONS(2282), - [anon_sym_struct] = ACTIONS(2282), - [anon_sym_union] = ACTIONS(2282), - [anon_sym_if] = ACTIONS(2282), - [anon_sym_else] = ACTIONS(2282), - [anon_sym_switch] = ACTIONS(2282), - [anon_sym_case] = ACTIONS(2282), - [anon_sym_default] = ACTIONS(2282), - [anon_sym_while] = ACTIONS(2282), - [anon_sym_do] = ACTIONS(2282), - [anon_sym_for] = ACTIONS(2282), - [anon_sym_return] = ACTIONS(2282), - [anon_sym_break] = ACTIONS(2282), - [anon_sym_continue] = ACTIONS(2282), - [anon_sym_goto] = ACTIONS(2282), - [anon_sym_AMP] = ACTIONS(2284), - [anon_sym_BANG] = ACTIONS(2284), - [anon_sym_TILDE] = ACTIONS(2284), - [anon_sym_PLUS] = ACTIONS(2282), - [anon_sym_DASH] = ACTIONS(2282), - [anon_sym_DASH_DASH] = ACTIONS(2284), - [anon_sym_PLUS_PLUS] = ACTIONS(2284), - [anon_sym_sizeof] = ACTIONS(2282), - [sym_number_literal] = ACTIONS(2284), - [anon_sym_SQUOTE] = ACTIONS(2284), - [anon_sym_DQUOTE] = ACTIONS(2284), - [sym_true] = ACTIONS(2282), - [sym_false] = ACTIONS(2282), - [sym_null] = ACTIONS(2282), - [sym_identifier] = ACTIONS(2282), - [sym_comment] = ACTIONS(37), + [sym_preproc_include] = STATE(830), + [sym_preproc_def] = STATE(830), + [sym_preproc_function_def] = STATE(830), + [sym_preproc_call] = STATE(830), + [sym_preproc_if_in_compound_statement] = STATE(830), + [sym_preproc_ifdef_in_compound_statement] = STATE(830), + [sym_declaration] = STATE(830), + [sym_type_definition] = STATE(830), + [sym__declaration_specifiers] = STATE(371), + [sym_compound_statement] = STATE(830), + [sym_storage_class_specifier] = STATE(30), + [sym_type_qualifier] = STATE(30), + [sym__type_specifier] = STATE(25), + [sym_sized_type_specifier] = STATE(25), + [sym_enum_specifier] = STATE(25), + [sym_struct_specifier] = STATE(25), + [sym_union_specifier] = STATE(25), + [sym_labeled_statement] = STATE(830), + [sym_expression_statement] = STATE(830), + [sym_if_statement] = STATE(830), + [sym_switch_statement] = STATE(830), + [sym_case_statement] = STATE(830), + [sym_while_statement] = STATE(830), + [sym_do_statement] = STATE(830), + [sym_for_statement] = STATE(830), + [sym_return_statement] = STATE(830), + [sym_break_statement] = STATE(830), + [sym_continue_statement] = STATE(830), + [sym_goto_statement] = STATE(830), + [sym__expression] = STATE(372), + [sym_comma_expression] = STATE(373), + [sym_conditional_expression] = STATE(372), + [sym_assignment_expression] = STATE(372), + [sym_pointer_expression] = STATE(372), + [sym_logical_expression] = STATE(372), + [sym_bitwise_expression] = STATE(372), + [sym_equality_expression] = STATE(372), + [sym_relational_expression] = STATE(372), + [sym_shift_expression] = STATE(372), + [sym_math_expression] = STATE(372), + [sym_cast_expression] = STATE(372), + [sym_sizeof_expression] = STATE(372), + [sym_subscript_expression] = STATE(372), + [sym_call_expression] = STATE(372), + [sym_field_expression] = STATE(372), + [sym_compound_literal_expression] = STATE(372), + [sym_parenthesized_expression] = STATE(372), + [sym_char_literal] = STATE(372), + [sym_concatenated_string] = STATE(372), + [sym_string_literal] = STATE(374), + [sym__empty_declaration] = STATE(830), + [sym_macro_type_specifier] = STATE(25), + [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(830), + [aux_sym__declaration_specifiers_repeat1] = STATE(30), + [aux_sym_sized_type_specifier_repeat1] = STATE(31), + [anon_sym_SEMI] = ACTIONS(928), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(7), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(9), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(930), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(932), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(932), + [sym_preproc_directive] = ACTIONS(15), + [anon_sym_typedef] = ACTIONS(17), + [anon_sym_extern] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(439), + [anon_sym_RBRACE] = ACTIONS(2270), + [anon_sym_LPAREN2] = ACTIONS(936), + [anon_sym_STAR] = ACTIONS(938), + [anon_sym_static] = ACTIONS(25), + [anon_sym_auto] = ACTIONS(25), + [anon_sym_register] = ACTIONS(25), + [anon_sym_inline] = ACTIONS(25), + [anon_sym_const] = ACTIONS(27), + [anon_sym_restrict] = ACTIONS(27), + [anon_sym_volatile] = ACTIONS(27), + [anon_sym__Atomic] = ACTIONS(27), + [anon_sym_unsigned] = ACTIONS(29), + [anon_sym_long] = ACTIONS(29), + [anon_sym_short] = ACTIONS(29), + [sym_primitive_type] = ACTIONS(31), + [anon_sym_enum] = ACTIONS(33), + [anon_sym_struct] = ACTIONS(35), + [anon_sym_union] = ACTIONS(37), + [anon_sym_if] = ACTIONS(940), + [anon_sym_switch] = ACTIONS(942), + [anon_sym_case] = ACTIONS(944), + [anon_sym_default] = ACTIONS(946), + [anon_sym_while] = ACTIONS(948), + [anon_sym_do] = ACTIONS(950), + [anon_sym_for] = ACTIONS(952), + [anon_sym_return] = ACTIONS(954), + [anon_sym_break] = ACTIONS(956), + [anon_sym_continue] = ACTIONS(958), + [anon_sym_goto] = ACTIONS(960), + [anon_sym_AMP] = ACTIONS(938), + [anon_sym_BANG] = ACTIONS(962), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_DASH_DASH] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(968), + [anon_sym_sizeof] = ACTIONS(970), + [sym_number_literal] = ACTIONS(972), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(974), + [sym_false] = ACTIONS(974), + [sym_null] = ACTIONS(974), + [sym_identifier] = ACTIONS(976), + [sym_comment] = ACTIONS(59), }, [652] = { - [sym_compound_statement] = STATE(872), - [sym_labeled_statement] = STATE(872), - [sym_expression_statement] = STATE(872), - [sym_if_statement] = STATE(872), - [sym_switch_statement] = STATE(872), - [sym_case_statement] = STATE(872), - [sym_while_statement] = STATE(872), - [sym_do_statement] = STATE(872), - [sym_for_statement] = STATE(872), - [sym_return_statement] = STATE(872), - [sym_break_statement] = STATE(872), - [sym_continue_statement] = STATE(872), - [sym_goto_statement] = STATE(872), - [sym__expression] = STATE(228), - [sym_comma_expression] = STATE(229), - [sym_conditional_expression] = STATE(228), - [sym_assignment_expression] = STATE(228), - [sym_pointer_expression] = STATE(228), - [sym_logical_expression] = STATE(228), - [sym_bitwise_expression] = STATE(228), - [sym_equality_expression] = STATE(228), - [sym_relational_expression] = STATE(228), - [sym_shift_expression] = STATE(228), - [sym_math_expression] = STATE(228), - [sym_cast_expression] = STATE(228), - [sym_sizeof_expression] = STATE(228), - [sym_subscript_expression] = STATE(228), - [sym_call_expression] = STATE(228), - [sym_field_expression] = STATE(228), - [sym_compound_literal_expression] = STATE(228), - [sym_parenthesized_expression] = STATE(228), - [sym_char_literal] = STATE(228), - [sym_concatenated_string] = STATE(228), - [sym_string_literal] = STATE(230), - [anon_sym_SEMI] = ACTIONS(503), - [anon_sym_LBRACE] = ACTIONS(229), - [anon_sym_LPAREN2] = ACTIONS(507), - [anon_sym_STAR] = ACTIONS(509), - [anon_sym_if] = ACTIONS(2286), - [anon_sym_switch] = ACTIONS(2288), - [anon_sym_case] = ACTIONS(2290), - [anon_sym_default] = ACTIONS(2292), - [anon_sym_while] = ACTIONS(2294), - [anon_sym_do] = ACTIONS(948), - [anon_sym_for] = ACTIONS(2296), - [anon_sym_return] = ACTIONS(525), - [anon_sym_break] = ACTIONS(527), - [anon_sym_continue] = ACTIONS(529), - [anon_sym_goto] = ACTIONS(531), - [anon_sym_AMP] = ACTIONS(509), - [anon_sym_BANG] = ACTIONS(533), - [anon_sym_TILDE] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DASH] = ACTIONS(537), - [anon_sym_DASH_DASH] = ACTIONS(539), - [anon_sym_PLUS_PLUS] = ACTIONS(539), - [anon_sym_sizeof] = ACTIONS(541), - [sym_number_literal] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(547), - [sym_false] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [sym_identifier] = ACTIONS(2298), - [sym_comment] = ACTIONS(37), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(990), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(990), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(990), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(990), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(990), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(990), + [sym_preproc_directive] = ACTIONS(990), + [anon_sym_typedef] = ACTIONS(990), + [anon_sym_extern] = ACTIONS(990), + [anon_sym_LPAREN2] = ACTIONS(988), + [anon_sym_STAR] = ACTIONS(988), + [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_restrict] = ACTIONS(990), + [anon_sym_volatile] = ACTIONS(990), + [anon_sym__Atomic] = 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_AMP] = ACTIONS(988), + [anon_sym_BANG] = ACTIONS(988), + [anon_sym_TILDE] = ACTIONS(988), + [anon_sym_PLUS] = ACTIONS(990), + [anon_sym_DASH] = ACTIONS(990), + [anon_sym_DASH_DASH] = ACTIONS(988), + [anon_sym_PLUS_PLUS] = ACTIONS(988), + [anon_sym_sizeof] = ACTIONS(990), + [sym_number_literal] = ACTIONS(988), + [anon_sym_SQUOTE] = ACTIONS(988), + [anon_sym_DQUOTE] = ACTIONS(988), + [sym_true] = ACTIONS(990), + [sym_false] = ACTIONS(990), + [sym_null] = ACTIONS(990), + [sym_identifier] = ACTIONS(990), + [sym_comment] = ACTIONS(59), }, [653] = { - [sym_compound_statement] = STATE(630), - [sym_labeled_statement] = STATE(630), - [sym_expression_statement] = STATE(630), - [sym_if_statement] = STATE(630), - [sym_switch_statement] = STATE(630), - [sym_case_statement] = STATE(630), - [sym_while_statement] = STATE(630), - [sym_do_statement] = STATE(630), - [sym_for_statement] = STATE(630), - [sym_return_statement] = STATE(630), - [sym_break_statement] = STATE(630), - [sym_continue_statement] = STATE(630), - [sym_goto_statement] = STATE(630), - [sym__expression] = STATE(228), - [sym_comma_expression] = STATE(229), - [sym_conditional_expression] = STATE(228), - [sym_assignment_expression] = STATE(228), - [sym_pointer_expression] = STATE(228), - [sym_logical_expression] = STATE(228), - [sym_bitwise_expression] = STATE(228), - [sym_equality_expression] = STATE(228), - [sym_relational_expression] = STATE(228), - [sym_shift_expression] = STATE(228), - [sym_math_expression] = STATE(228), - [sym_cast_expression] = STATE(228), - [sym_sizeof_expression] = STATE(228), - [sym_subscript_expression] = STATE(228), - [sym_call_expression] = STATE(228), - [sym_field_expression] = STATE(228), - [sym_compound_literal_expression] = STATE(228), - [sym_parenthesized_expression] = STATE(228), - [sym_char_literal] = STATE(228), - [sym_concatenated_string] = STATE(228), - [sym_string_literal] = STATE(230), - [anon_sym_SEMI] = ACTIONS(503), - [anon_sym_LBRACE] = ACTIONS(229), - [anon_sym_LPAREN2] = ACTIONS(507), - [anon_sym_STAR] = ACTIONS(509), - [anon_sym_if] = ACTIONS(938), - [anon_sym_switch] = ACTIONS(940), - [anon_sym_case] = ACTIONS(942), - [anon_sym_default] = ACTIONS(944), - [anon_sym_while] = ACTIONS(946), - [anon_sym_do] = ACTIONS(948), - [anon_sym_for] = ACTIONS(950), - [anon_sym_return] = ACTIONS(525), - [anon_sym_break] = ACTIONS(527), - [anon_sym_continue] = ACTIONS(529), - [anon_sym_goto] = ACTIONS(531), - [anon_sym_AMP] = ACTIONS(509), - [anon_sym_BANG] = ACTIONS(533), - [anon_sym_TILDE] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DASH] = ACTIONS(537), - [anon_sym_DASH_DASH] = ACTIONS(539), - [anon_sym_PLUS_PLUS] = ACTIONS(539), - [anon_sym_sizeof] = ACTIONS(541), - [sym_number_literal] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(547), - [sym_false] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [sym_identifier] = ACTIONS(952), - [sym_comment] = ACTIONS(37), + [aux_sym_declaration_repeat1] = STATE(382), + [anon_sym_SEMI] = ACTIONS(2272), + [anon_sym_COMMA] = ACTIONS(437), + [sym_comment] = ACTIONS(59), }, [654] = { - [sym_argument_list] = STATE(430), - [anon_sym_LPAREN2] = ACTIONS(1012), - [anon_sym_STAR] = ACTIONS(1497), - [anon_sym_LBRACK] = ACTIONS(1016), - [anon_sym_EQ] = ACTIONS(1499), - [anon_sym_COLON] = ACTIONS(2300), - [anon_sym_QMARK] = ACTIONS(1503), - [anon_sym_STAR_EQ] = ACTIONS(1505), - [anon_sym_SLASH_EQ] = ACTIONS(1505), - [anon_sym_PERCENT_EQ] = ACTIONS(1505), - [anon_sym_PLUS_EQ] = ACTIONS(1505), - [anon_sym_DASH_EQ] = ACTIONS(1505), - [anon_sym_LT_LT_EQ] = ACTIONS(1505), - [anon_sym_GT_GT_EQ] = ACTIONS(1505), - [anon_sym_AMP_EQ] = ACTIONS(1505), - [anon_sym_CARET_EQ] = ACTIONS(1505), - [anon_sym_PIPE_EQ] = ACTIONS(1505), - [anon_sym_AMP] = ACTIONS(1507), - [anon_sym_PIPE_PIPE] = ACTIONS(1509), - [anon_sym_AMP_AMP] = ACTIONS(1511), - [anon_sym_PIPE] = ACTIONS(1513), - [anon_sym_CARET] = ACTIONS(1515), - [anon_sym_EQ_EQ] = ACTIONS(1517), - [anon_sym_BANG_EQ] = ACTIONS(1517), - [anon_sym_LT] = ACTIONS(1519), - [anon_sym_GT] = ACTIONS(1519), - [anon_sym_LT_EQ] = ACTIONS(1521), - [anon_sym_GT_EQ] = ACTIONS(1521), - [anon_sym_LT_LT] = ACTIONS(1523), - [anon_sym_GT_GT] = ACTIONS(1523), - [anon_sym_PLUS] = ACTIONS(1525), - [anon_sym_DASH] = ACTIONS(1525), - [anon_sym_SLASH] = ACTIONS(1497), - [anon_sym_PERCENT] = ACTIONS(1497), - [anon_sym_DASH_DASH] = ACTIONS(1044), - [anon_sym_PLUS_PLUS] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1046), - [anon_sym_DASH_GT] = ACTIONS(1046), - [sym_comment] = ACTIONS(37), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2274), + [sym_comment] = ACTIONS(59), }, [655] = { - [sym_declaration] = STATE(649), - [sym_type_definition] = STATE(649), - [sym__declaration_specifiers] = STATE(650), - [sym_compound_statement] = STATE(649), - [sym_storage_class_specifier] = STATE(87), - [sym_type_qualifier] = STATE(87), - [sym__type_specifier] = STATE(86), - [sym_sized_type_specifier] = STATE(86), - [sym_enum_specifier] = STATE(86), - [sym_struct_specifier] = STATE(86), - [sym_union_specifier] = STATE(86), - [sym_labeled_statement] = STATE(649), - [sym_expression_statement] = STATE(649), - [sym_if_statement] = STATE(649), - [sym_switch_statement] = STATE(649), - [sym_case_statement] = STATE(649), - [sym_while_statement] = STATE(649), - [sym_do_statement] = STATE(649), - [sym_for_statement] = STATE(649), - [sym_return_statement] = STATE(649), - [sym_break_statement] = STATE(649), - [sym_continue_statement] = STATE(649), - [sym_goto_statement] = STATE(649), - [sym__expression] = STATE(228), - [sym_comma_expression] = STATE(229), - [sym_conditional_expression] = STATE(228), - [sym_assignment_expression] = STATE(228), - [sym_pointer_expression] = STATE(228), - [sym_logical_expression] = STATE(228), - [sym_bitwise_expression] = STATE(228), - [sym_equality_expression] = STATE(228), - [sym_relational_expression] = STATE(228), - [sym_shift_expression] = STATE(228), - [sym_math_expression] = STATE(228), - [sym_cast_expression] = STATE(228), - [sym_sizeof_expression] = STATE(228), - [sym_subscript_expression] = STATE(228), - [sym_call_expression] = STATE(228), - [sym_field_expression] = STATE(228), - [sym_compound_literal_expression] = STATE(228), - [sym_parenthesized_expression] = STATE(228), - [sym_char_literal] = STATE(228), - [sym_concatenated_string] = STATE(228), - [sym_string_literal] = STATE(230), - [sym_macro_type_specifier] = STATE(86), - [aux_sym__declaration_specifiers_repeat1] = STATE(87), - [aux_sym_sized_type_specifier_repeat1] = STATE(88), - [anon_sym_SEMI] = ACTIONS(503), - [anon_sym_typedef] = ACTIONS(17), - [anon_sym_extern] = ACTIONS(21), - [anon_sym_LBRACE] = ACTIONS(229), - [anon_sym_LPAREN2] = ACTIONS(507), - [anon_sym_STAR] = ACTIONS(509), - [anon_sym_static] = ACTIONS(21), - [anon_sym_auto] = ACTIONS(21), - [anon_sym_register] = ACTIONS(21), - [anon_sym_inline] = ACTIONS(21), - [anon_sym_const] = ACTIONS(23), - [anon_sym_restrict] = ACTIONS(23), - [anon_sym_volatile] = ACTIONS(23), - [anon_sym__Atomic] = ACTIONS(23), - [anon_sym_unsigned] = ACTIONS(167), - [anon_sym_long] = ACTIONS(167), - [anon_sym_short] = ACTIONS(167), - [sym_primitive_type] = ACTIONS(169), - [anon_sym_enum] = ACTIONS(29), - [anon_sym_struct] = ACTIONS(31), - [anon_sym_union] = ACTIONS(33), - [anon_sym_if] = ACTIONS(938), - [anon_sym_switch] = ACTIONS(940), - [anon_sym_case] = ACTIONS(942), - [anon_sym_default] = ACTIONS(944), - [anon_sym_while] = ACTIONS(946), - [anon_sym_do] = ACTIONS(948), - [anon_sym_for] = ACTIONS(950), - [anon_sym_return] = ACTIONS(525), - [anon_sym_break] = ACTIONS(527), - [anon_sym_continue] = ACTIONS(529), - [anon_sym_goto] = ACTIONS(531), - [anon_sym_AMP] = ACTIONS(509), - [anon_sym_BANG] = ACTIONS(533), - [anon_sym_TILDE] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DASH] = ACTIONS(537), - [anon_sym_DASH_DASH] = ACTIONS(539), - [anon_sym_PLUS_PLUS] = ACTIONS(539), - [anon_sym_sizeof] = ACTIONS(541), - [sym_number_literal] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(547), - [sym_false] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [sym_identifier] = ACTIONS(2302), - [sym_comment] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(1220), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1222), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1222), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1222), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1222), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1222), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1222), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1222), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1222), + [sym_preproc_directive] = ACTIONS(1222), + [anon_sym_typedef] = ACTIONS(1222), + [anon_sym_extern] = ACTIONS(1222), + [anon_sym_LBRACE] = ACTIONS(1220), + [anon_sym_LPAREN2] = ACTIONS(1220), + [anon_sym_STAR] = ACTIONS(1220), + [anon_sym_static] = ACTIONS(1222), + [anon_sym_auto] = ACTIONS(1222), + [anon_sym_register] = ACTIONS(1222), + [anon_sym_inline] = ACTIONS(1222), + [anon_sym_const] = ACTIONS(1222), + [anon_sym_restrict] = ACTIONS(1222), + [anon_sym_volatile] = ACTIONS(1222), + [anon_sym__Atomic] = ACTIONS(1222), + [anon_sym_unsigned] = ACTIONS(1222), + [anon_sym_long] = ACTIONS(1222), + [anon_sym_short] = ACTIONS(1222), + [sym_primitive_type] = ACTIONS(1222), + [anon_sym_enum] = ACTIONS(1222), + [anon_sym_struct] = ACTIONS(1222), + [anon_sym_union] = ACTIONS(1222), + [anon_sym_if] = ACTIONS(1222), + [anon_sym_else] = ACTIONS(1222), + [anon_sym_switch] = ACTIONS(1222), + [anon_sym_case] = ACTIONS(1222), + [anon_sym_default] = ACTIONS(1222), + [anon_sym_while] = ACTIONS(1222), + [anon_sym_do] = ACTIONS(1222), + [anon_sym_for] = ACTIONS(1222), + [anon_sym_return] = ACTIONS(1222), + [anon_sym_break] = ACTIONS(1222), + [anon_sym_continue] = ACTIONS(1222), + [anon_sym_goto] = ACTIONS(1222), + [anon_sym_AMP] = ACTIONS(1220), + [anon_sym_BANG] = ACTIONS(1220), + [anon_sym_TILDE] = ACTIONS(1220), + [anon_sym_PLUS] = ACTIONS(1222), + [anon_sym_DASH] = ACTIONS(1222), + [anon_sym_DASH_DASH] = ACTIONS(1220), + [anon_sym_PLUS_PLUS] = ACTIONS(1220), + [anon_sym_sizeof] = ACTIONS(1222), + [sym_number_literal] = ACTIONS(1220), + [anon_sym_SQUOTE] = ACTIONS(1220), + [anon_sym_DQUOTE] = ACTIONS(1220), + [sym_true] = ACTIONS(1222), + [sym_false] = ACTIONS(1222), + [sym_null] = ACTIONS(1222), + [sym_identifier] = ACTIONS(1222), + [sym_comment] = ACTIONS(59), }, [656] = { - [sym_compound_statement] = STATE(651), - [sym_labeled_statement] = STATE(651), - [sym_expression_statement] = STATE(651), - [sym_if_statement] = STATE(651), - [sym_switch_statement] = STATE(651), - [sym_case_statement] = STATE(651), - [sym_while_statement] = STATE(651), - [sym_do_statement] = STATE(651), - [sym_for_statement] = STATE(651), - [sym_return_statement] = STATE(651), - [sym_break_statement] = STATE(651), - [sym_continue_statement] = STATE(651), - [sym_goto_statement] = STATE(651), - [sym__expression] = STATE(228), - [sym_comma_expression] = STATE(229), - [sym_conditional_expression] = STATE(228), - [sym_assignment_expression] = STATE(228), - [sym_pointer_expression] = STATE(228), - [sym_logical_expression] = STATE(228), - [sym_bitwise_expression] = STATE(228), - [sym_equality_expression] = STATE(228), - [sym_relational_expression] = STATE(228), - [sym_shift_expression] = STATE(228), - [sym_math_expression] = STATE(228), - [sym_cast_expression] = STATE(228), - [sym_sizeof_expression] = STATE(228), - [sym_subscript_expression] = STATE(228), - [sym_call_expression] = STATE(228), - [sym_field_expression] = STATE(228), - [sym_compound_literal_expression] = STATE(228), - [sym_parenthesized_expression] = STATE(228), - [sym_char_literal] = STATE(228), - [sym_concatenated_string] = STATE(228), - [sym_string_literal] = STATE(230), - [anon_sym_SEMI] = ACTIONS(503), - [anon_sym_LBRACE] = ACTIONS(229), - [anon_sym_LPAREN2] = ACTIONS(507), - [anon_sym_STAR] = ACTIONS(509), - [anon_sym_if] = ACTIONS(938), - [anon_sym_switch] = ACTIONS(940), - [anon_sym_case] = ACTIONS(942), - [anon_sym_default] = ACTIONS(944), - [anon_sym_while] = ACTIONS(946), - [anon_sym_do] = ACTIONS(948), - [anon_sym_for] = ACTIONS(950), - [anon_sym_return] = ACTIONS(525), - [anon_sym_break] = ACTIONS(527), - [anon_sym_continue] = ACTIONS(529), - [anon_sym_goto] = ACTIONS(531), - [anon_sym_AMP] = ACTIONS(509), - [anon_sym_BANG] = ACTIONS(533), - [anon_sym_TILDE] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DASH] = ACTIONS(537), - [anon_sym_DASH_DASH] = ACTIONS(539), - [anon_sym_PLUS_PLUS] = ACTIONS(539), - [anon_sym_sizeof] = ACTIONS(541), - [sym_number_literal] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(547), - [sym_false] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [sym_identifier] = ACTIONS(952), - [sym_comment] = ACTIONS(37), + [sym_parameter_list] = STATE(278), + [anon_sym_SEMI] = ACTIONS(2276), + [anon_sym_LPAREN2] = ACTIONS(441), + [anon_sym_LBRACK] = ACTIONS(736), + [sym_comment] = ACTIONS(59), }, [657] = { - [anon_sym_while] = ACTIONS(2304), - [sym_comment] = ACTIONS(37), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1236), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1236), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1236), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1236), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1236), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1236), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1236), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1236), + [sym_preproc_directive] = ACTIONS(1236), + [anon_sym_typedef] = ACTIONS(1236), + [anon_sym_extern] = ACTIONS(1236), + [anon_sym_LPAREN2] = ACTIONS(1234), + [anon_sym_STAR] = ACTIONS(1234), + [anon_sym_static] = ACTIONS(1236), + [anon_sym_auto] = ACTIONS(1236), + [anon_sym_register] = ACTIONS(1236), + [anon_sym_inline] = ACTIONS(1236), + [anon_sym_const] = ACTIONS(1236), + [anon_sym_restrict] = ACTIONS(1236), + [anon_sym_volatile] = ACTIONS(1236), + [anon_sym__Atomic] = ACTIONS(1236), + [anon_sym_unsigned] = ACTIONS(1236), + [anon_sym_long] = ACTIONS(1236), + [anon_sym_short] = ACTIONS(1236), + [sym_primitive_type] = ACTIONS(1236), + [anon_sym_enum] = ACTIONS(1236), + [anon_sym_struct] = ACTIONS(1236), + [anon_sym_union] = ACTIONS(1236), + [anon_sym_AMP] = ACTIONS(1234), + [anon_sym_BANG] = ACTIONS(1234), + [anon_sym_TILDE] = ACTIONS(1234), + [anon_sym_PLUS] = ACTIONS(1236), + [anon_sym_DASH] = ACTIONS(1236), + [anon_sym_DASH_DASH] = ACTIONS(1234), + [anon_sym_PLUS_PLUS] = ACTIONS(1234), + [anon_sym_sizeof] = ACTIONS(1236), + [sym_number_literal] = ACTIONS(1234), + [anon_sym_SQUOTE] = ACTIONS(1234), + [anon_sym_DQUOTE] = ACTIONS(1234), + [sym_true] = ACTIONS(1236), + [sym_false] = ACTIONS(1236), + [sym_null] = ACTIONS(1236), + [sym_identifier] = ACTIONS(1236), + [sym_comment] = ACTIONS(59), }, [658] = { - [sym_declaration] = STATE(876), - [sym__declaration_specifiers] = STATE(650), - [sym_storage_class_specifier] = STATE(87), - [sym_type_qualifier] = STATE(87), - [sym__type_specifier] = STATE(86), - [sym_sized_type_specifier] = STATE(86), - [sym_enum_specifier] = STATE(86), - [sym_struct_specifier] = STATE(86), - [sym_union_specifier] = STATE(86), - [sym__expression] = STATE(877), - [sym_conditional_expression] = STATE(877), - [sym_assignment_expression] = STATE(877), - [sym_pointer_expression] = STATE(877), - [sym_logical_expression] = STATE(877), - [sym_bitwise_expression] = STATE(877), - [sym_equality_expression] = STATE(877), - [sym_relational_expression] = STATE(877), - [sym_shift_expression] = STATE(877), - [sym_math_expression] = STATE(877), - [sym_cast_expression] = STATE(877), - [sym_sizeof_expression] = STATE(877), - [sym_subscript_expression] = STATE(877), - [sym_call_expression] = STATE(877), - [sym_field_expression] = STATE(877), - [sym_compound_literal_expression] = STATE(877), - [sym_parenthesized_expression] = STATE(877), - [sym_char_literal] = STATE(877), - [sym_concatenated_string] = STATE(877), - [sym_string_literal] = STATE(342), - [sym_macro_type_specifier] = STATE(86), - [aux_sym__declaration_specifiers_repeat1] = STATE(87), - [aux_sym_sized_type_specifier_repeat1] = STATE(88), - [anon_sym_SEMI] = ACTIONS(2306), - [anon_sym_extern] = ACTIONS(21), - [anon_sym_LPAREN2] = ACTIONS(780), - [anon_sym_STAR] = ACTIONS(782), - [anon_sym_static] = ACTIONS(21), - [anon_sym_auto] = ACTIONS(21), - [anon_sym_register] = ACTIONS(21), - [anon_sym_inline] = ACTIONS(21), - [anon_sym_const] = ACTIONS(23), - [anon_sym_restrict] = ACTIONS(23), - [anon_sym_volatile] = ACTIONS(23), - [anon_sym__Atomic] = ACTIONS(23), - [anon_sym_unsigned] = ACTIONS(167), - [anon_sym_long] = ACTIONS(167), - [anon_sym_short] = ACTIONS(167), - [sym_primitive_type] = ACTIONS(169), - [anon_sym_enum] = ACTIONS(29), - [anon_sym_struct] = ACTIONS(31), - [anon_sym_union] = ACTIONS(33), - [anon_sym_AMP] = ACTIONS(782), - [anon_sym_BANG] = ACTIONS(784), - [anon_sym_TILDE] = ACTIONS(786), - [anon_sym_PLUS] = ACTIONS(788), - [anon_sym_DASH] = ACTIONS(788), - [anon_sym_DASH_DASH] = ACTIONS(790), - [anon_sym_PLUS_PLUS] = ACTIONS(790), - [anon_sym_sizeof] = ACTIONS(792), - [sym_number_literal] = ACTIONS(2308), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(2310), - [sym_false] = ACTIONS(2310), - [sym_null] = ACTIONS(2310), - [sym_identifier] = ACTIONS(1547), - [sym_comment] = ACTIONS(37), + [sym_preproc_include] = STATE(472), + [sym_preproc_def] = STATE(472), + [sym_preproc_function_def] = STATE(472), + [sym_preproc_call] = STATE(472), + [sym_preproc_if] = STATE(472), + [sym_preproc_ifdef] = STATE(472), + [sym_function_definition] = STATE(472), + [sym_declaration] = STATE(472), + [sym_type_definition] = STATE(472), + [sym__declaration_specifiers] = STATE(24), + [sym_linkage_specification] = STATE(472), + [sym_storage_class_specifier] = STATE(30), + [sym_type_qualifier] = STATE(30), + [sym__type_specifier] = STATE(25), + [sym_sized_type_specifier] = STATE(25), + [sym_enum_specifier] = STATE(25), + [sym_struct_specifier] = STATE(25), + [sym_union_specifier] = STATE(25), + [sym__expression] = STATE(26), + [sym_conditional_expression] = STATE(26), + [sym_assignment_expression] = STATE(26), + [sym_pointer_expression] = STATE(26), + [sym_logical_expression] = STATE(26), + [sym_bitwise_expression] = STATE(26), + [sym_equality_expression] = STATE(26), + [sym_relational_expression] = STATE(26), + [sym_shift_expression] = STATE(26), + [sym_math_expression] = STATE(26), + [sym_cast_expression] = STATE(26), + [sym_sizeof_expression] = STATE(26), + [sym_subscript_expression] = STATE(26), + [sym_call_expression] = STATE(27), + [sym_field_expression] = STATE(26), + [sym_compound_literal_expression] = STATE(26), + [sym_parenthesized_expression] = STATE(26), + [sym_char_literal] = STATE(26), + [sym_concatenated_string] = STATE(26), + [sym_string_literal] = STATE(28), + [sym__empty_declaration] = STATE(472), + [sym_macro_type_specifier] = STATE(25), + [aux_sym_translation_unit_repeat1] = STATE(472), + [aux_sym__declaration_specifiers_repeat1] = STATE(30), + [aux_sym_sized_type_specifier_repeat1] = STATE(31), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(7), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(9), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(11), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(13), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(13), + [sym_preproc_directive] = ACTIONS(15), + [anon_sym_typedef] = ACTIONS(17), + [anon_sym_extern] = ACTIONS(19), + [anon_sym_RBRACE] = ACTIONS(2278), + [anon_sym_LPAREN2] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_static] = ACTIONS(25), + [anon_sym_auto] = ACTIONS(25), + [anon_sym_register] = ACTIONS(25), + [anon_sym_inline] = ACTIONS(25), + [anon_sym_const] = ACTIONS(27), + [anon_sym_restrict] = ACTIONS(27), + [anon_sym_volatile] = ACTIONS(27), + [anon_sym__Atomic] = ACTIONS(27), + [anon_sym_unsigned] = ACTIONS(29), + [anon_sym_long] = ACTIONS(29), + [anon_sym_short] = ACTIONS(29), + [sym_primitive_type] = ACTIONS(31), + [anon_sym_enum] = ACTIONS(33), + [anon_sym_struct] = ACTIONS(35), + [anon_sym_union] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(41), + [anon_sym_PLUS] = ACTIONS(43), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_DASH_DASH] = ACTIONS(45), + [anon_sym_PLUS_PLUS] = ACTIONS(45), + [anon_sym_sizeof] = ACTIONS(47), + [sym_number_literal] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(55), + [sym_false] = ACTIONS(55), + [sym_null] = ACTIONS(55), + [sym_identifier] = ACTIONS(57), + [sym_comment] = ACTIONS(59), }, [659] = { - [sym_compound_statement] = STATE(668), - [sym_labeled_statement] = STATE(668), - [sym_expression_statement] = STATE(668), - [sym_if_statement] = STATE(668), - [sym_switch_statement] = STATE(668), - [sym_case_statement] = STATE(668), - [sym_while_statement] = STATE(668), - [sym_do_statement] = STATE(668), - [sym_for_statement] = STATE(668), - [sym_return_statement] = STATE(668), - [sym_break_statement] = STATE(668), - [sym_continue_statement] = STATE(668), - [sym_goto_statement] = STATE(668), - [sym__expression] = STATE(228), - [sym_comma_expression] = STATE(229), - [sym_conditional_expression] = STATE(228), - [sym_assignment_expression] = STATE(228), - [sym_pointer_expression] = STATE(228), - [sym_logical_expression] = STATE(228), - [sym_bitwise_expression] = STATE(228), - [sym_equality_expression] = STATE(228), - [sym_relational_expression] = STATE(228), - [sym_shift_expression] = STATE(228), - [sym_math_expression] = STATE(228), - [sym_cast_expression] = STATE(228), - [sym_sizeof_expression] = STATE(228), - [sym_subscript_expression] = STATE(228), - [sym_call_expression] = STATE(228), - [sym_field_expression] = STATE(228), - [sym_compound_literal_expression] = STATE(228), - [sym_parenthesized_expression] = STATE(228), - [sym_char_literal] = STATE(228), - [sym_concatenated_string] = STATE(228), - [sym_string_literal] = STATE(230), - [anon_sym_SEMI] = ACTIONS(503), - [anon_sym_LBRACE] = ACTIONS(229), - [anon_sym_LPAREN2] = ACTIONS(507), - [anon_sym_STAR] = ACTIONS(509), - [anon_sym_if] = ACTIONS(938), - [anon_sym_switch] = ACTIONS(940), - [anon_sym_case] = ACTIONS(942), - [anon_sym_default] = ACTIONS(944), - [anon_sym_while] = ACTIONS(946), - [anon_sym_do] = ACTIONS(948), - [anon_sym_for] = ACTIONS(950), - [anon_sym_return] = ACTIONS(525), - [anon_sym_break] = ACTIONS(527), - [anon_sym_continue] = ACTIONS(529), - [anon_sym_goto] = ACTIONS(531), - [anon_sym_AMP] = ACTIONS(509), - [anon_sym_BANG] = ACTIONS(533), - [anon_sym_TILDE] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DASH] = ACTIONS(537), - [anon_sym_DASH_DASH] = ACTIONS(539), - [anon_sym_PLUS_PLUS] = ACTIONS(539), - [anon_sym_sizeof] = ACTIONS(541), - [sym_number_literal] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(547), - [sym_false] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [sym_identifier] = ACTIONS(952), - [sym_comment] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(1444), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1446), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1446), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1446), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1446), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1446), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1446), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1446), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1446), + [sym_preproc_directive] = ACTIONS(1446), + [anon_sym_typedef] = ACTIONS(1446), + [anon_sym_extern] = ACTIONS(1446), + [anon_sym_LBRACE] = ACTIONS(1444), + [anon_sym_LPAREN2] = ACTIONS(1444), + [anon_sym_STAR] = ACTIONS(1444), + [anon_sym_static] = ACTIONS(1446), + [anon_sym_auto] = ACTIONS(1446), + [anon_sym_register] = ACTIONS(1446), + [anon_sym_inline] = ACTIONS(1446), + [anon_sym_const] = ACTIONS(1446), + [anon_sym_restrict] = ACTIONS(1446), + [anon_sym_volatile] = ACTIONS(1446), + [anon_sym__Atomic] = ACTIONS(1446), + [anon_sym_unsigned] = ACTIONS(1446), + [anon_sym_long] = ACTIONS(1446), + [anon_sym_short] = ACTIONS(1446), + [sym_primitive_type] = ACTIONS(1446), + [anon_sym_enum] = ACTIONS(1446), + [anon_sym_struct] = ACTIONS(1446), + [anon_sym_union] = ACTIONS(1446), + [anon_sym_if] = ACTIONS(1446), + [anon_sym_else] = ACTIONS(1446), + [anon_sym_switch] = ACTIONS(1446), + [anon_sym_case] = ACTIONS(1446), + [anon_sym_default] = ACTIONS(1446), + [anon_sym_while] = ACTIONS(1446), + [anon_sym_do] = ACTIONS(1446), + [anon_sym_for] = ACTIONS(1446), + [anon_sym_return] = ACTIONS(1446), + [anon_sym_break] = ACTIONS(1446), + [anon_sym_continue] = ACTIONS(1446), + [anon_sym_goto] = ACTIONS(1446), + [anon_sym_AMP] = ACTIONS(1444), + [anon_sym_BANG] = ACTIONS(1444), + [anon_sym_TILDE] = ACTIONS(1444), + [anon_sym_PLUS] = ACTIONS(1446), + [anon_sym_DASH] = ACTIONS(1446), + [anon_sym_DASH_DASH] = ACTIONS(1444), + [anon_sym_PLUS_PLUS] = ACTIONS(1444), + [anon_sym_sizeof] = ACTIONS(1446), + [sym_number_literal] = ACTIONS(1444), + [anon_sym_SQUOTE] = ACTIONS(1444), + [anon_sym_DQUOTE] = ACTIONS(1444), + [sym_true] = ACTIONS(1446), + [sym_false] = ACTIONS(1446), + [sym_null] = ACTIONS(1446), + [sym_identifier] = ACTIONS(1446), + [sym_comment] = ACTIONS(59), }, [660] = { - [sym_parenthesized_expression] = STATE(878), - [anon_sym_LPAREN2] = ACTIONS(916), - [sym_comment] = ACTIONS(37), + [sym_preproc_include] = STATE(588), + [sym_preproc_def] = STATE(588), + [sym_preproc_function_def] = STATE(588), + [sym_preproc_call] = STATE(588), + [sym_preproc_if_in_compound_statement] = STATE(588), + [sym_preproc_ifdef_in_compound_statement] = STATE(588), + [sym_declaration] = STATE(588), + [sym_type_definition] = STATE(588), + [sym__declaration_specifiers] = STATE(371), + [sym_compound_statement] = STATE(588), + [sym_storage_class_specifier] = STATE(30), + [sym_type_qualifier] = STATE(30), + [sym__type_specifier] = STATE(25), + [sym_sized_type_specifier] = STATE(25), + [sym_enum_specifier] = STATE(25), + [sym_struct_specifier] = STATE(25), + [sym_union_specifier] = STATE(25), + [sym_labeled_statement] = STATE(588), + [sym_expression_statement] = STATE(588), + [sym_if_statement] = STATE(588), + [sym_switch_statement] = STATE(588), + [sym_case_statement] = STATE(588), + [sym_while_statement] = STATE(588), + [sym_do_statement] = STATE(588), + [sym_for_statement] = STATE(588), + [sym_return_statement] = STATE(588), + [sym_break_statement] = STATE(588), + [sym_continue_statement] = STATE(588), + [sym_goto_statement] = STATE(588), + [sym__expression] = STATE(372), + [sym_comma_expression] = STATE(373), + [sym_conditional_expression] = STATE(372), + [sym_assignment_expression] = STATE(372), + [sym_pointer_expression] = STATE(372), + [sym_logical_expression] = STATE(372), + [sym_bitwise_expression] = STATE(372), + [sym_equality_expression] = STATE(372), + [sym_relational_expression] = STATE(372), + [sym_shift_expression] = STATE(372), + [sym_math_expression] = STATE(372), + [sym_cast_expression] = STATE(372), + [sym_sizeof_expression] = STATE(372), + [sym_subscript_expression] = STATE(372), + [sym_call_expression] = STATE(372), + [sym_field_expression] = STATE(372), + [sym_compound_literal_expression] = STATE(372), + [sym_parenthesized_expression] = STATE(372), + [sym_char_literal] = STATE(372), + [sym_concatenated_string] = STATE(372), + [sym_string_literal] = STATE(374), + [sym__empty_declaration] = STATE(588), + [sym_macro_type_specifier] = STATE(25), + [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(588), + [aux_sym__declaration_specifiers_repeat1] = STATE(30), + [aux_sym_sized_type_specifier_repeat1] = STATE(31), + [anon_sym_SEMI] = ACTIONS(928), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(7), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(9), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(930), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(932), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(932), + [sym_preproc_directive] = ACTIONS(15), + [anon_sym_typedef] = ACTIONS(17), + [anon_sym_extern] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(439), + [anon_sym_RBRACE] = ACTIONS(2280), + [anon_sym_LPAREN2] = ACTIONS(936), + [anon_sym_STAR] = ACTIONS(938), + [anon_sym_static] = ACTIONS(25), + [anon_sym_auto] = ACTIONS(25), + [anon_sym_register] = ACTIONS(25), + [anon_sym_inline] = ACTIONS(25), + [anon_sym_const] = ACTIONS(27), + [anon_sym_restrict] = ACTIONS(27), + [anon_sym_volatile] = ACTIONS(27), + [anon_sym__Atomic] = ACTIONS(27), + [anon_sym_unsigned] = ACTIONS(29), + [anon_sym_long] = ACTIONS(29), + [anon_sym_short] = ACTIONS(29), + [sym_primitive_type] = ACTIONS(31), + [anon_sym_enum] = ACTIONS(33), + [anon_sym_struct] = ACTIONS(35), + [anon_sym_union] = ACTIONS(37), + [anon_sym_if] = ACTIONS(940), + [anon_sym_switch] = ACTIONS(942), + [anon_sym_case] = ACTIONS(944), + [anon_sym_default] = ACTIONS(946), + [anon_sym_while] = ACTIONS(948), + [anon_sym_do] = ACTIONS(950), + [anon_sym_for] = ACTIONS(952), + [anon_sym_return] = ACTIONS(954), + [anon_sym_break] = ACTIONS(956), + [anon_sym_continue] = ACTIONS(958), + [anon_sym_goto] = ACTIONS(960), + [anon_sym_AMP] = ACTIONS(938), + [anon_sym_BANG] = ACTIONS(962), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_DASH_DASH] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(968), + [anon_sym_sizeof] = ACTIONS(970), + [sym_number_literal] = ACTIONS(972), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(974), + [sym_false] = ACTIONS(974), + [sym_null] = ACTIONS(974), + [sym_identifier] = ACTIONS(976), + [sym_comment] = ACTIONS(59), }, [661] = { - [sym__expression] = STATE(880), - [sym_conditional_expression] = STATE(880), - [sym_assignment_expression] = STATE(880), - [sym_pointer_expression] = STATE(880), - [sym_logical_expression] = STATE(880), - [sym_bitwise_expression] = STATE(880), - [sym_equality_expression] = STATE(880), - [sym_relational_expression] = STATE(880), - [sym_shift_expression] = STATE(880), - [sym_math_expression] = STATE(880), - [sym_cast_expression] = STATE(880), - [sym_sizeof_expression] = STATE(880), - [sym_subscript_expression] = STATE(880), - [sym_call_expression] = STATE(880), - [sym_field_expression] = STATE(880), - [sym_compound_literal_expression] = STATE(880), - [sym_parenthesized_expression] = STATE(880), - [sym_char_literal] = STATE(880), - [sym_concatenated_string] = STATE(880), - [sym_string_literal] = STATE(342), - [anon_sym_SEMI] = ACTIONS(2312), - [anon_sym_LPAREN2] = ACTIONS(780), - [anon_sym_STAR] = ACTIONS(782), - [anon_sym_AMP] = ACTIONS(782), - [anon_sym_BANG] = ACTIONS(784), - [anon_sym_TILDE] = ACTIONS(786), - [anon_sym_PLUS] = ACTIONS(788), - [anon_sym_DASH] = ACTIONS(788), - [anon_sym_DASH_DASH] = ACTIONS(790), - [anon_sym_PLUS_PLUS] = ACTIONS(790), - [anon_sym_sizeof] = ACTIONS(792), - [sym_number_literal] = ACTIONS(2314), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(2316), - [sym_false] = ACTIONS(2316), - [sym_null] = ACTIONS(2316), - [sym_identifier] = ACTIONS(2316), - [sym_comment] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(1540), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1542), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1542), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1542), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1542), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1542), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1542), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1542), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1542), + [sym_preproc_directive] = ACTIONS(1542), + [anon_sym_typedef] = ACTIONS(1542), + [anon_sym_extern] = ACTIONS(1542), + [anon_sym_LBRACE] = ACTIONS(1540), + [anon_sym_LPAREN2] = ACTIONS(1540), + [anon_sym_STAR] = ACTIONS(1540), + [anon_sym_static] = ACTIONS(1542), + [anon_sym_auto] = ACTIONS(1542), + [anon_sym_register] = ACTIONS(1542), + [anon_sym_inline] = ACTIONS(1542), + [anon_sym_const] = ACTIONS(1542), + [anon_sym_restrict] = ACTIONS(1542), + [anon_sym_volatile] = ACTIONS(1542), + [anon_sym__Atomic] = ACTIONS(1542), + [anon_sym_unsigned] = ACTIONS(1542), + [anon_sym_long] = ACTIONS(1542), + [anon_sym_short] = ACTIONS(1542), + [sym_primitive_type] = ACTIONS(1542), + [anon_sym_enum] = ACTIONS(1542), + [anon_sym_struct] = ACTIONS(1542), + [anon_sym_union] = ACTIONS(1542), + [anon_sym_if] = ACTIONS(1542), + [anon_sym_else] = ACTIONS(1542), + [anon_sym_switch] = ACTIONS(1542), + [anon_sym_case] = ACTIONS(1542), + [anon_sym_default] = ACTIONS(1542), + [anon_sym_while] = ACTIONS(1542), + [anon_sym_do] = ACTIONS(1542), + [anon_sym_for] = ACTIONS(1542), + [anon_sym_return] = ACTIONS(1542), + [anon_sym_break] = ACTIONS(1542), + [anon_sym_continue] = ACTIONS(1542), + [anon_sym_goto] = ACTIONS(1542), + [anon_sym_AMP] = ACTIONS(1540), + [anon_sym_BANG] = ACTIONS(1540), + [anon_sym_TILDE] = ACTIONS(1540), + [anon_sym_PLUS] = ACTIONS(1542), + [anon_sym_DASH] = ACTIONS(1542), + [anon_sym_DASH_DASH] = ACTIONS(1540), + [anon_sym_PLUS_PLUS] = ACTIONS(1540), + [anon_sym_sizeof] = ACTIONS(1542), + [sym_number_literal] = ACTIONS(1540), + [anon_sym_SQUOTE] = ACTIONS(1540), + [anon_sym_DQUOTE] = ACTIONS(1540), + [sym_true] = ACTIONS(1542), + [sym_false] = ACTIONS(1542), + [sym_null] = ACTIONS(1542), + [sym_identifier] = ACTIONS(1542), + [sym_comment] = ACTIONS(59), }, [662] = { - [anon_sym_SEMI] = ACTIONS(990), - [anon_sym_extern] = ACTIONS(79), - [anon_sym_LPAREN2] = ACTIONS(995), - [anon_sym_STAR] = ACTIONS(999), - [anon_sym_LBRACK] = ACTIONS(990), - [anon_sym_EQ] = ACTIONS(1002), - [anon_sym_static] = ACTIONS(79), - [anon_sym_auto] = ACTIONS(79), - [anon_sym_register] = ACTIONS(79), - [anon_sym_inline] = ACTIONS(79), - [anon_sym_const] = ACTIONS(79), - [anon_sym_restrict] = ACTIONS(79), - [anon_sym_volatile] = ACTIONS(79), - [anon_sym__Atomic] = ACTIONS(79), - [anon_sym_QMARK] = ACTIONS(990), - [anon_sym_STAR_EQ] = ACTIONS(990), - [anon_sym_SLASH_EQ] = ACTIONS(990), - [anon_sym_PERCENT_EQ] = ACTIONS(990), - [anon_sym_PLUS_EQ] = ACTIONS(990), - [anon_sym_DASH_EQ] = ACTIONS(990), - [anon_sym_LT_LT_EQ] = ACTIONS(990), - [anon_sym_GT_GT_EQ] = ACTIONS(990), - [anon_sym_AMP_EQ] = ACTIONS(990), - [anon_sym_CARET_EQ] = ACTIONS(990), - [anon_sym_PIPE_EQ] = ACTIONS(990), - [anon_sym_AMP] = ACTIONS(1002), - [anon_sym_PIPE_PIPE] = ACTIONS(990), - [anon_sym_AMP_AMP] = ACTIONS(990), - [anon_sym_PIPE] = ACTIONS(1002), - [anon_sym_CARET] = ACTIONS(1002), - [anon_sym_EQ_EQ] = ACTIONS(990), - [anon_sym_BANG_EQ] = ACTIONS(990), - [anon_sym_LT] = ACTIONS(1002), - [anon_sym_GT] = ACTIONS(1002), - [anon_sym_LT_EQ] = ACTIONS(990), - [anon_sym_GT_EQ] = ACTIONS(990), - [anon_sym_LT_LT] = ACTIONS(1002), - [anon_sym_GT_GT] = ACTIONS(1002), - [anon_sym_PLUS] = ACTIONS(1002), - [anon_sym_DASH] = ACTIONS(1002), - [anon_sym_SLASH] = ACTIONS(1002), - [anon_sym_PERCENT] = ACTIONS(1002), - [anon_sym_DASH_DASH] = ACTIONS(990), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_DOT] = ACTIONS(990), - [anon_sym_DASH_GT] = ACTIONS(990), - [sym_identifier] = ACTIONS(79), - [sym_comment] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(2282), + [anon_sym_RPAREN] = ACTIONS(2282), + [anon_sym_LPAREN2] = ACTIONS(2282), + [anon_sym_LBRACK] = ACTIONS(2282), + [sym_comment] = ACTIONS(59), }, [663] = { - [sym_argument_list] = STATE(430), - [anon_sym_SEMI] = ACTIONS(2318), - [anon_sym_LPAREN2] = ACTIONS(1012), - [anon_sym_STAR] = ACTIONS(1319), - [anon_sym_LBRACK] = ACTIONS(1016), - [anon_sym_EQ] = ACTIONS(1321), - [anon_sym_QMARK] = ACTIONS(1323), - [anon_sym_STAR_EQ] = ACTIONS(1325), - [anon_sym_SLASH_EQ] = ACTIONS(1325), - [anon_sym_PERCENT_EQ] = ACTIONS(1325), - [anon_sym_PLUS_EQ] = ACTIONS(1325), - [anon_sym_DASH_EQ] = ACTIONS(1325), - [anon_sym_LT_LT_EQ] = ACTIONS(1325), - [anon_sym_GT_GT_EQ] = ACTIONS(1325), - [anon_sym_AMP_EQ] = ACTIONS(1325), - [anon_sym_CARET_EQ] = ACTIONS(1325), - [anon_sym_PIPE_EQ] = ACTIONS(1325), - [anon_sym_AMP] = ACTIONS(1327), - [anon_sym_PIPE_PIPE] = ACTIONS(1329), - [anon_sym_AMP_AMP] = ACTIONS(1331), - [anon_sym_PIPE] = ACTIONS(1333), - [anon_sym_CARET] = ACTIONS(1335), - [anon_sym_EQ_EQ] = ACTIONS(1337), - [anon_sym_BANG_EQ] = ACTIONS(1337), - [anon_sym_LT] = ACTIONS(1339), - [anon_sym_GT] = ACTIONS(1339), - [anon_sym_LT_EQ] = ACTIONS(1341), - [anon_sym_GT_EQ] = ACTIONS(1341), - [anon_sym_LT_LT] = ACTIONS(1343), - [anon_sym_GT_GT] = ACTIONS(1343), - [anon_sym_PLUS] = ACTIONS(1345), - [anon_sym_DASH] = ACTIONS(1345), - [anon_sym_SLASH] = ACTIONS(1319), - [anon_sym_PERCENT] = ACTIONS(1319), - [anon_sym_DASH_DASH] = ACTIONS(1044), - [anon_sym_PLUS_PLUS] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1046), - [anon_sym_DASH_GT] = ACTIONS(1046), - [sym_comment] = ACTIONS(37), + [sym_argument_list] = STATE(98), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(1016), + [anon_sym_LBRACK] = ACTIONS(188), + [anon_sym_RBRACK] = ACTIONS(2284), + [anon_sym_EQ] = ACTIONS(1020), + [anon_sym_QMARK] = ACTIONS(1022), + [anon_sym_STAR_EQ] = ACTIONS(1024), + [anon_sym_SLASH_EQ] = ACTIONS(1024), + [anon_sym_PERCENT_EQ] = ACTIONS(1024), + [anon_sym_PLUS_EQ] = ACTIONS(1024), + [anon_sym_DASH_EQ] = ACTIONS(1024), + [anon_sym_LT_LT_EQ] = ACTIONS(1024), + [anon_sym_GT_GT_EQ] = ACTIONS(1024), + [anon_sym_AMP_EQ] = ACTIONS(1024), + [anon_sym_CARET_EQ] = ACTIONS(1024), + [anon_sym_PIPE_EQ] = ACTIONS(1024), + [anon_sym_AMP] = ACTIONS(1026), + [anon_sym_PIPE_PIPE] = ACTIONS(1028), + [anon_sym_AMP_AMP] = ACTIONS(1030), + [anon_sym_PIPE] = ACTIONS(1032), + [anon_sym_CARET] = ACTIONS(1034), + [anon_sym_EQ_EQ] = ACTIONS(1036), + [anon_sym_BANG_EQ] = ACTIONS(1036), + [anon_sym_LT] = ACTIONS(1038), + [anon_sym_GT] = ACTIONS(1038), + [anon_sym_LT_EQ] = ACTIONS(1040), + [anon_sym_GT_EQ] = ACTIONS(1040), + [anon_sym_LT_LT] = ACTIONS(1042), + [anon_sym_GT_GT] = ACTIONS(1042), + [anon_sym_PLUS] = ACTIONS(1044), + [anon_sym_DASH] = ACTIONS(1044), + [anon_sym_SLASH] = ACTIONS(1016), + [anon_sym_PERCENT] = ACTIONS(1016), + [anon_sym_DASH_DASH] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(216), + [anon_sym_DOT] = ACTIONS(218), + [anon_sym_DASH_GT] = ACTIONS(218), + [sym_comment] = ACTIONS(59), }, [664] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2320), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2320), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2320), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2320), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2320), - [sym_preproc_directive] = ACTIONS(2320), - [anon_sym_SEMI] = ACTIONS(2322), - [anon_sym_typedef] = ACTIONS(2320), - [anon_sym_extern] = ACTIONS(2320), - [anon_sym_LBRACE] = ACTIONS(2322), - [anon_sym_RBRACE] = ACTIONS(2322), - [anon_sym_LPAREN2] = ACTIONS(2322), - [anon_sym_STAR] = ACTIONS(2322), - [anon_sym_static] = ACTIONS(2320), - [anon_sym_auto] = ACTIONS(2320), - [anon_sym_register] = ACTIONS(2320), - [anon_sym_inline] = ACTIONS(2320), - [anon_sym_const] = ACTIONS(2320), - [anon_sym_restrict] = ACTIONS(2320), - [anon_sym_volatile] = ACTIONS(2320), - [anon_sym__Atomic] = ACTIONS(2320), - [anon_sym_unsigned] = ACTIONS(2320), - [anon_sym_long] = ACTIONS(2320), - [anon_sym_short] = ACTIONS(2320), - [sym_primitive_type] = ACTIONS(2320), - [anon_sym_enum] = ACTIONS(2320), - [anon_sym_struct] = ACTIONS(2320), - [anon_sym_union] = ACTIONS(2320), - [anon_sym_if] = ACTIONS(2320), - [anon_sym_else] = ACTIONS(2320), - [anon_sym_switch] = ACTIONS(2320), - [anon_sym_case] = ACTIONS(2320), - [anon_sym_default] = ACTIONS(2320), - [anon_sym_while] = ACTIONS(2320), - [anon_sym_do] = ACTIONS(2320), - [anon_sym_for] = ACTIONS(2320), - [anon_sym_return] = ACTIONS(2320), - [anon_sym_break] = ACTIONS(2320), - [anon_sym_continue] = ACTIONS(2320), - [anon_sym_goto] = ACTIONS(2320), - [anon_sym_AMP] = ACTIONS(2322), - [anon_sym_BANG] = ACTIONS(2322), - [anon_sym_TILDE] = ACTIONS(2322), - [anon_sym_PLUS] = ACTIONS(2320), - [anon_sym_DASH] = ACTIONS(2320), - [anon_sym_DASH_DASH] = ACTIONS(2322), - [anon_sym_PLUS_PLUS] = ACTIONS(2322), - [anon_sym_sizeof] = ACTIONS(2320), - [sym_number_literal] = ACTIONS(2322), - [anon_sym_SQUOTE] = ACTIONS(2322), - [anon_sym_DQUOTE] = ACTIONS(2322), - [sym_true] = ACTIONS(2320), - [sym_false] = ACTIONS(2320), - [sym_null] = ACTIONS(2320), - [sym_identifier] = ACTIONS(2320), - [sym_comment] = ACTIONS(37), + [anon_sym_COMMA] = ACTIONS(2286), + [anon_sym_RPAREN] = ACTIONS(2286), + [sym_comment] = ACTIONS(59), }, [665] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2324), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2324), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2324), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2324), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2324), - [sym_preproc_directive] = ACTIONS(2324), - [anon_sym_SEMI] = ACTIONS(2326), - [anon_sym_typedef] = ACTIONS(2324), - [anon_sym_extern] = ACTIONS(2324), - [anon_sym_LBRACE] = ACTIONS(2326), - [anon_sym_RBRACE] = ACTIONS(2326), - [anon_sym_LPAREN2] = ACTIONS(2326), - [anon_sym_STAR] = ACTIONS(2326), - [anon_sym_static] = ACTIONS(2324), - [anon_sym_auto] = ACTIONS(2324), - [anon_sym_register] = ACTIONS(2324), - [anon_sym_inline] = ACTIONS(2324), - [anon_sym_const] = ACTIONS(2324), - [anon_sym_restrict] = ACTIONS(2324), - [anon_sym_volatile] = ACTIONS(2324), - [anon_sym__Atomic] = ACTIONS(2324), - [anon_sym_unsigned] = ACTIONS(2324), - [anon_sym_long] = ACTIONS(2324), - [anon_sym_short] = ACTIONS(2324), - [sym_primitive_type] = ACTIONS(2324), - [anon_sym_enum] = ACTIONS(2324), - [anon_sym_struct] = ACTIONS(2324), - [anon_sym_union] = ACTIONS(2324), - [anon_sym_if] = ACTIONS(2324), - [anon_sym_else] = ACTIONS(2324), - [anon_sym_switch] = ACTIONS(2324), - [anon_sym_case] = ACTIONS(2324), - [anon_sym_default] = ACTIONS(2324), - [anon_sym_while] = ACTIONS(2324), - [anon_sym_do] = ACTIONS(2324), - [anon_sym_for] = ACTIONS(2324), - [anon_sym_return] = ACTIONS(2324), - [anon_sym_break] = ACTIONS(2324), - [anon_sym_continue] = ACTIONS(2324), - [anon_sym_goto] = ACTIONS(2324), - [anon_sym_AMP] = ACTIONS(2326), - [anon_sym_BANG] = ACTIONS(2326), - [anon_sym_TILDE] = ACTIONS(2326), - [anon_sym_PLUS] = ACTIONS(2324), - [anon_sym_DASH] = ACTIONS(2324), - [anon_sym_DASH_DASH] = ACTIONS(2326), - [anon_sym_PLUS_PLUS] = ACTIONS(2326), - [anon_sym_sizeof] = ACTIONS(2324), - [sym_number_literal] = ACTIONS(2326), - [anon_sym_SQUOTE] = ACTIONS(2326), - [anon_sym_DQUOTE] = ACTIONS(2326), - [sym_true] = ACTIONS(2324), - [sym_false] = ACTIONS(2324), - [sym_null] = ACTIONS(2324), - [sym_identifier] = ACTIONS(2324), - [sym_comment] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(2288), + [anon_sym_COMMA] = ACTIONS(2288), + [anon_sym_RPAREN] = ACTIONS(2288), + [anon_sym_LBRACE] = ACTIONS(2288), + [anon_sym_LPAREN2] = ACTIONS(2288), + [anon_sym_LBRACK] = ACTIONS(2288), + [anon_sym_EQ] = ACTIONS(2288), + [anon_sym_COLON] = ACTIONS(2288), + [sym_comment] = ACTIONS(59), }, [666] = { - [anon_sym_RPAREN] = ACTIONS(2328), - [sym_comment] = ACTIONS(37), + [aux_sym_parameter_list_repeat1] = STATE(666), + [anon_sym_COMMA] = ACTIONS(2290), + [anon_sym_RPAREN] = ACTIONS(2286), + [sym_comment] = ACTIONS(59), }, [667] = { - [anon_sym_COMMA] = ACTIONS(2330), - [anon_sym_RPAREN] = ACTIONS(2330), - [anon_sym_SEMI] = ACTIONS(2330), - [anon_sym_RBRACE] = ACTIONS(2330), - [anon_sym_LPAREN2] = ACTIONS(2330), - [anon_sym_STAR] = ACTIONS(2332), - [anon_sym_LBRACK] = ACTIONS(2330), - [anon_sym_RBRACK] = ACTIONS(2330), - [anon_sym_EQ] = ACTIONS(2332), - [anon_sym_COLON] = ACTIONS(2330), - [anon_sym_QMARK] = ACTIONS(2330), - [anon_sym_STAR_EQ] = ACTIONS(2330), - [anon_sym_SLASH_EQ] = ACTIONS(2330), - [anon_sym_PERCENT_EQ] = ACTIONS(2330), - [anon_sym_PLUS_EQ] = ACTIONS(2330), - [anon_sym_DASH_EQ] = ACTIONS(2330), - [anon_sym_LT_LT_EQ] = ACTIONS(2330), - [anon_sym_GT_GT_EQ] = ACTIONS(2330), - [anon_sym_AMP_EQ] = ACTIONS(2330), - [anon_sym_CARET_EQ] = ACTIONS(2330), - [anon_sym_PIPE_EQ] = ACTIONS(2330), - [anon_sym_AMP] = ACTIONS(2332), - [anon_sym_PIPE_PIPE] = ACTIONS(2330), - [anon_sym_AMP_AMP] = ACTIONS(2330), - [anon_sym_PIPE] = ACTIONS(2332), - [anon_sym_CARET] = ACTIONS(2332), - [anon_sym_EQ_EQ] = ACTIONS(2330), - [anon_sym_BANG_EQ] = ACTIONS(2330), - [anon_sym_LT] = ACTIONS(2332), - [anon_sym_GT] = ACTIONS(2332), - [anon_sym_LT_EQ] = ACTIONS(2330), - [anon_sym_GT_EQ] = ACTIONS(2330), - [anon_sym_LT_LT] = ACTIONS(2332), - [anon_sym_GT_GT] = ACTIONS(2332), - [anon_sym_PLUS] = ACTIONS(2332), - [anon_sym_DASH] = ACTIONS(2332), - [anon_sym_SLASH] = ACTIONS(2332), - [anon_sym_PERCENT] = ACTIONS(2332), - [anon_sym_DASH_DASH] = ACTIONS(2330), - [anon_sym_PLUS_PLUS] = ACTIONS(2330), - [anon_sym_DOT] = ACTIONS(2330), - [anon_sym_DASH_GT] = ACTIONS(2330), - [sym_comment] = ACTIONS(37), + [sym__declarator] = STATE(192), + [sym__abstract_declarator] = STATE(294), + [sym_pointer_declarator] = STATE(192), + [sym_abstract_pointer_declarator] = STATE(294), + [sym_function_declarator] = STATE(192), + [sym_abstract_function_declarator] = STATE(294), + [sym_array_declarator] = STATE(192), + [sym_abstract_array_declarator] = STATE(294), + [sym_type_qualifier] = STATE(836), + [sym_parameter_list] = STATE(151), + [aux_sym_type_definition_repeat1] = STATE(836), + [anon_sym_RPAREN] = ACTIONS(766), + [anon_sym_LPAREN2] = ACTIONS(1253), + [anon_sym_STAR] = ACTIONS(1772), + [anon_sym_LBRACK] = ACTIONS(313), + [anon_sym_const] = ACTIONS(27), + [anon_sym_restrict] = ACTIONS(27), + [anon_sym_volatile] = ACTIONS(27), + [anon_sym__Atomic] = ACTIONS(27), + [sym_identifier] = ACTIONS(433), + [sym_comment] = ACTIONS(59), }, [668] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2334), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2334), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2334), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2334), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2334), - [sym_preproc_directive] = ACTIONS(2334), - [anon_sym_SEMI] = ACTIONS(2336), - [anon_sym_typedef] = ACTIONS(2334), - [anon_sym_extern] = ACTIONS(2334), - [anon_sym_LBRACE] = ACTIONS(2336), - [anon_sym_RBRACE] = ACTIONS(2336), - [anon_sym_LPAREN2] = ACTIONS(2336), - [anon_sym_STAR] = ACTIONS(2336), - [anon_sym_static] = ACTIONS(2334), - [anon_sym_auto] = ACTIONS(2334), - [anon_sym_register] = ACTIONS(2334), - [anon_sym_inline] = ACTIONS(2334), - [anon_sym_const] = ACTIONS(2334), - [anon_sym_restrict] = ACTIONS(2334), - [anon_sym_volatile] = ACTIONS(2334), - [anon_sym__Atomic] = ACTIONS(2334), - [anon_sym_unsigned] = ACTIONS(2334), - [anon_sym_long] = ACTIONS(2334), - [anon_sym_short] = ACTIONS(2334), - [sym_primitive_type] = ACTIONS(2334), - [anon_sym_enum] = ACTIONS(2334), - [anon_sym_struct] = ACTIONS(2334), - [anon_sym_union] = ACTIONS(2334), - [anon_sym_if] = ACTIONS(2334), - [anon_sym_else] = ACTIONS(2334), - [anon_sym_switch] = ACTIONS(2334), - [anon_sym_case] = ACTIONS(2334), - [anon_sym_default] = ACTIONS(2334), - [anon_sym_while] = ACTIONS(2334), - [anon_sym_do] = ACTIONS(2334), - [anon_sym_for] = ACTIONS(2334), - [anon_sym_return] = ACTIONS(2334), - [anon_sym_break] = ACTIONS(2334), - [anon_sym_continue] = ACTIONS(2334), - [anon_sym_goto] = ACTIONS(2334), - [anon_sym_AMP] = ACTIONS(2336), - [anon_sym_BANG] = ACTIONS(2336), - [anon_sym_TILDE] = ACTIONS(2336), - [anon_sym_PLUS] = ACTIONS(2334), - [anon_sym_DASH] = ACTIONS(2334), - [anon_sym_DASH_DASH] = ACTIONS(2336), - [anon_sym_PLUS_PLUS] = ACTIONS(2336), - [anon_sym_sizeof] = ACTIONS(2334), - [sym_number_literal] = ACTIONS(2336), - [anon_sym_SQUOTE] = ACTIONS(2336), - [anon_sym_DQUOTE] = ACTIONS(2336), - [sym_true] = ACTIONS(2334), - [sym_false] = ACTIONS(2334), - [sym_null] = ACTIONS(2334), - [sym_identifier] = ACTIONS(2334), - [sym_comment] = ACTIONS(37), + [anon_sym_COMMA] = ACTIONS(155), + [anon_sym_RPAREN] = ACTIONS(2293), + [anon_sym_extern] = ACTIONS(157), + [anon_sym_LPAREN2] = ACTIONS(2296), + [anon_sym_STAR] = ACTIONS(155), + [anon_sym_LBRACK] = ACTIONS(2293), + [anon_sym_static] = ACTIONS(157), + [anon_sym_auto] = ACTIONS(157), + [anon_sym_register] = ACTIONS(157), + [anon_sym_inline] = ACTIONS(157), + [anon_sym_const] = ACTIONS(157), + [anon_sym_restrict] = ACTIONS(157), + [anon_sym_volatile] = ACTIONS(157), + [anon_sym__Atomic] = ACTIONS(157), + [sym_identifier] = ACTIONS(157), + [sym_comment] = ACTIONS(59), }, [669] = { - [sym_argument_list] = STATE(430), - [anon_sym_COMMA] = ACTIONS(1008), - [anon_sym_SEMI] = ACTIONS(2338), - [anon_sym_LPAREN2] = ACTIONS(1012), - [anon_sym_STAR] = ACTIONS(1014), - [anon_sym_LBRACK] = ACTIONS(1016), - [anon_sym_EQ] = ACTIONS(1018), - [anon_sym_QMARK] = ACTIONS(1020), - [anon_sym_STAR_EQ] = ACTIONS(1022), - [anon_sym_SLASH_EQ] = ACTIONS(1022), - [anon_sym_PERCENT_EQ] = ACTIONS(1022), - [anon_sym_PLUS_EQ] = ACTIONS(1022), - [anon_sym_DASH_EQ] = ACTIONS(1022), - [anon_sym_LT_LT_EQ] = ACTIONS(1022), - [anon_sym_GT_GT_EQ] = ACTIONS(1022), - [anon_sym_AMP_EQ] = ACTIONS(1022), - [anon_sym_CARET_EQ] = ACTIONS(1022), - [anon_sym_PIPE_EQ] = ACTIONS(1022), - [anon_sym_AMP] = ACTIONS(1024), - [anon_sym_PIPE_PIPE] = ACTIONS(1026), - [anon_sym_AMP_AMP] = ACTIONS(1028), - [anon_sym_PIPE] = ACTIONS(1030), - [anon_sym_CARET] = ACTIONS(1032), - [anon_sym_EQ_EQ] = ACTIONS(1034), - [anon_sym_BANG_EQ] = ACTIONS(1034), - [anon_sym_LT] = ACTIONS(1036), - [anon_sym_GT] = ACTIONS(1036), - [anon_sym_LT_EQ] = ACTIONS(1038), - [anon_sym_GT_EQ] = ACTIONS(1038), - [anon_sym_LT_LT] = ACTIONS(1040), - [anon_sym_GT_GT] = ACTIONS(1040), - [anon_sym_PLUS] = ACTIONS(1042), - [anon_sym_DASH] = ACTIONS(1042), - [anon_sym_SLASH] = ACTIONS(1014), - [anon_sym_PERCENT] = ACTIONS(1014), - [anon_sym_DASH_DASH] = ACTIONS(1044), - [anon_sym_PLUS_PLUS] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1046), - [anon_sym_DASH_GT] = ACTIONS(1046), - [sym_comment] = ACTIONS(37), + [sym__declarator] = STATE(344), + [sym__abstract_declarator] = STATE(487), + [sym_pointer_declarator] = STATE(344), + [sym_abstract_pointer_declarator] = STATE(487), + [sym_function_declarator] = STATE(344), + [sym_abstract_function_declarator] = STATE(487), + [sym_array_declarator] = STATE(344), + [sym_abstract_array_declarator] = STATE(487), + [sym_type_qualifier] = STATE(837), + [sym_parameter_list] = STATE(151), + [aux_sym_type_definition_repeat1] = STATE(837), + [anon_sym_COMMA] = ACTIONS(1265), + [anon_sym_RPAREN] = ACTIONS(1265), + [anon_sym_LPAREN2] = ACTIONS(1253), + [anon_sym_STAR] = ACTIONS(1255), + [anon_sym_LBRACK] = ACTIONS(313), + [anon_sym_const] = ACTIONS(27), + [anon_sym_restrict] = ACTIONS(27), + [anon_sym_volatile] = ACTIONS(27), + [anon_sym__Atomic] = ACTIONS(27), + [sym_identifier] = ACTIONS(918), + [sym_comment] = ACTIONS(59), }, [670] = { - [anon_sym_RPAREN] = ACTIONS(2338), - [anon_sym_SEMI] = ACTIONS(2338), - [sym_comment] = ACTIONS(37), + [sym_storage_class_specifier] = STATE(670), + [sym_type_qualifier] = STATE(670), + [aux_sym__declaration_specifiers_repeat1] = STATE(670), + [anon_sym_COMMA] = ACTIONS(996), + [anon_sym_RPAREN] = ACTIONS(996), + [anon_sym_extern] = ACTIONS(629), + [anon_sym_LPAREN2] = ACTIONS(996), + [anon_sym_STAR] = ACTIONS(996), + [anon_sym_LBRACK] = ACTIONS(996), + [anon_sym_static] = ACTIONS(629), + [anon_sym_auto] = ACTIONS(629), + [anon_sym_register] = ACTIONS(629), + [anon_sym_inline] = ACTIONS(629), + [anon_sym_const] = ACTIONS(632), + [anon_sym_restrict] = ACTIONS(632), + [anon_sym_volatile] = ACTIONS(632), + [anon_sym__Atomic] = ACTIONS(632), + [sym_identifier] = ACTIONS(635), + [sym_comment] = ACTIONS(59), }, [671] = { - [anon_sym_COMMA] = ACTIONS(2340), - [anon_sym_RPAREN] = ACTIONS(2340), - [anon_sym_SEMI] = ACTIONS(2340), - [anon_sym_RBRACE] = ACTIONS(2340), - [anon_sym_LPAREN2] = ACTIONS(2340), - [anon_sym_STAR] = ACTIONS(2342), - [anon_sym_LBRACK] = ACTIONS(2340), - [anon_sym_RBRACK] = ACTIONS(2340), - [anon_sym_EQ] = ACTIONS(2342), - [anon_sym_COLON] = ACTIONS(2340), - [anon_sym_QMARK] = ACTIONS(2340), - [anon_sym_STAR_EQ] = ACTIONS(2340), - [anon_sym_SLASH_EQ] = ACTIONS(2340), - [anon_sym_PERCENT_EQ] = ACTIONS(2340), - [anon_sym_PLUS_EQ] = ACTIONS(2340), - [anon_sym_DASH_EQ] = ACTIONS(2340), - [anon_sym_LT_LT_EQ] = ACTIONS(2340), - [anon_sym_GT_GT_EQ] = ACTIONS(2340), - [anon_sym_AMP_EQ] = ACTIONS(2340), - [anon_sym_CARET_EQ] = ACTIONS(2340), - [anon_sym_PIPE_EQ] = ACTIONS(2340), - [anon_sym_AMP] = ACTIONS(2342), - [anon_sym_PIPE_PIPE] = ACTIONS(2340), - [anon_sym_AMP_AMP] = ACTIONS(2340), - [anon_sym_PIPE] = ACTIONS(2342), - [anon_sym_CARET] = ACTIONS(2342), - [anon_sym_EQ_EQ] = ACTIONS(2340), - [anon_sym_BANG_EQ] = ACTIONS(2340), - [anon_sym_LT] = ACTIONS(2342), - [anon_sym_GT] = ACTIONS(2342), - [anon_sym_LT_EQ] = ACTIONS(2340), - [anon_sym_GT_EQ] = ACTIONS(2340), - [anon_sym_LT_LT] = ACTIONS(2342), - [anon_sym_GT_GT] = ACTIONS(2342), - [anon_sym_PLUS] = ACTIONS(2342), - [anon_sym_DASH] = ACTIONS(2342), - [anon_sym_SLASH] = ACTIONS(2342), - [anon_sym_PERCENT] = ACTIONS(2342), - [anon_sym_DASH_DASH] = ACTIONS(2340), - [anon_sym_PLUS_PLUS] = ACTIONS(2340), - [anon_sym_DOT] = ACTIONS(2340), - [anon_sym_DASH_GT] = ACTIONS(2340), - [sym_comment] = ACTIONS(37), + [sym_storage_class_specifier] = STATE(670), + [sym_type_qualifier] = STATE(670), + [aux_sym__declaration_specifiers_repeat1] = STATE(670), + [anon_sym_COMMA] = ACTIONS(1115), + [anon_sym_RPAREN] = ACTIONS(1115), + [anon_sym_extern] = ACTIONS(25), + [anon_sym_LPAREN2] = ACTIONS(1115), + [anon_sym_STAR] = ACTIONS(1115), + [anon_sym_LBRACK] = ACTIONS(1115), + [anon_sym_static] = ACTIONS(25), + [anon_sym_auto] = ACTIONS(25), + [anon_sym_register] = ACTIONS(25), + [anon_sym_inline] = ACTIONS(25), + [anon_sym_const] = ACTIONS(27), + [anon_sym_restrict] = ACTIONS(27), + [anon_sym_volatile] = ACTIONS(27), + [anon_sym__Atomic] = ACTIONS(27), + [sym_identifier] = ACTIONS(1117), + [sym_comment] = ACTIONS(59), }, [672] = { - [sym_argument_list] = STATE(430), - [aux_sym_for_statement_repeat1] = STATE(885), - [anon_sym_COMMA] = ACTIONS(2344), - [anon_sym_RPAREN] = ACTIONS(2346), - [anon_sym_LPAREN2] = ACTIONS(1012), - [anon_sym_STAR] = ACTIONS(1437), - [anon_sym_LBRACK] = ACTIONS(1016), - [anon_sym_EQ] = ACTIONS(1439), - [anon_sym_QMARK] = ACTIONS(1441), - [anon_sym_STAR_EQ] = ACTIONS(1443), - [anon_sym_SLASH_EQ] = ACTIONS(1443), - [anon_sym_PERCENT_EQ] = ACTIONS(1443), - [anon_sym_PLUS_EQ] = ACTIONS(1443), - [anon_sym_DASH_EQ] = ACTIONS(1443), - [anon_sym_LT_LT_EQ] = ACTIONS(1443), - [anon_sym_GT_GT_EQ] = ACTIONS(1443), - [anon_sym_AMP_EQ] = ACTIONS(1443), - [anon_sym_CARET_EQ] = ACTIONS(1443), - [anon_sym_PIPE_EQ] = ACTIONS(1443), - [anon_sym_AMP] = ACTIONS(1445), - [anon_sym_PIPE_PIPE] = ACTIONS(1447), - [anon_sym_AMP_AMP] = ACTIONS(1449), - [anon_sym_PIPE] = ACTIONS(1451), - [anon_sym_CARET] = ACTIONS(1453), - [anon_sym_EQ_EQ] = ACTIONS(1455), - [anon_sym_BANG_EQ] = ACTIONS(1455), - [anon_sym_LT] = ACTIONS(1457), - [anon_sym_GT] = ACTIONS(1457), - [anon_sym_LT_EQ] = ACTIONS(1459), - [anon_sym_GT_EQ] = ACTIONS(1459), - [anon_sym_LT_LT] = ACTIONS(1461), - [anon_sym_GT_GT] = ACTIONS(1461), - [anon_sym_PLUS] = ACTIONS(1463), - [anon_sym_DASH] = ACTIONS(1463), - [anon_sym_SLASH] = ACTIONS(1437), - [anon_sym_PERCENT] = ACTIONS(1437), - [anon_sym_DASH_DASH] = ACTIONS(1044), - [anon_sym_PLUS_PLUS] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1046), - [anon_sym_DASH_GT] = ACTIONS(1046), - [sym_comment] = ACTIONS(37), + [anon_sym_COMMA] = ACTIONS(2300), + [anon_sym_RPAREN] = ACTIONS(2300), + [anon_sym_LPAREN2] = ACTIONS(2300), + [anon_sym_LBRACK] = ACTIONS(2300), + [sym_comment] = ACTIONS(59), }, [673] = { - [sym_argument_list] = STATE(430), - [anon_sym_COMMA] = ACTIONS(2348), - [anon_sym_RPAREN] = ACTIONS(2348), - [anon_sym_SEMI] = ACTIONS(2348), - [anon_sym_RBRACE] = ACTIONS(2348), - [anon_sym_LPAREN2] = ACTIONS(1012), - [anon_sym_STAR] = ACTIONS(2350), - [anon_sym_LBRACK] = ACTIONS(1016), - [anon_sym_RBRACK] = ACTIONS(2348), - [anon_sym_EQ] = ACTIONS(2350), - [anon_sym_COLON] = ACTIONS(2348), - [anon_sym_QMARK] = ACTIONS(2348), - [anon_sym_STAR_EQ] = ACTIONS(2348), - [anon_sym_SLASH_EQ] = ACTIONS(2348), - [anon_sym_PERCENT_EQ] = ACTIONS(2348), - [anon_sym_PLUS_EQ] = ACTIONS(2348), - [anon_sym_DASH_EQ] = ACTIONS(2348), - [anon_sym_LT_LT_EQ] = ACTIONS(2348), - [anon_sym_GT_GT_EQ] = ACTIONS(2348), - [anon_sym_AMP_EQ] = ACTIONS(2348), - [anon_sym_CARET_EQ] = ACTIONS(2348), - [anon_sym_PIPE_EQ] = ACTIONS(2348), - [anon_sym_AMP] = ACTIONS(2350), - [anon_sym_PIPE_PIPE] = ACTIONS(2348), - [anon_sym_AMP_AMP] = ACTIONS(2348), - [anon_sym_PIPE] = ACTIONS(2350), - [anon_sym_CARET] = ACTIONS(2350), - [anon_sym_EQ_EQ] = ACTIONS(2348), - [anon_sym_BANG_EQ] = ACTIONS(2348), - [anon_sym_LT] = ACTIONS(2350), - [anon_sym_GT] = ACTIONS(2350), - [anon_sym_LT_EQ] = ACTIONS(2348), - [anon_sym_GT_EQ] = ACTIONS(2348), - [anon_sym_LT_LT] = ACTIONS(2350), - [anon_sym_GT_GT] = ACTIONS(2350), - [anon_sym_PLUS] = ACTIONS(2350), - [anon_sym_DASH] = ACTIONS(2350), - [anon_sym_SLASH] = ACTIONS(2350), - [anon_sym_PERCENT] = ACTIONS(2350), - [anon_sym_DASH_DASH] = ACTIONS(1044), - [anon_sym_PLUS_PLUS] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1046), - [anon_sym_DASH_GT] = ACTIONS(1046), - [sym_comment] = ACTIONS(37), + [sym_storage_class_specifier] = STATE(673), + [sym_type_qualifier] = STATE(673), + [aux_sym__declaration_specifiers_repeat1] = STATE(673), + [anon_sym_extern] = ACTIONS(629), + [anon_sym_LPAREN2] = ACTIONS(996), + [anon_sym_STAR] = ACTIONS(996), + [anon_sym_RBRACK] = ACTIONS(996), + [anon_sym_static] = ACTIONS(629), + [anon_sym_auto] = ACTIONS(629), + [anon_sym_register] = ACTIONS(629), + [anon_sym_inline] = ACTIONS(629), + [anon_sym_const] = ACTIONS(632), + [anon_sym_restrict] = ACTIONS(632), + [anon_sym_volatile] = ACTIONS(632), + [anon_sym__Atomic] = ACTIONS(632), + [anon_sym_AMP] = ACTIONS(996), + [anon_sym_BANG] = ACTIONS(996), + [anon_sym_TILDE] = ACTIONS(996), + [anon_sym_PLUS] = ACTIONS(635), + [anon_sym_DASH] = ACTIONS(635), + [anon_sym_DASH_DASH] = ACTIONS(996), + [anon_sym_PLUS_PLUS] = ACTIONS(996), + [anon_sym_sizeof] = ACTIONS(635), + [sym_number_literal] = ACTIONS(996), + [anon_sym_SQUOTE] = ACTIONS(996), + [anon_sym_DQUOTE] = ACTIONS(996), + [sym_true] = ACTIONS(635), + [sym_false] = ACTIONS(635), + [sym_null] = ACTIONS(635), + [sym_identifier] = ACTIONS(635), + [sym_comment] = ACTIONS(59), }, [674] = { - [sym_argument_list] = STATE(430), - [anon_sym_LPAREN2] = ACTIONS(1012), - [anon_sym_STAR] = ACTIONS(1082), - [anon_sym_LBRACK] = ACTIONS(1016), - [anon_sym_RBRACK] = ACTIONS(2352), - [anon_sym_EQ] = ACTIONS(1084), - [anon_sym_QMARK] = ACTIONS(1086), - [anon_sym_STAR_EQ] = ACTIONS(1088), - [anon_sym_SLASH_EQ] = ACTIONS(1088), - [anon_sym_PERCENT_EQ] = ACTIONS(1088), - [anon_sym_PLUS_EQ] = ACTIONS(1088), - [anon_sym_DASH_EQ] = ACTIONS(1088), - [anon_sym_LT_LT_EQ] = ACTIONS(1088), - [anon_sym_GT_GT_EQ] = ACTIONS(1088), - [anon_sym_AMP_EQ] = ACTIONS(1088), - [anon_sym_CARET_EQ] = ACTIONS(1088), - [anon_sym_PIPE_EQ] = ACTIONS(1088), - [anon_sym_AMP] = ACTIONS(1090), - [anon_sym_PIPE_PIPE] = ACTIONS(1092), - [anon_sym_AMP_AMP] = ACTIONS(1094), - [anon_sym_PIPE] = ACTIONS(1096), - [anon_sym_CARET] = ACTIONS(1098), - [anon_sym_EQ_EQ] = ACTIONS(1100), - [anon_sym_BANG_EQ] = ACTIONS(1100), - [anon_sym_LT] = ACTIONS(1102), - [anon_sym_GT] = ACTIONS(1102), - [anon_sym_LT_EQ] = ACTIONS(1104), - [anon_sym_GT_EQ] = ACTIONS(1104), - [anon_sym_LT_LT] = ACTIONS(1106), - [anon_sym_GT_GT] = ACTIONS(1106), - [anon_sym_PLUS] = ACTIONS(1108), - [anon_sym_DASH] = ACTIONS(1108), - [anon_sym_SLASH] = ACTIONS(1082), - [anon_sym_PERCENT] = ACTIONS(1082), - [anon_sym_DASH_DASH] = ACTIONS(1044), - [anon_sym_PLUS_PLUS] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1046), - [anon_sym_DASH_GT] = ACTIONS(1046), - [sym_comment] = ACTIONS(37), + [sym_storage_class_specifier] = STATE(673), + [sym_type_qualifier] = STATE(673), + [aux_sym__declaration_specifiers_repeat1] = STATE(673), + [anon_sym_extern] = ACTIONS(25), + [anon_sym_LPAREN2] = ACTIONS(1115), + [anon_sym_STAR] = ACTIONS(1115), + [anon_sym_RBRACK] = ACTIONS(1115), + [anon_sym_static] = ACTIONS(25), + [anon_sym_auto] = ACTIONS(25), + [anon_sym_register] = ACTIONS(25), + [anon_sym_inline] = ACTIONS(25), + [anon_sym_const] = ACTIONS(27), + [anon_sym_restrict] = ACTIONS(27), + [anon_sym_volatile] = ACTIONS(27), + [anon_sym__Atomic] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(1115), + [anon_sym_BANG] = ACTIONS(1115), + [anon_sym_TILDE] = ACTIONS(1115), + [anon_sym_PLUS] = ACTIONS(1117), + [anon_sym_DASH] = ACTIONS(1117), + [anon_sym_DASH_DASH] = ACTIONS(1115), + [anon_sym_PLUS_PLUS] = ACTIONS(1115), + [anon_sym_sizeof] = ACTIONS(1117), + [sym_number_literal] = ACTIONS(1115), + [anon_sym_SQUOTE] = ACTIONS(1115), + [anon_sym_DQUOTE] = ACTIONS(1115), + [sym_true] = ACTIONS(1117), + [sym_false] = ACTIONS(1117), + [sym_null] = ACTIONS(1117), + [sym_identifier] = ACTIONS(1117), + [sym_comment] = ACTIONS(59), }, [675] = { - [sym_argument_list] = STATE(430), - [anon_sym_COMMA] = ACTIONS(2354), - [anon_sym_SEMI] = ACTIONS(2354), - [anon_sym_LPAREN2] = ACTIONS(1012), - [anon_sym_STAR] = ACTIONS(1014), - [anon_sym_LBRACK] = ACTIONS(1016), - [anon_sym_EQ] = ACTIONS(1018), - [anon_sym_QMARK] = ACTIONS(2354), - [anon_sym_STAR_EQ] = ACTIONS(1022), - [anon_sym_SLASH_EQ] = ACTIONS(1022), - [anon_sym_PERCENT_EQ] = ACTIONS(1022), - [anon_sym_PLUS_EQ] = ACTIONS(1022), - [anon_sym_DASH_EQ] = ACTIONS(1022), - [anon_sym_LT_LT_EQ] = ACTIONS(1022), - [anon_sym_GT_GT_EQ] = ACTIONS(1022), - [anon_sym_AMP_EQ] = ACTIONS(1022), - [anon_sym_CARET_EQ] = ACTIONS(1022), - [anon_sym_PIPE_EQ] = ACTIONS(1022), - [anon_sym_AMP] = ACTIONS(1024), - [anon_sym_PIPE_PIPE] = ACTIONS(1026), - [anon_sym_AMP_AMP] = ACTIONS(1028), - [anon_sym_PIPE] = ACTIONS(1030), - [anon_sym_CARET] = ACTIONS(1032), - [anon_sym_EQ_EQ] = ACTIONS(1034), - [anon_sym_BANG_EQ] = ACTIONS(1034), - [anon_sym_LT] = ACTIONS(1036), - [anon_sym_GT] = ACTIONS(1036), - [anon_sym_LT_EQ] = ACTIONS(1038), - [anon_sym_GT_EQ] = ACTIONS(1038), - [anon_sym_LT_LT] = ACTIONS(1040), - [anon_sym_GT_GT] = ACTIONS(1040), - [anon_sym_PLUS] = ACTIONS(1042), - [anon_sym_DASH] = ACTIONS(1042), - [anon_sym_SLASH] = ACTIONS(1014), - [anon_sym_PERCENT] = ACTIONS(1014), - [anon_sym_DASH_DASH] = ACTIONS(1044), - [anon_sym_PLUS_PLUS] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1046), - [anon_sym_DASH_GT] = ACTIONS(1046), - [sym_comment] = ACTIONS(37), + [sym_argument_list] = STATE(98), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(1016), + [anon_sym_LBRACK] = ACTIONS(188), + [anon_sym_RBRACK] = ACTIONS(2302), + [anon_sym_EQ] = ACTIONS(1020), + [anon_sym_QMARK] = ACTIONS(1022), + [anon_sym_STAR_EQ] = ACTIONS(1024), + [anon_sym_SLASH_EQ] = ACTIONS(1024), + [anon_sym_PERCENT_EQ] = ACTIONS(1024), + [anon_sym_PLUS_EQ] = ACTIONS(1024), + [anon_sym_DASH_EQ] = ACTIONS(1024), + [anon_sym_LT_LT_EQ] = ACTIONS(1024), + [anon_sym_GT_GT_EQ] = ACTIONS(1024), + [anon_sym_AMP_EQ] = ACTIONS(1024), + [anon_sym_CARET_EQ] = ACTIONS(1024), + [anon_sym_PIPE_EQ] = ACTIONS(1024), + [anon_sym_AMP] = ACTIONS(1026), + [anon_sym_PIPE_PIPE] = ACTIONS(1028), + [anon_sym_AMP_AMP] = ACTIONS(1030), + [anon_sym_PIPE] = ACTIONS(1032), + [anon_sym_CARET] = ACTIONS(1034), + [anon_sym_EQ_EQ] = ACTIONS(1036), + [anon_sym_BANG_EQ] = ACTIONS(1036), + [anon_sym_LT] = ACTIONS(1038), + [anon_sym_GT] = ACTIONS(1038), + [anon_sym_LT_EQ] = ACTIONS(1040), + [anon_sym_GT_EQ] = ACTIONS(1040), + [anon_sym_LT_LT] = ACTIONS(1042), + [anon_sym_GT_GT] = ACTIONS(1042), + [anon_sym_PLUS] = ACTIONS(1044), + [anon_sym_DASH] = ACTIONS(1044), + [anon_sym_SLASH] = ACTIONS(1016), + [anon_sym_PERCENT] = ACTIONS(1016), + [anon_sym_DASH_DASH] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(216), + [anon_sym_DOT] = ACTIONS(218), + [anon_sym_DASH_GT] = ACTIONS(218), + [sym_comment] = ACTIONS(59), }, [676] = { - [sym_argument_list] = STATE(430), - [anon_sym_LPAREN2] = ACTIONS(1012), - [anon_sym_STAR] = ACTIONS(1497), - [anon_sym_LBRACK] = ACTIONS(1016), - [anon_sym_EQ] = ACTIONS(1499), - [anon_sym_COLON] = ACTIONS(2356), - [anon_sym_QMARK] = ACTIONS(1503), - [anon_sym_STAR_EQ] = ACTIONS(1505), - [anon_sym_SLASH_EQ] = ACTIONS(1505), - [anon_sym_PERCENT_EQ] = ACTIONS(1505), - [anon_sym_PLUS_EQ] = ACTIONS(1505), - [anon_sym_DASH_EQ] = ACTIONS(1505), - [anon_sym_LT_LT_EQ] = ACTIONS(1505), - [anon_sym_GT_GT_EQ] = ACTIONS(1505), - [anon_sym_AMP_EQ] = ACTIONS(1505), - [anon_sym_CARET_EQ] = ACTIONS(1505), - [anon_sym_PIPE_EQ] = ACTIONS(1505), - [anon_sym_AMP] = ACTIONS(1507), - [anon_sym_PIPE_PIPE] = ACTIONS(1509), - [anon_sym_AMP_AMP] = ACTIONS(1511), - [anon_sym_PIPE] = ACTIONS(1513), - [anon_sym_CARET] = ACTIONS(1515), - [anon_sym_EQ_EQ] = ACTIONS(1517), - [anon_sym_BANG_EQ] = ACTIONS(1517), - [anon_sym_LT] = ACTIONS(1519), - [anon_sym_GT] = ACTIONS(1519), - [anon_sym_LT_EQ] = ACTIONS(1521), - [anon_sym_GT_EQ] = ACTIONS(1521), - [anon_sym_LT_LT] = ACTIONS(1523), - [anon_sym_GT_GT] = ACTIONS(1523), - [anon_sym_PLUS] = ACTIONS(1525), - [anon_sym_DASH] = ACTIONS(1525), - [anon_sym_SLASH] = ACTIONS(1497), - [anon_sym_PERCENT] = ACTIONS(1497), - [anon_sym_DASH_DASH] = ACTIONS(1044), - [anon_sym_PLUS_PLUS] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1046), - [anon_sym_DASH_GT] = ACTIONS(1046), - [sym_comment] = ACTIONS(37), + [sym_argument_list] = STATE(98), + [anon_sym_COMMA] = ACTIONS(2304), + [anon_sym_RPAREN] = ACTIONS(2304), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(319), + [anon_sym_LBRACK] = ACTIONS(188), + [anon_sym_EQ] = ACTIONS(321), + [anon_sym_QMARK] = ACTIONS(323), + [anon_sym_STAR_EQ] = ACTIONS(325), + [anon_sym_SLASH_EQ] = ACTIONS(325), + [anon_sym_PERCENT_EQ] = ACTIONS(325), + [anon_sym_PLUS_EQ] = ACTIONS(325), + [anon_sym_DASH_EQ] = ACTIONS(325), + [anon_sym_LT_LT_EQ] = ACTIONS(325), + [anon_sym_GT_GT_EQ] = ACTIONS(325), + [anon_sym_AMP_EQ] = ACTIONS(325), + [anon_sym_CARET_EQ] = ACTIONS(325), + [anon_sym_PIPE_EQ] = ACTIONS(325), + [anon_sym_AMP] = ACTIONS(327), + [anon_sym_PIPE_PIPE] = ACTIONS(329), + [anon_sym_AMP_AMP] = ACTIONS(331), + [anon_sym_PIPE] = ACTIONS(333), + [anon_sym_CARET] = ACTIONS(335), + [anon_sym_EQ_EQ] = ACTIONS(337), + [anon_sym_BANG_EQ] = ACTIONS(337), + [anon_sym_LT] = ACTIONS(339), + [anon_sym_GT] = ACTIONS(339), + [anon_sym_LT_EQ] = ACTIONS(341), + [anon_sym_GT_EQ] = ACTIONS(341), + [anon_sym_LT_LT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(343), + [anon_sym_PLUS] = ACTIONS(345), + [anon_sym_DASH] = ACTIONS(345), + [anon_sym_SLASH] = ACTIONS(319), + [anon_sym_PERCENT] = ACTIONS(319), + [anon_sym_DASH_DASH] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(216), + [anon_sym_DOT] = ACTIONS(218), + [anon_sym_DASH_GT] = ACTIONS(218), + [sym_comment] = ACTIONS(59), }, [677] = { - [sym_argument_list] = STATE(430), - [anon_sym_COMMA] = ACTIONS(2358), - [anon_sym_SEMI] = ACTIONS(2358), - [anon_sym_LPAREN2] = ACTIONS(1012), - [anon_sym_STAR] = ACTIONS(1014), - [anon_sym_LBRACK] = ACTIONS(1016), - [anon_sym_EQ] = ACTIONS(2360), - [anon_sym_QMARK] = ACTIONS(2358), - [anon_sym_STAR_EQ] = ACTIONS(2358), - [anon_sym_SLASH_EQ] = ACTIONS(2358), - [anon_sym_PERCENT_EQ] = ACTIONS(2358), - [anon_sym_PLUS_EQ] = ACTIONS(2358), - [anon_sym_DASH_EQ] = ACTIONS(2358), - [anon_sym_LT_LT_EQ] = ACTIONS(2358), - [anon_sym_GT_GT_EQ] = ACTIONS(2358), - [anon_sym_AMP_EQ] = ACTIONS(2358), - [anon_sym_CARET_EQ] = ACTIONS(2358), - [anon_sym_PIPE_EQ] = ACTIONS(2358), - [anon_sym_AMP] = ACTIONS(2360), - [anon_sym_PIPE_PIPE] = ACTIONS(2358), - [anon_sym_AMP_AMP] = ACTIONS(2358), - [anon_sym_PIPE] = ACTIONS(2360), - [anon_sym_CARET] = ACTIONS(2360), - [anon_sym_EQ_EQ] = ACTIONS(1034), - [anon_sym_BANG_EQ] = ACTIONS(1034), - [anon_sym_LT] = ACTIONS(1036), - [anon_sym_GT] = ACTIONS(1036), - [anon_sym_LT_EQ] = ACTIONS(1038), - [anon_sym_GT_EQ] = ACTIONS(1038), - [anon_sym_LT_LT] = ACTIONS(1040), - [anon_sym_GT_GT] = ACTIONS(1040), - [anon_sym_PLUS] = ACTIONS(1042), - [anon_sym_DASH] = ACTIONS(1042), - [anon_sym_SLASH] = ACTIONS(1014), - [anon_sym_PERCENT] = ACTIONS(1014), - [anon_sym_DASH_DASH] = ACTIONS(1044), - [anon_sym_PLUS_PLUS] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1046), - [anon_sym_DASH_GT] = ACTIONS(1046), - [sym_comment] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(2306), + [anon_sym_COMMA] = ACTIONS(2306), + [anon_sym_RPAREN] = ACTIONS(2306), + [anon_sym_RBRACE] = ACTIONS(2306), + [anon_sym_LPAREN2] = ACTIONS(2306), + [anon_sym_STAR] = ACTIONS(2308), + [anon_sym_LBRACK] = ACTIONS(2306), + [anon_sym_RBRACK] = ACTIONS(2306), + [anon_sym_EQ] = ACTIONS(2308), + [anon_sym_COLON] = ACTIONS(2306), + [anon_sym_QMARK] = ACTIONS(2306), + [anon_sym_STAR_EQ] = ACTIONS(2306), + [anon_sym_SLASH_EQ] = ACTIONS(2306), + [anon_sym_PERCENT_EQ] = ACTIONS(2306), + [anon_sym_PLUS_EQ] = ACTIONS(2306), + [anon_sym_DASH_EQ] = ACTIONS(2306), + [anon_sym_LT_LT_EQ] = ACTIONS(2306), + [anon_sym_GT_GT_EQ] = ACTIONS(2306), + [anon_sym_AMP_EQ] = ACTIONS(2306), + [anon_sym_CARET_EQ] = ACTIONS(2306), + [anon_sym_PIPE_EQ] = ACTIONS(2306), + [anon_sym_AMP] = ACTIONS(2308), + [anon_sym_PIPE_PIPE] = ACTIONS(2306), + [anon_sym_AMP_AMP] = ACTIONS(2306), + [anon_sym_PIPE] = ACTIONS(2308), + [anon_sym_CARET] = ACTIONS(2308), + [anon_sym_EQ_EQ] = ACTIONS(2306), + [anon_sym_BANG_EQ] = ACTIONS(2306), + [anon_sym_LT] = ACTIONS(2308), + [anon_sym_GT] = ACTIONS(2308), + [anon_sym_LT_EQ] = ACTIONS(2306), + [anon_sym_GT_EQ] = ACTIONS(2306), + [anon_sym_LT_LT] = ACTIONS(2308), + [anon_sym_GT_GT] = ACTIONS(2308), + [anon_sym_PLUS] = ACTIONS(2308), + [anon_sym_DASH] = ACTIONS(2308), + [anon_sym_SLASH] = ACTIONS(2308), + [anon_sym_PERCENT] = ACTIONS(2308), + [anon_sym_DASH_DASH] = ACTIONS(2306), + [anon_sym_PLUS_PLUS] = ACTIONS(2306), + [anon_sym_DOT] = ACTIONS(2306), + [anon_sym_DASH_GT] = ACTIONS(2306), + [sym_comment] = ACTIONS(59), }, [678] = { - [sym_argument_list] = STATE(430), - [anon_sym_COMMA] = ACTIONS(2362), - [anon_sym_SEMI] = ACTIONS(2362), - [anon_sym_LPAREN2] = ACTIONS(1012), - [anon_sym_STAR] = ACTIONS(1014), - [anon_sym_LBRACK] = ACTIONS(1016), - [anon_sym_EQ] = ACTIONS(2364), - [anon_sym_QMARK] = ACTIONS(2362), - [anon_sym_STAR_EQ] = ACTIONS(2362), - [anon_sym_SLASH_EQ] = ACTIONS(2362), - [anon_sym_PERCENT_EQ] = ACTIONS(2362), - [anon_sym_PLUS_EQ] = ACTIONS(2362), - [anon_sym_DASH_EQ] = ACTIONS(2362), - [anon_sym_LT_LT_EQ] = ACTIONS(2362), - [anon_sym_GT_GT_EQ] = ACTIONS(2362), - [anon_sym_AMP_EQ] = ACTIONS(2362), - [anon_sym_CARET_EQ] = ACTIONS(2362), - [anon_sym_PIPE_EQ] = ACTIONS(2362), - [anon_sym_AMP] = ACTIONS(1024), - [anon_sym_PIPE_PIPE] = ACTIONS(2362), - [anon_sym_AMP_AMP] = ACTIONS(1028), - [anon_sym_PIPE] = ACTIONS(1030), - [anon_sym_CARET] = ACTIONS(1032), - [anon_sym_EQ_EQ] = ACTIONS(1034), - [anon_sym_BANG_EQ] = ACTIONS(1034), - [anon_sym_LT] = ACTIONS(1036), - [anon_sym_GT] = ACTIONS(1036), - [anon_sym_LT_EQ] = ACTIONS(1038), - [anon_sym_GT_EQ] = ACTIONS(1038), - [anon_sym_LT_LT] = ACTIONS(1040), - [anon_sym_GT_GT] = ACTIONS(1040), - [anon_sym_PLUS] = ACTIONS(1042), - [anon_sym_DASH] = ACTIONS(1042), - [anon_sym_SLASH] = ACTIONS(1014), - [anon_sym_PERCENT] = ACTIONS(1014), - [anon_sym_DASH_DASH] = ACTIONS(1044), - [anon_sym_PLUS_PLUS] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1046), - [anon_sym_DASH_GT] = ACTIONS(1046), - [sym_comment] = ACTIONS(37), + [anon_sym_RPAREN] = ACTIONS(2310), + [sym_comment] = ACTIONS(59), }, [679] = { - [sym_argument_list] = STATE(430), - [anon_sym_COMMA] = ACTIONS(2362), - [anon_sym_SEMI] = ACTIONS(2362), - [anon_sym_LPAREN2] = ACTIONS(1012), - [anon_sym_STAR] = ACTIONS(1014), - [anon_sym_LBRACK] = ACTIONS(1016), - [anon_sym_EQ] = ACTIONS(2364), - [anon_sym_QMARK] = ACTIONS(2362), - [anon_sym_STAR_EQ] = ACTIONS(2362), - [anon_sym_SLASH_EQ] = ACTIONS(2362), - [anon_sym_PERCENT_EQ] = ACTIONS(2362), - [anon_sym_PLUS_EQ] = ACTIONS(2362), - [anon_sym_DASH_EQ] = ACTIONS(2362), - [anon_sym_LT_LT_EQ] = ACTIONS(2362), - [anon_sym_GT_GT_EQ] = ACTIONS(2362), - [anon_sym_AMP_EQ] = ACTIONS(2362), - [anon_sym_CARET_EQ] = ACTIONS(2362), - [anon_sym_PIPE_EQ] = ACTIONS(2362), - [anon_sym_AMP] = ACTIONS(1024), - [anon_sym_PIPE_PIPE] = ACTIONS(2362), - [anon_sym_AMP_AMP] = ACTIONS(2362), - [anon_sym_PIPE] = ACTIONS(1030), - [anon_sym_CARET] = ACTIONS(1032), - [anon_sym_EQ_EQ] = ACTIONS(1034), - [anon_sym_BANG_EQ] = ACTIONS(1034), - [anon_sym_LT] = ACTIONS(1036), - [anon_sym_GT] = ACTIONS(1036), - [anon_sym_LT_EQ] = ACTIONS(1038), - [anon_sym_GT_EQ] = ACTIONS(1038), - [anon_sym_LT_LT] = ACTIONS(1040), - [anon_sym_GT_GT] = ACTIONS(1040), - [anon_sym_PLUS] = ACTIONS(1042), - [anon_sym_DASH] = ACTIONS(1042), - [anon_sym_SLASH] = ACTIONS(1014), - [anon_sym_PERCENT] = ACTIONS(1014), - [anon_sym_DASH_DASH] = ACTIONS(1044), - [anon_sym_PLUS_PLUS] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1046), - [anon_sym_DASH_GT] = ACTIONS(1046), - [sym_comment] = ACTIONS(37), + [sym_argument_list] = STATE(98), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(1016), + [anon_sym_LBRACK] = ACTIONS(188), + [anon_sym_RBRACK] = ACTIONS(2312), + [anon_sym_EQ] = ACTIONS(1020), + [anon_sym_QMARK] = ACTIONS(1022), + [anon_sym_STAR_EQ] = ACTIONS(1024), + [anon_sym_SLASH_EQ] = ACTIONS(1024), + [anon_sym_PERCENT_EQ] = ACTIONS(1024), + [anon_sym_PLUS_EQ] = ACTIONS(1024), + [anon_sym_DASH_EQ] = ACTIONS(1024), + [anon_sym_LT_LT_EQ] = ACTIONS(1024), + [anon_sym_GT_GT_EQ] = ACTIONS(1024), + [anon_sym_AMP_EQ] = ACTIONS(1024), + [anon_sym_CARET_EQ] = ACTIONS(1024), + [anon_sym_PIPE_EQ] = ACTIONS(1024), + [anon_sym_AMP] = ACTIONS(1026), + [anon_sym_PIPE_PIPE] = ACTIONS(1028), + [anon_sym_AMP_AMP] = ACTIONS(1030), + [anon_sym_PIPE] = ACTIONS(1032), + [anon_sym_CARET] = ACTIONS(1034), + [anon_sym_EQ_EQ] = ACTIONS(1036), + [anon_sym_BANG_EQ] = ACTIONS(1036), + [anon_sym_LT] = ACTIONS(1038), + [anon_sym_GT] = ACTIONS(1038), + [anon_sym_LT_EQ] = ACTIONS(1040), + [anon_sym_GT_EQ] = ACTIONS(1040), + [anon_sym_LT_LT] = ACTIONS(1042), + [anon_sym_GT_GT] = ACTIONS(1042), + [anon_sym_PLUS] = ACTIONS(1044), + [anon_sym_DASH] = ACTIONS(1044), + [anon_sym_SLASH] = ACTIONS(1016), + [anon_sym_PERCENT] = ACTIONS(1016), + [anon_sym_DASH_DASH] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(216), + [anon_sym_DOT] = ACTIONS(218), + [anon_sym_DASH_GT] = ACTIONS(218), + [sym_comment] = ACTIONS(59), }, [680] = { - [sym_argument_list] = STATE(430), - [anon_sym_COMMA] = ACTIONS(2358), - [anon_sym_SEMI] = ACTIONS(2358), - [anon_sym_LPAREN2] = ACTIONS(1012), - [anon_sym_STAR] = ACTIONS(1014), - [anon_sym_LBRACK] = ACTIONS(1016), - [anon_sym_EQ] = ACTIONS(2360), - [anon_sym_QMARK] = ACTIONS(2358), - [anon_sym_STAR_EQ] = ACTIONS(2358), - [anon_sym_SLASH_EQ] = ACTIONS(2358), - [anon_sym_PERCENT_EQ] = ACTIONS(2358), - [anon_sym_PLUS_EQ] = ACTIONS(2358), - [anon_sym_DASH_EQ] = ACTIONS(2358), - [anon_sym_LT_LT_EQ] = ACTIONS(2358), - [anon_sym_GT_GT_EQ] = ACTIONS(2358), - [anon_sym_AMP_EQ] = ACTIONS(2358), - [anon_sym_CARET_EQ] = ACTIONS(2358), - [anon_sym_PIPE_EQ] = ACTIONS(2358), - [anon_sym_AMP] = ACTIONS(1024), - [anon_sym_PIPE_PIPE] = ACTIONS(2358), - [anon_sym_AMP_AMP] = ACTIONS(2358), - [anon_sym_PIPE] = ACTIONS(2360), - [anon_sym_CARET] = ACTIONS(1032), - [anon_sym_EQ_EQ] = ACTIONS(1034), - [anon_sym_BANG_EQ] = ACTIONS(1034), - [anon_sym_LT] = ACTIONS(1036), - [anon_sym_GT] = ACTIONS(1036), - [anon_sym_LT_EQ] = ACTIONS(1038), - [anon_sym_GT_EQ] = ACTIONS(1038), - [anon_sym_LT_LT] = ACTIONS(1040), - [anon_sym_GT_GT] = ACTIONS(1040), - [anon_sym_PLUS] = ACTIONS(1042), - [anon_sym_DASH] = ACTIONS(1042), - [anon_sym_SLASH] = ACTIONS(1014), - [anon_sym_PERCENT] = ACTIONS(1014), - [anon_sym_DASH_DASH] = ACTIONS(1044), - [anon_sym_PLUS_PLUS] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1046), - [anon_sym_DASH_GT] = ACTIONS(1046), - [sym_comment] = ACTIONS(37), + [sym_type_qualifier] = STATE(56), + [sym__type_specifier] = STATE(51), + [sym_sized_type_specifier] = STATE(51), + [sym_enum_specifier] = STATE(51), + [sym_struct_specifier] = STATE(51), + [sym_union_specifier] = STATE(51), + [sym__expression] = STATE(52), + [sym_comma_expression] = STATE(53), + [sym_conditional_expression] = STATE(52), + [sym_assignment_expression] = STATE(52), + [sym_pointer_expression] = STATE(52), + [sym_logical_expression] = STATE(52), + [sym_bitwise_expression] = STATE(52), + [sym_equality_expression] = STATE(52), + [sym_relational_expression] = STATE(52), + [sym_shift_expression] = STATE(52), + [sym_math_expression] = STATE(52), + [sym_cast_expression] = STATE(52), + [sym_type_descriptor] = STATE(841), + [sym_sizeof_expression] = STATE(52), + [sym_subscript_expression] = STATE(52), + [sym_call_expression] = STATE(52), + [sym_field_expression] = STATE(52), + [sym_compound_literal_expression] = STATE(52), + [sym_parenthesized_expression] = STATE(52), + [sym_char_literal] = STATE(52), + [sym_concatenated_string] = STATE(52), + [sym_string_literal] = STATE(55), + [sym_macro_type_specifier] = STATE(51), + [aux_sym_type_definition_repeat1] = STATE(56), + [aux_sym_sized_type_specifier_repeat1] = STATE(57), + [anon_sym_LPAREN2] = ACTIONS(85), + [anon_sym_STAR] = ACTIONS(87), + [anon_sym_const] = ACTIONS(27), + [anon_sym_restrict] = ACTIONS(27), + [anon_sym_volatile] = ACTIONS(27), + [anon_sym__Atomic] = ACTIONS(27), + [anon_sym_unsigned] = ACTIONS(89), + [anon_sym_long] = ACTIONS(89), + [anon_sym_short] = ACTIONS(89), + [sym_primitive_type] = ACTIONS(91), + [anon_sym_enum] = ACTIONS(33), + [anon_sym_struct] = ACTIONS(35), + [anon_sym_union] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_PLUS] = ACTIONS(97), + [anon_sym_DASH] = ACTIONS(97), + [anon_sym_DASH_DASH] = ACTIONS(99), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(105), + [sym_false] = ACTIONS(105), + [sym_null] = ACTIONS(105), + [sym_identifier] = ACTIONS(107), + [sym_comment] = ACTIONS(59), }, [681] = { - [sym_argument_list] = STATE(430), - [anon_sym_COMMA] = ACTIONS(2358), - [anon_sym_SEMI] = ACTIONS(2358), - [anon_sym_LPAREN2] = ACTIONS(1012), - [anon_sym_STAR] = ACTIONS(1014), - [anon_sym_LBRACK] = ACTIONS(1016), - [anon_sym_EQ] = ACTIONS(2360), - [anon_sym_QMARK] = ACTIONS(2358), - [anon_sym_STAR_EQ] = ACTIONS(2358), - [anon_sym_SLASH_EQ] = ACTIONS(2358), - [anon_sym_PERCENT_EQ] = ACTIONS(2358), - [anon_sym_PLUS_EQ] = ACTIONS(2358), - [anon_sym_DASH_EQ] = ACTIONS(2358), - [anon_sym_LT_LT_EQ] = ACTIONS(2358), - [anon_sym_GT_GT_EQ] = ACTIONS(2358), - [anon_sym_AMP_EQ] = ACTIONS(2358), - [anon_sym_CARET_EQ] = ACTIONS(2358), - [anon_sym_PIPE_EQ] = ACTIONS(2358), - [anon_sym_AMP] = ACTIONS(1024), - [anon_sym_PIPE_PIPE] = ACTIONS(2358), - [anon_sym_AMP_AMP] = ACTIONS(2358), - [anon_sym_PIPE] = ACTIONS(2360), - [anon_sym_CARET] = ACTIONS(2360), - [anon_sym_EQ_EQ] = ACTIONS(1034), - [anon_sym_BANG_EQ] = ACTIONS(1034), - [anon_sym_LT] = ACTIONS(1036), - [anon_sym_GT] = ACTIONS(1036), - [anon_sym_LT_EQ] = ACTIONS(1038), - [anon_sym_GT_EQ] = ACTIONS(1038), - [anon_sym_LT_LT] = ACTIONS(1040), - [anon_sym_GT_GT] = ACTIONS(1040), - [anon_sym_PLUS] = ACTIONS(1042), - [anon_sym_DASH] = ACTIONS(1042), - [anon_sym_SLASH] = ACTIONS(1014), - [anon_sym_PERCENT] = ACTIONS(1014), - [anon_sym_DASH_DASH] = ACTIONS(1044), - [anon_sym_PLUS_PLUS] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1046), - [anon_sym_DASH_GT] = ACTIONS(1046), - [sym_comment] = ACTIONS(37), + [sym_argument_list] = STATE(98), + [anon_sym_COMMA] = ACTIONS(413), + [anon_sym_RBRACE] = ACTIONS(413), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(1823), + [anon_sym_LBRACK] = ACTIONS(188), + [anon_sym_EQ] = ACTIONS(411), + [anon_sym_QMARK] = ACTIONS(413), + [anon_sym_STAR_EQ] = ACTIONS(413), + [anon_sym_SLASH_EQ] = ACTIONS(413), + [anon_sym_PERCENT_EQ] = ACTIONS(413), + [anon_sym_PLUS_EQ] = ACTIONS(413), + [anon_sym_DASH_EQ] = ACTIONS(413), + [anon_sym_LT_LT_EQ] = ACTIONS(413), + [anon_sym_GT_GT_EQ] = ACTIONS(413), + [anon_sym_AMP_EQ] = ACTIONS(413), + [anon_sym_CARET_EQ] = ACTIONS(413), + [anon_sym_PIPE_EQ] = ACTIONS(413), + [anon_sym_AMP] = ACTIONS(411), + [anon_sym_PIPE_PIPE] = ACTIONS(413), + [anon_sym_AMP_AMP] = ACTIONS(413), + [anon_sym_PIPE] = ACTIONS(411), + [anon_sym_CARET] = ACTIONS(411), + [anon_sym_EQ_EQ] = ACTIONS(413), + [anon_sym_BANG_EQ] = ACTIONS(413), + [anon_sym_LT] = ACTIONS(411), + [anon_sym_GT] = ACTIONS(411), + [anon_sym_LT_EQ] = ACTIONS(413), + [anon_sym_GT_EQ] = ACTIONS(413), + [anon_sym_LT_LT] = ACTIONS(1847), + [anon_sym_GT_GT] = ACTIONS(1847), + [anon_sym_PLUS] = ACTIONS(1849), + [anon_sym_DASH] = ACTIONS(1849), + [anon_sym_SLASH] = ACTIONS(1823), + [anon_sym_PERCENT] = ACTIONS(1823), + [anon_sym_DASH_DASH] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(216), + [anon_sym_DOT] = ACTIONS(218), + [anon_sym_DASH_GT] = ACTIONS(218), + [sym_comment] = ACTIONS(59), }, [682] = { - [sym_argument_list] = STATE(430), - [anon_sym_COMMA] = ACTIONS(2366), - [anon_sym_SEMI] = ACTIONS(2366), - [anon_sym_LPAREN2] = ACTIONS(1012), - [anon_sym_STAR] = ACTIONS(1014), - [anon_sym_LBRACK] = ACTIONS(1016), - [anon_sym_EQ] = ACTIONS(2368), - [anon_sym_QMARK] = ACTIONS(2366), - [anon_sym_STAR_EQ] = ACTIONS(2366), - [anon_sym_SLASH_EQ] = ACTIONS(2366), - [anon_sym_PERCENT_EQ] = ACTIONS(2366), - [anon_sym_PLUS_EQ] = ACTIONS(2366), - [anon_sym_DASH_EQ] = ACTIONS(2366), - [anon_sym_LT_LT_EQ] = ACTIONS(2366), - [anon_sym_GT_GT_EQ] = ACTIONS(2366), - [anon_sym_AMP_EQ] = ACTIONS(2366), - [anon_sym_CARET_EQ] = ACTIONS(2366), - [anon_sym_PIPE_EQ] = ACTIONS(2366), - [anon_sym_AMP] = ACTIONS(2368), - [anon_sym_PIPE_PIPE] = ACTIONS(2366), - [anon_sym_AMP_AMP] = ACTIONS(2366), - [anon_sym_PIPE] = ACTIONS(2368), - [anon_sym_CARET] = ACTIONS(2368), - [anon_sym_EQ_EQ] = ACTIONS(2366), - [anon_sym_BANG_EQ] = ACTIONS(2366), - [anon_sym_LT] = ACTIONS(1036), - [anon_sym_GT] = ACTIONS(1036), - [anon_sym_LT_EQ] = ACTIONS(1038), - [anon_sym_GT_EQ] = ACTIONS(1038), - [anon_sym_LT_LT] = ACTIONS(1040), - [anon_sym_GT_GT] = ACTIONS(1040), - [anon_sym_PLUS] = ACTIONS(1042), - [anon_sym_DASH] = ACTIONS(1042), - [anon_sym_SLASH] = ACTIONS(1014), - [anon_sym_PERCENT] = ACTIONS(1014), - [anon_sym_DASH_DASH] = ACTIONS(1044), - [anon_sym_PLUS_PLUS] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1046), - [anon_sym_DASH_GT] = ACTIONS(1046), - [sym_comment] = ACTIONS(37), + [anon_sym_LBRACK] = ACTIONS(2314), + [anon_sym_EQ] = ACTIONS(2314), + [anon_sym_DOT] = ACTIONS(2314), + [sym_comment] = ACTIONS(59), }, [683] = { - [sym_argument_list] = STATE(430), - [anon_sym_COMMA] = ACTIONS(2370), - [anon_sym_SEMI] = ACTIONS(2370), - [anon_sym_LPAREN2] = ACTIONS(1012), - [anon_sym_STAR] = ACTIONS(1014), - [anon_sym_LBRACK] = ACTIONS(1016), - [anon_sym_EQ] = ACTIONS(2372), - [anon_sym_QMARK] = ACTIONS(2370), - [anon_sym_STAR_EQ] = ACTIONS(2370), - [anon_sym_SLASH_EQ] = ACTIONS(2370), - [anon_sym_PERCENT_EQ] = ACTIONS(2370), - [anon_sym_PLUS_EQ] = ACTIONS(2370), - [anon_sym_DASH_EQ] = ACTIONS(2370), - [anon_sym_LT_LT_EQ] = ACTIONS(2370), - [anon_sym_GT_GT_EQ] = ACTIONS(2370), - [anon_sym_AMP_EQ] = ACTIONS(2370), - [anon_sym_CARET_EQ] = ACTIONS(2370), - [anon_sym_PIPE_EQ] = ACTIONS(2370), - [anon_sym_AMP] = ACTIONS(2372), - [anon_sym_PIPE_PIPE] = ACTIONS(2370), - [anon_sym_AMP_AMP] = ACTIONS(2370), - [anon_sym_PIPE] = ACTIONS(2372), - [anon_sym_CARET] = ACTIONS(2372), - [anon_sym_EQ_EQ] = ACTIONS(2370), - [anon_sym_BANG_EQ] = ACTIONS(2370), - [anon_sym_LT] = ACTIONS(2372), - [anon_sym_GT] = ACTIONS(2372), - [anon_sym_LT_EQ] = ACTIONS(2370), - [anon_sym_GT_EQ] = ACTIONS(2370), - [anon_sym_LT_LT] = ACTIONS(1040), - [anon_sym_GT_GT] = ACTIONS(1040), - [anon_sym_PLUS] = ACTIONS(1042), - [anon_sym_DASH] = ACTIONS(1042), - [anon_sym_SLASH] = ACTIONS(1014), - [anon_sym_PERCENT] = ACTIONS(1014), - [anon_sym_DASH_DASH] = ACTIONS(1044), - [anon_sym_PLUS_PLUS] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1046), - [anon_sym_DASH_GT] = ACTIONS(1046), - [sym_comment] = ACTIONS(37), + [sym__expression] = STATE(843), + [sym_conditional_expression] = STATE(843), + [sym_assignment_expression] = STATE(843), + [sym_pointer_expression] = STATE(843), + [sym_logical_expression] = STATE(843), + [sym_bitwise_expression] = STATE(843), + [sym_equality_expression] = STATE(843), + [sym_relational_expression] = STATE(843), + [sym_shift_expression] = STATE(843), + [sym_math_expression] = STATE(843), + [sym_cast_expression] = STATE(843), + [sym_sizeof_expression] = STATE(843), + [sym_subscript_expression] = STATE(843), + [sym_call_expression] = STATE(843), + [sym_field_expression] = STATE(843), + [sym_compound_literal_expression] = STATE(843), + [sym_parenthesized_expression] = STATE(843), + [sym_initializer_list] = STATE(844), + [sym_initializer_pair] = STATE(844), + [sym_subscript_designator] = STATE(509), + [sym_field_designator] = STATE(509), + [sym_char_literal] = STATE(843), + [sym_concatenated_string] = STATE(843), + [sym_string_literal] = STATE(508), + [aux_sym_initializer_pair_repeat1] = STATE(509), + [anon_sym_LBRACE] = ACTIONS(840), + [anon_sym_RBRACE] = ACTIONS(2316), + [anon_sym_LPAREN2] = ACTIONS(1289), + [anon_sym_STAR] = ACTIONS(1291), + [anon_sym_LBRACK] = ACTIONS(1293), + [anon_sym_AMP] = ACTIONS(1291), + [anon_sym_BANG] = ACTIONS(1295), + [anon_sym_TILDE] = ACTIONS(1297), + [anon_sym_PLUS] = ACTIONS(1299), + [anon_sym_DASH] = ACTIONS(1299), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_sizeof] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1305), + [sym_number_literal] = ACTIONS(2318), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(2320), + [sym_false] = ACTIONS(2320), + [sym_null] = ACTIONS(2320), + [sym_identifier] = ACTIONS(2320), + [sym_comment] = ACTIONS(59), }, [684] = { - [sym_argument_list] = STATE(430), - [anon_sym_COMMA] = ACTIONS(2374), - [anon_sym_SEMI] = ACTIONS(2374), - [anon_sym_LPAREN2] = ACTIONS(1012), - [anon_sym_STAR] = ACTIONS(1014), - [anon_sym_LBRACK] = ACTIONS(1016), - [anon_sym_EQ] = ACTIONS(2376), - [anon_sym_QMARK] = ACTIONS(2374), - [anon_sym_STAR_EQ] = ACTIONS(2374), - [anon_sym_SLASH_EQ] = ACTIONS(2374), - [anon_sym_PERCENT_EQ] = ACTIONS(2374), - [anon_sym_PLUS_EQ] = ACTIONS(2374), - [anon_sym_DASH_EQ] = ACTIONS(2374), - [anon_sym_LT_LT_EQ] = ACTIONS(2374), - [anon_sym_GT_GT_EQ] = ACTIONS(2374), - [anon_sym_AMP_EQ] = ACTIONS(2374), - [anon_sym_CARET_EQ] = ACTIONS(2374), - [anon_sym_PIPE_EQ] = ACTIONS(2374), - [anon_sym_AMP] = ACTIONS(2376), - [anon_sym_PIPE_PIPE] = ACTIONS(2374), - [anon_sym_AMP_AMP] = ACTIONS(2374), - [anon_sym_PIPE] = ACTIONS(2376), - [anon_sym_CARET] = ACTIONS(2376), - [anon_sym_EQ_EQ] = ACTIONS(2374), - [anon_sym_BANG_EQ] = ACTIONS(2374), - [anon_sym_LT] = ACTIONS(2376), - [anon_sym_GT] = ACTIONS(2376), - [anon_sym_LT_EQ] = ACTIONS(2374), - [anon_sym_GT_EQ] = ACTIONS(2374), - [anon_sym_LT_LT] = ACTIONS(2376), - [anon_sym_GT_GT] = ACTIONS(2376), - [anon_sym_PLUS] = ACTIONS(1042), - [anon_sym_DASH] = ACTIONS(1042), - [anon_sym_SLASH] = ACTIONS(1014), - [anon_sym_PERCENT] = ACTIONS(1014), - [anon_sym_DASH_DASH] = ACTIONS(1044), - [anon_sym_PLUS_PLUS] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1046), - [anon_sym_DASH_GT] = ACTIONS(1046), - [sym_comment] = ACTIONS(37), + [sym__expression] = STATE(206), + [sym_conditional_expression] = STATE(206), + [sym_assignment_expression] = STATE(206), + [sym_pointer_expression] = STATE(206), + [sym_logical_expression] = STATE(206), + [sym_bitwise_expression] = STATE(206), + [sym_equality_expression] = STATE(206), + [sym_relational_expression] = STATE(206), + [sym_shift_expression] = STATE(206), + [sym_math_expression] = STATE(206), + [sym_cast_expression] = STATE(206), + [sym_sizeof_expression] = STATE(206), + [sym_subscript_expression] = STATE(206), + [sym_call_expression] = STATE(206), + [sym_field_expression] = STATE(206), + [sym_compound_literal_expression] = STATE(206), + [sym_parenthesized_expression] = STATE(206), + [sym_char_literal] = STATE(206), + [sym_concatenated_string] = STATE(206), + [sym_string_literal] = STATE(508), + [anon_sym_LPAREN2] = ACTIONS(1289), + [anon_sym_STAR] = ACTIONS(1291), + [anon_sym_AMP] = ACTIONS(1291), + [anon_sym_BANG] = ACTIONS(1295), + [anon_sym_TILDE] = ACTIONS(1297), + [anon_sym_PLUS] = ACTIONS(1299), + [anon_sym_DASH] = ACTIONS(1299), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_sizeof] = ACTIONS(1303), + [sym_number_literal] = ACTIONS(457), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(459), + [sym_false] = ACTIONS(459), + [sym_null] = ACTIONS(459), + [sym_identifier] = ACTIONS(459), + [sym_comment] = ACTIONS(59), }, [685] = { - [sym_argument_list] = STATE(430), - [anon_sym_COMMA] = ACTIONS(2348), - [anon_sym_SEMI] = ACTIONS(2348), - [anon_sym_LPAREN2] = ACTIONS(1012), - [anon_sym_STAR] = ACTIONS(1014), - [anon_sym_LBRACK] = ACTIONS(1016), - [anon_sym_EQ] = ACTIONS(2350), - [anon_sym_QMARK] = ACTIONS(2348), - [anon_sym_STAR_EQ] = ACTIONS(2348), - [anon_sym_SLASH_EQ] = ACTIONS(2348), - [anon_sym_PERCENT_EQ] = ACTIONS(2348), - [anon_sym_PLUS_EQ] = ACTIONS(2348), - [anon_sym_DASH_EQ] = ACTIONS(2348), - [anon_sym_LT_LT_EQ] = ACTIONS(2348), - [anon_sym_GT_GT_EQ] = ACTIONS(2348), - [anon_sym_AMP_EQ] = ACTIONS(2348), - [anon_sym_CARET_EQ] = ACTIONS(2348), - [anon_sym_PIPE_EQ] = ACTIONS(2348), - [anon_sym_AMP] = ACTIONS(2350), - [anon_sym_PIPE_PIPE] = ACTIONS(2348), - [anon_sym_AMP_AMP] = ACTIONS(2348), - [anon_sym_PIPE] = ACTIONS(2350), - [anon_sym_CARET] = ACTIONS(2350), - [anon_sym_EQ_EQ] = ACTIONS(2348), - [anon_sym_BANG_EQ] = ACTIONS(2348), - [anon_sym_LT] = ACTIONS(2350), - [anon_sym_GT] = ACTIONS(2350), - [anon_sym_LT_EQ] = ACTIONS(2348), - [anon_sym_GT_EQ] = ACTIONS(2348), - [anon_sym_LT_LT] = ACTIONS(2350), - [anon_sym_GT_GT] = ACTIONS(2350), - [anon_sym_PLUS] = ACTIONS(2350), - [anon_sym_DASH] = ACTIONS(2350), - [anon_sym_SLASH] = ACTIONS(1014), - [anon_sym_PERCENT] = ACTIONS(1014), - [anon_sym_DASH_DASH] = ACTIONS(1044), - [anon_sym_PLUS_PLUS] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1046), - [anon_sym_DASH_GT] = ACTIONS(1046), - [sym_comment] = ACTIONS(37), + [sym__expression] = STATE(845), + [sym_conditional_expression] = STATE(845), + [sym_assignment_expression] = STATE(845), + [sym_pointer_expression] = STATE(845), + [sym_logical_expression] = STATE(845), + [sym_bitwise_expression] = STATE(845), + [sym_equality_expression] = STATE(845), + [sym_relational_expression] = STATE(845), + [sym_shift_expression] = STATE(845), + [sym_math_expression] = STATE(845), + [sym_cast_expression] = STATE(845), + [sym_sizeof_expression] = STATE(845), + [sym_subscript_expression] = STATE(845), + [sym_call_expression] = STATE(845), + [sym_field_expression] = STATE(845), + [sym_compound_literal_expression] = STATE(845), + [sym_parenthesized_expression] = STATE(845), + [sym_char_literal] = STATE(845), + [sym_concatenated_string] = STATE(845), + [sym_string_literal] = STATE(508), + [anon_sym_LPAREN2] = ACTIONS(1289), + [anon_sym_STAR] = ACTIONS(1291), + [anon_sym_AMP] = ACTIONS(1291), + [anon_sym_BANG] = ACTIONS(1295), + [anon_sym_TILDE] = ACTIONS(1297), + [anon_sym_PLUS] = ACTIONS(1299), + [anon_sym_DASH] = ACTIONS(1299), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_sizeof] = ACTIONS(1303), + [sym_number_literal] = ACTIONS(2322), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(2324), + [sym_false] = ACTIONS(2324), + [sym_null] = ACTIONS(2324), + [sym_identifier] = ACTIONS(2324), + [sym_comment] = ACTIONS(59), }, [686] = { - [anon_sym_COMMA] = ACTIONS(2378), - [anon_sym_RPAREN] = ACTIONS(2378), - [anon_sym_SEMI] = ACTIONS(2378), - [anon_sym_RBRACE] = ACTIONS(2378), - [anon_sym_LPAREN2] = ACTIONS(2378), - [anon_sym_STAR] = ACTIONS(2380), - [anon_sym_LBRACK] = ACTIONS(2378), - [anon_sym_RBRACK] = ACTIONS(2378), - [anon_sym_EQ] = ACTIONS(2380), - [anon_sym_COLON] = ACTIONS(2378), - [anon_sym_QMARK] = ACTIONS(2378), - [anon_sym_STAR_EQ] = ACTIONS(2378), - [anon_sym_SLASH_EQ] = ACTIONS(2378), - [anon_sym_PERCENT_EQ] = ACTIONS(2378), - [anon_sym_PLUS_EQ] = ACTIONS(2378), - [anon_sym_DASH_EQ] = ACTIONS(2378), - [anon_sym_LT_LT_EQ] = ACTIONS(2378), - [anon_sym_GT_GT_EQ] = ACTIONS(2378), - [anon_sym_AMP_EQ] = ACTIONS(2378), - [anon_sym_CARET_EQ] = ACTIONS(2378), - [anon_sym_PIPE_EQ] = ACTIONS(2378), - [anon_sym_AMP] = ACTIONS(2380), - [anon_sym_PIPE_PIPE] = ACTIONS(2378), - [anon_sym_AMP_AMP] = ACTIONS(2378), - [anon_sym_PIPE] = ACTIONS(2380), - [anon_sym_CARET] = ACTIONS(2380), - [anon_sym_EQ_EQ] = ACTIONS(2378), - [anon_sym_BANG_EQ] = ACTIONS(2378), - [anon_sym_LT] = ACTIONS(2380), - [anon_sym_GT] = ACTIONS(2380), - [anon_sym_LT_EQ] = ACTIONS(2378), - [anon_sym_GT_EQ] = ACTIONS(2378), - [anon_sym_LT_LT] = ACTIONS(2380), - [anon_sym_GT_GT] = ACTIONS(2380), - [anon_sym_PLUS] = ACTIONS(2380), - [anon_sym_DASH] = ACTIONS(2380), - [anon_sym_SLASH] = ACTIONS(2380), - [anon_sym_PERCENT] = ACTIONS(2380), - [anon_sym_DASH_DASH] = ACTIONS(2378), - [anon_sym_PLUS_PLUS] = ACTIONS(2378), - [anon_sym_DOT] = ACTIONS(2378), - [anon_sym_DASH_GT] = ACTIONS(2378), - [sym_comment] = ACTIONS(37), + [sym__expression] = STATE(846), + [sym_conditional_expression] = STATE(846), + [sym_assignment_expression] = STATE(846), + [sym_pointer_expression] = STATE(846), + [sym_logical_expression] = STATE(846), + [sym_bitwise_expression] = STATE(846), + [sym_equality_expression] = STATE(846), + [sym_relational_expression] = STATE(846), + [sym_shift_expression] = STATE(846), + [sym_math_expression] = STATE(846), + [sym_cast_expression] = STATE(846), + [sym_sizeof_expression] = STATE(846), + [sym_subscript_expression] = STATE(846), + [sym_call_expression] = STATE(846), + [sym_field_expression] = STATE(846), + [sym_compound_literal_expression] = STATE(846), + [sym_parenthesized_expression] = STATE(846), + [sym_char_literal] = STATE(846), + [sym_concatenated_string] = STATE(846), + [sym_string_literal] = STATE(223), + [anon_sym_LPAREN2] = ACTIONS(483), + [anon_sym_STAR] = ACTIONS(485), + [anon_sym_AMP] = ACTIONS(485), + [anon_sym_BANG] = ACTIONS(487), + [anon_sym_TILDE] = ACTIONS(489), + [anon_sym_PLUS] = ACTIONS(491), + [anon_sym_DASH] = ACTIONS(491), + [anon_sym_DASH_DASH] = ACTIONS(493), + [anon_sym_PLUS_PLUS] = ACTIONS(493), + [anon_sym_sizeof] = ACTIONS(495), + [sym_number_literal] = ACTIONS(2326), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(2328), + [sym_false] = ACTIONS(2328), + [sym_null] = ACTIONS(2328), + [sym_identifier] = ACTIONS(2328), + [sym_comment] = ACTIONS(59), }, [687] = { - [sym_string_literal] = STATE(687), - [aux_sym_concatenated_string_repeat1] = STATE(687), - [anon_sym_COMMA] = ACTIONS(2382), - [anon_sym_SEMI] = ACTIONS(2382), - [anon_sym_LPAREN2] = ACTIONS(2382), - [anon_sym_STAR] = ACTIONS(2384), - [anon_sym_LBRACK] = ACTIONS(2382), - [anon_sym_EQ] = ACTIONS(2384), - [anon_sym_QMARK] = ACTIONS(2382), - [anon_sym_STAR_EQ] = ACTIONS(2382), - [anon_sym_SLASH_EQ] = ACTIONS(2382), - [anon_sym_PERCENT_EQ] = ACTIONS(2382), - [anon_sym_PLUS_EQ] = ACTIONS(2382), - [anon_sym_DASH_EQ] = ACTIONS(2382), - [anon_sym_LT_LT_EQ] = ACTIONS(2382), - [anon_sym_GT_GT_EQ] = ACTIONS(2382), - [anon_sym_AMP_EQ] = ACTIONS(2382), - [anon_sym_CARET_EQ] = ACTIONS(2382), - [anon_sym_PIPE_EQ] = ACTIONS(2382), - [anon_sym_AMP] = ACTIONS(2384), - [anon_sym_PIPE_PIPE] = ACTIONS(2382), - [anon_sym_AMP_AMP] = ACTIONS(2382), - [anon_sym_PIPE] = ACTIONS(2384), - [anon_sym_CARET] = ACTIONS(2384), - [anon_sym_EQ_EQ] = ACTIONS(2382), - [anon_sym_BANG_EQ] = ACTIONS(2382), - [anon_sym_LT] = ACTIONS(2384), - [anon_sym_GT] = ACTIONS(2384), - [anon_sym_LT_EQ] = ACTIONS(2382), - [anon_sym_GT_EQ] = ACTIONS(2382), - [anon_sym_LT_LT] = ACTIONS(2384), - [anon_sym_GT_GT] = ACTIONS(2384), - [anon_sym_PLUS] = ACTIONS(2384), - [anon_sym_DASH] = ACTIONS(2384), - [anon_sym_SLASH] = ACTIONS(2384), - [anon_sym_PERCENT] = ACTIONS(2384), - [anon_sym_DASH_DASH] = ACTIONS(2382), - [anon_sym_PLUS_PLUS] = ACTIONS(2382), - [anon_sym_DOT] = ACTIONS(2382), - [anon_sym_DASH_GT] = ACTIONS(2382), - [anon_sym_DQUOTE] = ACTIONS(2386), - [sym_comment] = ACTIONS(37), + [sym__expression] = STATE(847), + [sym_conditional_expression] = STATE(847), + [sym_assignment_expression] = STATE(847), + [sym_pointer_expression] = STATE(847), + [sym_logical_expression] = STATE(847), + [sym_bitwise_expression] = STATE(847), + [sym_equality_expression] = STATE(847), + [sym_relational_expression] = STATE(847), + [sym_shift_expression] = STATE(847), + [sym_math_expression] = STATE(847), + [sym_cast_expression] = STATE(847), + [sym_sizeof_expression] = STATE(847), + [sym_subscript_expression] = STATE(847), + [sym_call_expression] = STATE(847), + [sym_field_expression] = STATE(847), + [sym_compound_literal_expression] = STATE(847), + [sym_parenthesized_expression] = STATE(847), + [sym_char_literal] = STATE(847), + [sym_concatenated_string] = STATE(847), + [sym_string_literal] = STATE(508), + [anon_sym_LPAREN2] = ACTIONS(1289), + [anon_sym_STAR] = ACTIONS(1291), + [anon_sym_AMP] = ACTIONS(1291), + [anon_sym_BANG] = ACTIONS(1295), + [anon_sym_TILDE] = ACTIONS(1297), + [anon_sym_PLUS] = ACTIONS(1299), + [anon_sym_DASH] = ACTIONS(1299), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_sizeof] = ACTIONS(1303), + [sym_number_literal] = ACTIONS(2330), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(2332), + [sym_false] = ACTIONS(2332), + [sym_null] = ACTIONS(2332), + [sym_identifier] = ACTIONS(2332), + [sym_comment] = ACTIONS(59), }, [688] = { - [anon_sym_COMMA] = ACTIONS(2389), - [anon_sym_RPAREN] = ACTIONS(2389), - [sym_comment] = ACTIONS(37), + [sym__expression] = STATE(848), + [sym_conditional_expression] = STATE(848), + [sym_assignment_expression] = STATE(848), + [sym_pointer_expression] = STATE(848), + [sym_logical_expression] = STATE(848), + [sym_bitwise_expression] = STATE(848), + [sym_equality_expression] = STATE(848), + [sym_relational_expression] = STATE(848), + [sym_shift_expression] = STATE(848), + [sym_math_expression] = STATE(848), + [sym_cast_expression] = STATE(848), + [sym_sizeof_expression] = STATE(848), + [sym_subscript_expression] = STATE(848), + [sym_call_expression] = STATE(848), + [sym_field_expression] = STATE(848), + [sym_compound_literal_expression] = STATE(848), + [sym_parenthesized_expression] = STATE(848), + [sym_char_literal] = STATE(848), + [sym_concatenated_string] = STATE(848), + [sym_string_literal] = STATE(508), + [anon_sym_LPAREN2] = ACTIONS(1289), + [anon_sym_STAR] = ACTIONS(1291), + [anon_sym_AMP] = ACTIONS(1291), + [anon_sym_BANG] = ACTIONS(1295), + [anon_sym_TILDE] = ACTIONS(1297), + [anon_sym_PLUS] = ACTIONS(1299), + [anon_sym_DASH] = ACTIONS(1299), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_sizeof] = ACTIONS(1303), + [sym_number_literal] = ACTIONS(2334), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(2336), + [sym_false] = ACTIONS(2336), + [sym_null] = ACTIONS(2336), + [sym_identifier] = ACTIONS(2336), + [sym_comment] = ACTIONS(59), }, [689] = { - [anon_sym_COMMA] = ACTIONS(2391), - [anon_sym_RPAREN] = ACTIONS(2391), - [anon_sym_SEMI] = ACTIONS(2391), - [anon_sym_LBRACE] = ACTIONS(2391), - [anon_sym_LPAREN2] = ACTIONS(2391), - [anon_sym_LBRACK] = ACTIONS(2391), - [anon_sym_EQ] = ACTIONS(2391), - [anon_sym_COLON] = ACTIONS(2391), - [sym_comment] = ACTIONS(37), + [sym__expression] = STATE(849), + [sym_conditional_expression] = STATE(849), + [sym_assignment_expression] = STATE(849), + [sym_pointer_expression] = STATE(849), + [sym_logical_expression] = STATE(849), + [sym_bitwise_expression] = STATE(849), + [sym_equality_expression] = STATE(849), + [sym_relational_expression] = STATE(849), + [sym_shift_expression] = STATE(849), + [sym_math_expression] = STATE(849), + [sym_cast_expression] = STATE(849), + [sym_sizeof_expression] = STATE(849), + [sym_subscript_expression] = STATE(849), + [sym_call_expression] = STATE(849), + [sym_field_expression] = STATE(849), + [sym_compound_literal_expression] = STATE(849), + [sym_parenthesized_expression] = STATE(849), + [sym_char_literal] = STATE(849), + [sym_concatenated_string] = STATE(849), + [sym_string_literal] = STATE(508), + [anon_sym_LPAREN2] = ACTIONS(1289), + [anon_sym_STAR] = ACTIONS(1291), + [anon_sym_AMP] = ACTIONS(1291), + [anon_sym_BANG] = ACTIONS(1295), + [anon_sym_TILDE] = ACTIONS(1297), + [anon_sym_PLUS] = ACTIONS(1299), + [anon_sym_DASH] = ACTIONS(1299), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_sizeof] = ACTIONS(1303), + [sym_number_literal] = ACTIONS(2338), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(2340), + [sym_false] = ACTIONS(2340), + [sym_null] = ACTIONS(2340), + [sym_identifier] = ACTIONS(2340), + [sym_comment] = ACTIONS(59), }, [690] = { - [aux_sym_parameter_list_repeat1] = STATE(690), - [anon_sym_COMMA] = ACTIONS(2393), - [anon_sym_RPAREN] = ACTIONS(2389), - [sym_comment] = ACTIONS(37), + [sym__expression] = STATE(850), + [sym_conditional_expression] = STATE(850), + [sym_assignment_expression] = STATE(850), + [sym_pointer_expression] = STATE(850), + [sym_logical_expression] = STATE(850), + [sym_bitwise_expression] = STATE(850), + [sym_equality_expression] = STATE(850), + [sym_relational_expression] = STATE(850), + [sym_shift_expression] = STATE(850), + [sym_math_expression] = STATE(850), + [sym_cast_expression] = STATE(850), + [sym_sizeof_expression] = STATE(850), + [sym_subscript_expression] = STATE(850), + [sym_call_expression] = STATE(850), + [sym_field_expression] = STATE(850), + [sym_compound_literal_expression] = STATE(850), + [sym_parenthesized_expression] = STATE(850), + [sym_char_literal] = STATE(850), + [sym_concatenated_string] = STATE(850), + [sym_string_literal] = STATE(508), + [anon_sym_LPAREN2] = ACTIONS(1289), + [anon_sym_STAR] = ACTIONS(1291), + [anon_sym_AMP] = ACTIONS(1291), + [anon_sym_BANG] = ACTIONS(1295), + [anon_sym_TILDE] = ACTIONS(1297), + [anon_sym_PLUS] = ACTIONS(1299), + [anon_sym_DASH] = ACTIONS(1299), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_sizeof] = ACTIONS(1303), + [sym_number_literal] = ACTIONS(2342), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(2344), + [sym_false] = ACTIONS(2344), + [sym_null] = ACTIONS(2344), + [sym_identifier] = ACTIONS(2344), + [sym_comment] = ACTIONS(59), }, [691] = { - [sym__declarator] = STATE(110), - [sym__abstract_declarator] = STATE(352), - [sym_pointer_declarator] = STATE(110), - [sym_abstract_pointer_declarator] = STATE(352), - [sym_function_declarator] = STATE(110), - [sym_abstract_function_declarator] = STATE(352), - [sym_array_declarator] = STATE(110), - [sym_abstract_array_declarator] = STATE(352), - [sym_type_qualifier] = STATE(888), - [sym_parameter_list] = STATE(192), - [aux_sym_type_definition_repeat1] = STATE(888), - [anon_sym_RPAREN] = ACTIONS(847), - [anon_sym_LPAREN2] = ACTIONS(1058), - [anon_sym_STAR] = ACTIONS(1785), - [anon_sym_LBRACK] = ACTIONS(473), - [anon_sym_const] = ACTIONS(23), - [anon_sym_restrict] = ACTIONS(23), - [anon_sym_volatile] = ACTIONS(23), - [anon_sym__Atomic] = ACTIONS(23), - [sym_identifier] = ACTIONS(223), - [sym_comment] = ACTIONS(37), + [sym__expression] = STATE(851), + [sym_conditional_expression] = STATE(851), + [sym_assignment_expression] = STATE(851), + [sym_pointer_expression] = STATE(851), + [sym_logical_expression] = STATE(851), + [sym_bitwise_expression] = STATE(851), + [sym_equality_expression] = STATE(851), + [sym_relational_expression] = STATE(851), + [sym_shift_expression] = STATE(851), + [sym_math_expression] = STATE(851), + [sym_cast_expression] = STATE(851), + [sym_sizeof_expression] = STATE(851), + [sym_subscript_expression] = STATE(851), + [sym_call_expression] = STATE(851), + [sym_field_expression] = STATE(851), + [sym_compound_literal_expression] = STATE(851), + [sym_parenthesized_expression] = STATE(851), + [sym_char_literal] = STATE(851), + [sym_concatenated_string] = STATE(851), + [sym_string_literal] = STATE(508), + [anon_sym_LPAREN2] = ACTIONS(1289), + [anon_sym_STAR] = ACTIONS(1291), + [anon_sym_AMP] = ACTIONS(1291), + [anon_sym_BANG] = ACTIONS(1295), + [anon_sym_TILDE] = ACTIONS(1297), + [anon_sym_PLUS] = ACTIONS(1299), + [anon_sym_DASH] = ACTIONS(1299), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_sizeof] = ACTIONS(1303), + [sym_number_literal] = ACTIONS(2346), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(2348), + [sym_false] = ACTIONS(2348), + [sym_null] = ACTIONS(2348), + [sym_identifier] = ACTIONS(2348), + [sym_comment] = ACTIONS(59), }, [692] = { - [anon_sym_COMMA] = ACTIONS(77), - [anon_sym_RPAREN] = ACTIONS(2396), - [anon_sym_extern] = ACTIONS(79), - [anon_sym_LPAREN2] = ACTIONS(2399), - [anon_sym_STAR] = ACTIONS(77), - [anon_sym_LBRACK] = ACTIONS(2396), - [anon_sym_static] = ACTIONS(79), - [anon_sym_auto] = ACTIONS(79), - [anon_sym_register] = ACTIONS(79), - [anon_sym_inline] = ACTIONS(79), - [anon_sym_const] = ACTIONS(79), - [anon_sym_restrict] = ACTIONS(79), - [anon_sym_volatile] = ACTIONS(79), - [anon_sym__Atomic] = ACTIONS(79), - [sym_identifier] = ACTIONS(79), - [sym_comment] = ACTIONS(37), + [sym__expression] = STATE(852), + [sym_conditional_expression] = STATE(852), + [sym_assignment_expression] = STATE(852), + [sym_pointer_expression] = STATE(852), + [sym_logical_expression] = STATE(852), + [sym_bitwise_expression] = STATE(852), + [sym_equality_expression] = STATE(852), + [sym_relational_expression] = STATE(852), + [sym_shift_expression] = STATE(852), + [sym_math_expression] = STATE(852), + [sym_cast_expression] = STATE(852), + [sym_sizeof_expression] = STATE(852), + [sym_subscript_expression] = STATE(852), + [sym_call_expression] = STATE(852), + [sym_field_expression] = STATE(852), + [sym_compound_literal_expression] = STATE(852), + [sym_parenthesized_expression] = STATE(852), + [sym_char_literal] = STATE(852), + [sym_concatenated_string] = STATE(852), + [sym_string_literal] = STATE(508), + [anon_sym_LPAREN2] = ACTIONS(1289), + [anon_sym_STAR] = ACTIONS(1291), + [anon_sym_AMP] = ACTIONS(1291), + [anon_sym_BANG] = ACTIONS(1295), + [anon_sym_TILDE] = ACTIONS(1297), + [anon_sym_PLUS] = ACTIONS(1299), + [anon_sym_DASH] = ACTIONS(1299), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_sizeof] = ACTIONS(1303), + [sym_number_literal] = ACTIONS(2350), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(2352), + [sym_false] = ACTIONS(2352), + [sym_null] = ACTIONS(2352), + [sym_identifier] = ACTIONS(2352), + [sym_comment] = ACTIONS(59), }, [693] = { - [sym__declarator] = STATE(198), - [sym__abstract_declarator] = STATE(567), - [sym_pointer_declarator] = STATE(198), - [sym_abstract_pointer_declarator] = STATE(567), - [sym_function_declarator] = STATE(198), - [sym_abstract_function_declarator] = STATE(567), - [sym_array_declarator] = STATE(198), - [sym_abstract_array_declarator] = STATE(567), - [sym_type_qualifier] = STATE(889), - [sym_parameter_list] = STATE(192), - [aux_sym_type_definition_repeat1] = STATE(889), - [anon_sym_COMMA] = ACTIONS(1367), - [anon_sym_RPAREN] = ACTIONS(1367), - [anon_sym_LPAREN2] = ACTIONS(1058), - [anon_sym_STAR] = ACTIONS(1060), - [anon_sym_LBRACK] = ACTIONS(473), - [anon_sym_const] = ACTIONS(23), - [anon_sym_restrict] = ACTIONS(23), - [anon_sym_volatile] = ACTIONS(23), - [anon_sym__Atomic] = ACTIONS(23), - [sym_identifier] = ACTIONS(487), - [sym_comment] = ACTIONS(37), + [sym__expression] = STATE(853), + [sym_conditional_expression] = STATE(853), + [sym_assignment_expression] = STATE(853), + [sym_pointer_expression] = STATE(853), + [sym_logical_expression] = STATE(853), + [sym_bitwise_expression] = STATE(853), + [sym_equality_expression] = STATE(853), + [sym_relational_expression] = STATE(853), + [sym_shift_expression] = STATE(853), + [sym_math_expression] = STATE(853), + [sym_cast_expression] = STATE(853), + [sym_sizeof_expression] = STATE(853), + [sym_subscript_expression] = STATE(853), + [sym_call_expression] = STATE(853), + [sym_field_expression] = STATE(853), + [sym_compound_literal_expression] = STATE(853), + [sym_parenthesized_expression] = STATE(853), + [sym_char_literal] = STATE(853), + [sym_concatenated_string] = STATE(853), + [sym_string_literal] = STATE(508), + [anon_sym_LPAREN2] = ACTIONS(1289), + [anon_sym_STAR] = ACTIONS(1291), + [anon_sym_AMP] = ACTIONS(1291), + [anon_sym_BANG] = ACTIONS(1295), + [anon_sym_TILDE] = ACTIONS(1297), + [anon_sym_PLUS] = ACTIONS(1299), + [anon_sym_DASH] = ACTIONS(1299), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_sizeof] = ACTIONS(1303), + [sym_number_literal] = ACTIONS(2354), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(2356), + [sym_false] = ACTIONS(2356), + [sym_null] = ACTIONS(2356), + [sym_identifier] = ACTIONS(2356), + [sym_comment] = ACTIONS(59), }, [694] = { - [sym_storage_class_specifier] = STATE(694), - [sym_type_qualifier] = STATE(694), - [aux_sym__declaration_specifiers_repeat1] = STATE(694), - [anon_sym_COMMA] = ACTIONS(599), - [anon_sym_RPAREN] = ACTIONS(599), - [anon_sym_extern] = ACTIONS(288), - [anon_sym_LPAREN2] = ACTIONS(599), - [anon_sym_STAR] = ACTIONS(599), - [anon_sym_LBRACK] = ACTIONS(599), - [anon_sym_static] = ACTIONS(288), - [anon_sym_auto] = ACTIONS(288), - [anon_sym_register] = ACTIONS(288), - [anon_sym_inline] = ACTIONS(288), - [anon_sym_const] = ACTIONS(291), - [anon_sym_restrict] = ACTIONS(291), - [anon_sym_volatile] = ACTIONS(291), - [anon_sym__Atomic] = ACTIONS(291), - [sym_identifier] = ACTIONS(294), - [sym_comment] = ACTIONS(37), + [sym__expression] = STATE(854), + [sym_conditional_expression] = STATE(854), + [sym_assignment_expression] = STATE(854), + [sym_pointer_expression] = STATE(854), + [sym_logical_expression] = STATE(854), + [sym_bitwise_expression] = STATE(854), + [sym_equality_expression] = STATE(854), + [sym_relational_expression] = STATE(854), + [sym_shift_expression] = STATE(854), + [sym_math_expression] = STATE(854), + [sym_cast_expression] = STATE(854), + [sym_sizeof_expression] = STATE(854), + [sym_subscript_expression] = STATE(854), + [sym_call_expression] = STATE(854), + [sym_field_expression] = STATE(854), + [sym_compound_literal_expression] = STATE(854), + [sym_parenthesized_expression] = STATE(854), + [sym_char_literal] = STATE(854), + [sym_concatenated_string] = STATE(854), + [sym_string_literal] = STATE(508), + [anon_sym_LPAREN2] = ACTIONS(1289), + [anon_sym_STAR] = ACTIONS(1291), + [anon_sym_AMP] = ACTIONS(1291), + [anon_sym_BANG] = ACTIONS(1295), + [anon_sym_TILDE] = ACTIONS(1297), + [anon_sym_PLUS] = ACTIONS(1299), + [anon_sym_DASH] = ACTIONS(1299), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_sizeof] = ACTIONS(1303), + [sym_number_literal] = ACTIONS(2358), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(2360), + [sym_false] = ACTIONS(2360), + [sym_null] = ACTIONS(2360), + [sym_identifier] = ACTIONS(2360), + [sym_comment] = ACTIONS(59), }, [695] = { - [sym_storage_class_specifier] = STATE(694), - [sym_type_qualifier] = STATE(694), - [aux_sym__declaration_specifiers_repeat1] = STATE(694), - [anon_sym_COMMA] = ACTIONS(601), - [anon_sym_RPAREN] = ACTIONS(601), - [anon_sym_extern] = ACTIONS(21), - [anon_sym_LPAREN2] = ACTIONS(601), - [anon_sym_STAR] = ACTIONS(601), - [anon_sym_LBRACK] = ACTIONS(601), - [anon_sym_static] = ACTIONS(21), - [anon_sym_auto] = ACTIONS(21), - [anon_sym_register] = ACTIONS(21), - [anon_sym_inline] = ACTIONS(21), - [anon_sym_const] = ACTIONS(23), - [anon_sym_restrict] = ACTIONS(23), - [anon_sym_volatile] = ACTIONS(23), - [anon_sym__Atomic] = ACTIONS(23), - [sym_identifier] = ACTIONS(603), - [sym_comment] = ACTIONS(37), - }, - [696] = { - [sym__expression] = STATE(838), - [sym_conditional_expression] = STATE(838), - [sym_assignment_expression] = STATE(838), - [sym_pointer_expression] = STATE(838), - [sym_logical_expression] = STATE(838), - [sym_bitwise_expression] = STATE(838), - [sym_equality_expression] = STATE(838), - [sym_relational_expression] = STATE(838), - [sym_shift_expression] = STATE(838), - [sym_math_expression] = STATE(838), - [sym_cast_expression] = STATE(838), - [sym_sizeof_expression] = STATE(838), - [sym_subscript_expression] = STATE(838), - [sym_call_expression] = STATE(838), - [sym_field_expression] = STATE(838), - [sym_compound_literal_expression] = STATE(838), - [sym_parenthesized_expression] = STATE(838), - [sym_initializer_list] = STATE(839), - [sym_char_literal] = STATE(838), - [sym_concatenated_string] = STATE(838), - [sym_string_literal] = STATE(249), - [anon_sym_LBRACE] = ACTIONS(585), - [anon_sym_LPAREN2] = ACTIONS(559), - [anon_sym_STAR] = ACTIONS(561), - [anon_sym_AMP] = ACTIONS(561), - [anon_sym_BANG] = ACTIONS(569), - [anon_sym_TILDE] = ACTIONS(571), - [anon_sym_PLUS] = ACTIONS(573), - [anon_sym_DASH] = ACTIONS(573), - [anon_sym_DASH_DASH] = ACTIONS(575), - [anon_sym_PLUS_PLUS] = ACTIONS(575), - [anon_sym_sizeof] = ACTIONS(577), - [sym_number_literal] = ACTIONS(2206), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(2208), - [sym_false] = ACTIONS(2208), - [sym_null] = ACTIONS(2208), - [sym_identifier] = ACTIONS(2208), - [sym_comment] = ACTIONS(37), - }, - [697] = { - [anon_sym_RPAREN] = ACTIONS(2403), - [sym_comment] = ACTIONS(37), - }, - [698] = { - [anon_sym_COMMA] = ACTIONS(2405), - [anon_sym_RPAREN] = ACTIONS(2405), - [anon_sym_SEMI] = ACTIONS(2405), - [anon_sym_LBRACE] = ACTIONS(2405), - [anon_sym_LPAREN2] = ACTIONS(2405), - [anon_sym_LBRACK] = ACTIONS(2405), - [anon_sym_EQ] = ACTIONS(2405), - [sym_comment] = ACTIONS(37), - }, - [699] = { - [sym_storage_class_specifier] = STATE(699), - [sym_type_qualifier] = STATE(699), - [aux_sym__declaration_specifiers_repeat1] = STATE(699), - [anon_sym_extern] = ACTIONS(288), - [anon_sym_LPAREN2] = ACTIONS(599), - [anon_sym_STAR] = ACTIONS(599), - [anon_sym_RBRACK] = ACTIONS(599), - [anon_sym_static] = ACTIONS(288), - [anon_sym_auto] = ACTIONS(288), - [anon_sym_register] = ACTIONS(288), - [anon_sym_inline] = ACTIONS(288), - [anon_sym_const] = ACTIONS(291), - [anon_sym_restrict] = ACTIONS(291), - [anon_sym_volatile] = ACTIONS(291), - [anon_sym__Atomic] = ACTIONS(291), - [anon_sym_AMP] = ACTIONS(599), - [anon_sym_BANG] = ACTIONS(599), - [anon_sym_TILDE] = ACTIONS(599), - [anon_sym_PLUS] = ACTIONS(294), - [anon_sym_DASH] = ACTIONS(294), - [anon_sym_DASH_DASH] = ACTIONS(599), - [anon_sym_PLUS_PLUS] = ACTIONS(599), - [anon_sym_sizeof] = ACTIONS(294), - [sym_number_literal] = ACTIONS(599), - [anon_sym_SQUOTE] = ACTIONS(599), - [anon_sym_DQUOTE] = ACTIONS(599), - [sym_true] = ACTIONS(294), - [sym_false] = ACTIONS(294), - [sym_null] = ACTIONS(294), - [sym_identifier] = ACTIONS(294), - [sym_comment] = ACTIONS(37), - }, - [700] = { - [sym_argument_list] = STATE(430), - [anon_sym_LPAREN2] = ACTIONS(1012), - [anon_sym_STAR] = ACTIONS(1082), - [anon_sym_LBRACK] = ACTIONS(1016), - [anon_sym_RBRACK] = ACTIONS(2354), - [anon_sym_EQ] = ACTIONS(1084), - [anon_sym_QMARK] = ACTIONS(2354), - [anon_sym_STAR_EQ] = ACTIONS(1088), - [anon_sym_SLASH_EQ] = ACTIONS(1088), - [anon_sym_PERCENT_EQ] = ACTIONS(1088), - [anon_sym_PLUS_EQ] = ACTIONS(1088), - [anon_sym_DASH_EQ] = ACTIONS(1088), - [anon_sym_LT_LT_EQ] = ACTIONS(1088), - [anon_sym_GT_GT_EQ] = ACTIONS(1088), - [anon_sym_AMP_EQ] = ACTIONS(1088), - [anon_sym_CARET_EQ] = ACTIONS(1088), - [anon_sym_PIPE_EQ] = ACTIONS(1088), - [anon_sym_AMP] = ACTIONS(1090), - [anon_sym_PIPE_PIPE] = ACTIONS(1092), - [anon_sym_AMP_AMP] = ACTIONS(1094), - [anon_sym_PIPE] = ACTIONS(1096), - [anon_sym_CARET] = ACTIONS(1098), - [anon_sym_EQ_EQ] = ACTIONS(1100), - [anon_sym_BANG_EQ] = ACTIONS(1100), - [anon_sym_LT] = ACTIONS(1102), - [anon_sym_GT] = ACTIONS(1102), - [anon_sym_LT_EQ] = ACTIONS(1104), - [anon_sym_GT_EQ] = ACTIONS(1104), - [anon_sym_LT_LT] = ACTIONS(1106), - [anon_sym_GT_GT] = ACTIONS(1106), - [anon_sym_PLUS] = ACTIONS(1108), - [anon_sym_DASH] = ACTIONS(1108), - [anon_sym_SLASH] = ACTIONS(1082), - [anon_sym_PERCENT] = ACTIONS(1082), - [anon_sym_DASH_DASH] = ACTIONS(1044), - [anon_sym_PLUS_PLUS] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1046), - [anon_sym_DASH_GT] = ACTIONS(1046), - [sym_comment] = ACTIONS(37), + [sym__expression] = STATE(855), + [sym_conditional_expression] = STATE(855), + [sym_assignment_expression] = STATE(855), + [sym_pointer_expression] = STATE(855), + [sym_logical_expression] = STATE(855), + [sym_bitwise_expression] = STATE(855), + [sym_equality_expression] = STATE(855), + [sym_relational_expression] = STATE(855), + [sym_shift_expression] = STATE(855), + [sym_math_expression] = STATE(855), + [sym_cast_expression] = STATE(855), + [sym_sizeof_expression] = STATE(855), + [sym_subscript_expression] = STATE(855), + [sym_call_expression] = STATE(855), + [sym_field_expression] = STATE(855), + [sym_compound_literal_expression] = STATE(855), + [sym_parenthesized_expression] = STATE(855), + [sym_char_literal] = STATE(855), + [sym_concatenated_string] = STATE(855), + [sym_string_literal] = STATE(508), + [anon_sym_LPAREN2] = ACTIONS(1289), + [anon_sym_STAR] = ACTIONS(1291), + [anon_sym_AMP] = ACTIONS(1291), + [anon_sym_BANG] = ACTIONS(1295), + [anon_sym_TILDE] = ACTIONS(1297), + [anon_sym_PLUS] = ACTIONS(1299), + [anon_sym_DASH] = ACTIONS(1299), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_sizeof] = ACTIONS(1303), + [sym_number_literal] = ACTIONS(2362), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(2364), + [sym_false] = ACTIONS(2364), + [sym_null] = ACTIONS(2364), + [sym_identifier] = ACTIONS(2364), + [sym_comment] = ACTIONS(59), + }, + [696] = { + [aux_sym_initializer_list_repeat1] = STATE(857), + [anon_sym_COMMA] = ACTIONS(2366), + [anon_sym_RBRACE] = ACTIONS(2316), + [sym_comment] = ACTIONS(59), + }, + [697] = { + [sym_string_literal] = STATE(858), + [aux_sym_concatenated_string_repeat1] = STATE(858), + [anon_sym_COMMA] = ACTIONS(547), + [anon_sym_RBRACE] = ACTIONS(547), + [anon_sym_LPAREN2] = ACTIONS(547), + [anon_sym_STAR] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_EQ] = ACTIONS(549), + [anon_sym_QMARK] = ACTIONS(547), + [anon_sym_STAR_EQ] = ACTIONS(547), + [anon_sym_SLASH_EQ] = ACTIONS(547), + [anon_sym_PERCENT_EQ] = ACTIONS(547), + [anon_sym_PLUS_EQ] = ACTIONS(547), + [anon_sym_DASH_EQ] = ACTIONS(547), + [anon_sym_LT_LT_EQ] = ACTIONS(547), + [anon_sym_GT_GT_EQ] = ACTIONS(547), + [anon_sym_AMP_EQ] = ACTIONS(547), + [anon_sym_CARET_EQ] = ACTIONS(547), + [anon_sym_PIPE_EQ] = ACTIONS(547), + [anon_sym_AMP] = ACTIONS(549), + [anon_sym_PIPE_PIPE] = ACTIONS(547), + [anon_sym_AMP_AMP] = ACTIONS(547), + [anon_sym_PIPE] = ACTIONS(549), + [anon_sym_CARET] = ACTIONS(549), + [anon_sym_EQ_EQ] = ACTIONS(547), + [anon_sym_BANG_EQ] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(549), + [anon_sym_GT] = ACTIONS(549), + [anon_sym_LT_EQ] = ACTIONS(547), + [anon_sym_GT_EQ] = ACTIONS(547), + [anon_sym_LT_LT] = ACTIONS(549), + [anon_sym_GT_GT] = ACTIONS(549), + [anon_sym_PLUS] = ACTIONS(549), + [anon_sym_DASH] = ACTIONS(549), + [anon_sym_SLASH] = ACTIONS(549), + [anon_sym_PERCENT] = ACTIONS(549), + [anon_sym_DASH_DASH] = ACTIONS(547), + [anon_sym_PLUS_PLUS] = ACTIONS(547), + [anon_sym_DOT] = ACTIONS(547), + [anon_sym_DASH_GT] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_comment] = ACTIONS(59), + }, + [698] = { + [sym__expression] = STATE(859), + [sym_conditional_expression] = STATE(859), + [sym_assignment_expression] = STATE(859), + [sym_pointer_expression] = STATE(859), + [sym_logical_expression] = STATE(859), + [sym_bitwise_expression] = STATE(859), + [sym_equality_expression] = STATE(859), + [sym_relational_expression] = STATE(859), + [sym_shift_expression] = STATE(859), + [sym_math_expression] = STATE(859), + [sym_cast_expression] = STATE(859), + [sym_sizeof_expression] = STATE(859), + [sym_subscript_expression] = STATE(859), + [sym_call_expression] = STATE(859), + [sym_field_expression] = STATE(859), + [sym_compound_literal_expression] = STATE(859), + [sym_parenthesized_expression] = STATE(859), + [sym_initializer_list] = STATE(860), + [sym_char_literal] = STATE(859), + [sym_concatenated_string] = STATE(859), + [sym_string_literal] = STATE(508), + [anon_sym_LBRACE] = ACTIONS(840), + [anon_sym_LPAREN2] = ACTIONS(1289), + [anon_sym_STAR] = ACTIONS(1291), + [anon_sym_AMP] = ACTIONS(1291), + [anon_sym_BANG] = ACTIONS(1295), + [anon_sym_TILDE] = ACTIONS(1297), + [anon_sym_PLUS] = ACTIONS(1299), + [anon_sym_DASH] = ACTIONS(1299), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_sizeof] = ACTIONS(1303), + [sym_number_literal] = ACTIONS(2368), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(2370), + [sym_false] = ACTIONS(2370), + [sym_null] = ACTIONS(2370), + [sym_identifier] = ACTIONS(2370), + [sym_comment] = ACTIONS(59), + }, + [699] = { + [sym_subscript_designator] = STATE(699), + [sym_field_designator] = STATE(699), + [aux_sym_initializer_pair_repeat1] = STATE(699), + [anon_sym_LBRACK] = ACTIONS(2372), + [anon_sym_EQ] = ACTIONS(2375), + [anon_sym_DOT] = ACTIONS(2377), + [sym_comment] = ACTIONS(59), + }, + [700] = { + [anon_sym_SEMI] = ACTIONS(2380), + [anon_sym_COMMA] = ACTIONS(2380), + [anon_sym_RPAREN] = ACTIONS(2380), + [anon_sym_extern] = ACTIONS(2382), + [anon_sym_LPAREN2] = ACTIONS(2380), + [anon_sym_STAR] = ACTIONS(2380), + [anon_sym_LBRACK] = ACTIONS(2380), + [anon_sym_RBRACK] = ACTIONS(2380), + [anon_sym_static] = ACTIONS(2382), + [anon_sym_auto] = ACTIONS(2382), + [anon_sym_register] = ACTIONS(2382), + [anon_sym_inline] = ACTIONS(2382), + [anon_sym_const] = ACTIONS(2382), + [anon_sym_restrict] = ACTIONS(2382), + [anon_sym_volatile] = ACTIONS(2382), + [anon_sym__Atomic] = ACTIONS(2382), + [anon_sym_COLON] = ACTIONS(2380), + [anon_sym_AMP] = ACTIONS(2380), + [anon_sym_BANG] = ACTIONS(2380), + [anon_sym_TILDE] = ACTIONS(2380), + [anon_sym_PLUS] = ACTIONS(2382), + [anon_sym_DASH] = ACTIONS(2382), + [anon_sym_DASH_DASH] = ACTIONS(2380), + [anon_sym_PLUS_PLUS] = ACTIONS(2380), + [anon_sym_sizeof] = ACTIONS(2382), + [sym_number_literal] = ACTIONS(2380), + [anon_sym_SQUOTE] = ACTIONS(2380), + [anon_sym_DQUOTE] = ACTIONS(2380), + [sym_true] = ACTIONS(2382), + [sym_false] = ACTIONS(2382), + [sym_null] = ACTIONS(2382), + [sym_identifier] = ACTIONS(2382), + [sym_comment] = ACTIONS(59), }, [701] = { - [sym_argument_list] = STATE(430), - [anon_sym_LPAREN2] = ACTIONS(1012), - [anon_sym_STAR] = ACTIONS(1497), - [anon_sym_LBRACK] = ACTIONS(1016), - [anon_sym_EQ] = ACTIONS(1499), - [anon_sym_COLON] = ACTIONS(2407), - [anon_sym_QMARK] = ACTIONS(1503), - [anon_sym_STAR_EQ] = ACTIONS(1505), - [anon_sym_SLASH_EQ] = ACTIONS(1505), - [anon_sym_PERCENT_EQ] = ACTIONS(1505), - [anon_sym_PLUS_EQ] = ACTIONS(1505), - [anon_sym_DASH_EQ] = ACTIONS(1505), - [anon_sym_LT_LT_EQ] = ACTIONS(1505), - [anon_sym_GT_GT_EQ] = ACTIONS(1505), - [anon_sym_AMP_EQ] = ACTIONS(1505), - [anon_sym_CARET_EQ] = ACTIONS(1505), - [anon_sym_PIPE_EQ] = ACTIONS(1505), - [anon_sym_AMP] = ACTIONS(1507), - [anon_sym_PIPE_PIPE] = ACTIONS(1509), - [anon_sym_AMP_AMP] = ACTIONS(1511), - [anon_sym_PIPE] = ACTIONS(1513), - [anon_sym_CARET] = ACTIONS(1515), - [anon_sym_EQ_EQ] = ACTIONS(1517), - [anon_sym_BANG_EQ] = ACTIONS(1517), - [anon_sym_LT] = ACTIONS(1519), - [anon_sym_GT] = ACTIONS(1519), - [anon_sym_LT_EQ] = ACTIONS(1521), - [anon_sym_GT_EQ] = ACTIONS(1521), - [anon_sym_LT_LT] = ACTIONS(1523), - [anon_sym_GT_GT] = ACTIONS(1523), - [anon_sym_PLUS] = ACTIONS(1525), - [anon_sym_DASH] = ACTIONS(1525), - [anon_sym_SLASH] = ACTIONS(1497), - [anon_sym_PERCENT] = ACTIONS(1497), - [anon_sym_DASH_DASH] = ACTIONS(1044), - [anon_sym_PLUS_PLUS] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1046), - [anon_sym_DASH_GT] = ACTIONS(1046), - [sym_comment] = ACTIONS(37), + [sym_enumerator] = STATE(512), + [sym_identifier] = ACTIONS(363), + [sym_comment] = ACTIONS(59), }, [702] = { - [sym_argument_list] = STATE(430), - [anon_sym_LPAREN2] = ACTIONS(1012), - [anon_sym_STAR] = ACTIONS(1082), - [anon_sym_LBRACK] = ACTIONS(1016), - [anon_sym_RBRACK] = ACTIONS(2358), - [anon_sym_EQ] = ACTIONS(2360), - [anon_sym_QMARK] = ACTIONS(2358), - [anon_sym_STAR_EQ] = ACTIONS(2358), - [anon_sym_SLASH_EQ] = ACTIONS(2358), - [anon_sym_PERCENT_EQ] = ACTIONS(2358), - [anon_sym_PLUS_EQ] = ACTIONS(2358), - [anon_sym_DASH_EQ] = ACTIONS(2358), - [anon_sym_LT_LT_EQ] = ACTIONS(2358), - [anon_sym_GT_GT_EQ] = ACTIONS(2358), - [anon_sym_AMP_EQ] = ACTIONS(2358), - [anon_sym_CARET_EQ] = ACTIONS(2358), - [anon_sym_PIPE_EQ] = ACTIONS(2358), - [anon_sym_AMP] = ACTIONS(2360), - [anon_sym_PIPE_PIPE] = ACTIONS(2358), - [anon_sym_AMP_AMP] = ACTIONS(2358), - [anon_sym_PIPE] = ACTIONS(2360), - [anon_sym_CARET] = ACTIONS(2360), - [anon_sym_EQ_EQ] = ACTIONS(1100), - [anon_sym_BANG_EQ] = ACTIONS(1100), - [anon_sym_LT] = ACTIONS(1102), - [anon_sym_GT] = ACTIONS(1102), - [anon_sym_LT_EQ] = ACTIONS(1104), - [anon_sym_GT_EQ] = ACTIONS(1104), - [anon_sym_LT_LT] = ACTIONS(1106), - [anon_sym_GT_GT] = ACTIONS(1106), - [anon_sym_PLUS] = ACTIONS(1108), - [anon_sym_DASH] = ACTIONS(1108), - [anon_sym_SLASH] = ACTIONS(1082), - [anon_sym_PERCENT] = ACTIONS(1082), - [anon_sym_DASH_DASH] = ACTIONS(1044), - [anon_sym_PLUS_PLUS] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1046), - [anon_sym_DASH_GT] = ACTIONS(1046), - [sym_comment] = ACTIONS(37), + [sym_preproc_if_in_field_declaration_list] = STATE(861), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(861), + [sym__declaration_specifiers] = STATE(178), + [sym_storage_class_specifier] = STATE(181), + [sym_type_qualifier] = STATE(181), + [sym__type_specifier] = STATE(179), + [sym_sized_type_specifier] = STATE(179), + [sym_enum_specifier] = STATE(179), + [sym_struct_specifier] = STATE(179), + [sym_union_specifier] = STATE(179), + [sym__field_declaration_list_item] = STATE(861), + [sym_field_declaration] = STATE(861), + [sym_macro_type_specifier] = STATE(179), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(861), + [aux_sym__declaration_specifiers_repeat1] = STATE(181), + [aux_sym_sized_type_specifier_repeat1] = STATE(182), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(373), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2384), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(375), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(375), + [anon_sym_extern] = ACTIONS(25), + [anon_sym_static] = ACTIONS(25), + [anon_sym_auto] = ACTIONS(25), + [anon_sym_register] = ACTIONS(25), + [anon_sym_inline] = ACTIONS(25), + [anon_sym_const] = ACTIONS(27), + [anon_sym_restrict] = ACTIONS(27), + [anon_sym_volatile] = ACTIONS(27), + [anon_sym__Atomic] = ACTIONS(27), + [anon_sym_unsigned] = ACTIONS(379), + [anon_sym_long] = ACTIONS(379), + [anon_sym_short] = ACTIONS(379), + [sym_primitive_type] = ACTIONS(381), + [anon_sym_enum] = ACTIONS(33), + [anon_sym_struct] = ACTIONS(35), + [anon_sym_union] = ACTIONS(37), + [sym_identifier] = ACTIONS(81), + [sym_comment] = ACTIONS(59), }, [703] = { - [sym_argument_list] = STATE(430), - [anon_sym_LPAREN2] = ACTIONS(1012), - [anon_sym_STAR] = ACTIONS(1082), - [anon_sym_LBRACK] = ACTIONS(1016), - [anon_sym_RBRACK] = ACTIONS(2362), - [anon_sym_EQ] = ACTIONS(2364), - [anon_sym_QMARK] = ACTIONS(2362), - [anon_sym_STAR_EQ] = ACTIONS(2362), - [anon_sym_SLASH_EQ] = ACTIONS(2362), - [anon_sym_PERCENT_EQ] = ACTIONS(2362), - [anon_sym_PLUS_EQ] = ACTIONS(2362), - [anon_sym_DASH_EQ] = ACTIONS(2362), - [anon_sym_LT_LT_EQ] = ACTIONS(2362), - [anon_sym_GT_GT_EQ] = ACTIONS(2362), - [anon_sym_AMP_EQ] = ACTIONS(2362), - [anon_sym_CARET_EQ] = ACTIONS(2362), - [anon_sym_PIPE_EQ] = ACTIONS(2362), - [anon_sym_AMP] = ACTIONS(1090), - [anon_sym_PIPE_PIPE] = ACTIONS(2362), - [anon_sym_AMP_AMP] = ACTIONS(1094), - [anon_sym_PIPE] = ACTIONS(1096), - [anon_sym_CARET] = ACTIONS(1098), - [anon_sym_EQ_EQ] = ACTIONS(1100), - [anon_sym_BANG_EQ] = ACTIONS(1100), - [anon_sym_LT] = ACTIONS(1102), - [anon_sym_GT] = ACTIONS(1102), - [anon_sym_LT_EQ] = ACTIONS(1104), - [anon_sym_GT_EQ] = ACTIONS(1104), - [anon_sym_LT_LT] = ACTIONS(1106), - [anon_sym_GT_GT] = ACTIONS(1106), - [anon_sym_PLUS] = ACTIONS(1108), - [anon_sym_DASH] = ACTIONS(1108), - [anon_sym_SLASH] = ACTIONS(1082), - [anon_sym_PERCENT] = ACTIONS(1082), - [anon_sym_DASH_DASH] = ACTIONS(1044), - [anon_sym_PLUS_PLUS] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1046), - [anon_sym_DASH_GT] = ACTIONS(1046), - [sym_comment] = ACTIONS(37), + [sym_preproc_if_in_field_declaration_list] = STATE(863), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(863), + [sym_preproc_else_in_field_declaration_list] = STATE(862), + [sym_preproc_elif_in_field_declaration_list] = STATE(862), + [sym__declaration_specifiers] = STATE(178), + [sym_storage_class_specifier] = STATE(181), + [sym_type_qualifier] = STATE(181), + [sym__type_specifier] = STATE(179), + [sym_sized_type_specifier] = STATE(179), + [sym_enum_specifier] = STATE(179), + [sym_struct_specifier] = STATE(179), + [sym_union_specifier] = STATE(179), + [sym__field_declaration_list_item] = STATE(863), + [sym_field_declaration] = STATE(863), + [sym_macro_type_specifier] = STATE(179), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(863), + [aux_sym__declaration_specifiers_repeat1] = STATE(181), + [aux_sym_sized_type_specifier_repeat1] = STATE(182), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(373), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2386), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(375), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(375), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1335), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(25), + [anon_sym_static] = ACTIONS(25), + [anon_sym_auto] = ACTIONS(25), + [anon_sym_register] = ACTIONS(25), + [anon_sym_inline] = ACTIONS(25), + [anon_sym_const] = ACTIONS(27), + [anon_sym_restrict] = ACTIONS(27), + [anon_sym_volatile] = ACTIONS(27), + [anon_sym__Atomic] = ACTIONS(27), + [anon_sym_unsigned] = ACTIONS(379), + [anon_sym_long] = ACTIONS(379), + [anon_sym_short] = ACTIONS(379), + [sym_primitive_type] = ACTIONS(381), + [anon_sym_enum] = ACTIONS(33), + [anon_sym_struct] = ACTIONS(35), + [anon_sym_union] = ACTIONS(37), + [sym_identifier] = ACTIONS(81), + [sym_comment] = ACTIONS(59), }, [704] = { - [sym_argument_list] = STATE(430), - [anon_sym_LPAREN2] = ACTIONS(1012), - [anon_sym_STAR] = ACTIONS(1082), - [anon_sym_LBRACK] = ACTIONS(1016), - [anon_sym_RBRACK] = ACTIONS(2362), - [anon_sym_EQ] = ACTIONS(2364), - [anon_sym_QMARK] = ACTIONS(2362), - [anon_sym_STAR_EQ] = ACTIONS(2362), - [anon_sym_SLASH_EQ] = ACTIONS(2362), - [anon_sym_PERCENT_EQ] = ACTIONS(2362), - [anon_sym_PLUS_EQ] = ACTIONS(2362), - [anon_sym_DASH_EQ] = ACTIONS(2362), - [anon_sym_LT_LT_EQ] = ACTIONS(2362), - [anon_sym_GT_GT_EQ] = ACTIONS(2362), - [anon_sym_AMP_EQ] = ACTIONS(2362), - [anon_sym_CARET_EQ] = ACTIONS(2362), - [anon_sym_PIPE_EQ] = ACTIONS(2362), - [anon_sym_AMP] = ACTIONS(1090), - [anon_sym_PIPE_PIPE] = ACTIONS(2362), - [anon_sym_AMP_AMP] = ACTIONS(2362), - [anon_sym_PIPE] = ACTIONS(1096), - [anon_sym_CARET] = ACTIONS(1098), - [anon_sym_EQ_EQ] = ACTIONS(1100), - [anon_sym_BANG_EQ] = ACTIONS(1100), - [anon_sym_LT] = ACTIONS(1102), - [anon_sym_GT] = ACTIONS(1102), - [anon_sym_LT_EQ] = ACTIONS(1104), - [anon_sym_GT_EQ] = ACTIONS(1104), - [anon_sym_LT_LT] = ACTIONS(1106), - [anon_sym_GT_GT] = ACTIONS(1106), - [anon_sym_PLUS] = ACTIONS(1108), - [anon_sym_DASH] = ACTIONS(1108), - [anon_sym_SLASH] = ACTIONS(1082), - [anon_sym_PERCENT] = ACTIONS(1082), - [anon_sym_DASH_DASH] = ACTIONS(1044), - [anon_sym_PLUS_PLUS] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1046), - [anon_sym_DASH_GT] = ACTIONS(1046), - [sym_comment] = ACTIONS(37), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2388), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2390), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2390), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2390), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2390), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2390), + [anon_sym_extern] = ACTIONS(2388), + [anon_sym_RBRACE] = ACTIONS(2390), + [anon_sym_static] = ACTIONS(2388), + [anon_sym_auto] = ACTIONS(2388), + [anon_sym_register] = ACTIONS(2388), + [anon_sym_inline] = ACTIONS(2388), + [anon_sym_const] = ACTIONS(2388), + [anon_sym_restrict] = ACTIONS(2388), + [anon_sym_volatile] = ACTIONS(2388), + [anon_sym__Atomic] = ACTIONS(2388), + [anon_sym_unsigned] = ACTIONS(2388), + [anon_sym_long] = ACTIONS(2388), + [anon_sym_short] = ACTIONS(2388), + [sym_primitive_type] = ACTIONS(2388), + [anon_sym_enum] = ACTIONS(2388), + [anon_sym_struct] = ACTIONS(2388), + [anon_sym_union] = ACTIONS(2388), + [sym_identifier] = ACTIONS(2388), + [sym_comment] = ACTIONS(59), }, [705] = { - [sym_argument_list] = STATE(430), - [anon_sym_LPAREN2] = ACTIONS(1012), - [anon_sym_STAR] = ACTIONS(1082), - [anon_sym_LBRACK] = ACTIONS(1016), - [anon_sym_RBRACK] = ACTIONS(2358), - [anon_sym_EQ] = ACTIONS(2360), - [anon_sym_QMARK] = ACTIONS(2358), - [anon_sym_STAR_EQ] = ACTIONS(2358), - [anon_sym_SLASH_EQ] = ACTIONS(2358), - [anon_sym_PERCENT_EQ] = ACTIONS(2358), - [anon_sym_PLUS_EQ] = ACTIONS(2358), - [anon_sym_DASH_EQ] = ACTIONS(2358), - [anon_sym_LT_LT_EQ] = ACTIONS(2358), - [anon_sym_GT_GT_EQ] = ACTIONS(2358), - [anon_sym_AMP_EQ] = ACTIONS(2358), - [anon_sym_CARET_EQ] = ACTIONS(2358), - [anon_sym_PIPE_EQ] = ACTIONS(2358), - [anon_sym_AMP] = ACTIONS(1090), - [anon_sym_PIPE_PIPE] = ACTIONS(2358), - [anon_sym_AMP_AMP] = ACTIONS(2358), - [anon_sym_PIPE] = ACTIONS(2360), - [anon_sym_CARET] = ACTIONS(1098), - [anon_sym_EQ_EQ] = ACTIONS(1100), - [anon_sym_BANG_EQ] = ACTIONS(1100), - [anon_sym_LT] = ACTIONS(1102), - [anon_sym_GT] = ACTIONS(1102), - [anon_sym_LT_EQ] = ACTIONS(1104), - [anon_sym_GT_EQ] = ACTIONS(1104), - [anon_sym_LT_LT] = ACTIONS(1106), - [anon_sym_GT_GT] = ACTIONS(1106), - [anon_sym_PLUS] = ACTIONS(1108), - [anon_sym_DASH] = ACTIONS(1108), - [anon_sym_SLASH] = ACTIONS(1082), - [anon_sym_PERCENT] = ACTIONS(1082), - [anon_sym_DASH_DASH] = ACTIONS(1044), - [anon_sym_PLUS_PLUS] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1046), - [anon_sym_DASH_GT] = ACTIONS(1046), - [sym_comment] = ACTIONS(37), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2392), + [sym_comment] = ACTIONS(59), }, [706] = { - [sym_argument_list] = STATE(430), - [anon_sym_LPAREN2] = ACTIONS(1012), - [anon_sym_STAR] = ACTIONS(1082), - [anon_sym_LBRACK] = ACTIONS(1016), - [anon_sym_RBRACK] = ACTIONS(2358), - [anon_sym_EQ] = ACTIONS(2360), - [anon_sym_QMARK] = ACTIONS(2358), - [anon_sym_STAR_EQ] = ACTIONS(2358), - [anon_sym_SLASH_EQ] = ACTIONS(2358), - [anon_sym_PERCENT_EQ] = ACTIONS(2358), - [anon_sym_PLUS_EQ] = ACTIONS(2358), - [anon_sym_DASH_EQ] = ACTIONS(2358), - [anon_sym_LT_LT_EQ] = ACTIONS(2358), - [anon_sym_GT_GT_EQ] = ACTIONS(2358), - [anon_sym_AMP_EQ] = ACTIONS(2358), - [anon_sym_CARET_EQ] = ACTIONS(2358), - [anon_sym_PIPE_EQ] = ACTIONS(2358), - [anon_sym_AMP] = ACTIONS(1090), - [anon_sym_PIPE_PIPE] = ACTIONS(2358), - [anon_sym_AMP_AMP] = ACTIONS(2358), - [anon_sym_PIPE] = ACTIONS(2360), - [anon_sym_CARET] = ACTIONS(2360), - [anon_sym_EQ_EQ] = ACTIONS(1100), - [anon_sym_BANG_EQ] = ACTIONS(1100), - [anon_sym_LT] = ACTIONS(1102), - [anon_sym_GT] = ACTIONS(1102), - [anon_sym_LT_EQ] = ACTIONS(1104), - [anon_sym_GT_EQ] = ACTIONS(1104), - [anon_sym_LT_LT] = ACTIONS(1106), - [anon_sym_GT_GT] = ACTIONS(1106), - [anon_sym_PLUS] = ACTIONS(1108), - [anon_sym_DASH] = ACTIONS(1108), - [anon_sym_SLASH] = ACTIONS(1082), - [anon_sym_PERCENT] = ACTIONS(1082), - [anon_sym_DASH_DASH] = ACTIONS(1044), - [anon_sym_PLUS_PLUS] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1046), - [anon_sym_DASH_GT] = ACTIONS(1046), - [sym_comment] = ACTIONS(37), + [sym_preproc_if_in_field_declaration_list] = STATE(706), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(706), + [sym__declaration_specifiers] = STATE(178), + [sym_storage_class_specifier] = STATE(181), + [sym_type_qualifier] = STATE(181), + [sym__type_specifier] = STATE(179), + [sym_sized_type_specifier] = STATE(179), + [sym_enum_specifier] = STATE(179), + [sym_struct_specifier] = STATE(179), + [sym_union_specifier] = STATE(179), + [sym__field_declaration_list_item] = STATE(706), + [sym_field_declaration] = STATE(706), + [sym_macro_type_specifier] = STATE(179), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(706), + [aux_sym__declaration_specifiers_repeat1] = STATE(181), + [aux_sym_sized_type_specifier_repeat1] = STATE(182), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1381), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1390), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1384), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1384), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1390), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1390), + [anon_sym_extern] = ACTIONS(1387), + [anon_sym_static] = ACTIONS(1387), + [anon_sym_auto] = ACTIONS(1387), + [anon_sym_register] = ACTIONS(1387), + [anon_sym_inline] = ACTIONS(1387), + [anon_sym_const] = ACTIONS(1392), + [anon_sym_restrict] = ACTIONS(1392), + [anon_sym_volatile] = ACTIONS(1392), + [anon_sym__Atomic] = ACTIONS(1392), + [anon_sym_unsigned] = ACTIONS(1395), + [anon_sym_long] = ACTIONS(1395), + [anon_sym_short] = ACTIONS(1395), + [sym_primitive_type] = ACTIONS(1398), + [anon_sym_enum] = ACTIONS(1401), + [anon_sym_struct] = ACTIONS(1404), + [anon_sym_union] = ACTIONS(1407), + [sym_identifier] = ACTIONS(1410), + [sym_comment] = ACTIONS(59), }, [707] = { - [sym_argument_list] = STATE(430), - [anon_sym_LPAREN2] = ACTIONS(1012), - [anon_sym_STAR] = ACTIONS(1082), - [anon_sym_LBRACK] = ACTIONS(1016), - [anon_sym_RBRACK] = ACTIONS(2366), - [anon_sym_EQ] = ACTIONS(2368), - [anon_sym_QMARK] = ACTIONS(2366), - [anon_sym_STAR_EQ] = ACTIONS(2366), - [anon_sym_SLASH_EQ] = ACTIONS(2366), - [anon_sym_PERCENT_EQ] = ACTIONS(2366), - [anon_sym_PLUS_EQ] = ACTIONS(2366), - [anon_sym_DASH_EQ] = ACTIONS(2366), - [anon_sym_LT_LT_EQ] = ACTIONS(2366), - [anon_sym_GT_GT_EQ] = ACTIONS(2366), - [anon_sym_AMP_EQ] = ACTIONS(2366), - [anon_sym_CARET_EQ] = ACTIONS(2366), - [anon_sym_PIPE_EQ] = ACTIONS(2366), - [anon_sym_AMP] = ACTIONS(2368), - [anon_sym_PIPE_PIPE] = ACTIONS(2366), - [anon_sym_AMP_AMP] = ACTIONS(2366), - [anon_sym_PIPE] = ACTIONS(2368), - [anon_sym_CARET] = ACTIONS(2368), - [anon_sym_EQ_EQ] = ACTIONS(2366), - [anon_sym_BANG_EQ] = ACTIONS(2366), - [anon_sym_LT] = ACTIONS(1102), - [anon_sym_GT] = ACTIONS(1102), - [anon_sym_LT_EQ] = ACTIONS(1104), - [anon_sym_GT_EQ] = ACTIONS(1104), - [anon_sym_LT_LT] = ACTIONS(1106), - [anon_sym_GT_GT] = ACTIONS(1106), - [anon_sym_PLUS] = ACTIONS(1108), - [anon_sym_DASH] = ACTIONS(1108), - [anon_sym_SLASH] = ACTIONS(1082), - [anon_sym_PERCENT] = ACTIONS(1082), - [anon_sym_DASH_DASH] = ACTIONS(1044), - [anon_sym_PLUS_PLUS] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1046), - [anon_sym_DASH_GT] = ACTIONS(1046), - [sym_comment] = ACTIONS(37), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2394), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2396), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2396), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2396), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2396), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2396), + [anon_sym_extern] = ACTIONS(2394), + [anon_sym_RBRACE] = ACTIONS(2396), + [anon_sym_static] = ACTIONS(2394), + [anon_sym_auto] = ACTIONS(2394), + [anon_sym_register] = ACTIONS(2394), + [anon_sym_inline] = ACTIONS(2394), + [anon_sym_const] = ACTIONS(2394), + [anon_sym_restrict] = ACTIONS(2394), + [anon_sym_volatile] = ACTIONS(2394), + [anon_sym__Atomic] = ACTIONS(2394), + [anon_sym_unsigned] = ACTIONS(2394), + [anon_sym_long] = ACTIONS(2394), + [anon_sym_short] = ACTIONS(2394), + [sym_primitive_type] = ACTIONS(2394), + [anon_sym_enum] = ACTIONS(2394), + [anon_sym_struct] = ACTIONS(2394), + [anon_sym_union] = ACTIONS(2394), + [sym_identifier] = ACTIONS(2394), + [sym_comment] = ACTIONS(59), }, [708] = { - [sym_argument_list] = STATE(430), - [anon_sym_LPAREN2] = ACTIONS(1012), - [anon_sym_STAR] = ACTIONS(1082), - [anon_sym_LBRACK] = ACTIONS(1016), - [anon_sym_RBRACK] = ACTIONS(2370), - [anon_sym_EQ] = ACTIONS(2372), - [anon_sym_QMARK] = ACTIONS(2370), - [anon_sym_STAR_EQ] = ACTIONS(2370), - [anon_sym_SLASH_EQ] = ACTIONS(2370), - [anon_sym_PERCENT_EQ] = ACTIONS(2370), - [anon_sym_PLUS_EQ] = ACTIONS(2370), - [anon_sym_DASH_EQ] = ACTIONS(2370), - [anon_sym_LT_LT_EQ] = ACTIONS(2370), - [anon_sym_GT_GT_EQ] = ACTIONS(2370), - [anon_sym_AMP_EQ] = ACTIONS(2370), - [anon_sym_CARET_EQ] = ACTIONS(2370), - [anon_sym_PIPE_EQ] = ACTIONS(2370), - [anon_sym_AMP] = ACTIONS(2372), - [anon_sym_PIPE_PIPE] = ACTIONS(2370), - [anon_sym_AMP_AMP] = ACTIONS(2370), - [anon_sym_PIPE] = ACTIONS(2372), - [anon_sym_CARET] = ACTIONS(2372), - [anon_sym_EQ_EQ] = ACTIONS(2370), - [anon_sym_BANG_EQ] = ACTIONS(2370), - [anon_sym_LT] = ACTIONS(2372), - [anon_sym_GT] = ACTIONS(2372), - [anon_sym_LT_EQ] = ACTIONS(2370), - [anon_sym_GT_EQ] = ACTIONS(2370), - [anon_sym_LT_LT] = ACTIONS(1106), - [anon_sym_GT_GT] = ACTIONS(1106), - [anon_sym_PLUS] = ACTIONS(1108), - [anon_sym_DASH] = ACTIONS(1108), - [anon_sym_SLASH] = ACTIONS(1082), - [anon_sym_PERCENT] = ACTIONS(1082), - [anon_sym_DASH_DASH] = ACTIONS(1044), - [anon_sym_PLUS_PLUS] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1046), - [anon_sym_DASH_GT] = ACTIONS(1046), - [sym_comment] = ACTIONS(37), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2398), + [sym_comment] = ACTIONS(59), }, [709] = { - [sym_argument_list] = STATE(430), - [anon_sym_LPAREN2] = ACTIONS(1012), - [anon_sym_STAR] = ACTIONS(1082), - [anon_sym_LBRACK] = ACTIONS(1016), - [anon_sym_RBRACK] = ACTIONS(2374), - [anon_sym_EQ] = ACTIONS(2376), - [anon_sym_QMARK] = ACTIONS(2374), - [anon_sym_STAR_EQ] = ACTIONS(2374), - [anon_sym_SLASH_EQ] = ACTIONS(2374), - [anon_sym_PERCENT_EQ] = ACTIONS(2374), - [anon_sym_PLUS_EQ] = ACTIONS(2374), - [anon_sym_DASH_EQ] = ACTIONS(2374), - [anon_sym_LT_LT_EQ] = ACTIONS(2374), - [anon_sym_GT_GT_EQ] = ACTIONS(2374), - [anon_sym_AMP_EQ] = ACTIONS(2374), - [anon_sym_CARET_EQ] = ACTIONS(2374), - [anon_sym_PIPE_EQ] = ACTIONS(2374), - [anon_sym_AMP] = ACTIONS(2376), - [anon_sym_PIPE_PIPE] = ACTIONS(2374), - [anon_sym_AMP_AMP] = ACTIONS(2374), - [anon_sym_PIPE] = ACTIONS(2376), - [anon_sym_CARET] = ACTIONS(2376), - [anon_sym_EQ_EQ] = ACTIONS(2374), - [anon_sym_BANG_EQ] = ACTIONS(2374), - [anon_sym_LT] = ACTIONS(2376), - [anon_sym_GT] = ACTIONS(2376), - [anon_sym_LT_EQ] = ACTIONS(2374), - [anon_sym_GT_EQ] = ACTIONS(2374), - [anon_sym_LT_LT] = ACTIONS(2376), - [anon_sym_GT_GT] = ACTIONS(2376), - [anon_sym_PLUS] = ACTIONS(1108), - [anon_sym_DASH] = ACTIONS(1108), - [anon_sym_SLASH] = ACTIONS(1082), - [anon_sym_PERCENT] = ACTIONS(1082), - [anon_sym_DASH_DASH] = ACTIONS(1044), - [anon_sym_PLUS_PLUS] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1046), - [anon_sym_DASH_GT] = ACTIONS(1046), - [sym_comment] = ACTIONS(37), + [sym__field_declarator] = STATE(711), + [sym_pointer_field_declarator] = STATE(711), + [sym_function_field_declarator] = STATE(711), + [sym_array_field_declarator] = STATE(711), + [sym_type_qualifier] = STATE(345), + [aux_sym_type_definition_repeat1] = STATE(345), + [anon_sym_LPAREN2] = ACTIONS(875), + [anon_sym_STAR] = ACTIONS(1345), + [anon_sym_const] = ACTIONS(27), + [anon_sym_restrict] = ACTIONS(27), + [anon_sym_volatile] = ACTIONS(27), + [anon_sym__Atomic] = ACTIONS(27), + [sym_identifier] = ACTIONS(1347), + [sym_comment] = ACTIONS(59), }, [710] = { - [sym_argument_list] = STATE(430), - [anon_sym_LPAREN2] = ACTIONS(1012), - [anon_sym_STAR] = ACTIONS(1082), - [anon_sym_LBRACK] = ACTIONS(1016), - [anon_sym_RBRACK] = ACTIONS(2348), - [anon_sym_EQ] = ACTIONS(2350), - [anon_sym_QMARK] = ACTIONS(2348), - [anon_sym_STAR_EQ] = ACTIONS(2348), - [anon_sym_SLASH_EQ] = ACTIONS(2348), - [anon_sym_PERCENT_EQ] = ACTIONS(2348), - [anon_sym_PLUS_EQ] = ACTIONS(2348), - [anon_sym_DASH_EQ] = ACTIONS(2348), - [anon_sym_LT_LT_EQ] = ACTIONS(2348), - [anon_sym_GT_GT_EQ] = ACTIONS(2348), - [anon_sym_AMP_EQ] = ACTIONS(2348), - [anon_sym_CARET_EQ] = ACTIONS(2348), - [anon_sym_PIPE_EQ] = ACTIONS(2348), - [anon_sym_AMP] = ACTIONS(2350), - [anon_sym_PIPE_PIPE] = ACTIONS(2348), - [anon_sym_AMP_AMP] = ACTIONS(2348), - [anon_sym_PIPE] = ACTIONS(2350), - [anon_sym_CARET] = ACTIONS(2350), - [anon_sym_EQ_EQ] = ACTIONS(2348), - [anon_sym_BANG_EQ] = ACTIONS(2348), - [anon_sym_LT] = ACTIONS(2350), - [anon_sym_GT] = ACTIONS(2350), - [anon_sym_LT_EQ] = ACTIONS(2348), - [anon_sym_GT_EQ] = ACTIONS(2348), - [anon_sym_LT_LT] = ACTIONS(2350), - [anon_sym_GT_GT] = ACTIONS(2350), - [anon_sym_PLUS] = ACTIONS(2350), - [anon_sym_DASH] = ACTIONS(2350), - [anon_sym_SLASH] = ACTIONS(1082), - [anon_sym_PERCENT] = ACTIONS(1082), - [anon_sym_DASH_DASH] = ACTIONS(1044), - [anon_sym_PLUS_PLUS] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1046), - [anon_sym_DASH_GT] = ACTIONS(1046), - [sym_comment] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(2400), + [anon_sym_COMMA] = ACTIONS(2400), + [anon_sym_RPAREN] = ACTIONS(2400), + [anon_sym_LPAREN2] = ACTIONS(2400), + [anon_sym_LBRACK] = ACTIONS(2400), + [anon_sym_COLON] = ACTIONS(2400), + [sym_comment] = ACTIONS(59), }, [711] = { - [sym_string_literal] = STATE(711), - [aux_sym_concatenated_string_repeat1] = STATE(711), - [anon_sym_LPAREN2] = ACTIONS(2382), - [anon_sym_STAR] = ACTIONS(2384), - [anon_sym_LBRACK] = ACTIONS(2382), - [anon_sym_RBRACK] = ACTIONS(2382), - [anon_sym_EQ] = ACTIONS(2384), - [anon_sym_QMARK] = ACTIONS(2382), - [anon_sym_STAR_EQ] = ACTIONS(2382), - [anon_sym_SLASH_EQ] = ACTIONS(2382), - [anon_sym_PERCENT_EQ] = ACTIONS(2382), - [anon_sym_PLUS_EQ] = ACTIONS(2382), - [anon_sym_DASH_EQ] = ACTIONS(2382), - [anon_sym_LT_LT_EQ] = ACTIONS(2382), - [anon_sym_GT_GT_EQ] = ACTIONS(2382), - [anon_sym_AMP_EQ] = ACTIONS(2382), - [anon_sym_CARET_EQ] = ACTIONS(2382), - [anon_sym_PIPE_EQ] = ACTIONS(2382), - [anon_sym_AMP] = ACTIONS(2384), - [anon_sym_PIPE_PIPE] = ACTIONS(2382), - [anon_sym_AMP_AMP] = ACTIONS(2382), - [anon_sym_PIPE] = ACTIONS(2384), - [anon_sym_CARET] = ACTIONS(2384), - [anon_sym_EQ_EQ] = ACTIONS(2382), - [anon_sym_BANG_EQ] = ACTIONS(2382), - [anon_sym_LT] = ACTIONS(2384), - [anon_sym_GT] = ACTIONS(2384), - [anon_sym_LT_EQ] = ACTIONS(2382), - [anon_sym_GT_EQ] = ACTIONS(2382), - [anon_sym_LT_LT] = ACTIONS(2384), - [anon_sym_GT_GT] = ACTIONS(2384), - [anon_sym_PLUS] = ACTIONS(2384), - [anon_sym_DASH] = ACTIONS(2384), - [anon_sym_SLASH] = ACTIONS(2384), - [anon_sym_PERCENT] = ACTIONS(2384), - [anon_sym_DASH_DASH] = ACTIONS(2382), - [anon_sym_PLUS_PLUS] = ACTIONS(2382), - [anon_sym_DOT] = ACTIONS(2382), - [anon_sym_DASH_GT] = ACTIONS(2382), - [anon_sym_DQUOTE] = ACTIONS(2386), - [sym_comment] = ACTIONS(37), + [sym_parameter_list] = STATE(539), + [anon_sym_SEMI] = ACTIONS(2402), + [anon_sym_COMMA] = ACTIONS(2402), + [anon_sym_RPAREN] = ACTIONS(2402), + [anon_sym_LPAREN2] = ACTIONS(441), + [anon_sym_LBRACK] = ACTIONS(1373), + [anon_sym_COLON] = ACTIONS(2402), + [sym_comment] = ACTIONS(59), }, [712] = { - [sym_storage_class_specifier] = STATE(699), - [sym_type_qualifier] = STATE(699), - [aux_sym__declaration_specifiers_repeat1] = STATE(699), - [anon_sym_extern] = ACTIONS(21), - [anon_sym_LPAREN2] = ACTIONS(601), - [anon_sym_STAR] = ACTIONS(601), - [anon_sym_RBRACK] = ACTIONS(601), - [anon_sym_static] = ACTIONS(21), - [anon_sym_auto] = ACTIONS(21), - [anon_sym_register] = ACTIONS(21), - [anon_sym_inline] = ACTIONS(21), - [anon_sym_const] = ACTIONS(23), - [anon_sym_restrict] = ACTIONS(23), - [anon_sym_volatile] = ACTIONS(23), - [anon_sym__Atomic] = ACTIONS(23), - [anon_sym_AMP] = ACTIONS(601), - [anon_sym_BANG] = ACTIONS(601), - [anon_sym_TILDE] = ACTIONS(601), - [anon_sym_PLUS] = ACTIONS(603), - [anon_sym_DASH] = ACTIONS(603), - [anon_sym_DASH_DASH] = ACTIONS(601), - [anon_sym_PLUS_PLUS] = ACTIONS(601), - [anon_sym_sizeof] = ACTIONS(603), - [sym_number_literal] = ACTIONS(601), - [anon_sym_SQUOTE] = ACTIONS(601), - [anon_sym_DQUOTE] = ACTIONS(601), - [sym_true] = ACTIONS(603), - [sym_false] = ACTIONS(603), - [sym_null] = ACTIONS(603), - [sym_identifier] = ACTIONS(603), - [sym_comment] = ACTIONS(37), + [anon_sym_RPAREN] = ACTIONS(2404), + [sym_comment] = ACTIONS(59), }, [713] = { - [anon_sym_COMMA] = ACTIONS(2409), - [anon_sym_RPAREN] = ACTIONS(2409), - [anon_sym_SEMI] = ACTIONS(2409), - [anon_sym_RBRACE] = ACTIONS(2409), - [anon_sym_LPAREN2] = ACTIONS(2409), - [anon_sym_STAR] = ACTIONS(2411), - [anon_sym_LBRACK] = ACTIONS(2409), - [anon_sym_RBRACK] = ACTIONS(2409), - [anon_sym_EQ] = ACTIONS(2411), - [anon_sym_COLON] = ACTIONS(2409), - [anon_sym_QMARK] = ACTIONS(2409), - [anon_sym_STAR_EQ] = ACTIONS(2409), - [anon_sym_SLASH_EQ] = ACTIONS(2409), - [anon_sym_PERCENT_EQ] = ACTIONS(2409), - [anon_sym_PLUS_EQ] = ACTIONS(2409), - [anon_sym_DASH_EQ] = ACTIONS(2409), - [anon_sym_LT_LT_EQ] = ACTIONS(2409), - [anon_sym_GT_GT_EQ] = ACTIONS(2409), - [anon_sym_AMP_EQ] = ACTIONS(2409), - [anon_sym_CARET_EQ] = ACTIONS(2409), - [anon_sym_PIPE_EQ] = ACTIONS(2409), - [anon_sym_AMP] = ACTIONS(2411), - [anon_sym_PIPE_PIPE] = ACTIONS(2409), - [anon_sym_AMP_AMP] = ACTIONS(2409), - [anon_sym_PIPE] = ACTIONS(2411), - [anon_sym_CARET] = ACTIONS(2411), - [anon_sym_EQ_EQ] = ACTIONS(2409), - [anon_sym_BANG_EQ] = ACTIONS(2409), - [anon_sym_LT] = ACTIONS(2411), - [anon_sym_GT] = ACTIONS(2411), - [anon_sym_LT_EQ] = ACTIONS(2409), - [anon_sym_GT_EQ] = ACTIONS(2409), - [anon_sym_LT_LT] = ACTIONS(2411), - [anon_sym_GT_GT] = ACTIONS(2411), - [anon_sym_PLUS] = ACTIONS(2411), - [anon_sym_DASH] = ACTIONS(2411), - [anon_sym_SLASH] = ACTIONS(2411), - [anon_sym_PERCENT] = ACTIONS(2411), - [anon_sym_DASH_DASH] = ACTIONS(2409), - [anon_sym_PLUS_PLUS] = ACTIONS(2409), - [anon_sym_DOT] = ACTIONS(2409), - [anon_sym_DASH_GT] = ACTIONS(2409), - [sym_comment] = ACTIONS(37), + [sym_type_qualifier] = STATE(56), + [sym__type_specifier] = STATE(51), + [sym_sized_type_specifier] = STATE(51), + [sym_enum_specifier] = STATE(51), + [sym_struct_specifier] = STATE(51), + [sym_union_specifier] = STATE(51), + [sym__expression] = STATE(52), + [sym_comma_expression] = STATE(53), + [sym_conditional_expression] = STATE(52), + [sym_assignment_expression] = STATE(52), + [sym_pointer_expression] = STATE(52), + [sym_logical_expression] = STATE(52), + [sym_bitwise_expression] = STATE(52), + [sym_equality_expression] = STATE(52), + [sym_relational_expression] = STATE(52), + [sym_shift_expression] = STATE(52), + [sym_math_expression] = STATE(52), + [sym_cast_expression] = STATE(52), + [sym_type_descriptor] = STATE(867), + [sym_sizeof_expression] = STATE(52), + [sym_subscript_expression] = STATE(52), + [sym_call_expression] = STATE(52), + [sym_field_expression] = STATE(52), + [sym_compound_literal_expression] = STATE(52), + [sym_parenthesized_expression] = STATE(52), + [sym_char_literal] = STATE(52), + [sym_concatenated_string] = STATE(52), + [sym_string_literal] = STATE(55), + [sym_macro_type_specifier] = STATE(51), + [aux_sym_type_definition_repeat1] = STATE(56), + [aux_sym_sized_type_specifier_repeat1] = STATE(57), + [anon_sym_LPAREN2] = ACTIONS(85), + [anon_sym_STAR] = ACTIONS(87), + [anon_sym_const] = ACTIONS(27), + [anon_sym_restrict] = ACTIONS(27), + [anon_sym_volatile] = ACTIONS(27), + [anon_sym__Atomic] = ACTIONS(27), + [anon_sym_unsigned] = ACTIONS(89), + [anon_sym_long] = ACTIONS(89), + [anon_sym_short] = ACTIONS(89), + [sym_primitive_type] = ACTIONS(91), + [anon_sym_enum] = ACTIONS(33), + [anon_sym_struct] = ACTIONS(35), + [anon_sym_union] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_PLUS] = ACTIONS(97), + [anon_sym_DASH] = ACTIONS(97), + [anon_sym_DASH_DASH] = ACTIONS(99), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(105), + [sym_false] = ACTIONS(105), + [sym_null] = ACTIONS(105), + [sym_identifier] = ACTIONS(107), + [sym_comment] = ACTIONS(59), }, [714] = { - [sym_argument_list] = STATE(430), - [anon_sym_LPAREN2] = ACTIONS(1012), - [anon_sym_STAR] = ACTIONS(1082), - [anon_sym_LBRACK] = ACTIONS(1016), - [anon_sym_RBRACK] = ACTIONS(2413), - [anon_sym_EQ] = ACTIONS(1084), - [anon_sym_QMARK] = ACTIONS(1086), - [anon_sym_STAR_EQ] = ACTIONS(1088), - [anon_sym_SLASH_EQ] = ACTIONS(1088), - [anon_sym_PERCENT_EQ] = ACTIONS(1088), - [anon_sym_PLUS_EQ] = ACTIONS(1088), - [anon_sym_DASH_EQ] = ACTIONS(1088), - [anon_sym_LT_LT_EQ] = ACTIONS(1088), - [anon_sym_GT_GT_EQ] = ACTIONS(1088), - [anon_sym_AMP_EQ] = ACTIONS(1088), - [anon_sym_CARET_EQ] = ACTIONS(1088), - [anon_sym_PIPE_EQ] = ACTIONS(1088), - [anon_sym_AMP] = ACTIONS(1090), - [anon_sym_PIPE_PIPE] = ACTIONS(1092), - [anon_sym_AMP_AMP] = ACTIONS(1094), - [anon_sym_PIPE] = ACTIONS(1096), - [anon_sym_CARET] = ACTIONS(1098), - [anon_sym_EQ_EQ] = ACTIONS(1100), - [anon_sym_BANG_EQ] = ACTIONS(1100), - [anon_sym_LT] = ACTIONS(1102), - [anon_sym_GT] = ACTIONS(1102), - [anon_sym_LT_EQ] = ACTIONS(1104), - [anon_sym_GT_EQ] = ACTIONS(1104), - [anon_sym_LT_LT] = ACTIONS(1106), - [anon_sym_GT_GT] = ACTIONS(1106), - [anon_sym_PLUS] = ACTIONS(1108), - [anon_sym_DASH] = ACTIONS(1108), - [anon_sym_SLASH] = ACTIONS(1082), - [anon_sym_PERCENT] = ACTIONS(1082), - [anon_sym_DASH_DASH] = ACTIONS(1044), - [anon_sym_PLUS_PLUS] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1046), - [anon_sym_DASH_GT] = ACTIONS(1046), - [sym_comment] = ACTIONS(37), + [sym_argument_list] = STATE(98), + [anon_sym_SEMI] = ACTIONS(413), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_LBRACK] = ACTIONS(188), + [anon_sym_EQ] = ACTIONS(411), + [anon_sym_QMARK] = ACTIONS(413), + [anon_sym_STAR_EQ] = ACTIONS(413), + [anon_sym_SLASH_EQ] = ACTIONS(413), + [anon_sym_PERCENT_EQ] = ACTIONS(413), + [anon_sym_PLUS_EQ] = ACTIONS(413), + [anon_sym_DASH_EQ] = ACTIONS(413), + [anon_sym_LT_LT_EQ] = ACTIONS(413), + [anon_sym_GT_GT_EQ] = ACTIONS(413), + [anon_sym_AMP_EQ] = ACTIONS(413), + [anon_sym_CARET_EQ] = ACTIONS(413), + [anon_sym_PIPE_EQ] = ACTIONS(413), + [anon_sym_AMP] = ACTIONS(411), + [anon_sym_PIPE_PIPE] = ACTIONS(413), + [anon_sym_AMP_AMP] = ACTIONS(413), + [anon_sym_PIPE] = ACTIONS(411), + [anon_sym_CARET] = ACTIONS(411), + [anon_sym_EQ_EQ] = ACTIONS(413), + [anon_sym_BANG_EQ] = ACTIONS(413), + [anon_sym_LT] = ACTIONS(411), + [anon_sym_GT] = ACTIONS(411), + [anon_sym_LT_EQ] = ACTIONS(413), + [anon_sym_GT_EQ] = ACTIONS(413), + [anon_sym_LT_LT] = ACTIONS(1918), + [anon_sym_GT_GT] = ACTIONS(1918), + [anon_sym_PLUS] = ACTIONS(1920), + [anon_sym_DASH] = ACTIONS(1920), + [anon_sym_SLASH] = ACTIONS(1894), + [anon_sym_PERCENT] = ACTIONS(1894), + [anon_sym_DASH_DASH] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(216), + [anon_sym_DOT] = ACTIONS(218), + [anon_sym_DASH_GT] = ACTIONS(218), + [sym_comment] = ACTIONS(59), }, [715] = { - [anon_sym_LBRACK] = ACTIONS(2415), - [anon_sym_EQ] = ACTIONS(2415), - [anon_sym_DOT] = ACTIONS(2415), - [sym_comment] = ACTIONS(37), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2406), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2408), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2408), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2408), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2408), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2408), + [anon_sym_extern] = ACTIONS(2406), + [anon_sym_RBRACE] = ACTIONS(2408), + [anon_sym_static] = ACTIONS(2406), + [anon_sym_auto] = ACTIONS(2406), + [anon_sym_register] = ACTIONS(2406), + [anon_sym_inline] = ACTIONS(2406), + [anon_sym_const] = ACTIONS(2406), + [anon_sym_restrict] = ACTIONS(2406), + [anon_sym_volatile] = ACTIONS(2406), + [anon_sym__Atomic] = ACTIONS(2406), + [anon_sym_unsigned] = ACTIONS(2406), + [anon_sym_long] = ACTIONS(2406), + [anon_sym_short] = ACTIONS(2406), + [sym_primitive_type] = ACTIONS(2406), + [anon_sym_enum] = ACTIONS(2406), + [anon_sym_struct] = ACTIONS(2406), + [anon_sym_union] = ACTIONS(2406), + [sym_identifier] = ACTIONS(2406), + [sym_comment] = ACTIONS(59), }, [716] = { - [sym__expression] = STATE(894), - [sym_conditional_expression] = STATE(894), - [sym_assignment_expression] = STATE(894), - [sym_pointer_expression] = STATE(894), - [sym_logical_expression] = STATE(894), - [sym_bitwise_expression] = STATE(894), - [sym_equality_expression] = STATE(894), - [sym_relational_expression] = STATE(894), - [sym_shift_expression] = STATE(894), - [sym_math_expression] = STATE(894), - [sym_cast_expression] = STATE(894), - [sym_sizeof_expression] = STATE(894), - [sym_subscript_expression] = STATE(894), - [sym_call_expression] = STATE(894), - [sym_field_expression] = STATE(894), - [sym_compound_literal_expression] = STATE(894), - [sym_parenthesized_expression] = STATE(894), - [sym_initializer_list] = STATE(895), - [sym_initializer_pair] = STATE(895), - [sym_subscript_designator] = STATE(471), - [sym_field_designator] = STATE(471), - [sym_char_literal] = STATE(894), - [sym_concatenated_string] = STATE(894), - [sym_string_literal] = STATE(318), - [aux_sym_initializer_pair_repeat1] = STATE(471), - [anon_sym_LBRACE] = ACTIONS(585), - [anon_sym_RBRACE] = ACTIONS(2417), - [anon_sym_LPAREN2] = ACTIONS(742), - [anon_sym_STAR] = ACTIONS(744), - [anon_sym_LBRACK] = ACTIONS(1118), - [anon_sym_AMP] = ACTIONS(744), - [anon_sym_BANG] = ACTIONS(746), - [anon_sym_TILDE] = ACTIONS(748), - [anon_sym_PLUS] = ACTIONS(750), - [anon_sym_DASH] = ACTIONS(750), - [anon_sym_DASH_DASH] = ACTIONS(752), - [anon_sym_PLUS_PLUS] = ACTIONS(752), - [anon_sym_sizeof] = ACTIONS(754), - [anon_sym_DOT] = ACTIONS(1120), - [sym_number_literal] = ACTIONS(2419), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(2421), - [sym_false] = ACTIONS(2421), - [sym_null] = ACTIONS(2421), - [sym_identifier] = ACTIONS(2421), - [sym_comment] = ACTIONS(37), + [sym__expression] = STATE(206), + [sym_conditional_expression] = STATE(206), + [sym_assignment_expression] = STATE(206), + [sym_pointer_expression] = STATE(206), + [sym_logical_expression] = STATE(206), + [sym_bitwise_expression] = STATE(206), + [sym_equality_expression] = STATE(206), + [sym_relational_expression] = STATE(206), + [sym_shift_expression] = STATE(206), + [sym_math_expression] = STATE(206), + [sym_cast_expression] = STATE(206), + [sym_sizeof_expression] = STATE(206), + [sym_subscript_expression] = STATE(206), + [sym_call_expression] = STATE(206), + [sym_field_expression] = STATE(206), + [sym_compound_literal_expression] = STATE(206), + [sym_parenthesized_expression] = STATE(206), + [sym_char_literal] = STATE(206), + [sym_concatenated_string] = STATE(206), + [sym_string_literal] = STATE(534), + [anon_sym_LPAREN2] = ACTIONS(1349), + [anon_sym_STAR] = ACTIONS(1351), + [anon_sym_AMP] = ACTIONS(1351), + [anon_sym_BANG] = ACTIONS(1353), + [anon_sym_TILDE] = ACTIONS(1355), + [anon_sym_PLUS] = ACTIONS(1357), + [anon_sym_DASH] = ACTIONS(1357), + [anon_sym_DASH_DASH] = ACTIONS(1359), + [anon_sym_PLUS_PLUS] = ACTIONS(1359), + [anon_sym_sizeof] = ACTIONS(1361), + [sym_number_literal] = ACTIONS(457), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(459), + [sym_false] = ACTIONS(459), + [sym_null] = ACTIONS(459), + [sym_identifier] = ACTIONS(459), + [sym_comment] = ACTIONS(59), }, [717] = { - [aux_sym_initializer_list_repeat1] = STATE(897), - [anon_sym_COMMA] = ACTIONS(2423), - [anon_sym_RBRACE] = ACTIONS(2417), - [sym_comment] = ACTIONS(37), + [sym__expression] = STATE(868), + [sym_conditional_expression] = STATE(868), + [sym_assignment_expression] = STATE(868), + [sym_pointer_expression] = STATE(868), + [sym_logical_expression] = STATE(868), + [sym_bitwise_expression] = STATE(868), + [sym_equality_expression] = STATE(868), + [sym_relational_expression] = STATE(868), + [sym_shift_expression] = STATE(868), + [sym_math_expression] = STATE(868), + [sym_cast_expression] = STATE(868), + [sym_sizeof_expression] = STATE(868), + [sym_subscript_expression] = STATE(868), + [sym_call_expression] = STATE(868), + [sym_field_expression] = STATE(868), + [sym_compound_literal_expression] = STATE(868), + [sym_parenthesized_expression] = STATE(868), + [sym_char_literal] = STATE(868), + [sym_concatenated_string] = STATE(868), + [sym_string_literal] = STATE(534), + [anon_sym_LPAREN2] = ACTIONS(1349), + [anon_sym_STAR] = ACTIONS(1351), + [anon_sym_AMP] = ACTIONS(1351), + [anon_sym_BANG] = ACTIONS(1353), + [anon_sym_TILDE] = ACTIONS(1355), + [anon_sym_PLUS] = ACTIONS(1357), + [anon_sym_DASH] = ACTIONS(1357), + [anon_sym_DASH_DASH] = ACTIONS(1359), + [anon_sym_PLUS_PLUS] = ACTIONS(1359), + [anon_sym_sizeof] = ACTIONS(1361), + [sym_number_literal] = ACTIONS(2410), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(2412), + [sym_false] = ACTIONS(2412), + [sym_null] = ACTIONS(2412), + [sym_identifier] = ACTIONS(2412), + [sym_comment] = ACTIONS(59), }, [718] = { - [sym__expression] = STATE(898), - [sym_conditional_expression] = STATE(898), - [sym_assignment_expression] = STATE(898), - [sym_pointer_expression] = STATE(898), - [sym_logical_expression] = STATE(898), - [sym_bitwise_expression] = STATE(898), - [sym_equality_expression] = STATE(898), - [sym_relational_expression] = STATE(898), - [sym_shift_expression] = STATE(898), - [sym_math_expression] = STATE(898), - [sym_cast_expression] = STATE(898), - [sym_sizeof_expression] = STATE(898), - [sym_subscript_expression] = STATE(898), - [sym_call_expression] = STATE(898), - [sym_field_expression] = STATE(898), - [sym_compound_literal_expression] = STATE(898), - [sym_parenthesized_expression] = STATE(898), - [sym_initializer_list] = STATE(899), - [sym_char_literal] = STATE(898), - [sym_concatenated_string] = STATE(898), - [sym_string_literal] = STATE(318), - [anon_sym_LBRACE] = ACTIONS(585), - [anon_sym_LPAREN2] = ACTIONS(742), - [anon_sym_STAR] = ACTIONS(744), - [anon_sym_AMP] = ACTIONS(744), - [anon_sym_BANG] = ACTIONS(746), - [anon_sym_TILDE] = ACTIONS(748), - [anon_sym_PLUS] = ACTIONS(750), - [anon_sym_DASH] = ACTIONS(750), - [anon_sym_DASH_DASH] = ACTIONS(752), - [anon_sym_PLUS_PLUS] = ACTIONS(752), - [anon_sym_sizeof] = ACTIONS(754), - [sym_number_literal] = ACTIONS(2425), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(2427), - [sym_false] = ACTIONS(2427), - [sym_null] = ACTIONS(2427), - [sym_identifier] = ACTIONS(2427), - [sym_comment] = ACTIONS(37), + [sym__expression] = STATE(869), + [sym_conditional_expression] = STATE(869), + [sym_assignment_expression] = STATE(869), + [sym_pointer_expression] = STATE(869), + [sym_logical_expression] = STATE(869), + [sym_bitwise_expression] = STATE(869), + [sym_equality_expression] = STATE(869), + [sym_relational_expression] = STATE(869), + [sym_shift_expression] = STATE(869), + [sym_math_expression] = STATE(869), + [sym_cast_expression] = STATE(869), + [sym_sizeof_expression] = STATE(869), + [sym_subscript_expression] = STATE(869), + [sym_call_expression] = STATE(869), + [sym_field_expression] = STATE(869), + [sym_compound_literal_expression] = STATE(869), + [sym_parenthesized_expression] = STATE(869), + [sym_char_literal] = STATE(869), + [sym_concatenated_string] = STATE(869), + [sym_string_literal] = STATE(223), + [anon_sym_LPAREN2] = ACTIONS(483), + [anon_sym_STAR] = ACTIONS(485), + [anon_sym_AMP] = ACTIONS(485), + [anon_sym_BANG] = ACTIONS(487), + [anon_sym_TILDE] = ACTIONS(489), + [anon_sym_PLUS] = ACTIONS(491), + [anon_sym_DASH] = ACTIONS(491), + [anon_sym_DASH_DASH] = ACTIONS(493), + [anon_sym_PLUS_PLUS] = ACTIONS(493), + [anon_sym_sizeof] = ACTIONS(495), + [sym_number_literal] = ACTIONS(2414), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(2416), + [sym_false] = ACTIONS(2416), + [sym_null] = ACTIONS(2416), + [sym_identifier] = ACTIONS(2416), + [sym_comment] = ACTIONS(59), }, [719] = { - [sym_subscript_designator] = STATE(719), - [sym_field_designator] = STATE(719), - [aux_sym_initializer_pair_repeat1] = STATE(719), - [anon_sym_LBRACK] = ACTIONS(2429), - [anon_sym_EQ] = ACTIONS(2432), - [anon_sym_DOT] = ACTIONS(2434), - [sym_comment] = ACTIONS(37), + [sym__expression] = STATE(870), + [sym_conditional_expression] = STATE(870), + [sym_assignment_expression] = STATE(870), + [sym_pointer_expression] = STATE(870), + [sym_logical_expression] = STATE(870), + [sym_bitwise_expression] = STATE(870), + [sym_equality_expression] = STATE(870), + [sym_relational_expression] = STATE(870), + [sym_shift_expression] = STATE(870), + [sym_math_expression] = STATE(870), + [sym_cast_expression] = STATE(870), + [sym_sizeof_expression] = STATE(870), + [sym_subscript_expression] = STATE(870), + [sym_call_expression] = STATE(870), + [sym_field_expression] = STATE(870), + [sym_compound_literal_expression] = STATE(870), + [sym_parenthesized_expression] = STATE(870), + [sym_char_literal] = STATE(870), + [sym_concatenated_string] = STATE(870), + [sym_string_literal] = STATE(534), + [anon_sym_LPAREN2] = ACTIONS(1349), + [anon_sym_STAR] = ACTIONS(1351), + [anon_sym_AMP] = ACTIONS(1351), + [anon_sym_BANG] = ACTIONS(1353), + [anon_sym_TILDE] = ACTIONS(1355), + [anon_sym_PLUS] = ACTIONS(1357), + [anon_sym_DASH] = ACTIONS(1357), + [anon_sym_DASH_DASH] = ACTIONS(1359), + [anon_sym_PLUS_PLUS] = ACTIONS(1359), + [anon_sym_sizeof] = ACTIONS(1361), + [sym_number_literal] = ACTIONS(2418), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(2420), + [sym_false] = ACTIONS(2420), + [sym_null] = ACTIONS(2420), + [sym_identifier] = ACTIONS(2420), + [sym_comment] = ACTIONS(59), }, [720] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1143), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1143), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1143), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1143), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1143), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1143), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1143), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1143), - [sym_preproc_directive] = ACTIONS(1143), - [anon_sym_SEMI] = ACTIONS(1141), - [anon_sym_typedef] = ACTIONS(1143), - [anon_sym_extern] = ACTIONS(1143), - [anon_sym_LBRACE] = ACTIONS(1141), - [anon_sym_LPAREN2] = ACTIONS(1141), - [anon_sym_STAR] = ACTIONS(1141), - [anon_sym_static] = ACTIONS(1143), - [anon_sym_auto] = ACTIONS(1143), - [anon_sym_register] = ACTIONS(1143), - [anon_sym_inline] = ACTIONS(1143), - [anon_sym_const] = ACTIONS(1143), - [anon_sym_restrict] = ACTIONS(1143), - [anon_sym_volatile] = ACTIONS(1143), - [anon_sym__Atomic] = ACTIONS(1143), - [anon_sym_unsigned] = ACTIONS(1143), - [anon_sym_long] = ACTIONS(1143), - [anon_sym_short] = ACTIONS(1143), - [sym_primitive_type] = ACTIONS(1143), - [anon_sym_enum] = ACTIONS(1143), - [anon_sym_struct] = ACTIONS(1143), - [anon_sym_union] = ACTIONS(1143), - [anon_sym_if] = ACTIONS(1143), - [anon_sym_switch] = ACTIONS(1143), - [anon_sym_case] = ACTIONS(1143), - [anon_sym_default] = ACTIONS(1143), - [anon_sym_while] = ACTIONS(1143), - [anon_sym_do] = ACTIONS(1143), - [anon_sym_for] = ACTIONS(1143), - [anon_sym_return] = ACTIONS(1143), - [anon_sym_break] = ACTIONS(1143), - [anon_sym_continue] = ACTIONS(1143), - [anon_sym_goto] = ACTIONS(1143), - [anon_sym_AMP] = ACTIONS(1141), - [anon_sym_BANG] = ACTIONS(1141), - [anon_sym_TILDE] = ACTIONS(1141), - [anon_sym_PLUS] = ACTIONS(1143), - [anon_sym_DASH] = ACTIONS(1143), - [anon_sym_DASH_DASH] = ACTIONS(1141), - [anon_sym_PLUS_PLUS] = ACTIONS(1141), - [anon_sym_sizeof] = ACTIONS(1143), - [sym_number_literal] = ACTIONS(1141), - [anon_sym_SQUOTE] = ACTIONS(1141), - [anon_sym_DQUOTE] = ACTIONS(1141), - [sym_true] = ACTIONS(1143), - [sym_false] = ACTIONS(1143), - [sym_null] = ACTIONS(1143), - [sym_identifier] = ACTIONS(1143), - [sym_comment] = ACTIONS(37), + [sym__expression] = STATE(871), + [sym_conditional_expression] = STATE(871), + [sym_assignment_expression] = STATE(871), + [sym_pointer_expression] = STATE(871), + [sym_logical_expression] = STATE(871), + [sym_bitwise_expression] = STATE(871), + [sym_equality_expression] = STATE(871), + [sym_relational_expression] = STATE(871), + [sym_shift_expression] = STATE(871), + [sym_math_expression] = STATE(871), + [sym_cast_expression] = STATE(871), + [sym_sizeof_expression] = STATE(871), + [sym_subscript_expression] = STATE(871), + [sym_call_expression] = STATE(871), + [sym_field_expression] = STATE(871), + [sym_compound_literal_expression] = STATE(871), + [sym_parenthesized_expression] = STATE(871), + [sym_char_literal] = STATE(871), + [sym_concatenated_string] = STATE(871), + [sym_string_literal] = STATE(534), + [anon_sym_LPAREN2] = ACTIONS(1349), + [anon_sym_STAR] = ACTIONS(1351), + [anon_sym_AMP] = ACTIONS(1351), + [anon_sym_BANG] = ACTIONS(1353), + [anon_sym_TILDE] = ACTIONS(1355), + [anon_sym_PLUS] = ACTIONS(1357), + [anon_sym_DASH] = ACTIONS(1357), + [anon_sym_DASH_DASH] = ACTIONS(1359), + [anon_sym_PLUS_PLUS] = ACTIONS(1359), + [anon_sym_sizeof] = ACTIONS(1361), + [sym_number_literal] = ACTIONS(2422), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(2424), + [sym_false] = ACTIONS(2424), + [sym_null] = ACTIONS(2424), + [sym_identifier] = ACTIONS(2424), + [sym_comment] = ACTIONS(59), }, [721] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1218), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1218), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1218), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1218), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1218), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1218), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1218), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1218), - [sym_preproc_directive] = ACTIONS(1218), - [anon_sym_typedef] = ACTIONS(1218), - [anon_sym_extern] = ACTIONS(1218), - [anon_sym_static] = ACTIONS(1218), - [anon_sym_auto] = ACTIONS(1218), - [anon_sym_register] = ACTIONS(1218), - [anon_sym_inline] = ACTIONS(1218), - [anon_sym_const] = ACTIONS(1218), - [anon_sym_restrict] = ACTIONS(1218), - [anon_sym_volatile] = ACTIONS(1218), - [anon_sym__Atomic] = ACTIONS(1218), - [anon_sym_unsigned] = ACTIONS(1218), - [anon_sym_long] = ACTIONS(1218), - [anon_sym_short] = ACTIONS(1218), - [sym_primitive_type] = ACTIONS(1218), - [anon_sym_enum] = ACTIONS(1218), - [anon_sym_struct] = ACTIONS(1218), - [anon_sym_union] = ACTIONS(1218), - [sym_identifier] = ACTIONS(1218), - [sym_comment] = ACTIONS(37), + [sym__expression] = STATE(872), + [sym_conditional_expression] = STATE(872), + [sym_assignment_expression] = STATE(872), + [sym_pointer_expression] = STATE(872), + [sym_logical_expression] = STATE(872), + [sym_bitwise_expression] = STATE(872), + [sym_equality_expression] = STATE(872), + [sym_relational_expression] = STATE(872), + [sym_shift_expression] = STATE(872), + [sym_math_expression] = STATE(872), + [sym_cast_expression] = STATE(872), + [sym_sizeof_expression] = STATE(872), + [sym_subscript_expression] = STATE(872), + [sym_call_expression] = STATE(872), + [sym_field_expression] = STATE(872), + [sym_compound_literal_expression] = STATE(872), + [sym_parenthesized_expression] = STATE(872), + [sym_char_literal] = STATE(872), + [sym_concatenated_string] = STATE(872), + [sym_string_literal] = STATE(534), + [anon_sym_LPAREN2] = ACTIONS(1349), + [anon_sym_STAR] = ACTIONS(1351), + [anon_sym_AMP] = ACTIONS(1351), + [anon_sym_BANG] = ACTIONS(1353), + [anon_sym_TILDE] = ACTIONS(1355), + [anon_sym_PLUS] = ACTIONS(1357), + [anon_sym_DASH] = ACTIONS(1357), + [anon_sym_DASH_DASH] = ACTIONS(1359), + [anon_sym_PLUS_PLUS] = ACTIONS(1359), + [anon_sym_sizeof] = ACTIONS(1361), + [sym_number_literal] = ACTIONS(2426), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(2428), + [sym_false] = ACTIONS(2428), + [sym_null] = ACTIONS(2428), + [sym_identifier] = ACTIONS(2428), + [sym_comment] = ACTIONS(59), }, [722] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1222), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1222), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1222), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1222), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1222), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1222), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1222), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1222), - [sym_preproc_directive] = ACTIONS(1222), - [anon_sym_typedef] = ACTIONS(1222), - [anon_sym_extern] = ACTIONS(1222), - [anon_sym_static] = ACTIONS(1222), - [anon_sym_auto] = ACTIONS(1222), - [anon_sym_register] = ACTIONS(1222), - [anon_sym_inline] = ACTIONS(1222), - [anon_sym_const] = ACTIONS(1222), - [anon_sym_restrict] = ACTIONS(1222), - [anon_sym_volatile] = ACTIONS(1222), - [anon_sym__Atomic] = ACTIONS(1222), - [anon_sym_unsigned] = ACTIONS(1222), - [anon_sym_long] = ACTIONS(1222), - [anon_sym_short] = ACTIONS(1222), - [sym_primitive_type] = ACTIONS(1222), - [anon_sym_enum] = ACTIONS(1222), - [anon_sym_struct] = ACTIONS(1222), - [anon_sym_union] = ACTIONS(1222), - [sym_identifier] = ACTIONS(1222), - [sym_comment] = ACTIONS(37), + [sym__expression] = STATE(873), + [sym_conditional_expression] = STATE(873), + [sym_assignment_expression] = STATE(873), + [sym_pointer_expression] = STATE(873), + [sym_logical_expression] = STATE(873), + [sym_bitwise_expression] = STATE(873), + [sym_equality_expression] = STATE(873), + [sym_relational_expression] = STATE(873), + [sym_shift_expression] = STATE(873), + [sym_math_expression] = STATE(873), + [sym_cast_expression] = STATE(873), + [sym_sizeof_expression] = STATE(873), + [sym_subscript_expression] = STATE(873), + [sym_call_expression] = STATE(873), + [sym_field_expression] = STATE(873), + [sym_compound_literal_expression] = STATE(873), + [sym_parenthesized_expression] = STATE(873), + [sym_char_literal] = STATE(873), + [sym_concatenated_string] = STATE(873), + [sym_string_literal] = STATE(534), + [anon_sym_LPAREN2] = ACTIONS(1349), + [anon_sym_STAR] = ACTIONS(1351), + [anon_sym_AMP] = ACTIONS(1351), + [anon_sym_BANG] = ACTIONS(1353), + [anon_sym_TILDE] = ACTIONS(1355), + [anon_sym_PLUS] = ACTIONS(1357), + [anon_sym_DASH] = ACTIONS(1357), + [anon_sym_DASH_DASH] = ACTIONS(1359), + [anon_sym_PLUS_PLUS] = ACTIONS(1359), + [anon_sym_sizeof] = ACTIONS(1361), + [sym_number_literal] = ACTIONS(2430), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(2432), + [sym_false] = ACTIONS(2432), + [sym_null] = ACTIONS(2432), + [sym_identifier] = ACTIONS(2432), + [sym_comment] = ACTIONS(59), }, [723] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(607), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(607), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(607), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(607), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(607), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(607), - [sym_preproc_directive] = ACTIONS(607), - [anon_sym_SEMI] = ACTIONS(605), - [anon_sym_typedef] = ACTIONS(607), - [anon_sym_extern] = ACTIONS(607), - [anon_sym_LBRACE] = ACTIONS(605), - [anon_sym_LPAREN2] = ACTIONS(605), - [anon_sym_STAR] = ACTIONS(605), - [anon_sym_static] = ACTIONS(607), - [anon_sym_auto] = ACTIONS(607), - [anon_sym_register] = ACTIONS(607), - [anon_sym_inline] = ACTIONS(607), - [anon_sym_const] = ACTIONS(607), - [anon_sym_restrict] = ACTIONS(607), - [anon_sym_volatile] = ACTIONS(607), - [anon_sym__Atomic] = ACTIONS(607), - [anon_sym_unsigned] = ACTIONS(607), - [anon_sym_long] = ACTIONS(607), - [anon_sym_short] = ACTIONS(607), - [sym_primitive_type] = ACTIONS(607), - [anon_sym_enum] = ACTIONS(607), - [anon_sym_struct] = ACTIONS(607), - [anon_sym_union] = ACTIONS(607), - [anon_sym_if] = ACTIONS(607), - [anon_sym_switch] = ACTIONS(607), - [anon_sym_case] = ACTIONS(607), - [anon_sym_default] = ACTIONS(607), - [anon_sym_while] = ACTIONS(607), - [anon_sym_do] = ACTIONS(607), - [anon_sym_for] = ACTIONS(607), - [anon_sym_return] = ACTIONS(607), - [anon_sym_break] = ACTIONS(607), - [anon_sym_continue] = ACTIONS(607), - [anon_sym_goto] = ACTIONS(607), - [anon_sym_AMP] = ACTIONS(605), - [anon_sym_BANG] = ACTIONS(605), - [anon_sym_TILDE] = ACTIONS(605), - [anon_sym_PLUS] = ACTIONS(607), - [anon_sym_DASH] = ACTIONS(607), - [anon_sym_DASH_DASH] = ACTIONS(605), - [anon_sym_PLUS_PLUS] = ACTIONS(605), - [anon_sym_sizeof] = ACTIONS(607), - [sym_number_literal] = ACTIONS(605), - [anon_sym_SQUOTE] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [sym_true] = ACTIONS(607), - [sym_false] = ACTIONS(607), - [sym_null] = ACTIONS(607), - [sym_identifier] = ACTIONS(607), - [sym_comment] = ACTIONS(37), + [sym__expression] = STATE(874), + [sym_conditional_expression] = STATE(874), + [sym_assignment_expression] = STATE(874), + [sym_pointer_expression] = STATE(874), + [sym_logical_expression] = STATE(874), + [sym_bitwise_expression] = STATE(874), + [sym_equality_expression] = STATE(874), + [sym_relational_expression] = STATE(874), + [sym_shift_expression] = STATE(874), + [sym_math_expression] = STATE(874), + [sym_cast_expression] = STATE(874), + [sym_sizeof_expression] = STATE(874), + [sym_subscript_expression] = STATE(874), + [sym_call_expression] = STATE(874), + [sym_field_expression] = STATE(874), + [sym_compound_literal_expression] = STATE(874), + [sym_parenthesized_expression] = STATE(874), + [sym_char_literal] = STATE(874), + [sym_concatenated_string] = STATE(874), + [sym_string_literal] = STATE(534), + [anon_sym_LPAREN2] = ACTIONS(1349), + [anon_sym_STAR] = ACTIONS(1351), + [anon_sym_AMP] = ACTIONS(1351), + [anon_sym_BANG] = ACTIONS(1353), + [anon_sym_TILDE] = ACTIONS(1355), + [anon_sym_PLUS] = ACTIONS(1357), + [anon_sym_DASH] = ACTIONS(1357), + [anon_sym_DASH_DASH] = ACTIONS(1359), + [anon_sym_PLUS_PLUS] = ACTIONS(1359), + [anon_sym_sizeof] = ACTIONS(1361), + [sym_number_literal] = ACTIONS(2434), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(2436), + [sym_false] = ACTIONS(2436), + [sym_null] = ACTIONS(2436), + [sym_identifier] = ACTIONS(2436), + [sym_comment] = ACTIONS(59), }, [724] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(622), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(622), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(622), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(622), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(622), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(622), - [sym_preproc_directive] = ACTIONS(622), - [anon_sym_SEMI] = ACTIONS(620), - [anon_sym_typedef] = ACTIONS(622), - [anon_sym_extern] = ACTIONS(622), - [anon_sym_LBRACE] = ACTIONS(620), - [anon_sym_LPAREN2] = ACTIONS(620), - [anon_sym_STAR] = ACTIONS(620), - [anon_sym_static] = ACTIONS(622), - [anon_sym_auto] = ACTIONS(622), - [anon_sym_register] = ACTIONS(622), - [anon_sym_inline] = ACTIONS(622), - [anon_sym_const] = ACTIONS(622), - [anon_sym_restrict] = ACTIONS(622), - [anon_sym_volatile] = ACTIONS(622), - [anon_sym__Atomic] = ACTIONS(622), - [anon_sym_unsigned] = ACTIONS(622), - [anon_sym_long] = ACTIONS(622), - [anon_sym_short] = ACTIONS(622), - [sym_primitive_type] = ACTIONS(622), - [anon_sym_enum] = ACTIONS(622), - [anon_sym_struct] = ACTIONS(622), - [anon_sym_union] = ACTIONS(622), - [anon_sym_if] = ACTIONS(622), - [anon_sym_switch] = ACTIONS(622), - [anon_sym_case] = ACTIONS(622), - [anon_sym_default] = ACTIONS(622), - [anon_sym_while] = ACTIONS(622), - [anon_sym_do] = ACTIONS(622), - [anon_sym_for] = ACTIONS(622), - [anon_sym_return] = ACTIONS(622), - [anon_sym_break] = ACTIONS(622), - [anon_sym_continue] = ACTIONS(622), - [anon_sym_goto] = ACTIONS(622), - [anon_sym_AMP] = ACTIONS(620), - [anon_sym_BANG] = ACTIONS(620), - [anon_sym_TILDE] = ACTIONS(620), - [anon_sym_PLUS] = ACTIONS(622), - [anon_sym_DASH] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(620), - [anon_sym_sizeof] = ACTIONS(622), - [sym_number_literal] = ACTIONS(620), - [anon_sym_SQUOTE] = ACTIONS(620), - [anon_sym_DQUOTE] = ACTIONS(620), - [sym_true] = ACTIONS(622), - [sym_false] = ACTIONS(622), - [sym_null] = ACTIONS(622), - [sym_identifier] = ACTIONS(622), - [sym_comment] = ACTIONS(37), + [sym__expression] = STATE(875), + [sym_conditional_expression] = STATE(875), + [sym_assignment_expression] = STATE(875), + [sym_pointer_expression] = STATE(875), + [sym_logical_expression] = STATE(875), + [sym_bitwise_expression] = STATE(875), + [sym_equality_expression] = STATE(875), + [sym_relational_expression] = STATE(875), + [sym_shift_expression] = STATE(875), + [sym_math_expression] = STATE(875), + [sym_cast_expression] = STATE(875), + [sym_sizeof_expression] = STATE(875), + [sym_subscript_expression] = STATE(875), + [sym_call_expression] = STATE(875), + [sym_field_expression] = STATE(875), + [sym_compound_literal_expression] = STATE(875), + [sym_parenthesized_expression] = STATE(875), + [sym_char_literal] = STATE(875), + [sym_concatenated_string] = STATE(875), + [sym_string_literal] = STATE(534), + [anon_sym_LPAREN2] = ACTIONS(1349), + [anon_sym_STAR] = ACTIONS(1351), + [anon_sym_AMP] = ACTIONS(1351), + [anon_sym_BANG] = ACTIONS(1353), + [anon_sym_TILDE] = ACTIONS(1355), + [anon_sym_PLUS] = ACTIONS(1357), + [anon_sym_DASH] = ACTIONS(1357), + [anon_sym_DASH_DASH] = ACTIONS(1359), + [anon_sym_PLUS_PLUS] = ACTIONS(1359), + [anon_sym_sizeof] = ACTIONS(1361), + [sym_number_literal] = ACTIONS(2438), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(2440), + [sym_false] = ACTIONS(2440), + [sym_null] = ACTIONS(2440), + [sym_identifier] = ACTIONS(2440), + [sym_comment] = ACTIONS(59), }, [725] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(626), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(626), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(626), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(626), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(626), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(626), - [sym_preproc_directive] = ACTIONS(626), - [anon_sym_SEMI] = ACTIONS(624), - [anon_sym_typedef] = ACTIONS(626), - [anon_sym_extern] = ACTIONS(626), - [anon_sym_LBRACE] = ACTIONS(624), - [anon_sym_LPAREN2] = ACTIONS(624), - [anon_sym_STAR] = ACTIONS(624), - [anon_sym_static] = ACTIONS(626), - [anon_sym_auto] = ACTIONS(626), - [anon_sym_register] = ACTIONS(626), - [anon_sym_inline] = ACTIONS(626), - [anon_sym_const] = ACTIONS(626), - [anon_sym_restrict] = ACTIONS(626), - [anon_sym_volatile] = ACTIONS(626), - [anon_sym__Atomic] = ACTIONS(626), - [anon_sym_unsigned] = ACTIONS(626), - [anon_sym_long] = ACTIONS(626), - [anon_sym_short] = ACTIONS(626), - [sym_primitive_type] = ACTIONS(626), - [anon_sym_enum] = ACTIONS(626), - [anon_sym_struct] = ACTIONS(626), - [anon_sym_union] = ACTIONS(626), - [anon_sym_if] = ACTIONS(626), - [anon_sym_switch] = ACTIONS(626), - [anon_sym_case] = ACTIONS(626), - [anon_sym_default] = ACTIONS(626), - [anon_sym_while] = ACTIONS(626), - [anon_sym_do] = ACTIONS(626), - [anon_sym_for] = ACTIONS(626), - [anon_sym_return] = ACTIONS(626), - [anon_sym_break] = ACTIONS(626), - [anon_sym_continue] = ACTIONS(626), - [anon_sym_goto] = ACTIONS(626), - [anon_sym_AMP] = ACTIONS(624), - [anon_sym_BANG] = ACTIONS(624), - [anon_sym_TILDE] = ACTIONS(624), - [anon_sym_PLUS] = ACTIONS(626), - [anon_sym_DASH] = ACTIONS(626), - [anon_sym_DASH_DASH] = ACTIONS(624), - [anon_sym_PLUS_PLUS] = ACTIONS(624), - [anon_sym_sizeof] = ACTIONS(626), - [sym_number_literal] = ACTIONS(624), - [anon_sym_SQUOTE] = ACTIONS(624), - [anon_sym_DQUOTE] = ACTIONS(624), - [sym_true] = ACTIONS(626), - [sym_false] = ACTIONS(626), - [sym_null] = ACTIONS(626), - [sym_identifier] = ACTIONS(626), - [sym_comment] = ACTIONS(37), + [sym__expression] = STATE(876), + [sym_conditional_expression] = STATE(876), + [sym_assignment_expression] = STATE(876), + [sym_pointer_expression] = STATE(876), + [sym_logical_expression] = STATE(876), + [sym_bitwise_expression] = STATE(876), + [sym_equality_expression] = STATE(876), + [sym_relational_expression] = STATE(876), + [sym_shift_expression] = STATE(876), + [sym_math_expression] = STATE(876), + [sym_cast_expression] = STATE(876), + [sym_sizeof_expression] = STATE(876), + [sym_subscript_expression] = STATE(876), + [sym_call_expression] = STATE(876), + [sym_field_expression] = STATE(876), + [sym_compound_literal_expression] = STATE(876), + [sym_parenthesized_expression] = STATE(876), + [sym_char_literal] = STATE(876), + [sym_concatenated_string] = STATE(876), + [sym_string_literal] = STATE(534), + [anon_sym_LPAREN2] = ACTIONS(1349), + [anon_sym_STAR] = ACTIONS(1351), + [anon_sym_AMP] = ACTIONS(1351), + [anon_sym_BANG] = ACTIONS(1353), + [anon_sym_TILDE] = ACTIONS(1355), + [anon_sym_PLUS] = ACTIONS(1357), + [anon_sym_DASH] = ACTIONS(1357), + [anon_sym_DASH_DASH] = ACTIONS(1359), + [anon_sym_PLUS_PLUS] = ACTIONS(1359), + [anon_sym_sizeof] = ACTIONS(1361), + [sym_number_literal] = ACTIONS(2442), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(2444), + [sym_false] = ACTIONS(2444), + [sym_null] = ACTIONS(2444), + [sym_identifier] = ACTIONS(2444), + [sym_comment] = ACTIONS(59), }, [726] = { - [anon_sym_LF] = ACTIONS(2437), - [sym_comment] = ACTIONS(47), + [sym__expression] = STATE(877), + [sym_conditional_expression] = STATE(877), + [sym_assignment_expression] = STATE(877), + [sym_pointer_expression] = STATE(877), + [sym_logical_expression] = STATE(877), + [sym_bitwise_expression] = STATE(877), + [sym_equality_expression] = STATE(877), + [sym_relational_expression] = STATE(877), + [sym_shift_expression] = STATE(877), + [sym_math_expression] = STATE(877), + [sym_cast_expression] = STATE(877), + [sym_sizeof_expression] = STATE(877), + [sym_subscript_expression] = STATE(877), + [sym_call_expression] = STATE(877), + [sym_field_expression] = STATE(877), + [sym_compound_literal_expression] = STATE(877), + [sym_parenthesized_expression] = STATE(877), + [sym_char_literal] = STATE(877), + [sym_concatenated_string] = STATE(877), + [sym_string_literal] = STATE(534), + [anon_sym_LPAREN2] = ACTIONS(1349), + [anon_sym_STAR] = ACTIONS(1351), + [anon_sym_AMP] = ACTIONS(1351), + [anon_sym_BANG] = ACTIONS(1353), + [anon_sym_TILDE] = ACTIONS(1355), + [anon_sym_PLUS] = ACTIONS(1357), + [anon_sym_DASH] = ACTIONS(1357), + [anon_sym_DASH_DASH] = ACTIONS(1359), + [anon_sym_PLUS_PLUS] = ACTIONS(1359), + [anon_sym_sizeof] = ACTIONS(1361), + [sym_number_literal] = ACTIONS(2446), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(2448), + [sym_false] = ACTIONS(2448), + [sym_null] = ACTIONS(2448), + [sym_identifier] = ACTIONS(2448), + [sym_comment] = ACTIONS(59), }, [727] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(674), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(674), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(674), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(674), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(674), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(674), - [sym_preproc_directive] = ACTIONS(674), - [anon_sym_typedef] = ACTIONS(674), - [anon_sym_extern] = ACTIONS(674), - [anon_sym_static] = ACTIONS(674), - [anon_sym_auto] = ACTIONS(674), - [anon_sym_register] = ACTIONS(674), - [anon_sym_inline] = ACTIONS(674), - [anon_sym_const] = ACTIONS(674), - [anon_sym_restrict] = ACTIONS(674), - [anon_sym_volatile] = ACTIONS(674), - [anon_sym__Atomic] = ACTIONS(674), - [anon_sym_unsigned] = ACTIONS(674), - [anon_sym_long] = ACTIONS(674), - [anon_sym_short] = ACTIONS(674), - [sym_primitive_type] = ACTIONS(674), - [anon_sym_enum] = ACTIONS(674), - [anon_sym_struct] = ACTIONS(674), - [anon_sym_union] = ACTIONS(674), - [sym_identifier] = ACTIONS(674), - [sym_comment] = ACTIONS(37), + [sym__expression] = STATE(878), + [sym_conditional_expression] = STATE(878), + [sym_assignment_expression] = STATE(878), + [sym_pointer_expression] = STATE(878), + [sym_logical_expression] = STATE(878), + [sym_bitwise_expression] = STATE(878), + [sym_equality_expression] = STATE(878), + [sym_relational_expression] = STATE(878), + [sym_shift_expression] = STATE(878), + [sym_math_expression] = STATE(878), + [sym_cast_expression] = STATE(878), + [sym_sizeof_expression] = STATE(878), + [sym_subscript_expression] = STATE(878), + [sym_call_expression] = STATE(878), + [sym_field_expression] = STATE(878), + [sym_compound_literal_expression] = STATE(878), + [sym_parenthesized_expression] = STATE(878), + [sym_char_literal] = STATE(878), + [sym_concatenated_string] = STATE(878), + [sym_string_literal] = STATE(534), + [anon_sym_LPAREN2] = ACTIONS(1349), + [anon_sym_STAR] = ACTIONS(1351), + [anon_sym_AMP] = ACTIONS(1351), + [anon_sym_BANG] = ACTIONS(1353), + [anon_sym_TILDE] = ACTIONS(1355), + [anon_sym_PLUS] = ACTIONS(1357), + [anon_sym_DASH] = ACTIONS(1357), + [anon_sym_DASH_DASH] = ACTIONS(1359), + [anon_sym_PLUS_PLUS] = ACTIONS(1359), + [anon_sym_sizeof] = ACTIONS(1361), + [sym_number_literal] = ACTIONS(2450), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(2452), + [sym_false] = ACTIONS(2452), + [sym_null] = ACTIONS(2452), + [sym_identifier] = ACTIONS(2452), + [sym_comment] = ACTIONS(59), }, [728] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2439), - [sym_comment] = ACTIONS(37), + [sym_string_literal] = STATE(879), + [aux_sym_concatenated_string_repeat1] = STATE(879), + [anon_sym_SEMI] = ACTIONS(547), + [anon_sym_LPAREN2] = ACTIONS(547), + [anon_sym_STAR] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_EQ] = ACTIONS(549), + [anon_sym_QMARK] = ACTIONS(547), + [anon_sym_STAR_EQ] = ACTIONS(547), + [anon_sym_SLASH_EQ] = ACTIONS(547), + [anon_sym_PERCENT_EQ] = ACTIONS(547), + [anon_sym_PLUS_EQ] = ACTIONS(547), + [anon_sym_DASH_EQ] = ACTIONS(547), + [anon_sym_LT_LT_EQ] = ACTIONS(547), + [anon_sym_GT_GT_EQ] = ACTIONS(547), + [anon_sym_AMP_EQ] = ACTIONS(547), + [anon_sym_CARET_EQ] = ACTIONS(547), + [anon_sym_PIPE_EQ] = ACTIONS(547), + [anon_sym_AMP] = ACTIONS(549), + [anon_sym_PIPE_PIPE] = ACTIONS(547), + [anon_sym_AMP_AMP] = ACTIONS(547), + [anon_sym_PIPE] = ACTIONS(549), + [anon_sym_CARET] = ACTIONS(549), + [anon_sym_EQ_EQ] = ACTIONS(547), + [anon_sym_BANG_EQ] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(549), + [anon_sym_GT] = ACTIONS(549), + [anon_sym_LT_EQ] = ACTIONS(547), + [anon_sym_GT_EQ] = ACTIONS(547), + [anon_sym_LT_LT] = ACTIONS(549), + [anon_sym_GT_GT] = ACTIONS(549), + [anon_sym_PLUS] = ACTIONS(549), + [anon_sym_DASH] = ACTIONS(549), + [anon_sym_SLASH] = ACTIONS(549), + [anon_sym_PERCENT] = ACTIONS(549), + [anon_sym_DASH_DASH] = ACTIONS(547), + [anon_sym_PLUS_PLUS] = ACTIONS(547), + [anon_sym_DOT] = ACTIONS(547), + [anon_sym_DASH_GT] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_comment] = ACTIONS(59), }, [729] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(707), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(707), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(707), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(707), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(707), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(707), - [sym_preproc_directive] = ACTIONS(707), - [anon_sym_typedef] = ACTIONS(707), - [anon_sym_extern] = ACTIONS(707), - [anon_sym_static] = ACTIONS(707), - [anon_sym_auto] = ACTIONS(707), - [anon_sym_register] = ACTIONS(707), - [anon_sym_inline] = ACTIONS(707), - [anon_sym_const] = ACTIONS(707), - [anon_sym_restrict] = ACTIONS(707), - [anon_sym_volatile] = ACTIONS(707), - [anon_sym__Atomic] = ACTIONS(707), - [anon_sym_unsigned] = ACTIONS(707), - [anon_sym_long] = ACTIONS(707), - [anon_sym_short] = ACTIONS(707), - [sym_primitive_type] = ACTIONS(707), - [anon_sym_enum] = ACTIONS(707), - [anon_sym_struct] = ACTIONS(707), - [anon_sym_union] = ACTIONS(707), - [sym_identifier] = ACTIONS(707), - [sym_comment] = ACTIONS(37), + [sym_parameter_list] = STATE(539), + [anon_sym_SEMI] = ACTIONS(2454), + [anon_sym_COMMA] = ACTIONS(2454), + [anon_sym_LPAREN2] = ACTIONS(441), + [anon_sym_LBRACK] = ACTIONS(1373), + [anon_sym_COLON] = ACTIONS(2454), + [sym_comment] = ACTIONS(59), }, [730] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2441), - [sym_comment] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(2456), + [anon_sym_COMMA] = ACTIONS(2456), + [anon_sym_RPAREN] = ACTIONS(2456), + [anon_sym_LPAREN2] = ACTIONS(2456), + [anon_sym_LBRACK] = ACTIONS(2456), + [anon_sym_COLON] = ACTIONS(2456), + [sym_comment] = ACTIONS(59), }, [731] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(717), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(717), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(717), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(717), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(717), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(717), - [sym_preproc_directive] = ACTIONS(717), - [anon_sym_SEMI] = ACTIONS(715), - [anon_sym_typedef] = ACTIONS(717), - [anon_sym_extern] = ACTIONS(717), - [anon_sym_LBRACE] = ACTIONS(715), - [anon_sym_LPAREN2] = ACTIONS(715), - [anon_sym_STAR] = ACTIONS(715), - [anon_sym_static] = ACTIONS(717), - [anon_sym_auto] = ACTIONS(717), - [anon_sym_register] = ACTIONS(717), - [anon_sym_inline] = ACTIONS(717), - [anon_sym_const] = ACTIONS(717), - [anon_sym_restrict] = ACTIONS(717), - [anon_sym_volatile] = ACTIONS(717), - [anon_sym__Atomic] = ACTIONS(717), - [anon_sym_unsigned] = ACTIONS(717), - [anon_sym_long] = ACTIONS(717), - [anon_sym_short] = ACTIONS(717), - [sym_primitive_type] = ACTIONS(717), - [anon_sym_enum] = ACTIONS(717), - [anon_sym_struct] = ACTIONS(717), - [anon_sym_union] = ACTIONS(717), - [anon_sym_if] = ACTIONS(717), - [anon_sym_else] = ACTIONS(717), - [anon_sym_switch] = ACTIONS(717), - [anon_sym_case] = ACTIONS(717), - [anon_sym_default] = ACTIONS(717), - [anon_sym_while] = ACTIONS(717), - [anon_sym_do] = ACTIONS(717), - [anon_sym_for] = ACTIONS(717), - [anon_sym_return] = ACTIONS(717), - [anon_sym_break] = ACTIONS(717), - [anon_sym_continue] = ACTIONS(717), - [anon_sym_goto] = ACTIONS(717), - [anon_sym_AMP] = ACTIONS(715), - [anon_sym_BANG] = ACTIONS(715), - [anon_sym_TILDE] = ACTIONS(715), - [anon_sym_PLUS] = ACTIONS(717), - [anon_sym_DASH] = ACTIONS(717), - [anon_sym_DASH_DASH] = ACTIONS(715), - [anon_sym_PLUS_PLUS] = ACTIONS(715), - [anon_sym_sizeof] = ACTIONS(717), - [sym_number_literal] = ACTIONS(715), - [anon_sym_SQUOTE] = ACTIONS(715), - [anon_sym_DQUOTE] = ACTIONS(715), - [sym_true] = ACTIONS(717), - [sym_false] = ACTIONS(717), - [sym_null] = ACTIONS(717), - [sym_identifier] = ACTIONS(717), - [sym_comment] = ACTIONS(37), + [sym__expression] = STATE(881), + [sym_conditional_expression] = STATE(881), + [sym_assignment_expression] = STATE(881), + [sym_pointer_expression] = STATE(881), + [sym_logical_expression] = STATE(881), + [sym_bitwise_expression] = STATE(881), + [sym_equality_expression] = STATE(881), + [sym_relational_expression] = STATE(881), + [sym_shift_expression] = STATE(881), + [sym_math_expression] = STATE(881), + [sym_cast_expression] = STATE(881), + [sym_sizeof_expression] = STATE(881), + [sym_subscript_expression] = STATE(881), + [sym_call_expression] = STATE(881), + [sym_field_expression] = STATE(881), + [sym_compound_literal_expression] = STATE(881), + [sym_parenthesized_expression] = STATE(881), + [sym_char_literal] = STATE(881), + [sym_concatenated_string] = STATE(881), + [sym_string_literal] = STATE(214), + [anon_sym_LPAREN2] = ACTIONS(461), + [anon_sym_STAR] = ACTIONS(463), + [anon_sym_RBRACK] = ACTIONS(2458), + [anon_sym_AMP] = ACTIONS(463), + [anon_sym_BANG] = ACTIONS(465), + [anon_sym_TILDE] = ACTIONS(467), + [anon_sym_PLUS] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(469), + [anon_sym_DASH_DASH] = ACTIONS(471), + [anon_sym_PLUS_PLUS] = ACTIONS(471), + [anon_sym_sizeof] = ACTIONS(473), + [sym_number_literal] = ACTIONS(2460), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(2462), + [sym_false] = ACTIONS(2462), + [sym_null] = ACTIONS(2462), + [sym_identifier] = ACTIONS(2462), + [sym_comment] = ACTIONS(59), }, [732] = { - [sym_parameter_list] = STATE(164), - [anon_sym_SEMI] = ACTIONS(2443), - [anon_sym_LPAREN2] = ACTIONS(231), - [anon_sym_LBRACK] = ACTIONS(399), - [sym_comment] = ACTIONS(37), + [sym_argument_list] = STATE(98), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(1016), + [anon_sym_LBRACK] = ACTIONS(188), + [anon_sym_RBRACK] = ACTIONS(2458), + [anon_sym_EQ] = ACTIONS(1020), + [anon_sym_QMARK] = ACTIONS(1022), + [anon_sym_STAR_EQ] = ACTIONS(1024), + [anon_sym_SLASH_EQ] = ACTIONS(1024), + [anon_sym_PERCENT_EQ] = ACTIONS(1024), + [anon_sym_PLUS_EQ] = ACTIONS(1024), + [anon_sym_DASH_EQ] = ACTIONS(1024), + [anon_sym_LT_LT_EQ] = ACTIONS(1024), + [anon_sym_GT_GT_EQ] = ACTIONS(1024), + [anon_sym_AMP_EQ] = ACTIONS(1024), + [anon_sym_CARET_EQ] = ACTIONS(1024), + [anon_sym_PIPE_EQ] = ACTIONS(1024), + [anon_sym_AMP] = ACTIONS(1026), + [anon_sym_PIPE_PIPE] = ACTIONS(1028), + [anon_sym_AMP_AMP] = ACTIONS(1030), + [anon_sym_PIPE] = ACTIONS(1032), + [anon_sym_CARET] = ACTIONS(1034), + [anon_sym_EQ_EQ] = ACTIONS(1036), + [anon_sym_BANG_EQ] = ACTIONS(1036), + [anon_sym_LT] = ACTIONS(1038), + [anon_sym_GT] = ACTIONS(1038), + [anon_sym_LT_EQ] = ACTIONS(1040), + [anon_sym_GT_EQ] = ACTIONS(1040), + [anon_sym_LT_LT] = ACTIONS(1042), + [anon_sym_GT_GT] = ACTIONS(1042), + [anon_sym_PLUS] = ACTIONS(1044), + [anon_sym_DASH] = ACTIONS(1044), + [anon_sym_SLASH] = ACTIONS(1016), + [anon_sym_PERCENT] = ACTIONS(1016), + [anon_sym_DASH_DASH] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(216), + [anon_sym_DOT] = ACTIONS(218), + [anon_sym_DASH_GT] = ACTIONS(218), + [sym_comment] = ACTIONS(59), }, [733] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(731), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(731), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(731), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(731), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(731), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(731), - [sym_preproc_directive] = ACTIONS(731), - [anon_sym_typedef] = ACTIONS(731), - [anon_sym_extern] = ACTIONS(731), - [anon_sym_static] = ACTIONS(731), - [anon_sym_auto] = ACTIONS(731), - [anon_sym_register] = ACTIONS(731), - [anon_sym_inline] = ACTIONS(731), - [anon_sym_const] = ACTIONS(731), - [anon_sym_restrict] = ACTIONS(731), - [anon_sym_volatile] = ACTIONS(731), - [anon_sym__Atomic] = ACTIONS(731), - [anon_sym_unsigned] = ACTIONS(731), - [anon_sym_long] = ACTIONS(731), - [anon_sym_short] = ACTIONS(731), - [sym_primitive_type] = ACTIONS(731), - [anon_sym_enum] = ACTIONS(731), - [anon_sym_struct] = ACTIONS(731), - [anon_sym_union] = ACTIONS(731), - [sym_identifier] = ACTIONS(731), - [sym_comment] = ACTIONS(37), + [sym_argument_list] = STATE(98), + [anon_sym_SEMI] = ACTIONS(2464), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_LBRACK] = ACTIONS(188), + [anon_sym_EQ] = ACTIONS(1896), + [anon_sym_QMARK] = ACTIONS(1898), + [anon_sym_STAR_EQ] = ACTIONS(1900), + [anon_sym_SLASH_EQ] = ACTIONS(1900), + [anon_sym_PERCENT_EQ] = ACTIONS(1900), + [anon_sym_PLUS_EQ] = ACTIONS(1900), + [anon_sym_DASH_EQ] = ACTIONS(1900), + [anon_sym_LT_LT_EQ] = ACTIONS(1900), + [anon_sym_GT_GT_EQ] = ACTIONS(1900), + [anon_sym_AMP_EQ] = ACTIONS(1900), + [anon_sym_CARET_EQ] = ACTIONS(1900), + [anon_sym_PIPE_EQ] = ACTIONS(1900), + [anon_sym_AMP] = ACTIONS(1902), + [anon_sym_PIPE_PIPE] = ACTIONS(1904), + [anon_sym_AMP_AMP] = ACTIONS(1906), + [anon_sym_PIPE] = ACTIONS(1908), + [anon_sym_CARET] = ACTIONS(1910), + [anon_sym_EQ_EQ] = ACTIONS(1912), + [anon_sym_BANG_EQ] = ACTIONS(1912), + [anon_sym_LT] = ACTIONS(1914), + [anon_sym_GT] = ACTIONS(1914), + [anon_sym_LT_EQ] = ACTIONS(1916), + [anon_sym_GT_EQ] = ACTIONS(1916), + [anon_sym_LT_LT] = ACTIONS(1918), + [anon_sym_GT_GT] = ACTIONS(1918), + [anon_sym_PLUS] = ACTIONS(1920), + [anon_sym_DASH] = ACTIONS(1920), + [anon_sym_SLASH] = ACTIONS(1894), + [anon_sym_PERCENT] = ACTIONS(1894), + [anon_sym_DASH_DASH] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(216), + [anon_sym_DOT] = ACTIONS(218), + [anon_sym_DASH_GT] = ACTIONS(218), + [sym_comment] = ACTIONS(59), }, [734] = { - [sym_preproc_include] = STATE(308), - [sym_preproc_def] = STATE(308), - [sym_preproc_function_def] = STATE(308), - [sym_preproc_call] = STATE(308), - [sym_preproc_if] = STATE(308), - [sym_preproc_ifdef] = STATE(308), - [sym_function_definition] = STATE(308), - [sym_declaration] = STATE(308), - [sym_type_definition] = STATE(308), - [sym__declaration_specifiers] = STATE(16), - [sym_linkage_specification] = STATE(308), - [sym_storage_class_specifier] = STATE(19), - [sym_type_qualifier] = STATE(19), - [sym__type_specifier] = STATE(17), - [sym_sized_type_specifier] = STATE(17), - [sym_enum_specifier] = STATE(17), - [sym_struct_specifier] = STATE(17), - [sym_union_specifier] = STATE(17), - [sym__empty_declaration] = STATE(308), - [sym_macro_type_specifier] = STATE(17), - [aux_sym_translation_unit_repeat1] = STATE(308), - [aux_sym__declaration_specifiers_repeat1] = STATE(19), - [aux_sym_sized_type_specifier_repeat1] = STATE(20), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(7), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(9), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(11), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(13), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(13), - [sym_preproc_directive] = ACTIONS(15), - [anon_sym_typedef] = ACTIONS(17), - [anon_sym_extern] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(2445), - [anon_sym_static] = ACTIONS(21), - [anon_sym_auto] = ACTIONS(21), - [anon_sym_register] = ACTIONS(21), - [anon_sym_inline] = ACTIONS(21), - [anon_sym_const] = ACTIONS(23), - [anon_sym_restrict] = ACTIONS(23), - [anon_sym_volatile] = ACTIONS(23), - [anon_sym__Atomic] = ACTIONS(23), - [anon_sym_unsigned] = ACTIONS(25), - [anon_sym_long] = ACTIONS(25), - [anon_sym_short] = ACTIONS(25), - [sym_primitive_type] = ACTIONS(27), - [anon_sym_enum] = ACTIONS(29), - [anon_sym_struct] = ACTIONS(31), - [anon_sym_union] = ACTIONS(33), - [sym_identifier] = ACTIONS(35), - [sym_comment] = ACTIONS(37), + [sym__expression] = STATE(883), + [sym_conditional_expression] = STATE(883), + [sym_assignment_expression] = STATE(883), + [sym_pointer_expression] = STATE(883), + [sym_logical_expression] = STATE(883), + [sym_bitwise_expression] = STATE(883), + [sym_equality_expression] = STATE(883), + [sym_relational_expression] = STATE(883), + [sym_shift_expression] = STATE(883), + [sym_math_expression] = STATE(883), + [sym_cast_expression] = STATE(883), + [sym_sizeof_expression] = STATE(883), + [sym_subscript_expression] = STATE(883), + [sym_call_expression] = STATE(883), + [sym_field_expression] = STATE(883), + [sym_compound_literal_expression] = STATE(883), + [sym_parenthesized_expression] = STATE(883), + [sym_char_literal] = STATE(883), + [sym_concatenated_string] = STATE(883), + [sym_string_literal] = STATE(534), + [anon_sym_LPAREN2] = ACTIONS(1349), + [anon_sym_STAR] = ACTIONS(1351), + [anon_sym_AMP] = ACTIONS(1351), + [anon_sym_BANG] = ACTIONS(1353), + [anon_sym_TILDE] = ACTIONS(1355), + [anon_sym_PLUS] = ACTIONS(1357), + [anon_sym_DASH] = ACTIONS(1357), + [anon_sym_DASH_DASH] = ACTIONS(1359), + [anon_sym_PLUS_PLUS] = ACTIONS(1359), + [anon_sym_sizeof] = ACTIONS(1361), + [sym_number_literal] = ACTIONS(2466), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(2468), + [sym_false] = ACTIONS(2468), + [sym_null] = ACTIONS(2468), + [sym_identifier] = ACTIONS(2468), + [sym_comment] = ACTIONS(59), }, [735] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(890), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(890), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(890), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(890), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(890), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(890), - [sym_preproc_directive] = ACTIONS(890), - [anon_sym_SEMI] = ACTIONS(888), - [anon_sym_typedef] = ACTIONS(890), - [anon_sym_extern] = ACTIONS(890), - [anon_sym_LBRACE] = ACTIONS(888), - [anon_sym_LPAREN2] = ACTIONS(888), - [anon_sym_STAR] = ACTIONS(888), - [anon_sym_static] = ACTIONS(890), - [anon_sym_auto] = ACTIONS(890), - [anon_sym_register] = ACTIONS(890), - [anon_sym_inline] = ACTIONS(890), - [anon_sym_const] = ACTIONS(890), - [anon_sym_restrict] = ACTIONS(890), - [anon_sym_volatile] = ACTIONS(890), - [anon_sym__Atomic] = ACTIONS(890), - [anon_sym_unsigned] = ACTIONS(890), - [anon_sym_long] = ACTIONS(890), - [anon_sym_short] = ACTIONS(890), - [sym_primitive_type] = ACTIONS(890), - [anon_sym_enum] = ACTIONS(890), - [anon_sym_struct] = ACTIONS(890), - [anon_sym_union] = ACTIONS(890), - [anon_sym_if] = ACTIONS(890), - [anon_sym_else] = ACTIONS(890), - [anon_sym_switch] = ACTIONS(890), - [anon_sym_case] = ACTIONS(890), - [anon_sym_default] = ACTIONS(890), - [anon_sym_while] = ACTIONS(890), - [anon_sym_do] = ACTIONS(890), - [anon_sym_for] = ACTIONS(890), - [anon_sym_return] = ACTIONS(890), - [anon_sym_break] = ACTIONS(890), - [anon_sym_continue] = ACTIONS(890), - [anon_sym_goto] = ACTIONS(890), - [anon_sym_AMP] = ACTIONS(888), - [anon_sym_BANG] = ACTIONS(888), - [anon_sym_TILDE] = ACTIONS(888), - [anon_sym_PLUS] = ACTIONS(890), - [anon_sym_DASH] = ACTIONS(890), - [anon_sym_DASH_DASH] = ACTIONS(888), - [anon_sym_PLUS_PLUS] = ACTIONS(888), - [anon_sym_sizeof] = ACTIONS(890), - [sym_number_literal] = ACTIONS(888), - [anon_sym_SQUOTE] = ACTIONS(888), - [anon_sym_DQUOTE] = ACTIONS(888), - [sym_true] = ACTIONS(890), - [sym_false] = ACTIONS(890), - [sym_null] = ACTIONS(890), - [sym_identifier] = ACTIONS(890), - [sym_comment] = ACTIONS(37), + [aux_sym_field_declaration_repeat1] = STATE(735), + [anon_sym_SEMI] = ACTIONS(2454), + [anon_sym_COMMA] = ACTIONS(2470), + [anon_sym_COLON] = ACTIONS(2454), + [sym_comment] = ACTIONS(59), }, [736] = { - [sym_preproc_include] = STATE(433), - [sym_preproc_def] = STATE(433), - [sym_preproc_function_def] = STATE(433), - [sym_preproc_call] = STATE(433), - [sym_preproc_if_in_compound_statement] = STATE(433), - [sym_preproc_ifdef_in_compound_statement] = STATE(433), - [sym_declaration] = STATE(433), - [sym_type_definition] = STATE(433), - [sym__declaration_specifiers] = STATE(227), - [sym_compound_statement] = STATE(433), - [sym_storage_class_specifier] = STATE(19), - [sym_type_qualifier] = STATE(19), - [sym__type_specifier] = STATE(17), - [sym_sized_type_specifier] = STATE(17), - [sym_enum_specifier] = STATE(17), - [sym_struct_specifier] = STATE(17), - [sym_union_specifier] = STATE(17), - [sym_labeled_statement] = STATE(433), - [sym_expression_statement] = STATE(433), - [sym_if_statement] = STATE(433), - [sym_switch_statement] = STATE(433), - [sym_case_statement] = STATE(433), - [sym_while_statement] = STATE(433), - [sym_do_statement] = STATE(433), - [sym_for_statement] = STATE(433), - [sym_return_statement] = STATE(433), - [sym_break_statement] = STATE(433), - [sym_continue_statement] = STATE(433), - [sym_goto_statement] = STATE(433), - [sym__expression] = STATE(228), - [sym_comma_expression] = STATE(229), - [sym_conditional_expression] = STATE(228), - [sym_assignment_expression] = STATE(228), - [sym_pointer_expression] = STATE(228), - [sym_logical_expression] = STATE(228), - [sym_bitwise_expression] = STATE(228), - [sym_equality_expression] = STATE(228), - [sym_relational_expression] = STATE(228), - [sym_shift_expression] = STATE(228), - [sym_math_expression] = STATE(228), - [sym_cast_expression] = STATE(228), - [sym_sizeof_expression] = STATE(228), - [sym_subscript_expression] = STATE(228), - [sym_call_expression] = STATE(228), - [sym_field_expression] = STATE(228), - [sym_compound_literal_expression] = STATE(228), - [sym_parenthesized_expression] = STATE(228), - [sym_char_literal] = STATE(228), - [sym_concatenated_string] = STATE(228), - [sym_string_literal] = STATE(230), - [sym__empty_declaration] = STATE(433), - [sym_macro_type_specifier] = STATE(17), - [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(433), - [aux_sym__declaration_specifiers_repeat1] = STATE(19), - [aux_sym_sized_type_specifier_repeat1] = STATE(20), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(497), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(9), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(499), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(501), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(501), - [sym_preproc_directive] = ACTIONS(15), - [anon_sym_SEMI] = ACTIONS(503), - [anon_sym_typedef] = ACTIONS(17), - [anon_sym_extern] = ACTIONS(21), - [anon_sym_LBRACE] = ACTIONS(229), - [anon_sym_RBRACE] = ACTIONS(2447), - [anon_sym_LPAREN2] = ACTIONS(507), - [anon_sym_STAR] = ACTIONS(509), - [anon_sym_static] = ACTIONS(21), - [anon_sym_auto] = ACTIONS(21), - [anon_sym_register] = ACTIONS(21), - [anon_sym_inline] = ACTIONS(21), - [anon_sym_const] = ACTIONS(23), - [anon_sym_restrict] = ACTIONS(23), - [anon_sym_volatile] = ACTIONS(23), - [anon_sym__Atomic] = ACTIONS(23), - [anon_sym_unsigned] = ACTIONS(25), - [anon_sym_long] = ACTIONS(25), - [anon_sym_short] = ACTIONS(25), - [sym_primitive_type] = ACTIONS(27), - [anon_sym_enum] = ACTIONS(29), - [anon_sym_struct] = ACTIONS(31), - [anon_sym_union] = ACTIONS(33), - [anon_sym_if] = ACTIONS(511), - [anon_sym_switch] = ACTIONS(513), - [anon_sym_case] = ACTIONS(515), - [anon_sym_default] = ACTIONS(517), - [anon_sym_while] = ACTIONS(519), - [anon_sym_do] = ACTIONS(521), - [anon_sym_for] = ACTIONS(523), - [anon_sym_return] = ACTIONS(525), - [anon_sym_break] = ACTIONS(527), - [anon_sym_continue] = ACTIONS(529), - [anon_sym_goto] = ACTIONS(531), - [anon_sym_AMP] = ACTIONS(509), - [anon_sym_BANG] = ACTIONS(533), - [anon_sym_TILDE] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DASH] = ACTIONS(537), - [anon_sym_DASH_DASH] = ACTIONS(539), - [anon_sym_PLUS_PLUS] = ACTIONS(539), - [anon_sym_sizeof] = ACTIONS(541), - [sym_number_literal] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(547), - [sym_false] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [sym_identifier] = ACTIONS(549), - [sym_comment] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(1436), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1438), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1438), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1438), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1438), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1438), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1438), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1438), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1438), + [sym_preproc_directive] = ACTIONS(1438), + [anon_sym_typedef] = ACTIONS(1438), + [anon_sym_extern] = ACTIONS(1438), + [anon_sym_LBRACE] = ACTIONS(1436), + [anon_sym_LPAREN2] = ACTIONS(1436), + [anon_sym_STAR] = ACTIONS(1436), + [anon_sym_static] = ACTIONS(1438), + [anon_sym_auto] = ACTIONS(1438), + [anon_sym_register] = ACTIONS(1438), + [anon_sym_inline] = ACTIONS(1438), + [anon_sym_const] = ACTIONS(1438), + [anon_sym_restrict] = ACTIONS(1438), + [anon_sym_volatile] = ACTIONS(1438), + [anon_sym__Atomic] = ACTIONS(1438), + [anon_sym_unsigned] = ACTIONS(1438), + [anon_sym_long] = ACTIONS(1438), + [anon_sym_short] = ACTIONS(1438), + [sym_primitive_type] = ACTIONS(1438), + [anon_sym_enum] = ACTIONS(1438), + [anon_sym_struct] = ACTIONS(1438), + [anon_sym_union] = ACTIONS(1438), + [anon_sym_if] = ACTIONS(1438), + [anon_sym_else] = ACTIONS(1438), + [anon_sym_switch] = ACTIONS(1438), + [anon_sym_case] = ACTIONS(1438), + [anon_sym_default] = ACTIONS(1438), + [anon_sym_while] = ACTIONS(1438), + [anon_sym_do] = ACTIONS(1438), + [anon_sym_for] = ACTIONS(1438), + [anon_sym_return] = ACTIONS(1438), + [anon_sym_break] = ACTIONS(1438), + [anon_sym_continue] = ACTIONS(1438), + [anon_sym_goto] = ACTIONS(1438), + [anon_sym_AMP] = ACTIONS(1436), + [anon_sym_BANG] = ACTIONS(1436), + [anon_sym_TILDE] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1438), + [anon_sym_DASH] = ACTIONS(1438), + [anon_sym_DASH_DASH] = ACTIONS(1436), + [anon_sym_PLUS_PLUS] = ACTIONS(1436), + [anon_sym_sizeof] = ACTIONS(1438), + [sym_number_literal] = ACTIONS(1436), + [anon_sym_SQUOTE] = ACTIONS(1436), + [anon_sym_DQUOTE] = ACTIONS(1436), + [sym_true] = ACTIONS(1438), + [sym_false] = ACTIONS(1438), + [sym_null] = ACTIONS(1438), + [sym_identifier] = ACTIONS(1438), + [sym_comment] = ACTIONS(59), }, [737] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1130), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1130), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1130), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1130), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1130), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1130), - [sym_preproc_directive] = ACTIONS(1130), - [anon_sym_SEMI] = ACTIONS(1128), - [anon_sym_typedef] = ACTIONS(1130), - [anon_sym_extern] = ACTIONS(1130), - [anon_sym_LBRACE] = ACTIONS(1128), - [anon_sym_LPAREN2] = ACTIONS(1128), - [anon_sym_STAR] = ACTIONS(1128), - [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_restrict] = ACTIONS(1130), - [anon_sym_volatile] = ACTIONS(1130), - [anon_sym__Atomic] = 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_else] = 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_AMP] = ACTIONS(1128), - [anon_sym_BANG] = ACTIONS(1128), - [anon_sym_TILDE] = ACTIONS(1128), - [anon_sym_PLUS] = ACTIONS(1130), - [anon_sym_DASH] = ACTIONS(1130), - [anon_sym_DASH_DASH] = ACTIONS(1128), - [anon_sym_PLUS_PLUS] = ACTIONS(1128), - [anon_sym_sizeof] = ACTIONS(1130), - [sym_number_literal] = ACTIONS(1128), - [anon_sym_SQUOTE] = ACTIONS(1128), - [anon_sym_DQUOTE] = ACTIONS(1128), - [sym_true] = ACTIONS(1130), - [sym_false] = ACTIONS(1130), - [sym_null] = ACTIONS(1130), - [sym_identifier] = ACTIONS(1130), - [sym_comment] = ACTIONS(37), + [sym_preproc_arg] = ACTIONS(2473), + [sym_comment] = ACTIONS(69), }, [738] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1238), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1238), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1238), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1238), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1238), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1238), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1238), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1238), - [sym_preproc_directive] = ACTIONS(1238), - [anon_sym_SEMI] = ACTIONS(1236), - [anon_sym_typedef] = ACTIONS(1238), - [anon_sym_extern] = ACTIONS(1238), - [anon_sym_LBRACE] = ACTIONS(1236), - [anon_sym_LPAREN2] = ACTIONS(1236), - [anon_sym_STAR] = ACTIONS(1236), - [anon_sym_static] = ACTIONS(1238), - [anon_sym_auto] = ACTIONS(1238), - [anon_sym_register] = ACTIONS(1238), - [anon_sym_inline] = ACTIONS(1238), - [anon_sym_const] = ACTIONS(1238), - [anon_sym_restrict] = ACTIONS(1238), - [anon_sym_volatile] = ACTIONS(1238), - [anon_sym__Atomic] = ACTIONS(1238), - [anon_sym_unsigned] = ACTIONS(1238), - [anon_sym_long] = ACTIONS(1238), - [anon_sym_short] = ACTIONS(1238), - [sym_primitive_type] = ACTIONS(1238), - [anon_sym_enum] = ACTIONS(1238), - [anon_sym_struct] = ACTIONS(1238), - [anon_sym_union] = ACTIONS(1238), - [anon_sym_if] = ACTIONS(1238), - [anon_sym_else] = ACTIONS(1238), - [anon_sym_switch] = ACTIONS(1238), - [anon_sym_case] = ACTIONS(1238), - [anon_sym_default] = ACTIONS(1238), - [anon_sym_while] = ACTIONS(1238), - [anon_sym_do] = ACTIONS(1238), - [anon_sym_for] = ACTIONS(1238), - [anon_sym_return] = ACTIONS(1238), - [anon_sym_break] = ACTIONS(1238), - [anon_sym_continue] = ACTIONS(1238), - [anon_sym_goto] = ACTIONS(1238), - [anon_sym_AMP] = ACTIONS(1236), - [anon_sym_BANG] = ACTIONS(1236), - [anon_sym_TILDE] = ACTIONS(1236), - [anon_sym_PLUS] = ACTIONS(1238), - [anon_sym_DASH] = ACTIONS(1238), - [anon_sym_DASH_DASH] = ACTIONS(1236), - [anon_sym_PLUS_PLUS] = ACTIONS(1236), - [anon_sym_sizeof] = ACTIONS(1238), - [sym_number_literal] = ACTIONS(1236), - [anon_sym_SQUOTE] = ACTIONS(1236), - [anon_sym_DQUOTE] = ACTIONS(1236), - [sym_true] = ACTIONS(1238), - [sym_false] = ACTIONS(1238), - [sym_null] = ACTIONS(1238), - [sym_identifier] = ACTIONS(1238), - [sym_comment] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(2475), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2477), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2477), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2477), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2477), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2477), + [sym_preproc_directive] = ACTIONS(2477), + [anon_sym_typedef] = ACTIONS(2477), + [anon_sym_extern] = ACTIONS(2477), + [anon_sym_LBRACE] = ACTIONS(2475), + [anon_sym_RBRACE] = ACTIONS(2475), + [anon_sym_LPAREN2] = ACTIONS(2475), + [anon_sym_STAR] = ACTIONS(2475), + [anon_sym_static] = ACTIONS(2477), + [anon_sym_auto] = ACTIONS(2477), + [anon_sym_register] = ACTIONS(2477), + [anon_sym_inline] = ACTIONS(2477), + [anon_sym_const] = ACTIONS(2477), + [anon_sym_restrict] = ACTIONS(2477), + [anon_sym_volatile] = ACTIONS(2477), + [anon_sym__Atomic] = ACTIONS(2477), + [anon_sym_unsigned] = ACTIONS(2477), + [anon_sym_long] = ACTIONS(2477), + [anon_sym_short] = ACTIONS(2477), + [sym_primitive_type] = ACTIONS(2477), + [anon_sym_enum] = ACTIONS(2477), + [anon_sym_struct] = ACTIONS(2477), + [anon_sym_union] = ACTIONS(2477), + [anon_sym_if] = ACTIONS(2477), + [anon_sym_switch] = ACTIONS(2477), + [anon_sym_case] = ACTIONS(2477), + [anon_sym_default] = ACTIONS(2477), + [anon_sym_while] = ACTIONS(2477), + [anon_sym_do] = ACTIONS(2477), + [anon_sym_for] = ACTIONS(2477), + [anon_sym_return] = ACTIONS(2477), + [anon_sym_break] = ACTIONS(2477), + [anon_sym_continue] = ACTIONS(2477), + [anon_sym_goto] = ACTIONS(2477), + [anon_sym_AMP] = ACTIONS(2475), + [anon_sym_BANG] = ACTIONS(2475), + [anon_sym_TILDE] = ACTIONS(2475), + [anon_sym_PLUS] = ACTIONS(2477), + [anon_sym_DASH] = ACTIONS(2477), + [anon_sym_DASH_DASH] = ACTIONS(2475), + [anon_sym_PLUS_PLUS] = ACTIONS(2475), + [anon_sym_sizeof] = ACTIONS(2477), + [sym_number_literal] = ACTIONS(2475), + [anon_sym_SQUOTE] = ACTIONS(2475), + [anon_sym_DQUOTE] = ACTIONS(2475), + [sym_true] = ACTIONS(2477), + [sym_false] = ACTIONS(2477), + [sym_null] = ACTIONS(2477), + [sym_identifier] = ACTIONS(2477), + [sym_comment] = ACTIONS(59), }, [739] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1242), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1242), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1242), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1242), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1242), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1242), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1242), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1242), - [sym_preproc_directive] = ACTIONS(1242), - [anon_sym_typedef] = ACTIONS(1242), - [anon_sym_extern] = ACTIONS(1242), - [anon_sym_static] = ACTIONS(1242), - [anon_sym_auto] = ACTIONS(1242), - [anon_sym_register] = ACTIONS(1242), - [anon_sym_inline] = ACTIONS(1242), - [anon_sym_const] = ACTIONS(1242), - [anon_sym_restrict] = ACTIONS(1242), - [anon_sym_volatile] = ACTIONS(1242), - [anon_sym__Atomic] = ACTIONS(1242), - [anon_sym_unsigned] = ACTIONS(1242), - [anon_sym_long] = ACTIONS(1242), - [anon_sym_short] = ACTIONS(1242), - [sym_primitive_type] = ACTIONS(1242), - [anon_sym_enum] = ACTIONS(1242), - [anon_sym_struct] = ACTIONS(1242), - [anon_sym_union] = ACTIONS(1242), - [sym_identifier] = ACTIONS(1242), - [sym_comment] = ACTIONS(37), + [sym_identifier] = ACTIONS(2479), + [sym_comment] = ACTIONS(59), }, [740] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1661), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1661), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1661), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1661), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1661), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1661), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1661), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1661), - [sym_preproc_directive] = ACTIONS(1661), - [anon_sym_SEMI] = ACTIONS(1659), - [anon_sym_typedef] = ACTIONS(1661), - [anon_sym_extern] = ACTIONS(1661), - [anon_sym_LBRACE] = ACTIONS(1659), - [anon_sym_LPAREN2] = ACTIONS(1659), - [anon_sym_STAR] = ACTIONS(1659), - [anon_sym_static] = ACTIONS(1661), - [anon_sym_auto] = ACTIONS(1661), - [anon_sym_register] = ACTIONS(1661), - [anon_sym_inline] = ACTIONS(1661), - [anon_sym_const] = ACTIONS(1661), - [anon_sym_restrict] = ACTIONS(1661), - [anon_sym_volatile] = ACTIONS(1661), - [anon_sym__Atomic] = ACTIONS(1661), - [anon_sym_unsigned] = ACTIONS(1661), - [anon_sym_long] = ACTIONS(1661), - [anon_sym_short] = ACTIONS(1661), - [sym_primitive_type] = ACTIONS(1661), - [anon_sym_enum] = ACTIONS(1661), - [anon_sym_struct] = ACTIONS(1661), - [anon_sym_union] = ACTIONS(1661), - [anon_sym_if] = ACTIONS(1661), - [anon_sym_else] = ACTIONS(1661), - [anon_sym_switch] = ACTIONS(1661), - [anon_sym_case] = ACTIONS(1661), - [anon_sym_default] = ACTIONS(1661), - [anon_sym_while] = ACTIONS(1661), - [anon_sym_do] = ACTIONS(1661), - [anon_sym_for] = ACTIONS(1661), - [anon_sym_return] = ACTIONS(1661), - [anon_sym_break] = ACTIONS(1661), - [anon_sym_continue] = ACTIONS(1661), - [anon_sym_goto] = ACTIONS(1661), - [anon_sym_AMP] = ACTIONS(1659), - [anon_sym_BANG] = ACTIONS(1659), - [anon_sym_TILDE] = ACTIONS(1659), - [anon_sym_PLUS] = ACTIONS(1661), - [anon_sym_DASH] = ACTIONS(1661), - [anon_sym_DASH_DASH] = ACTIONS(1659), - [anon_sym_PLUS_PLUS] = ACTIONS(1659), - [anon_sym_sizeof] = ACTIONS(1661), - [sym_number_literal] = ACTIONS(1659), - [anon_sym_SQUOTE] = ACTIONS(1659), - [anon_sym_DQUOTE] = ACTIONS(1659), - [sym_true] = ACTIONS(1661), - [sym_false] = ACTIONS(1661), - [sym_null] = ACTIONS(1661), - [sym_identifier] = ACTIONS(1661), - [sym_comment] = ACTIONS(37), + [sym_preproc_include] = STATE(904), + [sym_preproc_def] = STATE(904), + [sym_preproc_function_def] = STATE(904), + [sym_preproc_call] = STATE(904), + [sym_preproc_if_in_compound_statement] = STATE(904), + [sym_preproc_ifdef_in_compound_statement] = STATE(904), + [sym_declaration] = STATE(904), + [sym_type_definition] = STATE(904), + [sym__declaration_specifiers] = STATE(901), + [sym_compound_statement] = STATE(904), + [sym_storage_class_specifier] = STATE(30), + [sym_type_qualifier] = STATE(30), + [sym__type_specifier] = STATE(25), + [sym_sized_type_specifier] = STATE(25), + [sym_enum_specifier] = STATE(25), + [sym_struct_specifier] = STATE(25), + [sym_union_specifier] = STATE(25), + [sym_labeled_statement] = STATE(904), + [sym_expression_statement] = STATE(904), + [sym_if_statement] = STATE(904), + [sym_switch_statement] = STATE(904), + [sym_case_statement] = STATE(904), + [sym_while_statement] = STATE(904), + [sym_do_statement] = STATE(904), + [sym_for_statement] = STATE(904), + [sym_return_statement] = STATE(904), + [sym_break_statement] = STATE(904), + [sym_continue_statement] = STATE(904), + [sym_goto_statement] = STATE(904), + [sym__expression] = STATE(902), + [sym_comma_expression] = STATE(903), + [sym_conditional_expression] = STATE(902), + [sym_assignment_expression] = STATE(902), + [sym_pointer_expression] = STATE(902), + [sym_logical_expression] = STATE(902), + [sym_bitwise_expression] = STATE(902), + [sym_equality_expression] = STATE(902), + [sym_relational_expression] = STATE(902), + [sym_shift_expression] = STATE(902), + [sym_math_expression] = STATE(902), + [sym_cast_expression] = STATE(902), + [sym_sizeof_expression] = STATE(902), + [sym_subscript_expression] = STATE(902), + [sym_call_expression] = STATE(902), + [sym_field_expression] = STATE(902), + [sym_compound_literal_expression] = STATE(902), + [sym_parenthesized_expression] = STATE(902), + [sym_char_literal] = STATE(902), + [sym_concatenated_string] = STATE(902), + [sym_string_literal] = STATE(374), + [sym__empty_declaration] = STATE(904), + [sym_macro_type_specifier] = STATE(25), + [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(904), + [aux_sym__declaration_specifiers_repeat1] = STATE(30), + [aux_sym_sized_type_specifier_repeat1] = STATE(31), + [anon_sym_SEMI] = ACTIONS(2481), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(682), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(684), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2483), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2485), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2487), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2487), + [sym_preproc_directive] = ACTIONS(692), + [anon_sym_typedef] = ACTIONS(694), + [anon_sym_extern] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(1699), + [anon_sym_LPAREN2] = ACTIONS(936), + [anon_sym_STAR] = ACTIONS(938), + [anon_sym_static] = ACTIONS(25), + [anon_sym_auto] = ACTIONS(25), + [anon_sym_register] = ACTIONS(25), + [anon_sym_inline] = ACTIONS(25), + [anon_sym_const] = ACTIONS(27), + [anon_sym_restrict] = ACTIONS(27), + [anon_sym_volatile] = ACTIONS(27), + [anon_sym__Atomic] = ACTIONS(27), + [anon_sym_unsigned] = ACTIONS(29), + [anon_sym_long] = ACTIONS(29), + [anon_sym_short] = ACTIONS(29), + [sym_primitive_type] = ACTIONS(31), + [anon_sym_enum] = ACTIONS(33), + [anon_sym_struct] = ACTIONS(35), + [anon_sym_union] = ACTIONS(37), + [anon_sym_if] = ACTIONS(2489), + [anon_sym_switch] = ACTIONS(2491), + [anon_sym_case] = ACTIONS(2493), + [anon_sym_default] = ACTIONS(2495), + [anon_sym_while] = ACTIONS(2497), + [anon_sym_do] = ACTIONS(2499), + [anon_sym_for] = ACTIONS(2501), + [anon_sym_return] = ACTIONS(2503), + [anon_sym_break] = ACTIONS(2505), + [anon_sym_continue] = ACTIONS(2507), + [anon_sym_goto] = ACTIONS(2509), + [anon_sym_AMP] = ACTIONS(938), + [anon_sym_BANG] = ACTIONS(962), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_DASH_DASH] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(968), + [anon_sym_sizeof] = ACTIONS(970), + [sym_number_literal] = ACTIONS(2511), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(2513), + [sym_false] = ACTIONS(2513), + [sym_null] = ACTIONS(2513), + [sym_identifier] = ACTIONS(2515), + [sym_comment] = ACTIONS(59), }, [741] = { - [anon_sym_RPAREN] = ACTIONS(2449), - [anon_sym_SEMI] = ACTIONS(2449), - [anon_sym_LPAREN2] = ACTIONS(2449), - [anon_sym_LBRACK] = ACTIONS(2449), - [sym_comment] = ACTIONS(37), + [sym_preproc_arg] = ACTIONS(2517), + [sym_comment] = ACTIONS(69), }, [742] = { - [sym__expression] = STATE(838), - [sym_conditional_expression] = STATE(838), - [sym_assignment_expression] = STATE(838), - [sym_pointer_expression] = STATE(838), - [sym_logical_expression] = STATE(838), - [sym_bitwise_expression] = STATE(838), - [sym_equality_expression] = STATE(838), - [sym_relational_expression] = STATE(838), - [sym_shift_expression] = STATE(838), - [sym_math_expression] = STATE(838), - [sym_cast_expression] = STATE(838), - [sym_sizeof_expression] = STATE(838), - [sym_subscript_expression] = STATE(838), - [sym_call_expression] = STATE(838), - [sym_field_expression] = STATE(838), - [sym_compound_literal_expression] = STATE(838), - [sym_parenthesized_expression] = STATE(838), - [sym_initializer_list] = STATE(839), - [sym_char_literal] = STATE(838), - [sym_concatenated_string] = STATE(838), - [sym_string_literal] = STATE(318), - [anon_sym_LBRACE] = ACTIONS(585), - [anon_sym_LPAREN2] = ACTIONS(742), - [anon_sym_STAR] = ACTIONS(744), - [anon_sym_AMP] = ACTIONS(744), - [anon_sym_BANG] = ACTIONS(746), - [anon_sym_TILDE] = ACTIONS(748), - [anon_sym_PLUS] = ACTIONS(750), - [anon_sym_DASH] = ACTIONS(750), - [anon_sym_DASH_DASH] = ACTIONS(752), - [anon_sym_PLUS_PLUS] = ACTIONS(752), - [anon_sym_sizeof] = ACTIONS(754), - [sym_number_literal] = ACTIONS(2206), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(2208), - [sym_false] = ACTIONS(2208), - [sym_null] = ACTIONS(2208), - [sym_identifier] = ACTIONS(2208), - [sym_comment] = ACTIONS(37), + [sym_parenthesized_expression] = STATE(906), + [anon_sym_LPAREN2] = ACTIONS(1448), + [sym_comment] = ACTIONS(59), }, [743] = { - [anon_sym_RPAREN] = ACTIONS(2451), - [sym_comment] = ACTIONS(37), + [sym_parenthesized_expression] = STATE(907), + [anon_sym_LPAREN2] = ACTIONS(1448), + [sym_comment] = ACTIONS(59), }, [744] = { - [sym_argument_list] = STATE(430), - [anon_sym_COMMA] = ACTIONS(2354), - [anon_sym_RBRACE] = ACTIONS(2354), - [anon_sym_LPAREN2] = ACTIONS(1012), - [anon_sym_STAR] = ACTIONS(1252), - [anon_sym_LBRACK] = ACTIONS(1016), - [anon_sym_EQ] = ACTIONS(1254), - [anon_sym_QMARK] = ACTIONS(2354), - [anon_sym_STAR_EQ] = ACTIONS(1258), - [anon_sym_SLASH_EQ] = ACTIONS(1258), - [anon_sym_PERCENT_EQ] = ACTIONS(1258), - [anon_sym_PLUS_EQ] = ACTIONS(1258), - [anon_sym_DASH_EQ] = ACTIONS(1258), - [anon_sym_LT_LT_EQ] = ACTIONS(1258), - [anon_sym_GT_GT_EQ] = ACTIONS(1258), - [anon_sym_AMP_EQ] = ACTIONS(1258), - [anon_sym_CARET_EQ] = ACTIONS(1258), - [anon_sym_PIPE_EQ] = ACTIONS(1258), - [anon_sym_AMP] = ACTIONS(1260), - [anon_sym_PIPE_PIPE] = ACTIONS(1262), - [anon_sym_AMP_AMP] = ACTIONS(1264), - [anon_sym_PIPE] = ACTIONS(1266), - [anon_sym_CARET] = ACTIONS(1268), - [anon_sym_EQ_EQ] = ACTIONS(1270), - [anon_sym_BANG_EQ] = ACTIONS(1270), - [anon_sym_LT] = ACTIONS(1272), - [anon_sym_GT] = ACTIONS(1272), - [anon_sym_LT_EQ] = ACTIONS(1274), - [anon_sym_GT_EQ] = ACTIONS(1274), - [anon_sym_LT_LT] = ACTIONS(1276), - [anon_sym_GT_GT] = ACTIONS(1276), - [anon_sym_PLUS] = ACTIONS(1278), - [anon_sym_DASH] = ACTIONS(1278), - [anon_sym_SLASH] = ACTIONS(1252), - [anon_sym_PERCENT] = ACTIONS(1252), - [anon_sym_DASH_DASH] = ACTIONS(1044), - [anon_sym_PLUS_PLUS] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1046), - [anon_sym_DASH_GT] = ACTIONS(1046), - [sym_comment] = ACTIONS(37), - }, - [745] = { - [sym_argument_list] = STATE(430), - [anon_sym_LPAREN2] = ACTIONS(1012), - [anon_sym_STAR] = ACTIONS(1497), - [anon_sym_LBRACK] = ACTIONS(1016), - [anon_sym_EQ] = ACTIONS(1499), - [anon_sym_COLON] = ACTIONS(2453), - [anon_sym_QMARK] = ACTIONS(1503), - [anon_sym_STAR_EQ] = ACTIONS(1505), - [anon_sym_SLASH_EQ] = ACTIONS(1505), - [anon_sym_PERCENT_EQ] = ACTIONS(1505), - [anon_sym_PLUS_EQ] = ACTIONS(1505), - [anon_sym_DASH_EQ] = ACTIONS(1505), - [anon_sym_LT_LT_EQ] = ACTIONS(1505), - [anon_sym_GT_GT_EQ] = ACTIONS(1505), - [anon_sym_AMP_EQ] = ACTIONS(1505), - [anon_sym_CARET_EQ] = ACTIONS(1505), - [anon_sym_PIPE_EQ] = ACTIONS(1505), - [anon_sym_AMP] = ACTIONS(1507), - [anon_sym_PIPE_PIPE] = ACTIONS(1509), - [anon_sym_AMP_AMP] = ACTIONS(1511), - [anon_sym_PIPE] = ACTIONS(1513), - [anon_sym_CARET] = ACTIONS(1515), - [anon_sym_EQ_EQ] = ACTIONS(1517), - [anon_sym_BANG_EQ] = ACTIONS(1517), - [anon_sym_LT] = ACTIONS(1519), - [anon_sym_GT] = ACTIONS(1519), - [anon_sym_LT_EQ] = ACTIONS(1521), - [anon_sym_GT_EQ] = ACTIONS(1521), - [anon_sym_LT_LT] = ACTIONS(1523), - [anon_sym_GT_GT] = ACTIONS(1523), - [anon_sym_PLUS] = ACTIONS(1525), - [anon_sym_DASH] = ACTIONS(1525), - [anon_sym_SLASH] = ACTIONS(1497), - [anon_sym_PERCENT] = ACTIONS(1497), - [anon_sym_DASH_DASH] = ACTIONS(1044), - [anon_sym_PLUS_PLUS] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1046), - [anon_sym_DASH_GT] = ACTIONS(1046), - [sym_comment] = ACTIONS(37), + [sym__expression] = STATE(908), + [sym_conditional_expression] = STATE(908), + [sym_assignment_expression] = STATE(908), + [sym_pointer_expression] = STATE(908), + [sym_logical_expression] = STATE(908), + [sym_bitwise_expression] = STATE(908), + [sym_equality_expression] = STATE(908), + [sym_relational_expression] = STATE(908), + [sym_shift_expression] = STATE(908), + [sym_math_expression] = STATE(908), + [sym_cast_expression] = STATE(908), + [sym_sizeof_expression] = STATE(908), + [sym_subscript_expression] = STATE(908), + [sym_call_expression] = STATE(908), + [sym_field_expression] = STATE(908), + [sym_compound_literal_expression] = STATE(908), + [sym_parenthesized_expression] = STATE(908), + [sym_char_literal] = STATE(908), + [sym_concatenated_string] = STATE(908), + [sym_string_literal] = STATE(223), + [anon_sym_LPAREN2] = ACTIONS(483), + [anon_sym_STAR] = ACTIONS(485), + [anon_sym_AMP] = ACTIONS(485), + [anon_sym_BANG] = ACTIONS(487), + [anon_sym_TILDE] = ACTIONS(489), + [anon_sym_PLUS] = ACTIONS(491), + [anon_sym_DASH] = ACTIONS(491), + [anon_sym_DASH_DASH] = ACTIONS(493), + [anon_sym_PLUS_PLUS] = ACTIONS(493), + [anon_sym_sizeof] = ACTIONS(495), + [sym_number_literal] = ACTIONS(2519), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(2521), + [sym_false] = ACTIONS(2521), + [sym_null] = ACTIONS(2521), + [sym_identifier] = ACTIONS(2521), + [sym_comment] = ACTIONS(59), + }, + [745] = { + [anon_sym_COLON] = ACTIONS(2523), + [sym_comment] = ACTIONS(59), }, [746] = { - [sym_argument_list] = STATE(430), - [anon_sym_COMMA] = ACTIONS(2358), - [anon_sym_RBRACE] = ACTIONS(2358), - [anon_sym_LPAREN2] = ACTIONS(1012), - [anon_sym_STAR] = ACTIONS(1252), - [anon_sym_LBRACK] = ACTIONS(1016), - [anon_sym_EQ] = ACTIONS(2360), - [anon_sym_QMARK] = ACTIONS(2358), - [anon_sym_STAR_EQ] = ACTIONS(2358), - [anon_sym_SLASH_EQ] = ACTIONS(2358), - [anon_sym_PERCENT_EQ] = ACTIONS(2358), - [anon_sym_PLUS_EQ] = ACTIONS(2358), - [anon_sym_DASH_EQ] = ACTIONS(2358), - [anon_sym_LT_LT_EQ] = ACTIONS(2358), - [anon_sym_GT_GT_EQ] = ACTIONS(2358), - [anon_sym_AMP_EQ] = ACTIONS(2358), - [anon_sym_CARET_EQ] = ACTIONS(2358), - [anon_sym_PIPE_EQ] = ACTIONS(2358), - [anon_sym_AMP] = ACTIONS(2360), - [anon_sym_PIPE_PIPE] = ACTIONS(2358), - [anon_sym_AMP_AMP] = ACTIONS(2358), - [anon_sym_PIPE] = ACTIONS(2360), - [anon_sym_CARET] = ACTIONS(2360), - [anon_sym_EQ_EQ] = ACTIONS(1270), - [anon_sym_BANG_EQ] = ACTIONS(1270), - [anon_sym_LT] = ACTIONS(1272), - [anon_sym_GT] = ACTIONS(1272), - [anon_sym_LT_EQ] = ACTIONS(1274), - [anon_sym_GT_EQ] = ACTIONS(1274), - [anon_sym_LT_LT] = ACTIONS(1276), - [anon_sym_GT_GT] = ACTIONS(1276), - [anon_sym_PLUS] = ACTIONS(1278), - [anon_sym_DASH] = ACTIONS(1278), - [anon_sym_SLASH] = ACTIONS(1252), - [anon_sym_PERCENT] = ACTIONS(1252), - [anon_sym_DASH_DASH] = ACTIONS(1044), - [anon_sym_PLUS_PLUS] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1046), - [anon_sym_DASH_GT] = ACTIONS(1046), - [sym_comment] = ACTIONS(37), + [sym_parenthesized_expression] = STATE(910), + [anon_sym_LPAREN2] = ACTIONS(1448), + [sym_comment] = ACTIONS(59), }, [747] = { - [sym_argument_list] = STATE(430), - [anon_sym_COMMA] = ACTIONS(2362), - [anon_sym_RBRACE] = ACTIONS(2362), - [anon_sym_LPAREN2] = ACTIONS(1012), - [anon_sym_STAR] = ACTIONS(1252), - [anon_sym_LBRACK] = ACTIONS(1016), - [anon_sym_EQ] = ACTIONS(2364), - [anon_sym_QMARK] = ACTIONS(2362), - [anon_sym_STAR_EQ] = ACTIONS(2362), - [anon_sym_SLASH_EQ] = ACTIONS(2362), - [anon_sym_PERCENT_EQ] = ACTIONS(2362), - [anon_sym_PLUS_EQ] = ACTIONS(2362), - [anon_sym_DASH_EQ] = ACTIONS(2362), - [anon_sym_LT_LT_EQ] = ACTIONS(2362), - [anon_sym_GT_GT_EQ] = ACTIONS(2362), - [anon_sym_AMP_EQ] = ACTIONS(2362), - [anon_sym_CARET_EQ] = ACTIONS(2362), - [anon_sym_PIPE_EQ] = ACTIONS(2362), - [anon_sym_AMP] = ACTIONS(1260), - [anon_sym_PIPE_PIPE] = ACTIONS(2362), - [anon_sym_AMP_AMP] = ACTIONS(1264), - [anon_sym_PIPE] = ACTIONS(1266), - [anon_sym_CARET] = ACTIONS(1268), - [anon_sym_EQ_EQ] = ACTIONS(1270), - [anon_sym_BANG_EQ] = ACTIONS(1270), - [anon_sym_LT] = ACTIONS(1272), - [anon_sym_GT] = ACTIONS(1272), - [anon_sym_LT_EQ] = ACTIONS(1274), - [anon_sym_GT_EQ] = ACTIONS(1274), - [anon_sym_LT_LT] = ACTIONS(1276), - [anon_sym_GT_GT] = ACTIONS(1276), - [anon_sym_PLUS] = ACTIONS(1278), - [anon_sym_DASH] = ACTIONS(1278), - [anon_sym_SLASH] = ACTIONS(1252), - [anon_sym_PERCENT] = ACTIONS(1252), - [anon_sym_DASH_DASH] = ACTIONS(1044), - [anon_sym_PLUS_PLUS] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1046), - [anon_sym_DASH_GT] = ACTIONS(1046), - [sym_comment] = ACTIONS(37), + [sym_compound_statement] = STATE(911), + [sym_labeled_statement] = STATE(911), + [sym_expression_statement] = STATE(911), + [sym_if_statement] = STATE(911), + [sym_switch_statement] = STATE(911), + [sym_case_statement] = STATE(911), + [sym_while_statement] = STATE(911), + [sym_do_statement] = STATE(911), + [sym_for_statement] = STATE(911), + [sym_return_statement] = STATE(911), + [sym_break_statement] = STATE(911), + [sym_continue_statement] = STATE(911), + [sym_goto_statement] = STATE(911), + [sym__expression] = STATE(372), + [sym_comma_expression] = STATE(373), + [sym_conditional_expression] = STATE(372), + [sym_assignment_expression] = STATE(372), + [sym_pointer_expression] = STATE(372), + [sym_logical_expression] = STATE(372), + [sym_bitwise_expression] = STATE(372), + [sym_equality_expression] = STATE(372), + [sym_relational_expression] = STATE(372), + [sym_shift_expression] = STATE(372), + [sym_math_expression] = STATE(372), + [sym_cast_expression] = STATE(372), + [sym_sizeof_expression] = STATE(372), + [sym_subscript_expression] = STATE(372), + [sym_call_expression] = STATE(372), + [sym_field_expression] = STATE(372), + [sym_compound_literal_expression] = STATE(372), + [sym_parenthesized_expression] = STATE(372), + [sym_char_literal] = STATE(372), + [sym_concatenated_string] = STATE(372), + [sym_string_literal] = STATE(374), + [anon_sym_SEMI] = ACTIONS(928), + [anon_sym_LBRACE] = ACTIONS(439), + [anon_sym_LPAREN2] = ACTIONS(936), + [anon_sym_STAR] = ACTIONS(938), + [anon_sym_if] = ACTIONS(1456), + [anon_sym_switch] = ACTIONS(1458), + [anon_sym_case] = ACTIONS(1460), + [anon_sym_default] = ACTIONS(1462), + [anon_sym_while] = ACTIONS(1464), + [anon_sym_do] = ACTIONS(1466), + [anon_sym_for] = ACTIONS(1468), + [anon_sym_return] = ACTIONS(954), + [anon_sym_break] = ACTIONS(956), + [anon_sym_continue] = ACTIONS(958), + [anon_sym_goto] = ACTIONS(960), + [anon_sym_AMP] = ACTIONS(938), + [anon_sym_BANG] = ACTIONS(962), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_DASH_DASH] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(968), + [anon_sym_sizeof] = ACTIONS(970), + [sym_number_literal] = ACTIONS(972), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(974), + [sym_false] = ACTIONS(974), + [sym_null] = ACTIONS(974), + [sym_identifier] = ACTIONS(1470), + [sym_comment] = ACTIONS(59), }, [748] = { - [sym_argument_list] = STATE(430), - [anon_sym_COMMA] = ACTIONS(2362), - [anon_sym_RBRACE] = ACTIONS(2362), - [anon_sym_LPAREN2] = ACTIONS(1012), - [anon_sym_STAR] = ACTIONS(1252), - [anon_sym_LBRACK] = ACTIONS(1016), - [anon_sym_EQ] = ACTIONS(2364), - [anon_sym_QMARK] = ACTIONS(2362), - [anon_sym_STAR_EQ] = ACTIONS(2362), - [anon_sym_SLASH_EQ] = ACTIONS(2362), - [anon_sym_PERCENT_EQ] = ACTIONS(2362), - [anon_sym_PLUS_EQ] = ACTIONS(2362), - [anon_sym_DASH_EQ] = ACTIONS(2362), - [anon_sym_LT_LT_EQ] = ACTIONS(2362), - [anon_sym_GT_GT_EQ] = ACTIONS(2362), - [anon_sym_AMP_EQ] = ACTIONS(2362), - [anon_sym_CARET_EQ] = ACTIONS(2362), - [anon_sym_PIPE_EQ] = ACTIONS(2362), - [anon_sym_AMP] = ACTIONS(1260), - [anon_sym_PIPE_PIPE] = ACTIONS(2362), - [anon_sym_AMP_AMP] = ACTIONS(2362), - [anon_sym_PIPE] = ACTIONS(1266), - [anon_sym_CARET] = ACTIONS(1268), - [anon_sym_EQ_EQ] = ACTIONS(1270), - [anon_sym_BANG_EQ] = ACTIONS(1270), - [anon_sym_LT] = ACTIONS(1272), - [anon_sym_GT] = ACTIONS(1272), - [anon_sym_LT_EQ] = ACTIONS(1274), - [anon_sym_GT_EQ] = ACTIONS(1274), - [anon_sym_LT_LT] = ACTIONS(1276), - [anon_sym_GT_GT] = ACTIONS(1276), - [anon_sym_PLUS] = ACTIONS(1278), - [anon_sym_DASH] = ACTIONS(1278), - [anon_sym_SLASH] = ACTIONS(1252), - [anon_sym_PERCENT] = ACTIONS(1252), - [anon_sym_DASH_DASH] = ACTIONS(1044), - [anon_sym_PLUS_PLUS] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1046), - [anon_sym_DASH_GT] = ACTIONS(1046), - [sym_comment] = ACTIONS(37), + [anon_sym_LPAREN2] = ACTIONS(2525), + [sym_comment] = ACTIONS(59), }, [749] = { - [sym_argument_list] = STATE(430), - [anon_sym_COMMA] = ACTIONS(2358), - [anon_sym_RBRACE] = ACTIONS(2358), - [anon_sym_LPAREN2] = ACTIONS(1012), - [anon_sym_STAR] = ACTIONS(1252), - [anon_sym_LBRACK] = ACTIONS(1016), - [anon_sym_EQ] = ACTIONS(2360), - [anon_sym_QMARK] = ACTIONS(2358), - [anon_sym_STAR_EQ] = ACTIONS(2358), - [anon_sym_SLASH_EQ] = ACTIONS(2358), - [anon_sym_PERCENT_EQ] = ACTIONS(2358), - [anon_sym_PLUS_EQ] = ACTIONS(2358), - [anon_sym_DASH_EQ] = ACTIONS(2358), - [anon_sym_LT_LT_EQ] = ACTIONS(2358), - [anon_sym_GT_GT_EQ] = ACTIONS(2358), - [anon_sym_AMP_EQ] = ACTIONS(2358), - [anon_sym_CARET_EQ] = ACTIONS(2358), - [anon_sym_PIPE_EQ] = ACTIONS(2358), - [anon_sym_AMP] = ACTIONS(1260), - [anon_sym_PIPE_PIPE] = ACTIONS(2358), - [anon_sym_AMP_AMP] = ACTIONS(2358), - [anon_sym_PIPE] = ACTIONS(2360), - [anon_sym_CARET] = ACTIONS(1268), - [anon_sym_EQ_EQ] = ACTIONS(1270), - [anon_sym_BANG_EQ] = ACTIONS(1270), - [anon_sym_LT] = ACTIONS(1272), - [anon_sym_GT] = ACTIONS(1272), - [anon_sym_LT_EQ] = ACTIONS(1274), - [anon_sym_GT_EQ] = ACTIONS(1274), - [anon_sym_LT_LT] = ACTIONS(1276), - [anon_sym_GT_GT] = ACTIONS(1276), - [anon_sym_PLUS] = ACTIONS(1278), - [anon_sym_DASH] = ACTIONS(1278), - [anon_sym_SLASH] = ACTIONS(1252), - [anon_sym_PERCENT] = ACTIONS(1252), - [anon_sym_DASH_DASH] = ACTIONS(1044), - [anon_sym_PLUS_PLUS] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1046), - [anon_sym_DASH_GT] = ACTIONS(1046), - [sym_comment] = ACTIONS(37), + [sym__expression] = STATE(914), + [sym_conditional_expression] = STATE(914), + [sym_assignment_expression] = STATE(914), + [sym_pointer_expression] = STATE(914), + [sym_logical_expression] = STATE(914), + [sym_bitwise_expression] = STATE(914), + [sym_equality_expression] = STATE(914), + [sym_relational_expression] = STATE(914), + [sym_shift_expression] = STATE(914), + [sym_math_expression] = STATE(914), + [sym_cast_expression] = STATE(914), + [sym_sizeof_expression] = STATE(914), + [sym_subscript_expression] = STATE(914), + [sym_call_expression] = STATE(914), + [sym_field_expression] = STATE(914), + [sym_compound_literal_expression] = STATE(914), + [sym_parenthesized_expression] = STATE(914), + [sym_char_literal] = STATE(914), + [sym_concatenated_string] = STATE(914), + [sym_string_literal] = STATE(534), + [anon_sym_SEMI] = ACTIONS(2527), + [anon_sym_LPAREN2] = ACTIONS(1349), + [anon_sym_STAR] = ACTIONS(1351), + [anon_sym_AMP] = ACTIONS(1351), + [anon_sym_BANG] = ACTIONS(1353), + [anon_sym_TILDE] = ACTIONS(1355), + [anon_sym_PLUS] = ACTIONS(1357), + [anon_sym_DASH] = ACTIONS(1357), + [anon_sym_DASH_DASH] = ACTIONS(1359), + [anon_sym_PLUS_PLUS] = ACTIONS(1359), + [anon_sym_sizeof] = ACTIONS(1361), + [sym_number_literal] = ACTIONS(2529), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(2531), + [sym_false] = ACTIONS(2531), + [sym_null] = ACTIONS(2531), + [sym_identifier] = ACTIONS(2531), + [sym_comment] = ACTIONS(59), }, [750] = { - [sym_argument_list] = STATE(430), - [anon_sym_COMMA] = ACTIONS(2358), - [anon_sym_RBRACE] = ACTIONS(2358), - [anon_sym_LPAREN2] = ACTIONS(1012), - [anon_sym_STAR] = ACTIONS(1252), - [anon_sym_LBRACK] = ACTIONS(1016), - [anon_sym_EQ] = ACTIONS(2360), - [anon_sym_QMARK] = ACTIONS(2358), - [anon_sym_STAR_EQ] = ACTIONS(2358), - [anon_sym_SLASH_EQ] = ACTIONS(2358), - [anon_sym_PERCENT_EQ] = ACTIONS(2358), - [anon_sym_PLUS_EQ] = ACTIONS(2358), - [anon_sym_DASH_EQ] = ACTIONS(2358), - [anon_sym_LT_LT_EQ] = ACTIONS(2358), - [anon_sym_GT_GT_EQ] = ACTIONS(2358), - [anon_sym_AMP_EQ] = ACTIONS(2358), - [anon_sym_CARET_EQ] = ACTIONS(2358), - [anon_sym_PIPE_EQ] = ACTIONS(2358), - [anon_sym_AMP] = ACTIONS(1260), - [anon_sym_PIPE_PIPE] = ACTIONS(2358), - [anon_sym_AMP_AMP] = ACTIONS(2358), - [anon_sym_PIPE] = ACTIONS(2360), - [anon_sym_CARET] = ACTIONS(2360), - [anon_sym_EQ_EQ] = ACTIONS(1270), - [anon_sym_BANG_EQ] = ACTIONS(1270), - [anon_sym_LT] = ACTIONS(1272), - [anon_sym_GT] = ACTIONS(1272), - [anon_sym_LT_EQ] = ACTIONS(1274), - [anon_sym_GT_EQ] = ACTIONS(1274), - [anon_sym_LT_LT] = ACTIONS(1276), - [anon_sym_GT_GT] = ACTIONS(1276), - [anon_sym_PLUS] = ACTIONS(1278), - [anon_sym_DASH] = ACTIONS(1278), - [anon_sym_SLASH] = ACTIONS(1252), - [anon_sym_PERCENT] = ACTIONS(1252), - [anon_sym_DASH_DASH] = ACTIONS(1044), - [anon_sym_PLUS_PLUS] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1046), - [anon_sym_DASH_GT] = ACTIONS(1046), - [sym_comment] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(2533), + [sym_comment] = ACTIONS(59), }, [751] = { - [sym_argument_list] = STATE(430), - [anon_sym_COMMA] = ACTIONS(2366), - [anon_sym_RBRACE] = ACTIONS(2366), - [anon_sym_LPAREN2] = ACTIONS(1012), - [anon_sym_STAR] = ACTIONS(1252), - [anon_sym_LBRACK] = ACTIONS(1016), - [anon_sym_EQ] = ACTIONS(2368), - [anon_sym_QMARK] = ACTIONS(2366), - [anon_sym_STAR_EQ] = ACTIONS(2366), - [anon_sym_SLASH_EQ] = ACTIONS(2366), - [anon_sym_PERCENT_EQ] = ACTIONS(2366), - [anon_sym_PLUS_EQ] = ACTIONS(2366), - [anon_sym_DASH_EQ] = ACTIONS(2366), - [anon_sym_LT_LT_EQ] = ACTIONS(2366), - [anon_sym_GT_GT_EQ] = ACTIONS(2366), - [anon_sym_AMP_EQ] = ACTIONS(2366), - [anon_sym_CARET_EQ] = ACTIONS(2366), - [anon_sym_PIPE_EQ] = ACTIONS(2366), - [anon_sym_AMP] = ACTIONS(2368), - [anon_sym_PIPE_PIPE] = ACTIONS(2366), - [anon_sym_AMP_AMP] = ACTIONS(2366), - [anon_sym_PIPE] = ACTIONS(2368), - [anon_sym_CARET] = ACTIONS(2368), - [anon_sym_EQ_EQ] = ACTIONS(2366), - [anon_sym_BANG_EQ] = ACTIONS(2366), - [anon_sym_LT] = ACTIONS(1272), - [anon_sym_GT] = ACTIONS(1272), - [anon_sym_LT_EQ] = ACTIONS(1274), - [anon_sym_GT_EQ] = ACTIONS(1274), - [anon_sym_LT_LT] = ACTIONS(1276), - [anon_sym_GT_GT] = ACTIONS(1276), - [anon_sym_PLUS] = ACTIONS(1278), - [anon_sym_DASH] = ACTIONS(1278), - [anon_sym_SLASH] = ACTIONS(1252), - [anon_sym_PERCENT] = ACTIONS(1252), - [anon_sym_DASH_DASH] = ACTIONS(1044), - [anon_sym_PLUS_PLUS] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1046), - [anon_sym_DASH_GT] = ACTIONS(1046), - [sym_comment] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(2535), + [sym_comment] = ACTIONS(59), }, [752] = { - [sym_argument_list] = STATE(430), - [anon_sym_COMMA] = ACTIONS(2370), - [anon_sym_RBRACE] = ACTIONS(2370), - [anon_sym_LPAREN2] = ACTIONS(1012), - [anon_sym_STAR] = ACTIONS(1252), - [anon_sym_LBRACK] = ACTIONS(1016), - [anon_sym_EQ] = ACTIONS(2372), - [anon_sym_QMARK] = ACTIONS(2370), - [anon_sym_STAR_EQ] = ACTIONS(2370), - [anon_sym_SLASH_EQ] = ACTIONS(2370), - [anon_sym_PERCENT_EQ] = ACTIONS(2370), - [anon_sym_PLUS_EQ] = ACTIONS(2370), - [anon_sym_DASH_EQ] = ACTIONS(2370), - [anon_sym_LT_LT_EQ] = ACTIONS(2370), - [anon_sym_GT_GT_EQ] = ACTIONS(2370), - [anon_sym_AMP_EQ] = ACTIONS(2370), - [anon_sym_CARET_EQ] = ACTIONS(2370), - [anon_sym_PIPE_EQ] = ACTIONS(2370), - [anon_sym_AMP] = ACTIONS(2372), - [anon_sym_PIPE_PIPE] = ACTIONS(2370), - [anon_sym_AMP_AMP] = ACTIONS(2370), - [anon_sym_PIPE] = ACTIONS(2372), - [anon_sym_CARET] = ACTIONS(2372), - [anon_sym_EQ_EQ] = ACTIONS(2370), - [anon_sym_BANG_EQ] = ACTIONS(2370), - [anon_sym_LT] = ACTIONS(2372), - [anon_sym_GT] = ACTIONS(2372), - [anon_sym_LT_EQ] = ACTIONS(2370), - [anon_sym_GT_EQ] = ACTIONS(2370), - [anon_sym_LT_LT] = ACTIONS(1276), - [anon_sym_GT_GT] = ACTIONS(1276), - [anon_sym_PLUS] = ACTIONS(1278), - [anon_sym_DASH] = ACTIONS(1278), - [anon_sym_SLASH] = ACTIONS(1252), - [anon_sym_PERCENT] = ACTIONS(1252), - [anon_sym_DASH_DASH] = ACTIONS(1044), - [anon_sym_PLUS_PLUS] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1046), - [anon_sym_DASH_GT] = ACTIONS(1046), - [sym_comment] = ACTIONS(37), + [sym_identifier] = ACTIONS(2537), + [sym_comment] = ACTIONS(59), }, [753] = { - [sym_argument_list] = STATE(430), - [anon_sym_COMMA] = ACTIONS(2374), - [anon_sym_RBRACE] = ACTIONS(2374), - [anon_sym_LPAREN2] = ACTIONS(1012), - [anon_sym_STAR] = ACTIONS(1252), - [anon_sym_LBRACK] = ACTIONS(1016), - [anon_sym_EQ] = ACTIONS(2376), - [anon_sym_QMARK] = ACTIONS(2374), - [anon_sym_STAR_EQ] = ACTIONS(2374), - [anon_sym_SLASH_EQ] = ACTIONS(2374), - [anon_sym_PERCENT_EQ] = ACTIONS(2374), - [anon_sym_PLUS_EQ] = ACTIONS(2374), - [anon_sym_DASH_EQ] = ACTIONS(2374), - [anon_sym_LT_LT_EQ] = ACTIONS(2374), - [anon_sym_GT_GT_EQ] = ACTIONS(2374), - [anon_sym_AMP_EQ] = ACTIONS(2374), - [anon_sym_CARET_EQ] = ACTIONS(2374), - [anon_sym_PIPE_EQ] = ACTIONS(2374), - [anon_sym_AMP] = ACTIONS(2376), - [anon_sym_PIPE_PIPE] = ACTIONS(2374), - [anon_sym_AMP_AMP] = ACTIONS(2374), - [anon_sym_PIPE] = ACTIONS(2376), - [anon_sym_CARET] = ACTIONS(2376), - [anon_sym_EQ_EQ] = ACTIONS(2374), - [anon_sym_BANG_EQ] = ACTIONS(2374), - [anon_sym_LT] = ACTIONS(2376), - [anon_sym_GT] = ACTIONS(2376), - [anon_sym_LT_EQ] = ACTIONS(2374), - [anon_sym_GT_EQ] = ACTIONS(2374), - [anon_sym_LT_LT] = ACTIONS(2376), - [anon_sym_GT_GT] = ACTIONS(2376), - [anon_sym_PLUS] = ACTIONS(1278), - [anon_sym_DASH] = ACTIONS(1278), - [anon_sym_SLASH] = ACTIONS(1252), - [anon_sym_PERCENT] = ACTIONS(1252), - [anon_sym_DASH_DASH] = ACTIONS(1044), - [anon_sym_PLUS_PLUS] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1046), - [anon_sym_DASH_GT] = ACTIONS(1046), - [sym_comment] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(304), + [anon_sym_COMMA] = ACTIONS(166), + [anon_sym_extern] = ACTIONS(157), + [anon_sym_LPAREN2] = ACTIONS(159), + [anon_sym_STAR] = ACTIONS(163), + [anon_sym_LBRACK] = ACTIONS(166), + [anon_sym_EQ] = ACTIONS(168), + [anon_sym_static] = ACTIONS(157), + [anon_sym_auto] = ACTIONS(157), + [anon_sym_register] = ACTIONS(157), + [anon_sym_inline] = ACTIONS(157), + [anon_sym_const] = ACTIONS(157), + [anon_sym_restrict] = ACTIONS(157), + [anon_sym_volatile] = ACTIONS(157), + [anon_sym__Atomic] = ACTIONS(157), + [anon_sym_COLON] = ACTIONS(2539), + [anon_sym_QMARK] = ACTIONS(166), + [anon_sym_STAR_EQ] = ACTIONS(166), + [anon_sym_SLASH_EQ] = ACTIONS(166), + [anon_sym_PERCENT_EQ] = ACTIONS(166), + [anon_sym_PLUS_EQ] = ACTIONS(166), + [anon_sym_DASH_EQ] = ACTIONS(166), + [anon_sym_LT_LT_EQ] = ACTIONS(166), + [anon_sym_GT_GT_EQ] = ACTIONS(166), + [anon_sym_AMP_EQ] = ACTIONS(166), + [anon_sym_CARET_EQ] = ACTIONS(166), + [anon_sym_PIPE_EQ] = ACTIONS(166), + [anon_sym_AMP] = ACTIONS(168), + [anon_sym_PIPE_PIPE] = ACTIONS(166), + [anon_sym_AMP_AMP] = ACTIONS(166), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_CARET] = ACTIONS(168), + [anon_sym_EQ_EQ] = ACTIONS(166), + [anon_sym_BANG_EQ] = ACTIONS(166), + [anon_sym_LT] = ACTIONS(168), + [anon_sym_GT] = ACTIONS(168), + [anon_sym_LT_EQ] = ACTIONS(166), + [anon_sym_GT_EQ] = ACTIONS(166), + [anon_sym_LT_LT] = ACTIONS(168), + [anon_sym_GT_GT] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(168), + [anon_sym_DASH] = ACTIONS(168), + [anon_sym_SLASH] = ACTIONS(168), + [anon_sym_PERCENT] = ACTIONS(168), + [anon_sym_DASH_DASH] = ACTIONS(166), + [anon_sym_PLUS_PLUS] = ACTIONS(166), + [anon_sym_DOT] = ACTIONS(166), + [anon_sym_DASH_GT] = ACTIONS(166), + [sym_identifier] = ACTIONS(157), + [sym_comment] = ACTIONS(59), }, [754] = { - [sym_argument_list] = STATE(430), - [anon_sym_COMMA] = ACTIONS(2348), - [anon_sym_RBRACE] = ACTIONS(2348), - [anon_sym_LPAREN2] = ACTIONS(1012), - [anon_sym_STAR] = ACTIONS(1252), - [anon_sym_LBRACK] = ACTIONS(1016), - [anon_sym_EQ] = ACTIONS(2350), - [anon_sym_QMARK] = ACTIONS(2348), - [anon_sym_STAR_EQ] = ACTIONS(2348), - [anon_sym_SLASH_EQ] = ACTIONS(2348), - [anon_sym_PERCENT_EQ] = ACTIONS(2348), - [anon_sym_PLUS_EQ] = ACTIONS(2348), - [anon_sym_DASH_EQ] = ACTIONS(2348), - [anon_sym_LT_LT_EQ] = ACTIONS(2348), - [anon_sym_GT_GT_EQ] = ACTIONS(2348), - [anon_sym_AMP_EQ] = ACTIONS(2348), - [anon_sym_CARET_EQ] = ACTIONS(2348), - [anon_sym_PIPE_EQ] = ACTIONS(2348), - [anon_sym_AMP] = ACTIONS(2350), - [anon_sym_PIPE_PIPE] = ACTIONS(2348), - [anon_sym_AMP_AMP] = ACTIONS(2348), - [anon_sym_PIPE] = ACTIONS(2350), - [anon_sym_CARET] = ACTIONS(2350), - [anon_sym_EQ_EQ] = ACTIONS(2348), - [anon_sym_BANG_EQ] = ACTIONS(2348), - [anon_sym_LT] = ACTIONS(2350), - [anon_sym_GT] = ACTIONS(2350), - [anon_sym_LT_EQ] = ACTIONS(2348), - [anon_sym_GT_EQ] = ACTIONS(2348), - [anon_sym_LT_LT] = ACTIONS(2350), - [anon_sym_GT_GT] = ACTIONS(2350), - [anon_sym_PLUS] = ACTIONS(2350), - [anon_sym_DASH] = ACTIONS(2350), - [anon_sym_SLASH] = ACTIONS(1252), - [anon_sym_PERCENT] = ACTIONS(1252), - [anon_sym_DASH_DASH] = ACTIONS(1044), - [anon_sym_PLUS_PLUS] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1046), - [anon_sym_DASH_GT] = ACTIONS(1046), - [sym_comment] = ACTIONS(37), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2541), + [sym_comment] = ACTIONS(59), }, [755] = { - [sym_string_literal] = STATE(755), - [aux_sym_concatenated_string_repeat1] = STATE(755), - [anon_sym_COMMA] = ACTIONS(2382), - [anon_sym_RBRACE] = ACTIONS(2382), - [anon_sym_LPAREN2] = ACTIONS(2382), - [anon_sym_STAR] = ACTIONS(2384), - [anon_sym_LBRACK] = ACTIONS(2382), - [anon_sym_EQ] = ACTIONS(2384), - [anon_sym_QMARK] = ACTIONS(2382), - [anon_sym_STAR_EQ] = ACTIONS(2382), - [anon_sym_SLASH_EQ] = ACTIONS(2382), - [anon_sym_PERCENT_EQ] = ACTIONS(2382), - [anon_sym_PLUS_EQ] = ACTIONS(2382), - [anon_sym_DASH_EQ] = ACTIONS(2382), - [anon_sym_LT_LT_EQ] = ACTIONS(2382), - [anon_sym_GT_GT_EQ] = ACTIONS(2382), - [anon_sym_AMP_EQ] = ACTIONS(2382), - [anon_sym_CARET_EQ] = ACTIONS(2382), - [anon_sym_PIPE_EQ] = ACTIONS(2382), - [anon_sym_AMP] = ACTIONS(2384), - [anon_sym_PIPE_PIPE] = ACTIONS(2382), - [anon_sym_AMP_AMP] = ACTIONS(2382), - [anon_sym_PIPE] = ACTIONS(2384), - [anon_sym_CARET] = ACTIONS(2384), - [anon_sym_EQ_EQ] = ACTIONS(2382), - [anon_sym_BANG_EQ] = ACTIONS(2382), - [anon_sym_LT] = ACTIONS(2384), - [anon_sym_GT] = ACTIONS(2384), - [anon_sym_LT_EQ] = ACTIONS(2382), - [anon_sym_GT_EQ] = ACTIONS(2382), - [anon_sym_LT_LT] = ACTIONS(2384), - [anon_sym_GT_GT] = ACTIONS(2384), - [anon_sym_PLUS] = ACTIONS(2384), - [anon_sym_DASH] = ACTIONS(2384), - [anon_sym_SLASH] = ACTIONS(2384), - [anon_sym_PERCENT] = ACTIONS(2384), - [anon_sym_DASH_DASH] = ACTIONS(2382), - [anon_sym_PLUS_PLUS] = ACTIONS(2382), - [anon_sym_DOT] = ACTIONS(2382), - [anon_sym_DASH_GT] = ACTIONS(2382), - [anon_sym_DQUOTE] = ACTIONS(2386), - [sym_comment] = ACTIONS(37), + [sym__declarator] = STATE(920), + [sym_pointer_declarator] = STATE(920), + [sym_function_declarator] = STATE(920), + [sym_array_declarator] = STATE(920), + [sym_init_declarator] = STATE(266), + [anon_sym_SEMI] = ACTIONS(708), + [anon_sym_LPAREN2] = ACTIONS(174), + [anon_sym_STAR] = ACTIONS(924), + [sym_identifier] = ACTIONS(2543), + [sym_comment] = ACTIONS(59), }, [756] = { - [sym_preproc_if_in_field_declaration_list] = STATE(756), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(756), - [sym__declaration_specifiers] = STATE(97), - [sym_storage_class_specifier] = STATE(100), - [sym_type_qualifier] = STATE(100), - [sym__type_specifier] = STATE(98), - [sym_sized_type_specifier] = STATE(98), - [sym_enum_specifier] = STATE(98), - [sym_struct_specifier] = STATE(98), - [sym_union_specifier] = STATE(98), - [sym__field_declaration_list_item] = STATE(756), - [sym_field_declaration] = STATE(756), - [sym_macro_type_specifier] = STATE(98), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(756), - [aux_sym__declaration_specifiers_repeat1] = STATE(100), - [aux_sym_sized_type_specifier_repeat1] = STATE(101), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(812), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(821), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(815), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(815), - [anon_sym_extern] = ACTIONS(818), - [anon_sym_static] = ACTIONS(818), - [anon_sym_auto] = ACTIONS(818), - [anon_sym_register] = ACTIONS(818), - [anon_sym_inline] = ACTIONS(818), - [anon_sym_const] = ACTIONS(823), - [anon_sym_restrict] = ACTIONS(823), - [anon_sym_volatile] = ACTIONS(823), - [anon_sym__Atomic] = ACTIONS(823), - [anon_sym_unsigned] = ACTIONS(826), - [anon_sym_long] = ACTIONS(826), - [anon_sym_short] = ACTIONS(826), - [sym_primitive_type] = ACTIONS(829), - [anon_sym_enum] = ACTIONS(832), - [anon_sym_struct] = ACTIONS(835), - [anon_sym_union] = ACTIONS(838), - [sym_identifier] = ACTIONS(841), - [sym_comment] = ACTIONS(37), + [sym_argument_list] = STATE(98), + [anon_sym_SEMI] = ACTIONS(2545), + [anon_sym_COMMA] = ACTIONS(1498), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(1500), + [anon_sym_LBRACK] = ACTIONS(188), + [anon_sym_EQ] = ACTIONS(1502), + [anon_sym_QMARK] = ACTIONS(1504), + [anon_sym_STAR_EQ] = ACTIONS(1506), + [anon_sym_SLASH_EQ] = ACTIONS(1506), + [anon_sym_PERCENT_EQ] = ACTIONS(1506), + [anon_sym_PLUS_EQ] = ACTIONS(1506), + [anon_sym_DASH_EQ] = ACTIONS(1506), + [anon_sym_LT_LT_EQ] = ACTIONS(1506), + [anon_sym_GT_GT_EQ] = ACTIONS(1506), + [anon_sym_AMP_EQ] = ACTIONS(1506), + [anon_sym_CARET_EQ] = ACTIONS(1506), + [anon_sym_PIPE_EQ] = ACTIONS(1506), + [anon_sym_AMP] = ACTIONS(1508), + [anon_sym_PIPE_PIPE] = ACTIONS(1510), + [anon_sym_AMP_AMP] = ACTIONS(1512), + [anon_sym_PIPE] = ACTIONS(1514), + [anon_sym_CARET] = ACTIONS(1516), + [anon_sym_EQ_EQ] = ACTIONS(1518), + [anon_sym_BANG_EQ] = ACTIONS(1518), + [anon_sym_LT] = ACTIONS(1520), + [anon_sym_GT] = ACTIONS(1520), + [anon_sym_LT_EQ] = ACTIONS(1522), + [anon_sym_GT_EQ] = ACTIONS(1522), + [anon_sym_LT_LT] = ACTIONS(1524), + [anon_sym_GT_GT] = ACTIONS(1524), + [anon_sym_PLUS] = ACTIONS(1526), + [anon_sym_DASH] = ACTIONS(1526), + [anon_sym_SLASH] = ACTIONS(1500), + [anon_sym_PERCENT] = ACTIONS(1500), + [anon_sym_DASH_DASH] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(216), + [anon_sym_DOT] = ACTIONS(218), + [anon_sym_DASH_GT] = ACTIONS(218), + [sym_comment] = ACTIONS(59), }, [757] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2455), - [sym_comment] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(2545), + [sym_comment] = ACTIONS(59), }, [758] = { - [sym_preproc_if_in_field_declaration_list] = STATE(536), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(536), - [sym_preproc_else_in_field_declaration_list] = STATE(908), - [sym_preproc_elif_in_field_declaration_list] = STATE(908), - [sym__declaration_specifiers] = STATE(97), - [sym_storage_class_specifier] = STATE(100), - [sym_type_qualifier] = STATE(100), - [sym__type_specifier] = STATE(98), - [sym_sized_type_specifier] = STATE(98), - [sym_enum_specifier] = STATE(98), - [sym_struct_specifier] = STATE(98), - [sym_union_specifier] = STATE(98), - [sym__field_declaration_list_item] = STATE(536), - [sym_field_declaration] = STATE(536), - [sym_macro_type_specifier] = STATE(98), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(536), - [aux_sym__declaration_specifiers_repeat1] = STATE(100), - [aux_sym_sized_type_specifier_repeat1] = STATE(101), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(185), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2455), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(187), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(187), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(766), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(768), - [anon_sym_extern] = ACTIONS(21), - [anon_sym_static] = ACTIONS(21), - [anon_sym_auto] = ACTIONS(21), - [anon_sym_register] = ACTIONS(21), - [anon_sym_inline] = ACTIONS(21), - [anon_sym_const] = ACTIONS(23), - [anon_sym_restrict] = ACTIONS(23), - [anon_sym_volatile] = ACTIONS(23), - [anon_sym__Atomic] = ACTIONS(23), - [anon_sym_unsigned] = ACTIONS(191), - [anon_sym_long] = ACTIONS(191), - [anon_sym_short] = ACTIONS(191), - [sym_primitive_type] = ACTIONS(193), - [anon_sym_enum] = ACTIONS(29), - [anon_sym_struct] = ACTIONS(31), - [anon_sym_union] = ACTIONS(33), - [sym_identifier] = ACTIONS(35), - [sym_comment] = ACTIONS(37), + [sym_preproc_include] = STATE(923), + [sym_preproc_def] = STATE(923), + [sym_preproc_function_def] = STATE(923), + [sym_preproc_call] = STATE(923), + [sym_preproc_if_in_compound_statement] = STATE(923), + [sym_preproc_ifdef_in_compound_statement] = STATE(923), + [sym_preproc_else_in_compound_statement] = STATE(922), + [sym_preproc_elif_in_compound_statement] = STATE(922), + [sym_declaration] = STATE(923), + [sym_type_definition] = STATE(923), + [sym__declaration_specifiers] = STATE(755), + [sym_compound_statement] = STATE(923), + [sym_storage_class_specifier] = STATE(30), + [sym_type_qualifier] = STATE(30), + [sym__type_specifier] = STATE(25), + [sym_sized_type_specifier] = STATE(25), + [sym_enum_specifier] = STATE(25), + [sym_struct_specifier] = STATE(25), + [sym_union_specifier] = STATE(25), + [sym_labeled_statement] = STATE(923), + [sym_expression_statement] = STATE(923), + [sym_if_statement] = STATE(923), + [sym_switch_statement] = STATE(923), + [sym_case_statement] = STATE(923), + [sym_while_statement] = STATE(923), + [sym_do_statement] = STATE(923), + [sym_for_statement] = STATE(923), + [sym_return_statement] = STATE(923), + [sym_break_statement] = STATE(923), + [sym_continue_statement] = STATE(923), + [sym_goto_statement] = STATE(923), + [sym__expression] = STATE(756), + [sym_comma_expression] = STATE(757), + [sym_conditional_expression] = STATE(756), + [sym_assignment_expression] = STATE(756), + [sym_pointer_expression] = STATE(756), + [sym_logical_expression] = STATE(756), + [sym_bitwise_expression] = STATE(756), + [sym_equality_expression] = STATE(756), + [sym_relational_expression] = STATE(756), + [sym_shift_expression] = STATE(756), + [sym_math_expression] = STATE(756), + [sym_cast_expression] = STATE(756), + [sym_sizeof_expression] = STATE(756), + [sym_subscript_expression] = STATE(756), + [sym_call_expression] = STATE(756), + [sym_field_expression] = STATE(756), + [sym_compound_literal_expression] = STATE(756), + [sym_parenthesized_expression] = STATE(756), + [sym_char_literal] = STATE(756), + [sym_concatenated_string] = STATE(756), + [sym_string_literal] = STATE(374), + [sym__empty_declaration] = STATE(923), + [sym_macro_type_specifier] = STATE(25), + [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(923), + [aux_sym__declaration_specifiers_repeat1] = STATE(30), + [aux_sym_sized_type_specifier_repeat1] = STATE(31), + [anon_sym_SEMI] = ACTIONS(1940), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(251), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(253), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1942), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2547), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1946), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1946), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1948), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1950), + [sym_preproc_directive] = ACTIONS(265), + [anon_sym_typedef] = ACTIONS(267), + [anon_sym_extern] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_LPAREN2] = ACTIONS(936), + [anon_sym_STAR] = ACTIONS(938), + [anon_sym_static] = ACTIONS(25), + [anon_sym_auto] = ACTIONS(25), + [anon_sym_register] = ACTIONS(25), + [anon_sym_inline] = ACTIONS(25), + [anon_sym_const] = ACTIONS(27), + [anon_sym_restrict] = ACTIONS(27), + [anon_sym_volatile] = ACTIONS(27), + [anon_sym__Atomic] = ACTIONS(27), + [anon_sym_unsigned] = ACTIONS(29), + [anon_sym_long] = ACTIONS(29), + [anon_sym_short] = ACTIONS(29), + [sym_primitive_type] = ACTIONS(31), + [anon_sym_enum] = ACTIONS(33), + [anon_sym_struct] = ACTIONS(35), + [anon_sym_union] = ACTIONS(37), + [anon_sym_if] = ACTIONS(1952), + [anon_sym_switch] = ACTIONS(1954), + [anon_sym_case] = ACTIONS(1956), + [anon_sym_default] = ACTIONS(1958), + [anon_sym_while] = ACTIONS(1960), + [anon_sym_do] = ACTIONS(1962), + [anon_sym_for] = ACTIONS(1964), + [anon_sym_return] = ACTIONS(1966), + [anon_sym_break] = ACTIONS(1968), + [anon_sym_continue] = ACTIONS(1970), + [anon_sym_goto] = ACTIONS(1972), + [anon_sym_AMP] = ACTIONS(938), + [anon_sym_BANG] = ACTIONS(962), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_DASH_DASH] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(968), + [anon_sym_sizeof] = ACTIONS(970), + [sym_number_literal] = ACTIONS(1974), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(1976), + [sym_false] = ACTIONS(1976), + [sym_null] = ACTIONS(1976), + [sym_identifier] = ACTIONS(1978), + [sym_comment] = ACTIONS(59), }, [759] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2457), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2459), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2459), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2459), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2459), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2459), - [anon_sym_extern] = ACTIONS(2457), - [anon_sym_RBRACE] = ACTIONS(2459), - [anon_sym_static] = ACTIONS(2457), - [anon_sym_auto] = ACTIONS(2457), - [anon_sym_register] = ACTIONS(2457), - [anon_sym_inline] = ACTIONS(2457), - [anon_sym_const] = ACTIONS(2457), - [anon_sym_restrict] = ACTIONS(2457), - [anon_sym_volatile] = ACTIONS(2457), - [anon_sym__Atomic] = ACTIONS(2457), - [anon_sym_unsigned] = ACTIONS(2457), - [anon_sym_long] = ACTIONS(2457), - [anon_sym_short] = ACTIONS(2457), - [sym_primitive_type] = ACTIONS(2457), - [anon_sym_enum] = ACTIONS(2457), - [anon_sym_struct] = ACTIONS(2457), - [anon_sym_union] = ACTIONS(2457), - [sym_identifier] = ACTIONS(2457), - [sym_comment] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(2549), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2551), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2551), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2551), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2551), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2551), + [sym_preproc_directive] = ACTIONS(2551), + [anon_sym_typedef] = ACTIONS(2551), + [anon_sym_extern] = ACTIONS(2551), + [anon_sym_LBRACE] = ACTIONS(2549), + [anon_sym_RBRACE] = ACTIONS(2549), + [anon_sym_LPAREN2] = ACTIONS(2549), + [anon_sym_STAR] = ACTIONS(2549), + [anon_sym_static] = ACTIONS(2551), + [anon_sym_auto] = ACTIONS(2551), + [anon_sym_register] = ACTIONS(2551), + [anon_sym_inline] = ACTIONS(2551), + [anon_sym_const] = ACTIONS(2551), + [anon_sym_restrict] = ACTIONS(2551), + [anon_sym_volatile] = ACTIONS(2551), + [anon_sym__Atomic] = ACTIONS(2551), + [anon_sym_unsigned] = ACTIONS(2551), + [anon_sym_long] = ACTIONS(2551), + [anon_sym_short] = ACTIONS(2551), + [sym_primitive_type] = ACTIONS(2551), + [anon_sym_enum] = ACTIONS(2551), + [anon_sym_struct] = ACTIONS(2551), + [anon_sym_union] = ACTIONS(2551), + [anon_sym_if] = ACTIONS(2551), + [anon_sym_switch] = ACTIONS(2551), + [anon_sym_case] = ACTIONS(2551), + [anon_sym_default] = ACTIONS(2551), + [anon_sym_while] = ACTIONS(2551), + [anon_sym_do] = ACTIONS(2551), + [anon_sym_for] = ACTIONS(2551), + [anon_sym_return] = ACTIONS(2551), + [anon_sym_break] = ACTIONS(2551), + [anon_sym_continue] = ACTIONS(2551), + [anon_sym_goto] = ACTIONS(2551), + [anon_sym_AMP] = ACTIONS(2549), + [anon_sym_BANG] = ACTIONS(2549), + [anon_sym_TILDE] = ACTIONS(2549), + [anon_sym_PLUS] = ACTIONS(2551), + [anon_sym_DASH] = ACTIONS(2551), + [anon_sym_DASH_DASH] = ACTIONS(2549), + [anon_sym_PLUS_PLUS] = ACTIONS(2549), + [anon_sym_sizeof] = ACTIONS(2551), + [sym_number_literal] = ACTIONS(2549), + [anon_sym_SQUOTE] = ACTIONS(2549), + [anon_sym_DQUOTE] = ACTIONS(2549), + [sym_true] = ACTIONS(2551), + [sym_false] = ACTIONS(2551), + [sym_null] = ACTIONS(2551), + [sym_identifier] = ACTIONS(2551), + [sym_comment] = ACTIONS(59), }, [760] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2461), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2463), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2463), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2463), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2463), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2463), - [anon_sym_extern] = ACTIONS(2461), - [anon_sym_RBRACE] = ACTIONS(2463), - [anon_sym_static] = ACTIONS(2461), - [anon_sym_auto] = ACTIONS(2461), - [anon_sym_register] = ACTIONS(2461), - [anon_sym_inline] = ACTIONS(2461), - [anon_sym_const] = ACTIONS(2461), - [anon_sym_restrict] = ACTIONS(2461), - [anon_sym_volatile] = ACTIONS(2461), - [anon_sym__Atomic] = ACTIONS(2461), - [anon_sym_unsigned] = ACTIONS(2461), - [anon_sym_long] = ACTIONS(2461), - [anon_sym_short] = ACTIONS(2461), - [sym_primitive_type] = ACTIONS(2461), - [anon_sym_enum] = ACTIONS(2461), - [anon_sym_struct] = ACTIONS(2461), - [anon_sym_union] = ACTIONS(2461), - [sym_identifier] = ACTIONS(2461), - [sym_comment] = ACTIONS(37), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2553), + [sym_comment] = ACTIONS(59), }, [761] = { - [sym__expression] = STATE(838), - [sym_conditional_expression] = STATE(838), - [sym_assignment_expression] = STATE(838), - [sym_pointer_expression] = STATE(838), - [sym_logical_expression] = STATE(838), - [sym_bitwise_expression] = STATE(838), - [sym_equality_expression] = STATE(838), - [sym_relational_expression] = STATE(838), - [sym_shift_expression] = STATE(838), - [sym_math_expression] = STATE(838), - [sym_cast_expression] = STATE(838), - [sym_sizeof_expression] = STATE(838), - [sym_subscript_expression] = STATE(838), - [sym_call_expression] = STATE(838), - [sym_field_expression] = STATE(838), - [sym_compound_literal_expression] = STATE(838), - [sym_parenthesized_expression] = STATE(838), - [sym_initializer_list] = STATE(839), - [sym_char_literal] = STATE(838), - [sym_concatenated_string] = STATE(838), - [sym_string_literal] = STATE(342), - [anon_sym_LBRACE] = ACTIONS(585), - [anon_sym_LPAREN2] = ACTIONS(780), - [anon_sym_STAR] = ACTIONS(782), - [anon_sym_AMP] = ACTIONS(782), - [anon_sym_BANG] = ACTIONS(784), - [anon_sym_TILDE] = ACTIONS(786), - [anon_sym_PLUS] = ACTIONS(788), - [anon_sym_DASH] = ACTIONS(788), - [anon_sym_DASH_DASH] = ACTIONS(790), - [anon_sym_PLUS_PLUS] = ACTIONS(790), - [anon_sym_sizeof] = ACTIONS(792), - [sym_number_literal] = ACTIONS(2206), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(2208), - [sym_false] = ACTIONS(2208), - [sym_null] = ACTIONS(2208), - [sym_identifier] = ACTIONS(2208), - [sym_comment] = ACTIONS(37), + [sym_preproc_include] = STATE(923), + [sym_preproc_def] = STATE(923), + [sym_preproc_function_def] = STATE(923), + [sym_preproc_call] = STATE(923), + [sym_preproc_if_in_compound_statement] = STATE(923), + [sym_preproc_ifdef_in_compound_statement] = STATE(923), + [sym_preproc_else_in_compound_statement] = STATE(925), + [sym_preproc_elif_in_compound_statement] = STATE(925), + [sym_declaration] = STATE(923), + [sym_type_definition] = STATE(923), + [sym__declaration_specifiers] = STATE(755), + [sym_compound_statement] = STATE(923), + [sym_storage_class_specifier] = STATE(30), + [sym_type_qualifier] = STATE(30), + [sym__type_specifier] = STATE(25), + [sym_sized_type_specifier] = STATE(25), + [sym_enum_specifier] = STATE(25), + [sym_struct_specifier] = STATE(25), + [sym_union_specifier] = STATE(25), + [sym_labeled_statement] = STATE(923), + [sym_expression_statement] = STATE(923), + [sym_if_statement] = STATE(923), + [sym_switch_statement] = STATE(923), + [sym_case_statement] = STATE(923), + [sym_while_statement] = STATE(923), + [sym_do_statement] = STATE(923), + [sym_for_statement] = STATE(923), + [sym_return_statement] = STATE(923), + [sym_break_statement] = STATE(923), + [sym_continue_statement] = STATE(923), + [sym_goto_statement] = STATE(923), + [sym__expression] = STATE(756), + [sym_comma_expression] = STATE(757), + [sym_conditional_expression] = STATE(756), + [sym_assignment_expression] = STATE(756), + [sym_pointer_expression] = STATE(756), + [sym_logical_expression] = STATE(756), + [sym_bitwise_expression] = STATE(756), + [sym_equality_expression] = STATE(756), + [sym_relational_expression] = STATE(756), + [sym_shift_expression] = STATE(756), + [sym_math_expression] = STATE(756), + [sym_cast_expression] = STATE(756), + [sym_sizeof_expression] = STATE(756), + [sym_subscript_expression] = STATE(756), + [sym_call_expression] = STATE(756), + [sym_field_expression] = STATE(756), + [sym_compound_literal_expression] = STATE(756), + [sym_parenthesized_expression] = STATE(756), + [sym_char_literal] = STATE(756), + [sym_concatenated_string] = STATE(756), + [sym_string_literal] = STATE(374), + [sym__empty_declaration] = STATE(923), + [sym_macro_type_specifier] = STATE(25), + [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(923), + [aux_sym__declaration_specifiers_repeat1] = STATE(30), + [aux_sym_sized_type_specifier_repeat1] = STATE(31), + [anon_sym_SEMI] = ACTIONS(1940), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(251), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(253), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1942), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2555), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1946), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1946), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1948), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1950), + [sym_preproc_directive] = ACTIONS(265), + [anon_sym_typedef] = ACTIONS(267), + [anon_sym_extern] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_LPAREN2] = ACTIONS(936), + [anon_sym_STAR] = ACTIONS(938), + [anon_sym_static] = ACTIONS(25), + [anon_sym_auto] = ACTIONS(25), + [anon_sym_register] = ACTIONS(25), + [anon_sym_inline] = ACTIONS(25), + [anon_sym_const] = ACTIONS(27), + [anon_sym_restrict] = ACTIONS(27), + [anon_sym_volatile] = ACTIONS(27), + [anon_sym__Atomic] = ACTIONS(27), + [anon_sym_unsigned] = ACTIONS(29), + [anon_sym_long] = ACTIONS(29), + [anon_sym_short] = ACTIONS(29), + [sym_primitive_type] = ACTIONS(31), + [anon_sym_enum] = ACTIONS(33), + [anon_sym_struct] = ACTIONS(35), + [anon_sym_union] = ACTIONS(37), + [anon_sym_if] = ACTIONS(1952), + [anon_sym_switch] = ACTIONS(1954), + [anon_sym_case] = ACTIONS(1956), + [anon_sym_default] = ACTIONS(1958), + [anon_sym_while] = ACTIONS(1960), + [anon_sym_do] = ACTIONS(1962), + [anon_sym_for] = ACTIONS(1964), + [anon_sym_return] = ACTIONS(1966), + [anon_sym_break] = ACTIONS(1968), + [anon_sym_continue] = ACTIONS(1970), + [anon_sym_goto] = ACTIONS(1972), + [anon_sym_AMP] = ACTIONS(938), + [anon_sym_BANG] = ACTIONS(962), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_DASH_DASH] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(968), + [anon_sym_sizeof] = ACTIONS(970), + [sym_number_literal] = ACTIONS(1974), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(1976), + [sym_false] = ACTIONS(1976), + [sym_null] = ACTIONS(1976), + [sym_identifier] = ACTIONS(1978), + [sym_comment] = ACTIONS(59), }, [762] = { - [anon_sym_RPAREN] = ACTIONS(2465), - [sym_comment] = ACTIONS(37), + [sym__expression] = STATE(319), + [sym_conditional_expression] = STATE(319), + [sym_assignment_expression] = STATE(319), + [sym_pointer_expression] = STATE(319), + [sym_logical_expression] = STATE(319), + [sym_bitwise_expression] = STATE(319), + [sym_equality_expression] = STATE(319), + [sym_relational_expression] = STATE(319), + [sym_shift_expression] = STATE(319), + [sym_math_expression] = STATE(319), + [sym_cast_expression] = STATE(319), + [sym_sizeof_expression] = STATE(319), + [sym_subscript_expression] = STATE(319), + [sym_call_expression] = STATE(319), + [sym_field_expression] = STATE(319), + [sym_compound_literal_expression] = STATE(319), + [sym_parenthesized_expression] = STATE(319), + [sym_initializer_list] = STATE(320), + [sym_char_literal] = STATE(319), + [sym_concatenated_string] = STATE(319), + [sym_string_literal] = STATE(374), + [anon_sym_LBRACE] = ACTIONS(840), + [anon_sym_LPAREN2] = ACTIONS(936), + [anon_sym_STAR] = ACTIONS(938), + [anon_sym_AMP] = ACTIONS(938), + [anon_sym_BANG] = ACTIONS(962), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_DASH_DASH] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(968), + [anon_sym_sizeof] = ACTIONS(970), + [sym_number_literal] = ACTIONS(842), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(844), + [sym_false] = ACTIONS(844), + [sym_null] = ACTIONS(844), + [sym_identifier] = ACTIONS(844), + [sym_comment] = ACTIONS(59), }, [763] = { - [sym_argument_list] = STATE(430), - [anon_sym_SEMI] = ACTIONS(2354), - [anon_sym_LPAREN2] = ACTIONS(1012), - [anon_sym_STAR] = ACTIONS(1319), - [anon_sym_LBRACK] = ACTIONS(1016), - [anon_sym_EQ] = ACTIONS(1321), - [anon_sym_QMARK] = ACTIONS(2354), - [anon_sym_STAR_EQ] = ACTIONS(1325), - [anon_sym_SLASH_EQ] = ACTIONS(1325), - [anon_sym_PERCENT_EQ] = ACTIONS(1325), - [anon_sym_PLUS_EQ] = ACTIONS(1325), - [anon_sym_DASH_EQ] = ACTIONS(1325), - [anon_sym_LT_LT_EQ] = ACTIONS(1325), - [anon_sym_GT_GT_EQ] = ACTIONS(1325), - [anon_sym_AMP_EQ] = ACTIONS(1325), - [anon_sym_CARET_EQ] = ACTIONS(1325), - [anon_sym_PIPE_EQ] = ACTIONS(1325), - [anon_sym_AMP] = ACTIONS(1327), - [anon_sym_PIPE_PIPE] = ACTIONS(1329), - [anon_sym_AMP_AMP] = ACTIONS(1331), - [anon_sym_PIPE] = ACTIONS(1333), - [anon_sym_CARET] = ACTIONS(1335), - [anon_sym_EQ_EQ] = ACTIONS(1337), - [anon_sym_BANG_EQ] = ACTIONS(1337), - [anon_sym_LT] = ACTIONS(1339), - [anon_sym_GT] = ACTIONS(1339), - [anon_sym_LT_EQ] = ACTIONS(1341), - [anon_sym_GT_EQ] = ACTIONS(1341), - [anon_sym_LT_LT] = ACTIONS(1343), - [anon_sym_GT_GT] = ACTIONS(1343), - [anon_sym_PLUS] = ACTIONS(1345), - [anon_sym_DASH] = ACTIONS(1345), - [anon_sym_SLASH] = ACTIONS(1319), - [anon_sym_PERCENT] = ACTIONS(1319), - [anon_sym_DASH_DASH] = ACTIONS(1044), - [anon_sym_PLUS_PLUS] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1046), - [anon_sym_DASH_GT] = ACTIONS(1046), - [sym_comment] = ACTIONS(37), + [sym_argument_list] = STATE(98), + [anon_sym_COMMA] = ACTIONS(315), + [anon_sym_RPAREN] = ACTIONS(2557), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(319), + [anon_sym_LBRACK] = ACTIONS(188), + [anon_sym_EQ] = ACTIONS(321), + [anon_sym_QMARK] = ACTIONS(323), + [anon_sym_STAR_EQ] = ACTIONS(325), + [anon_sym_SLASH_EQ] = ACTIONS(325), + [anon_sym_PERCENT_EQ] = ACTIONS(325), + [anon_sym_PLUS_EQ] = ACTIONS(325), + [anon_sym_DASH_EQ] = ACTIONS(325), + [anon_sym_LT_LT_EQ] = ACTIONS(325), + [anon_sym_GT_GT_EQ] = ACTIONS(325), + [anon_sym_AMP_EQ] = ACTIONS(325), + [anon_sym_CARET_EQ] = ACTIONS(325), + [anon_sym_PIPE_EQ] = ACTIONS(325), + [anon_sym_AMP] = ACTIONS(327), + [anon_sym_PIPE_PIPE] = ACTIONS(329), + [anon_sym_AMP_AMP] = ACTIONS(331), + [anon_sym_PIPE] = ACTIONS(333), + [anon_sym_CARET] = ACTIONS(335), + [anon_sym_EQ_EQ] = ACTIONS(337), + [anon_sym_BANG_EQ] = ACTIONS(337), + [anon_sym_LT] = ACTIONS(339), + [anon_sym_GT] = ACTIONS(339), + [anon_sym_LT_EQ] = ACTIONS(341), + [anon_sym_GT_EQ] = ACTIONS(341), + [anon_sym_LT_LT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(343), + [anon_sym_PLUS] = ACTIONS(345), + [anon_sym_DASH] = ACTIONS(345), + [anon_sym_SLASH] = ACTIONS(319), + [anon_sym_PERCENT] = ACTIONS(319), + [anon_sym_DASH_DASH] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(216), + [anon_sym_DOT] = ACTIONS(218), + [anon_sym_DASH_GT] = ACTIONS(218), + [sym_comment] = ACTIONS(59), }, [764] = { - [sym_argument_list] = STATE(430), - [anon_sym_LPAREN2] = ACTIONS(1012), - [anon_sym_STAR] = ACTIONS(1497), - [anon_sym_LBRACK] = ACTIONS(1016), - [anon_sym_EQ] = ACTIONS(1499), - [anon_sym_COLON] = ACTIONS(2467), - [anon_sym_QMARK] = ACTIONS(1503), - [anon_sym_STAR_EQ] = ACTIONS(1505), - [anon_sym_SLASH_EQ] = ACTIONS(1505), - [anon_sym_PERCENT_EQ] = ACTIONS(1505), - [anon_sym_PLUS_EQ] = ACTIONS(1505), - [anon_sym_DASH_EQ] = ACTIONS(1505), - [anon_sym_LT_LT_EQ] = ACTIONS(1505), - [anon_sym_GT_GT_EQ] = ACTIONS(1505), - [anon_sym_AMP_EQ] = ACTIONS(1505), - [anon_sym_CARET_EQ] = ACTIONS(1505), - [anon_sym_PIPE_EQ] = ACTIONS(1505), - [anon_sym_AMP] = ACTIONS(1507), - [anon_sym_PIPE_PIPE] = ACTIONS(1509), - [anon_sym_AMP_AMP] = ACTIONS(1511), - [anon_sym_PIPE] = ACTIONS(1513), - [anon_sym_CARET] = ACTIONS(1515), - [anon_sym_EQ_EQ] = ACTIONS(1517), - [anon_sym_BANG_EQ] = ACTIONS(1517), - [anon_sym_LT] = ACTIONS(1519), - [anon_sym_GT] = ACTIONS(1519), - [anon_sym_LT_EQ] = ACTIONS(1521), - [anon_sym_GT_EQ] = ACTIONS(1521), - [anon_sym_LT_LT] = ACTIONS(1523), - [anon_sym_GT_GT] = ACTIONS(1523), - [anon_sym_PLUS] = ACTIONS(1525), - [anon_sym_DASH] = ACTIONS(1525), - [anon_sym_SLASH] = ACTIONS(1497), - [anon_sym_PERCENT] = ACTIONS(1497), - [anon_sym_DASH_DASH] = ACTIONS(1044), - [anon_sym_PLUS_PLUS] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1046), - [anon_sym_DASH_GT] = ACTIONS(1046), - [sym_comment] = ACTIONS(37), + [anon_sym_RPAREN] = ACTIONS(2557), + [sym_comment] = ACTIONS(59), }, [765] = { - [sym_argument_list] = STATE(430), - [anon_sym_SEMI] = ACTIONS(2358), - [anon_sym_LPAREN2] = ACTIONS(1012), - [anon_sym_STAR] = ACTIONS(1319), - [anon_sym_LBRACK] = ACTIONS(1016), - [anon_sym_EQ] = ACTIONS(2360), - [anon_sym_QMARK] = ACTIONS(2358), - [anon_sym_STAR_EQ] = ACTIONS(2358), - [anon_sym_SLASH_EQ] = ACTIONS(2358), - [anon_sym_PERCENT_EQ] = ACTIONS(2358), - [anon_sym_PLUS_EQ] = ACTIONS(2358), - [anon_sym_DASH_EQ] = ACTIONS(2358), - [anon_sym_LT_LT_EQ] = ACTIONS(2358), - [anon_sym_GT_GT_EQ] = ACTIONS(2358), - [anon_sym_AMP_EQ] = ACTIONS(2358), - [anon_sym_CARET_EQ] = ACTIONS(2358), - [anon_sym_PIPE_EQ] = ACTIONS(2358), - [anon_sym_AMP] = ACTIONS(2360), - [anon_sym_PIPE_PIPE] = ACTIONS(2358), - [anon_sym_AMP_AMP] = ACTIONS(2358), - [anon_sym_PIPE] = ACTIONS(2360), - [anon_sym_CARET] = ACTIONS(2360), - [anon_sym_EQ_EQ] = ACTIONS(1337), - [anon_sym_BANG_EQ] = ACTIONS(1337), - [anon_sym_LT] = ACTIONS(1339), - [anon_sym_GT] = ACTIONS(1339), - [anon_sym_LT_EQ] = ACTIONS(1341), - [anon_sym_GT_EQ] = ACTIONS(1341), - [anon_sym_LT_LT] = ACTIONS(1343), - [anon_sym_GT_GT] = ACTIONS(1343), - [anon_sym_PLUS] = ACTIONS(1345), - [anon_sym_DASH] = ACTIONS(1345), - [anon_sym_SLASH] = ACTIONS(1319), - [anon_sym_PERCENT] = ACTIONS(1319), - [anon_sym_DASH_DASH] = ACTIONS(1044), - [anon_sym_PLUS_PLUS] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1046), - [anon_sym_DASH_GT] = ACTIONS(1046), - [sym_comment] = ACTIONS(37), + [sym_parenthesized_expression] = STATE(927), + [anon_sym_LPAREN2] = ACTIONS(1448), + [sym_comment] = ACTIONS(59), }, [766] = { - [sym_argument_list] = STATE(430), - [anon_sym_SEMI] = ACTIONS(2362), - [anon_sym_LPAREN2] = ACTIONS(1012), - [anon_sym_STAR] = ACTIONS(1319), - [anon_sym_LBRACK] = ACTIONS(1016), - [anon_sym_EQ] = ACTIONS(2364), - [anon_sym_QMARK] = ACTIONS(2362), - [anon_sym_STAR_EQ] = ACTIONS(2362), - [anon_sym_SLASH_EQ] = ACTIONS(2362), - [anon_sym_PERCENT_EQ] = ACTIONS(2362), - [anon_sym_PLUS_EQ] = ACTIONS(2362), - [anon_sym_DASH_EQ] = ACTIONS(2362), - [anon_sym_LT_LT_EQ] = ACTIONS(2362), - [anon_sym_GT_GT_EQ] = ACTIONS(2362), - [anon_sym_AMP_EQ] = ACTIONS(2362), - [anon_sym_CARET_EQ] = ACTIONS(2362), - [anon_sym_PIPE_EQ] = ACTIONS(2362), - [anon_sym_AMP] = ACTIONS(1327), - [anon_sym_PIPE_PIPE] = ACTIONS(2362), - [anon_sym_AMP_AMP] = ACTIONS(1331), - [anon_sym_PIPE] = ACTIONS(1333), - [anon_sym_CARET] = ACTIONS(1335), - [anon_sym_EQ_EQ] = ACTIONS(1337), - [anon_sym_BANG_EQ] = ACTIONS(1337), - [anon_sym_LT] = ACTIONS(1339), - [anon_sym_GT] = ACTIONS(1339), - [anon_sym_LT_EQ] = ACTIONS(1341), - [anon_sym_GT_EQ] = ACTIONS(1341), - [anon_sym_LT_LT] = ACTIONS(1343), - [anon_sym_GT_GT] = ACTIONS(1343), - [anon_sym_PLUS] = ACTIONS(1345), - [anon_sym_DASH] = ACTIONS(1345), - [anon_sym_SLASH] = ACTIONS(1319), - [anon_sym_PERCENT] = ACTIONS(1319), - [anon_sym_DASH_DASH] = ACTIONS(1044), - [anon_sym_PLUS_PLUS] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1046), - [anon_sym_DASH_GT] = ACTIONS(1046), - [sym_comment] = ACTIONS(37), + [sym_parenthesized_expression] = STATE(928), + [anon_sym_LPAREN2] = ACTIONS(1448), + [sym_comment] = ACTIONS(59), }, [767] = { - [sym_argument_list] = STATE(430), - [anon_sym_SEMI] = ACTIONS(2362), - [anon_sym_LPAREN2] = ACTIONS(1012), - [anon_sym_STAR] = ACTIONS(1319), - [anon_sym_LBRACK] = ACTIONS(1016), - [anon_sym_EQ] = ACTIONS(2364), - [anon_sym_QMARK] = ACTIONS(2362), - [anon_sym_STAR_EQ] = ACTIONS(2362), - [anon_sym_SLASH_EQ] = ACTIONS(2362), - [anon_sym_PERCENT_EQ] = ACTIONS(2362), - [anon_sym_PLUS_EQ] = ACTIONS(2362), - [anon_sym_DASH_EQ] = ACTIONS(2362), - [anon_sym_LT_LT_EQ] = ACTIONS(2362), - [anon_sym_GT_GT_EQ] = ACTIONS(2362), - [anon_sym_AMP_EQ] = ACTIONS(2362), - [anon_sym_CARET_EQ] = ACTIONS(2362), - [anon_sym_PIPE_EQ] = ACTIONS(2362), - [anon_sym_AMP] = ACTIONS(1327), - [anon_sym_PIPE_PIPE] = ACTIONS(2362), - [anon_sym_AMP_AMP] = ACTIONS(2362), - [anon_sym_PIPE] = ACTIONS(1333), - [anon_sym_CARET] = ACTIONS(1335), - [anon_sym_EQ_EQ] = ACTIONS(1337), - [anon_sym_BANG_EQ] = ACTIONS(1337), - [anon_sym_LT] = ACTIONS(1339), - [anon_sym_GT] = ACTIONS(1339), - [anon_sym_LT_EQ] = ACTIONS(1341), - [anon_sym_GT_EQ] = ACTIONS(1341), - [anon_sym_LT_LT] = ACTIONS(1343), - [anon_sym_GT_GT] = ACTIONS(1343), - [anon_sym_PLUS] = ACTIONS(1345), - [anon_sym_DASH] = ACTIONS(1345), - [anon_sym_SLASH] = ACTIONS(1319), - [anon_sym_PERCENT] = ACTIONS(1319), - [anon_sym_DASH_DASH] = ACTIONS(1044), - [anon_sym_PLUS_PLUS] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1046), - [anon_sym_DASH_GT] = ACTIONS(1046), - [sym_comment] = ACTIONS(37), + [sym__expression] = STATE(929), + [sym_conditional_expression] = STATE(929), + [sym_assignment_expression] = STATE(929), + [sym_pointer_expression] = STATE(929), + [sym_logical_expression] = STATE(929), + [sym_bitwise_expression] = STATE(929), + [sym_equality_expression] = STATE(929), + [sym_relational_expression] = STATE(929), + [sym_shift_expression] = STATE(929), + [sym_math_expression] = STATE(929), + [sym_cast_expression] = STATE(929), + [sym_sizeof_expression] = STATE(929), + [sym_subscript_expression] = STATE(929), + [sym_call_expression] = STATE(929), + [sym_field_expression] = STATE(929), + [sym_compound_literal_expression] = STATE(929), + [sym_parenthesized_expression] = STATE(929), + [sym_char_literal] = STATE(929), + [sym_concatenated_string] = STATE(929), + [sym_string_literal] = STATE(223), + [anon_sym_LPAREN2] = ACTIONS(483), + [anon_sym_STAR] = ACTIONS(485), + [anon_sym_AMP] = ACTIONS(485), + [anon_sym_BANG] = ACTIONS(487), + [anon_sym_TILDE] = ACTIONS(489), + [anon_sym_PLUS] = ACTIONS(491), + [anon_sym_DASH] = ACTIONS(491), + [anon_sym_DASH_DASH] = ACTIONS(493), + [anon_sym_PLUS_PLUS] = ACTIONS(493), + [anon_sym_sizeof] = ACTIONS(495), + [sym_number_literal] = ACTIONS(2559), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(2561), + [sym_false] = ACTIONS(2561), + [sym_null] = ACTIONS(2561), + [sym_identifier] = ACTIONS(2561), + [sym_comment] = ACTIONS(59), }, [768] = { - [sym_argument_list] = STATE(430), - [anon_sym_SEMI] = ACTIONS(2358), - [anon_sym_LPAREN2] = ACTIONS(1012), - [anon_sym_STAR] = ACTIONS(1319), - [anon_sym_LBRACK] = ACTIONS(1016), - [anon_sym_EQ] = ACTIONS(2360), - [anon_sym_QMARK] = ACTIONS(2358), - [anon_sym_STAR_EQ] = ACTIONS(2358), - [anon_sym_SLASH_EQ] = ACTIONS(2358), - [anon_sym_PERCENT_EQ] = ACTIONS(2358), - [anon_sym_PLUS_EQ] = ACTIONS(2358), - [anon_sym_DASH_EQ] = ACTIONS(2358), - [anon_sym_LT_LT_EQ] = ACTIONS(2358), - [anon_sym_GT_GT_EQ] = ACTIONS(2358), - [anon_sym_AMP_EQ] = ACTIONS(2358), - [anon_sym_CARET_EQ] = ACTIONS(2358), - [anon_sym_PIPE_EQ] = ACTIONS(2358), - [anon_sym_AMP] = ACTIONS(1327), - [anon_sym_PIPE_PIPE] = ACTIONS(2358), - [anon_sym_AMP_AMP] = ACTIONS(2358), - [anon_sym_PIPE] = ACTIONS(2360), - [anon_sym_CARET] = ACTIONS(1335), - [anon_sym_EQ_EQ] = ACTIONS(1337), - [anon_sym_BANG_EQ] = ACTIONS(1337), - [anon_sym_LT] = ACTIONS(1339), - [anon_sym_GT] = ACTIONS(1339), - [anon_sym_LT_EQ] = ACTIONS(1341), - [anon_sym_GT_EQ] = ACTIONS(1341), - [anon_sym_LT_LT] = ACTIONS(1343), - [anon_sym_GT_GT] = ACTIONS(1343), - [anon_sym_PLUS] = ACTIONS(1345), - [anon_sym_DASH] = ACTIONS(1345), - [anon_sym_SLASH] = ACTIONS(1319), - [anon_sym_PERCENT] = ACTIONS(1319), - [anon_sym_DASH_DASH] = ACTIONS(1044), - [anon_sym_PLUS_PLUS] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1046), - [anon_sym_DASH_GT] = ACTIONS(1046), - [sym_comment] = ACTIONS(37), + [anon_sym_COLON] = ACTIONS(2563), + [sym_comment] = ACTIONS(59), }, [769] = { - [sym_argument_list] = STATE(430), - [anon_sym_SEMI] = ACTIONS(2358), - [anon_sym_LPAREN2] = ACTIONS(1012), - [anon_sym_STAR] = ACTIONS(1319), - [anon_sym_LBRACK] = ACTIONS(1016), - [anon_sym_EQ] = ACTIONS(2360), - [anon_sym_QMARK] = ACTIONS(2358), - [anon_sym_STAR_EQ] = ACTIONS(2358), - [anon_sym_SLASH_EQ] = ACTIONS(2358), - [anon_sym_PERCENT_EQ] = ACTIONS(2358), - [anon_sym_PLUS_EQ] = ACTIONS(2358), - [anon_sym_DASH_EQ] = ACTIONS(2358), - [anon_sym_LT_LT_EQ] = ACTIONS(2358), - [anon_sym_GT_GT_EQ] = ACTIONS(2358), - [anon_sym_AMP_EQ] = ACTIONS(2358), - [anon_sym_CARET_EQ] = ACTIONS(2358), - [anon_sym_PIPE_EQ] = ACTIONS(2358), - [anon_sym_AMP] = ACTIONS(1327), - [anon_sym_PIPE_PIPE] = ACTIONS(2358), - [anon_sym_AMP_AMP] = ACTIONS(2358), - [anon_sym_PIPE] = ACTIONS(2360), - [anon_sym_CARET] = ACTIONS(2360), - [anon_sym_EQ_EQ] = ACTIONS(1337), - [anon_sym_BANG_EQ] = ACTIONS(1337), - [anon_sym_LT] = ACTIONS(1339), - [anon_sym_GT] = ACTIONS(1339), - [anon_sym_LT_EQ] = ACTIONS(1341), - [anon_sym_GT_EQ] = ACTIONS(1341), - [anon_sym_LT_LT] = ACTIONS(1343), - [anon_sym_GT_GT] = ACTIONS(1343), - [anon_sym_PLUS] = ACTIONS(1345), - [anon_sym_DASH] = ACTIONS(1345), - [anon_sym_SLASH] = ACTIONS(1319), - [anon_sym_PERCENT] = ACTIONS(1319), - [anon_sym_DASH_DASH] = ACTIONS(1044), - [anon_sym_PLUS_PLUS] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1046), - [anon_sym_DASH_GT] = ACTIONS(1046), - [sym_comment] = ACTIONS(37), + [sym_parenthesized_expression] = STATE(931), + [anon_sym_LPAREN2] = ACTIONS(1448), + [sym_comment] = ACTIONS(59), }, [770] = { - [sym_argument_list] = STATE(430), - [anon_sym_SEMI] = ACTIONS(2366), - [anon_sym_LPAREN2] = ACTIONS(1012), - [anon_sym_STAR] = ACTIONS(1319), - [anon_sym_LBRACK] = ACTIONS(1016), - [anon_sym_EQ] = ACTIONS(2368), - [anon_sym_QMARK] = ACTIONS(2366), - [anon_sym_STAR_EQ] = ACTIONS(2366), - [anon_sym_SLASH_EQ] = ACTIONS(2366), - [anon_sym_PERCENT_EQ] = ACTIONS(2366), - [anon_sym_PLUS_EQ] = ACTIONS(2366), - [anon_sym_DASH_EQ] = ACTIONS(2366), - [anon_sym_LT_LT_EQ] = ACTIONS(2366), - [anon_sym_GT_GT_EQ] = ACTIONS(2366), - [anon_sym_AMP_EQ] = ACTIONS(2366), - [anon_sym_CARET_EQ] = ACTIONS(2366), - [anon_sym_PIPE_EQ] = ACTIONS(2366), - [anon_sym_AMP] = ACTIONS(2368), - [anon_sym_PIPE_PIPE] = ACTIONS(2366), - [anon_sym_AMP_AMP] = ACTIONS(2366), - [anon_sym_PIPE] = ACTIONS(2368), - [anon_sym_CARET] = ACTIONS(2368), - [anon_sym_EQ_EQ] = ACTIONS(2366), - [anon_sym_BANG_EQ] = ACTIONS(2366), - [anon_sym_LT] = ACTIONS(1339), - [anon_sym_GT] = ACTIONS(1339), - [anon_sym_LT_EQ] = ACTIONS(1341), - [anon_sym_GT_EQ] = ACTIONS(1341), - [anon_sym_LT_LT] = ACTIONS(1343), - [anon_sym_GT_GT] = ACTIONS(1343), - [anon_sym_PLUS] = ACTIONS(1345), - [anon_sym_DASH] = ACTIONS(1345), - [anon_sym_SLASH] = ACTIONS(1319), - [anon_sym_PERCENT] = ACTIONS(1319), - [anon_sym_DASH_DASH] = ACTIONS(1044), - [anon_sym_PLUS_PLUS] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1046), - [anon_sym_DASH_GT] = ACTIONS(1046), - [sym_comment] = ACTIONS(37), + [anon_sym_LPAREN2] = ACTIONS(2565), + [sym_comment] = ACTIONS(59), }, [771] = { - [sym_argument_list] = STATE(430), - [anon_sym_SEMI] = ACTIONS(2370), - [anon_sym_LPAREN2] = ACTIONS(1012), - [anon_sym_STAR] = ACTIONS(1319), - [anon_sym_LBRACK] = ACTIONS(1016), - [anon_sym_EQ] = ACTIONS(2372), - [anon_sym_QMARK] = ACTIONS(2370), - [anon_sym_STAR_EQ] = ACTIONS(2370), - [anon_sym_SLASH_EQ] = ACTIONS(2370), - [anon_sym_PERCENT_EQ] = ACTIONS(2370), - [anon_sym_PLUS_EQ] = ACTIONS(2370), - [anon_sym_DASH_EQ] = ACTIONS(2370), - [anon_sym_LT_LT_EQ] = ACTIONS(2370), - [anon_sym_GT_GT_EQ] = ACTIONS(2370), - [anon_sym_AMP_EQ] = ACTIONS(2370), - [anon_sym_CARET_EQ] = ACTIONS(2370), - [anon_sym_PIPE_EQ] = ACTIONS(2370), - [anon_sym_AMP] = ACTIONS(2372), - [anon_sym_PIPE_PIPE] = ACTIONS(2370), - [anon_sym_AMP_AMP] = ACTIONS(2370), - [anon_sym_PIPE] = ACTIONS(2372), - [anon_sym_CARET] = ACTIONS(2372), - [anon_sym_EQ_EQ] = ACTIONS(2370), - [anon_sym_BANG_EQ] = ACTIONS(2370), - [anon_sym_LT] = ACTIONS(2372), - [anon_sym_GT] = ACTIONS(2372), - [anon_sym_LT_EQ] = ACTIONS(2370), - [anon_sym_GT_EQ] = ACTIONS(2370), - [anon_sym_LT_LT] = ACTIONS(1343), - [anon_sym_GT_GT] = ACTIONS(1343), - [anon_sym_PLUS] = ACTIONS(1345), - [anon_sym_DASH] = ACTIONS(1345), - [anon_sym_SLASH] = ACTIONS(1319), - [anon_sym_PERCENT] = ACTIONS(1319), - [anon_sym_DASH_DASH] = ACTIONS(1044), - [anon_sym_PLUS_PLUS] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1046), - [anon_sym_DASH_GT] = ACTIONS(1046), - [sym_comment] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(166), + [anon_sym_COMMA] = ACTIONS(166), + [anon_sym_LPAREN2] = ACTIONS(166), + [anon_sym_STAR] = ACTIONS(168), + [anon_sym_LBRACK] = ACTIONS(166), + [anon_sym_EQ] = ACTIONS(168), + [anon_sym_COLON] = ACTIONS(2567), + [anon_sym_QMARK] = ACTIONS(166), + [anon_sym_STAR_EQ] = ACTIONS(166), + [anon_sym_SLASH_EQ] = ACTIONS(166), + [anon_sym_PERCENT_EQ] = ACTIONS(166), + [anon_sym_PLUS_EQ] = ACTIONS(166), + [anon_sym_DASH_EQ] = ACTIONS(166), + [anon_sym_LT_LT_EQ] = ACTIONS(166), + [anon_sym_GT_GT_EQ] = ACTIONS(166), + [anon_sym_AMP_EQ] = ACTIONS(166), + [anon_sym_CARET_EQ] = ACTIONS(166), + [anon_sym_PIPE_EQ] = ACTIONS(166), + [anon_sym_AMP] = ACTIONS(168), + [anon_sym_PIPE_PIPE] = ACTIONS(166), + [anon_sym_AMP_AMP] = ACTIONS(166), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_CARET] = ACTIONS(168), + [anon_sym_EQ_EQ] = ACTIONS(166), + [anon_sym_BANG_EQ] = ACTIONS(166), + [anon_sym_LT] = ACTIONS(168), + [anon_sym_GT] = ACTIONS(168), + [anon_sym_LT_EQ] = ACTIONS(166), + [anon_sym_GT_EQ] = ACTIONS(166), + [anon_sym_LT_LT] = ACTIONS(168), + [anon_sym_GT_GT] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(168), + [anon_sym_DASH] = ACTIONS(168), + [anon_sym_SLASH] = ACTIONS(168), + [anon_sym_PERCENT] = ACTIONS(168), + [anon_sym_DASH_DASH] = ACTIONS(166), + [anon_sym_PLUS_PLUS] = ACTIONS(166), + [anon_sym_DOT] = ACTIONS(166), + [anon_sym_DASH_GT] = ACTIONS(166), + [sym_comment] = ACTIONS(59), }, [772] = { - [sym_argument_list] = STATE(430), - [anon_sym_SEMI] = ACTIONS(2374), - [anon_sym_LPAREN2] = ACTIONS(1012), - [anon_sym_STAR] = ACTIONS(1319), - [anon_sym_LBRACK] = ACTIONS(1016), - [anon_sym_EQ] = ACTIONS(2376), - [anon_sym_QMARK] = ACTIONS(2374), - [anon_sym_STAR_EQ] = ACTIONS(2374), - [anon_sym_SLASH_EQ] = ACTIONS(2374), - [anon_sym_PERCENT_EQ] = ACTIONS(2374), - [anon_sym_PLUS_EQ] = ACTIONS(2374), - [anon_sym_DASH_EQ] = ACTIONS(2374), - [anon_sym_LT_LT_EQ] = ACTIONS(2374), - [anon_sym_GT_GT_EQ] = ACTIONS(2374), - [anon_sym_AMP_EQ] = ACTIONS(2374), - [anon_sym_CARET_EQ] = ACTIONS(2374), - [anon_sym_PIPE_EQ] = ACTIONS(2374), - [anon_sym_AMP] = ACTIONS(2376), - [anon_sym_PIPE_PIPE] = ACTIONS(2374), - [anon_sym_AMP_AMP] = ACTIONS(2374), - [anon_sym_PIPE] = ACTIONS(2376), - [anon_sym_CARET] = ACTIONS(2376), - [anon_sym_EQ_EQ] = ACTIONS(2374), - [anon_sym_BANG_EQ] = ACTIONS(2374), - [anon_sym_LT] = ACTIONS(2376), - [anon_sym_GT] = ACTIONS(2376), - [anon_sym_LT_EQ] = ACTIONS(2374), - [anon_sym_GT_EQ] = ACTIONS(2374), - [anon_sym_LT_LT] = ACTIONS(2376), - [anon_sym_GT_GT] = ACTIONS(2376), - [anon_sym_PLUS] = ACTIONS(1345), - [anon_sym_DASH] = ACTIONS(1345), - [anon_sym_SLASH] = ACTIONS(1319), - [anon_sym_PERCENT] = ACTIONS(1319), - [anon_sym_DASH_DASH] = ACTIONS(1044), - [anon_sym_PLUS_PLUS] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1046), - [anon_sym_DASH_GT] = ACTIONS(1046), - [sym_comment] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(2569), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2571), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2571), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2571), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2571), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2571), + [sym_preproc_directive] = ACTIONS(2571), + [anon_sym_typedef] = ACTIONS(2571), + [anon_sym_extern] = ACTIONS(2571), + [anon_sym_LBRACE] = ACTIONS(2569), + [anon_sym_RBRACE] = ACTIONS(2569), + [anon_sym_LPAREN2] = ACTIONS(2569), + [anon_sym_STAR] = ACTIONS(2569), + [anon_sym_static] = ACTIONS(2571), + [anon_sym_auto] = ACTIONS(2571), + [anon_sym_register] = ACTIONS(2571), + [anon_sym_inline] = ACTIONS(2571), + [anon_sym_const] = ACTIONS(2571), + [anon_sym_restrict] = ACTIONS(2571), + [anon_sym_volatile] = ACTIONS(2571), + [anon_sym__Atomic] = ACTIONS(2571), + [anon_sym_unsigned] = ACTIONS(2571), + [anon_sym_long] = ACTIONS(2571), + [anon_sym_short] = ACTIONS(2571), + [sym_primitive_type] = ACTIONS(2571), + [anon_sym_enum] = ACTIONS(2571), + [anon_sym_struct] = ACTIONS(2571), + [anon_sym_union] = ACTIONS(2571), + [anon_sym_if] = ACTIONS(2571), + [anon_sym_else] = ACTIONS(2573), + [anon_sym_switch] = ACTIONS(2571), + [anon_sym_case] = ACTIONS(2571), + [anon_sym_default] = ACTIONS(2571), + [anon_sym_while] = ACTIONS(2571), + [anon_sym_do] = ACTIONS(2571), + [anon_sym_for] = ACTIONS(2571), + [anon_sym_return] = ACTIONS(2571), + [anon_sym_break] = ACTIONS(2571), + [anon_sym_continue] = ACTIONS(2571), + [anon_sym_goto] = ACTIONS(2571), + [anon_sym_AMP] = ACTIONS(2569), + [anon_sym_BANG] = ACTIONS(2569), + [anon_sym_TILDE] = ACTIONS(2569), + [anon_sym_PLUS] = ACTIONS(2571), + [anon_sym_DASH] = ACTIONS(2571), + [anon_sym_DASH_DASH] = ACTIONS(2569), + [anon_sym_PLUS_PLUS] = ACTIONS(2569), + [anon_sym_sizeof] = ACTIONS(2571), + [sym_number_literal] = ACTIONS(2569), + [anon_sym_SQUOTE] = ACTIONS(2569), + [anon_sym_DQUOTE] = ACTIONS(2569), + [sym_true] = ACTIONS(2571), + [sym_false] = ACTIONS(2571), + [sym_null] = ACTIONS(2571), + [sym_identifier] = ACTIONS(2571), + [sym_comment] = ACTIONS(59), }, [773] = { - [sym_argument_list] = STATE(430), - [anon_sym_SEMI] = ACTIONS(2348), - [anon_sym_LPAREN2] = ACTIONS(1012), - [anon_sym_STAR] = ACTIONS(1319), - [anon_sym_LBRACK] = ACTIONS(1016), - [anon_sym_EQ] = ACTIONS(2350), - [anon_sym_QMARK] = ACTIONS(2348), - [anon_sym_STAR_EQ] = ACTIONS(2348), - [anon_sym_SLASH_EQ] = ACTIONS(2348), - [anon_sym_PERCENT_EQ] = ACTIONS(2348), - [anon_sym_PLUS_EQ] = ACTIONS(2348), - [anon_sym_DASH_EQ] = ACTIONS(2348), - [anon_sym_LT_LT_EQ] = ACTIONS(2348), - [anon_sym_GT_GT_EQ] = ACTIONS(2348), - [anon_sym_AMP_EQ] = ACTIONS(2348), - [anon_sym_CARET_EQ] = ACTIONS(2348), - [anon_sym_PIPE_EQ] = ACTIONS(2348), - [anon_sym_AMP] = ACTIONS(2350), - [anon_sym_PIPE_PIPE] = ACTIONS(2348), - [anon_sym_AMP_AMP] = ACTIONS(2348), - [anon_sym_PIPE] = ACTIONS(2350), - [anon_sym_CARET] = ACTIONS(2350), - [anon_sym_EQ_EQ] = ACTIONS(2348), - [anon_sym_BANG_EQ] = ACTIONS(2348), - [anon_sym_LT] = ACTIONS(2350), - [anon_sym_GT] = ACTIONS(2350), - [anon_sym_LT_EQ] = ACTIONS(2348), - [anon_sym_GT_EQ] = ACTIONS(2348), - [anon_sym_LT_LT] = ACTIONS(2350), - [anon_sym_GT_GT] = ACTIONS(2350), - [anon_sym_PLUS] = ACTIONS(2350), - [anon_sym_DASH] = ACTIONS(2350), - [anon_sym_SLASH] = ACTIONS(1319), - [anon_sym_PERCENT] = ACTIONS(1319), - [anon_sym_DASH_DASH] = ACTIONS(1044), - [anon_sym_PLUS_PLUS] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1046), - [anon_sym_DASH_GT] = ACTIONS(1046), - [sym_comment] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(166), + [anon_sym_COMMA] = ACTIONS(166), + [anon_sym_LPAREN2] = ACTIONS(166), + [anon_sym_STAR] = ACTIONS(168), + [anon_sym_LBRACK] = ACTIONS(166), + [anon_sym_EQ] = ACTIONS(168), + [anon_sym_COLON] = ACTIONS(1492), + [anon_sym_QMARK] = ACTIONS(166), + [anon_sym_STAR_EQ] = ACTIONS(166), + [anon_sym_SLASH_EQ] = ACTIONS(166), + [anon_sym_PERCENT_EQ] = ACTIONS(166), + [anon_sym_PLUS_EQ] = ACTIONS(166), + [anon_sym_DASH_EQ] = ACTIONS(166), + [anon_sym_LT_LT_EQ] = ACTIONS(166), + [anon_sym_GT_GT_EQ] = ACTIONS(166), + [anon_sym_AMP_EQ] = ACTIONS(166), + [anon_sym_CARET_EQ] = ACTIONS(166), + [anon_sym_PIPE_EQ] = ACTIONS(166), + [anon_sym_AMP] = ACTIONS(168), + [anon_sym_PIPE_PIPE] = ACTIONS(166), + [anon_sym_AMP_AMP] = ACTIONS(166), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_CARET] = ACTIONS(168), + [anon_sym_EQ_EQ] = ACTIONS(166), + [anon_sym_BANG_EQ] = ACTIONS(166), + [anon_sym_LT] = ACTIONS(168), + [anon_sym_GT] = ACTIONS(168), + [anon_sym_LT_EQ] = ACTIONS(166), + [anon_sym_GT_EQ] = ACTIONS(166), + [anon_sym_LT_LT] = ACTIONS(168), + [anon_sym_GT_GT] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(168), + [anon_sym_DASH] = ACTIONS(168), + [anon_sym_SLASH] = ACTIONS(168), + [anon_sym_PERCENT] = ACTIONS(168), + [anon_sym_DASH_DASH] = ACTIONS(166), + [anon_sym_PLUS_PLUS] = ACTIONS(166), + [anon_sym_DOT] = ACTIONS(166), + [anon_sym_DASH_GT] = ACTIONS(166), + [sym_comment] = ACTIONS(59), }, [774] = { - [sym_string_literal] = STATE(774), - [aux_sym_concatenated_string_repeat1] = STATE(774), - [anon_sym_SEMI] = ACTIONS(2382), - [anon_sym_LPAREN2] = ACTIONS(2382), - [anon_sym_STAR] = ACTIONS(2384), - [anon_sym_LBRACK] = ACTIONS(2382), - [anon_sym_EQ] = ACTIONS(2384), - [anon_sym_QMARK] = ACTIONS(2382), - [anon_sym_STAR_EQ] = ACTIONS(2382), - [anon_sym_SLASH_EQ] = ACTIONS(2382), - [anon_sym_PERCENT_EQ] = ACTIONS(2382), - [anon_sym_PLUS_EQ] = ACTIONS(2382), - [anon_sym_DASH_EQ] = ACTIONS(2382), - [anon_sym_LT_LT_EQ] = ACTIONS(2382), - [anon_sym_GT_GT_EQ] = ACTIONS(2382), - [anon_sym_AMP_EQ] = ACTIONS(2382), - [anon_sym_CARET_EQ] = ACTIONS(2382), - [anon_sym_PIPE_EQ] = ACTIONS(2382), - [anon_sym_AMP] = ACTIONS(2384), - [anon_sym_PIPE_PIPE] = ACTIONS(2382), - [anon_sym_AMP_AMP] = ACTIONS(2382), - [anon_sym_PIPE] = ACTIONS(2384), - [anon_sym_CARET] = ACTIONS(2384), - [anon_sym_EQ_EQ] = ACTIONS(2382), - [anon_sym_BANG_EQ] = ACTIONS(2382), - [anon_sym_LT] = ACTIONS(2384), - [anon_sym_GT] = ACTIONS(2384), - [anon_sym_LT_EQ] = ACTIONS(2382), - [anon_sym_GT_EQ] = ACTIONS(2382), - [anon_sym_LT_LT] = ACTIONS(2384), - [anon_sym_GT_GT] = ACTIONS(2384), - [anon_sym_PLUS] = ACTIONS(2384), - [anon_sym_DASH] = ACTIONS(2384), - [anon_sym_SLASH] = ACTIONS(2384), - [anon_sym_PERCENT] = ACTIONS(2384), - [anon_sym_DASH_DASH] = ACTIONS(2382), - [anon_sym_PLUS_PLUS] = ACTIONS(2382), - [anon_sym_DOT] = ACTIONS(2382), - [anon_sym_DASH_GT] = ACTIONS(2382), - [anon_sym_DQUOTE] = ACTIONS(2386), - [sym_comment] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(2575), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2577), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2577), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2577), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2577), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2577), + [sym_preproc_directive] = ACTIONS(2577), + [anon_sym_typedef] = ACTIONS(2577), + [anon_sym_extern] = ACTIONS(2577), + [anon_sym_LBRACE] = ACTIONS(2575), + [anon_sym_RBRACE] = ACTIONS(2575), + [anon_sym_LPAREN2] = ACTIONS(2575), + [anon_sym_STAR] = ACTIONS(2575), + [anon_sym_static] = ACTIONS(2577), + [anon_sym_auto] = ACTIONS(2577), + [anon_sym_register] = ACTIONS(2577), + [anon_sym_inline] = ACTIONS(2577), + [anon_sym_const] = ACTIONS(2577), + [anon_sym_restrict] = ACTIONS(2577), + [anon_sym_volatile] = ACTIONS(2577), + [anon_sym__Atomic] = ACTIONS(2577), + [anon_sym_unsigned] = ACTIONS(2577), + [anon_sym_long] = ACTIONS(2577), + [anon_sym_short] = ACTIONS(2577), + [sym_primitive_type] = ACTIONS(2577), + [anon_sym_enum] = ACTIONS(2577), + [anon_sym_struct] = ACTIONS(2577), + [anon_sym_union] = ACTIONS(2577), + [anon_sym_if] = ACTIONS(2577), + [anon_sym_else] = ACTIONS(2577), + [anon_sym_switch] = ACTIONS(2577), + [anon_sym_case] = ACTIONS(2577), + [anon_sym_default] = ACTIONS(2577), + [anon_sym_while] = ACTIONS(2577), + [anon_sym_do] = ACTIONS(2577), + [anon_sym_for] = ACTIONS(2577), + [anon_sym_return] = ACTIONS(2577), + [anon_sym_break] = ACTIONS(2577), + [anon_sym_continue] = ACTIONS(2577), + [anon_sym_goto] = ACTIONS(2577), + [anon_sym_AMP] = ACTIONS(2575), + [anon_sym_BANG] = ACTIONS(2575), + [anon_sym_TILDE] = ACTIONS(2575), + [anon_sym_PLUS] = ACTIONS(2577), + [anon_sym_DASH] = ACTIONS(2577), + [anon_sym_DASH_DASH] = ACTIONS(2575), + [anon_sym_PLUS_PLUS] = ACTIONS(2575), + [anon_sym_sizeof] = ACTIONS(2577), + [sym_number_literal] = ACTIONS(2575), + [anon_sym_SQUOTE] = ACTIONS(2575), + [anon_sym_DQUOTE] = ACTIONS(2575), + [sym_true] = ACTIONS(2577), + [sym_false] = ACTIONS(2577), + [sym_null] = ACTIONS(2577), + [sym_identifier] = ACTIONS(2577), + [sym_comment] = ACTIONS(59), }, [775] = { - [anon_sym_COMMA] = ACTIONS(2469), - [anon_sym_RPAREN] = ACTIONS(2469), - [anon_sym_SEMI] = ACTIONS(2469), - [anon_sym_LPAREN2] = ACTIONS(2469), - [anon_sym_LBRACK] = ACTIONS(2469), - [anon_sym_COLON] = ACTIONS(2469), - [sym_comment] = ACTIONS(37), + [sym_declaration] = STATE(935), + [sym_type_definition] = STATE(935), + [sym__declaration_specifiers] = STATE(778), + [sym_compound_statement] = STATE(935), + [sym_storage_class_specifier] = STATE(142), + [sym_type_qualifier] = STATE(142), + [sym__type_specifier] = STATE(141), + [sym_sized_type_specifier] = STATE(141), + [sym_enum_specifier] = STATE(141), + [sym_struct_specifier] = STATE(141), + [sym_union_specifier] = STATE(141), + [sym_labeled_statement] = STATE(935), + [sym_expression_statement] = STATE(935), + [sym_if_statement] = STATE(935), + [sym_switch_statement] = STATE(935), + [sym_case_statement] = STATE(935), + [sym_while_statement] = STATE(935), + [sym_do_statement] = STATE(935), + [sym_for_statement] = STATE(935), + [sym_return_statement] = STATE(935), + [sym_break_statement] = STATE(935), + [sym_continue_statement] = STATE(935), + [sym_goto_statement] = STATE(935), + [sym__expression] = STATE(372), + [sym_comma_expression] = STATE(373), + [sym_conditional_expression] = STATE(372), + [sym_assignment_expression] = STATE(372), + [sym_pointer_expression] = STATE(372), + [sym_logical_expression] = STATE(372), + [sym_bitwise_expression] = STATE(372), + [sym_equality_expression] = STATE(372), + [sym_relational_expression] = STATE(372), + [sym_shift_expression] = STATE(372), + [sym_math_expression] = STATE(372), + [sym_cast_expression] = STATE(372), + [sym_sizeof_expression] = STATE(372), + [sym_subscript_expression] = STATE(372), + [sym_call_expression] = STATE(372), + [sym_field_expression] = STATE(372), + [sym_compound_literal_expression] = STATE(372), + [sym_parenthesized_expression] = STATE(372), + [sym_char_literal] = STATE(372), + [sym_concatenated_string] = STATE(372), + [sym_string_literal] = STATE(374), + [sym_macro_type_specifier] = STATE(141), + [aux_sym__declaration_specifiers_repeat1] = STATE(142), + [aux_sym_sized_type_specifier_repeat1] = STATE(143), + [anon_sym_SEMI] = ACTIONS(928), + [anon_sym_typedef] = ACTIONS(17), + [anon_sym_extern] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(439), + [anon_sym_LPAREN2] = ACTIONS(936), + [anon_sym_STAR] = ACTIONS(938), + [anon_sym_static] = ACTIONS(25), + [anon_sym_auto] = ACTIONS(25), + [anon_sym_register] = ACTIONS(25), + [anon_sym_inline] = ACTIONS(25), + [anon_sym_const] = ACTIONS(27), + [anon_sym_restrict] = ACTIONS(27), + [anon_sym_volatile] = ACTIONS(27), + [anon_sym__Atomic] = ACTIONS(27), + [anon_sym_unsigned] = ACTIONS(294), + [anon_sym_long] = ACTIONS(294), + [anon_sym_short] = ACTIONS(294), + [sym_primitive_type] = ACTIONS(296), + [anon_sym_enum] = ACTIONS(33), + [anon_sym_struct] = ACTIONS(35), + [anon_sym_union] = ACTIONS(37), + [anon_sym_if] = ACTIONS(940), + [anon_sym_switch] = ACTIONS(942), + [anon_sym_case] = ACTIONS(944), + [anon_sym_default] = ACTIONS(946), + [anon_sym_while] = ACTIONS(948), + [anon_sym_do] = ACTIONS(950), + [anon_sym_for] = ACTIONS(952), + [anon_sym_return] = ACTIONS(954), + [anon_sym_break] = ACTIONS(956), + [anon_sym_continue] = ACTIONS(958), + [anon_sym_goto] = ACTIONS(960), + [anon_sym_AMP] = ACTIONS(938), + [anon_sym_BANG] = ACTIONS(962), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_DASH_DASH] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(968), + [anon_sym_sizeof] = ACTIONS(970), + [sym_number_literal] = ACTIONS(972), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(974), + [sym_false] = ACTIONS(974), + [sym_null] = ACTIONS(974), + [sym_identifier] = ACTIONS(2006), + [sym_comment] = ACTIONS(59), }, [776] = { - [sym_argument_list] = STATE(430), - [anon_sym_LPAREN2] = ACTIONS(1012), - [anon_sym_STAR] = ACTIONS(1082), - [anon_sym_LBRACK] = ACTIONS(1016), - [anon_sym_RBRACK] = ACTIONS(2471), - [anon_sym_EQ] = ACTIONS(1084), - [anon_sym_QMARK] = ACTIONS(1086), - [anon_sym_STAR_EQ] = ACTIONS(1088), - [anon_sym_SLASH_EQ] = ACTIONS(1088), - [anon_sym_PERCENT_EQ] = ACTIONS(1088), - [anon_sym_PLUS_EQ] = ACTIONS(1088), - [anon_sym_DASH_EQ] = ACTIONS(1088), - [anon_sym_LT_LT_EQ] = ACTIONS(1088), - [anon_sym_GT_GT_EQ] = ACTIONS(1088), - [anon_sym_AMP_EQ] = ACTIONS(1088), - [anon_sym_CARET_EQ] = ACTIONS(1088), - [anon_sym_PIPE_EQ] = ACTIONS(1088), - [anon_sym_AMP] = ACTIONS(1090), - [anon_sym_PIPE_PIPE] = ACTIONS(1092), - [anon_sym_AMP_AMP] = ACTIONS(1094), - [anon_sym_PIPE] = ACTIONS(1096), - [anon_sym_CARET] = ACTIONS(1098), - [anon_sym_EQ_EQ] = ACTIONS(1100), - [anon_sym_BANG_EQ] = ACTIONS(1100), - [anon_sym_LT] = ACTIONS(1102), - [anon_sym_GT] = ACTIONS(1102), - [anon_sym_LT_EQ] = ACTIONS(1104), - [anon_sym_GT_EQ] = ACTIONS(1104), - [anon_sym_LT_LT] = ACTIONS(1106), - [anon_sym_GT_GT] = ACTIONS(1106), - [anon_sym_PLUS] = ACTIONS(1108), - [anon_sym_DASH] = ACTIONS(1108), - [anon_sym_SLASH] = ACTIONS(1082), - [anon_sym_PERCENT] = ACTIONS(1082), - [anon_sym_DASH_DASH] = ACTIONS(1044), - [anon_sym_PLUS_PLUS] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1046), - [anon_sym_DASH_GT] = ACTIONS(1046), - [sym_comment] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(166), + [anon_sym_COMMA] = ACTIONS(166), + [anon_sym_extern] = ACTIONS(157), + [anon_sym_LPAREN2] = ACTIONS(159), + [anon_sym_STAR] = ACTIONS(163), + [anon_sym_LBRACK] = ACTIONS(166), + [anon_sym_EQ] = ACTIONS(168), + [anon_sym_static] = ACTIONS(157), + [anon_sym_auto] = ACTIONS(157), + [anon_sym_register] = ACTIONS(157), + [anon_sym_inline] = ACTIONS(157), + [anon_sym_const] = ACTIONS(157), + [anon_sym_restrict] = ACTIONS(157), + [anon_sym_volatile] = ACTIONS(157), + [anon_sym__Atomic] = ACTIONS(157), + [anon_sym_COLON] = ACTIONS(1492), + [anon_sym_QMARK] = ACTIONS(166), + [anon_sym_STAR_EQ] = ACTIONS(166), + [anon_sym_SLASH_EQ] = ACTIONS(166), + [anon_sym_PERCENT_EQ] = ACTIONS(166), + [anon_sym_PLUS_EQ] = ACTIONS(166), + [anon_sym_DASH_EQ] = ACTIONS(166), + [anon_sym_LT_LT_EQ] = ACTIONS(166), + [anon_sym_GT_GT_EQ] = ACTIONS(166), + [anon_sym_AMP_EQ] = ACTIONS(166), + [anon_sym_CARET_EQ] = ACTIONS(166), + [anon_sym_PIPE_EQ] = ACTIONS(166), + [anon_sym_AMP] = ACTIONS(168), + [anon_sym_PIPE_PIPE] = ACTIONS(166), + [anon_sym_AMP_AMP] = ACTIONS(166), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_CARET] = ACTIONS(168), + [anon_sym_EQ_EQ] = ACTIONS(166), + [anon_sym_BANG_EQ] = ACTIONS(166), + [anon_sym_LT] = ACTIONS(168), + [anon_sym_GT] = ACTIONS(168), + [anon_sym_LT_EQ] = ACTIONS(166), + [anon_sym_GT_EQ] = ACTIONS(166), + [anon_sym_LT_LT] = ACTIONS(168), + [anon_sym_GT_GT] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(168), + [anon_sym_DASH] = ACTIONS(168), + [anon_sym_SLASH] = ACTIONS(168), + [anon_sym_PERCENT] = ACTIONS(168), + [anon_sym_DASH_DASH] = ACTIONS(166), + [anon_sym_PLUS_PLUS] = ACTIONS(166), + [anon_sym_DOT] = ACTIONS(166), + [anon_sym_DASH_GT] = ACTIONS(166), + [sym_identifier] = ACTIONS(157), + [sym_comment] = ACTIONS(59), }, [777] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2473), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2475), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2475), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2475), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2475), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2475), - [anon_sym_extern] = ACTIONS(2473), - [anon_sym_RBRACE] = ACTIONS(2475), - [anon_sym_static] = ACTIONS(2473), - [anon_sym_auto] = ACTIONS(2473), - [anon_sym_register] = ACTIONS(2473), - [anon_sym_inline] = ACTIONS(2473), - [anon_sym_const] = ACTIONS(2473), - [anon_sym_restrict] = ACTIONS(2473), - [anon_sym_volatile] = ACTIONS(2473), - [anon_sym__Atomic] = ACTIONS(2473), - [anon_sym_unsigned] = ACTIONS(2473), - [anon_sym_long] = ACTIONS(2473), - [anon_sym_short] = ACTIONS(2473), - [sym_primitive_type] = ACTIONS(2473), - [anon_sym_enum] = ACTIONS(2473), - [anon_sym_struct] = ACTIONS(2473), - [anon_sym_union] = ACTIONS(2473), - [sym_identifier] = ACTIONS(2473), - [sym_comment] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(2579), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2581), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2581), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2581), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2581), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2581), + [sym_preproc_directive] = ACTIONS(2581), + [anon_sym_typedef] = ACTIONS(2581), + [anon_sym_extern] = ACTIONS(2581), + [anon_sym_LBRACE] = ACTIONS(2579), + [anon_sym_RBRACE] = ACTIONS(2579), + [anon_sym_LPAREN2] = ACTIONS(2579), + [anon_sym_STAR] = ACTIONS(2579), + [anon_sym_static] = ACTIONS(2581), + [anon_sym_auto] = ACTIONS(2581), + [anon_sym_register] = ACTIONS(2581), + [anon_sym_inline] = ACTIONS(2581), + [anon_sym_const] = ACTIONS(2581), + [anon_sym_restrict] = ACTIONS(2581), + [anon_sym_volatile] = ACTIONS(2581), + [anon_sym__Atomic] = ACTIONS(2581), + [anon_sym_unsigned] = ACTIONS(2581), + [anon_sym_long] = ACTIONS(2581), + [anon_sym_short] = ACTIONS(2581), + [sym_primitive_type] = ACTIONS(2581), + [anon_sym_enum] = ACTIONS(2581), + [anon_sym_struct] = ACTIONS(2581), + [anon_sym_union] = ACTIONS(2581), + [anon_sym_if] = ACTIONS(2581), + [anon_sym_else] = ACTIONS(2581), + [anon_sym_switch] = ACTIONS(2581), + [anon_sym_case] = ACTIONS(2581), + [anon_sym_default] = ACTIONS(2581), + [anon_sym_while] = ACTIONS(2581), + [anon_sym_do] = ACTIONS(2581), + [anon_sym_for] = ACTIONS(2581), + [anon_sym_return] = ACTIONS(2581), + [anon_sym_break] = ACTIONS(2581), + [anon_sym_continue] = ACTIONS(2581), + [anon_sym_goto] = ACTIONS(2581), + [anon_sym_AMP] = ACTIONS(2579), + [anon_sym_BANG] = ACTIONS(2579), + [anon_sym_TILDE] = ACTIONS(2579), + [anon_sym_PLUS] = ACTIONS(2581), + [anon_sym_DASH] = ACTIONS(2581), + [anon_sym_DASH_DASH] = ACTIONS(2579), + [anon_sym_PLUS_PLUS] = ACTIONS(2579), + [anon_sym_sizeof] = ACTIONS(2581), + [sym_number_literal] = ACTIONS(2579), + [anon_sym_SQUOTE] = ACTIONS(2579), + [anon_sym_DQUOTE] = ACTIONS(2579), + [sym_true] = ACTIONS(2581), + [sym_false] = ACTIONS(2581), + [sym_null] = ACTIONS(2581), + [sym_identifier] = ACTIONS(2581), + [sym_comment] = ACTIONS(59), }, [778] = { - [sym_argument_list] = STATE(430), - [anon_sym_SEMI] = ACTIONS(2477), - [anon_sym_LPAREN2] = ACTIONS(1012), - [anon_sym_STAR] = ACTIONS(1319), - [anon_sym_LBRACK] = ACTIONS(1016), - [anon_sym_EQ] = ACTIONS(1321), - [anon_sym_QMARK] = ACTIONS(1323), - [anon_sym_STAR_EQ] = ACTIONS(1325), - [anon_sym_SLASH_EQ] = ACTIONS(1325), - [anon_sym_PERCENT_EQ] = ACTIONS(1325), - [anon_sym_PLUS_EQ] = ACTIONS(1325), - [anon_sym_DASH_EQ] = ACTIONS(1325), - [anon_sym_LT_LT_EQ] = ACTIONS(1325), - [anon_sym_GT_GT_EQ] = ACTIONS(1325), - [anon_sym_AMP_EQ] = ACTIONS(1325), - [anon_sym_CARET_EQ] = ACTIONS(1325), - [anon_sym_PIPE_EQ] = ACTIONS(1325), - [anon_sym_AMP] = ACTIONS(1327), - [anon_sym_PIPE_PIPE] = ACTIONS(1329), - [anon_sym_AMP_AMP] = ACTIONS(1331), - [anon_sym_PIPE] = ACTIONS(1333), - [anon_sym_CARET] = ACTIONS(1335), - [anon_sym_EQ_EQ] = ACTIONS(1337), - [anon_sym_BANG_EQ] = ACTIONS(1337), - [anon_sym_LT] = ACTIONS(1339), - [anon_sym_GT] = ACTIONS(1339), - [anon_sym_LT_EQ] = ACTIONS(1341), - [anon_sym_GT_EQ] = ACTIONS(1341), - [anon_sym_LT_LT] = ACTIONS(1343), - [anon_sym_GT_GT] = ACTIONS(1343), - [anon_sym_PLUS] = ACTIONS(1345), - [anon_sym_DASH] = ACTIONS(1345), - [anon_sym_SLASH] = ACTIONS(1319), - [anon_sym_PERCENT] = ACTIONS(1319), - [anon_sym_DASH_DASH] = ACTIONS(1044), - [anon_sym_PLUS_PLUS] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1046), - [anon_sym_DASH_GT] = ACTIONS(1046), - [sym_comment] = ACTIONS(37), + [sym__declarator] = STATE(571), + [sym_pointer_declarator] = STATE(571), + [sym_function_declarator] = STATE(571), + [sym_array_declarator] = STATE(571), + [sym_init_declarator] = STATE(80), + [anon_sym_LPAREN2] = ACTIONS(174), + [anon_sym_STAR] = ACTIONS(924), + [sym_identifier] = ACTIONS(1494), + [sym_comment] = ACTIONS(59), }, [779] = { - [anon_sym_COMMA] = ACTIONS(2479), - [anon_sym_RPAREN] = ACTIONS(2479), - [anon_sym_LPAREN2] = ACTIONS(2479), - [anon_sym_LBRACK] = ACTIONS(2479), - [sym_comment] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(2583), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2585), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2585), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2585), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2585), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2585), + [sym_preproc_directive] = ACTIONS(2585), + [anon_sym_typedef] = ACTIONS(2585), + [anon_sym_extern] = ACTIONS(2585), + [anon_sym_LBRACE] = ACTIONS(2583), + [anon_sym_RBRACE] = ACTIONS(2583), + [anon_sym_LPAREN2] = ACTIONS(2583), + [anon_sym_STAR] = ACTIONS(2583), + [anon_sym_static] = ACTIONS(2585), + [anon_sym_auto] = ACTIONS(2585), + [anon_sym_register] = ACTIONS(2585), + [anon_sym_inline] = ACTIONS(2585), + [anon_sym_const] = ACTIONS(2585), + [anon_sym_restrict] = ACTIONS(2585), + [anon_sym_volatile] = ACTIONS(2585), + [anon_sym__Atomic] = ACTIONS(2585), + [anon_sym_unsigned] = ACTIONS(2585), + [anon_sym_long] = ACTIONS(2585), + [anon_sym_short] = ACTIONS(2585), + [sym_primitive_type] = ACTIONS(2585), + [anon_sym_enum] = ACTIONS(2585), + [anon_sym_struct] = ACTIONS(2585), + [anon_sym_union] = ACTIONS(2585), + [anon_sym_if] = ACTIONS(2585), + [anon_sym_else] = ACTIONS(2585), + [anon_sym_switch] = ACTIONS(2585), + [anon_sym_case] = ACTIONS(2585), + [anon_sym_default] = ACTIONS(2585), + [anon_sym_while] = ACTIONS(2585), + [anon_sym_do] = ACTIONS(2585), + [anon_sym_for] = ACTIONS(2585), + [anon_sym_return] = ACTIONS(2585), + [anon_sym_break] = ACTIONS(2585), + [anon_sym_continue] = ACTIONS(2585), + [anon_sym_goto] = ACTIONS(2585), + [anon_sym_AMP] = ACTIONS(2583), + [anon_sym_BANG] = ACTIONS(2583), + [anon_sym_TILDE] = ACTIONS(2583), + [anon_sym_PLUS] = ACTIONS(2585), + [anon_sym_DASH] = ACTIONS(2585), + [anon_sym_DASH_DASH] = ACTIONS(2583), + [anon_sym_PLUS_PLUS] = ACTIONS(2583), + [anon_sym_sizeof] = ACTIONS(2585), + [sym_number_literal] = ACTIONS(2583), + [anon_sym_SQUOTE] = ACTIONS(2583), + [anon_sym_DQUOTE] = ACTIONS(2583), + [sym_true] = ACTIONS(2585), + [sym_false] = ACTIONS(2585), + [sym_null] = ACTIONS(2585), + [sym_identifier] = ACTIONS(2585), + [sym_comment] = ACTIONS(59), }, [780] = { - [sym_argument_list] = STATE(430), - [anon_sym_LPAREN2] = ACTIONS(1012), - [anon_sym_STAR] = ACTIONS(1082), - [anon_sym_LBRACK] = ACTIONS(1016), - [anon_sym_RBRACK] = ACTIONS(2481), - [anon_sym_EQ] = ACTIONS(1084), - [anon_sym_QMARK] = ACTIONS(1086), - [anon_sym_STAR_EQ] = ACTIONS(1088), - [anon_sym_SLASH_EQ] = ACTIONS(1088), - [anon_sym_PERCENT_EQ] = ACTIONS(1088), - [anon_sym_PLUS_EQ] = ACTIONS(1088), - [anon_sym_DASH_EQ] = ACTIONS(1088), - [anon_sym_LT_LT_EQ] = ACTIONS(1088), - [anon_sym_GT_GT_EQ] = ACTIONS(1088), - [anon_sym_AMP_EQ] = ACTIONS(1088), - [anon_sym_CARET_EQ] = ACTIONS(1088), - [anon_sym_PIPE_EQ] = ACTIONS(1088), - [anon_sym_AMP] = ACTIONS(1090), - [anon_sym_PIPE_PIPE] = ACTIONS(1092), - [anon_sym_AMP_AMP] = ACTIONS(1094), - [anon_sym_PIPE] = ACTIONS(1096), - [anon_sym_CARET] = ACTIONS(1098), - [anon_sym_EQ_EQ] = ACTIONS(1100), - [anon_sym_BANG_EQ] = ACTIONS(1100), - [anon_sym_LT] = ACTIONS(1102), - [anon_sym_GT] = ACTIONS(1102), - [anon_sym_LT_EQ] = ACTIONS(1104), - [anon_sym_GT_EQ] = ACTIONS(1104), - [anon_sym_LT_LT] = ACTIONS(1106), - [anon_sym_GT_GT] = ACTIONS(1106), - [anon_sym_PLUS] = ACTIONS(1108), - [anon_sym_DASH] = ACTIONS(1108), - [anon_sym_SLASH] = ACTIONS(1082), - [anon_sym_PERCENT] = ACTIONS(1082), - [anon_sym_DASH_DASH] = ACTIONS(1044), - [anon_sym_PLUS_PLUS] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1046), - [anon_sym_DASH_GT] = ACTIONS(1046), - [sym_comment] = ACTIONS(37), + [sym_compound_statement] = STATE(943), + [sym_labeled_statement] = STATE(943), + [sym_expression_statement] = STATE(943), + [sym_if_statement] = STATE(943), + [sym_switch_statement] = STATE(943), + [sym_case_statement] = STATE(943), + [sym_while_statement] = STATE(943), + [sym_do_statement] = STATE(943), + [sym_for_statement] = STATE(943), + [sym_return_statement] = STATE(943), + [sym_break_statement] = STATE(943), + [sym_continue_statement] = STATE(943), + [sym_goto_statement] = STATE(943), + [sym__expression] = STATE(372), + [sym_comma_expression] = STATE(373), + [sym_conditional_expression] = STATE(372), + [sym_assignment_expression] = STATE(372), + [sym_pointer_expression] = STATE(372), + [sym_logical_expression] = STATE(372), + [sym_bitwise_expression] = STATE(372), + [sym_equality_expression] = STATE(372), + [sym_relational_expression] = STATE(372), + [sym_shift_expression] = STATE(372), + [sym_math_expression] = STATE(372), + [sym_cast_expression] = STATE(372), + [sym_sizeof_expression] = STATE(372), + [sym_subscript_expression] = STATE(372), + [sym_call_expression] = STATE(372), + [sym_field_expression] = STATE(372), + [sym_compound_literal_expression] = STATE(372), + [sym_parenthesized_expression] = STATE(372), + [sym_char_literal] = STATE(372), + [sym_concatenated_string] = STATE(372), + [sym_string_literal] = STATE(374), + [anon_sym_SEMI] = ACTIONS(928), + [anon_sym_LBRACE] = ACTIONS(439), + [anon_sym_LPAREN2] = ACTIONS(936), + [anon_sym_STAR] = ACTIONS(938), + [anon_sym_if] = ACTIONS(2587), + [anon_sym_switch] = ACTIONS(2589), + [anon_sym_case] = ACTIONS(2591), + [anon_sym_default] = ACTIONS(2593), + [anon_sym_while] = ACTIONS(2595), + [anon_sym_do] = ACTIONS(1466), + [anon_sym_for] = ACTIONS(2597), + [anon_sym_return] = ACTIONS(954), + [anon_sym_break] = ACTIONS(956), + [anon_sym_continue] = ACTIONS(958), + [anon_sym_goto] = ACTIONS(960), + [anon_sym_AMP] = ACTIONS(938), + [anon_sym_BANG] = ACTIONS(962), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_DASH_DASH] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(968), + [anon_sym_sizeof] = ACTIONS(970), + [sym_number_literal] = ACTIONS(972), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(974), + [sym_false] = ACTIONS(974), + [sym_null] = ACTIONS(974), + [sym_identifier] = ACTIONS(2599), + [sym_comment] = ACTIONS(59), }, [781] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(607), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(607), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(607), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(607), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(607), - [sym_preproc_directive] = ACTIONS(607), - [anon_sym_SEMI] = ACTIONS(605), - [anon_sym_typedef] = ACTIONS(607), - [anon_sym_extern] = ACTIONS(607), - [anon_sym_LBRACE] = ACTIONS(605), - [anon_sym_RBRACE] = ACTIONS(605), - [anon_sym_LPAREN2] = ACTIONS(605), - [anon_sym_STAR] = ACTIONS(605), - [anon_sym_static] = ACTIONS(607), - [anon_sym_auto] = ACTIONS(607), - [anon_sym_register] = ACTIONS(607), - [anon_sym_inline] = ACTIONS(607), - [anon_sym_const] = ACTIONS(607), - [anon_sym_restrict] = ACTIONS(607), - [anon_sym_volatile] = ACTIONS(607), - [anon_sym__Atomic] = ACTIONS(607), - [anon_sym_unsigned] = ACTIONS(607), - [anon_sym_long] = ACTIONS(607), - [anon_sym_short] = ACTIONS(607), - [sym_primitive_type] = ACTIONS(607), - [anon_sym_enum] = ACTIONS(607), - [anon_sym_struct] = ACTIONS(607), - [anon_sym_union] = ACTIONS(607), - [anon_sym_if] = ACTIONS(607), - [anon_sym_switch] = ACTIONS(607), - [anon_sym_case] = ACTIONS(607), - [anon_sym_default] = ACTIONS(607), - [anon_sym_while] = ACTIONS(607), - [anon_sym_do] = ACTIONS(607), - [anon_sym_for] = ACTIONS(607), - [anon_sym_return] = ACTIONS(607), - [anon_sym_break] = ACTIONS(607), - [anon_sym_continue] = ACTIONS(607), - [anon_sym_goto] = ACTIONS(607), - [anon_sym_AMP] = ACTIONS(605), - [anon_sym_BANG] = ACTIONS(605), - [anon_sym_TILDE] = ACTIONS(605), - [anon_sym_PLUS] = ACTIONS(607), - [anon_sym_DASH] = ACTIONS(607), - [anon_sym_DASH_DASH] = ACTIONS(605), - [anon_sym_PLUS_PLUS] = ACTIONS(605), - [anon_sym_sizeof] = ACTIONS(607), - [sym_number_literal] = ACTIONS(605), - [anon_sym_SQUOTE] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [sym_true] = ACTIONS(607), - [sym_false] = ACTIONS(607), - [sym_null] = ACTIONS(607), - [sym_identifier] = ACTIONS(607), - [sym_comment] = ACTIONS(37), + [sym_compound_statement] = STATE(774), + [sym_labeled_statement] = STATE(774), + [sym_expression_statement] = STATE(774), + [sym_if_statement] = STATE(774), + [sym_switch_statement] = STATE(774), + [sym_case_statement] = STATE(774), + [sym_while_statement] = STATE(774), + [sym_do_statement] = STATE(774), + [sym_for_statement] = STATE(774), + [sym_return_statement] = STATE(774), + [sym_break_statement] = STATE(774), + [sym_continue_statement] = STATE(774), + [sym_goto_statement] = STATE(774), + [sym__expression] = STATE(372), + [sym_comma_expression] = STATE(373), + [sym_conditional_expression] = STATE(372), + [sym_assignment_expression] = STATE(372), + [sym_pointer_expression] = STATE(372), + [sym_logical_expression] = STATE(372), + [sym_bitwise_expression] = STATE(372), + [sym_equality_expression] = STATE(372), + [sym_relational_expression] = STATE(372), + [sym_shift_expression] = STATE(372), + [sym_math_expression] = STATE(372), + [sym_cast_expression] = STATE(372), + [sym_sizeof_expression] = STATE(372), + [sym_subscript_expression] = STATE(372), + [sym_call_expression] = STATE(372), + [sym_field_expression] = STATE(372), + [sym_compound_literal_expression] = STATE(372), + [sym_parenthesized_expression] = STATE(372), + [sym_char_literal] = STATE(372), + [sym_concatenated_string] = STATE(372), + [sym_string_literal] = STATE(374), + [anon_sym_SEMI] = ACTIONS(928), + [anon_sym_LBRACE] = ACTIONS(439), + [anon_sym_LPAREN2] = ACTIONS(936), + [anon_sym_STAR] = ACTIONS(938), + [anon_sym_if] = ACTIONS(1456), + [anon_sym_switch] = ACTIONS(1458), + [anon_sym_case] = ACTIONS(1460), + [anon_sym_default] = ACTIONS(1462), + [anon_sym_while] = ACTIONS(1464), + [anon_sym_do] = ACTIONS(1466), + [anon_sym_for] = ACTIONS(1468), + [anon_sym_return] = ACTIONS(954), + [anon_sym_break] = ACTIONS(956), + [anon_sym_continue] = ACTIONS(958), + [anon_sym_goto] = ACTIONS(960), + [anon_sym_AMP] = ACTIONS(938), + [anon_sym_BANG] = ACTIONS(962), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_DASH_DASH] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(968), + [anon_sym_sizeof] = ACTIONS(970), + [sym_number_literal] = ACTIONS(972), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(974), + [sym_false] = ACTIONS(974), + [sym_null] = ACTIONS(974), + [sym_identifier] = ACTIONS(1470), + [sym_comment] = ACTIONS(59), }, [782] = { - [sym_preproc_include] = STATE(916), - [sym_preproc_def] = STATE(916), - [sym_preproc_function_def] = STATE(916), - [sym_preproc_call] = STATE(916), - [sym_preproc_if_in_compound_statement] = STATE(916), - [sym_preproc_ifdef_in_compound_statement] = STATE(916), - [sym_preproc_else_in_compound_statement] = STATE(915), - [sym_preproc_elif_in_compound_statement] = STATE(915), - [sym_declaration] = STATE(916), - [sym_type_definition] = STATE(916), - [sym__declaration_specifiers] = STATE(593), - [sym_compound_statement] = STATE(916), - [sym_storage_class_specifier] = STATE(19), - [sym_type_qualifier] = STATE(19), - [sym__type_specifier] = STATE(17), - [sym_sized_type_specifier] = STATE(17), - [sym_enum_specifier] = STATE(17), - [sym_struct_specifier] = STATE(17), - [sym_union_specifier] = STATE(17), - [sym_labeled_statement] = STATE(916), - [sym_expression_statement] = STATE(916), - [sym_if_statement] = STATE(916), - [sym_switch_statement] = STATE(916), - [sym_case_statement] = STATE(916), - [sym_while_statement] = STATE(916), - [sym_do_statement] = STATE(916), - [sym_for_statement] = STATE(916), - [sym_return_statement] = STATE(916), - [sym_break_statement] = STATE(916), - [sym_continue_statement] = STATE(916), - [sym_goto_statement] = STATE(916), - [sym__expression] = STATE(594), - [sym_comma_expression] = STATE(595), - [sym_conditional_expression] = STATE(594), - [sym_assignment_expression] = STATE(594), - [sym_pointer_expression] = STATE(594), - [sym_logical_expression] = STATE(594), - [sym_bitwise_expression] = STATE(594), - [sym_equality_expression] = STATE(594), - [sym_relational_expression] = STATE(594), - [sym_shift_expression] = STATE(594), - [sym_math_expression] = STATE(594), - [sym_cast_expression] = STATE(594), - [sym_sizeof_expression] = STATE(594), - [sym_subscript_expression] = STATE(594), - [sym_call_expression] = STATE(594), - [sym_field_expression] = STATE(594), - [sym_compound_literal_expression] = STATE(594), - [sym_parenthesized_expression] = STATE(594), - [sym_char_literal] = STATE(594), - [sym_concatenated_string] = STATE(594), - [sym_string_literal] = STATE(230), - [sym__empty_declaration] = STATE(916), - [sym_macro_type_specifier] = STATE(17), - [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(916), - [aux_sym__declaration_specifiers_repeat1] = STATE(19), - [aux_sym_sized_type_specifier_repeat1] = STATE(20), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(127), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(129), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1385), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2483), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1389), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1389), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1391), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1393), - [sym_preproc_directive] = ACTIONS(141), - [anon_sym_SEMI] = ACTIONS(1395), - [anon_sym_typedef] = ACTIONS(143), - [anon_sym_extern] = ACTIONS(21), - [anon_sym_LBRACE] = ACTIONS(678), - [anon_sym_LPAREN2] = ACTIONS(507), - [anon_sym_STAR] = ACTIONS(509), - [anon_sym_static] = ACTIONS(21), - [anon_sym_auto] = ACTIONS(21), - [anon_sym_register] = ACTIONS(21), - [anon_sym_inline] = ACTIONS(21), - [anon_sym_const] = ACTIONS(23), - [anon_sym_restrict] = ACTIONS(23), - [anon_sym_volatile] = ACTIONS(23), - [anon_sym__Atomic] = ACTIONS(23), - [anon_sym_unsigned] = ACTIONS(25), - [anon_sym_long] = ACTIONS(25), - [anon_sym_short] = ACTIONS(25), - [sym_primitive_type] = ACTIONS(27), - [anon_sym_enum] = ACTIONS(29), - [anon_sym_struct] = ACTIONS(31), - [anon_sym_union] = ACTIONS(33), - [anon_sym_if] = ACTIONS(1397), - [anon_sym_switch] = ACTIONS(1399), - [anon_sym_case] = ACTIONS(1401), - [anon_sym_default] = ACTIONS(1403), - [anon_sym_while] = ACTIONS(1405), - [anon_sym_do] = ACTIONS(1407), - [anon_sym_for] = ACTIONS(1409), - [anon_sym_return] = ACTIONS(1411), - [anon_sym_break] = ACTIONS(1413), - [anon_sym_continue] = ACTIONS(1415), - [anon_sym_goto] = ACTIONS(1417), - [anon_sym_AMP] = ACTIONS(509), - [anon_sym_BANG] = ACTIONS(533), - [anon_sym_TILDE] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DASH] = ACTIONS(537), - [anon_sym_DASH_DASH] = ACTIONS(539), - [anon_sym_PLUS_PLUS] = ACTIONS(539), - [anon_sym_sizeof] = ACTIONS(541), - [sym_number_literal] = ACTIONS(1419), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(1421), - [sym_false] = ACTIONS(1421), - [sym_null] = ACTIONS(1421), - [sym_identifier] = ACTIONS(1423), - [sym_comment] = ACTIONS(37), + [sym_argument_list] = STATE(98), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(1054), + [anon_sym_LBRACK] = ACTIONS(188), + [anon_sym_EQ] = ACTIONS(1056), + [anon_sym_COLON] = ACTIONS(2601), + [anon_sym_QMARK] = ACTIONS(1060), + [anon_sym_STAR_EQ] = ACTIONS(1062), + [anon_sym_SLASH_EQ] = ACTIONS(1062), + [anon_sym_PERCENT_EQ] = ACTIONS(1062), + [anon_sym_PLUS_EQ] = ACTIONS(1062), + [anon_sym_DASH_EQ] = ACTIONS(1062), + [anon_sym_LT_LT_EQ] = ACTIONS(1062), + [anon_sym_GT_GT_EQ] = ACTIONS(1062), + [anon_sym_AMP_EQ] = ACTIONS(1062), + [anon_sym_CARET_EQ] = ACTIONS(1062), + [anon_sym_PIPE_EQ] = ACTIONS(1062), + [anon_sym_AMP] = ACTIONS(1064), + [anon_sym_PIPE_PIPE] = ACTIONS(1066), + [anon_sym_AMP_AMP] = ACTIONS(1068), + [anon_sym_PIPE] = ACTIONS(1070), + [anon_sym_CARET] = ACTIONS(1072), + [anon_sym_EQ_EQ] = ACTIONS(1074), + [anon_sym_BANG_EQ] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(1076), + [anon_sym_GT] = ACTIONS(1076), + [anon_sym_LT_EQ] = ACTIONS(1078), + [anon_sym_GT_EQ] = ACTIONS(1078), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_GT_GT] = ACTIONS(1080), + [anon_sym_PLUS] = ACTIONS(1082), + [anon_sym_DASH] = ACTIONS(1082), + [anon_sym_SLASH] = ACTIONS(1054), + [anon_sym_PERCENT] = ACTIONS(1054), + [anon_sym_DASH_DASH] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(216), + [anon_sym_DOT] = ACTIONS(218), + [anon_sym_DASH_GT] = ACTIONS(218), + [sym_comment] = ACTIONS(59), }, [783] = { - [sym_preproc_include] = STATE(919), - [sym_preproc_def] = STATE(919), - [sym_preproc_function_def] = STATE(919), - [sym_preproc_call] = STATE(919), - [sym_preproc_if_in_compound_statement] = STATE(919), - [sym_preproc_ifdef_in_compound_statement] = STATE(919), - [sym_preproc_else_in_compound_statement] = STATE(918), - [sym_preproc_elif_in_compound_statement] = STATE(918), - [sym_declaration] = STATE(919), - [sym_type_definition] = STATE(919), - [sym__declaration_specifiers] = STATE(593), - [sym_compound_statement] = STATE(919), - [sym_storage_class_specifier] = STATE(19), - [sym_type_qualifier] = STATE(19), - [sym__type_specifier] = STATE(17), - [sym_sized_type_specifier] = STATE(17), - [sym_enum_specifier] = STATE(17), - [sym_struct_specifier] = STATE(17), - [sym_union_specifier] = STATE(17), - [sym_labeled_statement] = STATE(919), - [sym_expression_statement] = STATE(919), - [sym_if_statement] = STATE(919), - [sym_switch_statement] = STATE(919), - [sym_case_statement] = STATE(919), - [sym_while_statement] = STATE(919), - [sym_do_statement] = STATE(919), - [sym_for_statement] = STATE(919), - [sym_return_statement] = STATE(919), - [sym_break_statement] = STATE(919), - [sym_continue_statement] = STATE(919), - [sym_goto_statement] = STATE(919), - [sym__expression] = STATE(594), - [sym_comma_expression] = STATE(595), - [sym_conditional_expression] = STATE(594), - [sym_assignment_expression] = STATE(594), - [sym_pointer_expression] = STATE(594), - [sym_logical_expression] = STATE(594), - [sym_bitwise_expression] = STATE(594), - [sym_equality_expression] = STATE(594), - [sym_relational_expression] = STATE(594), - [sym_shift_expression] = STATE(594), - [sym_math_expression] = STATE(594), - [sym_cast_expression] = STATE(594), - [sym_sizeof_expression] = STATE(594), - [sym_subscript_expression] = STATE(594), - [sym_call_expression] = STATE(594), - [sym_field_expression] = STATE(594), - [sym_compound_literal_expression] = STATE(594), - [sym_parenthesized_expression] = STATE(594), - [sym_char_literal] = STATE(594), - [sym_concatenated_string] = STATE(594), - [sym_string_literal] = STATE(230), - [sym__empty_declaration] = STATE(919), - [sym_macro_type_specifier] = STATE(17), - [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(919), - [aux_sym__declaration_specifiers_repeat1] = STATE(19), - [aux_sym_sized_type_specifier_repeat1] = STATE(20), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(127), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(129), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1385), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2485), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1389), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1389), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1391), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1393), - [sym_preproc_directive] = ACTIONS(141), - [anon_sym_SEMI] = ACTIONS(1395), - [anon_sym_typedef] = ACTIONS(143), - [anon_sym_extern] = ACTIONS(21), - [anon_sym_LBRACE] = ACTIONS(678), - [anon_sym_LPAREN2] = ACTIONS(507), - [anon_sym_STAR] = ACTIONS(509), - [anon_sym_static] = ACTIONS(21), - [anon_sym_auto] = ACTIONS(21), - [anon_sym_register] = ACTIONS(21), - [anon_sym_inline] = ACTIONS(21), - [anon_sym_const] = ACTIONS(23), - [anon_sym_restrict] = ACTIONS(23), - [anon_sym_volatile] = ACTIONS(23), - [anon_sym__Atomic] = ACTIONS(23), - [anon_sym_unsigned] = ACTIONS(25), - [anon_sym_long] = ACTIONS(25), - [anon_sym_short] = ACTIONS(25), - [sym_primitive_type] = ACTIONS(27), - [anon_sym_enum] = ACTIONS(29), - [anon_sym_struct] = ACTIONS(31), - [anon_sym_union] = ACTIONS(33), - [anon_sym_if] = ACTIONS(1397), - [anon_sym_switch] = ACTIONS(1399), - [anon_sym_case] = ACTIONS(1401), - [anon_sym_default] = ACTIONS(1403), - [anon_sym_while] = ACTIONS(1405), - [anon_sym_do] = ACTIONS(1407), - [anon_sym_for] = ACTIONS(1409), - [anon_sym_return] = ACTIONS(1411), - [anon_sym_break] = ACTIONS(1413), - [anon_sym_continue] = ACTIONS(1415), - [anon_sym_goto] = ACTIONS(1417), - [anon_sym_AMP] = ACTIONS(509), - [anon_sym_BANG] = ACTIONS(533), - [anon_sym_TILDE] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DASH] = ACTIONS(537), - [anon_sym_DASH_DASH] = ACTIONS(539), - [anon_sym_PLUS_PLUS] = ACTIONS(539), - [anon_sym_sizeof] = ACTIONS(541), - [sym_number_literal] = ACTIONS(1419), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(1421), - [sym_false] = ACTIONS(1421), - [sym_null] = ACTIONS(1421), - [sym_identifier] = ACTIONS(1423), - [sym_comment] = ACTIONS(37), + [sym_declaration] = STATE(777), + [sym_type_definition] = STATE(777), + [sym__declaration_specifiers] = STATE(778), + [sym_compound_statement] = STATE(777), + [sym_storage_class_specifier] = STATE(142), + [sym_type_qualifier] = STATE(142), + [sym__type_specifier] = STATE(141), + [sym_sized_type_specifier] = STATE(141), + [sym_enum_specifier] = STATE(141), + [sym_struct_specifier] = STATE(141), + [sym_union_specifier] = STATE(141), + [sym_labeled_statement] = STATE(777), + [sym_expression_statement] = STATE(777), + [sym_if_statement] = STATE(777), + [sym_switch_statement] = STATE(777), + [sym_case_statement] = STATE(777), + [sym_while_statement] = STATE(777), + [sym_do_statement] = STATE(777), + [sym_for_statement] = STATE(777), + [sym_return_statement] = STATE(777), + [sym_break_statement] = STATE(777), + [sym_continue_statement] = STATE(777), + [sym_goto_statement] = STATE(777), + [sym__expression] = STATE(372), + [sym_comma_expression] = STATE(373), + [sym_conditional_expression] = STATE(372), + [sym_assignment_expression] = STATE(372), + [sym_pointer_expression] = STATE(372), + [sym_logical_expression] = STATE(372), + [sym_bitwise_expression] = STATE(372), + [sym_equality_expression] = STATE(372), + [sym_relational_expression] = STATE(372), + [sym_shift_expression] = STATE(372), + [sym_math_expression] = STATE(372), + [sym_cast_expression] = STATE(372), + [sym_sizeof_expression] = STATE(372), + [sym_subscript_expression] = STATE(372), + [sym_call_expression] = STATE(372), + [sym_field_expression] = STATE(372), + [sym_compound_literal_expression] = STATE(372), + [sym_parenthesized_expression] = STATE(372), + [sym_char_literal] = STATE(372), + [sym_concatenated_string] = STATE(372), + [sym_string_literal] = STATE(374), + [sym_macro_type_specifier] = STATE(141), + [aux_sym__declaration_specifiers_repeat1] = STATE(142), + [aux_sym_sized_type_specifier_repeat1] = STATE(143), + [anon_sym_SEMI] = ACTIONS(928), + [anon_sym_typedef] = ACTIONS(17), + [anon_sym_extern] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(439), + [anon_sym_LPAREN2] = ACTIONS(936), + [anon_sym_STAR] = ACTIONS(938), + [anon_sym_static] = ACTIONS(25), + [anon_sym_auto] = ACTIONS(25), + [anon_sym_register] = ACTIONS(25), + [anon_sym_inline] = ACTIONS(25), + [anon_sym_const] = ACTIONS(27), + [anon_sym_restrict] = ACTIONS(27), + [anon_sym_volatile] = ACTIONS(27), + [anon_sym__Atomic] = ACTIONS(27), + [anon_sym_unsigned] = ACTIONS(294), + [anon_sym_long] = ACTIONS(294), + [anon_sym_short] = ACTIONS(294), + [sym_primitive_type] = ACTIONS(296), + [anon_sym_enum] = ACTIONS(33), + [anon_sym_struct] = ACTIONS(35), + [anon_sym_union] = ACTIONS(37), + [anon_sym_if] = ACTIONS(1456), + [anon_sym_switch] = ACTIONS(1458), + [anon_sym_case] = ACTIONS(1460), + [anon_sym_default] = ACTIONS(1462), + [anon_sym_while] = ACTIONS(1464), + [anon_sym_do] = ACTIONS(1466), + [anon_sym_for] = ACTIONS(1468), + [anon_sym_return] = ACTIONS(954), + [anon_sym_break] = ACTIONS(956), + [anon_sym_continue] = ACTIONS(958), + [anon_sym_goto] = ACTIONS(960), + [anon_sym_AMP] = ACTIONS(938), + [anon_sym_BANG] = ACTIONS(962), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_DASH_DASH] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(968), + [anon_sym_sizeof] = ACTIONS(970), + [sym_number_literal] = ACTIONS(972), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(974), + [sym_false] = ACTIONS(974), + [sym_null] = ACTIONS(974), + [sym_identifier] = ACTIONS(2603), + [sym_comment] = ACTIONS(59), }, [784] = { - [sym_preproc_arg] = ACTIONS(2487), - [sym_comment] = ACTIONS(47), + [sym_compound_statement] = STATE(779), + [sym_labeled_statement] = STATE(779), + [sym_expression_statement] = STATE(779), + [sym_if_statement] = STATE(779), + [sym_switch_statement] = STATE(779), + [sym_case_statement] = STATE(779), + [sym_while_statement] = STATE(779), + [sym_do_statement] = STATE(779), + [sym_for_statement] = STATE(779), + [sym_return_statement] = STATE(779), + [sym_break_statement] = STATE(779), + [sym_continue_statement] = STATE(779), + [sym_goto_statement] = STATE(779), + [sym__expression] = STATE(372), + [sym_comma_expression] = STATE(373), + [sym_conditional_expression] = STATE(372), + [sym_assignment_expression] = STATE(372), + [sym_pointer_expression] = STATE(372), + [sym_logical_expression] = STATE(372), + [sym_bitwise_expression] = STATE(372), + [sym_equality_expression] = STATE(372), + [sym_relational_expression] = STATE(372), + [sym_shift_expression] = STATE(372), + [sym_math_expression] = STATE(372), + [sym_cast_expression] = STATE(372), + [sym_sizeof_expression] = STATE(372), + [sym_subscript_expression] = STATE(372), + [sym_call_expression] = STATE(372), + [sym_field_expression] = STATE(372), + [sym_compound_literal_expression] = STATE(372), + [sym_parenthesized_expression] = STATE(372), + [sym_char_literal] = STATE(372), + [sym_concatenated_string] = STATE(372), + [sym_string_literal] = STATE(374), + [anon_sym_SEMI] = ACTIONS(928), + [anon_sym_LBRACE] = ACTIONS(439), + [anon_sym_LPAREN2] = ACTIONS(936), + [anon_sym_STAR] = ACTIONS(938), + [anon_sym_if] = ACTIONS(1456), + [anon_sym_switch] = ACTIONS(1458), + [anon_sym_case] = ACTIONS(1460), + [anon_sym_default] = ACTIONS(1462), + [anon_sym_while] = ACTIONS(1464), + [anon_sym_do] = ACTIONS(1466), + [anon_sym_for] = ACTIONS(1468), + [anon_sym_return] = ACTIONS(954), + [anon_sym_break] = ACTIONS(956), + [anon_sym_continue] = ACTIONS(958), + [anon_sym_goto] = ACTIONS(960), + [anon_sym_AMP] = ACTIONS(938), + [anon_sym_BANG] = ACTIONS(962), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_DASH_DASH] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(968), + [anon_sym_sizeof] = ACTIONS(970), + [sym_number_literal] = ACTIONS(972), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(974), + [sym_false] = ACTIONS(974), + [sym_null] = ACTIONS(974), + [sym_identifier] = ACTIONS(1470), + [sym_comment] = ACTIONS(59), }, [785] = { - [sym_identifier] = ACTIONS(2489), - [sym_comment] = ACTIONS(37), + [anon_sym_while] = ACTIONS(2605), + [sym_comment] = ACTIONS(59), }, [786] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(884), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(884), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(884), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(884), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(884), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(884), - [sym_preproc_directive] = ACTIONS(884), - [anon_sym_SEMI] = ACTIONS(886), - [anon_sym_typedef] = ACTIONS(884), - [anon_sym_extern] = ACTIONS(884), - [anon_sym_LBRACE] = ACTIONS(886), - [anon_sym_LPAREN2] = ACTIONS(886), - [anon_sym_STAR] = ACTIONS(886), - [anon_sym_static] = ACTIONS(884), - [anon_sym_auto] = ACTIONS(884), - [anon_sym_register] = ACTIONS(884), - [anon_sym_inline] = ACTIONS(884), - [anon_sym_const] = ACTIONS(884), - [anon_sym_restrict] = ACTIONS(884), - [anon_sym_volatile] = ACTIONS(884), - [anon_sym__Atomic] = ACTIONS(884), - [anon_sym_unsigned] = ACTIONS(884), - [anon_sym_long] = ACTIONS(884), - [anon_sym_short] = ACTIONS(884), - [sym_primitive_type] = ACTIONS(884), - [anon_sym_enum] = ACTIONS(884), - [anon_sym_struct] = ACTIONS(884), - [anon_sym_union] = ACTIONS(884), - [anon_sym_if] = ACTIONS(884), - [anon_sym_else] = ACTIONS(884), - [anon_sym_switch] = ACTIONS(884), - [anon_sym_case] = ACTIONS(884), - [anon_sym_default] = ACTIONS(884), - [anon_sym_while] = ACTIONS(884), - [anon_sym_do] = ACTIONS(884), - [anon_sym_for] = ACTIONS(884), - [anon_sym_return] = ACTIONS(884), - [anon_sym_break] = ACTIONS(884), - [anon_sym_continue] = ACTIONS(884), - [anon_sym_goto] = ACTIONS(884), - [anon_sym_AMP] = ACTIONS(886), - [anon_sym_BANG] = ACTIONS(886), - [anon_sym_TILDE] = ACTIONS(886), - [anon_sym_PLUS] = ACTIONS(884), - [anon_sym_DASH] = ACTIONS(884), - [anon_sym_DASH_DASH] = ACTIONS(886), - [anon_sym_PLUS_PLUS] = ACTIONS(886), - [anon_sym_sizeof] = ACTIONS(884), - [sym_number_literal] = ACTIONS(886), - [anon_sym_SQUOTE] = ACTIONS(886), - [anon_sym_DQUOTE] = ACTIONS(886), - [sym_true] = ACTIONS(884), - [sym_false] = ACTIONS(884), - [sym_null] = ACTIONS(884), - [sym_identifier] = ACTIONS(884), - [sym_comment] = ACTIONS(37), + [sym_declaration] = STATE(947), + [sym__declaration_specifiers] = STATE(778), + [sym_storage_class_specifier] = STATE(142), + [sym_type_qualifier] = STATE(142), + [sym__type_specifier] = STATE(141), + [sym_sized_type_specifier] = STATE(141), + [sym_enum_specifier] = STATE(141), + [sym_struct_specifier] = STATE(141), + [sym_union_specifier] = STATE(141), + [sym__expression] = STATE(948), + [sym_conditional_expression] = STATE(948), + [sym_assignment_expression] = STATE(948), + [sym_pointer_expression] = STATE(948), + [sym_logical_expression] = STATE(948), + [sym_bitwise_expression] = STATE(948), + [sym_equality_expression] = STATE(948), + [sym_relational_expression] = STATE(948), + [sym_shift_expression] = STATE(948), + [sym_math_expression] = STATE(948), + [sym_cast_expression] = STATE(948), + [sym_sizeof_expression] = STATE(948), + [sym_subscript_expression] = STATE(948), + [sym_call_expression] = STATE(948), + [sym_field_expression] = STATE(948), + [sym_compound_literal_expression] = STATE(948), + [sym_parenthesized_expression] = STATE(948), + [sym_char_literal] = STATE(948), + [sym_concatenated_string] = STATE(948), + [sym_string_literal] = STATE(534), + [sym_macro_type_specifier] = STATE(141), + [aux_sym__declaration_specifiers_repeat1] = STATE(142), + [aux_sym_sized_type_specifier_repeat1] = STATE(143), + [anon_sym_SEMI] = ACTIONS(2607), + [anon_sym_extern] = ACTIONS(25), + [anon_sym_LPAREN2] = ACTIONS(1349), + [anon_sym_STAR] = ACTIONS(1351), + [anon_sym_static] = ACTIONS(25), + [anon_sym_auto] = ACTIONS(25), + [anon_sym_register] = ACTIONS(25), + [anon_sym_inline] = ACTIONS(25), + [anon_sym_const] = ACTIONS(27), + [anon_sym_restrict] = ACTIONS(27), + [anon_sym_volatile] = ACTIONS(27), + [anon_sym__Atomic] = ACTIONS(27), + [anon_sym_unsigned] = ACTIONS(294), + [anon_sym_long] = ACTIONS(294), + [anon_sym_short] = ACTIONS(294), + [sym_primitive_type] = ACTIONS(296), + [anon_sym_enum] = ACTIONS(33), + [anon_sym_struct] = ACTIONS(35), + [anon_sym_union] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(1351), + [anon_sym_BANG] = ACTIONS(1353), + [anon_sym_TILDE] = ACTIONS(1355), + [anon_sym_PLUS] = ACTIONS(1357), + [anon_sym_DASH] = ACTIONS(1357), + [anon_sym_DASH_DASH] = ACTIONS(1359), + [anon_sym_PLUS_PLUS] = ACTIONS(1359), + [anon_sym_sizeof] = ACTIONS(1361), + [sym_number_literal] = ACTIONS(2609), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(2611), + [sym_false] = ACTIONS(2611), + [sym_null] = ACTIONS(2611), + [sym_identifier] = ACTIONS(2026), + [sym_comment] = ACTIONS(59), }, [787] = { - [sym_parenthesized_expression] = STATE(922), - [anon_sym_LPAREN2] = ACTIONS(916), - [sym_comment] = ACTIONS(37), + [sym_compound_statement] = STATE(795), + [sym_labeled_statement] = STATE(795), + [sym_expression_statement] = STATE(795), + [sym_if_statement] = STATE(795), + [sym_switch_statement] = STATE(795), + [sym_case_statement] = STATE(795), + [sym_while_statement] = STATE(795), + [sym_do_statement] = STATE(795), + [sym_for_statement] = STATE(795), + [sym_return_statement] = STATE(795), + [sym_break_statement] = STATE(795), + [sym_continue_statement] = STATE(795), + [sym_goto_statement] = STATE(795), + [sym__expression] = STATE(372), + [sym_comma_expression] = STATE(373), + [sym_conditional_expression] = STATE(372), + [sym_assignment_expression] = STATE(372), + [sym_pointer_expression] = STATE(372), + [sym_logical_expression] = STATE(372), + [sym_bitwise_expression] = STATE(372), + [sym_equality_expression] = STATE(372), + [sym_relational_expression] = STATE(372), + [sym_shift_expression] = STATE(372), + [sym_math_expression] = STATE(372), + [sym_cast_expression] = STATE(372), + [sym_sizeof_expression] = STATE(372), + [sym_subscript_expression] = STATE(372), + [sym_call_expression] = STATE(372), + [sym_field_expression] = STATE(372), + [sym_compound_literal_expression] = STATE(372), + [sym_parenthesized_expression] = STATE(372), + [sym_char_literal] = STATE(372), + [sym_concatenated_string] = STATE(372), + [sym_string_literal] = STATE(374), + [anon_sym_SEMI] = ACTIONS(928), + [anon_sym_LBRACE] = ACTIONS(439), + [anon_sym_LPAREN2] = ACTIONS(936), + [anon_sym_STAR] = ACTIONS(938), + [anon_sym_if] = ACTIONS(1456), + [anon_sym_switch] = ACTIONS(1458), + [anon_sym_case] = ACTIONS(1460), + [anon_sym_default] = ACTIONS(1462), + [anon_sym_while] = ACTIONS(1464), + [anon_sym_do] = ACTIONS(1466), + [anon_sym_for] = ACTIONS(1468), + [anon_sym_return] = ACTIONS(954), + [anon_sym_break] = ACTIONS(956), + [anon_sym_continue] = ACTIONS(958), + [anon_sym_goto] = ACTIONS(960), + [anon_sym_AMP] = ACTIONS(938), + [anon_sym_BANG] = ACTIONS(962), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_DASH_DASH] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(968), + [anon_sym_sizeof] = ACTIONS(970), + [sym_number_literal] = ACTIONS(972), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(974), + [sym_false] = ACTIONS(974), + [sym_null] = ACTIONS(974), + [sym_identifier] = ACTIONS(1470), + [sym_comment] = ACTIONS(59), }, [788] = { - [sym_parenthesized_expression] = STATE(923), - [anon_sym_LPAREN2] = ACTIONS(916), - [sym_comment] = ACTIONS(37), + [sym_parenthesized_expression] = STATE(949), + [anon_sym_LPAREN2] = ACTIONS(1448), + [sym_comment] = ACTIONS(59), }, [789] = { - [sym__expression] = STATE(924), - [sym_conditional_expression] = STATE(924), - [sym_assignment_expression] = STATE(924), - [sym_pointer_expression] = STATE(924), - [sym_logical_expression] = STATE(924), - [sym_bitwise_expression] = STATE(924), - [sym_equality_expression] = STATE(924), - [sym_relational_expression] = STATE(924), - [sym_shift_expression] = STATE(924), - [sym_math_expression] = STATE(924), - [sym_cast_expression] = STATE(924), - [sym_sizeof_expression] = STATE(924), - [sym_subscript_expression] = STATE(924), - [sym_call_expression] = STATE(924), - [sym_field_expression] = STATE(924), - [sym_compound_literal_expression] = STATE(924), - [sym_parenthesized_expression] = STATE(924), - [sym_char_literal] = STATE(924), - [sym_concatenated_string] = STATE(924), - [sym_string_literal] = STATE(386), - [anon_sym_LPAREN2] = ACTIONS(918), - [anon_sym_STAR] = ACTIONS(920), - [anon_sym_AMP] = ACTIONS(920), - [anon_sym_BANG] = ACTIONS(922), - [anon_sym_TILDE] = ACTIONS(924), - [anon_sym_PLUS] = ACTIONS(926), - [anon_sym_DASH] = ACTIONS(926), - [anon_sym_DASH_DASH] = ACTIONS(928), - [anon_sym_PLUS_PLUS] = ACTIONS(928), - [anon_sym_sizeof] = ACTIONS(930), - [sym_number_literal] = ACTIONS(2491), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(2493), - [sym_false] = ACTIONS(2493), - [sym_null] = ACTIONS(2493), - [sym_identifier] = ACTIONS(2493), - [sym_comment] = ACTIONS(37), + [sym__expression] = STATE(951), + [sym_conditional_expression] = STATE(951), + [sym_assignment_expression] = STATE(951), + [sym_pointer_expression] = STATE(951), + [sym_logical_expression] = STATE(951), + [sym_bitwise_expression] = STATE(951), + [sym_equality_expression] = STATE(951), + [sym_relational_expression] = STATE(951), + [sym_shift_expression] = STATE(951), + [sym_math_expression] = STATE(951), + [sym_cast_expression] = STATE(951), + [sym_sizeof_expression] = STATE(951), + [sym_subscript_expression] = STATE(951), + [sym_call_expression] = STATE(951), + [sym_field_expression] = STATE(951), + [sym_compound_literal_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(951), + [sym_char_literal] = STATE(951), + [sym_concatenated_string] = STATE(951), + [sym_string_literal] = STATE(534), + [anon_sym_SEMI] = ACTIONS(2613), + [anon_sym_LPAREN2] = ACTIONS(1349), + [anon_sym_STAR] = ACTIONS(1351), + [anon_sym_AMP] = ACTIONS(1351), + [anon_sym_BANG] = ACTIONS(1353), + [anon_sym_TILDE] = ACTIONS(1355), + [anon_sym_PLUS] = ACTIONS(1357), + [anon_sym_DASH] = ACTIONS(1357), + [anon_sym_DASH_DASH] = ACTIONS(1359), + [anon_sym_PLUS_PLUS] = ACTIONS(1359), + [anon_sym_sizeof] = ACTIONS(1361), + [sym_number_literal] = ACTIONS(2615), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(2617), + [sym_false] = ACTIONS(2617), + [sym_null] = ACTIONS(2617), + [sym_identifier] = ACTIONS(2617), + [sym_comment] = ACTIONS(59), }, [790] = { - [anon_sym_COLON] = ACTIONS(2495), - [sym_comment] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(166), + [anon_sym_extern] = ACTIONS(157), + [anon_sym_LPAREN2] = ACTIONS(159), + [anon_sym_STAR] = ACTIONS(163), + [anon_sym_LBRACK] = ACTIONS(166), + [anon_sym_EQ] = ACTIONS(168), + [anon_sym_static] = ACTIONS(157), + [anon_sym_auto] = ACTIONS(157), + [anon_sym_register] = ACTIONS(157), + [anon_sym_inline] = ACTIONS(157), + [anon_sym_const] = ACTIONS(157), + [anon_sym_restrict] = ACTIONS(157), + [anon_sym_volatile] = ACTIONS(157), + [anon_sym__Atomic] = ACTIONS(157), + [anon_sym_QMARK] = ACTIONS(166), + [anon_sym_STAR_EQ] = ACTIONS(166), + [anon_sym_SLASH_EQ] = ACTIONS(166), + [anon_sym_PERCENT_EQ] = ACTIONS(166), + [anon_sym_PLUS_EQ] = ACTIONS(166), + [anon_sym_DASH_EQ] = ACTIONS(166), + [anon_sym_LT_LT_EQ] = ACTIONS(166), + [anon_sym_GT_GT_EQ] = ACTIONS(166), + [anon_sym_AMP_EQ] = ACTIONS(166), + [anon_sym_CARET_EQ] = ACTIONS(166), + [anon_sym_PIPE_EQ] = ACTIONS(166), + [anon_sym_AMP] = ACTIONS(168), + [anon_sym_PIPE_PIPE] = ACTIONS(166), + [anon_sym_AMP_AMP] = ACTIONS(166), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_CARET] = ACTIONS(168), + [anon_sym_EQ_EQ] = ACTIONS(166), + [anon_sym_BANG_EQ] = ACTIONS(166), + [anon_sym_LT] = ACTIONS(168), + [anon_sym_GT] = ACTIONS(168), + [anon_sym_LT_EQ] = ACTIONS(166), + [anon_sym_GT_EQ] = ACTIONS(166), + [anon_sym_LT_LT] = ACTIONS(168), + [anon_sym_GT_GT] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(168), + [anon_sym_DASH] = ACTIONS(168), + [anon_sym_SLASH] = ACTIONS(168), + [anon_sym_PERCENT] = ACTIONS(168), + [anon_sym_DASH_DASH] = ACTIONS(166), + [anon_sym_PLUS_PLUS] = ACTIONS(166), + [anon_sym_DOT] = ACTIONS(166), + [anon_sym_DASH_GT] = ACTIONS(166), + [sym_identifier] = ACTIONS(157), + [sym_comment] = ACTIONS(59), }, [791] = { - [sym_parenthesized_expression] = STATE(926), - [anon_sym_LPAREN2] = ACTIONS(916), - [sym_comment] = ACTIONS(37), + [sym_argument_list] = STATE(98), + [anon_sym_SEMI] = ACTIONS(2619), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_LBRACK] = ACTIONS(188), + [anon_sym_EQ] = ACTIONS(1896), + [anon_sym_QMARK] = ACTIONS(1898), + [anon_sym_STAR_EQ] = ACTIONS(1900), + [anon_sym_SLASH_EQ] = ACTIONS(1900), + [anon_sym_PERCENT_EQ] = ACTIONS(1900), + [anon_sym_PLUS_EQ] = ACTIONS(1900), + [anon_sym_DASH_EQ] = ACTIONS(1900), + [anon_sym_LT_LT_EQ] = ACTIONS(1900), + [anon_sym_GT_GT_EQ] = ACTIONS(1900), + [anon_sym_AMP_EQ] = ACTIONS(1900), + [anon_sym_CARET_EQ] = ACTIONS(1900), + [anon_sym_PIPE_EQ] = ACTIONS(1900), + [anon_sym_AMP] = ACTIONS(1902), + [anon_sym_PIPE_PIPE] = ACTIONS(1904), + [anon_sym_AMP_AMP] = ACTIONS(1906), + [anon_sym_PIPE] = ACTIONS(1908), + [anon_sym_CARET] = ACTIONS(1910), + [anon_sym_EQ_EQ] = ACTIONS(1912), + [anon_sym_BANG_EQ] = ACTIONS(1912), + [anon_sym_LT] = ACTIONS(1914), + [anon_sym_GT] = ACTIONS(1914), + [anon_sym_LT_EQ] = ACTIONS(1916), + [anon_sym_GT_EQ] = ACTIONS(1916), + [anon_sym_LT_LT] = ACTIONS(1918), + [anon_sym_GT_GT] = ACTIONS(1918), + [anon_sym_PLUS] = ACTIONS(1920), + [anon_sym_DASH] = ACTIONS(1920), + [anon_sym_SLASH] = ACTIONS(1894), + [anon_sym_PERCENT] = ACTIONS(1894), + [anon_sym_DASH_DASH] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(216), + [anon_sym_DOT] = ACTIONS(218), + [anon_sym_DASH_GT] = ACTIONS(218), + [sym_comment] = ACTIONS(59), }, [792] = { - [sym_compound_statement] = STATE(927), - [sym_labeled_statement] = STATE(927), - [sym_expression_statement] = STATE(927), - [sym_if_statement] = STATE(927), - [sym_switch_statement] = STATE(927), - [sym_case_statement] = STATE(927), - [sym_while_statement] = STATE(927), - [sym_do_statement] = STATE(927), - [sym_for_statement] = STATE(927), - [sym_return_statement] = STATE(927), - [sym_break_statement] = STATE(927), - [sym_continue_statement] = STATE(927), - [sym_goto_statement] = STATE(927), - [sym__expression] = STATE(228), - [sym_comma_expression] = STATE(229), - [sym_conditional_expression] = STATE(228), - [sym_assignment_expression] = STATE(228), - [sym_pointer_expression] = STATE(228), - [sym_logical_expression] = STATE(228), - [sym_bitwise_expression] = STATE(228), - [sym_equality_expression] = STATE(228), - [sym_relational_expression] = STATE(228), - [sym_shift_expression] = STATE(228), - [sym_math_expression] = STATE(228), - [sym_cast_expression] = STATE(228), - [sym_sizeof_expression] = STATE(228), - [sym_subscript_expression] = STATE(228), - [sym_call_expression] = STATE(228), - [sym_field_expression] = STATE(228), - [sym_compound_literal_expression] = STATE(228), - [sym_parenthesized_expression] = STATE(228), - [sym_char_literal] = STATE(228), - [sym_concatenated_string] = STATE(228), - [sym_string_literal] = STATE(230), - [anon_sym_SEMI] = ACTIONS(503), - [anon_sym_LBRACE] = ACTIONS(229), - [anon_sym_LPAREN2] = ACTIONS(507), - [anon_sym_STAR] = ACTIONS(509), - [anon_sym_if] = ACTIONS(938), - [anon_sym_switch] = ACTIONS(940), - [anon_sym_case] = ACTIONS(942), - [anon_sym_default] = ACTIONS(944), - [anon_sym_while] = ACTIONS(946), - [anon_sym_do] = ACTIONS(948), - [anon_sym_for] = ACTIONS(950), - [anon_sym_return] = ACTIONS(525), - [anon_sym_break] = ACTIONS(527), - [anon_sym_continue] = ACTIONS(529), - [anon_sym_goto] = ACTIONS(531), - [anon_sym_AMP] = ACTIONS(509), - [anon_sym_BANG] = ACTIONS(533), - [anon_sym_TILDE] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DASH] = ACTIONS(537), - [anon_sym_DASH_DASH] = ACTIONS(539), - [anon_sym_PLUS_PLUS] = ACTIONS(539), - [anon_sym_sizeof] = ACTIONS(541), - [sym_number_literal] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(547), - [sym_false] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [sym_identifier] = ACTIONS(952), - [sym_comment] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(2621), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2623), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2623), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2623), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2623), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2623), + [sym_preproc_directive] = ACTIONS(2623), + [anon_sym_typedef] = ACTIONS(2623), + [anon_sym_extern] = ACTIONS(2623), + [anon_sym_LBRACE] = ACTIONS(2621), + [anon_sym_RBRACE] = ACTIONS(2621), + [anon_sym_LPAREN2] = ACTIONS(2621), + [anon_sym_STAR] = ACTIONS(2621), + [anon_sym_static] = ACTIONS(2623), + [anon_sym_auto] = ACTIONS(2623), + [anon_sym_register] = ACTIONS(2623), + [anon_sym_inline] = ACTIONS(2623), + [anon_sym_const] = ACTIONS(2623), + [anon_sym_restrict] = ACTIONS(2623), + [anon_sym_volatile] = ACTIONS(2623), + [anon_sym__Atomic] = ACTIONS(2623), + [anon_sym_unsigned] = ACTIONS(2623), + [anon_sym_long] = ACTIONS(2623), + [anon_sym_short] = ACTIONS(2623), + [sym_primitive_type] = ACTIONS(2623), + [anon_sym_enum] = ACTIONS(2623), + [anon_sym_struct] = ACTIONS(2623), + [anon_sym_union] = ACTIONS(2623), + [anon_sym_if] = ACTIONS(2623), + [anon_sym_else] = ACTIONS(2623), + [anon_sym_switch] = ACTIONS(2623), + [anon_sym_case] = ACTIONS(2623), + [anon_sym_default] = ACTIONS(2623), + [anon_sym_while] = ACTIONS(2623), + [anon_sym_do] = ACTIONS(2623), + [anon_sym_for] = ACTIONS(2623), + [anon_sym_return] = ACTIONS(2623), + [anon_sym_break] = ACTIONS(2623), + [anon_sym_continue] = ACTIONS(2623), + [anon_sym_goto] = ACTIONS(2623), + [anon_sym_AMP] = ACTIONS(2621), + [anon_sym_BANG] = ACTIONS(2621), + [anon_sym_TILDE] = ACTIONS(2621), + [anon_sym_PLUS] = ACTIONS(2623), + [anon_sym_DASH] = ACTIONS(2623), + [anon_sym_DASH_DASH] = ACTIONS(2621), + [anon_sym_PLUS_PLUS] = ACTIONS(2621), + [anon_sym_sizeof] = ACTIONS(2623), + [sym_number_literal] = ACTIONS(2621), + [anon_sym_SQUOTE] = ACTIONS(2621), + [anon_sym_DQUOTE] = ACTIONS(2621), + [sym_true] = ACTIONS(2623), + [sym_false] = ACTIONS(2623), + [sym_null] = ACTIONS(2623), + [sym_identifier] = ACTIONS(2623), + [sym_comment] = ACTIONS(59), }, [793] = { - [anon_sym_LPAREN2] = ACTIONS(2497), - [sym_comment] = ACTIONS(37), - }, - [794] = { - [sym__expression] = STATE(930), - [sym_conditional_expression] = STATE(930), - [sym_assignment_expression] = STATE(930), - [sym_pointer_expression] = STATE(930), - [sym_logical_expression] = STATE(930), - [sym_bitwise_expression] = STATE(930), - [sym_equality_expression] = STATE(930), - [sym_relational_expression] = STATE(930), - [sym_shift_expression] = STATE(930), - [sym_math_expression] = STATE(930), - [sym_cast_expression] = STATE(930), - [sym_sizeof_expression] = STATE(930), - [sym_subscript_expression] = STATE(930), - [sym_call_expression] = STATE(930), - [sym_field_expression] = STATE(930), - [sym_compound_literal_expression] = STATE(930), - [sym_parenthesized_expression] = STATE(930), - [sym_char_literal] = STATE(930), - [sym_concatenated_string] = STATE(930), - [sym_string_literal] = STATE(342), - [anon_sym_SEMI] = ACTIONS(2499), - [anon_sym_LPAREN2] = ACTIONS(780), - [anon_sym_STAR] = ACTIONS(782), - [anon_sym_AMP] = ACTIONS(782), - [anon_sym_BANG] = ACTIONS(784), - [anon_sym_TILDE] = ACTIONS(786), - [anon_sym_PLUS] = ACTIONS(788), - [anon_sym_DASH] = ACTIONS(788), - [anon_sym_DASH_DASH] = ACTIONS(790), - [anon_sym_PLUS_PLUS] = ACTIONS(790), - [anon_sym_sizeof] = ACTIONS(792), - [sym_number_literal] = ACTIONS(2501), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(2503), - [sym_false] = ACTIONS(2503), - [sym_null] = ACTIONS(2503), - [sym_identifier] = ACTIONS(2503), - [sym_comment] = ACTIONS(37), - }, - [795] = { - [anon_sym_SEMI] = ACTIONS(2505), - [sym_comment] = ACTIONS(37), - }, - [796] = { - [anon_sym_SEMI] = ACTIONS(2507), - [sym_comment] = ACTIONS(37), - }, - [797] = { - [sym_identifier] = ACTIONS(2509), - [sym_comment] = ACTIONS(37), - }, - [798] = { - [anon_sym_COMMA] = ACTIONS(990), - [anon_sym_SEMI] = ACTIONS(992), - [anon_sym_extern] = ACTIONS(79), - [anon_sym_LPAREN2] = ACTIONS(995), - [anon_sym_STAR] = ACTIONS(999), - [anon_sym_LBRACK] = ACTIONS(990), - [anon_sym_EQ] = ACTIONS(1002), - [anon_sym_static] = ACTIONS(79), - [anon_sym_auto] = ACTIONS(79), - [anon_sym_register] = ACTIONS(79), - [anon_sym_inline] = ACTIONS(79), - [anon_sym_const] = ACTIONS(79), - [anon_sym_restrict] = ACTIONS(79), - [anon_sym_volatile] = ACTIONS(79), - [anon_sym__Atomic] = ACTIONS(79), - [anon_sym_COLON] = ACTIONS(2511), - [anon_sym_QMARK] = ACTIONS(990), - [anon_sym_STAR_EQ] = ACTIONS(990), - [anon_sym_SLASH_EQ] = ACTIONS(990), - [anon_sym_PERCENT_EQ] = ACTIONS(990), - [anon_sym_PLUS_EQ] = ACTIONS(990), - [anon_sym_DASH_EQ] = ACTIONS(990), - [anon_sym_LT_LT_EQ] = ACTIONS(990), - [anon_sym_GT_GT_EQ] = ACTIONS(990), - [anon_sym_AMP_EQ] = ACTIONS(990), - [anon_sym_CARET_EQ] = ACTIONS(990), - [anon_sym_PIPE_EQ] = ACTIONS(990), - [anon_sym_AMP] = ACTIONS(1002), - [anon_sym_PIPE_PIPE] = ACTIONS(990), - [anon_sym_AMP_AMP] = ACTIONS(990), - [anon_sym_PIPE] = ACTIONS(1002), - [anon_sym_CARET] = ACTIONS(1002), - [anon_sym_EQ_EQ] = ACTIONS(990), - [anon_sym_BANG_EQ] = ACTIONS(990), - [anon_sym_LT] = ACTIONS(1002), - [anon_sym_GT] = ACTIONS(1002), - [anon_sym_LT_EQ] = ACTIONS(990), - [anon_sym_GT_EQ] = ACTIONS(990), - [anon_sym_LT_LT] = ACTIONS(1002), - [anon_sym_GT_GT] = ACTIONS(1002), - [anon_sym_PLUS] = ACTIONS(1002), - [anon_sym_DASH] = ACTIONS(1002), - [anon_sym_SLASH] = ACTIONS(1002), - [anon_sym_PERCENT] = ACTIONS(1002), - [anon_sym_DASH_DASH] = ACTIONS(990), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_DOT] = ACTIONS(990), - [anon_sym_DASH_GT] = ACTIONS(990), - [sym_identifier] = ACTIONS(79), - [sym_comment] = ACTIONS(37), - }, - [799] = { - [sym__declarator] = STATE(935), - [sym_pointer_declarator] = STATE(935), - [sym_function_declarator] = STATE(935), - [sym_array_declarator] = STATE(935), - [sym_init_declarator] = STATE(284), - [anon_sym_SEMI] = ACTIONS(658), - [anon_sym_LPAREN2] = ACTIONS(88), - [anon_sym_STAR] = ACTIONS(489), - [sym_identifier] = ACTIONS(2513), - [sym_comment] = ACTIONS(37), - }, - [800] = { - [sym_argument_list] = STATE(430), - [anon_sym_COMMA] = ACTIONS(1008), - [anon_sym_SEMI] = ACTIONS(2515), - [anon_sym_LPAREN2] = ACTIONS(1012), - [anon_sym_STAR] = ACTIONS(1014), - [anon_sym_LBRACK] = ACTIONS(1016), - [anon_sym_EQ] = ACTIONS(1018), - [anon_sym_QMARK] = ACTIONS(1020), - [anon_sym_STAR_EQ] = ACTIONS(1022), - [anon_sym_SLASH_EQ] = ACTIONS(1022), - [anon_sym_PERCENT_EQ] = ACTIONS(1022), - [anon_sym_PLUS_EQ] = ACTIONS(1022), - [anon_sym_DASH_EQ] = ACTIONS(1022), - [anon_sym_LT_LT_EQ] = ACTIONS(1022), - [anon_sym_GT_GT_EQ] = ACTIONS(1022), - [anon_sym_AMP_EQ] = ACTIONS(1022), - [anon_sym_CARET_EQ] = ACTIONS(1022), - [anon_sym_PIPE_EQ] = ACTIONS(1022), - [anon_sym_AMP] = ACTIONS(1024), - [anon_sym_PIPE_PIPE] = ACTIONS(1026), - [anon_sym_AMP_AMP] = ACTIONS(1028), - [anon_sym_PIPE] = ACTIONS(1030), - [anon_sym_CARET] = ACTIONS(1032), - [anon_sym_EQ_EQ] = ACTIONS(1034), - [anon_sym_BANG_EQ] = ACTIONS(1034), - [anon_sym_LT] = ACTIONS(1036), - [anon_sym_GT] = ACTIONS(1036), - [anon_sym_LT_EQ] = ACTIONS(1038), - [anon_sym_GT_EQ] = ACTIONS(1038), - [anon_sym_LT_LT] = ACTIONS(1040), - [anon_sym_GT_GT] = ACTIONS(1040), - [anon_sym_PLUS] = ACTIONS(1042), - [anon_sym_DASH] = ACTIONS(1042), - [anon_sym_SLASH] = ACTIONS(1014), - [anon_sym_PERCENT] = ACTIONS(1014), - [anon_sym_DASH_DASH] = ACTIONS(1044), - [anon_sym_PLUS_PLUS] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1046), - [anon_sym_DASH_GT] = ACTIONS(1046), - [sym_comment] = ACTIONS(37), - }, - [801] = { - [anon_sym_SEMI] = ACTIONS(2515), - [sym_comment] = ACTIONS(37), - }, - [802] = { - [sym_preproc_include] = STATE(937), - [sym_preproc_def] = STATE(937), - [sym_preproc_function_def] = STATE(937), - [sym_preproc_call] = STATE(937), - [sym_preproc_if_in_compound_statement] = STATE(937), - [sym_preproc_ifdef_in_compound_statement] = STATE(937), - [sym_declaration] = STATE(937), - [sym_type_definition] = STATE(937), - [sym__declaration_specifiers] = STATE(799), - [sym_compound_statement] = STATE(937), - [sym_storage_class_specifier] = STATE(19), - [sym_type_qualifier] = STATE(19), - [sym__type_specifier] = STATE(17), - [sym_sized_type_specifier] = STATE(17), - [sym_enum_specifier] = STATE(17), - [sym_struct_specifier] = STATE(17), - [sym_union_specifier] = STATE(17), - [sym_labeled_statement] = STATE(937), - [sym_expression_statement] = STATE(937), - [sym_if_statement] = STATE(937), - [sym_switch_statement] = STATE(937), - [sym_case_statement] = STATE(937), - [sym_while_statement] = STATE(937), - [sym_do_statement] = STATE(937), - [sym_for_statement] = STATE(937), - [sym_return_statement] = STATE(937), - [sym_break_statement] = STATE(937), - [sym_continue_statement] = STATE(937), - [sym_goto_statement] = STATE(937), - [sym__expression] = STATE(800), - [sym_comma_expression] = STATE(801), - [sym_conditional_expression] = STATE(800), - [sym_assignment_expression] = STATE(800), - [sym_pointer_expression] = STATE(800), - [sym_logical_expression] = STATE(800), - [sym_bitwise_expression] = STATE(800), - [sym_equality_expression] = STATE(800), - [sym_relational_expression] = STATE(800), - [sym_shift_expression] = STATE(800), - [sym_math_expression] = STATE(800), - [sym_cast_expression] = STATE(800), - [sym_sizeof_expression] = STATE(800), - [sym_subscript_expression] = STATE(800), - [sym_call_expression] = STATE(800), - [sym_field_expression] = STATE(800), - [sym_compound_literal_expression] = STATE(800), - [sym_parenthesized_expression] = STATE(800), - [sym_char_literal] = STATE(800), - [sym_concatenated_string] = STATE(800), - [sym_string_literal] = STATE(230), - [sym__empty_declaration] = STATE(937), - [sym_macro_type_specifier] = STATE(17), - [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(937), - [aux_sym__declaration_specifiers_repeat1] = STATE(19), - [aux_sym_sized_type_specifier_repeat1] = STATE(20), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(347), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(349), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2076), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2517), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2080), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2080), - [sym_preproc_directive] = ACTIONS(357), - [anon_sym_SEMI] = ACTIONS(2082), - [anon_sym_typedef] = ACTIONS(359), - [anon_sym_extern] = ACTIONS(21), - [anon_sym_LBRACE] = ACTIONS(1181), - [anon_sym_LPAREN2] = ACTIONS(507), - [anon_sym_STAR] = ACTIONS(509), - [anon_sym_static] = ACTIONS(21), - [anon_sym_auto] = ACTIONS(21), - [anon_sym_register] = ACTIONS(21), - [anon_sym_inline] = ACTIONS(21), - [anon_sym_const] = ACTIONS(23), - [anon_sym_restrict] = ACTIONS(23), - [anon_sym_volatile] = ACTIONS(23), - [anon_sym__Atomic] = ACTIONS(23), - [anon_sym_unsigned] = ACTIONS(25), - [anon_sym_long] = ACTIONS(25), - [anon_sym_short] = ACTIONS(25), - [sym_primitive_type] = ACTIONS(27), - [anon_sym_enum] = ACTIONS(29), - [anon_sym_struct] = ACTIONS(31), - [anon_sym_union] = ACTIONS(33), - [anon_sym_if] = ACTIONS(2084), - [anon_sym_switch] = ACTIONS(2086), - [anon_sym_case] = ACTIONS(2088), - [anon_sym_default] = ACTIONS(2090), - [anon_sym_while] = ACTIONS(2092), - [anon_sym_do] = ACTIONS(2094), - [anon_sym_for] = ACTIONS(2096), - [anon_sym_return] = ACTIONS(2098), - [anon_sym_break] = ACTIONS(2100), - [anon_sym_continue] = ACTIONS(2102), - [anon_sym_goto] = ACTIONS(2104), - [anon_sym_AMP] = ACTIONS(509), - [anon_sym_BANG] = ACTIONS(533), - [anon_sym_TILDE] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DASH] = ACTIONS(537), - [anon_sym_DASH_DASH] = ACTIONS(539), - [anon_sym_PLUS_PLUS] = ACTIONS(539), - [anon_sym_sizeof] = ACTIONS(541), - [sym_number_literal] = ACTIONS(2106), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(2108), - [sym_false] = ACTIONS(2108), - [sym_null] = ACTIONS(2108), - [sym_identifier] = ACTIONS(2110), - [sym_comment] = ACTIONS(37), - }, - [803] = { - [sym_preproc_include] = STATE(939), - [sym_preproc_def] = STATE(939), - [sym_preproc_function_def] = STATE(939), - [sym_preproc_call] = STATE(939), - [sym_preproc_if_in_compound_statement] = STATE(939), - [sym_preproc_ifdef_in_compound_statement] = STATE(939), - [sym_preproc_else_in_compound_statement] = STATE(938), - [sym_preproc_elif_in_compound_statement] = STATE(938), - [sym_declaration] = STATE(939), - [sym_type_definition] = STATE(939), - [sym__declaration_specifiers] = STATE(593), - [sym_compound_statement] = STATE(939), - [sym_storage_class_specifier] = STATE(19), - [sym_type_qualifier] = STATE(19), - [sym__type_specifier] = STATE(17), - [sym_sized_type_specifier] = STATE(17), - [sym_enum_specifier] = STATE(17), - [sym_struct_specifier] = STATE(17), - [sym_union_specifier] = STATE(17), - [sym_labeled_statement] = STATE(939), - [sym_expression_statement] = STATE(939), - [sym_if_statement] = STATE(939), - [sym_switch_statement] = STATE(939), - [sym_case_statement] = STATE(939), - [sym_while_statement] = STATE(939), - [sym_do_statement] = STATE(939), - [sym_for_statement] = STATE(939), - [sym_return_statement] = STATE(939), - [sym_break_statement] = STATE(939), - [sym_continue_statement] = STATE(939), - [sym_goto_statement] = STATE(939), - [sym__expression] = STATE(594), - [sym_comma_expression] = STATE(595), - [sym_conditional_expression] = STATE(594), - [sym_assignment_expression] = STATE(594), - [sym_pointer_expression] = STATE(594), - [sym_logical_expression] = STATE(594), - [sym_bitwise_expression] = STATE(594), - [sym_equality_expression] = STATE(594), - [sym_relational_expression] = STATE(594), - [sym_shift_expression] = STATE(594), - [sym_math_expression] = STATE(594), - [sym_cast_expression] = STATE(594), - [sym_sizeof_expression] = STATE(594), - [sym_subscript_expression] = STATE(594), - [sym_call_expression] = STATE(594), - [sym_field_expression] = STATE(594), - [sym_compound_literal_expression] = STATE(594), - [sym_parenthesized_expression] = STATE(594), - [sym_char_literal] = STATE(594), - [sym_concatenated_string] = STATE(594), - [sym_string_literal] = STATE(230), - [sym__empty_declaration] = STATE(939), - [sym_macro_type_specifier] = STATE(17), - [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(939), - [aux_sym__declaration_specifiers_repeat1] = STATE(19), - [aux_sym_sized_type_specifier_repeat1] = STATE(20), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(127), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(129), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1385), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2519), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1389), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1389), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1391), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1393), - [sym_preproc_directive] = ACTIONS(141), - [anon_sym_SEMI] = ACTIONS(1395), - [anon_sym_typedef] = ACTIONS(143), - [anon_sym_extern] = ACTIONS(21), - [anon_sym_LBRACE] = ACTIONS(678), - [anon_sym_LPAREN2] = ACTIONS(507), - [anon_sym_STAR] = ACTIONS(509), - [anon_sym_static] = ACTIONS(21), - [anon_sym_auto] = ACTIONS(21), - [anon_sym_register] = ACTIONS(21), - [anon_sym_inline] = ACTIONS(21), - [anon_sym_const] = ACTIONS(23), - [anon_sym_restrict] = ACTIONS(23), - [anon_sym_volatile] = ACTIONS(23), - [anon_sym__Atomic] = ACTIONS(23), - [anon_sym_unsigned] = ACTIONS(25), - [anon_sym_long] = ACTIONS(25), - [anon_sym_short] = ACTIONS(25), - [sym_primitive_type] = ACTIONS(27), - [anon_sym_enum] = ACTIONS(29), - [anon_sym_struct] = ACTIONS(31), - [anon_sym_union] = ACTIONS(33), - [anon_sym_if] = ACTIONS(1397), - [anon_sym_switch] = ACTIONS(1399), - [anon_sym_case] = ACTIONS(1401), - [anon_sym_default] = ACTIONS(1403), - [anon_sym_while] = ACTIONS(1405), - [anon_sym_do] = ACTIONS(1407), - [anon_sym_for] = ACTIONS(1409), - [anon_sym_return] = ACTIONS(1411), - [anon_sym_break] = ACTIONS(1413), - [anon_sym_continue] = ACTIONS(1415), - [anon_sym_goto] = ACTIONS(1417), - [anon_sym_AMP] = ACTIONS(509), - [anon_sym_BANG] = ACTIONS(533), - [anon_sym_TILDE] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DASH] = ACTIONS(537), - [anon_sym_DASH_DASH] = ACTIONS(539), - [anon_sym_PLUS_PLUS] = ACTIONS(539), - [anon_sym_sizeof] = ACTIONS(541), - [sym_number_literal] = ACTIONS(1419), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(1421), - [sym_false] = ACTIONS(1421), - [sym_null] = ACTIONS(1421), - [sym_identifier] = ACTIONS(1423), - [sym_comment] = ACTIONS(37), - }, - [804] = { - [sym_compound_statement] = STATE(947), - [sym_labeled_statement] = STATE(947), - [sym_expression_statement] = STATE(947), - [sym_if_statement] = STATE(947), - [sym_switch_statement] = STATE(947), - [sym_case_statement] = STATE(947), - [sym_while_statement] = STATE(947), - [sym_do_statement] = STATE(947), - [sym_for_statement] = STATE(947), - [sym_return_statement] = STATE(947), - [sym_break_statement] = STATE(947), - [sym_continue_statement] = STATE(947), - [sym_goto_statement] = STATE(947), - [sym__expression] = STATE(594), - [sym_comma_expression] = STATE(595), - [sym_conditional_expression] = STATE(594), - [sym_assignment_expression] = STATE(594), - [sym_pointer_expression] = STATE(594), - [sym_logical_expression] = STATE(594), - [sym_bitwise_expression] = STATE(594), - [sym_equality_expression] = STATE(594), - [sym_relational_expression] = STATE(594), - [sym_shift_expression] = STATE(594), - [sym_math_expression] = STATE(594), - [sym_cast_expression] = STATE(594), - [sym_sizeof_expression] = STATE(594), - [sym_subscript_expression] = STATE(594), - [sym_call_expression] = STATE(594), - [sym_field_expression] = STATE(594), - [sym_compound_literal_expression] = STATE(594), - [sym_parenthesized_expression] = STATE(594), - [sym_char_literal] = STATE(594), - [sym_concatenated_string] = STATE(594), - [sym_string_literal] = STATE(230), - [anon_sym_SEMI] = ACTIONS(1395), - [anon_sym_LBRACE] = ACTIONS(678), - [anon_sym_LPAREN2] = ACTIONS(507), - [anon_sym_STAR] = ACTIONS(509), - [anon_sym_if] = ACTIONS(2521), - [anon_sym_switch] = ACTIONS(2523), - [anon_sym_case] = ACTIONS(2525), - [anon_sym_default] = ACTIONS(2527), - [anon_sym_while] = ACTIONS(2529), - [anon_sym_do] = ACTIONS(1407), - [anon_sym_for] = ACTIONS(2531), - [anon_sym_return] = ACTIONS(1411), - [anon_sym_break] = ACTIONS(1413), - [anon_sym_continue] = ACTIONS(1415), - [anon_sym_goto] = ACTIONS(1417), - [anon_sym_AMP] = ACTIONS(509), - [anon_sym_BANG] = ACTIONS(533), - [anon_sym_TILDE] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DASH] = ACTIONS(537), - [anon_sym_DASH_DASH] = ACTIONS(539), - [anon_sym_PLUS_PLUS] = ACTIONS(539), - [anon_sym_sizeof] = ACTIONS(541), - [sym_number_literal] = ACTIONS(1419), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(1421), - [sym_false] = ACTIONS(1421), - [sym_null] = ACTIONS(1421), - [sym_identifier] = ACTIONS(2533), - [sym_comment] = ACTIONS(37), - }, - [805] = { - [sym_compound_statement] = STATE(949), - [sym_labeled_statement] = STATE(949), - [sym_expression_statement] = STATE(949), - [sym_if_statement] = STATE(949), - [sym_switch_statement] = STATE(949), - [sym_case_statement] = STATE(949), - [sym_while_statement] = STATE(949), - [sym_do_statement] = STATE(949), - [sym_for_statement] = STATE(949), - [sym_return_statement] = STATE(949), - [sym_break_statement] = STATE(949), - [sym_continue_statement] = STATE(949), - [sym_goto_statement] = STATE(949), - [sym__expression] = STATE(594), - [sym_comma_expression] = STATE(595), - [sym_conditional_expression] = STATE(594), - [sym_assignment_expression] = STATE(594), - [sym_pointer_expression] = STATE(594), - [sym_logical_expression] = STATE(594), - [sym_bitwise_expression] = STATE(594), - [sym_equality_expression] = STATE(594), - [sym_relational_expression] = STATE(594), - [sym_shift_expression] = STATE(594), - [sym_math_expression] = STATE(594), - [sym_cast_expression] = STATE(594), - [sym_sizeof_expression] = STATE(594), - [sym_subscript_expression] = STATE(594), - [sym_call_expression] = STATE(594), - [sym_field_expression] = STATE(594), - [sym_compound_literal_expression] = STATE(594), - [sym_parenthesized_expression] = STATE(594), - [sym_char_literal] = STATE(594), - [sym_concatenated_string] = STATE(594), - [sym_string_literal] = STATE(230), - [anon_sym_SEMI] = ACTIONS(1395), - [anon_sym_LBRACE] = ACTIONS(678), - [anon_sym_LPAREN2] = ACTIONS(507), - [anon_sym_STAR] = ACTIONS(509), - [anon_sym_if] = ACTIONS(1397), - [anon_sym_switch] = ACTIONS(1399), - [anon_sym_case] = ACTIONS(1401), - [anon_sym_default] = ACTIONS(1403), - [anon_sym_while] = ACTIONS(1405), - [anon_sym_do] = ACTIONS(1407), - [anon_sym_for] = ACTIONS(1409), - [anon_sym_return] = ACTIONS(1411), - [anon_sym_break] = ACTIONS(1413), - [anon_sym_continue] = ACTIONS(1415), - [anon_sym_goto] = ACTIONS(1417), - [anon_sym_AMP] = ACTIONS(509), - [anon_sym_BANG] = ACTIONS(533), - [anon_sym_TILDE] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DASH] = ACTIONS(537), - [anon_sym_DASH_DASH] = ACTIONS(539), - [anon_sym_PLUS_PLUS] = ACTIONS(539), - [anon_sym_sizeof] = ACTIONS(541), - [sym_number_literal] = ACTIONS(1419), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(1421), - [sym_false] = ACTIONS(1421), - [sym_null] = ACTIONS(1421), - [sym_identifier] = ACTIONS(2535), - [sym_comment] = ACTIONS(37), - }, - [806] = { - [sym_argument_list] = STATE(430), - [anon_sym_LPAREN2] = ACTIONS(1012), - [anon_sym_STAR] = ACTIONS(1497), - [anon_sym_LBRACK] = ACTIONS(1016), - [anon_sym_EQ] = ACTIONS(1499), - [anon_sym_COLON] = ACTIONS(2537), - [anon_sym_QMARK] = ACTIONS(1503), - [anon_sym_STAR_EQ] = ACTIONS(1505), - [anon_sym_SLASH_EQ] = ACTIONS(1505), - [anon_sym_PERCENT_EQ] = ACTIONS(1505), - [anon_sym_PLUS_EQ] = ACTIONS(1505), - [anon_sym_DASH_EQ] = ACTIONS(1505), - [anon_sym_LT_LT_EQ] = ACTIONS(1505), - [anon_sym_GT_GT_EQ] = ACTIONS(1505), - [anon_sym_AMP_EQ] = ACTIONS(1505), - [anon_sym_CARET_EQ] = ACTIONS(1505), - [anon_sym_PIPE_EQ] = ACTIONS(1505), - [anon_sym_AMP] = ACTIONS(1507), - [anon_sym_PIPE_PIPE] = ACTIONS(1509), - [anon_sym_AMP_AMP] = ACTIONS(1511), - [anon_sym_PIPE] = ACTIONS(1513), - [anon_sym_CARET] = ACTIONS(1515), - [anon_sym_EQ_EQ] = ACTIONS(1517), - [anon_sym_BANG_EQ] = ACTIONS(1517), - [anon_sym_LT] = ACTIONS(1519), - [anon_sym_GT] = ACTIONS(1519), - [anon_sym_LT_EQ] = ACTIONS(1521), - [anon_sym_GT_EQ] = ACTIONS(1521), - [anon_sym_LT_LT] = ACTIONS(1523), - [anon_sym_GT_GT] = ACTIONS(1523), - [anon_sym_PLUS] = ACTIONS(1525), - [anon_sym_DASH] = ACTIONS(1525), - [anon_sym_SLASH] = ACTIONS(1497), - [anon_sym_PERCENT] = ACTIONS(1497), - [anon_sym_DASH_DASH] = ACTIONS(1044), - [anon_sym_PLUS_PLUS] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1046), - [anon_sym_DASH_GT] = ACTIONS(1046), - [sym_comment] = ACTIONS(37), - }, - [807] = { - [sym_declaration] = STATE(952), - [sym_type_definition] = STATE(952), - [sym__declaration_specifiers] = STATE(953), - [sym_compound_statement] = STATE(952), - [sym_storage_class_specifier] = STATE(87), - [sym_type_qualifier] = STATE(87), - [sym__type_specifier] = STATE(86), - [sym_sized_type_specifier] = STATE(86), - [sym_enum_specifier] = STATE(86), - [sym_struct_specifier] = STATE(86), - [sym_union_specifier] = STATE(86), - [sym_labeled_statement] = STATE(952), - [sym_expression_statement] = STATE(952), - [sym_if_statement] = STATE(952), - [sym_switch_statement] = STATE(952), - [sym_case_statement] = STATE(952), - [sym_while_statement] = STATE(952), - [sym_do_statement] = STATE(952), - [sym_for_statement] = STATE(952), - [sym_return_statement] = STATE(952), - [sym_break_statement] = STATE(952), - [sym_continue_statement] = STATE(952), - [sym_goto_statement] = STATE(952), - [sym__expression] = STATE(594), - [sym_comma_expression] = STATE(595), - [sym_conditional_expression] = STATE(594), - [sym_assignment_expression] = STATE(594), - [sym_pointer_expression] = STATE(594), - [sym_logical_expression] = STATE(594), - [sym_bitwise_expression] = STATE(594), - [sym_equality_expression] = STATE(594), - [sym_relational_expression] = STATE(594), - [sym_shift_expression] = STATE(594), - [sym_math_expression] = STATE(594), - [sym_cast_expression] = STATE(594), - [sym_sizeof_expression] = STATE(594), - [sym_subscript_expression] = STATE(594), - [sym_call_expression] = STATE(594), - [sym_field_expression] = STATE(594), - [sym_compound_literal_expression] = STATE(594), - [sym_parenthesized_expression] = STATE(594), - [sym_char_literal] = STATE(594), - [sym_concatenated_string] = STATE(594), - [sym_string_literal] = STATE(230), - [sym_macro_type_specifier] = STATE(86), - [aux_sym__declaration_specifiers_repeat1] = STATE(87), - [aux_sym_sized_type_specifier_repeat1] = STATE(88), - [anon_sym_SEMI] = ACTIONS(1395), - [anon_sym_typedef] = ACTIONS(143), - [anon_sym_extern] = ACTIONS(21), - [anon_sym_LBRACE] = ACTIONS(678), - [anon_sym_LPAREN2] = ACTIONS(507), - [anon_sym_STAR] = ACTIONS(509), - [anon_sym_static] = ACTIONS(21), - [anon_sym_auto] = ACTIONS(21), - [anon_sym_register] = ACTIONS(21), - [anon_sym_inline] = ACTIONS(21), - [anon_sym_const] = ACTIONS(23), - [anon_sym_restrict] = ACTIONS(23), - [anon_sym_volatile] = ACTIONS(23), - [anon_sym__Atomic] = ACTIONS(23), - [anon_sym_unsigned] = ACTIONS(167), - [anon_sym_long] = ACTIONS(167), - [anon_sym_short] = ACTIONS(167), - [sym_primitive_type] = ACTIONS(169), - [anon_sym_enum] = ACTIONS(29), - [anon_sym_struct] = ACTIONS(31), - [anon_sym_union] = ACTIONS(33), - [anon_sym_if] = ACTIONS(1397), - [anon_sym_switch] = ACTIONS(1399), - [anon_sym_case] = ACTIONS(1401), - [anon_sym_default] = ACTIONS(1403), - [anon_sym_while] = ACTIONS(1405), - [anon_sym_do] = ACTIONS(1407), - [anon_sym_for] = ACTIONS(1409), - [anon_sym_return] = ACTIONS(1411), - [anon_sym_break] = ACTIONS(1413), - [anon_sym_continue] = ACTIONS(1415), - [anon_sym_goto] = ACTIONS(1417), - [anon_sym_AMP] = ACTIONS(509), - [anon_sym_BANG] = ACTIONS(533), - [anon_sym_TILDE] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DASH] = ACTIONS(537), - [anon_sym_DASH_DASH] = ACTIONS(539), - [anon_sym_PLUS_PLUS] = ACTIONS(539), - [anon_sym_sizeof] = ACTIONS(541), - [sym_number_literal] = ACTIONS(1419), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(1421), - [sym_false] = ACTIONS(1421), - [sym_null] = ACTIONS(1421), - [sym_identifier] = ACTIONS(2539), - [sym_comment] = ACTIONS(37), - }, - [808] = { - [sym_compound_statement] = STATE(954), - [sym_labeled_statement] = STATE(954), - [sym_expression_statement] = STATE(954), - [sym_if_statement] = STATE(954), - [sym_switch_statement] = STATE(954), - [sym_case_statement] = STATE(954), - [sym_while_statement] = STATE(954), - [sym_do_statement] = STATE(954), - [sym_for_statement] = STATE(954), - [sym_return_statement] = STATE(954), - [sym_break_statement] = STATE(954), - [sym_continue_statement] = STATE(954), - [sym_goto_statement] = STATE(954), - [sym__expression] = STATE(594), - [sym_comma_expression] = STATE(595), - [sym_conditional_expression] = STATE(594), - [sym_assignment_expression] = STATE(594), - [sym_pointer_expression] = STATE(594), - [sym_logical_expression] = STATE(594), - [sym_bitwise_expression] = STATE(594), - [sym_equality_expression] = STATE(594), - [sym_relational_expression] = STATE(594), - [sym_shift_expression] = STATE(594), - [sym_math_expression] = STATE(594), - [sym_cast_expression] = STATE(594), - [sym_sizeof_expression] = STATE(594), - [sym_subscript_expression] = STATE(594), - [sym_call_expression] = STATE(594), - [sym_field_expression] = STATE(594), - [sym_compound_literal_expression] = STATE(594), - [sym_parenthesized_expression] = STATE(594), - [sym_char_literal] = STATE(594), - [sym_concatenated_string] = STATE(594), - [sym_string_literal] = STATE(230), - [anon_sym_SEMI] = ACTIONS(1395), - [anon_sym_LBRACE] = ACTIONS(678), - [anon_sym_LPAREN2] = ACTIONS(507), - [anon_sym_STAR] = ACTIONS(509), - [anon_sym_if] = ACTIONS(1397), - [anon_sym_switch] = ACTIONS(1399), - [anon_sym_case] = ACTIONS(1401), - [anon_sym_default] = ACTIONS(1403), - [anon_sym_while] = ACTIONS(1405), - [anon_sym_do] = ACTIONS(1407), - [anon_sym_for] = ACTIONS(1409), - [anon_sym_return] = ACTIONS(1411), - [anon_sym_break] = ACTIONS(1413), - [anon_sym_continue] = ACTIONS(1415), - [anon_sym_goto] = ACTIONS(1417), - [anon_sym_AMP] = ACTIONS(509), - [anon_sym_BANG] = ACTIONS(533), - [anon_sym_TILDE] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DASH] = ACTIONS(537), - [anon_sym_DASH_DASH] = ACTIONS(539), - [anon_sym_PLUS_PLUS] = ACTIONS(539), - [anon_sym_sizeof] = ACTIONS(541), - [sym_number_literal] = ACTIONS(1419), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(1421), - [sym_false] = ACTIONS(1421), - [sym_null] = ACTIONS(1421), - [sym_identifier] = ACTIONS(2535), - [sym_comment] = ACTIONS(37), - }, - [809] = { - [anon_sym_while] = ACTIONS(2541), - [sym_comment] = ACTIONS(37), - }, - [810] = { - [sym_declaration] = STATE(956), - [sym__declaration_specifiers] = STATE(650), - [sym_storage_class_specifier] = STATE(87), - [sym_type_qualifier] = STATE(87), - [sym__type_specifier] = STATE(86), - [sym_sized_type_specifier] = STATE(86), - [sym_enum_specifier] = STATE(86), - [sym_struct_specifier] = STATE(86), - [sym_union_specifier] = STATE(86), - [sym__expression] = STATE(957), - [sym_conditional_expression] = STATE(957), - [sym_assignment_expression] = STATE(957), - [sym_pointer_expression] = STATE(957), - [sym_logical_expression] = STATE(957), - [sym_bitwise_expression] = STATE(957), - [sym_equality_expression] = STATE(957), - [sym_relational_expression] = STATE(957), - [sym_shift_expression] = STATE(957), - [sym_math_expression] = STATE(957), - [sym_cast_expression] = STATE(957), - [sym_sizeof_expression] = STATE(957), - [sym_subscript_expression] = STATE(957), - [sym_call_expression] = STATE(957), - [sym_field_expression] = STATE(957), - [sym_compound_literal_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(957), - [sym_char_literal] = STATE(957), - [sym_concatenated_string] = STATE(957), - [sym_string_literal] = STATE(342), - [sym_macro_type_specifier] = STATE(86), - [aux_sym__declaration_specifiers_repeat1] = STATE(87), - [aux_sym_sized_type_specifier_repeat1] = STATE(88), - [anon_sym_SEMI] = ACTIONS(2543), - [anon_sym_extern] = ACTIONS(21), - [anon_sym_LPAREN2] = ACTIONS(780), - [anon_sym_STAR] = ACTIONS(782), - [anon_sym_static] = ACTIONS(21), - [anon_sym_auto] = ACTIONS(21), - [anon_sym_register] = ACTIONS(21), - [anon_sym_inline] = ACTIONS(21), - [anon_sym_const] = ACTIONS(23), - [anon_sym_restrict] = ACTIONS(23), - [anon_sym_volatile] = ACTIONS(23), - [anon_sym__Atomic] = ACTIONS(23), - [anon_sym_unsigned] = ACTIONS(167), - [anon_sym_long] = ACTIONS(167), - [anon_sym_short] = ACTIONS(167), - [sym_primitive_type] = ACTIONS(169), - [anon_sym_enum] = ACTIONS(29), - [anon_sym_struct] = ACTIONS(31), - [anon_sym_union] = ACTIONS(33), - [anon_sym_AMP] = ACTIONS(782), - [anon_sym_BANG] = ACTIONS(784), - [anon_sym_TILDE] = ACTIONS(786), - [anon_sym_PLUS] = ACTIONS(788), - [anon_sym_DASH] = ACTIONS(788), - [anon_sym_DASH_DASH] = ACTIONS(790), - [anon_sym_PLUS_PLUS] = ACTIONS(790), - [anon_sym_sizeof] = ACTIONS(792), - [sym_number_literal] = ACTIONS(2545), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(2547), - [sym_false] = ACTIONS(2547), - [sym_null] = ACTIONS(2547), - [sym_identifier] = ACTIONS(1547), - [sym_comment] = ACTIONS(37), - }, - [811] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1549), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1549), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1549), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1549), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1549), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1549), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1549), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1549), - [sym_preproc_directive] = ACTIONS(1549), - [anon_sym_SEMI] = ACTIONS(1551), - [anon_sym_typedef] = ACTIONS(1549), - [anon_sym_extern] = ACTIONS(1549), - [anon_sym_LBRACE] = ACTIONS(1551), - [anon_sym_LPAREN2] = ACTIONS(1551), - [anon_sym_STAR] = ACTIONS(1551), - [anon_sym_static] = ACTIONS(1549), - [anon_sym_auto] = ACTIONS(1549), - [anon_sym_register] = ACTIONS(1549), - [anon_sym_inline] = ACTIONS(1549), - [anon_sym_const] = ACTIONS(1549), - [anon_sym_restrict] = ACTIONS(1549), - [anon_sym_volatile] = ACTIONS(1549), - [anon_sym__Atomic] = ACTIONS(1549), - [anon_sym_unsigned] = ACTIONS(1549), - [anon_sym_long] = ACTIONS(1549), - [anon_sym_short] = ACTIONS(1549), - [sym_primitive_type] = ACTIONS(1549), - [anon_sym_enum] = ACTIONS(1549), - [anon_sym_struct] = ACTIONS(1549), - [anon_sym_union] = ACTIONS(1549), - [anon_sym_if] = ACTIONS(1549), - [anon_sym_else] = ACTIONS(1549), - [anon_sym_switch] = ACTIONS(1549), - [anon_sym_case] = ACTIONS(1549), - [anon_sym_default] = ACTIONS(1549), - [anon_sym_while] = ACTIONS(1549), - [anon_sym_do] = ACTIONS(1549), - [anon_sym_for] = ACTIONS(1549), - [anon_sym_return] = ACTIONS(1549), - [anon_sym_break] = ACTIONS(1549), - [anon_sym_continue] = ACTIONS(1549), - [anon_sym_goto] = ACTIONS(1549), - [anon_sym_AMP] = ACTIONS(1551), - [anon_sym_BANG] = ACTIONS(1551), - [anon_sym_TILDE] = ACTIONS(1551), - [anon_sym_PLUS] = ACTIONS(1549), - [anon_sym_DASH] = ACTIONS(1549), - [anon_sym_DASH_DASH] = ACTIONS(1551), - [anon_sym_PLUS_PLUS] = ACTIONS(1551), - [anon_sym_sizeof] = ACTIONS(1549), - [sym_number_literal] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1551), - [anon_sym_DQUOTE] = ACTIONS(1551), - [sym_true] = ACTIONS(1549), - [sym_false] = ACTIONS(1549), - [sym_null] = ACTIONS(1549), - [sym_identifier] = ACTIONS(1549), - [sym_comment] = ACTIONS(37), - }, - [812] = { - [sym_argument_list] = STATE(430), - [anon_sym_SEMI] = ACTIONS(2549), - [anon_sym_LPAREN2] = ACTIONS(1012), - [anon_sym_STAR] = ACTIONS(1319), - [anon_sym_LBRACK] = ACTIONS(1016), - [anon_sym_EQ] = ACTIONS(1321), - [anon_sym_QMARK] = ACTIONS(1323), - [anon_sym_STAR_EQ] = ACTIONS(1325), - [anon_sym_SLASH_EQ] = ACTIONS(1325), - [anon_sym_PERCENT_EQ] = ACTIONS(1325), - [anon_sym_PLUS_EQ] = ACTIONS(1325), - [anon_sym_DASH_EQ] = ACTIONS(1325), - [anon_sym_LT_LT_EQ] = ACTIONS(1325), - [anon_sym_GT_GT_EQ] = ACTIONS(1325), - [anon_sym_AMP_EQ] = ACTIONS(1325), - [anon_sym_CARET_EQ] = ACTIONS(1325), - [anon_sym_PIPE_EQ] = ACTIONS(1325), - [anon_sym_AMP] = ACTIONS(1327), - [anon_sym_PIPE_PIPE] = ACTIONS(1329), - [anon_sym_AMP_AMP] = ACTIONS(1331), - [anon_sym_PIPE] = ACTIONS(1333), - [anon_sym_CARET] = ACTIONS(1335), - [anon_sym_EQ_EQ] = ACTIONS(1337), - [anon_sym_BANG_EQ] = ACTIONS(1337), - [anon_sym_LT] = ACTIONS(1339), - [anon_sym_GT] = ACTIONS(1339), - [anon_sym_LT_EQ] = ACTIONS(1341), - [anon_sym_GT_EQ] = ACTIONS(1341), - [anon_sym_LT_LT] = ACTIONS(1343), - [anon_sym_GT_GT] = ACTIONS(1343), - [anon_sym_PLUS] = ACTIONS(1345), - [anon_sym_DASH] = ACTIONS(1345), - [anon_sym_SLASH] = ACTIONS(1319), - [anon_sym_PERCENT] = ACTIONS(1319), - [anon_sym_DASH_DASH] = ACTIONS(1044), - [anon_sym_PLUS_PLUS] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1046), - [anon_sym_DASH_GT] = ACTIONS(1046), - [sym_comment] = ACTIONS(37), - }, - [813] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1555), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1555), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1555), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1555), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1555), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1555), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1555), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1555), - [sym_preproc_directive] = ACTIONS(1555), - [anon_sym_SEMI] = ACTIONS(1557), - [anon_sym_typedef] = ACTIONS(1555), - [anon_sym_extern] = ACTIONS(1555), - [anon_sym_LBRACE] = ACTIONS(1557), - [anon_sym_LPAREN2] = ACTIONS(1557), - [anon_sym_STAR] = ACTIONS(1557), - [anon_sym_static] = ACTIONS(1555), - [anon_sym_auto] = ACTIONS(1555), - [anon_sym_register] = ACTIONS(1555), - [anon_sym_inline] = ACTIONS(1555), - [anon_sym_const] = ACTIONS(1555), - [anon_sym_restrict] = ACTIONS(1555), - [anon_sym_volatile] = ACTIONS(1555), - [anon_sym__Atomic] = ACTIONS(1555), - [anon_sym_unsigned] = ACTIONS(1555), - [anon_sym_long] = ACTIONS(1555), - [anon_sym_short] = ACTIONS(1555), - [sym_primitive_type] = ACTIONS(1555), - [anon_sym_enum] = ACTIONS(1555), - [anon_sym_struct] = ACTIONS(1555), - [anon_sym_union] = ACTIONS(1555), - [anon_sym_if] = ACTIONS(1555), - [anon_sym_else] = ACTIONS(1555), - [anon_sym_switch] = ACTIONS(1555), - [anon_sym_case] = ACTIONS(1555), - [anon_sym_default] = ACTIONS(1555), - [anon_sym_while] = ACTIONS(1555), - [anon_sym_do] = ACTIONS(1555), - [anon_sym_for] = ACTIONS(1555), - [anon_sym_return] = ACTIONS(1555), - [anon_sym_break] = ACTIONS(1555), - [anon_sym_continue] = ACTIONS(1555), - [anon_sym_goto] = ACTIONS(1555), - [anon_sym_AMP] = ACTIONS(1557), - [anon_sym_BANG] = ACTIONS(1557), - [anon_sym_TILDE] = ACTIONS(1557), - [anon_sym_PLUS] = ACTIONS(1555), - [anon_sym_DASH] = ACTIONS(1555), - [anon_sym_DASH_DASH] = ACTIONS(1557), - [anon_sym_PLUS_PLUS] = ACTIONS(1557), - [anon_sym_sizeof] = ACTIONS(1555), - [sym_number_literal] = ACTIONS(1557), - [anon_sym_SQUOTE] = ACTIONS(1557), - [anon_sym_DQUOTE] = ACTIONS(1557), - [sym_true] = ACTIONS(1555), - [sym_false] = ACTIONS(1555), - [sym_null] = ACTIONS(1555), - [sym_identifier] = ACTIONS(1555), - [sym_comment] = ACTIONS(37), - }, - [814] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1559), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1559), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1559), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1559), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1559), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1559), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1559), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1559), - [sym_preproc_directive] = ACTIONS(1559), - [anon_sym_SEMI] = ACTIONS(1561), - [anon_sym_typedef] = ACTIONS(1559), - [anon_sym_extern] = ACTIONS(1559), - [anon_sym_LBRACE] = ACTIONS(1561), - [anon_sym_LPAREN2] = ACTIONS(1561), - [anon_sym_STAR] = ACTIONS(1561), - [anon_sym_static] = ACTIONS(1559), - [anon_sym_auto] = ACTIONS(1559), - [anon_sym_register] = ACTIONS(1559), - [anon_sym_inline] = ACTIONS(1559), - [anon_sym_const] = ACTIONS(1559), - [anon_sym_restrict] = ACTIONS(1559), - [anon_sym_volatile] = ACTIONS(1559), - [anon_sym__Atomic] = ACTIONS(1559), - [anon_sym_unsigned] = ACTIONS(1559), - [anon_sym_long] = ACTIONS(1559), - [anon_sym_short] = ACTIONS(1559), - [sym_primitive_type] = ACTIONS(1559), - [anon_sym_enum] = ACTIONS(1559), - [anon_sym_struct] = ACTIONS(1559), - [anon_sym_union] = ACTIONS(1559), - [anon_sym_if] = ACTIONS(1559), - [anon_sym_else] = ACTIONS(1559), - [anon_sym_switch] = ACTIONS(1559), - [anon_sym_case] = ACTIONS(1559), - [anon_sym_default] = ACTIONS(1559), - [anon_sym_while] = ACTIONS(1559), - [anon_sym_do] = ACTIONS(1559), - [anon_sym_for] = ACTIONS(1559), - [anon_sym_return] = ACTIONS(1559), - [anon_sym_break] = ACTIONS(1559), - [anon_sym_continue] = ACTIONS(1559), - [anon_sym_goto] = ACTIONS(1559), - [anon_sym_AMP] = ACTIONS(1561), - [anon_sym_BANG] = ACTIONS(1561), - [anon_sym_TILDE] = ACTIONS(1561), - [anon_sym_PLUS] = ACTIONS(1559), - [anon_sym_DASH] = ACTIONS(1559), - [anon_sym_DASH_DASH] = ACTIONS(1561), - [anon_sym_PLUS_PLUS] = ACTIONS(1561), - [anon_sym_sizeof] = ACTIONS(1559), - [sym_number_literal] = ACTIONS(1561), - [anon_sym_SQUOTE] = ACTIONS(1561), - [anon_sym_DQUOTE] = ACTIONS(1561), - [sym_true] = ACTIONS(1559), - [sym_false] = ACTIONS(1559), - [sym_null] = ACTIONS(1559), - [sym_identifier] = ACTIONS(1559), - [sym_comment] = ACTIONS(37), - }, - [815] = { - [anon_sym_SEMI] = ACTIONS(2551), - [sym_comment] = ACTIONS(37), - }, - [816] = { - [sym_compound_statement] = STATE(960), - [sym_labeled_statement] = STATE(960), - [sym_expression_statement] = STATE(960), - [sym_if_statement] = STATE(960), - [sym_switch_statement] = STATE(960), - [sym_case_statement] = STATE(960), - [sym_while_statement] = STATE(960), - [sym_do_statement] = STATE(960), - [sym_for_statement] = STATE(960), - [sym_return_statement] = STATE(960), - [sym_break_statement] = STATE(960), - [sym_continue_statement] = STATE(960), - [sym_goto_statement] = STATE(960), - [sym__expression] = STATE(594), - [sym_comma_expression] = STATE(595), - [sym_conditional_expression] = STATE(594), - [sym_assignment_expression] = STATE(594), - [sym_pointer_expression] = STATE(594), - [sym_logical_expression] = STATE(594), - [sym_bitwise_expression] = STATE(594), - [sym_equality_expression] = STATE(594), - [sym_relational_expression] = STATE(594), - [sym_shift_expression] = STATE(594), - [sym_math_expression] = STATE(594), - [sym_cast_expression] = STATE(594), - [sym_sizeof_expression] = STATE(594), - [sym_subscript_expression] = STATE(594), - [sym_call_expression] = STATE(594), - [sym_field_expression] = STATE(594), - [sym_compound_literal_expression] = STATE(594), - [sym_parenthesized_expression] = STATE(594), - [sym_char_literal] = STATE(594), - [sym_concatenated_string] = STATE(594), - [sym_string_literal] = STATE(230), - [anon_sym_SEMI] = ACTIONS(1395), - [anon_sym_LBRACE] = ACTIONS(678), - [anon_sym_LPAREN2] = ACTIONS(507), - [anon_sym_STAR] = ACTIONS(509), - [anon_sym_if] = ACTIONS(1397), - [anon_sym_switch] = ACTIONS(1399), - [anon_sym_case] = ACTIONS(1401), - [anon_sym_default] = ACTIONS(1403), - [anon_sym_while] = ACTIONS(1405), - [anon_sym_do] = ACTIONS(1407), - [anon_sym_for] = ACTIONS(1409), - [anon_sym_return] = ACTIONS(1411), - [anon_sym_break] = ACTIONS(1413), - [anon_sym_continue] = ACTIONS(1415), - [anon_sym_goto] = ACTIONS(1417), - [anon_sym_AMP] = ACTIONS(509), - [anon_sym_BANG] = ACTIONS(533), - [anon_sym_TILDE] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DASH] = ACTIONS(537), - [anon_sym_DASH_DASH] = ACTIONS(539), - [anon_sym_PLUS_PLUS] = ACTIONS(539), - [anon_sym_sizeof] = ACTIONS(541), - [sym_number_literal] = ACTIONS(1419), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(1421), - [sym_false] = ACTIONS(1421), - [sym_null] = ACTIONS(1421), - [sym_identifier] = ACTIONS(2535), - [sym_comment] = ACTIONS(37), - }, - [817] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2553), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2553), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2553), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2553), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2553), - [sym_preproc_directive] = ACTIONS(2553), - [anon_sym_SEMI] = ACTIONS(2555), - [anon_sym_typedef] = ACTIONS(2553), - [anon_sym_extern] = ACTIONS(2553), - [anon_sym_LBRACE] = ACTIONS(2555), - [anon_sym_RBRACE] = ACTIONS(2555), - [anon_sym_LPAREN2] = ACTIONS(2555), - [anon_sym_STAR] = ACTIONS(2555), - [anon_sym_static] = ACTIONS(2553), - [anon_sym_auto] = ACTIONS(2553), - [anon_sym_register] = ACTIONS(2553), - [anon_sym_inline] = ACTIONS(2553), - [anon_sym_const] = ACTIONS(2553), - [anon_sym_restrict] = ACTIONS(2553), - [anon_sym_volatile] = ACTIONS(2553), - [anon_sym__Atomic] = ACTIONS(2553), - [anon_sym_unsigned] = ACTIONS(2553), - [anon_sym_long] = ACTIONS(2553), - [anon_sym_short] = ACTIONS(2553), - [sym_primitive_type] = ACTIONS(2553), - [anon_sym_enum] = ACTIONS(2553), - [anon_sym_struct] = ACTIONS(2553), - [anon_sym_union] = ACTIONS(2553), - [anon_sym_if] = ACTIONS(2553), - [anon_sym_switch] = ACTIONS(2553), - [anon_sym_case] = ACTIONS(2553), - [anon_sym_default] = ACTIONS(2553), - [anon_sym_while] = ACTIONS(2553), - [anon_sym_do] = ACTIONS(2553), - [anon_sym_for] = ACTIONS(2553), - [anon_sym_return] = ACTIONS(2553), - [anon_sym_break] = ACTIONS(2553), - [anon_sym_continue] = ACTIONS(2553), - [anon_sym_goto] = ACTIONS(2553), - [anon_sym_AMP] = ACTIONS(2555), - [anon_sym_BANG] = ACTIONS(2555), - [anon_sym_TILDE] = ACTIONS(2555), - [anon_sym_PLUS] = ACTIONS(2553), - [anon_sym_DASH] = ACTIONS(2553), - [anon_sym_DASH_DASH] = ACTIONS(2555), - [anon_sym_PLUS_PLUS] = ACTIONS(2555), - [anon_sym_sizeof] = ACTIONS(2553), - [sym_number_literal] = ACTIONS(2555), - [anon_sym_SQUOTE] = ACTIONS(2555), - [anon_sym_DQUOTE] = ACTIONS(2555), - [sym_true] = ACTIONS(2553), - [sym_false] = ACTIONS(2553), - [sym_null] = ACTIONS(2553), - [sym_identifier] = ACTIONS(2553), - [sym_comment] = ACTIONS(37), - }, - [818] = { - [sym_parameter_list] = STATE(119), - [aux_sym_declaration_repeat1] = STATE(297), - [anon_sym_COMMA] = ACTIONS(225), - [anon_sym_SEMI] = ACTIONS(676), - [anon_sym_LPAREN2] = ACTIONS(231), - [anon_sym_LBRACK] = ACTIONS(233), - [anon_sym_EQ] = ACTIONS(235), - [sym_comment] = ACTIONS(37), - }, - [819] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1587), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1587), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1587), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1587), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1587), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1587), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1587), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1587), - [sym_preproc_directive] = ACTIONS(1587), - [anon_sym_SEMI] = ACTIONS(1589), - [anon_sym_typedef] = ACTIONS(1587), - [anon_sym_extern] = ACTIONS(1587), - [anon_sym_LBRACE] = ACTIONS(1589), - [anon_sym_LPAREN2] = ACTIONS(1589), - [anon_sym_STAR] = ACTIONS(1589), - [anon_sym_static] = ACTIONS(1587), - [anon_sym_auto] = ACTIONS(1587), - [anon_sym_register] = ACTIONS(1587), - [anon_sym_inline] = ACTIONS(1587), - [anon_sym_const] = ACTIONS(1587), - [anon_sym_restrict] = ACTIONS(1587), - [anon_sym_volatile] = ACTIONS(1587), - [anon_sym__Atomic] = ACTIONS(1587), - [anon_sym_unsigned] = ACTIONS(1587), - [anon_sym_long] = ACTIONS(1587), - [anon_sym_short] = ACTIONS(1587), - [sym_primitive_type] = ACTIONS(1587), - [anon_sym_enum] = ACTIONS(1587), - [anon_sym_struct] = ACTIONS(1587), - [anon_sym_union] = ACTIONS(1587), - [anon_sym_if] = ACTIONS(1587), - [anon_sym_else] = ACTIONS(1587), - [anon_sym_switch] = ACTIONS(1587), - [anon_sym_case] = ACTIONS(1587), - [anon_sym_default] = ACTIONS(1587), - [anon_sym_while] = ACTIONS(1587), - [anon_sym_do] = ACTIONS(1587), - [anon_sym_for] = ACTIONS(1587), - [anon_sym_return] = ACTIONS(1587), - [anon_sym_break] = ACTIONS(1587), - [anon_sym_continue] = ACTIONS(1587), - [anon_sym_goto] = ACTIONS(1587), - [anon_sym_AMP] = ACTIONS(1589), - [anon_sym_BANG] = ACTIONS(1589), - [anon_sym_TILDE] = ACTIONS(1589), - [anon_sym_PLUS] = ACTIONS(1587), - [anon_sym_DASH] = ACTIONS(1587), - [anon_sym_DASH_DASH] = ACTIONS(1589), - [anon_sym_PLUS_PLUS] = ACTIONS(1589), - [anon_sym_sizeof] = ACTIONS(1587), - [sym_number_literal] = ACTIONS(1589), - [anon_sym_SQUOTE] = ACTIONS(1589), - [anon_sym_DQUOTE] = ACTIONS(1589), - [sym_true] = ACTIONS(1587), - [sym_false] = ACTIONS(1587), - [sym_null] = ACTIONS(1587), - [sym_identifier] = ACTIONS(1587), - [sym_comment] = ACTIONS(37), - }, - [820] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2557), - [sym_comment] = ACTIONS(37), - }, - [821] = { - [sym_preproc_include] = STATE(821), - [sym_preproc_def] = STATE(821), - [sym_preproc_function_def] = STATE(821), - [sym_preproc_call] = STATE(821), - [sym_preproc_if_in_compound_statement] = STATE(821), - [sym_preproc_ifdef_in_compound_statement] = STATE(821), - [sym_declaration] = STATE(821), - [sym_type_definition] = STATE(821), - [sym__declaration_specifiers] = STATE(593), - [sym_compound_statement] = STATE(821), - [sym_storage_class_specifier] = STATE(19), - [sym_type_qualifier] = STATE(19), - [sym__type_specifier] = STATE(17), - [sym_sized_type_specifier] = STATE(17), - [sym_enum_specifier] = STATE(17), - [sym_struct_specifier] = STATE(17), - [sym_union_specifier] = STATE(17), - [sym_labeled_statement] = STATE(821), - [sym_expression_statement] = STATE(821), - [sym_if_statement] = STATE(821), - [sym_switch_statement] = STATE(821), - [sym_case_statement] = STATE(821), - [sym_while_statement] = STATE(821), - [sym_do_statement] = STATE(821), - [sym_for_statement] = STATE(821), - [sym_return_statement] = STATE(821), - [sym_break_statement] = STATE(821), - [sym_continue_statement] = STATE(821), - [sym_goto_statement] = STATE(821), - [sym__expression] = STATE(594), - [sym_comma_expression] = STATE(595), - [sym_conditional_expression] = STATE(594), - [sym_assignment_expression] = STATE(594), - [sym_pointer_expression] = STATE(594), - [sym_logical_expression] = STATE(594), - [sym_bitwise_expression] = STATE(594), - [sym_equality_expression] = STATE(594), - [sym_relational_expression] = STATE(594), - [sym_shift_expression] = STATE(594), - [sym_math_expression] = STATE(594), - [sym_cast_expression] = STATE(594), - [sym_sizeof_expression] = STATE(594), - [sym_subscript_expression] = STATE(594), - [sym_call_expression] = STATE(594), - [sym_field_expression] = STATE(594), - [sym_compound_literal_expression] = STATE(594), - [sym_parenthesized_expression] = STATE(594), - [sym_char_literal] = STATE(594), - [sym_concatenated_string] = STATE(594), - [sym_string_literal] = STATE(230), - [sym__empty_declaration] = STATE(821), - [sym_macro_type_specifier] = STATE(17), - [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(821), - [aux_sym__declaration_specifiers_repeat1] = STATE(19), - [aux_sym_sized_type_specifier_repeat1] = STATE(20), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2559), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2562), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2565), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2568), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2570), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2570), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2568), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2568), - [sym_preproc_directive] = ACTIONS(2573), - [anon_sym_SEMI] = ACTIONS(2576), - [anon_sym_typedef] = ACTIONS(2579), - [anon_sym_extern] = ACTIONS(1684), - [anon_sym_LBRACE] = ACTIONS(2582), - [anon_sym_LPAREN2] = ACTIONS(1692), - [anon_sym_STAR] = ACTIONS(1695), - [anon_sym_static] = ACTIONS(1684), - [anon_sym_auto] = ACTIONS(1684), - [anon_sym_register] = ACTIONS(1684), - [anon_sym_inline] = ACTIONS(1684), - [anon_sym_const] = ACTIONS(1698), - [anon_sym_restrict] = ACTIONS(1698), - [anon_sym_volatile] = ACTIONS(1698), - [anon_sym__Atomic] = ACTIONS(1698), - [anon_sym_unsigned] = ACTIONS(1701), - [anon_sym_long] = ACTIONS(1701), - [anon_sym_short] = ACTIONS(1701), - [sym_primitive_type] = ACTIONS(1704), - [anon_sym_enum] = ACTIONS(1707), - [anon_sym_struct] = ACTIONS(1710), - [anon_sym_union] = ACTIONS(1713), - [anon_sym_if] = ACTIONS(2585), - [anon_sym_switch] = ACTIONS(2588), - [anon_sym_case] = ACTIONS(2591), - [anon_sym_default] = ACTIONS(2594), - [anon_sym_while] = ACTIONS(2597), - [anon_sym_do] = ACTIONS(2600), - [anon_sym_for] = ACTIONS(2603), - [anon_sym_return] = ACTIONS(2606), - [anon_sym_break] = ACTIONS(2609), - [anon_sym_continue] = ACTIONS(2612), - [anon_sym_goto] = ACTIONS(2615), - [anon_sym_AMP] = ACTIONS(1695), - [anon_sym_BANG] = ACTIONS(1749), - [anon_sym_TILDE] = ACTIONS(1752), - [anon_sym_PLUS] = ACTIONS(1755), - [anon_sym_DASH] = ACTIONS(1755), - [anon_sym_DASH_DASH] = ACTIONS(1758), - [anon_sym_PLUS_PLUS] = ACTIONS(1758), - [anon_sym_sizeof] = ACTIONS(1761), - [sym_number_literal] = ACTIONS(2618), - [anon_sym_SQUOTE] = ACTIONS(1767), - [anon_sym_DQUOTE] = ACTIONS(1770), - [sym_true] = ACTIONS(2621), - [sym_false] = ACTIONS(2621), - [sym_null] = ACTIONS(2621), - [sym_identifier] = ACTIONS(2624), - [sym_comment] = ACTIONS(37), - }, - [822] = { + [anon_sym_SEMI] = ACTIONS(2625), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2627), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2627), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2627), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2627), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2627), [sym_preproc_directive] = ACTIONS(2627), - [anon_sym_SEMI] = ACTIONS(2629), [anon_sym_typedef] = ACTIONS(2627), [anon_sym_extern] = ACTIONS(2627), - [anon_sym_LBRACE] = ACTIONS(2629), - [anon_sym_RBRACE] = ACTIONS(2629), - [anon_sym_LPAREN2] = ACTIONS(2629), - [anon_sym_STAR] = ACTIONS(2629), + [anon_sym_LBRACE] = ACTIONS(2625), + [anon_sym_RBRACE] = ACTIONS(2625), + [anon_sym_LPAREN2] = ACTIONS(2625), + [anon_sym_STAR] = ACTIONS(2625), [anon_sym_static] = ACTIONS(2627), [anon_sym_auto] = ACTIONS(2627), [anon_sym_register] = ACTIONS(2627), @@ -32251,6 +32412,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(2627), [anon_sym_union] = ACTIONS(2627), [anon_sym_if] = ACTIONS(2627), + [anon_sym_else] = ACTIONS(2627), [anon_sym_switch] = ACTIONS(2627), [anon_sym_case] = ACTIONS(2627), [anon_sym_default] = ACTIONS(2627), @@ -32261,2174 +32423,3790 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(2627), [anon_sym_continue] = ACTIONS(2627), [anon_sym_goto] = ACTIONS(2627), - [anon_sym_AMP] = ACTIONS(2629), - [anon_sym_BANG] = ACTIONS(2629), - [anon_sym_TILDE] = ACTIONS(2629), + [anon_sym_AMP] = ACTIONS(2625), + [anon_sym_BANG] = ACTIONS(2625), + [anon_sym_TILDE] = ACTIONS(2625), [anon_sym_PLUS] = ACTIONS(2627), [anon_sym_DASH] = ACTIONS(2627), - [anon_sym_DASH_DASH] = ACTIONS(2629), - [anon_sym_PLUS_PLUS] = ACTIONS(2629), + [anon_sym_DASH_DASH] = ACTIONS(2625), + [anon_sym_PLUS_PLUS] = ACTIONS(2625), [anon_sym_sizeof] = ACTIONS(2627), - [sym_number_literal] = ACTIONS(2629), - [anon_sym_SQUOTE] = ACTIONS(2629), - [anon_sym_DQUOTE] = ACTIONS(2629), + [sym_number_literal] = ACTIONS(2625), + [anon_sym_SQUOTE] = ACTIONS(2625), + [anon_sym_DQUOTE] = ACTIONS(2625), [sym_true] = ACTIONS(2627), [sym_false] = ACTIONS(2627), [sym_null] = ACTIONS(2627), [sym_identifier] = ACTIONS(2627), - [sym_comment] = ACTIONS(37), + [sym_comment] = ACTIONS(59), }, - [823] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2631), - [sym_comment] = ACTIONS(37), - }, - [824] = { - [sym__expression] = STATE(838), - [sym_conditional_expression] = STATE(838), - [sym_assignment_expression] = STATE(838), - [sym_pointer_expression] = STATE(838), - [sym_logical_expression] = STATE(838), - [sym_bitwise_expression] = STATE(838), - [sym_equality_expression] = STATE(838), - [sym_relational_expression] = STATE(838), - [sym_shift_expression] = STATE(838), - [sym_math_expression] = STATE(838), - [sym_cast_expression] = STATE(838), - [sym_sizeof_expression] = STATE(838), - [sym_subscript_expression] = STATE(838), - [sym_call_expression] = STATE(838), - [sym_field_expression] = STATE(838), - [sym_compound_literal_expression] = STATE(838), - [sym_parenthesized_expression] = STATE(838), - [sym_initializer_list] = STATE(839), - [sym_char_literal] = STATE(838), - [sym_concatenated_string] = STATE(838), - [sym_string_literal] = STATE(374), - [anon_sym_LBRACE] = ACTIONS(585), - [anon_sym_LPAREN2] = ACTIONS(892), - [anon_sym_STAR] = ACTIONS(894), - [anon_sym_AMP] = ACTIONS(894), - [anon_sym_BANG] = ACTIONS(896), - [anon_sym_TILDE] = ACTIONS(898), - [anon_sym_PLUS] = ACTIONS(900), - [anon_sym_DASH] = ACTIONS(900), - [anon_sym_DASH_DASH] = ACTIONS(902), - [anon_sym_PLUS_PLUS] = ACTIONS(902), - [anon_sym_sizeof] = ACTIONS(904), - [sym_number_literal] = ACTIONS(2206), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(2208), - [sym_false] = ACTIONS(2208), - [sym_null] = ACTIONS(2208), - [sym_identifier] = ACTIONS(2208), - [sym_comment] = ACTIONS(37), + [794] = { + [anon_sym_RPAREN] = ACTIONS(2629), + [sym_comment] = ACTIONS(59), }, - [825] = { - [anon_sym_RPAREN] = ACTIONS(2633), - [sym_comment] = ACTIONS(37), + [795] = { + [anon_sym_SEMI] = ACTIONS(2631), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2633), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2633), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2633), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2633), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2633), + [sym_preproc_directive] = ACTIONS(2633), + [anon_sym_typedef] = ACTIONS(2633), + [anon_sym_extern] = ACTIONS(2633), + [anon_sym_LBRACE] = ACTIONS(2631), + [anon_sym_RBRACE] = ACTIONS(2631), + [anon_sym_LPAREN2] = ACTIONS(2631), + [anon_sym_STAR] = ACTIONS(2631), + [anon_sym_static] = ACTIONS(2633), + [anon_sym_auto] = ACTIONS(2633), + [anon_sym_register] = ACTIONS(2633), + [anon_sym_inline] = ACTIONS(2633), + [anon_sym_const] = ACTIONS(2633), + [anon_sym_restrict] = ACTIONS(2633), + [anon_sym_volatile] = ACTIONS(2633), + [anon_sym__Atomic] = ACTIONS(2633), + [anon_sym_unsigned] = ACTIONS(2633), + [anon_sym_long] = ACTIONS(2633), + [anon_sym_short] = ACTIONS(2633), + [sym_primitive_type] = ACTIONS(2633), + [anon_sym_enum] = ACTIONS(2633), + [anon_sym_struct] = ACTIONS(2633), + [anon_sym_union] = ACTIONS(2633), + [anon_sym_if] = ACTIONS(2633), + [anon_sym_else] = ACTIONS(2633), + [anon_sym_switch] = ACTIONS(2633), + [anon_sym_case] = ACTIONS(2633), + [anon_sym_default] = ACTIONS(2633), + [anon_sym_while] = ACTIONS(2633), + [anon_sym_do] = ACTIONS(2633), + [anon_sym_for] = ACTIONS(2633), + [anon_sym_return] = ACTIONS(2633), + [anon_sym_break] = ACTIONS(2633), + [anon_sym_continue] = ACTIONS(2633), + [anon_sym_goto] = ACTIONS(2633), + [anon_sym_AMP] = ACTIONS(2631), + [anon_sym_BANG] = ACTIONS(2631), + [anon_sym_TILDE] = ACTIONS(2631), + [anon_sym_PLUS] = ACTIONS(2633), + [anon_sym_DASH] = ACTIONS(2633), + [anon_sym_DASH_DASH] = ACTIONS(2631), + [anon_sym_PLUS_PLUS] = ACTIONS(2631), + [anon_sym_sizeof] = ACTIONS(2633), + [sym_number_literal] = ACTIONS(2631), + [anon_sym_SQUOTE] = ACTIONS(2631), + [anon_sym_DQUOTE] = ACTIONS(2631), + [sym_true] = ACTIONS(2633), + [sym_false] = ACTIONS(2633), + [sym_null] = ACTIONS(2633), + [sym_identifier] = ACTIONS(2633), + [sym_comment] = ACTIONS(59), }, - [826] = { - [sym_argument_list] = STATE(430), - [anon_sym_COMMA] = ACTIONS(1433), - [anon_sym_RPAREN] = ACTIONS(2338), - [anon_sym_LPAREN2] = ACTIONS(1012), - [anon_sym_STAR] = ACTIONS(1437), - [anon_sym_LBRACK] = ACTIONS(1016), - [anon_sym_EQ] = ACTIONS(1439), - [anon_sym_QMARK] = ACTIONS(1441), - [anon_sym_STAR_EQ] = ACTIONS(1443), - [anon_sym_SLASH_EQ] = ACTIONS(1443), - [anon_sym_PERCENT_EQ] = ACTIONS(1443), - [anon_sym_PLUS_EQ] = ACTIONS(1443), - [anon_sym_DASH_EQ] = ACTIONS(1443), - [anon_sym_LT_LT_EQ] = ACTIONS(1443), - [anon_sym_GT_GT_EQ] = ACTIONS(1443), - [anon_sym_AMP_EQ] = ACTIONS(1443), - [anon_sym_CARET_EQ] = ACTIONS(1443), - [anon_sym_PIPE_EQ] = ACTIONS(1443), - [anon_sym_AMP] = ACTIONS(1445), - [anon_sym_PIPE_PIPE] = ACTIONS(1447), - [anon_sym_AMP_AMP] = ACTIONS(1449), - [anon_sym_PIPE] = ACTIONS(1451), - [anon_sym_CARET] = ACTIONS(1453), - [anon_sym_EQ_EQ] = ACTIONS(1455), - [anon_sym_BANG_EQ] = ACTIONS(1455), - [anon_sym_LT] = ACTIONS(1457), - [anon_sym_GT] = ACTIONS(1457), - [anon_sym_LT_EQ] = ACTIONS(1459), - [anon_sym_GT_EQ] = ACTIONS(1459), - [anon_sym_LT_LT] = ACTIONS(1461), - [anon_sym_GT_GT] = ACTIONS(1461), - [anon_sym_PLUS] = ACTIONS(1463), - [anon_sym_DASH] = ACTIONS(1463), - [anon_sym_SLASH] = ACTIONS(1437), - [anon_sym_PERCENT] = ACTIONS(1437), - [anon_sym_DASH_DASH] = ACTIONS(1044), - [anon_sym_PLUS_PLUS] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1046), - [anon_sym_DASH_GT] = ACTIONS(1046), - [sym_comment] = ACTIONS(37), + [796] = { + [sym_argument_list] = STATE(98), + [anon_sym_SEMI] = ACTIONS(1281), + [anon_sym_COMMA] = ACTIONS(1498), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(1500), + [anon_sym_LBRACK] = ACTIONS(188), + [anon_sym_EQ] = ACTIONS(1502), + [anon_sym_QMARK] = ACTIONS(1504), + [anon_sym_STAR_EQ] = ACTIONS(1506), + [anon_sym_SLASH_EQ] = ACTIONS(1506), + [anon_sym_PERCENT_EQ] = ACTIONS(1506), + [anon_sym_PLUS_EQ] = ACTIONS(1506), + [anon_sym_DASH_EQ] = ACTIONS(1506), + [anon_sym_LT_LT_EQ] = ACTIONS(1506), + [anon_sym_GT_GT_EQ] = ACTIONS(1506), + [anon_sym_AMP_EQ] = ACTIONS(1506), + [anon_sym_CARET_EQ] = ACTIONS(1506), + [anon_sym_PIPE_EQ] = ACTIONS(1506), + [anon_sym_AMP] = ACTIONS(1508), + [anon_sym_PIPE_PIPE] = ACTIONS(1510), + [anon_sym_AMP_AMP] = ACTIONS(1512), + [anon_sym_PIPE] = ACTIONS(1514), + [anon_sym_CARET] = ACTIONS(1516), + [anon_sym_EQ_EQ] = ACTIONS(1518), + [anon_sym_BANG_EQ] = ACTIONS(1518), + [anon_sym_LT] = ACTIONS(1520), + [anon_sym_GT] = ACTIONS(1520), + [anon_sym_LT_EQ] = ACTIONS(1522), + [anon_sym_GT_EQ] = ACTIONS(1522), + [anon_sym_LT_LT] = ACTIONS(1524), + [anon_sym_GT_GT] = ACTIONS(1524), + [anon_sym_PLUS] = ACTIONS(1526), + [anon_sym_DASH] = ACTIONS(1526), + [anon_sym_SLASH] = ACTIONS(1500), + [anon_sym_PERCENT] = ACTIONS(1500), + [anon_sym_DASH_DASH] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(216), + [anon_sym_DOT] = ACTIONS(218), + [anon_sym_DASH_GT] = ACTIONS(218), + [sym_comment] = ACTIONS(59), }, - [827] = { - [sym_argument_list] = STATE(430), - [anon_sym_COMMA] = ACTIONS(2354), - [anon_sym_RPAREN] = ACTIONS(2354), - [anon_sym_LPAREN2] = ACTIONS(1012), - [anon_sym_STAR] = ACTIONS(1437), - [anon_sym_LBRACK] = ACTIONS(1016), - [anon_sym_EQ] = ACTIONS(1439), - [anon_sym_QMARK] = ACTIONS(2354), - [anon_sym_STAR_EQ] = ACTIONS(1443), - [anon_sym_SLASH_EQ] = ACTIONS(1443), - [anon_sym_PERCENT_EQ] = ACTIONS(1443), - [anon_sym_PLUS_EQ] = ACTIONS(1443), - [anon_sym_DASH_EQ] = ACTIONS(1443), - [anon_sym_LT_LT_EQ] = ACTIONS(1443), - [anon_sym_GT_GT_EQ] = ACTIONS(1443), - [anon_sym_AMP_EQ] = ACTIONS(1443), - [anon_sym_CARET_EQ] = ACTIONS(1443), - [anon_sym_PIPE_EQ] = ACTIONS(1443), - [anon_sym_AMP] = ACTIONS(1445), - [anon_sym_PIPE_PIPE] = ACTIONS(1447), - [anon_sym_AMP_AMP] = ACTIONS(1449), - [anon_sym_PIPE] = ACTIONS(1451), - [anon_sym_CARET] = ACTIONS(1453), - [anon_sym_EQ_EQ] = ACTIONS(1455), - [anon_sym_BANG_EQ] = ACTIONS(1455), - [anon_sym_LT] = ACTIONS(1457), - [anon_sym_GT] = ACTIONS(1457), - [anon_sym_LT_EQ] = ACTIONS(1459), - [anon_sym_GT_EQ] = ACTIONS(1459), - [anon_sym_LT_LT] = ACTIONS(1461), - [anon_sym_GT_GT] = ACTIONS(1461), - [anon_sym_PLUS] = ACTIONS(1463), - [anon_sym_DASH] = ACTIONS(1463), - [anon_sym_SLASH] = ACTIONS(1437), - [anon_sym_PERCENT] = ACTIONS(1437), - [anon_sym_DASH_DASH] = ACTIONS(1044), - [anon_sym_PLUS_PLUS] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1046), - [anon_sym_DASH_GT] = ACTIONS(1046), - [sym_comment] = ACTIONS(37), + [797] = { + [sym_argument_list] = STATE(98), + [anon_sym_SEMI] = ACTIONS(1046), + [anon_sym_COMMA] = ACTIONS(1046), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(1500), + [anon_sym_LBRACK] = ACTIONS(188), + [anon_sym_EQ] = ACTIONS(1502), + [anon_sym_QMARK] = ACTIONS(1046), + [anon_sym_STAR_EQ] = ACTIONS(1506), + [anon_sym_SLASH_EQ] = ACTIONS(1506), + [anon_sym_PERCENT_EQ] = ACTIONS(1506), + [anon_sym_PLUS_EQ] = ACTIONS(1506), + [anon_sym_DASH_EQ] = ACTIONS(1506), + [anon_sym_LT_LT_EQ] = ACTIONS(1506), + [anon_sym_GT_GT_EQ] = ACTIONS(1506), + [anon_sym_AMP_EQ] = ACTIONS(1506), + [anon_sym_CARET_EQ] = ACTIONS(1506), + [anon_sym_PIPE_EQ] = ACTIONS(1506), + [anon_sym_AMP] = ACTIONS(1508), + [anon_sym_PIPE_PIPE] = ACTIONS(1510), + [anon_sym_AMP_AMP] = ACTIONS(1512), + [anon_sym_PIPE] = ACTIONS(1514), + [anon_sym_CARET] = ACTIONS(1516), + [anon_sym_EQ_EQ] = ACTIONS(1518), + [anon_sym_BANG_EQ] = ACTIONS(1518), + [anon_sym_LT] = ACTIONS(1520), + [anon_sym_GT] = ACTIONS(1520), + [anon_sym_LT_EQ] = ACTIONS(1522), + [anon_sym_GT_EQ] = ACTIONS(1522), + [anon_sym_LT_LT] = ACTIONS(1524), + [anon_sym_GT_GT] = ACTIONS(1524), + [anon_sym_PLUS] = ACTIONS(1526), + [anon_sym_DASH] = ACTIONS(1526), + [anon_sym_SLASH] = ACTIONS(1500), + [anon_sym_PERCENT] = ACTIONS(1500), + [anon_sym_DASH_DASH] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(216), + [anon_sym_DOT] = ACTIONS(218), + [anon_sym_DASH_GT] = ACTIONS(218), + [sym_comment] = ACTIONS(59), }, - [828] = { - [sym_argument_list] = STATE(430), - [anon_sym_LPAREN2] = ACTIONS(1012), - [anon_sym_STAR] = ACTIONS(1497), - [anon_sym_LBRACK] = ACTIONS(1016), - [anon_sym_EQ] = ACTIONS(1499), + [798] = { + [sym_argument_list] = STATE(98), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(1054), + [anon_sym_LBRACK] = ACTIONS(188), + [anon_sym_EQ] = ACTIONS(1056), [anon_sym_COLON] = ACTIONS(2635), - [anon_sym_QMARK] = ACTIONS(1503), - [anon_sym_STAR_EQ] = ACTIONS(1505), - [anon_sym_SLASH_EQ] = ACTIONS(1505), - [anon_sym_PERCENT_EQ] = ACTIONS(1505), - [anon_sym_PLUS_EQ] = ACTIONS(1505), - [anon_sym_DASH_EQ] = ACTIONS(1505), - [anon_sym_LT_LT_EQ] = ACTIONS(1505), - [anon_sym_GT_GT_EQ] = ACTIONS(1505), - [anon_sym_AMP_EQ] = ACTIONS(1505), - [anon_sym_CARET_EQ] = ACTIONS(1505), - [anon_sym_PIPE_EQ] = ACTIONS(1505), - [anon_sym_AMP] = ACTIONS(1507), - [anon_sym_PIPE_PIPE] = ACTIONS(1509), - [anon_sym_AMP_AMP] = ACTIONS(1511), - [anon_sym_PIPE] = ACTIONS(1513), - [anon_sym_CARET] = ACTIONS(1515), - [anon_sym_EQ_EQ] = ACTIONS(1517), - [anon_sym_BANG_EQ] = ACTIONS(1517), - [anon_sym_LT] = ACTIONS(1519), - [anon_sym_GT] = ACTIONS(1519), - [anon_sym_LT_EQ] = ACTIONS(1521), - [anon_sym_GT_EQ] = ACTIONS(1521), - [anon_sym_LT_LT] = ACTIONS(1523), - [anon_sym_GT_GT] = ACTIONS(1523), - [anon_sym_PLUS] = ACTIONS(1525), - [anon_sym_DASH] = ACTIONS(1525), - [anon_sym_SLASH] = ACTIONS(1497), - [anon_sym_PERCENT] = ACTIONS(1497), - [anon_sym_DASH_DASH] = ACTIONS(1044), - [anon_sym_PLUS_PLUS] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1046), - [anon_sym_DASH_GT] = ACTIONS(1046), - [sym_comment] = ACTIONS(37), + [anon_sym_QMARK] = ACTIONS(1060), + [anon_sym_STAR_EQ] = ACTIONS(1062), + [anon_sym_SLASH_EQ] = ACTIONS(1062), + [anon_sym_PERCENT_EQ] = ACTIONS(1062), + [anon_sym_PLUS_EQ] = ACTIONS(1062), + [anon_sym_DASH_EQ] = ACTIONS(1062), + [anon_sym_LT_LT_EQ] = ACTIONS(1062), + [anon_sym_GT_GT_EQ] = ACTIONS(1062), + [anon_sym_AMP_EQ] = ACTIONS(1062), + [anon_sym_CARET_EQ] = ACTIONS(1062), + [anon_sym_PIPE_EQ] = ACTIONS(1062), + [anon_sym_AMP] = ACTIONS(1064), + [anon_sym_PIPE_PIPE] = ACTIONS(1066), + [anon_sym_AMP_AMP] = ACTIONS(1068), + [anon_sym_PIPE] = ACTIONS(1070), + [anon_sym_CARET] = ACTIONS(1072), + [anon_sym_EQ_EQ] = ACTIONS(1074), + [anon_sym_BANG_EQ] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(1076), + [anon_sym_GT] = ACTIONS(1076), + [anon_sym_LT_EQ] = ACTIONS(1078), + [anon_sym_GT_EQ] = ACTIONS(1078), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_GT_GT] = ACTIONS(1080), + [anon_sym_PLUS] = ACTIONS(1082), + [anon_sym_DASH] = ACTIONS(1082), + [anon_sym_SLASH] = ACTIONS(1054), + [anon_sym_PERCENT] = ACTIONS(1054), + [anon_sym_DASH_DASH] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(216), + [anon_sym_DOT] = ACTIONS(218), + [anon_sym_DASH_GT] = ACTIONS(218), + [sym_comment] = ACTIONS(59), }, - [829] = { - [sym_argument_list] = STATE(430), - [anon_sym_COMMA] = ACTIONS(2358), - [anon_sym_RPAREN] = ACTIONS(2358), - [anon_sym_LPAREN2] = ACTIONS(1012), - [anon_sym_STAR] = ACTIONS(1437), - [anon_sym_LBRACK] = ACTIONS(1016), - [anon_sym_EQ] = ACTIONS(2360), - [anon_sym_QMARK] = ACTIONS(2358), - [anon_sym_STAR_EQ] = ACTIONS(2358), - [anon_sym_SLASH_EQ] = ACTIONS(2358), - [anon_sym_PERCENT_EQ] = ACTIONS(2358), - [anon_sym_PLUS_EQ] = ACTIONS(2358), - [anon_sym_DASH_EQ] = ACTIONS(2358), - [anon_sym_LT_LT_EQ] = ACTIONS(2358), - [anon_sym_GT_GT_EQ] = ACTIONS(2358), - [anon_sym_AMP_EQ] = ACTIONS(2358), - [anon_sym_CARET_EQ] = ACTIONS(2358), - [anon_sym_PIPE_EQ] = ACTIONS(2358), - [anon_sym_AMP] = ACTIONS(2360), - [anon_sym_PIPE_PIPE] = ACTIONS(2358), - [anon_sym_AMP_AMP] = ACTIONS(2358), - [anon_sym_PIPE] = ACTIONS(2360), - [anon_sym_CARET] = ACTIONS(2360), - [anon_sym_EQ_EQ] = ACTIONS(1455), - [anon_sym_BANG_EQ] = ACTIONS(1455), - [anon_sym_LT] = ACTIONS(1457), - [anon_sym_GT] = ACTIONS(1457), - [anon_sym_LT_EQ] = ACTIONS(1459), - [anon_sym_GT_EQ] = ACTIONS(1459), - [anon_sym_LT_LT] = ACTIONS(1461), - [anon_sym_GT_GT] = ACTIONS(1461), - [anon_sym_PLUS] = ACTIONS(1463), - [anon_sym_DASH] = ACTIONS(1463), - [anon_sym_SLASH] = ACTIONS(1437), - [anon_sym_PERCENT] = ACTIONS(1437), - [anon_sym_DASH_DASH] = ACTIONS(1044), - [anon_sym_PLUS_PLUS] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1046), - [anon_sym_DASH_GT] = ACTIONS(1046), - [sym_comment] = ACTIONS(37), + [799] = { + [sym_argument_list] = STATE(98), + [anon_sym_SEMI] = ACTIONS(1086), + [anon_sym_COMMA] = ACTIONS(1086), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(1500), + [anon_sym_LBRACK] = ACTIONS(188), + [anon_sym_EQ] = ACTIONS(1084), + [anon_sym_QMARK] = ACTIONS(1086), + [anon_sym_STAR_EQ] = ACTIONS(1086), + [anon_sym_SLASH_EQ] = ACTIONS(1086), + [anon_sym_PERCENT_EQ] = ACTIONS(1086), + [anon_sym_PLUS_EQ] = ACTIONS(1086), + [anon_sym_DASH_EQ] = ACTIONS(1086), + [anon_sym_LT_LT_EQ] = ACTIONS(1086), + [anon_sym_GT_GT_EQ] = ACTIONS(1086), + [anon_sym_AMP_EQ] = ACTIONS(1086), + [anon_sym_CARET_EQ] = ACTIONS(1086), + [anon_sym_PIPE_EQ] = ACTIONS(1086), + [anon_sym_AMP] = ACTIONS(1084), + [anon_sym_PIPE_PIPE] = ACTIONS(1086), + [anon_sym_AMP_AMP] = ACTIONS(1086), + [anon_sym_PIPE] = ACTIONS(1084), + [anon_sym_CARET] = ACTIONS(1084), + [anon_sym_EQ_EQ] = ACTIONS(1518), + [anon_sym_BANG_EQ] = ACTIONS(1518), + [anon_sym_LT] = ACTIONS(1520), + [anon_sym_GT] = ACTIONS(1520), + [anon_sym_LT_EQ] = ACTIONS(1522), + [anon_sym_GT_EQ] = ACTIONS(1522), + [anon_sym_LT_LT] = ACTIONS(1524), + [anon_sym_GT_GT] = ACTIONS(1524), + [anon_sym_PLUS] = ACTIONS(1526), + [anon_sym_DASH] = ACTIONS(1526), + [anon_sym_SLASH] = ACTIONS(1500), + [anon_sym_PERCENT] = ACTIONS(1500), + [anon_sym_DASH_DASH] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(216), + [anon_sym_DOT] = ACTIONS(218), + [anon_sym_DASH_GT] = ACTIONS(218), + [sym_comment] = ACTIONS(59), }, - [830] = { - [sym_argument_list] = STATE(430), - [anon_sym_COMMA] = ACTIONS(2362), - [anon_sym_RPAREN] = ACTIONS(2362), - [anon_sym_LPAREN2] = ACTIONS(1012), - [anon_sym_STAR] = ACTIONS(1437), - [anon_sym_LBRACK] = ACTIONS(1016), - [anon_sym_EQ] = ACTIONS(2364), - [anon_sym_QMARK] = ACTIONS(2362), - [anon_sym_STAR_EQ] = ACTIONS(2362), - [anon_sym_SLASH_EQ] = ACTIONS(2362), - [anon_sym_PERCENT_EQ] = ACTIONS(2362), - [anon_sym_PLUS_EQ] = ACTIONS(2362), - [anon_sym_DASH_EQ] = ACTIONS(2362), - [anon_sym_LT_LT_EQ] = ACTIONS(2362), - [anon_sym_GT_GT_EQ] = ACTIONS(2362), - [anon_sym_AMP_EQ] = ACTIONS(2362), - [anon_sym_CARET_EQ] = ACTIONS(2362), - [anon_sym_PIPE_EQ] = ACTIONS(2362), - [anon_sym_AMP] = ACTIONS(1445), - [anon_sym_PIPE_PIPE] = ACTIONS(2362), - [anon_sym_AMP_AMP] = ACTIONS(1449), - [anon_sym_PIPE] = ACTIONS(1451), - [anon_sym_CARET] = ACTIONS(1453), - [anon_sym_EQ_EQ] = ACTIONS(1455), - [anon_sym_BANG_EQ] = ACTIONS(1455), - [anon_sym_LT] = ACTIONS(1457), - [anon_sym_GT] = ACTIONS(1457), - [anon_sym_LT_EQ] = ACTIONS(1459), - [anon_sym_GT_EQ] = ACTIONS(1459), - [anon_sym_LT_LT] = ACTIONS(1461), - [anon_sym_GT_GT] = ACTIONS(1461), - [anon_sym_PLUS] = ACTIONS(1463), - [anon_sym_DASH] = ACTIONS(1463), - [anon_sym_SLASH] = ACTIONS(1437), - [anon_sym_PERCENT] = ACTIONS(1437), - [anon_sym_DASH_DASH] = ACTIONS(1044), - [anon_sym_PLUS_PLUS] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1046), - [anon_sym_DASH_GT] = ACTIONS(1046), - [sym_comment] = ACTIONS(37), + [800] = { + [sym_argument_list] = STATE(98), + [anon_sym_SEMI] = ACTIONS(1090), + [anon_sym_COMMA] = ACTIONS(1090), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(1500), + [anon_sym_LBRACK] = ACTIONS(188), + [anon_sym_EQ] = ACTIONS(1088), + [anon_sym_QMARK] = ACTIONS(1090), + [anon_sym_STAR_EQ] = ACTIONS(1090), + [anon_sym_SLASH_EQ] = ACTIONS(1090), + [anon_sym_PERCENT_EQ] = ACTIONS(1090), + [anon_sym_PLUS_EQ] = ACTIONS(1090), + [anon_sym_DASH_EQ] = ACTIONS(1090), + [anon_sym_LT_LT_EQ] = ACTIONS(1090), + [anon_sym_GT_GT_EQ] = ACTIONS(1090), + [anon_sym_AMP_EQ] = ACTIONS(1090), + [anon_sym_CARET_EQ] = ACTIONS(1090), + [anon_sym_PIPE_EQ] = ACTIONS(1090), + [anon_sym_AMP] = ACTIONS(1508), + [anon_sym_PIPE_PIPE] = ACTIONS(1090), + [anon_sym_AMP_AMP] = ACTIONS(1512), + [anon_sym_PIPE] = ACTIONS(1514), + [anon_sym_CARET] = ACTIONS(1516), + [anon_sym_EQ_EQ] = ACTIONS(1518), + [anon_sym_BANG_EQ] = ACTIONS(1518), + [anon_sym_LT] = ACTIONS(1520), + [anon_sym_GT] = ACTIONS(1520), + [anon_sym_LT_EQ] = ACTIONS(1522), + [anon_sym_GT_EQ] = ACTIONS(1522), + [anon_sym_LT_LT] = ACTIONS(1524), + [anon_sym_GT_GT] = ACTIONS(1524), + [anon_sym_PLUS] = ACTIONS(1526), + [anon_sym_DASH] = ACTIONS(1526), + [anon_sym_SLASH] = ACTIONS(1500), + [anon_sym_PERCENT] = ACTIONS(1500), + [anon_sym_DASH_DASH] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(216), + [anon_sym_DOT] = ACTIONS(218), + [anon_sym_DASH_GT] = ACTIONS(218), + [sym_comment] = ACTIONS(59), }, - [831] = { - [sym_argument_list] = STATE(430), - [anon_sym_COMMA] = ACTIONS(2362), - [anon_sym_RPAREN] = ACTIONS(2362), - [anon_sym_LPAREN2] = ACTIONS(1012), - [anon_sym_STAR] = ACTIONS(1437), - [anon_sym_LBRACK] = ACTIONS(1016), - [anon_sym_EQ] = ACTIONS(2364), - [anon_sym_QMARK] = ACTIONS(2362), - [anon_sym_STAR_EQ] = ACTIONS(2362), - [anon_sym_SLASH_EQ] = ACTIONS(2362), - [anon_sym_PERCENT_EQ] = ACTIONS(2362), - [anon_sym_PLUS_EQ] = ACTIONS(2362), - [anon_sym_DASH_EQ] = ACTIONS(2362), - [anon_sym_LT_LT_EQ] = ACTIONS(2362), - [anon_sym_GT_GT_EQ] = ACTIONS(2362), - [anon_sym_AMP_EQ] = ACTIONS(2362), - [anon_sym_CARET_EQ] = ACTIONS(2362), - [anon_sym_PIPE_EQ] = ACTIONS(2362), - [anon_sym_AMP] = ACTIONS(1445), - [anon_sym_PIPE_PIPE] = ACTIONS(2362), - [anon_sym_AMP_AMP] = ACTIONS(2362), - [anon_sym_PIPE] = ACTIONS(1451), - [anon_sym_CARET] = ACTIONS(1453), - [anon_sym_EQ_EQ] = ACTIONS(1455), - [anon_sym_BANG_EQ] = ACTIONS(1455), - [anon_sym_LT] = ACTIONS(1457), - [anon_sym_GT] = ACTIONS(1457), - [anon_sym_LT_EQ] = ACTIONS(1459), - [anon_sym_GT_EQ] = ACTIONS(1459), - [anon_sym_LT_LT] = ACTIONS(1461), - [anon_sym_GT_GT] = ACTIONS(1461), - [anon_sym_PLUS] = ACTIONS(1463), - [anon_sym_DASH] = ACTIONS(1463), - [anon_sym_SLASH] = ACTIONS(1437), - [anon_sym_PERCENT] = ACTIONS(1437), - [anon_sym_DASH_DASH] = ACTIONS(1044), - [anon_sym_PLUS_PLUS] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1046), - [anon_sym_DASH_GT] = ACTIONS(1046), - [sym_comment] = ACTIONS(37), + [801] = { + [sym_argument_list] = STATE(98), + [anon_sym_SEMI] = ACTIONS(1090), + [anon_sym_COMMA] = ACTIONS(1090), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(1500), + [anon_sym_LBRACK] = ACTIONS(188), + [anon_sym_EQ] = ACTIONS(1088), + [anon_sym_QMARK] = ACTIONS(1090), + [anon_sym_STAR_EQ] = ACTIONS(1090), + [anon_sym_SLASH_EQ] = ACTIONS(1090), + [anon_sym_PERCENT_EQ] = ACTIONS(1090), + [anon_sym_PLUS_EQ] = ACTIONS(1090), + [anon_sym_DASH_EQ] = ACTIONS(1090), + [anon_sym_LT_LT_EQ] = ACTIONS(1090), + [anon_sym_GT_GT_EQ] = ACTIONS(1090), + [anon_sym_AMP_EQ] = ACTIONS(1090), + [anon_sym_CARET_EQ] = ACTIONS(1090), + [anon_sym_PIPE_EQ] = ACTIONS(1090), + [anon_sym_AMP] = ACTIONS(1508), + [anon_sym_PIPE_PIPE] = ACTIONS(1090), + [anon_sym_AMP_AMP] = ACTIONS(1090), + [anon_sym_PIPE] = ACTIONS(1514), + [anon_sym_CARET] = ACTIONS(1516), + [anon_sym_EQ_EQ] = ACTIONS(1518), + [anon_sym_BANG_EQ] = ACTIONS(1518), + [anon_sym_LT] = ACTIONS(1520), + [anon_sym_GT] = ACTIONS(1520), + [anon_sym_LT_EQ] = ACTIONS(1522), + [anon_sym_GT_EQ] = ACTIONS(1522), + [anon_sym_LT_LT] = ACTIONS(1524), + [anon_sym_GT_GT] = ACTIONS(1524), + [anon_sym_PLUS] = ACTIONS(1526), + [anon_sym_DASH] = ACTIONS(1526), + [anon_sym_SLASH] = ACTIONS(1500), + [anon_sym_PERCENT] = ACTIONS(1500), + [anon_sym_DASH_DASH] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(216), + [anon_sym_DOT] = ACTIONS(218), + [anon_sym_DASH_GT] = ACTIONS(218), + [sym_comment] = ACTIONS(59), }, - [832] = { - [sym_argument_list] = STATE(430), - [anon_sym_COMMA] = ACTIONS(2358), - [anon_sym_RPAREN] = ACTIONS(2358), - [anon_sym_LPAREN2] = ACTIONS(1012), - [anon_sym_STAR] = ACTIONS(1437), - [anon_sym_LBRACK] = ACTIONS(1016), - [anon_sym_EQ] = ACTIONS(2360), - [anon_sym_QMARK] = ACTIONS(2358), - [anon_sym_STAR_EQ] = ACTIONS(2358), - [anon_sym_SLASH_EQ] = ACTIONS(2358), - [anon_sym_PERCENT_EQ] = ACTIONS(2358), - [anon_sym_PLUS_EQ] = ACTIONS(2358), - [anon_sym_DASH_EQ] = ACTIONS(2358), - [anon_sym_LT_LT_EQ] = ACTIONS(2358), - [anon_sym_GT_GT_EQ] = ACTIONS(2358), - [anon_sym_AMP_EQ] = ACTIONS(2358), - [anon_sym_CARET_EQ] = ACTIONS(2358), - [anon_sym_PIPE_EQ] = ACTIONS(2358), - [anon_sym_AMP] = ACTIONS(1445), - [anon_sym_PIPE_PIPE] = ACTIONS(2358), - [anon_sym_AMP_AMP] = ACTIONS(2358), - [anon_sym_PIPE] = ACTIONS(2360), - [anon_sym_CARET] = ACTIONS(1453), - [anon_sym_EQ_EQ] = ACTIONS(1455), - [anon_sym_BANG_EQ] = ACTIONS(1455), - [anon_sym_LT] = ACTIONS(1457), - [anon_sym_GT] = ACTIONS(1457), - [anon_sym_LT_EQ] = ACTIONS(1459), - [anon_sym_GT_EQ] = ACTIONS(1459), - [anon_sym_LT_LT] = ACTIONS(1461), - [anon_sym_GT_GT] = ACTIONS(1461), - [anon_sym_PLUS] = ACTIONS(1463), - [anon_sym_DASH] = ACTIONS(1463), - [anon_sym_SLASH] = ACTIONS(1437), - [anon_sym_PERCENT] = ACTIONS(1437), - [anon_sym_DASH_DASH] = ACTIONS(1044), - [anon_sym_PLUS_PLUS] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1046), - [anon_sym_DASH_GT] = ACTIONS(1046), - [sym_comment] = ACTIONS(37), + [802] = { + [sym_argument_list] = STATE(98), + [anon_sym_SEMI] = ACTIONS(1086), + [anon_sym_COMMA] = ACTIONS(1086), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(1500), + [anon_sym_LBRACK] = ACTIONS(188), + [anon_sym_EQ] = ACTIONS(1084), + [anon_sym_QMARK] = ACTIONS(1086), + [anon_sym_STAR_EQ] = ACTIONS(1086), + [anon_sym_SLASH_EQ] = ACTIONS(1086), + [anon_sym_PERCENT_EQ] = ACTIONS(1086), + [anon_sym_PLUS_EQ] = ACTIONS(1086), + [anon_sym_DASH_EQ] = ACTIONS(1086), + [anon_sym_LT_LT_EQ] = ACTIONS(1086), + [anon_sym_GT_GT_EQ] = ACTIONS(1086), + [anon_sym_AMP_EQ] = ACTIONS(1086), + [anon_sym_CARET_EQ] = ACTIONS(1086), + [anon_sym_PIPE_EQ] = ACTIONS(1086), + [anon_sym_AMP] = ACTIONS(1508), + [anon_sym_PIPE_PIPE] = ACTIONS(1086), + [anon_sym_AMP_AMP] = ACTIONS(1086), + [anon_sym_PIPE] = ACTIONS(1084), + [anon_sym_CARET] = ACTIONS(1516), + [anon_sym_EQ_EQ] = ACTIONS(1518), + [anon_sym_BANG_EQ] = ACTIONS(1518), + [anon_sym_LT] = ACTIONS(1520), + [anon_sym_GT] = ACTIONS(1520), + [anon_sym_LT_EQ] = ACTIONS(1522), + [anon_sym_GT_EQ] = ACTIONS(1522), + [anon_sym_LT_LT] = ACTIONS(1524), + [anon_sym_GT_GT] = ACTIONS(1524), + [anon_sym_PLUS] = ACTIONS(1526), + [anon_sym_DASH] = ACTIONS(1526), + [anon_sym_SLASH] = ACTIONS(1500), + [anon_sym_PERCENT] = ACTIONS(1500), + [anon_sym_DASH_DASH] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(216), + [anon_sym_DOT] = ACTIONS(218), + [anon_sym_DASH_GT] = ACTIONS(218), + [sym_comment] = ACTIONS(59), }, - [833] = { - [sym_argument_list] = STATE(430), - [anon_sym_COMMA] = ACTIONS(2358), - [anon_sym_RPAREN] = ACTIONS(2358), - [anon_sym_LPAREN2] = ACTIONS(1012), - [anon_sym_STAR] = ACTIONS(1437), - [anon_sym_LBRACK] = ACTIONS(1016), - [anon_sym_EQ] = ACTIONS(2360), - [anon_sym_QMARK] = ACTIONS(2358), - [anon_sym_STAR_EQ] = ACTIONS(2358), - [anon_sym_SLASH_EQ] = ACTIONS(2358), - [anon_sym_PERCENT_EQ] = ACTIONS(2358), - [anon_sym_PLUS_EQ] = ACTIONS(2358), - [anon_sym_DASH_EQ] = ACTIONS(2358), - [anon_sym_LT_LT_EQ] = ACTIONS(2358), - [anon_sym_GT_GT_EQ] = ACTIONS(2358), - [anon_sym_AMP_EQ] = ACTIONS(2358), - [anon_sym_CARET_EQ] = ACTIONS(2358), - [anon_sym_PIPE_EQ] = ACTIONS(2358), - [anon_sym_AMP] = ACTIONS(1445), - [anon_sym_PIPE_PIPE] = ACTIONS(2358), - [anon_sym_AMP_AMP] = ACTIONS(2358), - [anon_sym_PIPE] = ACTIONS(2360), - [anon_sym_CARET] = ACTIONS(2360), - [anon_sym_EQ_EQ] = ACTIONS(1455), - [anon_sym_BANG_EQ] = ACTIONS(1455), - [anon_sym_LT] = ACTIONS(1457), - [anon_sym_GT] = ACTIONS(1457), - [anon_sym_LT_EQ] = ACTIONS(1459), - [anon_sym_GT_EQ] = ACTIONS(1459), - [anon_sym_LT_LT] = ACTIONS(1461), - [anon_sym_GT_GT] = ACTIONS(1461), - [anon_sym_PLUS] = ACTIONS(1463), - [anon_sym_DASH] = ACTIONS(1463), - [anon_sym_SLASH] = ACTIONS(1437), - [anon_sym_PERCENT] = ACTIONS(1437), - [anon_sym_DASH_DASH] = ACTIONS(1044), - [anon_sym_PLUS_PLUS] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1046), - [anon_sym_DASH_GT] = ACTIONS(1046), - [sym_comment] = ACTIONS(37), + [803] = { + [sym_argument_list] = STATE(98), + [anon_sym_SEMI] = ACTIONS(1086), + [anon_sym_COMMA] = ACTIONS(1086), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(1500), + [anon_sym_LBRACK] = ACTIONS(188), + [anon_sym_EQ] = ACTIONS(1084), + [anon_sym_QMARK] = ACTIONS(1086), + [anon_sym_STAR_EQ] = ACTIONS(1086), + [anon_sym_SLASH_EQ] = ACTIONS(1086), + [anon_sym_PERCENT_EQ] = ACTIONS(1086), + [anon_sym_PLUS_EQ] = ACTIONS(1086), + [anon_sym_DASH_EQ] = ACTIONS(1086), + [anon_sym_LT_LT_EQ] = ACTIONS(1086), + [anon_sym_GT_GT_EQ] = ACTIONS(1086), + [anon_sym_AMP_EQ] = ACTIONS(1086), + [anon_sym_CARET_EQ] = ACTIONS(1086), + [anon_sym_PIPE_EQ] = ACTIONS(1086), + [anon_sym_AMP] = ACTIONS(1508), + [anon_sym_PIPE_PIPE] = ACTIONS(1086), + [anon_sym_AMP_AMP] = ACTIONS(1086), + [anon_sym_PIPE] = ACTIONS(1084), + [anon_sym_CARET] = ACTIONS(1084), + [anon_sym_EQ_EQ] = ACTIONS(1518), + [anon_sym_BANG_EQ] = ACTIONS(1518), + [anon_sym_LT] = ACTIONS(1520), + [anon_sym_GT] = ACTIONS(1520), + [anon_sym_LT_EQ] = ACTIONS(1522), + [anon_sym_GT_EQ] = ACTIONS(1522), + [anon_sym_LT_LT] = ACTIONS(1524), + [anon_sym_GT_GT] = ACTIONS(1524), + [anon_sym_PLUS] = ACTIONS(1526), + [anon_sym_DASH] = ACTIONS(1526), + [anon_sym_SLASH] = ACTIONS(1500), + [anon_sym_PERCENT] = ACTIONS(1500), + [anon_sym_DASH_DASH] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(216), + [anon_sym_DOT] = ACTIONS(218), + [anon_sym_DASH_GT] = ACTIONS(218), + [sym_comment] = ACTIONS(59), }, - [834] = { - [sym_argument_list] = STATE(430), - [anon_sym_COMMA] = ACTIONS(2366), - [anon_sym_RPAREN] = ACTIONS(2366), - [anon_sym_LPAREN2] = ACTIONS(1012), - [anon_sym_STAR] = ACTIONS(1437), - [anon_sym_LBRACK] = ACTIONS(1016), - [anon_sym_EQ] = ACTIONS(2368), - [anon_sym_QMARK] = ACTIONS(2366), - [anon_sym_STAR_EQ] = ACTIONS(2366), - [anon_sym_SLASH_EQ] = ACTIONS(2366), - [anon_sym_PERCENT_EQ] = ACTIONS(2366), - [anon_sym_PLUS_EQ] = ACTIONS(2366), - [anon_sym_DASH_EQ] = ACTIONS(2366), - [anon_sym_LT_LT_EQ] = ACTIONS(2366), - [anon_sym_GT_GT_EQ] = ACTIONS(2366), - [anon_sym_AMP_EQ] = ACTIONS(2366), - [anon_sym_CARET_EQ] = ACTIONS(2366), - [anon_sym_PIPE_EQ] = ACTIONS(2366), - [anon_sym_AMP] = ACTIONS(2368), - [anon_sym_PIPE_PIPE] = ACTIONS(2366), - [anon_sym_AMP_AMP] = ACTIONS(2366), - [anon_sym_PIPE] = ACTIONS(2368), - [anon_sym_CARET] = ACTIONS(2368), - [anon_sym_EQ_EQ] = ACTIONS(2366), - [anon_sym_BANG_EQ] = ACTIONS(2366), - [anon_sym_LT] = ACTIONS(1457), - [anon_sym_GT] = ACTIONS(1457), - [anon_sym_LT_EQ] = ACTIONS(1459), - [anon_sym_GT_EQ] = ACTIONS(1459), - [anon_sym_LT_LT] = ACTIONS(1461), - [anon_sym_GT_GT] = ACTIONS(1461), - [anon_sym_PLUS] = ACTIONS(1463), - [anon_sym_DASH] = ACTIONS(1463), - [anon_sym_SLASH] = ACTIONS(1437), - [anon_sym_PERCENT] = ACTIONS(1437), - [anon_sym_DASH_DASH] = ACTIONS(1044), - [anon_sym_PLUS_PLUS] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1046), - [anon_sym_DASH_GT] = ACTIONS(1046), - [sym_comment] = ACTIONS(37), + [804] = { + [sym_argument_list] = STATE(98), + [anon_sym_SEMI] = ACTIONS(1094), + [anon_sym_COMMA] = ACTIONS(1094), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(1500), + [anon_sym_LBRACK] = ACTIONS(188), + [anon_sym_EQ] = ACTIONS(1092), + [anon_sym_QMARK] = ACTIONS(1094), + [anon_sym_STAR_EQ] = ACTIONS(1094), + [anon_sym_SLASH_EQ] = ACTIONS(1094), + [anon_sym_PERCENT_EQ] = ACTIONS(1094), + [anon_sym_PLUS_EQ] = ACTIONS(1094), + [anon_sym_DASH_EQ] = ACTIONS(1094), + [anon_sym_LT_LT_EQ] = ACTIONS(1094), + [anon_sym_GT_GT_EQ] = ACTIONS(1094), + [anon_sym_AMP_EQ] = ACTIONS(1094), + [anon_sym_CARET_EQ] = ACTIONS(1094), + [anon_sym_PIPE_EQ] = ACTIONS(1094), + [anon_sym_AMP] = ACTIONS(1092), + [anon_sym_PIPE_PIPE] = ACTIONS(1094), + [anon_sym_AMP_AMP] = ACTIONS(1094), + [anon_sym_PIPE] = ACTIONS(1092), + [anon_sym_CARET] = ACTIONS(1092), + [anon_sym_EQ_EQ] = ACTIONS(1094), + [anon_sym_BANG_EQ] = ACTIONS(1094), + [anon_sym_LT] = ACTIONS(1520), + [anon_sym_GT] = ACTIONS(1520), + [anon_sym_LT_EQ] = ACTIONS(1522), + [anon_sym_GT_EQ] = ACTIONS(1522), + [anon_sym_LT_LT] = ACTIONS(1524), + [anon_sym_GT_GT] = ACTIONS(1524), + [anon_sym_PLUS] = ACTIONS(1526), + [anon_sym_DASH] = ACTIONS(1526), + [anon_sym_SLASH] = ACTIONS(1500), + [anon_sym_PERCENT] = ACTIONS(1500), + [anon_sym_DASH_DASH] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(216), + [anon_sym_DOT] = ACTIONS(218), + [anon_sym_DASH_GT] = ACTIONS(218), + [sym_comment] = ACTIONS(59), }, - [835] = { - [sym_argument_list] = STATE(430), - [anon_sym_COMMA] = ACTIONS(2370), - [anon_sym_RPAREN] = ACTIONS(2370), - [anon_sym_LPAREN2] = ACTIONS(1012), - [anon_sym_STAR] = ACTIONS(1437), - [anon_sym_LBRACK] = ACTIONS(1016), - [anon_sym_EQ] = ACTIONS(2372), - [anon_sym_QMARK] = ACTIONS(2370), - [anon_sym_STAR_EQ] = ACTIONS(2370), - [anon_sym_SLASH_EQ] = ACTIONS(2370), - [anon_sym_PERCENT_EQ] = ACTIONS(2370), - [anon_sym_PLUS_EQ] = ACTIONS(2370), - [anon_sym_DASH_EQ] = ACTIONS(2370), - [anon_sym_LT_LT_EQ] = ACTIONS(2370), - [anon_sym_GT_GT_EQ] = ACTIONS(2370), - [anon_sym_AMP_EQ] = ACTIONS(2370), - [anon_sym_CARET_EQ] = ACTIONS(2370), - [anon_sym_PIPE_EQ] = ACTIONS(2370), - [anon_sym_AMP] = ACTIONS(2372), - [anon_sym_PIPE_PIPE] = ACTIONS(2370), - [anon_sym_AMP_AMP] = ACTIONS(2370), - [anon_sym_PIPE] = ACTIONS(2372), - [anon_sym_CARET] = ACTIONS(2372), - [anon_sym_EQ_EQ] = ACTIONS(2370), - [anon_sym_BANG_EQ] = ACTIONS(2370), - [anon_sym_LT] = ACTIONS(2372), - [anon_sym_GT] = ACTIONS(2372), - [anon_sym_LT_EQ] = ACTIONS(2370), - [anon_sym_GT_EQ] = ACTIONS(2370), - [anon_sym_LT_LT] = ACTIONS(1461), - [anon_sym_GT_GT] = ACTIONS(1461), - [anon_sym_PLUS] = ACTIONS(1463), - [anon_sym_DASH] = ACTIONS(1463), - [anon_sym_SLASH] = ACTIONS(1437), - [anon_sym_PERCENT] = ACTIONS(1437), - [anon_sym_DASH_DASH] = ACTIONS(1044), - [anon_sym_PLUS_PLUS] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1046), - [anon_sym_DASH_GT] = ACTIONS(1046), - [sym_comment] = ACTIONS(37), + [805] = { + [sym_argument_list] = STATE(98), + [anon_sym_SEMI] = ACTIONS(1098), + [anon_sym_COMMA] = ACTIONS(1098), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(1500), + [anon_sym_LBRACK] = ACTIONS(188), + [anon_sym_EQ] = ACTIONS(1096), + [anon_sym_QMARK] = ACTIONS(1098), + [anon_sym_STAR_EQ] = ACTIONS(1098), + [anon_sym_SLASH_EQ] = ACTIONS(1098), + [anon_sym_PERCENT_EQ] = ACTIONS(1098), + [anon_sym_PLUS_EQ] = ACTIONS(1098), + [anon_sym_DASH_EQ] = ACTIONS(1098), + [anon_sym_LT_LT_EQ] = ACTIONS(1098), + [anon_sym_GT_GT_EQ] = ACTIONS(1098), + [anon_sym_AMP_EQ] = ACTIONS(1098), + [anon_sym_CARET_EQ] = ACTIONS(1098), + [anon_sym_PIPE_EQ] = ACTIONS(1098), + [anon_sym_AMP] = ACTIONS(1096), + [anon_sym_PIPE_PIPE] = ACTIONS(1098), + [anon_sym_AMP_AMP] = ACTIONS(1098), + [anon_sym_PIPE] = ACTIONS(1096), + [anon_sym_CARET] = ACTIONS(1096), + [anon_sym_EQ_EQ] = ACTIONS(1098), + [anon_sym_BANG_EQ] = ACTIONS(1098), + [anon_sym_LT] = ACTIONS(1096), + [anon_sym_GT] = ACTIONS(1096), + [anon_sym_LT_EQ] = ACTIONS(1098), + [anon_sym_GT_EQ] = ACTIONS(1098), + [anon_sym_LT_LT] = ACTIONS(1524), + [anon_sym_GT_GT] = ACTIONS(1524), + [anon_sym_PLUS] = ACTIONS(1526), + [anon_sym_DASH] = ACTIONS(1526), + [anon_sym_SLASH] = ACTIONS(1500), + [anon_sym_PERCENT] = ACTIONS(1500), + [anon_sym_DASH_DASH] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(216), + [anon_sym_DOT] = ACTIONS(218), + [anon_sym_DASH_GT] = ACTIONS(218), + [sym_comment] = ACTIONS(59), }, - [836] = { - [sym_argument_list] = STATE(430), - [anon_sym_COMMA] = ACTIONS(2374), - [anon_sym_RPAREN] = ACTIONS(2374), - [anon_sym_LPAREN2] = ACTIONS(1012), - [anon_sym_STAR] = ACTIONS(1437), - [anon_sym_LBRACK] = ACTIONS(1016), - [anon_sym_EQ] = ACTIONS(2376), - [anon_sym_QMARK] = ACTIONS(2374), - [anon_sym_STAR_EQ] = ACTIONS(2374), - [anon_sym_SLASH_EQ] = ACTIONS(2374), - [anon_sym_PERCENT_EQ] = ACTIONS(2374), - [anon_sym_PLUS_EQ] = ACTIONS(2374), - [anon_sym_DASH_EQ] = ACTIONS(2374), - [anon_sym_LT_LT_EQ] = ACTIONS(2374), - [anon_sym_GT_GT_EQ] = ACTIONS(2374), - [anon_sym_AMP_EQ] = ACTIONS(2374), - [anon_sym_CARET_EQ] = ACTIONS(2374), - [anon_sym_PIPE_EQ] = ACTIONS(2374), - [anon_sym_AMP] = ACTIONS(2376), - [anon_sym_PIPE_PIPE] = ACTIONS(2374), - [anon_sym_AMP_AMP] = ACTIONS(2374), - [anon_sym_PIPE] = ACTIONS(2376), - [anon_sym_CARET] = ACTIONS(2376), - [anon_sym_EQ_EQ] = ACTIONS(2374), - [anon_sym_BANG_EQ] = ACTIONS(2374), - [anon_sym_LT] = ACTIONS(2376), - [anon_sym_GT] = ACTIONS(2376), - [anon_sym_LT_EQ] = ACTIONS(2374), - [anon_sym_GT_EQ] = ACTIONS(2374), - [anon_sym_LT_LT] = ACTIONS(2376), - [anon_sym_GT_GT] = ACTIONS(2376), - [anon_sym_PLUS] = ACTIONS(1463), - [anon_sym_DASH] = ACTIONS(1463), - [anon_sym_SLASH] = ACTIONS(1437), - [anon_sym_PERCENT] = ACTIONS(1437), - [anon_sym_DASH_DASH] = ACTIONS(1044), - [anon_sym_PLUS_PLUS] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1046), - [anon_sym_DASH_GT] = ACTIONS(1046), - [sym_comment] = ACTIONS(37), + [806] = { + [sym_argument_list] = STATE(98), + [anon_sym_SEMI] = ACTIONS(1102), + [anon_sym_COMMA] = ACTIONS(1102), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(1500), + [anon_sym_LBRACK] = ACTIONS(188), + [anon_sym_EQ] = ACTIONS(1100), + [anon_sym_QMARK] = ACTIONS(1102), + [anon_sym_STAR_EQ] = ACTIONS(1102), + [anon_sym_SLASH_EQ] = ACTIONS(1102), + [anon_sym_PERCENT_EQ] = ACTIONS(1102), + [anon_sym_PLUS_EQ] = ACTIONS(1102), + [anon_sym_DASH_EQ] = ACTIONS(1102), + [anon_sym_LT_LT_EQ] = ACTIONS(1102), + [anon_sym_GT_GT_EQ] = ACTIONS(1102), + [anon_sym_AMP_EQ] = ACTIONS(1102), + [anon_sym_CARET_EQ] = ACTIONS(1102), + [anon_sym_PIPE_EQ] = ACTIONS(1102), + [anon_sym_AMP] = ACTIONS(1100), + [anon_sym_PIPE_PIPE] = ACTIONS(1102), + [anon_sym_AMP_AMP] = ACTIONS(1102), + [anon_sym_PIPE] = ACTIONS(1100), + [anon_sym_CARET] = ACTIONS(1100), + [anon_sym_EQ_EQ] = ACTIONS(1102), + [anon_sym_BANG_EQ] = ACTIONS(1102), + [anon_sym_LT] = ACTIONS(1100), + [anon_sym_GT] = ACTIONS(1100), + [anon_sym_LT_EQ] = ACTIONS(1102), + [anon_sym_GT_EQ] = ACTIONS(1102), + [anon_sym_LT_LT] = ACTIONS(1100), + [anon_sym_GT_GT] = ACTIONS(1100), + [anon_sym_PLUS] = ACTIONS(1526), + [anon_sym_DASH] = ACTIONS(1526), + [anon_sym_SLASH] = ACTIONS(1500), + [anon_sym_PERCENT] = ACTIONS(1500), + [anon_sym_DASH_DASH] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(216), + [anon_sym_DOT] = ACTIONS(218), + [anon_sym_DASH_GT] = ACTIONS(218), + [sym_comment] = ACTIONS(59), }, - [837] = { - [sym_argument_list] = STATE(430), - [anon_sym_COMMA] = ACTIONS(2348), - [anon_sym_RPAREN] = ACTIONS(2348), - [anon_sym_LPAREN2] = ACTIONS(1012), - [anon_sym_STAR] = ACTIONS(1437), - [anon_sym_LBRACK] = ACTIONS(1016), - [anon_sym_EQ] = ACTIONS(2350), - [anon_sym_QMARK] = ACTIONS(2348), - [anon_sym_STAR_EQ] = ACTIONS(2348), - [anon_sym_SLASH_EQ] = ACTIONS(2348), - [anon_sym_PERCENT_EQ] = ACTIONS(2348), - [anon_sym_PLUS_EQ] = ACTIONS(2348), - [anon_sym_DASH_EQ] = ACTIONS(2348), - [anon_sym_LT_LT_EQ] = ACTIONS(2348), - [anon_sym_GT_GT_EQ] = ACTIONS(2348), - [anon_sym_AMP_EQ] = ACTIONS(2348), - [anon_sym_CARET_EQ] = ACTIONS(2348), - [anon_sym_PIPE_EQ] = ACTIONS(2348), - [anon_sym_AMP] = ACTIONS(2350), - [anon_sym_PIPE_PIPE] = ACTIONS(2348), - [anon_sym_AMP_AMP] = ACTIONS(2348), - [anon_sym_PIPE] = ACTIONS(2350), - [anon_sym_CARET] = ACTIONS(2350), - [anon_sym_EQ_EQ] = ACTIONS(2348), - [anon_sym_BANG_EQ] = ACTIONS(2348), - [anon_sym_LT] = ACTIONS(2350), - [anon_sym_GT] = ACTIONS(2350), - [anon_sym_LT_EQ] = ACTIONS(2348), - [anon_sym_GT_EQ] = ACTIONS(2348), - [anon_sym_LT_LT] = ACTIONS(2350), - [anon_sym_GT_GT] = ACTIONS(2350), - [anon_sym_PLUS] = ACTIONS(2350), - [anon_sym_DASH] = ACTIONS(2350), - [anon_sym_SLASH] = ACTIONS(1437), - [anon_sym_PERCENT] = ACTIONS(1437), - [anon_sym_DASH_DASH] = ACTIONS(1044), - [anon_sym_PLUS_PLUS] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1046), - [anon_sym_DASH_GT] = ACTIONS(1046), - [sym_comment] = ACTIONS(37), + [807] = { + [sym_argument_list] = STATE(98), + [anon_sym_SEMI] = ACTIONS(1006), + [anon_sym_COMMA] = ACTIONS(1006), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(1500), + [anon_sym_LBRACK] = ACTIONS(188), + [anon_sym_EQ] = ACTIONS(1008), + [anon_sym_QMARK] = ACTIONS(1006), + [anon_sym_STAR_EQ] = ACTIONS(1006), + [anon_sym_SLASH_EQ] = ACTIONS(1006), + [anon_sym_PERCENT_EQ] = ACTIONS(1006), + [anon_sym_PLUS_EQ] = ACTIONS(1006), + [anon_sym_DASH_EQ] = ACTIONS(1006), + [anon_sym_LT_LT_EQ] = ACTIONS(1006), + [anon_sym_GT_GT_EQ] = ACTIONS(1006), + [anon_sym_AMP_EQ] = ACTIONS(1006), + [anon_sym_CARET_EQ] = ACTIONS(1006), + [anon_sym_PIPE_EQ] = ACTIONS(1006), + [anon_sym_AMP] = ACTIONS(1008), + [anon_sym_PIPE_PIPE] = ACTIONS(1006), + [anon_sym_AMP_AMP] = ACTIONS(1006), + [anon_sym_PIPE] = ACTIONS(1008), + [anon_sym_CARET] = ACTIONS(1008), + [anon_sym_EQ_EQ] = ACTIONS(1006), + [anon_sym_BANG_EQ] = ACTIONS(1006), + [anon_sym_LT] = ACTIONS(1008), + [anon_sym_GT] = ACTIONS(1008), + [anon_sym_LT_EQ] = ACTIONS(1006), + [anon_sym_GT_EQ] = ACTIONS(1006), + [anon_sym_LT_LT] = ACTIONS(1008), + [anon_sym_GT_GT] = ACTIONS(1008), + [anon_sym_PLUS] = ACTIONS(1008), + [anon_sym_DASH] = ACTIONS(1008), + [anon_sym_SLASH] = ACTIONS(1500), + [anon_sym_PERCENT] = ACTIONS(1500), + [anon_sym_DASH_DASH] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(216), + [anon_sym_DOT] = ACTIONS(218), + [anon_sym_DASH_GT] = ACTIONS(218), + [sym_comment] = ACTIONS(59), }, - [838] = { - [sym_argument_list] = STATE(430), + [808] = { + [sym_string_literal] = STATE(808), + [aux_sym_concatenated_string_repeat1] = STATE(808), + [anon_sym_SEMI] = ACTIONS(1108), + [anon_sym_COMMA] = ACTIONS(1108), + [anon_sym_LPAREN2] = ACTIONS(1108), + [anon_sym_STAR] = ACTIONS(1110), + [anon_sym_LBRACK] = ACTIONS(1108), + [anon_sym_EQ] = ACTIONS(1110), + [anon_sym_QMARK] = ACTIONS(1108), + [anon_sym_STAR_EQ] = ACTIONS(1108), + [anon_sym_SLASH_EQ] = ACTIONS(1108), + [anon_sym_PERCENT_EQ] = ACTIONS(1108), + [anon_sym_PLUS_EQ] = ACTIONS(1108), + [anon_sym_DASH_EQ] = ACTIONS(1108), + [anon_sym_LT_LT_EQ] = ACTIONS(1108), + [anon_sym_GT_GT_EQ] = ACTIONS(1108), + [anon_sym_AMP_EQ] = ACTIONS(1108), + [anon_sym_CARET_EQ] = ACTIONS(1108), + [anon_sym_PIPE_EQ] = ACTIONS(1108), + [anon_sym_AMP] = ACTIONS(1110), + [anon_sym_PIPE_PIPE] = ACTIONS(1108), + [anon_sym_AMP_AMP] = ACTIONS(1108), + [anon_sym_PIPE] = ACTIONS(1110), + [anon_sym_CARET] = ACTIONS(1110), + [anon_sym_EQ_EQ] = ACTIONS(1108), + [anon_sym_BANG_EQ] = ACTIONS(1108), + [anon_sym_LT] = ACTIONS(1110), + [anon_sym_GT] = ACTIONS(1110), + [anon_sym_LT_EQ] = ACTIONS(1108), + [anon_sym_GT_EQ] = ACTIONS(1108), + [anon_sym_LT_LT] = ACTIONS(1110), + [anon_sym_GT_GT] = ACTIONS(1110), + [anon_sym_PLUS] = ACTIONS(1110), + [anon_sym_DASH] = ACTIONS(1110), + [anon_sym_SLASH] = ACTIONS(1110), + [anon_sym_PERCENT] = ACTIONS(1110), + [anon_sym_DASH_DASH] = ACTIONS(1108), + [anon_sym_PLUS_PLUS] = ACTIONS(1108), + [anon_sym_DOT] = ACTIONS(1108), + [anon_sym_DASH_GT] = ACTIONS(1108), + [anon_sym_DQUOTE] = ACTIONS(1112), + [sym_comment] = ACTIONS(59), + }, + [809] = { + [anon_sym_SEMI] = ACTIONS(2637), [anon_sym_COMMA] = ACTIONS(2637), [anon_sym_RPAREN] = ACTIONS(2637), - [anon_sym_SEMI] = ACTIONS(2637), - [anon_sym_RBRACE] = ACTIONS(2637), - [anon_sym_LPAREN2] = ACTIONS(1012), + [anon_sym_LBRACE] = ACTIONS(2637), + [anon_sym_LPAREN2] = ACTIONS(2637), + [anon_sym_LBRACK] = ACTIONS(2637), + [anon_sym_EQ] = ACTIONS(2637), + [sym_comment] = ACTIONS(59), + }, + [810] = { + [sym__expression] = STATE(319), + [sym_conditional_expression] = STATE(319), + [sym_assignment_expression] = STATE(319), + [sym_pointer_expression] = STATE(319), + [sym_logical_expression] = STATE(319), + [sym_bitwise_expression] = STATE(319), + [sym_equality_expression] = STATE(319), + [sym_relational_expression] = STATE(319), + [sym_shift_expression] = STATE(319), + [sym_math_expression] = STATE(319), + [sym_cast_expression] = STATE(319), + [sym_sizeof_expression] = STATE(319), + [sym_subscript_expression] = STATE(319), + [sym_call_expression] = STATE(319), + [sym_field_expression] = STATE(319), + [sym_compound_literal_expression] = STATE(319), + [sym_parenthesized_expression] = STATE(319), + [sym_initializer_list] = STATE(320), + [sym_char_literal] = STATE(319), + [sym_concatenated_string] = STATE(319), + [sym_string_literal] = STATE(214), + [anon_sym_LBRACE] = ACTIONS(840), + [anon_sym_LPAREN2] = ACTIONS(461), [anon_sym_STAR] = ACTIONS(2639), - [anon_sym_LBRACK] = ACTIONS(1016), - [anon_sym_RBRACK] = ACTIONS(2637), - [anon_sym_EQ] = ACTIONS(2639), - [anon_sym_COLON] = ACTIONS(2637), - [anon_sym_QMARK] = ACTIONS(2637), - [anon_sym_STAR_EQ] = ACTIONS(2637), - [anon_sym_SLASH_EQ] = ACTIONS(2637), - [anon_sym_PERCENT_EQ] = ACTIONS(2637), - [anon_sym_PLUS_EQ] = ACTIONS(2637), - [anon_sym_DASH_EQ] = ACTIONS(2637), - [anon_sym_LT_LT_EQ] = ACTIONS(2637), - [anon_sym_GT_GT_EQ] = ACTIONS(2637), - [anon_sym_AMP_EQ] = ACTIONS(2637), - [anon_sym_CARET_EQ] = ACTIONS(2637), - [anon_sym_PIPE_EQ] = ACTIONS(2637), + [anon_sym_LBRACK] = ACTIONS(1418), + [anon_sym_RBRACK] = ACTIONS(1418), + [anon_sym_EQ] = ACTIONS(1420), + [anon_sym_QMARK] = ACTIONS(1418), + [anon_sym_STAR_EQ] = ACTIONS(1418), + [anon_sym_SLASH_EQ] = ACTIONS(1418), + [anon_sym_PERCENT_EQ] = ACTIONS(1418), + [anon_sym_PLUS_EQ] = ACTIONS(1418), + [anon_sym_DASH_EQ] = ACTIONS(1418), + [anon_sym_LT_LT_EQ] = ACTIONS(1418), + [anon_sym_GT_GT_EQ] = ACTIONS(1418), + [anon_sym_AMP_EQ] = ACTIONS(1418), + [anon_sym_CARET_EQ] = ACTIONS(1418), + [anon_sym_PIPE_EQ] = ACTIONS(1418), [anon_sym_AMP] = ACTIONS(2639), - [anon_sym_PIPE_PIPE] = ACTIONS(2637), - [anon_sym_AMP_AMP] = ACTIONS(2637), - [anon_sym_PIPE] = ACTIONS(2639), - [anon_sym_CARET] = ACTIONS(2639), - [anon_sym_EQ_EQ] = ACTIONS(2637), - [anon_sym_BANG_EQ] = ACTIONS(2637), - [anon_sym_LT] = ACTIONS(2639), - [anon_sym_GT] = ACTIONS(2639), - [anon_sym_LT_EQ] = ACTIONS(2637), - [anon_sym_GT_EQ] = ACTIONS(2637), - [anon_sym_LT_LT] = ACTIONS(2639), - [anon_sym_GT_GT] = ACTIONS(2639), - [anon_sym_PLUS] = ACTIONS(2639), - [anon_sym_DASH] = ACTIONS(2639), - [anon_sym_SLASH] = ACTIONS(2639), - [anon_sym_PERCENT] = ACTIONS(2639), - [anon_sym_DASH_DASH] = ACTIONS(1044), - [anon_sym_PLUS_PLUS] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1046), - [anon_sym_DASH_GT] = ACTIONS(1046), - [sym_comment] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(1418), + [anon_sym_AMP_AMP] = ACTIONS(1418), + [anon_sym_BANG] = ACTIONS(2641), + [anon_sym_PIPE] = ACTIONS(1420), + [anon_sym_CARET] = ACTIONS(1420), + [anon_sym_TILDE] = ACTIONS(467), + [anon_sym_EQ_EQ] = ACTIONS(1418), + [anon_sym_BANG_EQ] = ACTIONS(1418), + [anon_sym_LT] = ACTIONS(1420), + [anon_sym_GT] = ACTIONS(1420), + [anon_sym_LT_EQ] = ACTIONS(1418), + [anon_sym_GT_EQ] = ACTIONS(1418), + [anon_sym_LT_LT] = ACTIONS(1420), + [anon_sym_GT_GT] = ACTIONS(1420), + [anon_sym_PLUS] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(469), + [anon_sym_SLASH] = ACTIONS(1420), + [anon_sym_PERCENT] = ACTIONS(1420), + [anon_sym_DASH_DASH] = ACTIONS(471), + [anon_sym_PLUS_PLUS] = ACTIONS(471), + [anon_sym_sizeof] = ACTIONS(473), + [anon_sym_DOT] = ACTIONS(1418), + [anon_sym_DASH_GT] = ACTIONS(1418), + [sym_number_literal] = ACTIONS(842), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(844), + [sym_false] = ACTIONS(844), + [sym_null] = ACTIONS(844), + [sym_identifier] = ACTIONS(844), + [sym_comment] = ACTIONS(59), + }, + [811] = { + [sym__expression] = STATE(955), + [sym_conditional_expression] = STATE(955), + [sym_assignment_expression] = STATE(955), + [sym_pointer_expression] = STATE(955), + [sym_logical_expression] = STATE(955), + [sym_bitwise_expression] = STATE(955), + [sym_equality_expression] = STATE(955), + [sym_relational_expression] = STATE(955), + [sym_shift_expression] = STATE(955), + [sym_math_expression] = STATE(955), + [sym_cast_expression] = STATE(955), + [sym_sizeof_expression] = STATE(955), + [sym_subscript_expression] = STATE(955), + [sym_call_expression] = STATE(955), + [sym_field_expression] = STATE(955), + [sym_compound_literal_expression] = STATE(955), + [sym_parenthesized_expression] = STATE(955), + [sym_char_literal] = STATE(955), + [sym_concatenated_string] = STATE(955), + [sym_string_literal] = STATE(214), + [anon_sym_LPAREN2] = ACTIONS(461), + [anon_sym_STAR] = ACTIONS(463), + [anon_sym_AMP] = ACTIONS(463), + [anon_sym_BANG] = ACTIONS(465), + [anon_sym_TILDE] = ACTIONS(467), + [anon_sym_PLUS] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(469), + [anon_sym_DASH_DASH] = ACTIONS(471), + [anon_sym_PLUS_PLUS] = ACTIONS(471), + [anon_sym_sizeof] = ACTIONS(473), + [sym_number_literal] = ACTIONS(2643), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(2645), + [sym_false] = ACTIONS(2645), + [sym_null] = ACTIONS(2645), + [sym_identifier] = ACTIONS(2645), + [sym_comment] = ACTIONS(59), + }, + [812] = { + [sym__expression] = STATE(319), + [sym_conditional_expression] = STATE(319), + [sym_assignment_expression] = STATE(319), + [sym_pointer_expression] = STATE(319), + [sym_logical_expression] = STATE(319), + [sym_bitwise_expression] = STATE(319), + [sym_equality_expression] = STATE(319), + [sym_relational_expression] = STATE(319), + [sym_shift_expression] = STATE(319), + [sym_math_expression] = STATE(319), + [sym_cast_expression] = STATE(319), + [sym_sizeof_expression] = STATE(319), + [sym_subscript_expression] = STATE(319), + [sym_call_expression] = STATE(319), + [sym_field_expression] = STATE(319), + [sym_compound_literal_expression] = STATE(319), + [sym_parenthesized_expression] = STATE(319), + [sym_initializer_list] = STATE(320), + [sym_char_literal] = STATE(319), + [sym_concatenated_string] = STATE(319), + [sym_string_literal] = STATE(223), + [anon_sym_LBRACE] = ACTIONS(840), + [anon_sym_LPAREN2] = ACTIONS(483), + [anon_sym_STAR] = ACTIONS(2647), + [anon_sym_LBRACK] = ACTIONS(1418), + [anon_sym_EQ] = ACTIONS(1420), + [anon_sym_COLON] = ACTIONS(1418), + [anon_sym_QMARK] = ACTIONS(1418), + [anon_sym_STAR_EQ] = ACTIONS(1418), + [anon_sym_SLASH_EQ] = ACTIONS(1418), + [anon_sym_PERCENT_EQ] = ACTIONS(1418), + [anon_sym_PLUS_EQ] = ACTIONS(1418), + [anon_sym_DASH_EQ] = ACTIONS(1418), + [anon_sym_LT_LT_EQ] = ACTIONS(1418), + [anon_sym_GT_GT_EQ] = ACTIONS(1418), + [anon_sym_AMP_EQ] = ACTIONS(1418), + [anon_sym_CARET_EQ] = ACTIONS(1418), + [anon_sym_PIPE_EQ] = ACTIONS(1418), + [anon_sym_AMP] = ACTIONS(2647), + [anon_sym_PIPE_PIPE] = ACTIONS(1418), + [anon_sym_AMP_AMP] = ACTIONS(1418), + [anon_sym_BANG] = ACTIONS(2649), + [anon_sym_PIPE] = ACTIONS(1420), + [anon_sym_CARET] = ACTIONS(1420), + [anon_sym_TILDE] = ACTIONS(489), + [anon_sym_EQ_EQ] = ACTIONS(1418), + [anon_sym_BANG_EQ] = ACTIONS(1418), + [anon_sym_LT] = ACTIONS(1420), + [anon_sym_GT] = ACTIONS(1420), + [anon_sym_LT_EQ] = ACTIONS(1418), + [anon_sym_GT_EQ] = ACTIONS(1418), + [anon_sym_LT_LT] = ACTIONS(1420), + [anon_sym_GT_GT] = ACTIONS(1420), + [anon_sym_PLUS] = ACTIONS(491), + [anon_sym_DASH] = ACTIONS(491), + [anon_sym_SLASH] = ACTIONS(1420), + [anon_sym_PERCENT] = ACTIONS(1420), + [anon_sym_DASH_DASH] = ACTIONS(493), + [anon_sym_PLUS_PLUS] = ACTIONS(493), + [anon_sym_sizeof] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(1418), + [anon_sym_DASH_GT] = ACTIONS(1418), + [sym_number_literal] = ACTIONS(842), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(844), + [sym_false] = ACTIONS(844), + [sym_null] = ACTIONS(844), + [sym_identifier] = ACTIONS(844), + [sym_comment] = ACTIONS(59), + }, + [813] = { + [sym__expression] = STATE(956), + [sym_conditional_expression] = STATE(956), + [sym_assignment_expression] = STATE(956), + [sym_pointer_expression] = STATE(956), + [sym_logical_expression] = STATE(956), + [sym_bitwise_expression] = STATE(956), + [sym_equality_expression] = STATE(956), + [sym_relational_expression] = STATE(956), + [sym_shift_expression] = STATE(956), + [sym_math_expression] = STATE(956), + [sym_cast_expression] = STATE(956), + [sym_sizeof_expression] = STATE(956), + [sym_subscript_expression] = STATE(956), + [sym_call_expression] = STATE(956), + [sym_field_expression] = STATE(956), + [sym_compound_literal_expression] = STATE(956), + [sym_parenthesized_expression] = STATE(956), + [sym_char_literal] = STATE(956), + [sym_concatenated_string] = STATE(956), + [sym_string_literal] = STATE(223), + [anon_sym_LPAREN2] = ACTIONS(483), + [anon_sym_STAR] = ACTIONS(485), + [anon_sym_AMP] = ACTIONS(485), + [anon_sym_BANG] = ACTIONS(487), + [anon_sym_TILDE] = ACTIONS(489), + [anon_sym_PLUS] = ACTIONS(491), + [anon_sym_DASH] = ACTIONS(491), + [anon_sym_DASH_DASH] = ACTIONS(493), + [anon_sym_PLUS_PLUS] = ACTIONS(493), + [anon_sym_sizeof] = ACTIONS(495), + [sym_number_literal] = ACTIONS(2651), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(2653), + [sym_false] = ACTIONS(2653), + [sym_null] = ACTIONS(2653), + [sym_identifier] = ACTIONS(2653), + [sym_comment] = ACTIONS(59), + }, + [814] = { + [anon_sym_SEMI] = ACTIONS(1659), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1661), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1661), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1661), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1661), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1661), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1661), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1661), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1661), + [sym_preproc_directive] = ACTIONS(1661), + [anon_sym_typedef] = ACTIONS(1661), + [anon_sym_extern] = ACTIONS(1661), + [anon_sym_LBRACE] = ACTIONS(1659), + [anon_sym_LPAREN2] = ACTIONS(1659), + [anon_sym_STAR] = ACTIONS(1659), + [anon_sym_static] = ACTIONS(1661), + [anon_sym_auto] = ACTIONS(1661), + [anon_sym_register] = ACTIONS(1661), + [anon_sym_inline] = ACTIONS(1661), + [anon_sym_const] = ACTIONS(1661), + [anon_sym_restrict] = ACTIONS(1661), + [anon_sym_volatile] = ACTIONS(1661), + [anon_sym__Atomic] = ACTIONS(1661), + [anon_sym_unsigned] = ACTIONS(1661), + [anon_sym_long] = ACTIONS(1661), + [anon_sym_short] = ACTIONS(1661), + [sym_primitive_type] = ACTIONS(1661), + [anon_sym_enum] = ACTIONS(1661), + [anon_sym_struct] = ACTIONS(1661), + [anon_sym_union] = ACTIONS(1661), + [anon_sym_if] = ACTIONS(1661), + [anon_sym_switch] = ACTIONS(1661), + [anon_sym_case] = ACTIONS(1661), + [anon_sym_default] = ACTIONS(1661), + [anon_sym_while] = ACTIONS(1661), + [anon_sym_do] = ACTIONS(1661), + [anon_sym_for] = ACTIONS(1661), + [anon_sym_return] = ACTIONS(1661), + [anon_sym_break] = ACTIONS(1661), + [anon_sym_continue] = ACTIONS(1661), + [anon_sym_goto] = ACTIONS(1661), + [anon_sym_AMP] = ACTIONS(1659), + [anon_sym_BANG] = ACTIONS(1659), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_PLUS] = ACTIONS(1661), + [anon_sym_DASH] = ACTIONS(1661), + [anon_sym_DASH_DASH] = ACTIONS(1659), + [anon_sym_PLUS_PLUS] = ACTIONS(1659), + [anon_sym_sizeof] = ACTIONS(1661), + [sym_number_literal] = ACTIONS(1659), + [anon_sym_SQUOTE] = ACTIONS(1659), + [anon_sym_DQUOTE] = ACTIONS(1659), + [sym_true] = ACTIONS(1661), + [sym_false] = ACTIONS(1661), + [sym_null] = ACTIONS(1661), + [sym_identifier] = ACTIONS(1661), + [sym_comment] = ACTIONS(59), + }, + [815] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1736), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1736), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1736), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1736), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1736), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1736), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1736), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1736), + [sym_preproc_directive] = ACTIONS(1736), + [anon_sym_typedef] = ACTIONS(1736), + [anon_sym_extern] = ACTIONS(1736), + [anon_sym_LPAREN2] = ACTIONS(1734), + [anon_sym_STAR] = ACTIONS(1734), + [anon_sym_static] = ACTIONS(1736), + [anon_sym_auto] = ACTIONS(1736), + [anon_sym_register] = ACTIONS(1736), + [anon_sym_inline] = ACTIONS(1736), + [anon_sym_const] = ACTIONS(1736), + [anon_sym_restrict] = ACTIONS(1736), + [anon_sym_volatile] = ACTIONS(1736), + [anon_sym__Atomic] = ACTIONS(1736), + [anon_sym_unsigned] = ACTIONS(1736), + [anon_sym_long] = ACTIONS(1736), + [anon_sym_short] = ACTIONS(1736), + [sym_primitive_type] = ACTIONS(1736), + [anon_sym_enum] = ACTIONS(1736), + [anon_sym_struct] = ACTIONS(1736), + [anon_sym_union] = ACTIONS(1736), + [anon_sym_AMP] = ACTIONS(1734), + [anon_sym_BANG] = ACTIONS(1734), + [anon_sym_TILDE] = ACTIONS(1734), + [anon_sym_PLUS] = ACTIONS(1736), + [anon_sym_DASH] = ACTIONS(1736), + [anon_sym_DASH_DASH] = ACTIONS(1734), + [anon_sym_PLUS_PLUS] = ACTIONS(1734), + [anon_sym_sizeof] = ACTIONS(1736), + [sym_number_literal] = ACTIONS(1734), + [anon_sym_SQUOTE] = ACTIONS(1734), + [anon_sym_DQUOTE] = ACTIONS(1734), + [sym_true] = ACTIONS(1736), + [sym_false] = ACTIONS(1736), + [sym_null] = ACTIONS(1736), + [sym_identifier] = ACTIONS(1736), + [sym_comment] = ACTIONS(59), + }, + [816] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1740), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1740), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1740), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1740), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1740), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1740), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1740), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1740), + [sym_preproc_directive] = ACTIONS(1740), + [anon_sym_typedef] = ACTIONS(1740), + [anon_sym_extern] = ACTIONS(1740), + [anon_sym_LPAREN2] = ACTIONS(1738), + [anon_sym_STAR] = ACTIONS(1738), + [anon_sym_static] = ACTIONS(1740), + [anon_sym_auto] = ACTIONS(1740), + [anon_sym_register] = ACTIONS(1740), + [anon_sym_inline] = ACTIONS(1740), + [anon_sym_const] = ACTIONS(1740), + [anon_sym_restrict] = ACTIONS(1740), + [anon_sym_volatile] = ACTIONS(1740), + [anon_sym__Atomic] = ACTIONS(1740), + [anon_sym_unsigned] = ACTIONS(1740), + [anon_sym_long] = ACTIONS(1740), + [anon_sym_short] = ACTIONS(1740), + [sym_primitive_type] = ACTIONS(1740), + [anon_sym_enum] = ACTIONS(1740), + [anon_sym_struct] = ACTIONS(1740), + [anon_sym_union] = ACTIONS(1740), + [anon_sym_AMP] = ACTIONS(1738), + [anon_sym_BANG] = ACTIONS(1738), + [anon_sym_TILDE] = ACTIONS(1738), + [anon_sym_PLUS] = ACTIONS(1740), + [anon_sym_DASH] = ACTIONS(1740), + [anon_sym_DASH_DASH] = ACTIONS(1738), + [anon_sym_PLUS_PLUS] = ACTIONS(1738), + [anon_sym_sizeof] = ACTIONS(1740), + [sym_number_literal] = ACTIONS(1738), + [anon_sym_SQUOTE] = ACTIONS(1738), + [anon_sym_DQUOTE] = ACTIONS(1738), + [sym_true] = ACTIONS(1740), + [sym_false] = ACTIONS(1740), + [sym_null] = ACTIONS(1740), + [sym_identifier] = ACTIONS(1740), + [sym_comment] = ACTIONS(59), + }, + [817] = { + [anon_sym_SEMI] = ACTIONS(903), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(905), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(905), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(905), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(905), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(905), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(905), + [sym_preproc_directive] = ACTIONS(905), + [anon_sym_typedef] = ACTIONS(905), + [anon_sym_extern] = ACTIONS(905), + [anon_sym_LBRACE] = ACTIONS(903), + [anon_sym_LPAREN2] = ACTIONS(903), + [anon_sym_STAR] = ACTIONS(903), + [anon_sym_static] = ACTIONS(905), + [anon_sym_auto] = ACTIONS(905), + [anon_sym_register] = ACTIONS(905), + [anon_sym_inline] = ACTIONS(905), + [anon_sym_const] = ACTIONS(905), + [anon_sym_restrict] = ACTIONS(905), + [anon_sym_volatile] = ACTIONS(905), + [anon_sym__Atomic] = ACTIONS(905), + [anon_sym_unsigned] = ACTIONS(905), + [anon_sym_long] = ACTIONS(905), + [anon_sym_short] = ACTIONS(905), + [sym_primitive_type] = ACTIONS(905), + [anon_sym_enum] = ACTIONS(905), + [anon_sym_struct] = ACTIONS(905), + [anon_sym_union] = ACTIONS(905), + [anon_sym_if] = ACTIONS(905), + [anon_sym_switch] = ACTIONS(905), + [anon_sym_case] = ACTIONS(905), + [anon_sym_default] = ACTIONS(905), + [anon_sym_while] = ACTIONS(905), + [anon_sym_do] = ACTIONS(905), + [anon_sym_for] = ACTIONS(905), + [anon_sym_return] = ACTIONS(905), + [anon_sym_break] = ACTIONS(905), + [anon_sym_continue] = ACTIONS(905), + [anon_sym_goto] = ACTIONS(905), + [anon_sym_AMP] = ACTIONS(903), + [anon_sym_BANG] = ACTIONS(903), + [anon_sym_TILDE] = ACTIONS(903), + [anon_sym_PLUS] = ACTIONS(905), + [anon_sym_DASH] = ACTIONS(905), + [anon_sym_DASH_DASH] = ACTIONS(903), + [anon_sym_PLUS_PLUS] = ACTIONS(903), + [anon_sym_sizeof] = ACTIONS(905), + [sym_number_literal] = ACTIONS(903), + [anon_sym_SQUOTE] = ACTIONS(903), + [anon_sym_DQUOTE] = ACTIONS(903), + [sym_true] = ACTIONS(905), + [sym_false] = ACTIONS(905), + [sym_null] = ACTIONS(905), + [sym_identifier] = ACTIONS(905), + [sym_comment] = ACTIONS(59), + }, + [818] = { + [anon_sym_SEMI] = ACTIONS(1125), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1127), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1127), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1127), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1127), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1127), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1127), + [sym_preproc_directive] = ACTIONS(1127), + [anon_sym_typedef] = ACTIONS(1127), + [anon_sym_extern] = ACTIONS(1127), + [anon_sym_LBRACE] = ACTIONS(1125), + [anon_sym_LPAREN2] = ACTIONS(1125), + [anon_sym_STAR] = ACTIONS(1125), + [anon_sym_static] = ACTIONS(1127), + [anon_sym_auto] = ACTIONS(1127), + [anon_sym_register] = ACTIONS(1127), + [anon_sym_inline] = ACTIONS(1127), + [anon_sym_const] = ACTIONS(1127), + [anon_sym_restrict] = ACTIONS(1127), + [anon_sym_volatile] = ACTIONS(1127), + [anon_sym__Atomic] = ACTIONS(1127), + [anon_sym_unsigned] = ACTIONS(1127), + [anon_sym_long] = ACTIONS(1127), + [anon_sym_short] = ACTIONS(1127), + [sym_primitive_type] = ACTIONS(1127), + [anon_sym_enum] = ACTIONS(1127), + [anon_sym_struct] = ACTIONS(1127), + [anon_sym_union] = ACTIONS(1127), + [anon_sym_if] = ACTIONS(1127), + [anon_sym_switch] = ACTIONS(1127), + [anon_sym_case] = ACTIONS(1127), + [anon_sym_default] = ACTIONS(1127), + [anon_sym_while] = ACTIONS(1127), + [anon_sym_do] = ACTIONS(1127), + [anon_sym_for] = ACTIONS(1127), + [anon_sym_return] = ACTIONS(1127), + [anon_sym_break] = ACTIONS(1127), + [anon_sym_continue] = ACTIONS(1127), + [anon_sym_goto] = ACTIONS(1127), + [anon_sym_AMP] = ACTIONS(1125), + [anon_sym_BANG] = ACTIONS(1125), + [anon_sym_TILDE] = ACTIONS(1125), + [anon_sym_PLUS] = ACTIONS(1127), + [anon_sym_DASH] = ACTIONS(1127), + [anon_sym_DASH_DASH] = ACTIONS(1125), + [anon_sym_PLUS_PLUS] = ACTIONS(1125), + [anon_sym_sizeof] = ACTIONS(1127), + [sym_number_literal] = ACTIONS(1125), + [anon_sym_SQUOTE] = ACTIONS(1125), + [anon_sym_DQUOTE] = ACTIONS(1125), + [sym_true] = ACTIONS(1127), + [sym_false] = ACTIONS(1127), + [sym_null] = ACTIONS(1127), + [sym_identifier] = ACTIONS(1127), + [sym_comment] = ACTIONS(59), + }, + [819] = { + [anon_sym_SEMI] = ACTIONS(1129), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1131), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1131), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1131), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1131), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1131), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1131), + [sym_preproc_directive] = ACTIONS(1131), + [anon_sym_typedef] = ACTIONS(1131), + [anon_sym_extern] = ACTIONS(1131), + [anon_sym_LBRACE] = ACTIONS(1129), + [anon_sym_LPAREN2] = ACTIONS(1129), + [anon_sym_STAR] = ACTIONS(1129), + [anon_sym_static] = ACTIONS(1131), + [anon_sym_auto] = ACTIONS(1131), + [anon_sym_register] = ACTIONS(1131), + [anon_sym_inline] = ACTIONS(1131), + [anon_sym_const] = ACTIONS(1131), + [anon_sym_restrict] = ACTIONS(1131), + [anon_sym_volatile] = ACTIONS(1131), + [anon_sym__Atomic] = ACTIONS(1131), + [anon_sym_unsigned] = ACTIONS(1131), + [anon_sym_long] = ACTIONS(1131), + [anon_sym_short] = ACTIONS(1131), + [sym_primitive_type] = ACTIONS(1131), + [anon_sym_enum] = ACTIONS(1131), + [anon_sym_struct] = ACTIONS(1131), + [anon_sym_union] = ACTIONS(1131), + [anon_sym_if] = ACTIONS(1131), + [anon_sym_switch] = ACTIONS(1131), + [anon_sym_case] = ACTIONS(1131), + [anon_sym_default] = ACTIONS(1131), + [anon_sym_while] = ACTIONS(1131), + [anon_sym_do] = ACTIONS(1131), + [anon_sym_for] = ACTIONS(1131), + [anon_sym_return] = ACTIONS(1131), + [anon_sym_break] = ACTIONS(1131), + [anon_sym_continue] = ACTIONS(1131), + [anon_sym_goto] = ACTIONS(1131), + [anon_sym_AMP] = ACTIONS(1129), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_TILDE] = ACTIONS(1129), + [anon_sym_PLUS] = ACTIONS(1131), + [anon_sym_DASH] = ACTIONS(1131), + [anon_sym_DASH_DASH] = ACTIONS(1129), + [anon_sym_PLUS_PLUS] = ACTIONS(1129), + [anon_sym_sizeof] = ACTIONS(1131), + [sym_number_literal] = ACTIONS(1129), + [anon_sym_SQUOTE] = ACTIONS(1129), + [anon_sym_DQUOTE] = ACTIONS(1129), + [sym_true] = ACTIONS(1131), + [sym_false] = ACTIONS(1131), + [sym_null] = ACTIONS(1131), + [sym_identifier] = ACTIONS(1131), + [sym_comment] = ACTIONS(59), + }, + [820] = { + [anon_sym_LF] = ACTIONS(2655), + [sym_comment] = ACTIONS(69), + }, + [821] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1181), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1181), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1181), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1181), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1181), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1181), + [sym_preproc_directive] = ACTIONS(1181), + [anon_sym_typedef] = ACTIONS(1181), + [anon_sym_extern] = ACTIONS(1181), + [anon_sym_LPAREN2] = ACTIONS(1179), + [anon_sym_STAR] = ACTIONS(1179), + [anon_sym_static] = ACTIONS(1181), + [anon_sym_auto] = ACTIONS(1181), + [anon_sym_register] = ACTIONS(1181), + [anon_sym_inline] = ACTIONS(1181), + [anon_sym_const] = ACTIONS(1181), + [anon_sym_restrict] = ACTIONS(1181), + [anon_sym_volatile] = ACTIONS(1181), + [anon_sym__Atomic] = ACTIONS(1181), + [anon_sym_unsigned] = ACTIONS(1181), + [anon_sym_long] = ACTIONS(1181), + [anon_sym_short] = ACTIONS(1181), + [sym_primitive_type] = ACTIONS(1181), + [anon_sym_enum] = ACTIONS(1181), + [anon_sym_struct] = ACTIONS(1181), + [anon_sym_union] = ACTIONS(1181), + [anon_sym_AMP] = ACTIONS(1179), + [anon_sym_BANG] = ACTIONS(1179), + [anon_sym_TILDE] = ACTIONS(1179), + [anon_sym_PLUS] = ACTIONS(1181), + [anon_sym_DASH] = ACTIONS(1181), + [anon_sym_DASH_DASH] = ACTIONS(1179), + [anon_sym_PLUS_PLUS] = ACTIONS(1179), + [anon_sym_sizeof] = ACTIONS(1181), + [sym_number_literal] = ACTIONS(1179), + [anon_sym_SQUOTE] = ACTIONS(1179), + [anon_sym_DQUOTE] = ACTIONS(1179), + [sym_true] = ACTIONS(1181), + [sym_false] = ACTIONS(1181), + [sym_null] = ACTIONS(1181), + [sym_identifier] = ACTIONS(1181), + [sym_comment] = ACTIONS(59), + }, + [822] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2657), + [sym_comment] = ACTIONS(59), + }, + [823] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1212), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1212), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1212), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1212), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1212), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1212), + [sym_preproc_directive] = ACTIONS(1212), + [anon_sym_typedef] = ACTIONS(1212), + [anon_sym_extern] = ACTIONS(1212), + [anon_sym_LPAREN2] = ACTIONS(1210), + [anon_sym_STAR] = ACTIONS(1210), + [anon_sym_static] = ACTIONS(1212), + [anon_sym_auto] = ACTIONS(1212), + [anon_sym_register] = ACTIONS(1212), + [anon_sym_inline] = ACTIONS(1212), + [anon_sym_const] = ACTIONS(1212), + [anon_sym_restrict] = ACTIONS(1212), + [anon_sym_volatile] = ACTIONS(1212), + [anon_sym__Atomic] = ACTIONS(1212), + [anon_sym_unsigned] = ACTIONS(1212), + [anon_sym_long] = ACTIONS(1212), + [anon_sym_short] = ACTIONS(1212), + [sym_primitive_type] = ACTIONS(1212), + [anon_sym_enum] = ACTIONS(1212), + [anon_sym_struct] = ACTIONS(1212), + [anon_sym_union] = ACTIONS(1212), + [anon_sym_AMP] = ACTIONS(1210), + [anon_sym_BANG] = ACTIONS(1210), + [anon_sym_TILDE] = ACTIONS(1210), + [anon_sym_PLUS] = ACTIONS(1212), + [anon_sym_DASH] = ACTIONS(1212), + [anon_sym_DASH_DASH] = ACTIONS(1210), + [anon_sym_PLUS_PLUS] = ACTIONS(1210), + [anon_sym_sizeof] = ACTIONS(1212), + [sym_number_literal] = ACTIONS(1210), + [anon_sym_SQUOTE] = ACTIONS(1210), + [anon_sym_DQUOTE] = ACTIONS(1210), + [sym_true] = ACTIONS(1212), + [sym_false] = ACTIONS(1212), + [sym_null] = ACTIONS(1212), + [sym_identifier] = ACTIONS(1212), + [sym_comment] = ACTIONS(59), + }, + [824] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2659), + [sym_comment] = ACTIONS(59), + }, + [825] = { + [anon_sym_SEMI] = ACTIONS(1220), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1222), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1222), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1222), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1222), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1222), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1222), + [sym_preproc_directive] = ACTIONS(1222), + [anon_sym_typedef] = ACTIONS(1222), + [anon_sym_extern] = ACTIONS(1222), + [anon_sym_LBRACE] = ACTIONS(1220), + [anon_sym_LPAREN2] = ACTIONS(1220), + [anon_sym_STAR] = ACTIONS(1220), + [anon_sym_static] = ACTIONS(1222), + [anon_sym_auto] = ACTIONS(1222), + [anon_sym_register] = ACTIONS(1222), + [anon_sym_inline] = ACTIONS(1222), + [anon_sym_const] = ACTIONS(1222), + [anon_sym_restrict] = ACTIONS(1222), + [anon_sym_volatile] = ACTIONS(1222), + [anon_sym__Atomic] = ACTIONS(1222), + [anon_sym_unsigned] = ACTIONS(1222), + [anon_sym_long] = ACTIONS(1222), + [anon_sym_short] = ACTIONS(1222), + [sym_primitive_type] = ACTIONS(1222), + [anon_sym_enum] = ACTIONS(1222), + [anon_sym_struct] = ACTIONS(1222), + [anon_sym_union] = ACTIONS(1222), + [anon_sym_if] = ACTIONS(1222), + [anon_sym_else] = ACTIONS(1222), + [anon_sym_switch] = ACTIONS(1222), + [anon_sym_case] = ACTIONS(1222), + [anon_sym_default] = ACTIONS(1222), + [anon_sym_while] = ACTIONS(1222), + [anon_sym_do] = ACTIONS(1222), + [anon_sym_for] = ACTIONS(1222), + [anon_sym_return] = ACTIONS(1222), + [anon_sym_break] = ACTIONS(1222), + [anon_sym_continue] = ACTIONS(1222), + [anon_sym_goto] = ACTIONS(1222), + [anon_sym_AMP] = ACTIONS(1220), + [anon_sym_BANG] = ACTIONS(1220), + [anon_sym_TILDE] = ACTIONS(1220), + [anon_sym_PLUS] = ACTIONS(1222), + [anon_sym_DASH] = ACTIONS(1222), + [anon_sym_DASH_DASH] = ACTIONS(1220), + [anon_sym_PLUS_PLUS] = ACTIONS(1220), + [anon_sym_sizeof] = ACTIONS(1222), + [sym_number_literal] = ACTIONS(1220), + [anon_sym_SQUOTE] = ACTIONS(1220), + [anon_sym_DQUOTE] = ACTIONS(1220), + [sym_true] = ACTIONS(1222), + [sym_false] = ACTIONS(1222), + [sym_null] = ACTIONS(1222), + [sym_identifier] = ACTIONS(1222), + [sym_comment] = ACTIONS(59), + }, + [826] = { + [sym_parameter_list] = STATE(278), + [anon_sym_SEMI] = ACTIONS(2661), + [anon_sym_LPAREN2] = ACTIONS(441), + [anon_sym_LBRACK] = ACTIONS(736), + [sym_comment] = ACTIONS(59), + }, + [827] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1236), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1236), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1236), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1236), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1236), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1236), + [sym_preproc_directive] = ACTIONS(1236), + [anon_sym_typedef] = ACTIONS(1236), + [anon_sym_extern] = ACTIONS(1236), + [anon_sym_LPAREN2] = ACTIONS(1234), + [anon_sym_STAR] = ACTIONS(1234), + [anon_sym_static] = ACTIONS(1236), + [anon_sym_auto] = ACTIONS(1236), + [anon_sym_register] = ACTIONS(1236), + [anon_sym_inline] = ACTIONS(1236), + [anon_sym_const] = ACTIONS(1236), + [anon_sym_restrict] = ACTIONS(1236), + [anon_sym_volatile] = ACTIONS(1236), + [anon_sym__Atomic] = ACTIONS(1236), + [anon_sym_unsigned] = ACTIONS(1236), + [anon_sym_long] = ACTIONS(1236), + [anon_sym_short] = ACTIONS(1236), + [sym_primitive_type] = ACTIONS(1236), + [anon_sym_enum] = ACTIONS(1236), + [anon_sym_struct] = ACTIONS(1236), + [anon_sym_union] = ACTIONS(1236), + [anon_sym_AMP] = ACTIONS(1234), + [anon_sym_BANG] = ACTIONS(1234), + [anon_sym_TILDE] = ACTIONS(1234), + [anon_sym_PLUS] = ACTIONS(1236), + [anon_sym_DASH] = ACTIONS(1236), + [anon_sym_DASH_DASH] = ACTIONS(1234), + [anon_sym_PLUS_PLUS] = ACTIONS(1234), + [anon_sym_sizeof] = ACTIONS(1236), + [sym_number_literal] = ACTIONS(1234), + [anon_sym_SQUOTE] = ACTIONS(1234), + [anon_sym_DQUOTE] = ACTIONS(1234), + [sym_true] = ACTIONS(1236), + [sym_false] = ACTIONS(1236), + [sym_null] = ACTIONS(1236), + [sym_identifier] = ACTIONS(1236), + [sym_comment] = ACTIONS(59), + }, + [828] = { + [sym_preproc_include] = STATE(472), + [sym_preproc_def] = STATE(472), + [sym_preproc_function_def] = STATE(472), + [sym_preproc_call] = STATE(472), + [sym_preproc_if] = STATE(472), + [sym_preproc_ifdef] = STATE(472), + [sym_function_definition] = STATE(472), + [sym_declaration] = STATE(472), + [sym_type_definition] = STATE(472), + [sym__declaration_specifiers] = STATE(24), + [sym_linkage_specification] = STATE(472), + [sym_storage_class_specifier] = STATE(30), + [sym_type_qualifier] = STATE(30), + [sym__type_specifier] = STATE(25), + [sym_sized_type_specifier] = STATE(25), + [sym_enum_specifier] = STATE(25), + [sym_struct_specifier] = STATE(25), + [sym_union_specifier] = STATE(25), + [sym__expression] = STATE(26), + [sym_conditional_expression] = STATE(26), + [sym_assignment_expression] = STATE(26), + [sym_pointer_expression] = STATE(26), + [sym_logical_expression] = STATE(26), + [sym_bitwise_expression] = STATE(26), + [sym_equality_expression] = STATE(26), + [sym_relational_expression] = STATE(26), + [sym_shift_expression] = STATE(26), + [sym_math_expression] = STATE(26), + [sym_cast_expression] = STATE(26), + [sym_sizeof_expression] = STATE(26), + [sym_subscript_expression] = STATE(26), + [sym_call_expression] = STATE(27), + [sym_field_expression] = STATE(26), + [sym_compound_literal_expression] = STATE(26), + [sym_parenthesized_expression] = STATE(26), + [sym_char_literal] = STATE(26), + [sym_concatenated_string] = STATE(26), + [sym_string_literal] = STATE(28), + [sym__empty_declaration] = STATE(472), + [sym_macro_type_specifier] = STATE(25), + [aux_sym_translation_unit_repeat1] = STATE(472), + [aux_sym__declaration_specifiers_repeat1] = STATE(30), + [aux_sym_sized_type_specifier_repeat1] = STATE(31), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(7), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(9), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(11), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(13), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(13), + [sym_preproc_directive] = ACTIONS(15), + [anon_sym_typedef] = ACTIONS(17), + [anon_sym_extern] = ACTIONS(19), + [anon_sym_RBRACE] = ACTIONS(2663), + [anon_sym_LPAREN2] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_static] = ACTIONS(25), + [anon_sym_auto] = ACTIONS(25), + [anon_sym_register] = ACTIONS(25), + [anon_sym_inline] = ACTIONS(25), + [anon_sym_const] = ACTIONS(27), + [anon_sym_restrict] = ACTIONS(27), + [anon_sym_volatile] = ACTIONS(27), + [anon_sym__Atomic] = ACTIONS(27), + [anon_sym_unsigned] = ACTIONS(29), + [anon_sym_long] = ACTIONS(29), + [anon_sym_short] = ACTIONS(29), + [sym_primitive_type] = ACTIONS(31), + [anon_sym_enum] = ACTIONS(33), + [anon_sym_struct] = ACTIONS(35), + [anon_sym_union] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(41), + [anon_sym_PLUS] = ACTIONS(43), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_DASH_DASH] = ACTIONS(45), + [anon_sym_PLUS_PLUS] = ACTIONS(45), + [anon_sym_sizeof] = ACTIONS(47), + [sym_number_literal] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(55), + [sym_false] = ACTIONS(55), + [sym_null] = ACTIONS(55), + [sym_identifier] = ACTIONS(57), + [sym_comment] = ACTIONS(59), + }, + [829] = { + [anon_sym_SEMI] = ACTIONS(1444), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1446), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1446), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1446), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1446), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1446), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1446), + [sym_preproc_directive] = ACTIONS(1446), + [anon_sym_typedef] = ACTIONS(1446), + [anon_sym_extern] = ACTIONS(1446), + [anon_sym_LBRACE] = ACTIONS(1444), + [anon_sym_LPAREN2] = ACTIONS(1444), + [anon_sym_STAR] = ACTIONS(1444), + [anon_sym_static] = ACTIONS(1446), + [anon_sym_auto] = ACTIONS(1446), + [anon_sym_register] = ACTIONS(1446), + [anon_sym_inline] = ACTIONS(1446), + [anon_sym_const] = ACTIONS(1446), + [anon_sym_restrict] = ACTIONS(1446), + [anon_sym_volatile] = ACTIONS(1446), + [anon_sym__Atomic] = ACTIONS(1446), + [anon_sym_unsigned] = ACTIONS(1446), + [anon_sym_long] = ACTIONS(1446), + [anon_sym_short] = ACTIONS(1446), + [sym_primitive_type] = ACTIONS(1446), + [anon_sym_enum] = ACTIONS(1446), + [anon_sym_struct] = ACTIONS(1446), + [anon_sym_union] = ACTIONS(1446), + [anon_sym_if] = ACTIONS(1446), + [anon_sym_else] = ACTIONS(1446), + [anon_sym_switch] = ACTIONS(1446), + [anon_sym_case] = ACTIONS(1446), + [anon_sym_default] = ACTIONS(1446), + [anon_sym_while] = ACTIONS(1446), + [anon_sym_do] = ACTIONS(1446), + [anon_sym_for] = ACTIONS(1446), + [anon_sym_return] = ACTIONS(1446), + [anon_sym_break] = ACTIONS(1446), + [anon_sym_continue] = ACTIONS(1446), + [anon_sym_goto] = ACTIONS(1446), + [anon_sym_AMP] = ACTIONS(1444), + [anon_sym_BANG] = ACTIONS(1444), + [anon_sym_TILDE] = ACTIONS(1444), + [anon_sym_PLUS] = ACTIONS(1446), + [anon_sym_DASH] = ACTIONS(1446), + [anon_sym_DASH_DASH] = ACTIONS(1444), + [anon_sym_PLUS_PLUS] = ACTIONS(1444), + [anon_sym_sizeof] = ACTIONS(1446), + [sym_number_literal] = ACTIONS(1444), + [anon_sym_SQUOTE] = ACTIONS(1444), + [anon_sym_DQUOTE] = ACTIONS(1444), + [sym_true] = ACTIONS(1446), + [sym_false] = ACTIONS(1446), + [sym_null] = ACTIONS(1446), + [sym_identifier] = ACTIONS(1446), + [sym_comment] = ACTIONS(59), + }, + [830] = { + [sym_preproc_include] = STATE(588), + [sym_preproc_def] = STATE(588), + [sym_preproc_function_def] = STATE(588), + [sym_preproc_call] = STATE(588), + [sym_preproc_if_in_compound_statement] = STATE(588), + [sym_preproc_ifdef_in_compound_statement] = STATE(588), + [sym_declaration] = STATE(588), + [sym_type_definition] = STATE(588), + [sym__declaration_specifiers] = STATE(371), + [sym_compound_statement] = STATE(588), + [sym_storage_class_specifier] = STATE(30), + [sym_type_qualifier] = STATE(30), + [sym__type_specifier] = STATE(25), + [sym_sized_type_specifier] = STATE(25), + [sym_enum_specifier] = STATE(25), + [sym_struct_specifier] = STATE(25), + [sym_union_specifier] = STATE(25), + [sym_labeled_statement] = STATE(588), + [sym_expression_statement] = STATE(588), + [sym_if_statement] = STATE(588), + [sym_switch_statement] = STATE(588), + [sym_case_statement] = STATE(588), + [sym_while_statement] = STATE(588), + [sym_do_statement] = STATE(588), + [sym_for_statement] = STATE(588), + [sym_return_statement] = STATE(588), + [sym_break_statement] = STATE(588), + [sym_continue_statement] = STATE(588), + [sym_goto_statement] = STATE(588), + [sym__expression] = STATE(372), + [sym_comma_expression] = STATE(373), + [sym_conditional_expression] = STATE(372), + [sym_assignment_expression] = STATE(372), + [sym_pointer_expression] = STATE(372), + [sym_logical_expression] = STATE(372), + [sym_bitwise_expression] = STATE(372), + [sym_equality_expression] = STATE(372), + [sym_relational_expression] = STATE(372), + [sym_shift_expression] = STATE(372), + [sym_math_expression] = STATE(372), + [sym_cast_expression] = STATE(372), + [sym_sizeof_expression] = STATE(372), + [sym_subscript_expression] = STATE(372), + [sym_call_expression] = STATE(372), + [sym_field_expression] = STATE(372), + [sym_compound_literal_expression] = STATE(372), + [sym_parenthesized_expression] = STATE(372), + [sym_char_literal] = STATE(372), + [sym_concatenated_string] = STATE(372), + [sym_string_literal] = STATE(374), + [sym__empty_declaration] = STATE(588), + [sym_macro_type_specifier] = STATE(25), + [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(588), + [aux_sym__declaration_specifiers_repeat1] = STATE(30), + [aux_sym_sized_type_specifier_repeat1] = STATE(31), + [anon_sym_SEMI] = ACTIONS(928), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(7), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(9), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(930), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(932), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(932), + [sym_preproc_directive] = ACTIONS(15), + [anon_sym_typedef] = ACTIONS(17), + [anon_sym_extern] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(439), + [anon_sym_RBRACE] = ACTIONS(2665), + [anon_sym_LPAREN2] = ACTIONS(936), + [anon_sym_STAR] = ACTIONS(938), + [anon_sym_static] = ACTIONS(25), + [anon_sym_auto] = ACTIONS(25), + [anon_sym_register] = ACTIONS(25), + [anon_sym_inline] = ACTIONS(25), + [anon_sym_const] = ACTIONS(27), + [anon_sym_restrict] = ACTIONS(27), + [anon_sym_volatile] = ACTIONS(27), + [anon_sym__Atomic] = ACTIONS(27), + [anon_sym_unsigned] = ACTIONS(29), + [anon_sym_long] = ACTIONS(29), + [anon_sym_short] = ACTIONS(29), + [sym_primitive_type] = ACTIONS(31), + [anon_sym_enum] = ACTIONS(33), + [anon_sym_struct] = ACTIONS(35), + [anon_sym_union] = ACTIONS(37), + [anon_sym_if] = ACTIONS(940), + [anon_sym_switch] = ACTIONS(942), + [anon_sym_case] = ACTIONS(944), + [anon_sym_default] = ACTIONS(946), + [anon_sym_while] = ACTIONS(948), + [anon_sym_do] = ACTIONS(950), + [anon_sym_for] = ACTIONS(952), + [anon_sym_return] = ACTIONS(954), + [anon_sym_break] = ACTIONS(956), + [anon_sym_continue] = ACTIONS(958), + [anon_sym_goto] = ACTIONS(960), + [anon_sym_AMP] = ACTIONS(938), + [anon_sym_BANG] = ACTIONS(962), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_DASH_DASH] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(968), + [anon_sym_sizeof] = ACTIONS(970), + [sym_number_literal] = ACTIONS(972), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(974), + [sym_false] = ACTIONS(974), + [sym_null] = ACTIONS(974), + [sym_identifier] = ACTIONS(976), + [sym_comment] = ACTIONS(59), + }, + [831] = { + [anon_sym_SEMI] = ACTIONS(1540), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1542), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1542), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1542), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1542), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1542), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1542), + [sym_preproc_directive] = ACTIONS(1542), + [anon_sym_typedef] = ACTIONS(1542), + [anon_sym_extern] = ACTIONS(1542), + [anon_sym_LBRACE] = ACTIONS(1540), + [anon_sym_LPAREN2] = ACTIONS(1540), + [anon_sym_STAR] = ACTIONS(1540), + [anon_sym_static] = ACTIONS(1542), + [anon_sym_auto] = ACTIONS(1542), + [anon_sym_register] = ACTIONS(1542), + [anon_sym_inline] = ACTIONS(1542), + [anon_sym_const] = ACTIONS(1542), + [anon_sym_restrict] = ACTIONS(1542), + [anon_sym_volatile] = ACTIONS(1542), + [anon_sym__Atomic] = ACTIONS(1542), + [anon_sym_unsigned] = ACTIONS(1542), + [anon_sym_long] = ACTIONS(1542), + [anon_sym_short] = ACTIONS(1542), + [sym_primitive_type] = ACTIONS(1542), + [anon_sym_enum] = ACTIONS(1542), + [anon_sym_struct] = ACTIONS(1542), + [anon_sym_union] = ACTIONS(1542), + [anon_sym_if] = ACTIONS(1542), + [anon_sym_else] = ACTIONS(1542), + [anon_sym_switch] = ACTIONS(1542), + [anon_sym_case] = ACTIONS(1542), + [anon_sym_default] = ACTIONS(1542), + [anon_sym_while] = ACTIONS(1542), + [anon_sym_do] = ACTIONS(1542), + [anon_sym_for] = ACTIONS(1542), + [anon_sym_return] = ACTIONS(1542), + [anon_sym_break] = ACTIONS(1542), + [anon_sym_continue] = ACTIONS(1542), + [anon_sym_goto] = ACTIONS(1542), + [anon_sym_AMP] = ACTIONS(1540), + [anon_sym_BANG] = ACTIONS(1540), + [anon_sym_TILDE] = ACTIONS(1540), + [anon_sym_PLUS] = ACTIONS(1542), + [anon_sym_DASH] = ACTIONS(1542), + [anon_sym_DASH_DASH] = ACTIONS(1540), + [anon_sym_PLUS_PLUS] = ACTIONS(1540), + [anon_sym_sizeof] = ACTIONS(1542), + [sym_number_literal] = ACTIONS(1540), + [anon_sym_SQUOTE] = ACTIONS(1540), + [anon_sym_DQUOTE] = ACTIONS(1540), + [sym_true] = ACTIONS(1542), + [sym_false] = ACTIONS(1542), + [sym_null] = ACTIONS(1542), + [sym_identifier] = ACTIONS(1542), + [sym_comment] = ACTIONS(59), + }, + [832] = { + [anon_sym_SEMI] = ACTIONS(1754), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1756), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1756), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1756), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1756), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1756), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1756), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1756), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1756), + [sym_preproc_directive] = ACTIONS(1756), + [anon_sym_typedef] = ACTIONS(1756), + [anon_sym_extern] = ACTIONS(1756), + [anon_sym_LBRACE] = ACTIONS(1754), + [anon_sym_LPAREN2] = ACTIONS(1754), + [anon_sym_STAR] = ACTIONS(1754), + [anon_sym_static] = ACTIONS(1756), + [anon_sym_auto] = ACTIONS(1756), + [anon_sym_register] = ACTIONS(1756), + [anon_sym_inline] = ACTIONS(1756), + [anon_sym_const] = ACTIONS(1756), + [anon_sym_restrict] = ACTIONS(1756), + [anon_sym_volatile] = ACTIONS(1756), + [anon_sym__Atomic] = ACTIONS(1756), + [anon_sym_unsigned] = ACTIONS(1756), + [anon_sym_long] = ACTIONS(1756), + [anon_sym_short] = ACTIONS(1756), + [sym_primitive_type] = ACTIONS(1756), + [anon_sym_enum] = ACTIONS(1756), + [anon_sym_struct] = ACTIONS(1756), + [anon_sym_union] = ACTIONS(1756), + [anon_sym_if] = ACTIONS(1756), + [anon_sym_else] = ACTIONS(1756), + [anon_sym_switch] = ACTIONS(1756), + [anon_sym_case] = ACTIONS(1756), + [anon_sym_default] = ACTIONS(1756), + [anon_sym_while] = ACTIONS(1756), + [anon_sym_do] = ACTIONS(1756), + [anon_sym_for] = ACTIONS(1756), + [anon_sym_return] = ACTIONS(1756), + [anon_sym_break] = ACTIONS(1756), + [anon_sym_continue] = ACTIONS(1756), + [anon_sym_goto] = ACTIONS(1756), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_PLUS] = ACTIONS(1756), + [anon_sym_DASH] = ACTIONS(1756), + [anon_sym_DASH_DASH] = ACTIONS(1754), + [anon_sym_PLUS_PLUS] = ACTIONS(1754), + [anon_sym_sizeof] = ACTIONS(1756), + [sym_number_literal] = ACTIONS(1754), + [anon_sym_SQUOTE] = ACTIONS(1754), + [anon_sym_DQUOTE] = ACTIONS(1754), + [sym_true] = ACTIONS(1756), + [sym_false] = ACTIONS(1756), + [sym_null] = ACTIONS(1756), + [sym_identifier] = ACTIONS(1756), + [sym_comment] = ACTIONS(59), + }, + [833] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1760), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1760), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1760), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1760), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1760), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1760), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1760), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1760), + [sym_preproc_directive] = ACTIONS(1760), + [anon_sym_typedef] = ACTIONS(1760), + [anon_sym_extern] = ACTIONS(1760), + [anon_sym_LPAREN2] = ACTIONS(1758), + [anon_sym_STAR] = ACTIONS(1758), + [anon_sym_static] = ACTIONS(1760), + [anon_sym_auto] = ACTIONS(1760), + [anon_sym_register] = ACTIONS(1760), + [anon_sym_inline] = ACTIONS(1760), + [anon_sym_const] = ACTIONS(1760), + [anon_sym_restrict] = ACTIONS(1760), + [anon_sym_volatile] = ACTIONS(1760), + [anon_sym__Atomic] = ACTIONS(1760), + [anon_sym_unsigned] = ACTIONS(1760), + [anon_sym_long] = ACTIONS(1760), + [anon_sym_short] = ACTIONS(1760), + [sym_primitive_type] = ACTIONS(1760), + [anon_sym_enum] = ACTIONS(1760), + [anon_sym_struct] = ACTIONS(1760), + [anon_sym_union] = ACTIONS(1760), + [anon_sym_AMP] = ACTIONS(1758), + [anon_sym_BANG] = ACTIONS(1758), + [anon_sym_TILDE] = ACTIONS(1758), + [anon_sym_PLUS] = ACTIONS(1760), + [anon_sym_DASH] = ACTIONS(1760), + [anon_sym_DASH_DASH] = ACTIONS(1758), + [anon_sym_PLUS_PLUS] = ACTIONS(1758), + [anon_sym_sizeof] = ACTIONS(1760), + [sym_number_literal] = ACTIONS(1758), + [anon_sym_SQUOTE] = ACTIONS(1758), + [anon_sym_DQUOTE] = ACTIONS(1758), + [sym_true] = ACTIONS(1760), + [sym_false] = ACTIONS(1760), + [sym_null] = ACTIONS(1760), + [sym_identifier] = ACTIONS(1760), + [sym_comment] = ACTIONS(59), + }, + [834] = { + [anon_sym_SEMI] = ACTIONS(2096), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2098), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2098), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2098), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2098), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2098), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2098), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2098), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2098), + [sym_preproc_directive] = ACTIONS(2098), + [anon_sym_typedef] = ACTIONS(2098), + [anon_sym_extern] = ACTIONS(2098), + [anon_sym_LBRACE] = ACTIONS(2096), + [anon_sym_LPAREN2] = ACTIONS(2096), + [anon_sym_STAR] = ACTIONS(2096), + [anon_sym_static] = ACTIONS(2098), + [anon_sym_auto] = ACTIONS(2098), + [anon_sym_register] = ACTIONS(2098), + [anon_sym_inline] = ACTIONS(2098), + [anon_sym_const] = ACTIONS(2098), + [anon_sym_restrict] = ACTIONS(2098), + [anon_sym_volatile] = ACTIONS(2098), + [anon_sym__Atomic] = ACTIONS(2098), + [anon_sym_unsigned] = ACTIONS(2098), + [anon_sym_long] = ACTIONS(2098), + [anon_sym_short] = ACTIONS(2098), + [sym_primitive_type] = ACTIONS(2098), + [anon_sym_enum] = ACTIONS(2098), + [anon_sym_struct] = ACTIONS(2098), + [anon_sym_union] = ACTIONS(2098), + [anon_sym_if] = ACTIONS(2098), + [anon_sym_else] = ACTIONS(2098), + [anon_sym_switch] = ACTIONS(2098), + [anon_sym_case] = ACTIONS(2098), + [anon_sym_default] = ACTIONS(2098), + [anon_sym_while] = ACTIONS(2098), + [anon_sym_do] = ACTIONS(2098), + [anon_sym_for] = ACTIONS(2098), + [anon_sym_return] = ACTIONS(2098), + [anon_sym_break] = ACTIONS(2098), + [anon_sym_continue] = ACTIONS(2098), + [anon_sym_goto] = ACTIONS(2098), + [anon_sym_AMP] = ACTIONS(2096), + [anon_sym_BANG] = ACTIONS(2096), + [anon_sym_TILDE] = ACTIONS(2096), + [anon_sym_PLUS] = ACTIONS(2098), + [anon_sym_DASH] = ACTIONS(2098), + [anon_sym_DASH_DASH] = ACTIONS(2096), + [anon_sym_PLUS_PLUS] = ACTIONS(2096), + [anon_sym_sizeof] = ACTIONS(2098), + [sym_number_literal] = ACTIONS(2096), + [anon_sym_SQUOTE] = ACTIONS(2096), + [anon_sym_DQUOTE] = ACTIONS(2096), + [sym_true] = ACTIONS(2098), + [sym_false] = ACTIONS(2098), + [sym_null] = ACTIONS(2098), + [sym_identifier] = ACTIONS(2098), + [sym_comment] = ACTIONS(59), + }, + [835] = { + [anon_sym_SEMI] = ACTIONS(2667), + [anon_sym_RPAREN] = ACTIONS(2667), + [anon_sym_LPAREN2] = ACTIONS(2667), + [anon_sym_LBRACK] = ACTIONS(2667), + [sym_comment] = ACTIONS(59), + }, + [836] = { + [sym__declarator] = STATE(344), + [sym__abstract_declarator] = STATE(487), + [sym_pointer_declarator] = STATE(344), + [sym_abstract_pointer_declarator] = STATE(487), + [sym_function_declarator] = STATE(344), + [sym_abstract_function_declarator] = STATE(487), + [sym_array_declarator] = STATE(344), + [sym_abstract_array_declarator] = STATE(487), + [sym_type_qualifier] = STATE(963), + [sym_parameter_list] = STATE(151), + [aux_sym_type_definition_repeat1] = STATE(963), + [anon_sym_RPAREN] = ACTIONS(1265), + [anon_sym_LPAREN2] = ACTIONS(1253), + [anon_sym_STAR] = ACTIONS(1772), + [anon_sym_LBRACK] = ACTIONS(313), + [anon_sym_const] = ACTIONS(27), + [anon_sym_restrict] = ACTIONS(27), + [anon_sym_volatile] = ACTIONS(27), + [anon_sym__Atomic] = ACTIONS(27), + [sym_identifier] = ACTIONS(918), + [sym_comment] = ACTIONS(59), + }, + [837] = { + [sym_type_qualifier] = STATE(837), + [aux_sym_type_definition_repeat1] = STATE(837), + [anon_sym_COMMA] = ACTIONS(1432), + [anon_sym_RPAREN] = ACTIONS(1432), + [anon_sym_LPAREN2] = ACTIONS(1432), + [anon_sym_STAR] = ACTIONS(1432), + [anon_sym_LBRACK] = ACTIONS(1432), + [anon_sym_const] = ACTIONS(738), + [anon_sym_restrict] = ACTIONS(738), + [anon_sym_volatile] = ACTIONS(738), + [anon_sym__Atomic] = ACTIONS(738), + [sym_identifier] = ACTIONS(741), + [sym_comment] = ACTIONS(59), + }, + [838] = { + [anon_sym_COMMA] = ACTIONS(2669), + [anon_sym_RPAREN] = ACTIONS(2669), + [anon_sym_LPAREN2] = ACTIONS(2669), + [anon_sym_LBRACK] = ACTIONS(2669), + [sym_comment] = ACTIONS(59), }, [839] = { - [anon_sym_COMMA] = ACTIONS(2641), - [anon_sym_RPAREN] = ACTIONS(2641), - [anon_sym_SEMI] = ACTIONS(2641), - [anon_sym_RBRACE] = ACTIONS(2641), - [anon_sym_LPAREN2] = ACTIONS(2641), - [anon_sym_STAR] = ACTIONS(2643), - [anon_sym_LBRACK] = ACTIONS(2641), - [anon_sym_RBRACK] = ACTIONS(2641), - [anon_sym_EQ] = ACTIONS(2643), - [anon_sym_COLON] = ACTIONS(2641), - [anon_sym_QMARK] = ACTIONS(2641), - [anon_sym_STAR_EQ] = ACTIONS(2641), - [anon_sym_SLASH_EQ] = ACTIONS(2641), - [anon_sym_PERCENT_EQ] = ACTIONS(2641), - [anon_sym_PLUS_EQ] = ACTIONS(2641), - [anon_sym_DASH_EQ] = ACTIONS(2641), - [anon_sym_LT_LT_EQ] = ACTIONS(2641), - [anon_sym_GT_GT_EQ] = ACTIONS(2641), - [anon_sym_AMP_EQ] = ACTIONS(2641), - [anon_sym_CARET_EQ] = ACTIONS(2641), - [anon_sym_PIPE_EQ] = ACTIONS(2641), - [anon_sym_AMP] = ACTIONS(2643), - [anon_sym_PIPE_PIPE] = ACTIONS(2641), - [anon_sym_AMP_AMP] = ACTIONS(2641), - [anon_sym_PIPE] = ACTIONS(2643), - [anon_sym_CARET] = ACTIONS(2643), - [anon_sym_EQ_EQ] = ACTIONS(2641), - [anon_sym_BANG_EQ] = ACTIONS(2641), - [anon_sym_LT] = ACTIONS(2643), - [anon_sym_GT] = ACTIONS(2643), - [anon_sym_LT_EQ] = ACTIONS(2641), - [anon_sym_GT_EQ] = ACTIONS(2641), - [anon_sym_LT_LT] = ACTIONS(2643), - [anon_sym_GT_GT] = ACTIONS(2643), - [anon_sym_PLUS] = ACTIONS(2643), - [anon_sym_DASH] = ACTIONS(2643), - [anon_sym_SLASH] = ACTIONS(2643), - [anon_sym_PERCENT] = ACTIONS(2643), - [anon_sym_DASH_DASH] = ACTIONS(2641), - [anon_sym_PLUS_PLUS] = ACTIONS(2641), - [anon_sym_DOT] = ACTIONS(2641), - [anon_sym_DASH_GT] = ACTIONS(2641), - [sym_comment] = ACTIONS(37), + [sym__expression] = STATE(319), + [sym_conditional_expression] = STATE(319), + [sym_assignment_expression] = STATE(319), + [sym_pointer_expression] = STATE(319), + [sym_logical_expression] = STATE(319), + [sym_bitwise_expression] = STATE(319), + [sym_equality_expression] = STATE(319), + [sym_relational_expression] = STATE(319), + [sym_shift_expression] = STATE(319), + [sym_math_expression] = STATE(319), + [sym_cast_expression] = STATE(319), + [sym_sizeof_expression] = STATE(319), + [sym_subscript_expression] = STATE(319), + [sym_call_expression] = STATE(319), + [sym_field_expression] = STATE(319), + [sym_compound_literal_expression] = STATE(319), + [sym_parenthesized_expression] = STATE(319), + [sym_initializer_list] = STATE(320), + [sym_char_literal] = STATE(319), + [sym_concatenated_string] = STATE(319), + [sym_string_literal] = STATE(508), + [anon_sym_LBRACE] = ACTIONS(840), + [anon_sym_LPAREN2] = ACTIONS(1289), + [anon_sym_STAR] = ACTIONS(1291), + [anon_sym_AMP] = ACTIONS(1291), + [anon_sym_BANG] = ACTIONS(1295), + [anon_sym_TILDE] = ACTIONS(1297), + [anon_sym_PLUS] = ACTIONS(1299), + [anon_sym_DASH] = ACTIONS(1299), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_sizeof] = ACTIONS(1303), + [sym_number_literal] = ACTIONS(842), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(844), + [sym_false] = ACTIONS(844), + [sym_null] = ACTIONS(844), + [sym_identifier] = ACTIONS(844), + [sym_comment] = ACTIONS(59), }, [840] = { - [sym_string_literal] = STATE(840), - [aux_sym_concatenated_string_repeat1] = STATE(840), - [anon_sym_COMMA] = ACTIONS(2382), - [anon_sym_RPAREN] = ACTIONS(2382), - [anon_sym_LPAREN2] = ACTIONS(2382), - [anon_sym_STAR] = ACTIONS(2384), - [anon_sym_LBRACK] = ACTIONS(2382), - [anon_sym_EQ] = ACTIONS(2384), - [anon_sym_QMARK] = ACTIONS(2382), - [anon_sym_STAR_EQ] = ACTIONS(2382), - [anon_sym_SLASH_EQ] = ACTIONS(2382), - [anon_sym_PERCENT_EQ] = ACTIONS(2382), - [anon_sym_PLUS_EQ] = ACTIONS(2382), - [anon_sym_DASH_EQ] = ACTIONS(2382), - [anon_sym_LT_LT_EQ] = ACTIONS(2382), - [anon_sym_GT_GT_EQ] = ACTIONS(2382), - [anon_sym_AMP_EQ] = ACTIONS(2382), - [anon_sym_CARET_EQ] = ACTIONS(2382), - [anon_sym_PIPE_EQ] = ACTIONS(2382), - [anon_sym_AMP] = ACTIONS(2384), - [anon_sym_PIPE_PIPE] = ACTIONS(2382), - [anon_sym_AMP_AMP] = ACTIONS(2382), - [anon_sym_PIPE] = ACTIONS(2384), - [anon_sym_CARET] = ACTIONS(2384), - [anon_sym_EQ_EQ] = ACTIONS(2382), - [anon_sym_BANG_EQ] = ACTIONS(2382), - [anon_sym_LT] = ACTIONS(2384), - [anon_sym_GT] = ACTIONS(2384), - [anon_sym_LT_EQ] = ACTIONS(2382), - [anon_sym_GT_EQ] = ACTIONS(2382), - [anon_sym_LT_LT] = ACTIONS(2384), - [anon_sym_GT_GT] = ACTIONS(2384), - [anon_sym_PLUS] = ACTIONS(2384), - [anon_sym_DASH] = ACTIONS(2384), - [anon_sym_SLASH] = ACTIONS(2384), - [anon_sym_PERCENT] = ACTIONS(2384), - [anon_sym_DASH_DASH] = ACTIONS(2382), - [anon_sym_PLUS_PLUS] = ACTIONS(2382), - [anon_sym_DOT] = ACTIONS(2382), - [anon_sym_DASH_GT] = ACTIONS(2382), - [anon_sym_DQUOTE] = ACTIONS(2386), - [sym_comment] = ACTIONS(37), + [anon_sym_LBRACK] = ACTIONS(2671), + [anon_sym_EQ] = ACTIONS(2671), + [anon_sym_DOT] = ACTIONS(2671), + [sym_comment] = ACTIONS(59), }, [841] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2160), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2160), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2160), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2160), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2160), - [sym_preproc_directive] = ACTIONS(2160), - [anon_sym_SEMI] = ACTIONS(2158), - [anon_sym_typedef] = ACTIONS(2160), - [anon_sym_extern] = ACTIONS(2160), - [anon_sym_LBRACE] = ACTIONS(2158), - [anon_sym_RBRACE] = ACTIONS(2158), - [anon_sym_LPAREN2] = ACTIONS(2158), - [anon_sym_STAR] = ACTIONS(2158), - [anon_sym_static] = ACTIONS(2160), - [anon_sym_auto] = ACTIONS(2160), - [anon_sym_register] = ACTIONS(2160), - [anon_sym_inline] = ACTIONS(2160), - [anon_sym_const] = ACTIONS(2160), - [anon_sym_restrict] = ACTIONS(2160), - [anon_sym_volatile] = ACTIONS(2160), - [anon_sym__Atomic] = ACTIONS(2160), - [anon_sym_unsigned] = ACTIONS(2160), - [anon_sym_long] = ACTIONS(2160), - [anon_sym_short] = ACTIONS(2160), - [sym_primitive_type] = ACTIONS(2160), - [anon_sym_enum] = ACTIONS(2160), - [anon_sym_struct] = ACTIONS(2160), - [anon_sym_union] = ACTIONS(2160), - [anon_sym_if] = ACTIONS(2160), - [anon_sym_else] = ACTIONS(2160), - [anon_sym_switch] = ACTIONS(2160), - [anon_sym_case] = ACTIONS(2160), - [anon_sym_default] = ACTIONS(2160), - [anon_sym_while] = ACTIONS(2160), - [anon_sym_do] = ACTIONS(2160), - [anon_sym_for] = ACTIONS(2160), - [anon_sym_return] = ACTIONS(2160), - [anon_sym_break] = ACTIONS(2160), - [anon_sym_continue] = ACTIONS(2160), - [anon_sym_goto] = ACTIONS(2160), - [anon_sym_AMP] = ACTIONS(2158), - [anon_sym_BANG] = ACTIONS(2158), - [anon_sym_TILDE] = ACTIONS(2158), - [anon_sym_PLUS] = ACTIONS(2160), - [anon_sym_DASH] = ACTIONS(2160), - [anon_sym_DASH_DASH] = ACTIONS(2158), - [anon_sym_PLUS_PLUS] = ACTIONS(2158), - [anon_sym_sizeof] = ACTIONS(2160), - [sym_number_literal] = ACTIONS(2158), - [anon_sym_SQUOTE] = ACTIONS(2158), - [anon_sym_DQUOTE] = ACTIONS(2158), - [sym_true] = ACTIONS(2160), - [sym_false] = ACTIONS(2160), - [sym_null] = ACTIONS(2160), - [sym_identifier] = ACTIONS(2160), - [sym_comment] = ACTIONS(37), + [anon_sym_RPAREN] = ACTIONS(2673), + [sym_comment] = ACTIONS(59), }, [842] = { - [sym_compound_statement] = STATE(965), - [sym_labeled_statement] = STATE(965), - [sym_expression_statement] = STATE(965), - [sym_if_statement] = STATE(965), - [sym_switch_statement] = STATE(965), - [sym_case_statement] = STATE(965), - [sym_while_statement] = STATE(965), - [sym_do_statement] = STATE(965), - [sym_for_statement] = STATE(965), - [sym_return_statement] = STATE(965), - [sym_break_statement] = STATE(965), - [sym_continue_statement] = STATE(965), - [sym_goto_statement] = STATE(965), - [sym__expression] = STATE(228), - [sym_comma_expression] = STATE(229), - [sym_conditional_expression] = STATE(228), - [sym_assignment_expression] = STATE(228), - [sym_pointer_expression] = STATE(228), - [sym_logical_expression] = STATE(228), - [sym_bitwise_expression] = STATE(228), - [sym_equality_expression] = STATE(228), - [sym_relational_expression] = STATE(228), - [sym_shift_expression] = STATE(228), - [sym_math_expression] = STATE(228), - [sym_cast_expression] = STATE(228), - [sym_sizeof_expression] = STATE(228), - [sym_subscript_expression] = STATE(228), - [sym_call_expression] = STATE(228), - [sym_field_expression] = STATE(228), - [sym_compound_literal_expression] = STATE(228), - [sym_parenthesized_expression] = STATE(228), - [sym_char_literal] = STATE(228), - [sym_concatenated_string] = STATE(228), - [sym_string_literal] = STATE(230), - [anon_sym_SEMI] = ACTIONS(503), - [anon_sym_LBRACE] = ACTIONS(229), - [anon_sym_LPAREN2] = ACTIONS(507), - [anon_sym_STAR] = ACTIONS(509), - [anon_sym_if] = ACTIONS(1475), - [anon_sym_switch] = ACTIONS(1477), - [anon_sym_case] = ACTIONS(1479), - [anon_sym_default] = ACTIONS(1481), - [anon_sym_while] = ACTIONS(1483), - [anon_sym_do] = ACTIONS(521), - [anon_sym_for] = ACTIONS(1485), - [anon_sym_return] = ACTIONS(525), - [anon_sym_break] = ACTIONS(527), - [anon_sym_continue] = ACTIONS(529), - [anon_sym_goto] = ACTIONS(531), - [anon_sym_AMP] = ACTIONS(509), - [anon_sym_BANG] = ACTIONS(533), - [anon_sym_TILDE] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DASH] = ACTIONS(537), - [anon_sym_DASH_DASH] = ACTIONS(539), - [anon_sym_PLUS_PLUS] = ACTIONS(539), - [anon_sym_sizeof] = ACTIONS(541), - [sym_number_literal] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(547), - [sym_false] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [sym_identifier] = ACTIONS(1487), - [sym_comment] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(2675), + [anon_sym_COMMA] = ACTIONS(2675), + [anon_sym_RPAREN] = ACTIONS(2675), + [anon_sym_RBRACE] = ACTIONS(2675), + [anon_sym_LPAREN2] = ACTIONS(2675), + [anon_sym_STAR] = ACTIONS(2677), + [anon_sym_LBRACK] = ACTIONS(2675), + [anon_sym_RBRACK] = ACTIONS(2675), + [anon_sym_EQ] = ACTIONS(2677), + [anon_sym_COLON] = ACTIONS(2675), + [anon_sym_QMARK] = ACTIONS(2675), + [anon_sym_STAR_EQ] = ACTIONS(2675), + [anon_sym_SLASH_EQ] = ACTIONS(2675), + [anon_sym_PERCENT_EQ] = ACTIONS(2675), + [anon_sym_PLUS_EQ] = ACTIONS(2675), + [anon_sym_DASH_EQ] = ACTIONS(2675), + [anon_sym_LT_LT_EQ] = ACTIONS(2675), + [anon_sym_GT_GT_EQ] = ACTIONS(2675), + [anon_sym_AMP_EQ] = ACTIONS(2675), + [anon_sym_CARET_EQ] = ACTIONS(2675), + [anon_sym_PIPE_EQ] = ACTIONS(2675), + [anon_sym_AMP] = ACTIONS(2677), + [anon_sym_PIPE_PIPE] = ACTIONS(2675), + [anon_sym_AMP_AMP] = ACTIONS(2675), + [anon_sym_PIPE] = ACTIONS(2677), + [anon_sym_CARET] = ACTIONS(2677), + [anon_sym_EQ_EQ] = ACTIONS(2675), + [anon_sym_BANG_EQ] = ACTIONS(2675), + [anon_sym_LT] = ACTIONS(2677), + [anon_sym_GT] = ACTIONS(2677), + [anon_sym_LT_EQ] = ACTIONS(2675), + [anon_sym_GT_EQ] = ACTIONS(2675), + [anon_sym_LT_LT] = ACTIONS(2677), + [anon_sym_GT_GT] = ACTIONS(2677), + [anon_sym_PLUS] = ACTIONS(2677), + [anon_sym_DASH] = ACTIONS(2677), + [anon_sym_SLASH] = ACTIONS(2677), + [anon_sym_PERCENT] = ACTIONS(2677), + [anon_sym_DASH_DASH] = ACTIONS(2675), + [anon_sym_PLUS_PLUS] = ACTIONS(2675), + [anon_sym_DOT] = ACTIONS(2675), + [anon_sym_DASH_GT] = ACTIONS(2675), + [sym_comment] = ACTIONS(59), }, [843] = { - [sym_compound_statement] = STATE(630), - [sym_labeled_statement] = STATE(630), - [sym_expression_statement] = STATE(630), - [sym_if_statement] = STATE(630), - [sym_switch_statement] = STATE(630), - [sym_case_statement] = STATE(630), - [sym_while_statement] = STATE(630), - [sym_do_statement] = STATE(630), - [sym_for_statement] = STATE(630), - [sym_return_statement] = STATE(630), - [sym_break_statement] = STATE(630), - [sym_continue_statement] = STATE(630), - [sym_goto_statement] = STATE(630), - [sym__expression] = STATE(228), - [sym_comma_expression] = STATE(229), - [sym_conditional_expression] = STATE(228), - [sym_assignment_expression] = STATE(228), - [sym_pointer_expression] = STATE(228), - [sym_logical_expression] = STATE(228), - [sym_bitwise_expression] = STATE(228), - [sym_equality_expression] = STATE(228), - [sym_relational_expression] = STATE(228), - [sym_shift_expression] = STATE(228), - [sym_math_expression] = STATE(228), - [sym_cast_expression] = STATE(228), - [sym_sizeof_expression] = STATE(228), - [sym_subscript_expression] = STATE(228), - [sym_call_expression] = STATE(228), - [sym_field_expression] = STATE(228), - [sym_compound_literal_expression] = STATE(228), - [sym_parenthesized_expression] = STATE(228), - [sym_char_literal] = STATE(228), - [sym_concatenated_string] = STATE(228), - [sym_string_literal] = STATE(230), - [anon_sym_SEMI] = ACTIONS(503), - [anon_sym_LBRACE] = ACTIONS(229), - [anon_sym_LPAREN2] = ACTIONS(507), - [anon_sym_STAR] = ACTIONS(509), - [anon_sym_if] = ACTIONS(1475), - [anon_sym_switch] = ACTIONS(1477), - [anon_sym_case] = ACTIONS(1479), - [anon_sym_default] = ACTIONS(1481), - [anon_sym_while] = ACTIONS(1483), - [anon_sym_do] = ACTIONS(521), - [anon_sym_for] = ACTIONS(1485), - [anon_sym_return] = ACTIONS(525), - [anon_sym_break] = ACTIONS(527), - [anon_sym_continue] = ACTIONS(529), - [anon_sym_goto] = ACTIONS(531), - [anon_sym_AMP] = ACTIONS(509), - [anon_sym_BANG] = ACTIONS(533), - [anon_sym_TILDE] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DASH] = ACTIONS(537), - [anon_sym_DASH_DASH] = ACTIONS(539), - [anon_sym_PLUS_PLUS] = ACTIONS(539), - [anon_sym_sizeof] = ACTIONS(541), - [sym_number_literal] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(547), - [sym_false] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [sym_identifier] = ACTIONS(1487), - [sym_comment] = ACTIONS(37), + [sym_argument_list] = STATE(98), + [anon_sym_COMMA] = ACTIONS(2679), + [anon_sym_RBRACE] = ACTIONS(2679), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(1823), + [anon_sym_LBRACK] = ACTIONS(188), + [anon_sym_EQ] = ACTIONS(1825), + [anon_sym_QMARK] = ACTIONS(1827), + [anon_sym_STAR_EQ] = ACTIONS(1829), + [anon_sym_SLASH_EQ] = ACTIONS(1829), + [anon_sym_PERCENT_EQ] = ACTIONS(1829), + [anon_sym_PLUS_EQ] = ACTIONS(1829), + [anon_sym_DASH_EQ] = ACTIONS(1829), + [anon_sym_LT_LT_EQ] = ACTIONS(1829), + [anon_sym_GT_GT_EQ] = ACTIONS(1829), + [anon_sym_AMP_EQ] = ACTIONS(1829), + [anon_sym_CARET_EQ] = ACTIONS(1829), + [anon_sym_PIPE_EQ] = ACTIONS(1829), + [anon_sym_AMP] = ACTIONS(1831), + [anon_sym_PIPE_PIPE] = ACTIONS(1833), + [anon_sym_AMP_AMP] = ACTIONS(1835), + [anon_sym_PIPE] = ACTIONS(1837), + [anon_sym_CARET] = ACTIONS(1839), + [anon_sym_EQ_EQ] = ACTIONS(1841), + [anon_sym_BANG_EQ] = ACTIONS(1841), + [anon_sym_LT] = ACTIONS(1843), + [anon_sym_GT] = ACTIONS(1843), + [anon_sym_LT_EQ] = ACTIONS(1845), + [anon_sym_GT_EQ] = ACTIONS(1845), + [anon_sym_LT_LT] = ACTIONS(1847), + [anon_sym_GT_GT] = ACTIONS(1847), + [anon_sym_PLUS] = ACTIONS(1849), + [anon_sym_DASH] = ACTIONS(1849), + [anon_sym_SLASH] = ACTIONS(1823), + [anon_sym_PERCENT] = ACTIONS(1823), + [anon_sym_DASH_DASH] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(216), + [anon_sym_DOT] = ACTIONS(218), + [anon_sym_DASH_GT] = ACTIONS(218), + [sym_comment] = ACTIONS(59), }, [844] = { - [sym_argument_list] = STATE(430), - [anon_sym_LPAREN2] = ACTIONS(1012), - [anon_sym_STAR] = ACTIONS(1497), - [anon_sym_LBRACK] = ACTIONS(1016), - [anon_sym_EQ] = ACTIONS(1499), - [anon_sym_COLON] = ACTIONS(2645), - [anon_sym_QMARK] = ACTIONS(1503), - [anon_sym_STAR_EQ] = ACTIONS(1505), - [anon_sym_SLASH_EQ] = ACTIONS(1505), - [anon_sym_PERCENT_EQ] = ACTIONS(1505), - [anon_sym_PLUS_EQ] = ACTIONS(1505), - [anon_sym_DASH_EQ] = ACTIONS(1505), - [anon_sym_LT_LT_EQ] = ACTIONS(1505), - [anon_sym_GT_GT_EQ] = ACTIONS(1505), - [anon_sym_AMP_EQ] = ACTIONS(1505), - [anon_sym_CARET_EQ] = ACTIONS(1505), - [anon_sym_PIPE_EQ] = ACTIONS(1505), - [anon_sym_AMP] = ACTIONS(1507), - [anon_sym_PIPE_PIPE] = ACTIONS(1509), - [anon_sym_AMP_AMP] = ACTIONS(1511), - [anon_sym_PIPE] = ACTIONS(1513), - [anon_sym_CARET] = ACTIONS(1515), - [anon_sym_EQ_EQ] = ACTIONS(1517), - [anon_sym_BANG_EQ] = ACTIONS(1517), - [anon_sym_LT] = ACTIONS(1519), - [anon_sym_GT] = ACTIONS(1519), - [anon_sym_LT_EQ] = ACTIONS(1521), - [anon_sym_GT_EQ] = ACTIONS(1521), - [anon_sym_LT_LT] = ACTIONS(1523), - [anon_sym_GT_GT] = ACTIONS(1523), - [anon_sym_PLUS] = ACTIONS(1525), - [anon_sym_DASH] = ACTIONS(1525), - [anon_sym_SLASH] = ACTIONS(1497), - [anon_sym_PERCENT] = ACTIONS(1497), - [anon_sym_DASH_DASH] = ACTIONS(1044), - [anon_sym_PLUS_PLUS] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1046), - [anon_sym_DASH_GT] = ACTIONS(1046), - [sym_comment] = ACTIONS(37), + [anon_sym_COMMA] = ACTIONS(2679), + [anon_sym_RBRACE] = ACTIONS(2679), + [sym_comment] = ACTIONS(59), }, [845] = { - [sym_declaration] = STATE(649), - [sym_type_definition] = STATE(649), - [sym__declaration_specifiers] = STATE(650), - [sym_compound_statement] = STATE(649), - [sym_storage_class_specifier] = STATE(87), - [sym_type_qualifier] = STATE(87), - [sym__type_specifier] = STATE(86), - [sym_sized_type_specifier] = STATE(86), - [sym_enum_specifier] = STATE(86), - [sym_struct_specifier] = STATE(86), - [sym_union_specifier] = STATE(86), - [sym_labeled_statement] = STATE(649), - [sym_expression_statement] = STATE(649), - [sym_if_statement] = STATE(649), - [sym_switch_statement] = STATE(649), - [sym_case_statement] = STATE(649), - [sym_while_statement] = STATE(649), - [sym_do_statement] = STATE(649), - [sym_for_statement] = STATE(649), - [sym_return_statement] = STATE(649), - [sym_break_statement] = STATE(649), - [sym_continue_statement] = STATE(649), - [sym_goto_statement] = STATE(649), - [sym__expression] = STATE(228), - [sym_comma_expression] = STATE(229), - [sym_conditional_expression] = STATE(228), - [sym_assignment_expression] = STATE(228), - [sym_pointer_expression] = STATE(228), - [sym_logical_expression] = STATE(228), - [sym_bitwise_expression] = STATE(228), - [sym_equality_expression] = STATE(228), - [sym_relational_expression] = STATE(228), - [sym_shift_expression] = STATE(228), - [sym_math_expression] = STATE(228), - [sym_cast_expression] = STATE(228), - [sym_sizeof_expression] = STATE(228), - [sym_subscript_expression] = STATE(228), - [sym_call_expression] = STATE(228), - [sym_field_expression] = STATE(228), - [sym_compound_literal_expression] = STATE(228), - [sym_parenthesized_expression] = STATE(228), - [sym_char_literal] = STATE(228), - [sym_concatenated_string] = STATE(228), - [sym_string_literal] = STATE(230), - [sym_macro_type_specifier] = STATE(86), - [aux_sym__declaration_specifiers_repeat1] = STATE(87), - [aux_sym_sized_type_specifier_repeat1] = STATE(88), - [anon_sym_SEMI] = ACTIONS(503), - [anon_sym_typedef] = ACTIONS(17), - [anon_sym_extern] = ACTIONS(21), - [anon_sym_LBRACE] = ACTIONS(229), - [anon_sym_LPAREN2] = ACTIONS(507), - [anon_sym_STAR] = ACTIONS(509), - [anon_sym_static] = ACTIONS(21), - [anon_sym_auto] = ACTIONS(21), - [anon_sym_register] = ACTIONS(21), - [anon_sym_inline] = ACTIONS(21), - [anon_sym_const] = ACTIONS(23), - [anon_sym_restrict] = ACTIONS(23), - [anon_sym_volatile] = ACTIONS(23), - [anon_sym__Atomic] = ACTIONS(23), - [anon_sym_unsigned] = ACTIONS(167), - [anon_sym_long] = ACTIONS(167), - [anon_sym_short] = ACTIONS(167), - [sym_primitive_type] = ACTIONS(169), - [anon_sym_enum] = ACTIONS(29), - [anon_sym_struct] = ACTIONS(31), - [anon_sym_union] = ACTIONS(33), - [anon_sym_if] = ACTIONS(1475), - [anon_sym_switch] = ACTIONS(1477), - [anon_sym_case] = ACTIONS(1479), - [anon_sym_default] = ACTIONS(1481), - [anon_sym_while] = ACTIONS(1483), - [anon_sym_do] = ACTIONS(521), - [anon_sym_for] = ACTIONS(1485), - [anon_sym_return] = ACTIONS(525), - [anon_sym_break] = ACTIONS(527), - [anon_sym_continue] = ACTIONS(529), - [anon_sym_goto] = ACTIONS(531), - [anon_sym_AMP] = ACTIONS(509), - [anon_sym_BANG] = ACTIONS(533), - [anon_sym_TILDE] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DASH] = ACTIONS(537), - [anon_sym_DASH_DASH] = ACTIONS(539), - [anon_sym_PLUS_PLUS] = ACTIONS(539), - [anon_sym_sizeof] = ACTIONS(541), - [sym_number_literal] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(547), - [sym_false] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [sym_identifier] = ACTIONS(2647), - [sym_comment] = ACTIONS(37), + [sym_argument_list] = STATE(98), + [anon_sym_COMMA] = ACTIONS(1046), + [anon_sym_RBRACE] = ACTIONS(1046), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(1823), + [anon_sym_LBRACK] = ACTIONS(188), + [anon_sym_EQ] = ACTIONS(1825), + [anon_sym_QMARK] = ACTIONS(1046), + [anon_sym_STAR_EQ] = ACTIONS(1829), + [anon_sym_SLASH_EQ] = ACTIONS(1829), + [anon_sym_PERCENT_EQ] = ACTIONS(1829), + [anon_sym_PLUS_EQ] = ACTIONS(1829), + [anon_sym_DASH_EQ] = ACTIONS(1829), + [anon_sym_LT_LT_EQ] = ACTIONS(1829), + [anon_sym_GT_GT_EQ] = ACTIONS(1829), + [anon_sym_AMP_EQ] = ACTIONS(1829), + [anon_sym_CARET_EQ] = ACTIONS(1829), + [anon_sym_PIPE_EQ] = ACTIONS(1829), + [anon_sym_AMP] = ACTIONS(1831), + [anon_sym_PIPE_PIPE] = ACTIONS(1833), + [anon_sym_AMP_AMP] = ACTIONS(1835), + [anon_sym_PIPE] = ACTIONS(1837), + [anon_sym_CARET] = ACTIONS(1839), + [anon_sym_EQ_EQ] = ACTIONS(1841), + [anon_sym_BANG_EQ] = ACTIONS(1841), + [anon_sym_LT] = ACTIONS(1843), + [anon_sym_GT] = ACTIONS(1843), + [anon_sym_LT_EQ] = ACTIONS(1845), + [anon_sym_GT_EQ] = ACTIONS(1845), + [anon_sym_LT_LT] = ACTIONS(1847), + [anon_sym_GT_GT] = ACTIONS(1847), + [anon_sym_PLUS] = ACTIONS(1849), + [anon_sym_DASH] = ACTIONS(1849), + [anon_sym_SLASH] = ACTIONS(1823), + [anon_sym_PERCENT] = ACTIONS(1823), + [anon_sym_DASH_DASH] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(216), + [anon_sym_DOT] = ACTIONS(218), + [anon_sym_DASH_GT] = ACTIONS(218), + [sym_comment] = ACTIONS(59), }, [846] = { - [sym_compound_statement] = STATE(651), - [sym_labeled_statement] = STATE(651), - [sym_expression_statement] = STATE(651), - [sym_if_statement] = STATE(651), - [sym_switch_statement] = STATE(651), - [sym_case_statement] = STATE(651), - [sym_while_statement] = STATE(651), - [sym_do_statement] = STATE(651), - [sym_for_statement] = STATE(651), - [sym_return_statement] = STATE(651), - [sym_break_statement] = STATE(651), - [sym_continue_statement] = STATE(651), - [sym_goto_statement] = STATE(651), - [sym__expression] = STATE(228), - [sym_comma_expression] = STATE(229), - [sym_conditional_expression] = STATE(228), - [sym_assignment_expression] = STATE(228), - [sym_pointer_expression] = STATE(228), - [sym_logical_expression] = STATE(228), - [sym_bitwise_expression] = STATE(228), - [sym_equality_expression] = STATE(228), - [sym_relational_expression] = STATE(228), - [sym_shift_expression] = STATE(228), - [sym_math_expression] = STATE(228), - [sym_cast_expression] = STATE(228), - [sym_sizeof_expression] = STATE(228), - [sym_subscript_expression] = STATE(228), - [sym_call_expression] = STATE(228), - [sym_field_expression] = STATE(228), - [sym_compound_literal_expression] = STATE(228), - [sym_parenthesized_expression] = STATE(228), - [sym_char_literal] = STATE(228), - [sym_concatenated_string] = STATE(228), - [sym_string_literal] = STATE(230), - [anon_sym_SEMI] = ACTIONS(503), - [anon_sym_LBRACE] = ACTIONS(229), - [anon_sym_LPAREN2] = ACTIONS(507), - [anon_sym_STAR] = ACTIONS(509), - [anon_sym_if] = ACTIONS(1475), - [anon_sym_switch] = ACTIONS(1477), - [anon_sym_case] = ACTIONS(1479), - [anon_sym_default] = ACTIONS(1481), - [anon_sym_while] = ACTIONS(1483), - [anon_sym_do] = ACTIONS(521), - [anon_sym_for] = ACTIONS(1485), - [anon_sym_return] = ACTIONS(525), - [anon_sym_break] = ACTIONS(527), - [anon_sym_continue] = ACTIONS(529), - [anon_sym_goto] = ACTIONS(531), - [anon_sym_AMP] = ACTIONS(509), - [anon_sym_BANG] = ACTIONS(533), - [anon_sym_TILDE] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DASH] = ACTIONS(537), - [anon_sym_DASH_DASH] = ACTIONS(539), - [anon_sym_PLUS_PLUS] = ACTIONS(539), - [anon_sym_sizeof] = ACTIONS(541), - [sym_number_literal] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(547), - [sym_false] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [sym_identifier] = ACTIONS(1487), - [sym_comment] = ACTIONS(37), + [sym_argument_list] = STATE(98), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(1054), + [anon_sym_LBRACK] = ACTIONS(188), + [anon_sym_EQ] = ACTIONS(1056), + [anon_sym_COLON] = ACTIONS(2681), + [anon_sym_QMARK] = ACTIONS(1060), + [anon_sym_STAR_EQ] = ACTIONS(1062), + [anon_sym_SLASH_EQ] = ACTIONS(1062), + [anon_sym_PERCENT_EQ] = ACTIONS(1062), + [anon_sym_PLUS_EQ] = ACTIONS(1062), + [anon_sym_DASH_EQ] = ACTIONS(1062), + [anon_sym_LT_LT_EQ] = ACTIONS(1062), + [anon_sym_GT_GT_EQ] = ACTIONS(1062), + [anon_sym_AMP_EQ] = ACTIONS(1062), + [anon_sym_CARET_EQ] = ACTIONS(1062), + [anon_sym_PIPE_EQ] = ACTIONS(1062), + [anon_sym_AMP] = ACTIONS(1064), + [anon_sym_PIPE_PIPE] = ACTIONS(1066), + [anon_sym_AMP_AMP] = ACTIONS(1068), + [anon_sym_PIPE] = ACTIONS(1070), + [anon_sym_CARET] = ACTIONS(1072), + [anon_sym_EQ_EQ] = ACTIONS(1074), + [anon_sym_BANG_EQ] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(1076), + [anon_sym_GT] = ACTIONS(1076), + [anon_sym_LT_EQ] = ACTIONS(1078), + [anon_sym_GT_EQ] = ACTIONS(1078), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_GT_GT] = ACTIONS(1080), + [anon_sym_PLUS] = ACTIONS(1082), + [anon_sym_DASH] = ACTIONS(1082), + [anon_sym_SLASH] = ACTIONS(1054), + [anon_sym_PERCENT] = ACTIONS(1054), + [anon_sym_DASH_DASH] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(216), + [anon_sym_DOT] = ACTIONS(218), + [anon_sym_DASH_GT] = ACTIONS(218), + [sym_comment] = ACTIONS(59), }, [847] = { - [sym_declaration] = STATE(968), - [sym__declaration_specifiers] = STATE(650), - [sym_storage_class_specifier] = STATE(87), - [sym_type_qualifier] = STATE(87), - [sym__type_specifier] = STATE(86), - [sym_sized_type_specifier] = STATE(86), - [sym_enum_specifier] = STATE(86), - [sym_struct_specifier] = STATE(86), - [sym_union_specifier] = STATE(86), - [sym__expression] = STATE(969), - [sym_conditional_expression] = STATE(969), - [sym_assignment_expression] = STATE(969), - [sym_pointer_expression] = STATE(969), - [sym_logical_expression] = STATE(969), - [sym_bitwise_expression] = STATE(969), - [sym_equality_expression] = STATE(969), - [sym_relational_expression] = STATE(969), - [sym_shift_expression] = STATE(969), - [sym_math_expression] = STATE(969), - [sym_cast_expression] = STATE(969), - [sym_sizeof_expression] = STATE(969), - [sym_subscript_expression] = STATE(969), - [sym_call_expression] = STATE(969), - [sym_field_expression] = STATE(969), - [sym_compound_literal_expression] = STATE(969), - [sym_parenthesized_expression] = STATE(969), - [sym_char_literal] = STATE(969), - [sym_concatenated_string] = STATE(969), - [sym_string_literal] = STATE(342), - [sym_macro_type_specifier] = STATE(86), - [aux_sym__declaration_specifiers_repeat1] = STATE(87), - [aux_sym_sized_type_specifier_repeat1] = STATE(88), - [anon_sym_SEMI] = ACTIONS(2649), - [anon_sym_extern] = ACTIONS(21), - [anon_sym_LPAREN2] = ACTIONS(780), - [anon_sym_STAR] = ACTIONS(782), - [anon_sym_static] = ACTIONS(21), - [anon_sym_auto] = ACTIONS(21), - [anon_sym_register] = ACTIONS(21), - [anon_sym_inline] = ACTIONS(21), - [anon_sym_const] = ACTIONS(23), - [anon_sym_restrict] = ACTIONS(23), - [anon_sym_volatile] = ACTIONS(23), - [anon_sym__Atomic] = ACTIONS(23), - [anon_sym_unsigned] = ACTIONS(167), - [anon_sym_long] = ACTIONS(167), - [anon_sym_short] = ACTIONS(167), - [sym_primitive_type] = ACTIONS(169), - [anon_sym_enum] = ACTIONS(29), - [anon_sym_struct] = ACTIONS(31), - [anon_sym_union] = ACTIONS(33), - [anon_sym_AMP] = ACTIONS(782), - [anon_sym_BANG] = ACTIONS(784), - [anon_sym_TILDE] = ACTIONS(786), - [anon_sym_PLUS] = ACTIONS(788), - [anon_sym_DASH] = ACTIONS(788), - [anon_sym_DASH_DASH] = ACTIONS(790), - [anon_sym_PLUS_PLUS] = ACTIONS(790), - [anon_sym_sizeof] = ACTIONS(792), - [sym_number_literal] = ACTIONS(2651), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(2653), - [sym_false] = ACTIONS(2653), - [sym_null] = ACTIONS(2653), - [sym_identifier] = ACTIONS(1547), - [sym_comment] = ACTIONS(37), - }, - [848] = { - [sym_compound_statement] = STATE(668), - [sym_labeled_statement] = STATE(668), - [sym_expression_statement] = STATE(668), - [sym_if_statement] = STATE(668), - [sym_switch_statement] = STATE(668), - [sym_case_statement] = STATE(668), - [sym_while_statement] = STATE(668), - [sym_do_statement] = STATE(668), - [sym_for_statement] = STATE(668), - [sym_return_statement] = STATE(668), - [sym_break_statement] = STATE(668), - [sym_continue_statement] = STATE(668), - [sym_goto_statement] = STATE(668), - [sym__expression] = STATE(228), - [sym_comma_expression] = STATE(229), - [sym_conditional_expression] = STATE(228), - [sym_assignment_expression] = STATE(228), - [sym_pointer_expression] = STATE(228), - [sym_logical_expression] = STATE(228), - [sym_bitwise_expression] = STATE(228), - [sym_equality_expression] = STATE(228), - [sym_relational_expression] = STATE(228), - [sym_shift_expression] = STATE(228), - [sym_math_expression] = STATE(228), - [sym_cast_expression] = STATE(228), - [sym_sizeof_expression] = STATE(228), - [sym_subscript_expression] = STATE(228), - [sym_call_expression] = STATE(228), - [sym_field_expression] = STATE(228), - [sym_compound_literal_expression] = STATE(228), - [sym_parenthesized_expression] = STATE(228), - [sym_char_literal] = STATE(228), - [sym_concatenated_string] = STATE(228), - [sym_string_literal] = STATE(230), - [anon_sym_SEMI] = ACTIONS(503), - [anon_sym_LBRACE] = ACTIONS(229), - [anon_sym_LPAREN2] = ACTIONS(507), - [anon_sym_STAR] = ACTIONS(509), - [anon_sym_if] = ACTIONS(1475), - [anon_sym_switch] = ACTIONS(1477), - [anon_sym_case] = ACTIONS(1479), - [anon_sym_default] = ACTIONS(1481), - [anon_sym_while] = ACTIONS(1483), - [anon_sym_do] = ACTIONS(521), - [anon_sym_for] = ACTIONS(1485), - [anon_sym_return] = ACTIONS(525), - [anon_sym_break] = ACTIONS(527), - [anon_sym_continue] = ACTIONS(529), - [anon_sym_goto] = ACTIONS(531), - [anon_sym_AMP] = ACTIONS(509), - [anon_sym_BANG] = ACTIONS(533), - [anon_sym_TILDE] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DASH] = ACTIONS(537), - [anon_sym_DASH_DASH] = ACTIONS(539), - [anon_sym_PLUS_PLUS] = ACTIONS(539), - [anon_sym_sizeof] = ACTIONS(541), - [sym_number_literal] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(547), - [sym_false] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [sym_identifier] = ACTIONS(1487), - [sym_comment] = ACTIONS(37), - }, - [849] = { - [sym_compound_statement] = STATE(970), - [sym_labeled_statement] = STATE(970), - [sym_expression_statement] = STATE(970), - [sym_if_statement] = STATE(970), - [sym_switch_statement] = STATE(970), - [sym_case_statement] = STATE(970), - [sym_while_statement] = STATE(970), - [sym_do_statement] = STATE(970), - [sym_for_statement] = STATE(970), - [sym_return_statement] = STATE(970), - [sym_break_statement] = STATE(970), - [sym_continue_statement] = STATE(970), - [sym_goto_statement] = STATE(970), - [sym__expression] = STATE(228), - [sym_comma_expression] = STATE(229), - [sym_conditional_expression] = STATE(228), - [sym_assignment_expression] = STATE(228), - [sym_pointer_expression] = STATE(228), - [sym_logical_expression] = STATE(228), - [sym_bitwise_expression] = STATE(228), - [sym_equality_expression] = STATE(228), - [sym_relational_expression] = STATE(228), - [sym_shift_expression] = STATE(228), - [sym_math_expression] = STATE(228), - [sym_cast_expression] = STATE(228), - [sym_sizeof_expression] = STATE(228), - [sym_subscript_expression] = STATE(228), - [sym_call_expression] = STATE(228), - [sym_field_expression] = STATE(228), - [sym_compound_literal_expression] = STATE(228), - [sym_parenthesized_expression] = STATE(228), - [sym_char_literal] = STATE(228), - [sym_concatenated_string] = STATE(228), - [sym_string_literal] = STATE(230), - [anon_sym_SEMI] = ACTIONS(503), - [anon_sym_LBRACE] = ACTIONS(229), - [anon_sym_LPAREN2] = ACTIONS(507), - [anon_sym_STAR] = ACTIONS(509), - [anon_sym_if] = ACTIONS(511), - [anon_sym_switch] = ACTIONS(513), - [anon_sym_case] = ACTIONS(515), - [anon_sym_default] = ACTIONS(517), - [anon_sym_while] = ACTIONS(519), - [anon_sym_do] = ACTIONS(521), - [anon_sym_for] = ACTIONS(523), - [anon_sym_return] = ACTIONS(525), - [anon_sym_break] = ACTIONS(527), - [anon_sym_continue] = ACTIONS(529), - [anon_sym_goto] = ACTIONS(531), - [anon_sym_AMP] = ACTIONS(509), - [anon_sym_BANG] = ACTIONS(533), - [anon_sym_TILDE] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DASH] = ACTIONS(537), - [anon_sym_DASH_DASH] = ACTIONS(539), - [anon_sym_PLUS_PLUS] = ACTIONS(539), - [anon_sym_sizeof] = ACTIONS(541), - [sym_number_literal] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(547), - [sym_false] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [sym_identifier] = ACTIONS(1489), - [sym_comment] = ACTIONS(37), + [sym_argument_list] = STATE(98), + [anon_sym_COMMA] = ACTIONS(1086), + [anon_sym_RBRACE] = ACTIONS(1086), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(1823), + [anon_sym_LBRACK] = ACTIONS(188), + [anon_sym_EQ] = ACTIONS(1084), + [anon_sym_QMARK] = ACTIONS(1086), + [anon_sym_STAR_EQ] = ACTIONS(1086), + [anon_sym_SLASH_EQ] = ACTIONS(1086), + [anon_sym_PERCENT_EQ] = ACTIONS(1086), + [anon_sym_PLUS_EQ] = ACTIONS(1086), + [anon_sym_DASH_EQ] = ACTIONS(1086), + [anon_sym_LT_LT_EQ] = ACTIONS(1086), + [anon_sym_GT_GT_EQ] = ACTIONS(1086), + [anon_sym_AMP_EQ] = ACTIONS(1086), + [anon_sym_CARET_EQ] = ACTIONS(1086), + [anon_sym_PIPE_EQ] = ACTIONS(1086), + [anon_sym_AMP] = ACTIONS(1084), + [anon_sym_PIPE_PIPE] = ACTIONS(1086), + [anon_sym_AMP_AMP] = ACTIONS(1086), + [anon_sym_PIPE] = ACTIONS(1084), + [anon_sym_CARET] = ACTIONS(1084), + [anon_sym_EQ_EQ] = ACTIONS(1841), + [anon_sym_BANG_EQ] = ACTIONS(1841), + [anon_sym_LT] = ACTIONS(1843), + [anon_sym_GT] = ACTIONS(1843), + [anon_sym_LT_EQ] = ACTIONS(1845), + [anon_sym_GT_EQ] = ACTIONS(1845), + [anon_sym_LT_LT] = ACTIONS(1847), + [anon_sym_GT_GT] = ACTIONS(1847), + [anon_sym_PLUS] = ACTIONS(1849), + [anon_sym_DASH] = ACTIONS(1849), + [anon_sym_SLASH] = ACTIONS(1823), + [anon_sym_PERCENT] = ACTIONS(1823), + [anon_sym_DASH_DASH] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(216), + [anon_sym_DOT] = ACTIONS(218), + [anon_sym_DASH_GT] = ACTIONS(218), + [sym_comment] = ACTIONS(59), + }, + [848] = { + [sym_argument_list] = STATE(98), + [anon_sym_COMMA] = ACTIONS(1090), + [anon_sym_RBRACE] = ACTIONS(1090), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(1823), + [anon_sym_LBRACK] = ACTIONS(188), + [anon_sym_EQ] = ACTIONS(1088), + [anon_sym_QMARK] = ACTIONS(1090), + [anon_sym_STAR_EQ] = ACTIONS(1090), + [anon_sym_SLASH_EQ] = ACTIONS(1090), + [anon_sym_PERCENT_EQ] = ACTIONS(1090), + [anon_sym_PLUS_EQ] = ACTIONS(1090), + [anon_sym_DASH_EQ] = ACTIONS(1090), + [anon_sym_LT_LT_EQ] = ACTIONS(1090), + [anon_sym_GT_GT_EQ] = ACTIONS(1090), + [anon_sym_AMP_EQ] = ACTIONS(1090), + [anon_sym_CARET_EQ] = ACTIONS(1090), + [anon_sym_PIPE_EQ] = ACTIONS(1090), + [anon_sym_AMP] = ACTIONS(1831), + [anon_sym_PIPE_PIPE] = ACTIONS(1090), + [anon_sym_AMP_AMP] = ACTIONS(1835), + [anon_sym_PIPE] = ACTIONS(1837), + [anon_sym_CARET] = ACTIONS(1839), + [anon_sym_EQ_EQ] = ACTIONS(1841), + [anon_sym_BANG_EQ] = ACTIONS(1841), + [anon_sym_LT] = ACTIONS(1843), + [anon_sym_GT] = ACTIONS(1843), + [anon_sym_LT_EQ] = ACTIONS(1845), + [anon_sym_GT_EQ] = ACTIONS(1845), + [anon_sym_LT_LT] = ACTIONS(1847), + [anon_sym_GT_GT] = ACTIONS(1847), + [anon_sym_PLUS] = ACTIONS(1849), + [anon_sym_DASH] = ACTIONS(1849), + [anon_sym_SLASH] = ACTIONS(1823), + [anon_sym_PERCENT] = ACTIONS(1823), + [anon_sym_DASH_DASH] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(216), + [anon_sym_DOT] = ACTIONS(218), + [anon_sym_DASH_GT] = ACTIONS(218), + [sym_comment] = ACTIONS(59), + }, + [849] = { + [sym_argument_list] = STATE(98), + [anon_sym_COMMA] = ACTIONS(1090), + [anon_sym_RBRACE] = ACTIONS(1090), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(1823), + [anon_sym_LBRACK] = ACTIONS(188), + [anon_sym_EQ] = ACTIONS(1088), + [anon_sym_QMARK] = ACTIONS(1090), + [anon_sym_STAR_EQ] = ACTIONS(1090), + [anon_sym_SLASH_EQ] = ACTIONS(1090), + [anon_sym_PERCENT_EQ] = ACTIONS(1090), + [anon_sym_PLUS_EQ] = ACTIONS(1090), + [anon_sym_DASH_EQ] = ACTIONS(1090), + [anon_sym_LT_LT_EQ] = ACTIONS(1090), + [anon_sym_GT_GT_EQ] = ACTIONS(1090), + [anon_sym_AMP_EQ] = ACTIONS(1090), + [anon_sym_CARET_EQ] = ACTIONS(1090), + [anon_sym_PIPE_EQ] = ACTIONS(1090), + [anon_sym_AMP] = ACTIONS(1831), + [anon_sym_PIPE_PIPE] = ACTIONS(1090), + [anon_sym_AMP_AMP] = ACTIONS(1090), + [anon_sym_PIPE] = ACTIONS(1837), + [anon_sym_CARET] = ACTIONS(1839), + [anon_sym_EQ_EQ] = ACTIONS(1841), + [anon_sym_BANG_EQ] = ACTIONS(1841), + [anon_sym_LT] = ACTIONS(1843), + [anon_sym_GT] = ACTIONS(1843), + [anon_sym_LT_EQ] = ACTIONS(1845), + [anon_sym_GT_EQ] = ACTIONS(1845), + [anon_sym_LT_LT] = ACTIONS(1847), + [anon_sym_GT_GT] = ACTIONS(1847), + [anon_sym_PLUS] = ACTIONS(1849), + [anon_sym_DASH] = ACTIONS(1849), + [anon_sym_SLASH] = ACTIONS(1823), + [anon_sym_PERCENT] = ACTIONS(1823), + [anon_sym_DASH_DASH] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(216), + [anon_sym_DOT] = ACTIONS(218), + [anon_sym_DASH_GT] = ACTIONS(218), + [sym_comment] = ACTIONS(59), }, [850] = { - [sym__expression] = STATE(838), - [sym_conditional_expression] = STATE(838), - [sym_assignment_expression] = STATE(838), - [sym_pointer_expression] = STATE(838), - [sym_logical_expression] = STATE(838), - [sym_bitwise_expression] = STATE(838), - [sym_equality_expression] = STATE(838), - [sym_relational_expression] = STATE(838), - [sym_shift_expression] = STATE(838), - [sym_math_expression] = STATE(838), - [sym_cast_expression] = STATE(838), - [sym_sizeof_expression] = STATE(838), - [sym_subscript_expression] = STATE(838), - [sym_call_expression] = STATE(838), - [sym_field_expression] = STATE(838), - [sym_compound_literal_expression] = STATE(838), - [sym_parenthesized_expression] = STATE(838), - [sym_initializer_list] = STATE(839), - [sym_char_literal] = STATE(838), - [sym_concatenated_string] = STATE(838), - [sym_string_literal] = STATE(386), - [anon_sym_LBRACE] = ACTIONS(585), - [anon_sym_LPAREN2] = ACTIONS(918), - [anon_sym_STAR] = ACTIONS(920), - [anon_sym_AMP] = ACTIONS(920), - [anon_sym_BANG] = ACTIONS(922), - [anon_sym_TILDE] = ACTIONS(924), - [anon_sym_PLUS] = ACTIONS(926), - [anon_sym_DASH] = ACTIONS(926), - [anon_sym_DASH_DASH] = ACTIONS(928), - [anon_sym_PLUS_PLUS] = ACTIONS(928), - [anon_sym_sizeof] = ACTIONS(930), - [sym_number_literal] = ACTIONS(2206), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(2208), - [sym_false] = ACTIONS(2208), - [sym_null] = ACTIONS(2208), - [sym_identifier] = ACTIONS(2208), - [sym_comment] = ACTIONS(37), + [sym_argument_list] = STATE(98), + [anon_sym_COMMA] = ACTIONS(1086), + [anon_sym_RBRACE] = ACTIONS(1086), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(1823), + [anon_sym_LBRACK] = ACTIONS(188), + [anon_sym_EQ] = ACTIONS(1084), + [anon_sym_QMARK] = ACTIONS(1086), + [anon_sym_STAR_EQ] = ACTIONS(1086), + [anon_sym_SLASH_EQ] = ACTIONS(1086), + [anon_sym_PERCENT_EQ] = ACTIONS(1086), + [anon_sym_PLUS_EQ] = ACTIONS(1086), + [anon_sym_DASH_EQ] = ACTIONS(1086), + [anon_sym_LT_LT_EQ] = ACTIONS(1086), + [anon_sym_GT_GT_EQ] = ACTIONS(1086), + [anon_sym_AMP_EQ] = ACTIONS(1086), + [anon_sym_CARET_EQ] = ACTIONS(1086), + [anon_sym_PIPE_EQ] = ACTIONS(1086), + [anon_sym_AMP] = ACTIONS(1831), + [anon_sym_PIPE_PIPE] = ACTIONS(1086), + [anon_sym_AMP_AMP] = ACTIONS(1086), + [anon_sym_PIPE] = ACTIONS(1084), + [anon_sym_CARET] = ACTIONS(1839), + [anon_sym_EQ_EQ] = ACTIONS(1841), + [anon_sym_BANG_EQ] = ACTIONS(1841), + [anon_sym_LT] = ACTIONS(1843), + [anon_sym_GT] = ACTIONS(1843), + [anon_sym_LT_EQ] = ACTIONS(1845), + [anon_sym_GT_EQ] = ACTIONS(1845), + [anon_sym_LT_LT] = ACTIONS(1847), + [anon_sym_GT_GT] = ACTIONS(1847), + [anon_sym_PLUS] = ACTIONS(1849), + [anon_sym_DASH] = ACTIONS(1849), + [anon_sym_SLASH] = ACTIONS(1823), + [anon_sym_PERCENT] = ACTIONS(1823), + [anon_sym_DASH_DASH] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(216), + [anon_sym_DOT] = ACTIONS(218), + [anon_sym_DASH_GT] = ACTIONS(218), + [sym_comment] = ACTIONS(59), }, [851] = { - [anon_sym_RPAREN] = ACTIONS(2655), - [sym_comment] = ACTIONS(37), + [sym_argument_list] = STATE(98), + [anon_sym_COMMA] = ACTIONS(1086), + [anon_sym_RBRACE] = ACTIONS(1086), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(1823), + [anon_sym_LBRACK] = ACTIONS(188), + [anon_sym_EQ] = ACTIONS(1084), + [anon_sym_QMARK] = ACTIONS(1086), + [anon_sym_STAR_EQ] = ACTIONS(1086), + [anon_sym_SLASH_EQ] = ACTIONS(1086), + [anon_sym_PERCENT_EQ] = ACTIONS(1086), + [anon_sym_PLUS_EQ] = ACTIONS(1086), + [anon_sym_DASH_EQ] = ACTIONS(1086), + [anon_sym_LT_LT_EQ] = ACTIONS(1086), + [anon_sym_GT_GT_EQ] = ACTIONS(1086), + [anon_sym_AMP_EQ] = ACTIONS(1086), + [anon_sym_CARET_EQ] = ACTIONS(1086), + [anon_sym_PIPE_EQ] = ACTIONS(1086), + [anon_sym_AMP] = ACTIONS(1831), + [anon_sym_PIPE_PIPE] = ACTIONS(1086), + [anon_sym_AMP_AMP] = ACTIONS(1086), + [anon_sym_PIPE] = ACTIONS(1084), + [anon_sym_CARET] = ACTIONS(1084), + [anon_sym_EQ_EQ] = ACTIONS(1841), + [anon_sym_BANG_EQ] = ACTIONS(1841), + [anon_sym_LT] = ACTIONS(1843), + [anon_sym_GT] = ACTIONS(1843), + [anon_sym_LT_EQ] = ACTIONS(1845), + [anon_sym_GT_EQ] = ACTIONS(1845), + [anon_sym_LT_LT] = ACTIONS(1847), + [anon_sym_GT_GT] = ACTIONS(1847), + [anon_sym_PLUS] = ACTIONS(1849), + [anon_sym_DASH] = ACTIONS(1849), + [anon_sym_SLASH] = ACTIONS(1823), + [anon_sym_PERCENT] = ACTIONS(1823), + [anon_sym_DASH_DASH] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(216), + [anon_sym_DOT] = ACTIONS(218), + [anon_sym_DASH_GT] = ACTIONS(218), + [sym_comment] = ACTIONS(59), }, [852] = { - [sym_argument_list] = STATE(430), - [anon_sym_LPAREN2] = ACTIONS(1012), - [anon_sym_STAR] = ACTIONS(1497), - [anon_sym_LBRACK] = ACTIONS(1016), - [anon_sym_EQ] = ACTIONS(1499), - [anon_sym_COLON] = ACTIONS(2354), - [anon_sym_QMARK] = ACTIONS(2354), - [anon_sym_STAR_EQ] = ACTIONS(1505), - [anon_sym_SLASH_EQ] = ACTIONS(1505), - [anon_sym_PERCENT_EQ] = ACTIONS(1505), - [anon_sym_PLUS_EQ] = ACTIONS(1505), - [anon_sym_DASH_EQ] = ACTIONS(1505), - [anon_sym_LT_LT_EQ] = ACTIONS(1505), - [anon_sym_GT_GT_EQ] = ACTIONS(1505), - [anon_sym_AMP_EQ] = ACTIONS(1505), - [anon_sym_CARET_EQ] = ACTIONS(1505), - [anon_sym_PIPE_EQ] = ACTIONS(1505), - [anon_sym_AMP] = ACTIONS(1507), - [anon_sym_PIPE_PIPE] = ACTIONS(1509), - [anon_sym_AMP_AMP] = ACTIONS(1511), - [anon_sym_PIPE] = ACTIONS(1513), - [anon_sym_CARET] = ACTIONS(1515), - [anon_sym_EQ_EQ] = ACTIONS(1517), - [anon_sym_BANG_EQ] = ACTIONS(1517), - [anon_sym_LT] = ACTIONS(1519), - [anon_sym_GT] = ACTIONS(1519), - [anon_sym_LT_EQ] = ACTIONS(1521), - [anon_sym_GT_EQ] = ACTIONS(1521), - [anon_sym_LT_LT] = ACTIONS(1523), - [anon_sym_GT_GT] = ACTIONS(1523), - [anon_sym_PLUS] = ACTIONS(1525), - [anon_sym_DASH] = ACTIONS(1525), - [anon_sym_SLASH] = ACTIONS(1497), - [anon_sym_PERCENT] = ACTIONS(1497), - [anon_sym_DASH_DASH] = ACTIONS(1044), - [anon_sym_PLUS_PLUS] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1046), - [anon_sym_DASH_GT] = ACTIONS(1046), - [sym_comment] = ACTIONS(37), + [sym_argument_list] = STATE(98), + [anon_sym_COMMA] = ACTIONS(1094), + [anon_sym_RBRACE] = ACTIONS(1094), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(1823), + [anon_sym_LBRACK] = ACTIONS(188), + [anon_sym_EQ] = ACTIONS(1092), + [anon_sym_QMARK] = ACTIONS(1094), + [anon_sym_STAR_EQ] = ACTIONS(1094), + [anon_sym_SLASH_EQ] = ACTIONS(1094), + [anon_sym_PERCENT_EQ] = ACTIONS(1094), + [anon_sym_PLUS_EQ] = ACTIONS(1094), + [anon_sym_DASH_EQ] = ACTIONS(1094), + [anon_sym_LT_LT_EQ] = ACTIONS(1094), + [anon_sym_GT_GT_EQ] = ACTIONS(1094), + [anon_sym_AMP_EQ] = ACTIONS(1094), + [anon_sym_CARET_EQ] = ACTIONS(1094), + [anon_sym_PIPE_EQ] = ACTIONS(1094), + [anon_sym_AMP] = ACTIONS(1092), + [anon_sym_PIPE_PIPE] = ACTIONS(1094), + [anon_sym_AMP_AMP] = ACTIONS(1094), + [anon_sym_PIPE] = ACTIONS(1092), + [anon_sym_CARET] = ACTIONS(1092), + [anon_sym_EQ_EQ] = ACTIONS(1094), + [anon_sym_BANG_EQ] = ACTIONS(1094), + [anon_sym_LT] = ACTIONS(1843), + [anon_sym_GT] = ACTIONS(1843), + [anon_sym_LT_EQ] = ACTIONS(1845), + [anon_sym_GT_EQ] = ACTIONS(1845), + [anon_sym_LT_LT] = ACTIONS(1847), + [anon_sym_GT_GT] = ACTIONS(1847), + [anon_sym_PLUS] = ACTIONS(1849), + [anon_sym_DASH] = ACTIONS(1849), + [anon_sym_SLASH] = ACTIONS(1823), + [anon_sym_PERCENT] = ACTIONS(1823), + [anon_sym_DASH_DASH] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(216), + [anon_sym_DOT] = ACTIONS(218), + [anon_sym_DASH_GT] = ACTIONS(218), + [sym_comment] = ACTIONS(59), }, [853] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2657), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2657), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2657), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2657), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2657), - [sym_preproc_directive] = ACTIONS(2657), - [anon_sym_SEMI] = ACTIONS(2659), - [anon_sym_typedef] = ACTIONS(2657), - [anon_sym_extern] = ACTIONS(2657), - [anon_sym_LBRACE] = ACTIONS(2659), - [anon_sym_RBRACE] = ACTIONS(2659), - [anon_sym_LPAREN2] = ACTIONS(2659), - [anon_sym_STAR] = ACTIONS(2659), - [anon_sym_static] = ACTIONS(2657), - [anon_sym_auto] = ACTIONS(2657), - [anon_sym_register] = ACTIONS(2657), - [anon_sym_inline] = ACTIONS(2657), - [anon_sym_const] = ACTIONS(2657), - [anon_sym_restrict] = ACTIONS(2657), - [anon_sym_volatile] = ACTIONS(2657), - [anon_sym__Atomic] = ACTIONS(2657), - [anon_sym_unsigned] = ACTIONS(2657), - [anon_sym_long] = ACTIONS(2657), - [anon_sym_short] = ACTIONS(2657), - [sym_primitive_type] = ACTIONS(2657), - [anon_sym_enum] = ACTIONS(2657), - [anon_sym_struct] = ACTIONS(2657), - [anon_sym_union] = ACTIONS(2657), - [anon_sym_if] = ACTIONS(2657), - [anon_sym_else] = ACTIONS(2657), - [anon_sym_switch] = ACTIONS(2657), - [anon_sym_case] = ACTIONS(2657), - [anon_sym_default] = ACTIONS(2657), - [anon_sym_while] = ACTIONS(2657), - [anon_sym_do] = ACTIONS(2657), - [anon_sym_for] = ACTIONS(2657), - [anon_sym_return] = ACTIONS(2657), - [anon_sym_break] = ACTIONS(2657), - [anon_sym_continue] = ACTIONS(2657), - [anon_sym_goto] = ACTIONS(2657), - [anon_sym_AMP] = ACTIONS(2659), - [anon_sym_BANG] = ACTIONS(2659), - [anon_sym_TILDE] = ACTIONS(2659), - [anon_sym_PLUS] = ACTIONS(2657), - [anon_sym_DASH] = ACTIONS(2657), - [anon_sym_DASH_DASH] = ACTIONS(2659), - [anon_sym_PLUS_PLUS] = ACTIONS(2659), - [anon_sym_sizeof] = ACTIONS(2657), - [sym_number_literal] = ACTIONS(2659), - [anon_sym_SQUOTE] = ACTIONS(2659), - [anon_sym_DQUOTE] = ACTIONS(2659), - [sym_true] = ACTIONS(2657), - [sym_false] = ACTIONS(2657), - [sym_null] = ACTIONS(2657), - [sym_identifier] = ACTIONS(2657), - [sym_comment] = ACTIONS(37), + [sym_argument_list] = STATE(98), + [anon_sym_COMMA] = ACTIONS(1098), + [anon_sym_RBRACE] = ACTIONS(1098), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(1823), + [anon_sym_LBRACK] = ACTIONS(188), + [anon_sym_EQ] = ACTIONS(1096), + [anon_sym_QMARK] = ACTIONS(1098), + [anon_sym_STAR_EQ] = ACTIONS(1098), + [anon_sym_SLASH_EQ] = ACTIONS(1098), + [anon_sym_PERCENT_EQ] = ACTIONS(1098), + [anon_sym_PLUS_EQ] = ACTIONS(1098), + [anon_sym_DASH_EQ] = ACTIONS(1098), + [anon_sym_LT_LT_EQ] = ACTIONS(1098), + [anon_sym_GT_GT_EQ] = ACTIONS(1098), + [anon_sym_AMP_EQ] = ACTIONS(1098), + [anon_sym_CARET_EQ] = ACTIONS(1098), + [anon_sym_PIPE_EQ] = ACTIONS(1098), + [anon_sym_AMP] = ACTIONS(1096), + [anon_sym_PIPE_PIPE] = ACTIONS(1098), + [anon_sym_AMP_AMP] = ACTIONS(1098), + [anon_sym_PIPE] = ACTIONS(1096), + [anon_sym_CARET] = ACTIONS(1096), + [anon_sym_EQ_EQ] = ACTIONS(1098), + [anon_sym_BANG_EQ] = ACTIONS(1098), + [anon_sym_LT] = ACTIONS(1096), + [anon_sym_GT] = ACTIONS(1096), + [anon_sym_LT_EQ] = ACTIONS(1098), + [anon_sym_GT_EQ] = ACTIONS(1098), + [anon_sym_LT_LT] = ACTIONS(1847), + [anon_sym_GT_GT] = ACTIONS(1847), + [anon_sym_PLUS] = ACTIONS(1849), + [anon_sym_DASH] = ACTIONS(1849), + [anon_sym_SLASH] = ACTIONS(1823), + [anon_sym_PERCENT] = ACTIONS(1823), + [anon_sym_DASH_DASH] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(216), + [anon_sym_DOT] = ACTIONS(218), + [anon_sym_DASH_GT] = ACTIONS(218), + [sym_comment] = ACTIONS(59), }, [854] = { - [sym_argument_list] = STATE(430), - [anon_sym_LPAREN2] = ACTIONS(1012), - [anon_sym_STAR] = ACTIONS(1497), - [anon_sym_LBRACK] = ACTIONS(1016), - [anon_sym_EQ] = ACTIONS(1499), - [anon_sym_COLON] = ACTIONS(2661), - [anon_sym_QMARK] = ACTIONS(1503), - [anon_sym_STAR_EQ] = ACTIONS(1505), - [anon_sym_SLASH_EQ] = ACTIONS(1505), - [anon_sym_PERCENT_EQ] = ACTIONS(1505), - [anon_sym_PLUS_EQ] = ACTIONS(1505), - [anon_sym_DASH_EQ] = ACTIONS(1505), - [anon_sym_LT_LT_EQ] = ACTIONS(1505), - [anon_sym_GT_GT_EQ] = ACTIONS(1505), - [anon_sym_AMP_EQ] = ACTIONS(1505), - [anon_sym_CARET_EQ] = ACTIONS(1505), - [anon_sym_PIPE_EQ] = ACTIONS(1505), - [anon_sym_AMP] = ACTIONS(1507), - [anon_sym_PIPE_PIPE] = ACTIONS(1509), - [anon_sym_AMP_AMP] = ACTIONS(1511), - [anon_sym_PIPE] = ACTIONS(1513), - [anon_sym_CARET] = ACTIONS(1515), - [anon_sym_EQ_EQ] = ACTIONS(1517), - [anon_sym_BANG_EQ] = ACTIONS(1517), - [anon_sym_LT] = ACTIONS(1519), - [anon_sym_GT] = ACTIONS(1519), - [anon_sym_LT_EQ] = ACTIONS(1521), - [anon_sym_GT_EQ] = ACTIONS(1521), - [anon_sym_LT_LT] = ACTIONS(1523), - [anon_sym_GT_GT] = ACTIONS(1523), - [anon_sym_PLUS] = ACTIONS(1525), - [anon_sym_DASH] = ACTIONS(1525), - [anon_sym_SLASH] = ACTIONS(1497), - [anon_sym_PERCENT] = ACTIONS(1497), - [anon_sym_DASH_DASH] = ACTIONS(1044), - [anon_sym_PLUS_PLUS] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1046), - [anon_sym_DASH_GT] = ACTIONS(1046), - [sym_comment] = ACTIONS(37), + [sym_argument_list] = STATE(98), + [anon_sym_COMMA] = ACTIONS(1102), + [anon_sym_RBRACE] = ACTIONS(1102), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(1823), + [anon_sym_LBRACK] = ACTIONS(188), + [anon_sym_EQ] = ACTIONS(1100), + [anon_sym_QMARK] = ACTIONS(1102), + [anon_sym_STAR_EQ] = ACTIONS(1102), + [anon_sym_SLASH_EQ] = ACTIONS(1102), + [anon_sym_PERCENT_EQ] = ACTIONS(1102), + [anon_sym_PLUS_EQ] = ACTIONS(1102), + [anon_sym_DASH_EQ] = ACTIONS(1102), + [anon_sym_LT_LT_EQ] = ACTIONS(1102), + [anon_sym_GT_GT_EQ] = ACTIONS(1102), + [anon_sym_AMP_EQ] = ACTIONS(1102), + [anon_sym_CARET_EQ] = ACTIONS(1102), + [anon_sym_PIPE_EQ] = ACTIONS(1102), + [anon_sym_AMP] = ACTIONS(1100), + [anon_sym_PIPE_PIPE] = ACTIONS(1102), + [anon_sym_AMP_AMP] = ACTIONS(1102), + [anon_sym_PIPE] = ACTIONS(1100), + [anon_sym_CARET] = ACTIONS(1100), + [anon_sym_EQ_EQ] = ACTIONS(1102), + [anon_sym_BANG_EQ] = ACTIONS(1102), + [anon_sym_LT] = ACTIONS(1100), + [anon_sym_GT] = ACTIONS(1100), + [anon_sym_LT_EQ] = ACTIONS(1102), + [anon_sym_GT_EQ] = ACTIONS(1102), + [anon_sym_LT_LT] = ACTIONS(1100), + [anon_sym_GT_GT] = ACTIONS(1100), + [anon_sym_PLUS] = ACTIONS(1849), + [anon_sym_DASH] = ACTIONS(1849), + [anon_sym_SLASH] = ACTIONS(1823), + [anon_sym_PERCENT] = ACTIONS(1823), + [anon_sym_DASH_DASH] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(216), + [anon_sym_DOT] = ACTIONS(218), + [anon_sym_DASH_GT] = ACTIONS(218), + [sym_comment] = ACTIONS(59), }, [855] = { - [sym_argument_list] = STATE(430), - [anon_sym_LPAREN2] = ACTIONS(1012), - [anon_sym_STAR] = ACTIONS(1497), - [anon_sym_LBRACK] = ACTIONS(1016), - [anon_sym_EQ] = ACTIONS(2360), - [anon_sym_COLON] = ACTIONS(2358), - [anon_sym_QMARK] = ACTIONS(2358), - [anon_sym_STAR_EQ] = ACTIONS(2358), - [anon_sym_SLASH_EQ] = ACTIONS(2358), - [anon_sym_PERCENT_EQ] = ACTIONS(2358), - [anon_sym_PLUS_EQ] = ACTIONS(2358), - [anon_sym_DASH_EQ] = ACTIONS(2358), - [anon_sym_LT_LT_EQ] = ACTIONS(2358), - [anon_sym_GT_GT_EQ] = ACTIONS(2358), - [anon_sym_AMP_EQ] = ACTIONS(2358), - [anon_sym_CARET_EQ] = ACTIONS(2358), - [anon_sym_PIPE_EQ] = ACTIONS(2358), - [anon_sym_AMP] = ACTIONS(2360), - [anon_sym_PIPE_PIPE] = ACTIONS(2358), - [anon_sym_AMP_AMP] = ACTIONS(2358), - [anon_sym_PIPE] = ACTIONS(2360), - [anon_sym_CARET] = ACTIONS(2360), - [anon_sym_EQ_EQ] = ACTIONS(1517), - [anon_sym_BANG_EQ] = ACTIONS(1517), - [anon_sym_LT] = ACTIONS(1519), - [anon_sym_GT] = ACTIONS(1519), - [anon_sym_LT_EQ] = ACTIONS(1521), - [anon_sym_GT_EQ] = ACTIONS(1521), - [anon_sym_LT_LT] = ACTIONS(1523), - [anon_sym_GT_GT] = ACTIONS(1523), - [anon_sym_PLUS] = ACTIONS(1525), - [anon_sym_DASH] = ACTIONS(1525), - [anon_sym_SLASH] = ACTIONS(1497), - [anon_sym_PERCENT] = ACTIONS(1497), - [anon_sym_DASH_DASH] = ACTIONS(1044), - [anon_sym_PLUS_PLUS] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1046), - [anon_sym_DASH_GT] = ACTIONS(1046), - [sym_comment] = ACTIONS(37), + [sym_argument_list] = STATE(98), + [anon_sym_COMMA] = ACTIONS(1006), + [anon_sym_RBRACE] = ACTIONS(1006), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(1823), + [anon_sym_LBRACK] = ACTIONS(188), + [anon_sym_EQ] = ACTIONS(1008), + [anon_sym_QMARK] = ACTIONS(1006), + [anon_sym_STAR_EQ] = ACTIONS(1006), + [anon_sym_SLASH_EQ] = ACTIONS(1006), + [anon_sym_PERCENT_EQ] = ACTIONS(1006), + [anon_sym_PLUS_EQ] = ACTIONS(1006), + [anon_sym_DASH_EQ] = ACTIONS(1006), + [anon_sym_LT_LT_EQ] = ACTIONS(1006), + [anon_sym_GT_GT_EQ] = ACTIONS(1006), + [anon_sym_AMP_EQ] = ACTIONS(1006), + [anon_sym_CARET_EQ] = ACTIONS(1006), + [anon_sym_PIPE_EQ] = ACTIONS(1006), + [anon_sym_AMP] = ACTIONS(1008), + [anon_sym_PIPE_PIPE] = ACTIONS(1006), + [anon_sym_AMP_AMP] = ACTIONS(1006), + [anon_sym_PIPE] = ACTIONS(1008), + [anon_sym_CARET] = ACTIONS(1008), + [anon_sym_EQ_EQ] = ACTIONS(1006), + [anon_sym_BANG_EQ] = ACTIONS(1006), + [anon_sym_LT] = ACTIONS(1008), + [anon_sym_GT] = ACTIONS(1008), + [anon_sym_LT_EQ] = ACTIONS(1006), + [anon_sym_GT_EQ] = ACTIONS(1006), + [anon_sym_LT_LT] = ACTIONS(1008), + [anon_sym_GT_GT] = ACTIONS(1008), + [anon_sym_PLUS] = ACTIONS(1008), + [anon_sym_DASH] = ACTIONS(1008), + [anon_sym_SLASH] = ACTIONS(1823), + [anon_sym_PERCENT] = ACTIONS(1823), + [anon_sym_DASH_DASH] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(216), + [anon_sym_DOT] = ACTIONS(218), + [anon_sym_DASH_GT] = ACTIONS(218), + [sym_comment] = ACTIONS(59), }, [856] = { - [sym_argument_list] = STATE(430), - [anon_sym_LPAREN2] = ACTIONS(1012), - [anon_sym_STAR] = ACTIONS(1497), - [anon_sym_LBRACK] = ACTIONS(1016), - [anon_sym_EQ] = ACTIONS(2364), - [anon_sym_COLON] = ACTIONS(2362), - [anon_sym_QMARK] = ACTIONS(2362), - [anon_sym_STAR_EQ] = ACTIONS(2362), - [anon_sym_SLASH_EQ] = ACTIONS(2362), - [anon_sym_PERCENT_EQ] = ACTIONS(2362), - [anon_sym_PLUS_EQ] = ACTIONS(2362), - [anon_sym_DASH_EQ] = ACTIONS(2362), - [anon_sym_LT_LT_EQ] = ACTIONS(2362), - [anon_sym_GT_GT_EQ] = ACTIONS(2362), - [anon_sym_AMP_EQ] = ACTIONS(2362), - [anon_sym_CARET_EQ] = ACTIONS(2362), - [anon_sym_PIPE_EQ] = ACTIONS(2362), - [anon_sym_AMP] = ACTIONS(1507), - [anon_sym_PIPE_PIPE] = ACTIONS(2362), - [anon_sym_AMP_AMP] = ACTIONS(1511), - [anon_sym_PIPE] = ACTIONS(1513), - [anon_sym_CARET] = ACTIONS(1515), - [anon_sym_EQ_EQ] = ACTIONS(1517), - [anon_sym_BANG_EQ] = ACTIONS(1517), - [anon_sym_LT] = ACTIONS(1519), - [anon_sym_GT] = ACTIONS(1519), - [anon_sym_LT_EQ] = ACTIONS(1521), - [anon_sym_GT_EQ] = ACTIONS(1521), - [anon_sym_LT_LT] = ACTIONS(1523), - [anon_sym_GT_GT] = ACTIONS(1523), - [anon_sym_PLUS] = ACTIONS(1525), - [anon_sym_DASH] = ACTIONS(1525), - [anon_sym_SLASH] = ACTIONS(1497), - [anon_sym_PERCENT] = ACTIONS(1497), - [anon_sym_DASH_DASH] = ACTIONS(1044), - [anon_sym_PLUS_PLUS] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1046), - [anon_sym_DASH_GT] = ACTIONS(1046), - [sym_comment] = ACTIONS(37), + [sym__expression] = STATE(843), + [sym_conditional_expression] = STATE(843), + [sym_assignment_expression] = STATE(843), + [sym_pointer_expression] = STATE(843), + [sym_logical_expression] = STATE(843), + [sym_bitwise_expression] = STATE(843), + [sym_equality_expression] = STATE(843), + [sym_relational_expression] = STATE(843), + [sym_shift_expression] = STATE(843), + [sym_math_expression] = STATE(843), + [sym_cast_expression] = STATE(843), + [sym_sizeof_expression] = STATE(843), + [sym_subscript_expression] = STATE(843), + [sym_call_expression] = STATE(843), + [sym_field_expression] = STATE(843), + [sym_compound_literal_expression] = STATE(843), + [sym_parenthesized_expression] = STATE(843), + [sym_initializer_list] = STATE(844), + [sym_initializer_pair] = STATE(844), + [sym_subscript_designator] = STATE(509), + [sym_field_designator] = STATE(509), + [sym_char_literal] = STATE(843), + [sym_concatenated_string] = STATE(843), + [sym_string_literal] = STATE(508), + [aux_sym_initializer_pair_repeat1] = STATE(509), + [anon_sym_LBRACE] = ACTIONS(840), + [anon_sym_RBRACE] = ACTIONS(2683), + [anon_sym_LPAREN2] = ACTIONS(1289), + [anon_sym_STAR] = ACTIONS(1291), + [anon_sym_LBRACK] = ACTIONS(1293), + [anon_sym_AMP] = ACTIONS(1291), + [anon_sym_BANG] = ACTIONS(1295), + [anon_sym_TILDE] = ACTIONS(1297), + [anon_sym_PLUS] = ACTIONS(1299), + [anon_sym_DASH] = ACTIONS(1299), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_sizeof] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1305), + [sym_number_literal] = ACTIONS(2318), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(2320), + [sym_false] = ACTIONS(2320), + [sym_null] = ACTIONS(2320), + [sym_identifier] = ACTIONS(2320), + [sym_comment] = ACTIONS(59), }, [857] = { - [sym_argument_list] = STATE(430), - [anon_sym_LPAREN2] = ACTIONS(1012), - [anon_sym_STAR] = ACTIONS(1497), - [anon_sym_LBRACK] = ACTIONS(1016), - [anon_sym_EQ] = ACTIONS(2364), - [anon_sym_COLON] = ACTIONS(2362), - [anon_sym_QMARK] = ACTIONS(2362), - [anon_sym_STAR_EQ] = ACTIONS(2362), - [anon_sym_SLASH_EQ] = ACTIONS(2362), - [anon_sym_PERCENT_EQ] = ACTIONS(2362), - [anon_sym_PLUS_EQ] = ACTIONS(2362), - [anon_sym_DASH_EQ] = ACTIONS(2362), - [anon_sym_LT_LT_EQ] = ACTIONS(2362), - [anon_sym_GT_GT_EQ] = ACTIONS(2362), - [anon_sym_AMP_EQ] = ACTIONS(2362), - [anon_sym_CARET_EQ] = ACTIONS(2362), - [anon_sym_PIPE_EQ] = ACTIONS(2362), - [anon_sym_AMP] = ACTIONS(1507), - [anon_sym_PIPE_PIPE] = ACTIONS(2362), - [anon_sym_AMP_AMP] = ACTIONS(2362), - [anon_sym_PIPE] = ACTIONS(1513), - [anon_sym_CARET] = ACTIONS(1515), - [anon_sym_EQ_EQ] = ACTIONS(1517), - [anon_sym_BANG_EQ] = ACTIONS(1517), - [anon_sym_LT] = ACTIONS(1519), - [anon_sym_GT] = ACTIONS(1519), - [anon_sym_LT_EQ] = ACTIONS(1521), - [anon_sym_GT_EQ] = ACTIONS(1521), - [anon_sym_LT_LT] = ACTIONS(1523), - [anon_sym_GT_GT] = ACTIONS(1523), - [anon_sym_PLUS] = ACTIONS(1525), - [anon_sym_DASH] = ACTIONS(1525), - [anon_sym_SLASH] = ACTIONS(1497), - [anon_sym_PERCENT] = ACTIONS(1497), - [anon_sym_DASH_DASH] = ACTIONS(1044), - [anon_sym_PLUS_PLUS] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1046), - [anon_sym_DASH_GT] = ACTIONS(1046), - [sym_comment] = ACTIONS(37), + [aux_sym_initializer_list_repeat1] = STATE(857), + [anon_sym_COMMA] = ACTIONS(2685), + [anon_sym_RBRACE] = ACTIONS(2679), + [sym_comment] = ACTIONS(59), }, [858] = { - [sym_argument_list] = STATE(430), - [anon_sym_LPAREN2] = ACTIONS(1012), - [anon_sym_STAR] = ACTIONS(1497), - [anon_sym_LBRACK] = ACTIONS(1016), - [anon_sym_EQ] = ACTIONS(2360), - [anon_sym_COLON] = ACTIONS(2358), - [anon_sym_QMARK] = ACTIONS(2358), - [anon_sym_STAR_EQ] = ACTIONS(2358), - [anon_sym_SLASH_EQ] = ACTIONS(2358), - [anon_sym_PERCENT_EQ] = ACTIONS(2358), - [anon_sym_PLUS_EQ] = ACTIONS(2358), - [anon_sym_DASH_EQ] = ACTIONS(2358), - [anon_sym_LT_LT_EQ] = ACTIONS(2358), - [anon_sym_GT_GT_EQ] = ACTIONS(2358), - [anon_sym_AMP_EQ] = ACTIONS(2358), - [anon_sym_CARET_EQ] = ACTIONS(2358), - [anon_sym_PIPE_EQ] = ACTIONS(2358), - [anon_sym_AMP] = ACTIONS(1507), - [anon_sym_PIPE_PIPE] = ACTIONS(2358), - [anon_sym_AMP_AMP] = ACTIONS(2358), - [anon_sym_PIPE] = ACTIONS(2360), - [anon_sym_CARET] = ACTIONS(1515), - [anon_sym_EQ_EQ] = ACTIONS(1517), - [anon_sym_BANG_EQ] = ACTIONS(1517), - [anon_sym_LT] = ACTIONS(1519), - [anon_sym_GT] = ACTIONS(1519), - [anon_sym_LT_EQ] = ACTIONS(1521), - [anon_sym_GT_EQ] = ACTIONS(1521), - [anon_sym_LT_LT] = ACTIONS(1523), - [anon_sym_GT_GT] = ACTIONS(1523), - [anon_sym_PLUS] = ACTIONS(1525), - [anon_sym_DASH] = ACTIONS(1525), - [anon_sym_SLASH] = ACTIONS(1497), - [anon_sym_PERCENT] = ACTIONS(1497), - [anon_sym_DASH_DASH] = ACTIONS(1044), - [anon_sym_PLUS_PLUS] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1046), - [anon_sym_DASH_GT] = ACTIONS(1046), - [sym_comment] = ACTIONS(37), + [sym_string_literal] = STATE(858), + [aux_sym_concatenated_string_repeat1] = STATE(858), + [anon_sym_COMMA] = ACTIONS(1108), + [anon_sym_RBRACE] = ACTIONS(1108), + [anon_sym_LPAREN2] = ACTIONS(1108), + [anon_sym_STAR] = ACTIONS(1110), + [anon_sym_LBRACK] = ACTIONS(1108), + [anon_sym_EQ] = ACTIONS(1110), + [anon_sym_QMARK] = ACTIONS(1108), + [anon_sym_STAR_EQ] = ACTIONS(1108), + [anon_sym_SLASH_EQ] = ACTIONS(1108), + [anon_sym_PERCENT_EQ] = ACTIONS(1108), + [anon_sym_PLUS_EQ] = ACTIONS(1108), + [anon_sym_DASH_EQ] = ACTIONS(1108), + [anon_sym_LT_LT_EQ] = ACTIONS(1108), + [anon_sym_GT_GT_EQ] = ACTIONS(1108), + [anon_sym_AMP_EQ] = ACTIONS(1108), + [anon_sym_CARET_EQ] = ACTIONS(1108), + [anon_sym_PIPE_EQ] = ACTIONS(1108), + [anon_sym_AMP] = ACTIONS(1110), + [anon_sym_PIPE_PIPE] = ACTIONS(1108), + [anon_sym_AMP_AMP] = ACTIONS(1108), + [anon_sym_PIPE] = ACTIONS(1110), + [anon_sym_CARET] = ACTIONS(1110), + [anon_sym_EQ_EQ] = ACTIONS(1108), + [anon_sym_BANG_EQ] = ACTIONS(1108), + [anon_sym_LT] = ACTIONS(1110), + [anon_sym_GT] = ACTIONS(1110), + [anon_sym_LT_EQ] = ACTIONS(1108), + [anon_sym_GT_EQ] = ACTIONS(1108), + [anon_sym_LT_LT] = ACTIONS(1110), + [anon_sym_GT_GT] = ACTIONS(1110), + [anon_sym_PLUS] = ACTIONS(1110), + [anon_sym_DASH] = ACTIONS(1110), + [anon_sym_SLASH] = ACTIONS(1110), + [anon_sym_PERCENT] = ACTIONS(1110), + [anon_sym_DASH_DASH] = ACTIONS(1108), + [anon_sym_PLUS_PLUS] = ACTIONS(1108), + [anon_sym_DOT] = ACTIONS(1108), + [anon_sym_DASH_GT] = ACTIONS(1108), + [anon_sym_DQUOTE] = ACTIONS(1112), + [sym_comment] = ACTIONS(59), }, [859] = { - [sym_argument_list] = STATE(430), - [anon_sym_LPAREN2] = ACTIONS(1012), - [anon_sym_STAR] = ACTIONS(1497), - [anon_sym_LBRACK] = ACTIONS(1016), - [anon_sym_EQ] = ACTIONS(2360), - [anon_sym_COLON] = ACTIONS(2358), - [anon_sym_QMARK] = ACTIONS(2358), - [anon_sym_STAR_EQ] = ACTIONS(2358), - [anon_sym_SLASH_EQ] = ACTIONS(2358), - [anon_sym_PERCENT_EQ] = ACTIONS(2358), - [anon_sym_PLUS_EQ] = ACTIONS(2358), - [anon_sym_DASH_EQ] = ACTIONS(2358), - [anon_sym_LT_LT_EQ] = ACTIONS(2358), - [anon_sym_GT_GT_EQ] = ACTIONS(2358), - [anon_sym_AMP_EQ] = ACTIONS(2358), - [anon_sym_CARET_EQ] = ACTIONS(2358), - [anon_sym_PIPE_EQ] = ACTIONS(2358), - [anon_sym_AMP] = ACTIONS(1507), - [anon_sym_PIPE_PIPE] = ACTIONS(2358), - [anon_sym_AMP_AMP] = ACTIONS(2358), - [anon_sym_PIPE] = ACTIONS(2360), - [anon_sym_CARET] = ACTIONS(2360), - [anon_sym_EQ_EQ] = ACTIONS(1517), - [anon_sym_BANG_EQ] = ACTIONS(1517), - [anon_sym_LT] = ACTIONS(1519), - [anon_sym_GT] = ACTIONS(1519), - [anon_sym_LT_EQ] = ACTIONS(1521), - [anon_sym_GT_EQ] = ACTIONS(1521), - [anon_sym_LT_LT] = ACTIONS(1523), - [anon_sym_GT_GT] = ACTIONS(1523), - [anon_sym_PLUS] = ACTIONS(1525), - [anon_sym_DASH] = ACTIONS(1525), - [anon_sym_SLASH] = ACTIONS(1497), - [anon_sym_PERCENT] = ACTIONS(1497), - [anon_sym_DASH_DASH] = ACTIONS(1044), - [anon_sym_PLUS_PLUS] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1046), - [anon_sym_DASH_GT] = ACTIONS(1046), - [sym_comment] = ACTIONS(37), + [sym_argument_list] = STATE(98), + [anon_sym_COMMA] = ACTIONS(2688), + [anon_sym_RBRACE] = ACTIONS(2688), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(1823), + [anon_sym_LBRACK] = ACTIONS(188), + [anon_sym_EQ] = ACTIONS(1825), + [anon_sym_QMARK] = ACTIONS(1827), + [anon_sym_STAR_EQ] = ACTIONS(1829), + [anon_sym_SLASH_EQ] = ACTIONS(1829), + [anon_sym_PERCENT_EQ] = ACTIONS(1829), + [anon_sym_PLUS_EQ] = ACTIONS(1829), + [anon_sym_DASH_EQ] = ACTIONS(1829), + [anon_sym_LT_LT_EQ] = ACTIONS(1829), + [anon_sym_GT_GT_EQ] = ACTIONS(1829), + [anon_sym_AMP_EQ] = ACTIONS(1829), + [anon_sym_CARET_EQ] = ACTIONS(1829), + [anon_sym_PIPE_EQ] = ACTIONS(1829), + [anon_sym_AMP] = ACTIONS(1831), + [anon_sym_PIPE_PIPE] = ACTIONS(1833), + [anon_sym_AMP_AMP] = ACTIONS(1835), + [anon_sym_PIPE] = ACTIONS(1837), + [anon_sym_CARET] = ACTIONS(1839), + [anon_sym_EQ_EQ] = ACTIONS(1841), + [anon_sym_BANG_EQ] = ACTIONS(1841), + [anon_sym_LT] = ACTIONS(1843), + [anon_sym_GT] = ACTIONS(1843), + [anon_sym_LT_EQ] = ACTIONS(1845), + [anon_sym_GT_EQ] = ACTIONS(1845), + [anon_sym_LT_LT] = ACTIONS(1847), + [anon_sym_GT_GT] = ACTIONS(1847), + [anon_sym_PLUS] = ACTIONS(1849), + [anon_sym_DASH] = ACTIONS(1849), + [anon_sym_SLASH] = ACTIONS(1823), + [anon_sym_PERCENT] = ACTIONS(1823), + [anon_sym_DASH_DASH] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(216), + [anon_sym_DOT] = ACTIONS(218), + [anon_sym_DASH_GT] = ACTIONS(218), + [sym_comment] = ACTIONS(59), }, [860] = { - [sym_argument_list] = STATE(430), - [anon_sym_LPAREN2] = ACTIONS(1012), - [anon_sym_STAR] = ACTIONS(1497), - [anon_sym_LBRACK] = ACTIONS(1016), - [anon_sym_EQ] = ACTIONS(2368), - [anon_sym_COLON] = ACTIONS(2366), - [anon_sym_QMARK] = ACTIONS(2366), - [anon_sym_STAR_EQ] = ACTIONS(2366), - [anon_sym_SLASH_EQ] = ACTIONS(2366), - [anon_sym_PERCENT_EQ] = ACTIONS(2366), - [anon_sym_PLUS_EQ] = ACTIONS(2366), - [anon_sym_DASH_EQ] = ACTIONS(2366), - [anon_sym_LT_LT_EQ] = ACTIONS(2366), - [anon_sym_GT_GT_EQ] = ACTIONS(2366), - [anon_sym_AMP_EQ] = ACTIONS(2366), - [anon_sym_CARET_EQ] = ACTIONS(2366), - [anon_sym_PIPE_EQ] = ACTIONS(2366), - [anon_sym_AMP] = ACTIONS(2368), - [anon_sym_PIPE_PIPE] = ACTIONS(2366), - [anon_sym_AMP_AMP] = ACTIONS(2366), - [anon_sym_PIPE] = ACTIONS(2368), - [anon_sym_CARET] = ACTIONS(2368), - [anon_sym_EQ_EQ] = ACTIONS(2366), - [anon_sym_BANG_EQ] = ACTIONS(2366), - [anon_sym_LT] = ACTIONS(1519), - [anon_sym_GT] = ACTIONS(1519), - [anon_sym_LT_EQ] = ACTIONS(1521), - [anon_sym_GT_EQ] = ACTIONS(1521), - [anon_sym_LT_LT] = ACTIONS(1523), - [anon_sym_GT_GT] = ACTIONS(1523), - [anon_sym_PLUS] = ACTIONS(1525), - [anon_sym_DASH] = ACTIONS(1525), - [anon_sym_SLASH] = ACTIONS(1497), - [anon_sym_PERCENT] = ACTIONS(1497), - [anon_sym_DASH_DASH] = ACTIONS(1044), - [anon_sym_PLUS_PLUS] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1046), - [anon_sym_DASH_GT] = ACTIONS(1046), - [sym_comment] = ACTIONS(37), + [anon_sym_COMMA] = ACTIONS(2688), + [anon_sym_RBRACE] = ACTIONS(2688), + [sym_comment] = ACTIONS(59), }, [861] = { - [sym_argument_list] = STATE(430), - [anon_sym_LPAREN2] = ACTIONS(1012), - [anon_sym_STAR] = ACTIONS(1497), - [anon_sym_LBRACK] = ACTIONS(1016), - [anon_sym_EQ] = ACTIONS(2372), - [anon_sym_COLON] = ACTIONS(2370), - [anon_sym_QMARK] = ACTIONS(2370), - [anon_sym_STAR_EQ] = ACTIONS(2370), - [anon_sym_SLASH_EQ] = ACTIONS(2370), - [anon_sym_PERCENT_EQ] = ACTIONS(2370), - [anon_sym_PLUS_EQ] = ACTIONS(2370), - [anon_sym_DASH_EQ] = ACTIONS(2370), - [anon_sym_LT_LT_EQ] = ACTIONS(2370), - [anon_sym_GT_GT_EQ] = ACTIONS(2370), - [anon_sym_AMP_EQ] = ACTIONS(2370), - [anon_sym_CARET_EQ] = ACTIONS(2370), - [anon_sym_PIPE_EQ] = ACTIONS(2370), - [anon_sym_AMP] = ACTIONS(2372), - [anon_sym_PIPE_PIPE] = ACTIONS(2370), - [anon_sym_AMP_AMP] = ACTIONS(2370), - [anon_sym_PIPE] = ACTIONS(2372), - [anon_sym_CARET] = ACTIONS(2372), - [anon_sym_EQ_EQ] = ACTIONS(2370), - [anon_sym_BANG_EQ] = ACTIONS(2370), - [anon_sym_LT] = ACTIONS(2372), - [anon_sym_GT] = ACTIONS(2372), - [anon_sym_LT_EQ] = ACTIONS(2370), - [anon_sym_GT_EQ] = ACTIONS(2370), - [anon_sym_LT_LT] = ACTIONS(1523), - [anon_sym_GT_GT] = ACTIONS(1523), - [anon_sym_PLUS] = ACTIONS(1525), - [anon_sym_DASH] = ACTIONS(1525), - [anon_sym_SLASH] = ACTIONS(1497), - [anon_sym_PERCENT] = ACTIONS(1497), - [anon_sym_DASH_DASH] = ACTIONS(1044), - [anon_sym_PLUS_PLUS] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1046), - [anon_sym_DASH_GT] = ACTIONS(1046), - [sym_comment] = ACTIONS(37), + [sym_preproc_if_in_field_declaration_list] = STATE(861), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(861), + [sym__declaration_specifiers] = STATE(178), + [sym_storage_class_specifier] = STATE(181), + [sym_type_qualifier] = STATE(181), + [sym__type_specifier] = STATE(179), + [sym_sized_type_specifier] = STATE(179), + [sym_enum_specifier] = STATE(179), + [sym_struct_specifier] = STATE(179), + [sym_union_specifier] = STATE(179), + [sym__field_declaration_list_item] = STATE(861), + [sym_field_declaration] = STATE(861), + [sym_macro_type_specifier] = STATE(179), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(861), + [aux_sym__declaration_specifiers_repeat1] = STATE(181), + [aux_sym_sized_type_specifier_repeat1] = STATE(182), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1381), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1390), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1384), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1384), + [anon_sym_extern] = ACTIONS(1387), + [anon_sym_static] = ACTIONS(1387), + [anon_sym_auto] = ACTIONS(1387), + [anon_sym_register] = ACTIONS(1387), + [anon_sym_inline] = ACTIONS(1387), + [anon_sym_const] = ACTIONS(1392), + [anon_sym_restrict] = ACTIONS(1392), + [anon_sym_volatile] = ACTIONS(1392), + [anon_sym__Atomic] = ACTIONS(1392), + [anon_sym_unsigned] = ACTIONS(1395), + [anon_sym_long] = ACTIONS(1395), + [anon_sym_short] = ACTIONS(1395), + [sym_primitive_type] = ACTIONS(1398), + [anon_sym_enum] = ACTIONS(1401), + [anon_sym_struct] = ACTIONS(1404), + [anon_sym_union] = ACTIONS(1407), + [sym_identifier] = ACTIONS(1410), + [sym_comment] = ACTIONS(59), }, [862] = { - [sym_argument_list] = STATE(430), - [anon_sym_LPAREN2] = ACTIONS(1012), - [anon_sym_STAR] = ACTIONS(1497), - [anon_sym_LBRACK] = ACTIONS(1016), - [anon_sym_EQ] = ACTIONS(2376), - [anon_sym_COLON] = ACTIONS(2374), - [anon_sym_QMARK] = ACTIONS(2374), - [anon_sym_STAR_EQ] = ACTIONS(2374), - [anon_sym_SLASH_EQ] = ACTIONS(2374), - [anon_sym_PERCENT_EQ] = ACTIONS(2374), - [anon_sym_PLUS_EQ] = ACTIONS(2374), - [anon_sym_DASH_EQ] = ACTIONS(2374), - [anon_sym_LT_LT_EQ] = ACTIONS(2374), - [anon_sym_GT_GT_EQ] = ACTIONS(2374), - [anon_sym_AMP_EQ] = ACTIONS(2374), - [anon_sym_CARET_EQ] = ACTIONS(2374), - [anon_sym_PIPE_EQ] = ACTIONS(2374), - [anon_sym_AMP] = ACTIONS(2376), - [anon_sym_PIPE_PIPE] = ACTIONS(2374), - [anon_sym_AMP_AMP] = ACTIONS(2374), - [anon_sym_PIPE] = ACTIONS(2376), - [anon_sym_CARET] = ACTIONS(2376), - [anon_sym_EQ_EQ] = ACTIONS(2374), - [anon_sym_BANG_EQ] = ACTIONS(2374), - [anon_sym_LT] = ACTIONS(2376), - [anon_sym_GT] = ACTIONS(2376), - [anon_sym_LT_EQ] = ACTIONS(2374), - [anon_sym_GT_EQ] = ACTIONS(2374), - [anon_sym_LT_LT] = ACTIONS(2376), - [anon_sym_GT_GT] = ACTIONS(2376), - [anon_sym_PLUS] = ACTIONS(1525), - [anon_sym_DASH] = ACTIONS(1525), - [anon_sym_SLASH] = ACTIONS(1497), - [anon_sym_PERCENT] = ACTIONS(1497), - [anon_sym_DASH_DASH] = ACTIONS(1044), - [anon_sym_PLUS_PLUS] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1046), - [anon_sym_DASH_GT] = ACTIONS(1046), - [sym_comment] = ACTIONS(37), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2690), + [sym_comment] = ACTIONS(59), }, [863] = { - [sym_argument_list] = STATE(430), - [anon_sym_LPAREN2] = ACTIONS(1012), - [anon_sym_STAR] = ACTIONS(1497), - [anon_sym_LBRACK] = ACTIONS(1016), - [anon_sym_EQ] = ACTIONS(2350), - [anon_sym_COLON] = ACTIONS(2348), - [anon_sym_QMARK] = ACTIONS(2348), - [anon_sym_STAR_EQ] = ACTIONS(2348), - [anon_sym_SLASH_EQ] = ACTIONS(2348), - [anon_sym_PERCENT_EQ] = ACTIONS(2348), - [anon_sym_PLUS_EQ] = ACTIONS(2348), - [anon_sym_DASH_EQ] = ACTIONS(2348), - [anon_sym_LT_LT_EQ] = ACTIONS(2348), - [anon_sym_GT_GT_EQ] = ACTIONS(2348), - [anon_sym_AMP_EQ] = ACTIONS(2348), - [anon_sym_CARET_EQ] = ACTIONS(2348), - [anon_sym_PIPE_EQ] = ACTIONS(2348), - [anon_sym_AMP] = ACTIONS(2350), - [anon_sym_PIPE_PIPE] = ACTIONS(2348), - [anon_sym_AMP_AMP] = ACTIONS(2348), - [anon_sym_PIPE] = ACTIONS(2350), - [anon_sym_CARET] = ACTIONS(2350), - [anon_sym_EQ_EQ] = ACTIONS(2348), - [anon_sym_BANG_EQ] = ACTIONS(2348), - [anon_sym_LT] = ACTIONS(2350), - [anon_sym_GT] = ACTIONS(2350), - [anon_sym_LT_EQ] = ACTIONS(2348), - [anon_sym_GT_EQ] = ACTIONS(2348), - [anon_sym_LT_LT] = ACTIONS(2350), - [anon_sym_GT_GT] = ACTIONS(2350), - [anon_sym_PLUS] = ACTIONS(2350), - [anon_sym_DASH] = ACTIONS(2350), - [anon_sym_SLASH] = ACTIONS(1497), - [anon_sym_PERCENT] = ACTIONS(1497), - [anon_sym_DASH_DASH] = ACTIONS(1044), - [anon_sym_PLUS_PLUS] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1046), - [anon_sym_DASH_GT] = ACTIONS(1046), - [sym_comment] = ACTIONS(37), + [sym_preproc_if_in_field_declaration_list] = STATE(706), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(706), + [sym_preproc_else_in_field_declaration_list] = STATE(968), + [sym_preproc_elif_in_field_declaration_list] = STATE(968), + [sym__declaration_specifiers] = STATE(178), + [sym_storage_class_specifier] = STATE(181), + [sym_type_qualifier] = STATE(181), + [sym__type_specifier] = STATE(179), + [sym_sized_type_specifier] = STATE(179), + [sym_enum_specifier] = STATE(179), + [sym_struct_specifier] = STATE(179), + [sym_union_specifier] = STATE(179), + [sym__field_declaration_list_item] = STATE(706), + [sym_field_declaration] = STATE(706), + [sym_macro_type_specifier] = STATE(179), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(706), + [aux_sym__declaration_specifiers_repeat1] = STATE(181), + [aux_sym_sized_type_specifier_repeat1] = STATE(182), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(373), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2690), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(375), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(375), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1335), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(25), + [anon_sym_static] = ACTIONS(25), + [anon_sym_auto] = ACTIONS(25), + [anon_sym_register] = ACTIONS(25), + [anon_sym_inline] = ACTIONS(25), + [anon_sym_const] = ACTIONS(27), + [anon_sym_restrict] = ACTIONS(27), + [anon_sym_volatile] = ACTIONS(27), + [anon_sym__Atomic] = ACTIONS(27), + [anon_sym_unsigned] = ACTIONS(379), + [anon_sym_long] = ACTIONS(379), + [anon_sym_short] = ACTIONS(379), + [sym_primitive_type] = ACTIONS(381), + [anon_sym_enum] = ACTIONS(33), + [anon_sym_struct] = ACTIONS(35), + [anon_sym_union] = ACTIONS(37), + [sym_identifier] = ACTIONS(81), + [sym_comment] = ACTIONS(59), }, [864] = { - [sym_string_literal] = STATE(864), - [aux_sym_concatenated_string_repeat1] = STATE(864), - [anon_sym_LPAREN2] = ACTIONS(2382), - [anon_sym_STAR] = ACTIONS(2384), - [anon_sym_LBRACK] = ACTIONS(2382), - [anon_sym_EQ] = ACTIONS(2384), - [anon_sym_COLON] = ACTIONS(2382), - [anon_sym_QMARK] = ACTIONS(2382), - [anon_sym_STAR_EQ] = ACTIONS(2382), - [anon_sym_SLASH_EQ] = ACTIONS(2382), - [anon_sym_PERCENT_EQ] = ACTIONS(2382), - [anon_sym_PLUS_EQ] = ACTIONS(2382), - [anon_sym_DASH_EQ] = ACTIONS(2382), - [anon_sym_LT_LT_EQ] = ACTIONS(2382), - [anon_sym_GT_GT_EQ] = ACTIONS(2382), - [anon_sym_AMP_EQ] = ACTIONS(2382), - [anon_sym_CARET_EQ] = ACTIONS(2382), - [anon_sym_PIPE_EQ] = ACTIONS(2382), - [anon_sym_AMP] = ACTIONS(2384), - [anon_sym_PIPE_PIPE] = ACTIONS(2382), - [anon_sym_AMP_AMP] = ACTIONS(2382), - [anon_sym_PIPE] = ACTIONS(2384), - [anon_sym_CARET] = ACTIONS(2384), - [anon_sym_EQ_EQ] = ACTIONS(2382), - [anon_sym_BANG_EQ] = ACTIONS(2382), - [anon_sym_LT] = ACTIONS(2384), - [anon_sym_GT] = ACTIONS(2384), - [anon_sym_LT_EQ] = ACTIONS(2382), - [anon_sym_GT_EQ] = ACTIONS(2382), - [anon_sym_LT_LT] = ACTIONS(2384), - [anon_sym_GT_GT] = ACTIONS(2384), - [anon_sym_PLUS] = ACTIONS(2384), - [anon_sym_DASH] = ACTIONS(2384), - [anon_sym_SLASH] = ACTIONS(2384), - [anon_sym_PERCENT] = ACTIONS(2384), - [anon_sym_DASH_DASH] = ACTIONS(2382), - [anon_sym_PLUS_PLUS] = ACTIONS(2382), - [anon_sym_DOT] = ACTIONS(2382), - [anon_sym_DASH_GT] = ACTIONS(2382), - [anon_sym_DQUOTE] = ACTIONS(2386), - [sym_comment] = ACTIONS(37), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2692), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2694), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2694), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2694), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2694), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2694), + [anon_sym_extern] = ACTIONS(2692), + [anon_sym_RBRACE] = ACTIONS(2694), + [anon_sym_static] = ACTIONS(2692), + [anon_sym_auto] = ACTIONS(2692), + [anon_sym_register] = ACTIONS(2692), + [anon_sym_inline] = ACTIONS(2692), + [anon_sym_const] = ACTIONS(2692), + [anon_sym_restrict] = ACTIONS(2692), + [anon_sym_volatile] = ACTIONS(2692), + [anon_sym__Atomic] = ACTIONS(2692), + [anon_sym_unsigned] = ACTIONS(2692), + [anon_sym_long] = ACTIONS(2692), + [anon_sym_short] = ACTIONS(2692), + [sym_primitive_type] = ACTIONS(2692), + [anon_sym_enum] = ACTIONS(2692), + [anon_sym_struct] = ACTIONS(2692), + [anon_sym_union] = ACTIONS(2692), + [sym_identifier] = ACTIONS(2692), + [sym_comment] = ACTIONS(59), }, [865] = { - [sym_parenthesized_expression] = STATE(973), - [anon_sym_LPAREN2] = ACTIONS(916), - [sym_comment] = ACTIONS(37), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2696), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2698), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2698), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2698), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2698), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2698), + [anon_sym_extern] = ACTIONS(2696), + [anon_sym_RBRACE] = ACTIONS(2698), + [anon_sym_static] = ACTIONS(2696), + [anon_sym_auto] = ACTIONS(2696), + [anon_sym_register] = ACTIONS(2696), + [anon_sym_inline] = ACTIONS(2696), + [anon_sym_const] = ACTIONS(2696), + [anon_sym_restrict] = ACTIONS(2696), + [anon_sym_volatile] = ACTIONS(2696), + [anon_sym__Atomic] = ACTIONS(2696), + [anon_sym_unsigned] = ACTIONS(2696), + [anon_sym_long] = ACTIONS(2696), + [anon_sym_short] = ACTIONS(2696), + [sym_primitive_type] = ACTIONS(2696), + [anon_sym_enum] = ACTIONS(2696), + [anon_sym_struct] = ACTIONS(2696), + [anon_sym_union] = ACTIONS(2696), + [sym_identifier] = ACTIONS(2696), + [sym_comment] = ACTIONS(59), }, [866] = { - [sym_parenthesized_expression] = STATE(974), - [anon_sym_LPAREN2] = ACTIONS(916), - [sym_comment] = ACTIONS(37), + [sym__expression] = STATE(319), + [sym_conditional_expression] = STATE(319), + [sym_assignment_expression] = STATE(319), + [sym_pointer_expression] = STATE(319), + [sym_logical_expression] = STATE(319), + [sym_bitwise_expression] = STATE(319), + [sym_equality_expression] = STATE(319), + [sym_relational_expression] = STATE(319), + [sym_shift_expression] = STATE(319), + [sym_math_expression] = STATE(319), + [sym_cast_expression] = STATE(319), + [sym_sizeof_expression] = STATE(319), + [sym_subscript_expression] = STATE(319), + [sym_call_expression] = STATE(319), + [sym_field_expression] = STATE(319), + [sym_compound_literal_expression] = STATE(319), + [sym_parenthesized_expression] = STATE(319), + [sym_initializer_list] = STATE(320), + [sym_char_literal] = STATE(319), + [sym_concatenated_string] = STATE(319), + [sym_string_literal] = STATE(534), + [anon_sym_LBRACE] = ACTIONS(840), + [anon_sym_LPAREN2] = ACTIONS(1349), + [anon_sym_STAR] = ACTIONS(1351), + [anon_sym_AMP] = ACTIONS(1351), + [anon_sym_BANG] = ACTIONS(1353), + [anon_sym_TILDE] = ACTIONS(1355), + [anon_sym_PLUS] = ACTIONS(1357), + [anon_sym_DASH] = ACTIONS(1357), + [anon_sym_DASH_DASH] = ACTIONS(1359), + [anon_sym_PLUS_PLUS] = ACTIONS(1359), + [anon_sym_sizeof] = ACTIONS(1361), + [sym_number_literal] = ACTIONS(842), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(844), + [sym_false] = ACTIONS(844), + [sym_null] = ACTIONS(844), + [sym_identifier] = ACTIONS(844), + [sym_comment] = ACTIONS(59), }, [867] = { - [sym__expression] = STATE(975), - [sym_conditional_expression] = STATE(975), - [sym_assignment_expression] = STATE(975), - [sym_pointer_expression] = STATE(975), - [sym_logical_expression] = STATE(975), - [sym_bitwise_expression] = STATE(975), - [sym_equality_expression] = STATE(975), - [sym_relational_expression] = STATE(975), - [sym_shift_expression] = STATE(975), - [sym_math_expression] = STATE(975), - [sym_cast_expression] = STATE(975), - [sym_sizeof_expression] = STATE(975), - [sym_subscript_expression] = STATE(975), - [sym_call_expression] = STATE(975), - [sym_field_expression] = STATE(975), - [sym_compound_literal_expression] = STATE(975), - [sym_parenthesized_expression] = STATE(975), - [sym_char_literal] = STATE(975), - [sym_concatenated_string] = STATE(975), - [sym_string_literal] = STATE(386), - [anon_sym_LPAREN2] = ACTIONS(918), - [anon_sym_STAR] = ACTIONS(920), - [anon_sym_AMP] = ACTIONS(920), - [anon_sym_BANG] = ACTIONS(922), - [anon_sym_TILDE] = ACTIONS(924), - [anon_sym_PLUS] = ACTIONS(926), - [anon_sym_DASH] = ACTIONS(926), - [anon_sym_DASH_DASH] = ACTIONS(928), - [anon_sym_PLUS_PLUS] = ACTIONS(928), - [anon_sym_sizeof] = ACTIONS(930), - [sym_number_literal] = ACTIONS(2663), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(2665), - [sym_false] = ACTIONS(2665), - [sym_null] = ACTIONS(2665), - [sym_identifier] = ACTIONS(2665), - [sym_comment] = ACTIONS(37), + [anon_sym_RPAREN] = ACTIONS(2700), + [sym_comment] = ACTIONS(59), }, [868] = { - [anon_sym_COLON] = ACTIONS(2667), - [sym_comment] = ACTIONS(37), + [sym_argument_list] = STATE(98), + [anon_sym_SEMI] = ACTIONS(1046), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_LBRACK] = ACTIONS(188), + [anon_sym_EQ] = ACTIONS(1896), + [anon_sym_QMARK] = ACTIONS(1046), + [anon_sym_STAR_EQ] = ACTIONS(1900), + [anon_sym_SLASH_EQ] = ACTIONS(1900), + [anon_sym_PERCENT_EQ] = ACTIONS(1900), + [anon_sym_PLUS_EQ] = ACTIONS(1900), + [anon_sym_DASH_EQ] = ACTIONS(1900), + [anon_sym_LT_LT_EQ] = ACTIONS(1900), + [anon_sym_GT_GT_EQ] = ACTIONS(1900), + [anon_sym_AMP_EQ] = ACTIONS(1900), + [anon_sym_CARET_EQ] = ACTIONS(1900), + [anon_sym_PIPE_EQ] = ACTIONS(1900), + [anon_sym_AMP] = ACTIONS(1902), + [anon_sym_PIPE_PIPE] = ACTIONS(1904), + [anon_sym_AMP_AMP] = ACTIONS(1906), + [anon_sym_PIPE] = ACTIONS(1908), + [anon_sym_CARET] = ACTIONS(1910), + [anon_sym_EQ_EQ] = ACTIONS(1912), + [anon_sym_BANG_EQ] = ACTIONS(1912), + [anon_sym_LT] = ACTIONS(1914), + [anon_sym_GT] = ACTIONS(1914), + [anon_sym_LT_EQ] = ACTIONS(1916), + [anon_sym_GT_EQ] = ACTIONS(1916), + [anon_sym_LT_LT] = ACTIONS(1918), + [anon_sym_GT_GT] = ACTIONS(1918), + [anon_sym_PLUS] = ACTIONS(1920), + [anon_sym_DASH] = ACTIONS(1920), + [anon_sym_SLASH] = ACTIONS(1894), + [anon_sym_PERCENT] = ACTIONS(1894), + [anon_sym_DASH_DASH] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(216), + [anon_sym_DOT] = ACTIONS(218), + [anon_sym_DASH_GT] = ACTIONS(218), + [sym_comment] = ACTIONS(59), }, [869] = { - [sym_parenthesized_expression] = STATE(977), - [anon_sym_LPAREN2] = ACTIONS(916), - [sym_comment] = ACTIONS(37), + [sym_argument_list] = STATE(98), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(1054), + [anon_sym_LBRACK] = ACTIONS(188), + [anon_sym_EQ] = ACTIONS(1056), + [anon_sym_COLON] = ACTIONS(2702), + [anon_sym_QMARK] = ACTIONS(1060), + [anon_sym_STAR_EQ] = ACTIONS(1062), + [anon_sym_SLASH_EQ] = ACTIONS(1062), + [anon_sym_PERCENT_EQ] = ACTIONS(1062), + [anon_sym_PLUS_EQ] = ACTIONS(1062), + [anon_sym_DASH_EQ] = ACTIONS(1062), + [anon_sym_LT_LT_EQ] = ACTIONS(1062), + [anon_sym_GT_GT_EQ] = ACTIONS(1062), + [anon_sym_AMP_EQ] = ACTIONS(1062), + [anon_sym_CARET_EQ] = ACTIONS(1062), + [anon_sym_PIPE_EQ] = ACTIONS(1062), + [anon_sym_AMP] = ACTIONS(1064), + [anon_sym_PIPE_PIPE] = ACTIONS(1066), + [anon_sym_AMP_AMP] = ACTIONS(1068), + [anon_sym_PIPE] = ACTIONS(1070), + [anon_sym_CARET] = ACTIONS(1072), + [anon_sym_EQ_EQ] = ACTIONS(1074), + [anon_sym_BANG_EQ] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(1076), + [anon_sym_GT] = ACTIONS(1076), + [anon_sym_LT_EQ] = ACTIONS(1078), + [anon_sym_GT_EQ] = ACTIONS(1078), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_GT_GT] = ACTIONS(1080), + [anon_sym_PLUS] = ACTIONS(1082), + [anon_sym_DASH] = ACTIONS(1082), + [anon_sym_SLASH] = ACTIONS(1054), + [anon_sym_PERCENT] = ACTIONS(1054), + [anon_sym_DASH_DASH] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(216), + [anon_sym_DOT] = ACTIONS(218), + [anon_sym_DASH_GT] = ACTIONS(218), + [sym_comment] = ACTIONS(59), }, [870] = { - [anon_sym_LPAREN2] = ACTIONS(2669), - [sym_comment] = ACTIONS(37), + [sym_argument_list] = STATE(98), + [anon_sym_SEMI] = ACTIONS(1086), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_LBRACK] = ACTIONS(188), + [anon_sym_EQ] = ACTIONS(1084), + [anon_sym_QMARK] = ACTIONS(1086), + [anon_sym_STAR_EQ] = ACTIONS(1086), + [anon_sym_SLASH_EQ] = ACTIONS(1086), + [anon_sym_PERCENT_EQ] = ACTIONS(1086), + [anon_sym_PLUS_EQ] = ACTIONS(1086), + [anon_sym_DASH_EQ] = ACTIONS(1086), + [anon_sym_LT_LT_EQ] = ACTIONS(1086), + [anon_sym_GT_GT_EQ] = ACTIONS(1086), + [anon_sym_AMP_EQ] = ACTIONS(1086), + [anon_sym_CARET_EQ] = ACTIONS(1086), + [anon_sym_PIPE_EQ] = ACTIONS(1086), + [anon_sym_AMP] = ACTIONS(1084), + [anon_sym_PIPE_PIPE] = ACTIONS(1086), + [anon_sym_AMP_AMP] = ACTIONS(1086), + [anon_sym_PIPE] = ACTIONS(1084), + [anon_sym_CARET] = ACTIONS(1084), + [anon_sym_EQ_EQ] = ACTIONS(1912), + [anon_sym_BANG_EQ] = ACTIONS(1912), + [anon_sym_LT] = ACTIONS(1914), + [anon_sym_GT] = ACTIONS(1914), + [anon_sym_LT_EQ] = ACTIONS(1916), + [anon_sym_GT_EQ] = ACTIONS(1916), + [anon_sym_LT_LT] = ACTIONS(1918), + [anon_sym_GT_GT] = ACTIONS(1918), + [anon_sym_PLUS] = ACTIONS(1920), + [anon_sym_DASH] = ACTIONS(1920), + [anon_sym_SLASH] = ACTIONS(1894), + [anon_sym_PERCENT] = ACTIONS(1894), + [anon_sym_DASH_DASH] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(216), + [anon_sym_DOT] = ACTIONS(218), + [anon_sym_DASH_GT] = ACTIONS(218), + [sym_comment] = ACTIONS(59), }, [871] = { - [anon_sym_COMMA] = ACTIONS(990), - [anon_sym_SEMI] = ACTIONS(990), - [anon_sym_LPAREN2] = ACTIONS(990), - [anon_sym_STAR] = ACTIONS(1002), - [anon_sym_LBRACK] = ACTIONS(990), - [anon_sym_EQ] = ACTIONS(1002), - [anon_sym_COLON] = ACTIONS(2671), - [anon_sym_QMARK] = ACTIONS(990), - [anon_sym_STAR_EQ] = ACTIONS(990), - [anon_sym_SLASH_EQ] = ACTIONS(990), - [anon_sym_PERCENT_EQ] = ACTIONS(990), - [anon_sym_PLUS_EQ] = ACTIONS(990), - [anon_sym_DASH_EQ] = ACTIONS(990), - [anon_sym_LT_LT_EQ] = ACTIONS(990), - [anon_sym_GT_GT_EQ] = ACTIONS(990), - [anon_sym_AMP_EQ] = ACTIONS(990), - [anon_sym_CARET_EQ] = ACTIONS(990), - [anon_sym_PIPE_EQ] = ACTIONS(990), - [anon_sym_AMP] = ACTIONS(1002), - [anon_sym_PIPE_PIPE] = ACTIONS(990), - [anon_sym_AMP_AMP] = ACTIONS(990), - [anon_sym_PIPE] = ACTIONS(1002), - [anon_sym_CARET] = ACTIONS(1002), - [anon_sym_EQ_EQ] = ACTIONS(990), - [anon_sym_BANG_EQ] = ACTIONS(990), - [anon_sym_LT] = ACTIONS(1002), - [anon_sym_GT] = ACTIONS(1002), - [anon_sym_LT_EQ] = ACTIONS(990), - [anon_sym_GT_EQ] = ACTIONS(990), - [anon_sym_LT_LT] = ACTIONS(1002), - [anon_sym_GT_GT] = ACTIONS(1002), - [anon_sym_PLUS] = ACTIONS(1002), - [anon_sym_DASH] = ACTIONS(1002), - [anon_sym_SLASH] = ACTIONS(1002), - [anon_sym_PERCENT] = ACTIONS(1002), - [anon_sym_DASH_DASH] = ACTIONS(990), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_DOT] = ACTIONS(990), - [anon_sym_DASH_GT] = ACTIONS(990), - [sym_comment] = ACTIONS(37), + [sym_argument_list] = STATE(98), + [anon_sym_SEMI] = ACTIONS(1090), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_LBRACK] = ACTIONS(188), + [anon_sym_EQ] = ACTIONS(1088), + [anon_sym_QMARK] = ACTIONS(1090), + [anon_sym_STAR_EQ] = ACTIONS(1090), + [anon_sym_SLASH_EQ] = ACTIONS(1090), + [anon_sym_PERCENT_EQ] = ACTIONS(1090), + [anon_sym_PLUS_EQ] = ACTIONS(1090), + [anon_sym_DASH_EQ] = ACTIONS(1090), + [anon_sym_LT_LT_EQ] = ACTIONS(1090), + [anon_sym_GT_GT_EQ] = ACTIONS(1090), + [anon_sym_AMP_EQ] = ACTIONS(1090), + [anon_sym_CARET_EQ] = ACTIONS(1090), + [anon_sym_PIPE_EQ] = ACTIONS(1090), + [anon_sym_AMP] = ACTIONS(1902), + [anon_sym_PIPE_PIPE] = ACTIONS(1090), + [anon_sym_AMP_AMP] = ACTIONS(1906), + [anon_sym_PIPE] = ACTIONS(1908), + [anon_sym_CARET] = ACTIONS(1910), + [anon_sym_EQ_EQ] = ACTIONS(1912), + [anon_sym_BANG_EQ] = ACTIONS(1912), + [anon_sym_LT] = ACTIONS(1914), + [anon_sym_GT] = ACTIONS(1914), + [anon_sym_LT_EQ] = ACTIONS(1916), + [anon_sym_GT_EQ] = ACTIONS(1916), + [anon_sym_LT_LT] = ACTIONS(1918), + [anon_sym_GT_GT] = ACTIONS(1918), + [anon_sym_PLUS] = ACTIONS(1920), + [anon_sym_DASH] = ACTIONS(1920), + [anon_sym_SLASH] = ACTIONS(1894), + [anon_sym_PERCENT] = ACTIONS(1894), + [anon_sym_DASH_DASH] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(216), + [anon_sym_DOT] = ACTIONS(218), + [anon_sym_DASH_GT] = ACTIONS(218), + [sym_comment] = ACTIONS(59), }, [872] = { - [anon_sym_else] = ACTIONS(2673), - [anon_sym_while] = ACTIONS(2224), - [sym_comment] = ACTIONS(37), + [sym_argument_list] = STATE(98), + [anon_sym_SEMI] = ACTIONS(1090), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_LBRACK] = ACTIONS(188), + [anon_sym_EQ] = ACTIONS(1088), + [anon_sym_QMARK] = ACTIONS(1090), + [anon_sym_STAR_EQ] = ACTIONS(1090), + [anon_sym_SLASH_EQ] = ACTIONS(1090), + [anon_sym_PERCENT_EQ] = ACTIONS(1090), + [anon_sym_PLUS_EQ] = ACTIONS(1090), + [anon_sym_DASH_EQ] = ACTIONS(1090), + [anon_sym_LT_LT_EQ] = ACTIONS(1090), + [anon_sym_GT_GT_EQ] = ACTIONS(1090), + [anon_sym_AMP_EQ] = ACTIONS(1090), + [anon_sym_CARET_EQ] = ACTIONS(1090), + [anon_sym_PIPE_EQ] = ACTIONS(1090), + [anon_sym_AMP] = ACTIONS(1902), + [anon_sym_PIPE_PIPE] = ACTIONS(1090), + [anon_sym_AMP_AMP] = ACTIONS(1090), + [anon_sym_PIPE] = ACTIONS(1908), + [anon_sym_CARET] = ACTIONS(1910), + [anon_sym_EQ_EQ] = ACTIONS(1912), + [anon_sym_BANG_EQ] = ACTIONS(1912), + [anon_sym_LT] = ACTIONS(1914), + [anon_sym_GT] = ACTIONS(1914), + [anon_sym_LT_EQ] = ACTIONS(1916), + [anon_sym_GT_EQ] = ACTIONS(1916), + [anon_sym_LT_LT] = ACTIONS(1918), + [anon_sym_GT_GT] = ACTIONS(1918), + [anon_sym_PLUS] = ACTIONS(1920), + [anon_sym_DASH] = ACTIONS(1920), + [anon_sym_SLASH] = ACTIONS(1894), + [anon_sym_PERCENT] = ACTIONS(1894), + [anon_sym_DASH_DASH] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(216), + [anon_sym_DOT] = ACTIONS(218), + [anon_sym_DASH_GT] = ACTIONS(218), + [sym_comment] = ACTIONS(59), }, [873] = { - [sym_declaration] = STATE(853), - [sym_type_definition] = STATE(853), - [sym__declaration_specifiers] = STATE(650), - [sym_compound_statement] = STATE(853), - [sym_storage_class_specifier] = STATE(87), - [sym_type_qualifier] = STATE(87), - [sym__type_specifier] = STATE(86), - [sym_sized_type_specifier] = STATE(86), - [sym_enum_specifier] = STATE(86), - [sym_struct_specifier] = STATE(86), - [sym_union_specifier] = STATE(86), - [sym_labeled_statement] = STATE(853), - [sym_expression_statement] = STATE(853), - [sym_if_statement] = STATE(853), - [sym_switch_statement] = STATE(853), - [sym_case_statement] = STATE(853), - [sym_while_statement] = STATE(853), - [sym_do_statement] = STATE(853), - [sym_for_statement] = STATE(853), - [sym_return_statement] = STATE(853), - [sym_break_statement] = STATE(853), - [sym_continue_statement] = STATE(853), - [sym_goto_statement] = STATE(853), - [sym__expression] = STATE(228), - [sym_comma_expression] = STATE(229), - [sym_conditional_expression] = STATE(228), - [sym_assignment_expression] = STATE(228), - [sym_pointer_expression] = STATE(228), - [sym_logical_expression] = STATE(228), - [sym_bitwise_expression] = STATE(228), - [sym_equality_expression] = STATE(228), - [sym_relational_expression] = STATE(228), - [sym_shift_expression] = STATE(228), - [sym_math_expression] = STATE(228), - [sym_cast_expression] = STATE(228), - [sym_sizeof_expression] = STATE(228), - [sym_subscript_expression] = STATE(228), - [sym_call_expression] = STATE(228), - [sym_field_expression] = STATE(228), - [sym_compound_literal_expression] = STATE(228), - [sym_parenthesized_expression] = STATE(228), - [sym_char_literal] = STATE(228), - [sym_concatenated_string] = STATE(228), - [sym_string_literal] = STATE(230), - [sym_macro_type_specifier] = STATE(86), - [aux_sym__declaration_specifiers_repeat1] = STATE(87), - [aux_sym_sized_type_specifier_repeat1] = STATE(88), - [anon_sym_SEMI] = ACTIONS(503), - [anon_sym_typedef] = ACTIONS(17), - [anon_sym_extern] = ACTIONS(21), - [anon_sym_LBRACE] = ACTIONS(229), - [anon_sym_LPAREN2] = ACTIONS(507), - [anon_sym_STAR] = ACTIONS(509), - [anon_sym_static] = ACTIONS(21), - [anon_sym_auto] = ACTIONS(21), - [anon_sym_register] = ACTIONS(21), - [anon_sym_inline] = ACTIONS(21), - [anon_sym_const] = ACTIONS(23), - [anon_sym_restrict] = ACTIONS(23), - [anon_sym_volatile] = ACTIONS(23), - [anon_sym__Atomic] = ACTIONS(23), - [anon_sym_unsigned] = ACTIONS(167), - [anon_sym_long] = ACTIONS(167), - [anon_sym_short] = ACTIONS(167), - [sym_primitive_type] = ACTIONS(169), - [anon_sym_enum] = ACTIONS(29), - [anon_sym_struct] = ACTIONS(31), - [anon_sym_union] = ACTIONS(33), - [anon_sym_if] = ACTIONS(938), - [anon_sym_switch] = ACTIONS(940), - [anon_sym_case] = ACTIONS(942), - [anon_sym_default] = ACTIONS(944), - [anon_sym_while] = ACTIONS(946), - [anon_sym_do] = ACTIONS(948), - [anon_sym_for] = ACTIONS(950), - [anon_sym_return] = ACTIONS(525), - [anon_sym_break] = ACTIONS(527), - [anon_sym_continue] = ACTIONS(529), - [anon_sym_goto] = ACTIONS(531), - [anon_sym_AMP] = ACTIONS(509), - [anon_sym_BANG] = ACTIONS(533), - [anon_sym_TILDE] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DASH] = ACTIONS(537), - [anon_sym_DASH_DASH] = ACTIONS(539), - [anon_sym_PLUS_PLUS] = ACTIONS(539), - [anon_sym_sizeof] = ACTIONS(541), - [sym_number_literal] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(547), - [sym_false] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [sym_identifier] = ACTIONS(2302), - [sym_comment] = ACTIONS(37), + [sym_argument_list] = STATE(98), + [anon_sym_SEMI] = ACTIONS(1086), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_LBRACK] = ACTIONS(188), + [anon_sym_EQ] = ACTIONS(1084), + [anon_sym_QMARK] = ACTIONS(1086), + [anon_sym_STAR_EQ] = ACTIONS(1086), + [anon_sym_SLASH_EQ] = ACTIONS(1086), + [anon_sym_PERCENT_EQ] = ACTIONS(1086), + [anon_sym_PLUS_EQ] = ACTIONS(1086), + [anon_sym_DASH_EQ] = ACTIONS(1086), + [anon_sym_LT_LT_EQ] = ACTIONS(1086), + [anon_sym_GT_GT_EQ] = ACTIONS(1086), + [anon_sym_AMP_EQ] = ACTIONS(1086), + [anon_sym_CARET_EQ] = ACTIONS(1086), + [anon_sym_PIPE_EQ] = ACTIONS(1086), + [anon_sym_AMP] = ACTIONS(1902), + [anon_sym_PIPE_PIPE] = ACTIONS(1086), + [anon_sym_AMP_AMP] = ACTIONS(1086), + [anon_sym_PIPE] = ACTIONS(1084), + [anon_sym_CARET] = ACTIONS(1910), + [anon_sym_EQ_EQ] = ACTIONS(1912), + [anon_sym_BANG_EQ] = ACTIONS(1912), + [anon_sym_LT] = ACTIONS(1914), + [anon_sym_GT] = ACTIONS(1914), + [anon_sym_LT_EQ] = ACTIONS(1916), + [anon_sym_GT_EQ] = ACTIONS(1916), + [anon_sym_LT_LT] = ACTIONS(1918), + [anon_sym_GT_GT] = ACTIONS(1918), + [anon_sym_PLUS] = ACTIONS(1920), + [anon_sym_DASH] = ACTIONS(1920), + [anon_sym_SLASH] = ACTIONS(1894), + [anon_sym_PERCENT] = ACTIONS(1894), + [anon_sym_DASH_DASH] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(216), + [anon_sym_DOT] = ACTIONS(218), + [anon_sym_DASH_GT] = ACTIONS(218), + [sym_comment] = ACTIONS(59), }, [874] = { - [anon_sym_COMMA] = ACTIONS(990), - [anon_sym_SEMI] = ACTIONS(990), - [anon_sym_extern] = ACTIONS(79), - [anon_sym_LPAREN2] = ACTIONS(995), - [anon_sym_STAR] = ACTIONS(999), - [anon_sym_LBRACK] = ACTIONS(990), - [anon_sym_EQ] = ACTIONS(1002), - [anon_sym_static] = ACTIONS(79), - [anon_sym_auto] = ACTIONS(79), - [anon_sym_register] = ACTIONS(79), - [anon_sym_inline] = ACTIONS(79), - [anon_sym_const] = ACTIONS(79), - [anon_sym_restrict] = ACTIONS(79), - [anon_sym_volatile] = ACTIONS(79), - [anon_sym__Atomic] = ACTIONS(79), - [anon_sym_COLON] = ACTIONS(1537), - [anon_sym_QMARK] = ACTIONS(990), - [anon_sym_STAR_EQ] = ACTIONS(990), - [anon_sym_SLASH_EQ] = ACTIONS(990), - [anon_sym_PERCENT_EQ] = ACTIONS(990), - [anon_sym_PLUS_EQ] = ACTIONS(990), - [anon_sym_DASH_EQ] = ACTIONS(990), - [anon_sym_LT_LT_EQ] = ACTIONS(990), - [anon_sym_GT_GT_EQ] = ACTIONS(990), - [anon_sym_AMP_EQ] = ACTIONS(990), - [anon_sym_CARET_EQ] = ACTIONS(990), - [anon_sym_PIPE_EQ] = ACTIONS(990), - [anon_sym_AMP] = ACTIONS(1002), - [anon_sym_PIPE_PIPE] = ACTIONS(990), - [anon_sym_AMP_AMP] = ACTIONS(990), - [anon_sym_PIPE] = ACTIONS(1002), - [anon_sym_CARET] = ACTIONS(1002), - [anon_sym_EQ_EQ] = ACTIONS(990), - [anon_sym_BANG_EQ] = ACTIONS(990), - [anon_sym_LT] = ACTIONS(1002), - [anon_sym_GT] = ACTIONS(1002), - [anon_sym_LT_EQ] = ACTIONS(990), - [anon_sym_GT_EQ] = ACTIONS(990), - [anon_sym_LT_LT] = ACTIONS(1002), - [anon_sym_GT_GT] = ACTIONS(1002), - [anon_sym_PLUS] = ACTIONS(1002), - [anon_sym_DASH] = ACTIONS(1002), - [anon_sym_SLASH] = ACTIONS(1002), - [anon_sym_PERCENT] = ACTIONS(1002), - [anon_sym_DASH_DASH] = ACTIONS(990), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_DOT] = ACTIONS(990), - [anon_sym_DASH_GT] = ACTIONS(990), - [sym_identifier] = ACTIONS(79), - [sym_comment] = ACTIONS(37), + [sym_argument_list] = STATE(98), + [anon_sym_SEMI] = ACTIONS(1086), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_LBRACK] = ACTIONS(188), + [anon_sym_EQ] = ACTIONS(1084), + [anon_sym_QMARK] = ACTIONS(1086), + [anon_sym_STAR_EQ] = ACTIONS(1086), + [anon_sym_SLASH_EQ] = ACTIONS(1086), + [anon_sym_PERCENT_EQ] = ACTIONS(1086), + [anon_sym_PLUS_EQ] = ACTIONS(1086), + [anon_sym_DASH_EQ] = ACTIONS(1086), + [anon_sym_LT_LT_EQ] = ACTIONS(1086), + [anon_sym_GT_GT_EQ] = ACTIONS(1086), + [anon_sym_AMP_EQ] = ACTIONS(1086), + [anon_sym_CARET_EQ] = ACTIONS(1086), + [anon_sym_PIPE_EQ] = ACTIONS(1086), + [anon_sym_AMP] = ACTIONS(1902), + [anon_sym_PIPE_PIPE] = ACTIONS(1086), + [anon_sym_AMP_AMP] = ACTIONS(1086), + [anon_sym_PIPE] = ACTIONS(1084), + [anon_sym_CARET] = ACTIONS(1084), + [anon_sym_EQ_EQ] = ACTIONS(1912), + [anon_sym_BANG_EQ] = ACTIONS(1912), + [anon_sym_LT] = ACTIONS(1914), + [anon_sym_GT] = ACTIONS(1914), + [anon_sym_LT_EQ] = ACTIONS(1916), + [anon_sym_GT_EQ] = ACTIONS(1916), + [anon_sym_LT_LT] = ACTIONS(1918), + [anon_sym_GT_GT] = ACTIONS(1918), + [anon_sym_PLUS] = ACTIONS(1920), + [anon_sym_DASH] = ACTIONS(1920), + [anon_sym_SLASH] = ACTIONS(1894), + [anon_sym_PERCENT] = ACTIONS(1894), + [anon_sym_DASH_DASH] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(216), + [anon_sym_DOT] = ACTIONS(218), + [anon_sym_DASH_GT] = ACTIONS(218), + [sym_comment] = ACTIONS(59), }, [875] = { - [sym_parenthesized_expression] = STATE(878), - [anon_sym_LPAREN2] = ACTIONS(2675), - [sym_comment] = ACTIONS(37), + [sym_argument_list] = STATE(98), + [anon_sym_SEMI] = ACTIONS(1094), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_LBRACK] = ACTIONS(188), + [anon_sym_EQ] = ACTIONS(1092), + [anon_sym_QMARK] = ACTIONS(1094), + [anon_sym_STAR_EQ] = ACTIONS(1094), + [anon_sym_SLASH_EQ] = ACTIONS(1094), + [anon_sym_PERCENT_EQ] = ACTIONS(1094), + [anon_sym_PLUS_EQ] = ACTIONS(1094), + [anon_sym_DASH_EQ] = ACTIONS(1094), + [anon_sym_LT_LT_EQ] = ACTIONS(1094), + [anon_sym_GT_GT_EQ] = ACTIONS(1094), + [anon_sym_AMP_EQ] = ACTIONS(1094), + [anon_sym_CARET_EQ] = ACTIONS(1094), + [anon_sym_PIPE_EQ] = ACTIONS(1094), + [anon_sym_AMP] = ACTIONS(1092), + [anon_sym_PIPE_PIPE] = ACTIONS(1094), + [anon_sym_AMP_AMP] = ACTIONS(1094), + [anon_sym_PIPE] = ACTIONS(1092), + [anon_sym_CARET] = ACTIONS(1092), + [anon_sym_EQ_EQ] = ACTIONS(1094), + [anon_sym_BANG_EQ] = ACTIONS(1094), + [anon_sym_LT] = ACTIONS(1914), + [anon_sym_GT] = ACTIONS(1914), + [anon_sym_LT_EQ] = ACTIONS(1916), + [anon_sym_GT_EQ] = ACTIONS(1916), + [anon_sym_LT_LT] = ACTIONS(1918), + [anon_sym_GT_GT] = ACTIONS(1918), + [anon_sym_PLUS] = ACTIONS(1920), + [anon_sym_DASH] = ACTIONS(1920), + [anon_sym_SLASH] = ACTIONS(1894), + [anon_sym_PERCENT] = ACTIONS(1894), + [anon_sym_DASH_DASH] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(216), + [anon_sym_DOT] = ACTIONS(218), + [anon_sym_DASH_GT] = ACTIONS(218), + [sym_comment] = ACTIONS(59), }, [876] = { + [sym_argument_list] = STATE(98), + [anon_sym_SEMI] = ACTIONS(1098), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_LBRACK] = ACTIONS(188), + [anon_sym_EQ] = ACTIONS(1096), + [anon_sym_QMARK] = ACTIONS(1098), + [anon_sym_STAR_EQ] = ACTIONS(1098), + [anon_sym_SLASH_EQ] = ACTIONS(1098), + [anon_sym_PERCENT_EQ] = ACTIONS(1098), + [anon_sym_PLUS_EQ] = ACTIONS(1098), + [anon_sym_DASH_EQ] = ACTIONS(1098), + [anon_sym_LT_LT_EQ] = ACTIONS(1098), + [anon_sym_GT_GT_EQ] = ACTIONS(1098), + [anon_sym_AMP_EQ] = ACTIONS(1098), + [anon_sym_CARET_EQ] = ACTIONS(1098), + [anon_sym_PIPE_EQ] = ACTIONS(1098), + [anon_sym_AMP] = ACTIONS(1096), + [anon_sym_PIPE_PIPE] = ACTIONS(1098), + [anon_sym_AMP_AMP] = ACTIONS(1098), + [anon_sym_PIPE] = ACTIONS(1096), + [anon_sym_CARET] = ACTIONS(1096), + [anon_sym_EQ_EQ] = ACTIONS(1098), + [anon_sym_BANG_EQ] = ACTIONS(1098), + [anon_sym_LT] = ACTIONS(1096), + [anon_sym_GT] = ACTIONS(1096), + [anon_sym_LT_EQ] = ACTIONS(1098), + [anon_sym_GT_EQ] = ACTIONS(1098), + [anon_sym_LT_LT] = ACTIONS(1918), + [anon_sym_GT_GT] = ACTIONS(1918), + [anon_sym_PLUS] = ACTIONS(1920), + [anon_sym_DASH] = ACTIONS(1920), + [anon_sym_SLASH] = ACTIONS(1894), + [anon_sym_PERCENT] = ACTIONS(1894), + [anon_sym_DASH_DASH] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(216), + [anon_sym_DOT] = ACTIONS(218), + [anon_sym_DASH_GT] = ACTIONS(218), + [sym_comment] = ACTIONS(59), + }, + [877] = { + [sym_argument_list] = STATE(98), + [anon_sym_SEMI] = ACTIONS(1102), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_LBRACK] = ACTIONS(188), + [anon_sym_EQ] = ACTIONS(1100), + [anon_sym_QMARK] = ACTIONS(1102), + [anon_sym_STAR_EQ] = ACTIONS(1102), + [anon_sym_SLASH_EQ] = ACTIONS(1102), + [anon_sym_PERCENT_EQ] = ACTIONS(1102), + [anon_sym_PLUS_EQ] = ACTIONS(1102), + [anon_sym_DASH_EQ] = ACTIONS(1102), + [anon_sym_LT_LT_EQ] = ACTIONS(1102), + [anon_sym_GT_GT_EQ] = ACTIONS(1102), + [anon_sym_AMP_EQ] = ACTIONS(1102), + [anon_sym_CARET_EQ] = ACTIONS(1102), + [anon_sym_PIPE_EQ] = ACTIONS(1102), + [anon_sym_AMP] = ACTIONS(1100), + [anon_sym_PIPE_PIPE] = ACTIONS(1102), + [anon_sym_AMP_AMP] = ACTIONS(1102), + [anon_sym_PIPE] = ACTIONS(1100), + [anon_sym_CARET] = ACTIONS(1100), + [anon_sym_EQ_EQ] = ACTIONS(1102), + [anon_sym_BANG_EQ] = ACTIONS(1102), + [anon_sym_LT] = ACTIONS(1100), + [anon_sym_GT] = ACTIONS(1100), + [anon_sym_LT_EQ] = ACTIONS(1102), + [anon_sym_GT_EQ] = ACTIONS(1102), + [anon_sym_LT_LT] = ACTIONS(1100), + [anon_sym_GT_GT] = ACTIONS(1100), + [anon_sym_PLUS] = ACTIONS(1920), + [anon_sym_DASH] = ACTIONS(1920), + [anon_sym_SLASH] = ACTIONS(1894), + [anon_sym_PERCENT] = ACTIONS(1894), + [anon_sym_DASH_DASH] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(216), + [anon_sym_DOT] = ACTIONS(218), + [anon_sym_DASH_GT] = ACTIONS(218), + [sym_comment] = ACTIONS(59), + }, + [878] = { + [sym_argument_list] = STATE(98), + [anon_sym_SEMI] = ACTIONS(1006), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_LBRACK] = ACTIONS(188), + [anon_sym_EQ] = ACTIONS(1008), + [anon_sym_QMARK] = ACTIONS(1006), + [anon_sym_STAR_EQ] = ACTIONS(1006), + [anon_sym_SLASH_EQ] = ACTIONS(1006), + [anon_sym_PERCENT_EQ] = ACTIONS(1006), + [anon_sym_PLUS_EQ] = ACTIONS(1006), + [anon_sym_DASH_EQ] = ACTIONS(1006), + [anon_sym_LT_LT_EQ] = ACTIONS(1006), + [anon_sym_GT_GT_EQ] = ACTIONS(1006), + [anon_sym_AMP_EQ] = ACTIONS(1006), + [anon_sym_CARET_EQ] = ACTIONS(1006), + [anon_sym_PIPE_EQ] = ACTIONS(1006), + [anon_sym_AMP] = ACTIONS(1008), + [anon_sym_PIPE_PIPE] = ACTIONS(1006), + [anon_sym_AMP_AMP] = ACTIONS(1006), + [anon_sym_PIPE] = ACTIONS(1008), + [anon_sym_CARET] = ACTIONS(1008), + [anon_sym_EQ_EQ] = ACTIONS(1006), + [anon_sym_BANG_EQ] = ACTIONS(1006), + [anon_sym_LT] = ACTIONS(1008), + [anon_sym_GT] = ACTIONS(1008), + [anon_sym_LT_EQ] = ACTIONS(1006), + [anon_sym_GT_EQ] = ACTIONS(1006), + [anon_sym_LT_LT] = ACTIONS(1008), + [anon_sym_GT_GT] = ACTIONS(1008), + [anon_sym_PLUS] = ACTIONS(1008), + [anon_sym_DASH] = ACTIONS(1008), + [anon_sym_SLASH] = ACTIONS(1894), + [anon_sym_PERCENT] = ACTIONS(1894), + [anon_sym_DASH_DASH] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(216), + [anon_sym_DOT] = ACTIONS(218), + [anon_sym_DASH_GT] = ACTIONS(218), + [sym_comment] = ACTIONS(59), + }, + [879] = { + [sym_string_literal] = STATE(879), + [aux_sym_concatenated_string_repeat1] = STATE(879), + [anon_sym_SEMI] = ACTIONS(1108), + [anon_sym_LPAREN2] = ACTIONS(1108), + [anon_sym_STAR] = ACTIONS(1110), + [anon_sym_LBRACK] = ACTIONS(1108), + [anon_sym_EQ] = ACTIONS(1110), + [anon_sym_QMARK] = ACTIONS(1108), + [anon_sym_STAR_EQ] = ACTIONS(1108), + [anon_sym_SLASH_EQ] = ACTIONS(1108), + [anon_sym_PERCENT_EQ] = ACTIONS(1108), + [anon_sym_PLUS_EQ] = ACTIONS(1108), + [anon_sym_DASH_EQ] = ACTIONS(1108), + [anon_sym_LT_LT_EQ] = ACTIONS(1108), + [anon_sym_GT_GT_EQ] = ACTIONS(1108), + [anon_sym_AMP_EQ] = ACTIONS(1108), + [anon_sym_CARET_EQ] = ACTIONS(1108), + [anon_sym_PIPE_EQ] = ACTIONS(1108), + [anon_sym_AMP] = ACTIONS(1110), + [anon_sym_PIPE_PIPE] = ACTIONS(1108), + [anon_sym_AMP_AMP] = ACTIONS(1108), + [anon_sym_PIPE] = ACTIONS(1110), + [anon_sym_CARET] = ACTIONS(1110), + [anon_sym_EQ_EQ] = ACTIONS(1108), + [anon_sym_BANG_EQ] = ACTIONS(1108), + [anon_sym_LT] = ACTIONS(1110), + [anon_sym_GT] = ACTIONS(1110), + [anon_sym_LT_EQ] = ACTIONS(1108), + [anon_sym_GT_EQ] = ACTIONS(1108), + [anon_sym_LT_LT] = ACTIONS(1110), + [anon_sym_GT_GT] = ACTIONS(1110), + [anon_sym_PLUS] = ACTIONS(1110), + [anon_sym_DASH] = ACTIONS(1110), + [anon_sym_SLASH] = ACTIONS(1110), + [anon_sym_PERCENT] = ACTIONS(1110), + [anon_sym_DASH_DASH] = ACTIONS(1108), + [anon_sym_PLUS_PLUS] = ACTIONS(1108), + [anon_sym_DOT] = ACTIONS(1108), + [anon_sym_DASH_GT] = ACTIONS(1108), + [anon_sym_DQUOTE] = ACTIONS(1112), + [sym_comment] = ACTIONS(59), + }, + [880] = { + [anon_sym_SEMI] = ACTIONS(2704), + [anon_sym_COMMA] = ACTIONS(2704), + [anon_sym_RPAREN] = ACTIONS(2704), + [anon_sym_LPAREN2] = ACTIONS(2704), + [anon_sym_LBRACK] = ACTIONS(2704), + [anon_sym_COLON] = ACTIONS(2704), + [sym_comment] = ACTIONS(59), + }, + [881] = { + [sym_argument_list] = STATE(98), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(1016), + [anon_sym_LBRACK] = ACTIONS(188), + [anon_sym_RBRACK] = ACTIONS(2706), + [anon_sym_EQ] = ACTIONS(1020), + [anon_sym_QMARK] = ACTIONS(1022), + [anon_sym_STAR_EQ] = ACTIONS(1024), + [anon_sym_SLASH_EQ] = ACTIONS(1024), + [anon_sym_PERCENT_EQ] = ACTIONS(1024), + [anon_sym_PLUS_EQ] = ACTIONS(1024), + [anon_sym_DASH_EQ] = ACTIONS(1024), + [anon_sym_LT_LT_EQ] = ACTIONS(1024), + [anon_sym_GT_GT_EQ] = ACTIONS(1024), + [anon_sym_AMP_EQ] = ACTIONS(1024), + [anon_sym_CARET_EQ] = ACTIONS(1024), + [anon_sym_PIPE_EQ] = ACTIONS(1024), + [anon_sym_AMP] = ACTIONS(1026), + [anon_sym_PIPE_PIPE] = ACTIONS(1028), + [anon_sym_AMP_AMP] = ACTIONS(1030), + [anon_sym_PIPE] = ACTIONS(1032), + [anon_sym_CARET] = ACTIONS(1034), + [anon_sym_EQ_EQ] = ACTIONS(1036), + [anon_sym_BANG_EQ] = ACTIONS(1036), + [anon_sym_LT] = ACTIONS(1038), + [anon_sym_GT] = ACTIONS(1038), + [anon_sym_LT_EQ] = ACTIONS(1040), + [anon_sym_GT_EQ] = ACTIONS(1040), + [anon_sym_LT_LT] = ACTIONS(1042), + [anon_sym_GT_GT] = ACTIONS(1042), + [anon_sym_PLUS] = ACTIONS(1044), + [anon_sym_DASH] = ACTIONS(1044), + [anon_sym_SLASH] = ACTIONS(1016), + [anon_sym_PERCENT] = ACTIONS(1016), + [anon_sym_DASH_DASH] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(216), + [anon_sym_DOT] = ACTIONS(218), + [anon_sym_DASH_GT] = ACTIONS(218), + [sym_comment] = ACTIONS(59), + }, + [882] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2708), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2710), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2710), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2710), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2710), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2710), + [anon_sym_extern] = ACTIONS(2708), + [anon_sym_RBRACE] = ACTIONS(2710), + [anon_sym_static] = ACTIONS(2708), + [anon_sym_auto] = ACTIONS(2708), + [anon_sym_register] = ACTIONS(2708), + [anon_sym_inline] = ACTIONS(2708), + [anon_sym_const] = ACTIONS(2708), + [anon_sym_restrict] = ACTIONS(2708), + [anon_sym_volatile] = ACTIONS(2708), + [anon_sym__Atomic] = ACTIONS(2708), + [anon_sym_unsigned] = ACTIONS(2708), + [anon_sym_long] = ACTIONS(2708), + [anon_sym_short] = ACTIONS(2708), + [sym_primitive_type] = ACTIONS(2708), + [anon_sym_enum] = ACTIONS(2708), + [anon_sym_struct] = ACTIONS(2708), + [anon_sym_union] = ACTIONS(2708), + [sym_identifier] = ACTIONS(2708), + [sym_comment] = ACTIONS(59), + }, + [883] = { + [sym_argument_list] = STATE(98), + [anon_sym_SEMI] = ACTIONS(2712), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_LBRACK] = ACTIONS(188), + [anon_sym_EQ] = ACTIONS(1896), + [anon_sym_QMARK] = ACTIONS(1898), + [anon_sym_STAR_EQ] = ACTIONS(1900), + [anon_sym_SLASH_EQ] = ACTIONS(1900), + [anon_sym_PERCENT_EQ] = ACTIONS(1900), + [anon_sym_PLUS_EQ] = ACTIONS(1900), + [anon_sym_DASH_EQ] = ACTIONS(1900), + [anon_sym_LT_LT_EQ] = ACTIONS(1900), + [anon_sym_GT_GT_EQ] = ACTIONS(1900), + [anon_sym_AMP_EQ] = ACTIONS(1900), + [anon_sym_CARET_EQ] = ACTIONS(1900), + [anon_sym_PIPE_EQ] = ACTIONS(1900), + [anon_sym_AMP] = ACTIONS(1902), + [anon_sym_PIPE_PIPE] = ACTIONS(1904), + [anon_sym_AMP_AMP] = ACTIONS(1906), + [anon_sym_PIPE] = ACTIONS(1908), + [anon_sym_CARET] = ACTIONS(1910), + [anon_sym_EQ_EQ] = ACTIONS(1912), + [anon_sym_BANG_EQ] = ACTIONS(1912), + [anon_sym_LT] = ACTIONS(1914), + [anon_sym_GT] = ACTIONS(1914), + [anon_sym_LT_EQ] = ACTIONS(1916), + [anon_sym_GT_EQ] = ACTIONS(1916), + [anon_sym_LT_LT] = ACTIONS(1918), + [anon_sym_GT_GT] = ACTIONS(1918), + [anon_sym_PLUS] = ACTIONS(1920), + [anon_sym_DASH] = ACTIONS(1920), + [anon_sym_SLASH] = ACTIONS(1894), + [anon_sym_PERCENT] = ACTIONS(1894), + [anon_sym_DASH_DASH] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(216), + [anon_sym_DOT] = ACTIONS(218), + [anon_sym_DASH_GT] = ACTIONS(218), + [sym_comment] = ACTIONS(59), + }, + [884] = { + [sym_preproc_include] = STATE(975), + [sym_preproc_def] = STATE(975), + [sym_preproc_function_def] = STATE(975), + [sym_preproc_call] = STATE(975), + [sym_preproc_if_in_compound_statement] = STATE(975), + [sym_preproc_ifdef_in_compound_statement] = STATE(975), + [sym_preproc_else_in_compound_statement] = STATE(974), + [sym_preproc_elif_in_compound_statement] = STATE(974), + [sym_declaration] = STATE(975), + [sym_type_definition] = STATE(975), + [sym__declaration_specifiers] = STATE(755), + [sym_compound_statement] = STATE(975), + [sym_storage_class_specifier] = STATE(30), + [sym_type_qualifier] = STATE(30), + [sym__type_specifier] = STATE(25), + [sym_sized_type_specifier] = STATE(25), + [sym_enum_specifier] = STATE(25), + [sym_struct_specifier] = STATE(25), + [sym_union_specifier] = STATE(25), + [sym_labeled_statement] = STATE(975), + [sym_expression_statement] = STATE(975), + [sym_if_statement] = STATE(975), + [sym_switch_statement] = STATE(975), + [sym_case_statement] = STATE(975), + [sym_while_statement] = STATE(975), + [sym_do_statement] = STATE(975), + [sym_for_statement] = STATE(975), + [sym_return_statement] = STATE(975), + [sym_break_statement] = STATE(975), + [sym_continue_statement] = STATE(975), + [sym_goto_statement] = STATE(975), + [sym__expression] = STATE(756), + [sym_comma_expression] = STATE(757), + [sym_conditional_expression] = STATE(756), + [sym_assignment_expression] = STATE(756), + [sym_pointer_expression] = STATE(756), + [sym_logical_expression] = STATE(756), + [sym_bitwise_expression] = STATE(756), + [sym_equality_expression] = STATE(756), + [sym_relational_expression] = STATE(756), + [sym_shift_expression] = STATE(756), + [sym_math_expression] = STATE(756), + [sym_cast_expression] = STATE(756), + [sym_sizeof_expression] = STATE(756), + [sym_subscript_expression] = STATE(756), + [sym_call_expression] = STATE(756), + [sym_field_expression] = STATE(756), + [sym_compound_literal_expression] = STATE(756), + [sym_parenthesized_expression] = STATE(756), + [sym_char_literal] = STATE(756), + [sym_concatenated_string] = STATE(756), + [sym_string_literal] = STATE(374), + [sym__empty_declaration] = STATE(975), + [sym_macro_type_specifier] = STATE(25), + [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(975), + [aux_sym__declaration_specifiers_repeat1] = STATE(30), + [aux_sym_sized_type_specifier_repeat1] = STATE(31), + [anon_sym_SEMI] = ACTIONS(1940), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(251), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(253), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1942), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2714), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1946), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1946), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1948), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1950), + [sym_preproc_directive] = ACTIONS(265), + [anon_sym_typedef] = ACTIONS(267), + [anon_sym_extern] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_LPAREN2] = ACTIONS(936), + [anon_sym_STAR] = ACTIONS(938), + [anon_sym_static] = ACTIONS(25), + [anon_sym_auto] = ACTIONS(25), + [anon_sym_register] = ACTIONS(25), + [anon_sym_inline] = ACTIONS(25), + [anon_sym_const] = ACTIONS(27), + [anon_sym_restrict] = ACTIONS(27), + [anon_sym_volatile] = ACTIONS(27), + [anon_sym__Atomic] = ACTIONS(27), + [anon_sym_unsigned] = ACTIONS(29), + [anon_sym_long] = ACTIONS(29), + [anon_sym_short] = ACTIONS(29), + [sym_primitive_type] = ACTIONS(31), + [anon_sym_enum] = ACTIONS(33), + [anon_sym_struct] = ACTIONS(35), + [anon_sym_union] = ACTIONS(37), + [anon_sym_if] = ACTIONS(1952), + [anon_sym_switch] = ACTIONS(1954), + [anon_sym_case] = ACTIONS(1956), + [anon_sym_default] = ACTIONS(1958), + [anon_sym_while] = ACTIONS(1960), + [anon_sym_do] = ACTIONS(1962), + [anon_sym_for] = ACTIONS(1964), + [anon_sym_return] = ACTIONS(1966), + [anon_sym_break] = ACTIONS(1968), + [anon_sym_continue] = ACTIONS(1970), + [anon_sym_goto] = ACTIONS(1972), + [anon_sym_AMP] = ACTIONS(938), + [anon_sym_BANG] = ACTIONS(962), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_DASH_DASH] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(968), + [anon_sym_sizeof] = ACTIONS(970), + [sym_number_literal] = ACTIONS(1974), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(1976), + [sym_false] = ACTIONS(1976), + [sym_null] = ACTIONS(1976), + [sym_identifier] = ACTIONS(1978), + [sym_comment] = ACTIONS(59), + }, + [885] = { + [sym_preproc_include] = STATE(978), + [sym_preproc_def] = STATE(978), + [sym_preproc_function_def] = STATE(978), + [sym_preproc_call] = STATE(978), + [sym_preproc_if_in_compound_statement] = STATE(978), + [sym_preproc_ifdef_in_compound_statement] = STATE(978), + [sym_preproc_else_in_compound_statement] = STATE(977), + [sym_preproc_elif_in_compound_statement] = STATE(977), + [sym_declaration] = STATE(978), + [sym_type_definition] = STATE(978), + [sym__declaration_specifiers] = STATE(755), + [sym_compound_statement] = STATE(978), + [sym_storage_class_specifier] = STATE(30), + [sym_type_qualifier] = STATE(30), + [sym__type_specifier] = STATE(25), + [sym_sized_type_specifier] = STATE(25), + [sym_enum_specifier] = STATE(25), + [sym_struct_specifier] = STATE(25), + [sym_union_specifier] = STATE(25), + [sym_labeled_statement] = STATE(978), + [sym_expression_statement] = STATE(978), + [sym_if_statement] = STATE(978), + [sym_switch_statement] = STATE(978), + [sym_case_statement] = STATE(978), + [sym_while_statement] = STATE(978), + [sym_do_statement] = STATE(978), + [sym_for_statement] = STATE(978), + [sym_return_statement] = STATE(978), + [sym_break_statement] = STATE(978), + [sym_continue_statement] = STATE(978), + [sym_goto_statement] = STATE(978), + [sym__expression] = STATE(756), + [sym_comma_expression] = STATE(757), + [sym_conditional_expression] = STATE(756), + [sym_assignment_expression] = STATE(756), + [sym_pointer_expression] = STATE(756), + [sym_logical_expression] = STATE(756), + [sym_bitwise_expression] = STATE(756), + [sym_equality_expression] = STATE(756), + [sym_relational_expression] = STATE(756), + [sym_shift_expression] = STATE(756), + [sym_math_expression] = STATE(756), + [sym_cast_expression] = STATE(756), + [sym_sizeof_expression] = STATE(756), + [sym_subscript_expression] = STATE(756), + [sym_call_expression] = STATE(756), + [sym_field_expression] = STATE(756), + [sym_compound_literal_expression] = STATE(756), + [sym_parenthesized_expression] = STATE(756), + [sym_char_literal] = STATE(756), + [sym_concatenated_string] = STATE(756), + [sym_string_literal] = STATE(374), + [sym__empty_declaration] = STATE(978), + [sym_macro_type_specifier] = STATE(25), + [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(978), + [aux_sym__declaration_specifiers_repeat1] = STATE(30), + [aux_sym_sized_type_specifier_repeat1] = STATE(31), + [anon_sym_SEMI] = ACTIONS(1940), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(251), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(253), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1942), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2716), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1946), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1946), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1948), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1950), + [sym_preproc_directive] = ACTIONS(265), + [anon_sym_typedef] = ACTIONS(267), + [anon_sym_extern] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_LPAREN2] = ACTIONS(936), + [anon_sym_STAR] = ACTIONS(938), + [anon_sym_static] = ACTIONS(25), + [anon_sym_auto] = ACTIONS(25), + [anon_sym_register] = ACTIONS(25), + [anon_sym_inline] = ACTIONS(25), + [anon_sym_const] = ACTIONS(27), + [anon_sym_restrict] = ACTIONS(27), + [anon_sym_volatile] = ACTIONS(27), + [anon_sym__Atomic] = ACTIONS(27), + [anon_sym_unsigned] = ACTIONS(29), + [anon_sym_long] = ACTIONS(29), + [anon_sym_short] = ACTIONS(29), + [sym_primitive_type] = ACTIONS(31), + [anon_sym_enum] = ACTIONS(33), + [anon_sym_struct] = ACTIONS(35), + [anon_sym_union] = ACTIONS(37), + [anon_sym_if] = ACTIONS(1952), + [anon_sym_switch] = ACTIONS(1954), + [anon_sym_case] = ACTIONS(1956), + [anon_sym_default] = ACTIONS(1958), + [anon_sym_while] = ACTIONS(1960), + [anon_sym_do] = ACTIONS(1962), + [anon_sym_for] = ACTIONS(1964), + [anon_sym_return] = ACTIONS(1966), + [anon_sym_break] = ACTIONS(1968), + [anon_sym_continue] = ACTIONS(1970), + [anon_sym_goto] = ACTIONS(1972), + [anon_sym_AMP] = ACTIONS(938), + [anon_sym_BANG] = ACTIONS(962), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_DASH_DASH] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(968), + [anon_sym_sizeof] = ACTIONS(970), + [sym_number_literal] = ACTIONS(1974), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(1976), + [sym_false] = ACTIONS(1976), + [sym_null] = ACTIONS(1976), + [sym_identifier] = ACTIONS(1978), + [sym_comment] = ACTIONS(59), + }, + [886] = { + [anon_sym_SEMI] = ACTIONS(1436), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1438), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1438), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1438), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1438), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1438), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1438), + [sym_preproc_directive] = ACTIONS(1438), + [anon_sym_typedef] = ACTIONS(1438), + [anon_sym_extern] = ACTIONS(1438), + [anon_sym_LBRACE] = ACTIONS(1436), + [anon_sym_LPAREN2] = ACTIONS(1436), + [anon_sym_STAR] = ACTIONS(1436), + [anon_sym_static] = ACTIONS(1438), + [anon_sym_auto] = ACTIONS(1438), + [anon_sym_register] = ACTIONS(1438), + [anon_sym_inline] = ACTIONS(1438), + [anon_sym_const] = ACTIONS(1438), + [anon_sym_restrict] = ACTIONS(1438), + [anon_sym_volatile] = ACTIONS(1438), + [anon_sym__Atomic] = ACTIONS(1438), + [anon_sym_unsigned] = ACTIONS(1438), + [anon_sym_long] = ACTIONS(1438), + [anon_sym_short] = ACTIONS(1438), + [sym_primitive_type] = ACTIONS(1438), + [anon_sym_enum] = ACTIONS(1438), + [anon_sym_struct] = ACTIONS(1438), + [anon_sym_union] = ACTIONS(1438), + [anon_sym_if] = ACTIONS(1438), + [anon_sym_else] = ACTIONS(1438), + [anon_sym_switch] = ACTIONS(1438), + [anon_sym_case] = ACTIONS(1438), + [anon_sym_default] = ACTIONS(1438), + [anon_sym_while] = ACTIONS(1438), + [anon_sym_do] = ACTIONS(1438), + [anon_sym_for] = ACTIONS(1438), + [anon_sym_return] = ACTIONS(1438), + [anon_sym_break] = ACTIONS(1438), + [anon_sym_continue] = ACTIONS(1438), + [anon_sym_goto] = ACTIONS(1438), + [anon_sym_AMP] = ACTIONS(1436), + [anon_sym_BANG] = ACTIONS(1436), + [anon_sym_TILDE] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1438), + [anon_sym_DASH] = ACTIONS(1438), + [anon_sym_DASH_DASH] = ACTIONS(1436), + [anon_sym_PLUS_PLUS] = ACTIONS(1436), + [anon_sym_sizeof] = ACTIONS(1438), + [sym_number_literal] = ACTIONS(1436), + [anon_sym_SQUOTE] = ACTIONS(1436), + [anon_sym_DQUOTE] = ACTIONS(1436), + [sym_true] = ACTIONS(1438), + [sym_false] = ACTIONS(1438), + [sym_null] = ACTIONS(1438), + [sym_identifier] = ACTIONS(1438), + [sym_comment] = ACTIONS(59), + }, + [887] = { + [sym_preproc_arg] = ACTIONS(2718), + [sym_comment] = ACTIONS(69), + }, + [888] = { + [sym_identifier] = ACTIONS(2720), + [sym_comment] = ACTIONS(59), + }, + [889] = { + [sym_parenthesized_expression] = STATE(981), + [anon_sym_LPAREN2] = ACTIONS(1448), + [sym_comment] = ACTIONS(59), + }, + [890] = { + [sym_parenthesized_expression] = STATE(982), + [anon_sym_LPAREN2] = ACTIONS(1448), + [sym_comment] = ACTIONS(59), + }, + [891] = { [sym__expression] = STATE(983), [sym_conditional_expression] = STATE(983), [sym_assignment_expression] = STATE(983), @@ -34448,323 +36226,107 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_parenthesized_expression] = STATE(983), [sym_char_literal] = STATE(983), [sym_concatenated_string] = STATE(983), - [sym_string_literal] = STATE(342), - [anon_sym_SEMI] = ACTIONS(2677), - [anon_sym_LPAREN2] = ACTIONS(780), - [anon_sym_STAR] = ACTIONS(782), - [anon_sym_AMP] = ACTIONS(782), - [anon_sym_BANG] = ACTIONS(784), - [anon_sym_TILDE] = ACTIONS(786), - [anon_sym_PLUS] = ACTIONS(788), - [anon_sym_DASH] = ACTIONS(788), - [anon_sym_DASH_DASH] = ACTIONS(790), - [anon_sym_PLUS_PLUS] = ACTIONS(790), - [anon_sym_sizeof] = ACTIONS(792), - [sym_number_literal] = ACTIONS(2679), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(2681), - [sym_false] = ACTIONS(2681), - [sym_null] = ACTIONS(2681), - [sym_identifier] = ACTIONS(2681), - [sym_comment] = ACTIONS(37), + [sym_string_literal] = STATE(223), + [anon_sym_LPAREN2] = ACTIONS(483), + [anon_sym_STAR] = ACTIONS(485), + [anon_sym_AMP] = ACTIONS(485), + [anon_sym_BANG] = ACTIONS(487), + [anon_sym_TILDE] = ACTIONS(489), + [anon_sym_PLUS] = ACTIONS(491), + [anon_sym_DASH] = ACTIONS(491), + [anon_sym_DASH_DASH] = ACTIONS(493), + [anon_sym_PLUS_PLUS] = ACTIONS(493), + [anon_sym_sizeof] = ACTIONS(495), + [sym_number_literal] = ACTIONS(2722), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(2724), + [sym_false] = ACTIONS(2724), + [sym_null] = ACTIONS(2724), + [sym_identifier] = ACTIONS(2724), + [sym_comment] = ACTIONS(59), }, - [877] = { - [sym_argument_list] = STATE(430), - [anon_sym_SEMI] = ACTIONS(2683), - [anon_sym_LPAREN2] = ACTIONS(1012), - [anon_sym_STAR] = ACTIONS(1319), - [anon_sym_LBRACK] = ACTIONS(1016), - [anon_sym_EQ] = ACTIONS(1321), - [anon_sym_QMARK] = ACTIONS(1323), - [anon_sym_STAR_EQ] = ACTIONS(1325), - [anon_sym_SLASH_EQ] = ACTIONS(1325), - [anon_sym_PERCENT_EQ] = ACTIONS(1325), - [anon_sym_PLUS_EQ] = ACTIONS(1325), - [anon_sym_DASH_EQ] = ACTIONS(1325), - [anon_sym_LT_LT_EQ] = ACTIONS(1325), - [anon_sym_GT_GT_EQ] = ACTIONS(1325), - [anon_sym_AMP_EQ] = ACTIONS(1325), - [anon_sym_CARET_EQ] = ACTIONS(1325), - [anon_sym_PIPE_EQ] = ACTIONS(1325), - [anon_sym_AMP] = ACTIONS(1327), - [anon_sym_PIPE_PIPE] = ACTIONS(1329), - [anon_sym_AMP_AMP] = ACTIONS(1331), - [anon_sym_PIPE] = ACTIONS(1333), - [anon_sym_CARET] = ACTIONS(1335), - [anon_sym_EQ_EQ] = ACTIONS(1337), - [anon_sym_BANG_EQ] = ACTIONS(1337), - [anon_sym_LT] = ACTIONS(1339), - [anon_sym_GT] = ACTIONS(1339), - [anon_sym_LT_EQ] = ACTIONS(1341), - [anon_sym_GT_EQ] = ACTIONS(1341), - [anon_sym_LT_LT] = ACTIONS(1343), - [anon_sym_GT_GT] = ACTIONS(1343), - [anon_sym_PLUS] = ACTIONS(1345), - [anon_sym_DASH] = ACTIONS(1345), - [anon_sym_SLASH] = ACTIONS(1319), - [anon_sym_PERCENT] = ACTIONS(1319), - [anon_sym_DASH_DASH] = ACTIONS(1044), - [anon_sym_PLUS_PLUS] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1046), - [anon_sym_DASH_GT] = ACTIONS(1046), - [sym_comment] = ACTIONS(37), + [892] = { + [anon_sym_COLON] = ACTIONS(2726), + [sym_comment] = ACTIONS(59), }, - [878] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2685), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2685), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2685), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2685), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2685), - [sym_preproc_directive] = ACTIONS(2685), - [anon_sym_SEMI] = ACTIONS(2687), - [anon_sym_typedef] = ACTIONS(2685), - [anon_sym_extern] = ACTIONS(2685), - [anon_sym_LBRACE] = ACTIONS(2687), - [anon_sym_RBRACE] = ACTIONS(2687), - [anon_sym_LPAREN2] = ACTIONS(2687), - [anon_sym_STAR] = ACTIONS(2687), - [anon_sym_static] = ACTIONS(2685), - [anon_sym_auto] = ACTIONS(2685), - [anon_sym_register] = ACTIONS(2685), - [anon_sym_inline] = ACTIONS(2685), - [anon_sym_const] = ACTIONS(2685), - [anon_sym_restrict] = ACTIONS(2685), - [anon_sym_volatile] = ACTIONS(2685), - [anon_sym__Atomic] = ACTIONS(2685), - [anon_sym_unsigned] = ACTIONS(2685), - [anon_sym_long] = ACTIONS(2685), - [anon_sym_short] = ACTIONS(2685), - [sym_primitive_type] = ACTIONS(2685), - [anon_sym_enum] = ACTIONS(2685), - [anon_sym_struct] = ACTIONS(2685), - [anon_sym_union] = ACTIONS(2685), - [anon_sym_if] = ACTIONS(2685), - [anon_sym_else] = ACTIONS(2685), - [anon_sym_switch] = ACTIONS(2685), - [anon_sym_case] = ACTIONS(2685), - [anon_sym_default] = ACTIONS(2685), - [anon_sym_while] = ACTIONS(2685), - [anon_sym_do] = ACTIONS(2685), - [anon_sym_for] = ACTIONS(2685), - [anon_sym_return] = ACTIONS(2685), - [anon_sym_break] = ACTIONS(2685), - [anon_sym_continue] = ACTIONS(2685), - [anon_sym_goto] = ACTIONS(2685), - [anon_sym_AMP] = ACTIONS(2687), - [anon_sym_BANG] = ACTIONS(2687), - [anon_sym_TILDE] = ACTIONS(2687), - [anon_sym_PLUS] = ACTIONS(2685), - [anon_sym_DASH] = ACTIONS(2685), - [anon_sym_DASH_DASH] = ACTIONS(2687), - [anon_sym_PLUS_PLUS] = ACTIONS(2687), - [anon_sym_sizeof] = ACTIONS(2685), - [sym_number_literal] = ACTIONS(2687), - [anon_sym_SQUOTE] = ACTIONS(2687), - [anon_sym_DQUOTE] = ACTIONS(2687), - [sym_true] = ACTIONS(2685), - [sym_false] = ACTIONS(2685), - [sym_null] = ACTIONS(2685), - [sym_identifier] = ACTIONS(2685), - [sym_comment] = ACTIONS(37), + [893] = { + [sym_parenthesized_expression] = STATE(985), + [anon_sym_LPAREN2] = ACTIONS(1448), + [sym_comment] = ACTIONS(59), }, - [879] = { - [sym__expression] = STATE(986), - [sym_conditional_expression] = STATE(986), - [sym_assignment_expression] = STATE(986), - [sym_pointer_expression] = STATE(986), - [sym_logical_expression] = STATE(986), - [sym_bitwise_expression] = STATE(986), - [sym_equality_expression] = STATE(986), - [sym_relational_expression] = STATE(986), - [sym_shift_expression] = STATE(986), - [sym_math_expression] = STATE(986), - [sym_cast_expression] = STATE(986), - [sym_sizeof_expression] = STATE(986), - [sym_subscript_expression] = STATE(986), - [sym_call_expression] = STATE(986), - [sym_field_expression] = STATE(986), - [sym_compound_literal_expression] = STATE(986), - [sym_parenthesized_expression] = STATE(986), - [sym_char_literal] = STATE(986), - [sym_concatenated_string] = STATE(986), + [894] = { + [sym_compound_statement] = STATE(986), + [sym_labeled_statement] = STATE(986), + [sym_expression_statement] = STATE(986), + [sym_if_statement] = STATE(986), + [sym_switch_statement] = STATE(986), + [sym_case_statement] = STATE(986), + [sym_while_statement] = STATE(986), + [sym_do_statement] = STATE(986), + [sym_for_statement] = STATE(986), + [sym_return_statement] = STATE(986), + [sym_break_statement] = STATE(986), + [sym_continue_statement] = STATE(986), + [sym_goto_statement] = STATE(986), + [sym__expression] = STATE(372), + [sym_comma_expression] = STATE(373), + [sym_conditional_expression] = STATE(372), + [sym_assignment_expression] = STATE(372), + [sym_pointer_expression] = STATE(372), + [sym_logical_expression] = STATE(372), + [sym_bitwise_expression] = STATE(372), + [sym_equality_expression] = STATE(372), + [sym_relational_expression] = STATE(372), + [sym_shift_expression] = STATE(372), + [sym_math_expression] = STATE(372), + [sym_cast_expression] = STATE(372), + [sym_sizeof_expression] = STATE(372), + [sym_subscript_expression] = STATE(372), + [sym_call_expression] = STATE(372), + [sym_field_expression] = STATE(372), + [sym_compound_literal_expression] = STATE(372), + [sym_parenthesized_expression] = STATE(372), + [sym_char_literal] = STATE(372), + [sym_concatenated_string] = STATE(372), [sym_string_literal] = STATE(374), - [anon_sym_RPAREN] = ACTIONS(2689), - [anon_sym_LPAREN2] = ACTIONS(892), - [anon_sym_STAR] = ACTIONS(894), - [anon_sym_AMP] = ACTIONS(894), - [anon_sym_BANG] = ACTIONS(896), - [anon_sym_TILDE] = ACTIONS(898), - [anon_sym_PLUS] = ACTIONS(900), - [anon_sym_DASH] = ACTIONS(900), - [anon_sym_DASH_DASH] = ACTIONS(902), - [anon_sym_PLUS_PLUS] = ACTIONS(902), - [anon_sym_sizeof] = ACTIONS(904), - [sym_number_literal] = ACTIONS(2691), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(2693), - [sym_false] = ACTIONS(2693), - [sym_null] = ACTIONS(2693), - [sym_identifier] = ACTIONS(2693), - [sym_comment] = ACTIONS(37), - }, - [880] = { - [sym_argument_list] = STATE(430), - [anon_sym_SEMI] = ACTIONS(2695), - [anon_sym_LPAREN2] = ACTIONS(1012), - [anon_sym_STAR] = ACTIONS(1319), - [anon_sym_LBRACK] = ACTIONS(1016), - [anon_sym_EQ] = ACTIONS(1321), - [anon_sym_QMARK] = ACTIONS(1323), - [anon_sym_STAR_EQ] = ACTIONS(1325), - [anon_sym_SLASH_EQ] = ACTIONS(1325), - [anon_sym_PERCENT_EQ] = ACTIONS(1325), - [anon_sym_PLUS_EQ] = ACTIONS(1325), - [anon_sym_DASH_EQ] = ACTIONS(1325), - [anon_sym_LT_LT_EQ] = ACTIONS(1325), - [anon_sym_GT_GT_EQ] = ACTIONS(1325), - [anon_sym_AMP_EQ] = ACTIONS(1325), - [anon_sym_CARET_EQ] = ACTIONS(1325), - [anon_sym_PIPE_EQ] = ACTIONS(1325), - [anon_sym_AMP] = ACTIONS(1327), - [anon_sym_PIPE_PIPE] = ACTIONS(1329), - [anon_sym_AMP_AMP] = ACTIONS(1331), - [anon_sym_PIPE] = ACTIONS(1333), - [anon_sym_CARET] = ACTIONS(1335), - [anon_sym_EQ_EQ] = ACTIONS(1337), - [anon_sym_BANG_EQ] = ACTIONS(1337), - [anon_sym_LT] = ACTIONS(1339), - [anon_sym_GT] = ACTIONS(1339), - [anon_sym_LT_EQ] = ACTIONS(1341), - [anon_sym_GT_EQ] = ACTIONS(1341), - [anon_sym_LT_LT] = ACTIONS(1343), - [anon_sym_GT_GT] = ACTIONS(1343), - [anon_sym_PLUS] = ACTIONS(1345), - [anon_sym_DASH] = ACTIONS(1345), - [anon_sym_SLASH] = ACTIONS(1319), - [anon_sym_PERCENT] = ACTIONS(1319), - [anon_sym_DASH_DASH] = ACTIONS(1044), - [anon_sym_PLUS_PLUS] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1046), - [anon_sym_DASH_GT] = ACTIONS(1046), - [sym_comment] = ACTIONS(37), - }, - [881] = { - [sym__expression] = STATE(988), - [sym_conditional_expression] = STATE(988), - [sym_assignment_expression] = STATE(988), - [sym_pointer_expression] = STATE(988), - [sym_logical_expression] = STATE(988), - [sym_bitwise_expression] = STATE(988), - [sym_equality_expression] = STATE(988), - [sym_relational_expression] = STATE(988), - [sym_shift_expression] = STATE(988), - [sym_math_expression] = STATE(988), - [sym_cast_expression] = STATE(988), - [sym_sizeof_expression] = STATE(988), - [sym_subscript_expression] = STATE(988), - [sym_call_expression] = STATE(988), - [sym_field_expression] = STATE(988), - [sym_compound_literal_expression] = STATE(988), - [sym_parenthesized_expression] = STATE(988), - [sym_char_literal] = STATE(988), - [sym_concatenated_string] = STATE(988), - [sym_string_literal] = STATE(342), - [anon_sym_SEMI] = ACTIONS(2695), - [anon_sym_LPAREN2] = ACTIONS(780), - [anon_sym_STAR] = ACTIONS(782), - [anon_sym_AMP] = ACTIONS(782), - [anon_sym_BANG] = ACTIONS(784), - [anon_sym_TILDE] = ACTIONS(786), - [anon_sym_PLUS] = ACTIONS(788), - [anon_sym_DASH] = ACTIONS(788), - [anon_sym_DASH_DASH] = ACTIONS(790), - [anon_sym_PLUS_PLUS] = ACTIONS(790), - [anon_sym_sizeof] = ACTIONS(792), - [sym_number_literal] = ACTIONS(2697), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(2699), - [sym_false] = ACTIONS(2699), - [sym_null] = ACTIONS(2699), - [sym_identifier] = ACTIONS(2699), - [sym_comment] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(928), + [anon_sym_LBRACE] = ACTIONS(439), + [anon_sym_LPAREN2] = ACTIONS(936), + [anon_sym_STAR] = ACTIONS(938), + [anon_sym_if] = ACTIONS(1456), + [anon_sym_switch] = ACTIONS(1458), + [anon_sym_case] = ACTIONS(1460), + [anon_sym_default] = ACTIONS(1462), + [anon_sym_while] = ACTIONS(1464), + [anon_sym_do] = ACTIONS(1466), + [anon_sym_for] = ACTIONS(1468), + [anon_sym_return] = ACTIONS(954), + [anon_sym_break] = ACTIONS(956), + [anon_sym_continue] = ACTIONS(958), + [anon_sym_goto] = ACTIONS(960), + [anon_sym_AMP] = ACTIONS(938), + [anon_sym_BANG] = ACTIONS(962), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_DASH_DASH] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(968), + [anon_sym_sizeof] = ACTIONS(970), + [sym_number_literal] = ACTIONS(972), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(974), + [sym_false] = ACTIONS(974), + [sym_null] = ACTIONS(974), + [sym_identifier] = ACTIONS(1470), + [sym_comment] = ACTIONS(59), }, - [882] = { - [sym__expression] = STATE(838), - [sym_conditional_expression] = STATE(838), - [sym_assignment_expression] = STATE(838), - [sym_pointer_expression] = STATE(838), - [sym_logical_expression] = STATE(838), - [sym_bitwise_expression] = STATE(838), - [sym_equality_expression] = STATE(838), - [sym_relational_expression] = STATE(838), - [sym_shift_expression] = STATE(838), - [sym_math_expression] = STATE(838), - [sym_cast_expression] = STATE(838), - [sym_sizeof_expression] = STATE(838), - [sym_subscript_expression] = STATE(838), - [sym_call_expression] = STATE(838), - [sym_field_expression] = STATE(838), - [sym_compound_literal_expression] = STATE(838), - [sym_parenthesized_expression] = STATE(838), - [sym_initializer_list] = STATE(839), - [sym_char_literal] = STATE(838), - [sym_concatenated_string] = STATE(838), - [sym_string_literal] = STATE(230), - [anon_sym_COMMA] = ACTIONS(2701), - [anon_sym_SEMI] = ACTIONS(2701), - [anon_sym_LBRACE] = ACTIONS(585), - [anon_sym_LPAREN2] = ACTIONS(507), - [anon_sym_STAR] = ACTIONS(2703), - [anon_sym_LBRACK] = ACTIONS(2701), - [anon_sym_EQ] = ACTIONS(2705), - [anon_sym_QMARK] = ACTIONS(2701), - [anon_sym_STAR_EQ] = ACTIONS(2701), - [anon_sym_SLASH_EQ] = ACTIONS(2701), - [anon_sym_PERCENT_EQ] = ACTIONS(2701), - [anon_sym_PLUS_EQ] = ACTIONS(2701), - [anon_sym_DASH_EQ] = ACTIONS(2701), - [anon_sym_LT_LT_EQ] = ACTIONS(2701), - [anon_sym_GT_GT_EQ] = ACTIONS(2701), - [anon_sym_AMP_EQ] = ACTIONS(2701), - [anon_sym_CARET_EQ] = ACTIONS(2701), - [anon_sym_PIPE_EQ] = ACTIONS(2701), - [anon_sym_AMP] = ACTIONS(2703), - [anon_sym_PIPE_PIPE] = ACTIONS(2701), - [anon_sym_AMP_AMP] = ACTIONS(2701), - [anon_sym_BANG] = ACTIONS(2707), - [anon_sym_PIPE] = ACTIONS(2705), - [anon_sym_CARET] = ACTIONS(2705), - [anon_sym_TILDE] = ACTIONS(535), - [anon_sym_EQ_EQ] = ACTIONS(2701), - [anon_sym_BANG_EQ] = ACTIONS(2701), - [anon_sym_LT] = ACTIONS(2705), - [anon_sym_GT] = ACTIONS(2705), - [anon_sym_LT_EQ] = ACTIONS(2701), - [anon_sym_GT_EQ] = ACTIONS(2701), - [anon_sym_LT_LT] = ACTIONS(2705), - [anon_sym_GT_GT] = ACTIONS(2705), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DASH] = ACTIONS(537), - [anon_sym_SLASH] = ACTIONS(2705), - [anon_sym_PERCENT] = ACTIONS(2705), - [anon_sym_DASH_DASH] = ACTIONS(539), - [anon_sym_PLUS_PLUS] = ACTIONS(539), - [anon_sym_sizeof] = ACTIONS(541), - [anon_sym_DOT] = ACTIONS(2701), - [anon_sym_DASH_GT] = ACTIONS(2701), - [sym_number_literal] = ACTIONS(2206), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(2208), - [sym_false] = ACTIONS(2208), - [sym_null] = ACTIONS(2208), - [sym_identifier] = ACTIONS(2208), - [sym_comment] = ACTIONS(37), + [895] = { + [anon_sym_LPAREN2] = ACTIONS(2728), + [sym_comment] = ACTIONS(59), }, - [883] = { + [896] = { [sym__expression] = STATE(989), [sym_conditional_expression] = STATE(989), [sym_assignment_expression] = STATE(989), @@ -34784,1984 +36346,1794 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_parenthesized_expression] = STATE(989), [sym_char_literal] = STATE(989), [sym_concatenated_string] = STATE(989), - [sym_string_literal] = STATE(374), - [anon_sym_LPAREN2] = ACTIONS(892), - [anon_sym_STAR] = ACTIONS(894), - [anon_sym_AMP] = ACTIONS(894), - [anon_sym_BANG] = ACTIONS(896), - [anon_sym_TILDE] = ACTIONS(898), - [anon_sym_PLUS] = ACTIONS(900), - [anon_sym_DASH] = ACTIONS(900), - [anon_sym_DASH_DASH] = ACTIONS(902), - [anon_sym_PLUS_PLUS] = ACTIONS(902), - [anon_sym_sizeof] = ACTIONS(904), - [sym_number_literal] = ACTIONS(2709), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(2711), - [sym_false] = ACTIONS(2711), - [sym_null] = ACTIONS(2711), - [sym_identifier] = ACTIONS(2711), - [sym_comment] = ACTIONS(37), - }, - [884] = { - [anon_sym_COMMA] = ACTIONS(2713), - [anon_sym_RPAREN] = ACTIONS(2713), - [anon_sym_SEMI] = ACTIONS(2713), - [anon_sym_RBRACE] = ACTIONS(2713), - [anon_sym_LPAREN2] = ACTIONS(2713), - [anon_sym_STAR] = ACTIONS(2715), - [anon_sym_LBRACK] = ACTIONS(2713), - [anon_sym_RBRACK] = ACTIONS(2713), - [anon_sym_EQ] = ACTIONS(2715), - [anon_sym_COLON] = ACTIONS(2713), - [anon_sym_QMARK] = ACTIONS(2713), - [anon_sym_STAR_EQ] = ACTIONS(2713), - [anon_sym_SLASH_EQ] = ACTIONS(2713), - [anon_sym_PERCENT_EQ] = ACTIONS(2713), - [anon_sym_PLUS_EQ] = ACTIONS(2713), - [anon_sym_DASH_EQ] = ACTIONS(2713), - [anon_sym_LT_LT_EQ] = ACTIONS(2713), - [anon_sym_GT_GT_EQ] = ACTIONS(2713), - [anon_sym_AMP_EQ] = ACTIONS(2713), - [anon_sym_CARET_EQ] = ACTIONS(2713), - [anon_sym_PIPE_EQ] = ACTIONS(2713), - [anon_sym_AMP] = ACTIONS(2715), - [anon_sym_PIPE_PIPE] = ACTIONS(2713), - [anon_sym_AMP_AMP] = ACTIONS(2713), - [anon_sym_PIPE] = ACTIONS(2715), - [anon_sym_CARET] = ACTIONS(2715), - [anon_sym_EQ_EQ] = ACTIONS(2713), - [anon_sym_BANG_EQ] = ACTIONS(2713), - [anon_sym_LT] = ACTIONS(2715), - [anon_sym_GT] = ACTIONS(2715), - [anon_sym_LT_EQ] = ACTIONS(2713), - [anon_sym_GT_EQ] = ACTIONS(2713), - [anon_sym_LT_LT] = ACTIONS(2715), - [anon_sym_GT_GT] = ACTIONS(2715), - [anon_sym_PLUS] = ACTIONS(2715), - [anon_sym_DASH] = ACTIONS(2715), - [anon_sym_SLASH] = ACTIONS(2715), - [anon_sym_PERCENT] = ACTIONS(2715), - [anon_sym_DASH_DASH] = ACTIONS(2713), - [anon_sym_PLUS_PLUS] = ACTIONS(2713), - [anon_sym_DOT] = ACTIONS(2713), - [anon_sym_DASH_GT] = ACTIONS(2713), - [sym_comment] = ACTIONS(37), - }, - [885] = { - [aux_sym_for_statement_repeat1] = STATE(991), - [anon_sym_COMMA] = ACTIONS(2344), - [anon_sym_RPAREN] = ACTIONS(2717), - [sym_comment] = ACTIONS(37), - }, - [886] = { - [anon_sym_COMMA] = ACTIONS(2719), - [anon_sym_RPAREN] = ACTIONS(2719), - [anon_sym_SEMI] = ACTIONS(2719), - [anon_sym_RBRACE] = ACTIONS(2719), - [anon_sym_LPAREN2] = ACTIONS(2719), - [anon_sym_STAR] = ACTIONS(2721), - [anon_sym_LBRACK] = ACTIONS(2719), - [anon_sym_RBRACK] = ACTIONS(2719), - [anon_sym_EQ] = ACTIONS(2721), - [anon_sym_COLON] = ACTIONS(2719), - [anon_sym_QMARK] = ACTIONS(2719), - [anon_sym_STAR_EQ] = ACTIONS(2719), - [anon_sym_SLASH_EQ] = ACTIONS(2719), - [anon_sym_PERCENT_EQ] = ACTIONS(2719), - [anon_sym_PLUS_EQ] = ACTIONS(2719), - [anon_sym_DASH_EQ] = ACTIONS(2719), - [anon_sym_LT_LT_EQ] = ACTIONS(2719), - [anon_sym_GT_GT_EQ] = ACTIONS(2719), - [anon_sym_AMP_EQ] = ACTIONS(2719), - [anon_sym_CARET_EQ] = ACTIONS(2719), - [anon_sym_PIPE_EQ] = ACTIONS(2719), - [anon_sym_AMP] = ACTIONS(2721), - [anon_sym_PIPE_PIPE] = ACTIONS(2719), - [anon_sym_AMP_AMP] = ACTIONS(2719), - [anon_sym_PIPE] = ACTIONS(2721), - [anon_sym_CARET] = ACTIONS(2721), - [anon_sym_EQ_EQ] = ACTIONS(2719), - [anon_sym_BANG_EQ] = ACTIONS(2719), - [anon_sym_LT] = ACTIONS(2721), - [anon_sym_GT] = ACTIONS(2721), - [anon_sym_LT_EQ] = ACTIONS(2719), - [anon_sym_GT_EQ] = ACTIONS(2719), - [anon_sym_LT_LT] = ACTIONS(2721), - [anon_sym_GT_GT] = ACTIONS(2721), - [anon_sym_PLUS] = ACTIONS(2721), - [anon_sym_DASH] = ACTIONS(2721), - [anon_sym_SLASH] = ACTIONS(2721), - [anon_sym_PERCENT] = ACTIONS(2721), - [anon_sym_DASH_DASH] = ACTIONS(2719), - [anon_sym_PLUS_PLUS] = ACTIONS(2719), - [anon_sym_DOT] = ACTIONS(2719), - [anon_sym_DASH_GT] = ACTIONS(2719), - [sym_comment] = ACTIONS(37), - }, - [887] = { - [sym__expression] = STATE(992), - [sym_conditional_expression] = STATE(992), - [sym_assignment_expression] = STATE(992), - [sym_pointer_expression] = STATE(992), - [sym_logical_expression] = STATE(992), - [sym_bitwise_expression] = STATE(992), - [sym_equality_expression] = STATE(992), - [sym_relational_expression] = STATE(992), - [sym_shift_expression] = STATE(992), - [sym_math_expression] = STATE(992), - [sym_cast_expression] = STATE(992), - [sym_sizeof_expression] = STATE(992), - [sym_subscript_expression] = STATE(992), - [sym_call_expression] = STATE(992), - [sym_field_expression] = STATE(992), - [sym_compound_literal_expression] = STATE(992), - [sym_parenthesized_expression] = STATE(992), - [sym_char_literal] = STATE(992), - [sym_concatenated_string] = STATE(992), - [sym_string_literal] = STATE(230), - [anon_sym_LPAREN2] = ACTIONS(507), - [anon_sym_STAR] = ACTIONS(509), - [anon_sym_AMP] = ACTIONS(509), - [anon_sym_BANG] = ACTIONS(533), - [anon_sym_TILDE] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DASH] = ACTIONS(537), - [anon_sym_DASH_DASH] = ACTIONS(539), - [anon_sym_PLUS_PLUS] = ACTIONS(539), - [anon_sym_sizeof] = ACTIONS(541), - [sym_number_literal] = ACTIONS(2723), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(2725), - [sym_false] = ACTIONS(2725), - [sym_null] = ACTIONS(2725), - [sym_identifier] = ACTIONS(2725), - [sym_comment] = ACTIONS(37), - }, - [888] = { - [sym__declarator] = STATE(198), - [sym__abstract_declarator] = STATE(567), - [sym_pointer_declarator] = STATE(198), - [sym_abstract_pointer_declarator] = STATE(567), - [sym_function_declarator] = STATE(198), - [sym_abstract_function_declarator] = STATE(567), - [sym_array_declarator] = STATE(198), - [sym_abstract_array_declarator] = STATE(567), - [sym_type_qualifier] = STATE(993), - [sym_parameter_list] = STATE(192), - [aux_sym_type_definition_repeat1] = STATE(993), - [anon_sym_RPAREN] = ACTIONS(1367), - [anon_sym_LPAREN2] = ACTIONS(1058), - [anon_sym_STAR] = ACTIONS(1785), - [anon_sym_LBRACK] = ACTIONS(473), - [anon_sym_const] = ACTIONS(23), - [anon_sym_restrict] = ACTIONS(23), - [anon_sym_volatile] = ACTIONS(23), - [anon_sym__Atomic] = ACTIONS(23), - [sym_identifier] = ACTIONS(487), - [sym_comment] = ACTIONS(37), - }, - [889] = { - [sym_type_qualifier] = STATE(889), - [aux_sym_type_definition_repeat1] = STATE(889), - [anon_sym_COMMA] = ACTIONS(874), - [anon_sym_RPAREN] = ACTIONS(874), - [anon_sym_LPAREN2] = ACTIONS(874), - [anon_sym_STAR] = ACTIONS(874), - [anon_sym_LBRACK] = ACTIONS(874), - [anon_sym_const] = ACTIONS(401), - [anon_sym_restrict] = ACTIONS(401), - [anon_sym_volatile] = ACTIONS(401), - [anon_sym__Atomic] = ACTIONS(401), - [sym_identifier] = ACTIONS(404), - [sym_comment] = ACTIONS(37), - }, - [890] = { - [sym__expression] = STATE(838), - [sym_conditional_expression] = STATE(838), - [sym_assignment_expression] = STATE(838), - [sym_pointer_expression] = STATE(838), - [sym_logical_expression] = STATE(838), - [sym_bitwise_expression] = STATE(838), - [sym_equality_expression] = STATE(838), - [sym_relational_expression] = STATE(838), - [sym_shift_expression] = STATE(838), - [sym_math_expression] = STATE(838), - [sym_cast_expression] = STATE(838), - [sym_sizeof_expression] = STATE(838), - [sym_subscript_expression] = STATE(838), - [sym_call_expression] = STATE(838), - [sym_field_expression] = STATE(838), - [sym_compound_literal_expression] = STATE(838), - [sym_parenthesized_expression] = STATE(838), - [sym_initializer_list] = STATE(839), - [sym_char_literal] = STATE(838), - [sym_concatenated_string] = STATE(838), - [sym_string_literal] = STATE(249), - [anon_sym_LBRACE] = ACTIONS(585), - [anon_sym_LPAREN2] = ACTIONS(559), - [anon_sym_STAR] = ACTIONS(2727), - [anon_sym_LBRACK] = ACTIONS(2701), - [anon_sym_RBRACK] = ACTIONS(2701), - [anon_sym_EQ] = ACTIONS(2705), - [anon_sym_QMARK] = ACTIONS(2701), - [anon_sym_STAR_EQ] = ACTIONS(2701), - [anon_sym_SLASH_EQ] = ACTIONS(2701), - [anon_sym_PERCENT_EQ] = ACTIONS(2701), - [anon_sym_PLUS_EQ] = ACTIONS(2701), - [anon_sym_DASH_EQ] = ACTIONS(2701), - [anon_sym_LT_LT_EQ] = ACTIONS(2701), - [anon_sym_GT_GT_EQ] = ACTIONS(2701), - [anon_sym_AMP_EQ] = ACTIONS(2701), - [anon_sym_CARET_EQ] = ACTIONS(2701), - [anon_sym_PIPE_EQ] = ACTIONS(2701), - [anon_sym_AMP] = ACTIONS(2727), - [anon_sym_PIPE_PIPE] = ACTIONS(2701), - [anon_sym_AMP_AMP] = ACTIONS(2701), - [anon_sym_BANG] = ACTIONS(2729), - [anon_sym_PIPE] = ACTIONS(2705), - [anon_sym_CARET] = ACTIONS(2705), - [anon_sym_TILDE] = ACTIONS(571), - [anon_sym_EQ_EQ] = ACTIONS(2701), - [anon_sym_BANG_EQ] = ACTIONS(2701), - [anon_sym_LT] = ACTIONS(2705), - [anon_sym_GT] = ACTIONS(2705), - [anon_sym_LT_EQ] = ACTIONS(2701), - [anon_sym_GT_EQ] = ACTIONS(2701), - [anon_sym_LT_LT] = ACTIONS(2705), - [anon_sym_GT_GT] = ACTIONS(2705), - [anon_sym_PLUS] = ACTIONS(573), - [anon_sym_DASH] = ACTIONS(573), - [anon_sym_SLASH] = ACTIONS(2705), - [anon_sym_PERCENT] = ACTIONS(2705), - [anon_sym_DASH_DASH] = ACTIONS(575), - [anon_sym_PLUS_PLUS] = ACTIONS(575), - [anon_sym_sizeof] = ACTIONS(577), - [anon_sym_DOT] = ACTIONS(2701), - [anon_sym_DASH_GT] = ACTIONS(2701), - [sym_number_literal] = ACTIONS(2206), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(2208), - [sym_false] = ACTIONS(2208), - [sym_null] = ACTIONS(2208), - [sym_identifier] = ACTIONS(2208), - [sym_comment] = ACTIONS(37), - }, - [891] = { - [sym__expression] = STATE(994), - [sym_conditional_expression] = STATE(994), - [sym_assignment_expression] = STATE(994), - [sym_pointer_expression] = STATE(994), - [sym_logical_expression] = STATE(994), - [sym_bitwise_expression] = STATE(994), - [sym_equality_expression] = STATE(994), - [sym_relational_expression] = STATE(994), - [sym_shift_expression] = STATE(994), - [sym_math_expression] = STATE(994), - [sym_cast_expression] = STATE(994), - [sym_sizeof_expression] = STATE(994), - [sym_subscript_expression] = STATE(994), - [sym_call_expression] = STATE(994), - [sym_field_expression] = STATE(994), - [sym_compound_literal_expression] = STATE(994), - [sym_parenthesized_expression] = STATE(994), - [sym_char_literal] = STATE(994), - [sym_concatenated_string] = STATE(994), - [sym_string_literal] = STATE(249), - [anon_sym_LPAREN2] = ACTIONS(559), - [anon_sym_STAR] = ACTIONS(561), - [anon_sym_AMP] = ACTIONS(561), - [anon_sym_BANG] = ACTIONS(569), - [anon_sym_TILDE] = ACTIONS(571), - [anon_sym_PLUS] = ACTIONS(573), - [anon_sym_DASH] = ACTIONS(573), - [anon_sym_DASH_DASH] = ACTIONS(575), - [anon_sym_PLUS_PLUS] = ACTIONS(575), - [anon_sym_sizeof] = ACTIONS(577), - [sym_number_literal] = ACTIONS(2731), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(2733), - [sym_false] = ACTIONS(2733), - [sym_null] = ACTIONS(2733), - [sym_identifier] = ACTIONS(2733), - [sym_comment] = ACTIONS(37), - }, - [892] = { - [anon_sym_LBRACK] = ACTIONS(2735), - [anon_sym_EQ] = ACTIONS(2735), - [anon_sym_DOT] = ACTIONS(2735), - [sym_comment] = ACTIONS(37), - }, - [893] = { - [anon_sym_COMMA] = ACTIONS(2737), - [anon_sym_RPAREN] = ACTIONS(2737), - [anon_sym_SEMI] = ACTIONS(2737), - [anon_sym_RBRACE] = ACTIONS(2737), - [anon_sym_LPAREN2] = ACTIONS(2737), - [anon_sym_STAR] = ACTIONS(2739), - [anon_sym_LBRACK] = ACTIONS(2737), - [anon_sym_RBRACK] = ACTIONS(2737), - [anon_sym_EQ] = ACTIONS(2739), - [anon_sym_COLON] = ACTIONS(2737), - [anon_sym_QMARK] = ACTIONS(2737), - [anon_sym_STAR_EQ] = ACTIONS(2737), - [anon_sym_SLASH_EQ] = ACTIONS(2737), - [anon_sym_PERCENT_EQ] = ACTIONS(2737), - [anon_sym_PLUS_EQ] = ACTIONS(2737), - [anon_sym_DASH_EQ] = ACTIONS(2737), - [anon_sym_LT_LT_EQ] = ACTIONS(2737), - [anon_sym_GT_GT_EQ] = ACTIONS(2737), - [anon_sym_AMP_EQ] = ACTIONS(2737), - [anon_sym_CARET_EQ] = ACTIONS(2737), - [anon_sym_PIPE_EQ] = ACTIONS(2737), - [anon_sym_AMP] = ACTIONS(2739), - [anon_sym_PIPE_PIPE] = ACTIONS(2737), - [anon_sym_AMP_AMP] = ACTIONS(2737), - [anon_sym_PIPE] = ACTIONS(2739), - [anon_sym_CARET] = ACTIONS(2739), - [anon_sym_EQ_EQ] = ACTIONS(2737), - [anon_sym_BANG_EQ] = ACTIONS(2737), - [anon_sym_LT] = ACTIONS(2739), - [anon_sym_GT] = ACTIONS(2739), - [anon_sym_LT_EQ] = ACTIONS(2737), - [anon_sym_GT_EQ] = ACTIONS(2737), - [anon_sym_LT_LT] = ACTIONS(2739), - [anon_sym_GT_GT] = ACTIONS(2739), - [anon_sym_PLUS] = ACTIONS(2739), - [anon_sym_DASH] = ACTIONS(2739), - [anon_sym_SLASH] = ACTIONS(2739), - [anon_sym_PERCENT] = ACTIONS(2739), - [anon_sym_DASH_DASH] = ACTIONS(2737), - [anon_sym_PLUS_PLUS] = ACTIONS(2737), - [anon_sym_DOT] = ACTIONS(2737), - [anon_sym_DASH_GT] = ACTIONS(2737), - [sym_comment] = ACTIONS(37), - }, - [894] = { - [sym_argument_list] = STATE(430), - [anon_sym_COMMA] = ACTIONS(2741), - [anon_sym_RBRACE] = ACTIONS(2741), - [anon_sym_LPAREN2] = ACTIONS(1012), - [anon_sym_STAR] = ACTIONS(1252), - [anon_sym_LBRACK] = ACTIONS(1016), - [anon_sym_EQ] = ACTIONS(1254), - [anon_sym_QMARK] = ACTIONS(1256), - [anon_sym_STAR_EQ] = ACTIONS(1258), - [anon_sym_SLASH_EQ] = ACTIONS(1258), - [anon_sym_PERCENT_EQ] = ACTIONS(1258), - [anon_sym_PLUS_EQ] = ACTIONS(1258), - [anon_sym_DASH_EQ] = ACTIONS(1258), - [anon_sym_LT_LT_EQ] = ACTIONS(1258), - [anon_sym_GT_GT_EQ] = ACTIONS(1258), - [anon_sym_AMP_EQ] = ACTIONS(1258), - [anon_sym_CARET_EQ] = ACTIONS(1258), - [anon_sym_PIPE_EQ] = ACTIONS(1258), - [anon_sym_AMP] = ACTIONS(1260), - [anon_sym_PIPE_PIPE] = ACTIONS(1262), - [anon_sym_AMP_AMP] = ACTIONS(1264), - [anon_sym_PIPE] = ACTIONS(1266), - [anon_sym_CARET] = ACTIONS(1268), - [anon_sym_EQ_EQ] = ACTIONS(1270), - [anon_sym_BANG_EQ] = ACTIONS(1270), - [anon_sym_LT] = ACTIONS(1272), - [anon_sym_GT] = ACTIONS(1272), - [anon_sym_LT_EQ] = ACTIONS(1274), - [anon_sym_GT_EQ] = ACTIONS(1274), - [anon_sym_LT_LT] = ACTIONS(1276), - [anon_sym_GT_GT] = ACTIONS(1276), - [anon_sym_PLUS] = ACTIONS(1278), - [anon_sym_DASH] = ACTIONS(1278), - [anon_sym_SLASH] = ACTIONS(1252), - [anon_sym_PERCENT] = ACTIONS(1252), - [anon_sym_DASH_DASH] = ACTIONS(1044), - [anon_sym_PLUS_PLUS] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1046), - [anon_sym_DASH_GT] = ACTIONS(1046), - [sym_comment] = ACTIONS(37), - }, - [895] = { - [anon_sym_COMMA] = ACTIONS(2741), - [anon_sym_RBRACE] = ACTIONS(2741), - [sym_comment] = ACTIONS(37), - }, - [896] = { - [sym__expression] = STATE(894), - [sym_conditional_expression] = STATE(894), - [sym_assignment_expression] = STATE(894), - [sym_pointer_expression] = STATE(894), - [sym_logical_expression] = STATE(894), - [sym_bitwise_expression] = STATE(894), - [sym_equality_expression] = STATE(894), - [sym_relational_expression] = STATE(894), - [sym_shift_expression] = STATE(894), - [sym_math_expression] = STATE(894), - [sym_cast_expression] = STATE(894), - [sym_sizeof_expression] = STATE(894), - [sym_subscript_expression] = STATE(894), - [sym_call_expression] = STATE(894), - [sym_field_expression] = STATE(894), - [sym_compound_literal_expression] = STATE(894), - [sym_parenthesized_expression] = STATE(894), - [sym_initializer_list] = STATE(895), - [sym_initializer_pair] = STATE(895), - [sym_subscript_designator] = STATE(471), - [sym_field_designator] = STATE(471), - [sym_char_literal] = STATE(894), - [sym_concatenated_string] = STATE(894), - [sym_string_literal] = STATE(318), - [aux_sym_initializer_pair_repeat1] = STATE(471), - [anon_sym_LBRACE] = ACTIONS(585), - [anon_sym_RBRACE] = ACTIONS(2743), - [anon_sym_LPAREN2] = ACTIONS(742), - [anon_sym_STAR] = ACTIONS(744), - [anon_sym_LBRACK] = ACTIONS(1118), - [anon_sym_AMP] = ACTIONS(744), - [anon_sym_BANG] = ACTIONS(746), - [anon_sym_TILDE] = ACTIONS(748), - [anon_sym_PLUS] = ACTIONS(750), - [anon_sym_DASH] = ACTIONS(750), - [anon_sym_DASH_DASH] = ACTIONS(752), - [anon_sym_PLUS_PLUS] = ACTIONS(752), - [anon_sym_sizeof] = ACTIONS(754), - [anon_sym_DOT] = ACTIONS(1120), - [sym_number_literal] = ACTIONS(2419), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(2421), - [sym_false] = ACTIONS(2421), - [sym_null] = ACTIONS(2421), - [sym_identifier] = ACTIONS(2421), - [sym_comment] = ACTIONS(37), + [sym_string_literal] = STATE(534), + [anon_sym_SEMI] = ACTIONS(2730), + [anon_sym_LPAREN2] = ACTIONS(1349), + [anon_sym_STAR] = ACTIONS(1351), + [anon_sym_AMP] = ACTIONS(1351), + [anon_sym_BANG] = ACTIONS(1353), + [anon_sym_TILDE] = ACTIONS(1355), + [anon_sym_PLUS] = ACTIONS(1357), + [anon_sym_DASH] = ACTIONS(1357), + [anon_sym_DASH_DASH] = ACTIONS(1359), + [anon_sym_PLUS_PLUS] = ACTIONS(1359), + [anon_sym_sizeof] = ACTIONS(1361), + [sym_number_literal] = ACTIONS(2732), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(2734), + [sym_false] = ACTIONS(2734), + [sym_null] = ACTIONS(2734), + [sym_identifier] = ACTIONS(2734), + [sym_comment] = ACTIONS(59), }, [897] = { - [aux_sym_initializer_list_repeat1] = STATE(897), - [anon_sym_COMMA] = ACTIONS(2745), - [anon_sym_RBRACE] = ACTIONS(2741), - [sym_comment] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(2736), + [sym_comment] = ACTIONS(59), }, [898] = { - [sym_argument_list] = STATE(430), - [anon_sym_COMMA] = ACTIONS(2748), - [anon_sym_RBRACE] = ACTIONS(2748), - [anon_sym_LPAREN2] = ACTIONS(1012), - [anon_sym_STAR] = ACTIONS(1252), - [anon_sym_LBRACK] = ACTIONS(1016), - [anon_sym_EQ] = ACTIONS(1254), - [anon_sym_QMARK] = ACTIONS(1256), - [anon_sym_STAR_EQ] = ACTIONS(1258), - [anon_sym_SLASH_EQ] = ACTIONS(1258), - [anon_sym_PERCENT_EQ] = ACTIONS(1258), - [anon_sym_PLUS_EQ] = ACTIONS(1258), - [anon_sym_DASH_EQ] = ACTIONS(1258), - [anon_sym_LT_LT_EQ] = ACTIONS(1258), - [anon_sym_GT_GT_EQ] = ACTIONS(1258), - [anon_sym_AMP_EQ] = ACTIONS(1258), - [anon_sym_CARET_EQ] = ACTIONS(1258), - [anon_sym_PIPE_EQ] = ACTIONS(1258), - [anon_sym_AMP] = ACTIONS(1260), - [anon_sym_PIPE_PIPE] = ACTIONS(1262), - [anon_sym_AMP_AMP] = ACTIONS(1264), - [anon_sym_PIPE] = ACTIONS(1266), - [anon_sym_CARET] = ACTIONS(1268), - [anon_sym_EQ_EQ] = ACTIONS(1270), - [anon_sym_BANG_EQ] = ACTIONS(1270), - [anon_sym_LT] = ACTIONS(1272), - [anon_sym_GT] = ACTIONS(1272), - [anon_sym_LT_EQ] = ACTIONS(1274), - [anon_sym_GT_EQ] = ACTIONS(1274), - [anon_sym_LT_LT] = ACTIONS(1276), - [anon_sym_GT_GT] = ACTIONS(1276), - [anon_sym_PLUS] = ACTIONS(1278), - [anon_sym_DASH] = ACTIONS(1278), - [anon_sym_SLASH] = ACTIONS(1252), - [anon_sym_PERCENT] = ACTIONS(1252), - [anon_sym_DASH_DASH] = ACTIONS(1044), - [anon_sym_PLUS_PLUS] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1046), - [anon_sym_DASH_GT] = ACTIONS(1046), - [sym_comment] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(2738), + [sym_comment] = ACTIONS(59), }, [899] = { - [anon_sym_COMMA] = ACTIONS(2748), - [anon_sym_RBRACE] = ACTIONS(2748), - [sym_comment] = ACTIONS(37), + [sym_identifier] = ACTIONS(2740), + [sym_comment] = ACTIONS(59), }, [900] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1143), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1143), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1143), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1143), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1143), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1143), - [sym_preproc_directive] = ACTIONS(1143), - [anon_sym_SEMI] = ACTIONS(1141), - [anon_sym_typedef] = ACTIONS(1143), - [anon_sym_extern] = ACTIONS(1143), - [anon_sym_LBRACE] = ACTIONS(1141), - [anon_sym_LPAREN2] = ACTIONS(1141), - [anon_sym_STAR] = ACTIONS(1141), - [anon_sym_static] = ACTIONS(1143), - [anon_sym_auto] = ACTIONS(1143), - [anon_sym_register] = ACTIONS(1143), - [anon_sym_inline] = ACTIONS(1143), - [anon_sym_const] = ACTIONS(1143), - [anon_sym_restrict] = ACTIONS(1143), - [anon_sym_volatile] = ACTIONS(1143), - [anon_sym__Atomic] = ACTIONS(1143), - [anon_sym_unsigned] = ACTIONS(1143), - [anon_sym_long] = ACTIONS(1143), - [anon_sym_short] = ACTIONS(1143), - [sym_primitive_type] = ACTIONS(1143), - [anon_sym_enum] = ACTIONS(1143), - [anon_sym_struct] = ACTIONS(1143), - [anon_sym_union] = ACTIONS(1143), - [anon_sym_if] = ACTIONS(1143), - [anon_sym_switch] = ACTIONS(1143), - [anon_sym_case] = ACTIONS(1143), - [anon_sym_default] = ACTIONS(1143), - [anon_sym_while] = ACTIONS(1143), - [anon_sym_do] = ACTIONS(1143), - [anon_sym_for] = ACTIONS(1143), - [anon_sym_return] = ACTIONS(1143), - [anon_sym_break] = ACTIONS(1143), - [anon_sym_continue] = ACTIONS(1143), - [anon_sym_goto] = ACTIONS(1143), - [anon_sym_AMP] = ACTIONS(1141), - [anon_sym_BANG] = ACTIONS(1141), - [anon_sym_TILDE] = ACTIONS(1141), - [anon_sym_PLUS] = ACTIONS(1143), - [anon_sym_DASH] = ACTIONS(1143), - [anon_sym_DASH_DASH] = ACTIONS(1141), - [anon_sym_PLUS_PLUS] = ACTIONS(1141), - [anon_sym_sizeof] = ACTIONS(1143), - [sym_number_literal] = ACTIONS(1141), - [anon_sym_SQUOTE] = ACTIONS(1141), - [anon_sym_DQUOTE] = ACTIONS(1141), - [sym_true] = ACTIONS(1143), - [sym_false] = ACTIONS(1143), - [sym_null] = ACTIONS(1143), - [sym_identifier] = ACTIONS(1143), - [sym_comment] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(304), + [anon_sym_COMMA] = ACTIONS(166), + [anon_sym_extern] = ACTIONS(157), + [anon_sym_LPAREN2] = ACTIONS(159), + [anon_sym_STAR] = ACTIONS(163), + [anon_sym_LBRACK] = ACTIONS(166), + [anon_sym_EQ] = ACTIONS(168), + [anon_sym_static] = ACTIONS(157), + [anon_sym_auto] = ACTIONS(157), + [anon_sym_register] = ACTIONS(157), + [anon_sym_inline] = ACTIONS(157), + [anon_sym_const] = ACTIONS(157), + [anon_sym_restrict] = ACTIONS(157), + [anon_sym_volatile] = ACTIONS(157), + [anon_sym__Atomic] = ACTIONS(157), + [anon_sym_COLON] = ACTIONS(2742), + [anon_sym_QMARK] = ACTIONS(166), + [anon_sym_STAR_EQ] = ACTIONS(166), + [anon_sym_SLASH_EQ] = ACTIONS(166), + [anon_sym_PERCENT_EQ] = ACTIONS(166), + [anon_sym_PLUS_EQ] = ACTIONS(166), + [anon_sym_DASH_EQ] = ACTIONS(166), + [anon_sym_LT_LT_EQ] = ACTIONS(166), + [anon_sym_GT_GT_EQ] = ACTIONS(166), + [anon_sym_AMP_EQ] = ACTIONS(166), + [anon_sym_CARET_EQ] = ACTIONS(166), + [anon_sym_PIPE_EQ] = ACTIONS(166), + [anon_sym_AMP] = ACTIONS(168), + [anon_sym_PIPE_PIPE] = ACTIONS(166), + [anon_sym_AMP_AMP] = ACTIONS(166), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_CARET] = ACTIONS(168), + [anon_sym_EQ_EQ] = ACTIONS(166), + [anon_sym_BANG_EQ] = ACTIONS(166), + [anon_sym_LT] = ACTIONS(168), + [anon_sym_GT] = ACTIONS(168), + [anon_sym_LT_EQ] = ACTIONS(166), + [anon_sym_GT_EQ] = ACTIONS(166), + [anon_sym_LT_LT] = ACTIONS(168), + [anon_sym_GT_GT] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(168), + [anon_sym_DASH] = ACTIONS(168), + [anon_sym_SLASH] = ACTIONS(168), + [anon_sym_PERCENT] = ACTIONS(168), + [anon_sym_DASH_DASH] = ACTIONS(166), + [anon_sym_PLUS_PLUS] = ACTIONS(166), + [anon_sym_DOT] = ACTIONS(166), + [anon_sym_DASH_GT] = ACTIONS(166), + [sym_identifier] = ACTIONS(157), + [sym_comment] = ACTIONS(59), }, [901] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1218), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1218), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1218), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1218), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1218), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1218), - [sym_preproc_directive] = ACTIONS(1218), - [anon_sym_typedef] = ACTIONS(1218), - [anon_sym_extern] = ACTIONS(1218), - [anon_sym_static] = ACTIONS(1218), - [anon_sym_auto] = ACTIONS(1218), - [anon_sym_register] = ACTIONS(1218), - [anon_sym_inline] = ACTIONS(1218), - [anon_sym_const] = ACTIONS(1218), - [anon_sym_restrict] = ACTIONS(1218), - [anon_sym_volatile] = ACTIONS(1218), - [anon_sym__Atomic] = ACTIONS(1218), - [anon_sym_unsigned] = ACTIONS(1218), - [anon_sym_long] = ACTIONS(1218), - [anon_sym_short] = ACTIONS(1218), - [sym_primitive_type] = ACTIONS(1218), - [anon_sym_enum] = ACTIONS(1218), - [anon_sym_struct] = ACTIONS(1218), - [anon_sym_union] = ACTIONS(1218), - [sym_identifier] = ACTIONS(1218), - [sym_comment] = ACTIONS(37), + [sym__declarator] = STATE(994), + [sym_pointer_declarator] = STATE(994), + [sym_function_declarator] = STATE(994), + [sym_array_declarator] = STATE(994), + [sym_init_declarator] = STATE(447), + [anon_sym_SEMI] = ACTIONS(1163), + [anon_sym_LPAREN2] = ACTIONS(174), + [anon_sym_STAR] = ACTIONS(924), + [sym_identifier] = ACTIONS(2744), + [sym_comment] = ACTIONS(59), }, [902] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1222), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1222), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1222), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1222), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1222), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1222), - [sym_preproc_directive] = ACTIONS(1222), - [anon_sym_typedef] = ACTIONS(1222), - [anon_sym_extern] = ACTIONS(1222), - [anon_sym_static] = ACTIONS(1222), - [anon_sym_auto] = ACTIONS(1222), - [anon_sym_register] = ACTIONS(1222), - [anon_sym_inline] = ACTIONS(1222), - [anon_sym_const] = ACTIONS(1222), - [anon_sym_restrict] = ACTIONS(1222), - [anon_sym_volatile] = ACTIONS(1222), - [anon_sym__Atomic] = ACTIONS(1222), - [anon_sym_unsigned] = ACTIONS(1222), - [anon_sym_long] = ACTIONS(1222), - [anon_sym_short] = ACTIONS(1222), - [sym_primitive_type] = ACTIONS(1222), - [anon_sym_enum] = ACTIONS(1222), - [anon_sym_struct] = ACTIONS(1222), - [anon_sym_union] = ACTIONS(1222), - [sym_identifier] = ACTIONS(1222), - [sym_comment] = ACTIONS(37), + [sym_argument_list] = STATE(98), + [anon_sym_SEMI] = ACTIONS(2746), + [anon_sym_COMMA] = ACTIONS(1498), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(1500), + [anon_sym_LBRACK] = ACTIONS(188), + [anon_sym_EQ] = ACTIONS(1502), + [anon_sym_QMARK] = ACTIONS(1504), + [anon_sym_STAR_EQ] = ACTIONS(1506), + [anon_sym_SLASH_EQ] = ACTIONS(1506), + [anon_sym_PERCENT_EQ] = ACTIONS(1506), + [anon_sym_PLUS_EQ] = ACTIONS(1506), + [anon_sym_DASH_EQ] = ACTIONS(1506), + [anon_sym_LT_LT_EQ] = ACTIONS(1506), + [anon_sym_GT_GT_EQ] = ACTIONS(1506), + [anon_sym_AMP_EQ] = ACTIONS(1506), + [anon_sym_CARET_EQ] = ACTIONS(1506), + [anon_sym_PIPE_EQ] = ACTIONS(1506), + [anon_sym_AMP] = ACTIONS(1508), + [anon_sym_PIPE_PIPE] = ACTIONS(1510), + [anon_sym_AMP_AMP] = ACTIONS(1512), + [anon_sym_PIPE] = ACTIONS(1514), + [anon_sym_CARET] = ACTIONS(1516), + [anon_sym_EQ_EQ] = ACTIONS(1518), + [anon_sym_BANG_EQ] = ACTIONS(1518), + [anon_sym_LT] = ACTIONS(1520), + [anon_sym_GT] = ACTIONS(1520), + [anon_sym_LT_EQ] = ACTIONS(1522), + [anon_sym_GT_EQ] = ACTIONS(1522), + [anon_sym_LT_LT] = ACTIONS(1524), + [anon_sym_GT_GT] = ACTIONS(1524), + [anon_sym_PLUS] = ACTIONS(1526), + [anon_sym_DASH] = ACTIONS(1526), + [anon_sym_SLASH] = ACTIONS(1500), + [anon_sym_PERCENT] = ACTIONS(1500), + [anon_sym_DASH_DASH] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(216), + [anon_sym_DOT] = ACTIONS(218), + [anon_sym_DASH_GT] = ACTIONS(218), + [sym_comment] = ACTIONS(59), }, [903] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1238), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1238), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1238), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1238), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1238), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1238), - [sym_preproc_directive] = ACTIONS(1238), - [anon_sym_SEMI] = ACTIONS(1236), - [anon_sym_typedef] = ACTIONS(1238), - [anon_sym_extern] = ACTIONS(1238), - [anon_sym_LBRACE] = ACTIONS(1236), - [anon_sym_LPAREN2] = ACTIONS(1236), - [anon_sym_STAR] = ACTIONS(1236), - [anon_sym_static] = ACTIONS(1238), - [anon_sym_auto] = ACTIONS(1238), - [anon_sym_register] = ACTIONS(1238), - [anon_sym_inline] = ACTIONS(1238), - [anon_sym_const] = ACTIONS(1238), - [anon_sym_restrict] = ACTIONS(1238), - [anon_sym_volatile] = ACTIONS(1238), - [anon_sym__Atomic] = ACTIONS(1238), - [anon_sym_unsigned] = ACTIONS(1238), - [anon_sym_long] = ACTIONS(1238), - [anon_sym_short] = ACTIONS(1238), - [sym_primitive_type] = ACTIONS(1238), - [anon_sym_enum] = ACTIONS(1238), - [anon_sym_struct] = ACTIONS(1238), - [anon_sym_union] = ACTIONS(1238), - [anon_sym_if] = ACTIONS(1238), - [anon_sym_else] = ACTIONS(1238), - [anon_sym_switch] = ACTIONS(1238), - [anon_sym_case] = ACTIONS(1238), - [anon_sym_default] = ACTIONS(1238), - [anon_sym_while] = ACTIONS(1238), - [anon_sym_do] = ACTIONS(1238), - [anon_sym_for] = ACTIONS(1238), - [anon_sym_return] = ACTIONS(1238), - [anon_sym_break] = ACTIONS(1238), - [anon_sym_continue] = ACTIONS(1238), - [anon_sym_goto] = ACTIONS(1238), - [anon_sym_AMP] = ACTIONS(1236), - [anon_sym_BANG] = ACTIONS(1236), - [anon_sym_TILDE] = ACTIONS(1236), - [anon_sym_PLUS] = ACTIONS(1238), - [anon_sym_DASH] = ACTIONS(1238), - [anon_sym_DASH_DASH] = ACTIONS(1236), - [anon_sym_PLUS_PLUS] = ACTIONS(1236), - [anon_sym_sizeof] = ACTIONS(1238), - [sym_number_literal] = ACTIONS(1236), - [anon_sym_SQUOTE] = ACTIONS(1236), - [anon_sym_DQUOTE] = ACTIONS(1236), - [sym_true] = ACTIONS(1238), - [sym_false] = ACTIONS(1238), - [sym_null] = ACTIONS(1238), - [sym_identifier] = ACTIONS(1238), - [sym_comment] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(2746), + [sym_comment] = ACTIONS(59), }, [904] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1242), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1242), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1242), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1242), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1242), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1242), - [sym_preproc_directive] = ACTIONS(1242), - [anon_sym_typedef] = ACTIONS(1242), - [anon_sym_extern] = ACTIONS(1242), - [anon_sym_static] = ACTIONS(1242), - [anon_sym_auto] = ACTIONS(1242), - [anon_sym_register] = ACTIONS(1242), - [anon_sym_inline] = ACTIONS(1242), - [anon_sym_const] = ACTIONS(1242), - [anon_sym_restrict] = ACTIONS(1242), - [anon_sym_volatile] = ACTIONS(1242), - [anon_sym__Atomic] = ACTIONS(1242), - [anon_sym_unsigned] = ACTIONS(1242), - [anon_sym_long] = ACTIONS(1242), - [anon_sym_short] = ACTIONS(1242), - [sym_primitive_type] = ACTIONS(1242), - [anon_sym_enum] = ACTIONS(1242), - [anon_sym_struct] = ACTIONS(1242), - [anon_sym_union] = ACTIONS(1242), - [sym_identifier] = ACTIONS(1242), - [sym_comment] = ACTIONS(37), + [sym_preproc_include] = STATE(996), + [sym_preproc_def] = STATE(996), + [sym_preproc_function_def] = STATE(996), + [sym_preproc_call] = STATE(996), + [sym_preproc_if_in_compound_statement] = STATE(996), + [sym_preproc_ifdef_in_compound_statement] = STATE(996), + [sym_declaration] = STATE(996), + [sym_type_definition] = STATE(996), + [sym__declaration_specifiers] = STATE(901), + [sym_compound_statement] = STATE(996), + [sym_storage_class_specifier] = STATE(30), + [sym_type_qualifier] = STATE(30), + [sym__type_specifier] = STATE(25), + [sym_sized_type_specifier] = STATE(25), + [sym_enum_specifier] = STATE(25), + [sym_struct_specifier] = STATE(25), + [sym_union_specifier] = STATE(25), + [sym_labeled_statement] = STATE(996), + [sym_expression_statement] = STATE(996), + [sym_if_statement] = STATE(996), + [sym_switch_statement] = STATE(996), + [sym_case_statement] = STATE(996), + [sym_while_statement] = STATE(996), + [sym_do_statement] = STATE(996), + [sym_for_statement] = STATE(996), + [sym_return_statement] = STATE(996), + [sym_break_statement] = STATE(996), + [sym_continue_statement] = STATE(996), + [sym_goto_statement] = STATE(996), + [sym__expression] = STATE(902), + [sym_comma_expression] = STATE(903), + [sym_conditional_expression] = STATE(902), + [sym_assignment_expression] = STATE(902), + [sym_pointer_expression] = STATE(902), + [sym_logical_expression] = STATE(902), + [sym_bitwise_expression] = STATE(902), + [sym_equality_expression] = STATE(902), + [sym_relational_expression] = STATE(902), + [sym_shift_expression] = STATE(902), + [sym_math_expression] = STATE(902), + [sym_cast_expression] = STATE(902), + [sym_sizeof_expression] = STATE(902), + [sym_subscript_expression] = STATE(902), + [sym_call_expression] = STATE(902), + [sym_field_expression] = STATE(902), + [sym_compound_literal_expression] = STATE(902), + [sym_parenthesized_expression] = STATE(902), + [sym_char_literal] = STATE(902), + [sym_concatenated_string] = STATE(902), + [sym_string_literal] = STATE(374), + [sym__empty_declaration] = STATE(996), + [sym_macro_type_specifier] = STATE(25), + [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(996), + [aux_sym__declaration_specifiers_repeat1] = STATE(30), + [aux_sym_sized_type_specifier_repeat1] = STATE(31), + [anon_sym_SEMI] = ACTIONS(2481), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(682), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(684), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2483), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2748), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2487), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2487), + [sym_preproc_directive] = ACTIONS(692), + [anon_sym_typedef] = ACTIONS(694), + [anon_sym_extern] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(1699), + [anon_sym_LPAREN2] = ACTIONS(936), + [anon_sym_STAR] = ACTIONS(938), + [anon_sym_static] = ACTIONS(25), + [anon_sym_auto] = ACTIONS(25), + [anon_sym_register] = ACTIONS(25), + [anon_sym_inline] = ACTIONS(25), + [anon_sym_const] = ACTIONS(27), + [anon_sym_restrict] = ACTIONS(27), + [anon_sym_volatile] = ACTIONS(27), + [anon_sym__Atomic] = ACTIONS(27), + [anon_sym_unsigned] = ACTIONS(29), + [anon_sym_long] = ACTIONS(29), + [anon_sym_short] = ACTIONS(29), + [sym_primitive_type] = ACTIONS(31), + [anon_sym_enum] = ACTIONS(33), + [anon_sym_struct] = ACTIONS(35), + [anon_sym_union] = ACTIONS(37), + [anon_sym_if] = ACTIONS(2489), + [anon_sym_switch] = ACTIONS(2491), + [anon_sym_case] = ACTIONS(2493), + [anon_sym_default] = ACTIONS(2495), + [anon_sym_while] = ACTIONS(2497), + [anon_sym_do] = ACTIONS(2499), + [anon_sym_for] = ACTIONS(2501), + [anon_sym_return] = ACTIONS(2503), + [anon_sym_break] = ACTIONS(2505), + [anon_sym_continue] = ACTIONS(2507), + [anon_sym_goto] = ACTIONS(2509), + [anon_sym_AMP] = ACTIONS(938), + [anon_sym_BANG] = ACTIONS(962), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_DASH_DASH] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(968), + [anon_sym_sizeof] = ACTIONS(970), + [sym_number_literal] = ACTIONS(2511), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(2513), + [sym_false] = ACTIONS(2513), + [sym_null] = ACTIONS(2513), + [sym_identifier] = ACTIONS(2515), + [sym_comment] = ACTIONS(59), }, [905] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1661), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1661), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1661), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1661), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1661), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1661), - [sym_preproc_directive] = ACTIONS(1661), - [anon_sym_SEMI] = ACTIONS(1659), - [anon_sym_typedef] = ACTIONS(1661), - [anon_sym_extern] = ACTIONS(1661), - [anon_sym_LBRACE] = ACTIONS(1659), - [anon_sym_LPAREN2] = ACTIONS(1659), - [anon_sym_STAR] = ACTIONS(1659), - [anon_sym_static] = ACTIONS(1661), - [anon_sym_auto] = ACTIONS(1661), - [anon_sym_register] = ACTIONS(1661), - [anon_sym_inline] = ACTIONS(1661), - [anon_sym_const] = ACTIONS(1661), - [anon_sym_restrict] = ACTIONS(1661), - [anon_sym_volatile] = ACTIONS(1661), - [anon_sym__Atomic] = ACTIONS(1661), - [anon_sym_unsigned] = ACTIONS(1661), - [anon_sym_long] = ACTIONS(1661), - [anon_sym_short] = ACTIONS(1661), - [sym_primitive_type] = ACTIONS(1661), - [anon_sym_enum] = ACTIONS(1661), - [anon_sym_struct] = ACTIONS(1661), - [anon_sym_union] = ACTIONS(1661), - [anon_sym_if] = ACTIONS(1661), - [anon_sym_else] = ACTIONS(1661), - [anon_sym_switch] = ACTIONS(1661), - [anon_sym_case] = ACTIONS(1661), - [anon_sym_default] = ACTIONS(1661), - [anon_sym_while] = ACTIONS(1661), - [anon_sym_do] = ACTIONS(1661), - [anon_sym_for] = ACTIONS(1661), - [anon_sym_return] = ACTIONS(1661), - [anon_sym_break] = ACTIONS(1661), - [anon_sym_continue] = ACTIONS(1661), - [anon_sym_goto] = ACTIONS(1661), - [anon_sym_AMP] = ACTIONS(1659), - [anon_sym_BANG] = ACTIONS(1659), - [anon_sym_TILDE] = ACTIONS(1659), - [anon_sym_PLUS] = ACTIONS(1661), - [anon_sym_DASH] = ACTIONS(1661), - [anon_sym_DASH_DASH] = ACTIONS(1659), - [anon_sym_PLUS_PLUS] = ACTIONS(1659), - [anon_sym_sizeof] = ACTIONS(1661), - [sym_number_literal] = ACTIONS(1659), - [anon_sym_SQUOTE] = ACTIONS(1659), - [anon_sym_DQUOTE] = ACTIONS(1659), - [sym_true] = ACTIONS(1661), - [sym_false] = ACTIONS(1661), - [sym_null] = ACTIONS(1661), - [sym_identifier] = ACTIONS(1661), - [sym_comment] = ACTIONS(37), + [sym_preproc_include] = STATE(998), + [sym_preproc_def] = STATE(998), + [sym_preproc_function_def] = STATE(998), + [sym_preproc_call] = STATE(998), + [sym_preproc_if_in_compound_statement] = STATE(998), + [sym_preproc_ifdef_in_compound_statement] = STATE(998), + [sym_preproc_else_in_compound_statement] = STATE(997), + [sym_preproc_elif_in_compound_statement] = STATE(997), + [sym_declaration] = STATE(998), + [sym_type_definition] = STATE(998), + [sym__declaration_specifiers] = STATE(755), + [sym_compound_statement] = STATE(998), + [sym_storage_class_specifier] = STATE(30), + [sym_type_qualifier] = STATE(30), + [sym__type_specifier] = STATE(25), + [sym_sized_type_specifier] = STATE(25), + [sym_enum_specifier] = STATE(25), + [sym_struct_specifier] = STATE(25), + [sym_union_specifier] = STATE(25), + [sym_labeled_statement] = STATE(998), + [sym_expression_statement] = STATE(998), + [sym_if_statement] = STATE(998), + [sym_switch_statement] = STATE(998), + [sym_case_statement] = STATE(998), + [sym_while_statement] = STATE(998), + [sym_do_statement] = STATE(998), + [sym_for_statement] = STATE(998), + [sym_return_statement] = STATE(998), + [sym_break_statement] = STATE(998), + [sym_continue_statement] = STATE(998), + [sym_goto_statement] = STATE(998), + [sym__expression] = STATE(756), + [sym_comma_expression] = STATE(757), + [sym_conditional_expression] = STATE(756), + [sym_assignment_expression] = STATE(756), + [sym_pointer_expression] = STATE(756), + [sym_logical_expression] = STATE(756), + [sym_bitwise_expression] = STATE(756), + [sym_equality_expression] = STATE(756), + [sym_relational_expression] = STATE(756), + [sym_shift_expression] = STATE(756), + [sym_math_expression] = STATE(756), + [sym_cast_expression] = STATE(756), + [sym_sizeof_expression] = STATE(756), + [sym_subscript_expression] = STATE(756), + [sym_call_expression] = STATE(756), + [sym_field_expression] = STATE(756), + [sym_compound_literal_expression] = STATE(756), + [sym_parenthesized_expression] = STATE(756), + [sym_char_literal] = STATE(756), + [sym_concatenated_string] = STATE(756), + [sym_string_literal] = STATE(374), + [sym__empty_declaration] = STATE(998), + [sym_macro_type_specifier] = STATE(25), + [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(998), + [aux_sym__declaration_specifiers_repeat1] = STATE(30), + [aux_sym_sized_type_specifier_repeat1] = STATE(31), + [anon_sym_SEMI] = ACTIONS(1940), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(251), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(253), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1942), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2750), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1946), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1946), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1948), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1950), + [sym_preproc_directive] = ACTIONS(265), + [anon_sym_typedef] = ACTIONS(267), + [anon_sym_extern] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_LPAREN2] = ACTIONS(936), + [anon_sym_STAR] = ACTIONS(938), + [anon_sym_static] = ACTIONS(25), + [anon_sym_auto] = ACTIONS(25), + [anon_sym_register] = ACTIONS(25), + [anon_sym_inline] = ACTIONS(25), + [anon_sym_const] = ACTIONS(27), + [anon_sym_restrict] = ACTIONS(27), + [anon_sym_volatile] = ACTIONS(27), + [anon_sym__Atomic] = ACTIONS(27), + [anon_sym_unsigned] = ACTIONS(29), + [anon_sym_long] = ACTIONS(29), + [anon_sym_short] = ACTIONS(29), + [sym_primitive_type] = ACTIONS(31), + [anon_sym_enum] = ACTIONS(33), + [anon_sym_struct] = ACTIONS(35), + [anon_sym_union] = ACTIONS(37), + [anon_sym_if] = ACTIONS(1952), + [anon_sym_switch] = ACTIONS(1954), + [anon_sym_case] = ACTIONS(1956), + [anon_sym_default] = ACTIONS(1958), + [anon_sym_while] = ACTIONS(1960), + [anon_sym_do] = ACTIONS(1962), + [anon_sym_for] = ACTIONS(1964), + [anon_sym_return] = ACTIONS(1966), + [anon_sym_break] = ACTIONS(1968), + [anon_sym_continue] = ACTIONS(1970), + [anon_sym_goto] = ACTIONS(1972), + [anon_sym_AMP] = ACTIONS(938), + [anon_sym_BANG] = ACTIONS(962), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_DASH_DASH] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(968), + [anon_sym_sizeof] = ACTIONS(970), + [sym_number_literal] = ACTIONS(1974), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(1976), + [sym_false] = ACTIONS(1976), + [sym_null] = ACTIONS(1976), + [sym_identifier] = ACTIONS(1978), + [sym_comment] = ACTIONS(59), }, [906] = { - [sym__expression] = STATE(838), - [sym_conditional_expression] = STATE(838), - [sym_assignment_expression] = STATE(838), - [sym_pointer_expression] = STATE(838), - [sym_logical_expression] = STATE(838), - [sym_bitwise_expression] = STATE(838), - [sym_equality_expression] = STATE(838), - [sym_relational_expression] = STATE(838), - [sym_shift_expression] = STATE(838), - [sym_math_expression] = STATE(838), - [sym_cast_expression] = STATE(838), - [sym_sizeof_expression] = STATE(838), - [sym_subscript_expression] = STATE(838), - [sym_call_expression] = STATE(838), - [sym_field_expression] = STATE(838), - [sym_compound_literal_expression] = STATE(838), - [sym_parenthesized_expression] = STATE(838), - [sym_initializer_list] = STATE(839), - [sym_char_literal] = STATE(838), - [sym_concatenated_string] = STATE(838), - [sym_string_literal] = STATE(318), - [anon_sym_COMMA] = ACTIONS(2701), - [anon_sym_LBRACE] = ACTIONS(585), - [anon_sym_RBRACE] = ACTIONS(2701), - [anon_sym_LPAREN2] = ACTIONS(742), - [anon_sym_STAR] = ACTIONS(2750), - [anon_sym_LBRACK] = ACTIONS(2701), - [anon_sym_EQ] = ACTIONS(2705), - [anon_sym_QMARK] = ACTIONS(2701), - [anon_sym_STAR_EQ] = ACTIONS(2701), - [anon_sym_SLASH_EQ] = ACTIONS(2701), - [anon_sym_PERCENT_EQ] = ACTIONS(2701), - [anon_sym_PLUS_EQ] = ACTIONS(2701), - [anon_sym_DASH_EQ] = ACTIONS(2701), - [anon_sym_LT_LT_EQ] = ACTIONS(2701), - [anon_sym_GT_GT_EQ] = ACTIONS(2701), - [anon_sym_AMP_EQ] = ACTIONS(2701), - [anon_sym_CARET_EQ] = ACTIONS(2701), - [anon_sym_PIPE_EQ] = ACTIONS(2701), - [anon_sym_AMP] = ACTIONS(2750), - [anon_sym_PIPE_PIPE] = ACTIONS(2701), - [anon_sym_AMP_AMP] = ACTIONS(2701), - [anon_sym_BANG] = ACTIONS(2752), - [anon_sym_PIPE] = ACTIONS(2705), - [anon_sym_CARET] = ACTIONS(2705), - [anon_sym_TILDE] = ACTIONS(748), - [anon_sym_EQ_EQ] = ACTIONS(2701), - [anon_sym_BANG_EQ] = ACTIONS(2701), - [anon_sym_LT] = ACTIONS(2705), - [anon_sym_GT] = ACTIONS(2705), - [anon_sym_LT_EQ] = ACTIONS(2701), - [anon_sym_GT_EQ] = ACTIONS(2701), - [anon_sym_LT_LT] = ACTIONS(2705), - [anon_sym_GT_GT] = ACTIONS(2705), - [anon_sym_PLUS] = ACTIONS(750), - [anon_sym_DASH] = ACTIONS(750), - [anon_sym_SLASH] = ACTIONS(2705), - [anon_sym_PERCENT] = ACTIONS(2705), - [anon_sym_DASH_DASH] = ACTIONS(752), - [anon_sym_PLUS_PLUS] = ACTIONS(752), - [anon_sym_sizeof] = ACTIONS(754), - [anon_sym_DOT] = ACTIONS(2701), - [anon_sym_DASH_GT] = ACTIONS(2701), - [sym_number_literal] = ACTIONS(2206), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(2208), - [sym_false] = ACTIONS(2208), - [sym_null] = ACTIONS(2208), - [sym_identifier] = ACTIONS(2208), - [sym_comment] = ACTIONS(37), + [sym_compound_statement] = STATE(1006), + [sym_labeled_statement] = STATE(1006), + [sym_expression_statement] = STATE(1006), + [sym_if_statement] = STATE(1006), + [sym_switch_statement] = STATE(1006), + [sym_case_statement] = STATE(1006), + [sym_while_statement] = STATE(1006), + [sym_do_statement] = STATE(1006), + [sym_for_statement] = STATE(1006), + [sym_return_statement] = STATE(1006), + [sym_break_statement] = STATE(1006), + [sym_continue_statement] = STATE(1006), + [sym_goto_statement] = STATE(1006), + [sym__expression] = STATE(756), + [sym_comma_expression] = STATE(757), + [sym_conditional_expression] = STATE(756), + [sym_assignment_expression] = STATE(756), + [sym_pointer_expression] = STATE(756), + [sym_logical_expression] = STATE(756), + [sym_bitwise_expression] = STATE(756), + [sym_equality_expression] = STATE(756), + [sym_relational_expression] = STATE(756), + [sym_shift_expression] = STATE(756), + [sym_math_expression] = STATE(756), + [sym_cast_expression] = STATE(756), + [sym_sizeof_expression] = STATE(756), + [sym_subscript_expression] = STATE(756), + [sym_call_expression] = STATE(756), + [sym_field_expression] = STATE(756), + [sym_compound_literal_expression] = STATE(756), + [sym_parenthesized_expression] = STATE(756), + [sym_char_literal] = STATE(756), + [sym_concatenated_string] = STATE(756), + [sym_string_literal] = STATE(374), + [anon_sym_SEMI] = ACTIONS(1940), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_LPAREN2] = ACTIONS(936), + [anon_sym_STAR] = ACTIONS(938), + [anon_sym_if] = ACTIONS(2752), + [anon_sym_switch] = ACTIONS(2754), + [anon_sym_case] = ACTIONS(2756), + [anon_sym_default] = ACTIONS(2758), + [anon_sym_while] = ACTIONS(2760), + [anon_sym_do] = ACTIONS(1962), + [anon_sym_for] = ACTIONS(2762), + [anon_sym_return] = ACTIONS(1966), + [anon_sym_break] = ACTIONS(1968), + [anon_sym_continue] = ACTIONS(1970), + [anon_sym_goto] = ACTIONS(1972), + [anon_sym_AMP] = ACTIONS(938), + [anon_sym_BANG] = ACTIONS(962), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_DASH_DASH] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(968), + [anon_sym_sizeof] = ACTIONS(970), + [sym_number_literal] = ACTIONS(1974), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(1976), + [sym_false] = ACTIONS(1976), + [sym_null] = ACTIONS(1976), + [sym_identifier] = ACTIONS(2764), + [sym_comment] = ACTIONS(59), }, [907] = { - [sym__expression] = STATE(997), - [sym_conditional_expression] = STATE(997), - [sym_assignment_expression] = STATE(997), - [sym_pointer_expression] = STATE(997), - [sym_logical_expression] = STATE(997), - [sym_bitwise_expression] = STATE(997), - [sym_equality_expression] = STATE(997), - [sym_relational_expression] = STATE(997), - [sym_shift_expression] = STATE(997), - [sym_math_expression] = STATE(997), - [sym_cast_expression] = STATE(997), - [sym_sizeof_expression] = STATE(997), - [sym_subscript_expression] = STATE(997), - [sym_call_expression] = STATE(997), - [sym_field_expression] = STATE(997), - [sym_compound_literal_expression] = STATE(997), - [sym_parenthesized_expression] = STATE(997), - [sym_char_literal] = STATE(997), - [sym_concatenated_string] = STATE(997), - [sym_string_literal] = STATE(318), - [anon_sym_LPAREN2] = ACTIONS(742), - [anon_sym_STAR] = ACTIONS(744), - [anon_sym_AMP] = ACTIONS(744), - [anon_sym_BANG] = ACTIONS(746), - [anon_sym_TILDE] = ACTIONS(748), - [anon_sym_PLUS] = ACTIONS(750), - [anon_sym_DASH] = ACTIONS(750), - [anon_sym_DASH_DASH] = ACTIONS(752), - [anon_sym_PLUS_PLUS] = ACTIONS(752), - [anon_sym_sizeof] = ACTIONS(754), - [sym_number_literal] = ACTIONS(2754), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(2756), - [sym_false] = ACTIONS(2756), - [sym_null] = ACTIONS(2756), - [sym_identifier] = ACTIONS(2756), - [sym_comment] = ACTIONS(37), + [sym_compound_statement] = STATE(1008), + [sym_labeled_statement] = STATE(1008), + [sym_expression_statement] = STATE(1008), + [sym_if_statement] = STATE(1008), + [sym_switch_statement] = STATE(1008), + [sym_case_statement] = STATE(1008), + [sym_while_statement] = STATE(1008), + [sym_do_statement] = STATE(1008), + [sym_for_statement] = STATE(1008), + [sym_return_statement] = STATE(1008), + [sym_break_statement] = STATE(1008), + [sym_continue_statement] = STATE(1008), + [sym_goto_statement] = STATE(1008), + [sym__expression] = STATE(756), + [sym_comma_expression] = STATE(757), + [sym_conditional_expression] = STATE(756), + [sym_assignment_expression] = STATE(756), + [sym_pointer_expression] = STATE(756), + [sym_logical_expression] = STATE(756), + [sym_bitwise_expression] = STATE(756), + [sym_equality_expression] = STATE(756), + [sym_relational_expression] = STATE(756), + [sym_shift_expression] = STATE(756), + [sym_math_expression] = STATE(756), + [sym_cast_expression] = STATE(756), + [sym_sizeof_expression] = STATE(756), + [sym_subscript_expression] = STATE(756), + [sym_call_expression] = STATE(756), + [sym_field_expression] = STATE(756), + [sym_compound_literal_expression] = STATE(756), + [sym_parenthesized_expression] = STATE(756), + [sym_char_literal] = STATE(756), + [sym_concatenated_string] = STATE(756), + [sym_string_literal] = STATE(374), + [anon_sym_SEMI] = ACTIONS(1940), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_LPAREN2] = ACTIONS(936), + [anon_sym_STAR] = ACTIONS(938), + [anon_sym_if] = ACTIONS(1952), + [anon_sym_switch] = ACTIONS(1954), + [anon_sym_case] = ACTIONS(1956), + [anon_sym_default] = ACTIONS(1958), + [anon_sym_while] = ACTIONS(1960), + [anon_sym_do] = ACTIONS(1962), + [anon_sym_for] = ACTIONS(1964), + [anon_sym_return] = ACTIONS(1966), + [anon_sym_break] = ACTIONS(1968), + [anon_sym_continue] = ACTIONS(1970), + [anon_sym_goto] = ACTIONS(1972), + [anon_sym_AMP] = ACTIONS(938), + [anon_sym_BANG] = ACTIONS(962), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_DASH_DASH] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(968), + [anon_sym_sizeof] = ACTIONS(970), + [sym_number_literal] = ACTIONS(1974), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(1976), + [sym_false] = ACTIONS(1976), + [sym_null] = ACTIONS(1976), + [sym_identifier] = ACTIONS(2766), + [sym_comment] = ACTIONS(59), }, [908] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2758), - [sym_comment] = ACTIONS(37), + [sym_argument_list] = STATE(98), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(1054), + [anon_sym_LBRACK] = ACTIONS(188), + [anon_sym_EQ] = ACTIONS(1056), + [anon_sym_COLON] = ACTIONS(2768), + [anon_sym_QMARK] = ACTIONS(1060), + [anon_sym_STAR_EQ] = ACTIONS(1062), + [anon_sym_SLASH_EQ] = ACTIONS(1062), + [anon_sym_PERCENT_EQ] = ACTIONS(1062), + [anon_sym_PLUS_EQ] = ACTIONS(1062), + [anon_sym_DASH_EQ] = ACTIONS(1062), + [anon_sym_LT_LT_EQ] = ACTIONS(1062), + [anon_sym_GT_GT_EQ] = ACTIONS(1062), + [anon_sym_AMP_EQ] = ACTIONS(1062), + [anon_sym_CARET_EQ] = ACTIONS(1062), + [anon_sym_PIPE_EQ] = ACTIONS(1062), + [anon_sym_AMP] = ACTIONS(1064), + [anon_sym_PIPE_PIPE] = ACTIONS(1066), + [anon_sym_AMP_AMP] = ACTIONS(1068), + [anon_sym_PIPE] = ACTIONS(1070), + [anon_sym_CARET] = ACTIONS(1072), + [anon_sym_EQ_EQ] = ACTIONS(1074), + [anon_sym_BANG_EQ] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(1076), + [anon_sym_GT] = ACTIONS(1076), + [anon_sym_LT_EQ] = ACTIONS(1078), + [anon_sym_GT_EQ] = ACTIONS(1078), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_GT_GT] = ACTIONS(1080), + [anon_sym_PLUS] = ACTIONS(1082), + [anon_sym_DASH] = ACTIONS(1082), + [anon_sym_SLASH] = ACTIONS(1054), + [anon_sym_PERCENT] = ACTIONS(1054), + [anon_sym_DASH_DASH] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(216), + [anon_sym_DOT] = ACTIONS(218), + [anon_sym_DASH_GT] = ACTIONS(218), + [sym_comment] = ACTIONS(59), }, [909] = { - [sym__expression] = STATE(838), - [sym_conditional_expression] = STATE(838), - [sym_assignment_expression] = STATE(838), - [sym_pointer_expression] = STATE(838), - [sym_logical_expression] = STATE(838), - [sym_bitwise_expression] = STATE(838), - [sym_equality_expression] = STATE(838), - [sym_relational_expression] = STATE(838), - [sym_shift_expression] = STATE(838), - [sym_math_expression] = STATE(838), - [sym_cast_expression] = STATE(838), - [sym_sizeof_expression] = STATE(838), - [sym_subscript_expression] = STATE(838), - [sym_call_expression] = STATE(838), - [sym_field_expression] = STATE(838), - [sym_compound_literal_expression] = STATE(838), - [sym_parenthesized_expression] = STATE(838), - [sym_initializer_list] = STATE(839), - [sym_char_literal] = STATE(838), - [sym_concatenated_string] = STATE(838), - [sym_string_literal] = STATE(342), - [anon_sym_SEMI] = ACTIONS(2701), - [anon_sym_LBRACE] = ACTIONS(585), - [anon_sym_LPAREN2] = ACTIONS(780), - [anon_sym_STAR] = ACTIONS(2760), - [anon_sym_LBRACK] = ACTIONS(2701), - [anon_sym_EQ] = ACTIONS(2705), - [anon_sym_QMARK] = ACTIONS(2701), - [anon_sym_STAR_EQ] = ACTIONS(2701), - [anon_sym_SLASH_EQ] = ACTIONS(2701), - [anon_sym_PERCENT_EQ] = ACTIONS(2701), - [anon_sym_PLUS_EQ] = ACTIONS(2701), - [anon_sym_DASH_EQ] = ACTIONS(2701), - [anon_sym_LT_LT_EQ] = ACTIONS(2701), - [anon_sym_GT_GT_EQ] = ACTIONS(2701), - [anon_sym_AMP_EQ] = ACTIONS(2701), - [anon_sym_CARET_EQ] = ACTIONS(2701), - [anon_sym_PIPE_EQ] = ACTIONS(2701), - [anon_sym_AMP] = ACTIONS(2760), - [anon_sym_PIPE_PIPE] = ACTIONS(2701), - [anon_sym_AMP_AMP] = ACTIONS(2701), - [anon_sym_BANG] = ACTIONS(2762), - [anon_sym_PIPE] = ACTIONS(2705), - [anon_sym_CARET] = ACTIONS(2705), - [anon_sym_TILDE] = ACTIONS(786), - [anon_sym_EQ_EQ] = ACTIONS(2701), - [anon_sym_BANG_EQ] = ACTIONS(2701), - [anon_sym_LT] = ACTIONS(2705), - [anon_sym_GT] = ACTIONS(2705), - [anon_sym_LT_EQ] = ACTIONS(2701), - [anon_sym_GT_EQ] = ACTIONS(2701), - [anon_sym_LT_LT] = ACTIONS(2705), - [anon_sym_GT_GT] = ACTIONS(2705), - [anon_sym_PLUS] = ACTIONS(788), - [anon_sym_DASH] = ACTIONS(788), - [anon_sym_SLASH] = ACTIONS(2705), - [anon_sym_PERCENT] = ACTIONS(2705), - [anon_sym_DASH_DASH] = ACTIONS(790), - [anon_sym_PLUS_PLUS] = ACTIONS(790), - [anon_sym_sizeof] = ACTIONS(792), - [anon_sym_DOT] = ACTIONS(2701), - [anon_sym_DASH_GT] = ACTIONS(2701), - [sym_number_literal] = ACTIONS(2206), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(2208), - [sym_false] = ACTIONS(2208), - [sym_null] = ACTIONS(2208), - [sym_identifier] = ACTIONS(2208), - [sym_comment] = ACTIONS(37), + [sym_declaration] = STATE(1011), + [sym_type_definition] = STATE(1011), + [sym__declaration_specifiers] = STATE(1012), + [sym_compound_statement] = STATE(1011), + [sym_storage_class_specifier] = STATE(142), + [sym_type_qualifier] = STATE(142), + [sym__type_specifier] = STATE(141), + [sym_sized_type_specifier] = STATE(141), + [sym_enum_specifier] = STATE(141), + [sym_struct_specifier] = STATE(141), + [sym_union_specifier] = STATE(141), + [sym_labeled_statement] = STATE(1011), + [sym_expression_statement] = STATE(1011), + [sym_if_statement] = STATE(1011), + [sym_switch_statement] = STATE(1011), + [sym_case_statement] = STATE(1011), + [sym_while_statement] = STATE(1011), + [sym_do_statement] = STATE(1011), + [sym_for_statement] = STATE(1011), + [sym_return_statement] = STATE(1011), + [sym_break_statement] = STATE(1011), + [sym_continue_statement] = STATE(1011), + [sym_goto_statement] = STATE(1011), + [sym__expression] = STATE(756), + [sym_comma_expression] = STATE(757), + [sym_conditional_expression] = STATE(756), + [sym_assignment_expression] = STATE(756), + [sym_pointer_expression] = STATE(756), + [sym_logical_expression] = STATE(756), + [sym_bitwise_expression] = STATE(756), + [sym_equality_expression] = STATE(756), + [sym_relational_expression] = STATE(756), + [sym_shift_expression] = STATE(756), + [sym_math_expression] = STATE(756), + [sym_cast_expression] = STATE(756), + [sym_sizeof_expression] = STATE(756), + [sym_subscript_expression] = STATE(756), + [sym_call_expression] = STATE(756), + [sym_field_expression] = STATE(756), + [sym_compound_literal_expression] = STATE(756), + [sym_parenthesized_expression] = STATE(756), + [sym_char_literal] = STATE(756), + [sym_concatenated_string] = STATE(756), + [sym_string_literal] = STATE(374), + [sym_macro_type_specifier] = STATE(141), + [aux_sym__declaration_specifiers_repeat1] = STATE(142), + [aux_sym_sized_type_specifier_repeat1] = STATE(143), + [anon_sym_SEMI] = ACTIONS(1940), + [anon_sym_typedef] = ACTIONS(267), + [anon_sym_extern] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_LPAREN2] = ACTIONS(936), + [anon_sym_STAR] = ACTIONS(938), + [anon_sym_static] = ACTIONS(25), + [anon_sym_auto] = ACTIONS(25), + [anon_sym_register] = ACTIONS(25), + [anon_sym_inline] = ACTIONS(25), + [anon_sym_const] = ACTIONS(27), + [anon_sym_restrict] = ACTIONS(27), + [anon_sym_volatile] = ACTIONS(27), + [anon_sym__Atomic] = ACTIONS(27), + [anon_sym_unsigned] = ACTIONS(294), + [anon_sym_long] = ACTIONS(294), + [anon_sym_short] = ACTIONS(294), + [sym_primitive_type] = ACTIONS(296), + [anon_sym_enum] = ACTIONS(33), + [anon_sym_struct] = ACTIONS(35), + [anon_sym_union] = ACTIONS(37), + [anon_sym_if] = ACTIONS(1952), + [anon_sym_switch] = ACTIONS(1954), + [anon_sym_case] = ACTIONS(1956), + [anon_sym_default] = ACTIONS(1958), + [anon_sym_while] = ACTIONS(1960), + [anon_sym_do] = ACTIONS(1962), + [anon_sym_for] = ACTIONS(1964), + [anon_sym_return] = ACTIONS(1966), + [anon_sym_break] = ACTIONS(1968), + [anon_sym_continue] = ACTIONS(1970), + [anon_sym_goto] = ACTIONS(1972), + [anon_sym_AMP] = ACTIONS(938), + [anon_sym_BANG] = ACTIONS(962), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_DASH_DASH] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(968), + [anon_sym_sizeof] = ACTIONS(970), + [sym_number_literal] = ACTIONS(1974), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(1976), + [sym_false] = ACTIONS(1976), + [sym_null] = ACTIONS(1976), + [sym_identifier] = ACTIONS(2770), + [sym_comment] = ACTIONS(59), }, [910] = { - [sym__expression] = STATE(998), - [sym_conditional_expression] = STATE(998), - [sym_assignment_expression] = STATE(998), - [sym_pointer_expression] = STATE(998), - [sym_logical_expression] = STATE(998), - [sym_bitwise_expression] = STATE(998), - [sym_equality_expression] = STATE(998), - [sym_relational_expression] = STATE(998), - [sym_shift_expression] = STATE(998), - [sym_math_expression] = STATE(998), - [sym_cast_expression] = STATE(998), - [sym_sizeof_expression] = STATE(998), - [sym_subscript_expression] = STATE(998), - [sym_call_expression] = STATE(998), - [sym_field_expression] = STATE(998), - [sym_compound_literal_expression] = STATE(998), - [sym_parenthesized_expression] = STATE(998), - [sym_char_literal] = STATE(998), - [sym_concatenated_string] = STATE(998), - [sym_string_literal] = STATE(342), - [anon_sym_LPAREN2] = ACTIONS(780), - [anon_sym_STAR] = ACTIONS(782), - [anon_sym_AMP] = ACTIONS(782), - [anon_sym_BANG] = ACTIONS(784), - [anon_sym_TILDE] = ACTIONS(786), - [anon_sym_PLUS] = ACTIONS(788), - [anon_sym_DASH] = ACTIONS(788), - [anon_sym_DASH_DASH] = ACTIONS(790), - [anon_sym_PLUS_PLUS] = ACTIONS(790), - [anon_sym_sizeof] = ACTIONS(792), - [sym_number_literal] = ACTIONS(2764), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(2766), - [sym_false] = ACTIONS(2766), - [sym_null] = ACTIONS(2766), + [sym_compound_statement] = STATE(1013), + [sym_labeled_statement] = STATE(1013), + [sym_expression_statement] = STATE(1013), + [sym_if_statement] = STATE(1013), + [sym_switch_statement] = STATE(1013), + [sym_case_statement] = STATE(1013), + [sym_while_statement] = STATE(1013), + [sym_do_statement] = STATE(1013), + [sym_for_statement] = STATE(1013), + [sym_return_statement] = STATE(1013), + [sym_break_statement] = STATE(1013), + [sym_continue_statement] = STATE(1013), + [sym_goto_statement] = STATE(1013), + [sym__expression] = STATE(756), + [sym_comma_expression] = STATE(757), + [sym_conditional_expression] = STATE(756), + [sym_assignment_expression] = STATE(756), + [sym_pointer_expression] = STATE(756), + [sym_logical_expression] = STATE(756), + [sym_bitwise_expression] = STATE(756), + [sym_equality_expression] = STATE(756), + [sym_relational_expression] = STATE(756), + [sym_shift_expression] = STATE(756), + [sym_math_expression] = STATE(756), + [sym_cast_expression] = STATE(756), + [sym_sizeof_expression] = STATE(756), + [sym_subscript_expression] = STATE(756), + [sym_call_expression] = STATE(756), + [sym_field_expression] = STATE(756), + [sym_compound_literal_expression] = STATE(756), + [sym_parenthesized_expression] = STATE(756), + [sym_char_literal] = STATE(756), + [sym_concatenated_string] = STATE(756), + [sym_string_literal] = STATE(374), + [anon_sym_SEMI] = ACTIONS(1940), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_LPAREN2] = ACTIONS(936), + [anon_sym_STAR] = ACTIONS(938), + [anon_sym_if] = ACTIONS(1952), + [anon_sym_switch] = ACTIONS(1954), + [anon_sym_case] = ACTIONS(1956), + [anon_sym_default] = ACTIONS(1958), + [anon_sym_while] = ACTIONS(1960), + [anon_sym_do] = ACTIONS(1962), + [anon_sym_for] = ACTIONS(1964), + [anon_sym_return] = ACTIONS(1966), + [anon_sym_break] = ACTIONS(1968), + [anon_sym_continue] = ACTIONS(1970), + [anon_sym_goto] = ACTIONS(1972), + [anon_sym_AMP] = ACTIONS(938), + [anon_sym_BANG] = ACTIONS(962), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_DASH_DASH] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(968), + [anon_sym_sizeof] = ACTIONS(970), + [sym_number_literal] = ACTIONS(1974), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(1976), + [sym_false] = ACTIONS(1976), + [sym_null] = ACTIONS(1976), [sym_identifier] = ACTIONS(2766), - [sym_comment] = ACTIONS(37), + [sym_comment] = ACTIONS(59), }, [911] = { - [anon_sym_COMMA] = ACTIONS(2768), - [anon_sym_RPAREN] = ACTIONS(2768), - [anon_sym_SEMI] = ACTIONS(2768), - [anon_sym_LPAREN2] = ACTIONS(2768), - [anon_sym_LBRACK] = ACTIONS(2768), - [anon_sym_COLON] = ACTIONS(2768), - [sym_comment] = ACTIONS(37), + [anon_sym_while] = ACTIONS(2772), + [sym_comment] = ACTIONS(59), }, [912] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2770), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2772), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2772), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2772), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2772), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2772), - [anon_sym_extern] = ACTIONS(2770), - [anon_sym_RBRACE] = ACTIONS(2772), - [anon_sym_static] = ACTIONS(2770), - [anon_sym_auto] = ACTIONS(2770), - [anon_sym_register] = ACTIONS(2770), - [anon_sym_inline] = ACTIONS(2770), - [anon_sym_const] = ACTIONS(2770), - [anon_sym_restrict] = ACTIONS(2770), - [anon_sym_volatile] = ACTIONS(2770), - [anon_sym__Atomic] = ACTIONS(2770), - [anon_sym_unsigned] = ACTIONS(2770), - [anon_sym_long] = ACTIONS(2770), - [anon_sym_short] = ACTIONS(2770), - [sym_primitive_type] = ACTIONS(2770), - [anon_sym_enum] = ACTIONS(2770), - [anon_sym_struct] = ACTIONS(2770), - [anon_sym_union] = ACTIONS(2770), - [sym_identifier] = ACTIONS(2770), - [sym_comment] = ACTIONS(37), + [sym_declaration] = STATE(1015), + [sym__declaration_specifiers] = STATE(778), + [sym_storage_class_specifier] = STATE(142), + [sym_type_qualifier] = STATE(142), + [sym__type_specifier] = STATE(141), + [sym_sized_type_specifier] = STATE(141), + [sym_enum_specifier] = STATE(141), + [sym_struct_specifier] = STATE(141), + [sym_union_specifier] = STATE(141), + [sym__expression] = STATE(1016), + [sym_conditional_expression] = STATE(1016), + [sym_assignment_expression] = STATE(1016), + [sym_pointer_expression] = STATE(1016), + [sym_logical_expression] = STATE(1016), + [sym_bitwise_expression] = STATE(1016), + [sym_equality_expression] = STATE(1016), + [sym_relational_expression] = STATE(1016), + [sym_shift_expression] = STATE(1016), + [sym_math_expression] = STATE(1016), + [sym_cast_expression] = STATE(1016), + [sym_sizeof_expression] = STATE(1016), + [sym_subscript_expression] = STATE(1016), + [sym_call_expression] = STATE(1016), + [sym_field_expression] = STATE(1016), + [sym_compound_literal_expression] = STATE(1016), + [sym_parenthesized_expression] = STATE(1016), + [sym_char_literal] = STATE(1016), + [sym_concatenated_string] = STATE(1016), + [sym_string_literal] = STATE(534), + [sym_macro_type_specifier] = STATE(141), + [aux_sym__declaration_specifiers_repeat1] = STATE(142), + [aux_sym_sized_type_specifier_repeat1] = STATE(143), + [anon_sym_SEMI] = ACTIONS(2774), + [anon_sym_extern] = ACTIONS(25), + [anon_sym_LPAREN2] = ACTIONS(1349), + [anon_sym_STAR] = ACTIONS(1351), + [anon_sym_static] = ACTIONS(25), + [anon_sym_auto] = ACTIONS(25), + [anon_sym_register] = ACTIONS(25), + [anon_sym_inline] = ACTIONS(25), + [anon_sym_const] = ACTIONS(27), + [anon_sym_restrict] = ACTIONS(27), + [anon_sym_volatile] = ACTIONS(27), + [anon_sym__Atomic] = ACTIONS(27), + [anon_sym_unsigned] = ACTIONS(294), + [anon_sym_long] = ACTIONS(294), + [anon_sym_short] = ACTIONS(294), + [sym_primitive_type] = ACTIONS(296), + [anon_sym_enum] = ACTIONS(33), + [anon_sym_struct] = ACTIONS(35), + [anon_sym_union] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(1351), + [anon_sym_BANG] = ACTIONS(1353), + [anon_sym_TILDE] = ACTIONS(1355), + [anon_sym_PLUS] = ACTIONS(1357), + [anon_sym_DASH] = ACTIONS(1357), + [anon_sym_DASH_DASH] = ACTIONS(1359), + [anon_sym_PLUS_PLUS] = ACTIONS(1359), + [anon_sym_sizeof] = ACTIONS(1361), + [sym_number_literal] = ACTIONS(2776), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(2778), + [sym_false] = ACTIONS(2778), + [sym_null] = ACTIONS(2778), + [sym_identifier] = ACTIONS(2026), + [sym_comment] = ACTIONS(59), }, [913] = { - [anon_sym_COMMA] = ACTIONS(2774), - [anon_sym_RPAREN] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [sym_comment] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(2028), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2030), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2030), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2030), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2030), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2030), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2030), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2030), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2030), + [sym_preproc_directive] = ACTIONS(2030), + [anon_sym_typedef] = ACTIONS(2030), + [anon_sym_extern] = ACTIONS(2030), + [anon_sym_LBRACE] = ACTIONS(2028), + [anon_sym_LPAREN2] = ACTIONS(2028), + [anon_sym_STAR] = ACTIONS(2028), + [anon_sym_static] = ACTIONS(2030), + [anon_sym_auto] = ACTIONS(2030), + [anon_sym_register] = ACTIONS(2030), + [anon_sym_inline] = ACTIONS(2030), + [anon_sym_const] = ACTIONS(2030), + [anon_sym_restrict] = ACTIONS(2030), + [anon_sym_volatile] = ACTIONS(2030), + [anon_sym__Atomic] = ACTIONS(2030), + [anon_sym_unsigned] = ACTIONS(2030), + [anon_sym_long] = ACTIONS(2030), + [anon_sym_short] = ACTIONS(2030), + [sym_primitive_type] = ACTIONS(2030), + [anon_sym_enum] = ACTIONS(2030), + [anon_sym_struct] = ACTIONS(2030), + [anon_sym_union] = ACTIONS(2030), + [anon_sym_if] = ACTIONS(2030), + [anon_sym_else] = ACTIONS(2030), + [anon_sym_switch] = ACTIONS(2030), + [anon_sym_case] = ACTIONS(2030), + [anon_sym_default] = ACTIONS(2030), + [anon_sym_while] = ACTIONS(2030), + [anon_sym_do] = ACTIONS(2030), + [anon_sym_for] = ACTIONS(2030), + [anon_sym_return] = ACTIONS(2030), + [anon_sym_break] = ACTIONS(2030), + [anon_sym_continue] = ACTIONS(2030), + [anon_sym_goto] = ACTIONS(2030), + [anon_sym_AMP] = ACTIONS(2028), + [anon_sym_BANG] = ACTIONS(2028), + [anon_sym_TILDE] = ACTIONS(2028), + [anon_sym_PLUS] = ACTIONS(2030), + [anon_sym_DASH] = ACTIONS(2030), + [anon_sym_DASH_DASH] = ACTIONS(2028), + [anon_sym_PLUS_PLUS] = ACTIONS(2028), + [anon_sym_sizeof] = ACTIONS(2030), + [sym_number_literal] = ACTIONS(2028), + [anon_sym_SQUOTE] = ACTIONS(2028), + [anon_sym_DQUOTE] = ACTIONS(2028), + [sym_true] = ACTIONS(2030), + [sym_false] = ACTIONS(2030), + [sym_null] = ACTIONS(2030), + [sym_identifier] = ACTIONS(2030), + [sym_comment] = ACTIONS(59), }, [914] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2070), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2070), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2070), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2070), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2070), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2070), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2070), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2070), - [sym_preproc_directive] = ACTIONS(2070), - [anon_sym_SEMI] = ACTIONS(2072), - [anon_sym_typedef] = ACTIONS(2070), - [anon_sym_extern] = ACTIONS(2070), - [anon_sym_LBRACE] = ACTIONS(2072), - [anon_sym_LPAREN2] = ACTIONS(2072), - [anon_sym_STAR] = ACTIONS(2072), - [anon_sym_static] = ACTIONS(2070), - [anon_sym_auto] = ACTIONS(2070), - [anon_sym_register] = ACTIONS(2070), - [anon_sym_inline] = ACTIONS(2070), - [anon_sym_const] = ACTIONS(2070), - [anon_sym_restrict] = ACTIONS(2070), - [anon_sym_volatile] = ACTIONS(2070), - [anon_sym__Atomic] = ACTIONS(2070), - [anon_sym_unsigned] = ACTIONS(2070), - [anon_sym_long] = ACTIONS(2070), - [anon_sym_short] = ACTIONS(2070), - [sym_primitive_type] = ACTIONS(2070), - [anon_sym_enum] = ACTIONS(2070), - [anon_sym_struct] = ACTIONS(2070), - [anon_sym_union] = ACTIONS(2070), - [anon_sym_if] = ACTIONS(2070), - [anon_sym_switch] = ACTIONS(2070), - [anon_sym_case] = ACTIONS(2070), - [anon_sym_default] = ACTIONS(2070), - [anon_sym_while] = ACTIONS(2070), - [anon_sym_do] = ACTIONS(2070), - [anon_sym_for] = ACTIONS(2070), - [anon_sym_return] = ACTIONS(2070), - [anon_sym_break] = ACTIONS(2070), - [anon_sym_continue] = ACTIONS(2070), - [anon_sym_goto] = ACTIONS(2070), - [anon_sym_AMP] = ACTIONS(2072), - [anon_sym_BANG] = ACTIONS(2072), - [anon_sym_TILDE] = ACTIONS(2072), - [anon_sym_PLUS] = ACTIONS(2070), - [anon_sym_DASH] = ACTIONS(2070), - [anon_sym_DASH_DASH] = ACTIONS(2072), - [anon_sym_PLUS_PLUS] = ACTIONS(2072), - [anon_sym_sizeof] = ACTIONS(2070), - [sym_number_literal] = ACTIONS(2072), - [anon_sym_SQUOTE] = ACTIONS(2072), - [anon_sym_DQUOTE] = ACTIONS(2072), - [sym_true] = ACTIONS(2070), - [sym_false] = ACTIONS(2070), - [sym_null] = ACTIONS(2070), - [sym_identifier] = ACTIONS(2070), - [sym_comment] = ACTIONS(37), + [sym_argument_list] = STATE(98), + [anon_sym_SEMI] = ACTIONS(2780), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_LBRACK] = ACTIONS(188), + [anon_sym_EQ] = ACTIONS(1896), + [anon_sym_QMARK] = ACTIONS(1898), + [anon_sym_STAR_EQ] = ACTIONS(1900), + [anon_sym_SLASH_EQ] = ACTIONS(1900), + [anon_sym_PERCENT_EQ] = ACTIONS(1900), + [anon_sym_PLUS_EQ] = ACTIONS(1900), + [anon_sym_DASH_EQ] = ACTIONS(1900), + [anon_sym_LT_LT_EQ] = ACTIONS(1900), + [anon_sym_GT_GT_EQ] = ACTIONS(1900), + [anon_sym_AMP_EQ] = ACTIONS(1900), + [anon_sym_CARET_EQ] = ACTIONS(1900), + [anon_sym_PIPE_EQ] = ACTIONS(1900), + [anon_sym_AMP] = ACTIONS(1902), + [anon_sym_PIPE_PIPE] = ACTIONS(1904), + [anon_sym_AMP_AMP] = ACTIONS(1906), + [anon_sym_PIPE] = ACTIONS(1908), + [anon_sym_CARET] = ACTIONS(1910), + [anon_sym_EQ_EQ] = ACTIONS(1912), + [anon_sym_BANG_EQ] = ACTIONS(1912), + [anon_sym_LT] = ACTIONS(1914), + [anon_sym_GT] = ACTIONS(1914), + [anon_sym_LT_EQ] = ACTIONS(1916), + [anon_sym_GT_EQ] = ACTIONS(1916), + [anon_sym_LT_LT] = ACTIONS(1918), + [anon_sym_GT_GT] = ACTIONS(1918), + [anon_sym_PLUS] = ACTIONS(1920), + [anon_sym_DASH] = ACTIONS(1920), + [anon_sym_SLASH] = ACTIONS(1894), + [anon_sym_PERCENT] = ACTIONS(1894), + [anon_sym_DASH_DASH] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(216), + [anon_sym_DOT] = ACTIONS(218), + [anon_sym_DASH_GT] = ACTIONS(218), + [sym_comment] = ACTIONS(59), }, [915] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2776), - [sym_comment] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(2034), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2036), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2036), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2036), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2036), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2036), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2036), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2036), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2036), + [sym_preproc_directive] = ACTIONS(2036), + [anon_sym_typedef] = ACTIONS(2036), + [anon_sym_extern] = ACTIONS(2036), + [anon_sym_LBRACE] = ACTIONS(2034), + [anon_sym_LPAREN2] = ACTIONS(2034), + [anon_sym_STAR] = ACTIONS(2034), + [anon_sym_static] = ACTIONS(2036), + [anon_sym_auto] = ACTIONS(2036), + [anon_sym_register] = ACTIONS(2036), + [anon_sym_inline] = ACTIONS(2036), + [anon_sym_const] = ACTIONS(2036), + [anon_sym_restrict] = ACTIONS(2036), + [anon_sym_volatile] = ACTIONS(2036), + [anon_sym__Atomic] = ACTIONS(2036), + [anon_sym_unsigned] = ACTIONS(2036), + [anon_sym_long] = ACTIONS(2036), + [anon_sym_short] = ACTIONS(2036), + [sym_primitive_type] = ACTIONS(2036), + [anon_sym_enum] = ACTIONS(2036), + [anon_sym_struct] = ACTIONS(2036), + [anon_sym_union] = ACTIONS(2036), + [anon_sym_if] = ACTIONS(2036), + [anon_sym_else] = ACTIONS(2036), + [anon_sym_switch] = ACTIONS(2036), + [anon_sym_case] = ACTIONS(2036), + [anon_sym_default] = ACTIONS(2036), + [anon_sym_while] = ACTIONS(2036), + [anon_sym_do] = ACTIONS(2036), + [anon_sym_for] = ACTIONS(2036), + [anon_sym_return] = ACTIONS(2036), + [anon_sym_break] = ACTIONS(2036), + [anon_sym_continue] = ACTIONS(2036), + [anon_sym_goto] = ACTIONS(2036), + [anon_sym_AMP] = ACTIONS(2034), + [anon_sym_BANG] = ACTIONS(2034), + [anon_sym_TILDE] = ACTIONS(2034), + [anon_sym_PLUS] = ACTIONS(2036), + [anon_sym_DASH] = ACTIONS(2036), + [anon_sym_DASH_DASH] = ACTIONS(2034), + [anon_sym_PLUS_PLUS] = ACTIONS(2034), + [anon_sym_sizeof] = ACTIONS(2036), + [sym_number_literal] = ACTIONS(2034), + [anon_sym_SQUOTE] = ACTIONS(2034), + [anon_sym_DQUOTE] = ACTIONS(2034), + [sym_true] = ACTIONS(2036), + [sym_false] = ACTIONS(2036), + [sym_null] = ACTIONS(2036), + [sym_identifier] = ACTIONS(2036), + [sym_comment] = ACTIONS(59), }, [916] = { - [sym_preproc_include] = STATE(821), - [sym_preproc_def] = STATE(821), - [sym_preproc_function_def] = STATE(821), - [sym_preproc_call] = STATE(821), - [sym_preproc_if_in_compound_statement] = STATE(821), - [sym_preproc_ifdef_in_compound_statement] = STATE(821), - [sym_preproc_else_in_compound_statement] = STATE(1000), - [sym_preproc_elif_in_compound_statement] = STATE(1000), - [sym_declaration] = STATE(821), - [sym_type_definition] = STATE(821), - [sym__declaration_specifiers] = STATE(593), - [sym_compound_statement] = STATE(821), - [sym_storage_class_specifier] = STATE(19), - [sym_type_qualifier] = STATE(19), - [sym__type_specifier] = STATE(17), - [sym_sized_type_specifier] = STATE(17), - [sym_enum_specifier] = STATE(17), - [sym_struct_specifier] = STATE(17), - [sym_union_specifier] = STATE(17), - [sym_labeled_statement] = STATE(821), - [sym_expression_statement] = STATE(821), - [sym_if_statement] = STATE(821), - [sym_switch_statement] = STATE(821), - [sym_case_statement] = STATE(821), - [sym_while_statement] = STATE(821), - [sym_do_statement] = STATE(821), - [sym_for_statement] = STATE(821), - [sym_return_statement] = STATE(821), - [sym_break_statement] = STATE(821), - [sym_continue_statement] = STATE(821), - [sym_goto_statement] = STATE(821), - [sym__expression] = STATE(594), - [sym_comma_expression] = STATE(595), - [sym_conditional_expression] = STATE(594), - [sym_assignment_expression] = STATE(594), - [sym_pointer_expression] = STATE(594), - [sym_logical_expression] = STATE(594), - [sym_bitwise_expression] = STATE(594), - [sym_equality_expression] = STATE(594), - [sym_relational_expression] = STATE(594), - [sym_shift_expression] = STATE(594), - [sym_math_expression] = STATE(594), - [sym_cast_expression] = STATE(594), - [sym_sizeof_expression] = STATE(594), - [sym_subscript_expression] = STATE(594), - [sym_call_expression] = STATE(594), - [sym_field_expression] = STATE(594), - [sym_compound_literal_expression] = STATE(594), - [sym_parenthesized_expression] = STATE(594), - [sym_char_literal] = STATE(594), - [sym_concatenated_string] = STATE(594), - [sym_string_literal] = STATE(230), - [sym__empty_declaration] = STATE(821), - [sym_macro_type_specifier] = STATE(17), - [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(821), - [aux_sym__declaration_specifiers_repeat1] = STATE(19), - [aux_sym_sized_type_specifier_repeat1] = STATE(20), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(127), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(129), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1385), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2778), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1389), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1389), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1391), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1393), - [sym_preproc_directive] = ACTIONS(141), - [anon_sym_SEMI] = ACTIONS(1395), - [anon_sym_typedef] = ACTIONS(143), - [anon_sym_extern] = ACTIONS(21), - [anon_sym_LBRACE] = ACTIONS(678), - [anon_sym_LPAREN2] = ACTIONS(507), - [anon_sym_STAR] = ACTIONS(509), - [anon_sym_static] = ACTIONS(21), - [anon_sym_auto] = ACTIONS(21), - [anon_sym_register] = ACTIONS(21), - [anon_sym_inline] = ACTIONS(21), - [anon_sym_const] = ACTIONS(23), - [anon_sym_restrict] = ACTIONS(23), - [anon_sym_volatile] = ACTIONS(23), - [anon_sym__Atomic] = ACTIONS(23), - [anon_sym_unsigned] = ACTIONS(25), - [anon_sym_long] = ACTIONS(25), - [anon_sym_short] = ACTIONS(25), - [sym_primitive_type] = ACTIONS(27), - [anon_sym_enum] = ACTIONS(29), - [anon_sym_struct] = ACTIONS(31), - [anon_sym_union] = ACTIONS(33), - [anon_sym_if] = ACTIONS(1397), - [anon_sym_switch] = ACTIONS(1399), - [anon_sym_case] = ACTIONS(1401), - [anon_sym_default] = ACTIONS(1403), - [anon_sym_while] = ACTIONS(1405), - [anon_sym_do] = ACTIONS(1407), - [anon_sym_for] = ACTIONS(1409), - [anon_sym_return] = ACTIONS(1411), - [anon_sym_break] = ACTIONS(1413), - [anon_sym_continue] = ACTIONS(1415), - [anon_sym_goto] = ACTIONS(1417), - [anon_sym_AMP] = ACTIONS(509), - [anon_sym_BANG] = ACTIONS(533), - [anon_sym_TILDE] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DASH] = ACTIONS(537), - [anon_sym_DASH_DASH] = ACTIONS(539), - [anon_sym_PLUS_PLUS] = ACTIONS(539), - [anon_sym_sizeof] = ACTIONS(541), - [sym_number_literal] = ACTIONS(1419), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(1421), - [sym_false] = ACTIONS(1421), - [sym_null] = ACTIONS(1421), - [sym_identifier] = ACTIONS(1423), - [sym_comment] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(2038), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2040), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2040), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2040), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2040), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2040), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2040), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2040), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2040), + [sym_preproc_directive] = ACTIONS(2040), + [anon_sym_typedef] = ACTIONS(2040), + [anon_sym_extern] = ACTIONS(2040), + [anon_sym_LBRACE] = ACTIONS(2038), + [anon_sym_LPAREN2] = ACTIONS(2038), + [anon_sym_STAR] = ACTIONS(2038), + [anon_sym_static] = ACTIONS(2040), + [anon_sym_auto] = ACTIONS(2040), + [anon_sym_register] = ACTIONS(2040), + [anon_sym_inline] = ACTIONS(2040), + [anon_sym_const] = ACTIONS(2040), + [anon_sym_restrict] = ACTIONS(2040), + [anon_sym_volatile] = ACTIONS(2040), + [anon_sym__Atomic] = ACTIONS(2040), + [anon_sym_unsigned] = ACTIONS(2040), + [anon_sym_long] = ACTIONS(2040), + [anon_sym_short] = ACTIONS(2040), + [sym_primitive_type] = ACTIONS(2040), + [anon_sym_enum] = ACTIONS(2040), + [anon_sym_struct] = ACTIONS(2040), + [anon_sym_union] = ACTIONS(2040), + [anon_sym_if] = ACTIONS(2040), + [anon_sym_else] = ACTIONS(2040), + [anon_sym_switch] = ACTIONS(2040), + [anon_sym_case] = ACTIONS(2040), + [anon_sym_default] = ACTIONS(2040), + [anon_sym_while] = ACTIONS(2040), + [anon_sym_do] = ACTIONS(2040), + [anon_sym_for] = ACTIONS(2040), + [anon_sym_return] = ACTIONS(2040), + [anon_sym_break] = ACTIONS(2040), + [anon_sym_continue] = ACTIONS(2040), + [anon_sym_goto] = ACTIONS(2040), + [anon_sym_AMP] = ACTIONS(2038), + [anon_sym_BANG] = ACTIONS(2038), + [anon_sym_TILDE] = ACTIONS(2038), + [anon_sym_PLUS] = ACTIONS(2040), + [anon_sym_DASH] = ACTIONS(2040), + [anon_sym_DASH_DASH] = ACTIONS(2038), + [anon_sym_PLUS_PLUS] = ACTIONS(2038), + [anon_sym_sizeof] = ACTIONS(2040), + [sym_number_literal] = ACTIONS(2038), + [anon_sym_SQUOTE] = ACTIONS(2038), + [anon_sym_DQUOTE] = ACTIONS(2038), + [sym_true] = ACTIONS(2040), + [sym_false] = ACTIONS(2040), + [sym_null] = ACTIONS(2040), + [sym_identifier] = ACTIONS(2040), + [sym_comment] = ACTIONS(59), }, [917] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2144), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2144), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2144), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2144), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2144), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2144), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2144), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2144), - [sym_preproc_directive] = ACTIONS(2144), - [anon_sym_SEMI] = ACTIONS(2146), - [anon_sym_typedef] = ACTIONS(2144), - [anon_sym_extern] = ACTIONS(2144), - [anon_sym_LBRACE] = ACTIONS(2146), - [anon_sym_LPAREN2] = ACTIONS(2146), - [anon_sym_STAR] = ACTIONS(2146), - [anon_sym_static] = ACTIONS(2144), - [anon_sym_auto] = ACTIONS(2144), - [anon_sym_register] = ACTIONS(2144), - [anon_sym_inline] = ACTIONS(2144), - [anon_sym_const] = ACTIONS(2144), - [anon_sym_restrict] = ACTIONS(2144), - [anon_sym_volatile] = ACTIONS(2144), - [anon_sym__Atomic] = ACTIONS(2144), - [anon_sym_unsigned] = ACTIONS(2144), - [anon_sym_long] = ACTIONS(2144), - [anon_sym_short] = ACTIONS(2144), - [sym_primitive_type] = ACTIONS(2144), - [anon_sym_enum] = ACTIONS(2144), - [anon_sym_struct] = ACTIONS(2144), - [anon_sym_union] = ACTIONS(2144), - [anon_sym_if] = ACTIONS(2144), - [anon_sym_switch] = ACTIONS(2144), - [anon_sym_case] = ACTIONS(2144), - [anon_sym_default] = ACTIONS(2144), - [anon_sym_while] = ACTIONS(2144), - [anon_sym_do] = ACTIONS(2144), - [anon_sym_for] = ACTIONS(2144), - [anon_sym_return] = ACTIONS(2144), - [anon_sym_break] = ACTIONS(2144), - [anon_sym_continue] = ACTIONS(2144), - [anon_sym_goto] = ACTIONS(2144), - [anon_sym_AMP] = ACTIONS(2146), - [anon_sym_BANG] = ACTIONS(2146), - [anon_sym_TILDE] = ACTIONS(2146), - [anon_sym_PLUS] = ACTIONS(2144), - [anon_sym_DASH] = ACTIONS(2144), - [anon_sym_DASH_DASH] = ACTIONS(2146), - [anon_sym_PLUS_PLUS] = ACTIONS(2146), - [anon_sym_sizeof] = ACTIONS(2144), - [sym_number_literal] = ACTIONS(2146), - [anon_sym_SQUOTE] = ACTIONS(2146), - [anon_sym_DQUOTE] = ACTIONS(2146), - [sym_true] = ACTIONS(2144), - [sym_false] = ACTIONS(2144), - [sym_null] = ACTIONS(2144), - [sym_identifier] = ACTIONS(2144), - [sym_comment] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(2782), + [sym_comment] = ACTIONS(59), }, [918] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2780), - [sym_comment] = ACTIONS(37), + [sym_compound_statement] = STATE(1019), + [sym_labeled_statement] = STATE(1019), + [sym_expression_statement] = STATE(1019), + [sym_if_statement] = STATE(1019), + [sym_switch_statement] = STATE(1019), + [sym_case_statement] = STATE(1019), + [sym_while_statement] = STATE(1019), + [sym_do_statement] = STATE(1019), + [sym_for_statement] = STATE(1019), + [sym_return_statement] = STATE(1019), + [sym_break_statement] = STATE(1019), + [sym_continue_statement] = STATE(1019), + [sym_goto_statement] = STATE(1019), + [sym__expression] = STATE(756), + [sym_comma_expression] = STATE(757), + [sym_conditional_expression] = STATE(756), + [sym_assignment_expression] = STATE(756), + [sym_pointer_expression] = STATE(756), + [sym_logical_expression] = STATE(756), + [sym_bitwise_expression] = STATE(756), + [sym_equality_expression] = STATE(756), + [sym_relational_expression] = STATE(756), + [sym_shift_expression] = STATE(756), + [sym_math_expression] = STATE(756), + [sym_cast_expression] = STATE(756), + [sym_sizeof_expression] = STATE(756), + [sym_subscript_expression] = STATE(756), + [sym_call_expression] = STATE(756), + [sym_field_expression] = STATE(756), + [sym_compound_literal_expression] = STATE(756), + [sym_parenthesized_expression] = STATE(756), + [sym_char_literal] = STATE(756), + [sym_concatenated_string] = STATE(756), + [sym_string_literal] = STATE(374), + [anon_sym_SEMI] = ACTIONS(1940), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_LPAREN2] = ACTIONS(936), + [anon_sym_STAR] = ACTIONS(938), + [anon_sym_if] = ACTIONS(1952), + [anon_sym_switch] = ACTIONS(1954), + [anon_sym_case] = ACTIONS(1956), + [anon_sym_default] = ACTIONS(1958), + [anon_sym_while] = ACTIONS(1960), + [anon_sym_do] = ACTIONS(1962), + [anon_sym_for] = ACTIONS(1964), + [anon_sym_return] = ACTIONS(1966), + [anon_sym_break] = ACTIONS(1968), + [anon_sym_continue] = ACTIONS(1970), + [anon_sym_goto] = ACTIONS(1972), + [anon_sym_AMP] = ACTIONS(938), + [anon_sym_BANG] = ACTIONS(962), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_DASH_DASH] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(968), + [anon_sym_sizeof] = ACTIONS(970), + [sym_number_literal] = ACTIONS(1974), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(1976), + [sym_false] = ACTIONS(1976), + [sym_null] = ACTIONS(1976), + [sym_identifier] = ACTIONS(2766), + [sym_comment] = ACTIONS(59), }, [919] = { - [sym_preproc_include] = STATE(821), - [sym_preproc_def] = STATE(821), - [sym_preproc_function_def] = STATE(821), - [sym_preproc_call] = STATE(821), - [sym_preproc_if_in_compound_statement] = STATE(821), - [sym_preproc_ifdef_in_compound_statement] = STATE(821), - [sym_preproc_else_in_compound_statement] = STATE(1002), - [sym_preproc_elif_in_compound_statement] = STATE(1002), - [sym_declaration] = STATE(821), - [sym_type_definition] = STATE(821), - [sym__declaration_specifiers] = STATE(593), - [sym_compound_statement] = STATE(821), - [sym_storage_class_specifier] = STATE(19), - [sym_type_qualifier] = STATE(19), - [sym__type_specifier] = STATE(17), - [sym_sized_type_specifier] = STATE(17), - [sym_enum_specifier] = STATE(17), - [sym_struct_specifier] = STATE(17), - [sym_union_specifier] = STATE(17), - [sym_labeled_statement] = STATE(821), - [sym_expression_statement] = STATE(821), - [sym_if_statement] = STATE(821), - [sym_switch_statement] = STATE(821), - [sym_case_statement] = STATE(821), - [sym_while_statement] = STATE(821), - [sym_do_statement] = STATE(821), - [sym_for_statement] = STATE(821), - [sym_return_statement] = STATE(821), - [sym_break_statement] = STATE(821), - [sym_continue_statement] = STATE(821), - [sym_goto_statement] = STATE(821), - [sym__expression] = STATE(594), - [sym_comma_expression] = STATE(595), - [sym_conditional_expression] = STATE(594), - [sym_assignment_expression] = STATE(594), - [sym_pointer_expression] = STATE(594), - [sym_logical_expression] = STATE(594), - [sym_bitwise_expression] = STATE(594), - [sym_equality_expression] = STATE(594), - [sym_relational_expression] = STATE(594), - [sym_shift_expression] = STATE(594), - [sym_math_expression] = STATE(594), - [sym_cast_expression] = STATE(594), - [sym_sizeof_expression] = STATE(594), - [sym_subscript_expression] = STATE(594), - [sym_call_expression] = STATE(594), - [sym_field_expression] = STATE(594), - [sym_compound_literal_expression] = STATE(594), - [sym_parenthesized_expression] = STATE(594), - [sym_char_literal] = STATE(594), - [sym_concatenated_string] = STATE(594), - [sym_string_literal] = STATE(230), - [sym__empty_declaration] = STATE(821), - [sym_macro_type_specifier] = STATE(17), - [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(821), - [aux_sym__declaration_specifiers_repeat1] = STATE(19), - [aux_sym_sized_type_specifier_repeat1] = STATE(20), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(127), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(129), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1385), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2782), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1389), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1389), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1391), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1393), - [sym_preproc_directive] = ACTIONS(141), - [anon_sym_SEMI] = ACTIONS(1395), - [anon_sym_typedef] = ACTIONS(143), - [anon_sym_extern] = ACTIONS(21), - [anon_sym_LBRACE] = ACTIONS(678), - [anon_sym_LPAREN2] = ACTIONS(507), - [anon_sym_STAR] = ACTIONS(509), - [anon_sym_static] = ACTIONS(21), - [anon_sym_auto] = ACTIONS(21), - [anon_sym_register] = ACTIONS(21), - [anon_sym_inline] = ACTIONS(21), - [anon_sym_const] = ACTIONS(23), - [anon_sym_restrict] = ACTIONS(23), - [anon_sym_volatile] = ACTIONS(23), - [anon_sym__Atomic] = ACTIONS(23), - [anon_sym_unsigned] = ACTIONS(25), - [anon_sym_long] = ACTIONS(25), - [anon_sym_short] = ACTIONS(25), - [sym_primitive_type] = ACTIONS(27), - [anon_sym_enum] = ACTIONS(29), - [anon_sym_struct] = ACTIONS(31), - [anon_sym_union] = ACTIONS(33), - [anon_sym_if] = ACTIONS(1397), - [anon_sym_switch] = ACTIONS(1399), - [anon_sym_case] = ACTIONS(1401), - [anon_sym_default] = ACTIONS(1403), - [anon_sym_while] = ACTIONS(1405), - [anon_sym_do] = ACTIONS(1407), - [anon_sym_for] = ACTIONS(1409), - [anon_sym_return] = ACTIONS(1411), - [anon_sym_break] = ACTIONS(1413), - [anon_sym_continue] = ACTIONS(1415), - [anon_sym_goto] = ACTIONS(1417), - [anon_sym_AMP] = ACTIONS(509), - [anon_sym_BANG] = ACTIONS(533), - [anon_sym_TILDE] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DASH] = ACTIONS(537), - [anon_sym_DASH_DASH] = ACTIONS(539), - [anon_sym_PLUS_PLUS] = ACTIONS(539), - [anon_sym_sizeof] = ACTIONS(541), - [sym_number_literal] = ACTIONS(1419), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(1421), - [sym_false] = ACTIONS(1421), - [sym_null] = ACTIONS(1421), - [sym_identifier] = ACTIONS(1423), - [sym_comment] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(2784), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2786), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2786), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2786), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2786), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2786), + [sym_preproc_directive] = ACTIONS(2786), + [anon_sym_typedef] = ACTIONS(2786), + [anon_sym_extern] = ACTIONS(2786), + [anon_sym_LBRACE] = ACTIONS(2784), + [anon_sym_RBRACE] = ACTIONS(2784), + [anon_sym_LPAREN2] = ACTIONS(2784), + [anon_sym_STAR] = ACTIONS(2784), + [anon_sym_static] = ACTIONS(2786), + [anon_sym_auto] = ACTIONS(2786), + [anon_sym_register] = ACTIONS(2786), + [anon_sym_inline] = ACTIONS(2786), + [anon_sym_const] = ACTIONS(2786), + [anon_sym_restrict] = ACTIONS(2786), + [anon_sym_volatile] = ACTIONS(2786), + [anon_sym__Atomic] = ACTIONS(2786), + [anon_sym_unsigned] = ACTIONS(2786), + [anon_sym_long] = ACTIONS(2786), + [anon_sym_short] = ACTIONS(2786), + [sym_primitive_type] = ACTIONS(2786), + [anon_sym_enum] = ACTIONS(2786), + [anon_sym_struct] = ACTIONS(2786), + [anon_sym_union] = ACTIONS(2786), + [anon_sym_if] = ACTIONS(2786), + [anon_sym_switch] = ACTIONS(2786), + [anon_sym_case] = ACTIONS(2786), + [anon_sym_default] = ACTIONS(2786), + [anon_sym_while] = ACTIONS(2786), + [anon_sym_do] = ACTIONS(2786), + [anon_sym_for] = ACTIONS(2786), + [anon_sym_return] = ACTIONS(2786), + [anon_sym_break] = ACTIONS(2786), + [anon_sym_continue] = ACTIONS(2786), + [anon_sym_goto] = ACTIONS(2786), + [anon_sym_AMP] = ACTIONS(2784), + [anon_sym_BANG] = ACTIONS(2784), + [anon_sym_TILDE] = ACTIONS(2784), + [anon_sym_PLUS] = ACTIONS(2786), + [anon_sym_DASH] = ACTIONS(2786), + [anon_sym_DASH_DASH] = ACTIONS(2784), + [anon_sym_PLUS_PLUS] = ACTIONS(2784), + [anon_sym_sizeof] = ACTIONS(2786), + [sym_number_literal] = ACTIONS(2784), + [anon_sym_SQUOTE] = ACTIONS(2784), + [anon_sym_DQUOTE] = ACTIONS(2784), + [sym_true] = ACTIONS(2786), + [sym_false] = ACTIONS(2786), + [sym_null] = ACTIONS(2786), + [sym_identifier] = ACTIONS(2786), + [sym_comment] = ACTIONS(59), }, [920] = { - [sym_preproc_include] = STATE(1005), - [sym_preproc_def] = STATE(1005), - [sym_preproc_function_def] = STATE(1005), - [sym_preproc_call] = STATE(1005), - [sym_preproc_if_in_compound_statement] = STATE(1005), - [sym_preproc_ifdef_in_compound_statement] = STATE(1005), - [sym_preproc_else_in_compound_statement] = STATE(1004), - [sym_preproc_elif_in_compound_statement] = STATE(1004), - [sym_declaration] = STATE(1005), - [sym_type_definition] = STATE(1005), - [sym__declaration_specifiers] = STATE(593), - [sym_compound_statement] = STATE(1005), - [sym_storage_class_specifier] = STATE(19), - [sym_type_qualifier] = STATE(19), - [sym__type_specifier] = STATE(17), - [sym_sized_type_specifier] = STATE(17), - [sym_enum_specifier] = STATE(17), - [sym_struct_specifier] = STATE(17), - [sym_union_specifier] = STATE(17), - [sym_labeled_statement] = STATE(1005), - [sym_expression_statement] = STATE(1005), - [sym_if_statement] = STATE(1005), - [sym_switch_statement] = STATE(1005), - [sym_case_statement] = STATE(1005), - [sym_while_statement] = STATE(1005), - [sym_do_statement] = STATE(1005), - [sym_for_statement] = STATE(1005), - [sym_return_statement] = STATE(1005), - [sym_break_statement] = STATE(1005), - [sym_continue_statement] = STATE(1005), - [sym_goto_statement] = STATE(1005), - [sym__expression] = STATE(594), - [sym_comma_expression] = STATE(595), - [sym_conditional_expression] = STATE(594), - [sym_assignment_expression] = STATE(594), - [sym_pointer_expression] = STATE(594), - [sym_logical_expression] = STATE(594), - [sym_bitwise_expression] = STATE(594), - [sym_equality_expression] = STATE(594), - [sym_relational_expression] = STATE(594), - [sym_shift_expression] = STATE(594), - [sym_math_expression] = STATE(594), - [sym_cast_expression] = STATE(594), - [sym_sizeof_expression] = STATE(594), - [sym_subscript_expression] = STATE(594), - [sym_call_expression] = STATE(594), - [sym_field_expression] = STATE(594), - [sym_compound_literal_expression] = STATE(594), - [sym_parenthesized_expression] = STATE(594), - [sym_char_literal] = STATE(594), - [sym_concatenated_string] = STATE(594), - [sym_string_literal] = STATE(230), - [sym__empty_declaration] = STATE(1005), - [sym_macro_type_specifier] = STATE(17), - [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(1005), - [aux_sym__declaration_specifiers_repeat1] = STATE(19), - [aux_sym_sized_type_specifier_repeat1] = STATE(20), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(127), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(129), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1385), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2784), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1389), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1389), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1391), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1393), - [sym_preproc_directive] = ACTIONS(141), - [anon_sym_SEMI] = ACTIONS(1395), - [anon_sym_typedef] = ACTIONS(143), - [anon_sym_extern] = ACTIONS(21), - [anon_sym_LBRACE] = ACTIONS(678), - [anon_sym_LPAREN2] = ACTIONS(507), - [anon_sym_STAR] = ACTIONS(509), - [anon_sym_static] = ACTIONS(21), - [anon_sym_auto] = ACTIONS(21), - [anon_sym_register] = ACTIONS(21), - [anon_sym_inline] = ACTIONS(21), - [anon_sym_const] = ACTIONS(23), - [anon_sym_restrict] = ACTIONS(23), - [anon_sym_volatile] = ACTIONS(23), - [anon_sym__Atomic] = ACTIONS(23), - [anon_sym_unsigned] = ACTIONS(25), - [anon_sym_long] = ACTIONS(25), - [anon_sym_short] = ACTIONS(25), - [sym_primitive_type] = ACTIONS(27), - [anon_sym_enum] = ACTIONS(29), - [anon_sym_struct] = ACTIONS(31), - [anon_sym_union] = ACTIONS(33), - [anon_sym_if] = ACTIONS(1397), - [anon_sym_switch] = ACTIONS(1399), - [anon_sym_case] = ACTIONS(1401), - [anon_sym_default] = ACTIONS(1403), - [anon_sym_while] = ACTIONS(1405), - [anon_sym_do] = ACTIONS(1407), - [anon_sym_for] = ACTIONS(1409), - [anon_sym_return] = ACTIONS(1411), - [anon_sym_break] = ACTIONS(1413), - [anon_sym_continue] = ACTIONS(1415), - [anon_sym_goto] = ACTIONS(1417), - [anon_sym_AMP] = ACTIONS(509), - [anon_sym_BANG] = ACTIONS(533), - [anon_sym_TILDE] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DASH] = ACTIONS(537), - [anon_sym_DASH_DASH] = ACTIONS(539), - [anon_sym_PLUS_PLUS] = ACTIONS(539), - [anon_sym_sizeof] = ACTIONS(541), - [sym_number_literal] = ACTIONS(1419), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(1421), - [sym_false] = ACTIONS(1421), - [sym_null] = ACTIONS(1421), - [sym_identifier] = ACTIONS(1423), - [sym_comment] = ACTIONS(37), + [sym_parameter_list] = STATE(201), + [aux_sym_declaration_repeat1] = STATE(461), + [anon_sym_SEMI] = ACTIONS(1183), + [anon_sym_COMMA] = ACTIONS(437), + [anon_sym_LPAREN2] = ACTIONS(441), + [anon_sym_LBRACK] = ACTIONS(443), + [anon_sym_EQ] = ACTIONS(445), + [sym_comment] = ACTIONS(59), }, [921] = { - [sym_preproc_include] = STATE(1008), - [sym_preproc_def] = STATE(1008), - [sym_preproc_function_def] = STATE(1008), - [sym_preproc_call] = STATE(1008), - [sym_preproc_if_in_compound_statement] = STATE(1008), - [sym_preproc_ifdef_in_compound_statement] = STATE(1008), - [sym_preproc_else_in_compound_statement] = STATE(1007), - [sym_preproc_elif_in_compound_statement] = STATE(1007), - [sym_declaration] = STATE(1008), - [sym_type_definition] = STATE(1008), - [sym__declaration_specifiers] = STATE(593), - [sym_compound_statement] = STATE(1008), - [sym_storage_class_specifier] = STATE(19), - [sym_type_qualifier] = STATE(19), - [sym__type_specifier] = STATE(17), - [sym_sized_type_specifier] = STATE(17), - [sym_enum_specifier] = STATE(17), - [sym_struct_specifier] = STATE(17), - [sym_union_specifier] = STATE(17), - [sym_labeled_statement] = STATE(1008), - [sym_expression_statement] = STATE(1008), - [sym_if_statement] = STATE(1008), - [sym_switch_statement] = STATE(1008), - [sym_case_statement] = STATE(1008), - [sym_while_statement] = STATE(1008), - [sym_do_statement] = STATE(1008), - [sym_for_statement] = STATE(1008), - [sym_return_statement] = STATE(1008), - [sym_break_statement] = STATE(1008), - [sym_continue_statement] = STATE(1008), - [sym_goto_statement] = STATE(1008), - [sym__expression] = STATE(594), - [sym_comma_expression] = STATE(595), - [sym_conditional_expression] = STATE(594), - [sym_assignment_expression] = STATE(594), - [sym_pointer_expression] = STATE(594), - [sym_logical_expression] = STATE(594), - [sym_bitwise_expression] = STATE(594), - [sym_equality_expression] = STATE(594), - [sym_relational_expression] = STATE(594), - [sym_shift_expression] = STATE(594), - [sym_math_expression] = STATE(594), - [sym_cast_expression] = STATE(594), - [sym_sizeof_expression] = STATE(594), - [sym_subscript_expression] = STATE(594), - [sym_call_expression] = STATE(594), - [sym_field_expression] = STATE(594), - [sym_compound_literal_expression] = STATE(594), - [sym_parenthesized_expression] = STATE(594), - [sym_char_literal] = STATE(594), - [sym_concatenated_string] = STATE(594), - [sym_string_literal] = STATE(230), - [sym__empty_declaration] = STATE(1008), - [sym_macro_type_specifier] = STATE(17), - [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(1008), - [aux_sym__declaration_specifiers_repeat1] = STATE(19), - [aux_sym_sized_type_specifier_repeat1] = STATE(20), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(127), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(129), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1385), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2786), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1389), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1389), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1391), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1393), - [sym_preproc_directive] = ACTIONS(141), - [anon_sym_SEMI] = ACTIONS(1395), - [anon_sym_typedef] = ACTIONS(143), - [anon_sym_extern] = ACTIONS(21), - [anon_sym_LBRACE] = ACTIONS(678), - [anon_sym_LPAREN2] = ACTIONS(507), - [anon_sym_STAR] = ACTIONS(509), - [anon_sym_static] = ACTIONS(21), - [anon_sym_auto] = ACTIONS(21), - [anon_sym_register] = ACTIONS(21), - [anon_sym_inline] = ACTIONS(21), - [anon_sym_const] = ACTIONS(23), - [anon_sym_restrict] = ACTIONS(23), - [anon_sym_volatile] = ACTIONS(23), - [anon_sym__Atomic] = ACTIONS(23), - [anon_sym_unsigned] = ACTIONS(25), - [anon_sym_long] = ACTIONS(25), - [anon_sym_short] = ACTIONS(25), - [sym_primitive_type] = ACTIONS(27), - [anon_sym_enum] = ACTIONS(29), - [anon_sym_struct] = ACTIONS(31), - [anon_sym_union] = ACTIONS(33), - [anon_sym_if] = ACTIONS(1397), - [anon_sym_switch] = ACTIONS(1399), - [anon_sym_case] = ACTIONS(1401), - [anon_sym_default] = ACTIONS(1403), - [anon_sym_while] = ACTIONS(1405), - [anon_sym_do] = ACTIONS(1407), - [anon_sym_for] = ACTIONS(1409), - [anon_sym_return] = ACTIONS(1411), - [anon_sym_break] = ACTIONS(1413), - [anon_sym_continue] = ACTIONS(1415), - [anon_sym_goto] = ACTIONS(1417), - [anon_sym_AMP] = ACTIONS(509), - [anon_sym_BANG] = ACTIONS(533), - [anon_sym_TILDE] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DASH] = ACTIONS(537), - [anon_sym_DASH_DASH] = ACTIONS(539), - [anon_sym_PLUS_PLUS] = ACTIONS(539), - [anon_sym_sizeof] = ACTIONS(541), - [sym_number_literal] = ACTIONS(1419), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(1421), - [sym_false] = ACTIONS(1421), - [sym_null] = ACTIONS(1421), - [sym_identifier] = ACTIONS(1423), - [sym_comment] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(2044), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2046), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2046), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2046), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2046), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2046), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2046), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2046), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2046), + [sym_preproc_directive] = ACTIONS(2046), + [anon_sym_typedef] = ACTIONS(2046), + [anon_sym_extern] = ACTIONS(2046), + [anon_sym_LBRACE] = ACTIONS(2044), + [anon_sym_LPAREN2] = ACTIONS(2044), + [anon_sym_STAR] = ACTIONS(2044), + [anon_sym_static] = ACTIONS(2046), + [anon_sym_auto] = ACTIONS(2046), + [anon_sym_register] = ACTIONS(2046), + [anon_sym_inline] = ACTIONS(2046), + [anon_sym_const] = ACTIONS(2046), + [anon_sym_restrict] = ACTIONS(2046), + [anon_sym_volatile] = ACTIONS(2046), + [anon_sym__Atomic] = ACTIONS(2046), + [anon_sym_unsigned] = ACTIONS(2046), + [anon_sym_long] = ACTIONS(2046), + [anon_sym_short] = ACTIONS(2046), + [sym_primitive_type] = ACTIONS(2046), + [anon_sym_enum] = ACTIONS(2046), + [anon_sym_struct] = ACTIONS(2046), + [anon_sym_union] = ACTIONS(2046), + [anon_sym_if] = ACTIONS(2046), + [anon_sym_else] = ACTIONS(2046), + [anon_sym_switch] = ACTIONS(2046), + [anon_sym_case] = ACTIONS(2046), + [anon_sym_default] = ACTIONS(2046), + [anon_sym_while] = ACTIONS(2046), + [anon_sym_do] = ACTIONS(2046), + [anon_sym_for] = ACTIONS(2046), + [anon_sym_return] = ACTIONS(2046), + [anon_sym_break] = ACTIONS(2046), + [anon_sym_continue] = ACTIONS(2046), + [anon_sym_goto] = ACTIONS(2046), + [anon_sym_AMP] = ACTIONS(2044), + [anon_sym_BANG] = ACTIONS(2044), + [anon_sym_TILDE] = ACTIONS(2044), + [anon_sym_PLUS] = ACTIONS(2046), + [anon_sym_DASH] = ACTIONS(2046), + [anon_sym_DASH_DASH] = ACTIONS(2044), + [anon_sym_PLUS_PLUS] = ACTIONS(2044), + [anon_sym_sizeof] = ACTIONS(2046), + [sym_number_literal] = ACTIONS(2044), + [anon_sym_SQUOTE] = ACTIONS(2044), + [anon_sym_DQUOTE] = ACTIONS(2044), + [sym_true] = ACTIONS(2046), + [sym_false] = ACTIONS(2046), + [sym_null] = ACTIONS(2046), + [sym_identifier] = ACTIONS(2046), + [sym_comment] = ACTIONS(59), }, [922] = { - [sym_compound_statement] = STATE(1016), - [sym_labeled_statement] = STATE(1016), - [sym_expression_statement] = STATE(1016), - [sym_if_statement] = STATE(1016), - [sym_switch_statement] = STATE(1016), - [sym_case_statement] = STATE(1016), - [sym_while_statement] = STATE(1016), - [sym_do_statement] = STATE(1016), - [sym_for_statement] = STATE(1016), - [sym_return_statement] = STATE(1016), - [sym_break_statement] = STATE(1016), - [sym_continue_statement] = STATE(1016), - [sym_goto_statement] = STATE(1016), - [sym__expression] = STATE(800), - [sym_comma_expression] = STATE(801), - [sym_conditional_expression] = STATE(800), - [sym_assignment_expression] = STATE(800), - [sym_pointer_expression] = STATE(800), - [sym_logical_expression] = STATE(800), - [sym_bitwise_expression] = STATE(800), - [sym_equality_expression] = STATE(800), - [sym_relational_expression] = STATE(800), - [sym_shift_expression] = STATE(800), - [sym_math_expression] = STATE(800), - [sym_cast_expression] = STATE(800), - [sym_sizeof_expression] = STATE(800), - [sym_subscript_expression] = STATE(800), - [sym_call_expression] = STATE(800), - [sym_field_expression] = STATE(800), - [sym_compound_literal_expression] = STATE(800), - [sym_parenthesized_expression] = STATE(800), - [sym_char_literal] = STATE(800), - [sym_concatenated_string] = STATE(800), - [sym_string_literal] = STATE(230), - [anon_sym_SEMI] = ACTIONS(2082), - [anon_sym_LBRACE] = ACTIONS(1181), - [anon_sym_LPAREN2] = ACTIONS(507), - [anon_sym_STAR] = ACTIONS(509), - [anon_sym_if] = ACTIONS(2788), - [anon_sym_switch] = ACTIONS(2790), - [anon_sym_case] = ACTIONS(2792), - [anon_sym_default] = ACTIONS(2794), - [anon_sym_while] = ACTIONS(2796), - [anon_sym_do] = ACTIONS(2094), - [anon_sym_for] = ACTIONS(2798), - [anon_sym_return] = ACTIONS(2098), - [anon_sym_break] = ACTIONS(2100), - [anon_sym_continue] = ACTIONS(2102), - [anon_sym_goto] = ACTIONS(2104), - [anon_sym_AMP] = ACTIONS(509), - [anon_sym_BANG] = ACTIONS(533), - [anon_sym_TILDE] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DASH] = ACTIONS(537), - [anon_sym_DASH_DASH] = ACTIONS(539), - [anon_sym_PLUS_PLUS] = ACTIONS(539), - [anon_sym_sizeof] = ACTIONS(541), - [sym_number_literal] = ACTIONS(2106), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(2108), - [sym_false] = ACTIONS(2108), - [sym_null] = ACTIONS(2108), - [sym_identifier] = ACTIONS(2800), - [sym_comment] = ACTIONS(37), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2788), + [sym_comment] = ACTIONS(59), }, [923] = { - [sym_compound_statement] = STATE(1018), - [sym_labeled_statement] = STATE(1018), - [sym_expression_statement] = STATE(1018), - [sym_if_statement] = STATE(1018), - [sym_switch_statement] = STATE(1018), - [sym_case_statement] = STATE(1018), - [sym_while_statement] = STATE(1018), - [sym_do_statement] = STATE(1018), - [sym_for_statement] = STATE(1018), - [sym_return_statement] = STATE(1018), - [sym_break_statement] = STATE(1018), - [sym_continue_statement] = STATE(1018), - [sym_goto_statement] = STATE(1018), - [sym__expression] = STATE(800), - [sym_comma_expression] = STATE(801), - [sym_conditional_expression] = STATE(800), - [sym_assignment_expression] = STATE(800), - [sym_pointer_expression] = STATE(800), - [sym_logical_expression] = STATE(800), - [sym_bitwise_expression] = STATE(800), - [sym_equality_expression] = STATE(800), - [sym_relational_expression] = STATE(800), - [sym_shift_expression] = STATE(800), - [sym_math_expression] = STATE(800), - [sym_cast_expression] = STATE(800), - [sym_sizeof_expression] = STATE(800), - [sym_subscript_expression] = STATE(800), - [sym_call_expression] = STATE(800), - [sym_field_expression] = STATE(800), - [sym_compound_literal_expression] = STATE(800), - [sym_parenthesized_expression] = STATE(800), - [sym_char_literal] = STATE(800), - [sym_concatenated_string] = STATE(800), - [sym_string_literal] = STATE(230), - [anon_sym_SEMI] = ACTIONS(2082), - [anon_sym_LBRACE] = ACTIONS(1181), - [anon_sym_LPAREN2] = ACTIONS(507), - [anon_sym_STAR] = ACTIONS(509), - [anon_sym_if] = ACTIONS(2084), - [anon_sym_switch] = ACTIONS(2086), - [anon_sym_case] = ACTIONS(2088), - [anon_sym_default] = ACTIONS(2090), - [anon_sym_while] = ACTIONS(2092), - [anon_sym_do] = ACTIONS(2094), - [anon_sym_for] = ACTIONS(2096), - [anon_sym_return] = ACTIONS(2098), - [anon_sym_break] = ACTIONS(2100), - [anon_sym_continue] = ACTIONS(2102), - [anon_sym_goto] = ACTIONS(2104), - [anon_sym_AMP] = ACTIONS(509), - [anon_sym_BANG] = ACTIONS(533), - [anon_sym_TILDE] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DASH] = ACTIONS(537), - [anon_sym_DASH_DASH] = ACTIONS(539), - [anon_sym_PLUS_PLUS] = ACTIONS(539), - [anon_sym_sizeof] = ACTIONS(541), - [sym_number_literal] = ACTIONS(2106), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(2108), - [sym_false] = ACTIONS(2108), - [sym_null] = ACTIONS(2108), - [sym_identifier] = ACTIONS(2802), - [sym_comment] = ACTIONS(37), + [sym_preproc_include] = STATE(923), + [sym_preproc_def] = STATE(923), + [sym_preproc_function_def] = STATE(923), + [sym_preproc_call] = STATE(923), + [sym_preproc_if_in_compound_statement] = STATE(923), + [sym_preproc_ifdef_in_compound_statement] = STATE(923), + [sym_declaration] = STATE(923), + [sym_type_definition] = STATE(923), + [sym__declaration_specifiers] = STATE(755), + [sym_compound_statement] = STATE(923), + [sym_storage_class_specifier] = STATE(30), + [sym_type_qualifier] = STATE(30), + [sym__type_specifier] = STATE(25), + [sym_sized_type_specifier] = STATE(25), + [sym_enum_specifier] = STATE(25), + [sym_struct_specifier] = STATE(25), + [sym_union_specifier] = STATE(25), + [sym_labeled_statement] = STATE(923), + [sym_expression_statement] = STATE(923), + [sym_if_statement] = STATE(923), + [sym_switch_statement] = STATE(923), + [sym_case_statement] = STATE(923), + [sym_while_statement] = STATE(923), + [sym_do_statement] = STATE(923), + [sym_for_statement] = STATE(923), + [sym_return_statement] = STATE(923), + [sym_break_statement] = STATE(923), + [sym_continue_statement] = STATE(923), + [sym_goto_statement] = STATE(923), + [sym__expression] = STATE(756), + [sym_comma_expression] = STATE(757), + [sym_conditional_expression] = STATE(756), + [sym_assignment_expression] = STATE(756), + [sym_pointer_expression] = STATE(756), + [sym_logical_expression] = STATE(756), + [sym_bitwise_expression] = STATE(756), + [sym_equality_expression] = STATE(756), + [sym_relational_expression] = STATE(756), + [sym_shift_expression] = STATE(756), + [sym_math_expression] = STATE(756), + [sym_cast_expression] = STATE(756), + [sym_sizeof_expression] = STATE(756), + [sym_subscript_expression] = STATE(756), + [sym_call_expression] = STATE(756), + [sym_field_expression] = STATE(756), + [sym_compound_literal_expression] = STATE(756), + [sym_parenthesized_expression] = STATE(756), + [sym_char_literal] = STATE(756), + [sym_concatenated_string] = STATE(756), + [sym_string_literal] = STATE(374), + [sym__empty_declaration] = STATE(923), + [sym_macro_type_specifier] = STATE(25), + [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(923), + [aux_sym__declaration_specifiers_repeat1] = STATE(30), + [aux_sym_sized_type_specifier_repeat1] = STATE(31), + [anon_sym_SEMI] = ACTIONS(2790), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2793), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2796), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2799), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2802), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2804), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2804), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2802), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2802), + [sym_preproc_directive] = ACTIONS(2807), + [anon_sym_typedef] = ACTIONS(2810), + [anon_sym_extern] = ACTIONS(2121), + [anon_sym_LBRACE] = ACTIONS(2813), + [anon_sym_LPAREN2] = ACTIONS(2129), + [anon_sym_STAR] = ACTIONS(2132), + [anon_sym_static] = ACTIONS(2121), + [anon_sym_auto] = ACTIONS(2121), + [anon_sym_register] = ACTIONS(2121), + [anon_sym_inline] = ACTIONS(2121), + [anon_sym_const] = ACTIONS(2135), + [anon_sym_restrict] = ACTIONS(2135), + [anon_sym_volatile] = ACTIONS(2135), + [anon_sym__Atomic] = ACTIONS(2135), + [anon_sym_unsigned] = ACTIONS(2138), + [anon_sym_long] = ACTIONS(2138), + [anon_sym_short] = ACTIONS(2138), + [sym_primitive_type] = ACTIONS(2141), + [anon_sym_enum] = ACTIONS(2144), + [anon_sym_struct] = ACTIONS(2147), + [anon_sym_union] = ACTIONS(2150), + [anon_sym_if] = ACTIONS(2816), + [anon_sym_switch] = ACTIONS(2819), + [anon_sym_case] = ACTIONS(2822), + [anon_sym_default] = ACTIONS(2825), + [anon_sym_while] = ACTIONS(2828), + [anon_sym_do] = ACTIONS(2831), + [anon_sym_for] = ACTIONS(2834), + [anon_sym_return] = ACTIONS(2837), + [anon_sym_break] = ACTIONS(2840), + [anon_sym_continue] = ACTIONS(2843), + [anon_sym_goto] = ACTIONS(2846), + [anon_sym_AMP] = ACTIONS(2132), + [anon_sym_BANG] = ACTIONS(2186), + [anon_sym_TILDE] = ACTIONS(2189), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_DASH] = ACTIONS(2192), + [anon_sym_DASH_DASH] = ACTIONS(2195), + [anon_sym_PLUS_PLUS] = ACTIONS(2195), + [anon_sym_sizeof] = ACTIONS(2198), + [sym_number_literal] = ACTIONS(2849), + [anon_sym_SQUOTE] = ACTIONS(2204), + [anon_sym_DQUOTE] = ACTIONS(2207), + [sym_true] = ACTIONS(2852), + [sym_false] = ACTIONS(2852), + [sym_null] = ACTIONS(2852), + [sym_identifier] = ACTIONS(2855), + [sym_comment] = ACTIONS(59), }, [924] = { - [sym_argument_list] = STATE(430), - [anon_sym_LPAREN2] = ACTIONS(1012), - [anon_sym_STAR] = ACTIONS(1497), - [anon_sym_LBRACK] = ACTIONS(1016), - [anon_sym_EQ] = ACTIONS(1499), - [anon_sym_COLON] = ACTIONS(2804), - [anon_sym_QMARK] = ACTIONS(1503), - [anon_sym_STAR_EQ] = ACTIONS(1505), - [anon_sym_SLASH_EQ] = ACTIONS(1505), - [anon_sym_PERCENT_EQ] = ACTIONS(1505), - [anon_sym_PLUS_EQ] = ACTIONS(1505), - [anon_sym_DASH_EQ] = ACTIONS(1505), - [anon_sym_LT_LT_EQ] = ACTIONS(1505), - [anon_sym_GT_GT_EQ] = ACTIONS(1505), - [anon_sym_AMP_EQ] = ACTIONS(1505), - [anon_sym_CARET_EQ] = ACTIONS(1505), - [anon_sym_PIPE_EQ] = ACTIONS(1505), - [anon_sym_AMP] = ACTIONS(1507), - [anon_sym_PIPE_PIPE] = ACTIONS(1509), - [anon_sym_AMP_AMP] = ACTIONS(1511), - [anon_sym_PIPE] = ACTIONS(1513), - [anon_sym_CARET] = ACTIONS(1515), - [anon_sym_EQ_EQ] = ACTIONS(1517), - [anon_sym_BANG_EQ] = ACTIONS(1517), - [anon_sym_LT] = ACTIONS(1519), - [anon_sym_GT] = ACTIONS(1519), - [anon_sym_LT_EQ] = ACTIONS(1521), - [anon_sym_GT_EQ] = ACTIONS(1521), - [anon_sym_LT_LT] = ACTIONS(1523), - [anon_sym_GT_GT] = ACTIONS(1523), - [anon_sym_PLUS] = ACTIONS(1525), - [anon_sym_DASH] = ACTIONS(1525), - [anon_sym_SLASH] = ACTIONS(1497), - [anon_sym_PERCENT] = ACTIONS(1497), - [anon_sym_DASH_DASH] = ACTIONS(1044), - [anon_sym_PLUS_PLUS] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1046), - [anon_sym_DASH_GT] = ACTIONS(1046), - [sym_comment] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(2858), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2860), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2860), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2860), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2860), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2860), + [sym_preproc_directive] = ACTIONS(2860), + [anon_sym_typedef] = ACTIONS(2860), + [anon_sym_extern] = ACTIONS(2860), + [anon_sym_LBRACE] = ACTIONS(2858), + [anon_sym_RBRACE] = ACTIONS(2858), + [anon_sym_LPAREN2] = ACTIONS(2858), + [anon_sym_STAR] = ACTIONS(2858), + [anon_sym_static] = ACTIONS(2860), + [anon_sym_auto] = ACTIONS(2860), + [anon_sym_register] = ACTIONS(2860), + [anon_sym_inline] = ACTIONS(2860), + [anon_sym_const] = ACTIONS(2860), + [anon_sym_restrict] = ACTIONS(2860), + [anon_sym_volatile] = ACTIONS(2860), + [anon_sym__Atomic] = ACTIONS(2860), + [anon_sym_unsigned] = ACTIONS(2860), + [anon_sym_long] = ACTIONS(2860), + [anon_sym_short] = ACTIONS(2860), + [sym_primitive_type] = ACTIONS(2860), + [anon_sym_enum] = ACTIONS(2860), + [anon_sym_struct] = ACTIONS(2860), + [anon_sym_union] = ACTIONS(2860), + [anon_sym_if] = ACTIONS(2860), + [anon_sym_switch] = ACTIONS(2860), + [anon_sym_case] = ACTIONS(2860), + [anon_sym_default] = ACTIONS(2860), + [anon_sym_while] = ACTIONS(2860), + [anon_sym_do] = ACTIONS(2860), + [anon_sym_for] = ACTIONS(2860), + [anon_sym_return] = ACTIONS(2860), + [anon_sym_break] = ACTIONS(2860), + [anon_sym_continue] = ACTIONS(2860), + [anon_sym_goto] = ACTIONS(2860), + [anon_sym_AMP] = ACTIONS(2858), + [anon_sym_BANG] = ACTIONS(2858), + [anon_sym_TILDE] = ACTIONS(2858), + [anon_sym_PLUS] = ACTIONS(2860), + [anon_sym_DASH] = ACTIONS(2860), + [anon_sym_DASH_DASH] = ACTIONS(2858), + [anon_sym_PLUS_PLUS] = ACTIONS(2858), + [anon_sym_sizeof] = ACTIONS(2860), + [sym_number_literal] = ACTIONS(2858), + [anon_sym_SQUOTE] = ACTIONS(2858), + [anon_sym_DQUOTE] = ACTIONS(2858), + [sym_true] = ACTIONS(2860), + [sym_false] = ACTIONS(2860), + [sym_null] = ACTIONS(2860), + [sym_identifier] = ACTIONS(2860), + [sym_comment] = ACTIONS(59), }, [925] = { - [sym_declaration] = STATE(1021), - [sym_type_definition] = STATE(1021), - [sym__declaration_specifiers] = STATE(1022), - [sym_compound_statement] = STATE(1021), - [sym_storage_class_specifier] = STATE(87), - [sym_type_qualifier] = STATE(87), - [sym__type_specifier] = STATE(86), - [sym_sized_type_specifier] = STATE(86), - [sym_enum_specifier] = STATE(86), - [sym_struct_specifier] = STATE(86), - [sym_union_specifier] = STATE(86), - [sym_labeled_statement] = STATE(1021), - [sym_expression_statement] = STATE(1021), - [sym_if_statement] = STATE(1021), - [sym_switch_statement] = STATE(1021), - [sym_case_statement] = STATE(1021), - [sym_while_statement] = STATE(1021), - [sym_do_statement] = STATE(1021), - [sym_for_statement] = STATE(1021), - [sym_return_statement] = STATE(1021), - [sym_break_statement] = STATE(1021), - [sym_continue_statement] = STATE(1021), - [sym_goto_statement] = STATE(1021), - [sym__expression] = STATE(800), - [sym_comma_expression] = STATE(801), - [sym_conditional_expression] = STATE(800), - [sym_assignment_expression] = STATE(800), - [sym_pointer_expression] = STATE(800), - [sym_logical_expression] = STATE(800), - [sym_bitwise_expression] = STATE(800), - [sym_equality_expression] = STATE(800), - [sym_relational_expression] = STATE(800), - [sym_shift_expression] = STATE(800), - [sym_math_expression] = STATE(800), - [sym_cast_expression] = STATE(800), - [sym_sizeof_expression] = STATE(800), - [sym_subscript_expression] = STATE(800), - [sym_call_expression] = STATE(800), - [sym_field_expression] = STATE(800), - [sym_compound_literal_expression] = STATE(800), - [sym_parenthesized_expression] = STATE(800), - [sym_char_literal] = STATE(800), - [sym_concatenated_string] = STATE(800), - [sym_string_literal] = STATE(230), - [sym_macro_type_specifier] = STATE(86), - [aux_sym__declaration_specifiers_repeat1] = STATE(87), - [aux_sym_sized_type_specifier_repeat1] = STATE(88), - [anon_sym_SEMI] = ACTIONS(2082), - [anon_sym_typedef] = ACTIONS(359), - [anon_sym_extern] = ACTIONS(21), - [anon_sym_LBRACE] = ACTIONS(1181), - [anon_sym_LPAREN2] = ACTIONS(507), - [anon_sym_STAR] = ACTIONS(509), - [anon_sym_static] = ACTIONS(21), - [anon_sym_auto] = ACTIONS(21), - [anon_sym_register] = ACTIONS(21), - [anon_sym_inline] = ACTIONS(21), - [anon_sym_const] = ACTIONS(23), - [anon_sym_restrict] = ACTIONS(23), - [anon_sym_volatile] = ACTIONS(23), - [anon_sym__Atomic] = ACTIONS(23), - [anon_sym_unsigned] = ACTIONS(167), - [anon_sym_long] = ACTIONS(167), - [anon_sym_short] = ACTIONS(167), - [sym_primitive_type] = ACTIONS(169), - [anon_sym_enum] = ACTIONS(29), - [anon_sym_struct] = ACTIONS(31), - [anon_sym_union] = ACTIONS(33), - [anon_sym_if] = ACTIONS(2084), - [anon_sym_switch] = ACTIONS(2086), - [anon_sym_case] = ACTIONS(2088), - [anon_sym_default] = ACTIONS(2090), - [anon_sym_while] = ACTIONS(2092), - [anon_sym_do] = ACTIONS(2094), - [anon_sym_for] = ACTIONS(2096), - [anon_sym_return] = ACTIONS(2098), - [anon_sym_break] = ACTIONS(2100), - [anon_sym_continue] = ACTIONS(2102), - [anon_sym_goto] = ACTIONS(2104), - [anon_sym_AMP] = ACTIONS(509), - [anon_sym_BANG] = ACTIONS(533), - [anon_sym_TILDE] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DASH] = ACTIONS(537), - [anon_sym_DASH_DASH] = ACTIONS(539), - [anon_sym_PLUS_PLUS] = ACTIONS(539), - [anon_sym_sizeof] = ACTIONS(541), - [sym_number_literal] = ACTIONS(2106), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(2108), - [sym_false] = ACTIONS(2108), - [sym_null] = ACTIONS(2108), - [sym_identifier] = ACTIONS(2806), - [sym_comment] = ACTIONS(37), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2862), + [sym_comment] = ACTIONS(59), }, [926] = { - [sym_compound_statement] = STATE(1023), - [sym_labeled_statement] = STATE(1023), - [sym_expression_statement] = STATE(1023), - [sym_if_statement] = STATE(1023), - [sym_switch_statement] = STATE(1023), - [sym_case_statement] = STATE(1023), - [sym_while_statement] = STATE(1023), - [sym_do_statement] = STATE(1023), - [sym_for_statement] = STATE(1023), - [sym_return_statement] = STATE(1023), - [sym_break_statement] = STATE(1023), - [sym_continue_statement] = STATE(1023), - [sym_goto_statement] = STATE(1023), - [sym__expression] = STATE(800), - [sym_comma_expression] = STATE(801), - [sym_conditional_expression] = STATE(800), - [sym_assignment_expression] = STATE(800), - [sym_pointer_expression] = STATE(800), - [sym_logical_expression] = STATE(800), - [sym_bitwise_expression] = STATE(800), - [sym_equality_expression] = STATE(800), - [sym_relational_expression] = STATE(800), - [sym_shift_expression] = STATE(800), - [sym_math_expression] = STATE(800), - [sym_cast_expression] = STATE(800), - [sym_sizeof_expression] = STATE(800), - [sym_subscript_expression] = STATE(800), - [sym_call_expression] = STATE(800), - [sym_field_expression] = STATE(800), - [sym_compound_literal_expression] = STATE(800), - [sym_parenthesized_expression] = STATE(800), - [sym_char_literal] = STATE(800), - [sym_concatenated_string] = STATE(800), - [sym_string_literal] = STATE(230), - [anon_sym_SEMI] = ACTIONS(2082), - [anon_sym_LBRACE] = ACTIONS(1181), - [anon_sym_LPAREN2] = ACTIONS(507), - [anon_sym_STAR] = ACTIONS(509), - [anon_sym_if] = ACTIONS(2084), - [anon_sym_switch] = ACTIONS(2086), - [anon_sym_case] = ACTIONS(2088), - [anon_sym_default] = ACTIONS(2090), - [anon_sym_while] = ACTIONS(2092), - [anon_sym_do] = ACTIONS(2094), - [anon_sym_for] = ACTIONS(2096), - [anon_sym_return] = ACTIONS(2098), - [anon_sym_break] = ACTIONS(2100), - [anon_sym_continue] = ACTIONS(2102), - [anon_sym_goto] = ACTIONS(2104), - [anon_sym_AMP] = ACTIONS(509), - [anon_sym_BANG] = ACTIONS(533), - [anon_sym_TILDE] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DASH] = ACTIONS(537), - [anon_sym_DASH_DASH] = ACTIONS(539), - [anon_sym_PLUS_PLUS] = ACTIONS(539), - [anon_sym_sizeof] = ACTIONS(541), - [sym_number_literal] = ACTIONS(2106), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(2108), - [sym_false] = ACTIONS(2108), - [sym_null] = ACTIONS(2108), - [sym_identifier] = ACTIONS(2802), - [sym_comment] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(792), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(794), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(794), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(794), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(794), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(794), + [sym_preproc_directive] = ACTIONS(794), + [anon_sym_typedef] = ACTIONS(794), + [anon_sym_extern] = ACTIONS(794), + [anon_sym_LBRACE] = ACTIONS(792), + [anon_sym_RBRACE] = ACTIONS(792), + [anon_sym_LPAREN2] = ACTIONS(792), + [anon_sym_STAR] = ACTIONS(792), + [anon_sym_static] = ACTIONS(794), + [anon_sym_auto] = ACTIONS(794), + [anon_sym_register] = ACTIONS(794), + [anon_sym_inline] = ACTIONS(794), + [anon_sym_const] = ACTIONS(794), + [anon_sym_restrict] = ACTIONS(794), + [anon_sym_volatile] = ACTIONS(794), + [anon_sym__Atomic] = ACTIONS(794), + [anon_sym_unsigned] = ACTIONS(794), + [anon_sym_long] = ACTIONS(794), + [anon_sym_short] = ACTIONS(794), + [sym_primitive_type] = ACTIONS(794), + [anon_sym_enum] = ACTIONS(794), + [anon_sym_struct] = ACTIONS(794), + [anon_sym_union] = ACTIONS(794), + [anon_sym_if] = ACTIONS(794), + [anon_sym_else] = ACTIONS(794), + [anon_sym_switch] = ACTIONS(794), + [anon_sym_case] = ACTIONS(794), + [anon_sym_default] = ACTIONS(794), + [anon_sym_while] = ACTIONS(794), + [anon_sym_do] = ACTIONS(794), + [anon_sym_for] = ACTIONS(794), + [anon_sym_return] = ACTIONS(794), + [anon_sym_break] = ACTIONS(794), + [anon_sym_continue] = ACTIONS(794), + [anon_sym_goto] = ACTIONS(794), + [anon_sym_AMP] = ACTIONS(792), + [anon_sym_BANG] = ACTIONS(792), + [anon_sym_TILDE] = ACTIONS(792), + [anon_sym_PLUS] = ACTIONS(794), + [anon_sym_DASH] = ACTIONS(794), + [anon_sym_DASH_DASH] = ACTIONS(792), + [anon_sym_PLUS_PLUS] = ACTIONS(792), + [anon_sym_sizeof] = ACTIONS(794), + [sym_number_literal] = ACTIONS(792), + [anon_sym_SQUOTE] = ACTIONS(792), + [anon_sym_DQUOTE] = ACTIONS(792), + [sym_true] = ACTIONS(794), + [sym_false] = ACTIONS(794), + [sym_null] = ACTIONS(794), + [sym_identifier] = ACTIONS(794), + [sym_comment] = ACTIONS(59), }, [927] = { - [anon_sym_while] = ACTIONS(2808), - [sym_comment] = ACTIONS(37), + [sym_compound_statement] = STATE(1022), + [sym_labeled_statement] = STATE(1022), + [sym_expression_statement] = STATE(1022), + [sym_if_statement] = STATE(1022), + [sym_switch_statement] = STATE(1022), + [sym_case_statement] = STATE(1022), + [sym_while_statement] = STATE(1022), + [sym_do_statement] = STATE(1022), + [sym_for_statement] = STATE(1022), + [sym_return_statement] = STATE(1022), + [sym_break_statement] = STATE(1022), + [sym_continue_statement] = STATE(1022), + [sym_goto_statement] = STATE(1022), + [sym__expression] = STATE(372), + [sym_comma_expression] = STATE(373), + [sym_conditional_expression] = STATE(372), + [sym_assignment_expression] = STATE(372), + [sym_pointer_expression] = STATE(372), + [sym_logical_expression] = STATE(372), + [sym_bitwise_expression] = STATE(372), + [sym_equality_expression] = STATE(372), + [sym_relational_expression] = STATE(372), + [sym_shift_expression] = STATE(372), + [sym_math_expression] = STATE(372), + [sym_cast_expression] = STATE(372), + [sym_sizeof_expression] = STATE(372), + [sym_subscript_expression] = STATE(372), + [sym_call_expression] = STATE(372), + [sym_field_expression] = STATE(372), + [sym_compound_literal_expression] = STATE(372), + [sym_parenthesized_expression] = STATE(372), + [sym_char_literal] = STATE(372), + [sym_concatenated_string] = STATE(372), + [sym_string_literal] = STATE(374), + [anon_sym_SEMI] = ACTIONS(928), + [anon_sym_LBRACE] = ACTIONS(439), + [anon_sym_LPAREN2] = ACTIONS(936), + [anon_sym_STAR] = ACTIONS(938), + [anon_sym_if] = ACTIONS(1988), + [anon_sym_switch] = ACTIONS(1990), + [anon_sym_case] = ACTIONS(1992), + [anon_sym_default] = ACTIONS(1994), + [anon_sym_while] = ACTIONS(1996), + [anon_sym_do] = ACTIONS(950), + [anon_sym_for] = ACTIONS(1998), + [anon_sym_return] = ACTIONS(954), + [anon_sym_break] = ACTIONS(956), + [anon_sym_continue] = ACTIONS(958), + [anon_sym_goto] = ACTIONS(960), + [anon_sym_AMP] = ACTIONS(938), + [anon_sym_BANG] = ACTIONS(962), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_DASH_DASH] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(968), + [anon_sym_sizeof] = ACTIONS(970), + [sym_number_literal] = ACTIONS(972), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(974), + [sym_false] = ACTIONS(974), + [sym_null] = ACTIONS(974), + [sym_identifier] = ACTIONS(2000), + [sym_comment] = ACTIONS(59), }, [928] = { + [sym_compound_statement] = STATE(774), + [sym_labeled_statement] = STATE(774), + [sym_expression_statement] = STATE(774), + [sym_if_statement] = STATE(774), + [sym_switch_statement] = STATE(774), + [sym_case_statement] = STATE(774), + [sym_while_statement] = STATE(774), + [sym_do_statement] = STATE(774), + [sym_for_statement] = STATE(774), + [sym_return_statement] = STATE(774), + [sym_break_statement] = STATE(774), + [sym_continue_statement] = STATE(774), + [sym_goto_statement] = STATE(774), + [sym__expression] = STATE(372), + [sym_comma_expression] = STATE(373), + [sym_conditional_expression] = STATE(372), + [sym_assignment_expression] = STATE(372), + [sym_pointer_expression] = STATE(372), + [sym_logical_expression] = STATE(372), + [sym_bitwise_expression] = STATE(372), + [sym_equality_expression] = STATE(372), + [sym_relational_expression] = STATE(372), + [sym_shift_expression] = STATE(372), + [sym_math_expression] = STATE(372), + [sym_cast_expression] = STATE(372), + [sym_sizeof_expression] = STATE(372), + [sym_subscript_expression] = STATE(372), + [sym_call_expression] = STATE(372), + [sym_field_expression] = STATE(372), + [sym_compound_literal_expression] = STATE(372), + [sym_parenthesized_expression] = STATE(372), + [sym_char_literal] = STATE(372), + [sym_concatenated_string] = STATE(372), + [sym_string_literal] = STATE(374), + [anon_sym_SEMI] = ACTIONS(928), + [anon_sym_LBRACE] = ACTIONS(439), + [anon_sym_LPAREN2] = ACTIONS(936), + [anon_sym_STAR] = ACTIONS(938), + [anon_sym_if] = ACTIONS(1988), + [anon_sym_switch] = ACTIONS(1990), + [anon_sym_case] = ACTIONS(1992), + [anon_sym_default] = ACTIONS(1994), + [anon_sym_while] = ACTIONS(1996), + [anon_sym_do] = ACTIONS(950), + [anon_sym_for] = ACTIONS(1998), + [anon_sym_return] = ACTIONS(954), + [anon_sym_break] = ACTIONS(956), + [anon_sym_continue] = ACTIONS(958), + [anon_sym_goto] = ACTIONS(960), + [anon_sym_AMP] = ACTIONS(938), + [anon_sym_BANG] = ACTIONS(962), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_DASH_DASH] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(968), + [anon_sym_sizeof] = ACTIONS(970), + [sym_number_literal] = ACTIONS(972), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(974), + [sym_false] = ACTIONS(974), + [sym_null] = ACTIONS(974), + [sym_identifier] = ACTIONS(2000), + [sym_comment] = ACTIONS(59), + }, + [929] = { + [sym_argument_list] = STATE(98), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(1054), + [anon_sym_LBRACK] = ACTIONS(188), + [anon_sym_EQ] = ACTIONS(1056), + [anon_sym_COLON] = ACTIONS(2864), + [anon_sym_QMARK] = ACTIONS(1060), + [anon_sym_STAR_EQ] = ACTIONS(1062), + [anon_sym_SLASH_EQ] = ACTIONS(1062), + [anon_sym_PERCENT_EQ] = ACTIONS(1062), + [anon_sym_PLUS_EQ] = ACTIONS(1062), + [anon_sym_DASH_EQ] = ACTIONS(1062), + [anon_sym_LT_LT_EQ] = ACTIONS(1062), + [anon_sym_GT_GT_EQ] = ACTIONS(1062), + [anon_sym_AMP_EQ] = ACTIONS(1062), + [anon_sym_CARET_EQ] = ACTIONS(1062), + [anon_sym_PIPE_EQ] = ACTIONS(1062), + [anon_sym_AMP] = ACTIONS(1064), + [anon_sym_PIPE_PIPE] = ACTIONS(1066), + [anon_sym_AMP_AMP] = ACTIONS(1068), + [anon_sym_PIPE] = ACTIONS(1070), + [anon_sym_CARET] = ACTIONS(1072), + [anon_sym_EQ_EQ] = ACTIONS(1074), + [anon_sym_BANG_EQ] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(1076), + [anon_sym_GT] = ACTIONS(1076), + [anon_sym_LT_EQ] = ACTIONS(1078), + [anon_sym_GT_EQ] = ACTIONS(1078), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_GT_GT] = ACTIONS(1080), + [anon_sym_PLUS] = ACTIONS(1082), + [anon_sym_DASH] = ACTIONS(1082), + [anon_sym_SLASH] = ACTIONS(1054), + [anon_sym_PERCENT] = ACTIONS(1054), + [anon_sym_DASH_DASH] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(216), + [anon_sym_DOT] = ACTIONS(218), + [anon_sym_DASH_GT] = ACTIONS(218), + [sym_comment] = ACTIONS(59), + }, + [930] = { + [sym_declaration] = STATE(777), + [sym_type_definition] = STATE(777), + [sym__declaration_specifiers] = STATE(778), + [sym_compound_statement] = STATE(777), + [sym_storage_class_specifier] = STATE(142), + [sym_type_qualifier] = STATE(142), + [sym__type_specifier] = STATE(141), + [sym_sized_type_specifier] = STATE(141), + [sym_enum_specifier] = STATE(141), + [sym_struct_specifier] = STATE(141), + [sym_union_specifier] = STATE(141), + [sym_labeled_statement] = STATE(777), + [sym_expression_statement] = STATE(777), + [sym_if_statement] = STATE(777), + [sym_switch_statement] = STATE(777), + [sym_case_statement] = STATE(777), + [sym_while_statement] = STATE(777), + [sym_do_statement] = STATE(777), + [sym_for_statement] = STATE(777), + [sym_return_statement] = STATE(777), + [sym_break_statement] = STATE(777), + [sym_continue_statement] = STATE(777), + [sym_goto_statement] = STATE(777), + [sym__expression] = STATE(372), + [sym_comma_expression] = STATE(373), + [sym_conditional_expression] = STATE(372), + [sym_assignment_expression] = STATE(372), + [sym_pointer_expression] = STATE(372), + [sym_logical_expression] = STATE(372), + [sym_bitwise_expression] = STATE(372), + [sym_equality_expression] = STATE(372), + [sym_relational_expression] = STATE(372), + [sym_shift_expression] = STATE(372), + [sym_math_expression] = STATE(372), + [sym_cast_expression] = STATE(372), + [sym_sizeof_expression] = STATE(372), + [sym_subscript_expression] = STATE(372), + [sym_call_expression] = STATE(372), + [sym_field_expression] = STATE(372), + [sym_compound_literal_expression] = STATE(372), + [sym_parenthesized_expression] = STATE(372), + [sym_char_literal] = STATE(372), + [sym_concatenated_string] = STATE(372), + [sym_string_literal] = STATE(374), + [sym_macro_type_specifier] = STATE(141), + [aux_sym__declaration_specifiers_repeat1] = STATE(142), + [aux_sym_sized_type_specifier_repeat1] = STATE(143), + [anon_sym_SEMI] = ACTIONS(928), + [anon_sym_typedef] = ACTIONS(17), + [anon_sym_extern] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(439), + [anon_sym_LPAREN2] = ACTIONS(936), + [anon_sym_STAR] = ACTIONS(938), + [anon_sym_static] = ACTIONS(25), + [anon_sym_auto] = ACTIONS(25), + [anon_sym_register] = ACTIONS(25), + [anon_sym_inline] = ACTIONS(25), + [anon_sym_const] = ACTIONS(27), + [anon_sym_restrict] = ACTIONS(27), + [anon_sym_volatile] = ACTIONS(27), + [anon_sym__Atomic] = ACTIONS(27), + [anon_sym_unsigned] = ACTIONS(294), + [anon_sym_long] = ACTIONS(294), + [anon_sym_short] = ACTIONS(294), + [sym_primitive_type] = ACTIONS(296), + [anon_sym_enum] = ACTIONS(33), + [anon_sym_struct] = ACTIONS(35), + [anon_sym_union] = ACTIONS(37), + [anon_sym_if] = ACTIONS(1988), + [anon_sym_switch] = ACTIONS(1990), + [anon_sym_case] = ACTIONS(1992), + [anon_sym_default] = ACTIONS(1994), + [anon_sym_while] = ACTIONS(1996), + [anon_sym_do] = ACTIONS(950), + [anon_sym_for] = ACTIONS(1998), + [anon_sym_return] = ACTIONS(954), + [anon_sym_break] = ACTIONS(956), + [anon_sym_continue] = ACTIONS(958), + [anon_sym_goto] = ACTIONS(960), + [anon_sym_AMP] = ACTIONS(938), + [anon_sym_BANG] = ACTIONS(962), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_DASH_DASH] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(968), + [anon_sym_sizeof] = ACTIONS(970), + [sym_number_literal] = ACTIONS(972), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(974), + [sym_false] = ACTIONS(974), + [sym_null] = ACTIONS(974), + [sym_identifier] = ACTIONS(2866), + [sym_comment] = ACTIONS(59), + }, + [931] = { + [sym_compound_statement] = STATE(779), + [sym_labeled_statement] = STATE(779), + [sym_expression_statement] = STATE(779), + [sym_if_statement] = STATE(779), + [sym_switch_statement] = STATE(779), + [sym_case_statement] = STATE(779), + [sym_while_statement] = STATE(779), + [sym_do_statement] = STATE(779), + [sym_for_statement] = STATE(779), + [sym_return_statement] = STATE(779), + [sym_break_statement] = STATE(779), + [sym_continue_statement] = STATE(779), + [sym_goto_statement] = STATE(779), + [sym__expression] = STATE(372), + [sym_comma_expression] = STATE(373), + [sym_conditional_expression] = STATE(372), + [sym_assignment_expression] = STATE(372), + [sym_pointer_expression] = STATE(372), + [sym_logical_expression] = STATE(372), + [sym_bitwise_expression] = STATE(372), + [sym_equality_expression] = STATE(372), + [sym_relational_expression] = STATE(372), + [sym_shift_expression] = STATE(372), + [sym_math_expression] = STATE(372), + [sym_cast_expression] = STATE(372), + [sym_sizeof_expression] = STATE(372), + [sym_subscript_expression] = STATE(372), + [sym_call_expression] = STATE(372), + [sym_field_expression] = STATE(372), + [sym_compound_literal_expression] = STATE(372), + [sym_parenthesized_expression] = STATE(372), + [sym_char_literal] = STATE(372), + [sym_concatenated_string] = STATE(372), + [sym_string_literal] = STATE(374), + [anon_sym_SEMI] = ACTIONS(928), + [anon_sym_LBRACE] = ACTIONS(439), + [anon_sym_LPAREN2] = ACTIONS(936), + [anon_sym_STAR] = ACTIONS(938), + [anon_sym_if] = ACTIONS(1988), + [anon_sym_switch] = ACTIONS(1990), + [anon_sym_case] = ACTIONS(1992), + [anon_sym_default] = ACTIONS(1994), + [anon_sym_while] = ACTIONS(1996), + [anon_sym_do] = ACTIONS(950), + [anon_sym_for] = ACTIONS(1998), + [anon_sym_return] = ACTIONS(954), + [anon_sym_break] = ACTIONS(956), + [anon_sym_continue] = ACTIONS(958), + [anon_sym_goto] = ACTIONS(960), + [anon_sym_AMP] = ACTIONS(938), + [anon_sym_BANG] = ACTIONS(962), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_DASH_DASH] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(968), + [anon_sym_sizeof] = ACTIONS(970), + [sym_number_literal] = ACTIONS(972), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(974), + [sym_false] = ACTIONS(974), + [sym_null] = ACTIONS(974), + [sym_identifier] = ACTIONS(2000), + [sym_comment] = ACTIONS(59), + }, + [932] = { [sym_declaration] = STATE(1025), - [sym__declaration_specifiers] = STATE(650), - [sym_storage_class_specifier] = STATE(87), - [sym_type_qualifier] = STATE(87), - [sym__type_specifier] = STATE(86), - [sym_sized_type_specifier] = STATE(86), - [sym_enum_specifier] = STATE(86), - [sym_struct_specifier] = STATE(86), - [sym_union_specifier] = STATE(86), + [sym__declaration_specifiers] = STATE(778), + [sym_storage_class_specifier] = STATE(142), + [sym_type_qualifier] = STATE(142), + [sym__type_specifier] = STATE(141), + [sym_sized_type_specifier] = STATE(141), + [sym_enum_specifier] = STATE(141), + [sym_struct_specifier] = STATE(141), + [sym_union_specifier] = STATE(141), [sym__expression] = STATE(1026), [sym_conditional_expression] = STATE(1026), [sym_assignment_expression] = STATE(1026), @@ -36781,1185 +38153,725 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_parenthesized_expression] = STATE(1026), [sym_char_literal] = STATE(1026), [sym_concatenated_string] = STATE(1026), - [sym_string_literal] = STATE(342), - [sym_macro_type_specifier] = STATE(86), - [aux_sym__declaration_specifiers_repeat1] = STATE(87), - [aux_sym_sized_type_specifier_repeat1] = STATE(88), - [anon_sym_SEMI] = ACTIONS(2810), - [anon_sym_extern] = ACTIONS(21), - [anon_sym_LPAREN2] = ACTIONS(780), - [anon_sym_STAR] = ACTIONS(782), - [anon_sym_static] = ACTIONS(21), - [anon_sym_auto] = ACTIONS(21), - [anon_sym_register] = ACTIONS(21), - [anon_sym_inline] = ACTIONS(21), - [anon_sym_const] = ACTIONS(23), - [anon_sym_restrict] = ACTIONS(23), - [anon_sym_volatile] = ACTIONS(23), - [anon_sym__Atomic] = ACTIONS(23), - [anon_sym_unsigned] = ACTIONS(167), - [anon_sym_long] = ACTIONS(167), - [anon_sym_short] = ACTIONS(167), - [sym_primitive_type] = ACTIONS(169), - [anon_sym_enum] = ACTIONS(29), - [anon_sym_struct] = ACTIONS(31), - [anon_sym_union] = ACTIONS(33), - [anon_sym_AMP] = ACTIONS(782), - [anon_sym_BANG] = ACTIONS(784), - [anon_sym_TILDE] = ACTIONS(786), - [anon_sym_PLUS] = ACTIONS(788), - [anon_sym_DASH] = ACTIONS(788), - [anon_sym_DASH_DASH] = ACTIONS(790), - [anon_sym_PLUS_PLUS] = ACTIONS(790), - [anon_sym_sizeof] = ACTIONS(792), - [sym_number_literal] = ACTIONS(2812), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(2814), - [sym_false] = ACTIONS(2814), - [sym_null] = ACTIONS(2814), - [sym_identifier] = ACTIONS(1547), - [sym_comment] = ACTIONS(37), - }, - [929] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1549), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1549), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1549), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1549), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1549), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1549), - [sym_preproc_directive] = ACTIONS(1549), - [anon_sym_SEMI] = ACTIONS(1551), - [anon_sym_typedef] = ACTIONS(1549), - [anon_sym_extern] = ACTIONS(1549), - [anon_sym_LBRACE] = ACTIONS(1551), - [anon_sym_LPAREN2] = ACTIONS(1551), - [anon_sym_STAR] = ACTIONS(1551), - [anon_sym_static] = ACTIONS(1549), - [anon_sym_auto] = ACTIONS(1549), - [anon_sym_register] = ACTIONS(1549), - [anon_sym_inline] = ACTIONS(1549), - [anon_sym_const] = ACTIONS(1549), - [anon_sym_restrict] = ACTIONS(1549), - [anon_sym_volatile] = ACTIONS(1549), - [anon_sym__Atomic] = ACTIONS(1549), - [anon_sym_unsigned] = ACTIONS(1549), - [anon_sym_long] = ACTIONS(1549), - [anon_sym_short] = ACTIONS(1549), - [sym_primitive_type] = ACTIONS(1549), - [anon_sym_enum] = ACTIONS(1549), - [anon_sym_struct] = ACTIONS(1549), - [anon_sym_union] = ACTIONS(1549), - [anon_sym_if] = ACTIONS(1549), - [anon_sym_else] = ACTIONS(1549), - [anon_sym_switch] = ACTIONS(1549), - [anon_sym_case] = ACTIONS(1549), - [anon_sym_default] = ACTIONS(1549), - [anon_sym_while] = ACTIONS(1549), - [anon_sym_do] = ACTIONS(1549), - [anon_sym_for] = ACTIONS(1549), - [anon_sym_return] = ACTIONS(1549), - [anon_sym_break] = ACTIONS(1549), - [anon_sym_continue] = ACTIONS(1549), - [anon_sym_goto] = ACTIONS(1549), - [anon_sym_AMP] = ACTIONS(1551), - [anon_sym_BANG] = ACTIONS(1551), - [anon_sym_TILDE] = ACTIONS(1551), - [anon_sym_PLUS] = ACTIONS(1549), - [anon_sym_DASH] = ACTIONS(1549), - [anon_sym_DASH_DASH] = ACTIONS(1551), - [anon_sym_PLUS_PLUS] = ACTIONS(1551), - [anon_sym_sizeof] = ACTIONS(1549), - [sym_number_literal] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1551), - [anon_sym_DQUOTE] = ACTIONS(1551), - [sym_true] = ACTIONS(1549), - [sym_false] = ACTIONS(1549), - [sym_null] = ACTIONS(1549), - [sym_identifier] = ACTIONS(1549), - [sym_comment] = ACTIONS(37), - }, - [930] = { - [sym_argument_list] = STATE(430), - [anon_sym_SEMI] = ACTIONS(2816), - [anon_sym_LPAREN2] = ACTIONS(1012), - [anon_sym_STAR] = ACTIONS(1319), - [anon_sym_LBRACK] = ACTIONS(1016), - [anon_sym_EQ] = ACTIONS(1321), - [anon_sym_QMARK] = ACTIONS(1323), - [anon_sym_STAR_EQ] = ACTIONS(1325), - [anon_sym_SLASH_EQ] = ACTIONS(1325), - [anon_sym_PERCENT_EQ] = ACTIONS(1325), - [anon_sym_PLUS_EQ] = ACTIONS(1325), - [anon_sym_DASH_EQ] = ACTIONS(1325), - [anon_sym_LT_LT_EQ] = ACTIONS(1325), - [anon_sym_GT_GT_EQ] = ACTIONS(1325), - [anon_sym_AMP_EQ] = ACTIONS(1325), - [anon_sym_CARET_EQ] = ACTIONS(1325), - [anon_sym_PIPE_EQ] = ACTIONS(1325), - [anon_sym_AMP] = ACTIONS(1327), - [anon_sym_PIPE_PIPE] = ACTIONS(1329), - [anon_sym_AMP_AMP] = ACTIONS(1331), - [anon_sym_PIPE] = ACTIONS(1333), - [anon_sym_CARET] = ACTIONS(1335), - [anon_sym_EQ_EQ] = ACTIONS(1337), - [anon_sym_BANG_EQ] = ACTIONS(1337), - [anon_sym_LT] = ACTIONS(1339), - [anon_sym_GT] = ACTIONS(1339), - [anon_sym_LT_EQ] = ACTIONS(1341), - [anon_sym_GT_EQ] = ACTIONS(1341), - [anon_sym_LT_LT] = ACTIONS(1343), - [anon_sym_GT_GT] = ACTIONS(1343), - [anon_sym_PLUS] = ACTIONS(1345), - [anon_sym_DASH] = ACTIONS(1345), - [anon_sym_SLASH] = ACTIONS(1319), - [anon_sym_PERCENT] = ACTIONS(1319), - [anon_sym_DASH_DASH] = ACTIONS(1044), - [anon_sym_PLUS_PLUS] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1046), - [anon_sym_DASH_GT] = ACTIONS(1046), - [sym_comment] = ACTIONS(37), - }, - [931] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1555), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1555), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1555), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1555), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1555), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1555), - [sym_preproc_directive] = ACTIONS(1555), - [anon_sym_SEMI] = ACTIONS(1557), - [anon_sym_typedef] = ACTIONS(1555), - [anon_sym_extern] = ACTIONS(1555), - [anon_sym_LBRACE] = ACTIONS(1557), - [anon_sym_LPAREN2] = ACTIONS(1557), - [anon_sym_STAR] = ACTIONS(1557), - [anon_sym_static] = ACTIONS(1555), - [anon_sym_auto] = ACTIONS(1555), - [anon_sym_register] = ACTIONS(1555), - [anon_sym_inline] = ACTIONS(1555), - [anon_sym_const] = ACTIONS(1555), - [anon_sym_restrict] = ACTIONS(1555), - [anon_sym_volatile] = ACTIONS(1555), - [anon_sym__Atomic] = ACTIONS(1555), - [anon_sym_unsigned] = ACTIONS(1555), - [anon_sym_long] = ACTIONS(1555), - [anon_sym_short] = ACTIONS(1555), - [sym_primitive_type] = ACTIONS(1555), - [anon_sym_enum] = ACTIONS(1555), - [anon_sym_struct] = ACTIONS(1555), - [anon_sym_union] = ACTIONS(1555), - [anon_sym_if] = ACTIONS(1555), - [anon_sym_else] = ACTIONS(1555), - [anon_sym_switch] = ACTIONS(1555), - [anon_sym_case] = ACTIONS(1555), - [anon_sym_default] = ACTIONS(1555), - [anon_sym_while] = ACTIONS(1555), - [anon_sym_do] = ACTIONS(1555), - [anon_sym_for] = ACTIONS(1555), - [anon_sym_return] = ACTIONS(1555), - [anon_sym_break] = ACTIONS(1555), - [anon_sym_continue] = ACTIONS(1555), - [anon_sym_goto] = ACTIONS(1555), - [anon_sym_AMP] = ACTIONS(1557), - [anon_sym_BANG] = ACTIONS(1557), - [anon_sym_TILDE] = ACTIONS(1557), - [anon_sym_PLUS] = ACTIONS(1555), - [anon_sym_DASH] = ACTIONS(1555), - [anon_sym_DASH_DASH] = ACTIONS(1557), - [anon_sym_PLUS_PLUS] = ACTIONS(1557), - [anon_sym_sizeof] = ACTIONS(1555), - [sym_number_literal] = ACTIONS(1557), - [anon_sym_SQUOTE] = ACTIONS(1557), - [anon_sym_DQUOTE] = ACTIONS(1557), - [sym_true] = ACTIONS(1555), - [sym_false] = ACTIONS(1555), - [sym_null] = ACTIONS(1555), - [sym_identifier] = ACTIONS(1555), - [sym_comment] = ACTIONS(37), - }, - [932] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1559), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1559), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1559), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1559), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1559), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1559), - [sym_preproc_directive] = ACTIONS(1559), - [anon_sym_SEMI] = ACTIONS(1561), - [anon_sym_typedef] = ACTIONS(1559), - [anon_sym_extern] = ACTIONS(1559), - [anon_sym_LBRACE] = ACTIONS(1561), - [anon_sym_LPAREN2] = ACTIONS(1561), - [anon_sym_STAR] = ACTIONS(1561), - [anon_sym_static] = ACTIONS(1559), - [anon_sym_auto] = ACTIONS(1559), - [anon_sym_register] = ACTIONS(1559), - [anon_sym_inline] = ACTIONS(1559), - [anon_sym_const] = ACTIONS(1559), - [anon_sym_restrict] = ACTIONS(1559), - [anon_sym_volatile] = ACTIONS(1559), - [anon_sym__Atomic] = ACTIONS(1559), - [anon_sym_unsigned] = ACTIONS(1559), - [anon_sym_long] = ACTIONS(1559), - [anon_sym_short] = ACTIONS(1559), - [sym_primitive_type] = ACTIONS(1559), - [anon_sym_enum] = ACTIONS(1559), - [anon_sym_struct] = ACTIONS(1559), - [anon_sym_union] = ACTIONS(1559), - [anon_sym_if] = ACTIONS(1559), - [anon_sym_else] = ACTIONS(1559), - [anon_sym_switch] = ACTIONS(1559), - [anon_sym_case] = ACTIONS(1559), - [anon_sym_default] = ACTIONS(1559), - [anon_sym_while] = ACTIONS(1559), - [anon_sym_do] = ACTIONS(1559), - [anon_sym_for] = ACTIONS(1559), - [anon_sym_return] = ACTIONS(1559), - [anon_sym_break] = ACTIONS(1559), - [anon_sym_continue] = ACTIONS(1559), - [anon_sym_goto] = ACTIONS(1559), - [anon_sym_AMP] = ACTIONS(1561), - [anon_sym_BANG] = ACTIONS(1561), - [anon_sym_TILDE] = ACTIONS(1561), - [anon_sym_PLUS] = ACTIONS(1559), - [anon_sym_DASH] = ACTIONS(1559), - [anon_sym_DASH_DASH] = ACTIONS(1561), - [anon_sym_PLUS_PLUS] = ACTIONS(1561), - [anon_sym_sizeof] = ACTIONS(1559), - [sym_number_literal] = ACTIONS(1561), - [anon_sym_SQUOTE] = ACTIONS(1561), - [anon_sym_DQUOTE] = ACTIONS(1561), - [sym_true] = ACTIONS(1559), - [sym_false] = ACTIONS(1559), - [sym_null] = ACTIONS(1559), - [sym_identifier] = ACTIONS(1559), - [sym_comment] = ACTIONS(37), + [sym_string_literal] = STATE(534), + [sym_macro_type_specifier] = STATE(141), + [aux_sym__declaration_specifiers_repeat1] = STATE(142), + [aux_sym_sized_type_specifier_repeat1] = STATE(143), + [anon_sym_SEMI] = ACTIONS(2868), + [anon_sym_extern] = ACTIONS(25), + [anon_sym_LPAREN2] = ACTIONS(1349), + [anon_sym_STAR] = ACTIONS(1351), + [anon_sym_static] = ACTIONS(25), + [anon_sym_auto] = ACTIONS(25), + [anon_sym_register] = ACTIONS(25), + [anon_sym_inline] = ACTIONS(25), + [anon_sym_const] = ACTIONS(27), + [anon_sym_restrict] = ACTIONS(27), + [anon_sym_volatile] = ACTIONS(27), + [anon_sym__Atomic] = ACTIONS(27), + [anon_sym_unsigned] = ACTIONS(294), + [anon_sym_long] = ACTIONS(294), + [anon_sym_short] = ACTIONS(294), + [sym_primitive_type] = ACTIONS(296), + [anon_sym_enum] = ACTIONS(33), + [anon_sym_struct] = ACTIONS(35), + [anon_sym_union] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(1351), + [anon_sym_BANG] = ACTIONS(1353), + [anon_sym_TILDE] = ACTIONS(1355), + [anon_sym_PLUS] = ACTIONS(1357), + [anon_sym_DASH] = ACTIONS(1357), + [anon_sym_DASH_DASH] = ACTIONS(1359), + [anon_sym_PLUS_PLUS] = ACTIONS(1359), + [anon_sym_sizeof] = ACTIONS(1361), + [sym_number_literal] = ACTIONS(2870), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(2872), + [sym_false] = ACTIONS(2872), + [sym_null] = ACTIONS(2872), + [sym_identifier] = ACTIONS(2026), + [sym_comment] = ACTIONS(59), }, [933] = { - [anon_sym_SEMI] = ACTIONS(2818), - [sym_comment] = ACTIONS(37), + [sym_compound_statement] = STATE(795), + [sym_labeled_statement] = STATE(795), + [sym_expression_statement] = STATE(795), + [sym_if_statement] = STATE(795), + [sym_switch_statement] = STATE(795), + [sym_case_statement] = STATE(795), + [sym_while_statement] = STATE(795), + [sym_do_statement] = STATE(795), + [sym_for_statement] = STATE(795), + [sym_return_statement] = STATE(795), + [sym_break_statement] = STATE(795), + [sym_continue_statement] = STATE(795), + [sym_goto_statement] = STATE(795), + [sym__expression] = STATE(372), + [sym_comma_expression] = STATE(373), + [sym_conditional_expression] = STATE(372), + [sym_assignment_expression] = STATE(372), + [sym_pointer_expression] = STATE(372), + [sym_logical_expression] = STATE(372), + [sym_bitwise_expression] = STATE(372), + [sym_equality_expression] = STATE(372), + [sym_relational_expression] = STATE(372), + [sym_shift_expression] = STATE(372), + [sym_math_expression] = STATE(372), + [sym_cast_expression] = STATE(372), + [sym_sizeof_expression] = STATE(372), + [sym_subscript_expression] = STATE(372), + [sym_call_expression] = STATE(372), + [sym_field_expression] = STATE(372), + [sym_compound_literal_expression] = STATE(372), + [sym_parenthesized_expression] = STATE(372), + [sym_char_literal] = STATE(372), + [sym_concatenated_string] = STATE(372), + [sym_string_literal] = STATE(374), + [anon_sym_SEMI] = ACTIONS(928), + [anon_sym_LBRACE] = ACTIONS(439), + [anon_sym_LPAREN2] = ACTIONS(936), + [anon_sym_STAR] = ACTIONS(938), + [anon_sym_if] = ACTIONS(1988), + [anon_sym_switch] = ACTIONS(1990), + [anon_sym_case] = ACTIONS(1992), + [anon_sym_default] = ACTIONS(1994), + [anon_sym_while] = ACTIONS(1996), + [anon_sym_do] = ACTIONS(950), + [anon_sym_for] = ACTIONS(1998), + [anon_sym_return] = ACTIONS(954), + [anon_sym_break] = ACTIONS(956), + [anon_sym_continue] = ACTIONS(958), + [anon_sym_goto] = ACTIONS(960), + [anon_sym_AMP] = ACTIONS(938), + [anon_sym_BANG] = ACTIONS(962), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_DASH_DASH] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(968), + [anon_sym_sizeof] = ACTIONS(970), + [sym_number_literal] = ACTIONS(972), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(974), + [sym_false] = ACTIONS(974), + [sym_null] = ACTIONS(974), + [sym_identifier] = ACTIONS(2000), + [sym_comment] = ACTIONS(59), }, [934] = { - [sym_compound_statement] = STATE(1029), - [sym_labeled_statement] = STATE(1029), - [sym_expression_statement] = STATE(1029), - [sym_if_statement] = STATE(1029), - [sym_switch_statement] = STATE(1029), - [sym_case_statement] = STATE(1029), - [sym_while_statement] = STATE(1029), - [sym_do_statement] = STATE(1029), - [sym_for_statement] = STATE(1029), - [sym_return_statement] = STATE(1029), - [sym_break_statement] = STATE(1029), - [sym_continue_statement] = STATE(1029), - [sym_goto_statement] = STATE(1029), - [sym__expression] = STATE(800), - [sym_comma_expression] = STATE(801), - [sym_conditional_expression] = STATE(800), - [sym_assignment_expression] = STATE(800), - [sym_pointer_expression] = STATE(800), - [sym_logical_expression] = STATE(800), - [sym_bitwise_expression] = STATE(800), - [sym_equality_expression] = STATE(800), - [sym_relational_expression] = STATE(800), - [sym_shift_expression] = STATE(800), - [sym_math_expression] = STATE(800), - [sym_cast_expression] = STATE(800), - [sym_sizeof_expression] = STATE(800), - [sym_subscript_expression] = STATE(800), - [sym_call_expression] = STATE(800), - [sym_field_expression] = STATE(800), - [sym_compound_literal_expression] = STATE(800), - [sym_parenthesized_expression] = STATE(800), - [sym_char_literal] = STATE(800), - [sym_concatenated_string] = STATE(800), - [sym_string_literal] = STATE(230), - [anon_sym_SEMI] = ACTIONS(2082), - [anon_sym_LBRACE] = ACTIONS(1181), - [anon_sym_LPAREN2] = ACTIONS(507), - [anon_sym_STAR] = ACTIONS(509), - [anon_sym_if] = ACTIONS(2084), - [anon_sym_switch] = ACTIONS(2086), - [anon_sym_case] = ACTIONS(2088), - [anon_sym_default] = ACTIONS(2090), - [anon_sym_while] = ACTIONS(2092), - [anon_sym_do] = ACTIONS(2094), - [anon_sym_for] = ACTIONS(2096), - [anon_sym_return] = ACTIONS(2098), - [anon_sym_break] = ACTIONS(2100), - [anon_sym_continue] = ACTIONS(2102), - [anon_sym_goto] = ACTIONS(2104), - [anon_sym_AMP] = ACTIONS(509), - [anon_sym_BANG] = ACTIONS(533), - [anon_sym_TILDE] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DASH] = ACTIONS(537), - [anon_sym_DASH_DASH] = ACTIONS(539), - [anon_sym_PLUS_PLUS] = ACTIONS(539), - [anon_sym_sizeof] = ACTIONS(541), - [sym_number_literal] = ACTIONS(2106), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(2108), - [sym_false] = ACTIONS(2108), - [sym_null] = ACTIONS(2108), - [sym_identifier] = ACTIONS(2802), - [sym_comment] = ACTIONS(37), + [sym_compound_statement] = STATE(1027), + [sym_labeled_statement] = STATE(1027), + [sym_expression_statement] = STATE(1027), + [sym_if_statement] = STATE(1027), + [sym_switch_statement] = STATE(1027), + [sym_case_statement] = STATE(1027), + [sym_while_statement] = STATE(1027), + [sym_do_statement] = STATE(1027), + [sym_for_statement] = STATE(1027), + [sym_return_statement] = STATE(1027), + [sym_break_statement] = STATE(1027), + [sym_continue_statement] = STATE(1027), + [sym_goto_statement] = STATE(1027), + [sym__expression] = STATE(372), + [sym_comma_expression] = STATE(373), + [sym_conditional_expression] = STATE(372), + [sym_assignment_expression] = STATE(372), + [sym_pointer_expression] = STATE(372), + [sym_logical_expression] = STATE(372), + [sym_bitwise_expression] = STATE(372), + [sym_equality_expression] = STATE(372), + [sym_relational_expression] = STATE(372), + [sym_shift_expression] = STATE(372), + [sym_math_expression] = STATE(372), + [sym_cast_expression] = STATE(372), + [sym_sizeof_expression] = STATE(372), + [sym_subscript_expression] = STATE(372), + [sym_call_expression] = STATE(372), + [sym_field_expression] = STATE(372), + [sym_compound_literal_expression] = STATE(372), + [sym_parenthesized_expression] = STATE(372), + [sym_char_literal] = STATE(372), + [sym_concatenated_string] = STATE(372), + [sym_string_literal] = STATE(374), + [anon_sym_SEMI] = ACTIONS(928), + [anon_sym_LBRACE] = ACTIONS(439), + [anon_sym_LPAREN2] = ACTIONS(936), + [anon_sym_STAR] = ACTIONS(938), + [anon_sym_if] = ACTIONS(940), + [anon_sym_switch] = ACTIONS(942), + [anon_sym_case] = ACTIONS(944), + [anon_sym_default] = ACTIONS(946), + [anon_sym_while] = ACTIONS(948), + [anon_sym_do] = ACTIONS(950), + [anon_sym_for] = ACTIONS(952), + [anon_sym_return] = ACTIONS(954), + [anon_sym_break] = ACTIONS(956), + [anon_sym_continue] = ACTIONS(958), + [anon_sym_goto] = ACTIONS(960), + [anon_sym_AMP] = ACTIONS(938), + [anon_sym_BANG] = ACTIONS(962), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_DASH_DASH] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(968), + [anon_sym_sizeof] = ACTIONS(970), + [sym_number_literal] = ACTIONS(972), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(974), + [sym_false] = ACTIONS(974), + [sym_null] = ACTIONS(974), + [sym_identifier] = ACTIONS(2002), + [sym_comment] = ACTIONS(59), }, [935] = { - [sym_parameter_list] = STATE(119), - [aux_sym_declaration_repeat1] = STATE(503), - [anon_sym_COMMA] = ACTIONS(225), - [anon_sym_SEMI] = ACTIONS(1179), - [anon_sym_LPAREN2] = ACTIONS(231), - [anon_sym_LBRACK] = ACTIONS(233), - [anon_sym_EQ] = ACTIONS(235), - [sym_comment] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(2874), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2876), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2876), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2876), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2876), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2876), + [sym_preproc_directive] = ACTIONS(2876), + [anon_sym_typedef] = ACTIONS(2876), + [anon_sym_extern] = ACTIONS(2876), + [anon_sym_LBRACE] = ACTIONS(2874), + [anon_sym_RBRACE] = ACTIONS(2874), + [anon_sym_LPAREN2] = ACTIONS(2874), + [anon_sym_STAR] = ACTIONS(2874), + [anon_sym_static] = ACTIONS(2876), + [anon_sym_auto] = ACTIONS(2876), + [anon_sym_register] = ACTIONS(2876), + [anon_sym_inline] = ACTIONS(2876), + [anon_sym_const] = ACTIONS(2876), + [anon_sym_restrict] = ACTIONS(2876), + [anon_sym_volatile] = ACTIONS(2876), + [anon_sym__Atomic] = ACTIONS(2876), + [anon_sym_unsigned] = ACTIONS(2876), + [anon_sym_long] = ACTIONS(2876), + [anon_sym_short] = ACTIONS(2876), + [sym_primitive_type] = ACTIONS(2876), + [anon_sym_enum] = ACTIONS(2876), + [anon_sym_struct] = ACTIONS(2876), + [anon_sym_union] = ACTIONS(2876), + [anon_sym_if] = ACTIONS(2876), + [anon_sym_else] = ACTIONS(2876), + [anon_sym_switch] = ACTIONS(2876), + [anon_sym_case] = ACTIONS(2876), + [anon_sym_default] = ACTIONS(2876), + [anon_sym_while] = ACTIONS(2876), + [anon_sym_do] = ACTIONS(2876), + [anon_sym_for] = ACTIONS(2876), + [anon_sym_return] = ACTIONS(2876), + [anon_sym_break] = ACTIONS(2876), + [anon_sym_continue] = ACTIONS(2876), + [anon_sym_goto] = ACTIONS(2876), + [anon_sym_AMP] = ACTIONS(2874), + [anon_sym_BANG] = ACTIONS(2874), + [anon_sym_TILDE] = ACTIONS(2874), + [anon_sym_PLUS] = ACTIONS(2876), + [anon_sym_DASH] = ACTIONS(2876), + [anon_sym_DASH_DASH] = ACTIONS(2874), + [anon_sym_PLUS_PLUS] = ACTIONS(2874), + [anon_sym_sizeof] = ACTIONS(2876), + [sym_number_literal] = ACTIONS(2874), + [anon_sym_SQUOTE] = ACTIONS(2874), + [anon_sym_DQUOTE] = ACTIONS(2874), + [sym_true] = ACTIONS(2876), + [sym_false] = ACTIONS(2876), + [sym_null] = ACTIONS(2876), + [sym_identifier] = ACTIONS(2876), + [sym_comment] = ACTIONS(59), }, [936] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1587), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1587), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1587), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1587), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1587), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1587), - [sym_preproc_directive] = ACTIONS(1587), - [anon_sym_SEMI] = ACTIONS(1589), - [anon_sym_typedef] = ACTIONS(1587), - [anon_sym_extern] = ACTIONS(1587), - [anon_sym_LBRACE] = ACTIONS(1589), - [anon_sym_LPAREN2] = ACTIONS(1589), - [anon_sym_STAR] = ACTIONS(1589), - [anon_sym_static] = ACTIONS(1587), - [anon_sym_auto] = ACTIONS(1587), - [anon_sym_register] = ACTIONS(1587), - [anon_sym_inline] = ACTIONS(1587), - [anon_sym_const] = ACTIONS(1587), - [anon_sym_restrict] = ACTIONS(1587), - [anon_sym_volatile] = ACTIONS(1587), - [anon_sym__Atomic] = ACTIONS(1587), - [anon_sym_unsigned] = ACTIONS(1587), - [anon_sym_long] = ACTIONS(1587), - [anon_sym_short] = ACTIONS(1587), - [sym_primitive_type] = ACTIONS(1587), - [anon_sym_enum] = ACTIONS(1587), - [anon_sym_struct] = ACTIONS(1587), - [anon_sym_union] = ACTIONS(1587), - [anon_sym_if] = ACTIONS(1587), - [anon_sym_else] = ACTIONS(1587), - [anon_sym_switch] = ACTIONS(1587), - [anon_sym_case] = ACTIONS(1587), - [anon_sym_default] = ACTIONS(1587), - [anon_sym_while] = ACTIONS(1587), - [anon_sym_do] = ACTIONS(1587), - [anon_sym_for] = ACTIONS(1587), - [anon_sym_return] = ACTIONS(1587), - [anon_sym_break] = ACTIONS(1587), - [anon_sym_continue] = ACTIONS(1587), - [anon_sym_goto] = ACTIONS(1587), - [anon_sym_AMP] = ACTIONS(1589), - [anon_sym_BANG] = ACTIONS(1589), - [anon_sym_TILDE] = ACTIONS(1589), - [anon_sym_PLUS] = ACTIONS(1587), - [anon_sym_DASH] = ACTIONS(1587), - [anon_sym_DASH_DASH] = ACTIONS(1589), - [anon_sym_PLUS_PLUS] = ACTIONS(1589), - [anon_sym_sizeof] = ACTIONS(1587), - [sym_number_literal] = ACTIONS(1589), - [anon_sym_SQUOTE] = ACTIONS(1589), - [anon_sym_DQUOTE] = ACTIONS(1589), - [sym_true] = ACTIONS(1587), - [sym_false] = ACTIONS(1587), - [sym_null] = ACTIONS(1587), - [sym_identifier] = ACTIONS(1587), - [sym_comment] = ACTIONS(37), + [sym_parenthesized_expression] = STATE(1028), + [anon_sym_LPAREN2] = ACTIONS(1448), + [sym_comment] = ACTIONS(59), }, [937] = { - [sym_preproc_include] = STATE(937), - [sym_preproc_def] = STATE(937), - [sym_preproc_function_def] = STATE(937), - [sym_preproc_call] = STATE(937), - [sym_preproc_if_in_compound_statement] = STATE(937), - [sym_preproc_ifdef_in_compound_statement] = STATE(937), - [sym_declaration] = STATE(937), - [sym_type_definition] = STATE(937), - [sym__declaration_specifiers] = STATE(799), - [sym_compound_statement] = STATE(937), - [sym_storage_class_specifier] = STATE(19), - [sym_type_qualifier] = STATE(19), - [sym__type_specifier] = STATE(17), - [sym_sized_type_specifier] = STATE(17), - [sym_enum_specifier] = STATE(17), - [sym_struct_specifier] = STATE(17), - [sym_union_specifier] = STATE(17), - [sym_labeled_statement] = STATE(937), - [sym_expression_statement] = STATE(937), - [sym_if_statement] = STATE(937), - [sym_switch_statement] = STATE(937), - [sym_case_statement] = STATE(937), - [sym_while_statement] = STATE(937), - [sym_do_statement] = STATE(937), - [sym_for_statement] = STATE(937), - [sym_return_statement] = STATE(937), - [sym_break_statement] = STATE(937), - [sym_continue_statement] = STATE(937), - [sym_goto_statement] = STATE(937), - [sym__expression] = STATE(800), - [sym_comma_expression] = STATE(801), - [sym_conditional_expression] = STATE(800), - [sym_assignment_expression] = STATE(800), - [sym_pointer_expression] = STATE(800), - [sym_logical_expression] = STATE(800), - [sym_bitwise_expression] = STATE(800), - [sym_equality_expression] = STATE(800), - [sym_relational_expression] = STATE(800), - [sym_shift_expression] = STATE(800), - [sym_math_expression] = STATE(800), - [sym_cast_expression] = STATE(800), - [sym_sizeof_expression] = STATE(800), - [sym_subscript_expression] = STATE(800), - [sym_call_expression] = STATE(800), - [sym_field_expression] = STATE(800), - [sym_compound_literal_expression] = STATE(800), - [sym_parenthesized_expression] = STATE(800), - [sym_char_literal] = STATE(800), - [sym_concatenated_string] = STATE(800), - [sym_string_literal] = STATE(230), - [sym__empty_declaration] = STATE(937), - [sym_macro_type_specifier] = STATE(17), - [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(937), - [aux_sym__declaration_specifiers_repeat1] = STATE(19), - [aux_sym_sized_type_specifier_repeat1] = STATE(20), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2820), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2823), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2826), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2568), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2829), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2829), - [sym_preproc_directive] = ACTIONS(2832), - [anon_sym_SEMI] = ACTIONS(2835), - [anon_sym_typedef] = ACTIONS(2838), - [anon_sym_extern] = ACTIONS(1684), - [anon_sym_LBRACE] = ACTIONS(2841), - [anon_sym_LPAREN2] = ACTIONS(1692), - [anon_sym_STAR] = ACTIONS(1695), - [anon_sym_static] = ACTIONS(1684), - [anon_sym_auto] = ACTIONS(1684), - [anon_sym_register] = ACTIONS(1684), - [anon_sym_inline] = ACTIONS(1684), - [anon_sym_const] = ACTIONS(1698), - [anon_sym_restrict] = ACTIONS(1698), - [anon_sym_volatile] = ACTIONS(1698), - [anon_sym__Atomic] = ACTIONS(1698), - [anon_sym_unsigned] = ACTIONS(1701), - [anon_sym_long] = ACTIONS(1701), - [anon_sym_short] = ACTIONS(1701), - [sym_primitive_type] = ACTIONS(1704), - [anon_sym_enum] = ACTIONS(1707), - [anon_sym_struct] = ACTIONS(1710), - [anon_sym_union] = ACTIONS(1713), - [anon_sym_if] = ACTIONS(2844), - [anon_sym_switch] = ACTIONS(2847), - [anon_sym_case] = ACTIONS(2850), - [anon_sym_default] = ACTIONS(2853), - [anon_sym_while] = ACTIONS(2856), - [anon_sym_do] = ACTIONS(2859), - [anon_sym_for] = ACTIONS(2862), - [anon_sym_return] = ACTIONS(2865), - [anon_sym_break] = ACTIONS(2868), - [anon_sym_continue] = ACTIONS(2871), - [anon_sym_goto] = ACTIONS(2874), - [anon_sym_AMP] = ACTIONS(1695), - [anon_sym_BANG] = ACTIONS(1749), - [anon_sym_TILDE] = ACTIONS(1752), - [anon_sym_PLUS] = ACTIONS(1755), - [anon_sym_DASH] = ACTIONS(1755), - [anon_sym_DASH_DASH] = ACTIONS(1758), - [anon_sym_PLUS_PLUS] = ACTIONS(1758), - [anon_sym_sizeof] = ACTIONS(1761), - [sym_number_literal] = ACTIONS(2877), - [anon_sym_SQUOTE] = ACTIONS(1767), - [anon_sym_DQUOTE] = ACTIONS(1770), + [sym_parenthesized_expression] = STATE(1029), + [anon_sym_LPAREN2] = ACTIONS(1448), + [sym_comment] = ACTIONS(59), + }, + [938] = { + [sym__expression] = STATE(1030), + [sym_conditional_expression] = STATE(1030), + [sym_assignment_expression] = STATE(1030), + [sym_pointer_expression] = STATE(1030), + [sym_logical_expression] = STATE(1030), + [sym_bitwise_expression] = STATE(1030), + [sym_equality_expression] = STATE(1030), + [sym_relational_expression] = STATE(1030), + [sym_shift_expression] = STATE(1030), + [sym_math_expression] = STATE(1030), + [sym_cast_expression] = STATE(1030), + [sym_sizeof_expression] = STATE(1030), + [sym_subscript_expression] = STATE(1030), + [sym_call_expression] = STATE(1030), + [sym_field_expression] = STATE(1030), + [sym_compound_literal_expression] = STATE(1030), + [sym_parenthesized_expression] = STATE(1030), + [sym_char_literal] = STATE(1030), + [sym_concatenated_string] = STATE(1030), + [sym_string_literal] = STATE(223), + [anon_sym_LPAREN2] = ACTIONS(483), + [anon_sym_STAR] = ACTIONS(485), + [anon_sym_AMP] = ACTIONS(485), + [anon_sym_BANG] = ACTIONS(487), + [anon_sym_TILDE] = ACTIONS(489), + [anon_sym_PLUS] = ACTIONS(491), + [anon_sym_DASH] = ACTIONS(491), + [anon_sym_DASH_DASH] = ACTIONS(493), + [anon_sym_PLUS_PLUS] = ACTIONS(493), + [anon_sym_sizeof] = ACTIONS(495), + [sym_number_literal] = ACTIONS(2878), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), [sym_true] = ACTIONS(2880), [sym_false] = ACTIONS(2880), [sym_null] = ACTIONS(2880), - [sym_identifier] = ACTIONS(2883), - [sym_comment] = ACTIONS(37), - }, - [938] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2886), - [sym_comment] = ACTIONS(37), + [sym_identifier] = ACTIONS(2880), + [sym_comment] = ACTIONS(59), }, [939] = { - [sym_preproc_include] = STATE(821), - [sym_preproc_def] = STATE(821), - [sym_preproc_function_def] = STATE(821), - [sym_preproc_call] = STATE(821), - [sym_preproc_if_in_compound_statement] = STATE(821), - [sym_preproc_ifdef_in_compound_statement] = STATE(821), - [sym_preproc_else_in_compound_statement] = STATE(1030), - [sym_preproc_elif_in_compound_statement] = STATE(1030), - [sym_declaration] = STATE(821), - [sym_type_definition] = STATE(821), - [sym__declaration_specifiers] = STATE(593), - [sym_compound_statement] = STATE(821), - [sym_storage_class_specifier] = STATE(19), - [sym_type_qualifier] = STATE(19), - [sym__type_specifier] = STATE(17), - [sym_sized_type_specifier] = STATE(17), - [sym_enum_specifier] = STATE(17), - [sym_struct_specifier] = STATE(17), - [sym_union_specifier] = STATE(17), - [sym_labeled_statement] = STATE(821), - [sym_expression_statement] = STATE(821), - [sym_if_statement] = STATE(821), - [sym_switch_statement] = STATE(821), - [sym_case_statement] = STATE(821), - [sym_while_statement] = STATE(821), - [sym_do_statement] = STATE(821), - [sym_for_statement] = STATE(821), - [sym_return_statement] = STATE(821), - [sym_break_statement] = STATE(821), - [sym_continue_statement] = STATE(821), - [sym_goto_statement] = STATE(821), - [sym__expression] = STATE(594), - [sym_comma_expression] = STATE(595), - [sym_conditional_expression] = STATE(594), - [sym_assignment_expression] = STATE(594), - [sym_pointer_expression] = STATE(594), - [sym_logical_expression] = STATE(594), - [sym_bitwise_expression] = STATE(594), - [sym_equality_expression] = STATE(594), - [sym_relational_expression] = STATE(594), - [sym_shift_expression] = STATE(594), - [sym_math_expression] = STATE(594), - [sym_cast_expression] = STATE(594), - [sym_sizeof_expression] = STATE(594), - [sym_subscript_expression] = STATE(594), - [sym_call_expression] = STATE(594), - [sym_field_expression] = STATE(594), - [sym_compound_literal_expression] = STATE(594), - [sym_parenthesized_expression] = STATE(594), - [sym_char_literal] = STATE(594), - [sym_concatenated_string] = STATE(594), - [sym_string_literal] = STATE(230), - [sym__empty_declaration] = STATE(821), - [sym_macro_type_specifier] = STATE(17), - [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(821), - [aux_sym__declaration_specifiers_repeat1] = STATE(19), - [aux_sym_sized_type_specifier_repeat1] = STATE(20), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(127), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(129), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1385), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2888), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1389), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1389), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1391), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1393), - [sym_preproc_directive] = ACTIONS(141), - [anon_sym_SEMI] = ACTIONS(1395), - [anon_sym_typedef] = ACTIONS(143), - [anon_sym_extern] = ACTIONS(21), - [anon_sym_LBRACE] = ACTIONS(678), - [anon_sym_LPAREN2] = ACTIONS(507), - [anon_sym_STAR] = ACTIONS(509), - [anon_sym_static] = ACTIONS(21), - [anon_sym_auto] = ACTIONS(21), - [anon_sym_register] = ACTIONS(21), - [anon_sym_inline] = ACTIONS(21), - [anon_sym_const] = ACTIONS(23), - [anon_sym_restrict] = ACTIONS(23), - [anon_sym_volatile] = ACTIONS(23), - [anon_sym__Atomic] = ACTIONS(23), - [anon_sym_unsigned] = ACTIONS(25), - [anon_sym_long] = ACTIONS(25), - [anon_sym_short] = ACTIONS(25), - [sym_primitive_type] = ACTIONS(27), - [anon_sym_enum] = ACTIONS(29), - [anon_sym_struct] = ACTIONS(31), - [anon_sym_union] = ACTIONS(33), - [anon_sym_if] = ACTIONS(1397), - [anon_sym_switch] = ACTIONS(1399), - [anon_sym_case] = ACTIONS(1401), - [anon_sym_default] = ACTIONS(1403), - [anon_sym_while] = ACTIONS(1405), - [anon_sym_do] = ACTIONS(1407), - [anon_sym_for] = ACTIONS(1409), - [anon_sym_return] = ACTIONS(1411), - [anon_sym_break] = ACTIONS(1413), - [anon_sym_continue] = ACTIONS(1415), - [anon_sym_goto] = ACTIONS(1417), - [anon_sym_AMP] = ACTIONS(509), - [anon_sym_BANG] = ACTIONS(533), - [anon_sym_TILDE] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DASH] = ACTIONS(537), - [anon_sym_DASH_DASH] = ACTIONS(539), - [anon_sym_PLUS_PLUS] = ACTIONS(539), - [anon_sym_sizeof] = ACTIONS(541), - [sym_number_literal] = ACTIONS(1419), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(1421), - [sym_false] = ACTIONS(1421), - [sym_null] = ACTIONS(1421), - [sym_identifier] = ACTIONS(1423), - [sym_comment] = ACTIONS(37), + [anon_sym_COLON] = ACTIONS(2882), + [sym_comment] = ACTIONS(59), }, [940] = { - [sym_parenthesized_expression] = STATE(1031), - [anon_sym_LPAREN2] = ACTIONS(916), - [sym_comment] = ACTIONS(37), + [sym_parenthesized_expression] = STATE(1032), + [anon_sym_LPAREN2] = ACTIONS(1448), + [sym_comment] = ACTIONS(59), }, [941] = { - [sym_parenthesized_expression] = STATE(1032), - [anon_sym_LPAREN2] = ACTIONS(916), - [sym_comment] = ACTIONS(37), + [anon_sym_LPAREN2] = ACTIONS(2884), + [sym_comment] = ACTIONS(59), }, [942] = { - [sym__expression] = STATE(1033), - [sym_conditional_expression] = STATE(1033), - [sym_assignment_expression] = STATE(1033), - [sym_pointer_expression] = STATE(1033), - [sym_logical_expression] = STATE(1033), - [sym_bitwise_expression] = STATE(1033), - [sym_equality_expression] = STATE(1033), - [sym_relational_expression] = STATE(1033), - [sym_shift_expression] = STATE(1033), - [sym_math_expression] = STATE(1033), - [sym_cast_expression] = STATE(1033), - [sym_sizeof_expression] = STATE(1033), - [sym_subscript_expression] = STATE(1033), - [sym_call_expression] = STATE(1033), - [sym_field_expression] = STATE(1033), - [sym_compound_literal_expression] = STATE(1033), - [sym_parenthesized_expression] = STATE(1033), - [sym_char_literal] = STATE(1033), - [sym_concatenated_string] = STATE(1033), - [sym_string_literal] = STATE(386), - [anon_sym_LPAREN2] = ACTIONS(918), - [anon_sym_STAR] = ACTIONS(920), - [anon_sym_AMP] = ACTIONS(920), - [anon_sym_BANG] = ACTIONS(922), - [anon_sym_TILDE] = ACTIONS(924), - [anon_sym_PLUS] = ACTIONS(926), - [anon_sym_DASH] = ACTIONS(926), - [anon_sym_DASH_DASH] = ACTIONS(928), - [anon_sym_PLUS_PLUS] = ACTIONS(928), - [anon_sym_sizeof] = ACTIONS(930), - [sym_number_literal] = ACTIONS(2890), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(2892), - [sym_false] = ACTIONS(2892), - [sym_null] = ACTIONS(2892), - [sym_identifier] = ACTIONS(2892), - [sym_comment] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(166), + [anon_sym_COMMA] = ACTIONS(166), + [anon_sym_LPAREN2] = ACTIONS(166), + [anon_sym_STAR] = ACTIONS(168), + [anon_sym_LBRACK] = ACTIONS(166), + [anon_sym_EQ] = ACTIONS(168), + [anon_sym_COLON] = ACTIONS(2886), + [anon_sym_QMARK] = ACTIONS(166), + [anon_sym_STAR_EQ] = ACTIONS(166), + [anon_sym_SLASH_EQ] = ACTIONS(166), + [anon_sym_PERCENT_EQ] = ACTIONS(166), + [anon_sym_PLUS_EQ] = ACTIONS(166), + [anon_sym_DASH_EQ] = ACTIONS(166), + [anon_sym_LT_LT_EQ] = ACTIONS(166), + [anon_sym_GT_GT_EQ] = ACTIONS(166), + [anon_sym_AMP_EQ] = ACTIONS(166), + [anon_sym_CARET_EQ] = ACTIONS(166), + [anon_sym_PIPE_EQ] = ACTIONS(166), + [anon_sym_AMP] = ACTIONS(168), + [anon_sym_PIPE_PIPE] = ACTIONS(166), + [anon_sym_AMP_AMP] = ACTIONS(166), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_CARET] = ACTIONS(168), + [anon_sym_EQ_EQ] = ACTIONS(166), + [anon_sym_BANG_EQ] = ACTIONS(166), + [anon_sym_LT] = ACTIONS(168), + [anon_sym_GT] = ACTIONS(168), + [anon_sym_LT_EQ] = ACTIONS(166), + [anon_sym_GT_EQ] = ACTIONS(166), + [anon_sym_LT_LT] = ACTIONS(168), + [anon_sym_GT_GT] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(168), + [anon_sym_DASH] = ACTIONS(168), + [anon_sym_SLASH] = ACTIONS(168), + [anon_sym_PERCENT] = ACTIONS(168), + [anon_sym_DASH_DASH] = ACTIONS(166), + [anon_sym_PLUS_PLUS] = ACTIONS(166), + [anon_sym_DOT] = ACTIONS(166), + [anon_sym_DASH_GT] = ACTIONS(166), + [sym_comment] = ACTIONS(59), }, [943] = { - [anon_sym_COLON] = ACTIONS(2894), - [sym_comment] = ACTIONS(37), + [anon_sym_else] = ACTIONS(2888), + [anon_sym_while] = ACTIONS(2569), + [sym_comment] = ACTIONS(59), }, [944] = { - [sym_parenthesized_expression] = STATE(1035), - [anon_sym_LPAREN2] = ACTIONS(916), - [sym_comment] = ACTIONS(37), + [sym_declaration] = STATE(935), + [sym_type_definition] = STATE(935), + [sym__declaration_specifiers] = STATE(778), + [sym_compound_statement] = STATE(935), + [sym_storage_class_specifier] = STATE(142), + [sym_type_qualifier] = STATE(142), + [sym__type_specifier] = STATE(141), + [sym_sized_type_specifier] = STATE(141), + [sym_enum_specifier] = STATE(141), + [sym_struct_specifier] = STATE(141), + [sym_union_specifier] = STATE(141), + [sym_labeled_statement] = STATE(935), + [sym_expression_statement] = STATE(935), + [sym_if_statement] = STATE(935), + [sym_switch_statement] = STATE(935), + [sym_case_statement] = STATE(935), + [sym_while_statement] = STATE(935), + [sym_do_statement] = STATE(935), + [sym_for_statement] = STATE(935), + [sym_return_statement] = STATE(935), + [sym_break_statement] = STATE(935), + [sym_continue_statement] = STATE(935), + [sym_goto_statement] = STATE(935), + [sym__expression] = STATE(372), + [sym_comma_expression] = STATE(373), + [sym_conditional_expression] = STATE(372), + [sym_assignment_expression] = STATE(372), + [sym_pointer_expression] = STATE(372), + [sym_logical_expression] = STATE(372), + [sym_bitwise_expression] = STATE(372), + [sym_equality_expression] = STATE(372), + [sym_relational_expression] = STATE(372), + [sym_shift_expression] = STATE(372), + [sym_math_expression] = STATE(372), + [sym_cast_expression] = STATE(372), + [sym_sizeof_expression] = STATE(372), + [sym_subscript_expression] = STATE(372), + [sym_call_expression] = STATE(372), + [sym_field_expression] = STATE(372), + [sym_compound_literal_expression] = STATE(372), + [sym_parenthesized_expression] = STATE(372), + [sym_char_literal] = STATE(372), + [sym_concatenated_string] = STATE(372), + [sym_string_literal] = STATE(374), + [sym_macro_type_specifier] = STATE(141), + [aux_sym__declaration_specifiers_repeat1] = STATE(142), + [aux_sym_sized_type_specifier_repeat1] = STATE(143), + [anon_sym_SEMI] = ACTIONS(928), + [anon_sym_typedef] = ACTIONS(17), + [anon_sym_extern] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(439), + [anon_sym_LPAREN2] = ACTIONS(936), + [anon_sym_STAR] = ACTIONS(938), + [anon_sym_static] = ACTIONS(25), + [anon_sym_auto] = ACTIONS(25), + [anon_sym_register] = ACTIONS(25), + [anon_sym_inline] = ACTIONS(25), + [anon_sym_const] = ACTIONS(27), + [anon_sym_restrict] = ACTIONS(27), + [anon_sym_volatile] = ACTIONS(27), + [anon_sym__Atomic] = ACTIONS(27), + [anon_sym_unsigned] = ACTIONS(294), + [anon_sym_long] = ACTIONS(294), + [anon_sym_short] = ACTIONS(294), + [sym_primitive_type] = ACTIONS(296), + [anon_sym_enum] = ACTIONS(33), + [anon_sym_struct] = ACTIONS(35), + [anon_sym_union] = ACTIONS(37), + [anon_sym_if] = ACTIONS(1456), + [anon_sym_switch] = ACTIONS(1458), + [anon_sym_case] = ACTIONS(1460), + [anon_sym_default] = ACTIONS(1462), + [anon_sym_while] = ACTIONS(1464), + [anon_sym_do] = ACTIONS(1466), + [anon_sym_for] = ACTIONS(1468), + [anon_sym_return] = ACTIONS(954), + [anon_sym_break] = ACTIONS(956), + [anon_sym_continue] = ACTIONS(958), + [anon_sym_goto] = ACTIONS(960), + [anon_sym_AMP] = ACTIONS(938), + [anon_sym_BANG] = ACTIONS(962), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_DASH_DASH] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(968), + [anon_sym_sizeof] = ACTIONS(970), + [sym_number_literal] = ACTIONS(972), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(974), + [sym_false] = ACTIONS(974), + [sym_null] = ACTIONS(974), + [sym_identifier] = ACTIONS(2603), + [sym_comment] = ACTIONS(59), }, [945] = { - [anon_sym_LPAREN2] = ACTIONS(2896), - [sym_comment] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(166), + [anon_sym_COMMA] = ACTIONS(166), + [anon_sym_extern] = ACTIONS(157), + [anon_sym_LPAREN2] = ACTIONS(159), + [anon_sym_STAR] = ACTIONS(163), + [anon_sym_LBRACK] = ACTIONS(166), + [anon_sym_EQ] = ACTIONS(168), + [anon_sym_static] = ACTIONS(157), + [anon_sym_auto] = ACTIONS(157), + [anon_sym_register] = ACTIONS(157), + [anon_sym_inline] = ACTIONS(157), + [anon_sym_const] = ACTIONS(157), + [anon_sym_restrict] = ACTIONS(157), + [anon_sym_volatile] = ACTIONS(157), + [anon_sym__Atomic] = ACTIONS(157), + [anon_sym_COLON] = ACTIONS(2016), + [anon_sym_QMARK] = ACTIONS(166), + [anon_sym_STAR_EQ] = ACTIONS(166), + [anon_sym_SLASH_EQ] = ACTIONS(166), + [anon_sym_PERCENT_EQ] = ACTIONS(166), + [anon_sym_PLUS_EQ] = ACTIONS(166), + [anon_sym_DASH_EQ] = ACTIONS(166), + [anon_sym_LT_LT_EQ] = ACTIONS(166), + [anon_sym_GT_GT_EQ] = ACTIONS(166), + [anon_sym_AMP_EQ] = ACTIONS(166), + [anon_sym_CARET_EQ] = ACTIONS(166), + [anon_sym_PIPE_EQ] = ACTIONS(166), + [anon_sym_AMP] = ACTIONS(168), + [anon_sym_PIPE_PIPE] = ACTIONS(166), + [anon_sym_AMP_AMP] = ACTIONS(166), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_CARET] = ACTIONS(168), + [anon_sym_EQ_EQ] = ACTIONS(166), + [anon_sym_BANG_EQ] = ACTIONS(166), + [anon_sym_LT] = ACTIONS(168), + [anon_sym_GT] = ACTIONS(168), + [anon_sym_LT_EQ] = ACTIONS(166), + [anon_sym_GT_EQ] = ACTIONS(166), + [anon_sym_LT_LT] = ACTIONS(168), + [anon_sym_GT_GT] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(168), + [anon_sym_DASH] = ACTIONS(168), + [anon_sym_SLASH] = ACTIONS(168), + [anon_sym_PERCENT] = ACTIONS(168), + [anon_sym_DASH_DASH] = ACTIONS(166), + [anon_sym_PLUS_PLUS] = ACTIONS(166), + [anon_sym_DOT] = ACTIONS(166), + [anon_sym_DASH_GT] = ACTIONS(166), + [sym_identifier] = ACTIONS(157), + [sym_comment] = ACTIONS(59), }, [946] = { - [anon_sym_COMMA] = ACTIONS(990), - [anon_sym_SEMI] = ACTIONS(990), - [anon_sym_LPAREN2] = ACTIONS(990), - [anon_sym_STAR] = ACTIONS(1002), - [anon_sym_LBRACK] = ACTIONS(990), - [anon_sym_EQ] = ACTIONS(1002), - [anon_sym_COLON] = ACTIONS(2898), - [anon_sym_QMARK] = ACTIONS(990), - [anon_sym_STAR_EQ] = ACTIONS(990), - [anon_sym_SLASH_EQ] = ACTIONS(990), - [anon_sym_PERCENT_EQ] = ACTIONS(990), - [anon_sym_PLUS_EQ] = ACTIONS(990), - [anon_sym_DASH_EQ] = ACTIONS(990), - [anon_sym_LT_LT_EQ] = ACTIONS(990), - [anon_sym_GT_GT_EQ] = ACTIONS(990), - [anon_sym_AMP_EQ] = ACTIONS(990), - [anon_sym_CARET_EQ] = ACTIONS(990), - [anon_sym_PIPE_EQ] = ACTIONS(990), - [anon_sym_AMP] = ACTIONS(1002), - [anon_sym_PIPE_PIPE] = ACTIONS(990), - [anon_sym_AMP_AMP] = ACTIONS(990), - [anon_sym_PIPE] = ACTIONS(1002), - [anon_sym_CARET] = ACTIONS(1002), - [anon_sym_EQ_EQ] = ACTIONS(990), - [anon_sym_BANG_EQ] = ACTIONS(990), - [anon_sym_LT] = ACTIONS(1002), - [anon_sym_GT] = ACTIONS(1002), - [anon_sym_LT_EQ] = ACTIONS(990), - [anon_sym_GT_EQ] = ACTIONS(990), - [anon_sym_LT_LT] = ACTIONS(1002), - [anon_sym_GT_GT] = ACTIONS(1002), - [anon_sym_PLUS] = ACTIONS(1002), - [anon_sym_DASH] = ACTIONS(1002), - [anon_sym_SLASH] = ACTIONS(1002), - [anon_sym_PERCENT] = ACTIONS(1002), - [anon_sym_DASH_DASH] = ACTIONS(990), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_DOT] = ACTIONS(990), - [anon_sym_DASH_GT] = ACTIONS(990), - [sym_comment] = ACTIONS(37), + [sym_parenthesized_expression] = STATE(949), + [anon_sym_LPAREN2] = ACTIONS(2890), + [sym_comment] = ACTIONS(59), }, [947] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2222), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2222), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2222), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2222), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2222), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2222), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2222), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2222), - [sym_preproc_directive] = ACTIONS(2222), - [anon_sym_SEMI] = ACTIONS(2224), - [anon_sym_typedef] = ACTIONS(2222), - [anon_sym_extern] = ACTIONS(2222), - [anon_sym_LBRACE] = ACTIONS(2224), - [anon_sym_LPAREN2] = ACTIONS(2224), - [anon_sym_STAR] = ACTIONS(2224), - [anon_sym_static] = ACTIONS(2222), - [anon_sym_auto] = ACTIONS(2222), - [anon_sym_register] = ACTIONS(2222), - [anon_sym_inline] = ACTIONS(2222), - [anon_sym_const] = ACTIONS(2222), - [anon_sym_restrict] = ACTIONS(2222), - [anon_sym_volatile] = ACTIONS(2222), - [anon_sym__Atomic] = ACTIONS(2222), - [anon_sym_unsigned] = ACTIONS(2222), - [anon_sym_long] = ACTIONS(2222), - [anon_sym_short] = ACTIONS(2222), - [sym_primitive_type] = ACTIONS(2222), - [anon_sym_enum] = ACTIONS(2222), - [anon_sym_struct] = ACTIONS(2222), - [anon_sym_union] = ACTIONS(2222), - [anon_sym_if] = ACTIONS(2222), - [anon_sym_else] = ACTIONS(2900), - [anon_sym_switch] = ACTIONS(2222), - [anon_sym_case] = ACTIONS(2222), - [anon_sym_default] = ACTIONS(2222), - [anon_sym_while] = ACTIONS(2222), - [anon_sym_do] = ACTIONS(2222), - [anon_sym_for] = ACTIONS(2222), - [anon_sym_return] = ACTIONS(2222), - [anon_sym_break] = ACTIONS(2222), - [anon_sym_continue] = ACTIONS(2222), - [anon_sym_goto] = ACTIONS(2222), - [anon_sym_AMP] = ACTIONS(2224), - [anon_sym_BANG] = ACTIONS(2224), - [anon_sym_TILDE] = ACTIONS(2224), - [anon_sym_PLUS] = ACTIONS(2222), - [anon_sym_DASH] = ACTIONS(2222), - [anon_sym_DASH_DASH] = ACTIONS(2224), - [anon_sym_PLUS_PLUS] = ACTIONS(2224), - [anon_sym_sizeof] = ACTIONS(2222), - [sym_number_literal] = ACTIONS(2224), - [anon_sym_SQUOTE] = ACTIONS(2224), - [anon_sym_DQUOTE] = ACTIONS(2224), - [sym_true] = ACTIONS(2222), - [sym_false] = ACTIONS(2222), - [sym_null] = ACTIONS(2222), - [sym_identifier] = ACTIONS(2222), - [sym_comment] = ACTIONS(37), + [sym__expression] = STATE(1038), + [sym_conditional_expression] = STATE(1038), + [sym_assignment_expression] = STATE(1038), + [sym_pointer_expression] = STATE(1038), + [sym_logical_expression] = STATE(1038), + [sym_bitwise_expression] = STATE(1038), + [sym_equality_expression] = STATE(1038), + [sym_relational_expression] = STATE(1038), + [sym_shift_expression] = STATE(1038), + [sym_math_expression] = STATE(1038), + [sym_cast_expression] = STATE(1038), + [sym_sizeof_expression] = STATE(1038), + [sym_subscript_expression] = STATE(1038), + [sym_call_expression] = STATE(1038), + [sym_field_expression] = STATE(1038), + [sym_compound_literal_expression] = STATE(1038), + [sym_parenthesized_expression] = STATE(1038), + [sym_char_literal] = STATE(1038), + [sym_concatenated_string] = STATE(1038), + [sym_string_literal] = STATE(534), + [anon_sym_SEMI] = ACTIONS(2892), + [anon_sym_LPAREN2] = ACTIONS(1349), + [anon_sym_STAR] = ACTIONS(1351), + [anon_sym_AMP] = ACTIONS(1351), + [anon_sym_BANG] = ACTIONS(1353), + [anon_sym_TILDE] = ACTIONS(1355), + [anon_sym_PLUS] = ACTIONS(1357), + [anon_sym_DASH] = ACTIONS(1357), + [anon_sym_DASH_DASH] = ACTIONS(1359), + [anon_sym_PLUS_PLUS] = ACTIONS(1359), + [anon_sym_sizeof] = ACTIONS(1361), + [sym_number_literal] = ACTIONS(2894), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(2896), + [sym_false] = ACTIONS(2896), + [sym_null] = ACTIONS(2896), + [sym_identifier] = ACTIONS(2896), + [sym_comment] = ACTIONS(59), }, [948] = { - [anon_sym_COMMA] = ACTIONS(990), - [anon_sym_SEMI] = ACTIONS(990), - [anon_sym_LPAREN2] = ACTIONS(990), - [anon_sym_STAR] = ACTIONS(1002), - [anon_sym_LBRACK] = ACTIONS(990), - [anon_sym_EQ] = ACTIONS(1002), - [anon_sym_COLON] = ACTIONS(2134), - [anon_sym_QMARK] = ACTIONS(990), - [anon_sym_STAR_EQ] = ACTIONS(990), - [anon_sym_SLASH_EQ] = ACTIONS(990), - [anon_sym_PERCENT_EQ] = ACTIONS(990), - [anon_sym_PLUS_EQ] = ACTIONS(990), - [anon_sym_DASH_EQ] = ACTIONS(990), - [anon_sym_LT_LT_EQ] = ACTIONS(990), - [anon_sym_GT_GT_EQ] = ACTIONS(990), - [anon_sym_AMP_EQ] = ACTIONS(990), - [anon_sym_CARET_EQ] = ACTIONS(990), - [anon_sym_PIPE_EQ] = ACTIONS(990), - [anon_sym_AMP] = ACTIONS(1002), - [anon_sym_PIPE_PIPE] = ACTIONS(990), - [anon_sym_AMP_AMP] = ACTIONS(990), - [anon_sym_PIPE] = ACTIONS(1002), - [anon_sym_CARET] = ACTIONS(1002), - [anon_sym_EQ_EQ] = ACTIONS(990), - [anon_sym_BANG_EQ] = ACTIONS(990), - [anon_sym_LT] = ACTIONS(1002), - [anon_sym_GT] = ACTIONS(1002), - [anon_sym_LT_EQ] = ACTIONS(990), - [anon_sym_GT_EQ] = ACTIONS(990), - [anon_sym_LT_LT] = ACTIONS(1002), - [anon_sym_GT_GT] = ACTIONS(1002), - [anon_sym_PLUS] = ACTIONS(1002), - [anon_sym_DASH] = ACTIONS(1002), - [anon_sym_SLASH] = ACTIONS(1002), - [anon_sym_PERCENT] = ACTIONS(1002), - [anon_sym_DASH_DASH] = ACTIONS(990), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_DOT] = ACTIONS(990), - [anon_sym_DASH_GT] = ACTIONS(990), - [sym_comment] = ACTIONS(37), + [sym_argument_list] = STATE(98), + [anon_sym_SEMI] = ACTIONS(2898), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_LBRACK] = ACTIONS(188), + [anon_sym_EQ] = ACTIONS(1896), + [anon_sym_QMARK] = ACTIONS(1898), + [anon_sym_STAR_EQ] = ACTIONS(1900), + [anon_sym_SLASH_EQ] = ACTIONS(1900), + [anon_sym_PERCENT_EQ] = ACTIONS(1900), + [anon_sym_PLUS_EQ] = ACTIONS(1900), + [anon_sym_DASH_EQ] = ACTIONS(1900), + [anon_sym_LT_LT_EQ] = ACTIONS(1900), + [anon_sym_GT_GT_EQ] = ACTIONS(1900), + [anon_sym_AMP_EQ] = ACTIONS(1900), + [anon_sym_CARET_EQ] = ACTIONS(1900), + [anon_sym_PIPE_EQ] = ACTIONS(1900), + [anon_sym_AMP] = ACTIONS(1902), + [anon_sym_PIPE_PIPE] = ACTIONS(1904), + [anon_sym_AMP_AMP] = ACTIONS(1906), + [anon_sym_PIPE] = ACTIONS(1908), + [anon_sym_CARET] = ACTIONS(1910), + [anon_sym_EQ_EQ] = ACTIONS(1912), + [anon_sym_BANG_EQ] = ACTIONS(1912), + [anon_sym_LT] = ACTIONS(1914), + [anon_sym_GT] = ACTIONS(1914), + [anon_sym_LT_EQ] = ACTIONS(1916), + [anon_sym_GT_EQ] = ACTIONS(1916), + [anon_sym_LT_LT] = ACTIONS(1918), + [anon_sym_GT_GT] = ACTIONS(1918), + [anon_sym_PLUS] = ACTIONS(1920), + [anon_sym_DASH] = ACTIONS(1920), + [anon_sym_SLASH] = ACTIONS(1894), + [anon_sym_PERCENT] = ACTIONS(1894), + [anon_sym_DASH_DASH] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(216), + [anon_sym_DOT] = ACTIONS(218), + [anon_sym_DASH_GT] = ACTIONS(218), + [sym_comment] = ACTIONS(59), }, [949] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2228), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2228), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2228), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2228), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2228), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2228), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2228), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2228), - [sym_preproc_directive] = ACTIONS(2228), - [anon_sym_SEMI] = ACTIONS(2230), - [anon_sym_typedef] = ACTIONS(2228), - [anon_sym_extern] = ACTIONS(2228), - [anon_sym_LBRACE] = ACTIONS(2230), - [anon_sym_LPAREN2] = ACTIONS(2230), - [anon_sym_STAR] = ACTIONS(2230), - [anon_sym_static] = ACTIONS(2228), - [anon_sym_auto] = ACTIONS(2228), - [anon_sym_register] = ACTIONS(2228), - [anon_sym_inline] = ACTIONS(2228), - [anon_sym_const] = ACTIONS(2228), - [anon_sym_restrict] = ACTIONS(2228), - [anon_sym_volatile] = ACTIONS(2228), - [anon_sym__Atomic] = ACTIONS(2228), - [anon_sym_unsigned] = ACTIONS(2228), - [anon_sym_long] = ACTIONS(2228), - [anon_sym_short] = ACTIONS(2228), - [sym_primitive_type] = ACTIONS(2228), - [anon_sym_enum] = ACTIONS(2228), - [anon_sym_struct] = ACTIONS(2228), - [anon_sym_union] = ACTIONS(2228), - [anon_sym_if] = ACTIONS(2228), - [anon_sym_else] = ACTIONS(2228), - [anon_sym_switch] = ACTIONS(2228), - [anon_sym_case] = ACTIONS(2228), - [anon_sym_default] = ACTIONS(2228), - [anon_sym_while] = ACTIONS(2228), - [anon_sym_do] = ACTIONS(2228), - [anon_sym_for] = ACTIONS(2228), - [anon_sym_return] = ACTIONS(2228), - [anon_sym_break] = ACTIONS(2228), - [anon_sym_continue] = ACTIONS(2228), - [anon_sym_goto] = ACTIONS(2228), - [anon_sym_AMP] = ACTIONS(2230), - [anon_sym_BANG] = ACTIONS(2230), - [anon_sym_TILDE] = ACTIONS(2230), - [anon_sym_PLUS] = ACTIONS(2228), - [anon_sym_DASH] = ACTIONS(2228), - [anon_sym_DASH_DASH] = ACTIONS(2230), - [anon_sym_PLUS_PLUS] = ACTIONS(2230), - [anon_sym_sizeof] = ACTIONS(2228), - [sym_number_literal] = ACTIONS(2230), - [anon_sym_SQUOTE] = ACTIONS(2230), - [anon_sym_DQUOTE] = ACTIONS(2230), - [sym_true] = ACTIONS(2228), - [sym_false] = ACTIONS(2228), - [sym_null] = ACTIONS(2228), - [sym_identifier] = ACTIONS(2228), - [sym_comment] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(2900), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2902), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2902), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2902), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2902), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2902), + [sym_preproc_directive] = ACTIONS(2902), + [anon_sym_typedef] = ACTIONS(2902), + [anon_sym_extern] = ACTIONS(2902), + [anon_sym_LBRACE] = ACTIONS(2900), + [anon_sym_RBRACE] = ACTIONS(2900), + [anon_sym_LPAREN2] = ACTIONS(2900), + [anon_sym_STAR] = ACTIONS(2900), + [anon_sym_static] = ACTIONS(2902), + [anon_sym_auto] = ACTIONS(2902), + [anon_sym_register] = ACTIONS(2902), + [anon_sym_inline] = ACTIONS(2902), + [anon_sym_const] = ACTIONS(2902), + [anon_sym_restrict] = ACTIONS(2902), + [anon_sym_volatile] = ACTIONS(2902), + [anon_sym__Atomic] = ACTIONS(2902), + [anon_sym_unsigned] = ACTIONS(2902), + [anon_sym_long] = ACTIONS(2902), + [anon_sym_short] = ACTIONS(2902), + [sym_primitive_type] = ACTIONS(2902), + [anon_sym_enum] = ACTIONS(2902), + [anon_sym_struct] = ACTIONS(2902), + [anon_sym_union] = ACTIONS(2902), + [anon_sym_if] = ACTIONS(2902), + [anon_sym_else] = ACTIONS(2902), + [anon_sym_switch] = ACTIONS(2902), + [anon_sym_case] = ACTIONS(2902), + [anon_sym_default] = ACTIONS(2902), + [anon_sym_while] = ACTIONS(2902), + [anon_sym_do] = ACTIONS(2902), + [anon_sym_for] = ACTIONS(2902), + [anon_sym_return] = ACTIONS(2902), + [anon_sym_break] = ACTIONS(2902), + [anon_sym_continue] = ACTIONS(2902), + [anon_sym_goto] = ACTIONS(2902), + [anon_sym_AMP] = ACTIONS(2900), + [anon_sym_BANG] = ACTIONS(2900), + [anon_sym_TILDE] = ACTIONS(2900), + [anon_sym_PLUS] = ACTIONS(2902), + [anon_sym_DASH] = ACTIONS(2902), + [anon_sym_DASH_DASH] = ACTIONS(2900), + [anon_sym_PLUS_PLUS] = ACTIONS(2900), + [anon_sym_sizeof] = ACTIONS(2902), + [sym_number_literal] = ACTIONS(2900), + [anon_sym_SQUOTE] = ACTIONS(2900), + [anon_sym_DQUOTE] = ACTIONS(2900), + [sym_true] = ACTIONS(2902), + [sym_false] = ACTIONS(2902), + [sym_null] = ACTIONS(2902), + [sym_identifier] = ACTIONS(2902), + [sym_comment] = ACTIONS(59), }, [950] = { - [sym_declaration] = STATE(1039), - [sym_type_definition] = STATE(1039), - [sym__declaration_specifiers] = STATE(953), - [sym_compound_statement] = STATE(1039), - [sym_storage_class_specifier] = STATE(87), - [sym_type_qualifier] = STATE(87), - [sym__type_specifier] = STATE(86), - [sym_sized_type_specifier] = STATE(86), - [sym_enum_specifier] = STATE(86), - [sym_struct_specifier] = STATE(86), - [sym_union_specifier] = STATE(86), - [sym_labeled_statement] = STATE(1039), - [sym_expression_statement] = STATE(1039), - [sym_if_statement] = STATE(1039), - [sym_switch_statement] = STATE(1039), - [sym_case_statement] = STATE(1039), - [sym_while_statement] = STATE(1039), - [sym_do_statement] = STATE(1039), - [sym_for_statement] = STATE(1039), - [sym_return_statement] = STATE(1039), - [sym_break_statement] = STATE(1039), - [sym_continue_statement] = STATE(1039), - [sym_goto_statement] = STATE(1039), - [sym__expression] = STATE(594), - [sym_comma_expression] = STATE(595), - [sym_conditional_expression] = STATE(594), - [sym_assignment_expression] = STATE(594), - [sym_pointer_expression] = STATE(594), - [sym_logical_expression] = STATE(594), - [sym_bitwise_expression] = STATE(594), - [sym_equality_expression] = STATE(594), - [sym_relational_expression] = STATE(594), - [sym_shift_expression] = STATE(594), - [sym_math_expression] = STATE(594), - [sym_cast_expression] = STATE(594), - [sym_sizeof_expression] = STATE(594), - [sym_subscript_expression] = STATE(594), - [sym_call_expression] = STATE(594), - [sym_field_expression] = STATE(594), - [sym_compound_literal_expression] = STATE(594), - [sym_parenthesized_expression] = STATE(594), - [sym_char_literal] = STATE(594), - [sym_concatenated_string] = STATE(594), - [sym_string_literal] = STATE(230), - [sym_macro_type_specifier] = STATE(86), - [aux_sym__declaration_specifiers_repeat1] = STATE(87), - [aux_sym_sized_type_specifier_repeat1] = STATE(88), - [anon_sym_SEMI] = ACTIONS(1395), - [anon_sym_typedef] = ACTIONS(143), - [anon_sym_extern] = ACTIONS(21), - [anon_sym_LBRACE] = ACTIONS(678), - [anon_sym_LPAREN2] = ACTIONS(507), - [anon_sym_STAR] = ACTIONS(509), - [anon_sym_static] = ACTIONS(21), - [anon_sym_auto] = ACTIONS(21), - [anon_sym_register] = ACTIONS(21), - [anon_sym_inline] = ACTIONS(21), - [anon_sym_const] = ACTIONS(23), - [anon_sym_restrict] = ACTIONS(23), - [anon_sym_volatile] = ACTIONS(23), - [anon_sym__Atomic] = ACTIONS(23), - [anon_sym_unsigned] = ACTIONS(167), - [anon_sym_long] = ACTIONS(167), - [anon_sym_short] = ACTIONS(167), - [sym_primitive_type] = ACTIONS(169), - [anon_sym_enum] = ACTIONS(29), - [anon_sym_struct] = ACTIONS(31), - [anon_sym_union] = ACTIONS(33), - [anon_sym_if] = ACTIONS(1397), - [anon_sym_switch] = ACTIONS(1399), - [anon_sym_case] = ACTIONS(1401), - [anon_sym_default] = ACTIONS(1403), - [anon_sym_while] = ACTIONS(1405), - [anon_sym_do] = ACTIONS(1407), - [anon_sym_for] = ACTIONS(1409), - [anon_sym_return] = ACTIONS(1411), - [anon_sym_break] = ACTIONS(1413), - [anon_sym_continue] = ACTIONS(1415), - [anon_sym_goto] = ACTIONS(1417), - [anon_sym_AMP] = ACTIONS(509), - [anon_sym_BANG] = ACTIONS(533), - [anon_sym_TILDE] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DASH] = ACTIONS(537), - [anon_sym_DASH_DASH] = ACTIONS(539), - [anon_sym_PLUS_PLUS] = ACTIONS(539), - [anon_sym_sizeof] = ACTIONS(541), - [sym_number_literal] = ACTIONS(1419), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(1421), - [sym_false] = ACTIONS(1421), - [sym_null] = ACTIONS(1421), - [sym_identifier] = ACTIONS(2539), - [sym_comment] = ACTIONS(37), + [sym__expression] = STATE(1041), + [sym_conditional_expression] = STATE(1041), + [sym_assignment_expression] = STATE(1041), + [sym_pointer_expression] = STATE(1041), + [sym_logical_expression] = STATE(1041), + [sym_bitwise_expression] = STATE(1041), + [sym_equality_expression] = STATE(1041), + [sym_relational_expression] = STATE(1041), + [sym_shift_expression] = STATE(1041), + [sym_math_expression] = STATE(1041), + [sym_cast_expression] = STATE(1041), + [sym_sizeof_expression] = STATE(1041), + [sym_subscript_expression] = STATE(1041), + [sym_call_expression] = STATE(1041), + [sym_field_expression] = STATE(1041), + [sym_compound_literal_expression] = STATE(1041), + [sym_parenthesized_expression] = STATE(1041), + [sym_char_literal] = STATE(1041), + [sym_concatenated_string] = STATE(1041), + [sym_string_literal] = STATE(55), + [anon_sym_RPAREN] = ACTIONS(2904), + [anon_sym_LPAREN2] = ACTIONS(85), + [anon_sym_STAR] = ACTIONS(87), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_PLUS] = ACTIONS(97), + [anon_sym_DASH] = ACTIONS(97), + [anon_sym_DASH_DASH] = ACTIONS(99), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(101), + [sym_number_literal] = ACTIONS(2906), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(2908), + [sym_false] = ACTIONS(2908), + [sym_null] = ACTIONS(2908), + [sym_identifier] = ACTIONS(2908), + [sym_comment] = ACTIONS(59), }, [951] = { - [anon_sym_COMMA] = ACTIONS(990), - [anon_sym_SEMI] = ACTIONS(990), - [anon_sym_extern] = ACTIONS(79), - [anon_sym_LPAREN2] = ACTIONS(995), - [anon_sym_STAR] = ACTIONS(999), - [anon_sym_LBRACK] = ACTIONS(990), - [anon_sym_EQ] = ACTIONS(1002), - [anon_sym_static] = ACTIONS(79), - [anon_sym_auto] = ACTIONS(79), - [anon_sym_register] = ACTIONS(79), - [anon_sym_inline] = ACTIONS(79), - [anon_sym_const] = ACTIONS(79), - [anon_sym_restrict] = ACTIONS(79), - [anon_sym_volatile] = ACTIONS(79), - [anon_sym__Atomic] = ACTIONS(79), - [anon_sym_COLON] = ACTIONS(2134), - [anon_sym_QMARK] = ACTIONS(990), - [anon_sym_STAR_EQ] = ACTIONS(990), - [anon_sym_SLASH_EQ] = ACTIONS(990), - [anon_sym_PERCENT_EQ] = ACTIONS(990), - [anon_sym_PLUS_EQ] = ACTIONS(990), - [anon_sym_DASH_EQ] = ACTIONS(990), - [anon_sym_LT_LT_EQ] = ACTIONS(990), - [anon_sym_GT_GT_EQ] = ACTIONS(990), - [anon_sym_AMP_EQ] = ACTIONS(990), - [anon_sym_CARET_EQ] = ACTIONS(990), - [anon_sym_PIPE_EQ] = ACTIONS(990), - [anon_sym_AMP] = ACTIONS(1002), - [anon_sym_PIPE_PIPE] = ACTIONS(990), - [anon_sym_AMP_AMP] = ACTIONS(990), - [anon_sym_PIPE] = ACTIONS(1002), - [anon_sym_CARET] = ACTIONS(1002), - [anon_sym_EQ_EQ] = ACTIONS(990), - [anon_sym_BANG_EQ] = ACTIONS(990), - [anon_sym_LT] = ACTIONS(1002), - [anon_sym_GT] = ACTIONS(1002), - [anon_sym_LT_EQ] = ACTIONS(990), - [anon_sym_GT_EQ] = ACTIONS(990), - [anon_sym_LT_LT] = ACTIONS(1002), - [anon_sym_GT_GT] = ACTIONS(1002), - [anon_sym_PLUS] = ACTIONS(1002), - [anon_sym_DASH] = ACTIONS(1002), - [anon_sym_SLASH] = ACTIONS(1002), - [anon_sym_PERCENT] = ACTIONS(1002), - [anon_sym_DASH_DASH] = ACTIONS(990), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_DOT] = ACTIONS(990), - [anon_sym_DASH_GT] = ACTIONS(990), - [sym_identifier] = ACTIONS(79), - [sym_comment] = ACTIONS(37), + [sym_argument_list] = STATE(98), + [anon_sym_SEMI] = ACTIONS(2910), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_LBRACK] = ACTIONS(188), + [anon_sym_EQ] = ACTIONS(1896), + [anon_sym_QMARK] = ACTIONS(1898), + [anon_sym_STAR_EQ] = ACTIONS(1900), + [anon_sym_SLASH_EQ] = ACTIONS(1900), + [anon_sym_PERCENT_EQ] = ACTIONS(1900), + [anon_sym_PLUS_EQ] = ACTIONS(1900), + [anon_sym_DASH_EQ] = ACTIONS(1900), + [anon_sym_LT_LT_EQ] = ACTIONS(1900), + [anon_sym_GT_GT_EQ] = ACTIONS(1900), + [anon_sym_AMP_EQ] = ACTIONS(1900), + [anon_sym_CARET_EQ] = ACTIONS(1900), + [anon_sym_PIPE_EQ] = ACTIONS(1900), + [anon_sym_AMP] = ACTIONS(1902), + [anon_sym_PIPE_PIPE] = ACTIONS(1904), + [anon_sym_AMP_AMP] = ACTIONS(1906), + [anon_sym_PIPE] = ACTIONS(1908), + [anon_sym_CARET] = ACTIONS(1910), + [anon_sym_EQ_EQ] = ACTIONS(1912), + [anon_sym_BANG_EQ] = ACTIONS(1912), + [anon_sym_LT] = ACTIONS(1914), + [anon_sym_GT] = ACTIONS(1914), + [anon_sym_LT_EQ] = ACTIONS(1916), + [anon_sym_GT_EQ] = ACTIONS(1916), + [anon_sym_LT_LT] = ACTIONS(1918), + [anon_sym_GT_GT] = ACTIONS(1918), + [anon_sym_PLUS] = ACTIONS(1920), + [anon_sym_DASH] = ACTIONS(1920), + [anon_sym_SLASH] = ACTIONS(1894), + [anon_sym_PERCENT] = ACTIONS(1894), + [anon_sym_DASH_DASH] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(216), + [anon_sym_DOT] = ACTIONS(218), + [anon_sym_DASH_GT] = ACTIONS(218), + [sym_comment] = ACTIONS(59), }, [952] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2278), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2278), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2278), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2278), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2278), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2278), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2278), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2278), - [sym_preproc_directive] = ACTIONS(2278), - [anon_sym_SEMI] = ACTIONS(2280), - [anon_sym_typedef] = ACTIONS(2278), - [anon_sym_extern] = ACTIONS(2278), - [anon_sym_LBRACE] = ACTIONS(2280), - [anon_sym_LPAREN2] = ACTIONS(2280), - [anon_sym_STAR] = ACTIONS(2280), - [anon_sym_static] = ACTIONS(2278), - [anon_sym_auto] = ACTIONS(2278), - [anon_sym_register] = ACTIONS(2278), - [anon_sym_inline] = ACTIONS(2278), - [anon_sym_const] = ACTIONS(2278), - [anon_sym_restrict] = ACTIONS(2278), - [anon_sym_volatile] = ACTIONS(2278), - [anon_sym__Atomic] = ACTIONS(2278), - [anon_sym_unsigned] = ACTIONS(2278), - [anon_sym_long] = ACTIONS(2278), - [anon_sym_short] = ACTIONS(2278), - [sym_primitive_type] = ACTIONS(2278), - [anon_sym_enum] = ACTIONS(2278), - [anon_sym_struct] = ACTIONS(2278), - [anon_sym_union] = ACTIONS(2278), - [anon_sym_if] = ACTIONS(2278), - [anon_sym_else] = ACTIONS(2278), - [anon_sym_switch] = ACTIONS(2278), - [anon_sym_case] = ACTIONS(2278), - [anon_sym_default] = ACTIONS(2278), - [anon_sym_while] = ACTIONS(2278), - [anon_sym_do] = ACTIONS(2278), - [anon_sym_for] = ACTIONS(2278), - [anon_sym_return] = ACTIONS(2278), - [anon_sym_break] = ACTIONS(2278), - [anon_sym_continue] = ACTIONS(2278), - [anon_sym_goto] = ACTIONS(2278), - [anon_sym_AMP] = ACTIONS(2280), - [anon_sym_BANG] = ACTIONS(2280), - [anon_sym_TILDE] = ACTIONS(2280), - [anon_sym_PLUS] = ACTIONS(2278), - [anon_sym_DASH] = ACTIONS(2278), - [anon_sym_DASH_DASH] = ACTIONS(2280), - [anon_sym_PLUS_PLUS] = ACTIONS(2280), - [anon_sym_sizeof] = ACTIONS(2278), - [sym_number_literal] = ACTIONS(2280), - [anon_sym_SQUOTE] = ACTIONS(2280), - [anon_sym_DQUOTE] = ACTIONS(2280), - [sym_true] = ACTIONS(2278), - [sym_false] = ACTIONS(2278), - [sym_null] = ACTIONS(2278), - [sym_identifier] = ACTIONS(2278), - [sym_comment] = ACTIONS(37), - }, - [953] = { - [sym__declarator] = STATE(818), - [sym_pointer_declarator] = STATE(818), - [sym_function_declarator] = STATE(818), - [sym_array_declarator] = STATE(818), - [sym_init_declarator] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(88), - [anon_sym_STAR] = ACTIONS(489), - [sym_identifier] = ACTIONS(2138), - [sym_comment] = ACTIONS(37), - }, - [954] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2282), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2282), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2282), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2282), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2282), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2282), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2282), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2282), - [sym_preproc_directive] = ACTIONS(2282), - [anon_sym_SEMI] = ACTIONS(2284), - [anon_sym_typedef] = ACTIONS(2282), - [anon_sym_extern] = ACTIONS(2282), - [anon_sym_LBRACE] = ACTIONS(2284), - [anon_sym_LPAREN2] = ACTIONS(2284), - [anon_sym_STAR] = ACTIONS(2284), - [anon_sym_static] = ACTIONS(2282), - [anon_sym_auto] = ACTIONS(2282), - [anon_sym_register] = ACTIONS(2282), - [anon_sym_inline] = ACTIONS(2282), - [anon_sym_const] = ACTIONS(2282), - [anon_sym_restrict] = ACTIONS(2282), - [anon_sym_volatile] = ACTIONS(2282), - [anon_sym__Atomic] = ACTIONS(2282), - [anon_sym_unsigned] = ACTIONS(2282), - [anon_sym_long] = ACTIONS(2282), - [anon_sym_short] = ACTIONS(2282), - [sym_primitive_type] = ACTIONS(2282), - [anon_sym_enum] = ACTIONS(2282), - [anon_sym_struct] = ACTIONS(2282), - [anon_sym_union] = ACTIONS(2282), - [anon_sym_if] = ACTIONS(2282), - [anon_sym_else] = ACTIONS(2282), - [anon_sym_switch] = ACTIONS(2282), - [anon_sym_case] = ACTIONS(2282), - [anon_sym_default] = ACTIONS(2282), - [anon_sym_while] = ACTIONS(2282), - [anon_sym_do] = ACTIONS(2282), - [anon_sym_for] = ACTIONS(2282), - [anon_sym_return] = ACTIONS(2282), - [anon_sym_break] = ACTIONS(2282), - [anon_sym_continue] = ACTIONS(2282), - [anon_sym_goto] = ACTIONS(2282), - [anon_sym_AMP] = ACTIONS(2284), - [anon_sym_BANG] = ACTIONS(2284), - [anon_sym_TILDE] = ACTIONS(2284), - [anon_sym_PLUS] = ACTIONS(2282), - [anon_sym_DASH] = ACTIONS(2282), - [anon_sym_DASH_DASH] = ACTIONS(2284), - [anon_sym_PLUS_PLUS] = ACTIONS(2284), - [anon_sym_sizeof] = ACTIONS(2282), - [sym_number_literal] = ACTIONS(2284), - [anon_sym_SQUOTE] = ACTIONS(2284), - [anon_sym_DQUOTE] = ACTIONS(2284), - [sym_true] = ACTIONS(2282), - [sym_false] = ACTIONS(2282), - [sym_null] = ACTIONS(2282), - [sym_identifier] = ACTIONS(2282), - [sym_comment] = ACTIONS(37), - }, - [955] = { - [sym_parenthesized_expression] = STATE(1041), - [anon_sym_LPAREN2] = ACTIONS(2902), - [sym_comment] = ACTIONS(37), - }, - [956] = { [sym__expression] = STATE(1043), [sym_conditional_expression] = STATE(1043), [sym_assignment_expression] = STATE(1043), @@ -37979,436 +38891,615 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_parenthesized_expression] = STATE(1043), [sym_char_literal] = STATE(1043), [sym_concatenated_string] = STATE(1043), - [sym_string_literal] = STATE(342), - [anon_sym_SEMI] = ACTIONS(2904), - [anon_sym_LPAREN2] = ACTIONS(780), - [anon_sym_STAR] = ACTIONS(782), - [anon_sym_AMP] = ACTIONS(782), - [anon_sym_BANG] = ACTIONS(784), - [anon_sym_TILDE] = ACTIONS(786), - [anon_sym_PLUS] = ACTIONS(788), - [anon_sym_DASH] = ACTIONS(788), - [anon_sym_DASH_DASH] = ACTIONS(790), - [anon_sym_PLUS_PLUS] = ACTIONS(790), - [anon_sym_sizeof] = ACTIONS(792), - [sym_number_literal] = ACTIONS(2906), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(2908), - [sym_false] = ACTIONS(2908), - [sym_null] = ACTIONS(2908), - [sym_identifier] = ACTIONS(2908), - [sym_comment] = ACTIONS(37), + [sym_string_literal] = STATE(534), + [anon_sym_SEMI] = ACTIONS(2910), + [anon_sym_LPAREN2] = ACTIONS(1349), + [anon_sym_STAR] = ACTIONS(1351), + [anon_sym_AMP] = ACTIONS(1351), + [anon_sym_BANG] = ACTIONS(1353), + [anon_sym_TILDE] = ACTIONS(1355), + [anon_sym_PLUS] = ACTIONS(1357), + [anon_sym_DASH] = ACTIONS(1357), + [anon_sym_DASH_DASH] = ACTIONS(1359), + [anon_sym_PLUS_PLUS] = ACTIONS(1359), + [anon_sym_sizeof] = ACTIONS(1361), + [sym_number_literal] = ACTIONS(2912), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(2914), + [sym_false] = ACTIONS(2914), + [sym_null] = ACTIONS(2914), + [sym_identifier] = ACTIONS(2914), + [sym_comment] = ACTIONS(59), + }, + [953] = { + [sym__expression] = STATE(319), + [sym_conditional_expression] = STATE(319), + [sym_assignment_expression] = STATE(319), + [sym_pointer_expression] = STATE(319), + [sym_logical_expression] = STATE(319), + [sym_bitwise_expression] = STATE(319), + [sym_equality_expression] = STATE(319), + [sym_relational_expression] = STATE(319), + [sym_shift_expression] = STATE(319), + [sym_math_expression] = STATE(319), + [sym_cast_expression] = STATE(319), + [sym_sizeof_expression] = STATE(319), + [sym_subscript_expression] = STATE(319), + [sym_call_expression] = STATE(319), + [sym_field_expression] = STATE(319), + [sym_compound_literal_expression] = STATE(319), + [sym_parenthesized_expression] = STATE(319), + [sym_initializer_list] = STATE(320), + [sym_char_literal] = STATE(319), + [sym_concatenated_string] = STATE(319), + [sym_string_literal] = STATE(374), + [anon_sym_SEMI] = ACTIONS(1418), + [anon_sym_COMMA] = ACTIONS(1418), + [anon_sym_LBRACE] = ACTIONS(840), + [anon_sym_LPAREN2] = ACTIONS(936), + [anon_sym_STAR] = ACTIONS(2916), + [anon_sym_LBRACK] = ACTIONS(1418), + [anon_sym_EQ] = ACTIONS(1420), + [anon_sym_QMARK] = ACTIONS(1418), + [anon_sym_STAR_EQ] = ACTIONS(1418), + [anon_sym_SLASH_EQ] = ACTIONS(1418), + [anon_sym_PERCENT_EQ] = ACTIONS(1418), + [anon_sym_PLUS_EQ] = ACTIONS(1418), + [anon_sym_DASH_EQ] = ACTIONS(1418), + [anon_sym_LT_LT_EQ] = ACTIONS(1418), + [anon_sym_GT_GT_EQ] = ACTIONS(1418), + [anon_sym_AMP_EQ] = ACTIONS(1418), + [anon_sym_CARET_EQ] = ACTIONS(1418), + [anon_sym_PIPE_EQ] = ACTIONS(1418), + [anon_sym_AMP] = ACTIONS(2916), + [anon_sym_PIPE_PIPE] = ACTIONS(1418), + [anon_sym_AMP_AMP] = ACTIONS(1418), + [anon_sym_BANG] = ACTIONS(2918), + [anon_sym_PIPE] = ACTIONS(1420), + [anon_sym_CARET] = ACTIONS(1420), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_EQ_EQ] = ACTIONS(1418), + [anon_sym_BANG_EQ] = ACTIONS(1418), + [anon_sym_LT] = ACTIONS(1420), + [anon_sym_GT] = ACTIONS(1420), + [anon_sym_LT_EQ] = ACTIONS(1418), + [anon_sym_GT_EQ] = ACTIONS(1418), + [anon_sym_LT_LT] = ACTIONS(1420), + [anon_sym_GT_GT] = ACTIONS(1420), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_SLASH] = ACTIONS(1420), + [anon_sym_PERCENT] = ACTIONS(1420), + [anon_sym_DASH_DASH] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(968), + [anon_sym_sizeof] = ACTIONS(970), + [anon_sym_DOT] = ACTIONS(1418), + [anon_sym_DASH_GT] = ACTIONS(1418), + [sym_number_literal] = ACTIONS(842), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(844), + [sym_false] = ACTIONS(844), + [sym_null] = ACTIONS(844), + [sym_identifier] = ACTIONS(844), + [sym_comment] = ACTIONS(59), + }, + [954] = { + [sym__expression] = STATE(1044), + [sym_conditional_expression] = STATE(1044), + [sym_assignment_expression] = STATE(1044), + [sym_pointer_expression] = STATE(1044), + [sym_logical_expression] = STATE(1044), + [sym_bitwise_expression] = STATE(1044), + [sym_equality_expression] = STATE(1044), + [sym_relational_expression] = STATE(1044), + [sym_shift_expression] = STATE(1044), + [sym_math_expression] = STATE(1044), + [sym_cast_expression] = STATE(1044), + [sym_sizeof_expression] = STATE(1044), + [sym_subscript_expression] = STATE(1044), + [sym_call_expression] = STATE(1044), + [sym_field_expression] = STATE(1044), + [sym_compound_literal_expression] = STATE(1044), + [sym_parenthesized_expression] = STATE(1044), + [sym_char_literal] = STATE(1044), + [sym_concatenated_string] = STATE(1044), + [sym_string_literal] = STATE(374), + [anon_sym_LPAREN2] = ACTIONS(936), + [anon_sym_STAR] = ACTIONS(938), + [anon_sym_AMP] = ACTIONS(938), + [anon_sym_BANG] = ACTIONS(962), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_DASH_DASH] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(968), + [anon_sym_sizeof] = ACTIONS(970), + [sym_number_literal] = ACTIONS(2920), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(2922), + [sym_false] = ACTIONS(2922), + [sym_null] = ACTIONS(2922), + [sym_identifier] = ACTIONS(2922), + [sym_comment] = ACTIONS(59), + }, + [955] = { + [sym_argument_list] = STATE(98), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(1016), + [anon_sym_LBRACK] = ACTIONS(188), + [anon_sym_RBRACK] = ACTIONS(2304), + [anon_sym_EQ] = ACTIONS(1020), + [anon_sym_QMARK] = ACTIONS(1022), + [anon_sym_STAR_EQ] = ACTIONS(1024), + [anon_sym_SLASH_EQ] = ACTIONS(1024), + [anon_sym_PERCENT_EQ] = ACTIONS(1024), + [anon_sym_PLUS_EQ] = ACTIONS(1024), + [anon_sym_DASH_EQ] = ACTIONS(1024), + [anon_sym_LT_LT_EQ] = ACTIONS(1024), + [anon_sym_GT_GT_EQ] = ACTIONS(1024), + [anon_sym_AMP_EQ] = ACTIONS(1024), + [anon_sym_CARET_EQ] = ACTIONS(1024), + [anon_sym_PIPE_EQ] = ACTIONS(1024), + [anon_sym_AMP] = ACTIONS(1026), + [anon_sym_PIPE_PIPE] = ACTIONS(1028), + [anon_sym_AMP_AMP] = ACTIONS(1030), + [anon_sym_PIPE] = ACTIONS(1032), + [anon_sym_CARET] = ACTIONS(1034), + [anon_sym_EQ_EQ] = ACTIONS(1036), + [anon_sym_BANG_EQ] = ACTIONS(1036), + [anon_sym_LT] = ACTIONS(1038), + [anon_sym_GT] = ACTIONS(1038), + [anon_sym_LT_EQ] = ACTIONS(1040), + [anon_sym_GT_EQ] = ACTIONS(1040), + [anon_sym_LT_LT] = ACTIONS(1042), + [anon_sym_GT_GT] = ACTIONS(1042), + [anon_sym_PLUS] = ACTIONS(1044), + [anon_sym_DASH] = ACTIONS(1044), + [anon_sym_SLASH] = ACTIONS(1016), + [anon_sym_PERCENT] = ACTIONS(1016), + [anon_sym_DASH_DASH] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(216), + [anon_sym_DOT] = ACTIONS(218), + [anon_sym_DASH_GT] = ACTIONS(218), + [sym_comment] = ACTIONS(59), + }, + [956] = { + [sym_argument_list] = STATE(98), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(1054), + [anon_sym_LBRACK] = ACTIONS(188), + [anon_sym_EQ] = ACTIONS(1056), + [anon_sym_COLON] = ACTIONS(2304), + [anon_sym_QMARK] = ACTIONS(1060), + [anon_sym_STAR_EQ] = ACTIONS(1062), + [anon_sym_SLASH_EQ] = ACTIONS(1062), + [anon_sym_PERCENT_EQ] = ACTIONS(1062), + [anon_sym_PLUS_EQ] = ACTIONS(1062), + [anon_sym_DASH_EQ] = ACTIONS(1062), + [anon_sym_LT_LT_EQ] = ACTIONS(1062), + [anon_sym_GT_GT_EQ] = ACTIONS(1062), + [anon_sym_AMP_EQ] = ACTIONS(1062), + [anon_sym_CARET_EQ] = ACTIONS(1062), + [anon_sym_PIPE_EQ] = ACTIONS(1062), + [anon_sym_AMP] = ACTIONS(1064), + [anon_sym_PIPE_PIPE] = ACTIONS(1066), + [anon_sym_AMP_AMP] = ACTIONS(1068), + [anon_sym_PIPE] = ACTIONS(1070), + [anon_sym_CARET] = ACTIONS(1072), + [anon_sym_EQ_EQ] = ACTIONS(1074), + [anon_sym_BANG_EQ] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(1076), + [anon_sym_GT] = ACTIONS(1076), + [anon_sym_LT_EQ] = ACTIONS(1078), + [anon_sym_GT_EQ] = ACTIONS(1078), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_GT_GT] = ACTIONS(1080), + [anon_sym_PLUS] = ACTIONS(1082), + [anon_sym_DASH] = ACTIONS(1082), + [anon_sym_SLASH] = ACTIONS(1054), + [anon_sym_PERCENT] = ACTIONS(1054), + [anon_sym_DASH_DASH] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(216), + [anon_sym_DOT] = ACTIONS(218), + [anon_sym_DASH_GT] = ACTIONS(218), + [sym_comment] = ACTIONS(59), }, [957] = { - [sym_argument_list] = STATE(430), - [anon_sym_SEMI] = ACTIONS(2910), - [anon_sym_LPAREN2] = ACTIONS(1012), - [anon_sym_STAR] = ACTIONS(1319), - [anon_sym_LBRACK] = ACTIONS(1016), - [anon_sym_EQ] = ACTIONS(1321), - [anon_sym_QMARK] = ACTIONS(1323), - [anon_sym_STAR_EQ] = ACTIONS(1325), - [anon_sym_SLASH_EQ] = ACTIONS(1325), - [anon_sym_PERCENT_EQ] = ACTIONS(1325), - [anon_sym_PLUS_EQ] = ACTIONS(1325), - [anon_sym_DASH_EQ] = ACTIONS(1325), - [anon_sym_LT_LT_EQ] = ACTIONS(1325), - [anon_sym_GT_GT_EQ] = ACTIONS(1325), - [anon_sym_AMP_EQ] = ACTIONS(1325), - [anon_sym_CARET_EQ] = ACTIONS(1325), - [anon_sym_PIPE_EQ] = ACTIONS(1325), - [anon_sym_AMP] = ACTIONS(1327), - [anon_sym_PIPE_PIPE] = ACTIONS(1329), - [anon_sym_AMP_AMP] = ACTIONS(1331), - [anon_sym_PIPE] = ACTIONS(1333), - [anon_sym_CARET] = ACTIONS(1335), - [anon_sym_EQ_EQ] = ACTIONS(1337), - [anon_sym_BANG_EQ] = ACTIONS(1337), - [anon_sym_LT] = ACTIONS(1339), - [anon_sym_GT] = ACTIONS(1339), - [anon_sym_LT_EQ] = ACTIONS(1341), - [anon_sym_GT_EQ] = ACTIONS(1341), - [anon_sym_LT_LT] = ACTIONS(1343), - [anon_sym_GT_GT] = ACTIONS(1343), - [anon_sym_PLUS] = ACTIONS(1345), - [anon_sym_DASH] = ACTIONS(1345), - [anon_sym_SLASH] = ACTIONS(1319), - [anon_sym_PERCENT] = ACTIONS(1319), - [anon_sym_DASH_DASH] = ACTIONS(1044), - [anon_sym_PLUS_PLUS] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1046), - [anon_sym_DASH_GT] = ACTIONS(1046), - [sym_comment] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(1659), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1661), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1661), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1661), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1661), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1661), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1661), + [sym_preproc_directive] = ACTIONS(1661), + [anon_sym_typedef] = ACTIONS(1661), + [anon_sym_extern] = ACTIONS(1661), + [anon_sym_LBRACE] = ACTIONS(1659), + [anon_sym_LPAREN2] = ACTIONS(1659), + [anon_sym_STAR] = ACTIONS(1659), + [anon_sym_static] = ACTIONS(1661), + [anon_sym_auto] = ACTIONS(1661), + [anon_sym_register] = ACTIONS(1661), + [anon_sym_inline] = ACTIONS(1661), + [anon_sym_const] = ACTIONS(1661), + [anon_sym_restrict] = ACTIONS(1661), + [anon_sym_volatile] = ACTIONS(1661), + [anon_sym__Atomic] = ACTIONS(1661), + [anon_sym_unsigned] = ACTIONS(1661), + [anon_sym_long] = ACTIONS(1661), + [anon_sym_short] = ACTIONS(1661), + [sym_primitive_type] = ACTIONS(1661), + [anon_sym_enum] = ACTIONS(1661), + [anon_sym_struct] = ACTIONS(1661), + [anon_sym_union] = ACTIONS(1661), + [anon_sym_if] = ACTIONS(1661), + [anon_sym_switch] = ACTIONS(1661), + [anon_sym_case] = ACTIONS(1661), + [anon_sym_default] = ACTIONS(1661), + [anon_sym_while] = ACTIONS(1661), + [anon_sym_do] = ACTIONS(1661), + [anon_sym_for] = ACTIONS(1661), + [anon_sym_return] = ACTIONS(1661), + [anon_sym_break] = ACTIONS(1661), + [anon_sym_continue] = ACTIONS(1661), + [anon_sym_goto] = ACTIONS(1661), + [anon_sym_AMP] = ACTIONS(1659), + [anon_sym_BANG] = ACTIONS(1659), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_PLUS] = ACTIONS(1661), + [anon_sym_DASH] = ACTIONS(1661), + [anon_sym_DASH_DASH] = ACTIONS(1659), + [anon_sym_PLUS_PLUS] = ACTIONS(1659), + [anon_sym_sizeof] = ACTIONS(1661), + [sym_number_literal] = ACTIONS(1659), + [anon_sym_SQUOTE] = ACTIONS(1659), + [anon_sym_DQUOTE] = ACTIONS(1659), + [sym_true] = ACTIONS(1661), + [sym_false] = ACTIONS(1661), + [sym_null] = ACTIONS(1661), + [sym_identifier] = ACTIONS(1661), + [sym_comment] = ACTIONS(59), }, [958] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2320), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2320), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2320), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2320), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2320), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2320), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2320), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2320), - [sym_preproc_directive] = ACTIONS(2320), - [anon_sym_SEMI] = ACTIONS(2322), - [anon_sym_typedef] = ACTIONS(2320), - [anon_sym_extern] = ACTIONS(2320), - [anon_sym_LBRACE] = ACTIONS(2322), - [anon_sym_LPAREN2] = ACTIONS(2322), - [anon_sym_STAR] = ACTIONS(2322), - [anon_sym_static] = ACTIONS(2320), - [anon_sym_auto] = ACTIONS(2320), - [anon_sym_register] = ACTIONS(2320), - [anon_sym_inline] = ACTIONS(2320), - [anon_sym_const] = ACTIONS(2320), - [anon_sym_restrict] = ACTIONS(2320), - [anon_sym_volatile] = ACTIONS(2320), - [anon_sym__Atomic] = ACTIONS(2320), - [anon_sym_unsigned] = ACTIONS(2320), - [anon_sym_long] = ACTIONS(2320), - [anon_sym_short] = ACTIONS(2320), - [sym_primitive_type] = ACTIONS(2320), - [anon_sym_enum] = ACTIONS(2320), - [anon_sym_struct] = ACTIONS(2320), - [anon_sym_union] = ACTIONS(2320), - [anon_sym_if] = ACTIONS(2320), - [anon_sym_else] = ACTIONS(2320), - [anon_sym_switch] = ACTIONS(2320), - [anon_sym_case] = ACTIONS(2320), - [anon_sym_default] = ACTIONS(2320), - [anon_sym_while] = ACTIONS(2320), - [anon_sym_do] = ACTIONS(2320), - [anon_sym_for] = ACTIONS(2320), - [anon_sym_return] = ACTIONS(2320), - [anon_sym_break] = ACTIONS(2320), - [anon_sym_continue] = ACTIONS(2320), - [anon_sym_goto] = ACTIONS(2320), - [anon_sym_AMP] = ACTIONS(2322), - [anon_sym_BANG] = ACTIONS(2322), - [anon_sym_TILDE] = ACTIONS(2322), - [anon_sym_PLUS] = ACTIONS(2320), - [anon_sym_DASH] = ACTIONS(2320), - [anon_sym_DASH_DASH] = ACTIONS(2322), - [anon_sym_PLUS_PLUS] = ACTIONS(2322), - [anon_sym_sizeof] = ACTIONS(2320), - [sym_number_literal] = ACTIONS(2322), - [anon_sym_SQUOTE] = ACTIONS(2322), - [anon_sym_DQUOTE] = ACTIONS(2322), - [sym_true] = ACTIONS(2320), - [sym_false] = ACTIONS(2320), - [sym_null] = ACTIONS(2320), - [sym_identifier] = ACTIONS(2320), - [sym_comment] = ACTIONS(37), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1736), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1736), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1736), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1736), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1736), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1736), + [sym_preproc_directive] = ACTIONS(1736), + [anon_sym_typedef] = ACTIONS(1736), + [anon_sym_extern] = ACTIONS(1736), + [anon_sym_LPAREN2] = ACTIONS(1734), + [anon_sym_STAR] = ACTIONS(1734), + [anon_sym_static] = ACTIONS(1736), + [anon_sym_auto] = ACTIONS(1736), + [anon_sym_register] = ACTIONS(1736), + [anon_sym_inline] = ACTIONS(1736), + [anon_sym_const] = ACTIONS(1736), + [anon_sym_restrict] = ACTIONS(1736), + [anon_sym_volatile] = ACTIONS(1736), + [anon_sym__Atomic] = ACTIONS(1736), + [anon_sym_unsigned] = ACTIONS(1736), + [anon_sym_long] = ACTIONS(1736), + [anon_sym_short] = ACTIONS(1736), + [sym_primitive_type] = ACTIONS(1736), + [anon_sym_enum] = ACTIONS(1736), + [anon_sym_struct] = ACTIONS(1736), + [anon_sym_union] = ACTIONS(1736), + [anon_sym_AMP] = ACTIONS(1734), + [anon_sym_BANG] = ACTIONS(1734), + [anon_sym_TILDE] = ACTIONS(1734), + [anon_sym_PLUS] = ACTIONS(1736), + [anon_sym_DASH] = ACTIONS(1736), + [anon_sym_DASH_DASH] = ACTIONS(1734), + [anon_sym_PLUS_PLUS] = ACTIONS(1734), + [anon_sym_sizeof] = ACTIONS(1736), + [sym_number_literal] = ACTIONS(1734), + [anon_sym_SQUOTE] = ACTIONS(1734), + [anon_sym_DQUOTE] = ACTIONS(1734), + [sym_true] = ACTIONS(1736), + [sym_false] = ACTIONS(1736), + [sym_null] = ACTIONS(1736), + [sym_identifier] = ACTIONS(1736), + [sym_comment] = ACTIONS(59), }, [959] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2324), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2324), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2324), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2324), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2324), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2324), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2324), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2324), - [sym_preproc_directive] = ACTIONS(2324), - [anon_sym_SEMI] = ACTIONS(2326), - [anon_sym_typedef] = ACTIONS(2324), - [anon_sym_extern] = ACTIONS(2324), - [anon_sym_LBRACE] = ACTIONS(2326), - [anon_sym_LPAREN2] = ACTIONS(2326), - [anon_sym_STAR] = ACTIONS(2326), - [anon_sym_static] = ACTIONS(2324), - [anon_sym_auto] = ACTIONS(2324), - [anon_sym_register] = ACTIONS(2324), - [anon_sym_inline] = ACTIONS(2324), - [anon_sym_const] = ACTIONS(2324), - [anon_sym_restrict] = ACTIONS(2324), - [anon_sym_volatile] = ACTIONS(2324), - [anon_sym__Atomic] = ACTIONS(2324), - [anon_sym_unsigned] = ACTIONS(2324), - [anon_sym_long] = ACTIONS(2324), - [anon_sym_short] = ACTIONS(2324), - [sym_primitive_type] = ACTIONS(2324), - [anon_sym_enum] = ACTIONS(2324), - [anon_sym_struct] = ACTIONS(2324), - [anon_sym_union] = ACTIONS(2324), - [anon_sym_if] = ACTIONS(2324), - [anon_sym_else] = ACTIONS(2324), - [anon_sym_switch] = ACTIONS(2324), - [anon_sym_case] = ACTIONS(2324), - [anon_sym_default] = ACTIONS(2324), - [anon_sym_while] = ACTIONS(2324), - [anon_sym_do] = ACTIONS(2324), - [anon_sym_for] = ACTIONS(2324), - [anon_sym_return] = ACTIONS(2324), - [anon_sym_break] = ACTIONS(2324), - [anon_sym_continue] = ACTIONS(2324), - [anon_sym_goto] = ACTIONS(2324), - [anon_sym_AMP] = ACTIONS(2326), - [anon_sym_BANG] = ACTIONS(2326), - [anon_sym_TILDE] = ACTIONS(2326), - [anon_sym_PLUS] = ACTIONS(2324), - [anon_sym_DASH] = ACTIONS(2324), - [anon_sym_DASH_DASH] = ACTIONS(2326), - [anon_sym_PLUS_PLUS] = ACTIONS(2326), - [anon_sym_sizeof] = ACTIONS(2324), - [sym_number_literal] = ACTIONS(2326), - [anon_sym_SQUOTE] = ACTIONS(2326), - [anon_sym_DQUOTE] = ACTIONS(2326), - [sym_true] = ACTIONS(2324), - [sym_false] = ACTIONS(2324), - [sym_null] = ACTIONS(2324), - [sym_identifier] = ACTIONS(2324), - [sym_comment] = ACTIONS(37), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1740), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1740), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1740), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1740), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1740), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1740), + [sym_preproc_directive] = ACTIONS(1740), + [anon_sym_typedef] = ACTIONS(1740), + [anon_sym_extern] = ACTIONS(1740), + [anon_sym_LPAREN2] = ACTIONS(1738), + [anon_sym_STAR] = ACTIONS(1738), + [anon_sym_static] = ACTIONS(1740), + [anon_sym_auto] = ACTIONS(1740), + [anon_sym_register] = ACTIONS(1740), + [anon_sym_inline] = ACTIONS(1740), + [anon_sym_const] = ACTIONS(1740), + [anon_sym_restrict] = ACTIONS(1740), + [anon_sym_volatile] = ACTIONS(1740), + [anon_sym__Atomic] = ACTIONS(1740), + [anon_sym_unsigned] = ACTIONS(1740), + [anon_sym_long] = ACTIONS(1740), + [anon_sym_short] = ACTIONS(1740), + [sym_primitive_type] = ACTIONS(1740), + [anon_sym_enum] = ACTIONS(1740), + [anon_sym_struct] = ACTIONS(1740), + [anon_sym_union] = ACTIONS(1740), + [anon_sym_AMP] = ACTIONS(1738), + [anon_sym_BANG] = ACTIONS(1738), + [anon_sym_TILDE] = ACTIONS(1738), + [anon_sym_PLUS] = ACTIONS(1740), + [anon_sym_DASH] = ACTIONS(1740), + [anon_sym_DASH_DASH] = ACTIONS(1738), + [anon_sym_PLUS_PLUS] = ACTIONS(1738), + [anon_sym_sizeof] = ACTIONS(1740), + [sym_number_literal] = ACTIONS(1738), + [anon_sym_SQUOTE] = ACTIONS(1738), + [anon_sym_DQUOTE] = ACTIONS(1738), + [sym_true] = ACTIONS(1740), + [sym_false] = ACTIONS(1740), + [sym_null] = ACTIONS(1740), + [sym_identifier] = ACTIONS(1740), + [sym_comment] = ACTIONS(59), }, [960] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2334), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2334), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2334), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2334), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2334), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2334), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2334), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2334), - [sym_preproc_directive] = ACTIONS(2334), - [anon_sym_SEMI] = ACTIONS(2336), - [anon_sym_typedef] = ACTIONS(2334), - [anon_sym_extern] = ACTIONS(2334), - [anon_sym_LBRACE] = ACTIONS(2336), - [anon_sym_LPAREN2] = ACTIONS(2336), - [anon_sym_STAR] = ACTIONS(2336), - [anon_sym_static] = ACTIONS(2334), - [anon_sym_auto] = ACTIONS(2334), - [anon_sym_register] = ACTIONS(2334), - [anon_sym_inline] = ACTIONS(2334), - [anon_sym_const] = ACTIONS(2334), - [anon_sym_restrict] = ACTIONS(2334), - [anon_sym_volatile] = ACTIONS(2334), - [anon_sym__Atomic] = ACTIONS(2334), - [anon_sym_unsigned] = ACTIONS(2334), - [anon_sym_long] = ACTIONS(2334), - [anon_sym_short] = ACTIONS(2334), - [sym_primitive_type] = ACTIONS(2334), - [anon_sym_enum] = ACTIONS(2334), - [anon_sym_struct] = ACTIONS(2334), - [anon_sym_union] = ACTIONS(2334), - [anon_sym_if] = ACTIONS(2334), - [anon_sym_else] = ACTIONS(2334), - [anon_sym_switch] = ACTIONS(2334), - [anon_sym_case] = ACTIONS(2334), - [anon_sym_default] = ACTIONS(2334), - [anon_sym_while] = ACTIONS(2334), - [anon_sym_do] = ACTIONS(2334), - [anon_sym_for] = ACTIONS(2334), - [anon_sym_return] = ACTIONS(2334), - [anon_sym_break] = ACTIONS(2334), - [anon_sym_continue] = ACTIONS(2334), - [anon_sym_goto] = ACTIONS(2334), - [anon_sym_AMP] = ACTIONS(2336), - [anon_sym_BANG] = ACTIONS(2336), - [anon_sym_TILDE] = ACTIONS(2336), - [anon_sym_PLUS] = ACTIONS(2334), - [anon_sym_DASH] = ACTIONS(2334), - [anon_sym_DASH_DASH] = ACTIONS(2336), - [anon_sym_PLUS_PLUS] = ACTIONS(2336), - [anon_sym_sizeof] = ACTIONS(2334), - [sym_number_literal] = ACTIONS(2336), - [anon_sym_SQUOTE] = ACTIONS(2336), - [anon_sym_DQUOTE] = ACTIONS(2336), - [sym_true] = ACTIONS(2334), - [sym_false] = ACTIONS(2334), - [sym_null] = ACTIONS(2334), - [sym_identifier] = ACTIONS(2334), - [sym_comment] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(1754), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1756), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1756), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1756), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1756), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1756), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1756), + [sym_preproc_directive] = ACTIONS(1756), + [anon_sym_typedef] = ACTIONS(1756), + [anon_sym_extern] = ACTIONS(1756), + [anon_sym_LBRACE] = ACTIONS(1754), + [anon_sym_LPAREN2] = ACTIONS(1754), + [anon_sym_STAR] = ACTIONS(1754), + [anon_sym_static] = ACTIONS(1756), + [anon_sym_auto] = ACTIONS(1756), + [anon_sym_register] = ACTIONS(1756), + [anon_sym_inline] = ACTIONS(1756), + [anon_sym_const] = ACTIONS(1756), + [anon_sym_restrict] = ACTIONS(1756), + [anon_sym_volatile] = ACTIONS(1756), + [anon_sym__Atomic] = ACTIONS(1756), + [anon_sym_unsigned] = ACTIONS(1756), + [anon_sym_long] = ACTIONS(1756), + [anon_sym_short] = ACTIONS(1756), + [sym_primitive_type] = ACTIONS(1756), + [anon_sym_enum] = ACTIONS(1756), + [anon_sym_struct] = ACTIONS(1756), + [anon_sym_union] = ACTIONS(1756), + [anon_sym_if] = ACTIONS(1756), + [anon_sym_else] = ACTIONS(1756), + [anon_sym_switch] = ACTIONS(1756), + [anon_sym_case] = ACTIONS(1756), + [anon_sym_default] = ACTIONS(1756), + [anon_sym_while] = ACTIONS(1756), + [anon_sym_do] = ACTIONS(1756), + [anon_sym_for] = ACTIONS(1756), + [anon_sym_return] = ACTIONS(1756), + [anon_sym_break] = ACTIONS(1756), + [anon_sym_continue] = ACTIONS(1756), + [anon_sym_goto] = ACTIONS(1756), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_PLUS] = ACTIONS(1756), + [anon_sym_DASH] = ACTIONS(1756), + [anon_sym_DASH_DASH] = ACTIONS(1754), + [anon_sym_PLUS_PLUS] = ACTIONS(1754), + [anon_sym_sizeof] = ACTIONS(1756), + [sym_number_literal] = ACTIONS(1754), + [anon_sym_SQUOTE] = ACTIONS(1754), + [anon_sym_DQUOTE] = ACTIONS(1754), + [sym_true] = ACTIONS(1756), + [sym_false] = ACTIONS(1756), + [sym_null] = ACTIONS(1756), + [sym_identifier] = ACTIONS(1756), + [sym_comment] = ACTIONS(59), }, [961] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2912), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2912), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2912), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2912), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2912), - [sym_preproc_directive] = ACTIONS(2912), - [anon_sym_SEMI] = ACTIONS(2914), - [anon_sym_typedef] = ACTIONS(2912), - [anon_sym_extern] = ACTIONS(2912), - [anon_sym_LBRACE] = ACTIONS(2914), - [anon_sym_RBRACE] = ACTIONS(2914), - [anon_sym_LPAREN2] = ACTIONS(2914), - [anon_sym_STAR] = ACTIONS(2914), - [anon_sym_static] = ACTIONS(2912), - [anon_sym_auto] = ACTIONS(2912), - [anon_sym_register] = ACTIONS(2912), - [anon_sym_inline] = ACTIONS(2912), - [anon_sym_const] = ACTIONS(2912), - [anon_sym_restrict] = ACTIONS(2912), - [anon_sym_volatile] = ACTIONS(2912), - [anon_sym__Atomic] = ACTIONS(2912), - [anon_sym_unsigned] = ACTIONS(2912), - [anon_sym_long] = ACTIONS(2912), - [anon_sym_short] = ACTIONS(2912), - [sym_primitive_type] = ACTIONS(2912), - [anon_sym_enum] = ACTIONS(2912), - [anon_sym_struct] = ACTIONS(2912), - [anon_sym_union] = ACTIONS(2912), - [anon_sym_if] = ACTIONS(2912), - [anon_sym_switch] = ACTIONS(2912), - [anon_sym_case] = ACTIONS(2912), - [anon_sym_default] = ACTIONS(2912), - [anon_sym_while] = ACTIONS(2912), - [anon_sym_do] = ACTIONS(2912), - [anon_sym_for] = ACTIONS(2912), - [anon_sym_return] = ACTIONS(2912), - [anon_sym_break] = ACTIONS(2912), - [anon_sym_continue] = ACTIONS(2912), - [anon_sym_goto] = ACTIONS(2912), - [anon_sym_AMP] = ACTIONS(2914), - [anon_sym_BANG] = ACTIONS(2914), - [anon_sym_TILDE] = ACTIONS(2914), - [anon_sym_PLUS] = ACTIONS(2912), - [anon_sym_DASH] = ACTIONS(2912), - [anon_sym_DASH_DASH] = ACTIONS(2914), - [anon_sym_PLUS_PLUS] = ACTIONS(2914), - [anon_sym_sizeof] = ACTIONS(2912), - [sym_number_literal] = ACTIONS(2914), - [anon_sym_SQUOTE] = ACTIONS(2914), - [anon_sym_DQUOTE] = ACTIONS(2914), - [sym_true] = ACTIONS(2912), - [sym_false] = ACTIONS(2912), - [sym_null] = ACTIONS(2912), - [sym_identifier] = ACTIONS(2912), - [sym_comment] = ACTIONS(37), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1760), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1760), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1760), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1760), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1760), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1760), + [sym_preproc_directive] = ACTIONS(1760), + [anon_sym_typedef] = ACTIONS(1760), + [anon_sym_extern] = ACTIONS(1760), + [anon_sym_LPAREN2] = ACTIONS(1758), + [anon_sym_STAR] = ACTIONS(1758), + [anon_sym_static] = ACTIONS(1760), + [anon_sym_auto] = ACTIONS(1760), + [anon_sym_register] = ACTIONS(1760), + [anon_sym_inline] = ACTIONS(1760), + [anon_sym_const] = ACTIONS(1760), + [anon_sym_restrict] = ACTIONS(1760), + [anon_sym_volatile] = ACTIONS(1760), + [anon_sym__Atomic] = ACTIONS(1760), + [anon_sym_unsigned] = ACTIONS(1760), + [anon_sym_long] = ACTIONS(1760), + [anon_sym_short] = ACTIONS(1760), + [sym_primitive_type] = ACTIONS(1760), + [anon_sym_enum] = ACTIONS(1760), + [anon_sym_struct] = ACTIONS(1760), + [anon_sym_union] = ACTIONS(1760), + [anon_sym_AMP] = ACTIONS(1758), + [anon_sym_BANG] = ACTIONS(1758), + [anon_sym_TILDE] = ACTIONS(1758), + [anon_sym_PLUS] = ACTIONS(1760), + [anon_sym_DASH] = ACTIONS(1760), + [anon_sym_DASH_DASH] = ACTIONS(1758), + [anon_sym_PLUS_PLUS] = ACTIONS(1758), + [anon_sym_sizeof] = ACTIONS(1760), + [sym_number_literal] = ACTIONS(1758), + [anon_sym_SQUOTE] = ACTIONS(1758), + [anon_sym_DQUOTE] = ACTIONS(1758), + [sym_true] = ACTIONS(1760), + [sym_false] = ACTIONS(1760), + [sym_null] = ACTIONS(1760), + [sym_identifier] = ACTIONS(1760), + [sym_comment] = ACTIONS(59), }, [962] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2916), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2916), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2916), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2916), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2916), - [sym_preproc_directive] = ACTIONS(2916), - [anon_sym_SEMI] = ACTIONS(2918), - [anon_sym_typedef] = ACTIONS(2916), - [anon_sym_extern] = ACTIONS(2916), - [anon_sym_LBRACE] = ACTIONS(2918), - [anon_sym_RBRACE] = ACTIONS(2918), - [anon_sym_LPAREN2] = ACTIONS(2918), - [anon_sym_STAR] = ACTIONS(2918), - [anon_sym_static] = ACTIONS(2916), - [anon_sym_auto] = ACTIONS(2916), - [anon_sym_register] = ACTIONS(2916), - [anon_sym_inline] = ACTIONS(2916), - [anon_sym_const] = ACTIONS(2916), - [anon_sym_restrict] = ACTIONS(2916), - [anon_sym_volatile] = ACTIONS(2916), - [anon_sym__Atomic] = ACTIONS(2916), - [anon_sym_unsigned] = ACTIONS(2916), - [anon_sym_long] = ACTIONS(2916), - [anon_sym_short] = ACTIONS(2916), - [sym_primitive_type] = ACTIONS(2916), - [anon_sym_enum] = ACTIONS(2916), - [anon_sym_struct] = ACTIONS(2916), - [anon_sym_union] = ACTIONS(2916), - [anon_sym_if] = ACTIONS(2916), - [anon_sym_switch] = ACTIONS(2916), - [anon_sym_case] = ACTIONS(2916), - [anon_sym_default] = ACTIONS(2916), - [anon_sym_while] = ACTIONS(2916), - [anon_sym_do] = ACTIONS(2916), - [anon_sym_for] = ACTIONS(2916), - [anon_sym_return] = ACTIONS(2916), - [anon_sym_break] = ACTIONS(2916), - [anon_sym_continue] = ACTIONS(2916), - [anon_sym_goto] = ACTIONS(2916), - [anon_sym_AMP] = ACTIONS(2918), - [anon_sym_BANG] = ACTIONS(2918), - [anon_sym_TILDE] = ACTIONS(2918), - [anon_sym_PLUS] = ACTIONS(2916), - [anon_sym_DASH] = ACTIONS(2916), - [anon_sym_DASH_DASH] = ACTIONS(2918), - [anon_sym_PLUS_PLUS] = ACTIONS(2918), - [anon_sym_sizeof] = ACTIONS(2916), - [sym_number_literal] = ACTIONS(2918), - [anon_sym_SQUOTE] = ACTIONS(2918), - [anon_sym_DQUOTE] = ACTIONS(2918), - [sym_true] = ACTIONS(2916), - [sym_false] = ACTIONS(2916), - [sym_null] = ACTIONS(2916), - [sym_identifier] = ACTIONS(2916), - [sym_comment] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(2096), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2098), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2098), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2098), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2098), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2098), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2098), + [sym_preproc_directive] = ACTIONS(2098), + [anon_sym_typedef] = ACTIONS(2098), + [anon_sym_extern] = ACTIONS(2098), + [anon_sym_LBRACE] = ACTIONS(2096), + [anon_sym_LPAREN2] = ACTIONS(2096), + [anon_sym_STAR] = ACTIONS(2096), + [anon_sym_static] = ACTIONS(2098), + [anon_sym_auto] = ACTIONS(2098), + [anon_sym_register] = ACTIONS(2098), + [anon_sym_inline] = ACTIONS(2098), + [anon_sym_const] = ACTIONS(2098), + [anon_sym_restrict] = ACTIONS(2098), + [anon_sym_volatile] = ACTIONS(2098), + [anon_sym__Atomic] = ACTIONS(2098), + [anon_sym_unsigned] = ACTIONS(2098), + [anon_sym_long] = ACTIONS(2098), + [anon_sym_short] = ACTIONS(2098), + [sym_primitive_type] = ACTIONS(2098), + [anon_sym_enum] = ACTIONS(2098), + [anon_sym_struct] = ACTIONS(2098), + [anon_sym_union] = ACTIONS(2098), + [anon_sym_if] = ACTIONS(2098), + [anon_sym_else] = ACTIONS(2098), + [anon_sym_switch] = ACTIONS(2098), + [anon_sym_case] = ACTIONS(2098), + [anon_sym_default] = ACTIONS(2098), + [anon_sym_while] = ACTIONS(2098), + [anon_sym_do] = ACTIONS(2098), + [anon_sym_for] = ACTIONS(2098), + [anon_sym_return] = ACTIONS(2098), + [anon_sym_break] = ACTIONS(2098), + [anon_sym_continue] = ACTIONS(2098), + [anon_sym_goto] = ACTIONS(2098), + [anon_sym_AMP] = ACTIONS(2096), + [anon_sym_BANG] = ACTIONS(2096), + [anon_sym_TILDE] = ACTIONS(2096), + [anon_sym_PLUS] = ACTIONS(2098), + [anon_sym_DASH] = ACTIONS(2098), + [anon_sym_DASH_DASH] = ACTIONS(2096), + [anon_sym_PLUS_PLUS] = ACTIONS(2096), + [anon_sym_sizeof] = ACTIONS(2098), + [sym_number_literal] = ACTIONS(2096), + [anon_sym_SQUOTE] = ACTIONS(2096), + [anon_sym_DQUOTE] = ACTIONS(2096), + [sym_true] = ACTIONS(2098), + [sym_false] = ACTIONS(2098), + [sym_null] = ACTIONS(2098), + [sym_identifier] = ACTIONS(2098), + [sym_comment] = ACTIONS(59), }, [963] = { - [sym__expression] = STATE(838), - [sym_conditional_expression] = STATE(838), - [sym_assignment_expression] = STATE(838), - [sym_pointer_expression] = STATE(838), - [sym_logical_expression] = STATE(838), - [sym_bitwise_expression] = STATE(838), - [sym_equality_expression] = STATE(838), - [sym_relational_expression] = STATE(838), - [sym_shift_expression] = STATE(838), - [sym_math_expression] = STATE(838), - [sym_cast_expression] = STATE(838), - [sym_sizeof_expression] = STATE(838), - [sym_subscript_expression] = STATE(838), - [sym_call_expression] = STATE(838), - [sym_field_expression] = STATE(838), - [sym_compound_literal_expression] = STATE(838), - [sym_parenthesized_expression] = STATE(838), - [sym_initializer_list] = STATE(839), - [sym_char_literal] = STATE(838), - [sym_concatenated_string] = STATE(838), - [sym_string_literal] = STATE(374), - [anon_sym_COMMA] = ACTIONS(2701), - [anon_sym_RPAREN] = ACTIONS(2701), - [anon_sym_LBRACE] = ACTIONS(585), - [anon_sym_LPAREN2] = ACTIONS(892), - [anon_sym_STAR] = ACTIONS(2920), - [anon_sym_LBRACK] = ACTIONS(2701), - [anon_sym_EQ] = ACTIONS(2705), - [anon_sym_QMARK] = ACTIONS(2701), - [anon_sym_STAR_EQ] = ACTIONS(2701), - [anon_sym_SLASH_EQ] = ACTIONS(2701), - [anon_sym_PERCENT_EQ] = ACTIONS(2701), - [anon_sym_PLUS_EQ] = ACTIONS(2701), - [anon_sym_DASH_EQ] = ACTIONS(2701), - [anon_sym_LT_LT_EQ] = ACTIONS(2701), - [anon_sym_GT_GT_EQ] = ACTIONS(2701), - [anon_sym_AMP_EQ] = ACTIONS(2701), - [anon_sym_CARET_EQ] = ACTIONS(2701), - [anon_sym_PIPE_EQ] = ACTIONS(2701), - [anon_sym_AMP] = ACTIONS(2920), - [anon_sym_PIPE_PIPE] = ACTIONS(2701), - [anon_sym_AMP_AMP] = ACTIONS(2701), - [anon_sym_BANG] = ACTIONS(2922), - [anon_sym_PIPE] = ACTIONS(2705), - [anon_sym_CARET] = ACTIONS(2705), - [anon_sym_TILDE] = ACTIONS(898), - [anon_sym_EQ_EQ] = ACTIONS(2701), - [anon_sym_BANG_EQ] = ACTIONS(2701), - [anon_sym_LT] = ACTIONS(2705), - [anon_sym_GT] = ACTIONS(2705), - [anon_sym_LT_EQ] = ACTIONS(2701), - [anon_sym_GT_EQ] = ACTIONS(2701), - [anon_sym_LT_LT] = ACTIONS(2705), - [anon_sym_GT_GT] = ACTIONS(2705), - [anon_sym_PLUS] = ACTIONS(900), - [anon_sym_DASH] = ACTIONS(900), - [anon_sym_SLASH] = ACTIONS(2705), - [anon_sym_PERCENT] = ACTIONS(2705), - [anon_sym_DASH_DASH] = ACTIONS(902), - [anon_sym_PLUS_PLUS] = ACTIONS(902), - [anon_sym_sizeof] = ACTIONS(904), - [anon_sym_DOT] = ACTIONS(2701), - [anon_sym_DASH_GT] = ACTIONS(2701), - [sym_number_literal] = ACTIONS(2206), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(2208), - [sym_false] = ACTIONS(2208), - [sym_null] = ACTIONS(2208), - [sym_identifier] = ACTIONS(2208), - [sym_comment] = ACTIONS(37), + [sym_type_qualifier] = STATE(963), + [aux_sym_type_definition_repeat1] = STATE(963), + [anon_sym_RPAREN] = ACTIONS(1432), + [anon_sym_LPAREN2] = ACTIONS(1432), + [anon_sym_STAR] = ACTIONS(1432), + [anon_sym_LBRACK] = ACTIONS(1432), + [anon_sym_const] = ACTIONS(738), + [anon_sym_restrict] = ACTIONS(738), + [anon_sym_volatile] = ACTIONS(738), + [anon_sym__Atomic] = ACTIONS(738), + [sym_identifier] = ACTIONS(741), + [sym_comment] = ACTIONS(59), }, [964] = { + [sym__expression] = STATE(319), + [sym_conditional_expression] = STATE(319), + [sym_assignment_expression] = STATE(319), + [sym_pointer_expression] = STATE(319), + [sym_logical_expression] = STATE(319), + [sym_bitwise_expression] = STATE(319), + [sym_equality_expression] = STATE(319), + [sym_relational_expression] = STATE(319), + [sym_shift_expression] = STATE(319), + [sym_math_expression] = STATE(319), + [sym_cast_expression] = STATE(319), + [sym_sizeof_expression] = STATE(319), + [sym_subscript_expression] = STATE(319), + [sym_call_expression] = STATE(319), + [sym_field_expression] = STATE(319), + [sym_compound_literal_expression] = STATE(319), + [sym_parenthesized_expression] = STATE(319), + [sym_initializer_list] = STATE(320), + [sym_char_literal] = STATE(319), + [sym_concatenated_string] = STATE(319), + [sym_string_literal] = STATE(508), + [anon_sym_COMMA] = ACTIONS(1418), + [anon_sym_LBRACE] = ACTIONS(840), + [anon_sym_RBRACE] = ACTIONS(1418), + [anon_sym_LPAREN2] = ACTIONS(1289), + [anon_sym_STAR] = ACTIONS(2924), + [anon_sym_LBRACK] = ACTIONS(1418), + [anon_sym_EQ] = ACTIONS(1420), + [anon_sym_QMARK] = ACTIONS(1418), + [anon_sym_STAR_EQ] = ACTIONS(1418), + [anon_sym_SLASH_EQ] = ACTIONS(1418), + [anon_sym_PERCENT_EQ] = ACTIONS(1418), + [anon_sym_PLUS_EQ] = ACTIONS(1418), + [anon_sym_DASH_EQ] = ACTIONS(1418), + [anon_sym_LT_LT_EQ] = ACTIONS(1418), + [anon_sym_GT_GT_EQ] = ACTIONS(1418), + [anon_sym_AMP_EQ] = ACTIONS(1418), + [anon_sym_CARET_EQ] = ACTIONS(1418), + [anon_sym_PIPE_EQ] = ACTIONS(1418), + [anon_sym_AMP] = ACTIONS(2924), + [anon_sym_PIPE_PIPE] = ACTIONS(1418), + [anon_sym_AMP_AMP] = ACTIONS(1418), + [anon_sym_BANG] = ACTIONS(2926), + [anon_sym_PIPE] = ACTIONS(1420), + [anon_sym_CARET] = ACTIONS(1420), + [anon_sym_TILDE] = ACTIONS(1297), + [anon_sym_EQ_EQ] = ACTIONS(1418), + [anon_sym_BANG_EQ] = ACTIONS(1418), + [anon_sym_LT] = ACTIONS(1420), + [anon_sym_GT] = ACTIONS(1420), + [anon_sym_LT_EQ] = ACTIONS(1418), + [anon_sym_GT_EQ] = ACTIONS(1418), + [anon_sym_LT_LT] = ACTIONS(1420), + [anon_sym_GT_GT] = ACTIONS(1420), + [anon_sym_PLUS] = ACTIONS(1299), + [anon_sym_DASH] = ACTIONS(1299), + [anon_sym_SLASH] = ACTIONS(1420), + [anon_sym_PERCENT] = ACTIONS(1420), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_sizeof] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1418), + [anon_sym_DASH_GT] = ACTIONS(1418), + [sym_number_literal] = ACTIONS(842), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(844), + [sym_false] = ACTIONS(844), + [sym_null] = ACTIONS(844), + [sym_identifier] = ACTIONS(844), + [sym_comment] = ACTIONS(59), + }, + [965] = { [sym__expression] = STATE(1045), [sym_conditional_expression] = STATE(1045), [sym_assignment_expression] = STATE(1045), @@ -38428,1813 +39519,2555 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_parenthesized_expression] = STATE(1045), [sym_char_literal] = STATE(1045), [sym_concatenated_string] = STATE(1045), - [sym_string_literal] = STATE(374), - [anon_sym_LPAREN2] = ACTIONS(892), - [anon_sym_STAR] = ACTIONS(894), - [anon_sym_AMP] = ACTIONS(894), - [anon_sym_BANG] = ACTIONS(896), - [anon_sym_TILDE] = ACTIONS(898), - [anon_sym_PLUS] = ACTIONS(900), - [anon_sym_DASH] = ACTIONS(900), - [anon_sym_DASH_DASH] = ACTIONS(902), - [anon_sym_PLUS_PLUS] = ACTIONS(902), - [anon_sym_sizeof] = ACTIONS(904), - [sym_number_literal] = ACTIONS(2924), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(2926), - [sym_false] = ACTIONS(2926), - [sym_null] = ACTIONS(2926), - [sym_identifier] = ACTIONS(2926), - [sym_comment] = ACTIONS(37), - }, - [965] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2222), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2222), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2222), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2222), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2222), - [sym_preproc_directive] = ACTIONS(2222), - [anon_sym_SEMI] = ACTIONS(2224), - [anon_sym_typedef] = ACTIONS(2222), - [anon_sym_extern] = ACTIONS(2222), - [anon_sym_LBRACE] = ACTIONS(2224), - [anon_sym_RBRACE] = ACTIONS(2224), - [anon_sym_LPAREN2] = ACTIONS(2224), - [anon_sym_STAR] = ACTIONS(2224), - [anon_sym_static] = ACTIONS(2222), - [anon_sym_auto] = ACTIONS(2222), - [anon_sym_register] = ACTIONS(2222), - [anon_sym_inline] = ACTIONS(2222), - [anon_sym_const] = ACTIONS(2222), - [anon_sym_restrict] = ACTIONS(2222), - [anon_sym_volatile] = ACTIONS(2222), - [anon_sym__Atomic] = ACTIONS(2222), - [anon_sym_unsigned] = ACTIONS(2222), - [anon_sym_long] = ACTIONS(2222), - [anon_sym_short] = ACTIONS(2222), - [sym_primitive_type] = ACTIONS(2222), - [anon_sym_enum] = ACTIONS(2222), - [anon_sym_struct] = ACTIONS(2222), - [anon_sym_union] = ACTIONS(2222), - [anon_sym_if] = ACTIONS(2222), - [anon_sym_else] = ACTIONS(2928), - [anon_sym_switch] = ACTIONS(2222), - [anon_sym_case] = ACTIONS(2222), - [anon_sym_default] = ACTIONS(2222), - [anon_sym_while] = ACTIONS(2222), - [anon_sym_do] = ACTIONS(2222), - [anon_sym_for] = ACTIONS(2222), - [anon_sym_return] = ACTIONS(2222), - [anon_sym_break] = ACTIONS(2222), - [anon_sym_continue] = ACTIONS(2222), - [anon_sym_goto] = ACTIONS(2222), - [anon_sym_AMP] = ACTIONS(2224), - [anon_sym_BANG] = ACTIONS(2224), - [anon_sym_TILDE] = ACTIONS(2224), - [anon_sym_PLUS] = ACTIONS(2222), - [anon_sym_DASH] = ACTIONS(2222), - [anon_sym_DASH_DASH] = ACTIONS(2224), - [anon_sym_PLUS_PLUS] = ACTIONS(2224), - [anon_sym_sizeof] = ACTIONS(2222), - [sym_number_literal] = ACTIONS(2224), - [anon_sym_SQUOTE] = ACTIONS(2224), - [anon_sym_DQUOTE] = ACTIONS(2224), - [sym_true] = ACTIONS(2222), - [sym_false] = ACTIONS(2222), - [sym_null] = ACTIONS(2222), - [sym_identifier] = ACTIONS(2222), - [sym_comment] = ACTIONS(37), + [sym_string_literal] = STATE(508), + [anon_sym_LPAREN2] = ACTIONS(1289), + [anon_sym_STAR] = ACTIONS(1291), + [anon_sym_AMP] = ACTIONS(1291), + [anon_sym_BANG] = ACTIONS(1295), + [anon_sym_TILDE] = ACTIONS(1297), + [anon_sym_PLUS] = ACTIONS(1299), + [anon_sym_DASH] = ACTIONS(1299), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_sizeof] = ACTIONS(1303), + [sym_number_literal] = ACTIONS(2928), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(2930), + [sym_false] = ACTIONS(2930), + [sym_null] = ACTIONS(2930), + [sym_identifier] = ACTIONS(2930), + [sym_comment] = ACTIONS(59), }, [966] = { - [sym_declaration] = STATE(853), - [sym_type_definition] = STATE(853), - [sym__declaration_specifiers] = STATE(650), - [sym_compound_statement] = STATE(853), - [sym_storage_class_specifier] = STATE(87), - [sym_type_qualifier] = STATE(87), - [sym__type_specifier] = STATE(86), - [sym_sized_type_specifier] = STATE(86), - [sym_enum_specifier] = STATE(86), - [sym_struct_specifier] = STATE(86), - [sym_union_specifier] = STATE(86), - [sym_labeled_statement] = STATE(853), - [sym_expression_statement] = STATE(853), - [sym_if_statement] = STATE(853), - [sym_switch_statement] = STATE(853), - [sym_case_statement] = STATE(853), - [sym_while_statement] = STATE(853), - [sym_do_statement] = STATE(853), - [sym_for_statement] = STATE(853), - [sym_return_statement] = STATE(853), - [sym_break_statement] = STATE(853), - [sym_continue_statement] = STATE(853), - [sym_goto_statement] = STATE(853), - [sym__expression] = STATE(228), - [sym_comma_expression] = STATE(229), - [sym_conditional_expression] = STATE(228), - [sym_assignment_expression] = STATE(228), - [sym_pointer_expression] = STATE(228), - [sym_logical_expression] = STATE(228), - [sym_bitwise_expression] = STATE(228), - [sym_equality_expression] = STATE(228), - [sym_relational_expression] = STATE(228), - [sym_shift_expression] = STATE(228), - [sym_math_expression] = STATE(228), - [sym_cast_expression] = STATE(228), - [sym_sizeof_expression] = STATE(228), - [sym_subscript_expression] = STATE(228), - [sym_call_expression] = STATE(228), - [sym_field_expression] = STATE(228), - [sym_compound_literal_expression] = STATE(228), - [sym_parenthesized_expression] = STATE(228), - [sym_char_literal] = STATE(228), - [sym_concatenated_string] = STATE(228), - [sym_string_literal] = STATE(230), - [sym_macro_type_specifier] = STATE(86), - [aux_sym__declaration_specifiers_repeat1] = STATE(87), - [aux_sym_sized_type_specifier_repeat1] = STATE(88), - [anon_sym_SEMI] = ACTIONS(503), - [anon_sym_typedef] = ACTIONS(17), - [anon_sym_extern] = ACTIONS(21), - [anon_sym_LBRACE] = ACTIONS(229), - [anon_sym_LPAREN2] = ACTIONS(507), - [anon_sym_STAR] = ACTIONS(509), - [anon_sym_static] = ACTIONS(21), - [anon_sym_auto] = ACTIONS(21), - [anon_sym_register] = ACTIONS(21), - [anon_sym_inline] = ACTIONS(21), - [anon_sym_const] = ACTIONS(23), - [anon_sym_restrict] = ACTIONS(23), - [anon_sym_volatile] = ACTIONS(23), - [anon_sym__Atomic] = ACTIONS(23), - [anon_sym_unsigned] = ACTIONS(167), - [anon_sym_long] = ACTIONS(167), - [anon_sym_short] = ACTIONS(167), - [sym_primitive_type] = ACTIONS(169), - [anon_sym_enum] = ACTIONS(29), - [anon_sym_struct] = ACTIONS(31), - [anon_sym_union] = ACTIONS(33), - [anon_sym_if] = ACTIONS(1475), - [anon_sym_switch] = ACTIONS(1477), - [anon_sym_case] = ACTIONS(1479), - [anon_sym_default] = ACTIONS(1481), - [anon_sym_while] = ACTIONS(1483), - [anon_sym_do] = ACTIONS(521), - [anon_sym_for] = ACTIONS(1485), - [anon_sym_return] = ACTIONS(525), - [anon_sym_break] = ACTIONS(527), - [anon_sym_continue] = ACTIONS(529), - [anon_sym_goto] = ACTIONS(531), - [anon_sym_AMP] = ACTIONS(509), - [anon_sym_BANG] = ACTIONS(533), - [anon_sym_TILDE] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DASH] = ACTIONS(537), - [anon_sym_DASH_DASH] = ACTIONS(539), - [anon_sym_PLUS_PLUS] = ACTIONS(539), - [anon_sym_sizeof] = ACTIONS(541), - [sym_number_literal] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(547), - [sym_false] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [sym_identifier] = ACTIONS(2647), - [sym_comment] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(2932), + [anon_sym_COMMA] = ACTIONS(2932), + [anon_sym_RPAREN] = ACTIONS(2932), + [anon_sym_RBRACE] = ACTIONS(2932), + [anon_sym_LPAREN2] = ACTIONS(2932), + [anon_sym_STAR] = ACTIONS(2934), + [anon_sym_LBRACK] = ACTIONS(2932), + [anon_sym_RBRACK] = ACTIONS(2932), + [anon_sym_EQ] = ACTIONS(2934), + [anon_sym_COLON] = ACTIONS(2932), + [anon_sym_QMARK] = ACTIONS(2932), + [anon_sym_STAR_EQ] = ACTIONS(2932), + [anon_sym_SLASH_EQ] = ACTIONS(2932), + [anon_sym_PERCENT_EQ] = ACTIONS(2932), + [anon_sym_PLUS_EQ] = ACTIONS(2932), + [anon_sym_DASH_EQ] = ACTIONS(2932), + [anon_sym_LT_LT_EQ] = ACTIONS(2932), + [anon_sym_GT_GT_EQ] = ACTIONS(2932), + [anon_sym_AMP_EQ] = ACTIONS(2932), + [anon_sym_CARET_EQ] = ACTIONS(2932), + [anon_sym_PIPE_EQ] = ACTIONS(2932), + [anon_sym_AMP] = ACTIONS(2934), + [anon_sym_PIPE_PIPE] = ACTIONS(2932), + [anon_sym_AMP_AMP] = ACTIONS(2932), + [anon_sym_PIPE] = ACTIONS(2934), + [anon_sym_CARET] = ACTIONS(2934), + [anon_sym_EQ_EQ] = ACTIONS(2932), + [anon_sym_BANG_EQ] = ACTIONS(2932), + [anon_sym_LT] = ACTIONS(2934), + [anon_sym_GT] = ACTIONS(2934), + [anon_sym_LT_EQ] = ACTIONS(2932), + [anon_sym_GT_EQ] = ACTIONS(2932), + [anon_sym_LT_LT] = ACTIONS(2934), + [anon_sym_GT_GT] = ACTIONS(2934), + [anon_sym_PLUS] = ACTIONS(2934), + [anon_sym_DASH] = ACTIONS(2934), + [anon_sym_SLASH] = ACTIONS(2934), + [anon_sym_PERCENT] = ACTIONS(2934), + [anon_sym_DASH_DASH] = ACTIONS(2932), + [anon_sym_PLUS_PLUS] = ACTIONS(2932), + [anon_sym_DOT] = ACTIONS(2932), + [anon_sym_DASH_GT] = ACTIONS(2932), + [sym_comment] = ACTIONS(59), }, [967] = { - [anon_sym_COMMA] = ACTIONS(990), - [anon_sym_SEMI] = ACTIONS(990), - [anon_sym_extern] = ACTIONS(79), - [anon_sym_LPAREN2] = ACTIONS(995), - [anon_sym_STAR] = ACTIONS(999), - [anon_sym_LBRACK] = ACTIONS(990), - [anon_sym_EQ] = ACTIONS(1002), - [anon_sym_static] = ACTIONS(79), - [anon_sym_auto] = ACTIONS(79), - [anon_sym_register] = ACTIONS(79), - [anon_sym_inline] = ACTIONS(79), - [anon_sym_const] = ACTIONS(79), - [anon_sym_restrict] = ACTIONS(79), - [anon_sym_volatile] = ACTIONS(79), - [anon_sym__Atomic] = ACTIONS(79), - [anon_sym_COLON] = ACTIONS(2220), - [anon_sym_QMARK] = ACTIONS(990), - [anon_sym_STAR_EQ] = ACTIONS(990), - [anon_sym_SLASH_EQ] = ACTIONS(990), - [anon_sym_PERCENT_EQ] = ACTIONS(990), - [anon_sym_PLUS_EQ] = ACTIONS(990), - [anon_sym_DASH_EQ] = ACTIONS(990), - [anon_sym_LT_LT_EQ] = ACTIONS(990), - [anon_sym_GT_GT_EQ] = ACTIONS(990), - [anon_sym_AMP_EQ] = ACTIONS(990), - [anon_sym_CARET_EQ] = ACTIONS(990), - [anon_sym_PIPE_EQ] = ACTIONS(990), - [anon_sym_AMP] = ACTIONS(1002), - [anon_sym_PIPE_PIPE] = ACTIONS(990), - [anon_sym_AMP_AMP] = ACTIONS(990), - [anon_sym_PIPE] = ACTIONS(1002), - [anon_sym_CARET] = ACTIONS(1002), - [anon_sym_EQ_EQ] = ACTIONS(990), - [anon_sym_BANG_EQ] = ACTIONS(990), - [anon_sym_LT] = ACTIONS(1002), - [anon_sym_GT] = ACTIONS(1002), - [anon_sym_LT_EQ] = ACTIONS(990), - [anon_sym_GT_EQ] = ACTIONS(990), - [anon_sym_LT_LT] = ACTIONS(1002), - [anon_sym_GT_GT] = ACTIONS(1002), - [anon_sym_PLUS] = ACTIONS(1002), - [anon_sym_DASH] = ACTIONS(1002), - [anon_sym_SLASH] = ACTIONS(1002), - [anon_sym_PERCENT] = ACTIONS(1002), - [anon_sym_DASH_DASH] = ACTIONS(990), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_DOT] = ACTIONS(990), - [anon_sym_DASH_GT] = ACTIONS(990), - [sym_identifier] = ACTIONS(79), - [sym_comment] = ACTIONS(37), + [sym__expression] = STATE(843), + [sym_conditional_expression] = STATE(843), + [sym_assignment_expression] = STATE(843), + [sym_pointer_expression] = STATE(843), + [sym_logical_expression] = STATE(843), + [sym_bitwise_expression] = STATE(843), + [sym_equality_expression] = STATE(843), + [sym_relational_expression] = STATE(843), + [sym_shift_expression] = STATE(843), + [sym_math_expression] = STATE(843), + [sym_cast_expression] = STATE(843), + [sym_sizeof_expression] = STATE(843), + [sym_subscript_expression] = STATE(843), + [sym_call_expression] = STATE(843), + [sym_field_expression] = STATE(843), + [sym_compound_literal_expression] = STATE(843), + [sym_parenthesized_expression] = STATE(843), + [sym_initializer_list] = STATE(844), + [sym_initializer_pair] = STATE(844), + [sym_subscript_designator] = STATE(509), + [sym_field_designator] = STATE(509), + [sym_char_literal] = STATE(843), + [sym_concatenated_string] = STATE(843), + [sym_string_literal] = STATE(508), + [aux_sym_initializer_pair_repeat1] = STATE(509), + [anon_sym_LBRACE] = ACTIONS(840), + [anon_sym_LPAREN2] = ACTIONS(1289), + [anon_sym_STAR] = ACTIONS(1291), + [anon_sym_LBRACK] = ACTIONS(1293), + [anon_sym_AMP] = ACTIONS(1291), + [anon_sym_BANG] = ACTIONS(1295), + [anon_sym_TILDE] = ACTIONS(1297), + [anon_sym_PLUS] = ACTIONS(1299), + [anon_sym_DASH] = ACTIONS(1299), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_sizeof] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1305), + [sym_number_literal] = ACTIONS(2318), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(2320), + [sym_false] = ACTIONS(2320), + [sym_null] = ACTIONS(2320), + [sym_identifier] = ACTIONS(2320), + [sym_comment] = ACTIONS(59), }, [968] = { - [sym__expression] = STATE(1048), - [sym_conditional_expression] = STATE(1048), - [sym_assignment_expression] = STATE(1048), - [sym_pointer_expression] = STATE(1048), - [sym_logical_expression] = STATE(1048), - [sym_bitwise_expression] = STATE(1048), - [sym_equality_expression] = STATE(1048), - [sym_relational_expression] = STATE(1048), - [sym_shift_expression] = STATE(1048), - [sym_math_expression] = STATE(1048), - [sym_cast_expression] = STATE(1048), - [sym_sizeof_expression] = STATE(1048), - [sym_subscript_expression] = STATE(1048), - [sym_call_expression] = STATE(1048), - [sym_field_expression] = STATE(1048), - [sym_compound_literal_expression] = STATE(1048), - [sym_parenthesized_expression] = STATE(1048), - [sym_char_literal] = STATE(1048), - [sym_concatenated_string] = STATE(1048), - [sym_string_literal] = STATE(342), - [anon_sym_SEMI] = ACTIONS(2930), - [anon_sym_LPAREN2] = ACTIONS(780), - [anon_sym_STAR] = ACTIONS(782), - [anon_sym_AMP] = ACTIONS(782), - [anon_sym_BANG] = ACTIONS(784), - [anon_sym_TILDE] = ACTIONS(786), - [anon_sym_PLUS] = ACTIONS(788), - [anon_sym_DASH] = ACTIONS(788), - [anon_sym_DASH_DASH] = ACTIONS(790), - [anon_sym_PLUS_PLUS] = ACTIONS(790), - [anon_sym_sizeof] = ACTIONS(792), - [sym_number_literal] = ACTIONS(2932), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(2934), - [sym_false] = ACTIONS(2934), - [sym_null] = ACTIONS(2934), - [sym_identifier] = ACTIONS(2934), - [sym_comment] = ACTIONS(37), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2936), + [sym_comment] = ACTIONS(59), }, [969] = { - [sym_argument_list] = STATE(430), - [anon_sym_SEMI] = ACTIONS(2936), - [anon_sym_LPAREN2] = ACTIONS(1012), - [anon_sym_STAR] = ACTIONS(1319), - [anon_sym_LBRACK] = ACTIONS(1016), - [anon_sym_EQ] = ACTIONS(1321), - [anon_sym_QMARK] = ACTIONS(1323), - [anon_sym_STAR_EQ] = ACTIONS(1325), - [anon_sym_SLASH_EQ] = ACTIONS(1325), - [anon_sym_PERCENT_EQ] = ACTIONS(1325), - [anon_sym_PLUS_EQ] = ACTIONS(1325), - [anon_sym_DASH_EQ] = ACTIONS(1325), - [anon_sym_LT_LT_EQ] = ACTIONS(1325), - [anon_sym_GT_GT_EQ] = ACTIONS(1325), - [anon_sym_AMP_EQ] = ACTIONS(1325), - [anon_sym_CARET_EQ] = ACTIONS(1325), - [anon_sym_PIPE_EQ] = ACTIONS(1325), - [anon_sym_AMP] = ACTIONS(1327), - [anon_sym_PIPE_PIPE] = ACTIONS(1329), - [anon_sym_AMP_AMP] = ACTIONS(1331), - [anon_sym_PIPE] = ACTIONS(1333), - [anon_sym_CARET] = ACTIONS(1335), - [anon_sym_EQ_EQ] = ACTIONS(1337), - [anon_sym_BANG_EQ] = ACTIONS(1337), - [anon_sym_LT] = ACTIONS(1339), - [anon_sym_GT] = ACTIONS(1339), - [anon_sym_LT_EQ] = ACTIONS(1341), - [anon_sym_GT_EQ] = ACTIONS(1341), - [anon_sym_LT_LT] = ACTIONS(1343), - [anon_sym_GT_GT] = ACTIONS(1343), - [anon_sym_PLUS] = ACTIONS(1345), - [anon_sym_DASH] = ACTIONS(1345), - [anon_sym_SLASH] = ACTIONS(1319), - [anon_sym_PERCENT] = ACTIONS(1319), - [anon_sym_DASH_DASH] = ACTIONS(1044), - [anon_sym_PLUS_PLUS] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1046), - [anon_sym_DASH_GT] = ACTIONS(1046), - [sym_comment] = ACTIONS(37), + [sym__expression] = STATE(319), + [sym_conditional_expression] = STATE(319), + [sym_assignment_expression] = STATE(319), + [sym_pointer_expression] = STATE(319), + [sym_logical_expression] = STATE(319), + [sym_bitwise_expression] = STATE(319), + [sym_equality_expression] = STATE(319), + [sym_relational_expression] = STATE(319), + [sym_shift_expression] = STATE(319), + [sym_math_expression] = STATE(319), + [sym_cast_expression] = STATE(319), + [sym_sizeof_expression] = STATE(319), + [sym_subscript_expression] = STATE(319), + [sym_call_expression] = STATE(319), + [sym_field_expression] = STATE(319), + [sym_compound_literal_expression] = STATE(319), + [sym_parenthesized_expression] = STATE(319), + [sym_initializer_list] = STATE(320), + [sym_char_literal] = STATE(319), + [sym_concatenated_string] = STATE(319), + [sym_string_literal] = STATE(534), + [anon_sym_SEMI] = ACTIONS(1418), + [anon_sym_LBRACE] = ACTIONS(840), + [anon_sym_LPAREN2] = ACTIONS(1349), + [anon_sym_STAR] = ACTIONS(2938), + [anon_sym_LBRACK] = ACTIONS(1418), + [anon_sym_EQ] = ACTIONS(1420), + [anon_sym_QMARK] = ACTIONS(1418), + [anon_sym_STAR_EQ] = ACTIONS(1418), + [anon_sym_SLASH_EQ] = ACTIONS(1418), + [anon_sym_PERCENT_EQ] = ACTIONS(1418), + [anon_sym_PLUS_EQ] = ACTIONS(1418), + [anon_sym_DASH_EQ] = ACTIONS(1418), + [anon_sym_LT_LT_EQ] = ACTIONS(1418), + [anon_sym_GT_GT_EQ] = ACTIONS(1418), + [anon_sym_AMP_EQ] = ACTIONS(1418), + [anon_sym_CARET_EQ] = ACTIONS(1418), + [anon_sym_PIPE_EQ] = ACTIONS(1418), + [anon_sym_AMP] = ACTIONS(2938), + [anon_sym_PIPE_PIPE] = ACTIONS(1418), + [anon_sym_AMP_AMP] = ACTIONS(1418), + [anon_sym_BANG] = ACTIONS(2940), + [anon_sym_PIPE] = ACTIONS(1420), + [anon_sym_CARET] = ACTIONS(1420), + [anon_sym_TILDE] = ACTIONS(1355), + [anon_sym_EQ_EQ] = ACTIONS(1418), + [anon_sym_BANG_EQ] = ACTIONS(1418), + [anon_sym_LT] = ACTIONS(1420), + [anon_sym_GT] = ACTIONS(1420), + [anon_sym_LT_EQ] = ACTIONS(1418), + [anon_sym_GT_EQ] = ACTIONS(1418), + [anon_sym_LT_LT] = ACTIONS(1420), + [anon_sym_GT_GT] = ACTIONS(1420), + [anon_sym_PLUS] = ACTIONS(1357), + [anon_sym_DASH] = ACTIONS(1357), + [anon_sym_SLASH] = ACTIONS(1420), + [anon_sym_PERCENT] = ACTIONS(1420), + [anon_sym_DASH_DASH] = ACTIONS(1359), + [anon_sym_PLUS_PLUS] = ACTIONS(1359), + [anon_sym_sizeof] = ACTIONS(1361), + [anon_sym_DOT] = ACTIONS(1418), + [anon_sym_DASH_GT] = ACTIONS(1418), + [sym_number_literal] = ACTIONS(842), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(844), + [sym_false] = ACTIONS(844), + [sym_null] = ACTIONS(844), + [sym_identifier] = ACTIONS(844), + [sym_comment] = ACTIONS(59), }, [970] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2938), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2938), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2938), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2938), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2938), - [sym_preproc_directive] = ACTIONS(2938), - [anon_sym_SEMI] = ACTIONS(2940), - [anon_sym_typedef] = ACTIONS(2938), - [anon_sym_extern] = ACTIONS(2938), - [anon_sym_LBRACE] = ACTIONS(2940), - [anon_sym_RBRACE] = ACTIONS(2940), - [anon_sym_LPAREN2] = ACTIONS(2940), - [anon_sym_STAR] = ACTIONS(2940), - [anon_sym_static] = ACTIONS(2938), - [anon_sym_auto] = ACTIONS(2938), - [anon_sym_register] = ACTIONS(2938), - [anon_sym_inline] = ACTIONS(2938), - [anon_sym_const] = ACTIONS(2938), - [anon_sym_restrict] = ACTIONS(2938), - [anon_sym_volatile] = ACTIONS(2938), - [anon_sym__Atomic] = ACTIONS(2938), - [anon_sym_unsigned] = ACTIONS(2938), - [anon_sym_long] = ACTIONS(2938), - [anon_sym_short] = ACTIONS(2938), - [sym_primitive_type] = ACTIONS(2938), - [anon_sym_enum] = ACTIONS(2938), - [anon_sym_struct] = ACTIONS(2938), - [anon_sym_union] = ACTIONS(2938), - [anon_sym_if] = ACTIONS(2938), - [anon_sym_else] = ACTIONS(2938), - [anon_sym_switch] = ACTIONS(2938), - [anon_sym_case] = ACTIONS(2938), - [anon_sym_default] = ACTIONS(2938), - [anon_sym_while] = ACTIONS(2938), - [anon_sym_do] = ACTIONS(2938), - [anon_sym_for] = ACTIONS(2938), - [anon_sym_return] = ACTIONS(2938), - [anon_sym_break] = ACTIONS(2938), - [anon_sym_continue] = ACTIONS(2938), - [anon_sym_goto] = ACTIONS(2938), - [anon_sym_AMP] = ACTIONS(2940), - [anon_sym_BANG] = ACTIONS(2940), - [anon_sym_TILDE] = ACTIONS(2940), - [anon_sym_PLUS] = ACTIONS(2938), - [anon_sym_DASH] = ACTIONS(2938), - [anon_sym_DASH_DASH] = ACTIONS(2940), - [anon_sym_PLUS_PLUS] = ACTIONS(2940), - [anon_sym_sizeof] = ACTIONS(2938), - [sym_number_literal] = ACTIONS(2940), - [anon_sym_SQUOTE] = ACTIONS(2940), - [anon_sym_DQUOTE] = ACTIONS(2940), - [sym_true] = ACTIONS(2938), - [sym_false] = ACTIONS(2938), - [sym_null] = ACTIONS(2938), - [sym_identifier] = ACTIONS(2938), - [sym_comment] = ACTIONS(37), + [sym__expression] = STATE(1046), + [sym_conditional_expression] = STATE(1046), + [sym_assignment_expression] = STATE(1046), + [sym_pointer_expression] = STATE(1046), + [sym_logical_expression] = STATE(1046), + [sym_bitwise_expression] = STATE(1046), + [sym_equality_expression] = STATE(1046), + [sym_relational_expression] = STATE(1046), + [sym_shift_expression] = STATE(1046), + [sym_math_expression] = STATE(1046), + [sym_cast_expression] = STATE(1046), + [sym_sizeof_expression] = STATE(1046), + [sym_subscript_expression] = STATE(1046), + [sym_call_expression] = STATE(1046), + [sym_field_expression] = STATE(1046), + [sym_compound_literal_expression] = STATE(1046), + [sym_parenthesized_expression] = STATE(1046), + [sym_char_literal] = STATE(1046), + [sym_concatenated_string] = STATE(1046), + [sym_string_literal] = STATE(534), + [anon_sym_LPAREN2] = ACTIONS(1349), + [anon_sym_STAR] = ACTIONS(1351), + [anon_sym_AMP] = ACTIONS(1351), + [anon_sym_BANG] = ACTIONS(1353), + [anon_sym_TILDE] = ACTIONS(1355), + [anon_sym_PLUS] = ACTIONS(1357), + [anon_sym_DASH] = ACTIONS(1357), + [anon_sym_DASH_DASH] = ACTIONS(1359), + [anon_sym_PLUS_PLUS] = ACTIONS(1359), + [anon_sym_sizeof] = ACTIONS(1361), + [sym_number_literal] = ACTIONS(2942), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(2944), + [sym_false] = ACTIONS(2944), + [sym_null] = ACTIONS(2944), + [sym_identifier] = ACTIONS(2944), + [sym_comment] = ACTIONS(59), }, [971] = { - [sym__expression] = STATE(838), - [sym_conditional_expression] = STATE(838), - [sym_assignment_expression] = STATE(838), - [sym_pointer_expression] = STATE(838), - [sym_logical_expression] = STATE(838), - [sym_bitwise_expression] = STATE(838), - [sym_equality_expression] = STATE(838), - [sym_relational_expression] = STATE(838), - [sym_shift_expression] = STATE(838), - [sym_math_expression] = STATE(838), - [sym_cast_expression] = STATE(838), - [sym_sizeof_expression] = STATE(838), - [sym_subscript_expression] = STATE(838), - [sym_call_expression] = STATE(838), - [sym_field_expression] = STATE(838), - [sym_compound_literal_expression] = STATE(838), - [sym_parenthesized_expression] = STATE(838), - [sym_initializer_list] = STATE(839), - [sym_char_literal] = STATE(838), - [sym_concatenated_string] = STATE(838), - [sym_string_literal] = STATE(386), - [anon_sym_LBRACE] = ACTIONS(585), - [anon_sym_LPAREN2] = ACTIONS(918), - [anon_sym_STAR] = ACTIONS(2942), - [anon_sym_LBRACK] = ACTIONS(2701), - [anon_sym_EQ] = ACTIONS(2705), - [anon_sym_COLON] = ACTIONS(2701), - [anon_sym_QMARK] = ACTIONS(2701), - [anon_sym_STAR_EQ] = ACTIONS(2701), - [anon_sym_SLASH_EQ] = ACTIONS(2701), - [anon_sym_PERCENT_EQ] = ACTIONS(2701), - [anon_sym_PLUS_EQ] = ACTIONS(2701), - [anon_sym_DASH_EQ] = ACTIONS(2701), - [anon_sym_LT_LT_EQ] = ACTIONS(2701), - [anon_sym_GT_GT_EQ] = ACTIONS(2701), - [anon_sym_AMP_EQ] = ACTIONS(2701), - [anon_sym_CARET_EQ] = ACTIONS(2701), - [anon_sym_PIPE_EQ] = ACTIONS(2701), - [anon_sym_AMP] = ACTIONS(2942), - [anon_sym_PIPE_PIPE] = ACTIONS(2701), - [anon_sym_AMP_AMP] = ACTIONS(2701), - [anon_sym_BANG] = ACTIONS(2944), - [anon_sym_PIPE] = ACTIONS(2705), - [anon_sym_CARET] = ACTIONS(2705), - [anon_sym_TILDE] = ACTIONS(924), - [anon_sym_EQ_EQ] = ACTIONS(2701), - [anon_sym_BANG_EQ] = ACTIONS(2701), - [anon_sym_LT] = ACTIONS(2705), - [anon_sym_GT] = ACTIONS(2705), - [anon_sym_LT_EQ] = ACTIONS(2701), - [anon_sym_GT_EQ] = ACTIONS(2701), - [anon_sym_LT_LT] = ACTIONS(2705), - [anon_sym_GT_GT] = ACTIONS(2705), - [anon_sym_PLUS] = ACTIONS(926), - [anon_sym_DASH] = ACTIONS(926), - [anon_sym_SLASH] = ACTIONS(2705), - [anon_sym_PERCENT] = ACTIONS(2705), - [anon_sym_DASH_DASH] = ACTIONS(928), - [anon_sym_PLUS_PLUS] = ACTIONS(928), - [anon_sym_sizeof] = ACTIONS(930), - [anon_sym_DOT] = ACTIONS(2701), - [anon_sym_DASH_GT] = ACTIONS(2701), - [sym_number_literal] = ACTIONS(2206), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(2208), - [sym_false] = ACTIONS(2208), - [sym_null] = ACTIONS(2208), - [sym_identifier] = ACTIONS(2208), - [sym_comment] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(2946), + [anon_sym_COMMA] = ACTIONS(2946), + [anon_sym_RPAREN] = ACTIONS(2946), + [anon_sym_LPAREN2] = ACTIONS(2946), + [anon_sym_LBRACK] = ACTIONS(2946), + [anon_sym_COLON] = ACTIONS(2946), + [sym_comment] = ACTIONS(59), }, [972] = { - [sym__expression] = STATE(1050), - [sym_conditional_expression] = STATE(1050), - [sym_assignment_expression] = STATE(1050), - [sym_pointer_expression] = STATE(1050), - [sym_logical_expression] = STATE(1050), - [sym_bitwise_expression] = STATE(1050), - [sym_equality_expression] = STATE(1050), - [sym_relational_expression] = STATE(1050), - [sym_shift_expression] = STATE(1050), - [sym_math_expression] = STATE(1050), - [sym_cast_expression] = STATE(1050), - [sym_sizeof_expression] = STATE(1050), - [sym_subscript_expression] = STATE(1050), - [sym_call_expression] = STATE(1050), - [sym_field_expression] = STATE(1050), - [sym_compound_literal_expression] = STATE(1050), - [sym_parenthesized_expression] = STATE(1050), - [sym_char_literal] = STATE(1050), - [sym_concatenated_string] = STATE(1050), - [sym_string_literal] = STATE(386), - [anon_sym_LPAREN2] = ACTIONS(918), - [anon_sym_STAR] = ACTIONS(920), - [anon_sym_AMP] = ACTIONS(920), - [anon_sym_BANG] = ACTIONS(922), - [anon_sym_TILDE] = ACTIONS(924), - [anon_sym_PLUS] = ACTIONS(926), - [anon_sym_DASH] = ACTIONS(926), - [anon_sym_DASH_DASH] = ACTIONS(928), - [anon_sym_PLUS_PLUS] = ACTIONS(928), - [anon_sym_sizeof] = ACTIONS(930), - [sym_number_literal] = ACTIONS(2946), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(2948), - [sym_false] = ACTIONS(2948), - [sym_null] = ACTIONS(2948), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2948), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2950), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2950), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2950), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2950), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2950), + [anon_sym_extern] = ACTIONS(2948), + [anon_sym_RBRACE] = ACTIONS(2950), + [anon_sym_static] = ACTIONS(2948), + [anon_sym_auto] = ACTIONS(2948), + [anon_sym_register] = ACTIONS(2948), + [anon_sym_inline] = ACTIONS(2948), + [anon_sym_const] = ACTIONS(2948), + [anon_sym_restrict] = ACTIONS(2948), + [anon_sym_volatile] = ACTIONS(2948), + [anon_sym__Atomic] = ACTIONS(2948), + [anon_sym_unsigned] = ACTIONS(2948), + [anon_sym_long] = ACTIONS(2948), + [anon_sym_short] = ACTIONS(2948), + [sym_primitive_type] = ACTIONS(2948), + [anon_sym_enum] = ACTIONS(2948), + [anon_sym_struct] = ACTIONS(2948), + [anon_sym_union] = ACTIONS(2948), [sym_identifier] = ACTIONS(2948), - [sym_comment] = ACTIONS(37), + [sym_comment] = ACTIONS(59), }, [973] = { - [sym_compound_statement] = STATE(1051), - [sym_labeled_statement] = STATE(1051), - [sym_expression_statement] = STATE(1051), - [sym_if_statement] = STATE(1051), - [sym_switch_statement] = STATE(1051), - [sym_case_statement] = STATE(1051), - [sym_while_statement] = STATE(1051), - [sym_do_statement] = STATE(1051), - [sym_for_statement] = STATE(1051), - [sym_return_statement] = STATE(1051), - [sym_break_statement] = STATE(1051), - [sym_continue_statement] = STATE(1051), - [sym_goto_statement] = STATE(1051), - [sym__expression] = STATE(228), - [sym_comma_expression] = STATE(229), - [sym_conditional_expression] = STATE(228), - [sym_assignment_expression] = STATE(228), - [sym_pointer_expression] = STATE(228), - [sym_logical_expression] = STATE(228), - [sym_bitwise_expression] = STATE(228), - [sym_equality_expression] = STATE(228), - [sym_relational_expression] = STATE(228), - [sym_shift_expression] = STATE(228), - [sym_math_expression] = STATE(228), - [sym_cast_expression] = STATE(228), - [sym_sizeof_expression] = STATE(228), - [sym_subscript_expression] = STATE(228), - [sym_call_expression] = STATE(228), - [sym_field_expression] = STATE(228), - [sym_compound_literal_expression] = STATE(228), - [sym_parenthesized_expression] = STATE(228), - [sym_char_literal] = STATE(228), - [sym_concatenated_string] = STATE(228), - [sym_string_literal] = STATE(230), - [anon_sym_SEMI] = ACTIONS(503), - [anon_sym_LBRACE] = ACTIONS(229), - [anon_sym_LPAREN2] = ACTIONS(507), - [anon_sym_STAR] = ACTIONS(509), - [anon_sym_if] = ACTIONS(2286), - [anon_sym_switch] = ACTIONS(2288), - [anon_sym_case] = ACTIONS(2290), - [anon_sym_default] = ACTIONS(2292), - [anon_sym_while] = ACTIONS(2294), - [anon_sym_do] = ACTIONS(948), - [anon_sym_for] = ACTIONS(2296), - [anon_sym_return] = ACTIONS(525), - [anon_sym_break] = ACTIONS(527), - [anon_sym_continue] = ACTIONS(529), - [anon_sym_goto] = ACTIONS(531), - [anon_sym_AMP] = ACTIONS(509), - [anon_sym_BANG] = ACTIONS(533), - [anon_sym_TILDE] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DASH] = ACTIONS(537), - [anon_sym_DASH_DASH] = ACTIONS(539), - [anon_sym_PLUS_PLUS] = ACTIONS(539), - [anon_sym_sizeof] = ACTIONS(541), - [sym_number_literal] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(547), - [sym_false] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [sym_identifier] = ACTIONS(2298), - [sym_comment] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(2475), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2477), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2477), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2477), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2477), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2477), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2477), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2477), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2477), + [sym_preproc_directive] = ACTIONS(2477), + [anon_sym_typedef] = ACTIONS(2477), + [anon_sym_extern] = ACTIONS(2477), + [anon_sym_LBRACE] = ACTIONS(2475), + [anon_sym_LPAREN2] = ACTIONS(2475), + [anon_sym_STAR] = ACTIONS(2475), + [anon_sym_static] = ACTIONS(2477), + [anon_sym_auto] = ACTIONS(2477), + [anon_sym_register] = ACTIONS(2477), + [anon_sym_inline] = ACTIONS(2477), + [anon_sym_const] = ACTIONS(2477), + [anon_sym_restrict] = ACTIONS(2477), + [anon_sym_volatile] = ACTIONS(2477), + [anon_sym__Atomic] = ACTIONS(2477), + [anon_sym_unsigned] = ACTIONS(2477), + [anon_sym_long] = ACTIONS(2477), + [anon_sym_short] = ACTIONS(2477), + [sym_primitive_type] = ACTIONS(2477), + [anon_sym_enum] = ACTIONS(2477), + [anon_sym_struct] = ACTIONS(2477), + [anon_sym_union] = ACTIONS(2477), + [anon_sym_if] = ACTIONS(2477), + [anon_sym_switch] = ACTIONS(2477), + [anon_sym_case] = ACTIONS(2477), + [anon_sym_default] = ACTIONS(2477), + [anon_sym_while] = ACTIONS(2477), + [anon_sym_do] = ACTIONS(2477), + [anon_sym_for] = ACTIONS(2477), + [anon_sym_return] = ACTIONS(2477), + [anon_sym_break] = ACTIONS(2477), + [anon_sym_continue] = ACTIONS(2477), + [anon_sym_goto] = ACTIONS(2477), + [anon_sym_AMP] = ACTIONS(2475), + [anon_sym_BANG] = ACTIONS(2475), + [anon_sym_TILDE] = ACTIONS(2475), + [anon_sym_PLUS] = ACTIONS(2477), + [anon_sym_DASH] = ACTIONS(2477), + [anon_sym_DASH_DASH] = ACTIONS(2475), + [anon_sym_PLUS_PLUS] = ACTIONS(2475), + [anon_sym_sizeof] = ACTIONS(2477), + [sym_number_literal] = ACTIONS(2475), + [anon_sym_SQUOTE] = ACTIONS(2475), + [anon_sym_DQUOTE] = ACTIONS(2475), + [sym_true] = ACTIONS(2477), + [sym_false] = ACTIONS(2477), + [sym_null] = ACTIONS(2477), + [sym_identifier] = ACTIONS(2477), + [sym_comment] = ACTIONS(59), }, [974] = { - [sym_compound_statement] = STATE(630), - [sym_labeled_statement] = STATE(630), - [sym_expression_statement] = STATE(630), - [sym_if_statement] = STATE(630), - [sym_switch_statement] = STATE(630), - [sym_case_statement] = STATE(630), - [sym_while_statement] = STATE(630), - [sym_do_statement] = STATE(630), - [sym_for_statement] = STATE(630), - [sym_return_statement] = STATE(630), - [sym_break_statement] = STATE(630), - [sym_continue_statement] = STATE(630), - [sym_goto_statement] = STATE(630), - [sym__expression] = STATE(228), - [sym_comma_expression] = STATE(229), - [sym_conditional_expression] = STATE(228), - [sym_assignment_expression] = STATE(228), - [sym_pointer_expression] = STATE(228), - [sym_logical_expression] = STATE(228), - [sym_bitwise_expression] = STATE(228), - [sym_equality_expression] = STATE(228), - [sym_relational_expression] = STATE(228), - [sym_shift_expression] = STATE(228), - [sym_math_expression] = STATE(228), - [sym_cast_expression] = STATE(228), - [sym_sizeof_expression] = STATE(228), - [sym_subscript_expression] = STATE(228), - [sym_call_expression] = STATE(228), - [sym_field_expression] = STATE(228), - [sym_compound_literal_expression] = STATE(228), - [sym_parenthesized_expression] = STATE(228), - [sym_char_literal] = STATE(228), - [sym_concatenated_string] = STATE(228), - [sym_string_literal] = STATE(230), - [anon_sym_SEMI] = ACTIONS(503), - [anon_sym_LBRACE] = ACTIONS(229), - [anon_sym_LPAREN2] = ACTIONS(507), - [anon_sym_STAR] = ACTIONS(509), - [anon_sym_if] = ACTIONS(2286), - [anon_sym_switch] = ACTIONS(2288), - [anon_sym_case] = ACTIONS(2290), - [anon_sym_default] = ACTIONS(2292), - [anon_sym_while] = ACTIONS(2294), - [anon_sym_do] = ACTIONS(948), - [anon_sym_for] = ACTIONS(2296), - [anon_sym_return] = ACTIONS(525), - [anon_sym_break] = ACTIONS(527), - [anon_sym_continue] = ACTIONS(529), - [anon_sym_goto] = ACTIONS(531), - [anon_sym_AMP] = ACTIONS(509), - [anon_sym_BANG] = ACTIONS(533), - [anon_sym_TILDE] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DASH] = ACTIONS(537), - [anon_sym_DASH_DASH] = ACTIONS(539), - [anon_sym_PLUS_PLUS] = ACTIONS(539), - [anon_sym_sizeof] = ACTIONS(541), - [sym_number_literal] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(547), - [sym_false] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [sym_identifier] = ACTIONS(2298), - [sym_comment] = ACTIONS(37), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2952), + [sym_comment] = ACTIONS(59), }, [975] = { - [sym_argument_list] = STATE(430), - [anon_sym_LPAREN2] = ACTIONS(1012), - [anon_sym_STAR] = ACTIONS(1497), - [anon_sym_LBRACK] = ACTIONS(1016), - [anon_sym_EQ] = ACTIONS(1499), - [anon_sym_COLON] = ACTIONS(2950), - [anon_sym_QMARK] = ACTIONS(1503), - [anon_sym_STAR_EQ] = ACTIONS(1505), - [anon_sym_SLASH_EQ] = ACTIONS(1505), - [anon_sym_PERCENT_EQ] = ACTIONS(1505), - [anon_sym_PLUS_EQ] = ACTIONS(1505), - [anon_sym_DASH_EQ] = ACTIONS(1505), - [anon_sym_LT_LT_EQ] = ACTIONS(1505), - [anon_sym_GT_GT_EQ] = ACTIONS(1505), - [anon_sym_AMP_EQ] = ACTIONS(1505), - [anon_sym_CARET_EQ] = ACTIONS(1505), - [anon_sym_PIPE_EQ] = ACTIONS(1505), - [anon_sym_AMP] = ACTIONS(1507), - [anon_sym_PIPE_PIPE] = ACTIONS(1509), - [anon_sym_AMP_AMP] = ACTIONS(1511), - [anon_sym_PIPE] = ACTIONS(1513), - [anon_sym_CARET] = ACTIONS(1515), - [anon_sym_EQ_EQ] = ACTIONS(1517), - [anon_sym_BANG_EQ] = ACTIONS(1517), - [anon_sym_LT] = ACTIONS(1519), - [anon_sym_GT] = ACTIONS(1519), - [anon_sym_LT_EQ] = ACTIONS(1521), - [anon_sym_GT_EQ] = ACTIONS(1521), - [anon_sym_LT_LT] = ACTIONS(1523), - [anon_sym_GT_GT] = ACTIONS(1523), - [anon_sym_PLUS] = ACTIONS(1525), - [anon_sym_DASH] = ACTIONS(1525), - [anon_sym_SLASH] = ACTIONS(1497), - [anon_sym_PERCENT] = ACTIONS(1497), - [anon_sym_DASH_DASH] = ACTIONS(1044), - [anon_sym_PLUS_PLUS] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1046), - [anon_sym_DASH_GT] = ACTIONS(1046), - [sym_comment] = ACTIONS(37), + [sym_preproc_include] = STATE(923), + [sym_preproc_def] = STATE(923), + [sym_preproc_function_def] = STATE(923), + [sym_preproc_call] = STATE(923), + [sym_preproc_if_in_compound_statement] = STATE(923), + [sym_preproc_ifdef_in_compound_statement] = STATE(923), + [sym_preproc_else_in_compound_statement] = STATE(1048), + [sym_preproc_elif_in_compound_statement] = STATE(1048), + [sym_declaration] = STATE(923), + [sym_type_definition] = STATE(923), + [sym__declaration_specifiers] = STATE(755), + [sym_compound_statement] = STATE(923), + [sym_storage_class_specifier] = STATE(30), + [sym_type_qualifier] = STATE(30), + [sym__type_specifier] = STATE(25), + [sym_sized_type_specifier] = STATE(25), + [sym_enum_specifier] = STATE(25), + [sym_struct_specifier] = STATE(25), + [sym_union_specifier] = STATE(25), + [sym_labeled_statement] = STATE(923), + [sym_expression_statement] = STATE(923), + [sym_if_statement] = STATE(923), + [sym_switch_statement] = STATE(923), + [sym_case_statement] = STATE(923), + [sym_while_statement] = STATE(923), + [sym_do_statement] = STATE(923), + [sym_for_statement] = STATE(923), + [sym_return_statement] = STATE(923), + [sym_break_statement] = STATE(923), + [sym_continue_statement] = STATE(923), + [sym_goto_statement] = STATE(923), + [sym__expression] = STATE(756), + [sym_comma_expression] = STATE(757), + [sym_conditional_expression] = STATE(756), + [sym_assignment_expression] = STATE(756), + [sym_pointer_expression] = STATE(756), + [sym_logical_expression] = STATE(756), + [sym_bitwise_expression] = STATE(756), + [sym_equality_expression] = STATE(756), + [sym_relational_expression] = STATE(756), + [sym_shift_expression] = STATE(756), + [sym_math_expression] = STATE(756), + [sym_cast_expression] = STATE(756), + [sym_sizeof_expression] = STATE(756), + [sym_subscript_expression] = STATE(756), + [sym_call_expression] = STATE(756), + [sym_field_expression] = STATE(756), + [sym_compound_literal_expression] = STATE(756), + [sym_parenthesized_expression] = STATE(756), + [sym_char_literal] = STATE(756), + [sym_concatenated_string] = STATE(756), + [sym_string_literal] = STATE(374), + [sym__empty_declaration] = STATE(923), + [sym_macro_type_specifier] = STATE(25), + [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(923), + [aux_sym__declaration_specifiers_repeat1] = STATE(30), + [aux_sym_sized_type_specifier_repeat1] = STATE(31), + [anon_sym_SEMI] = ACTIONS(1940), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(251), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(253), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1942), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2954), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1946), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1946), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1948), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1950), + [sym_preproc_directive] = ACTIONS(265), + [anon_sym_typedef] = ACTIONS(267), + [anon_sym_extern] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_LPAREN2] = ACTIONS(936), + [anon_sym_STAR] = ACTIONS(938), + [anon_sym_static] = ACTIONS(25), + [anon_sym_auto] = ACTIONS(25), + [anon_sym_register] = ACTIONS(25), + [anon_sym_inline] = ACTIONS(25), + [anon_sym_const] = ACTIONS(27), + [anon_sym_restrict] = ACTIONS(27), + [anon_sym_volatile] = ACTIONS(27), + [anon_sym__Atomic] = ACTIONS(27), + [anon_sym_unsigned] = ACTIONS(29), + [anon_sym_long] = ACTIONS(29), + [anon_sym_short] = ACTIONS(29), + [sym_primitive_type] = ACTIONS(31), + [anon_sym_enum] = ACTIONS(33), + [anon_sym_struct] = ACTIONS(35), + [anon_sym_union] = ACTIONS(37), + [anon_sym_if] = ACTIONS(1952), + [anon_sym_switch] = ACTIONS(1954), + [anon_sym_case] = ACTIONS(1956), + [anon_sym_default] = ACTIONS(1958), + [anon_sym_while] = ACTIONS(1960), + [anon_sym_do] = ACTIONS(1962), + [anon_sym_for] = ACTIONS(1964), + [anon_sym_return] = ACTIONS(1966), + [anon_sym_break] = ACTIONS(1968), + [anon_sym_continue] = ACTIONS(1970), + [anon_sym_goto] = ACTIONS(1972), + [anon_sym_AMP] = ACTIONS(938), + [anon_sym_BANG] = ACTIONS(962), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_DASH_DASH] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(968), + [anon_sym_sizeof] = ACTIONS(970), + [sym_number_literal] = ACTIONS(1974), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(1976), + [sym_false] = ACTIONS(1976), + [sym_null] = ACTIONS(1976), + [sym_identifier] = ACTIONS(1978), + [sym_comment] = ACTIONS(59), }, [976] = { - [sym_declaration] = STATE(649), - [sym_type_definition] = STATE(649), - [sym__declaration_specifiers] = STATE(650), - [sym_compound_statement] = STATE(649), - [sym_storage_class_specifier] = STATE(87), - [sym_type_qualifier] = STATE(87), - [sym__type_specifier] = STATE(86), - [sym_sized_type_specifier] = STATE(86), - [sym_enum_specifier] = STATE(86), - [sym_struct_specifier] = STATE(86), - [sym_union_specifier] = STATE(86), - [sym_labeled_statement] = STATE(649), - [sym_expression_statement] = STATE(649), - [sym_if_statement] = STATE(649), - [sym_switch_statement] = STATE(649), - [sym_case_statement] = STATE(649), - [sym_while_statement] = STATE(649), - [sym_do_statement] = STATE(649), - [sym_for_statement] = STATE(649), - [sym_return_statement] = STATE(649), - [sym_break_statement] = STATE(649), - [sym_continue_statement] = STATE(649), - [sym_goto_statement] = STATE(649), - [sym__expression] = STATE(228), - [sym_comma_expression] = STATE(229), - [sym_conditional_expression] = STATE(228), - [sym_assignment_expression] = STATE(228), - [sym_pointer_expression] = STATE(228), - [sym_logical_expression] = STATE(228), - [sym_bitwise_expression] = STATE(228), - [sym_equality_expression] = STATE(228), - [sym_relational_expression] = STATE(228), - [sym_shift_expression] = STATE(228), - [sym_math_expression] = STATE(228), - [sym_cast_expression] = STATE(228), - [sym_sizeof_expression] = STATE(228), - [sym_subscript_expression] = STATE(228), - [sym_call_expression] = STATE(228), - [sym_field_expression] = STATE(228), - [sym_compound_literal_expression] = STATE(228), - [sym_parenthesized_expression] = STATE(228), - [sym_char_literal] = STATE(228), - [sym_concatenated_string] = STATE(228), - [sym_string_literal] = STATE(230), - [sym_macro_type_specifier] = STATE(86), - [aux_sym__declaration_specifiers_repeat1] = STATE(87), - [aux_sym_sized_type_specifier_repeat1] = STATE(88), - [anon_sym_SEMI] = ACTIONS(503), - [anon_sym_typedef] = ACTIONS(17), - [anon_sym_extern] = ACTIONS(21), - [anon_sym_LBRACE] = ACTIONS(229), - [anon_sym_LPAREN2] = ACTIONS(507), - [anon_sym_STAR] = ACTIONS(509), - [anon_sym_static] = ACTIONS(21), - [anon_sym_auto] = ACTIONS(21), - [anon_sym_register] = ACTIONS(21), - [anon_sym_inline] = ACTIONS(21), - [anon_sym_const] = ACTIONS(23), - [anon_sym_restrict] = ACTIONS(23), - [anon_sym_volatile] = ACTIONS(23), - [anon_sym__Atomic] = ACTIONS(23), - [anon_sym_unsigned] = ACTIONS(167), - [anon_sym_long] = ACTIONS(167), - [anon_sym_short] = ACTIONS(167), - [sym_primitive_type] = ACTIONS(169), - [anon_sym_enum] = ACTIONS(29), - [anon_sym_struct] = ACTIONS(31), - [anon_sym_union] = ACTIONS(33), - [anon_sym_if] = ACTIONS(2286), - [anon_sym_switch] = ACTIONS(2288), - [anon_sym_case] = ACTIONS(2290), - [anon_sym_default] = ACTIONS(2292), - [anon_sym_while] = ACTIONS(2294), - [anon_sym_do] = ACTIONS(948), - [anon_sym_for] = ACTIONS(2296), - [anon_sym_return] = ACTIONS(525), - [anon_sym_break] = ACTIONS(527), - [anon_sym_continue] = ACTIONS(529), - [anon_sym_goto] = ACTIONS(531), - [anon_sym_AMP] = ACTIONS(509), - [anon_sym_BANG] = ACTIONS(533), - [anon_sym_TILDE] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DASH] = ACTIONS(537), - [anon_sym_DASH_DASH] = ACTIONS(539), - [anon_sym_PLUS_PLUS] = ACTIONS(539), - [anon_sym_sizeof] = ACTIONS(541), - [sym_number_literal] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(547), - [sym_false] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [sym_identifier] = ACTIONS(2952), - [sym_comment] = ACTIONS(37), - }, - [977] = { - [sym_compound_statement] = STATE(651), - [sym_labeled_statement] = STATE(651), - [sym_expression_statement] = STATE(651), - [sym_if_statement] = STATE(651), - [sym_switch_statement] = STATE(651), - [sym_case_statement] = STATE(651), - [sym_while_statement] = STATE(651), - [sym_do_statement] = STATE(651), - [sym_for_statement] = STATE(651), - [sym_return_statement] = STATE(651), - [sym_break_statement] = STATE(651), - [sym_continue_statement] = STATE(651), - [sym_goto_statement] = STATE(651), - [sym__expression] = STATE(228), - [sym_comma_expression] = STATE(229), - [sym_conditional_expression] = STATE(228), - [sym_assignment_expression] = STATE(228), - [sym_pointer_expression] = STATE(228), - [sym_logical_expression] = STATE(228), - [sym_bitwise_expression] = STATE(228), - [sym_equality_expression] = STATE(228), - [sym_relational_expression] = STATE(228), - [sym_shift_expression] = STATE(228), - [sym_math_expression] = STATE(228), - [sym_cast_expression] = STATE(228), - [sym_sizeof_expression] = STATE(228), - [sym_subscript_expression] = STATE(228), - [sym_call_expression] = STATE(228), - [sym_field_expression] = STATE(228), - [sym_compound_literal_expression] = STATE(228), - [sym_parenthesized_expression] = STATE(228), - [sym_char_literal] = STATE(228), - [sym_concatenated_string] = STATE(228), - [sym_string_literal] = STATE(230), - [anon_sym_SEMI] = ACTIONS(503), - [anon_sym_LBRACE] = ACTIONS(229), - [anon_sym_LPAREN2] = ACTIONS(507), - [anon_sym_STAR] = ACTIONS(509), - [anon_sym_if] = ACTIONS(2286), - [anon_sym_switch] = ACTIONS(2288), - [anon_sym_case] = ACTIONS(2290), - [anon_sym_default] = ACTIONS(2292), - [anon_sym_while] = ACTIONS(2294), - [anon_sym_do] = ACTIONS(948), - [anon_sym_for] = ACTIONS(2296), - [anon_sym_return] = ACTIONS(525), - [anon_sym_break] = ACTIONS(527), - [anon_sym_continue] = ACTIONS(529), - [anon_sym_goto] = ACTIONS(531), - [anon_sym_AMP] = ACTIONS(509), - [anon_sym_BANG] = ACTIONS(533), - [anon_sym_TILDE] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DASH] = ACTIONS(537), - [anon_sym_DASH_DASH] = ACTIONS(539), - [anon_sym_PLUS_PLUS] = ACTIONS(539), - [anon_sym_sizeof] = ACTIONS(541), - [sym_number_literal] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(547), - [sym_false] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [sym_identifier] = ACTIONS(2298), - [sym_comment] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(2549), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2551), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2551), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2551), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2551), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2551), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2551), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2551), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2551), + [sym_preproc_directive] = ACTIONS(2551), + [anon_sym_typedef] = ACTIONS(2551), + [anon_sym_extern] = ACTIONS(2551), + [anon_sym_LBRACE] = ACTIONS(2549), + [anon_sym_LPAREN2] = ACTIONS(2549), + [anon_sym_STAR] = ACTIONS(2549), + [anon_sym_static] = ACTIONS(2551), + [anon_sym_auto] = ACTIONS(2551), + [anon_sym_register] = ACTIONS(2551), + [anon_sym_inline] = ACTIONS(2551), + [anon_sym_const] = ACTIONS(2551), + [anon_sym_restrict] = ACTIONS(2551), + [anon_sym_volatile] = ACTIONS(2551), + [anon_sym__Atomic] = ACTIONS(2551), + [anon_sym_unsigned] = ACTIONS(2551), + [anon_sym_long] = ACTIONS(2551), + [anon_sym_short] = ACTIONS(2551), + [sym_primitive_type] = ACTIONS(2551), + [anon_sym_enum] = ACTIONS(2551), + [anon_sym_struct] = ACTIONS(2551), + [anon_sym_union] = ACTIONS(2551), + [anon_sym_if] = ACTIONS(2551), + [anon_sym_switch] = ACTIONS(2551), + [anon_sym_case] = ACTIONS(2551), + [anon_sym_default] = ACTIONS(2551), + [anon_sym_while] = ACTIONS(2551), + [anon_sym_do] = ACTIONS(2551), + [anon_sym_for] = ACTIONS(2551), + [anon_sym_return] = ACTIONS(2551), + [anon_sym_break] = ACTIONS(2551), + [anon_sym_continue] = ACTIONS(2551), + [anon_sym_goto] = ACTIONS(2551), + [anon_sym_AMP] = ACTIONS(2549), + [anon_sym_BANG] = ACTIONS(2549), + [anon_sym_TILDE] = ACTIONS(2549), + [anon_sym_PLUS] = ACTIONS(2551), + [anon_sym_DASH] = ACTIONS(2551), + [anon_sym_DASH_DASH] = ACTIONS(2549), + [anon_sym_PLUS_PLUS] = ACTIONS(2549), + [anon_sym_sizeof] = ACTIONS(2551), + [sym_number_literal] = ACTIONS(2549), + [anon_sym_SQUOTE] = ACTIONS(2549), + [anon_sym_DQUOTE] = ACTIONS(2549), + [sym_true] = ACTIONS(2551), + [sym_false] = ACTIONS(2551), + [sym_null] = ACTIONS(2551), + [sym_identifier] = ACTIONS(2551), + [sym_comment] = ACTIONS(59), + }, + [977] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2956), + [sym_comment] = ACTIONS(59), }, [978] = { - [sym_declaration] = STATE(1054), - [sym__declaration_specifiers] = STATE(650), - [sym_storage_class_specifier] = STATE(87), - [sym_type_qualifier] = STATE(87), - [sym__type_specifier] = STATE(86), - [sym_sized_type_specifier] = STATE(86), - [sym_enum_specifier] = STATE(86), - [sym_struct_specifier] = STATE(86), - [sym_union_specifier] = STATE(86), - [sym__expression] = STATE(1055), - [sym_conditional_expression] = STATE(1055), - [sym_assignment_expression] = STATE(1055), - [sym_pointer_expression] = STATE(1055), - [sym_logical_expression] = STATE(1055), - [sym_bitwise_expression] = STATE(1055), - [sym_equality_expression] = STATE(1055), - [sym_relational_expression] = STATE(1055), - [sym_shift_expression] = STATE(1055), - [sym_math_expression] = STATE(1055), - [sym_cast_expression] = STATE(1055), - [sym_sizeof_expression] = STATE(1055), - [sym_subscript_expression] = STATE(1055), - [sym_call_expression] = STATE(1055), - [sym_field_expression] = STATE(1055), - [sym_compound_literal_expression] = STATE(1055), - [sym_parenthesized_expression] = STATE(1055), - [sym_char_literal] = STATE(1055), - [sym_concatenated_string] = STATE(1055), - [sym_string_literal] = STATE(342), - [sym_macro_type_specifier] = STATE(86), - [aux_sym__declaration_specifiers_repeat1] = STATE(87), - [aux_sym_sized_type_specifier_repeat1] = STATE(88), - [anon_sym_SEMI] = ACTIONS(2954), - [anon_sym_extern] = ACTIONS(21), - [anon_sym_LPAREN2] = ACTIONS(780), - [anon_sym_STAR] = ACTIONS(782), - [anon_sym_static] = ACTIONS(21), - [anon_sym_auto] = ACTIONS(21), - [anon_sym_register] = ACTIONS(21), - [anon_sym_inline] = ACTIONS(21), - [anon_sym_const] = ACTIONS(23), - [anon_sym_restrict] = ACTIONS(23), - [anon_sym_volatile] = ACTIONS(23), - [anon_sym__Atomic] = ACTIONS(23), - [anon_sym_unsigned] = ACTIONS(167), - [anon_sym_long] = ACTIONS(167), - [anon_sym_short] = ACTIONS(167), - [sym_primitive_type] = ACTIONS(169), - [anon_sym_enum] = ACTIONS(29), - [anon_sym_struct] = ACTIONS(31), - [anon_sym_union] = ACTIONS(33), - [anon_sym_AMP] = ACTIONS(782), - [anon_sym_BANG] = ACTIONS(784), - [anon_sym_TILDE] = ACTIONS(786), - [anon_sym_PLUS] = ACTIONS(788), - [anon_sym_DASH] = ACTIONS(788), - [anon_sym_DASH_DASH] = ACTIONS(790), - [anon_sym_PLUS_PLUS] = ACTIONS(790), - [anon_sym_sizeof] = ACTIONS(792), - [sym_number_literal] = ACTIONS(2956), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(2958), - [sym_false] = ACTIONS(2958), - [sym_null] = ACTIONS(2958), - [sym_identifier] = ACTIONS(1547), - [sym_comment] = ACTIONS(37), + [sym_preproc_include] = STATE(923), + [sym_preproc_def] = STATE(923), + [sym_preproc_function_def] = STATE(923), + [sym_preproc_call] = STATE(923), + [sym_preproc_if_in_compound_statement] = STATE(923), + [sym_preproc_ifdef_in_compound_statement] = STATE(923), + [sym_preproc_else_in_compound_statement] = STATE(1050), + [sym_preproc_elif_in_compound_statement] = STATE(1050), + [sym_declaration] = STATE(923), + [sym_type_definition] = STATE(923), + [sym__declaration_specifiers] = STATE(755), + [sym_compound_statement] = STATE(923), + [sym_storage_class_specifier] = STATE(30), + [sym_type_qualifier] = STATE(30), + [sym__type_specifier] = STATE(25), + [sym_sized_type_specifier] = STATE(25), + [sym_enum_specifier] = STATE(25), + [sym_struct_specifier] = STATE(25), + [sym_union_specifier] = STATE(25), + [sym_labeled_statement] = STATE(923), + [sym_expression_statement] = STATE(923), + [sym_if_statement] = STATE(923), + [sym_switch_statement] = STATE(923), + [sym_case_statement] = STATE(923), + [sym_while_statement] = STATE(923), + [sym_do_statement] = STATE(923), + [sym_for_statement] = STATE(923), + [sym_return_statement] = STATE(923), + [sym_break_statement] = STATE(923), + [sym_continue_statement] = STATE(923), + [sym_goto_statement] = STATE(923), + [sym__expression] = STATE(756), + [sym_comma_expression] = STATE(757), + [sym_conditional_expression] = STATE(756), + [sym_assignment_expression] = STATE(756), + [sym_pointer_expression] = STATE(756), + [sym_logical_expression] = STATE(756), + [sym_bitwise_expression] = STATE(756), + [sym_equality_expression] = STATE(756), + [sym_relational_expression] = STATE(756), + [sym_shift_expression] = STATE(756), + [sym_math_expression] = STATE(756), + [sym_cast_expression] = STATE(756), + [sym_sizeof_expression] = STATE(756), + [sym_subscript_expression] = STATE(756), + [sym_call_expression] = STATE(756), + [sym_field_expression] = STATE(756), + [sym_compound_literal_expression] = STATE(756), + [sym_parenthesized_expression] = STATE(756), + [sym_char_literal] = STATE(756), + [sym_concatenated_string] = STATE(756), + [sym_string_literal] = STATE(374), + [sym__empty_declaration] = STATE(923), + [sym_macro_type_specifier] = STATE(25), + [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(923), + [aux_sym__declaration_specifiers_repeat1] = STATE(30), + [aux_sym_sized_type_specifier_repeat1] = STATE(31), + [anon_sym_SEMI] = ACTIONS(1940), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(251), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(253), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1942), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2958), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1946), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1946), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1948), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1950), + [sym_preproc_directive] = ACTIONS(265), + [anon_sym_typedef] = ACTIONS(267), + [anon_sym_extern] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_LPAREN2] = ACTIONS(936), + [anon_sym_STAR] = ACTIONS(938), + [anon_sym_static] = ACTIONS(25), + [anon_sym_auto] = ACTIONS(25), + [anon_sym_register] = ACTIONS(25), + [anon_sym_inline] = ACTIONS(25), + [anon_sym_const] = ACTIONS(27), + [anon_sym_restrict] = ACTIONS(27), + [anon_sym_volatile] = ACTIONS(27), + [anon_sym__Atomic] = ACTIONS(27), + [anon_sym_unsigned] = ACTIONS(29), + [anon_sym_long] = ACTIONS(29), + [anon_sym_short] = ACTIONS(29), + [sym_primitive_type] = ACTIONS(31), + [anon_sym_enum] = ACTIONS(33), + [anon_sym_struct] = ACTIONS(35), + [anon_sym_union] = ACTIONS(37), + [anon_sym_if] = ACTIONS(1952), + [anon_sym_switch] = ACTIONS(1954), + [anon_sym_case] = ACTIONS(1956), + [anon_sym_default] = ACTIONS(1958), + [anon_sym_while] = ACTIONS(1960), + [anon_sym_do] = ACTIONS(1962), + [anon_sym_for] = ACTIONS(1964), + [anon_sym_return] = ACTIONS(1966), + [anon_sym_break] = ACTIONS(1968), + [anon_sym_continue] = ACTIONS(1970), + [anon_sym_goto] = ACTIONS(1972), + [anon_sym_AMP] = ACTIONS(938), + [anon_sym_BANG] = ACTIONS(962), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_DASH_DASH] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(968), + [anon_sym_sizeof] = ACTIONS(970), + [sym_number_literal] = ACTIONS(1974), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(1976), + [sym_false] = ACTIONS(1976), + [sym_null] = ACTIONS(1976), + [sym_identifier] = ACTIONS(1978), + [sym_comment] = ACTIONS(59), }, [979] = { - [sym_compound_statement] = STATE(668), - [sym_labeled_statement] = STATE(668), - [sym_expression_statement] = STATE(668), - [sym_if_statement] = STATE(668), - [sym_switch_statement] = STATE(668), - [sym_case_statement] = STATE(668), - [sym_while_statement] = STATE(668), - [sym_do_statement] = STATE(668), - [sym_for_statement] = STATE(668), - [sym_return_statement] = STATE(668), - [sym_break_statement] = STATE(668), - [sym_continue_statement] = STATE(668), - [sym_goto_statement] = STATE(668), - [sym__expression] = STATE(228), - [sym_comma_expression] = STATE(229), - [sym_conditional_expression] = STATE(228), - [sym_assignment_expression] = STATE(228), - [sym_pointer_expression] = STATE(228), - [sym_logical_expression] = STATE(228), - [sym_bitwise_expression] = STATE(228), - [sym_equality_expression] = STATE(228), - [sym_relational_expression] = STATE(228), - [sym_shift_expression] = STATE(228), - [sym_math_expression] = STATE(228), - [sym_cast_expression] = STATE(228), - [sym_sizeof_expression] = STATE(228), - [sym_subscript_expression] = STATE(228), - [sym_call_expression] = STATE(228), - [sym_field_expression] = STATE(228), - [sym_compound_literal_expression] = STATE(228), - [sym_parenthesized_expression] = STATE(228), - [sym_char_literal] = STATE(228), - [sym_concatenated_string] = STATE(228), - [sym_string_literal] = STATE(230), - [anon_sym_SEMI] = ACTIONS(503), - [anon_sym_LBRACE] = ACTIONS(229), - [anon_sym_LPAREN2] = ACTIONS(507), - [anon_sym_STAR] = ACTIONS(509), - [anon_sym_if] = ACTIONS(2286), - [anon_sym_switch] = ACTIONS(2288), - [anon_sym_case] = ACTIONS(2290), - [anon_sym_default] = ACTIONS(2292), - [anon_sym_while] = ACTIONS(2294), - [anon_sym_do] = ACTIONS(948), - [anon_sym_for] = ACTIONS(2296), - [anon_sym_return] = ACTIONS(525), - [anon_sym_break] = ACTIONS(527), - [anon_sym_continue] = ACTIONS(529), - [anon_sym_goto] = ACTIONS(531), - [anon_sym_AMP] = ACTIONS(509), - [anon_sym_BANG] = ACTIONS(533), - [anon_sym_TILDE] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DASH] = ACTIONS(537), - [anon_sym_DASH_DASH] = ACTIONS(539), - [anon_sym_PLUS_PLUS] = ACTIONS(539), - [anon_sym_sizeof] = ACTIONS(541), - [sym_number_literal] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(547), - [sym_false] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [sym_identifier] = ACTIONS(2298), - [sym_comment] = ACTIONS(37), + [sym_preproc_include] = STATE(1053), + [sym_preproc_def] = STATE(1053), + [sym_preproc_function_def] = STATE(1053), + [sym_preproc_call] = STATE(1053), + [sym_preproc_if_in_compound_statement] = STATE(1053), + [sym_preproc_ifdef_in_compound_statement] = STATE(1053), + [sym_preproc_else_in_compound_statement] = STATE(1052), + [sym_preproc_elif_in_compound_statement] = STATE(1052), + [sym_declaration] = STATE(1053), + [sym_type_definition] = STATE(1053), + [sym__declaration_specifiers] = STATE(755), + [sym_compound_statement] = STATE(1053), + [sym_storage_class_specifier] = STATE(30), + [sym_type_qualifier] = STATE(30), + [sym__type_specifier] = STATE(25), + [sym_sized_type_specifier] = STATE(25), + [sym_enum_specifier] = STATE(25), + [sym_struct_specifier] = STATE(25), + [sym_union_specifier] = STATE(25), + [sym_labeled_statement] = STATE(1053), + [sym_expression_statement] = STATE(1053), + [sym_if_statement] = STATE(1053), + [sym_switch_statement] = STATE(1053), + [sym_case_statement] = STATE(1053), + [sym_while_statement] = STATE(1053), + [sym_do_statement] = STATE(1053), + [sym_for_statement] = STATE(1053), + [sym_return_statement] = STATE(1053), + [sym_break_statement] = STATE(1053), + [sym_continue_statement] = STATE(1053), + [sym_goto_statement] = STATE(1053), + [sym__expression] = STATE(756), + [sym_comma_expression] = STATE(757), + [sym_conditional_expression] = STATE(756), + [sym_assignment_expression] = STATE(756), + [sym_pointer_expression] = STATE(756), + [sym_logical_expression] = STATE(756), + [sym_bitwise_expression] = STATE(756), + [sym_equality_expression] = STATE(756), + [sym_relational_expression] = STATE(756), + [sym_shift_expression] = STATE(756), + [sym_math_expression] = STATE(756), + [sym_cast_expression] = STATE(756), + [sym_sizeof_expression] = STATE(756), + [sym_subscript_expression] = STATE(756), + [sym_call_expression] = STATE(756), + [sym_field_expression] = STATE(756), + [sym_compound_literal_expression] = STATE(756), + [sym_parenthesized_expression] = STATE(756), + [sym_char_literal] = STATE(756), + [sym_concatenated_string] = STATE(756), + [sym_string_literal] = STATE(374), + [sym__empty_declaration] = STATE(1053), + [sym_macro_type_specifier] = STATE(25), + [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(1053), + [aux_sym__declaration_specifiers_repeat1] = STATE(30), + [aux_sym_sized_type_specifier_repeat1] = STATE(31), + [anon_sym_SEMI] = ACTIONS(1940), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(251), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(253), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1942), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2960), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1946), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1946), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1948), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1950), + [sym_preproc_directive] = ACTIONS(265), + [anon_sym_typedef] = ACTIONS(267), + [anon_sym_extern] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_LPAREN2] = ACTIONS(936), + [anon_sym_STAR] = ACTIONS(938), + [anon_sym_static] = ACTIONS(25), + [anon_sym_auto] = ACTIONS(25), + [anon_sym_register] = ACTIONS(25), + [anon_sym_inline] = ACTIONS(25), + [anon_sym_const] = ACTIONS(27), + [anon_sym_restrict] = ACTIONS(27), + [anon_sym_volatile] = ACTIONS(27), + [anon_sym__Atomic] = ACTIONS(27), + [anon_sym_unsigned] = ACTIONS(29), + [anon_sym_long] = ACTIONS(29), + [anon_sym_short] = ACTIONS(29), + [sym_primitive_type] = ACTIONS(31), + [anon_sym_enum] = ACTIONS(33), + [anon_sym_struct] = ACTIONS(35), + [anon_sym_union] = ACTIONS(37), + [anon_sym_if] = ACTIONS(1952), + [anon_sym_switch] = ACTIONS(1954), + [anon_sym_case] = ACTIONS(1956), + [anon_sym_default] = ACTIONS(1958), + [anon_sym_while] = ACTIONS(1960), + [anon_sym_do] = ACTIONS(1962), + [anon_sym_for] = ACTIONS(1964), + [anon_sym_return] = ACTIONS(1966), + [anon_sym_break] = ACTIONS(1968), + [anon_sym_continue] = ACTIONS(1970), + [anon_sym_goto] = ACTIONS(1972), + [anon_sym_AMP] = ACTIONS(938), + [anon_sym_BANG] = ACTIONS(962), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_DASH_DASH] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(968), + [anon_sym_sizeof] = ACTIONS(970), + [sym_number_literal] = ACTIONS(1974), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(1976), + [sym_false] = ACTIONS(1976), + [sym_null] = ACTIONS(1976), + [sym_identifier] = ACTIONS(1978), + [sym_comment] = ACTIONS(59), }, [980] = { - [sym_compound_statement] = STATE(970), - [sym_labeled_statement] = STATE(970), - [sym_expression_statement] = STATE(970), - [sym_if_statement] = STATE(970), - [sym_switch_statement] = STATE(970), - [sym_case_statement] = STATE(970), - [sym_while_statement] = STATE(970), - [sym_do_statement] = STATE(970), - [sym_for_statement] = STATE(970), - [sym_return_statement] = STATE(970), - [sym_break_statement] = STATE(970), - [sym_continue_statement] = STATE(970), - [sym_goto_statement] = STATE(970), - [sym__expression] = STATE(228), - [sym_comma_expression] = STATE(229), - [sym_conditional_expression] = STATE(228), - [sym_assignment_expression] = STATE(228), - [sym_pointer_expression] = STATE(228), - [sym_logical_expression] = STATE(228), - [sym_bitwise_expression] = STATE(228), - [sym_equality_expression] = STATE(228), - [sym_relational_expression] = STATE(228), - [sym_shift_expression] = STATE(228), - [sym_math_expression] = STATE(228), - [sym_cast_expression] = STATE(228), - [sym_sizeof_expression] = STATE(228), - [sym_subscript_expression] = STATE(228), - [sym_call_expression] = STATE(228), - [sym_field_expression] = STATE(228), - [sym_compound_literal_expression] = STATE(228), - [sym_parenthesized_expression] = STATE(228), - [sym_char_literal] = STATE(228), - [sym_concatenated_string] = STATE(228), - [sym_string_literal] = STATE(230), - [anon_sym_SEMI] = ACTIONS(503), - [anon_sym_LBRACE] = ACTIONS(229), - [anon_sym_LPAREN2] = ACTIONS(507), - [anon_sym_STAR] = ACTIONS(509), - [anon_sym_if] = ACTIONS(938), - [anon_sym_switch] = ACTIONS(940), - [anon_sym_case] = ACTIONS(942), - [anon_sym_default] = ACTIONS(944), - [anon_sym_while] = ACTIONS(946), - [anon_sym_do] = ACTIONS(948), - [anon_sym_for] = ACTIONS(950), - [anon_sym_return] = ACTIONS(525), - [anon_sym_break] = ACTIONS(527), - [anon_sym_continue] = ACTIONS(529), - [anon_sym_goto] = ACTIONS(531), - [anon_sym_AMP] = ACTIONS(509), - [anon_sym_BANG] = ACTIONS(533), - [anon_sym_TILDE] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DASH] = ACTIONS(537), - [anon_sym_DASH_DASH] = ACTIONS(539), - [anon_sym_PLUS_PLUS] = ACTIONS(539), - [anon_sym_sizeof] = ACTIONS(541), - [sym_number_literal] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(547), - [sym_false] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [sym_identifier] = ACTIONS(952), - [sym_comment] = ACTIONS(37), + [sym_preproc_include] = STATE(1056), + [sym_preproc_def] = STATE(1056), + [sym_preproc_function_def] = STATE(1056), + [sym_preproc_call] = STATE(1056), + [sym_preproc_if_in_compound_statement] = STATE(1056), + [sym_preproc_ifdef_in_compound_statement] = STATE(1056), + [sym_preproc_else_in_compound_statement] = STATE(1055), + [sym_preproc_elif_in_compound_statement] = STATE(1055), + [sym_declaration] = STATE(1056), + [sym_type_definition] = STATE(1056), + [sym__declaration_specifiers] = STATE(755), + [sym_compound_statement] = STATE(1056), + [sym_storage_class_specifier] = STATE(30), + [sym_type_qualifier] = STATE(30), + [sym__type_specifier] = STATE(25), + [sym_sized_type_specifier] = STATE(25), + [sym_enum_specifier] = STATE(25), + [sym_struct_specifier] = STATE(25), + [sym_union_specifier] = STATE(25), + [sym_labeled_statement] = STATE(1056), + [sym_expression_statement] = STATE(1056), + [sym_if_statement] = STATE(1056), + [sym_switch_statement] = STATE(1056), + [sym_case_statement] = STATE(1056), + [sym_while_statement] = STATE(1056), + [sym_do_statement] = STATE(1056), + [sym_for_statement] = STATE(1056), + [sym_return_statement] = STATE(1056), + [sym_break_statement] = STATE(1056), + [sym_continue_statement] = STATE(1056), + [sym_goto_statement] = STATE(1056), + [sym__expression] = STATE(756), + [sym_comma_expression] = STATE(757), + [sym_conditional_expression] = STATE(756), + [sym_assignment_expression] = STATE(756), + [sym_pointer_expression] = STATE(756), + [sym_logical_expression] = STATE(756), + [sym_bitwise_expression] = STATE(756), + [sym_equality_expression] = STATE(756), + [sym_relational_expression] = STATE(756), + [sym_shift_expression] = STATE(756), + [sym_math_expression] = STATE(756), + [sym_cast_expression] = STATE(756), + [sym_sizeof_expression] = STATE(756), + [sym_subscript_expression] = STATE(756), + [sym_call_expression] = STATE(756), + [sym_field_expression] = STATE(756), + [sym_compound_literal_expression] = STATE(756), + [sym_parenthesized_expression] = STATE(756), + [sym_char_literal] = STATE(756), + [sym_concatenated_string] = STATE(756), + [sym_string_literal] = STATE(374), + [sym__empty_declaration] = STATE(1056), + [sym_macro_type_specifier] = STATE(25), + [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(1056), + [aux_sym__declaration_specifiers_repeat1] = STATE(30), + [aux_sym_sized_type_specifier_repeat1] = STATE(31), + [anon_sym_SEMI] = ACTIONS(1940), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(251), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(253), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1942), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2962), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1946), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1946), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1948), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1950), + [sym_preproc_directive] = ACTIONS(265), + [anon_sym_typedef] = ACTIONS(267), + [anon_sym_extern] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_LPAREN2] = ACTIONS(936), + [anon_sym_STAR] = ACTIONS(938), + [anon_sym_static] = ACTIONS(25), + [anon_sym_auto] = ACTIONS(25), + [anon_sym_register] = ACTIONS(25), + [anon_sym_inline] = ACTIONS(25), + [anon_sym_const] = ACTIONS(27), + [anon_sym_restrict] = ACTIONS(27), + [anon_sym_volatile] = ACTIONS(27), + [anon_sym__Atomic] = ACTIONS(27), + [anon_sym_unsigned] = ACTIONS(29), + [anon_sym_long] = ACTIONS(29), + [anon_sym_short] = ACTIONS(29), + [sym_primitive_type] = ACTIONS(31), + [anon_sym_enum] = ACTIONS(33), + [anon_sym_struct] = ACTIONS(35), + [anon_sym_union] = ACTIONS(37), + [anon_sym_if] = ACTIONS(1952), + [anon_sym_switch] = ACTIONS(1954), + [anon_sym_case] = ACTIONS(1956), + [anon_sym_default] = ACTIONS(1958), + [anon_sym_while] = ACTIONS(1960), + [anon_sym_do] = ACTIONS(1962), + [anon_sym_for] = ACTIONS(1964), + [anon_sym_return] = ACTIONS(1966), + [anon_sym_break] = ACTIONS(1968), + [anon_sym_continue] = ACTIONS(1970), + [anon_sym_goto] = ACTIONS(1972), + [anon_sym_AMP] = ACTIONS(938), + [anon_sym_BANG] = ACTIONS(962), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_DASH_DASH] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(968), + [anon_sym_sizeof] = ACTIONS(970), + [sym_number_literal] = ACTIONS(1974), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(1976), + [sym_false] = ACTIONS(1976), + [sym_null] = ACTIONS(1976), + [sym_identifier] = ACTIONS(1978), + [sym_comment] = ACTIONS(59), }, [981] = { - [sym__expression] = STATE(371), - [sym_comma_expression] = STATE(372), - [sym_conditional_expression] = STATE(371), - [sym_assignment_expression] = STATE(371), - [sym_pointer_expression] = STATE(371), - [sym_logical_expression] = STATE(371), - [sym_bitwise_expression] = STATE(371), - [sym_equality_expression] = STATE(371), - [sym_relational_expression] = STATE(371), - [sym_shift_expression] = STATE(371), - [sym_math_expression] = STATE(371), - [sym_cast_expression] = STATE(371), - [sym_sizeof_expression] = STATE(371), - [sym_subscript_expression] = STATE(371), - [sym_call_expression] = STATE(371), - [sym_field_expression] = STATE(371), - [sym_compound_literal_expression] = STATE(371), - [sym_parenthesized_expression] = STATE(371), - [sym_char_literal] = STATE(371), - [sym_concatenated_string] = STATE(371), + [sym_compound_statement] = STATE(1064), + [sym_labeled_statement] = STATE(1064), + [sym_expression_statement] = STATE(1064), + [sym_if_statement] = STATE(1064), + [sym_switch_statement] = STATE(1064), + [sym_case_statement] = STATE(1064), + [sym_while_statement] = STATE(1064), + [sym_do_statement] = STATE(1064), + [sym_for_statement] = STATE(1064), + [sym_return_statement] = STATE(1064), + [sym_break_statement] = STATE(1064), + [sym_continue_statement] = STATE(1064), + [sym_goto_statement] = STATE(1064), + [sym__expression] = STATE(902), + [sym_comma_expression] = STATE(903), + [sym_conditional_expression] = STATE(902), + [sym_assignment_expression] = STATE(902), + [sym_pointer_expression] = STATE(902), + [sym_logical_expression] = STATE(902), + [sym_bitwise_expression] = STATE(902), + [sym_equality_expression] = STATE(902), + [sym_relational_expression] = STATE(902), + [sym_shift_expression] = STATE(902), + [sym_math_expression] = STATE(902), + [sym_cast_expression] = STATE(902), + [sym_sizeof_expression] = STATE(902), + [sym_subscript_expression] = STATE(902), + [sym_call_expression] = STATE(902), + [sym_field_expression] = STATE(902), + [sym_compound_literal_expression] = STATE(902), + [sym_parenthesized_expression] = STATE(902), + [sym_char_literal] = STATE(902), + [sym_concatenated_string] = STATE(902), [sym_string_literal] = STATE(374), - [anon_sym_LPAREN2] = ACTIONS(892), - [anon_sym_STAR] = ACTIONS(894), - [anon_sym_AMP] = ACTIONS(894), - [anon_sym_BANG] = ACTIONS(896), - [anon_sym_TILDE] = ACTIONS(898), - [anon_sym_PLUS] = ACTIONS(900), - [anon_sym_DASH] = ACTIONS(900), - [anon_sym_DASH_DASH] = ACTIONS(902), - [anon_sym_PLUS_PLUS] = ACTIONS(902), - [anon_sym_sizeof] = ACTIONS(904), - [sym_number_literal] = ACTIONS(906), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(908), - [sym_false] = ACTIONS(908), - [sym_null] = ACTIONS(908), - [sym_identifier] = ACTIONS(908), - [sym_comment] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(2481), + [anon_sym_LBRACE] = ACTIONS(1699), + [anon_sym_LPAREN2] = ACTIONS(936), + [anon_sym_STAR] = ACTIONS(938), + [anon_sym_if] = ACTIONS(2964), + [anon_sym_switch] = ACTIONS(2966), + [anon_sym_case] = ACTIONS(2968), + [anon_sym_default] = ACTIONS(2970), + [anon_sym_while] = ACTIONS(2972), + [anon_sym_do] = ACTIONS(2499), + [anon_sym_for] = ACTIONS(2974), + [anon_sym_return] = ACTIONS(2503), + [anon_sym_break] = ACTIONS(2505), + [anon_sym_continue] = ACTIONS(2507), + [anon_sym_goto] = ACTIONS(2509), + [anon_sym_AMP] = ACTIONS(938), + [anon_sym_BANG] = ACTIONS(962), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_DASH_DASH] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(968), + [anon_sym_sizeof] = ACTIONS(970), + [sym_number_literal] = ACTIONS(2511), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(2513), + [sym_false] = ACTIONS(2513), + [sym_null] = ACTIONS(2513), + [sym_identifier] = ACTIONS(2976), + [sym_comment] = ACTIONS(59), }, [982] = { - [sym__expression] = STATE(1057), - [sym_conditional_expression] = STATE(1057), - [sym_assignment_expression] = STATE(1057), - [sym_pointer_expression] = STATE(1057), - [sym_logical_expression] = STATE(1057), - [sym_bitwise_expression] = STATE(1057), - [sym_equality_expression] = STATE(1057), - [sym_relational_expression] = STATE(1057), - [sym_shift_expression] = STATE(1057), - [sym_math_expression] = STATE(1057), - [sym_cast_expression] = STATE(1057), - [sym_sizeof_expression] = STATE(1057), - [sym_subscript_expression] = STATE(1057), - [sym_call_expression] = STATE(1057), - [sym_field_expression] = STATE(1057), - [sym_compound_literal_expression] = STATE(1057), - [sym_parenthesized_expression] = STATE(1057), - [sym_char_literal] = STATE(1057), - [sym_concatenated_string] = STATE(1057), + [sym_compound_statement] = STATE(1066), + [sym_labeled_statement] = STATE(1066), + [sym_expression_statement] = STATE(1066), + [sym_if_statement] = STATE(1066), + [sym_switch_statement] = STATE(1066), + [sym_case_statement] = STATE(1066), + [sym_while_statement] = STATE(1066), + [sym_do_statement] = STATE(1066), + [sym_for_statement] = STATE(1066), + [sym_return_statement] = STATE(1066), + [sym_break_statement] = STATE(1066), + [sym_continue_statement] = STATE(1066), + [sym_goto_statement] = STATE(1066), + [sym__expression] = STATE(902), + [sym_comma_expression] = STATE(903), + [sym_conditional_expression] = STATE(902), + [sym_assignment_expression] = STATE(902), + [sym_pointer_expression] = STATE(902), + [sym_logical_expression] = STATE(902), + [sym_bitwise_expression] = STATE(902), + [sym_equality_expression] = STATE(902), + [sym_relational_expression] = STATE(902), + [sym_shift_expression] = STATE(902), + [sym_math_expression] = STATE(902), + [sym_cast_expression] = STATE(902), + [sym_sizeof_expression] = STATE(902), + [sym_subscript_expression] = STATE(902), + [sym_call_expression] = STATE(902), + [sym_field_expression] = STATE(902), + [sym_compound_literal_expression] = STATE(902), + [sym_parenthesized_expression] = STATE(902), + [sym_char_literal] = STATE(902), + [sym_concatenated_string] = STATE(902), [sym_string_literal] = STATE(374), - [anon_sym_RPAREN] = ACTIONS(2960), - [anon_sym_LPAREN2] = ACTIONS(892), - [anon_sym_STAR] = ACTIONS(894), - [anon_sym_AMP] = ACTIONS(894), - [anon_sym_BANG] = ACTIONS(896), - [anon_sym_TILDE] = ACTIONS(898), - [anon_sym_PLUS] = ACTIONS(900), - [anon_sym_DASH] = ACTIONS(900), - [anon_sym_DASH_DASH] = ACTIONS(902), - [anon_sym_PLUS_PLUS] = ACTIONS(902), - [anon_sym_sizeof] = ACTIONS(904), - [sym_number_literal] = ACTIONS(2962), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(2964), - [sym_false] = ACTIONS(2964), - [sym_null] = ACTIONS(2964), - [sym_identifier] = ACTIONS(2964), - [sym_comment] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(2481), + [anon_sym_LBRACE] = ACTIONS(1699), + [anon_sym_LPAREN2] = ACTIONS(936), + [anon_sym_STAR] = ACTIONS(938), + [anon_sym_if] = ACTIONS(2489), + [anon_sym_switch] = ACTIONS(2491), + [anon_sym_case] = ACTIONS(2493), + [anon_sym_default] = ACTIONS(2495), + [anon_sym_while] = ACTIONS(2497), + [anon_sym_do] = ACTIONS(2499), + [anon_sym_for] = ACTIONS(2501), + [anon_sym_return] = ACTIONS(2503), + [anon_sym_break] = ACTIONS(2505), + [anon_sym_continue] = ACTIONS(2507), + [anon_sym_goto] = ACTIONS(2509), + [anon_sym_AMP] = ACTIONS(938), + [anon_sym_BANG] = ACTIONS(962), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_DASH_DASH] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(968), + [anon_sym_sizeof] = ACTIONS(970), + [sym_number_literal] = ACTIONS(2511), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(2513), + [sym_false] = ACTIONS(2513), + [sym_null] = ACTIONS(2513), + [sym_identifier] = ACTIONS(2978), + [sym_comment] = ACTIONS(59), }, [983] = { - [sym_argument_list] = STATE(430), - [anon_sym_SEMI] = ACTIONS(2966), - [anon_sym_LPAREN2] = ACTIONS(1012), - [anon_sym_STAR] = ACTIONS(1319), - [anon_sym_LBRACK] = ACTIONS(1016), - [anon_sym_EQ] = ACTIONS(1321), - [anon_sym_QMARK] = ACTIONS(1323), - [anon_sym_STAR_EQ] = ACTIONS(1325), - [anon_sym_SLASH_EQ] = ACTIONS(1325), - [anon_sym_PERCENT_EQ] = ACTIONS(1325), - [anon_sym_PLUS_EQ] = ACTIONS(1325), - [anon_sym_DASH_EQ] = ACTIONS(1325), - [anon_sym_LT_LT_EQ] = ACTIONS(1325), - [anon_sym_GT_GT_EQ] = ACTIONS(1325), - [anon_sym_AMP_EQ] = ACTIONS(1325), - [anon_sym_CARET_EQ] = ACTIONS(1325), - [anon_sym_PIPE_EQ] = ACTIONS(1325), - [anon_sym_AMP] = ACTIONS(1327), - [anon_sym_PIPE_PIPE] = ACTIONS(1329), - [anon_sym_AMP_AMP] = ACTIONS(1331), - [anon_sym_PIPE] = ACTIONS(1333), - [anon_sym_CARET] = ACTIONS(1335), - [anon_sym_EQ_EQ] = ACTIONS(1337), - [anon_sym_BANG_EQ] = ACTIONS(1337), - [anon_sym_LT] = ACTIONS(1339), - [anon_sym_GT] = ACTIONS(1339), - [anon_sym_LT_EQ] = ACTIONS(1341), - [anon_sym_GT_EQ] = ACTIONS(1341), - [anon_sym_LT_LT] = ACTIONS(1343), - [anon_sym_GT_GT] = ACTIONS(1343), - [anon_sym_PLUS] = ACTIONS(1345), - [anon_sym_DASH] = ACTIONS(1345), - [anon_sym_SLASH] = ACTIONS(1319), - [anon_sym_PERCENT] = ACTIONS(1319), - [anon_sym_DASH_DASH] = ACTIONS(1044), - [anon_sym_PLUS_PLUS] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1046), - [anon_sym_DASH_GT] = ACTIONS(1046), - [sym_comment] = ACTIONS(37), + [sym_argument_list] = STATE(98), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(1054), + [anon_sym_LBRACK] = ACTIONS(188), + [anon_sym_EQ] = ACTIONS(1056), + [anon_sym_COLON] = ACTIONS(2980), + [anon_sym_QMARK] = ACTIONS(1060), + [anon_sym_STAR_EQ] = ACTIONS(1062), + [anon_sym_SLASH_EQ] = ACTIONS(1062), + [anon_sym_PERCENT_EQ] = ACTIONS(1062), + [anon_sym_PLUS_EQ] = ACTIONS(1062), + [anon_sym_DASH_EQ] = ACTIONS(1062), + [anon_sym_LT_LT_EQ] = ACTIONS(1062), + [anon_sym_GT_GT_EQ] = ACTIONS(1062), + [anon_sym_AMP_EQ] = ACTIONS(1062), + [anon_sym_CARET_EQ] = ACTIONS(1062), + [anon_sym_PIPE_EQ] = ACTIONS(1062), + [anon_sym_AMP] = ACTIONS(1064), + [anon_sym_PIPE_PIPE] = ACTIONS(1066), + [anon_sym_AMP_AMP] = ACTIONS(1068), + [anon_sym_PIPE] = ACTIONS(1070), + [anon_sym_CARET] = ACTIONS(1072), + [anon_sym_EQ_EQ] = ACTIONS(1074), + [anon_sym_BANG_EQ] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(1076), + [anon_sym_GT] = ACTIONS(1076), + [anon_sym_LT_EQ] = ACTIONS(1078), + [anon_sym_GT_EQ] = ACTIONS(1078), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_GT_GT] = ACTIONS(1080), + [anon_sym_PLUS] = ACTIONS(1082), + [anon_sym_DASH] = ACTIONS(1082), + [anon_sym_SLASH] = ACTIONS(1054), + [anon_sym_PERCENT] = ACTIONS(1054), + [anon_sym_DASH_DASH] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(216), + [anon_sym_DOT] = ACTIONS(218), + [anon_sym_DASH_GT] = ACTIONS(218), + [sym_comment] = ACTIONS(59), }, [984] = { - [sym__expression] = STATE(1059), - [sym_conditional_expression] = STATE(1059), - [sym_assignment_expression] = STATE(1059), - [sym_pointer_expression] = STATE(1059), - [sym_logical_expression] = STATE(1059), - [sym_bitwise_expression] = STATE(1059), - [sym_equality_expression] = STATE(1059), - [sym_relational_expression] = STATE(1059), - [sym_shift_expression] = STATE(1059), - [sym_math_expression] = STATE(1059), - [sym_cast_expression] = STATE(1059), - [sym_sizeof_expression] = STATE(1059), - [sym_subscript_expression] = STATE(1059), - [sym_call_expression] = STATE(1059), - [sym_field_expression] = STATE(1059), - [sym_compound_literal_expression] = STATE(1059), - [sym_parenthesized_expression] = STATE(1059), - [sym_char_literal] = STATE(1059), - [sym_concatenated_string] = STATE(1059), - [sym_string_literal] = STATE(342), - [anon_sym_SEMI] = ACTIONS(2966), - [anon_sym_LPAREN2] = ACTIONS(780), - [anon_sym_STAR] = ACTIONS(782), - [anon_sym_AMP] = ACTIONS(782), - [anon_sym_BANG] = ACTIONS(784), - [anon_sym_TILDE] = ACTIONS(786), - [anon_sym_PLUS] = ACTIONS(788), - [anon_sym_DASH] = ACTIONS(788), - [anon_sym_DASH_DASH] = ACTIONS(790), - [anon_sym_PLUS_PLUS] = ACTIONS(790), - [anon_sym_sizeof] = ACTIONS(792), - [sym_number_literal] = ACTIONS(2968), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(2970), - [sym_false] = ACTIONS(2970), - [sym_null] = ACTIONS(2970), - [sym_identifier] = ACTIONS(2970), - [sym_comment] = ACTIONS(37), + [sym_declaration] = STATE(1069), + [sym_type_definition] = STATE(1069), + [sym__declaration_specifiers] = STATE(1070), + [sym_compound_statement] = STATE(1069), + [sym_storage_class_specifier] = STATE(142), + [sym_type_qualifier] = STATE(142), + [sym__type_specifier] = STATE(141), + [sym_sized_type_specifier] = STATE(141), + [sym_enum_specifier] = STATE(141), + [sym_struct_specifier] = STATE(141), + [sym_union_specifier] = STATE(141), + [sym_labeled_statement] = STATE(1069), + [sym_expression_statement] = STATE(1069), + [sym_if_statement] = STATE(1069), + [sym_switch_statement] = STATE(1069), + [sym_case_statement] = STATE(1069), + [sym_while_statement] = STATE(1069), + [sym_do_statement] = STATE(1069), + [sym_for_statement] = STATE(1069), + [sym_return_statement] = STATE(1069), + [sym_break_statement] = STATE(1069), + [sym_continue_statement] = STATE(1069), + [sym_goto_statement] = STATE(1069), + [sym__expression] = STATE(902), + [sym_comma_expression] = STATE(903), + [sym_conditional_expression] = STATE(902), + [sym_assignment_expression] = STATE(902), + [sym_pointer_expression] = STATE(902), + [sym_logical_expression] = STATE(902), + [sym_bitwise_expression] = STATE(902), + [sym_equality_expression] = STATE(902), + [sym_relational_expression] = STATE(902), + [sym_shift_expression] = STATE(902), + [sym_math_expression] = STATE(902), + [sym_cast_expression] = STATE(902), + [sym_sizeof_expression] = STATE(902), + [sym_subscript_expression] = STATE(902), + [sym_call_expression] = STATE(902), + [sym_field_expression] = STATE(902), + [sym_compound_literal_expression] = STATE(902), + [sym_parenthesized_expression] = STATE(902), + [sym_char_literal] = STATE(902), + [sym_concatenated_string] = STATE(902), + [sym_string_literal] = STATE(374), + [sym_macro_type_specifier] = STATE(141), + [aux_sym__declaration_specifiers_repeat1] = STATE(142), + [aux_sym_sized_type_specifier_repeat1] = STATE(143), + [anon_sym_SEMI] = ACTIONS(2481), + [anon_sym_typedef] = ACTIONS(694), + [anon_sym_extern] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(1699), + [anon_sym_LPAREN2] = ACTIONS(936), + [anon_sym_STAR] = ACTIONS(938), + [anon_sym_static] = ACTIONS(25), + [anon_sym_auto] = ACTIONS(25), + [anon_sym_register] = ACTIONS(25), + [anon_sym_inline] = ACTIONS(25), + [anon_sym_const] = ACTIONS(27), + [anon_sym_restrict] = ACTIONS(27), + [anon_sym_volatile] = ACTIONS(27), + [anon_sym__Atomic] = ACTIONS(27), + [anon_sym_unsigned] = ACTIONS(294), + [anon_sym_long] = ACTIONS(294), + [anon_sym_short] = ACTIONS(294), + [sym_primitive_type] = ACTIONS(296), + [anon_sym_enum] = ACTIONS(33), + [anon_sym_struct] = ACTIONS(35), + [anon_sym_union] = ACTIONS(37), + [anon_sym_if] = ACTIONS(2489), + [anon_sym_switch] = ACTIONS(2491), + [anon_sym_case] = ACTIONS(2493), + [anon_sym_default] = ACTIONS(2495), + [anon_sym_while] = ACTIONS(2497), + [anon_sym_do] = ACTIONS(2499), + [anon_sym_for] = ACTIONS(2501), + [anon_sym_return] = ACTIONS(2503), + [anon_sym_break] = ACTIONS(2505), + [anon_sym_continue] = ACTIONS(2507), + [anon_sym_goto] = ACTIONS(2509), + [anon_sym_AMP] = ACTIONS(938), + [anon_sym_BANG] = ACTIONS(962), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_DASH_DASH] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(968), + [anon_sym_sizeof] = ACTIONS(970), + [sym_number_literal] = ACTIONS(2511), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(2513), + [sym_false] = ACTIONS(2513), + [sym_null] = ACTIONS(2513), + [sym_identifier] = ACTIONS(2982), + [sym_comment] = ACTIONS(59), }, [985] = { - [sym_compound_statement] = STATE(1060), - [sym_labeled_statement] = STATE(1060), - [sym_expression_statement] = STATE(1060), - [sym_if_statement] = STATE(1060), - [sym_switch_statement] = STATE(1060), - [sym_case_statement] = STATE(1060), - [sym_while_statement] = STATE(1060), - [sym_do_statement] = STATE(1060), - [sym_for_statement] = STATE(1060), - [sym_return_statement] = STATE(1060), - [sym_break_statement] = STATE(1060), - [sym_continue_statement] = STATE(1060), - [sym_goto_statement] = STATE(1060), - [sym__expression] = STATE(228), - [sym_comma_expression] = STATE(229), - [sym_conditional_expression] = STATE(228), - [sym_assignment_expression] = STATE(228), - [sym_pointer_expression] = STATE(228), - [sym_logical_expression] = STATE(228), - [sym_bitwise_expression] = STATE(228), - [sym_equality_expression] = STATE(228), - [sym_relational_expression] = STATE(228), - [sym_shift_expression] = STATE(228), - [sym_math_expression] = STATE(228), - [sym_cast_expression] = STATE(228), - [sym_sizeof_expression] = STATE(228), - [sym_subscript_expression] = STATE(228), - [sym_call_expression] = STATE(228), - [sym_field_expression] = STATE(228), - [sym_compound_literal_expression] = STATE(228), - [sym_parenthesized_expression] = STATE(228), - [sym_char_literal] = STATE(228), - [sym_concatenated_string] = STATE(228), - [sym_string_literal] = STATE(230), - [anon_sym_SEMI] = ACTIONS(503), - [anon_sym_LBRACE] = ACTIONS(229), - [anon_sym_LPAREN2] = ACTIONS(507), - [anon_sym_STAR] = ACTIONS(509), - [anon_sym_if] = ACTIONS(511), - [anon_sym_switch] = ACTIONS(513), - [anon_sym_case] = ACTIONS(515), - [anon_sym_default] = ACTIONS(517), - [anon_sym_while] = ACTIONS(519), - [anon_sym_do] = ACTIONS(521), - [anon_sym_for] = ACTIONS(523), - [anon_sym_return] = ACTIONS(525), - [anon_sym_break] = ACTIONS(527), - [anon_sym_continue] = ACTIONS(529), - [anon_sym_goto] = ACTIONS(531), - [anon_sym_AMP] = ACTIONS(509), - [anon_sym_BANG] = ACTIONS(533), - [anon_sym_TILDE] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DASH] = ACTIONS(537), - [anon_sym_DASH_DASH] = ACTIONS(539), - [anon_sym_PLUS_PLUS] = ACTIONS(539), - [anon_sym_sizeof] = ACTIONS(541), - [sym_number_literal] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(547), - [sym_false] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [sym_identifier] = ACTIONS(1489), - [sym_comment] = ACTIONS(37), + [sym_compound_statement] = STATE(1071), + [sym_labeled_statement] = STATE(1071), + [sym_expression_statement] = STATE(1071), + [sym_if_statement] = STATE(1071), + [sym_switch_statement] = STATE(1071), + [sym_case_statement] = STATE(1071), + [sym_while_statement] = STATE(1071), + [sym_do_statement] = STATE(1071), + [sym_for_statement] = STATE(1071), + [sym_return_statement] = STATE(1071), + [sym_break_statement] = STATE(1071), + [sym_continue_statement] = STATE(1071), + [sym_goto_statement] = STATE(1071), + [sym__expression] = STATE(902), + [sym_comma_expression] = STATE(903), + [sym_conditional_expression] = STATE(902), + [sym_assignment_expression] = STATE(902), + [sym_pointer_expression] = STATE(902), + [sym_logical_expression] = STATE(902), + [sym_bitwise_expression] = STATE(902), + [sym_equality_expression] = STATE(902), + [sym_relational_expression] = STATE(902), + [sym_shift_expression] = STATE(902), + [sym_math_expression] = STATE(902), + [sym_cast_expression] = STATE(902), + [sym_sizeof_expression] = STATE(902), + [sym_subscript_expression] = STATE(902), + [sym_call_expression] = STATE(902), + [sym_field_expression] = STATE(902), + [sym_compound_literal_expression] = STATE(902), + [sym_parenthesized_expression] = STATE(902), + [sym_char_literal] = STATE(902), + [sym_concatenated_string] = STATE(902), + [sym_string_literal] = STATE(374), + [anon_sym_SEMI] = ACTIONS(2481), + [anon_sym_LBRACE] = ACTIONS(1699), + [anon_sym_LPAREN2] = ACTIONS(936), + [anon_sym_STAR] = ACTIONS(938), + [anon_sym_if] = ACTIONS(2489), + [anon_sym_switch] = ACTIONS(2491), + [anon_sym_case] = ACTIONS(2493), + [anon_sym_default] = ACTIONS(2495), + [anon_sym_while] = ACTIONS(2497), + [anon_sym_do] = ACTIONS(2499), + [anon_sym_for] = ACTIONS(2501), + [anon_sym_return] = ACTIONS(2503), + [anon_sym_break] = ACTIONS(2505), + [anon_sym_continue] = ACTIONS(2507), + [anon_sym_goto] = ACTIONS(2509), + [anon_sym_AMP] = ACTIONS(938), + [anon_sym_BANG] = ACTIONS(962), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_DASH_DASH] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(968), + [anon_sym_sizeof] = ACTIONS(970), + [sym_number_literal] = ACTIONS(2511), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(2513), + [sym_false] = ACTIONS(2513), + [sym_null] = ACTIONS(2513), + [sym_identifier] = ACTIONS(2978), + [sym_comment] = ACTIONS(59), }, [986] = { - [sym_argument_list] = STATE(430), - [aux_sym_for_statement_repeat1] = STATE(1062), - [anon_sym_COMMA] = ACTIONS(2344), - [anon_sym_RPAREN] = ACTIONS(2972), - [anon_sym_LPAREN2] = ACTIONS(1012), - [anon_sym_STAR] = ACTIONS(1437), - [anon_sym_LBRACK] = ACTIONS(1016), - [anon_sym_EQ] = ACTIONS(1439), - [anon_sym_QMARK] = ACTIONS(1441), - [anon_sym_STAR_EQ] = ACTIONS(1443), - [anon_sym_SLASH_EQ] = ACTIONS(1443), - [anon_sym_PERCENT_EQ] = ACTIONS(1443), - [anon_sym_PLUS_EQ] = ACTIONS(1443), - [anon_sym_DASH_EQ] = ACTIONS(1443), - [anon_sym_LT_LT_EQ] = ACTIONS(1443), - [anon_sym_GT_GT_EQ] = ACTIONS(1443), - [anon_sym_AMP_EQ] = ACTIONS(1443), - [anon_sym_CARET_EQ] = ACTIONS(1443), - [anon_sym_PIPE_EQ] = ACTIONS(1443), - [anon_sym_AMP] = ACTIONS(1445), - [anon_sym_PIPE_PIPE] = ACTIONS(1447), - [anon_sym_AMP_AMP] = ACTIONS(1449), - [anon_sym_PIPE] = ACTIONS(1451), - [anon_sym_CARET] = ACTIONS(1453), - [anon_sym_EQ_EQ] = ACTIONS(1455), - [anon_sym_BANG_EQ] = ACTIONS(1455), - [anon_sym_LT] = ACTIONS(1457), - [anon_sym_GT] = ACTIONS(1457), - [anon_sym_LT_EQ] = ACTIONS(1459), - [anon_sym_GT_EQ] = ACTIONS(1459), - [anon_sym_LT_LT] = ACTIONS(1461), - [anon_sym_GT_GT] = ACTIONS(1461), - [anon_sym_PLUS] = ACTIONS(1463), - [anon_sym_DASH] = ACTIONS(1463), - [anon_sym_SLASH] = ACTIONS(1437), - [anon_sym_PERCENT] = ACTIONS(1437), - [anon_sym_DASH_DASH] = ACTIONS(1044), - [anon_sym_PLUS_PLUS] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1046), - [anon_sym_DASH_GT] = ACTIONS(1046), - [sym_comment] = ACTIONS(37), + [anon_sym_while] = ACTIONS(2984), + [sym_comment] = ACTIONS(59), }, [987] = { - [sym__expression] = STATE(1063), - [sym_conditional_expression] = STATE(1063), - [sym_assignment_expression] = STATE(1063), - [sym_pointer_expression] = STATE(1063), - [sym_logical_expression] = STATE(1063), - [sym_bitwise_expression] = STATE(1063), - [sym_equality_expression] = STATE(1063), - [sym_relational_expression] = STATE(1063), - [sym_shift_expression] = STATE(1063), - [sym_math_expression] = STATE(1063), - [sym_cast_expression] = STATE(1063), - [sym_sizeof_expression] = STATE(1063), - [sym_subscript_expression] = STATE(1063), - [sym_call_expression] = STATE(1063), - [sym_field_expression] = STATE(1063), - [sym_compound_literal_expression] = STATE(1063), - [sym_parenthesized_expression] = STATE(1063), - [sym_char_literal] = STATE(1063), - [sym_concatenated_string] = STATE(1063), - [sym_string_literal] = STATE(374), - [anon_sym_RPAREN] = ACTIONS(2972), - [anon_sym_LPAREN2] = ACTIONS(892), - [anon_sym_STAR] = ACTIONS(894), - [anon_sym_AMP] = ACTIONS(894), - [anon_sym_BANG] = ACTIONS(896), - [anon_sym_TILDE] = ACTIONS(898), - [anon_sym_PLUS] = ACTIONS(900), - [anon_sym_DASH] = ACTIONS(900), - [anon_sym_DASH_DASH] = ACTIONS(902), - [anon_sym_PLUS_PLUS] = ACTIONS(902), - [anon_sym_sizeof] = ACTIONS(904), - [sym_number_literal] = ACTIONS(2974), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(2976), - [sym_false] = ACTIONS(2976), - [sym_null] = ACTIONS(2976), - [sym_identifier] = ACTIONS(2976), - [sym_comment] = ACTIONS(37), + [sym_declaration] = STATE(1073), + [sym__declaration_specifiers] = STATE(778), + [sym_storage_class_specifier] = STATE(142), + [sym_type_qualifier] = STATE(142), + [sym__type_specifier] = STATE(141), + [sym_sized_type_specifier] = STATE(141), + [sym_enum_specifier] = STATE(141), + [sym_struct_specifier] = STATE(141), + [sym_union_specifier] = STATE(141), + [sym__expression] = STATE(1074), + [sym_conditional_expression] = STATE(1074), + [sym_assignment_expression] = STATE(1074), + [sym_pointer_expression] = STATE(1074), + [sym_logical_expression] = STATE(1074), + [sym_bitwise_expression] = STATE(1074), + [sym_equality_expression] = STATE(1074), + [sym_relational_expression] = STATE(1074), + [sym_shift_expression] = STATE(1074), + [sym_math_expression] = STATE(1074), + [sym_cast_expression] = STATE(1074), + [sym_sizeof_expression] = STATE(1074), + [sym_subscript_expression] = STATE(1074), + [sym_call_expression] = STATE(1074), + [sym_field_expression] = STATE(1074), + [sym_compound_literal_expression] = STATE(1074), + [sym_parenthesized_expression] = STATE(1074), + [sym_char_literal] = STATE(1074), + [sym_concatenated_string] = STATE(1074), + [sym_string_literal] = STATE(534), + [sym_macro_type_specifier] = STATE(141), + [aux_sym__declaration_specifiers_repeat1] = STATE(142), + [aux_sym_sized_type_specifier_repeat1] = STATE(143), + [anon_sym_SEMI] = ACTIONS(2986), + [anon_sym_extern] = ACTIONS(25), + [anon_sym_LPAREN2] = ACTIONS(1349), + [anon_sym_STAR] = ACTIONS(1351), + [anon_sym_static] = ACTIONS(25), + [anon_sym_auto] = ACTIONS(25), + [anon_sym_register] = ACTIONS(25), + [anon_sym_inline] = ACTIONS(25), + [anon_sym_const] = ACTIONS(27), + [anon_sym_restrict] = ACTIONS(27), + [anon_sym_volatile] = ACTIONS(27), + [anon_sym__Atomic] = ACTIONS(27), + [anon_sym_unsigned] = ACTIONS(294), + [anon_sym_long] = ACTIONS(294), + [anon_sym_short] = ACTIONS(294), + [sym_primitive_type] = ACTIONS(296), + [anon_sym_enum] = ACTIONS(33), + [anon_sym_struct] = ACTIONS(35), + [anon_sym_union] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(1351), + [anon_sym_BANG] = ACTIONS(1353), + [anon_sym_TILDE] = ACTIONS(1355), + [anon_sym_PLUS] = ACTIONS(1357), + [anon_sym_DASH] = ACTIONS(1357), + [anon_sym_DASH_DASH] = ACTIONS(1359), + [anon_sym_PLUS_PLUS] = ACTIONS(1359), + [anon_sym_sizeof] = ACTIONS(1361), + [sym_number_literal] = ACTIONS(2988), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(2990), + [sym_false] = ACTIONS(2990), + [sym_null] = ACTIONS(2990), + [sym_identifier] = ACTIONS(2026), + [sym_comment] = ACTIONS(59), }, [988] = { - [sym_argument_list] = STATE(430), - [anon_sym_SEMI] = ACTIONS(2978), - [anon_sym_LPAREN2] = ACTIONS(1012), - [anon_sym_STAR] = ACTIONS(1319), - [anon_sym_LBRACK] = ACTIONS(1016), - [anon_sym_EQ] = ACTIONS(1321), - [anon_sym_QMARK] = ACTIONS(1323), - [anon_sym_STAR_EQ] = ACTIONS(1325), - [anon_sym_SLASH_EQ] = ACTIONS(1325), - [anon_sym_PERCENT_EQ] = ACTIONS(1325), - [anon_sym_PLUS_EQ] = ACTIONS(1325), - [anon_sym_DASH_EQ] = ACTIONS(1325), - [anon_sym_LT_LT_EQ] = ACTIONS(1325), - [anon_sym_GT_GT_EQ] = ACTIONS(1325), - [anon_sym_AMP_EQ] = ACTIONS(1325), - [anon_sym_CARET_EQ] = ACTIONS(1325), - [anon_sym_PIPE_EQ] = ACTIONS(1325), - [anon_sym_AMP] = ACTIONS(1327), - [anon_sym_PIPE_PIPE] = ACTIONS(1329), - [anon_sym_AMP_AMP] = ACTIONS(1331), - [anon_sym_PIPE] = ACTIONS(1333), - [anon_sym_CARET] = ACTIONS(1335), - [anon_sym_EQ_EQ] = ACTIONS(1337), - [anon_sym_BANG_EQ] = ACTIONS(1337), - [anon_sym_LT] = ACTIONS(1339), - [anon_sym_GT] = ACTIONS(1339), - [anon_sym_LT_EQ] = ACTIONS(1341), - [anon_sym_GT_EQ] = ACTIONS(1341), - [anon_sym_LT_LT] = ACTIONS(1343), - [anon_sym_GT_GT] = ACTIONS(1343), - [anon_sym_PLUS] = ACTIONS(1345), - [anon_sym_DASH] = ACTIONS(1345), - [anon_sym_SLASH] = ACTIONS(1319), - [anon_sym_PERCENT] = ACTIONS(1319), - [anon_sym_DASH_DASH] = ACTIONS(1044), - [anon_sym_PLUS_PLUS] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1046), - [anon_sym_DASH_GT] = ACTIONS(1046), - [sym_comment] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(2028), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2030), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2030), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2030), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2030), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2030), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2030), + [sym_preproc_directive] = ACTIONS(2030), + [anon_sym_typedef] = ACTIONS(2030), + [anon_sym_extern] = ACTIONS(2030), + [anon_sym_LBRACE] = ACTIONS(2028), + [anon_sym_LPAREN2] = ACTIONS(2028), + [anon_sym_STAR] = ACTIONS(2028), + [anon_sym_static] = ACTIONS(2030), + [anon_sym_auto] = ACTIONS(2030), + [anon_sym_register] = ACTIONS(2030), + [anon_sym_inline] = ACTIONS(2030), + [anon_sym_const] = ACTIONS(2030), + [anon_sym_restrict] = ACTIONS(2030), + [anon_sym_volatile] = ACTIONS(2030), + [anon_sym__Atomic] = ACTIONS(2030), + [anon_sym_unsigned] = ACTIONS(2030), + [anon_sym_long] = ACTIONS(2030), + [anon_sym_short] = ACTIONS(2030), + [sym_primitive_type] = ACTIONS(2030), + [anon_sym_enum] = ACTIONS(2030), + [anon_sym_struct] = ACTIONS(2030), + [anon_sym_union] = ACTIONS(2030), + [anon_sym_if] = ACTIONS(2030), + [anon_sym_else] = ACTIONS(2030), + [anon_sym_switch] = ACTIONS(2030), + [anon_sym_case] = ACTIONS(2030), + [anon_sym_default] = ACTIONS(2030), + [anon_sym_while] = ACTIONS(2030), + [anon_sym_do] = ACTIONS(2030), + [anon_sym_for] = ACTIONS(2030), + [anon_sym_return] = ACTIONS(2030), + [anon_sym_break] = ACTIONS(2030), + [anon_sym_continue] = ACTIONS(2030), + [anon_sym_goto] = ACTIONS(2030), + [anon_sym_AMP] = ACTIONS(2028), + [anon_sym_BANG] = ACTIONS(2028), + [anon_sym_TILDE] = ACTIONS(2028), + [anon_sym_PLUS] = ACTIONS(2030), + [anon_sym_DASH] = ACTIONS(2030), + [anon_sym_DASH_DASH] = ACTIONS(2028), + [anon_sym_PLUS_PLUS] = ACTIONS(2028), + [anon_sym_sizeof] = ACTIONS(2030), + [sym_number_literal] = ACTIONS(2028), + [anon_sym_SQUOTE] = ACTIONS(2028), + [anon_sym_DQUOTE] = ACTIONS(2028), + [sym_true] = ACTIONS(2030), + [sym_false] = ACTIONS(2030), + [sym_null] = ACTIONS(2030), + [sym_identifier] = ACTIONS(2030), + [sym_comment] = ACTIONS(59), }, [989] = { - [sym_argument_list] = STATE(430), - [anon_sym_COMMA] = ACTIONS(2980), - [anon_sym_RPAREN] = ACTIONS(2980), - [anon_sym_LPAREN2] = ACTIONS(1012), - [anon_sym_STAR] = ACTIONS(1437), - [anon_sym_LBRACK] = ACTIONS(1016), - [anon_sym_EQ] = ACTIONS(1439), - [anon_sym_QMARK] = ACTIONS(1441), - [anon_sym_STAR_EQ] = ACTIONS(1443), - [anon_sym_SLASH_EQ] = ACTIONS(1443), - [anon_sym_PERCENT_EQ] = ACTIONS(1443), - [anon_sym_PLUS_EQ] = ACTIONS(1443), - [anon_sym_DASH_EQ] = ACTIONS(1443), - [anon_sym_LT_LT_EQ] = ACTIONS(1443), - [anon_sym_GT_GT_EQ] = ACTIONS(1443), - [anon_sym_AMP_EQ] = ACTIONS(1443), - [anon_sym_CARET_EQ] = ACTIONS(1443), - [anon_sym_PIPE_EQ] = ACTIONS(1443), - [anon_sym_AMP] = ACTIONS(1445), - [anon_sym_PIPE_PIPE] = ACTIONS(1447), - [anon_sym_AMP_AMP] = ACTIONS(1449), - [anon_sym_PIPE] = ACTIONS(1451), - [anon_sym_CARET] = ACTIONS(1453), - [anon_sym_EQ_EQ] = ACTIONS(1455), - [anon_sym_BANG_EQ] = ACTIONS(1455), - [anon_sym_LT] = ACTIONS(1457), - [anon_sym_GT] = ACTIONS(1457), - [anon_sym_LT_EQ] = ACTIONS(1459), - [anon_sym_GT_EQ] = ACTIONS(1459), - [anon_sym_LT_LT] = ACTIONS(1461), - [anon_sym_GT_GT] = ACTIONS(1461), - [anon_sym_PLUS] = ACTIONS(1463), - [anon_sym_DASH] = ACTIONS(1463), - [anon_sym_SLASH] = ACTIONS(1437), - [anon_sym_PERCENT] = ACTIONS(1437), - [anon_sym_DASH_DASH] = ACTIONS(1044), - [anon_sym_PLUS_PLUS] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1046), - [anon_sym_DASH_GT] = ACTIONS(1046), - [sym_comment] = ACTIONS(37), + [sym_argument_list] = STATE(98), + [anon_sym_SEMI] = ACTIONS(2992), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_LBRACK] = ACTIONS(188), + [anon_sym_EQ] = ACTIONS(1896), + [anon_sym_QMARK] = ACTIONS(1898), + [anon_sym_STAR_EQ] = ACTIONS(1900), + [anon_sym_SLASH_EQ] = ACTIONS(1900), + [anon_sym_PERCENT_EQ] = ACTIONS(1900), + [anon_sym_PLUS_EQ] = ACTIONS(1900), + [anon_sym_DASH_EQ] = ACTIONS(1900), + [anon_sym_LT_LT_EQ] = ACTIONS(1900), + [anon_sym_GT_GT_EQ] = ACTIONS(1900), + [anon_sym_AMP_EQ] = ACTIONS(1900), + [anon_sym_CARET_EQ] = ACTIONS(1900), + [anon_sym_PIPE_EQ] = ACTIONS(1900), + [anon_sym_AMP] = ACTIONS(1902), + [anon_sym_PIPE_PIPE] = ACTIONS(1904), + [anon_sym_AMP_AMP] = ACTIONS(1906), + [anon_sym_PIPE] = ACTIONS(1908), + [anon_sym_CARET] = ACTIONS(1910), + [anon_sym_EQ_EQ] = ACTIONS(1912), + [anon_sym_BANG_EQ] = ACTIONS(1912), + [anon_sym_LT] = ACTIONS(1914), + [anon_sym_GT] = ACTIONS(1914), + [anon_sym_LT_EQ] = ACTIONS(1916), + [anon_sym_GT_EQ] = ACTIONS(1916), + [anon_sym_LT_LT] = ACTIONS(1918), + [anon_sym_GT_GT] = ACTIONS(1918), + [anon_sym_PLUS] = ACTIONS(1920), + [anon_sym_DASH] = ACTIONS(1920), + [anon_sym_SLASH] = ACTIONS(1894), + [anon_sym_PERCENT] = ACTIONS(1894), + [anon_sym_DASH_DASH] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(216), + [anon_sym_DOT] = ACTIONS(218), + [anon_sym_DASH_GT] = ACTIONS(218), + [sym_comment] = ACTIONS(59), }, [990] = { - [anon_sym_COMMA] = ACTIONS(2982), - [anon_sym_RPAREN] = ACTIONS(2982), - [anon_sym_SEMI] = ACTIONS(2982), - [anon_sym_RBRACE] = ACTIONS(2982), - [anon_sym_LPAREN2] = ACTIONS(2982), - [anon_sym_STAR] = ACTIONS(2984), - [anon_sym_LBRACK] = ACTIONS(2982), - [anon_sym_RBRACK] = ACTIONS(2982), - [anon_sym_EQ] = ACTIONS(2984), - [anon_sym_COLON] = ACTIONS(2982), - [anon_sym_QMARK] = ACTIONS(2982), - [anon_sym_STAR_EQ] = ACTIONS(2982), - [anon_sym_SLASH_EQ] = ACTIONS(2982), - [anon_sym_PERCENT_EQ] = ACTIONS(2982), - [anon_sym_PLUS_EQ] = ACTIONS(2982), - [anon_sym_DASH_EQ] = ACTIONS(2982), - [anon_sym_LT_LT_EQ] = ACTIONS(2982), - [anon_sym_GT_GT_EQ] = ACTIONS(2982), - [anon_sym_AMP_EQ] = ACTIONS(2982), - [anon_sym_CARET_EQ] = ACTIONS(2982), - [anon_sym_PIPE_EQ] = ACTIONS(2982), - [anon_sym_AMP] = ACTIONS(2984), - [anon_sym_PIPE_PIPE] = ACTIONS(2982), - [anon_sym_AMP_AMP] = ACTIONS(2982), - [anon_sym_PIPE] = ACTIONS(2984), - [anon_sym_CARET] = ACTIONS(2984), - [anon_sym_EQ_EQ] = ACTIONS(2982), - [anon_sym_BANG_EQ] = ACTIONS(2982), - [anon_sym_LT] = ACTIONS(2984), - [anon_sym_GT] = ACTIONS(2984), - [anon_sym_LT_EQ] = ACTIONS(2982), - [anon_sym_GT_EQ] = ACTIONS(2982), - [anon_sym_LT_LT] = ACTIONS(2984), - [anon_sym_GT_GT] = ACTIONS(2984), - [anon_sym_PLUS] = ACTIONS(2984), - [anon_sym_DASH] = ACTIONS(2984), - [anon_sym_SLASH] = ACTIONS(2984), - [anon_sym_PERCENT] = ACTIONS(2984), - [anon_sym_DASH_DASH] = ACTIONS(2982), - [anon_sym_PLUS_PLUS] = ACTIONS(2982), - [anon_sym_DOT] = ACTIONS(2982), - [anon_sym_DASH_GT] = ACTIONS(2982), - [sym_comment] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(2034), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2036), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2036), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2036), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2036), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2036), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2036), + [sym_preproc_directive] = ACTIONS(2036), + [anon_sym_typedef] = ACTIONS(2036), + [anon_sym_extern] = ACTIONS(2036), + [anon_sym_LBRACE] = ACTIONS(2034), + [anon_sym_LPAREN2] = ACTIONS(2034), + [anon_sym_STAR] = ACTIONS(2034), + [anon_sym_static] = ACTIONS(2036), + [anon_sym_auto] = ACTIONS(2036), + [anon_sym_register] = ACTIONS(2036), + [anon_sym_inline] = ACTIONS(2036), + [anon_sym_const] = ACTIONS(2036), + [anon_sym_restrict] = ACTIONS(2036), + [anon_sym_volatile] = ACTIONS(2036), + [anon_sym__Atomic] = ACTIONS(2036), + [anon_sym_unsigned] = ACTIONS(2036), + [anon_sym_long] = ACTIONS(2036), + [anon_sym_short] = ACTIONS(2036), + [sym_primitive_type] = ACTIONS(2036), + [anon_sym_enum] = ACTIONS(2036), + [anon_sym_struct] = ACTIONS(2036), + [anon_sym_union] = ACTIONS(2036), + [anon_sym_if] = ACTIONS(2036), + [anon_sym_else] = ACTIONS(2036), + [anon_sym_switch] = ACTIONS(2036), + [anon_sym_case] = ACTIONS(2036), + [anon_sym_default] = ACTIONS(2036), + [anon_sym_while] = ACTIONS(2036), + [anon_sym_do] = ACTIONS(2036), + [anon_sym_for] = ACTIONS(2036), + [anon_sym_return] = ACTIONS(2036), + [anon_sym_break] = ACTIONS(2036), + [anon_sym_continue] = ACTIONS(2036), + [anon_sym_goto] = ACTIONS(2036), + [anon_sym_AMP] = ACTIONS(2034), + [anon_sym_BANG] = ACTIONS(2034), + [anon_sym_TILDE] = ACTIONS(2034), + [anon_sym_PLUS] = ACTIONS(2036), + [anon_sym_DASH] = ACTIONS(2036), + [anon_sym_DASH_DASH] = ACTIONS(2034), + [anon_sym_PLUS_PLUS] = ACTIONS(2034), + [anon_sym_sizeof] = ACTIONS(2036), + [sym_number_literal] = ACTIONS(2034), + [anon_sym_SQUOTE] = ACTIONS(2034), + [anon_sym_DQUOTE] = ACTIONS(2034), + [sym_true] = ACTIONS(2036), + [sym_false] = ACTIONS(2036), + [sym_null] = ACTIONS(2036), + [sym_identifier] = ACTIONS(2036), + [sym_comment] = ACTIONS(59), }, [991] = { - [aux_sym_for_statement_repeat1] = STATE(991), - [anon_sym_COMMA] = ACTIONS(2986), - [anon_sym_RPAREN] = ACTIONS(2980), - [sym_comment] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(2038), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2040), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2040), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2040), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2040), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2040), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2040), + [sym_preproc_directive] = ACTIONS(2040), + [anon_sym_typedef] = ACTIONS(2040), + [anon_sym_extern] = ACTIONS(2040), + [anon_sym_LBRACE] = ACTIONS(2038), + [anon_sym_LPAREN2] = ACTIONS(2038), + [anon_sym_STAR] = ACTIONS(2038), + [anon_sym_static] = ACTIONS(2040), + [anon_sym_auto] = ACTIONS(2040), + [anon_sym_register] = ACTIONS(2040), + [anon_sym_inline] = ACTIONS(2040), + [anon_sym_const] = ACTIONS(2040), + [anon_sym_restrict] = ACTIONS(2040), + [anon_sym_volatile] = ACTIONS(2040), + [anon_sym__Atomic] = ACTIONS(2040), + [anon_sym_unsigned] = ACTIONS(2040), + [anon_sym_long] = ACTIONS(2040), + [anon_sym_short] = ACTIONS(2040), + [sym_primitive_type] = ACTIONS(2040), + [anon_sym_enum] = ACTIONS(2040), + [anon_sym_struct] = ACTIONS(2040), + [anon_sym_union] = ACTIONS(2040), + [anon_sym_if] = ACTIONS(2040), + [anon_sym_else] = ACTIONS(2040), + [anon_sym_switch] = ACTIONS(2040), + [anon_sym_case] = ACTIONS(2040), + [anon_sym_default] = ACTIONS(2040), + [anon_sym_while] = ACTIONS(2040), + [anon_sym_do] = ACTIONS(2040), + [anon_sym_for] = ACTIONS(2040), + [anon_sym_return] = ACTIONS(2040), + [anon_sym_break] = ACTIONS(2040), + [anon_sym_continue] = ACTIONS(2040), + [anon_sym_goto] = ACTIONS(2040), + [anon_sym_AMP] = ACTIONS(2038), + [anon_sym_BANG] = ACTIONS(2038), + [anon_sym_TILDE] = ACTIONS(2038), + [anon_sym_PLUS] = ACTIONS(2040), + [anon_sym_DASH] = ACTIONS(2040), + [anon_sym_DASH_DASH] = ACTIONS(2038), + [anon_sym_PLUS_PLUS] = ACTIONS(2038), + [anon_sym_sizeof] = ACTIONS(2040), + [sym_number_literal] = ACTIONS(2038), + [anon_sym_SQUOTE] = ACTIONS(2038), + [anon_sym_DQUOTE] = ACTIONS(2038), + [sym_true] = ACTIONS(2040), + [sym_false] = ACTIONS(2040), + [sym_null] = ACTIONS(2040), + [sym_identifier] = ACTIONS(2040), + [sym_comment] = ACTIONS(59), }, [992] = { - [sym_argument_list] = STATE(430), - [anon_sym_COMMA] = ACTIONS(2989), - [anon_sym_SEMI] = ACTIONS(2989), - [anon_sym_LPAREN2] = ACTIONS(1012), - [anon_sym_STAR] = ACTIONS(1014), - [anon_sym_LBRACK] = ACTIONS(1016), - [anon_sym_EQ] = ACTIONS(1018), - [anon_sym_QMARK] = ACTIONS(1020), - [anon_sym_STAR_EQ] = ACTIONS(1022), - [anon_sym_SLASH_EQ] = ACTIONS(1022), - [anon_sym_PERCENT_EQ] = ACTIONS(1022), - [anon_sym_PLUS_EQ] = ACTIONS(1022), - [anon_sym_DASH_EQ] = ACTIONS(1022), - [anon_sym_LT_LT_EQ] = ACTIONS(1022), - [anon_sym_GT_GT_EQ] = ACTIONS(1022), - [anon_sym_AMP_EQ] = ACTIONS(1022), - [anon_sym_CARET_EQ] = ACTIONS(1022), - [anon_sym_PIPE_EQ] = ACTIONS(1022), - [anon_sym_AMP] = ACTIONS(1024), - [anon_sym_PIPE_PIPE] = ACTIONS(1026), - [anon_sym_AMP_AMP] = ACTIONS(1028), - [anon_sym_PIPE] = ACTIONS(1030), - [anon_sym_CARET] = ACTIONS(1032), - [anon_sym_EQ_EQ] = ACTIONS(1034), - [anon_sym_BANG_EQ] = ACTIONS(1034), - [anon_sym_LT] = ACTIONS(1036), - [anon_sym_GT] = ACTIONS(1036), - [anon_sym_LT_EQ] = ACTIONS(1038), - [anon_sym_GT_EQ] = ACTIONS(1038), - [anon_sym_LT_LT] = ACTIONS(1040), - [anon_sym_GT_GT] = ACTIONS(1040), - [anon_sym_PLUS] = ACTIONS(1042), - [anon_sym_DASH] = ACTIONS(1042), - [anon_sym_SLASH] = ACTIONS(1014), - [anon_sym_PERCENT] = ACTIONS(1014), - [anon_sym_DASH_DASH] = ACTIONS(1044), - [anon_sym_PLUS_PLUS] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1046), - [anon_sym_DASH_GT] = ACTIONS(1046), - [sym_comment] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(2994), + [sym_comment] = ACTIONS(59), }, [993] = { - [sym_type_qualifier] = STATE(993), - [aux_sym_type_definition_repeat1] = STATE(993), - [anon_sym_RPAREN] = ACTIONS(874), - [anon_sym_LPAREN2] = ACTIONS(874), - [anon_sym_STAR] = ACTIONS(874), - [anon_sym_LBRACK] = ACTIONS(874), - [anon_sym_const] = ACTIONS(401), - [anon_sym_restrict] = ACTIONS(401), - [anon_sym_volatile] = ACTIONS(401), - [anon_sym__Atomic] = ACTIONS(401), - [sym_identifier] = ACTIONS(404), - [sym_comment] = ACTIONS(37), + [sym_compound_statement] = STATE(1077), + [sym_labeled_statement] = STATE(1077), + [sym_expression_statement] = STATE(1077), + [sym_if_statement] = STATE(1077), + [sym_switch_statement] = STATE(1077), + [sym_case_statement] = STATE(1077), + [sym_while_statement] = STATE(1077), + [sym_do_statement] = STATE(1077), + [sym_for_statement] = STATE(1077), + [sym_return_statement] = STATE(1077), + [sym_break_statement] = STATE(1077), + [sym_continue_statement] = STATE(1077), + [sym_goto_statement] = STATE(1077), + [sym__expression] = STATE(902), + [sym_comma_expression] = STATE(903), + [sym_conditional_expression] = STATE(902), + [sym_assignment_expression] = STATE(902), + [sym_pointer_expression] = STATE(902), + [sym_logical_expression] = STATE(902), + [sym_bitwise_expression] = STATE(902), + [sym_equality_expression] = STATE(902), + [sym_relational_expression] = STATE(902), + [sym_shift_expression] = STATE(902), + [sym_math_expression] = STATE(902), + [sym_cast_expression] = STATE(902), + [sym_sizeof_expression] = STATE(902), + [sym_subscript_expression] = STATE(902), + [sym_call_expression] = STATE(902), + [sym_field_expression] = STATE(902), + [sym_compound_literal_expression] = STATE(902), + [sym_parenthesized_expression] = STATE(902), + [sym_char_literal] = STATE(902), + [sym_concatenated_string] = STATE(902), + [sym_string_literal] = STATE(374), + [anon_sym_SEMI] = ACTIONS(2481), + [anon_sym_LBRACE] = ACTIONS(1699), + [anon_sym_LPAREN2] = ACTIONS(936), + [anon_sym_STAR] = ACTIONS(938), + [anon_sym_if] = ACTIONS(2489), + [anon_sym_switch] = ACTIONS(2491), + [anon_sym_case] = ACTIONS(2493), + [anon_sym_default] = ACTIONS(2495), + [anon_sym_while] = ACTIONS(2497), + [anon_sym_do] = ACTIONS(2499), + [anon_sym_for] = ACTIONS(2501), + [anon_sym_return] = ACTIONS(2503), + [anon_sym_break] = ACTIONS(2505), + [anon_sym_continue] = ACTIONS(2507), + [anon_sym_goto] = ACTIONS(2509), + [anon_sym_AMP] = ACTIONS(938), + [anon_sym_BANG] = ACTIONS(962), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_DASH_DASH] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(968), + [anon_sym_sizeof] = ACTIONS(970), + [sym_number_literal] = ACTIONS(2511), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(2513), + [sym_false] = ACTIONS(2513), + [sym_null] = ACTIONS(2513), + [sym_identifier] = ACTIONS(2978), + [sym_comment] = ACTIONS(59), }, [994] = { - [sym_argument_list] = STATE(430), - [anon_sym_LPAREN2] = ACTIONS(1012), - [anon_sym_STAR] = ACTIONS(1082), - [anon_sym_LBRACK] = ACTIONS(1016), - [anon_sym_RBRACK] = ACTIONS(2989), - [anon_sym_EQ] = ACTIONS(1084), - [anon_sym_QMARK] = ACTIONS(1086), - [anon_sym_STAR_EQ] = ACTIONS(1088), - [anon_sym_SLASH_EQ] = ACTIONS(1088), - [anon_sym_PERCENT_EQ] = ACTIONS(1088), - [anon_sym_PLUS_EQ] = ACTIONS(1088), - [anon_sym_DASH_EQ] = ACTIONS(1088), - [anon_sym_LT_LT_EQ] = ACTIONS(1088), - [anon_sym_GT_GT_EQ] = ACTIONS(1088), - [anon_sym_AMP_EQ] = ACTIONS(1088), - [anon_sym_CARET_EQ] = ACTIONS(1088), - [anon_sym_PIPE_EQ] = ACTIONS(1088), - [anon_sym_AMP] = ACTIONS(1090), - [anon_sym_PIPE_PIPE] = ACTIONS(1092), - [anon_sym_AMP_AMP] = ACTIONS(1094), - [anon_sym_PIPE] = ACTIONS(1096), - [anon_sym_CARET] = ACTIONS(1098), - [anon_sym_EQ_EQ] = ACTIONS(1100), - [anon_sym_BANG_EQ] = ACTIONS(1100), - [anon_sym_LT] = ACTIONS(1102), - [anon_sym_GT] = ACTIONS(1102), - [anon_sym_LT_EQ] = ACTIONS(1104), - [anon_sym_GT_EQ] = ACTIONS(1104), - [anon_sym_LT_LT] = ACTIONS(1106), - [anon_sym_GT_GT] = ACTIONS(1106), - [anon_sym_PLUS] = ACTIONS(1108), - [anon_sym_DASH] = ACTIONS(1108), - [anon_sym_SLASH] = ACTIONS(1082), - [anon_sym_PERCENT] = ACTIONS(1082), - [anon_sym_DASH_DASH] = ACTIONS(1044), - [anon_sym_PLUS_PLUS] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1046), - [anon_sym_DASH_GT] = ACTIONS(1046), - [sym_comment] = ACTIONS(37), + [sym_parameter_list] = STATE(201), + [aux_sym_declaration_repeat1] = STATE(653), + [anon_sym_SEMI] = ACTIONS(1697), + [anon_sym_COMMA] = ACTIONS(437), + [anon_sym_LPAREN2] = ACTIONS(441), + [anon_sym_LBRACK] = ACTIONS(443), + [anon_sym_EQ] = ACTIONS(445), + [sym_comment] = ACTIONS(59), }, [995] = { - [anon_sym_COMMA] = ACTIONS(2991), - [anon_sym_RPAREN] = ACTIONS(2991), - [anon_sym_SEMI] = ACTIONS(2991), - [anon_sym_RBRACE] = ACTIONS(2991), - [anon_sym_LPAREN2] = ACTIONS(2991), - [anon_sym_STAR] = ACTIONS(2993), - [anon_sym_LBRACK] = ACTIONS(2991), - [anon_sym_RBRACK] = ACTIONS(2991), - [anon_sym_EQ] = ACTIONS(2993), - [anon_sym_COLON] = ACTIONS(2991), - [anon_sym_QMARK] = ACTIONS(2991), - [anon_sym_STAR_EQ] = ACTIONS(2991), - [anon_sym_SLASH_EQ] = ACTIONS(2991), - [anon_sym_PERCENT_EQ] = ACTIONS(2991), - [anon_sym_PLUS_EQ] = ACTIONS(2991), - [anon_sym_DASH_EQ] = ACTIONS(2991), - [anon_sym_LT_LT_EQ] = ACTIONS(2991), - [anon_sym_GT_GT_EQ] = ACTIONS(2991), - [anon_sym_AMP_EQ] = ACTIONS(2991), - [anon_sym_CARET_EQ] = ACTIONS(2991), - [anon_sym_PIPE_EQ] = ACTIONS(2991), - [anon_sym_AMP] = ACTIONS(2993), - [anon_sym_PIPE_PIPE] = ACTIONS(2991), - [anon_sym_AMP_AMP] = ACTIONS(2991), - [anon_sym_PIPE] = ACTIONS(2993), - [anon_sym_CARET] = ACTIONS(2993), - [anon_sym_EQ_EQ] = ACTIONS(2991), - [anon_sym_BANG_EQ] = ACTIONS(2991), - [anon_sym_LT] = ACTIONS(2993), - [anon_sym_GT] = ACTIONS(2993), - [anon_sym_LT_EQ] = ACTIONS(2991), - [anon_sym_GT_EQ] = ACTIONS(2991), - [anon_sym_LT_LT] = ACTIONS(2993), - [anon_sym_GT_GT] = ACTIONS(2993), - [anon_sym_PLUS] = ACTIONS(2993), - [anon_sym_DASH] = ACTIONS(2993), - [anon_sym_SLASH] = ACTIONS(2993), - [anon_sym_PERCENT] = ACTIONS(2993), - [anon_sym_DASH_DASH] = ACTIONS(2991), - [anon_sym_PLUS_PLUS] = ACTIONS(2991), - [anon_sym_DOT] = ACTIONS(2991), - [anon_sym_DASH_GT] = ACTIONS(2991), - [sym_comment] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(2044), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2046), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2046), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2046), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2046), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2046), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2046), + [sym_preproc_directive] = ACTIONS(2046), + [anon_sym_typedef] = ACTIONS(2046), + [anon_sym_extern] = ACTIONS(2046), + [anon_sym_LBRACE] = ACTIONS(2044), + [anon_sym_LPAREN2] = ACTIONS(2044), + [anon_sym_STAR] = ACTIONS(2044), + [anon_sym_static] = ACTIONS(2046), + [anon_sym_auto] = ACTIONS(2046), + [anon_sym_register] = ACTIONS(2046), + [anon_sym_inline] = ACTIONS(2046), + [anon_sym_const] = ACTIONS(2046), + [anon_sym_restrict] = ACTIONS(2046), + [anon_sym_volatile] = ACTIONS(2046), + [anon_sym__Atomic] = ACTIONS(2046), + [anon_sym_unsigned] = ACTIONS(2046), + [anon_sym_long] = ACTIONS(2046), + [anon_sym_short] = ACTIONS(2046), + [sym_primitive_type] = ACTIONS(2046), + [anon_sym_enum] = ACTIONS(2046), + [anon_sym_struct] = ACTIONS(2046), + [anon_sym_union] = ACTIONS(2046), + [anon_sym_if] = ACTIONS(2046), + [anon_sym_else] = ACTIONS(2046), + [anon_sym_switch] = ACTIONS(2046), + [anon_sym_case] = ACTIONS(2046), + [anon_sym_default] = ACTIONS(2046), + [anon_sym_while] = ACTIONS(2046), + [anon_sym_do] = ACTIONS(2046), + [anon_sym_for] = ACTIONS(2046), + [anon_sym_return] = ACTIONS(2046), + [anon_sym_break] = ACTIONS(2046), + [anon_sym_continue] = ACTIONS(2046), + [anon_sym_goto] = ACTIONS(2046), + [anon_sym_AMP] = ACTIONS(2044), + [anon_sym_BANG] = ACTIONS(2044), + [anon_sym_TILDE] = ACTIONS(2044), + [anon_sym_PLUS] = ACTIONS(2046), + [anon_sym_DASH] = ACTIONS(2046), + [anon_sym_DASH_DASH] = ACTIONS(2044), + [anon_sym_PLUS_PLUS] = ACTIONS(2044), + [anon_sym_sizeof] = ACTIONS(2046), + [sym_number_literal] = ACTIONS(2044), + [anon_sym_SQUOTE] = ACTIONS(2044), + [anon_sym_DQUOTE] = ACTIONS(2044), + [sym_true] = ACTIONS(2046), + [sym_false] = ACTIONS(2046), + [sym_null] = ACTIONS(2046), + [sym_identifier] = ACTIONS(2046), + [sym_comment] = ACTIONS(59), }, [996] = { - [sym__expression] = STATE(894), - [sym_conditional_expression] = STATE(894), - [sym_assignment_expression] = STATE(894), - [sym_pointer_expression] = STATE(894), - [sym_logical_expression] = STATE(894), - [sym_bitwise_expression] = STATE(894), - [sym_equality_expression] = STATE(894), - [sym_relational_expression] = STATE(894), - [sym_shift_expression] = STATE(894), - [sym_math_expression] = STATE(894), - [sym_cast_expression] = STATE(894), - [sym_sizeof_expression] = STATE(894), - [sym_subscript_expression] = STATE(894), - [sym_call_expression] = STATE(894), - [sym_field_expression] = STATE(894), - [sym_compound_literal_expression] = STATE(894), - [sym_parenthesized_expression] = STATE(894), - [sym_initializer_list] = STATE(895), - [sym_initializer_pair] = STATE(895), - [sym_subscript_designator] = STATE(471), - [sym_field_designator] = STATE(471), - [sym_char_literal] = STATE(894), - [sym_concatenated_string] = STATE(894), - [sym_string_literal] = STATE(318), - [aux_sym_initializer_pair_repeat1] = STATE(471), - [anon_sym_LBRACE] = ACTIONS(585), - [anon_sym_LPAREN2] = ACTIONS(742), - [anon_sym_STAR] = ACTIONS(744), - [anon_sym_LBRACK] = ACTIONS(1118), - [anon_sym_AMP] = ACTIONS(744), - [anon_sym_BANG] = ACTIONS(746), - [anon_sym_TILDE] = ACTIONS(748), - [anon_sym_PLUS] = ACTIONS(750), - [anon_sym_DASH] = ACTIONS(750), - [anon_sym_DASH_DASH] = ACTIONS(752), - [anon_sym_PLUS_PLUS] = ACTIONS(752), - [anon_sym_sizeof] = ACTIONS(754), - [anon_sym_DOT] = ACTIONS(1120), - [sym_number_literal] = ACTIONS(2419), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(2421), - [sym_false] = ACTIONS(2421), - [sym_null] = ACTIONS(2421), - [sym_identifier] = ACTIONS(2421), - [sym_comment] = ACTIONS(37), + [sym_preproc_include] = STATE(996), + [sym_preproc_def] = STATE(996), + [sym_preproc_function_def] = STATE(996), + [sym_preproc_call] = STATE(996), + [sym_preproc_if_in_compound_statement] = STATE(996), + [sym_preproc_ifdef_in_compound_statement] = STATE(996), + [sym_declaration] = STATE(996), + [sym_type_definition] = STATE(996), + [sym__declaration_specifiers] = STATE(901), + [sym_compound_statement] = STATE(996), + [sym_storage_class_specifier] = STATE(30), + [sym_type_qualifier] = STATE(30), + [sym__type_specifier] = STATE(25), + [sym_sized_type_specifier] = STATE(25), + [sym_enum_specifier] = STATE(25), + [sym_struct_specifier] = STATE(25), + [sym_union_specifier] = STATE(25), + [sym_labeled_statement] = STATE(996), + [sym_expression_statement] = STATE(996), + [sym_if_statement] = STATE(996), + [sym_switch_statement] = STATE(996), + [sym_case_statement] = STATE(996), + [sym_while_statement] = STATE(996), + [sym_do_statement] = STATE(996), + [sym_for_statement] = STATE(996), + [sym_return_statement] = STATE(996), + [sym_break_statement] = STATE(996), + [sym_continue_statement] = STATE(996), + [sym_goto_statement] = STATE(996), + [sym__expression] = STATE(902), + [sym_comma_expression] = STATE(903), + [sym_conditional_expression] = STATE(902), + [sym_assignment_expression] = STATE(902), + [sym_pointer_expression] = STATE(902), + [sym_logical_expression] = STATE(902), + [sym_bitwise_expression] = STATE(902), + [sym_equality_expression] = STATE(902), + [sym_relational_expression] = STATE(902), + [sym_shift_expression] = STATE(902), + [sym_math_expression] = STATE(902), + [sym_cast_expression] = STATE(902), + [sym_sizeof_expression] = STATE(902), + [sym_subscript_expression] = STATE(902), + [sym_call_expression] = STATE(902), + [sym_field_expression] = STATE(902), + [sym_compound_literal_expression] = STATE(902), + [sym_parenthesized_expression] = STATE(902), + [sym_char_literal] = STATE(902), + [sym_concatenated_string] = STATE(902), + [sym_string_literal] = STATE(374), + [sym__empty_declaration] = STATE(996), + [sym_macro_type_specifier] = STATE(25), + [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(996), + [aux_sym__declaration_specifiers_repeat1] = STATE(30), + [aux_sym_sized_type_specifier_repeat1] = STATE(31), + [anon_sym_SEMI] = ACTIONS(2996), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2999), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3002), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3005), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2802), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3008), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3011), + [anon_sym_typedef] = ACTIONS(3014), + [anon_sym_extern] = ACTIONS(2121), + [anon_sym_LBRACE] = ACTIONS(3017), + [anon_sym_LPAREN2] = ACTIONS(2129), + [anon_sym_STAR] = ACTIONS(2132), + [anon_sym_static] = ACTIONS(2121), + [anon_sym_auto] = ACTIONS(2121), + [anon_sym_register] = ACTIONS(2121), + [anon_sym_inline] = ACTIONS(2121), + [anon_sym_const] = ACTIONS(2135), + [anon_sym_restrict] = ACTIONS(2135), + [anon_sym_volatile] = ACTIONS(2135), + [anon_sym__Atomic] = ACTIONS(2135), + [anon_sym_unsigned] = ACTIONS(2138), + [anon_sym_long] = ACTIONS(2138), + [anon_sym_short] = ACTIONS(2138), + [sym_primitive_type] = ACTIONS(2141), + [anon_sym_enum] = ACTIONS(2144), + [anon_sym_struct] = ACTIONS(2147), + [anon_sym_union] = ACTIONS(2150), + [anon_sym_if] = ACTIONS(3020), + [anon_sym_switch] = ACTIONS(3023), + [anon_sym_case] = ACTIONS(3026), + [anon_sym_default] = ACTIONS(3029), + [anon_sym_while] = ACTIONS(3032), + [anon_sym_do] = ACTIONS(3035), + [anon_sym_for] = ACTIONS(3038), + [anon_sym_return] = ACTIONS(3041), + [anon_sym_break] = ACTIONS(3044), + [anon_sym_continue] = ACTIONS(3047), + [anon_sym_goto] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(2132), + [anon_sym_BANG] = ACTIONS(2186), + [anon_sym_TILDE] = ACTIONS(2189), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_DASH] = ACTIONS(2192), + [anon_sym_DASH_DASH] = ACTIONS(2195), + [anon_sym_PLUS_PLUS] = ACTIONS(2195), + [anon_sym_sizeof] = ACTIONS(2198), + [sym_number_literal] = ACTIONS(3053), + [anon_sym_SQUOTE] = ACTIONS(2204), + [anon_sym_DQUOTE] = ACTIONS(2207), + [sym_true] = ACTIONS(3056), + [sym_false] = ACTIONS(3056), + [sym_null] = ACTIONS(3056), + [sym_identifier] = ACTIONS(3059), + [sym_comment] = ACTIONS(59), }, [997] = { - [sym_argument_list] = STATE(430), - [anon_sym_COMMA] = ACTIONS(2989), - [anon_sym_RBRACE] = ACTIONS(2989), - [anon_sym_LPAREN2] = ACTIONS(1012), - [anon_sym_STAR] = ACTIONS(1252), - [anon_sym_LBRACK] = ACTIONS(1016), - [anon_sym_EQ] = ACTIONS(1254), - [anon_sym_QMARK] = ACTIONS(1256), - [anon_sym_STAR_EQ] = ACTIONS(1258), - [anon_sym_SLASH_EQ] = ACTIONS(1258), - [anon_sym_PERCENT_EQ] = ACTIONS(1258), - [anon_sym_PLUS_EQ] = ACTIONS(1258), - [anon_sym_DASH_EQ] = ACTIONS(1258), - [anon_sym_LT_LT_EQ] = ACTIONS(1258), - [anon_sym_GT_GT_EQ] = ACTIONS(1258), - [anon_sym_AMP_EQ] = ACTIONS(1258), - [anon_sym_CARET_EQ] = ACTIONS(1258), - [anon_sym_PIPE_EQ] = ACTIONS(1258), - [anon_sym_AMP] = ACTIONS(1260), - [anon_sym_PIPE_PIPE] = ACTIONS(1262), - [anon_sym_AMP_AMP] = ACTIONS(1264), - [anon_sym_PIPE] = ACTIONS(1266), - [anon_sym_CARET] = ACTIONS(1268), - [anon_sym_EQ_EQ] = ACTIONS(1270), - [anon_sym_BANG_EQ] = ACTIONS(1270), - [anon_sym_LT] = ACTIONS(1272), - [anon_sym_GT] = ACTIONS(1272), - [anon_sym_LT_EQ] = ACTIONS(1274), - [anon_sym_GT_EQ] = ACTIONS(1274), - [anon_sym_LT_LT] = ACTIONS(1276), - [anon_sym_GT_GT] = ACTIONS(1276), - [anon_sym_PLUS] = ACTIONS(1278), - [anon_sym_DASH] = ACTIONS(1278), - [anon_sym_SLASH] = ACTIONS(1252), - [anon_sym_PERCENT] = ACTIONS(1252), - [anon_sym_DASH_DASH] = ACTIONS(1044), - [anon_sym_PLUS_PLUS] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1046), - [anon_sym_DASH_GT] = ACTIONS(1046), - [sym_comment] = ACTIONS(37), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3062), + [sym_comment] = ACTIONS(59), }, [998] = { - [sym_argument_list] = STATE(430), - [anon_sym_SEMI] = ACTIONS(2989), - [anon_sym_LPAREN2] = ACTIONS(1012), - [anon_sym_STAR] = ACTIONS(1319), - [anon_sym_LBRACK] = ACTIONS(1016), - [anon_sym_EQ] = ACTIONS(1321), - [anon_sym_QMARK] = ACTIONS(1323), - [anon_sym_STAR_EQ] = ACTIONS(1325), - [anon_sym_SLASH_EQ] = ACTIONS(1325), - [anon_sym_PERCENT_EQ] = ACTIONS(1325), - [anon_sym_PLUS_EQ] = ACTIONS(1325), - [anon_sym_DASH_EQ] = ACTIONS(1325), - [anon_sym_LT_LT_EQ] = ACTIONS(1325), - [anon_sym_GT_GT_EQ] = ACTIONS(1325), - [anon_sym_AMP_EQ] = ACTIONS(1325), - [anon_sym_CARET_EQ] = ACTIONS(1325), - [anon_sym_PIPE_EQ] = ACTIONS(1325), - [anon_sym_AMP] = ACTIONS(1327), - [anon_sym_PIPE_PIPE] = ACTIONS(1329), - [anon_sym_AMP_AMP] = ACTIONS(1331), - [anon_sym_PIPE] = ACTIONS(1333), - [anon_sym_CARET] = ACTIONS(1335), - [anon_sym_EQ_EQ] = ACTIONS(1337), - [anon_sym_BANG_EQ] = ACTIONS(1337), - [anon_sym_LT] = ACTIONS(1339), - [anon_sym_GT] = ACTIONS(1339), - [anon_sym_LT_EQ] = ACTIONS(1341), - [anon_sym_GT_EQ] = ACTIONS(1341), - [anon_sym_LT_LT] = ACTIONS(1343), - [anon_sym_GT_GT] = ACTIONS(1343), - [anon_sym_PLUS] = ACTIONS(1345), - [anon_sym_DASH] = ACTIONS(1345), - [anon_sym_SLASH] = ACTIONS(1319), - [anon_sym_PERCENT] = ACTIONS(1319), - [anon_sym_DASH_DASH] = ACTIONS(1044), - [anon_sym_PLUS_PLUS] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1046), - [anon_sym_DASH_GT] = ACTIONS(1046), - [sym_comment] = ACTIONS(37), + [sym_preproc_include] = STATE(923), + [sym_preproc_def] = STATE(923), + [sym_preproc_function_def] = STATE(923), + [sym_preproc_call] = STATE(923), + [sym_preproc_if_in_compound_statement] = STATE(923), + [sym_preproc_ifdef_in_compound_statement] = STATE(923), + [sym_preproc_else_in_compound_statement] = STATE(1078), + [sym_preproc_elif_in_compound_statement] = STATE(1078), + [sym_declaration] = STATE(923), + [sym_type_definition] = STATE(923), + [sym__declaration_specifiers] = STATE(755), + [sym_compound_statement] = STATE(923), + [sym_storage_class_specifier] = STATE(30), + [sym_type_qualifier] = STATE(30), + [sym__type_specifier] = STATE(25), + [sym_sized_type_specifier] = STATE(25), + [sym_enum_specifier] = STATE(25), + [sym_struct_specifier] = STATE(25), + [sym_union_specifier] = STATE(25), + [sym_labeled_statement] = STATE(923), + [sym_expression_statement] = STATE(923), + [sym_if_statement] = STATE(923), + [sym_switch_statement] = STATE(923), + [sym_case_statement] = STATE(923), + [sym_while_statement] = STATE(923), + [sym_do_statement] = STATE(923), + [sym_for_statement] = STATE(923), + [sym_return_statement] = STATE(923), + [sym_break_statement] = STATE(923), + [sym_continue_statement] = STATE(923), + [sym_goto_statement] = STATE(923), + [sym__expression] = STATE(756), + [sym_comma_expression] = STATE(757), + [sym_conditional_expression] = STATE(756), + [sym_assignment_expression] = STATE(756), + [sym_pointer_expression] = STATE(756), + [sym_logical_expression] = STATE(756), + [sym_bitwise_expression] = STATE(756), + [sym_equality_expression] = STATE(756), + [sym_relational_expression] = STATE(756), + [sym_shift_expression] = STATE(756), + [sym_math_expression] = STATE(756), + [sym_cast_expression] = STATE(756), + [sym_sizeof_expression] = STATE(756), + [sym_subscript_expression] = STATE(756), + [sym_call_expression] = STATE(756), + [sym_field_expression] = STATE(756), + [sym_compound_literal_expression] = STATE(756), + [sym_parenthesized_expression] = STATE(756), + [sym_char_literal] = STATE(756), + [sym_concatenated_string] = STATE(756), + [sym_string_literal] = STATE(374), + [sym__empty_declaration] = STATE(923), + [sym_macro_type_specifier] = STATE(25), + [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(923), + [aux_sym__declaration_specifiers_repeat1] = STATE(30), + [aux_sym_sized_type_specifier_repeat1] = STATE(31), + [anon_sym_SEMI] = ACTIONS(1940), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(251), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(253), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1942), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3064), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1946), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1946), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1948), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1950), + [sym_preproc_directive] = ACTIONS(265), + [anon_sym_typedef] = ACTIONS(267), + [anon_sym_extern] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_LPAREN2] = ACTIONS(936), + [anon_sym_STAR] = ACTIONS(938), + [anon_sym_static] = ACTIONS(25), + [anon_sym_auto] = ACTIONS(25), + [anon_sym_register] = ACTIONS(25), + [anon_sym_inline] = ACTIONS(25), + [anon_sym_const] = ACTIONS(27), + [anon_sym_restrict] = ACTIONS(27), + [anon_sym_volatile] = ACTIONS(27), + [anon_sym__Atomic] = ACTIONS(27), + [anon_sym_unsigned] = ACTIONS(29), + [anon_sym_long] = ACTIONS(29), + [anon_sym_short] = ACTIONS(29), + [sym_primitive_type] = ACTIONS(31), + [anon_sym_enum] = ACTIONS(33), + [anon_sym_struct] = ACTIONS(35), + [anon_sym_union] = ACTIONS(37), + [anon_sym_if] = ACTIONS(1952), + [anon_sym_switch] = ACTIONS(1954), + [anon_sym_case] = ACTIONS(1956), + [anon_sym_default] = ACTIONS(1958), + [anon_sym_while] = ACTIONS(1960), + [anon_sym_do] = ACTIONS(1962), + [anon_sym_for] = ACTIONS(1964), + [anon_sym_return] = ACTIONS(1966), + [anon_sym_break] = ACTIONS(1968), + [anon_sym_continue] = ACTIONS(1970), + [anon_sym_goto] = ACTIONS(1972), + [anon_sym_AMP] = ACTIONS(938), + [anon_sym_BANG] = ACTIONS(962), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_DASH_DASH] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(968), + [anon_sym_sizeof] = ACTIONS(970), + [sym_number_literal] = ACTIONS(1974), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(1976), + [sym_false] = ACTIONS(1976), + [sym_null] = ACTIONS(1976), + [sym_identifier] = ACTIONS(1978), + [sym_comment] = ACTIONS(59), }, [999] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2553), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2553), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2553), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2553), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2553), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2553), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2553), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2553), - [sym_preproc_directive] = ACTIONS(2553), - [anon_sym_SEMI] = ACTIONS(2555), - [anon_sym_typedef] = ACTIONS(2553), - [anon_sym_extern] = ACTIONS(2553), - [anon_sym_LBRACE] = ACTIONS(2555), - [anon_sym_LPAREN2] = ACTIONS(2555), - [anon_sym_STAR] = ACTIONS(2555), - [anon_sym_static] = ACTIONS(2553), - [anon_sym_auto] = ACTIONS(2553), - [anon_sym_register] = ACTIONS(2553), - [anon_sym_inline] = ACTIONS(2553), - [anon_sym_const] = ACTIONS(2553), - [anon_sym_restrict] = ACTIONS(2553), - [anon_sym_volatile] = ACTIONS(2553), - [anon_sym__Atomic] = ACTIONS(2553), - [anon_sym_unsigned] = ACTIONS(2553), - [anon_sym_long] = ACTIONS(2553), - [anon_sym_short] = ACTIONS(2553), - [sym_primitive_type] = ACTIONS(2553), - [anon_sym_enum] = ACTIONS(2553), - [anon_sym_struct] = ACTIONS(2553), - [anon_sym_union] = ACTIONS(2553), - [anon_sym_if] = ACTIONS(2553), - [anon_sym_switch] = ACTIONS(2553), - [anon_sym_case] = ACTIONS(2553), - [anon_sym_default] = ACTIONS(2553), - [anon_sym_while] = ACTIONS(2553), - [anon_sym_do] = ACTIONS(2553), - [anon_sym_for] = ACTIONS(2553), - [anon_sym_return] = ACTIONS(2553), - [anon_sym_break] = ACTIONS(2553), - [anon_sym_continue] = ACTIONS(2553), - [anon_sym_goto] = ACTIONS(2553), - [anon_sym_AMP] = ACTIONS(2555), - [anon_sym_BANG] = ACTIONS(2555), - [anon_sym_TILDE] = ACTIONS(2555), - [anon_sym_PLUS] = ACTIONS(2553), - [anon_sym_DASH] = ACTIONS(2553), - [anon_sym_DASH_DASH] = ACTIONS(2555), - [anon_sym_PLUS_PLUS] = ACTIONS(2555), - [anon_sym_sizeof] = ACTIONS(2553), - [sym_number_literal] = ACTIONS(2555), - [anon_sym_SQUOTE] = ACTIONS(2555), - [anon_sym_DQUOTE] = ACTIONS(2555), - [sym_true] = ACTIONS(2553), - [sym_false] = ACTIONS(2553), - [sym_null] = ACTIONS(2553), - [sym_identifier] = ACTIONS(2553), - [sym_comment] = ACTIONS(37), + [sym_parenthesized_expression] = STATE(1079), + [anon_sym_LPAREN2] = ACTIONS(1448), + [sym_comment] = ACTIONS(59), }, [1000] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2995), - [sym_comment] = ACTIONS(37), + [sym_parenthesized_expression] = STATE(1080), + [anon_sym_LPAREN2] = ACTIONS(1448), + [sym_comment] = ACTIONS(59), }, [1001] = { + [sym__expression] = STATE(1081), + [sym_conditional_expression] = STATE(1081), + [sym_assignment_expression] = STATE(1081), + [sym_pointer_expression] = STATE(1081), + [sym_logical_expression] = STATE(1081), + [sym_bitwise_expression] = STATE(1081), + [sym_equality_expression] = STATE(1081), + [sym_relational_expression] = STATE(1081), + [sym_shift_expression] = STATE(1081), + [sym_math_expression] = STATE(1081), + [sym_cast_expression] = STATE(1081), + [sym_sizeof_expression] = STATE(1081), + [sym_subscript_expression] = STATE(1081), + [sym_call_expression] = STATE(1081), + [sym_field_expression] = STATE(1081), + [sym_compound_literal_expression] = STATE(1081), + [sym_parenthesized_expression] = STATE(1081), + [sym_char_literal] = STATE(1081), + [sym_concatenated_string] = STATE(1081), + [sym_string_literal] = STATE(223), + [anon_sym_LPAREN2] = ACTIONS(483), + [anon_sym_STAR] = ACTIONS(485), + [anon_sym_AMP] = ACTIONS(485), + [anon_sym_BANG] = ACTIONS(487), + [anon_sym_TILDE] = ACTIONS(489), + [anon_sym_PLUS] = ACTIONS(491), + [anon_sym_DASH] = ACTIONS(491), + [anon_sym_DASH_DASH] = ACTIONS(493), + [anon_sym_PLUS_PLUS] = ACTIONS(493), + [anon_sym_sizeof] = ACTIONS(495), + [sym_number_literal] = ACTIONS(3066), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(3068), + [sym_false] = ACTIONS(3068), + [sym_null] = ACTIONS(3068), + [sym_identifier] = ACTIONS(3068), + [sym_comment] = ACTIONS(59), + }, + [1002] = { + [anon_sym_COLON] = ACTIONS(3070), + [sym_comment] = ACTIONS(59), + }, + [1003] = { + [sym_parenthesized_expression] = STATE(1083), + [anon_sym_LPAREN2] = ACTIONS(1448), + [sym_comment] = ACTIONS(59), + }, + [1004] = { + [anon_sym_LPAREN2] = ACTIONS(3072), + [sym_comment] = ACTIONS(59), + }, + [1005] = { + [anon_sym_SEMI] = ACTIONS(166), + [anon_sym_COMMA] = ACTIONS(166), + [anon_sym_LPAREN2] = ACTIONS(166), + [anon_sym_STAR] = ACTIONS(168), + [anon_sym_LBRACK] = ACTIONS(166), + [anon_sym_EQ] = ACTIONS(168), + [anon_sym_COLON] = ACTIONS(3074), + [anon_sym_QMARK] = ACTIONS(166), + [anon_sym_STAR_EQ] = ACTIONS(166), + [anon_sym_SLASH_EQ] = ACTIONS(166), + [anon_sym_PERCENT_EQ] = ACTIONS(166), + [anon_sym_PLUS_EQ] = ACTIONS(166), + [anon_sym_DASH_EQ] = ACTIONS(166), + [anon_sym_LT_LT_EQ] = ACTIONS(166), + [anon_sym_GT_GT_EQ] = ACTIONS(166), + [anon_sym_AMP_EQ] = ACTIONS(166), + [anon_sym_CARET_EQ] = ACTIONS(166), + [anon_sym_PIPE_EQ] = ACTIONS(166), + [anon_sym_AMP] = ACTIONS(168), + [anon_sym_PIPE_PIPE] = ACTIONS(166), + [anon_sym_AMP_AMP] = ACTIONS(166), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_CARET] = ACTIONS(168), + [anon_sym_EQ_EQ] = ACTIONS(166), + [anon_sym_BANG_EQ] = ACTIONS(166), + [anon_sym_LT] = ACTIONS(168), + [anon_sym_GT] = ACTIONS(168), + [anon_sym_LT_EQ] = ACTIONS(166), + [anon_sym_GT_EQ] = ACTIONS(166), + [anon_sym_LT_LT] = ACTIONS(168), + [anon_sym_GT_GT] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(168), + [anon_sym_DASH] = ACTIONS(168), + [anon_sym_SLASH] = ACTIONS(168), + [anon_sym_PERCENT] = ACTIONS(168), + [anon_sym_DASH_DASH] = ACTIONS(166), + [anon_sym_PLUS_PLUS] = ACTIONS(166), + [anon_sym_DOT] = ACTIONS(166), + [anon_sym_DASH_GT] = ACTIONS(166), + [sym_comment] = ACTIONS(59), + }, + [1006] = { + [anon_sym_SEMI] = ACTIONS(2569), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2571), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2571), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2571), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2571), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2571), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2571), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2571), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2571), + [sym_preproc_directive] = ACTIONS(2571), + [anon_sym_typedef] = ACTIONS(2571), + [anon_sym_extern] = ACTIONS(2571), + [anon_sym_LBRACE] = ACTIONS(2569), + [anon_sym_LPAREN2] = ACTIONS(2569), + [anon_sym_STAR] = ACTIONS(2569), + [anon_sym_static] = ACTIONS(2571), + [anon_sym_auto] = ACTIONS(2571), + [anon_sym_register] = ACTIONS(2571), + [anon_sym_inline] = ACTIONS(2571), + [anon_sym_const] = ACTIONS(2571), + [anon_sym_restrict] = ACTIONS(2571), + [anon_sym_volatile] = ACTIONS(2571), + [anon_sym__Atomic] = ACTIONS(2571), + [anon_sym_unsigned] = ACTIONS(2571), + [anon_sym_long] = ACTIONS(2571), + [anon_sym_short] = ACTIONS(2571), + [sym_primitive_type] = ACTIONS(2571), + [anon_sym_enum] = ACTIONS(2571), + [anon_sym_struct] = ACTIONS(2571), + [anon_sym_union] = ACTIONS(2571), + [anon_sym_if] = ACTIONS(2571), + [anon_sym_else] = ACTIONS(3076), + [anon_sym_switch] = ACTIONS(2571), + [anon_sym_case] = ACTIONS(2571), + [anon_sym_default] = ACTIONS(2571), + [anon_sym_while] = ACTIONS(2571), + [anon_sym_do] = ACTIONS(2571), + [anon_sym_for] = ACTIONS(2571), + [anon_sym_return] = ACTIONS(2571), + [anon_sym_break] = ACTIONS(2571), + [anon_sym_continue] = ACTIONS(2571), + [anon_sym_goto] = ACTIONS(2571), + [anon_sym_AMP] = ACTIONS(2569), + [anon_sym_BANG] = ACTIONS(2569), + [anon_sym_TILDE] = ACTIONS(2569), + [anon_sym_PLUS] = ACTIONS(2571), + [anon_sym_DASH] = ACTIONS(2571), + [anon_sym_DASH_DASH] = ACTIONS(2569), + [anon_sym_PLUS_PLUS] = ACTIONS(2569), + [anon_sym_sizeof] = ACTIONS(2571), + [sym_number_literal] = ACTIONS(2569), + [anon_sym_SQUOTE] = ACTIONS(2569), + [anon_sym_DQUOTE] = ACTIONS(2569), + [sym_true] = ACTIONS(2571), + [sym_false] = ACTIONS(2571), + [sym_null] = ACTIONS(2571), + [sym_identifier] = ACTIONS(2571), + [sym_comment] = ACTIONS(59), + }, + [1007] = { + [anon_sym_SEMI] = ACTIONS(166), + [anon_sym_COMMA] = ACTIONS(166), + [anon_sym_LPAREN2] = ACTIONS(166), + [anon_sym_STAR] = ACTIONS(168), + [anon_sym_LBRACK] = ACTIONS(166), + [anon_sym_EQ] = ACTIONS(168), + [anon_sym_COLON] = ACTIONS(2539), + [anon_sym_QMARK] = ACTIONS(166), + [anon_sym_STAR_EQ] = ACTIONS(166), + [anon_sym_SLASH_EQ] = ACTIONS(166), + [anon_sym_PERCENT_EQ] = ACTIONS(166), + [anon_sym_PLUS_EQ] = ACTIONS(166), + [anon_sym_DASH_EQ] = ACTIONS(166), + [anon_sym_LT_LT_EQ] = ACTIONS(166), + [anon_sym_GT_GT_EQ] = ACTIONS(166), + [anon_sym_AMP_EQ] = ACTIONS(166), + [anon_sym_CARET_EQ] = ACTIONS(166), + [anon_sym_PIPE_EQ] = ACTIONS(166), + [anon_sym_AMP] = ACTIONS(168), + [anon_sym_PIPE_PIPE] = ACTIONS(166), + [anon_sym_AMP_AMP] = ACTIONS(166), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_CARET] = ACTIONS(168), + [anon_sym_EQ_EQ] = ACTIONS(166), + [anon_sym_BANG_EQ] = ACTIONS(166), + [anon_sym_LT] = ACTIONS(168), + [anon_sym_GT] = ACTIONS(168), + [anon_sym_LT_EQ] = ACTIONS(166), + [anon_sym_GT_EQ] = ACTIONS(166), + [anon_sym_LT_LT] = ACTIONS(168), + [anon_sym_GT_GT] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(168), + [anon_sym_DASH] = ACTIONS(168), + [anon_sym_SLASH] = ACTIONS(168), + [anon_sym_PERCENT] = ACTIONS(168), + [anon_sym_DASH_DASH] = ACTIONS(166), + [anon_sym_PLUS_PLUS] = ACTIONS(166), + [anon_sym_DOT] = ACTIONS(166), + [anon_sym_DASH_GT] = ACTIONS(166), + [sym_comment] = ACTIONS(59), + }, + [1008] = { + [anon_sym_SEMI] = ACTIONS(2575), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2577), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2577), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2577), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2577), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2577), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2577), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2577), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2577), + [sym_preproc_directive] = ACTIONS(2577), + [anon_sym_typedef] = ACTIONS(2577), + [anon_sym_extern] = ACTIONS(2577), + [anon_sym_LBRACE] = ACTIONS(2575), + [anon_sym_LPAREN2] = ACTIONS(2575), + [anon_sym_STAR] = ACTIONS(2575), + [anon_sym_static] = ACTIONS(2577), + [anon_sym_auto] = ACTIONS(2577), + [anon_sym_register] = ACTIONS(2577), + [anon_sym_inline] = ACTIONS(2577), + [anon_sym_const] = ACTIONS(2577), + [anon_sym_restrict] = ACTIONS(2577), + [anon_sym_volatile] = ACTIONS(2577), + [anon_sym__Atomic] = ACTIONS(2577), + [anon_sym_unsigned] = ACTIONS(2577), + [anon_sym_long] = ACTIONS(2577), + [anon_sym_short] = ACTIONS(2577), + [sym_primitive_type] = ACTIONS(2577), + [anon_sym_enum] = ACTIONS(2577), + [anon_sym_struct] = ACTIONS(2577), + [anon_sym_union] = ACTIONS(2577), + [anon_sym_if] = ACTIONS(2577), + [anon_sym_else] = ACTIONS(2577), + [anon_sym_switch] = ACTIONS(2577), + [anon_sym_case] = ACTIONS(2577), + [anon_sym_default] = ACTIONS(2577), + [anon_sym_while] = ACTIONS(2577), + [anon_sym_do] = ACTIONS(2577), + [anon_sym_for] = ACTIONS(2577), + [anon_sym_return] = ACTIONS(2577), + [anon_sym_break] = ACTIONS(2577), + [anon_sym_continue] = ACTIONS(2577), + [anon_sym_goto] = ACTIONS(2577), + [anon_sym_AMP] = ACTIONS(2575), + [anon_sym_BANG] = ACTIONS(2575), + [anon_sym_TILDE] = ACTIONS(2575), + [anon_sym_PLUS] = ACTIONS(2577), + [anon_sym_DASH] = ACTIONS(2577), + [anon_sym_DASH_DASH] = ACTIONS(2575), + [anon_sym_PLUS_PLUS] = ACTIONS(2575), + [anon_sym_sizeof] = ACTIONS(2577), + [sym_number_literal] = ACTIONS(2575), + [anon_sym_SQUOTE] = ACTIONS(2575), + [anon_sym_DQUOTE] = ACTIONS(2575), + [sym_true] = ACTIONS(2577), + [sym_false] = ACTIONS(2577), + [sym_null] = ACTIONS(2577), + [sym_identifier] = ACTIONS(2577), + [sym_comment] = ACTIONS(59), + }, + [1009] = { + [sym_declaration] = STATE(1087), + [sym_type_definition] = STATE(1087), + [sym__declaration_specifiers] = STATE(1012), + [sym_compound_statement] = STATE(1087), + [sym_storage_class_specifier] = STATE(142), + [sym_type_qualifier] = STATE(142), + [sym__type_specifier] = STATE(141), + [sym_sized_type_specifier] = STATE(141), + [sym_enum_specifier] = STATE(141), + [sym_struct_specifier] = STATE(141), + [sym_union_specifier] = STATE(141), + [sym_labeled_statement] = STATE(1087), + [sym_expression_statement] = STATE(1087), + [sym_if_statement] = STATE(1087), + [sym_switch_statement] = STATE(1087), + [sym_case_statement] = STATE(1087), + [sym_while_statement] = STATE(1087), + [sym_do_statement] = STATE(1087), + [sym_for_statement] = STATE(1087), + [sym_return_statement] = STATE(1087), + [sym_break_statement] = STATE(1087), + [sym_continue_statement] = STATE(1087), + [sym_goto_statement] = STATE(1087), + [sym__expression] = STATE(756), + [sym_comma_expression] = STATE(757), + [sym_conditional_expression] = STATE(756), + [sym_assignment_expression] = STATE(756), + [sym_pointer_expression] = STATE(756), + [sym_logical_expression] = STATE(756), + [sym_bitwise_expression] = STATE(756), + [sym_equality_expression] = STATE(756), + [sym_relational_expression] = STATE(756), + [sym_shift_expression] = STATE(756), + [sym_math_expression] = STATE(756), + [sym_cast_expression] = STATE(756), + [sym_sizeof_expression] = STATE(756), + [sym_subscript_expression] = STATE(756), + [sym_call_expression] = STATE(756), + [sym_field_expression] = STATE(756), + [sym_compound_literal_expression] = STATE(756), + [sym_parenthesized_expression] = STATE(756), + [sym_char_literal] = STATE(756), + [sym_concatenated_string] = STATE(756), + [sym_string_literal] = STATE(374), + [sym_macro_type_specifier] = STATE(141), + [aux_sym__declaration_specifiers_repeat1] = STATE(142), + [aux_sym_sized_type_specifier_repeat1] = STATE(143), + [anon_sym_SEMI] = ACTIONS(1940), + [anon_sym_typedef] = ACTIONS(267), + [anon_sym_extern] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_LPAREN2] = ACTIONS(936), + [anon_sym_STAR] = ACTIONS(938), + [anon_sym_static] = ACTIONS(25), + [anon_sym_auto] = ACTIONS(25), + [anon_sym_register] = ACTIONS(25), + [anon_sym_inline] = ACTIONS(25), + [anon_sym_const] = ACTIONS(27), + [anon_sym_restrict] = ACTIONS(27), + [anon_sym_volatile] = ACTIONS(27), + [anon_sym__Atomic] = ACTIONS(27), + [anon_sym_unsigned] = ACTIONS(294), + [anon_sym_long] = ACTIONS(294), + [anon_sym_short] = ACTIONS(294), + [sym_primitive_type] = ACTIONS(296), + [anon_sym_enum] = ACTIONS(33), + [anon_sym_struct] = ACTIONS(35), + [anon_sym_union] = ACTIONS(37), + [anon_sym_if] = ACTIONS(1952), + [anon_sym_switch] = ACTIONS(1954), + [anon_sym_case] = ACTIONS(1956), + [anon_sym_default] = ACTIONS(1958), + [anon_sym_while] = ACTIONS(1960), + [anon_sym_do] = ACTIONS(1962), + [anon_sym_for] = ACTIONS(1964), + [anon_sym_return] = ACTIONS(1966), + [anon_sym_break] = ACTIONS(1968), + [anon_sym_continue] = ACTIONS(1970), + [anon_sym_goto] = ACTIONS(1972), + [anon_sym_AMP] = ACTIONS(938), + [anon_sym_BANG] = ACTIONS(962), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_DASH_DASH] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(968), + [anon_sym_sizeof] = ACTIONS(970), + [sym_number_literal] = ACTIONS(1974), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(1976), + [sym_false] = ACTIONS(1976), + [sym_null] = ACTIONS(1976), + [sym_identifier] = ACTIONS(2770), + [sym_comment] = ACTIONS(59), + }, + [1010] = { + [anon_sym_SEMI] = ACTIONS(166), + [anon_sym_COMMA] = ACTIONS(166), + [anon_sym_extern] = ACTIONS(157), + [anon_sym_LPAREN2] = ACTIONS(159), + [anon_sym_STAR] = ACTIONS(163), + [anon_sym_LBRACK] = ACTIONS(166), + [anon_sym_EQ] = ACTIONS(168), + [anon_sym_static] = ACTIONS(157), + [anon_sym_auto] = ACTIONS(157), + [anon_sym_register] = ACTIONS(157), + [anon_sym_inline] = ACTIONS(157), + [anon_sym_const] = ACTIONS(157), + [anon_sym_restrict] = ACTIONS(157), + [anon_sym_volatile] = ACTIONS(157), + [anon_sym__Atomic] = ACTIONS(157), + [anon_sym_COLON] = ACTIONS(2539), + [anon_sym_QMARK] = ACTIONS(166), + [anon_sym_STAR_EQ] = ACTIONS(166), + [anon_sym_SLASH_EQ] = ACTIONS(166), + [anon_sym_PERCENT_EQ] = ACTIONS(166), + [anon_sym_PLUS_EQ] = ACTIONS(166), + [anon_sym_DASH_EQ] = ACTIONS(166), + [anon_sym_LT_LT_EQ] = ACTIONS(166), + [anon_sym_GT_GT_EQ] = ACTIONS(166), + [anon_sym_AMP_EQ] = ACTIONS(166), + [anon_sym_CARET_EQ] = ACTIONS(166), + [anon_sym_PIPE_EQ] = ACTIONS(166), + [anon_sym_AMP] = ACTIONS(168), + [anon_sym_PIPE_PIPE] = ACTIONS(166), + [anon_sym_AMP_AMP] = ACTIONS(166), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_CARET] = ACTIONS(168), + [anon_sym_EQ_EQ] = ACTIONS(166), + [anon_sym_BANG_EQ] = ACTIONS(166), + [anon_sym_LT] = ACTIONS(168), + [anon_sym_GT] = ACTIONS(168), + [anon_sym_LT_EQ] = ACTIONS(166), + [anon_sym_GT_EQ] = ACTIONS(166), + [anon_sym_LT_LT] = ACTIONS(168), + [anon_sym_GT_GT] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(168), + [anon_sym_DASH] = ACTIONS(168), + [anon_sym_SLASH] = ACTIONS(168), + [anon_sym_PERCENT] = ACTIONS(168), + [anon_sym_DASH_DASH] = ACTIONS(166), + [anon_sym_PLUS_PLUS] = ACTIONS(166), + [anon_sym_DOT] = ACTIONS(166), + [anon_sym_DASH_GT] = ACTIONS(166), + [sym_identifier] = ACTIONS(157), + [sym_comment] = ACTIONS(59), + }, + [1011] = { + [anon_sym_SEMI] = ACTIONS(2579), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2581), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2581), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2581), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2581), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2581), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2581), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2581), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2581), + [sym_preproc_directive] = ACTIONS(2581), + [anon_sym_typedef] = ACTIONS(2581), + [anon_sym_extern] = ACTIONS(2581), + [anon_sym_LBRACE] = ACTIONS(2579), + [anon_sym_LPAREN2] = ACTIONS(2579), + [anon_sym_STAR] = ACTIONS(2579), + [anon_sym_static] = ACTIONS(2581), + [anon_sym_auto] = ACTIONS(2581), + [anon_sym_register] = ACTIONS(2581), + [anon_sym_inline] = ACTIONS(2581), + [anon_sym_const] = ACTIONS(2581), + [anon_sym_restrict] = ACTIONS(2581), + [anon_sym_volatile] = ACTIONS(2581), + [anon_sym__Atomic] = ACTIONS(2581), + [anon_sym_unsigned] = ACTIONS(2581), + [anon_sym_long] = ACTIONS(2581), + [anon_sym_short] = ACTIONS(2581), + [sym_primitive_type] = ACTIONS(2581), + [anon_sym_enum] = ACTIONS(2581), + [anon_sym_struct] = ACTIONS(2581), + [anon_sym_union] = ACTIONS(2581), + [anon_sym_if] = ACTIONS(2581), + [anon_sym_else] = ACTIONS(2581), + [anon_sym_switch] = ACTIONS(2581), + [anon_sym_case] = ACTIONS(2581), + [anon_sym_default] = ACTIONS(2581), + [anon_sym_while] = ACTIONS(2581), + [anon_sym_do] = ACTIONS(2581), + [anon_sym_for] = ACTIONS(2581), + [anon_sym_return] = ACTIONS(2581), + [anon_sym_break] = ACTIONS(2581), + [anon_sym_continue] = ACTIONS(2581), + [anon_sym_goto] = ACTIONS(2581), + [anon_sym_AMP] = ACTIONS(2579), + [anon_sym_BANG] = ACTIONS(2579), + [anon_sym_TILDE] = ACTIONS(2579), + [anon_sym_PLUS] = ACTIONS(2581), + [anon_sym_DASH] = ACTIONS(2581), + [anon_sym_DASH_DASH] = ACTIONS(2579), + [anon_sym_PLUS_PLUS] = ACTIONS(2579), + [anon_sym_sizeof] = ACTIONS(2581), + [sym_number_literal] = ACTIONS(2579), + [anon_sym_SQUOTE] = ACTIONS(2579), + [anon_sym_DQUOTE] = ACTIONS(2579), + [sym_true] = ACTIONS(2581), + [sym_false] = ACTIONS(2581), + [sym_null] = ACTIONS(2581), + [sym_identifier] = ACTIONS(2581), + [sym_comment] = ACTIONS(59), + }, + [1012] = { + [sym__declarator] = STATE(920), + [sym_pointer_declarator] = STATE(920), + [sym_function_declarator] = STATE(920), + [sym_array_declarator] = STATE(920), + [sym_init_declarator] = STATE(266), + [anon_sym_LPAREN2] = ACTIONS(174), + [anon_sym_STAR] = ACTIONS(924), + [sym_identifier] = ACTIONS(2543), + [sym_comment] = ACTIONS(59), + }, + [1013] = { + [anon_sym_SEMI] = ACTIONS(2583), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2585), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2585), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2585), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2585), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2585), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2585), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2585), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2585), + [sym_preproc_directive] = ACTIONS(2585), + [anon_sym_typedef] = ACTIONS(2585), + [anon_sym_extern] = ACTIONS(2585), + [anon_sym_LBRACE] = ACTIONS(2583), + [anon_sym_LPAREN2] = ACTIONS(2583), + [anon_sym_STAR] = ACTIONS(2583), + [anon_sym_static] = ACTIONS(2585), + [anon_sym_auto] = ACTIONS(2585), + [anon_sym_register] = ACTIONS(2585), + [anon_sym_inline] = ACTIONS(2585), + [anon_sym_const] = ACTIONS(2585), + [anon_sym_restrict] = ACTIONS(2585), + [anon_sym_volatile] = ACTIONS(2585), + [anon_sym__Atomic] = ACTIONS(2585), + [anon_sym_unsigned] = ACTIONS(2585), + [anon_sym_long] = ACTIONS(2585), + [anon_sym_short] = ACTIONS(2585), + [sym_primitive_type] = ACTIONS(2585), + [anon_sym_enum] = ACTIONS(2585), + [anon_sym_struct] = ACTIONS(2585), + [anon_sym_union] = ACTIONS(2585), + [anon_sym_if] = ACTIONS(2585), + [anon_sym_else] = ACTIONS(2585), + [anon_sym_switch] = ACTIONS(2585), + [anon_sym_case] = ACTIONS(2585), + [anon_sym_default] = ACTIONS(2585), + [anon_sym_while] = ACTIONS(2585), + [anon_sym_do] = ACTIONS(2585), + [anon_sym_for] = ACTIONS(2585), + [anon_sym_return] = ACTIONS(2585), + [anon_sym_break] = ACTIONS(2585), + [anon_sym_continue] = ACTIONS(2585), + [anon_sym_goto] = ACTIONS(2585), + [anon_sym_AMP] = ACTIONS(2583), + [anon_sym_BANG] = ACTIONS(2583), + [anon_sym_TILDE] = ACTIONS(2583), + [anon_sym_PLUS] = ACTIONS(2585), + [anon_sym_DASH] = ACTIONS(2585), + [anon_sym_DASH_DASH] = ACTIONS(2583), + [anon_sym_PLUS_PLUS] = ACTIONS(2583), + [anon_sym_sizeof] = ACTIONS(2585), + [sym_number_literal] = ACTIONS(2583), + [anon_sym_SQUOTE] = ACTIONS(2583), + [anon_sym_DQUOTE] = ACTIONS(2583), + [sym_true] = ACTIONS(2585), + [sym_false] = ACTIONS(2585), + [sym_null] = ACTIONS(2585), + [sym_identifier] = ACTIONS(2585), + [sym_comment] = ACTIONS(59), + }, + [1014] = { + [sym_parenthesized_expression] = STATE(1089), + [anon_sym_LPAREN2] = ACTIONS(3078), + [sym_comment] = ACTIONS(59), + }, + [1015] = { + [sym__expression] = STATE(1091), + [sym_conditional_expression] = STATE(1091), + [sym_assignment_expression] = STATE(1091), + [sym_pointer_expression] = STATE(1091), + [sym_logical_expression] = STATE(1091), + [sym_bitwise_expression] = STATE(1091), + [sym_equality_expression] = STATE(1091), + [sym_relational_expression] = STATE(1091), + [sym_shift_expression] = STATE(1091), + [sym_math_expression] = STATE(1091), + [sym_cast_expression] = STATE(1091), + [sym_sizeof_expression] = STATE(1091), + [sym_subscript_expression] = STATE(1091), + [sym_call_expression] = STATE(1091), + [sym_field_expression] = STATE(1091), + [sym_compound_literal_expression] = STATE(1091), + [sym_parenthesized_expression] = STATE(1091), + [sym_char_literal] = STATE(1091), + [sym_concatenated_string] = STATE(1091), + [sym_string_literal] = STATE(534), + [anon_sym_SEMI] = ACTIONS(3080), + [anon_sym_LPAREN2] = ACTIONS(1349), + [anon_sym_STAR] = ACTIONS(1351), + [anon_sym_AMP] = ACTIONS(1351), + [anon_sym_BANG] = ACTIONS(1353), + [anon_sym_TILDE] = ACTIONS(1355), + [anon_sym_PLUS] = ACTIONS(1357), + [anon_sym_DASH] = ACTIONS(1357), + [anon_sym_DASH_DASH] = ACTIONS(1359), + [anon_sym_PLUS_PLUS] = ACTIONS(1359), + [anon_sym_sizeof] = ACTIONS(1361), + [sym_number_literal] = ACTIONS(3082), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(3084), + [sym_false] = ACTIONS(3084), + [sym_null] = ACTIONS(3084), + [sym_identifier] = ACTIONS(3084), + [sym_comment] = ACTIONS(59), + }, + [1016] = { + [sym_argument_list] = STATE(98), + [anon_sym_SEMI] = ACTIONS(3086), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_LBRACK] = ACTIONS(188), + [anon_sym_EQ] = ACTIONS(1896), + [anon_sym_QMARK] = ACTIONS(1898), + [anon_sym_STAR_EQ] = ACTIONS(1900), + [anon_sym_SLASH_EQ] = ACTIONS(1900), + [anon_sym_PERCENT_EQ] = ACTIONS(1900), + [anon_sym_PLUS_EQ] = ACTIONS(1900), + [anon_sym_DASH_EQ] = ACTIONS(1900), + [anon_sym_LT_LT_EQ] = ACTIONS(1900), + [anon_sym_GT_GT_EQ] = ACTIONS(1900), + [anon_sym_AMP_EQ] = ACTIONS(1900), + [anon_sym_CARET_EQ] = ACTIONS(1900), + [anon_sym_PIPE_EQ] = ACTIONS(1900), + [anon_sym_AMP] = ACTIONS(1902), + [anon_sym_PIPE_PIPE] = ACTIONS(1904), + [anon_sym_AMP_AMP] = ACTIONS(1906), + [anon_sym_PIPE] = ACTIONS(1908), + [anon_sym_CARET] = ACTIONS(1910), + [anon_sym_EQ_EQ] = ACTIONS(1912), + [anon_sym_BANG_EQ] = ACTIONS(1912), + [anon_sym_LT] = ACTIONS(1914), + [anon_sym_GT] = ACTIONS(1914), + [anon_sym_LT_EQ] = ACTIONS(1916), + [anon_sym_GT_EQ] = ACTIONS(1916), + [anon_sym_LT_LT] = ACTIONS(1918), + [anon_sym_GT_GT] = ACTIONS(1918), + [anon_sym_PLUS] = ACTIONS(1920), + [anon_sym_DASH] = ACTIONS(1920), + [anon_sym_SLASH] = ACTIONS(1894), + [anon_sym_PERCENT] = ACTIONS(1894), + [anon_sym_DASH_DASH] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(216), + [anon_sym_DOT] = ACTIONS(218), + [anon_sym_DASH_GT] = ACTIONS(218), + [sym_comment] = ACTIONS(59), + }, + [1017] = { + [anon_sym_SEMI] = ACTIONS(2621), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2623), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2623), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2623), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2623), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2623), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2623), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2623), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2623), + [sym_preproc_directive] = ACTIONS(2623), + [anon_sym_typedef] = ACTIONS(2623), + [anon_sym_extern] = ACTIONS(2623), + [anon_sym_LBRACE] = ACTIONS(2621), + [anon_sym_LPAREN2] = ACTIONS(2621), + [anon_sym_STAR] = ACTIONS(2621), + [anon_sym_static] = ACTIONS(2623), + [anon_sym_auto] = ACTIONS(2623), + [anon_sym_register] = ACTIONS(2623), + [anon_sym_inline] = ACTIONS(2623), + [anon_sym_const] = ACTIONS(2623), + [anon_sym_restrict] = ACTIONS(2623), + [anon_sym_volatile] = ACTIONS(2623), + [anon_sym__Atomic] = ACTIONS(2623), + [anon_sym_unsigned] = ACTIONS(2623), + [anon_sym_long] = ACTIONS(2623), + [anon_sym_short] = ACTIONS(2623), + [sym_primitive_type] = ACTIONS(2623), + [anon_sym_enum] = ACTIONS(2623), + [anon_sym_struct] = ACTIONS(2623), + [anon_sym_union] = ACTIONS(2623), + [anon_sym_if] = ACTIONS(2623), + [anon_sym_else] = ACTIONS(2623), + [anon_sym_switch] = ACTIONS(2623), + [anon_sym_case] = ACTIONS(2623), + [anon_sym_default] = ACTIONS(2623), + [anon_sym_while] = ACTIONS(2623), + [anon_sym_do] = ACTIONS(2623), + [anon_sym_for] = ACTIONS(2623), + [anon_sym_return] = ACTIONS(2623), + [anon_sym_break] = ACTIONS(2623), + [anon_sym_continue] = ACTIONS(2623), + [anon_sym_goto] = ACTIONS(2623), + [anon_sym_AMP] = ACTIONS(2621), + [anon_sym_BANG] = ACTIONS(2621), + [anon_sym_TILDE] = ACTIONS(2621), + [anon_sym_PLUS] = ACTIONS(2623), + [anon_sym_DASH] = ACTIONS(2623), + [anon_sym_DASH_DASH] = ACTIONS(2621), + [anon_sym_PLUS_PLUS] = ACTIONS(2621), + [anon_sym_sizeof] = ACTIONS(2623), + [sym_number_literal] = ACTIONS(2621), + [anon_sym_SQUOTE] = ACTIONS(2621), + [anon_sym_DQUOTE] = ACTIONS(2621), + [sym_true] = ACTIONS(2623), + [sym_false] = ACTIONS(2623), + [sym_null] = ACTIONS(2623), + [sym_identifier] = ACTIONS(2623), + [sym_comment] = ACTIONS(59), + }, + [1018] = { + [anon_sym_SEMI] = ACTIONS(2625), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2627), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2627), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2627), @@ -40244,12 +42077,11 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2627), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2627), [sym_preproc_directive] = ACTIONS(2627), - [anon_sym_SEMI] = ACTIONS(2629), [anon_sym_typedef] = ACTIONS(2627), [anon_sym_extern] = ACTIONS(2627), - [anon_sym_LBRACE] = ACTIONS(2629), - [anon_sym_LPAREN2] = ACTIONS(2629), - [anon_sym_STAR] = ACTIONS(2629), + [anon_sym_LBRACE] = ACTIONS(2625), + [anon_sym_LPAREN2] = ACTIONS(2625), + [anon_sym_STAR] = ACTIONS(2625), [anon_sym_static] = ACTIONS(2627), [anon_sym_auto] = ACTIONS(2627), [anon_sym_register] = ACTIONS(2627), @@ -40266,6 +42098,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(2627), [anon_sym_union] = ACTIONS(2627), [anon_sym_if] = ACTIONS(2627), + [anon_sym_else] = ACTIONS(2627), [anon_sym_switch] = ACTIONS(2627), [anon_sym_case] = ACTIONS(2627), [anon_sym_default] = ACTIONS(2627), @@ -40276,3107 +42109,2733 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(2627), [anon_sym_continue] = ACTIONS(2627), [anon_sym_goto] = ACTIONS(2627), - [anon_sym_AMP] = ACTIONS(2629), - [anon_sym_BANG] = ACTIONS(2629), - [anon_sym_TILDE] = ACTIONS(2629), + [anon_sym_AMP] = ACTIONS(2625), + [anon_sym_BANG] = ACTIONS(2625), + [anon_sym_TILDE] = ACTIONS(2625), [anon_sym_PLUS] = ACTIONS(2627), [anon_sym_DASH] = ACTIONS(2627), - [anon_sym_DASH_DASH] = ACTIONS(2629), - [anon_sym_PLUS_PLUS] = ACTIONS(2629), + [anon_sym_DASH_DASH] = ACTIONS(2625), + [anon_sym_PLUS_PLUS] = ACTIONS(2625), [anon_sym_sizeof] = ACTIONS(2627), - [sym_number_literal] = ACTIONS(2629), - [anon_sym_SQUOTE] = ACTIONS(2629), - [anon_sym_DQUOTE] = ACTIONS(2629), + [sym_number_literal] = ACTIONS(2625), + [anon_sym_SQUOTE] = ACTIONS(2625), + [anon_sym_DQUOTE] = ACTIONS(2625), [sym_true] = ACTIONS(2627), [sym_false] = ACTIONS(2627), [sym_null] = ACTIONS(2627), [sym_identifier] = ACTIONS(2627), - [sym_comment] = ACTIONS(37), - }, - [1002] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2997), - [sym_comment] = ACTIONS(37), - }, - [1003] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2070), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2070), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2070), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2070), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2070), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2070), - [sym_preproc_directive] = ACTIONS(2070), - [anon_sym_SEMI] = ACTIONS(2072), - [anon_sym_typedef] = ACTIONS(2070), - [anon_sym_extern] = ACTIONS(2070), - [anon_sym_LBRACE] = ACTIONS(2072), - [anon_sym_LPAREN2] = ACTIONS(2072), - [anon_sym_STAR] = ACTIONS(2072), - [anon_sym_static] = ACTIONS(2070), - [anon_sym_auto] = ACTIONS(2070), - [anon_sym_register] = ACTIONS(2070), - [anon_sym_inline] = ACTIONS(2070), - [anon_sym_const] = ACTIONS(2070), - [anon_sym_restrict] = ACTIONS(2070), - [anon_sym_volatile] = ACTIONS(2070), - [anon_sym__Atomic] = ACTIONS(2070), - [anon_sym_unsigned] = ACTIONS(2070), - [anon_sym_long] = ACTIONS(2070), - [anon_sym_short] = ACTIONS(2070), - [sym_primitive_type] = ACTIONS(2070), - [anon_sym_enum] = ACTIONS(2070), - [anon_sym_struct] = ACTIONS(2070), - [anon_sym_union] = ACTIONS(2070), - [anon_sym_if] = ACTIONS(2070), - [anon_sym_switch] = ACTIONS(2070), - [anon_sym_case] = ACTIONS(2070), - [anon_sym_default] = ACTIONS(2070), - [anon_sym_while] = ACTIONS(2070), - [anon_sym_do] = ACTIONS(2070), - [anon_sym_for] = ACTIONS(2070), - [anon_sym_return] = ACTIONS(2070), - [anon_sym_break] = ACTIONS(2070), - [anon_sym_continue] = ACTIONS(2070), - [anon_sym_goto] = ACTIONS(2070), - [anon_sym_AMP] = ACTIONS(2072), - [anon_sym_BANG] = ACTIONS(2072), - [anon_sym_TILDE] = ACTIONS(2072), - [anon_sym_PLUS] = ACTIONS(2070), - [anon_sym_DASH] = ACTIONS(2070), - [anon_sym_DASH_DASH] = ACTIONS(2072), - [anon_sym_PLUS_PLUS] = ACTIONS(2072), - [anon_sym_sizeof] = ACTIONS(2070), - [sym_number_literal] = ACTIONS(2072), - [anon_sym_SQUOTE] = ACTIONS(2072), - [anon_sym_DQUOTE] = ACTIONS(2072), - [sym_true] = ACTIONS(2070), - [sym_false] = ACTIONS(2070), - [sym_null] = ACTIONS(2070), - [sym_identifier] = ACTIONS(2070), - [sym_comment] = ACTIONS(37), - }, - [1004] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2999), - [sym_comment] = ACTIONS(37), - }, - [1005] = { - [sym_preproc_include] = STATE(821), - [sym_preproc_def] = STATE(821), - [sym_preproc_function_def] = STATE(821), - [sym_preproc_call] = STATE(821), - [sym_preproc_if_in_compound_statement] = STATE(821), - [sym_preproc_ifdef_in_compound_statement] = STATE(821), - [sym_preproc_else_in_compound_statement] = STATE(1068), - [sym_preproc_elif_in_compound_statement] = STATE(1068), - [sym_declaration] = STATE(821), - [sym_type_definition] = STATE(821), - [sym__declaration_specifiers] = STATE(593), - [sym_compound_statement] = STATE(821), - [sym_storage_class_specifier] = STATE(19), - [sym_type_qualifier] = STATE(19), - [sym__type_specifier] = STATE(17), - [sym_sized_type_specifier] = STATE(17), - [sym_enum_specifier] = STATE(17), - [sym_struct_specifier] = STATE(17), - [sym_union_specifier] = STATE(17), - [sym_labeled_statement] = STATE(821), - [sym_expression_statement] = STATE(821), - [sym_if_statement] = STATE(821), - [sym_switch_statement] = STATE(821), - [sym_case_statement] = STATE(821), - [sym_while_statement] = STATE(821), - [sym_do_statement] = STATE(821), - [sym_for_statement] = STATE(821), - [sym_return_statement] = STATE(821), - [sym_break_statement] = STATE(821), - [sym_continue_statement] = STATE(821), - [sym_goto_statement] = STATE(821), - [sym__expression] = STATE(594), - [sym_comma_expression] = STATE(595), - [sym_conditional_expression] = STATE(594), - [sym_assignment_expression] = STATE(594), - [sym_pointer_expression] = STATE(594), - [sym_logical_expression] = STATE(594), - [sym_bitwise_expression] = STATE(594), - [sym_equality_expression] = STATE(594), - [sym_relational_expression] = STATE(594), - [sym_shift_expression] = STATE(594), - [sym_math_expression] = STATE(594), - [sym_cast_expression] = STATE(594), - [sym_sizeof_expression] = STATE(594), - [sym_subscript_expression] = STATE(594), - [sym_call_expression] = STATE(594), - [sym_field_expression] = STATE(594), - [sym_compound_literal_expression] = STATE(594), - [sym_parenthesized_expression] = STATE(594), - [sym_char_literal] = STATE(594), - [sym_concatenated_string] = STATE(594), - [sym_string_literal] = STATE(230), - [sym__empty_declaration] = STATE(821), - [sym_macro_type_specifier] = STATE(17), - [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(821), - [aux_sym__declaration_specifiers_repeat1] = STATE(19), - [aux_sym_sized_type_specifier_repeat1] = STATE(20), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(127), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(129), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1385), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3001), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1389), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1389), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1391), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1393), - [sym_preproc_directive] = ACTIONS(141), - [anon_sym_SEMI] = ACTIONS(1395), - [anon_sym_typedef] = ACTIONS(143), - [anon_sym_extern] = ACTIONS(21), - [anon_sym_LBRACE] = ACTIONS(678), - [anon_sym_LPAREN2] = ACTIONS(507), - [anon_sym_STAR] = ACTIONS(509), - [anon_sym_static] = ACTIONS(21), - [anon_sym_auto] = ACTIONS(21), - [anon_sym_register] = ACTIONS(21), - [anon_sym_inline] = ACTIONS(21), - [anon_sym_const] = ACTIONS(23), - [anon_sym_restrict] = ACTIONS(23), - [anon_sym_volatile] = ACTIONS(23), - [anon_sym__Atomic] = ACTIONS(23), - [anon_sym_unsigned] = ACTIONS(25), - [anon_sym_long] = ACTIONS(25), - [anon_sym_short] = ACTIONS(25), - [sym_primitive_type] = ACTIONS(27), - [anon_sym_enum] = ACTIONS(29), - [anon_sym_struct] = ACTIONS(31), - [anon_sym_union] = ACTIONS(33), - [anon_sym_if] = ACTIONS(1397), - [anon_sym_switch] = ACTIONS(1399), - [anon_sym_case] = ACTIONS(1401), - [anon_sym_default] = ACTIONS(1403), - [anon_sym_while] = ACTIONS(1405), - [anon_sym_do] = ACTIONS(1407), - [anon_sym_for] = ACTIONS(1409), - [anon_sym_return] = ACTIONS(1411), - [anon_sym_break] = ACTIONS(1413), - [anon_sym_continue] = ACTIONS(1415), - [anon_sym_goto] = ACTIONS(1417), - [anon_sym_AMP] = ACTIONS(509), - [anon_sym_BANG] = ACTIONS(533), - [anon_sym_TILDE] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DASH] = ACTIONS(537), - [anon_sym_DASH_DASH] = ACTIONS(539), - [anon_sym_PLUS_PLUS] = ACTIONS(539), - [anon_sym_sizeof] = ACTIONS(541), - [sym_number_literal] = ACTIONS(1419), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(1421), - [sym_false] = ACTIONS(1421), - [sym_null] = ACTIONS(1421), - [sym_identifier] = ACTIONS(1423), - [sym_comment] = ACTIONS(37), - }, - [1006] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2144), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2144), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2144), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2144), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2144), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2144), - [sym_preproc_directive] = ACTIONS(2144), - [anon_sym_SEMI] = ACTIONS(2146), - [anon_sym_typedef] = ACTIONS(2144), - [anon_sym_extern] = ACTIONS(2144), - [anon_sym_LBRACE] = ACTIONS(2146), - [anon_sym_LPAREN2] = ACTIONS(2146), - [anon_sym_STAR] = ACTIONS(2146), - [anon_sym_static] = ACTIONS(2144), - [anon_sym_auto] = ACTIONS(2144), - [anon_sym_register] = ACTIONS(2144), - [anon_sym_inline] = ACTIONS(2144), - [anon_sym_const] = ACTIONS(2144), - [anon_sym_restrict] = ACTIONS(2144), - [anon_sym_volatile] = ACTIONS(2144), - [anon_sym__Atomic] = ACTIONS(2144), - [anon_sym_unsigned] = ACTIONS(2144), - [anon_sym_long] = ACTIONS(2144), - [anon_sym_short] = ACTIONS(2144), - [sym_primitive_type] = ACTIONS(2144), - [anon_sym_enum] = ACTIONS(2144), - [anon_sym_struct] = ACTIONS(2144), - [anon_sym_union] = ACTIONS(2144), - [anon_sym_if] = ACTIONS(2144), - [anon_sym_switch] = ACTIONS(2144), - [anon_sym_case] = ACTIONS(2144), - [anon_sym_default] = ACTIONS(2144), - [anon_sym_while] = ACTIONS(2144), - [anon_sym_do] = ACTIONS(2144), - [anon_sym_for] = ACTIONS(2144), - [anon_sym_return] = ACTIONS(2144), - [anon_sym_break] = ACTIONS(2144), - [anon_sym_continue] = ACTIONS(2144), - [anon_sym_goto] = ACTIONS(2144), - [anon_sym_AMP] = ACTIONS(2146), - [anon_sym_BANG] = ACTIONS(2146), - [anon_sym_TILDE] = ACTIONS(2146), - [anon_sym_PLUS] = ACTIONS(2144), - [anon_sym_DASH] = ACTIONS(2144), - [anon_sym_DASH_DASH] = ACTIONS(2146), - [anon_sym_PLUS_PLUS] = ACTIONS(2146), - [anon_sym_sizeof] = ACTIONS(2144), - [sym_number_literal] = ACTIONS(2146), - [anon_sym_SQUOTE] = ACTIONS(2146), - [anon_sym_DQUOTE] = ACTIONS(2146), - [sym_true] = ACTIONS(2144), - [sym_false] = ACTIONS(2144), - [sym_null] = ACTIONS(2144), - [sym_identifier] = ACTIONS(2144), - [sym_comment] = ACTIONS(37), - }, - [1007] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3003), - [sym_comment] = ACTIONS(37), - }, - [1008] = { - [sym_preproc_include] = STATE(821), - [sym_preproc_def] = STATE(821), - [sym_preproc_function_def] = STATE(821), - [sym_preproc_call] = STATE(821), - [sym_preproc_if_in_compound_statement] = STATE(821), - [sym_preproc_ifdef_in_compound_statement] = STATE(821), - [sym_preproc_else_in_compound_statement] = STATE(1070), - [sym_preproc_elif_in_compound_statement] = STATE(1070), - [sym_declaration] = STATE(821), - [sym_type_definition] = STATE(821), - [sym__declaration_specifiers] = STATE(593), - [sym_compound_statement] = STATE(821), - [sym_storage_class_specifier] = STATE(19), - [sym_type_qualifier] = STATE(19), - [sym__type_specifier] = STATE(17), - [sym_sized_type_specifier] = STATE(17), - [sym_enum_specifier] = STATE(17), - [sym_struct_specifier] = STATE(17), - [sym_union_specifier] = STATE(17), - [sym_labeled_statement] = STATE(821), - [sym_expression_statement] = STATE(821), - [sym_if_statement] = STATE(821), - [sym_switch_statement] = STATE(821), - [sym_case_statement] = STATE(821), - [sym_while_statement] = STATE(821), - [sym_do_statement] = STATE(821), - [sym_for_statement] = STATE(821), - [sym_return_statement] = STATE(821), - [sym_break_statement] = STATE(821), - [sym_continue_statement] = STATE(821), - [sym_goto_statement] = STATE(821), - [sym__expression] = STATE(594), - [sym_comma_expression] = STATE(595), - [sym_conditional_expression] = STATE(594), - [sym_assignment_expression] = STATE(594), - [sym_pointer_expression] = STATE(594), - [sym_logical_expression] = STATE(594), - [sym_bitwise_expression] = STATE(594), - [sym_equality_expression] = STATE(594), - [sym_relational_expression] = STATE(594), - [sym_shift_expression] = STATE(594), - [sym_math_expression] = STATE(594), - [sym_cast_expression] = STATE(594), - [sym_sizeof_expression] = STATE(594), - [sym_subscript_expression] = STATE(594), - [sym_call_expression] = STATE(594), - [sym_field_expression] = STATE(594), - [sym_compound_literal_expression] = STATE(594), - [sym_parenthesized_expression] = STATE(594), - [sym_char_literal] = STATE(594), - [sym_concatenated_string] = STATE(594), - [sym_string_literal] = STATE(230), - [sym__empty_declaration] = STATE(821), - [sym_macro_type_specifier] = STATE(17), - [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(821), - [aux_sym__declaration_specifiers_repeat1] = STATE(19), - [aux_sym_sized_type_specifier_repeat1] = STATE(20), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(127), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(129), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1385), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3005), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1389), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1389), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1391), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1393), - [sym_preproc_directive] = ACTIONS(141), - [anon_sym_SEMI] = ACTIONS(1395), - [anon_sym_typedef] = ACTIONS(143), - [anon_sym_extern] = ACTIONS(21), - [anon_sym_LBRACE] = ACTIONS(678), - [anon_sym_LPAREN2] = ACTIONS(507), - [anon_sym_STAR] = ACTIONS(509), - [anon_sym_static] = ACTIONS(21), - [anon_sym_auto] = ACTIONS(21), - [anon_sym_register] = ACTIONS(21), - [anon_sym_inline] = ACTIONS(21), - [anon_sym_const] = ACTIONS(23), - [anon_sym_restrict] = ACTIONS(23), - [anon_sym_volatile] = ACTIONS(23), - [anon_sym__Atomic] = ACTIONS(23), - [anon_sym_unsigned] = ACTIONS(25), - [anon_sym_long] = ACTIONS(25), - [anon_sym_short] = ACTIONS(25), - [sym_primitive_type] = ACTIONS(27), - [anon_sym_enum] = ACTIONS(29), - [anon_sym_struct] = ACTIONS(31), - [anon_sym_union] = ACTIONS(33), - [anon_sym_if] = ACTIONS(1397), - [anon_sym_switch] = ACTIONS(1399), - [anon_sym_case] = ACTIONS(1401), - [anon_sym_default] = ACTIONS(1403), - [anon_sym_while] = ACTIONS(1405), - [anon_sym_do] = ACTIONS(1407), - [anon_sym_for] = ACTIONS(1409), - [anon_sym_return] = ACTIONS(1411), - [anon_sym_break] = ACTIONS(1413), - [anon_sym_continue] = ACTIONS(1415), - [anon_sym_goto] = ACTIONS(1417), - [anon_sym_AMP] = ACTIONS(509), - [anon_sym_BANG] = ACTIONS(533), - [anon_sym_TILDE] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DASH] = ACTIONS(537), - [anon_sym_DASH_DASH] = ACTIONS(539), - [anon_sym_PLUS_PLUS] = ACTIONS(539), - [anon_sym_sizeof] = ACTIONS(541), - [sym_number_literal] = ACTIONS(1419), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(1421), - [sym_false] = ACTIONS(1421), - [sym_null] = ACTIONS(1421), - [sym_identifier] = ACTIONS(1423), - [sym_comment] = ACTIONS(37), - }, - [1009] = { - [sym_parenthesized_expression] = STATE(1071), - [anon_sym_LPAREN2] = ACTIONS(916), - [sym_comment] = ACTIONS(37), - }, - [1010] = { - [sym_parenthesized_expression] = STATE(1072), - [anon_sym_LPAREN2] = ACTIONS(916), - [sym_comment] = ACTIONS(37), - }, - [1011] = { - [sym__expression] = STATE(1073), - [sym_conditional_expression] = STATE(1073), - [sym_assignment_expression] = STATE(1073), - [sym_pointer_expression] = STATE(1073), - [sym_logical_expression] = STATE(1073), - [sym_bitwise_expression] = STATE(1073), - [sym_equality_expression] = STATE(1073), - [sym_relational_expression] = STATE(1073), - [sym_shift_expression] = STATE(1073), - [sym_math_expression] = STATE(1073), - [sym_cast_expression] = STATE(1073), - [sym_sizeof_expression] = STATE(1073), - [sym_subscript_expression] = STATE(1073), - [sym_call_expression] = STATE(1073), - [sym_field_expression] = STATE(1073), - [sym_compound_literal_expression] = STATE(1073), - [sym_parenthesized_expression] = STATE(1073), - [sym_char_literal] = STATE(1073), - [sym_concatenated_string] = STATE(1073), - [sym_string_literal] = STATE(386), - [anon_sym_LPAREN2] = ACTIONS(918), - [anon_sym_STAR] = ACTIONS(920), - [anon_sym_AMP] = ACTIONS(920), - [anon_sym_BANG] = ACTIONS(922), - [anon_sym_TILDE] = ACTIONS(924), - [anon_sym_PLUS] = ACTIONS(926), - [anon_sym_DASH] = ACTIONS(926), - [anon_sym_DASH_DASH] = ACTIONS(928), - [anon_sym_PLUS_PLUS] = ACTIONS(928), - [anon_sym_sizeof] = ACTIONS(930), - [sym_number_literal] = ACTIONS(3007), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(3009), - [sym_false] = ACTIONS(3009), - [sym_null] = ACTIONS(3009), - [sym_identifier] = ACTIONS(3009), - [sym_comment] = ACTIONS(37), - }, - [1012] = { - [anon_sym_COLON] = ACTIONS(3011), - [sym_comment] = ACTIONS(37), - }, - [1013] = { - [sym_parenthesized_expression] = STATE(1075), - [anon_sym_LPAREN2] = ACTIONS(916), - [sym_comment] = ACTIONS(37), - }, - [1014] = { - [anon_sym_LPAREN2] = ACTIONS(3013), - [sym_comment] = ACTIONS(37), - }, - [1015] = { - [anon_sym_COMMA] = ACTIONS(990), - [anon_sym_SEMI] = ACTIONS(990), - [anon_sym_LPAREN2] = ACTIONS(990), - [anon_sym_STAR] = ACTIONS(1002), - [anon_sym_LBRACK] = ACTIONS(990), - [anon_sym_EQ] = ACTIONS(1002), - [anon_sym_COLON] = ACTIONS(3015), - [anon_sym_QMARK] = ACTIONS(990), - [anon_sym_STAR_EQ] = ACTIONS(990), - [anon_sym_SLASH_EQ] = ACTIONS(990), - [anon_sym_PERCENT_EQ] = ACTIONS(990), - [anon_sym_PLUS_EQ] = ACTIONS(990), - [anon_sym_DASH_EQ] = ACTIONS(990), - [anon_sym_LT_LT_EQ] = ACTIONS(990), - [anon_sym_GT_GT_EQ] = ACTIONS(990), - [anon_sym_AMP_EQ] = ACTIONS(990), - [anon_sym_CARET_EQ] = ACTIONS(990), - [anon_sym_PIPE_EQ] = ACTIONS(990), - [anon_sym_AMP] = ACTIONS(1002), - [anon_sym_PIPE_PIPE] = ACTIONS(990), - [anon_sym_AMP_AMP] = ACTIONS(990), - [anon_sym_PIPE] = ACTIONS(1002), - [anon_sym_CARET] = ACTIONS(1002), - [anon_sym_EQ_EQ] = ACTIONS(990), - [anon_sym_BANG_EQ] = ACTIONS(990), - [anon_sym_LT] = ACTIONS(1002), - [anon_sym_GT] = ACTIONS(1002), - [anon_sym_LT_EQ] = ACTIONS(990), - [anon_sym_GT_EQ] = ACTIONS(990), - [anon_sym_LT_LT] = ACTIONS(1002), - [anon_sym_GT_GT] = ACTIONS(1002), - [anon_sym_PLUS] = ACTIONS(1002), - [anon_sym_DASH] = ACTIONS(1002), - [anon_sym_SLASH] = ACTIONS(1002), - [anon_sym_PERCENT] = ACTIONS(1002), - [anon_sym_DASH_DASH] = ACTIONS(990), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_DOT] = ACTIONS(990), - [anon_sym_DASH_GT] = ACTIONS(990), - [sym_comment] = ACTIONS(37), - }, - [1016] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2222), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2222), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2222), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2222), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2222), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2222), - [sym_preproc_directive] = ACTIONS(2222), - [anon_sym_SEMI] = ACTIONS(2224), - [anon_sym_typedef] = ACTIONS(2222), - [anon_sym_extern] = ACTIONS(2222), - [anon_sym_LBRACE] = ACTIONS(2224), - [anon_sym_LPAREN2] = ACTIONS(2224), - [anon_sym_STAR] = ACTIONS(2224), - [anon_sym_static] = ACTIONS(2222), - [anon_sym_auto] = ACTIONS(2222), - [anon_sym_register] = ACTIONS(2222), - [anon_sym_inline] = ACTIONS(2222), - [anon_sym_const] = ACTIONS(2222), - [anon_sym_restrict] = ACTIONS(2222), - [anon_sym_volatile] = ACTIONS(2222), - [anon_sym__Atomic] = ACTIONS(2222), - [anon_sym_unsigned] = ACTIONS(2222), - [anon_sym_long] = ACTIONS(2222), - [anon_sym_short] = ACTIONS(2222), - [sym_primitive_type] = ACTIONS(2222), - [anon_sym_enum] = ACTIONS(2222), - [anon_sym_struct] = ACTIONS(2222), - [anon_sym_union] = ACTIONS(2222), - [anon_sym_if] = ACTIONS(2222), - [anon_sym_else] = ACTIONS(3017), - [anon_sym_switch] = ACTIONS(2222), - [anon_sym_case] = ACTIONS(2222), - [anon_sym_default] = ACTIONS(2222), - [anon_sym_while] = ACTIONS(2222), - [anon_sym_do] = ACTIONS(2222), - [anon_sym_for] = ACTIONS(2222), - [anon_sym_return] = ACTIONS(2222), - [anon_sym_break] = ACTIONS(2222), - [anon_sym_continue] = ACTIONS(2222), - [anon_sym_goto] = ACTIONS(2222), - [anon_sym_AMP] = ACTIONS(2224), - [anon_sym_BANG] = ACTIONS(2224), - [anon_sym_TILDE] = ACTIONS(2224), - [anon_sym_PLUS] = ACTIONS(2222), - [anon_sym_DASH] = ACTIONS(2222), - [anon_sym_DASH_DASH] = ACTIONS(2224), - [anon_sym_PLUS_PLUS] = ACTIONS(2224), - [anon_sym_sizeof] = ACTIONS(2222), - [sym_number_literal] = ACTIONS(2224), - [anon_sym_SQUOTE] = ACTIONS(2224), - [anon_sym_DQUOTE] = ACTIONS(2224), - [sym_true] = ACTIONS(2222), - [sym_false] = ACTIONS(2222), - [sym_null] = ACTIONS(2222), - [sym_identifier] = ACTIONS(2222), - [sym_comment] = ACTIONS(37), - }, - [1017] = { - [anon_sym_COMMA] = ACTIONS(990), - [anon_sym_SEMI] = ACTIONS(990), - [anon_sym_LPAREN2] = ACTIONS(990), - [anon_sym_STAR] = ACTIONS(1002), - [anon_sym_LBRACK] = ACTIONS(990), - [anon_sym_EQ] = ACTIONS(1002), - [anon_sym_COLON] = ACTIONS(2511), - [anon_sym_QMARK] = ACTIONS(990), - [anon_sym_STAR_EQ] = ACTIONS(990), - [anon_sym_SLASH_EQ] = ACTIONS(990), - [anon_sym_PERCENT_EQ] = ACTIONS(990), - [anon_sym_PLUS_EQ] = ACTIONS(990), - [anon_sym_DASH_EQ] = ACTIONS(990), - [anon_sym_LT_LT_EQ] = ACTIONS(990), - [anon_sym_GT_GT_EQ] = ACTIONS(990), - [anon_sym_AMP_EQ] = ACTIONS(990), - [anon_sym_CARET_EQ] = ACTIONS(990), - [anon_sym_PIPE_EQ] = ACTIONS(990), - [anon_sym_AMP] = ACTIONS(1002), - [anon_sym_PIPE_PIPE] = ACTIONS(990), - [anon_sym_AMP_AMP] = ACTIONS(990), - [anon_sym_PIPE] = ACTIONS(1002), - [anon_sym_CARET] = ACTIONS(1002), - [anon_sym_EQ_EQ] = ACTIONS(990), - [anon_sym_BANG_EQ] = ACTIONS(990), - [anon_sym_LT] = ACTIONS(1002), - [anon_sym_GT] = ACTIONS(1002), - [anon_sym_LT_EQ] = ACTIONS(990), - [anon_sym_GT_EQ] = ACTIONS(990), - [anon_sym_LT_LT] = ACTIONS(1002), - [anon_sym_GT_GT] = ACTIONS(1002), - [anon_sym_PLUS] = ACTIONS(1002), - [anon_sym_DASH] = ACTIONS(1002), - [anon_sym_SLASH] = ACTIONS(1002), - [anon_sym_PERCENT] = ACTIONS(1002), - [anon_sym_DASH_DASH] = ACTIONS(990), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_DOT] = ACTIONS(990), - [anon_sym_DASH_GT] = ACTIONS(990), - [sym_comment] = ACTIONS(37), - }, - [1018] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2228), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2228), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2228), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2228), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2228), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2228), - [sym_preproc_directive] = ACTIONS(2228), - [anon_sym_SEMI] = ACTIONS(2230), - [anon_sym_typedef] = ACTIONS(2228), - [anon_sym_extern] = ACTIONS(2228), - [anon_sym_LBRACE] = ACTIONS(2230), - [anon_sym_LPAREN2] = ACTIONS(2230), - [anon_sym_STAR] = ACTIONS(2230), - [anon_sym_static] = ACTIONS(2228), - [anon_sym_auto] = ACTIONS(2228), - [anon_sym_register] = ACTIONS(2228), - [anon_sym_inline] = ACTIONS(2228), - [anon_sym_const] = ACTIONS(2228), - [anon_sym_restrict] = ACTIONS(2228), - [anon_sym_volatile] = ACTIONS(2228), - [anon_sym__Atomic] = ACTIONS(2228), - [anon_sym_unsigned] = ACTIONS(2228), - [anon_sym_long] = ACTIONS(2228), - [anon_sym_short] = ACTIONS(2228), - [sym_primitive_type] = ACTIONS(2228), - [anon_sym_enum] = ACTIONS(2228), - [anon_sym_struct] = ACTIONS(2228), - [anon_sym_union] = ACTIONS(2228), - [anon_sym_if] = ACTIONS(2228), - [anon_sym_else] = ACTIONS(2228), - [anon_sym_switch] = ACTIONS(2228), - [anon_sym_case] = ACTIONS(2228), - [anon_sym_default] = ACTIONS(2228), - [anon_sym_while] = ACTIONS(2228), - [anon_sym_do] = ACTIONS(2228), - [anon_sym_for] = ACTIONS(2228), - [anon_sym_return] = ACTIONS(2228), - [anon_sym_break] = ACTIONS(2228), - [anon_sym_continue] = ACTIONS(2228), - [anon_sym_goto] = ACTIONS(2228), - [anon_sym_AMP] = ACTIONS(2230), - [anon_sym_BANG] = ACTIONS(2230), - [anon_sym_TILDE] = ACTIONS(2230), - [anon_sym_PLUS] = ACTIONS(2228), - [anon_sym_DASH] = ACTIONS(2228), - [anon_sym_DASH_DASH] = ACTIONS(2230), - [anon_sym_PLUS_PLUS] = ACTIONS(2230), - [anon_sym_sizeof] = ACTIONS(2228), - [sym_number_literal] = ACTIONS(2230), - [anon_sym_SQUOTE] = ACTIONS(2230), - [anon_sym_DQUOTE] = ACTIONS(2230), - [sym_true] = ACTIONS(2228), - [sym_false] = ACTIONS(2228), - [sym_null] = ACTIONS(2228), - [sym_identifier] = ACTIONS(2228), - [sym_comment] = ACTIONS(37), + [sym_comment] = ACTIONS(59), }, [1019] = { - [sym_declaration] = STATE(1079), - [sym_type_definition] = STATE(1079), - [sym__declaration_specifiers] = STATE(1022), - [sym_compound_statement] = STATE(1079), - [sym_storage_class_specifier] = STATE(87), - [sym_type_qualifier] = STATE(87), - [sym__type_specifier] = STATE(86), - [sym_sized_type_specifier] = STATE(86), - [sym_enum_specifier] = STATE(86), - [sym_struct_specifier] = STATE(86), - [sym_union_specifier] = STATE(86), - [sym_labeled_statement] = STATE(1079), - [sym_expression_statement] = STATE(1079), - [sym_if_statement] = STATE(1079), - [sym_switch_statement] = STATE(1079), - [sym_case_statement] = STATE(1079), - [sym_while_statement] = STATE(1079), - [sym_do_statement] = STATE(1079), - [sym_for_statement] = STATE(1079), - [sym_return_statement] = STATE(1079), - [sym_break_statement] = STATE(1079), - [sym_continue_statement] = STATE(1079), - [sym_goto_statement] = STATE(1079), - [sym__expression] = STATE(800), - [sym_comma_expression] = STATE(801), - [sym_conditional_expression] = STATE(800), - [sym_assignment_expression] = STATE(800), - [sym_pointer_expression] = STATE(800), - [sym_logical_expression] = STATE(800), - [sym_bitwise_expression] = STATE(800), - [sym_equality_expression] = STATE(800), - [sym_relational_expression] = STATE(800), - [sym_shift_expression] = STATE(800), - [sym_math_expression] = STATE(800), - [sym_cast_expression] = STATE(800), - [sym_sizeof_expression] = STATE(800), - [sym_subscript_expression] = STATE(800), - [sym_call_expression] = STATE(800), - [sym_field_expression] = STATE(800), - [sym_compound_literal_expression] = STATE(800), - [sym_parenthesized_expression] = STATE(800), - [sym_char_literal] = STATE(800), - [sym_concatenated_string] = STATE(800), - [sym_string_literal] = STATE(230), - [sym_macro_type_specifier] = STATE(86), - [aux_sym__declaration_specifiers_repeat1] = STATE(87), - [aux_sym_sized_type_specifier_repeat1] = STATE(88), - [anon_sym_SEMI] = ACTIONS(2082), - [anon_sym_typedef] = ACTIONS(359), - [anon_sym_extern] = ACTIONS(21), - [anon_sym_LBRACE] = ACTIONS(1181), - [anon_sym_LPAREN2] = ACTIONS(507), - [anon_sym_STAR] = ACTIONS(509), - [anon_sym_static] = ACTIONS(21), - [anon_sym_auto] = ACTIONS(21), - [anon_sym_register] = ACTIONS(21), - [anon_sym_inline] = ACTIONS(21), - [anon_sym_const] = ACTIONS(23), - [anon_sym_restrict] = ACTIONS(23), - [anon_sym_volatile] = ACTIONS(23), - [anon_sym__Atomic] = ACTIONS(23), - [anon_sym_unsigned] = ACTIONS(167), - [anon_sym_long] = ACTIONS(167), - [anon_sym_short] = ACTIONS(167), - [sym_primitive_type] = ACTIONS(169), - [anon_sym_enum] = ACTIONS(29), - [anon_sym_struct] = ACTIONS(31), - [anon_sym_union] = ACTIONS(33), - [anon_sym_if] = ACTIONS(2084), - [anon_sym_switch] = ACTIONS(2086), - [anon_sym_case] = ACTIONS(2088), - [anon_sym_default] = ACTIONS(2090), - [anon_sym_while] = ACTIONS(2092), - [anon_sym_do] = ACTIONS(2094), - [anon_sym_for] = ACTIONS(2096), - [anon_sym_return] = ACTIONS(2098), - [anon_sym_break] = ACTIONS(2100), - [anon_sym_continue] = ACTIONS(2102), - [anon_sym_goto] = ACTIONS(2104), - [anon_sym_AMP] = ACTIONS(509), - [anon_sym_BANG] = ACTIONS(533), - [anon_sym_TILDE] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DASH] = ACTIONS(537), - [anon_sym_DASH_DASH] = ACTIONS(539), - [anon_sym_PLUS_PLUS] = ACTIONS(539), - [anon_sym_sizeof] = ACTIONS(541), - [sym_number_literal] = ACTIONS(2106), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(2108), - [sym_false] = ACTIONS(2108), - [sym_null] = ACTIONS(2108), - [sym_identifier] = ACTIONS(2806), - [sym_comment] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(2631), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2633), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2633), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2633), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2633), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2633), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2633), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2633), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2633), + [sym_preproc_directive] = ACTIONS(2633), + [anon_sym_typedef] = ACTIONS(2633), + [anon_sym_extern] = ACTIONS(2633), + [anon_sym_LBRACE] = ACTIONS(2631), + [anon_sym_LPAREN2] = ACTIONS(2631), + [anon_sym_STAR] = ACTIONS(2631), + [anon_sym_static] = ACTIONS(2633), + [anon_sym_auto] = ACTIONS(2633), + [anon_sym_register] = ACTIONS(2633), + [anon_sym_inline] = ACTIONS(2633), + [anon_sym_const] = ACTIONS(2633), + [anon_sym_restrict] = ACTIONS(2633), + [anon_sym_volatile] = ACTIONS(2633), + [anon_sym__Atomic] = ACTIONS(2633), + [anon_sym_unsigned] = ACTIONS(2633), + [anon_sym_long] = ACTIONS(2633), + [anon_sym_short] = ACTIONS(2633), + [sym_primitive_type] = ACTIONS(2633), + [anon_sym_enum] = ACTIONS(2633), + [anon_sym_struct] = ACTIONS(2633), + [anon_sym_union] = ACTIONS(2633), + [anon_sym_if] = ACTIONS(2633), + [anon_sym_else] = ACTIONS(2633), + [anon_sym_switch] = ACTIONS(2633), + [anon_sym_case] = ACTIONS(2633), + [anon_sym_default] = ACTIONS(2633), + [anon_sym_while] = ACTIONS(2633), + [anon_sym_do] = ACTIONS(2633), + [anon_sym_for] = ACTIONS(2633), + [anon_sym_return] = ACTIONS(2633), + [anon_sym_break] = ACTIONS(2633), + [anon_sym_continue] = ACTIONS(2633), + [anon_sym_goto] = ACTIONS(2633), + [anon_sym_AMP] = ACTIONS(2631), + [anon_sym_BANG] = ACTIONS(2631), + [anon_sym_TILDE] = ACTIONS(2631), + [anon_sym_PLUS] = ACTIONS(2633), + [anon_sym_DASH] = ACTIONS(2633), + [anon_sym_DASH_DASH] = ACTIONS(2631), + [anon_sym_PLUS_PLUS] = ACTIONS(2631), + [anon_sym_sizeof] = ACTIONS(2633), + [sym_number_literal] = ACTIONS(2631), + [anon_sym_SQUOTE] = ACTIONS(2631), + [anon_sym_DQUOTE] = ACTIONS(2631), + [sym_true] = ACTIONS(2633), + [sym_false] = ACTIONS(2633), + [sym_null] = ACTIONS(2633), + [sym_identifier] = ACTIONS(2633), + [sym_comment] = ACTIONS(59), }, [1020] = { - [anon_sym_COMMA] = ACTIONS(990), - [anon_sym_SEMI] = ACTIONS(990), - [anon_sym_extern] = ACTIONS(79), - [anon_sym_LPAREN2] = ACTIONS(995), - [anon_sym_STAR] = ACTIONS(999), - [anon_sym_LBRACK] = ACTIONS(990), - [anon_sym_EQ] = ACTIONS(1002), - [anon_sym_static] = ACTIONS(79), - [anon_sym_auto] = ACTIONS(79), - [anon_sym_register] = ACTIONS(79), - [anon_sym_inline] = ACTIONS(79), - [anon_sym_const] = ACTIONS(79), - [anon_sym_restrict] = ACTIONS(79), - [anon_sym_volatile] = ACTIONS(79), - [anon_sym__Atomic] = ACTIONS(79), - [anon_sym_COLON] = ACTIONS(2511), - [anon_sym_QMARK] = ACTIONS(990), - [anon_sym_STAR_EQ] = ACTIONS(990), - [anon_sym_SLASH_EQ] = ACTIONS(990), - [anon_sym_PERCENT_EQ] = ACTIONS(990), - [anon_sym_PLUS_EQ] = ACTIONS(990), - [anon_sym_DASH_EQ] = ACTIONS(990), - [anon_sym_LT_LT_EQ] = ACTIONS(990), - [anon_sym_GT_GT_EQ] = ACTIONS(990), - [anon_sym_AMP_EQ] = ACTIONS(990), - [anon_sym_CARET_EQ] = ACTIONS(990), - [anon_sym_PIPE_EQ] = ACTIONS(990), - [anon_sym_AMP] = ACTIONS(1002), - [anon_sym_PIPE_PIPE] = ACTIONS(990), - [anon_sym_AMP_AMP] = ACTIONS(990), - [anon_sym_PIPE] = ACTIONS(1002), - [anon_sym_CARET] = ACTIONS(1002), - [anon_sym_EQ_EQ] = ACTIONS(990), - [anon_sym_BANG_EQ] = ACTIONS(990), - [anon_sym_LT] = ACTIONS(1002), - [anon_sym_GT] = ACTIONS(1002), - [anon_sym_LT_EQ] = ACTIONS(990), - [anon_sym_GT_EQ] = ACTIONS(990), - [anon_sym_LT_LT] = ACTIONS(1002), - [anon_sym_GT_GT] = ACTIONS(1002), - [anon_sym_PLUS] = ACTIONS(1002), - [anon_sym_DASH] = ACTIONS(1002), - [anon_sym_SLASH] = ACTIONS(1002), - [anon_sym_PERCENT] = ACTIONS(1002), - [anon_sym_DASH_DASH] = ACTIONS(990), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_DOT] = ACTIONS(990), - [anon_sym_DASH_GT] = ACTIONS(990), - [sym_identifier] = ACTIONS(79), - [sym_comment] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(3088), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3090), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3090), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3090), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3090), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3090), + [sym_preproc_directive] = ACTIONS(3090), + [anon_sym_typedef] = ACTIONS(3090), + [anon_sym_extern] = ACTIONS(3090), + [anon_sym_LBRACE] = ACTIONS(3088), + [anon_sym_RBRACE] = ACTIONS(3088), + [anon_sym_LPAREN2] = ACTIONS(3088), + [anon_sym_STAR] = ACTIONS(3088), + [anon_sym_static] = ACTIONS(3090), + [anon_sym_auto] = ACTIONS(3090), + [anon_sym_register] = ACTIONS(3090), + [anon_sym_inline] = ACTIONS(3090), + [anon_sym_const] = ACTIONS(3090), + [anon_sym_restrict] = ACTIONS(3090), + [anon_sym_volatile] = ACTIONS(3090), + [anon_sym__Atomic] = ACTIONS(3090), + [anon_sym_unsigned] = ACTIONS(3090), + [anon_sym_long] = ACTIONS(3090), + [anon_sym_short] = ACTIONS(3090), + [sym_primitive_type] = ACTIONS(3090), + [anon_sym_enum] = ACTIONS(3090), + [anon_sym_struct] = ACTIONS(3090), + [anon_sym_union] = ACTIONS(3090), + [anon_sym_if] = ACTIONS(3090), + [anon_sym_switch] = ACTIONS(3090), + [anon_sym_case] = ACTIONS(3090), + [anon_sym_default] = ACTIONS(3090), + [anon_sym_while] = ACTIONS(3090), + [anon_sym_do] = ACTIONS(3090), + [anon_sym_for] = ACTIONS(3090), + [anon_sym_return] = ACTIONS(3090), + [anon_sym_break] = ACTIONS(3090), + [anon_sym_continue] = ACTIONS(3090), + [anon_sym_goto] = ACTIONS(3090), + [anon_sym_AMP] = ACTIONS(3088), + [anon_sym_BANG] = ACTIONS(3088), + [anon_sym_TILDE] = ACTIONS(3088), + [anon_sym_PLUS] = ACTIONS(3090), + [anon_sym_DASH] = ACTIONS(3090), + [anon_sym_DASH_DASH] = ACTIONS(3088), + [anon_sym_PLUS_PLUS] = ACTIONS(3088), + [anon_sym_sizeof] = ACTIONS(3090), + [sym_number_literal] = ACTIONS(3088), + [anon_sym_SQUOTE] = ACTIONS(3088), + [anon_sym_DQUOTE] = ACTIONS(3088), + [sym_true] = ACTIONS(3090), + [sym_false] = ACTIONS(3090), + [sym_null] = ACTIONS(3090), + [sym_identifier] = ACTIONS(3090), + [sym_comment] = ACTIONS(59), }, [1021] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2278), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2278), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2278), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2278), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2278), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2278), - [sym_preproc_directive] = ACTIONS(2278), - [anon_sym_SEMI] = ACTIONS(2280), - [anon_sym_typedef] = ACTIONS(2278), - [anon_sym_extern] = ACTIONS(2278), - [anon_sym_LBRACE] = ACTIONS(2280), - [anon_sym_LPAREN2] = ACTIONS(2280), - [anon_sym_STAR] = ACTIONS(2280), - [anon_sym_static] = ACTIONS(2278), - [anon_sym_auto] = ACTIONS(2278), - [anon_sym_register] = ACTIONS(2278), - [anon_sym_inline] = ACTIONS(2278), - [anon_sym_const] = ACTIONS(2278), - [anon_sym_restrict] = ACTIONS(2278), - [anon_sym_volatile] = ACTIONS(2278), - [anon_sym__Atomic] = ACTIONS(2278), - [anon_sym_unsigned] = ACTIONS(2278), - [anon_sym_long] = ACTIONS(2278), - [anon_sym_short] = ACTIONS(2278), - [sym_primitive_type] = ACTIONS(2278), - [anon_sym_enum] = ACTIONS(2278), - [anon_sym_struct] = ACTIONS(2278), - [anon_sym_union] = ACTIONS(2278), - [anon_sym_if] = ACTIONS(2278), - [anon_sym_else] = ACTIONS(2278), - [anon_sym_switch] = ACTIONS(2278), - [anon_sym_case] = ACTIONS(2278), - [anon_sym_default] = ACTIONS(2278), - [anon_sym_while] = ACTIONS(2278), - [anon_sym_do] = ACTIONS(2278), - [anon_sym_for] = ACTIONS(2278), - [anon_sym_return] = ACTIONS(2278), - [anon_sym_break] = ACTIONS(2278), - [anon_sym_continue] = ACTIONS(2278), - [anon_sym_goto] = ACTIONS(2278), - [anon_sym_AMP] = ACTIONS(2280), - [anon_sym_BANG] = ACTIONS(2280), - [anon_sym_TILDE] = ACTIONS(2280), - [anon_sym_PLUS] = ACTIONS(2278), - [anon_sym_DASH] = ACTIONS(2278), - [anon_sym_DASH_DASH] = ACTIONS(2280), - [anon_sym_PLUS_PLUS] = ACTIONS(2280), - [anon_sym_sizeof] = ACTIONS(2278), - [sym_number_literal] = ACTIONS(2280), - [anon_sym_SQUOTE] = ACTIONS(2280), - [anon_sym_DQUOTE] = ACTIONS(2280), - [sym_true] = ACTIONS(2278), - [sym_false] = ACTIONS(2278), - [sym_null] = ACTIONS(2278), - [sym_identifier] = ACTIONS(2278), - [sym_comment] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(3092), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3094), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3094), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3094), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3094), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3094), + [sym_preproc_directive] = ACTIONS(3094), + [anon_sym_typedef] = ACTIONS(3094), + [anon_sym_extern] = ACTIONS(3094), + [anon_sym_LBRACE] = ACTIONS(3092), + [anon_sym_RBRACE] = ACTIONS(3092), + [anon_sym_LPAREN2] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(3092), + [anon_sym_static] = ACTIONS(3094), + [anon_sym_auto] = ACTIONS(3094), + [anon_sym_register] = ACTIONS(3094), + [anon_sym_inline] = ACTIONS(3094), + [anon_sym_const] = ACTIONS(3094), + [anon_sym_restrict] = ACTIONS(3094), + [anon_sym_volatile] = ACTIONS(3094), + [anon_sym__Atomic] = ACTIONS(3094), + [anon_sym_unsigned] = ACTIONS(3094), + [anon_sym_long] = ACTIONS(3094), + [anon_sym_short] = ACTIONS(3094), + [sym_primitive_type] = ACTIONS(3094), + [anon_sym_enum] = ACTIONS(3094), + [anon_sym_struct] = ACTIONS(3094), + [anon_sym_union] = ACTIONS(3094), + [anon_sym_if] = ACTIONS(3094), + [anon_sym_switch] = ACTIONS(3094), + [anon_sym_case] = ACTIONS(3094), + [anon_sym_default] = ACTIONS(3094), + [anon_sym_while] = ACTIONS(3094), + [anon_sym_do] = ACTIONS(3094), + [anon_sym_for] = ACTIONS(3094), + [anon_sym_return] = ACTIONS(3094), + [anon_sym_break] = ACTIONS(3094), + [anon_sym_continue] = ACTIONS(3094), + [anon_sym_goto] = ACTIONS(3094), + [anon_sym_AMP] = ACTIONS(3092), + [anon_sym_BANG] = ACTIONS(3092), + [anon_sym_TILDE] = ACTIONS(3092), + [anon_sym_PLUS] = ACTIONS(3094), + [anon_sym_DASH] = ACTIONS(3094), + [anon_sym_DASH_DASH] = ACTIONS(3092), + [anon_sym_PLUS_PLUS] = ACTIONS(3092), + [anon_sym_sizeof] = ACTIONS(3094), + [sym_number_literal] = ACTIONS(3092), + [anon_sym_SQUOTE] = ACTIONS(3092), + [anon_sym_DQUOTE] = ACTIONS(3092), + [sym_true] = ACTIONS(3094), + [sym_false] = ACTIONS(3094), + [sym_null] = ACTIONS(3094), + [sym_identifier] = ACTIONS(3094), + [sym_comment] = ACTIONS(59), }, [1022] = { - [sym__declarator] = STATE(935), - [sym_pointer_declarator] = STATE(935), - [sym_function_declarator] = STATE(935), - [sym_array_declarator] = STATE(935), - [sym_init_declarator] = STATE(284), - [anon_sym_LPAREN2] = ACTIONS(88), - [anon_sym_STAR] = ACTIONS(489), - [sym_identifier] = ACTIONS(2513), - [sym_comment] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(2569), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2571), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2571), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2571), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2571), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2571), + [sym_preproc_directive] = ACTIONS(2571), + [anon_sym_typedef] = ACTIONS(2571), + [anon_sym_extern] = ACTIONS(2571), + [anon_sym_LBRACE] = ACTIONS(2569), + [anon_sym_RBRACE] = ACTIONS(2569), + [anon_sym_LPAREN2] = ACTIONS(2569), + [anon_sym_STAR] = ACTIONS(2569), + [anon_sym_static] = ACTIONS(2571), + [anon_sym_auto] = ACTIONS(2571), + [anon_sym_register] = ACTIONS(2571), + [anon_sym_inline] = ACTIONS(2571), + [anon_sym_const] = ACTIONS(2571), + [anon_sym_restrict] = ACTIONS(2571), + [anon_sym_volatile] = ACTIONS(2571), + [anon_sym__Atomic] = ACTIONS(2571), + [anon_sym_unsigned] = ACTIONS(2571), + [anon_sym_long] = ACTIONS(2571), + [anon_sym_short] = ACTIONS(2571), + [sym_primitive_type] = ACTIONS(2571), + [anon_sym_enum] = ACTIONS(2571), + [anon_sym_struct] = ACTIONS(2571), + [anon_sym_union] = ACTIONS(2571), + [anon_sym_if] = ACTIONS(2571), + [anon_sym_else] = ACTIONS(3096), + [anon_sym_switch] = ACTIONS(2571), + [anon_sym_case] = ACTIONS(2571), + [anon_sym_default] = ACTIONS(2571), + [anon_sym_while] = ACTIONS(2571), + [anon_sym_do] = ACTIONS(2571), + [anon_sym_for] = ACTIONS(2571), + [anon_sym_return] = ACTIONS(2571), + [anon_sym_break] = ACTIONS(2571), + [anon_sym_continue] = ACTIONS(2571), + [anon_sym_goto] = ACTIONS(2571), + [anon_sym_AMP] = ACTIONS(2569), + [anon_sym_BANG] = ACTIONS(2569), + [anon_sym_TILDE] = ACTIONS(2569), + [anon_sym_PLUS] = ACTIONS(2571), + [anon_sym_DASH] = ACTIONS(2571), + [anon_sym_DASH_DASH] = ACTIONS(2569), + [anon_sym_PLUS_PLUS] = ACTIONS(2569), + [anon_sym_sizeof] = ACTIONS(2571), + [sym_number_literal] = ACTIONS(2569), + [anon_sym_SQUOTE] = ACTIONS(2569), + [anon_sym_DQUOTE] = ACTIONS(2569), + [sym_true] = ACTIONS(2571), + [sym_false] = ACTIONS(2571), + [sym_null] = ACTIONS(2571), + [sym_identifier] = ACTIONS(2571), + [sym_comment] = ACTIONS(59), }, [1023] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2282), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2282), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2282), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2282), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2282), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2282), - [sym_preproc_directive] = ACTIONS(2282), - [anon_sym_SEMI] = ACTIONS(2284), - [anon_sym_typedef] = ACTIONS(2282), - [anon_sym_extern] = ACTIONS(2282), - [anon_sym_LBRACE] = ACTIONS(2284), - [anon_sym_LPAREN2] = ACTIONS(2284), - [anon_sym_STAR] = ACTIONS(2284), - [anon_sym_static] = ACTIONS(2282), - [anon_sym_auto] = ACTIONS(2282), - [anon_sym_register] = ACTIONS(2282), - [anon_sym_inline] = ACTIONS(2282), - [anon_sym_const] = ACTIONS(2282), - [anon_sym_restrict] = ACTIONS(2282), - [anon_sym_volatile] = ACTIONS(2282), - [anon_sym__Atomic] = ACTIONS(2282), - [anon_sym_unsigned] = ACTIONS(2282), - [anon_sym_long] = ACTIONS(2282), - [anon_sym_short] = ACTIONS(2282), - [sym_primitive_type] = ACTIONS(2282), - [anon_sym_enum] = ACTIONS(2282), - [anon_sym_struct] = ACTIONS(2282), - [anon_sym_union] = ACTIONS(2282), - [anon_sym_if] = ACTIONS(2282), - [anon_sym_else] = ACTIONS(2282), - [anon_sym_switch] = ACTIONS(2282), - [anon_sym_case] = ACTIONS(2282), - [anon_sym_default] = ACTIONS(2282), - [anon_sym_while] = ACTIONS(2282), - [anon_sym_do] = ACTIONS(2282), - [anon_sym_for] = ACTIONS(2282), - [anon_sym_return] = ACTIONS(2282), - [anon_sym_break] = ACTIONS(2282), - [anon_sym_continue] = ACTIONS(2282), - [anon_sym_goto] = ACTIONS(2282), - [anon_sym_AMP] = ACTIONS(2284), - [anon_sym_BANG] = ACTIONS(2284), - [anon_sym_TILDE] = ACTIONS(2284), - [anon_sym_PLUS] = ACTIONS(2282), - [anon_sym_DASH] = ACTIONS(2282), - [anon_sym_DASH_DASH] = ACTIONS(2284), - [anon_sym_PLUS_PLUS] = ACTIONS(2284), - [anon_sym_sizeof] = ACTIONS(2282), - [sym_number_literal] = ACTIONS(2284), - [anon_sym_SQUOTE] = ACTIONS(2284), - [anon_sym_DQUOTE] = ACTIONS(2284), - [sym_true] = ACTIONS(2282), - [sym_false] = ACTIONS(2282), - [sym_null] = ACTIONS(2282), - [sym_identifier] = ACTIONS(2282), - [sym_comment] = ACTIONS(37), + [sym_declaration] = STATE(935), + [sym_type_definition] = STATE(935), + [sym__declaration_specifiers] = STATE(778), + [sym_compound_statement] = STATE(935), + [sym_storage_class_specifier] = STATE(142), + [sym_type_qualifier] = STATE(142), + [sym__type_specifier] = STATE(141), + [sym_sized_type_specifier] = STATE(141), + [sym_enum_specifier] = STATE(141), + [sym_struct_specifier] = STATE(141), + [sym_union_specifier] = STATE(141), + [sym_labeled_statement] = STATE(935), + [sym_expression_statement] = STATE(935), + [sym_if_statement] = STATE(935), + [sym_switch_statement] = STATE(935), + [sym_case_statement] = STATE(935), + [sym_while_statement] = STATE(935), + [sym_do_statement] = STATE(935), + [sym_for_statement] = STATE(935), + [sym_return_statement] = STATE(935), + [sym_break_statement] = STATE(935), + [sym_continue_statement] = STATE(935), + [sym_goto_statement] = STATE(935), + [sym__expression] = STATE(372), + [sym_comma_expression] = STATE(373), + [sym_conditional_expression] = STATE(372), + [sym_assignment_expression] = STATE(372), + [sym_pointer_expression] = STATE(372), + [sym_logical_expression] = STATE(372), + [sym_bitwise_expression] = STATE(372), + [sym_equality_expression] = STATE(372), + [sym_relational_expression] = STATE(372), + [sym_shift_expression] = STATE(372), + [sym_math_expression] = STATE(372), + [sym_cast_expression] = STATE(372), + [sym_sizeof_expression] = STATE(372), + [sym_subscript_expression] = STATE(372), + [sym_call_expression] = STATE(372), + [sym_field_expression] = STATE(372), + [sym_compound_literal_expression] = STATE(372), + [sym_parenthesized_expression] = STATE(372), + [sym_char_literal] = STATE(372), + [sym_concatenated_string] = STATE(372), + [sym_string_literal] = STATE(374), + [sym_macro_type_specifier] = STATE(141), + [aux_sym__declaration_specifiers_repeat1] = STATE(142), + [aux_sym_sized_type_specifier_repeat1] = STATE(143), + [anon_sym_SEMI] = ACTIONS(928), + [anon_sym_typedef] = ACTIONS(17), + [anon_sym_extern] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(439), + [anon_sym_LPAREN2] = ACTIONS(936), + [anon_sym_STAR] = ACTIONS(938), + [anon_sym_static] = ACTIONS(25), + [anon_sym_auto] = ACTIONS(25), + [anon_sym_register] = ACTIONS(25), + [anon_sym_inline] = ACTIONS(25), + [anon_sym_const] = ACTIONS(27), + [anon_sym_restrict] = ACTIONS(27), + [anon_sym_volatile] = ACTIONS(27), + [anon_sym__Atomic] = ACTIONS(27), + [anon_sym_unsigned] = ACTIONS(294), + [anon_sym_long] = ACTIONS(294), + [anon_sym_short] = ACTIONS(294), + [sym_primitive_type] = ACTIONS(296), + [anon_sym_enum] = ACTIONS(33), + [anon_sym_struct] = ACTIONS(35), + [anon_sym_union] = ACTIONS(37), + [anon_sym_if] = ACTIONS(1988), + [anon_sym_switch] = ACTIONS(1990), + [anon_sym_case] = ACTIONS(1992), + [anon_sym_default] = ACTIONS(1994), + [anon_sym_while] = ACTIONS(1996), + [anon_sym_do] = ACTIONS(950), + [anon_sym_for] = ACTIONS(1998), + [anon_sym_return] = ACTIONS(954), + [anon_sym_break] = ACTIONS(956), + [anon_sym_continue] = ACTIONS(958), + [anon_sym_goto] = ACTIONS(960), + [anon_sym_AMP] = ACTIONS(938), + [anon_sym_BANG] = ACTIONS(962), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_DASH_DASH] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(968), + [anon_sym_sizeof] = ACTIONS(970), + [sym_number_literal] = ACTIONS(972), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(974), + [sym_false] = ACTIONS(974), + [sym_null] = ACTIONS(974), + [sym_identifier] = ACTIONS(2866), + [sym_comment] = ACTIONS(59), }, [1024] = { - [sym_parenthesized_expression] = STATE(1081), - [anon_sym_LPAREN2] = ACTIONS(3019), - [sym_comment] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(166), + [anon_sym_COMMA] = ACTIONS(166), + [anon_sym_extern] = ACTIONS(157), + [anon_sym_LPAREN2] = ACTIONS(159), + [anon_sym_STAR] = ACTIONS(163), + [anon_sym_LBRACK] = ACTIONS(166), + [anon_sym_EQ] = ACTIONS(168), + [anon_sym_static] = ACTIONS(157), + [anon_sym_auto] = ACTIONS(157), + [anon_sym_register] = ACTIONS(157), + [anon_sym_inline] = ACTIONS(157), + [anon_sym_const] = ACTIONS(157), + [anon_sym_restrict] = ACTIONS(157), + [anon_sym_volatile] = ACTIONS(157), + [anon_sym__Atomic] = ACTIONS(157), + [anon_sym_COLON] = ACTIONS(2567), + [anon_sym_QMARK] = ACTIONS(166), + [anon_sym_STAR_EQ] = ACTIONS(166), + [anon_sym_SLASH_EQ] = ACTIONS(166), + [anon_sym_PERCENT_EQ] = ACTIONS(166), + [anon_sym_PLUS_EQ] = ACTIONS(166), + [anon_sym_DASH_EQ] = ACTIONS(166), + [anon_sym_LT_LT_EQ] = ACTIONS(166), + [anon_sym_GT_GT_EQ] = ACTIONS(166), + [anon_sym_AMP_EQ] = ACTIONS(166), + [anon_sym_CARET_EQ] = ACTIONS(166), + [anon_sym_PIPE_EQ] = ACTIONS(166), + [anon_sym_AMP] = ACTIONS(168), + [anon_sym_PIPE_PIPE] = ACTIONS(166), + [anon_sym_AMP_AMP] = ACTIONS(166), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_CARET] = ACTIONS(168), + [anon_sym_EQ_EQ] = ACTIONS(166), + [anon_sym_BANG_EQ] = ACTIONS(166), + [anon_sym_LT] = ACTIONS(168), + [anon_sym_GT] = ACTIONS(168), + [anon_sym_LT_EQ] = ACTIONS(166), + [anon_sym_GT_EQ] = ACTIONS(166), + [anon_sym_LT_LT] = ACTIONS(168), + [anon_sym_GT_GT] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(168), + [anon_sym_DASH] = ACTIONS(168), + [anon_sym_SLASH] = ACTIONS(168), + [anon_sym_PERCENT] = ACTIONS(168), + [anon_sym_DASH_DASH] = ACTIONS(166), + [anon_sym_PLUS_PLUS] = ACTIONS(166), + [anon_sym_DOT] = ACTIONS(166), + [anon_sym_DASH_GT] = ACTIONS(166), + [sym_identifier] = ACTIONS(157), + [sym_comment] = ACTIONS(59), }, [1025] = { - [sym__expression] = STATE(1083), - [sym_conditional_expression] = STATE(1083), - [sym_assignment_expression] = STATE(1083), - [sym_pointer_expression] = STATE(1083), - [sym_logical_expression] = STATE(1083), - [sym_bitwise_expression] = STATE(1083), - [sym_equality_expression] = STATE(1083), - [sym_relational_expression] = STATE(1083), - [sym_shift_expression] = STATE(1083), - [sym_math_expression] = STATE(1083), - [sym_cast_expression] = STATE(1083), - [sym_sizeof_expression] = STATE(1083), - [sym_subscript_expression] = STATE(1083), - [sym_call_expression] = STATE(1083), - [sym_field_expression] = STATE(1083), - [sym_compound_literal_expression] = STATE(1083), - [sym_parenthesized_expression] = STATE(1083), - [sym_char_literal] = STATE(1083), - [sym_concatenated_string] = STATE(1083), - [sym_string_literal] = STATE(342), - [anon_sym_SEMI] = ACTIONS(3021), - [anon_sym_LPAREN2] = ACTIONS(780), - [anon_sym_STAR] = ACTIONS(782), - [anon_sym_AMP] = ACTIONS(782), - [anon_sym_BANG] = ACTIONS(784), - [anon_sym_TILDE] = ACTIONS(786), - [anon_sym_PLUS] = ACTIONS(788), - [anon_sym_DASH] = ACTIONS(788), - [anon_sym_DASH_DASH] = ACTIONS(790), - [anon_sym_PLUS_PLUS] = ACTIONS(790), - [anon_sym_sizeof] = ACTIONS(792), - [sym_number_literal] = ACTIONS(3023), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(3025), - [sym_false] = ACTIONS(3025), - [sym_null] = ACTIONS(3025), - [sym_identifier] = ACTIONS(3025), - [sym_comment] = ACTIONS(37), + [sym__expression] = STATE(1095), + [sym_conditional_expression] = STATE(1095), + [sym_assignment_expression] = STATE(1095), + [sym_pointer_expression] = STATE(1095), + [sym_logical_expression] = STATE(1095), + [sym_bitwise_expression] = STATE(1095), + [sym_equality_expression] = STATE(1095), + [sym_relational_expression] = STATE(1095), + [sym_shift_expression] = STATE(1095), + [sym_math_expression] = STATE(1095), + [sym_cast_expression] = STATE(1095), + [sym_sizeof_expression] = STATE(1095), + [sym_subscript_expression] = STATE(1095), + [sym_call_expression] = STATE(1095), + [sym_field_expression] = STATE(1095), + [sym_compound_literal_expression] = STATE(1095), + [sym_parenthesized_expression] = STATE(1095), + [sym_char_literal] = STATE(1095), + [sym_concatenated_string] = STATE(1095), + [sym_string_literal] = STATE(534), + [anon_sym_SEMI] = ACTIONS(3098), + [anon_sym_LPAREN2] = ACTIONS(1349), + [anon_sym_STAR] = ACTIONS(1351), + [anon_sym_AMP] = ACTIONS(1351), + [anon_sym_BANG] = ACTIONS(1353), + [anon_sym_TILDE] = ACTIONS(1355), + [anon_sym_PLUS] = ACTIONS(1357), + [anon_sym_DASH] = ACTIONS(1357), + [anon_sym_DASH_DASH] = ACTIONS(1359), + [anon_sym_PLUS_PLUS] = ACTIONS(1359), + [anon_sym_sizeof] = ACTIONS(1361), + [sym_number_literal] = ACTIONS(3100), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(3102), + [sym_false] = ACTIONS(3102), + [sym_null] = ACTIONS(3102), + [sym_identifier] = ACTIONS(3102), + [sym_comment] = ACTIONS(59), }, [1026] = { - [sym_argument_list] = STATE(430), - [anon_sym_SEMI] = ACTIONS(3027), - [anon_sym_LPAREN2] = ACTIONS(1012), - [anon_sym_STAR] = ACTIONS(1319), - [anon_sym_LBRACK] = ACTIONS(1016), - [anon_sym_EQ] = ACTIONS(1321), - [anon_sym_QMARK] = ACTIONS(1323), - [anon_sym_STAR_EQ] = ACTIONS(1325), - [anon_sym_SLASH_EQ] = ACTIONS(1325), - [anon_sym_PERCENT_EQ] = ACTIONS(1325), - [anon_sym_PLUS_EQ] = ACTIONS(1325), - [anon_sym_DASH_EQ] = ACTIONS(1325), - [anon_sym_LT_LT_EQ] = ACTIONS(1325), - [anon_sym_GT_GT_EQ] = ACTIONS(1325), - [anon_sym_AMP_EQ] = ACTIONS(1325), - [anon_sym_CARET_EQ] = ACTIONS(1325), - [anon_sym_PIPE_EQ] = ACTIONS(1325), - [anon_sym_AMP] = ACTIONS(1327), - [anon_sym_PIPE_PIPE] = ACTIONS(1329), - [anon_sym_AMP_AMP] = ACTIONS(1331), - [anon_sym_PIPE] = ACTIONS(1333), - [anon_sym_CARET] = ACTIONS(1335), - [anon_sym_EQ_EQ] = ACTIONS(1337), - [anon_sym_BANG_EQ] = ACTIONS(1337), - [anon_sym_LT] = ACTIONS(1339), - [anon_sym_GT] = ACTIONS(1339), - [anon_sym_LT_EQ] = ACTIONS(1341), - [anon_sym_GT_EQ] = ACTIONS(1341), - [anon_sym_LT_LT] = ACTIONS(1343), - [anon_sym_GT_GT] = ACTIONS(1343), - [anon_sym_PLUS] = ACTIONS(1345), - [anon_sym_DASH] = ACTIONS(1345), - [anon_sym_SLASH] = ACTIONS(1319), - [anon_sym_PERCENT] = ACTIONS(1319), - [anon_sym_DASH_DASH] = ACTIONS(1044), - [anon_sym_PLUS_PLUS] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1046), - [anon_sym_DASH_GT] = ACTIONS(1046), - [sym_comment] = ACTIONS(37), + [sym_argument_list] = STATE(98), + [anon_sym_SEMI] = ACTIONS(3104), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_LBRACK] = ACTIONS(188), + [anon_sym_EQ] = ACTIONS(1896), + [anon_sym_QMARK] = ACTIONS(1898), + [anon_sym_STAR_EQ] = ACTIONS(1900), + [anon_sym_SLASH_EQ] = ACTIONS(1900), + [anon_sym_PERCENT_EQ] = ACTIONS(1900), + [anon_sym_PLUS_EQ] = ACTIONS(1900), + [anon_sym_DASH_EQ] = ACTIONS(1900), + [anon_sym_LT_LT_EQ] = ACTIONS(1900), + [anon_sym_GT_GT_EQ] = ACTIONS(1900), + [anon_sym_AMP_EQ] = ACTIONS(1900), + [anon_sym_CARET_EQ] = ACTIONS(1900), + [anon_sym_PIPE_EQ] = ACTIONS(1900), + [anon_sym_AMP] = ACTIONS(1902), + [anon_sym_PIPE_PIPE] = ACTIONS(1904), + [anon_sym_AMP_AMP] = ACTIONS(1906), + [anon_sym_PIPE] = ACTIONS(1908), + [anon_sym_CARET] = ACTIONS(1910), + [anon_sym_EQ_EQ] = ACTIONS(1912), + [anon_sym_BANG_EQ] = ACTIONS(1912), + [anon_sym_LT] = ACTIONS(1914), + [anon_sym_GT] = ACTIONS(1914), + [anon_sym_LT_EQ] = ACTIONS(1916), + [anon_sym_GT_EQ] = ACTIONS(1916), + [anon_sym_LT_LT] = ACTIONS(1918), + [anon_sym_GT_GT] = ACTIONS(1918), + [anon_sym_PLUS] = ACTIONS(1920), + [anon_sym_DASH] = ACTIONS(1920), + [anon_sym_SLASH] = ACTIONS(1894), + [anon_sym_PERCENT] = ACTIONS(1894), + [anon_sym_DASH_DASH] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(216), + [anon_sym_DOT] = ACTIONS(218), + [anon_sym_DASH_GT] = ACTIONS(218), + [sym_comment] = ACTIONS(59), }, [1027] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2320), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2320), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2320), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2320), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2320), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2320), - [sym_preproc_directive] = ACTIONS(2320), - [anon_sym_SEMI] = ACTIONS(2322), - [anon_sym_typedef] = ACTIONS(2320), - [anon_sym_extern] = ACTIONS(2320), - [anon_sym_LBRACE] = ACTIONS(2322), - [anon_sym_LPAREN2] = ACTIONS(2322), - [anon_sym_STAR] = ACTIONS(2322), - [anon_sym_static] = ACTIONS(2320), - [anon_sym_auto] = ACTIONS(2320), - [anon_sym_register] = ACTIONS(2320), - [anon_sym_inline] = ACTIONS(2320), - [anon_sym_const] = ACTIONS(2320), - [anon_sym_restrict] = ACTIONS(2320), - [anon_sym_volatile] = ACTIONS(2320), - [anon_sym__Atomic] = ACTIONS(2320), - [anon_sym_unsigned] = ACTIONS(2320), - [anon_sym_long] = ACTIONS(2320), - [anon_sym_short] = ACTIONS(2320), - [sym_primitive_type] = ACTIONS(2320), - [anon_sym_enum] = ACTIONS(2320), - [anon_sym_struct] = ACTIONS(2320), - [anon_sym_union] = ACTIONS(2320), - [anon_sym_if] = ACTIONS(2320), - [anon_sym_else] = ACTIONS(2320), - [anon_sym_switch] = ACTIONS(2320), - [anon_sym_case] = ACTIONS(2320), - [anon_sym_default] = ACTIONS(2320), - [anon_sym_while] = ACTIONS(2320), - [anon_sym_do] = ACTIONS(2320), - [anon_sym_for] = ACTIONS(2320), - [anon_sym_return] = ACTIONS(2320), - [anon_sym_break] = ACTIONS(2320), - [anon_sym_continue] = ACTIONS(2320), - [anon_sym_goto] = ACTIONS(2320), - [anon_sym_AMP] = ACTIONS(2322), - [anon_sym_BANG] = ACTIONS(2322), - [anon_sym_TILDE] = ACTIONS(2322), - [anon_sym_PLUS] = ACTIONS(2320), - [anon_sym_DASH] = ACTIONS(2320), - [anon_sym_DASH_DASH] = ACTIONS(2322), - [anon_sym_PLUS_PLUS] = ACTIONS(2322), - [anon_sym_sizeof] = ACTIONS(2320), - [sym_number_literal] = ACTIONS(2322), - [anon_sym_SQUOTE] = ACTIONS(2322), - [anon_sym_DQUOTE] = ACTIONS(2322), - [sym_true] = ACTIONS(2320), - [sym_false] = ACTIONS(2320), - [sym_null] = ACTIONS(2320), - [sym_identifier] = ACTIONS(2320), - [sym_comment] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(3106), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3108), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3108), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3108), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3108), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3108), + [sym_preproc_directive] = ACTIONS(3108), + [anon_sym_typedef] = ACTIONS(3108), + [anon_sym_extern] = ACTIONS(3108), + [anon_sym_LBRACE] = ACTIONS(3106), + [anon_sym_RBRACE] = ACTIONS(3106), + [anon_sym_LPAREN2] = ACTIONS(3106), + [anon_sym_STAR] = ACTIONS(3106), + [anon_sym_static] = ACTIONS(3108), + [anon_sym_auto] = ACTIONS(3108), + [anon_sym_register] = ACTIONS(3108), + [anon_sym_inline] = ACTIONS(3108), + [anon_sym_const] = ACTIONS(3108), + [anon_sym_restrict] = ACTIONS(3108), + [anon_sym_volatile] = ACTIONS(3108), + [anon_sym__Atomic] = ACTIONS(3108), + [anon_sym_unsigned] = ACTIONS(3108), + [anon_sym_long] = ACTIONS(3108), + [anon_sym_short] = ACTIONS(3108), + [sym_primitive_type] = ACTIONS(3108), + [anon_sym_enum] = ACTIONS(3108), + [anon_sym_struct] = ACTIONS(3108), + [anon_sym_union] = ACTIONS(3108), + [anon_sym_if] = ACTIONS(3108), + [anon_sym_else] = ACTIONS(3108), + [anon_sym_switch] = ACTIONS(3108), + [anon_sym_case] = ACTIONS(3108), + [anon_sym_default] = ACTIONS(3108), + [anon_sym_while] = ACTIONS(3108), + [anon_sym_do] = ACTIONS(3108), + [anon_sym_for] = ACTIONS(3108), + [anon_sym_return] = ACTIONS(3108), + [anon_sym_break] = ACTIONS(3108), + [anon_sym_continue] = ACTIONS(3108), + [anon_sym_goto] = ACTIONS(3108), + [anon_sym_AMP] = ACTIONS(3106), + [anon_sym_BANG] = ACTIONS(3106), + [anon_sym_TILDE] = ACTIONS(3106), + [anon_sym_PLUS] = ACTIONS(3108), + [anon_sym_DASH] = ACTIONS(3108), + [anon_sym_DASH_DASH] = ACTIONS(3106), + [anon_sym_PLUS_PLUS] = ACTIONS(3106), + [anon_sym_sizeof] = ACTIONS(3108), + [sym_number_literal] = ACTIONS(3106), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_DQUOTE] = ACTIONS(3106), + [sym_true] = ACTIONS(3108), + [sym_false] = ACTIONS(3108), + [sym_null] = ACTIONS(3108), + [sym_identifier] = ACTIONS(3108), + [sym_comment] = ACTIONS(59), }, [1028] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2324), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2324), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2324), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2324), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2324), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2324), - [sym_preproc_directive] = ACTIONS(2324), - [anon_sym_SEMI] = ACTIONS(2326), - [anon_sym_typedef] = ACTIONS(2324), - [anon_sym_extern] = ACTIONS(2324), - [anon_sym_LBRACE] = ACTIONS(2326), - [anon_sym_LPAREN2] = ACTIONS(2326), - [anon_sym_STAR] = ACTIONS(2326), - [anon_sym_static] = ACTIONS(2324), - [anon_sym_auto] = ACTIONS(2324), - [anon_sym_register] = ACTIONS(2324), - [anon_sym_inline] = ACTIONS(2324), - [anon_sym_const] = ACTIONS(2324), - [anon_sym_restrict] = ACTIONS(2324), - [anon_sym_volatile] = ACTIONS(2324), - [anon_sym__Atomic] = ACTIONS(2324), - [anon_sym_unsigned] = ACTIONS(2324), - [anon_sym_long] = ACTIONS(2324), - [anon_sym_short] = ACTIONS(2324), - [sym_primitive_type] = ACTIONS(2324), - [anon_sym_enum] = ACTIONS(2324), - [anon_sym_struct] = ACTIONS(2324), - [anon_sym_union] = ACTIONS(2324), - [anon_sym_if] = ACTIONS(2324), - [anon_sym_else] = ACTIONS(2324), - [anon_sym_switch] = ACTIONS(2324), - [anon_sym_case] = ACTIONS(2324), - [anon_sym_default] = ACTIONS(2324), - [anon_sym_while] = ACTIONS(2324), - [anon_sym_do] = ACTIONS(2324), - [anon_sym_for] = ACTIONS(2324), - [anon_sym_return] = ACTIONS(2324), - [anon_sym_break] = ACTIONS(2324), - [anon_sym_continue] = ACTIONS(2324), - [anon_sym_goto] = ACTIONS(2324), - [anon_sym_AMP] = ACTIONS(2326), - [anon_sym_BANG] = ACTIONS(2326), - [anon_sym_TILDE] = ACTIONS(2326), - [anon_sym_PLUS] = ACTIONS(2324), - [anon_sym_DASH] = ACTIONS(2324), - [anon_sym_DASH_DASH] = ACTIONS(2326), - [anon_sym_PLUS_PLUS] = ACTIONS(2326), - [anon_sym_sizeof] = ACTIONS(2324), - [sym_number_literal] = ACTIONS(2326), - [anon_sym_SQUOTE] = ACTIONS(2326), - [anon_sym_DQUOTE] = ACTIONS(2326), - [sym_true] = ACTIONS(2324), - [sym_false] = ACTIONS(2324), - [sym_null] = ACTIONS(2324), - [sym_identifier] = ACTIONS(2324), - [sym_comment] = ACTIONS(37), + [sym_compound_statement] = STATE(1097), + [sym_labeled_statement] = STATE(1097), + [sym_expression_statement] = STATE(1097), + [sym_if_statement] = STATE(1097), + [sym_switch_statement] = STATE(1097), + [sym_case_statement] = STATE(1097), + [sym_while_statement] = STATE(1097), + [sym_do_statement] = STATE(1097), + [sym_for_statement] = STATE(1097), + [sym_return_statement] = STATE(1097), + [sym_break_statement] = STATE(1097), + [sym_continue_statement] = STATE(1097), + [sym_goto_statement] = STATE(1097), + [sym__expression] = STATE(372), + [sym_comma_expression] = STATE(373), + [sym_conditional_expression] = STATE(372), + [sym_assignment_expression] = STATE(372), + [sym_pointer_expression] = STATE(372), + [sym_logical_expression] = STATE(372), + [sym_bitwise_expression] = STATE(372), + [sym_equality_expression] = STATE(372), + [sym_relational_expression] = STATE(372), + [sym_shift_expression] = STATE(372), + [sym_math_expression] = STATE(372), + [sym_cast_expression] = STATE(372), + [sym_sizeof_expression] = STATE(372), + [sym_subscript_expression] = STATE(372), + [sym_call_expression] = STATE(372), + [sym_field_expression] = STATE(372), + [sym_compound_literal_expression] = STATE(372), + [sym_parenthesized_expression] = STATE(372), + [sym_char_literal] = STATE(372), + [sym_concatenated_string] = STATE(372), + [sym_string_literal] = STATE(374), + [anon_sym_SEMI] = ACTIONS(928), + [anon_sym_LBRACE] = ACTIONS(439), + [anon_sym_LPAREN2] = ACTIONS(936), + [anon_sym_STAR] = ACTIONS(938), + [anon_sym_if] = ACTIONS(2587), + [anon_sym_switch] = ACTIONS(2589), + [anon_sym_case] = ACTIONS(2591), + [anon_sym_default] = ACTIONS(2593), + [anon_sym_while] = ACTIONS(2595), + [anon_sym_do] = ACTIONS(1466), + [anon_sym_for] = ACTIONS(2597), + [anon_sym_return] = ACTIONS(954), + [anon_sym_break] = ACTIONS(956), + [anon_sym_continue] = ACTIONS(958), + [anon_sym_goto] = ACTIONS(960), + [anon_sym_AMP] = ACTIONS(938), + [anon_sym_BANG] = ACTIONS(962), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_DASH_DASH] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(968), + [anon_sym_sizeof] = ACTIONS(970), + [sym_number_literal] = ACTIONS(972), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(974), + [sym_false] = ACTIONS(974), + [sym_null] = ACTIONS(974), + [sym_identifier] = ACTIONS(2599), + [sym_comment] = ACTIONS(59), }, [1029] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2334), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2334), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2334), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2334), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2334), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2334), - [sym_preproc_directive] = ACTIONS(2334), - [anon_sym_SEMI] = ACTIONS(2336), - [anon_sym_typedef] = ACTIONS(2334), - [anon_sym_extern] = ACTIONS(2334), - [anon_sym_LBRACE] = ACTIONS(2336), - [anon_sym_LPAREN2] = ACTIONS(2336), - [anon_sym_STAR] = ACTIONS(2336), - [anon_sym_static] = ACTIONS(2334), - [anon_sym_auto] = ACTIONS(2334), - [anon_sym_register] = ACTIONS(2334), - [anon_sym_inline] = ACTIONS(2334), - [anon_sym_const] = ACTIONS(2334), - [anon_sym_restrict] = ACTIONS(2334), - [anon_sym_volatile] = ACTIONS(2334), - [anon_sym__Atomic] = ACTIONS(2334), - [anon_sym_unsigned] = ACTIONS(2334), - [anon_sym_long] = ACTIONS(2334), - [anon_sym_short] = ACTIONS(2334), - [sym_primitive_type] = ACTIONS(2334), - [anon_sym_enum] = ACTIONS(2334), - [anon_sym_struct] = ACTIONS(2334), - [anon_sym_union] = ACTIONS(2334), - [anon_sym_if] = ACTIONS(2334), - [anon_sym_else] = ACTIONS(2334), - [anon_sym_switch] = ACTIONS(2334), - [anon_sym_case] = ACTIONS(2334), - [anon_sym_default] = ACTIONS(2334), - [anon_sym_while] = ACTIONS(2334), - [anon_sym_do] = ACTIONS(2334), - [anon_sym_for] = ACTIONS(2334), - [anon_sym_return] = ACTIONS(2334), - [anon_sym_break] = ACTIONS(2334), - [anon_sym_continue] = ACTIONS(2334), - [anon_sym_goto] = ACTIONS(2334), - [anon_sym_AMP] = ACTIONS(2336), - [anon_sym_BANG] = ACTIONS(2336), - [anon_sym_TILDE] = ACTIONS(2336), - [anon_sym_PLUS] = ACTIONS(2334), - [anon_sym_DASH] = ACTIONS(2334), - [anon_sym_DASH_DASH] = ACTIONS(2336), - [anon_sym_PLUS_PLUS] = ACTIONS(2336), - [anon_sym_sizeof] = ACTIONS(2334), - [sym_number_literal] = ACTIONS(2336), - [anon_sym_SQUOTE] = ACTIONS(2336), - [anon_sym_DQUOTE] = ACTIONS(2336), - [sym_true] = ACTIONS(2334), - [sym_false] = ACTIONS(2334), - [sym_null] = ACTIONS(2334), - [sym_identifier] = ACTIONS(2334), - [sym_comment] = ACTIONS(37), + [sym_compound_statement] = STATE(774), + [sym_labeled_statement] = STATE(774), + [sym_expression_statement] = STATE(774), + [sym_if_statement] = STATE(774), + [sym_switch_statement] = STATE(774), + [sym_case_statement] = STATE(774), + [sym_while_statement] = STATE(774), + [sym_do_statement] = STATE(774), + [sym_for_statement] = STATE(774), + [sym_return_statement] = STATE(774), + [sym_break_statement] = STATE(774), + [sym_continue_statement] = STATE(774), + [sym_goto_statement] = STATE(774), + [sym__expression] = STATE(372), + [sym_comma_expression] = STATE(373), + [sym_conditional_expression] = STATE(372), + [sym_assignment_expression] = STATE(372), + [sym_pointer_expression] = STATE(372), + [sym_logical_expression] = STATE(372), + [sym_bitwise_expression] = STATE(372), + [sym_equality_expression] = STATE(372), + [sym_relational_expression] = STATE(372), + [sym_shift_expression] = STATE(372), + [sym_math_expression] = STATE(372), + [sym_cast_expression] = STATE(372), + [sym_sizeof_expression] = STATE(372), + [sym_subscript_expression] = STATE(372), + [sym_call_expression] = STATE(372), + [sym_field_expression] = STATE(372), + [sym_compound_literal_expression] = STATE(372), + [sym_parenthesized_expression] = STATE(372), + [sym_char_literal] = STATE(372), + [sym_concatenated_string] = STATE(372), + [sym_string_literal] = STATE(374), + [anon_sym_SEMI] = ACTIONS(928), + [anon_sym_LBRACE] = ACTIONS(439), + [anon_sym_LPAREN2] = ACTIONS(936), + [anon_sym_STAR] = ACTIONS(938), + [anon_sym_if] = ACTIONS(2587), + [anon_sym_switch] = ACTIONS(2589), + [anon_sym_case] = ACTIONS(2591), + [anon_sym_default] = ACTIONS(2593), + [anon_sym_while] = ACTIONS(2595), + [anon_sym_do] = ACTIONS(1466), + [anon_sym_for] = ACTIONS(2597), + [anon_sym_return] = ACTIONS(954), + [anon_sym_break] = ACTIONS(956), + [anon_sym_continue] = ACTIONS(958), + [anon_sym_goto] = ACTIONS(960), + [anon_sym_AMP] = ACTIONS(938), + [anon_sym_BANG] = ACTIONS(962), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_DASH_DASH] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(968), + [anon_sym_sizeof] = ACTIONS(970), + [sym_number_literal] = ACTIONS(972), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(974), + [sym_false] = ACTIONS(974), + [sym_null] = ACTIONS(974), + [sym_identifier] = ACTIONS(2599), + [sym_comment] = ACTIONS(59), }, [1030] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3029), - [sym_comment] = ACTIONS(37), + [sym_argument_list] = STATE(98), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(1054), + [anon_sym_LBRACK] = ACTIONS(188), + [anon_sym_EQ] = ACTIONS(1056), + [anon_sym_COLON] = ACTIONS(3110), + [anon_sym_QMARK] = ACTIONS(1060), + [anon_sym_STAR_EQ] = ACTIONS(1062), + [anon_sym_SLASH_EQ] = ACTIONS(1062), + [anon_sym_PERCENT_EQ] = ACTIONS(1062), + [anon_sym_PLUS_EQ] = ACTIONS(1062), + [anon_sym_DASH_EQ] = ACTIONS(1062), + [anon_sym_LT_LT_EQ] = ACTIONS(1062), + [anon_sym_GT_GT_EQ] = ACTIONS(1062), + [anon_sym_AMP_EQ] = ACTIONS(1062), + [anon_sym_CARET_EQ] = ACTIONS(1062), + [anon_sym_PIPE_EQ] = ACTIONS(1062), + [anon_sym_AMP] = ACTIONS(1064), + [anon_sym_PIPE_PIPE] = ACTIONS(1066), + [anon_sym_AMP_AMP] = ACTIONS(1068), + [anon_sym_PIPE] = ACTIONS(1070), + [anon_sym_CARET] = ACTIONS(1072), + [anon_sym_EQ_EQ] = ACTIONS(1074), + [anon_sym_BANG_EQ] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(1076), + [anon_sym_GT] = ACTIONS(1076), + [anon_sym_LT_EQ] = ACTIONS(1078), + [anon_sym_GT_EQ] = ACTIONS(1078), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_GT_GT] = ACTIONS(1080), + [anon_sym_PLUS] = ACTIONS(1082), + [anon_sym_DASH] = ACTIONS(1082), + [anon_sym_SLASH] = ACTIONS(1054), + [anon_sym_PERCENT] = ACTIONS(1054), + [anon_sym_DASH_DASH] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(216), + [anon_sym_DOT] = ACTIONS(218), + [anon_sym_DASH_GT] = ACTIONS(218), + [sym_comment] = ACTIONS(59), }, [1031] = { - [sym_compound_statement] = STATE(1085), - [sym_labeled_statement] = STATE(1085), - [sym_expression_statement] = STATE(1085), - [sym_if_statement] = STATE(1085), - [sym_switch_statement] = STATE(1085), - [sym_case_statement] = STATE(1085), - [sym_while_statement] = STATE(1085), - [sym_do_statement] = STATE(1085), - [sym_for_statement] = STATE(1085), - [sym_return_statement] = STATE(1085), - [sym_break_statement] = STATE(1085), - [sym_continue_statement] = STATE(1085), - [sym_goto_statement] = STATE(1085), - [sym__expression] = STATE(594), - [sym_comma_expression] = STATE(595), - [sym_conditional_expression] = STATE(594), - [sym_assignment_expression] = STATE(594), - [sym_pointer_expression] = STATE(594), - [sym_logical_expression] = STATE(594), - [sym_bitwise_expression] = STATE(594), - [sym_equality_expression] = STATE(594), - [sym_relational_expression] = STATE(594), - [sym_shift_expression] = STATE(594), - [sym_math_expression] = STATE(594), - [sym_cast_expression] = STATE(594), - [sym_sizeof_expression] = STATE(594), - [sym_subscript_expression] = STATE(594), - [sym_call_expression] = STATE(594), - [sym_field_expression] = STATE(594), - [sym_compound_literal_expression] = STATE(594), - [sym_parenthesized_expression] = STATE(594), - [sym_char_literal] = STATE(594), - [sym_concatenated_string] = STATE(594), - [sym_string_literal] = STATE(230), - [anon_sym_SEMI] = ACTIONS(1395), - [anon_sym_LBRACE] = ACTIONS(678), - [anon_sym_LPAREN2] = ACTIONS(507), - [anon_sym_STAR] = ACTIONS(509), - [anon_sym_if] = ACTIONS(2521), - [anon_sym_switch] = ACTIONS(2523), - [anon_sym_case] = ACTIONS(2525), - [anon_sym_default] = ACTIONS(2527), - [anon_sym_while] = ACTIONS(2529), - [anon_sym_do] = ACTIONS(1407), - [anon_sym_for] = ACTIONS(2531), - [anon_sym_return] = ACTIONS(1411), - [anon_sym_break] = ACTIONS(1413), - [anon_sym_continue] = ACTIONS(1415), - [anon_sym_goto] = ACTIONS(1417), - [anon_sym_AMP] = ACTIONS(509), - [anon_sym_BANG] = ACTIONS(533), - [anon_sym_TILDE] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DASH] = ACTIONS(537), - [anon_sym_DASH_DASH] = ACTIONS(539), - [anon_sym_PLUS_PLUS] = ACTIONS(539), - [anon_sym_sizeof] = ACTIONS(541), - [sym_number_literal] = ACTIONS(1419), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(1421), - [sym_false] = ACTIONS(1421), - [sym_null] = ACTIONS(1421), - [sym_identifier] = ACTIONS(2533), - [sym_comment] = ACTIONS(37), + [sym_declaration] = STATE(777), + [sym_type_definition] = STATE(777), + [sym__declaration_specifiers] = STATE(778), + [sym_compound_statement] = STATE(777), + [sym_storage_class_specifier] = STATE(142), + [sym_type_qualifier] = STATE(142), + [sym__type_specifier] = STATE(141), + [sym_sized_type_specifier] = STATE(141), + [sym_enum_specifier] = STATE(141), + [sym_struct_specifier] = STATE(141), + [sym_union_specifier] = STATE(141), + [sym_labeled_statement] = STATE(777), + [sym_expression_statement] = STATE(777), + [sym_if_statement] = STATE(777), + [sym_switch_statement] = STATE(777), + [sym_case_statement] = STATE(777), + [sym_while_statement] = STATE(777), + [sym_do_statement] = STATE(777), + [sym_for_statement] = STATE(777), + [sym_return_statement] = STATE(777), + [sym_break_statement] = STATE(777), + [sym_continue_statement] = STATE(777), + [sym_goto_statement] = STATE(777), + [sym__expression] = STATE(372), + [sym_comma_expression] = STATE(373), + [sym_conditional_expression] = STATE(372), + [sym_assignment_expression] = STATE(372), + [sym_pointer_expression] = STATE(372), + [sym_logical_expression] = STATE(372), + [sym_bitwise_expression] = STATE(372), + [sym_equality_expression] = STATE(372), + [sym_relational_expression] = STATE(372), + [sym_shift_expression] = STATE(372), + [sym_math_expression] = STATE(372), + [sym_cast_expression] = STATE(372), + [sym_sizeof_expression] = STATE(372), + [sym_subscript_expression] = STATE(372), + [sym_call_expression] = STATE(372), + [sym_field_expression] = STATE(372), + [sym_compound_literal_expression] = STATE(372), + [sym_parenthesized_expression] = STATE(372), + [sym_char_literal] = STATE(372), + [sym_concatenated_string] = STATE(372), + [sym_string_literal] = STATE(374), + [sym_macro_type_specifier] = STATE(141), + [aux_sym__declaration_specifiers_repeat1] = STATE(142), + [aux_sym_sized_type_specifier_repeat1] = STATE(143), + [anon_sym_SEMI] = ACTIONS(928), + [anon_sym_typedef] = ACTIONS(17), + [anon_sym_extern] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(439), + [anon_sym_LPAREN2] = ACTIONS(936), + [anon_sym_STAR] = ACTIONS(938), + [anon_sym_static] = ACTIONS(25), + [anon_sym_auto] = ACTIONS(25), + [anon_sym_register] = ACTIONS(25), + [anon_sym_inline] = ACTIONS(25), + [anon_sym_const] = ACTIONS(27), + [anon_sym_restrict] = ACTIONS(27), + [anon_sym_volatile] = ACTIONS(27), + [anon_sym__Atomic] = ACTIONS(27), + [anon_sym_unsigned] = ACTIONS(294), + [anon_sym_long] = ACTIONS(294), + [anon_sym_short] = ACTIONS(294), + [sym_primitive_type] = ACTIONS(296), + [anon_sym_enum] = ACTIONS(33), + [anon_sym_struct] = ACTIONS(35), + [anon_sym_union] = ACTIONS(37), + [anon_sym_if] = ACTIONS(2587), + [anon_sym_switch] = ACTIONS(2589), + [anon_sym_case] = ACTIONS(2591), + [anon_sym_default] = ACTIONS(2593), + [anon_sym_while] = ACTIONS(2595), + [anon_sym_do] = ACTIONS(1466), + [anon_sym_for] = ACTIONS(2597), + [anon_sym_return] = ACTIONS(954), + [anon_sym_break] = ACTIONS(956), + [anon_sym_continue] = ACTIONS(958), + [anon_sym_goto] = ACTIONS(960), + [anon_sym_AMP] = ACTIONS(938), + [anon_sym_BANG] = ACTIONS(962), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_DASH_DASH] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(968), + [anon_sym_sizeof] = ACTIONS(970), + [sym_number_literal] = ACTIONS(972), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(974), + [sym_false] = ACTIONS(974), + [sym_null] = ACTIONS(974), + [sym_identifier] = ACTIONS(3112), + [sym_comment] = ACTIONS(59), }, [1032] = { - [sym_compound_statement] = STATE(949), - [sym_labeled_statement] = STATE(949), - [sym_expression_statement] = STATE(949), - [sym_if_statement] = STATE(949), - [sym_switch_statement] = STATE(949), - [sym_case_statement] = STATE(949), - [sym_while_statement] = STATE(949), - [sym_do_statement] = STATE(949), - [sym_for_statement] = STATE(949), - [sym_return_statement] = STATE(949), - [sym_break_statement] = STATE(949), - [sym_continue_statement] = STATE(949), - [sym_goto_statement] = STATE(949), - [sym__expression] = STATE(594), - [sym_comma_expression] = STATE(595), - [sym_conditional_expression] = STATE(594), - [sym_assignment_expression] = STATE(594), - [sym_pointer_expression] = STATE(594), - [sym_logical_expression] = STATE(594), - [sym_bitwise_expression] = STATE(594), - [sym_equality_expression] = STATE(594), - [sym_relational_expression] = STATE(594), - [sym_shift_expression] = STATE(594), - [sym_math_expression] = STATE(594), - [sym_cast_expression] = STATE(594), - [sym_sizeof_expression] = STATE(594), - [sym_subscript_expression] = STATE(594), - [sym_call_expression] = STATE(594), - [sym_field_expression] = STATE(594), - [sym_compound_literal_expression] = STATE(594), - [sym_parenthesized_expression] = STATE(594), - [sym_char_literal] = STATE(594), - [sym_concatenated_string] = STATE(594), - [sym_string_literal] = STATE(230), - [anon_sym_SEMI] = ACTIONS(1395), - [anon_sym_LBRACE] = ACTIONS(678), - [anon_sym_LPAREN2] = ACTIONS(507), - [anon_sym_STAR] = ACTIONS(509), - [anon_sym_if] = ACTIONS(2521), - [anon_sym_switch] = ACTIONS(2523), - [anon_sym_case] = ACTIONS(2525), - [anon_sym_default] = ACTIONS(2527), - [anon_sym_while] = ACTIONS(2529), - [anon_sym_do] = ACTIONS(1407), - [anon_sym_for] = ACTIONS(2531), - [anon_sym_return] = ACTIONS(1411), - [anon_sym_break] = ACTIONS(1413), - [anon_sym_continue] = ACTIONS(1415), - [anon_sym_goto] = ACTIONS(1417), - [anon_sym_AMP] = ACTIONS(509), - [anon_sym_BANG] = ACTIONS(533), - [anon_sym_TILDE] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DASH] = ACTIONS(537), - [anon_sym_DASH_DASH] = ACTIONS(539), - [anon_sym_PLUS_PLUS] = ACTIONS(539), - [anon_sym_sizeof] = ACTIONS(541), - [sym_number_literal] = ACTIONS(1419), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(1421), - [sym_false] = ACTIONS(1421), - [sym_null] = ACTIONS(1421), - [sym_identifier] = ACTIONS(2533), - [sym_comment] = ACTIONS(37), + [sym_compound_statement] = STATE(779), + [sym_labeled_statement] = STATE(779), + [sym_expression_statement] = STATE(779), + [sym_if_statement] = STATE(779), + [sym_switch_statement] = STATE(779), + [sym_case_statement] = STATE(779), + [sym_while_statement] = STATE(779), + [sym_do_statement] = STATE(779), + [sym_for_statement] = STATE(779), + [sym_return_statement] = STATE(779), + [sym_break_statement] = STATE(779), + [sym_continue_statement] = STATE(779), + [sym_goto_statement] = STATE(779), + [sym__expression] = STATE(372), + [sym_comma_expression] = STATE(373), + [sym_conditional_expression] = STATE(372), + [sym_assignment_expression] = STATE(372), + [sym_pointer_expression] = STATE(372), + [sym_logical_expression] = STATE(372), + [sym_bitwise_expression] = STATE(372), + [sym_equality_expression] = STATE(372), + [sym_relational_expression] = STATE(372), + [sym_shift_expression] = STATE(372), + [sym_math_expression] = STATE(372), + [sym_cast_expression] = STATE(372), + [sym_sizeof_expression] = STATE(372), + [sym_subscript_expression] = STATE(372), + [sym_call_expression] = STATE(372), + [sym_field_expression] = STATE(372), + [sym_compound_literal_expression] = STATE(372), + [sym_parenthesized_expression] = STATE(372), + [sym_char_literal] = STATE(372), + [sym_concatenated_string] = STATE(372), + [sym_string_literal] = STATE(374), + [anon_sym_SEMI] = ACTIONS(928), + [anon_sym_LBRACE] = ACTIONS(439), + [anon_sym_LPAREN2] = ACTIONS(936), + [anon_sym_STAR] = ACTIONS(938), + [anon_sym_if] = ACTIONS(2587), + [anon_sym_switch] = ACTIONS(2589), + [anon_sym_case] = ACTIONS(2591), + [anon_sym_default] = ACTIONS(2593), + [anon_sym_while] = ACTIONS(2595), + [anon_sym_do] = ACTIONS(1466), + [anon_sym_for] = ACTIONS(2597), + [anon_sym_return] = ACTIONS(954), + [anon_sym_break] = ACTIONS(956), + [anon_sym_continue] = ACTIONS(958), + [anon_sym_goto] = ACTIONS(960), + [anon_sym_AMP] = ACTIONS(938), + [anon_sym_BANG] = ACTIONS(962), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_DASH_DASH] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(968), + [anon_sym_sizeof] = ACTIONS(970), + [sym_number_literal] = ACTIONS(972), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(974), + [sym_false] = ACTIONS(974), + [sym_null] = ACTIONS(974), + [sym_identifier] = ACTIONS(2599), + [sym_comment] = ACTIONS(59), }, [1033] = { - [sym_argument_list] = STATE(430), - [anon_sym_LPAREN2] = ACTIONS(1012), - [anon_sym_STAR] = ACTIONS(1497), - [anon_sym_LBRACK] = ACTIONS(1016), - [anon_sym_EQ] = ACTIONS(1499), - [anon_sym_COLON] = ACTIONS(3031), - [anon_sym_QMARK] = ACTIONS(1503), - [anon_sym_STAR_EQ] = ACTIONS(1505), - [anon_sym_SLASH_EQ] = ACTIONS(1505), - [anon_sym_PERCENT_EQ] = ACTIONS(1505), - [anon_sym_PLUS_EQ] = ACTIONS(1505), - [anon_sym_DASH_EQ] = ACTIONS(1505), - [anon_sym_LT_LT_EQ] = ACTIONS(1505), - [anon_sym_GT_GT_EQ] = ACTIONS(1505), - [anon_sym_AMP_EQ] = ACTIONS(1505), - [anon_sym_CARET_EQ] = ACTIONS(1505), - [anon_sym_PIPE_EQ] = ACTIONS(1505), - [anon_sym_AMP] = ACTIONS(1507), - [anon_sym_PIPE_PIPE] = ACTIONS(1509), - [anon_sym_AMP_AMP] = ACTIONS(1511), - [anon_sym_PIPE] = ACTIONS(1513), - [anon_sym_CARET] = ACTIONS(1515), - [anon_sym_EQ_EQ] = ACTIONS(1517), - [anon_sym_BANG_EQ] = ACTIONS(1517), - [anon_sym_LT] = ACTIONS(1519), - [anon_sym_GT] = ACTIONS(1519), - [anon_sym_LT_EQ] = ACTIONS(1521), - [anon_sym_GT_EQ] = ACTIONS(1521), - [anon_sym_LT_LT] = ACTIONS(1523), - [anon_sym_GT_GT] = ACTIONS(1523), - [anon_sym_PLUS] = ACTIONS(1525), - [anon_sym_DASH] = ACTIONS(1525), - [anon_sym_SLASH] = ACTIONS(1497), - [anon_sym_PERCENT] = ACTIONS(1497), - [anon_sym_DASH_DASH] = ACTIONS(1044), - [anon_sym_PLUS_PLUS] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1046), - [anon_sym_DASH_GT] = ACTIONS(1046), - [sym_comment] = ACTIONS(37), + [sym_declaration] = STATE(1100), + [sym__declaration_specifiers] = STATE(778), + [sym_storage_class_specifier] = STATE(142), + [sym_type_qualifier] = STATE(142), + [sym__type_specifier] = STATE(141), + [sym_sized_type_specifier] = STATE(141), + [sym_enum_specifier] = STATE(141), + [sym_struct_specifier] = STATE(141), + [sym_union_specifier] = STATE(141), + [sym__expression] = STATE(1101), + [sym_conditional_expression] = STATE(1101), + [sym_assignment_expression] = STATE(1101), + [sym_pointer_expression] = STATE(1101), + [sym_logical_expression] = STATE(1101), + [sym_bitwise_expression] = STATE(1101), + [sym_equality_expression] = STATE(1101), + [sym_relational_expression] = STATE(1101), + [sym_shift_expression] = STATE(1101), + [sym_math_expression] = STATE(1101), + [sym_cast_expression] = STATE(1101), + [sym_sizeof_expression] = STATE(1101), + [sym_subscript_expression] = STATE(1101), + [sym_call_expression] = STATE(1101), + [sym_field_expression] = STATE(1101), + [sym_compound_literal_expression] = STATE(1101), + [sym_parenthesized_expression] = STATE(1101), + [sym_char_literal] = STATE(1101), + [sym_concatenated_string] = STATE(1101), + [sym_string_literal] = STATE(534), + [sym_macro_type_specifier] = STATE(141), + [aux_sym__declaration_specifiers_repeat1] = STATE(142), + [aux_sym_sized_type_specifier_repeat1] = STATE(143), + [anon_sym_SEMI] = ACTIONS(3114), + [anon_sym_extern] = ACTIONS(25), + [anon_sym_LPAREN2] = ACTIONS(1349), + [anon_sym_STAR] = ACTIONS(1351), + [anon_sym_static] = ACTIONS(25), + [anon_sym_auto] = ACTIONS(25), + [anon_sym_register] = ACTIONS(25), + [anon_sym_inline] = ACTIONS(25), + [anon_sym_const] = ACTIONS(27), + [anon_sym_restrict] = ACTIONS(27), + [anon_sym_volatile] = ACTIONS(27), + [anon_sym__Atomic] = ACTIONS(27), + [anon_sym_unsigned] = ACTIONS(294), + [anon_sym_long] = ACTIONS(294), + [anon_sym_short] = ACTIONS(294), + [sym_primitive_type] = ACTIONS(296), + [anon_sym_enum] = ACTIONS(33), + [anon_sym_struct] = ACTIONS(35), + [anon_sym_union] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(1351), + [anon_sym_BANG] = ACTIONS(1353), + [anon_sym_TILDE] = ACTIONS(1355), + [anon_sym_PLUS] = ACTIONS(1357), + [anon_sym_DASH] = ACTIONS(1357), + [anon_sym_DASH_DASH] = ACTIONS(1359), + [anon_sym_PLUS_PLUS] = ACTIONS(1359), + [anon_sym_sizeof] = ACTIONS(1361), + [sym_number_literal] = ACTIONS(3116), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(3118), + [sym_false] = ACTIONS(3118), + [sym_null] = ACTIONS(3118), + [sym_identifier] = ACTIONS(2026), + [sym_comment] = ACTIONS(59), }, [1034] = { - [sym_declaration] = STATE(952), - [sym_type_definition] = STATE(952), - [sym__declaration_specifiers] = STATE(953), - [sym_compound_statement] = STATE(952), - [sym_storage_class_specifier] = STATE(87), - [sym_type_qualifier] = STATE(87), - [sym__type_specifier] = STATE(86), - [sym_sized_type_specifier] = STATE(86), - [sym_enum_specifier] = STATE(86), - [sym_struct_specifier] = STATE(86), - [sym_union_specifier] = STATE(86), - [sym_labeled_statement] = STATE(952), - [sym_expression_statement] = STATE(952), - [sym_if_statement] = STATE(952), - [sym_switch_statement] = STATE(952), - [sym_case_statement] = STATE(952), - [sym_while_statement] = STATE(952), - [sym_do_statement] = STATE(952), - [sym_for_statement] = STATE(952), - [sym_return_statement] = STATE(952), - [sym_break_statement] = STATE(952), - [sym_continue_statement] = STATE(952), - [sym_goto_statement] = STATE(952), - [sym__expression] = STATE(594), - [sym_comma_expression] = STATE(595), - [sym_conditional_expression] = STATE(594), - [sym_assignment_expression] = STATE(594), - [sym_pointer_expression] = STATE(594), - [sym_logical_expression] = STATE(594), - [sym_bitwise_expression] = STATE(594), - [sym_equality_expression] = STATE(594), - [sym_relational_expression] = STATE(594), - [sym_shift_expression] = STATE(594), - [sym_math_expression] = STATE(594), - [sym_cast_expression] = STATE(594), - [sym_sizeof_expression] = STATE(594), - [sym_subscript_expression] = STATE(594), - [sym_call_expression] = STATE(594), - [sym_field_expression] = STATE(594), - [sym_compound_literal_expression] = STATE(594), - [sym_parenthesized_expression] = STATE(594), - [sym_char_literal] = STATE(594), - [sym_concatenated_string] = STATE(594), - [sym_string_literal] = STATE(230), - [sym_macro_type_specifier] = STATE(86), - [aux_sym__declaration_specifiers_repeat1] = STATE(87), - [aux_sym_sized_type_specifier_repeat1] = STATE(88), - [anon_sym_SEMI] = ACTIONS(1395), - [anon_sym_typedef] = ACTIONS(143), - [anon_sym_extern] = ACTIONS(21), - [anon_sym_LBRACE] = ACTIONS(678), - [anon_sym_LPAREN2] = ACTIONS(507), - [anon_sym_STAR] = ACTIONS(509), - [anon_sym_static] = ACTIONS(21), - [anon_sym_auto] = ACTIONS(21), - [anon_sym_register] = ACTIONS(21), - [anon_sym_inline] = ACTIONS(21), - [anon_sym_const] = ACTIONS(23), - [anon_sym_restrict] = ACTIONS(23), - [anon_sym_volatile] = ACTIONS(23), - [anon_sym__Atomic] = ACTIONS(23), - [anon_sym_unsigned] = ACTIONS(167), - [anon_sym_long] = ACTIONS(167), - [anon_sym_short] = ACTIONS(167), - [sym_primitive_type] = ACTIONS(169), - [anon_sym_enum] = ACTIONS(29), - [anon_sym_struct] = ACTIONS(31), - [anon_sym_union] = ACTIONS(33), - [anon_sym_if] = ACTIONS(2521), - [anon_sym_switch] = ACTIONS(2523), - [anon_sym_case] = ACTIONS(2525), - [anon_sym_default] = ACTIONS(2527), - [anon_sym_while] = ACTIONS(2529), - [anon_sym_do] = ACTIONS(1407), - [anon_sym_for] = ACTIONS(2531), - [anon_sym_return] = ACTIONS(1411), - [anon_sym_break] = ACTIONS(1413), - [anon_sym_continue] = ACTIONS(1415), - [anon_sym_goto] = ACTIONS(1417), - [anon_sym_AMP] = ACTIONS(509), - [anon_sym_BANG] = ACTIONS(533), - [anon_sym_TILDE] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DASH] = ACTIONS(537), - [anon_sym_DASH_DASH] = ACTIONS(539), - [anon_sym_PLUS_PLUS] = ACTIONS(539), - [anon_sym_sizeof] = ACTIONS(541), - [sym_number_literal] = ACTIONS(1419), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(1421), - [sym_false] = ACTIONS(1421), - [sym_null] = ACTIONS(1421), - [sym_identifier] = ACTIONS(3033), - [sym_comment] = ACTIONS(37), + [sym_compound_statement] = STATE(795), + [sym_labeled_statement] = STATE(795), + [sym_expression_statement] = STATE(795), + [sym_if_statement] = STATE(795), + [sym_switch_statement] = STATE(795), + [sym_case_statement] = STATE(795), + [sym_while_statement] = STATE(795), + [sym_do_statement] = STATE(795), + [sym_for_statement] = STATE(795), + [sym_return_statement] = STATE(795), + [sym_break_statement] = STATE(795), + [sym_continue_statement] = STATE(795), + [sym_goto_statement] = STATE(795), + [sym__expression] = STATE(372), + [sym_comma_expression] = STATE(373), + [sym_conditional_expression] = STATE(372), + [sym_assignment_expression] = STATE(372), + [sym_pointer_expression] = STATE(372), + [sym_logical_expression] = STATE(372), + [sym_bitwise_expression] = STATE(372), + [sym_equality_expression] = STATE(372), + [sym_relational_expression] = STATE(372), + [sym_shift_expression] = STATE(372), + [sym_math_expression] = STATE(372), + [sym_cast_expression] = STATE(372), + [sym_sizeof_expression] = STATE(372), + [sym_subscript_expression] = STATE(372), + [sym_call_expression] = STATE(372), + [sym_field_expression] = STATE(372), + [sym_compound_literal_expression] = STATE(372), + [sym_parenthesized_expression] = STATE(372), + [sym_char_literal] = STATE(372), + [sym_concatenated_string] = STATE(372), + [sym_string_literal] = STATE(374), + [anon_sym_SEMI] = ACTIONS(928), + [anon_sym_LBRACE] = ACTIONS(439), + [anon_sym_LPAREN2] = ACTIONS(936), + [anon_sym_STAR] = ACTIONS(938), + [anon_sym_if] = ACTIONS(2587), + [anon_sym_switch] = ACTIONS(2589), + [anon_sym_case] = ACTIONS(2591), + [anon_sym_default] = ACTIONS(2593), + [anon_sym_while] = ACTIONS(2595), + [anon_sym_do] = ACTIONS(1466), + [anon_sym_for] = ACTIONS(2597), + [anon_sym_return] = ACTIONS(954), + [anon_sym_break] = ACTIONS(956), + [anon_sym_continue] = ACTIONS(958), + [anon_sym_goto] = ACTIONS(960), + [anon_sym_AMP] = ACTIONS(938), + [anon_sym_BANG] = ACTIONS(962), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_DASH_DASH] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(968), + [anon_sym_sizeof] = ACTIONS(970), + [sym_number_literal] = ACTIONS(972), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(974), + [sym_false] = ACTIONS(974), + [sym_null] = ACTIONS(974), + [sym_identifier] = ACTIONS(2599), + [sym_comment] = ACTIONS(59), }, [1035] = { - [sym_compound_statement] = STATE(954), - [sym_labeled_statement] = STATE(954), - [sym_expression_statement] = STATE(954), - [sym_if_statement] = STATE(954), - [sym_switch_statement] = STATE(954), - [sym_case_statement] = STATE(954), - [sym_while_statement] = STATE(954), - [sym_do_statement] = STATE(954), - [sym_for_statement] = STATE(954), - [sym_return_statement] = STATE(954), - [sym_break_statement] = STATE(954), - [sym_continue_statement] = STATE(954), - [sym_goto_statement] = STATE(954), - [sym__expression] = STATE(594), - [sym_comma_expression] = STATE(595), - [sym_conditional_expression] = STATE(594), - [sym_assignment_expression] = STATE(594), - [sym_pointer_expression] = STATE(594), - [sym_logical_expression] = STATE(594), - [sym_bitwise_expression] = STATE(594), - [sym_equality_expression] = STATE(594), - [sym_relational_expression] = STATE(594), - [sym_shift_expression] = STATE(594), - [sym_math_expression] = STATE(594), - [sym_cast_expression] = STATE(594), - [sym_sizeof_expression] = STATE(594), - [sym_subscript_expression] = STATE(594), - [sym_call_expression] = STATE(594), - [sym_field_expression] = STATE(594), - [sym_compound_literal_expression] = STATE(594), - [sym_parenthesized_expression] = STATE(594), - [sym_char_literal] = STATE(594), - [sym_concatenated_string] = STATE(594), - [sym_string_literal] = STATE(230), - [anon_sym_SEMI] = ACTIONS(1395), - [anon_sym_LBRACE] = ACTIONS(678), - [anon_sym_LPAREN2] = ACTIONS(507), - [anon_sym_STAR] = ACTIONS(509), - [anon_sym_if] = ACTIONS(2521), - [anon_sym_switch] = ACTIONS(2523), - [anon_sym_case] = ACTIONS(2525), - [anon_sym_default] = ACTIONS(2527), - [anon_sym_while] = ACTIONS(2529), - [anon_sym_do] = ACTIONS(1407), - [anon_sym_for] = ACTIONS(2531), - [anon_sym_return] = ACTIONS(1411), - [anon_sym_break] = ACTIONS(1413), - [anon_sym_continue] = ACTIONS(1415), - [anon_sym_goto] = ACTIONS(1417), - [anon_sym_AMP] = ACTIONS(509), - [anon_sym_BANG] = ACTIONS(533), - [anon_sym_TILDE] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DASH] = ACTIONS(537), - [anon_sym_DASH_DASH] = ACTIONS(539), - [anon_sym_PLUS_PLUS] = ACTIONS(539), - [anon_sym_sizeof] = ACTIONS(541), - [sym_number_literal] = ACTIONS(1419), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(1421), - [sym_false] = ACTIONS(1421), - [sym_null] = ACTIONS(1421), - [sym_identifier] = ACTIONS(2533), - [sym_comment] = ACTIONS(37), + [sym_compound_statement] = STATE(1027), + [sym_labeled_statement] = STATE(1027), + [sym_expression_statement] = STATE(1027), + [sym_if_statement] = STATE(1027), + [sym_switch_statement] = STATE(1027), + [sym_case_statement] = STATE(1027), + [sym_while_statement] = STATE(1027), + [sym_do_statement] = STATE(1027), + [sym_for_statement] = STATE(1027), + [sym_return_statement] = STATE(1027), + [sym_break_statement] = STATE(1027), + [sym_continue_statement] = STATE(1027), + [sym_goto_statement] = STATE(1027), + [sym__expression] = STATE(372), + [sym_comma_expression] = STATE(373), + [sym_conditional_expression] = STATE(372), + [sym_assignment_expression] = STATE(372), + [sym_pointer_expression] = STATE(372), + [sym_logical_expression] = STATE(372), + [sym_bitwise_expression] = STATE(372), + [sym_equality_expression] = STATE(372), + [sym_relational_expression] = STATE(372), + [sym_shift_expression] = STATE(372), + [sym_math_expression] = STATE(372), + [sym_cast_expression] = STATE(372), + [sym_sizeof_expression] = STATE(372), + [sym_subscript_expression] = STATE(372), + [sym_call_expression] = STATE(372), + [sym_field_expression] = STATE(372), + [sym_compound_literal_expression] = STATE(372), + [sym_parenthesized_expression] = STATE(372), + [sym_char_literal] = STATE(372), + [sym_concatenated_string] = STATE(372), + [sym_string_literal] = STATE(374), + [anon_sym_SEMI] = ACTIONS(928), + [anon_sym_LBRACE] = ACTIONS(439), + [anon_sym_LPAREN2] = ACTIONS(936), + [anon_sym_STAR] = ACTIONS(938), + [anon_sym_if] = ACTIONS(1456), + [anon_sym_switch] = ACTIONS(1458), + [anon_sym_case] = ACTIONS(1460), + [anon_sym_default] = ACTIONS(1462), + [anon_sym_while] = ACTIONS(1464), + [anon_sym_do] = ACTIONS(1466), + [anon_sym_for] = ACTIONS(1468), + [anon_sym_return] = ACTIONS(954), + [anon_sym_break] = ACTIONS(956), + [anon_sym_continue] = ACTIONS(958), + [anon_sym_goto] = ACTIONS(960), + [anon_sym_AMP] = ACTIONS(938), + [anon_sym_BANG] = ACTIONS(962), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_DASH_DASH] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(968), + [anon_sym_sizeof] = ACTIONS(970), + [sym_number_literal] = ACTIONS(972), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(974), + [sym_false] = ACTIONS(974), + [sym_null] = ACTIONS(974), + [sym_identifier] = ACTIONS(1470), + [sym_comment] = ACTIONS(59), }, [1036] = { - [sym_declaration] = STATE(1088), - [sym__declaration_specifiers] = STATE(650), - [sym_storage_class_specifier] = STATE(87), - [sym_type_qualifier] = STATE(87), - [sym__type_specifier] = STATE(86), - [sym_sized_type_specifier] = STATE(86), - [sym_enum_specifier] = STATE(86), - [sym_struct_specifier] = STATE(86), - [sym_union_specifier] = STATE(86), - [sym__expression] = STATE(1089), - [sym_conditional_expression] = STATE(1089), - [sym_assignment_expression] = STATE(1089), - [sym_pointer_expression] = STATE(1089), - [sym_logical_expression] = STATE(1089), - [sym_bitwise_expression] = STATE(1089), - [sym_equality_expression] = STATE(1089), - [sym_relational_expression] = STATE(1089), - [sym_shift_expression] = STATE(1089), - [sym_math_expression] = STATE(1089), - [sym_cast_expression] = STATE(1089), - [sym_sizeof_expression] = STATE(1089), - [sym_subscript_expression] = STATE(1089), - [sym_call_expression] = STATE(1089), - [sym_field_expression] = STATE(1089), - [sym_compound_literal_expression] = STATE(1089), - [sym_parenthesized_expression] = STATE(1089), - [sym_char_literal] = STATE(1089), - [sym_concatenated_string] = STATE(1089), - [sym_string_literal] = STATE(342), - [sym_macro_type_specifier] = STATE(86), - [aux_sym__declaration_specifiers_repeat1] = STATE(87), - [aux_sym_sized_type_specifier_repeat1] = STATE(88), - [anon_sym_SEMI] = ACTIONS(3035), - [anon_sym_extern] = ACTIONS(21), - [anon_sym_LPAREN2] = ACTIONS(780), - [anon_sym_STAR] = ACTIONS(782), - [anon_sym_static] = ACTIONS(21), - [anon_sym_auto] = ACTIONS(21), - [anon_sym_register] = ACTIONS(21), - [anon_sym_inline] = ACTIONS(21), - [anon_sym_const] = ACTIONS(23), - [anon_sym_restrict] = ACTIONS(23), - [anon_sym_volatile] = ACTIONS(23), - [anon_sym__Atomic] = ACTIONS(23), - [anon_sym_unsigned] = ACTIONS(167), - [anon_sym_long] = ACTIONS(167), - [anon_sym_short] = ACTIONS(167), - [sym_primitive_type] = ACTIONS(169), - [anon_sym_enum] = ACTIONS(29), - [anon_sym_struct] = ACTIONS(31), - [anon_sym_union] = ACTIONS(33), - [anon_sym_AMP] = ACTIONS(782), - [anon_sym_BANG] = ACTIONS(784), - [anon_sym_TILDE] = ACTIONS(786), - [anon_sym_PLUS] = ACTIONS(788), - [anon_sym_DASH] = ACTIONS(788), - [anon_sym_DASH_DASH] = ACTIONS(790), - [anon_sym_PLUS_PLUS] = ACTIONS(790), - [anon_sym_sizeof] = ACTIONS(792), - [sym_number_literal] = ACTIONS(3037), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(3039), - [sym_false] = ACTIONS(3039), - [sym_null] = ACTIONS(3039), - [sym_identifier] = ACTIONS(1547), - [sym_comment] = ACTIONS(37), + [sym__expression] = STATE(52), + [sym_comma_expression] = STATE(53), + [sym_conditional_expression] = STATE(52), + [sym_assignment_expression] = STATE(52), + [sym_pointer_expression] = STATE(52), + [sym_logical_expression] = STATE(52), + [sym_bitwise_expression] = STATE(52), + [sym_equality_expression] = STATE(52), + [sym_relational_expression] = STATE(52), + [sym_shift_expression] = STATE(52), + [sym_math_expression] = STATE(52), + [sym_cast_expression] = STATE(52), + [sym_sizeof_expression] = STATE(52), + [sym_subscript_expression] = STATE(52), + [sym_call_expression] = STATE(52), + [sym_field_expression] = STATE(52), + [sym_compound_literal_expression] = STATE(52), + [sym_parenthesized_expression] = STATE(52), + [sym_char_literal] = STATE(52), + [sym_concatenated_string] = STATE(52), + [sym_string_literal] = STATE(55), + [anon_sym_LPAREN2] = ACTIONS(85), + [anon_sym_STAR] = ACTIONS(87), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_PLUS] = ACTIONS(97), + [anon_sym_DASH] = ACTIONS(97), + [anon_sym_DASH_DASH] = ACTIONS(99), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(105), + [sym_false] = ACTIONS(105), + [sym_null] = ACTIONS(105), + [sym_identifier] = ACTIONS(105), + [sym_comment] = ACTIONS(59), }, [1037] = { - [sym_compound_statement] = STATE(960), - [sym_labeled_statement] = STATE(960), - [sym_expression_statement] = STATE(960), - [sym_if_statement] = STATE(960), - [sym_switch_statement] = STATE(960), - [sym_case_statement] = STATE(960), - [sym_while_statement] = STATE(960), - [sym_do_statement] = STATE(960), - [sym_for_statement] = STATE(960), - [sym_return_statement] = STATE(960), - [sym_break_statement] = STATE(960), - [sym_continue_statement] = STATE(960), - [sym_goto_statement] = STATE(960), - [sym__expression] = STATE(594), - [sym_comma_expression] = STATE(595), - [sym_conditional_expression] = STATE(594), - [sym_assignment_expression] = STATE(594), - [sym_pointer_expression] = STATE(594), - [sym_logical_expression] = STATE(594), - [sym_bitwise_expression] = STATE(594), - [sym_equality_expression] = STATE(594), - [sym_relational_expression] = STATE(594), - [sym_shift_expression] = STATE(594), - [sym_math_expression] = STATE(594), - [sym_cast_expression] = STATE(594), - [sym_sizeof_expression] = STATE(594), - [sym_subscript_expression] = STATE(594), - [sym_call_expression] = STATE(594), - [sym_field_expression] = STATE(594), - [sym_compound_literal_expression] = STATE(594), - [sym_parenthesized_expression] = STATE(594), - [sym_char_literal] = STATE(594), - [sym_concatenated_string] = STATE(594), - [sym_string_literal] = STATE(230), - [anon_sym_SEMI] = ACTIONS(1395), - [anon_sym_LBRACE] = ACTIONS(678), - [anon_sym_LPAREN2] = ACTIONS(507), - [anon_sym_STAR] = ACTIONS(509), - [anon_sym_if] = ACTIONS(2521), - [anon_sym_switch] = ACTIONS(2523), - [anon_sym_case] = ACTIONS(2525), - [anon_sym_default] = ACTIONS(2527), - [anon_sym_while] = ACTIONS(2529), - [anon_sym_do] = ACTIONS(1407), - [anon_sym_for] = ACTIONS(2531), - [anon_sym_return] = ACTIONS(1411), - [anon_sym_break] = ACTIONS(1413), - [anon_sym_continue] = ACTIONS(1415), - [anon_sym_goto] = ACTIONS(1417), - [anon_sym_AMP] = ACTIONS(509), - [anon_sym_BANG] = ACTIONS(533), - [anon_sym_TILDE] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DASH] = ACTIONS(537), - [anon_sym_DASH_DASH] = ACTIONS(539), - [anon_sym_PLUS_PLUS] = ACTIONS(539), - [anon_sym_sizeof] = ACTIONS(541), - [sym_number_literal] = ACTIONS(1419), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(1421), - [sym_false] = ACTIONS(1421), - [sym_null] = ACTIONS(1421), - [sym_identifier] = ACTIONS(2533), - [sym_comment] = ACTIONS(37), + [sym__expression] = STATE(1103), + [sym_conditional_expression] = STATE(1103), + [sym_assignment_expression] = STATE(1103), + [sym_pointer_expression] = STATE(1103), + [sym_logical_expression] = STATE(1103), + [sym_bitwise_expression] = STATE(1103), + [sym_equality_expression] = STATE(1103), + [sym_relational_expression] = STATE(1103), + [sym_shift_expression] = STATE(1103), + [sym_math_expression] = STATE(1103), + [sym_cast_expression] = STATE(1103), + [sym_sizeof_expression] = STATE(1103), + [sym_subscript_expression] = STATE(1103), + [sym_call_expression] = STATE(1103), + [sym_field_expression] = STATE(1103), + [sym_compound_literal_expression] = STATE(1103), + [sym_parenthesized_expression] = STATE(1103), + [sym_char_literal] = STATE(1103), + [sym_concatenated_string] = STATE(1103), + [sym_string_literal] = STATE(55), + [anon_sym_RPAREN] = ACTIONS(3120), + [anon_sym_LPAREN2] = ACTIONS(85), + [anon_sym_STAR] = ACTIONS(87), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_PLUS] = ACTIONS(97), + [anon_sym_DASH] = ACTIONS(97), + [anon_sym_DASH_DASH] = ACTIONS(99), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(101), + [sym_number_literal] = ACTIONS(3122), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(3124), + [sym_false] = ACTIONS(3124), + [sym_null] = ACTIONS(3124), + [sym_identifier] = ACTIONS(3124), + [sym_comment] = ACTIONS(59), }, [1038] = { - [sym_compound_statement] = STATE(1090), - [sym_labeled_statement] = STATE(1090), - [sym_expression_statement] = STATE(1090), - [sym_if_statement] = STATE(1090), - [sym_switch_statement] = STATE(1090), - [sym_case_statement] = STATE(1090), - [sym_while_statement] = STATE(1090), - [sym_do_statement] = STATE(1090), - [sym_for_statement] = STATE(1090), - [sym_return_statement] = STATE(1090), - [sym_break_statement] = STATE(1090), - [sym_continue_statement] = STATE(1090), - [sym_goto_statement] = STATE(1090), - [sym__expression] = STATE(594), - [sym_comma_expression] = STATE(595), - [sym_conditional_expression] = STATE(594), - [sym_assignment_expression] = STATE(594), - [sym_pointer_expression] = STATE(594), - [sym_logical_expression] = STATE(594), - [sym_bitwise_expression] = STATE(594), - [sym_equality_expression] = STATE(594), - [sym_relational_expression] = STATE(594), - [sym_shift_expression] = STATE(594), - [sym_math_expression] = STATE(594), - [sym_cast_expression] = STATE(594), - [sym_sizeof_expression] = STATE(594), - [sym_subscript_expression] = STATE(594), - [sym_call_expression] = STATE(594), - [sym_field_expression] = STATE(594), - [sym_compound_literal_expression] = STATE(594), - [sym_parenthesized_expression] = STATE(594), - [sym_char_literal] = STATE(594), - [sym_concatenated_string] = STATE(594), - [sym_string_literal] = STATE(230), - [anon_sym_SEMI] = ACTIONS(1395), - [anon_sym_LBRACE] = ACTIONS(678), - [anon_sym_LPAREN2] = ACTIONS(507), - [anon_sym_STAR] = ACTIONS(509), - [anon_sym_if] = ACTIONS(1397), - [anon_sym_switch] = ACTIONS(1399), - [anon_sym_case] = ACTIONS(1401), - [anon_sym_default] = ACTIONS(1403), - [anon_sym_while] = ACTIONS(1405), - [anon_sym_do] = ACTIONS(1407), - [anon_sym_for] = ACTIONS(1409), - [anon_sym_return] = ACTIONS(1411), - [anon_sym_break] = ACTIONS(1413), - [anon_sym_continue] = ACTIONS(1415), - [anon_sym_goto] = ACTIONS(1417), - [anon_sym_AMP] = ACTIONS(509), - [anon_sym_BANG] = ACTIONS(533), - [anon_sym_TILDE] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DASH] = ACTIONS(537), - [anon_sym_DASH_DASH] = ACTIONS(539), - [anon_sym_PLUS_PLUS] = ACTIONS(539), - [anon_sym_sizeof] = ACTIONS(541), - [sym_number_literal] = ACTIONS(1419), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(1421), - [sym_false] = ACTIONS(1421), - [sym_null] = ACTIONS(1421), - [sym_identifier] = ACTIONS(2535), - [sym_comment] = ACTIONS(37), + [sym_argument_list] = STATE(98), + [anon_sym_SEMI] = ACTIONS(3126), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_LBRACK] = ACTIONS(188), + [anon_sym_EQ] = ACTIONS(1896), + [anon_sym_QMARK] = ACTIONS(1898), + [anon_sym_STAR_EQ] = ACTIONS(1900), + [anon_sym_SLASH_EQ] = ACTIONS(1900), + [anon_sym_PERCENT_EQ] = ACTIONS(1900), + [anon_sym_PLUS_EQ] = ACTIONS(1900), + [anon_sym_DASH_EQ] = ACTIONS(1900), + [anon_sym_LT_LT_EQ] = ACTIONS(1900), + [anon_sym_GT_GT_EQ] = ACTIONS(1900), + [anon_sym_AMP_EQ] = ACTIONS(1900), + [anon_sym_CARET_EQ] = ACTIONS(1900), + [anon_sym_PIPE_EQ] = ACTIONS(1900), + [anon_sym_AMP] = ACTIONS(1902), + [anon_sym_PIPE_PIPE] = ACTIONS(1904), + [anon_sym_AMP_AMP] = ACTIONS(1906), + [anon_sym_PIPE] = ACTIONS(1908), + [anon_sym_CARET] = ACTIONS(1910), + [anon_sym_EQ_EQ] = ACTIONS(1912), + [anon_sym_BANG_EQ] = ACTIONS(1912), + [anon_sym_LT] = ACTIONS(1914), + [anon_sym_GT] = ACTIONS(1914), + [anon_sym_LT_EQ] = ACTIONS(1916), + [anon_sym_GT_EQ] = ACTIONS(1916), + [anon_sym_LT_LT] = ACTIONS(1918), + [anon_sym_GT_GT] = ACTIONS(1918), + [anon_sym_PLUS] = ACTIONS(1920), + [anon_sym_DASH] = ACTIONS(1920), + [anon_sym_SLASH] = ACTIONS(1894), + [anon_sym_PERCENT] = ACTIONS(1894), + [anon_sym_DASH_DASH] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(216), + [anon_sym_DOT] = ACTIONS(218), + [anon_sym_DASH_GT] = ACTIONS(218), + [sym_comment] = ACTIONS(59), }, [1039] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2657), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2657), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2657), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2657), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2657), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2657), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2657), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2657), - [sym_preproc_directive] = ACTIONS(2657), - [anon_sym_SEMI] = ACTIONS(2659), - [anon_sym_typedef] = ACTIONS(2657), - [anon_sym_extern] = ACTIONS(2657), - [anon_sym_LBRACE] = ACTIONS(2659), - [anon_sym_LPAREN2] = ACTIONS(2659), - [anon_sym_STAR] = ACTIONS(2659), - [anon_sym_static] = ACTIONS(2657), - [anon_sym_auto] = ACTIONS(2657), - [anon_sym_register] = ACTIONS(2657), - [anon_sym_inline] = ACTIONS(2657), - [anon_sym_const] = ACTIONS(2657), - [anon_sym_restrict] = ACTIONS(2657), - [anon_sym_volatile] = ACTIONS(2657), - [anon_sym__Atomic] = ACTIONS(2657), - [anon_sym_unsigned] = ACTIONS(2657), - [anon_sym_long] = ACTIONS(2657), - [anon_sym_short] = ACTIONS(2657), - [sym_primitive_type] = ACTIONS(2657), - [anon_sym_enum] = ACTIONS(2657), - [anon_sym_struct] = ACTIONS(2657), - [anon_sym_union] = ACTIONS(2657), - [anon_sym_if] = ACTIONS(2657), - [anon_sym_else] = ACTIONS(2657), - [anon_sym_switch] = ACTIONS(2657), - [anon_sym_case] = ACTIONS(2657), - [anon_sym_default] = ACTIONS(2657), - [anon_sym_while] = ACTIONS(2657), - [anon_sym_do] = ACTIONS(2657), - [anon_sym_for] = ACTIONS(2657), - [anon_sym_return] = ACTIONS(2657), - [anon_sym_break] = ACTIONS(2657), - [anon_sym_continue] = ACTIONS(2657), - [anon_sym_goto] = ACTIONS(2657), - [anon_sym_AMP] = ACTIONS(2659), - [anon_sym_BANG] = ACTIONS(2659), - [anon_sym_TILDE] = ACTIONS(2659), - [anon_sym_PLUS] = ACTIONS(2657), - [anon_sym_DASH] = ACTIONS(2657), - [anon_sym_DASH_DASH] = ACTIONS(2659), - [anon_sym_PLUS_PLUS] = ACTIONS(2659), - [anon_sym_sizeof] = ACTIONS(2657), - [sym_number_literal] = ACTIONS(2659), - [anon_sym_SQUOTE] = ACTIONS(2659), - [anon_sym_DQUOTE] = ACTIONS(2659), - [sym_true] = ACTIONS(2657), - [sym_false] = ACTIONS(2657), - [sym_null] = ACTIONS(2657), - [sym_identifier] = ACTIONS(2657), - [sym_comment] = ACTIONS(37), + [sym__expression] = STATE(1105), + [sym_conditional_expression] = STATE(1105), + [sym_assignment_expression] = STATE(1105), + [sym_pointer_expression] = STATE(1105), + [sym_logical_expression] = STATE(1105), + [sym_bitwise_expression] = STATE(1105), + [sym_equality_expression] = STATE(1105), + [sym_relational_expression] = STATE(1105), + [sym_shift_expression] = STATE(1105), + [sym_math_expression] = STATE(1105), + [sym_cast_expression] = STATE(1105), + [sym_sizeof_expression] = STATE(1105), + [sym_subscript_expression] = STATE(1105), + [sym_call_expression] = STATE(1105), + [sym_field_expression] = STATE(1105), + [sym_compound_literal_expression] = STATE(1105), + [sym_parenthesized_expression] = STATE(1105), + [sym_char_literal] = STATE(1105), + [sym_concatenated_string] = STATE(1105), + [sym_string_literal] = STATE(534), + [anon_sym_SEMI] = ACTIONS(3126), + [anon_sym_LPAREN2] = ACTIONS(1349), + [anon_sym_STAR] = ACTIONS(1351), + [anon_sym_AMP] = ACTIONS(1351), + [anon_sym_BANG] = ACTIONS(1353), + [anon_sym_TILDE] = ACTIONS(1355), + [anon_sym_PLUS] = ACTIONS(1357), + [anon_sym_DASH] = ACTIONS(1357), + [anon_sym_DASH_DASH] = ACTIONS(1359), + [anon_sym_PLUS_PLUS] = ACTIONS(1359), + [anon_sym_sizeof] = ACTIONS(1361), + [sym_number_literal] = ACTIONS(3128), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(3130), + [sym_false] = ACTIONS(3130), + [sym_null] = ACTIONS(3130), + [sym_identifier] = ACTIONS(3130), + [sym_comment] = ACTIONS(59), }, [1040] = { - [sym__expression] = STATE(1091), - [sym_comma_expression] = STATE(1092), - [sym_conditional_expression] = STATE(1091), - [sym_assignment_expression] = STATE(1091), - [sym_pointer_expression] = STATE(1091), - [sym_logical_expression] = STATE(1091), - [sym_bitwise_expression] = STATE(1091), - [sym_equality_expression] = STATE(1091), - [sym_relational_expression] = STATE(1091), - [sym_shift_expression] = STATE(1091), - [sym_math_expression] = STATE(1091), - [sym_cast_expression] = STATE(1091), - [sym_sizeof_expression] = STATE(1091), - [sym_subscript_expression] = STATE(1091), - [sym_call_expression] = STATE(1091), - [sym_field_expression] = STATE(1091), - [sym_compound_literal_expression] = STATE(1091), - [sym_parenthesized_expression] = STATE(1091), - [sym_char_literal] = STATE(1091), - [sym_concatenated_string] = STATE(1091), + [sym_compound_statement] = STATE(1106), + [sym_labeled_statement] = STATE(1106), + [sym_expression_statement] = STATE(1106), + [sym_if_statement] = STATE(1106), + [sym_switch_statement] = STATE(1106), + [sym_case_statement] = STATE(1106), + [sym_while_statement] = STATE(1106), + [sym_do_statement] = STATE(1106), + [sym_for_statement] = STATE(1106), + [sym_return_statement] = STATE(1106), + [sym_break_statement] = STATE(1106), + [sym_continue_statement] = STATE(1106), + [sym_goto_statement] = STATE(1106), + [sym__expression] = STATE(372), + [sym_comma_expression] = STATE(373), + [sym_conditional_expression] = STATE(372), + [sym_assignment_expression] = STATE(372), + [sym_pointer_expression] = STATE(372), + [sym_logical_expression] = STATE(372), + [sym_bitwise_expression] = STATE(372), + [sym_equality_expression] = STATE(372), + [sym_relational_expression] = STATE(372), + [sym_shift_expression] = STATE(372), + [sym_math_expression] = STATE(372), + [sym_cast_expression] = STATE(372), + [sym_sizeof_expression] = STATE(372), + [sym_subscript_expression] = STATE(372), + [sym_call_expression] = STATE(372), + [sym_field_expression] = STATE(372), + [sym_compound_literal_expression] = STATE(372), + [sym_parenthesized_expression] = STATE(372), + [sym_char_literal] = STATE(372), + [sym_concatenated_string] = STATE(372), [sym_string_literal] = STATE(374), - [anon_sym_LPAREN2] = ACTIONS(892), - [anon_sym_STAR] = ACTIONS(894), - [anon_sym_AMP] = ACTIONS(894), - [anon_sym_BANG] = ACTIONS(896), - [anon_sym_TILDE] = ACTIONS(898), - [anon_sym_PLUS] = ACTIONS(900), - [anon_sym_DASH] = ACTIONS(900), - [anon_sym_DASH_DASH] = ACTIONS(902), - [anon_sym_PLUS_PLUS] = ACTIONS(902), - [anon_sym_sizeof] = ACTIONS(904), - [sym_number_literal] = ACTIONS(3041), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(3043), - [sym_false] = ACTIONS(3043), - [sym_null] = ACTIONS(3043), - [sym_identifier] = ACTIONS(3043), - [sym_comment] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(928), + [anon_sym_LBRACE] = ACTIONS(439), + [anon_sym_LPAREN2] = ACTIONS(936), + [anon_sym_STAR] = ACTIONS(938), + [anon_sym_if] = ACTIONS(940), + [anon_sym_switch] = ACTIONS(942), + [anon_sym_case] = ACTIONS(944), + [anon_sym_default] = ACTIONS(946), + [anon_sym_while] = ACTIONS(948), + [anon_sym_do] = ACTIONS(950), + [anon_sym_for] = ACTIONS(952), + [anon_sym_return] = ACTIONS(954), + [anon_sym_break] = ACTIONS(956), + [anon_sym_continue] = ACTIONS(958), + [anon_sym_goto] = ACTIONS(960), + [anon_sym_AMP] = ACTIONS(938), + [anon_sym_BANG] = ACTIONS(962), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_DASH_DASH] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(968), + [anon_sym_sizeof] = ACTIONS(970), + [sym_number_literal] = ACTIONS(972), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(974), + [sym_false] = ACTIONS(974), + [sym_null] = ACTIONS(974), + [sym_identifier] = ACTIONS(2002), + [sym_comment] = ACTIONS(59), }, [1041] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2685), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2685), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2685), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2685), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2685), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2685), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2685), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2685), - [sym_preproc_directive] = ACTIONS(2685), - [anon_sym_SEMI] = ACTIONS(2687), - [anon_sym_typedef] = ACTIONS(2685), - [anon_sym_extern] = ACTIONS(2685), - [anon_sym_LBRACE] = ACTIONS(2687), - [anon_sym_LPAREN2] = ACTIONS(2687), - [anon_sym_STAR] = ACTIONS(2687), - [anon_sym_static] = ACTIONS(2685), - [anon_sym_auto] = ACTIONS(2685), - [anon_sym_register] = ACTIONS(2685), - [anon_sym_inline] = ACTIONS(2685), - [anon_sym_const] = ACTIONS(2685), - [anon_sym_restrict] = ACTIONS(2685), - [anon_sym_volatile] = ACTIONS(2685), - [anon_sym__Atomic] = ACTIONS(2685), - [anon_sym_unsigned] = ACTIONS(2685), - [anon_sym_long] = ACTIONS(2685), - [anon_sym_short] = ACTIONS(2685), - [sym_primitive_type] = ACTIONS(2685), - [anon_sym_enum] = ACTIONS(2685), - [anon_sym_struct] = ACTIONS(2685), - [anon_sym_union] = ACTIONS(2685), - [anon_sym_if] = ACTIONS(2685), - [anon_sym_else] = ACTIONS(2685), - [anon_sym_switch] = ACTIONS(2685), - [anon_sym_case] = ACTIONS(2685), - [anon_sym_default] = ACTIONS(2685), - [anon_sym_while] = ACTIONS(2685), - [anon_sym_do] = ACTIONS(2685), - [anon_sym_for] = ACTIONS(2685), - [anon_sym_return] = ACTIONS(2685), - [anon_sym_break] = ACTIONS(2685), - [anon_sym_continue] = ACTIONS(2685), - [anon_sym_goto] = ACTIONS(2685), - [anon_sym_AMP] = ACTIONS(2687), - [anon_sym_BANG] = ACTIONS(2687), - [anon_sym_TILDE] = ACTIONS(2687), - [anon_sym_PLUS] = ACTIONS(2685), - [anon_sym_DASH] = ACTIONS(2685), - [anon_sym_DASH_DASH] = ACTIONS(2687), - [anon_sym_PLUS_PLUS] = ACTIONS(2687), - [anon_sym_sizeof] = ACTIONS(2685), - [sym_number_literal] = ACTIONS(2687), - [anon_sym_SQUOTE] = ACTIONS(2687), - [anon_sym_DQUOTE] = ACTIONS(2687), - [sym_true] = ACTIONS(2685), - [sym_false] = ACTIONS(2685), - [sym_null] = ACTIONS(2685), - [sym_identifier] = ACTIONS(2685), - [sym_comment] = ACTIONS(37), + [sym_argument_list] = STATE(98), + [aux_sym_for_statement_repeat1] = STATE(1108), + [anon_sym_COMMA] = ACTIONS(1002), + [anon_sym_RPAREN] = ACTIONS(3132), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(319), + [anon_sym_LBRACK] = ACTIONS(188), + [anon_sym_EQ] = ACTIONS(321), + [anon_sym_QMARK] = ACTIONS(323), + [anon_sym_STAR_EQ] = ACTIONS(325), + [anon_sym_SLASH_EQ] = ACTIONS(325), + [anon_sym_PERCENT_EQ] = ACTIONS(325), + [anon_sym_PLUS_EQ] = ACTIONS(325), + [anon_sym_DASH_EQ] = ACTIONS(325), + [anon_sym_LT_LT_EQ] = ACTIONS(325), + [anon_sym_GT_GT_EQ] = ACTIONS(325), + [anon_sym_AMP_EQ] = ACTIONS(325), + [anon_sym_CARET_EQ] = ACTIONS(325), + [anon_sym_PIPE_EQ] = ACTIONS(325), + [anon_sym_AMP] = ACTIONS(327), + [anon_sym_PIPE_PIPE] = ACTIONS(329), + [anon_sym_AMP_AMP] = ACTIONS(331), + [anon_sym_PIPE] = ACTIONS(333), + [anon_sym_CARET] = ACTIONS(335), + [anon_sym_EQ_EQ] = ACTIONS(337), + [anon_sym_BANG_EQ] = ACTIONS(337), + [anon_sym_LT] = ACTIONS(339), + [anon_sym_GT] = ACTIONS(339), + [anon_sym_LT_EQ] = ACTIONS(341), + [anon_sym_GT_EQ] = ACTIONS(341), + [anon_sym_LT_LT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(343), + [anon_sym_PLUS] = ACTIONS(345), + [anon_sym_DASH] = ACTIONS(345), + [anon_sym_SLASH] = ACTIONS(319), + [anon_sym_PERCENT] = ACTIONS(319), + [anon_sym_DASH_DASH] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(216), + [anon_sym_DOT] = ACTIONS(218), + [anon_sym_DASH_GT] = ACTIONS(218), + [sym_comment] = ACTIONS(59), }, [1042] = { - [sym__expression] = STATE(1094), - [sym_conditional_expression] = STATE(1094), - [sym_assignment_expression] = STATE(1094), - [sym_pointer_expression] = STATE(1094), - [sym_logical_expression] = STATE(1094), - [sym_bitwise_expression] = STATE(1094), - [sym_equality_expression] = STATE(1094), - [sym_relational_expression] = STATE(1094), - [sym_shift_expression] = STATE(1094), - [sym_math_expression] = STATE(1094), - [sym_cast_expression] = STATE(1094), - [sym_sizeof_expression] = STATE(1094), - [sym_subscript_expression] = STATE(1094), - [sym_call_expression] = STATE(1094), - [sym_field_expression] = STATE(1094), - [sym_compound_literal_expression] = STATE(1094), - [sym_parenthesized_expression] = STATE(1094), - [sym_char_literal] = STATE(1094), - [sym_concatenated_string] = STATE(1094), - [sym_string_literal] = STATE(374), - [anon_sym_RPAREN] = ACTIONS(3045), - [anon_sym_LPAREN2] = ACTIONS(892), - [anon_sym_STAR] = ACTIONS(894), - [anon_sym_AMP] = ACTIONS(894), - [anon_sym_BANG] = ACTIONS(896), - [anon_sym_TILDE] = ACTIONS(898), - [anon_sym_PLUS] = ACTIONS(900), - [anon_sym_DASH] = ACTIONS(900), - [anon_sym_DASH_DASH] = ACTIONS(902), - [anon_sym_PLUS_PLUS] = ACTIONS(902), - [anon_sym_sizeof] = ACTIONS(904), - [sym_number_literal] = ACTIONS(3047), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(3049), - [sym_false] = ACTIONS(3049), - [sym_null] = ACTIONS(3049), - [sym_identifier] = ACTIONS(3049), - [sym_comment] = ACTIONS(37), + [sym__expression] = STATE(1109), + [sym_conditional_expression] = STATE(1109), + [sym_assignment_expression] = STATE(1109), + [sym_pointer_expression] = STATE(1109), + [sym_logical_expression] = STATE(1109), + [sym_bitwise_expression] = STATE(1109), + [sym_equality_expression] = STATE(1109), + [sym_relational_expression] = STATE(1109), + [sym_shift_expression] = STATE(1109), + [sym_math_expression] = STATE(1109), + [sym_cast_expression] = STATE(1109), + [sym_sizeof_expression] = STATE(1109), + [sym_subscript_expression] = STATE(1109), + [sym_call_expression] = STATE(1109), + [sym_field_expression] = STATE(1109), + [sym_compound_literal_expression] = STATE(1109), + [sym_parenthesized_expression] = STATE(1109), + [sym_char_literal] = STATE(1109), + [sym_concatenated_string] = STATE(1109), + [sym_string_literal] = STATE(55), + [anon_sym_RPAREN] = ACTIONS(3132), + [anon_sym_LPAREN2] = ACTIONS(85), + [anon_sym_STAR] = ACTIONS(87), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_PLUS] = ACTIONS(97), + [anon_sym_DASH] = ACTIONS(97), + [anon_sym_DASH_DASH] = ACTIONS(99), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(101), + [sym_number_literal] = ACTIONS(3134), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(3136), + [sym_false] = ACTIONS(3136), + [sym_null] = ACTIONS(3136), + [sym_identifier] = ACTIONS(3136), + [sym_comment] = ACTIONS(59), }, [1043] = { - [sym_argument_list] = STATE(430), - [anon_sym_SEMI] = ACTIONS(3051), - [anon_sym_LPAREN2] = ACTIONS(1012), - [anon_sym_STAR] = ACTIONS(1319), - [anon_sym_LBRACK] = ACTIONS(1016), - [anon_sym_EQ] = ACTIONS(1321), - [anon_sym_QMARK] = ACTIONS(1323), - [anon_sym_STAR_EQ] = ACTIONS(1325), - [anon_sym_SLASH_EQ] = ACTIONS(1325), - [anon_sym_PERCENT_EQ] = ACTIONS(1325), - [anon_sym_PLUS_EQ] = ACTIONS(1325), - [anon_sym_DASH_EQ] = ACTIONS(1325), - [anon_sym_LT_LT_EQ] = ACTIONS(1325), - [anon_sym_GT_GT_EQ] = ACTIONS(1325), - [anon_sym_AMP_EQ] = ACTIONS(1325), - [anon_sym_CARET_EQ] = ACTIONS(1325), - [anon_sym_PIPE_EQ] = ACTIONS(1325), - [anon_sym_AMP] = ACTIONS(1327), - [anon_sym_PIPE_PIPE] = ACTIONS(1329), - [anon_sym_AMP_AMP] = ACTIONS(1331), - [anon_sym_PIPE] = ACTIONS(1333), - [anon_sym_CARET] = ACTIONS(1335), - [anon_sym_EQ_EQ] = ACTIONS(1337), - [anon_sym_BANG_EQ] = ACTIONS(1337), - [anon_sym_LT] = ACTIONS(1339), - [anon_sym_GT] = ACTIONS(1339), - [anon_sym_LT_EQ] = ACTIONS(1341), - [anon_sym_GT_EQ] = ACTIONS(1341), - [anon_sym_LT_LT] = ACTIONS(1343), - [anon_sym_GT_GT] = ACTIONS(1343), - [anon_sym_PLUS] = ACTIONS(1345), - [anon_sym_DASH] = ACTIONS(1345), - [anon_sym_SLASH] = ACTIONS(1319), - [anon_sym_PERCENT] = ACTIONS(1319), - [anon_sym_DASH_DASH] = ACTIONS(1044), - [anon_sym_PLUS_PLUS] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1046), - [anon_sym_DASH_GT] = ACTIONS(1046), - [sym_comment] = ACTIONS(37), + [sym_argument_list] = STATE(98), + [anon_sym_SEMI] = ACTIONS(3138), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_LBRACK] = ACTIONS(188), + [anon_sym_EQ] = ACTIONS(1896), + [anon_sym_QMARK] = ACTIONS(1898), + [anon_sym_STAR_EQ] = ACTIONS(1900), + [anon_sym_SLASH_EQ] = ACTIONS(1900), + [anon_sym_PERCENT_EQ] = ACTIONS(1900), + [anon_sym_PLUS_EQ] = ACTIONS(1900), + [anon_sym_DASH_EQ] = ACTIONS(1900), + [anon_sym_LT_LT_EQ] = ACTIONS(1900), + [anon_sym_GT_GT_EQ] = ACTIONS(1900), + [anon_sym_AMP_EQ] = ACTIONS(1900), + [anon_sym_CARET_EQ] = ACTIONS(1900), + [anon_sym_PIPE_EQ] = ACTIONS(1900), + [anon_sym_AMP] = ACTIONS(1902), + [anon_sym_PIPE_PIPE] = ACTIONS(1904), + [anon_sym_AMP_AMP] = ACTIONS(1906), + [anon_sym_PIPE] = ACTIONS(1908), + [anon_sym_CARET] = ACTIONS(1910), + [anon_sym_EQ_EQ] = ACTIONS(1912), + [anon_sym_BANG_EQ] = ACTIONS(1912), + [anon_sym_LT] = ACTIONS(1914), + [anon_sym_GT] = ACTIONS(1914), + [anon_sym_LT_EQ] = ACTIONS(1916), + [anon_sym_GT_EQ] = ACTIONS(1916), + [anon_sym_LT_LT] = ACTIONS(1918), + [anon_sym_GT_GT] = ACTIONS(1918), + [anon_sym_PLUS] = ACTIONS(1920), + [anon_sym_DASH] = ACTIONS(1920), + [anon_sym_SLASH] = ACTIONS(1894), + [anon_sym_PERCENT] = ACTIONS(1894), + [anon_sym_DASH_DASH] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(216), + [anon_sym_DOT] = ACTIONS(218), + [anon_sym_DASH_GT] = ACTIONS(218), + [sym_comment] = ACTIONS(59), }, [1044] = { - [sym__expression] = STATE(1096), - [sym_conditional_expression] = STATE(1096), - [sym_assignment_expression] = STATE(1096), - [sym_pointer_expression] = STATE(1096), - [sym_logical_expression] = STATE(1096), - [sym_bitwise_expression] = STATE(1096), - [sym_equality_expression] = STATE(1096), - [sym_relational_expression] = STATE(1096), - [sym_shift_expression] = STATE(1096), - [sym_math_expression] = STATE(1096), - [sym_cast_expression] = STATE(1096), - [sym_sizeof_expression] = STATE(1096), - [sym_subscript_expression] = STATE(1096), - [sym_call_expression] = STATE(1096), - [sym_field_expression] = STATE(1096), - [sym_compound_literal_expression] = STATE(1096), - [sym_parenthesized_expression] = STATE(1096), - [sym_char_literal] = STATE(1096), - [sym_concatenated_string] = STATE(1096), - [sym_string_literal] = STATE(342), - [anon_sym_SEMI] = ACTIONS(3051), - [anon_sym_LPAREN2] = ACTIONS(780), - [anon_sym_STAR] = ACTIONS(782), - [anon_sym_AMP] = ACTIONS(782), - [anon_sym_BANG] = ACTIONS(784), - [anon_sym_TILDE] = ACTIONS(786), - [anon_sym_PLUS] = ACTIONS(788), - [anon_sym_DASH] = ACTIONS(788), - [anon_sym_DASH_DASH] = ACTIONS(790), - [anon_sym_PLUS_PLUS] = ACTIONS(790), - [anon_sym_sizeof] = ACTIONS(792), - [sym_number_literal] = ACTIONS(3053), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(3055), - [sym_false] = ACTIONS(3055), - [sym_null] = ACTIONS(3055), - [sym_identifier] = ACTIONS(3055), - [sym_comment] = ACTIONS(37), + [sym_argument_list] = STATE(98), + [anon_sym_SEMI] = ACTIONS(2304), + [anon_sym_COMMA] = ACTIONS(2304), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(1500), + [anon_sym_LBRACK] = ACTIONS(188), + [anon_sym_EQ] = ACTIONS(1502), + [anon_sym_QMARK] = ACTIONS(1504), + [anon_sym_STAR_EQ] = ACTIONS(1506), + [anon_sym_SLASH_EQ] = ACTIONS(1506), + [anon_sym_PERCENT_EQ] = ACTIONS(1506), + [anon_sym_PLUS_EQ] = ACTIONS(1506), + [anon_sym_DASH_EQ] = ACTIONS(1506), + [anon_sym_LT_LT_EQ] = ACTIONS(1506), + [anon_sym_GT_GT_EQ] = ACTIONS(1506), + [anon_sym_AMP_EQ] = ACTIONS(1506), + [anon_sym_CARET_EQ] = ACTIONS(1506), + [anon_sym_PIPE_EQ] = ACTIONS(1506), + [anon_sym_AMP] = ACTIONS(1508), + [anon_sym_PIPE_PIPE] = ACTIONS(1510), + [anon_sym_AMP_AMP] = ACTIONS(1512), + [anon_sym_PIPE] = ACTIONS(1514), + [anon_sym_CARET] = ACTIONS(1516), + [anon_sym_EQ_EQ] = ACTIONS(1518), + [anon_sym_BANG_EQ] = ACTIONS(1518), + [anon_sym_LT] = ACTIONS(1520), + [anon_sym_GT] = ACTIONS(1520), + [anon_sym_LT_EQ] = ACTIONS(1522), + [anon_sym_GT_EQ] = ACTIONS(1522), + [anon_sym_LT_LT] = ACTIONS(1524), + [anon_sym_GT_GT] = ACTIONS(1524), + [anon_sym_PLUS] = ACTIONS(1526), + [anon_sym_DASH] = ACTIONS(1526), + [anon_sym_SLASH] = ACTIONS(1500), + [anon_sym_PERCENT] = ACTIONS(1500), + [anon_sym_DASH_DASH] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(216), + [anon_sym_DOT] = ACTIONS(218), + [anon_sym_DASH_GT] = ACTIONS(218), + [sym_comment] = ACTIONS(59), }, [1045] = { - [sym_argument_list] = STATE(430), - [anon_sym_COMMA] = ACTIONS(2989), - [anon_sym_RPAREN] = ACTIONS(2989), - [anon_sym_LPAREN2] = ACTIONS(1012), - [anon_sym_STAR] = ACTIONS(1437), - [anon_sym_LBRACK] = ACTIONS(1016), - [anon_sym_EQ] = ACTIONS(1439), - [anon_sym_QMARK] = ACTIONS(1441), - [anon_sym_STAR_EQ] = ACTIONS(1443), - [anon_sym_SLASH_EQ] = ACTIONS(1443), - [anon_sym_PERCENT_EQ] = ACTIONS(1443), - [anon_sym_PLUS_EQ] = ACTIONS(1443), - [anon_sym_DASH_EQ] = ACTIONS(1443), - [anon_sym_LT_LT_EQ] = ACTIONS(1443), - [anon_sym_GT_GT_EQ] = ACTIONS(1443), - [anon_sym_AMP_EQ] = ACTIONS(1443), - [anon_sym_CARET_EQ] = ACTIONS(1443), - [anon_sym_PIPE_EQ] = ACTIONS(1443), - [anon_sym_AMP] = ACTIONS(1445), - [anon_sym_PIPE_PIPE] = ACTIONS(1447), - [anon_sym_AMP_AMP] = ACTIONS(1449), - [anon_sym_PIPE] = ACTIONS(1451), - [anon_sym_CARET] = ACTIONS(1453), - [anon_sym_EQ_EQ] = ACTIONS(1455), - [anon_sym_BANG_EQ] = ACTIONS(1455), - [anon_sym_LT] = ACTIONS(1457), - [anon_sym_GT] = ACTIONS(1457), - [anon_sym_LT_EQ] = ACTIONS(1459), - [anon_sym_GT_EQ] = ACTIONS(1459), - [anon_sym_LT_LT] = ACTIONS(1461), - [anon_sym_GT_GT] = ACTIONS(1461), - [anon_sym_PLUS] = ACTIONS(1463), - [anon_sym_DASH] = ACTIONS(1463), - [anon_sym_SLASH] = ACTIONS(1437), - [anon_sym_PERCENT] = ACTIONS(1437), - [anon_sym_DASH_DASH] = ACTIONS(1044), - [anon_sym_PLUS_PLUS] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1046), - [anon_sym_DASH_GT] = ACTIONS(1046), - [sym_comment] = ACTIONS(37), + [sym_argument_list] = STATE(98), + [anon_sym_COMMA] = ACTIONS(2304), + [anon_sym_RBRACE] = ACTIONS(2304), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(1823), + [anon_sym_LBRACK] = ACTIONS(188), + [anon_sym_EQ] = ACTIONS(1825), + [anon_sym_QMARK] = ACTIONS(1827), + [anon_sym_STAR_EQ] = ACTIONS(1829), + [anon_sym_SLASH_EQ] = ACTIONS(1829), + [anon_sym_PERCENT_EQ] = ACTIONS(1829), + [anon_sym_PLUS_EQ] = ACTIONS(1829), + [anon_sym_DASH_EQ] = ACTIONS(1829), + [anon_sym_LT_LT_EQ] = ACTIONS(1829), + [anon_sym_GT_GT_EQ] = ACTIONS(1829), + [anon_sym_AMP_EQ] = ACTIONS(1829), + [anon_sym_CARET_EQ] = ACTIONS(1829), + [anon_sym_PIPE_EQ] = ACTIONS(1829), + [anon_sym_AMP] = ACTIONS(1831), + [anon_sym_PIPE_PIPE] = ACTIONS(1833), + [anon_sym_AMP_AMP] = ACTIONS(1835), + [anon_sym_PIPE] = ACTIONS(1837), + [anon_sym_CARET] = ACTIONS(1839), + [anon_sym_EQ_EQ] = ACTIONS(1841), + [anon_sym_BANG_EQ] = ACTIONS(1841), + [anon_sym_LT] = ACTIONS(1843), + [anon_sym_GT] = ACTIONS(1843), + [anon_sym_LT_EQ] = ACTIONS(1845), + [anon_sym_GT_EQ] = ACTIONS(1845), + [anon_sym_LT_LT] = ACTIONS(1847), + [anon_sym_GT_GT] = ACTIONS(1847), + [anon_sym_PLUS] = ACTIONS(1849), + [anon_sym_DASH] = ACTIONS(1849), + [anon_sym_SLASH] = ACTIONS(1823), + [anon_sym_PERCENT] = ACTIONS(1823), + [anon_sym_DASH_DASH] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(216), + [anon_sym_DOT] = ACTIONS(218), + [anon_sym_DASH_GT] = ACTIONS(218), + [sym_comment] = ACTIONS(59), }, [1046] = { - [sym_compound_statement] = STATE(970), - [sym_labeled_statement] = STATE(970), - [sym_expression_statement] = STATE(970), - [sym_if_statement] = STATE(970), - [sym_switch_statement] = STATE(970), - [sym_case_statement] = STATE(970), - [sym_while_statement] = STATE(970), - [sym_do_statement] = STATE(970), - [sym_for_statement] = STATE(970), - [sym_return_statement] = STATE(970), - [sym_break_statement] = STATE(970), - [sym_continue_statement] = STATE(970), - [sym_goto_statement] = STATE(970), - [sym__expression] = STATE(228), - [sym_comma_expression] = STATE(229), - [sym_conditional_expression] = STATE(228), - [sym_assignment_expression] = STATE(228), - [sym_pointer_expression] = STATE(228), - [sym_logical_expression] = STATE(228), - [sym_bitwise_expression] = STATE(228), - [sym_equality_expression] = STATE(228), - [sym_relational_expression] = STATE(228), - [sym_shift_expression] = STATE(228), - [sym_math_expression] = STATE(228), - [sym_cast_expression] = STATE(228), - [sym_sizeof_expression] = STATE(228), - [sym_subscript_expression] = STATE(228), - [sym_call_expression] = STATE(228), - [sym_field_expression] = STATE(228), - [sym_compound_literal_expression] = STATE(228), - [sym_parenthesized_expression] = STATE(228), - [sym_char_literal] = STATE(228), - [sym_concatenated_string] = STATE(228), - [sym_string_literal] = STATE(230), - [anon_sym_SEMI] = ACTIONS(503), - [anon_sym_LBRACE] = ACTIONS(229), - [anon_sym_LPAREN2] = ACTIONS(507), - [anon_sym_STAR] = ACTIONS(509), - [anon_sym_if] = ACTIONS(1475), - [anon_sym_switch] = ACTIONS(1477), - [anon_sym_case] = ACTIONS(1479), - [anon_sym_default] = ACTIONS(1481), - [anon_sym_while] = ACTIONS(1483), - [anon_sym_do] = ACTIONS(521), - [anon_sym_for] = ACTIONS(1485), - [anon_sym_return] = ACTIONS(525), - [anon_sym_break] = ACTIONS(527), - [anon_sym_continue] = ACTIONS(529), - [anon_sym_goto] = ACTIONS(531), - [anon_sym_AMP] = ACTIONS(509), - [anon_sym_BANG] = ACTIONS(533), - [anon_sym_TILDE] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DASH] = ACTIONS(537), - [anon_sym_DASH_DASH] = ACTIONS(539), - [anon_sym_PLUS_PLUS] = ACTIONS(539), - [anon_sym_sizeof] = ACTIONS(541), - [sym_number_literal] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(547), - [sym_false] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [sym_identifier] = ACTIONS(1487), - [sym_comment] = ACTIONS(37), + [sym_argument_list] = STATE(98), + [anon_sym_SEMI] = ACTIONS(2304), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_LBRACK] = ACTIONS(188), + [anon_sym_EQ] = ACTIONS(1896), + [anon_sym_QMARK] = ACTIONS(1898), + [anon_sym_STAR_EQ] = ACTIONS(1900), + [anon_sym_SLASH_EQ] = ACTIONS(1900), + [anon_sym_PERCENT_EQ] = ACTIONS(1900), + [anon_sym_PLUS_EQ] = ACTIONS(1900), + [anon_sym_DASH_EQ] = ACTIONS(1900), + [anon_sym_LT_LT_EQ] = ACTIONS(1900), + [anon_sym_GT_GT_EQ] = ACTIONS(1900), + [anon_sym_AMP_EQ] = ACTIONS(1900), + [anon_sym_CARET_EQ] = ACTIONS(1900), + [anon_sym_PIPE_EQ] = ACTIONS(1900), + [anon_sym_AMP] = ACTIONS(1902), + [anon_sym_PIPE_PIPE] = ACTIONS(1904), + [anon_sym_AMP_AMP] = ACTIONS(1906), + [anon_sym_PIPE] = ACTIONS(1908), + [anon_sym_CARET] = ACTIONS(1910), + [anon_sym_EQ_EQ] = ACTIONS(1912), + [anon_sym_BANG_EQ] = ACTIONS(1912), + [anon_sym_LT] = ACTIONS(1914), + [anon_sym_GT] = ACTIONS(1914), + [anon_sym_LT_EQ] = ACTIONS(1916), + [anon_sym_GT_EQ] = ACTIONS(1916), + [anon_sym_LT_LT] = ACTIONS(1918), + [anon_sym_GT_GT] = ACTIONS(1918), + [anon_sym_PLUS] = ACTIONS(1920), + [anon_sym_DASH] = ACTIONS(1920), + [anon_sym_SLASH] = ACTIONS(1894), + [anon_sym_PERCENT] = ACTIONS(1894), + [anon_sym_DASH_DASH] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(216), + [anon_sym_DOT] = ACTIONS(218), + [anon_sym_DASH_GT] = ACTIONS(218), + [sym_comment] = ACTIONS(59), }, [1047] = { - [sym__expression] = STATE(1098), - [sym_conditional_expression] = STATE(1098), - [sym_assignment_expression] = STATE(1098), - [sym_pointer_expression] = STATE(1098), - [sym_logical_expression] = STATE(1098), - [sym_bitwise_expression] = STATE(1098), - [sym_equality_expression] = STATE(1098), - [sym_relational_expression] = STATE(1098), - [sym_shift_expression] = STATE(1098), - [sym_math_expression] = STATE(1098), - [sym_cast_expression] = STATE(1098), - [sym_sizeof_expression] = STATE(1098), - [sym_subscript_expression] = STATE(1098), - [sym_call_expression] = STATE(1098), - [sym_field_expression] = STATE(1098), - [sym_compound_literal_expression] = STATE(1098), - [sym_parenthesized_expression] = STATE(1098), - [sym_char_literal] = STATE(1098), - [sym_concatenated_string] = STATE(1098), - [sym_string_literal] = STATE(374), - [anon_sym_RPAREN] = ACTIONS(3057), - [anon_sym_LPAREN2] = ACTIONS(892), - [anon_sym_STAR] = ACTIONS(894), - [anon_sym_AMP] = ACTIONS(894), - [anon_sym_BANG] = ACTIONS(896), - [anon_sym_TILDE] = ACTIONS(898), - [anon_sym_PLUS] = ACTIONS(900), - [anon_sym_DASH] = ACTIONS(900), - [anon_sym_DASH_DASH] = ACTIONS(902), - [anon_sym_PLUS_PLUS] = ACTIONS(902), - [anon_sym_sizeof] = ACTIONS(904), - [sym_number_literal] = ACTIONS(3059), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(3061), - [sym_false] = ACTIONS(3061), - [sym_null] = ACTIONS(3061), - [sym_identifier] = ACTIONS(3061), - [sym_comment] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(2784), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2786), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2786), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2786), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2786), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2786), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2786), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2786), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2786), + [sym_preproc_directive] = ACTIONS(2786), + [anon_sym_typedef] = ACTIONS(2786), + [anon_sym_extern] = ACTIONS(2786), + [anon_sym_LBRACE] = ACTIONS(2784), + [anon_sym_LPAREN2] = ACTIONS(2784), + [anon_sym_STAR] = ACTIONS(2784), + [anon_sym_static] = ACTIONS(2786), + [anon_sym_auto] = ACTIONS(2786), + [anon_sym_register] = ACTIONS(2786), + [anon_sym_inline] = ACTIONS(2786), + [anon_sym_const] = ACTIONS(2786), + [anon_sym_restrict] = ACTIONS(2786), + [anon_sym_volatile] = ACTIONS(2786), + [anon_sym__Atomic] = ACTIONS(2786), + [anon_sym_unsigned] = ACTIONS(2786), + [anon_sym_long] = ACTIONS(2786), + [anon_sym_short] = ACTIONS(2786), + [sym_primitive_type] = ACTIONS(2786), + [anon_sym_enum] = ACTIONS(2786), + [anon_sym_struct] = ACTIONS(2786), + [anon_sym_union] = ACTIONS(2786), + [anon_sym_if] = ACTIONS(2786), + [anon_sym_switch] = ACTIONS(2786), + [anon_sym_case] = ACTIONS(2786), + [anon_sym_default] = ACTIONS(2786), + [anon_sym_while] = ACTIONS(2786), + [anon_sym_do] = ACTIONS(2786), + [anon_sym_for] = ACTIONS(2786), + [anon_sym_return] = ACTIONS(2786), + [anon_sym_break] = ACTIONS(2786), + [anon_sym_continue] = ACTIONS(2786), + [anon_sym_goto] = ACTIONS(2786), + [anon_sym_AMP] = ACTIONS(2784), + [anon_sym_BANG] = ACTIONS(2784), + [anon_sym_TILDE] = ACTIONS(2784), + [anon_sym_PLUS] = ACTIONS(2786), + [anon_sym_DASH] = ACTIONS(2786), + [anon_sym_DASH_DASH] = ACTIONS(2784), + [anon_sym_PLUS_PLUS] = ACTIONS(2784), + [anon_sym_sizeof] = ACTIONS(2786), + [sym_number_literal] = ACTIONS(2784), + [anon_sym_SQUOTE] = ACTIONS(2784), + [anon_sym_DQUOTE] = ACTIONS(2784), + [sym_true] = ACTIONS(2786), + [sym_false] = ACTIONS(2786), + [sym_null] = ACTIONS(2786), + [sym_identifier] = ACTIONS(2786), + [sym_comment] = ACTIONS(59), }, [1048] = { - [sym_argument_list] = STATE(430), - [anon_sym_SEMI] = ACTIONS(3063), - [anon_sym_LPAREN2] = ACTIONS(1012), - [anon_sym_STAR] = ACTIONS(1319), - [anon_sym_LBRACK] = ACTIONS(1016), - [anon_sym_EQ] = ACTIONS(1321), - [anon_sym_QMARK] = ACTIONS(1323), - [anon_sym_STAR_EQ] = ACTIONS(1325), - [anon_sym_SLASH_EQ] = ACTIONS(1325), - [anon_sym_PERCENT_EQ] = ACTIONS(1325), - [anon_sym_PLUS_EQ] = ACTIONS(1325), - [anon_sym_DASH_EQ] = ACTIONS(1325), - [anon_sym_LT_LT_EQ] = ACTIONS(1325), - [anon_sym_GT_GT_EQ] = ACTIONS(1325), - [anon_sym_AMP_EQ] = ACTIONS(1325), - [anon_sym_CARET_EQ] = ACTIONS(1325), - [anon_sym_PIPE_EQ] = ACTIONS(1325), - [anon_sym_AMP] = ACTIONS(1327), - [anon_sym_PIPE_PIPE] = ACTIONS(1329), - [anon_sym_AMP_AMP] = ACTIONS(1331), - [anon_sym_PIPE] = ACTIONS(1333), - [anon_sym_CARET] = ACTIONS(1335), - [anon_sym_EQ_EQ] = ACTIONS(1337), - [anon_sym_BANG_EQ] = ACTIONS(1337), - [anon_sym_LT] = ACTIONS(1339), - [anon_sym_GT] = ACTIONS(1339), - [anon_sym_LT_EQ] = ACTIONS(1341), - [anon_sym_GT_EQ] = ACTIONS(1341), - [anon_sym_LT_LT] = ACTIONS(1343), - [anon_sym_GT_GT] = ACTIONS(1343), - [anon_sym_PLUS] = ACTIONS(1345), - [anon_sym_DASH] = ACTIONS(1345), - [anon_sym_SLASH] = ACTIONS(1319), - [anon_sym_PERCENT] = ACTIONS(1319), - [anon_sym_DASH_DASH] = ACTIONS(1044), - [anon_sym_PLUS_PLUS] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1046), - [anon_sym_DASH_GT] = ACTIONS(1046), - [sym_comment] = ACTIONS(37), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3140), + [sym_comment] = ACTIONS(59), }, [1049] = { - [sym__expression] = STATE(1100), - [sym_conditional_expression] = STATE(1100), - [sym_assignment_expression] = STATE(1100), - [sym_pointer_expression] = STATE(1100), - [sym_logical_expression] = STATE(1100), - [sym_bitwise_expression] = STATE(1100), - [sym_equality_expression] = STATE(1100), - [sym_relational_expression] = STATE(1100), - [sym_shift_expression] = STATE(1100), - [sym_math_expression] = STATE(1100), - [sym_cast_expression] = STATE(1100), - [sym_sizeof_expression] = STATE(1100), - [sym_subscript_expression] = STATE(1100), - [sym_call_expression] = STATE(1100), - [sym_field_expression] = STATE(1100), - [sym_compound_literal_expression] = STATE(1100), - [sym_parenthesized_expression] = STATE(1100), - [sym_char_literal] = STATE(1100), - [sym_concatenated_string] = STATE(1100), - [sym_string_literal] = STATE(342), - [anon_sym_SEMI] = ACTIONS(3063), - [anon_sym_LPAREN2] = ACTIONS(780), - [anon_sym_STAR] = ACTIONS(782), - [anon_sym_AMP] = ACTIONS(782), - [anon_sym_BANG] = ACTIONS(784), - [anon_sym_TILDE] = ACTIONS(786), - [anon_sym_PLUS] = ACTIONS(788), - [anon_sym_DASH] = ACTIONS(788), - [anon_sym_DASH_DASH] = ACTIONS(790), - [anon_sym_PLUS_PLUS] = ACTIONS(790), - [anon_sym_sizeof] = ACTIONS(792), - [sym_number_literal] = ACTIONS(3065), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(3067), - [sym_false] = ACTIONS(3067), - [sym_null] = ACTIONS(3067), - [sym_identifier] = ACTIONS(3067), - [sym_comment] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(2858), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2860), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2860), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2860), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2860), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2860), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2860), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2860), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2860), + [sym_preproc_directive] = ACTIONS(2860), + [anon_sym_typedef] = ACTIONS(2860), + [anon_sym_extern] = ACTIONS(2860), + [anon_sym_LBRACE] = ACTIONS(2858), + [anon_sym_LPAREN2] = ACTIONS(2858), + [anon_sym_STAR] = ACTIONS(2858), + [anon_sym_static] = ACTIONS(2860), + [anon_sym_auto] = ACTIONS(2860), + [anon_sym_register] = ACTIONS(2860), + [anon_sym_inline] = ACTIONS(2860), + [anon_sym_const] = ACTIONS(2860), + [anon_sym_restrict] = ACTIONS(2860), + [anon_sym_volatile] = ACTIONS(2860), + [anon_sym__Atomic] = ACTIONS(2860), + [anon_sym_unsigned] = ACTIONS(2860), + [anon_sym_long] = ACTIONS(2860), + [anon_sym_short] = ACTIONS(2860), + [sym_primitive_type] = ACTIONS(2860), + [anon_sym_enum] = ACTIONS(2860), + [anon_sym_struct] = ACTIONS(2860), + [anon_sym_union] = ACTIONS(2860), + [anon_sym_if] = ACTIONS(2860), + [anon_sym_switch] = ACTIONS(2860), + [anon_sym_case] = ACTIONS(2860), + [anon_sym_default] = ACTIONS(2860), + [anon_sym_while] = ACTIONS(2860), + [anon_sym_do] = ACTIONS(2860), + [anon_sym_for] = ACTIONS(2860), + [anon_sym_return] = ACTIONS(2860), + [anon_sym_break] = ACTIONS(2860), + [anon_sym_continue] = ACTIONS(2860), + [anon_sym_goto] = ACTIONS(2860), + [anon_sym_AMP] = ACTIONS(2858), + [anon_sym_BANG] = ACTIONS(2858), + [anon_sym_TILDE] = ACTIONS(2858), + [anon_sym_PLUS] = ACTIONS(2860), + [anon_sym_DASH] = ACTIONS(2860), + [anon_sym_DASH_DASH] = ACTIONS(2858), + [anon_sym_PLUS_PLUS] = ACTIONS(2858), + [anon_sym_sizeof] = ACTIONS(2860), + [sym_number_literal] = ACTIONS(2858), + [anon_sym_SQUOTE] = ACTIONS(2858), + [anon_sym_DQUOTE] = ACTIONS(2858), + [sym_true] = ACTIONS(2860), + [sym_false] = ACTIONS(2860), + [sym_null] = ACTIONS(2860), + [sym_identifier] = ACTIONS(2860), + [sym_comment] = ACTIONS(59), }, [1050] = { - [sym_argument_list] = STATE(430), - [anon_sym_LPAREN2] = ACTIONS(1012), - [anon_sym_STAR] = ACTIONS(1497), - [anon_sym_LBRACK] = ACTIONS(1016), - [anon_sym_EQ] = ACTIONS(1499), - [anon_sym_COLON] = ACTIONS(2989), - [anon_sym_QMARK] = ACTIONS(1503), - [anon_sym_STAR_EQ] = ACTIONS(1505), - [anon_sym_SLASH_EQ] = ACTIONS(1505), - [anon_sym_PERCENT_EQ] = ACTIONS(1505), - [anon_sym_PLUS_EQ] = ACTIONS(1505), - [anon_sym_DASH_EQ] = ACTIONS(1505), - [anon_sym_LT_LT_EQ] = ACTIONS(1505), - [anon_sym_GT_GT_EQ] = ACTIONS(1505), - [anon_sym_AMP_EQ] = ACTIONS(1505), - [anon_sym_CARET_EQ] = ACTIONS(1505), - [anon_sym_PIPE_EQ] = ACTIONS(1505), - [anon_sym_AMP] = ACTIONS(1507), - [anon_sym_PIPE_PIPE] = ACTIONS(1509), - [anon_sym_AMP_AMP] = ACTIONS(1511), - [anon_sym_PIPE] = ACTIONS(1513), - [anon_sym_CARET] = ACTIONS(1515), - [anon_sym_EQ_EQ] = ACTIONS(1517), - [anon_sym_BANG_EQ] = ACTIONS(1517), - [anon_sym_LT] = ACTIONS(1519), - [anon_sym_GT] = ACTIONS(1519), - [anon_sym_LT_EQ] = ACTIONS(1521), - [anon_sym_GT_EQ] = ACTIONS(1521), - [anon_sym_LT_LT] = ACTIONS(1523), - [anon_sym_GT_GT] = ACTIONS(1523), - [anon_sym_PLUS] = ACTIONS(1525), - [anon_sym_DASH] = ACTIONS(1525), - [anon_sym_SLASH] = ACTIONS(1497), - [anon_sym_PERCENT] = ACTIONS(1497), - [anon_sym_DASH_DASH] = ACTIONS(1044), - [anon_sym_PLUS_PLUS] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1046), - [anon_sym_DASH_GT] = ACTIONS(1046), - [sym_comment] = ACTIONS(37), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3142), + [sym_comment] = ACTIONS(59), }, [1051] = { - [anon_sym_else] = ACTIONS(3069), - [anon_sym_while] = ACTIONS(2224), - [sym_comment] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(2475), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2477), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2477), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2477), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2477), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2477), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2477), + [sym_preproc_directive] = ACTIONS(2477), + [anon_sym_typedef] = ACTIONS(2477), + [anon_sym_extern] = ACTIONS(2477), + [anon_sym_LBRACE] = ACTIONS(2475), + [anon_sym_LPAREN2] = ACTIONS(2475), + [anon_sym_STAR] = ACTIONS(2475), + [anon_sym_static] = ACTIONS(2477), + [anon_sym_auto] = ACTIONS(2477), + [anon_sym_register] = ACTIONS(2477), + [anon_sym_inline] = ACTIONS(2477), + [anon_sym_const] = ACTIONS(2477), + [anon_sym_restrict] = ACTIONS(2477), + [anon_sym_volatile] = ACTIONS(2477), + [anon_sym__Atomic] = ACTIONS(2477), + [anon_sym_unsigned] = ACTIONS(2477), + [anon_sym_long] = ACTIONS(2477), + [anon_sym_short] = ACTIONS(2477), + [sym_primitive_type] = ACTIONS(2477), + [anon_sym_enum] = ACTIONS(2477), + [anon_sym_struct] = ACTIONS(2477), + [anon_sym_union] = ACTIONS(2477), + [anon_sym_if] = ACTIONS(2477), + [anon_sym_switch] = ACTIONS(2477), + [anon_sym_case] = ACTIONS(2477), + [anon_sym_default] = ACTIONS(2477), + [anon_sym_while] = ACTIONS(2477), + [anon_sym_do] = ACTIONS(2477), + [anon_sym_for] = ACTIONS(2477), + [anon_sym_return] = ACTIONS(2477), + [anon_sym_break] = ACTIONS(2477), + [anon_sym_continue] = ACTIONS(2477), + [anon_sym_goto] = ACTIONS(2477), + [anon_sym_AMP] = ACTIONS(2475), + [anon_sym_BANG] = ACTIONS(2475), + [anon_sym_TILDE] = ACTIONS(2475), + [anon_sym_PLUS] = ACTIONS(2477), + [anon_sym_DASH] = ACTIONS(2477), + [anon_sym_DASH_DASH] = ACTIONS(2475), + [anon_sym_PLUS_PLUS] = ACTIONS(2475), + [anon_sym_sizeof] = ACTIONS(2477), + [sym_number_literal] = ACTIONS(2475), + [anon_sym_SQUOTE] = ACTIONS(2475), + [anon_sym_DQUOTE] = ACTIONS(2475), + [sym_true] = ACTIONS(2477), + [sym_false] = ACTIONS(2477), + [sym_null] = ACTIONS(2477), + [sym_identifier] = ACTIONS(2477), + [sym_comment] = ACTIONS(59), }, [1052] = { - [sym_declaration] = STATE(853), - [sym_type_definition] = STATE(853), - [sym__declaration_specifiers] = STATE(650), - [sym_compound_statement] = STATE(853), - [sym_storage_class_specifier] = STATE(87), - [sym_type_qualifier] = STATE(87), - [sym__type_specifier] = STATE(86), - [sym_sized_type_specifier] = STATE(86), - [sym_enum_specifier] = STATE(86), - [sym_struct_specifier] = STATE(86), - [sym_union_specifier] = STATE(86), - [sym_labeled_statement] = STATE(853), - [sym_expression_statement] = STATE(853), - [sym_if_statement] = STATE(853), - [sym_switch_statement] = STATE(853), - [sym_case_statement] = STATE(853), - [sym_while_statement] = STATE(853), - [sym_do_statement] = STATE(853), - [sym_for_statement] = STATE(853), - [sym_return_statement] = STATE(853), - [sym_break_statement] = STATE(853), - [sym_continue_statement] = STATE(853), - [sym_goto_statement] = STATE(853), - [sym__expression] = STATE(228), - [sym_comma_expression] = STATE(229), - [sym_conditional_expression] = STATE(228), - [sym_assignment_expression] = STATE(228), - [sym_pointer_expression] = STATE(228), - [sym_logical_expression] = STATE(228), - [sym_bitwise_expression] = STATE(228), - [sym_equality_expression] = STATE(228), - [sym_relational_expression] = STATE(228), - [sym_shift_expression] = STATE(228), - [sym_math_expression] = STATE(228), - [sym_cast_expression] = STATE(228), - [sym_sizeof_expression] = STATE(228), - [sym_subscript_expression] = STATE(228), - [sym_call_expression] = STATE(228), - [sym_field_expression] = STATE(228), - [sym_compound_literal_expression] = STATE(228), - [sym_parenthesized_expression] = STATE(228), - [sym_char_literal] = STATE(228), - [sym_concatenated_string] = STATE(228), - [sym_string_literal] = STATE(230), - [sym_macro_type_specifier] = STATE(86), - [aux_sym__declaration_specifiers_repeat1] = STATE(87), - [aux_sym_sized_type_specifier_repeat1] = STATE(88), - [anon_sym_SEMI] = ACTIONS(503), - [anon_sym_typedef] = ACTIONS(17), - [anon_sym_extern] = ACTIONS(21), - [anon_sym_LBRACE] = ACTIONS(229), - [anon_sym_LPAREN2] = ACTIONS(507), - [anon_sym_STAR] = ACTIONS(509), - [anon_sym_static] = ACTIONS(21), - [anon_sym_auto] = ACTIONS(21), - [anon_sym_register] = ACTIONS(21), - [anon_sym_inline] = ACTIONS(21), - [anon_sym_const] = ACTIONS(23), - [anon_sym_restrict] = ACTIONS(23), - [anon_sym_volatile] = ACTIONS(23), - [anon_sym__Atomic] = ACTIONS(23), - [anon_sym_unsigned] = ACTIONS(167), - [anon_sym_long] = ACTIONS(167), - [anon_sym_short] = ACTIONS(167), - [sym_primitive_type] = ACTIONS(169), - [anon_sym_enum] = ACTIONS(29), - [anon_sym_struct] = ACTIONS(31), - [anon_sym_union] = ACTIONS(33), - [anon_sym_if] = ACTIONS(2286), - [anon_sym_switch] = ACTIONS(2288), - [anon_sym_case] = ACTIONS(2290), - [anon_sym_default] = ACTIONS(2292), - [anon_sym_while] = ACTIONS(2294), - [anon_sym_do] = ACTIONS(948), - [anon_sym_for] = ACTIONS(2296), - [anon_sym_return] = ACTIONS(525), - [anon_sym_break] = ACTIONS(527), - [anon_sym_continue] = ACTIONS(529), - [anon_sym_goto] = ACTIONS(531), - [anon_sym_AMP] = ACTIONS(509), - [anon_sym_BANG] = ACTIONS(533), - [anon_sym_TILDE] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DASH] = ACTIONS(537), - [anon_sym_DASH_DASH] = ACTIONS(539), - [anon_sym_PLUS_PLUS] = ACTIONS(539), - [anon_sym_sizeof] = ACTIONS(541), - [sym_number_literal] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(547), - [sym_false] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [sym_identifier] = ACTIONS(2952), - [sym_comment] = ACTIONS(37), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3144), + [sym_comment] = ACTIONS(59), }, [1053] = { - [anon_sym_COMMA] = ACTIONS(990), - [anon_sym_SEMI] = ACTIONS(990), - [anon_sym_extern] = ACTIONS(79), - [anon_sym_LPAREN2] = ACTIONS(995), - [anon_sym_STAR] = ACTIONS(999), - [anon_sym_LBRACK] = ACTIONS(990), - [anon_sym_EQ] = ACTIONS(1002), - [anon_sym_static] = ACTIONS(79), - [anon_sym_auto] = ACTIONS(79), - [anon_sym_register] = ACTIONS(79), - [anon_sym_inline] = ACTIONS(79), - [anon_sym_const] = ACTIONS(79), - [anon_sym_restrict] = ACTIONS(79), - [anon_sym_volatile] = ACTIONS(79), - [anon_sym__Atomic] = ACTIONS(79), - [anon_sym_COLON] = ACTIONS(2671), - [anon_sym_QMARK] = ACTIONS(990), - [anon_sym_STAR_EQ] = ACTIONS(990), - [anon_sym_SLASH_EQ] = ACTIONS(990), - [anon_sym_PERCENT_EQ] = ACTIONS(990), - [anon_sym_PLUS_EQ] = ACTIONS(990), - [anon_sym_DASH_EQ] = ACTIONS(990), - [anon_sym_LT_LT_EQ] = ACTIONS(990), - [anon_sym_GT_GT_EQ] = ACTIONS(990), - [anon_sym_AMP_EQ] = ACTIONS(990), - [anon_sym_CARET_EQ] = ACTIONS(990), - [anon_sym_PIPE_EQ] = ACTIONS(990), - [anon_sym_AMP] = ACTIONS(1002), - [anon_sym_PIPE_PIPE] = ACTIONS(990), - [anon_sym_AMP_AMP] = ACTIONS(990), - [anon_sym_PIPE] = ACTIONS(1002), - [anon_sym_CARET] = ACTIONS(1002), - [anon_sym_EQ_EQ] = ACTIONS(990), - [anon_sym_BANG_EQ] = ACTIONS(990), - [anon_sym_LT] = ACTIONS(1002), - [anon_sym_GT] = ACTIONS(1002), - [anon_sym_LT_EQ] = ACTIONS(990), - [anon_sym_GT_EQ] = ACTIONS(990), - [anon_sym_LT_LT] = ACTIONS(1002), - [anon_sym_GT_GT] = ACTIONS(1002), - [anon_sym_PLUS] = ACTIONS(1002), - [anon_sym_DASH] = ACTIONS(1002), - [anon_sym_SLASH] = ACTIONS(1002), - [anon_sym_PERCENT] = ACTIONS(1002), - [anon_sym_DASH_DASH] = ACTIONS(990), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_DOT] = ACTIONS(990), - [anon_sym_DASH_GT] = ACTIONS(990), - [sym_identifier] = ACTIONS(79), - [sym_comment] = ACTIONS(37), + [sym_preproc_include] = STATE(923), + [sym_preproc_def] = STATE(923), + [sym_preproc_function_def] = STATE(923), + [sym_preproc_call] = STATE(923), + [sym_preproc_if_in_compound_statement] = STATE(923), + [sym_preproc_ifdef_in_compound_statement] = STATE(923), + [sym_preproc_else_in_compound_statement] = STATE(1114), + [sym_preproc_elif_in_compound_statement] = STATE(1114), + [sym_declaration] = STATE(923), + [sym_type_definition] = STATE(923), + [sym__declaration_specifiers] = STATE(755), + [sym_compound_statement] = STATE(923), + [sym_storage_class_specifier] = STATE(30), + [sym_type_qualifier] = STATE(30), + [sym__type_specifier] = STATE(25), + [sym_sized_type_specifier] = STATE(25), + [sym_enum_specifier] = STATE(25), + [sym_struct_specifier] = STATE(25), + [sym_union_specifier] = STATE(25), + [sym_labeled_statement] = STATE(923), + [sym_expression_statement] = STATE(923), + [sym_if_statement] = STATE(923), + [sym_switch_statement] = STATE(923), + [sym_case_statement] = STATE(923), + [sym_while_statement] = STATE(923), + [sym_do_statement] = STATE(923), + [sym_for_statement] = STATE(923), + [sym_return_statement] = STATE(923), + [sym_break_statement] = STATE(923), + [sym_continue_statement] = STATE(923), + [sym_goto_statement] = STATE(923), + [sym__expression] = STATE(756), + [sym_comma_expression] = STATE(757), + [sym_conditional_expression] = STATE(756), + [sym_assignment_expression] = STATE(756), + [sym_pointer_expression] = STATE(756), + [sym_logical_expression] = STATE(756), + [sym_bitwise_expression] = STATE(756), + [sym_equality_expression] = STATE(756), + [sym_relational_expression] = STATE(756), + [sym_shift_expression] = STATE(756), + [sym_math_expression] = STATE(756), + [sym_cast_expression] = STATE(756), + [sym_sizeof_expression] = STATE(756), + [sym_subscript_expression] = STATE(756), + [sym_call_expression] = STATE(756), + [sym_field_expression] = STATE(756), + [sym_compound_literal_expression] = STATE(756), + [sym_parenthesized_expression] = STATE(756), + [sym_char_literal] = STATE(756), + [sym_concatenated_string] = STATE(756), + [sym_string_literal] = STATE(374), + [sym__empty_declaration] = STATE(923), + [sym_macro_type_specifier] = STATE(25), + [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(923), + [aux_sym__declaration_specifiers_repeat1] = STATE(30), + [aux_sym_sized_type_specifier_repeat1] = STATE(31), + [anon_sym_SEMI] = ACTIONS(1940), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(251), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(253), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1942), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3146), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1946), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1946), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1948), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1950), + [sym_preproc_directive] = ACTIONS(265), + [anon_sym_typedef] = ACTIONS(267), + [anon_sym_extern] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_LPAREN2] = ACTIONS(936), + [anon_sym_STAR] = ACTIONS(938), + [anon_sym_static] = ACTIONS(25), + [anon_sym_auto] = ACTIONS(25), + [anon_sym_register] = ACTIONS(25), + [anon_sym_inline] = ACTIONS(25), + [anon_sym_const] = ACTIONS(27), + [anon_sym_restrict] = ACTIONS(27), + [anon_sym_volatile] = ACTIONS(27), + [anon_sym__Atomic] = ACTIONS(27), + [anon_sym_unsigned] = ACTIONS(29), + [anon_sym_long] = ACTIONS(29), + [anon_sym_short] = ACTIONS(29), + [sym_primitive_type] = ACTIONS(31), + [anon_sym_enum] = ACTIONS(33), + [anon_sym_struct] = ACTIONS(35), + [anon_sym_union] = ACTIONS(37), + [anon_sym_if] = ACTIONS(1952), + [anon_sym_switch] = ACTIONS(1954), + [anon_sym_case] = ACTIONS(1956), + [anon_sym_default] = ACTIONS(1958), + [anon_sym_while] = ACTIONS(1960), + [anon_sym_do] = ACTIONS(1962), + [anon_sym_for] = ACTIONS(1964), + [anon_sym_return] = ACTIONS(1966), + [anon_sym_break] = ACTIONS(1968), + [anon_sym_continue] = ACTIONS(1970), + [anon_sym_goto] = ACTIONS(1972), + [anon_sym_AMP] = ACTIONS(938), + [anon_sym_BANG] = ACTIONS(962), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_DASH_DASH] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(968), + [anon_sym_sizeof] = ACTIONS(970), + [sym_number_literal] = ACTIONS(1974), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(1976), + [sym_false] = ACTIONS(1976), + [sym_null] = ACTIONS(1976), + [sym_identifier] = ACTIONS(1978), + [sym_comment] = ACTIONS(59), }, [1054] = { - [sym__expression] = STATE(1103), - [sym_conditional_expression] = STATE(1103), - [sym_assignment_expression] = STATE(1103), - [sym_pointer_expression] = STATE(1103), - [sym_logical_expression] = STATE(1103), - [sym_bitwise_expression] = STATE(1103), - [sym_equality_expression] = STATE(1103), - [sym_relational_expression] = STATE(1103), - [sym_shift_expression] = STATE(1103), - [sym_math_expression] = STATE(1103), - [sym_cast_expression] = STATE(1103), - [sym_sizeof_expression] = STATE(1103), - [sym_subscript_expression] = STATE(1103), - [sym_call_expression] = STATE(1103), - [sym_field_expression] = STATE(1103), - [sym_compound_literal_expression] = STATE(1103), - [sym_parenthesized_expression] = STATE(1103), - [sym_char_literal] = STATE(1103), - [sym_concatenated_string] = STATE(1103), - [sym_string_literal] = STATE(342), - [anon_sym_SEMI] = ACTIONS(3071), - [anon_sym_LPAREN2] = ACTIONS(780), - [anon_sym_STAR] = ACTIONS(782), - [anon_sym_AMP] = ACTIONS(782), - [anon_sym_BANG] = ACTIONS(784), - [anon_sym_TILDE] = ACTIONS(786), - [anon_sym_PLUS] = ACTIONS(788), - [anon_sym_DASH] = ACTIONS(788), - [anon_sym_DASH_DASH] = ACTIONS(790), - [anon_sym_PLUS_PLUS] = ACTIONS(790), - [anon_sym_sizeof] = ACTIONS(792), - [sym_number_literal] = ACTIONS(3073), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(3075), - [sym_false] = ACTIONS(3075), - [sym_null] = ACTIONS(3075), - [sym_identifier] = ACTIONS(3075), - [sym_comment] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(2549), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2551), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2551), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2551), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2551), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2551), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2551), + [sym_preproc_directive] = ACTIONS(2551), + [anon_sym_typedef] = ACTIONS(2551), + [anon_sym_extern] = ACTIONS(2551), + [anon_sym_LBRACE] = ACTIONS(2549), + [anon_sym_LPAREN2] = ACTIONS(2549), + [anon_sym_STAR] = ACTIONS(2549), + [anon_sym_static] = ACTIONS(2551), + [anon_sym_auto] = ACTIONS(2551), + [anon_sym_register] = ACTIONS(2551), + [anon_sym_inline] = ACTIONS(2551), + [anon_sym_const] = ACTIONS(2551), + [anon_sym_restrict] = ACTIONS(2551), + [anon_sym_volatile] = ACTIONS(2551), + [anon_sym__Atomic] = ACTIONS(2551), + [anon_sym_unsigned] = ACTIONS(2551), + [anon_sym_long] = ACTIONS(2551), + [anon_sym_short] = ACTIONS(2551), + [sym_primitive_type] = ACTIONS(2551), + [anon_sym_enum] = ACTIONS(2551), + [anon_sym_struct] = ACTIONS(2551), + [anon_sym_union] = ACTIONS(2551), + [anon_sym_if] = ACTIONS(2551), + [anon_sym_switch] = ACTIONS(2551), + [anon_sym_case] = ACTIONS(2551), + [anon_sym_default] = ACTIONS(2551), + [anon_sym_while] = ACTIONS(2551), + [anon_sym_do] = ACTIONS(2551), + [anon_sym_for] = ACTIONS(2551), + [anon_sym_return] = ACTIONS(2551), + [anon_sym_break] = ACTIONS(2551), + [anon_sym_continue] = ACTIONS(2551), + [anon_sym_goto] = ACTIONS(2551), + [anon_sym_AMP] = ACTIONS(2549), + [anon_sym_BANG] = ACTIONS(2549), + [anon_sym_TILDE] = ACTIONS(2549), + [anon_sym_PLUS] = ACTIONS(2551), + [anon_sym_DASH] = ACTIONS(2551), + [anon_sym_DASH_DASH] = ACTIONS(2549), + [anon_sym_PLUS_PLUS] = ACTIONS(2549), + [anon_sym_sizeof] = ACTIONS(2551), + [sym_number_literal] = ACTIONS(2549), + [anon_sym_SQUOTE] = ACTIONS(2549), + [anon_sym_DQUOTE] = ACTIONS(2549), + [sym_true] = ACTIONS(2551), + [sym_false] = ACTIONS(2551), + [sym_null] = ACTIONS(2551), + [sym_identifier] = ACTIONS(2551), + [sym_comment] = ACTIONS(59), }, [1055] = { - [sym_argument_list] = STATE(430), - [anon_sym_SEMI] = ACTIONS(3077), - [anon_sym_LPAREN2] = ACTIONS(1012), - [anon_sym_STAR] = ACTIONS(1319), - [anon_sym_LBRACK] = ACTIONS(1016), - [anon_sym_EQ] = ACTIONS(1321), - [anon_sym_QMARK] = ACTIONS(1323), - [anon_sym_STAR_EQ] = ACTIONS(1325), - [anon_sym_SLASH_EQ] = ACTIONS(1325), - [anon_sym_PERCENT_EQ] = ACTIONS(1325), - [anon_sym_PLUS_EQ] = ACTIONS(1325), - [anon_sym_DASH_EQ] = ACTIONS(1325), - [anon_sym_LT_LT_EQ] = ACTIONS(1325), - [anon_sym_GT_GT_EQ] = ACTIONS(1325), - [anon_sym_AMP_EQ] = ACTIONS(1325), - [anon_sym_CARET_EQ] = ACTIONS(1325), - [anon_sym_PIPE_EQ] = ACTIONS(1325), - [anon_sym_AMP] = ACTIONS(1327), - [anon_sym_PIPE_PIPE] = ACTIONS(1329), - [anon_sym_AMP_AMP] = ACTIONS(1331), - [anon_sym_PIPE] = ACTIONS(1333), - [anon_sym_CARET] = ACTIONS(1335), - [anon_sym_EQ_EQ] = ACTIONS(1337), - [anon_sym_BANG_EQ] = ACTIONS(1337), - [anon_sym_LT] = ACTIONS(1339), - [anon_sym_GT] = ACTIONS(1339), - [anon_sym_LT_EQ] = ACTIONS(1341), - [anon_sym_GT_EQ] = ACTIONS(1341), - [anon_sym_LT_LT] = ACTIONS(1343), - [anon_sym_GT_GT] = ACTIONS(1343), - [anon_sym_PLUS] = ACTIONS(1345), - [anon_sym_DASH] = ACTIONS(1345), - [anon_sym_SLASH] = ACTIONS(1319), - [anon_sym_PERCENT] = ACTIONS(1319), - [anon_sym_DASH_DASH] = ACTIONS(1044), - [anon_sym_PLUS_PLUS] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1046), - [anon_sym_DASH_GT] = ACTIONS(1046), - [sym_comment] = ACTIONS(37), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3148), + [sym_comment] = ACTIONS(59), }, [1056] = { - [sym_compound_statement] = STATE(1060), - [sym_labeled_statement] = STATE(1060), - [sym_expression_statement] = STATE(1060), - [sym_if_statement] = STATE(1060), - [sym_switch_statement] = STATE(1060), - [sym_case_statement] = STATE(1060), - [sym_while_statement] = STATE(1060), - [sym_do_statement] = STATE(1060), - [sym_for_statement] = STATE(1060), - [sym_return_statement] = STATE(1060), - [sym_break_statement] = STATE(1060), - [sym_continue_statement] = STATE(1060), - [sym_goto_statement] = STATE(1060), - [sym__expression] = STATE(228), - [sym_comma_expression] = STATE(229), - [sym_conditional_expression] = STATE(228), - [sym_assignment_expression] = STATE(228), - [sym_pointer_expression] = STATE(228), - [sym_logical_expression] = STATE(228), - [sym_bitwise_expression] = STATE(228), - [sym_equality_expression] = STATE(228), - [sym_relational_expression] = STATE(228), - [sym_shift_expression] = STATE(228), - [sym_math_expression] = STATE(228), - [sym_cast_expression] = STATE(228), - [sym_sizeof_expression] = STATE(228), - [sym_subscript_expression] = STATE(228), - [sym_call_expression] = STATE(228), - [sym_field_expression] = STATE(228), - [sym_compound_literal_expression] = STATE(228), - [sym_parenthesized_expression] = STATE(228), - [sym_char_literal] = STATE(228), - [sym_concatenated_string] = STATE(228), - [sym_string_literal] = STATE(230), - [anon_sym_SEMI] = ACTIONS(503), - [anon_sym_LBRACE] = ACTIONS(229), - [anon_sym_LPAREN2] = ACTIONS(507), - [anon_sym_STAR] = ACTIONS(509), - [anon_sym_if] = ACTIONS(938), - [anon_sym_switch] = ACTIONS(940), - [anon_sym_case] = ACTIONS(942), - [anon_sym_default] = ACTIONS(944), - [anon_sym_while] = ACTIONS(946), - [anon_sym_do] = ACTIONS(948), - [anon_sym_for] = ACTIONS(950), - [anon_sym_return] = ACTIONS(525), - [anon_sym_break] = ACTIONS(527), - [anon_sym_continue] = ACTIONS(529), - [anon_sym_goto] = ACTIONS(531), - [anon_sym_AMP] = ACTIONS(509), - [anon_sym_BANG] = ACTIONS(533), - [anon_sym_TILDE] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DASH] = ACTIONS(537), - [anon_sym_DASH_DASH] = ACTIONS(539), - [anon_sym_PLUS_PLUS] = ACTIONS(539), - [anon_sym_sizeof] = ACTIONS(541), - [sym_number_literal] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(547), - [sym_false] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [sym_identifier] = ACTIONS(952), - [sym_comment] = ACTIONS(37), + [sym_preproc_include] = STATE(923), + [sym_preproc_def] = STATE(923), + [sym_preproc_function_def] = STATE(923), + [sym_preproc_call] = STATE(923), + [sym_preproc_if_in_compound_statement] = STATE(923), + [sym_preproc_ifdef_in_compound_statement] = STATE(923), + [sym_preproc_else_in_compound_statement] = STATE(1116), + [sym_preproc_elif_in_compound_statement] = STATE(1116), + [sym_declaration] = STATE(923), + [sym_type_definition] = STATE(923), + [sym__declaration_specifiers] = STATE(755), + [sym_compound_statement] = STATE(923), + [sym_storage_class_specifier] = STATE(30), + [sym_type_qualifier] = STATE(30), + [sym__type_specifier] = STATE(25), + [sym_sized_type_specifier] = STATE(25), + [sym_enum_specifier] = STATE(25), + [sym_struct_specifier] = STATE(25), + [sym_union_specifier] = STATE(25), + [sym_labeled_statement] = STATE(923), + [sym_expression_statement] = STATE(923), + [sym_if_statement] = STATE(923), + [sym_switch_statement] = STATE(923), + [sym_case_statement] = STATE(923), + [sym_while_statement] = STATE(923), + [sym_do_statement] = STATE(923), + [sym_for_statement] = STATE(923), + [sym_return_statement] = STATE(923), + [sym_break_statement] = STATE(923), + [sym_continue_statement] = STATE(923), + [sym_goto_statement] = STATE(923), + [sym__expression] = STATE(756), + [sym_comma_expression] = STATE(757), + [sym_conditional_expression] = STATE(756), + [sym_assignment_expression] = STATE(756), + [sym_pointer_expression] = STATE(756), + [sym_logical_expression] = STATE(756), + [sym_bitwise_expression] = STATE(756), + [sym_equality_expression] = STATE(756), + [sym_relational_expression] = STATE(756), + [sym_shift_expression] = STATE(756), + [sym_math_expression] = STATE(756), + [sym_cast_expression] = STATE(756), + [sym_sizeof_expression] = STATE(756), + [sym_subscript_expression] = STATE(756), + [sym_call_expression] = STATE(756), + [sym_field_expression] = STATE(756), + [sym_compound_literal_expression] = STATE(756), + [sym_parenthesized_expression] = STATE(756), + [sym_char_literal] = STATE(756), + [sym_concatenated_string] = STATE(756), + [sym_string_literal] = STATE(374), + [sym__empty_declaration] = STATE(923), + [sym_macro_type_specifier] = STATE(25), + [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(923), + [aux_sym__declaration_specifiers_repeat1] = STATE(30), + [aux_sym_sized_type_specifier_repeat1] = STATE(31), + [anon_sym_SEMI] = ACTIONS(1940), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(251), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(253), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1942), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3150), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1946), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1946), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1948), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1950), + [sym_preproc_directive] = ACTIONS(265), + [anon_sym_typedef] = ACTIONS(267), + [anon_sym_extern] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_LPAREN2] = ACTIONS(936), + [anon_sym_STAR] = ACTIONS(938), + [anon_sym_static] = ACTIONS(25), + [anon_sym_auto] = ACTIONS(25), + [anon_sym_register] = ACTIONS(25), + [anon_sym_inline] = ACTIONS(25), + [anon_sym_const] = ACTIONS(27), + [anon_sym_restrict] = ACTIONS(27), + [anon_sym_volatile] = ACTIONS(27), + [anon_sym__Atomic] = ACTIONS(27), + [anon_sym_unsigned] = ACTIONS(29), + [anon_sym_long] = ACTIONS(29), + [anon_sym_short] = ACTIONS(29), + [sym_primitive_type] = ACTIONS(31), + [anon_sym_enum] = ACTIONS(33), + [anon_sym_struct] = ACTIONS(35), + [anon_sym_union] = ACTIONS(37), + [anon_sym_if] = ACTIONS(1952), + [anon_sym_switch] = ACTIONS(1954), + [anon_sym_case] = ACTIONS(1956), + [anon_sym_default] = ACTIONS(1958), + [anon_sym_while] = ACTIONS(1960), + [anon_sym_do] = ACTIONS(1962), + [anon_sym_for] = ACTIONS(1964), + [anon_sym_return] = ACTIONS(1966), + [anon_sym_break] = ACTIONS(1968), + [anon_sym_continue] = ACTIONS(1970), + [anon_sym_goto] = ACTIONS(1972), + [anon_sym_AMP] = ACTIONS(938), + [anon_sym_BANG] = ACTIONS(962), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_DASH_DASH] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(968), + [anon_sym_sizeof] = ACTIONS(970), + [sym_number_literal] = ACTIONS(1974), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(1976), + [sym_false] = ACTIONS(1976), + [sym_null] = ACTIONS(1976), + [sym_identifier] = ACTIONS(1978), + [sym_comment] = ACTIONS(59), }, [1057] = { - [sym_argument_list] = STATE(430), - [aux_sym_for_statement_repeat1] = STATE(1106), - [anon_sym_COMMA] = ACTIONS(2344), - [anon_sym_RPAREN] = ACTIONS(3079), - [anon_sym_LPAREN2] = ACTIONS(1012), - [anon_sym_STAR] = ACTIONS(1437), - [anon_sym_LBRACK] = ACTIONS(1016), - [anon_sym_EQ] = ACTIONS(1439), - [anon_sym_QMARK] = ACTIONS(1441), - [anon_sym_STAR_EQ] = ACTIONS(1443), - [anon_sym_SLASH_EQ] = ACTIONS(1443), - [anon_sym_PERCENT_EQ] = ACTIONS(1443), - [anon_sym_PLUS_EQ] = ACTIONS(1443), - [anon_sym_DASH_EQ] = ACTIONS(1443), - [anon_sym_LT_LT_EQ] = ACTIONS(1443), - [anon_sym_GT_GT_EQ] = ACTIONS(1443), - [anon_sym_AMP_EQ] = ACTIONS(1443), - [anon_sym_CARET_EQ] = ACTIONS(1443), - [anon_sym_PIPE_EQ] = ACTIONS(1443), - [anon_sym_AMP] = ACTIONS(1445), - [anon_sym_PIPE_PIPE] = ACTIONS(1447), - [anon_sym_AMP_AMP] = ACTIONS(1449), - [anon_sym_PIPE] = ACTIONS(1451), - [anon_sym_CARET] = ACTIONS(1453), - [anon_sym_EQ_EQ] = ACTIONS(1455), - [anon_sym_BANG_EQ] = ACTIONS(1455), - [anon_sym_LT] = ACTIONS(1457), - [anon_sym_GT] = ACTIONS(1457), - [anon_sym_LT_EQ] = ACTIONS(1459), - [anon_sym_GT_EQ] = ACTIONS(1459), - [anon_sym_LT_LT] = ACTIONS(1461), - [anon_sym_GT_GT] = ACTIONS(1461), - [anon_sym_PLUS] = ACTIONS(1463), - [anon_sym_DASH] = ACTIONS(1463), - [anon_sym_SLASH] = ACTIONS(1437), - [anon_sym_PERCENT] = ACTIONS(1437), - [anon_sym_DASH_DASH] = ACTIONS(1044), - [anon_sym_PLUS_PLUS] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1046), - [anon_sym_DASH_GT] = ACTIONS(1046), - [sym_comment] = ACTIONS(37), + [sym_parenthesized_expression] = STATE(1117), + [anon_sym_LPAREN2] = ACTIONS(1448), + [sym_comment] = ACTIONS(59), }, [1058] = { - [sym__expression] = STATE(1107), - [sym_conditional_expression] = STATE(1107), - [sym_assignment_expression] = STATE(1107), - [sym_pointer_expression] = STATE(1107), - [sym_logical_expression] = STATE(1107), - [sym_bitwise_expression] = STATE(1107), - [sym_equality_expression] = STATE(1107), - [sym_relational_expression] = STATE(1107), - [sym_shift_expression] = STATE(1107), - [sym_math_expression] = STATE(1107), - [sym_cast_expression] = STATE(1107), - [sym_sizeof_expression] = STATE(1107), - [sym_subscript_expression] = STATE(1107), - [sym_call_expression] = STATE(1107), - [sym_field_expression] = STATE(1107), - [sym_compound_literal_expression] = STATE(1107), - [sym_parenthesized_expression] = STATE(1107), - [sym_char_literal] = STATE(1107), - [sym_concatenated_string] = STATE(1107), - [sym_string_literal] = STATE(374), - [anon_sym_RPAREN] = ACTIONS(3079), - [anon_sym_LPAREN2] = ACTIONS(892), - [anon_sym_STAR] = ACTIONS(894), - [anon_sym_AMP] = ACTIONS(894), - [anon_sym_BANG] = ACTIONS(896), - [anon_sym_TILDE] = ACTIONS(898), - [anon_sym_PLUS] = ACTIONS(900), - [anon_sym_DASH] = ACTIONS(900), - [anon_sym_DASH_DASH] = ACTIONS(902), - [anon_sym_PLUS_PLUS] = ACTIONS(902), - [anon_sym_sizeof] = ACTIONS(904), - [sym_number_literal] = ACTIONS(3081), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(3083), - [sym_false] = ACTIONS(3083), - [sym_null] = ACTIONS(3083), - [sym_identifier] = ACTIONS(3083), - [sym_comment] = ACTIONS(37), + [sym_parenthesized_expression] = STATE(1118), + [anon_sym_LPAREN2] = ACTIONS(1448), + [sym_comment] = ACTIONS(59), }, [1059] = { - [sym_argument_list] = STATE(430), - [anon_sym_SEMI] = ACTIONS(3085), - [anon_sym_LPAREN2] = ACTIONS(1012), - [anon_sym_STAR] = ACTIONS(1319), - [anon_sym_LBRACK] = ACTIONS(1016), - [anon_sym_EQ] = ACTIONS(1321), - [anon_sym_QMARK] = ACTIONS(1323), - [anon_sym_STAR_EQ] = ACTIONS(1325), - [anon_sym_SLASH_EQ] = ACTIONS(1325), - [anon_sym_PERCENT_EQ] = ACTIONS(1325), - [anon_sym_PLUS_EQ] = ACTIONS(1325), - [anon_sym_DASH_EQ] = ACTIONS(1325), - [anon_sym_LT_LT_EQ] = ACTIONS(1325), - [anon_sym_GT_GT_EQ] = ACTIONS(1325), - [anon_sym_AMP_EQ] = ACTIONS(1325), - [anon_sym_CARET_EQ] = ACTIONS(1325), - [anon_sym_PIPE_EQ] = ACTIONS(1325), - [anon_sym_AMP] = ACTIONS(1327), - [anon_sym_PIPE_PIPE] = ACTIONS(1329), - [anon_sym_AMP_AMP] = ACTIONS(1331), - [anon_sym_PIPE] = ACTIONS(1333), - [anon_sym_CARET] = ACTIONS(1335), - [anon_sym_EQ_EQ] = ACTIONS(1337), - [anon_sym_BANG_EQ] = ACTIONS(1337), - [anon_sym_LT] = ACTIONS(1339), - [anon_sym_GT] = ACTIONS(1339), - [anon_sym_LT_EQ] = ACTIONS(1341), - [anon_sym_GT_EQ] = ACTIONS(1341), - [anon_sym_LT_LT] = ACTIONS(1343), - [anon_sym_GT_GT] = ACTIONS(1343), - [anon_sym_PLUS] = ACTIONS(1345), - [anon_sym_DASH] = ACTIONS(1345), - [anon_sym_SLASH] = ACTIONS(1319), - [anon_sym_PERCENT] = ACTIONS(1319), - [anon_sym_DASH_DASH] = ACTIONS(1044), - [anon_sym_PLUS_PLUS] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1046), - [anon_sym_DASH_GT] = ACTIONS(1046), - [sym_comment] = ACTIONS(37), + [sym__expression] = STATE(1119), + [sym_conditional_expression] = STATE(1119), + [sym_assignment_expression] = STATE(1119), + [sym_pointer_expression] = STATE(1119), + [sym_logical_expression] = STATE(1119), + [sym_bitwise_expression] = STATE(1119), + [sym_equality_expression] = STATE(1119), + [sym_relational_expression] = STATE(1119), + [sym_shift_expression] = STATE(1119), + [sym_math_expression] = STATE(1119), + [sym_cast_expression] = STATE(1119), + [sym_sizeof_expression] = STATE(1119), + [sym_subscript_expression] = STATE(1119), + [sym_call_expression] = STATE(1119), + [sym_field_expression] = STATE(1119), + [sym_compound_literal_expression] = STATE(1119), + [sym_parenthesized_expression] = STATE(1119), + [sym_char_literal] = STATE(1119), + [sym_concatenated_string] = STATE(1119), + [sym_string_literal] = STATE(223), + [anon_sym_LPAREN2] = ACTIONS(483), + [anon_sym_STAR] = ACTIONS(485), + [anon_sym_AMP] = ACTIONS(485), + [anon_sym_BANG] = ACTIONS(487), + [anon_sym_TILDE] = ACTIONS(489), + [anon_sym_PLUS] = ACTIONS(491), + [anon_sym_DASH] = ACTIONS(491), + [anon_sym_DASH_DASH] = ACTIONS(493), + [anon_sym_PLUS_PLUS] = ACTIONS(493), + [anon_sym_sizeof] = ACTIONS(495), + [sym_number_literal] = ACTIONS(3152), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(3154), + [sym_false] = ACTIONS(3154), + [sym_null] = ACTIONS(3154), + [sym_identifier] = ACTIONS(3154), + [sym_comment] = ACTIONS(59), }, [1060] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3087), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3087), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3087), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3087), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3087), - [sym_preproc_directive] = ACTIONS(3087), - [anon_sym_SEMI] = ACTIONS(3089), - [anon_sym_typedef] = ACTIONS(3087), - [anon_sym_extern] = ACTIONS(3087), - [anon_sym_LBRACE] = ACTIONS(3089), - [anon_sym_RBRACE] = ACTIONS(3089), - [anon_sym_LPAREN2] = ACTIONS(3089), - [anon_sym_STAR] = ACTIONS(3089), - [anon_sym_static] = ACTIONS(3087), - [anon_sym_auto] = ACTIONS(3087), - [anon_sym_register] = ACTIONS(3087), - [anon_sym_inline] = ACTIONS(3087), - [anon_sym_const] = ACTIONS(3087), - [anon_sym_restrict] = ACTIONS(3087), - [anon_sym_volatile] = ACTIONS(3087), - [anon_sym__Atomic] = ACTIONS(3087), - [anon_sym_unsigned] = ACTIONS(3087), - [anon_sym_long] = ACTIONS(3087), - [anon_sym_short] = ACTIONS(3087), - [sym_primitive_type] = ACTIONS(3087), - [anon_sym_enum] = ACTIONS(3087), - [anon_sym_struct] = ACTIONS(3087), - [anon_sym_union] = ACTIONS(3087), - [anon_sym_if] = ACTIONS(3087), - [anon_sym_else] = ACTIONS(3087), - [anon_sym_switch] = ACTIONS(3087), - [anon_sym_case] = ACTIONS(3087), - [anon_sym_default] = ACTIONS(3087), - [anon_sym_while] = ACTIONS(3087), - [anon_sym_do] = ACTIONS(3087), - [anon_sym_for] = ACTIONS(3087), - [anon_sym_return] = ACTIONS(3087), - [anon_sym_break] = ACTIONS(3087), - [anon_sym_continue] = ACTIONS(3087), - [anon_sym_goto] = ACTIONS(3087), - [anon_sym_AMP] = ACTIONS(3089), - [anon_sym_BANG] = ACTIONS(3089), - [anon_sym_TILDE] = ACTIONS(3089), - [anon_sym_PLUS] = ACTIONS(3087), - [anon_sym_DASH] = ACTIONS(3087), - [anon_sym_DASH_DASH] = ACTIONS(3089), - [anon_sym_PLUS_PLUS] = ACTIONS(3089), - [anon_sym_sizeof] = ACTIONS(3087), - [sym_number_literal] = ACTIONS(3089), - [anon_sym_SQUOTE] = ACTIONS(3089), - [anon_sym_DQUOTE] = ACTIONS(3089), - [sym_true] = ACTIONS(3087), - [sym_false] = ACTIONS(3087), - [sym_null] = ACTIONS(3087), - [sym_identifier] = ACTIONS(3087), - [sym_comment] = ACTIONS(37), + [anon_sym_COLON] = ACTIONS(3156), + [sym_comment] = ACTIONS(59), }, [1061] = { - [sym_compound_statement] = STATE(1109), - [sym_labeled_statement] = STATE(1109), - [sym_expression_statement] = STATE(1109), - [sym_if_statement] = STATE(1109), - [sym_switch_statement] = STATE(1109), - [sym_case_statement] = STATE(1109), - [sym_while_statement] = STATE(1109), - [sym_do_statement] = STATE(1109), - [sym_for_statement] = STATE(1109), - [sym_return_statement] = STATE(1109), - [sym_break_statement] = STATE(1109), - [sym_continue_statement] = STATE(1109), - [sym_goto_statement] = STATE(1109), - [sym__expression] = STATE(228), - [sym_comma_expression] = STATE(229), - [sym_conditional_expression] = STATE(228), - [sym_assignment_expression] = STATE(228), - [sym_pointer_expression] = STATE(228), - [sym_logical_expression] = STATE(228), - [sym_bitwise_expression] = STATE(228), - [sym_equality_expression] = STATE(228), - [sym_relational_expression] = STATE(228), - [sym_shift_expression] = STATE(228), - [sym_math_expression] = STATE(228), - [sym_cast_expression] = STATE(228), - [sym_sizeof_expression] = STATE(228), - [sym_subscript_expression] = STATE(228), - [sym_call_expression] = STATE(228), - [sym_field_expression] = STATE(228), - [sym_compound_literal_expression] = STATE(228), - [sym_parenthesized_expression] = STATE(228), - [sym_char_literal] = STATE(228), - [sym_concatenated_string] = STATE(228), - [sym_string_literal] = STATE(230), - [anon_sym_SEMI] = ACTIONS(503), - [anon_sym_LBRACE] = ACTIONS(229), - [anon_sym_LPAREN2] = ACTIONS(507), - [anon_sym_STAR] = ACTIONS(509), - [anon_sym_if] = ACTIONS(511), - [anon_sym_switch] = ACTIONS(513), - [anon_sym_case] = ACTIONS(515), - [anon_sym_default] = ACTIONS(517), - [anon_sym_while] = ACTIONS(519), - [anon_sym_do] = ACTIONS(521), - [anon_sym_for] = ACTIONS(523), - [anon_sym_return] = ACTIONS(525), - [anon_sym_break] = ACTIONS(527), - [anon_sym_continue] = ACTIONS(529), - [anon_sym_goto] = ACTIONS(531), - [anon_sym_AMP] = ACTIONS(509), - [anon_sym_BANG] = ACTIONS(533), - [anon_sym_TILDE] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DASH] = ACTIONS(537), - [anon_sym_DASH_DASH] = ACTIONS(539), - [anon_sym_PLUS_PLUS] = ACTIONS(539), - [anon_sym_sizeof] = ACTIONS(541), - [sym_number_literal] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(547), - [sym_false] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [sym_identifier] = ACTIONS(1489), - [sym_comment] = ACTIONS(37), + [sym_parenthesized_expression] = STATE(1121), + [anon_sym_LPAREN2] = ACTIONS(1448), + [sym_comment] = ACTIONS(59), }, [1062] = { - [aux_sym_for_statement_repeat1] = STATE(991), - [anon_sym_COMMA] = ACTIONS(2344), - [anon_sym_RPAREN] = ACTIONS(3091), - [sym_comment] = ACTIONS(37), + [anon_sym_LPAREN2] = ACTIONS(3158), + [sym_comment] = ACTIONS(59), }, [1063] = { - [sym_argument_list] = STATE(430), - [aux_sym_for_statement_repeat1] = STATE(1111), - [anon_sym_COMMA] = ACTIONS(2344), - [anon_sym_RPAREN] = ACTIONS(3091), - [anon_sym_LPAREN2] = ACTIONS(1012), - [anon_sym_STAR] = ACTIONS(1437), - [anon_sym_LBRACK] = ACTIONS(1016), - [anon_sym_EQ] = ACTIONS(1439), - [anon_sym_QMARK] = ACTIONS(1441), - [anon_sym_STAR_EQ] = ACTIONS(1443), - [anon_sym_SLASH_EQ] = ACTIONS(1443), - [anon_sym_PERCENT_EQ] = ACTIONS(1443), - [anon_sym_PLUS_EQ] = ACTIONS(1443), - [anon_sym_DASH_EQ] = ACTIONS(1443), - [anon_sym_LT_LT_EQ] = ACTIONS(1443), - [anon_sym_GT_GT_EQ] = ACTIONS(1443), - [anon_sym_AMP_EQ] = ACTIONS(1443), - [anon_sym_CARET_EQ] = ACTIONS(1443), - [anon_sym_PIPE_EQ] = ACTIONS(1443), - [anon_sym_AMP] = ACTIONS(1445), - [anon_sym_PIPE_PIPE] = ACTIONS(1447), - [anon_sym_AMP_AMP] = ACTIONS(1449), - [anon_sym_PIPE] = ACTIONS(1451), - [anon_sym_CARET] = ACTIONS(1453), - [anon_sym_EQ_EQ] = ACTIONS(1455), - [anon_sym_BANG_EQ] = ACTIONS(1455), - [anon_sym_LT] = ACTIONS(1457), - [anon_sym_GT] = ACTIONS(1457), - [anon_sym_LT_EQ] = ACTIONS(1459), - [anon_sym_GT_EQ] = ACTIONS(1459), - [anon_sym_LT_LT] = ACTIONS(1461), - [anon_sym_GT_GT] = ACTIONS(1461), - [anon_sym_PLUS] = ACTIONS(1463), - [anon_sym_DASH] = ACTIONS(1463), - [anon_sym_SLASH] = ACTIONS(1437), - [anon_sym_PERCENT] = ACTIONS(1437), - [anon_sym_DASH_DASH] = ACTIONS(1044), - [anon_sym_PLUS_PLUS] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1046), - [anon_sym_DASH_GT] = ACTIONS(1046), - [sym_comment] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(166), + [anon_sym_COMMA] = ACTIONS(166), + [anon_sym_LPAREN2] = ACTIONS(166), + [anon_sym_STAR] = ACTIONS(168), + [anon_sym_LBRACK] = ACTIONS(166), + [anon_sym_EQ] = ACTIONS(168), + [anon_sym_COLON] = ACTIONS(3160), + [anon_sym_QMARK] = ACTIONS(166), + [anon_sym_STAR_EQ] = ACTIONS(166), + [anon_sym_SLASH_EQ] = ACTIONS(166), + [anon_sym_PERCENT_EQ] = ACTIONS(166), + [anon_sym_PLUS_EQ] = ACTIONS(166), + [anon_sym_DASH_EQ] = ACTIONS(166), + [anon_sym_LT_LT_EQ] = ACTIONS(166), + [anon_sym_GT_GT_EQ] = ACTIONS(166), + [anon_sym_AMP_EQ] = ACTIONS(166), + [anon_sym_CARET_EQ] = ACTIONS(166), + [anon_sym_PIPE_EQ] = ACTIONS(166), + [anon_sym_AMP] = ACTIONS(168), + [anon_sym_PIPE_PIPE] = ACTIONS(166), + [anon_sym_AMP_AMP] = ACTIONS(166), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_CARET] = ACTIONS(168), + [anon_sym_EQ_EQ] = ACTIONS(166), + [anon_sym_BANG_EQ] = ACTIONS(166), + [anon_sym_LT] = ACTIONS(168), + [anon_sym_GT] = ACTIONS(168), + [anon_sym_LT_EQ] = ACTIONS(166), + [anon_sym_GT_EQ] = ACTIONS(166), + [anon_sym_LT_LT] = ACTIONS(168), + [anon_sym_GT_GT] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(168), + [anon_sym_DASH] = ACTIONS(168), + [anon_sym_SLASH] = ACTIONS(168), + [anon_sym_PERCENT] = ACTIONS(168), + [anon_sym_DASH_DASH] = ACTIONS(166), + [anon_sym_PLUS_PLUS] = ACTIONS(166), + [anon_sym_DOT] = ACTIONS(166), + [anon_sym_DASH_GT] = ACTIONS(166), + [sym_comment] = ACTIONS(59), }, [1064] = { - [sym__expression] = STATE(1112), - [sym_conditional_expression] = STATE(1112), - [sym_assignment_expression] = STATE(1112), - [sym_pointer_expression] = STATE(1112), - [sym_logical_expression] = STATE(1112), - [sym_bitwise_expression] = STATE(1112), - [sym_equality_expression] = STATE(1112), - [sym_relational_expression] = STATE(1112), - [sym_shift_expression] = STATE(1112), - [sym_math_expression] = STATE(1112), - [sym_cast_expression] = STATE(1112), - [sym_sizeof_expression] = STATE(1112), - [sym_subscript_expression] = STATE(1112), - [sym_call_expression] = STATE(1112), - [sym_field_expression] = STATE(1112), - [sym_compound_literal_expression] = STATE(1112), - [sym_parenthesized_expression] = STATE(1112), - [sym_char_literal] = STATE(1112), - [sym_concatenated_string] = STATE(1112), - [sym_string_literal] = STATE(374), - [anon_sym_RPAREN] = ACTIONS(3091), - [anon_sym_LPAREN2] = ACTIONS(892), - [anon_sym_STAR] = ACTIONS(894), - [anon_sym_AMP] = ACTIONS(894), - [anon_sym_BANG] = ACTIONS(896), - [anon_sym_TILDE] = ACTIONS(898), - [anon_sym_PLUS] = ACTIONS(900), - [anon_sym_DASH] = ACTIONS(900), - [anon_sym_DASH_DASH] = ACTIONS(902), - [anon_sym_PLUS_PLUS] = ACTIONS(902), - [anon_sym_sizeof] = ACTIONS(904), - [sym_number_literal] = ACTIONS(3093), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(3095), - [sym_false] = ACTIONS(3095), - [sym_null] = ACTIONS(3095), - [sym_identifier] = ACTIONS(3095), - [sym_comment] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(2569), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2571), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2571), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2571), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2571), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2571), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2571), + [sym_preproc_directive] = ACTIONS(2571), + [anon_sym_typedef] = ACTIONS(2571), + [anon_sym_extern] = ACTIONS(2571), + [anon_sym_LBRACE] = ACTIONS(2569), + [anon_sym_LPAREN2] = ACTIONS(2569), + [anon_sym_STAR] = ACTIONS(2569), + [anon_sym_static] = ACTIONS(2571), + [anon_sym_auto] = ACTIONS(2571), + [anon_sym_register] = ACTIONS(2571), + [anon_sym_inline] = ACTIONS(2571), + [anon_sym_const] = ACTIONS(2571), + [anon_sym_restrict] = ACTIONS(2571), + [anon_sym_volatile] = ACTIONS(2571), + [anon_sym__Atomic] = ACTIONS(2571), + [anon_sym_unsigned] = ACTIONS(2571), + [anon_sym_long] = ACTIONS(2571), + [anon_sym_short] = ACTIONS(2571), + [sym_primitive_type] = ACTIONS(2571), + [anon_sym_enum] = ACTIONS(2571), + [anon_sym_struct] = ACTIONS(2571), + [anon_sym_union] = ACTIONS(2571), + [anon_sym_if] = ACTIONS(2571), + [anon_sym_else] = ACTIONS(3162), + [anon_sym_switch] = ACTIONS(2571), + [anon_sym_case] = ACTIONS(2571), + [anon_sym_default] = ACTIONS(2571), + [anon_sym_while] = ACTIONS(2571), + [anon_sym_do] = ACTIONS(2571), + [anon_sym_for] = ACTIONS(2571), + [anon_sym_return] = ACTIONS(2571), + [anon_sym_break] = ACTIONS(2571), + [anon_sym_continue] = ACTIONS(2571), + [anon_sym_goto] = ACTIONS(2571), + [anon_sym_AMP] = ACTIONS(2569), + [anon_sym_BANG] = ACTIONS(2569), + [anon_sym_TILDE] = ACTIONS(2569), + [anon_sym_PLUS] = ACTIONS(2571), + [anon_sym_DASH] = ACTIONS(2571), + [anon_sym_DASH_DASH] = ACTIONS(2569), + [anon_sym_PLUS_PLUS] = ACTIONS(2569), + [anon_sym_sizeof] = ACTIONS(2571), + [sym_number_literal] = ACTIONS(2569), + [anon_sym_SQUOTE] = ACTIONS(2569), + [anon_sym_DQUOTE] = ACTIONS(2569), + [sym_true] = ACTIONS(2571), + [sym_false] = ACTIONS(2571), + [sym_null] = ACTIONS(2571), + [sym_identifier] = ACTIONS(2571), + [sym_comment] = ACTIONS(59), }, [1065] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2912), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2912), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2912), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2912), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2912), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2912), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2912), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2912), - [sym_preproc_directive] = ACTIONS(2912), - [anon_sym_SEMI] = ACTIONS(2914), - [anon_sym_typedef] = ACTIONS(2912), - [anon_sym_extern] = ACTIONS(2912), - [anon_sym_LBRACE] = ACTIONS(2914), - [anon_sym_LPAREN2] = ACTIONS(2914), - [anon_sym_STAR] = ACTIONS(2914), - [anon_sym_static] = ACTIONS(2912), - [anon_sym_auto] = ACTIONS(2912), - [anon_sym_register] = ACTIONS(2912), - [anon_sym_inline] = ACTIONS(2912), - [anon_sym_const] = ACTIONS(2912), - [anon_sym_restrict] = ACTIONS(2912), - [anon_sym_volatile] = ACTIONS(2912), - [anon_sym__Atomic] = ACTIONS(2912), - [anon_sym_unsigned] = ACTIONS(2912), - [anon_sym_long] = ACTIONS(2912), - [anon_sym_short] = ACTIONS(2912), - [sym_primitive_type] = ACTIONS(2912), - [anon_sym_enum] = ACTIONS(2912), - [anon_sym_struct] = ACTIONS(2912), - [anon_sym_union] = ACTIONS(2912), - [anon_sym_if] = ACTIONS(2912), - [anon_sym_switch] = ACTIONS(2912), - [anon_sym_case] = ACTIONS(2912), - [anon_sym_default] = ACTIONS(2912), - [anon_sym_while] = ACTIONS(2912), - [anon_sym_do] = ACTIONS(2912), - [anon_sym_for] = ACTIONS(2912), - [anon_sym_return] = ACTIONS(2912), - [anon_sym_break] = ACTIONS(2912), - [anon_sym_continue] = ACTIONS(2912), - [anon_sym_goto] = ACTIONS(2912), - [anon_sym_AMP] = ACTIONS(2914), - [anon_sym_BANG] = ACTIONS(2914), - [anon_sym_TILDE] = ACTIONS(2914), - [anon_sym_PLUS] = ACTIONS(2912), - [anon_sym_DASH] = ACTIONS(2912), - [anon_sym_DASH_DASH] = ACTIONS(2914), - [anon_sym_PLUS_PLUS] = ACTIONS(2914), - [anon_sym_sizeof] = ACTIONS(2912), - [sym_number_literal] = ACTIONS(2914), - [anon_sym_SQUOTE] = ACTIONS(2914), - [anon_sym_DQUOTE] = ACTIONS(2914), - [sym_true] = ACTIONS(2912), - [sym_false] = ACTIONS(2912), - [sym_null] = ACTIONS(2912), - [sym_identifier] = ACTIONS(2912), - [sym_comment] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(166), + [anon_sym_COMMA] = ACTIONS(166), + [anon_sym_LPAREN2] = ACTIONS(166), + [anon_sym_STAR] = ACTIONS(168), + [anon_sym_LBRACK] = ACTIONS(166), + [anon_sym_EQ] = ACTIONS(168), + [anon_sym_COLON] = ACTIONS(2742), + [anon_sym_QMARK] = ACTIONS(166), + [anon_sym_STAR_EQ] = ACTIONS(166), + [anon_sym_SLASH_EQ] = ACTIONS(166), + [anon_sym_PERCENT_EQ] = ACTIONS(166), + [anon_sym_PLUS_EQ] = ACTIONS(166), + [anon_sym_DASH_EQ] = ACTIONS(166), + [anon_sym_LT_LT_EQ] = ACTIONS(166), + [anon_sym_GT_GT_EQ] = ACTIONS(166), + [anon_sym_AMP_EQ] = ACTIONS(166), + [anon_sym_CARET_EQ] = ACTIONS(166), + [anon_sym_PIPE_EQ] = ACTIONS(166), + [anon_sym_AMP] = ACTIONS(168), + [anon_sym_PIPE_PIPE] = ACTIONS(166), + [anon_sym_AMP_AMP] = ACTIONS(166), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_CARET] = ACTIONS(168), + [anon_sym_EQ_EQ] = ACTIONS(166), + [anon_sym_BANG_EQ] = ACTIONS(166), + [anon_sym_LT] = ACTIONS(168), + [anon_sym_GT] = ACTIONS(168), + [anon_sym_LT_EQ] = ACTIONS(166), + [anon_sym_GT_EQ] = ACTIONS(166), + [anon_sym_LT_LT] = ACTIONS(168), + [anon_sym_GT_GT] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(168), + [anon_sym_DASH] = ACTIONS(168), + [anon_sym_SLASH] = ACTIONS(168), + [anon_sym_PERCENT] = ACTIONS(168), + [anon_sym_DASH_DASH] = ACTIONS(166), + [anon_sym_PLUS_PLUS] = ACTIONS(166), + [anon_sym_DOT] = ACTIONS(166), + [anon_sym_DASH_GT] = ACTIONS(166), + [sym_comment] = ACTIONS(59), }, [1066] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2916), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2916), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2916), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2916), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2916), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2916), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2916), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2916), - [sym_preproc_directive] = ACTIONS(2916), - [anon_sym_SEMI] = ACTIONS(2918), - [anon_sym_typedef] = ACTIONS(2916), - [anon_sym_extern] = ACTIONS(2916), - [anon_sym_LBRACE] = ACTIONS(2918), - [anon_sym_LPAREN2] = ACTIONS(2918), - [anon_sym_STAR] = ACTIONS(2918), - [anon_sym_static] = ACTIONS(2916), - [anon_sym_auto] = ACTIONS(2916), - [anon_sym_register] = ACTIONS(2916), - [anon_sym_inline] = ACTIONS(2916), - [anon_sym_const] = ACTIONS(2916), - [anon_sym_restrict] = ACTIONS(2916), - [anon_sym_volatile] = ACTIONS(2916), - [anon_sym__Atomic] = ACTIONS(2916), - [anon_sym_unsigned] = ACTIONS(2916), - [anon_sym_long] = ACTIONS(2916), - [anon_sym_short] = ACTIONS(2916), - [sym_primitive_type] = ACTIONS(2916), - [anon_sym_enum] = ACTIONS(2916), - [anon_sym_struct] = ACTIONS(2916), - [anon_sym_union] = ACTIONS(2916), - [anon_sym_if] = ACTIONS(2916), - [anon_sym_switch] = ACTIONS(2916), - [anon_sym_case] = ACTIONS(2916), - [anon_sym_default] = ACTIONS(2916), - [anon_sym_while] = ACTIONS(2916), - [anon_sym_do] = ACTIONS(2916), - [anon_sym_for] = ACTIONS(2916), - [anon_sym_return] = ACTIONS(2916), - [anon_sym_break] = ACTIONS(2916), - [anon_sym_continue] = ACTIONS(2916), - [anon_sym_goto] = ACTIONS(2916), - [anon_sym_AMP] = ACTIONS(2918), - [anon_sym_BANG] = ACTIONS(2918), - [anon_sym_TILDE] = ACTIONS(2918), - [anon_sym_PLUS] = ACTIONS(2916), - [anon_sym_DASH] = ACTIONS(2916), - [anon_sym_DASH_DASH] = ACTIONS(2918), - [anon_sym_PLUS_PLUS] = ACTIONS(2918), - [anon_sym_sizeof] = ACTIONS(2916), - [sym_number_literal] = ACTIONS(2918), - [anon_sym_SQUOTE] = ACTIONS(2918), - [anon_sym_DQUOTE] = ACTIONS(2918), - [sym_true] = ACTIONS(2916), - [sym_false] = ACTIONS(2916), - [sym_null] = ACTIONS(2916), - [sym_identifier] = ACTIONS(2916), - [sym_comment] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(2575), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2577), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2577), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2577), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2577), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2577), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2577), + [sym_preproc_directive] = ACTIONS(2577), + [anon_sym_typedef] = ACTIONS(2577), + [anon_sym_extern] = ACTIONS(2577), + [anon_sym_LBRACE] = ACTIONS(2575), + [anon_sym_LPAREN2] = ACTIONS(2575), + [anon_sym_STAR] = ACTIONS(2575), + [anon_sym_static] = ACTIONS(2577), + [anon_sym_auto] = ACTIONS(2577), + [anon_sym_register] = ACTIONS(2577), + [anon_sym_inline] = ACTIONS(2577), + [anon_sym_const] = ACTIONS(2577), + [anon_sym_restrict] = ACTIONS(2577), + [anon_sym_volatile] = ACTIONS(2577), + [anon_sym__Atomic] = ACTIONS(2577), + [anon_sym_unsigned] = ACTIONS(2577), + [anon_sym_long] = ACTIONS(2577), + [anon_sym_short] = ACTIONS(2577), + [sym_primitive_type] = ACTIONS(2577), + [anon_sym_enum] = ACTIONS(2577), + [anon_sym_struct] = ACTIONS(2577), + [anon_sym_union] = ACTIONS(2577), + [anon_sym_if] = ACTIONS(2577), + [anon_sym_else] = ACTIONS(2577), + [anon_sym_switch] = ACTIONS(2577), + [anon_sym_case] = ACTIONS(2577), + [anon_sym_default] = ACTIONS(2577), + [anon_sym_while] = ACTIONS(2577), + [anon_sym_do] = ACTIONS(2577), + [anon_sym_for] = ACTIONS(2577), + [anon_sym_return] = ACTIONS(2577), + [anon_sym_break] = ACTIONS(2577), + [anon_sym_continue] = ACTIONS(2577), + [anon_sym_goto] = ACTIONS(2577), + [anon_sym_AMP] = ACTIONS(2575), + [anon_sym_BANG] = ACTIONS(2575), + [anon_sym_TILDE] = ACTIONS(2575), + [anon_sym_PLUS] = ACTIONS(2577), + [anon_sym_DASH] = ACTIONS(2577), + [anon_sym_DASH_DASH] = ACTIONS(2575), + [anon_sym_PLUS_PLUS] = ACTIONS(2575), + [anon_sym_sizeof] = ACTIONS(2577), + [sym_number_literal] = ACTIONS(2575), + [anon_sym_SQUOTE] = ACTIONS(2575), + [anon_sym_DQUOTE] = ACTIONS(2575), + [sym_true] = ACTIONS(2577), + [sym_false] = ACTIONS(2577), + [sym_null] = ACTIONS(2577), + [sym_identifier] = ACTIONS(2577), + [sym_comment] = ACTIONS(59), }, [1067] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2553), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2553), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2553), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2553), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2553), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2553), - [sym_preproc_directive] = ACTIONS(2553), - [anon_sym_SEMI] = ACTIONS(2555), - [anon_sym_typedef] = ACTIONS(2553), - [anon_sym_extern] = ACTIONS(2553), - [anon_sym_LBRACE] = ACTIONS(2555), - [anon_sym_LPAREN2] = ACTIONS(2555), - [anon_sym_STAR] = ACTIONS(2555), - [anon_sym_static] = ACTIONS(2553), - [anon_sym_auto] = ACTIONS(2553), - [anon_sym_register] = ACTIONS(2553), - [anon_sym_inline] = ACTIONS(2553), - [anon_sym_const] = ACTIONS(2553), - [anon_sym_restrict] = ACTIONS(2553), - [anon_sym_volatile] = ACTIONS(2553), - [anon_sym__Atomic] = ACTIONS(2553), - [anon_sym_unsigned] = ACTIONS(2553), - [anon_sym_long] = ACTIONS(2553), - [anon_sym_short] = ACTIONS(2553), - [sym_primitive_type] = ACTIONS(2553), - [anon_sym_enum] = ACTIONS(2553), - [anon_sym_struct] = ACTIONS(2553), - [anon_sym_union] = ACTIONS(2553), - [anon_sym_if] = ACTIONS(2553), - [anon_sym_switch] = ACTIONS(2553), - [anon_sym_case] = ACTIONS(2553), - [anon_sym_default] = ACTIONS(2553), - [anon_sym_while] = ACTIONS(2553), - [anon_sym_do] = ACTIONS(2553), - [anon_sym_for] = ACTIONS(2553), - [anon_sym_return] = ACTIONS(2553), - [anon_sym_break] = ACTIONS(2553), - [anon_sym_continue] = ACTIONS(2553), - [anon_sym_goto] = ACTIONS(2553), - [anon_sym_AMP] = ACTIONS(2555), - [anon_sym_BANG] = ACTIONS(2555), - [anon_sym_TILDE] = ACTIONS(2555), - [anon_sym_PLUS] = ACTIONS(2553), - [anon_sym_DASH] = ACTIONS(2553), - [anon_sym_DASH_DASH] = ACTIONS(2555), - [anon_sym_PLUS_PLUS] = ACTIONS(2555), - [anon_sym_sizeof] = ACTIONS(2553), - [sym_number_literal] = ACTIONS(2555), - [anon_sym_SQUOTE] = ACTIONS(2555), - [anon_sym_DQUOTE] = ACTIONS(2555), - [sym_true] = ACTIONS(2553), - [sym_false] = ACTIONS(2553), - [sym_null] = ACTIONS(2553), - [sym_identifier] = ACTIONS(2553), - [sym_comment] = ACTIONS(37), + [sym_declaration] = STATE(1125), + [sym_type_definition] = STATE(1125), + [sym__declaration_specifiers] = STATE(1070), + [sym_compound_statement] = STATE(1125), + [sym_storage_class_specifier] = STATE(142), + [sym_type_qualifier] = STATE(142), + [sym__type_specifier] = STATE(141), + [sym_sized_type_specifier] = STATE(141), + [sym_enum_specifier] = STATE(141), + [sym_struct_specifier] = STATE(141), + [sym_union_specifier] = STATE(141), + [sym_labeled_statement] = STATE(1125), + [sym_expression_statement] = STATE(1125), + [sym_if_statement] = STATE(1125), + [sym_switch_statement] = STATE(1125), + [sym_case_statement] = STATE(1125), + [sym_while_statement] = STATE(1125), + [sym_do_statement] = STATE(1125), + [sym_for_statement] = STATE(1125), + [sym_return_statement] = STATE(1125), + [sym_break_statement] = STATE(1125), + [sym_continue_statement] = STATE(1125), + [sym_goto_statement] = STATE(1125), + [sym__expression] = STATE(902), + [sym_comma_expression] = STATE(903), + [sym_conditional_expression] = STATE(902), + [sym_assignment_expression] = STATE(902), + [sym_pointer_expression] = STATE(902), + [sym_logical_expression] = STATE(902), + [sym_bitwise_expression] = STATE(902), + [sym_equality_expression] = STATE(902), + [sym_relational_expression] = STATE(902), + [sym_shift_expression] = STATE(902), + [sym_math_expression] = STATE(902), + [sym_cast_expression] = STATE(902), + [sym_sizeof_expression] = STATE(902), + [sym_subscript_expression] = STATE(902), + [sym_call_expression] = STATE(902), + [sym_field_expression] = STATE(902), + [sym_compound_literal_expression] = STATE(902), + [sym_parenthesized_expression] = STATE(902), + [sym_char_literal] = STATE(902), + [sym_concatenated_string] = STATE(902), + [sym_string_literal] = STATE(374), + [sym_macro_type_specifier] = STATE(141), + [aux_sym__declaration_specifiers_repeat1] = STATE(142), + [aux_sym_sized_type_specifier_repeat1] = STATE(143), + [anon_sym_SEMI] = ACTIONS(2481), + [anon_sym_typedef] = ACTIONS(694), + [anon_sym_extern] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(1699), + [anon_sym_LPAREN2] = ACTIONS(936), + [anon_sym_STAR] = ACTIONS(938), + [anon_sym_static] = ACTIONS(25), + [anon_sym_auto] = ACTIONS(25), + [anon_sym_register] = ACTIONS(25), + [anon_sym_inline] = ACTIONS(25), + [anon_sym_const] = ACTIONS(27), + [anon_sym_restrict] = ACTIONS(27), + [anon_sym_volatile] = ACTIONS(27), + [anon_sym__Atomic] = ACTIONS(27), + [anon_sym_unsigned] = ACTIONS(294), + [anon_sym_long] = ACTIONS(294), + [anon_sym_short] = ACTIONS(294), + [sym_primitive_type] = ACTIONS(296), + [anon_sym_enum] = ACTIONS(33), + [anon_sym_struct] = ACTIONS(35), + [anon_sym_union] = ACTIONS(37), + [anon_sym_if] = ACTIONS(2489), + [anon_sym_switch] = ACTIONS(2491), + [anon_sym_case] = ACTIONS(2493), + [anon_sym_default] = ACTIONS(2495), + [anon_sym_while] = ACTIONS(2497), + [anon_sym_do] = ACTIONS(2499), + [anon_sym_for] = ACTIONS(2501), + [anon_sym_return] = ACTIONS(2503), + [anon_sym_break] = ACTIONS(2505), + [anon_sym_continue] = ACTIONS(2507), + [anon_sym_goto] = ACTIONS(2509), + [anon_sym_AMP] = ACTIONS(938), + [anon_sym_BANG] = ACTIONS(962), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_DASH_DASH] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(968), + [anon_sym_sizeof] = ACTIONS(970), + [sym_number_literal] = ACTIONS(2511), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(2513), + [sym_false] = ACTIONS(2513), + [sym_null] = ACTIONS(2513), + [sym_identifier] = ACTIONS(2982), + [sym_comment] = ACTIONS(59), }, [1068] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3097), - [sym_comment] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(166), + [anon_sym_COMMA] = ACTIONS(166), + [anon_sym_extern] = ACTIONS(157), + [anon_sym_LPAREN2] = ACTIONS(159), + [anon_sym_STAR] = ACTIONS(163), + [anon_sym_LBRACK] = ACTIONS(166), + [anon_sym_EQ] = ACTIONS(168), + [anon_sym_static] = ACTIONS(157), + [anon_sym_auto] = ACTIONS(157), + [anon_sym_register] = ACTIONS(157), + [anon_sym_inline] = ACTIONS(157), + [anon_sym_const] = ACTIONS(157), + [anon_sym_restrict] = ACTIONS(157), + [anon_sym_volatile] = ACTIONS(157), + [anon_sym__Atomic] = ACTIONS(157), + [anon_sym_COLON] = ACTIONS(2742), + [anon_sym_QMARK] = ACTIONS(166), + [anon_sym_STAR_EQ] = ACTIONS(166), + [anon_sym_SLASH_EQ] = ACTIONS(166), + [anon_sym_PERCENT_EQ] = ACTIONS(166), + [anon_sym_PLUS_EQ] = ACTIONS(166), + [anon_sym_DASH_EQ] = ACTIONS(166), + [anon_sym_LT_LT_EQ] = ACTIONS(166), + [anon_sym_GT_GT_EQ] = ACTIONS(166), + [anon_sym_AMP_EQ] = ACTIONS(166), + [anon_sym_CARET_EQ] = ACTIONS(166), + [anon_sym_PIPE_EQ] = ACTIONS(166), + [anon_sym_AMP] = ACTIONS(168), + [anon_sym_PIPE_PIPE] = ACTIONS(166), + [anon_sym_AMP_AMP] = ACTIONS(166), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_CARET] = ACTIONS(168), + [anon_sym_EQ_EQ] = ACTIONS(166), + [anon_sym_BANG_EQ] = ACTIONS(166), + [anon_sym_LT] = ACTIONS(168), + [anon_sym_GT] = ACTIONS(168), + [anon_sym_LT_EQ] = ACTIONS(166), + [anon_sym_GT_EQ] = ACTIONS(166), + [anon_sym_LT_LT] = ACTIONS(168), + [anon_sym_GT_GT] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(168), + [anon_sym_DASH] = ACTIONS(168), + [anon_sym_SLASH] = ACTIONS(168), + [anon_sym_PERCENT] = ACTIONS(168), + [anon_sym_DASH_DASH] = ACTIONS(166), + [anon_sym_PLUS_PLUS] = ACTIONS(166), + [anon_sym_DOT] = ACTIONS(166), + [anon_sym_DASH_GT] = ACTIONS(166), + [sym_identifier] = ACTIONS(157), + [sym_comment] = ACTIONS(59), }, [1069] = { + [anon_sym_SEMI] = ACTIONS(2579), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2581), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2581), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2581), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2581), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2581), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2581), + [sym_preproc_directive] = ACTIONS(2581), + [anon_sym_typedef] = ACTIONS(2581), + [anon_sym_extern] = ACTIONS(2581), + [anon_sym_LBRACE] = ACTIONS(2579), + [anon_sym_LPAREN2] = ACTIONS(2579), + [anon_sym_STAR] = ACTIONS(2579), + [anon_sym_static] = ACTIONS(2581), + [anon_sym_auto] = ACTIONS(2581), + [anon_sym_register] = ACTIONS(2581), + [anon_sym_inline] = ACTIONS(2581), + [anon_sym_const] = ACTIONS(2581), + [anon_sym_restrict] = ACTIONS(2581), + [anon_sym_volatile] = ACTIONS(2581), + [anon_sym__Atomic] = ACTIONS(2581), + [anon_sym_unsigned] = ACTIONS(2581), + [anon_sym_long] = ACTIONS(2581), + [anon_sym_short] = ACTIONS(2581), + [sym_primitive_type] = ACTIONS(2581), + [anon_sym_enum] = ACTIONS(2581), + [anon_sym_struct] = ACTIONS(2581), + [anon_sym_union] = ACTIONS(2581), + [anon_sym_if] = ACTIONS(2581), + [anon_sym_else] = ACTIONS(2581), + [anon_sym_switch] = ACTIONS(2581), + [anon_sym_case] = ACTIONS(2581), + [anon_sym_default] = ACTIONS(2581), + [anon_sym_while] = ACTIONS(2581), + [anon_sym_do] = ACTIONS(2581), + [anon_sym_for] = ACTIONS(2581), + [anon_sym_return] = ACTIONS(2581), + [anon_sym_break] = ACTIONS(2581), + [anon_sym_continue] = ACTIONS(2581), + [anon_sym_goto] = ACTIONS(2581), + [anon_sym_AMP] = ACTIONS(2579), + [anon_sym_BANG] = ACTIONS(2579), + [anon_sym_TILDE] = ACTIONS(2579), + [anon_sym_PLUS] = ACTIONS(2581), + [anon_sym_DASH] = ACTIONS(2581), + [anon_sym_DASH_DASH] = ACTIONS(2579), + [anon_sym_PLUS_PLUS] = ACTIONS(2579), + [anon_sym_sizeof] = ACTIONS(2581), + [sym_number_literal] = ACTIONS(2579), + [anon_sym_SQUOTE] = ACTIONS(2579), + [anon_sym_DQUOTE] = ACTIONS(2579), + [sym_true] = ACTIONS(2581), + [sym_false] = ACTIONS(2581), + [sym_null] = ACTIONS(2581), + [sym_identifier] = ACTIONS(2581), + [sym_comment] = ACTIONS(59), + }, + [1070] = { + [sym__declarator] = STATE(994), + [sym_pointer_declarator] = STATE(994), + [sym_function_declarator] = STATE(994), + [sym_array_declarator] = STATE(994), + [sym_init_declarator] = STATE(447), + [anon_sym_LPAREN2] = ACTIONS(174), + [anon_sym_STAR] = ACTIONS(924), + [sym_identifier] = ACTIONS(2744), + [sym_comment] = ACTIONS(59), + }, + [1071] = { + [anon_sym_SEMI] = ACTIONS(2583), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2585), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2585), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2585), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2585), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2585), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2585), + [sym_preproc_directive] = ACTIONS(2585), + [anon_sym_typedef] = ACTIONS(2585), + [anon_sym_extern] = ACTIONS(2585), + [anon_sym_LBRACE] = ACTIONS(2583), + [anon_sym_LPAREN2] = ACTIONS(2583), + [anon_sym_STAR] = ACTIONS(2583), + [anon_sym_static] = ACTIONS(2585), + [anon_sym_auto] = ACTIONS(2585), + [anon_sym_register] = ACTIONS(2585), + [anon_sym_inline] = ACTIONS(2585), + [anon_sym_const] = ACTIONS(2585), + [anon_sym_restrict] = ACTIONS(2585), + [anon_sym_volatile] = ACTIONS(2585), + [anon_sym__Atomic] = ACTIONS(2585), + [anon_sym_unsigned] = ACTIONS(2585), + [anon_sym_long] = ACTIONS(2585), + [anon_sym_short] = ACTIONS(2585), + [sym_primitive_type] = ACTIONS(2585), + [anon_sym_enum] = ACTIONS(2585), + [anon_sym_struct] = ACTIONS(2585), + [anon_sym_union] = ACTIONS(2585), + [anon_sym_if] = ACTIONS(2585), + [anon_sym_else] = ACTIONS(2585), + [anon_sym_switch] = ACTIONS(2585), + [anon_sym_case] = ACTIONS(2585), + [anon_sym_default] = ACTIONS(2585), + [anon_sym_while] = ACTIONS(2585), + [anon_sym_do] = ACTIONS(2585), + [anon_sym_for] = ACTIONS(2585), + [anon_sym_return] = ACTIONS(2585), + [anon_sym_break] = ACTIONS(2585), + [anon_sym_continue] = ACTIONS(2585), + [anon_sym_goto] = ACTIONS(2585), + [anon_sym_AMP] = ACTIONS(2583), + [anon_sym_BANG] = ACTIONS(2583), + [anon_sym_TILDE] = ACTIONS(2583), + [anon_sym_PLUS] = ACTIONS(2585), + [anon_sym_DASH] = ACTIONS(2585), + [anon_sym_DASH_DASH] = ACTIONS(2583), + [anon_sym_PLUS_PLUS] = ACTIONS(2583), + [anon_sym_sizeof] = ACTIONS(2585), + [sym_number_literal] = ACTIONS(2583), + [anon_sym_SQUOTE] = ACTIONS(2583), + [anon_sym_DQUOTE] = ACTIONS(2583), + [sym_true] = ACTIONS(2585), + [sym_false] = ACTIONS(2585), + [sym_null] = ACTIONS(2585), + [sym_identifier] = ACTIONS(2585), + [sym_comment] = ACTIONS(59), + }, + [1072] = { + [sym_parenthesized_expression] = STATE(1127), + [anon_sym_LPAREN2] = ACTIONS(3164), + [sym_comment] = ACTIONS(59), + }, + [1073] = { + [sym__expression] = STATE(1129), + [sym_conditional_expression] = STATE(1129), + [sym_assignment_expression] = STATE(1129), + [sym_pointer_expression] = STATE(1129), + [sym_logical_expression] = STATE(1129), + [sym_bitwise_expression] = STATE(1129), + [sym_equality_expression] = STATE(1129), + [sym_relational_expression] = STATE(1129), + [sym_shift_expression] = STATE(1129), + [sym_math_expression] = STATE(1129), + [sym_cast_expression] = STATE(1129), + [sym_sizeof_expression] = STATE(1129), + [sym_subscript_expression] = STATE(1129), + [sym_call_expression] = STATE(1129), + [sym_field_expression] = STATE(1129), + [sym_compound_literal_expression] = STATE(1129), + [sym_parenthesized_expression] = STATE(1129), + [sym_char_literal] = STATE(1129), + [sym_concatenated_string] = STATE(1129), + [sym_string_literal] = STATE(534), + [anon_sym_SEMI] = ACTIONS(3166), + [anon_sym_LPAREN2] = ACTIONS(1349), + [anon_sym_STAR] = ACTIONS(1351), + [anon_sym_AMP] = ACTIONS(1351), + [anon_sym_BANG] = ACTIONS(1353), + [anon_sym_TILDE] = ACTIONS(1355), + [anon_sym_PLUS] = ACTIONS(1357), + [anon_sym_DASH] = ACTIONS(1357), + [anon_sym_DASH_DASH] = ACTIONS(1359), + [anon_sym_PLUS_PLUS] = ACTIONS(1359), + [anon_sym_sizeof] = ACTIONS(1361), + [sym_number_literal] = ACTIONS(3168), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(3170), + [sym_false] = ACTIONS(3170), + [sym_null] = ACTIONS(3170), + [sym_identifier] = ACTIONS(3170), + [sym_comment] = ACTIONS(59), + }, + [1074] = { + [sym_argument_list] = STATE(98), + [anon_sym_SEMI] = ACTIONS(3172), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_LBRACK] = ACTIONS(188), + [anon_sym_EQ] = ACTIONS(1896), + [anon_sym_QMARK] = ACTIONS(1898), + [anon_sym_STAR_EQ] = ACTIONS(1900), + [anon_sym_SLASH_EQ] = ACTIONS(1900), + [anon_sym_PERCENT_EQ] = ACTIONS(1900), + [anon_sym_PLUS_EQ] = ACTIONS(1900), + [anon_sym_DASH_EQ] = ACTIONS(1900), + [anon_sym_LT_LT_EQ] = ACTIONS(1900), + [anon_sym_GT_GT_EQ] = ACTIONS(1900), + [anon_sym_AMP_EQ] = ACTIONS(1900), + [anon_sym_CARET_EQ] = ACTIONS(1900), + [anon_sym_PIPE_EQ] = ACTIONS(1900), + [anon_sym_AMP] = ACTIONS(1902), + [anon_sym_PIPE_PIPE] = ACTIONS(1904), + [anon_sym_AMP_AMP] = ACTIONS(1906), + [anon_sym_PIPE] = ACTIONS(1908), + [anon_sym_CARET] = ACTIONS(1910), + [anon_sym_EQ_EQ] = ACTIONS(1912), + [anon_sym_BANG_EQ] = ACTIONS(1912), + [anon_sym_LT] = ACTIONS(1914), + [anon_sym_GT] = ACTIONS(1914), + [anon_sym_LT_EQ] = ACTIONS(1916), + [anon_sym_GT_EQ] = ACTIONS(1916), + [anon_sym_LT_LT] = ACTIONS(1918), + [anon_sym_GT_GT] = ACTIONS(1918), + [anon_sym_PLUS] = ACTIONS(1920), + [anon_sym_DASH] = ACTIONS(1920), + [anon_sym_SLASH] = ACTIONS(1894), + [anon_sym_PERCENT] = ACTIONS(1894), + [anon_sym_DASH_DASH] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(216), + [anon_sym_DOT] = ACTIONS(218), + [anon_sym_DASH_GT] = ACTIONS(218), + [sym_comment] = ACTIONS(59), + }, + [1075] = { + [anon_sym_SEMI] = ACTIONS(2621), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2623), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2623), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2623), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2623), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2623), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2623), + [sym_preproc_directive] = ACTIONS(2623), + [anon_sym_typedef] = ACTIONS(2623), + [anon_sym_extern] = ACTIONS(2623), + [anon_sym_LBRACE] = ACTIONS(2621), + [anon_sym_LPAREN2] = ACTIONS(2621), + [anon_sym_STAR] = ACTIONS(2621), + [anon_sym_static] = ACTIONS(2623), + [anon_sym_auto] = ACTIONS(2623), + [anon_sym_register] = ACTIONS(2623), + [anon_sym_inline] = ACTIONS(2623), + [anon_sym_const] = ACTIONS(2623), + [anon_sym_restrict] = ACTIONS(2623), + [anon_sym_volatile] = ACTIONS(2623), + [anon_sym__Atomic] = ACTIONS(2623), + [anon_sym_unsigned] = ACTIONS(2623), + [anon_sym_long] = ACTIONS(2623), + [anon_sym_short] = ACTIONS(2623), + [sym_primitive_type] = ACTIONS(2623), + [anon_sym_enum] = ACTIONS(2623), + [anon_sym_struct] = ACTIONS(2623), + [anon_sym_union] = ACTIONS(2623), + [anon_sym_if] = ACTIONS(2623), + [anon_sym_else] = ACTIONS(2623), + [anon_sym_switch] = ACTIONS(2623), + [anon_sym_case] = ACTIONS(2623), + [anon_sym_default] = ACTIONS(2623), + [anon_sym_while] = ACTIONS(2623), + [anon_sym_do] = ACTIONS(2623), + [anon_sym_for] = ACTIONS(2623), + [anon_sym_return] = ACTIONS(2623), + [anon_sym_break] = ACTIONS(2623), + [anon_sym_continue] = ACTIONS(2623), + [anon_sym_goto] = ACTIONS(2623), + [anon_sym_AMP] = ACTIONS(2621), + [anon_sym_BANG] = ACTIONS(2621), + [anon_sym_TILDE] = ACTIONS(2621), + [anon_sym_PLUS] = ACTIONS(2623), + [anon_sym_DASH] = ACTIONS(2623), + [anon_sym_DASH_DASH] = ACTIONS(2621), + [anon_sym_PLUS_PLUS] = ACTIONS(2621), + [anon_sym_sizeof] = ACTIONS(2623), + [sym_number_literal] = ACTIONS(2621), + [anon_sym_SQUOTE] = ACTIONS(2621), + [anon_sym_DQUOTE] = ACTIONS(2621), + [sym_true] = ACTIONS(2623), + [sym_false] = ACTIONS(2623), + [sym_null] = ACTIONS(2623), + [sym_identifier] = ACTIONS(2623), + [sym_comment] = ACTIONS(59), + }, + [1076] = { + [anon_sym_SEMI] = ACTIONS(2625), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2627), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2627), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2627), @@ -43384,12 +44843,11 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2627), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2627), [sym_preproc_directive] = ACTIONS(2627), - [anon_sym_SEMI] = ACTIONS(2629), [anon_sym_typedef] = ACTIONS(2627), [anon_sym_extern] = ACTIONS(2627), - [anon_sym_LBRACE] = ACTIONS(2629), - [anon_sym_LPAREN2] = ACTIONS(2629), - [anon_sym_STAR] = ACTIONS(2629), + [anon_sym_LBRACE] = ACTIONS(2625), + [anon_sym_LPAREN2] = ACTIONS(2625), + [anon_sym_STAR] = ACTIONS(2625), [anon_sym_static] = ACTIONS(2627), [anon_sym_auto] = ACTIONS(2627), [anon_sym_register] = ACTIONS(2627), @@ -43406,6 +44864,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(2627), [anon_sym_union] = ACTIONS(2627), [anon_sym_if] = ACTIONS(2627), + [anon_sym_else] = ACTIONS(2627), [anon_sym_switch] = ACTIONS(2627), [anon_sym_case] = ACTIONS(2627), [anon_sym_default] = ACTIONS(2627), @@ -43416,1357 +44875,434 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(2627), [anon_sym_continue] = ACTIONS(2627), [anon_sym_goto] = ACTIONS(2627), - [anon_sym_AMP] = ACTIONS(2629), - [anon_sym_BANG] = ACTIONS(2629), - [anon_sym_TILDE] = ACTIONS(2629), + [anon_sym_AMP] = ACTIONS(2625), + [anon_sym_BANG] = ACTIONS(2625), + [anon_sym_TILDE] = ACTIONS(2625), [anon_sym_PLUS] = ACTIONS(2627), [anon_sym_DASH] = ACTIONS(2627), - [anon_sym_DASH_DASH] = ACTIONS(2629), - [anon_sym_PLUS_PLUS] = ACTIONS(2629), + [anon_sym_DASH_DASH] = ACTIONS(2625), + [anon_sym_PLUS_PLUS] = ACTIONS(2625), [anon_sym_sizeof] = ACTIONS(2627), - [sym_number_literal] = ACTIONS(2629), - [anon_sym_SQUOTE] = ACTIONS(2629), - [anon_sym_DQUOTE] = ACTIONS(2629), + [sym_number_literal] = ACTIONS(2625), + [anon_sym_SQUOTE] = ACTIONS(2625), + [anon_sym_DQUOTE] = ACTIONS(2625), [sym_true] = ACTIONS(2627), [sym_false] = ACTIONS(2627), [sym_null] = ACTIONS(2627), [sym_identifier] = ACTIONS(2627), - [sym_comment] = ACTIONS(37), - }, - [1070] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3099), - [sym_comment] = ACTIONS(37), - }, - [1071] = { - [sym_compound_statement] = STATE(1115), - [sym_labeled_statement] = STATE(1115), - [sym_expression_statement] = STATE(1115), - [sym_if_statement] = STATE(1115), - [sym_switch_statement] = STATE(1115), - [sym_case_statement] = STATE(1115), - [sym_while_statement] = STATE(1115), - [sym_do_statement] = STATE(1115), - [sym_for_statement] = STATE(1115), - [sym_return_statement] = STATE(1115), - [sym_break_statement] = STATE(1115), - [sym_continue_statement] = STATE(1115), - [sym_goto_statement] = STATE(1115), - [sym__expression] = STATE(800), - [sym_comma_expression] = STATE(801), - [sym_conditional_expression] = STATE(800), - [sym_assignment_expression] = STATE(800), - [sym_pointer_expression] = STATE(800), - [sym_logical_expression] = STATE(800), - [sym_bitwise_expression] = STATE(800), - [sym_equality_expression] = STATE(800), - [sym_relational_expression] = STATE(800), - [sym_shift_expression] = STATE(800), - [sym_math_expression] = STATE(800), - [sym_cast_expression] = STATE(800), - [sym_sizeof_expression] = STATE(800), - [sym_subscript_expression] = STATE(800), - [sym_call_expression] = STATE(800), - [sym_field_expression] = STATE(800), - [sym_compound_literal_expression] = STATE(800), - [sym_parenthesized_expression] = STATE(800), - [sym_char_literal] = STATE(800), - [sym_concatenated_string] = STATE(800), - [sym_string_literal] = STATE(230), - [anon_sym_SEMI] = ACTIONS(2082), - [anon_sym_LBRACE] = ACTIONS(1181), - [anon_sym_LPAREN2] = ACTIONS(507), - [anon_sym_STAR] = ACTIONS(509), - [anon_sym_if] = ACTIONS(2788), - [anon_sym_switch] = ACTIONS(2790), - [anon_sym_case] = ACTIONS(2792), - [anon_sym_default] = ACTIONS(2794), - [anon_sym_while] = ACTIONS(2796), - [anon_sym_do] = ACTIONS(2094), - [anon_sym_for] = ACTIONS(2798), - [anon_sym_return] = ACTIONS(2098), - [anon_sym_break] = ACTIONS(2100), - [anon_sym_continue] = ACTIONS(2102), - [anon_sym_goto] = ACTIONS(2104), - [anon_sym_AMP] = ACTIONS(509), - [anon_sym_BANG] = ACTIONS(533), - [anon_sym_TILDE] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DASH] = ACTIONS(537), - [anon_sym_DASH_DASH] = ACTIONS(539), - [anon_sym_PLUS_PLUS] = ACTIONS(539), - [anon_sym_sizeof] = ACTIONS(541), - [sym_number_literal] = ACTIONS(2106), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(2108), - [sym_false] = ACTIONS(2108), - [sym_null] = ACTIONS(2108), - [sym_identifier] = ACTIONS(2800), - [sym_comment] = ACTIONS(37), - }, - [1072] = { - [sym_compound_statement] = STATE(1018), - [sym_labeled_statement] = STATE(1018), - [sym_expression_statement] = STATE(1018), - [sym_if_statement] = STATE(1018), - [sym_switch_statement] = STATE(1018), - [sym_case_statement] = STATE(1018), - [sym_while_statement] = STATE(1018), - [sym_do_statement] = STATE(1018), - [sym_for_statement] = STATE(1018), - [sym_return_statement] = STATE(1018), - [sym_break_statement] = STATE(1018), - [sym_continue_statement] = STATE(1018), - [sym_goto_statement] = STATE(1018), - [sym__expression] = STATE(800), - [sym_comma_expression] = STATE(801), - [sym_conditional_expression] = STATE(800), - [sym_assignment_expression] = STATE(800), - [sym_pointer_expression] = STATE(800), - [sym_logical_expression] = STATE(800), - [sym_bitwise_expression] = STATE(800), - [sym_equality_expression] = STATE(800), - [sym_relational_expression] = STATE(800), - [sym_shift_expression] = STATE(800), - [sym_math_expression] = STATE(800), - [sym_cast_expression] = STATE(800), - [sym_sizeof_expression] = STATE(800), - [sym_subscript_expression] = STATE(800), - [sym_call_expression] = STATE(800), - [sym_field_expression] = STATE(800), - [sym_compound_literal_expression] = STATE(800), - [sym_parenthesized_expression] = STATE(800), - [sym_char_literal] = STATE(800), - [sym_concatenated_string] = STATE(800), - [sym_string_literal] = STATE(230), - [anon_sym_SEMI] = ACTIONS(2082), - [anon_sym_LBRACE] = ACTIONS(1181), - [anon_sym_LPAREN2] = ACTIONS(507), - [anon_sym_STAR] = ACTIONS(509), - [anon_sym_if] = ACTIONS(2788), - [anon_sym_switch] = ACTIONS(2790), - [anon_sym_case] = ACTIONS(2792), - [anon_sym_default] = ACTIONS(2794), - [anon_sym_while] = ACTIONS(2796), - [anon_sym_do] = ACTIONS(2094), - [anon_sym_for] = ACTIONS(2798), - [anon_sym_return] = ACTIONS(2098), - [anon_sym_break] = ACTIONS(2100), - [anon_sym_continue] = ACTIONS(2102), - [anon_sym_goto] = ACTIONS(2104), - [anon_sym_AMP] = ACTIONS(509), - [anon_sym_BANG] = ACTIONS(533), - [anon_sym_TILDE] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DASH] = ACTIONS(537), - [anon_sym_DASH_DASH] = ACTIONS(539), - [anon_sym_PLUS_PLUS] = ACTIONS(539), - [anon_sym_sizeof] = ACTIONS(541), - [sym_number_literal] = ACTIONS(2106), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(2108), - [sym_false] = ACTIONS(2108), - [sym_null] = ACTIONS(2108), - [sym_identifier] = ACTIONS(2800), - [sym_comment] = ACTIONS(37), - }, - [1073] = { - [sym_argument_list] = STATE(430), - [anon_sym_LPAREN2] = ACTIONS(1012), - [anon_sym_STAR] = ACTIONS(1497), - [anon_sym_LBRACK] = ACTIONS(1016), - [anon_sym_EQ] = ACTIONS(1499), - [anon_sym_COLON] = ACTIONS(3101), - [anon_sym_QMARK] = ACTIONS(1503), - [anon_sym_STAR_EQ] = ACTIONS(1505), - [anon_sym_SLASH_EQ] = ACTIONS(1505), - [anon_sym_PERCENT_EQ] = ACTIONS(1505), - [anon_sym_PLUS_EQ] = ACTIONS(1505), - [anon_sym_DASH_EQ] = ACTIONS(1505), - [anon_sym_LT_LT_EQ] = ACTIONS(1505), - [anon_sym_GT_GT_EQ] = ACTIONS(1505), - [anon_sym_AMP_EQ] = ACTIONS(1505), - [anon_sym_CARET_EQ] = ACTIONS(1505), - [anon_sym_PIPE_EQ] = ACTIONS(1505), - [anon_sym_AMP] = ACTIONS(1507), - [anon_sym_PIPE_PIPE] = ACTIONS(1509), - [anon_sym_AMP_AMP] = ACTIONS(1511), - [anon_sym_PIPE] = ACTIONS(1513), - [anon_sym_CARET] = ACTIONS(1515), - [anon_sym_EQ_EQ] = ACTIONS(1517), - [anon_sym_BANG_EQ] = ACTIONS(1517), - [anon_sym_LT] = ACTIONS(1519), - [anon_sym_GT] = ACTIONS(1519), - [anon_sym_LT_EQ] = ACTIONS(1521), - [anon_sym_GT_EQ] = ACTIONS(1521), - [anon_sym_LT_LT] = ACTIONS(1523), - [anon_sym_GT_GT] = ACTIONS(1523), - [anon_sym_PLUS] = ACTIONS(1525), - [anon_sym_DASH] = ACTIONS(1525), - [anon_sym_SLASH] = ACTIONS(1497), - [anon_sym_PERCENT] = ACTIONS(1497), - [anon_sym_DASH_DASH] = ACTIONS(1044), - [anon_sym_PLUS_PLUS] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1046), - [anon_sym_DASH_GT] = ACTIONS(1046), - [sym_comment] = ACTIONS(37), - }, - [1074] = { - [sym_declaration] = STATE(1021), - [sym_type_definition] = STATE(1021), - [sym__declaration_specifiers] = STATE(1022), - [sym_compound_statement] = STATE(1021), - [sym_storage_class_specifier] = STATE(87), - [sym_type_qualifier] = STATE(87), - [sym__type_specifier] = STATE(86), - [sym_sized_type_specifier] = STATE(86), - [sym_enum_specifier] = STATE(86), - [sym_struct_specifier] = STATE(86), - [sym_union_specifier] = STATE(86), - [sym_labeled_statement] = STATE(1021), - [sym_expression_statement] = STATE(1021), - [sym_if_statement] = STATE(1021), - [sym_switch_statement] = STATE(1021), - [sym_case_statement] = STATE(1021), - [sym_while_statement] = STATE(1021), - [sym_do_statement] = STATE(1021), - [sym_for_statement] = STATE(1021), - [sym_return_statement] = STATE(1021), - [sym_break_statement] = STATE(1021), - [sym_continue_statement] = STATE(1021), - [sym_goto_statement] = STATE(1021), - [sym__expression] = STATE(800), - [sym_comma_expression] = STATE(801), - [sym_conditional_expression] = STATE(800), - [sym_assignment_expression] = STATE(800), - [sym_pointer_expression] = STATE(800), - [sym_logical_expression] = STATE(800), - [sym_bitwise_expression] = STATE(800), - [sym_equality_expression] = STATE(800), - [sym_relational_expression] = STATE(800), - [sym_shift_expression] = STATE(800), - [sym_math_expression] = STATE(800), - [sym_cast_expression] = STATE(800), - [sym_sizeof_expression] = STATE(800), - [sym_subscript_expression] = STATE(800), - [sym_call_expression] = STATE(800), - [sym_field_expression] = STATE(800), - [sym_compound_literal_expression] = STATE(800), - [sym_parenthesized_expression] = STATE(800), - [sym_char_literal] = STATE(800), - [sym_concatenated_string] = STATE(800), - [sym_string_literal] = STATE(230), - [sym_macro_type_specifier] = STATE(86), - [aux_sym__declaration_specifiers_repeat1] = STATE(87), - [aux_sym_sized_type_specifier_repeat1] = STATE(88), - [anon_sym_SEMI] = ACTIONS(2082), - [anon_sym_typedef] = ACTIONS(359), - [anon_sym_extern] = ACTIONS(21), - [anon_sym_LBRACE] = ACTIONS(1181), - [anon_sym_LPAREN2] = ACTIONS(507), - [anon_sym_STAR] = ACTIONS(509), - [anon_sym_static] = ACTIONS(21), - [anon_sym_auto] = ACTIONS(21), - [anon_sym_register] = ACTIONS(21), - [anon_sym_inline] = ACTIONS(21), - [anon_sym_const] = ACTIONS(23), - [anon_sym_restrict] = ACTIONS(23), - [anon_sym_volatile] = ACTIONS(23), - [anon_sym__Atomic] = ACTIONS(23), - [anon_sym_unsigned] = ACTIONS(167), - [anon_sym_long] = ACTIONS(167), - [anon_sym_short] = ACTIONS(167), - [sym_primitive_type] = ACTIONS(169), - [anon_sym_enum] = ACTIONS(29), - [anon_sym_struct] = ACTIONS(31), - [anon_sym_union] = ACTIONS(33), - [anon_sym_if] = ACTIONS(2788), - [anon_sym_switch] = ACTIONS(2790), - [anon_sym_case] = ACTIONS(2792), - [anon_sym_default] = ACTIONS(2794), - [anon_sym_while] = ACTIONS(2796), - [anon_sym_do] = ACTIONS(2094), - [anon_sym_for] = ACTIONS(2798), - [anon_sym_return] = ACTIONS(2098), - [anon_sym_break] = ACTIONS(2100), - [anon_sym_continue] = ACTIONS(2102), - [anon_sym_goto] = ACTIONS(2104), - [anon_sym_AMP] = ACTIONS(509), - [anon_sym_BANG] = ACTIONS(533), - [anon_sym_TILDE] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DASH] = ACTIONS(537), - [anon_sym_DASH_DASH] = ACTIONS(539), - [anon_sym_PLUS_PLUS] = ACTIONS(539), - [anon_sym_sizeof] = ACTIONS(541), - [sym_number_literal] = ACTIONS(2106), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(2108), - [sym_false] = ACTIONS(2108), - [sym_null] = ACTIONS(2108), - [sym_identifier] = ACTIONS(3103), - [sym_comment] = ACTIONS(37), - }, - [1075] = { - [sym_compound_statement] = STATE(1023), - [sym_labeled_statement] = STATE(1023), - [sym_expression_statement] = STATE(1023), - [sym_if_statement] = STATE(1023), - [sym_switch_statement] = STATE(1023), - [sym_case_statement] = STATE(1023), - [sym_while_statement] = STATE(1023), - [sym_do_statement] = STATE(1023), - [sym_for_statement] = STATE(1023), - [sym_return_statement] = STATE(1023), - [sym_break_statement] = STATE(1023), - [sym_continue_statement] = STATE(1023), - [sym_goto_statement] = STATE(1023), - [sym__expression] = STATE(800), - [sym_comma_expression] = STATE(801), - [sym_conditional_expression] = STATE(800), - [sym_assignment_expression] = STATE(800), - [sym_pointer_expression] = STATE(800), - [sym_logical_expression] = STATE(800), - [sym_bitwise_expression] = STATE(800), - [sym_equality_expression] = STATE(800), - [sym_relational_expression] = STATE(800), - [sym_shift_expression] = STATE(800), - [sym_math_expression] = STATE(800), - [sym_cast_expression] = STATE(800), - [sym_sizeof_expression] = STATE(800), - [sym_subscript_expression] = STATE(800), - [sym_call_expression] = STATE(800), - [sym_field_expression] = STATE(800), - [sym_compound_literal_expression] = STATE(800), - [sym_parenthesized_expression] = STATE(800), - [sym_char_literal] = STATE(800), - [sym_concatenated_string] = STATE(800), - [sym_string_literal] = STATE(230), - [anon_sym_SEMI] = ACTIONS(2082), - [anon_sym_LBRACE] = ACTIONS(1181), - [anon_sym_LPAREN2] = ACTIONS(507), - [anon_sym_STAR] = ACTIONS(509), - [anon_sym_if] = ACTIONS(2788), - [anon_sym_switch] = ACTIONS(2790), - [anon_sym_case] = ACTIONS(2792), - [anon_sym_default] = ACTIONS(2794), - [anon_sym_while] = ACTIONS(2796), - [anon_sym_do] = ACTIONS(2094), - [anon_sym_for] = ACTIONS(2798), - [anon_sym_return] = ACTIONS(2098), - [anon_sym_break] = ACTIONS(2100), - [anon_sym_continue] = ACTIONS(2102), - [anon_sym_goto] = ACTIONS(2104), - [anon_sym_AMP] = ACTIONS(509), - [anon_sym_BANG] = ACTIONS(533), - [anon_sym_TILDE] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DASH] = ACTIONS(537), - [anon_sym_DASH_DASH] = ACTIONS(539), - [anon_sym_PLUS_PLUS] = ACTIONS(539), - [anon_sym_sizeof] = ACTIONS(541), - [sym_number_literal] = ACTIONS(2106), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(2108), - [sym_false] = ACTIONS(2108), - [sym_null] = ACTIONS(2108), - [sym_identifier] = ACTIONS(2800), - [sym_comment] = ACTIONS(37), - }, - [1076] = { - [sym_declaration] = STATE(1118), - [sym__declaration_specifiers] = STATE(650), - [sym_storage_class_specifier] = STATE(87), - [sym_type_qualifier] = STATE(87), - [sym__type_specifier] = STATE(86), - [sym_sized_type_specifier] = STATE(86), - [sym_enum_specifier] = STATE(86), - [sym_struct_specifier] = STATE(86), - [sym_union_specifier] = STATE(86), - [sym__expression] = STATE(1119), - [sym_conditional_expression] = STATE(1119), - [sym_assignment_expression] = STATE(1119), - [sym_pointer_expression] = STATE(1119), - [sym_logical_expression] = STATE(1119), - [sym_bitwise_expression] = STATE(1119), - [sym_equality_expression] = STATE(1119), - [sym_relational_expression] = STATE(1119), - [sym_shift_expression] = STATE(1119), - [sym_math_expression] = STATE(1119), - [sym_cast_expression] = STATE(1119), - [sym_sizeof_expression] = STATE(1119), - [sym_subscript_expression] = STATE(1119), - [sym_call_expression] = STATE(1119), - [sym_field_expression] = STATE(1119), - [sym_compound_literal_expression] = STATE(1119), - [sym_parenthesized_expression] = STATE(1119), - [sym_char_literal] = STATE(1119), - [sym_concatenated_string] = STATE(1119), - [sym_string_literal] = STATE(342), - [sym_macro_type_specifier] = STATE(86), - [aux_sym__declaration_specifiers_repeat1] = STATE(87), - [aux_sym_sized_type_specifier_repeat1] = STATE(88), - [anon_sym_SEMI] = ACTIONS(3105), - [anon_sym_extern] = ACTIONS(21), - [anon_sym_LPAREN2] = ACTIONS(780), - [anon_sym_STAR] = ACTIONS(782), - [anon_sym_static] = ACTIONS(21), - [anon_sym_auto] = ACTIONS(21), - [anon_sym_register] = ACTIONS(21), - [anon_sym_inline] = ACTIONS(21), - [anon_sym_const] = ACTIONS(23), - [anon_sym_restrict] = ACTIONS(23), - [anon_sym_volatile] = ACTIONS(23), - [anon_sym__Atomic] = ACTIONS(23), - [anon_sym_unsigned] = ACTIONS(167), - [anon_sym_long] = ACTIONS(167), - [anon_sym_short] = ACTIONS(167), - [sym_primitive_type] = ACTIONS(169), - [anon_sym_enum] = ACTIONS(29), - [anon_sym_struct] = ACTIONS(31), - [anon_sym_union] = ACTIONS(33), - [anon_sym_AMP] = ACTIONS(782), - [anon_sym_BANG] = ACTIONS(784), - [anon_sym_TILDE] = ACTIONS(786), - [anon_sym_PLUS] = ACTIONS(788), - [anon_sym_DASH] = ACTIONS(788), - [anon_sym_DASH_DASH] = ACTIONS(790), - [anon_sym_PLUS_PLUS] = ACTIONS(790), - [anon_sym_sizeof] = ACTIONS(792), - [sym_number_literal] = ACTIONS(3107), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(3109), - [sym_false] = ACTIONS(3109), - [sym_null] = ACTIONS(3109), - [sym_identifier] = ACTIONS(1547), - [sym_comment] = ACTIONS(37), + [sym_comment] = ACTIONS(59), }, [1077] = { - [sym_compound_statement] = STATE(1029), - [sym_labeled_statement] = STATE(1029), - [sym_expression_statement] = STATE(1029), - [sym_if_statement] = STATE(1029), - [sym_switch_statement] = STATE(1029), - [sym_case_statement] = STATE(1029), - [sym_while_statement] = STATE(1029), - [sym_do_statement] = STATE(1029), - [sym_for_statement] = STATE(1029), - [sym_return_statement] = STATE(1029), - [sym_break_statement] = STATE(1029), - [sym_continue_statement] = STATE(1029), - [sym_goto_statement] = STATE(1029), - [sym__expression] = STATE(800), - [sym_comma_expression] = STATE(801), - [sym_conditional_expression] = STATE(800), - [sym_assignment_expression] = STATE(800), - [sym_pointer_expression] = STATE(800), - [sym_logical_expression] = STATE(800), - [sym_bitwise_expression] = STATE(800), - [sym_equality_expression] = STATE(800), - [sym_relational_expression] = STATE(800), - [sym_shift_expression] = STATE(800), - [sym_math_expression] = STATE(800), - [sym_cast_expression] = STATE(800), - [sym_sizeof_expression] = STATE(800), - [sym_subscript_expression] = STATE(800), - [sym_call_expression] = STATE(800), - [sym_field_expression] = STATE(800), - [sym_compound_literal_expression] = STATE(800), - [sym_parenthesized_expression] = STATE(800), - [sym_char_literal] = STATE(800), - [sym_concatenated_string] = STATE(800), - [sym_string_literal] = STATE(230), - [anon_sym_SEMI] = ACTIONS(2082), - [anon_sym_LBRACE] = ACTIONS(1181), - [anon_sym_LPAREN2] = ACTIONS(507), - [anon_sym_STAR] = ACTIONS(509), - [anon_sym_if] = ACTIONS(2788), - [anon_sym_switch] = ACTIONS(2790), - [anon_sym_case] = ACTIONS(2792), - [anon_sym_default] = ACTIONS(2794), - [anon_sym_while] = ACTIONS(2796), - [anon_sym_do] = ACTIONS(2094), - [anon_sym_for] = ACTIONS(2798), - [anon_sym_return] = ACTIONS(2098), - [anon_sym_break] = ACTIONS(2100), - [anon_sym_continue] = ACTIONS(2102), - [anon_sym_goto] = ACTIONS(2104), - [anon_sym_AMP] = ACTIONS(509), - [anon_sym_BANG] = ACTIONS(533), - [anon_sym_TILDE] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DASH] = ACTIONS(537), - [anon_sym_DASH_DASH] = ACTIONS(539), - [anon_sym_PLUS_PLUS] = ACTIONS(539), - [anon_sym_sizeof] = ACTIONS(541), - [sym_number_literal] = ACTIONS(2106), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(2108), - [sym_false] = ACTIONS(2108), - [sym_null] = ACTIONS(2108), - [sym_identifier] = ACTIONS(2800), - [sym_comment] = ACTIONS(37), - }, - [1078] = { - [sym_compound_statement] = STATE(1120), - [sym_labeled_statement] = STATE(1120), - [sym_expression_statement] = STATE(1120), - [sym_if_statement] = STATE(1120), - [sym_switch_statement] = STATE(1120), - [sym_case_statement] = STATE(1120), - [sym_while_statement] = STATE(1120), - [sym_do_statement] = STATE(1120), - [sym_for_statement] = STATE(1120), - [sym_return_statement] = STATE(1120), - [sym_break_statement] = STATE(1120), - [sym_continue_statement] = STATE(1120), - [sym_goto_statement] = STATE(1120), - [sym__expression] = STATE(800), - [sym_comma_expression] = STATE(801), - [sym_conditional_expression] = STATE(800), - [sym_assignment_expression] = STATE(800), - [sym_pointer_expression] = STATE(800), - [sym_logical_expression] = STATE(800), - [sym_bitwise_expression] = STATE(800), - [sym_equality_expression] = STATE(800), - [sym_relational_expression] = STATE(800), - [sym_shift_expression] = STATE(800), - [sym_math_expression] = STATE(800), - [sym_cast_expression] = STATE(800), - [sym_sizeof_expression] = STATE(800), - [sym_subscript_expression] = STATE(800), - [sym_call_expression] = STATE(800), - [sym_field_expression] = STATE(800), - [sym_compound_literal_expression] = STATE(800), - [sym_parenthesized_expression] = STATE(800), - [sym_char_literal] = STATE(800), - [sym_concatenated_string] = STATE(800), - [sym_string_literal] = STATE(230), - [anon_sym_SEMI] = ACTIONS(2082), - [anon_sym_LBRACE] = ACTIONS(1181), - [anon_sym_LPAREN2] = ACTIONS(507), - [anon_sym_STAR] = ACTIONS(509), - [anon_sym_if] = ACTIONS(2084), - [anon_sym_switch] = ACTIONS(2086), - [anon_sym_case] = ACTIONS(2088), - [anon_sym_default] = ACTIONS(2090), - [anon_sym_while] = ACTIONS(2092), - [anon_sym_do] = ACTIONS(2094), - [anon_sym_for] = ACTIONS(2096), - [anon_sym_return] = ACTIONS(2098), - [anon_sym_break] = ACTIONS(2100), - [anon_sym_continue] = ACTIONS(2102), - [anon_sym_goto] = ACTIONS(2104), - [anon_sym_AMP] = ACTIONS(509), - [anon_sym_BANG] = ACTIONS(533), - [anon_sym_TILDE] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DASH] = ACTIONS(537), - [anon_sym_DASH_DASH] = ACTIONS(539), - [anon_sym_PLUS_PLUS] = ACTIONS(539), - [anon_sym_sizeof] = ACTIONS(541), - [sym_number_literal] = ACTIONS(2106), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(2108), - [sym_false] = ACTIONS(2108), - [sym_null] = ACTIONS(2108), - [sym_identifier] = ACTIONS(2802), - [sym_comment] = ACTIONS(37), - }, - [1079] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2657), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2657), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2657), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2657), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2657), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2657), - [sym_preproc_directive] = ACTIONS(2657), - [anon_sym_SEMI] = ACTIONS(2659), - [anon_sym_typedef] = ACTIONS(2657), - [anon_sym_extern] = ACTIONS(2657), - [anon_sym_LBRACE] = ACTIONS(2659), - [anon_sym_LPAREN2] = ACTIONS(2659), - [anon_sym_STAR] = ACTIONS(2659), - [anon_sym_static] = ACTIONS(2657), - [anon_sym_auto] = ACTIONS(2657), - [anon_sym_register] = ACTIONS(2657), - [anon_sym_inline] = ACTIONS(2657), - [anon_sym_const] = ACTIONS(2657), - [anon_sym_restrict] = ACTIONS(2657), - [anon_sym_volatile] = ACTIONS(2657), - [anon_sym__Atomic] = ACTIONS(2657), - [anon_sym_unsigned] = ACTIONS(2657), - [anon_sym_long] = ACTIONS(2657), - [anon_sym_short] = ACTIONS(2657), - [sym_primitive_type] = ACTIONS(2657), - [anon_sym_enum] = ACTIONS(2657), - [anon_sym_struct] = ACTIONS(2657), - [anon_sym_union] = ACTIONS(2657), - [anon_sym_if] = ACTIONS(2657), - [anon_sym_else] = ACTIONS(2657), - [anon_sym_switch] = ACTIONS(2657), - [anon_sym_case] = ACTIONS(2657), - [anon_sym_default] = ACTIONS(2657), - [anon_sym_while] = ACTIONS(2657), - [anon_sym_do] = ACTIONS(2657), - [anon_sym_for] = ACTIONS(2657), - [anon_sym_return] = ACTIONS(2657), - [anon_sym_break] = ACTIONS(2657), - [anon_sym_continue] = ACTIONS(2657), - [anon_sym_goto] = ACTIONS(2657), - [anon_sym_AMP] = ACTIONS(2659), - [anon_sym_BANG] = ACTIONS(2659), - [anon_sym_TILDE] = ACTIONS(2659), - [anon_sym_PLUS] = ACTIONS(2657), - [anon_sym_DASH] = ACTIONS(2657), - [anon_sym_DASH_DASH] = ACTIONS(2659), - [anon_sym_PLUS_PLUS] = ACTIONS(2659), - [anon_sym_sizeof] = ACTIONS(2657), - [sym_number_literal] = ACTIONS(2659), - [anon_sym_SQUOTE] = ACTIONS(2659), - [anon_sym_DQUOTE] = ACTIONS(2659), - [sym_true] = ACTIONS(2657), - [sym_false] = ACTIONS(2657), - [sym_null] = ACTIONS(2657), - [sym_identifier] = ACTIONS(2657), - [sym_comment] = ACTIONS(37), - }, - [1080] = { - [sym__expression] = STATE(1121), - [sym_comma_expression] = STATE(1122), - [sym_conditional_expression] = STATE(1121), - [sym_assignment_expression] = STATE(1121), - [sym_pointer_expression] = STATE(1121), - [sym_logical_expression] = STATE(1121), - [sym_bitwise_expression] = STATE(1121), - [sym_equality_expression] = STATE(1121), - [sym_relational_expression] = STATE(1121), - [sym_shift_expression] = STATE(1121), - [sym_math_expression] = STATE(1121), - [sym_cast_expression] = STATE(1121), - [sym_sizeof_expression] = STATE(1121), - [sym_subscript_expression] = STATE(1121), - [sym_call_expression] = STATE(1121), - [sym_field_expression] = STATE(1121), - [sym_compound_literal_expression] = STATE(1121), - [sym_parenthesized_expression] = STATE(1121), - [sym_char_literal] = STATE(1121), - [sym_concatenated_string] = STATE(1121), - [sym_string_literal] = STATE(374), - [anon_sym_LPAREN2] = ACTIONS(892), - [anon_sym_STAR] = ACTIONS(894), - [anon_sym_AMP] = ACTIONS(894), - [anon_sym_BANG] = ACTIONS(896), - [anon_sym_TILDE] = ACTIONS(898), - [anon_sym_PLUS] = ACTIONS(900), - [anon_sym_DASH] = ACTIONS(900), - [anon_sym_DASH_DASH] = ACTIONS(902), - [anon_sym_PLUS_PLUS] = ACTIONS(902), - [anon_sym_sizeof] = ACTIONS(904), - [sym_number_literal] = ACTIONS(3111), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(3113), - [sym_false] = ACTIONS(3113), - [sym_null] = ACTIONS(3113), - [sym_identifier] = ACTIONS(3113), - [sym_comment] = ACTIONS(37), - }, - [1081] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2685), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2685), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2685), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2685), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2685), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2685), - [sym_preproc_directive] = ACTIONS(2685), - [anon_sym_SEMI] = ACTIONS(2687), - [anon_sym_typedef] = ACTIONS(2685), - [anon_sym_extern] = ACTIONS(2685), - [anon_sym_LBRACE] = ACTIONS(2687), - [anon_sym_LPAREN2] = ACTIONS(2687), - [anon_sym_STAR] = ACTIONS(2687), - [anon_sym_static] = ACTIONS(2685), - [anon_sym_auto] = ACTIONS(2685), - [anon_sym_register] = ACTIONS(2685), - [anon_sym_inline] = ACTIONS(2685), - [anon_sym_const] = ACTIONS(2685), - [anon_sym_restrict] = ACTIONS(2685), - [anon_sym_volatile] = ACTIONS(2685), - [anon_sym__Atomic] = ACTIONS(2685), - [anon_sym_unsigned] = ACTIONS(2685), - [anon_sym_long] = ACTIONS(2685), - [anon_sym_short] = ACTIONS(2685), - [sym_primitive_type] = ACTIONS(2685), - [anon_sym_enum] = ACTIONS(2685), - [anon_sym_struct] = ACTIONS(2685), - [anon_sym_union] = ACTIONS(2685), - [anon_sym_if] = ACTIONS(2685), - [anon_sym_else] = ACTIONS(2685), - [anon_sym_switch] = ACTIONS(2685), - [anon_sym_case] = ACTIONS(2685), - [anon_sym_default] = ACTIONS(2685), - [anon_sym_while] = ACTIONS(2685), - [anon_sym_do] = ACTIONS(2685), - [anon_sym_for] = ACTIONS(2685), - [anon_sym_return] = ACTIONS(2685), - [anon_sym_break] = ACTIONS(2685), - [anon_sym_continue] = ACTIONS(2685), - [anon_sym_goto] = ACTIONS(2685), - [anon_sym_AMP] = ACTIONS(2687), - [anon_sym_BANG] = ACTIONS(2687), - [anon_sym_TILDE] = ACTIONS(2687), - [anon_sym_PLUS] = ACTIONS(2685), - [anon_sym_DASH] = ACTIONS(2685), - [anon_sym_DASH_DASH] = ACTIONS(2687), - [anon_sym_PLUS_PLUS] = ACTIONS(2687), - [anon_sym_sizeof] = ACTIONS(2685), - [sym_number_literal] = ACTIONS(2687), - [anon_sym_SQUOTE] = ACTIONS(2687), - [anon_sym_DQUOTE] = ACTIONS(2687), - [sym_true] = ACTIONS(2685), - [sym_false] = ACTIONS(2685), - [sym_null] = ACTIONS(2685), - [sym_identifier] = ACTIONS(2685), - [sym_comment] = ACTIONS(37), - }, - [1082] = { - [sym__expression] = STATE(1124), - [sym_conditional_expression] = STATE(1124), - [sym_assignment_expression] = STATE(1124), - [sym_pointer_expression] = STATE(1124), - [sym_logical_expression] = STATE(1124), - [sym_bitwise_expression] = STATE(1124), - [sym_equality_expression] = STATE(1124), - [sym_relational_expression] = STATE(1124), - [sym_shift_expression] = STATE(1124), - [sym_math_expression] = STATE(1124), - [sym_cast_expression] = STATE(1124), - [sym_sizeof_expression] = STATE(1124), - [sym_subscript_expression] = STATE(1124), - [sym_call_expression] = STATE(1124), - [sym_field_expression] = STATE(1124), - [sym_compound_literal_expression] = STATE(1124), - [sym_parenthesized_expression] = STATE(1124), - [sym_char_literal] = STATE(1124), - [sym_concatenated_string] = STATE(1124), - [sym_string_literal] = STATE(374), - [anon_sym_RPAREN] = ACTIONS(3115), - [anon_sym_LPAREN2] = ACTIONS(892), - [anon_sym_STAR] = ACTIONS(894), - [anon_sym_AMP] = ACTIONS(894), - [anon_sym_BANG] = ACTIONS(896), - [anon_sym_TILDE] = ACTIONS(898), - [anon_sym_PLUS] = ACTIONS(900), - [anon_sym_DASH] = ACTIONS(900), - [anon_sym_DASH_DASH] = ACTIONS(902), - [anon_sym_PLUS_PLUS] = ACTIONS(902), - [anon_sym_sizeof] = ACTIONS(904), - [sym_number_literal] = ACTIONS(3117), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(3119), - [sym_false] = ACTIONS(3119), - [sym_null] = ACTIONS(3119), - [sym_identifier] = ACTIONS(3119), - [sym_comment] = ACTIONS(37), - }, - [1083] = { - [sym_argument_list] = STATE(430), - [anon_sym_SEMI] = ACTIONS(3121), - [anon_sym_LPAREN2] = ACTIONS(1012), - [anon_sym_STAR] = ACTIONS(1319), - [anon_sym_LBRACK] = ACTIONS(1016), - [anon_sym_EQ] = ACTIONS(1321), - [anon_sym_QMARK] = ACTIONS(1323), - [anon_sym_STAR_EQ] = ACTIONS(1325), - [anon_sym_SLASH_EQ] = ACTIONS(1325), - [anon_sym_PERCENT_EQ] = ACTIONS(1325), - [anon_sym_PLUS_EQ] = ACTIONS(1325), - [anon_sym_DASH_EQ] = ACTIONS(1325), - [anon_sym_LT_LT_EQ] = ACTIONS(1325), - [anon_sym_GT_GT_EQ] = ACTIONS(1325), - [anon_sym_AMP_EQ] = ACTIONS(1325), - [anon_sym_CARET_EQ] = ACTIONS(1325), - [anon_sym_PIPE_EQ] = ACTIONS(1325), - [anon_sym_AMP] = ACTIONS(1327), - [anon_sym_PIPE_PIPE] = ACTIONS(1329), - [anon_sym_AMP_AMP] = ACTIONS(1331), - [anon_sym_PIPE] = ACTIONS(1333), - [anon_sym_CARET] = ACTIONS(1335), - [anon_sym_EQ_EQ] = ACTIONS(1337), - [anon_sym_BANG_EQ] = ACTIONS(1337), - [anon_sym_LT] = ACTIONS(1339), - [anon_sym_GT] = ACTIONS(1339), - [anon_sym_LT_EQ] = ACTIONS(1341), - [anon_sym_GT_EQ] = ACTIONS(1341), - [anon_sym_LT_LT] = ACTIONS(1343), - [anon_sym_GT_GT] = ACTIONS(1343), - [anon_sym_PLUS] = ACTIONS(1345), - [anon_sym_DASH] = ACTIONS(1345), - [anon_sym_SLASH] = ACTIONS(1319), - [anon_sym_PERCENT] = ACTIONS(1319), - [anon_sym_DASH_DASH] = ACTIONS(1044), - [anon_sym_PLUS_PLUS] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1046), - [anon_sym_DASH_GT] = ACTIONS(1046), - [sym_comment] = ACTIONS(37), - }, - [1084] = { - [sym__expression] = STATE(1126), - [sym_conditional_expression] = STATE(1126), - [sym_assignment_expression] = STATE(1126), - [sym_pointer_expression] = STATE(1126), - [sym_logical_expression] = STATE(1126), - [sym_bitwise_expression] = STATE(1126), - [sym_equality_expression] = STATE(1126), - [sym_relational_expression] = STATE(1126), - [sym_shift_expression] = STATE(1126), - [sym_math_expression] = STATE(1126), - [sym_cast_expression] = STATE(1126), - [sym_sizeof_expression] = STATE(1126), - [sym_subscript_expression] = STATE(1126), - [sym_call_expression] = STATE(1126), - [sym_field_expression] = STATE(1126), - [sym_compound_literal_expression] = STATE(1126), - [sym_parenthesized_expression] = STATE(1126), - [sym_char_literal] = STATE(1126), - [sym_concatenated_string] = STATE(1126), - [sym_string_literal] = STATE(342), - [anon_sym_SEMI] = ACTIONS(3121), - [anon_sym_LPAREN2] = ACTIONS(780), - [anon_sym_STAR] = ACTIONS(782), - [anon_sym_AMP] = ACTIONS(782), - [anon_sym_BANG] = ACTIONS(784), - [anon_sym_TILDE] = ACTIONS(786), - [anon_sym_PLUS] = ACTIONS(788), - [anon_sym_DASH] = ACTIONS(788), - [anon_sym_DASH_DASH] = ACTIONS(790), - [anon_sym_PLUS_PLUS] = ACTIONS(790), - [anon_sym_sizeof] = ACTIONS(792), - [sym_number_literal] = ACTIONS(3123), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(3125), - [sym_false] = ACTIONS(3125), - [sym_null] = ACTIONS(3125), - [sym_identifier] = ACTIONS(3125), - [sym_comment] = ACTIONS(37), - }, - [1085] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2222), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2222), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2222), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2222), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2222), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2222), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2222), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2222), - [sym_preproc_directive] = ACTIONS(2222), - [anon_sym_SEMI] = ACTIONS(2224), - [anon_sym_typedef] = ACTIONS(2222), - [anon_sym_extern] = ACTIONS(2222), - [anon_sym_LBRACE] = ACTIONS(2224), - [anon_sym_LPAREN2] = ACTIONS(2224), - [anon_sym_STAR] = ACTIONS(2224), - [anon_sym_static] = ACTIONS(2222), - [anon_sym_auto] = ACTIONS(2222), - [anon_sym_register] = ACTIONS(2222), - [anon_sym_inline] = ACTIONS(2222), - [anon_sym_const] = ACTIONS(2222), - [anon_sym_restrict] = ACTIONS(2222), - [anon_sym_volatile] = ACTIONS(2222), - [anon_sym__Atomic] = ACTIONS(2222), - [anon_sym_unsigned] = ACTIONS(2222), - [anon_sym_long] = ACTIONS(2222), - [anon_sym_short] = ACTIONS(2222), - [sym_primitive_type] = ACTIONS(2222), - [anon_sym_enum] = ACTIONS(2222), - [anon_sym_struct] = ACTIONS(2222), - [anon_sym_union] = ACTIONS(2222), - [anon_sym_if] = ACTIONS(2222), - [anon_sym_else] = ACTIONS(3127), - [anon_sym_switch] = ACTIONS(2222), - [anon_sym_case] = ACTIONS(2222), - [anon_sym_default] = ACTIONS(2222), - [anon_sym_while] = ACTIONS(2222), - [anon_sym_do] = ACTIONS(2222), - [anon_sym_for] = ACTIONS(2222), - [anon_sym_return] = ACTIONS(2222), - [anon_sym_break] = ACTIONS(2222), - [anon_sym_continue] = ACTIONS(2222), - [anon_sym_goto] = ACTIONS(2222), - [anon_sym_AMP] = ACTIONS(2224), - [anon_sym_BANG] = ACTIONS(2224), - [anon_sym_TILDE] = ACTIONS(2224), - [anon_sym_PLUS] = ACTIONS(2222), - [anon_sym_DASH] = ACTIONS(2222), - [anon_sym_DASH_DASH] = ACTIONS(2224), - [anon_sym_PLUS_PLUS] = ACTIONS(2224), - [anon_sym_sizeof] = ACTIONS(2222), - [sym_number_literal] = ACTIONS(2224), - [anon_sym_SQUOTE] = ACTIONS(2224), - [anon_sym_DQUOTE] = ACTIONS(2224), - [sym_true] = ACTIONS(2222), - [sym_false] = ACTIONS(2222), - [sym_null] = ACTIONS(2222), - [sym_identifier] = ACTIONS(2222), - [sym_comment] = ACTIONS(37), - }, - [1086] = { - [sym_declaration] = STATE(1039), - [sym_type_definition] = STATE(1039), - [sym__declaration_specifiers] = STATE(953), - [sym_compound_statement] = STATE(1039), - [sym_storage_class_specifier] = STATE(87), - [sym_type_qualifier] = STATE(87), - [sym__type_specifier] = STATE(86), - [sym_sized_type_specifier] = STATE(86), - [sym_enum_specifier] = STATE(86), - [sym_struct_specifier] = STATE(86), - [sym_union_specifier] = STATE(86), - [sym_labeled_statement] = STATE(1039), - [sym_expression_statement] = STATE(1039), - [sym_if_statement] = STATE(1039), - [sym_switch_statement] = STATE(1039), - [sym_case_statement] = STATE(1039), - [sym_while_statement] = STATE(1039), - [sym_do_statement] = STATE(1039), - [sym_for_statement] = STATE(1039), - [sym_return_statement] = STATE(1039), - [sym_break_statement] = STATE(1039), - [sym_continue_statement] = STATE(1039), - [sym_goto_statement] = STATE(1039), - [sym__expression] = STATE(594), - [sym_comma_expression] = STATE(595), - [sym_conditional_expression] = STATE(594), - [sym_assignment_expression] = STATE(594), - [sym_pointer_expression] = STATE(594), - [sym_logical_expression] = STATE(594), - [sym_bitwise_expression] = STATE(594), - [sym_equality_expression] = STATE(594), - [sym_relational_expression] = STATE(594), - [sym_shift_expression] = STATE(594), - [sym_math_expression] = STATE(594), - [sym_cast_expression] = STATE(594), - [sym_sizeof_expression] = STATE(594), - [sym_subscript_expression] = STATE(594), - [sym_call_expression] = STATE(594), - [sym_field_expression] = STATE(594), - [sym_compound_literal_expression] = STATE(594), - [sym_parenthesized_expression] = STATE(594), - [sym_char_literal] = STATE(594), - [sym_concatenated_string] = STATE(594), - [sym_string_literal] = STATE(230), - [sym_macro_type_specifier] = STATE(86), - [aux_sym__declaration_specifiers_repeat1] = STATE(87), - [aux_sym_sized_type_specifier_repeat1] = STATE(88), - [anon_sym_SEMI] = ACTIONS(1395), - [anon_sym_typedef] = ACTIONS(143), - [anon_sym_extern] = ACTIONS(21), - [anon_sym_LBRACE] = ACTIONS(678), - [anon_sym_LPAREN2] = ACTIONS(507), - [anon_sym_STAR] = ACTIONS(509), - [anon_sym_static] = ACTIONS(21), - [anon_sym_auto] = ACTIONS(21), - [anon_sym_register] = ACTIONS(21), - [anon_sym_inline] = ACTIONS(21), - [anon_sym_const] = ACTIONS(23), - [anon_sym_restrict] = ACTIONS(23), - [anon_sym_volatile] = ACTIONS(23), - [anon_sym__Atomic] = ACTIONS(23), - [anon_sym_unsigned] = ACTIONS(167), - [anon_sym_long] = ACTIONS(167), - [anon_sym_short] = ACTIONS(167), - [sym_primitive_type] = ACTIONS(169), - [anon_sym_enum] = ACTIONS(29), - [anon_sym_struct] = ACTIONS(31), - [anon_sym_union] = ACTIONS(33), - [anon_sym_if] = ACTIONS(2521), - [anon_sym_switch] = ACTIONS(2523), - [anon_sym_case] = ACTIONS(2525), - [anon_sym_default] = ACTIONS(2527), - [anon_sym_while] = ACTIONS(2529), - [anon_sym_do] = ACTIONS(1407), - [anon_sym_for] = ACTIONS(2531), - [anon_sym_return] = ACTIONS(1411), - [anon_sym_break] = ACTIONS(1413), - [anon_sym_continue] = ACTIONS(1415), - [anon_sym_goto] = ACTIONS(1417), - [anon_sym_AMP] = ACTIONS(509), - [anon_sym_BANG] = ACTIONS(533), - [anon_sym_TILDE] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DASH] = ACTIONS(537), - [anon_sym_DASH_DASH] = ACTIONS(539), - [anon_sym_PLUS_PLUS] = ACTIONS(539), - [anon_sym_sizeof] = ACTIONS(541), - [sym_number_literal] = ACTIONS(1419), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(1421), - [sym_false] = ACTIONS(1421), - [sym_null] = ACTIONS(1421), - [sym_identifier] = ACTIONS(3033), - [sym_comment] = ACTIONS(37), - }, - [1087] = { - [anon_sym_COMMA] = ACTIONS(990), - [anon_sym_SEMI] = ACTIONS(990), - [anon_sym_extern] = ACTIONS(79), - [anon_sym_LPAREN2] = ACTIONS(995), - [anon_sym_STAR] = ACTIONS(999), - [anon_sym_LBRACK] = ACTIONS(990), - [anon_sym_EQ] = ACTIONS(1002), - [anon_sym_static] = ACTIONS(79), - [anon_sym_auto] = ACTIONS(79), - [anon_sym_register] = ACTIONS(79), - [anon_sym_inline] = ACTIONS(79), - [anon_sym_const] = ACTIONS(79), - [anon_sym_restrict] = ACTIONS(79), - [anon_sym_volatile] = ACTIONS(79), - [anon_sym__Atomic] = ACTIONS(79), - [anon_sym_COLON] = ACTIONS(2898), - [anon_sym_QMARK] = ACTIONS(990), - [anon_sym_STAR_EQ] = ACTIONS(990), - [anon_sym_SLASH_EQ] = ACTIONS(990), - [anon_sym_PERCENT_EQ] = ACTIONS(990), - [anon_sym_PLUS_EQ] = ACTIONS(990), - [anon_sym_DASH_EQ] = ACTIONS(990), - [anon_sym_LT_LT_EQ] = ACTIONS(990), - [anon_sym_GT_GT_EQ] = ACTIONS(990), - [anon_sym_AMP_EQ] = ACTIONS(990), - [anon_sym_CARET_EQ] = ACTIONS(990), - [anon_sym_PIPE_EQ] = ACTIONS(990), - [anon_sym_AMP] = ACTIONS(1002), - [anon_sym_PIPE_PIPE] = ACTIONS(990), - [anon_sym_AMP_AMP] = ACTIONS(990), - [anon_sym_PIPE] = ACTIONS(1002), - [anon_sym_CARET] = ACTIONS(1002), - [anon_sym_EQ_EQ] = ACTIONS(990), - [anon_sym_BANG_EQ] = ACTIONS(990), - [anon_sym_LT] = ACTIONS(1002), - [anon_sym_GT] = ACTIONS(1002), - [anon_sym_LT_EQ] = ACTIONS(990), - [anon_sym_GT_EQ] = ACTIONS(990), - [anon_sym_LT_LT] = ACTIONS(1002), - [anon_sym_GT_GT] = ACTIONS(1002), - [anon_sym_PLUS] = ACTIONS(1002), - [anon_sym_DASH] = ACTIONS(1002), - [anon_sym_SLASH] = ACTIONS(1002), - [anon_sym_PERCENT] = ACTIONS(1002), - [anon_sym_DASH_DASH] = ACTIONS(990), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_DOT] = ACTIONS(990), - [anon_sym_DASH_GT] = ACTIONS(990), - [sym_identifier] = ACTIONS(79), - [sym_comment] = ACTIONS(37), - }, - [1088] = { - [sym__expression] = STATE(1129), - [sym_conditional_expression] = STATE(1129), - [sym_assignment_expression] = STATE(1129), - [sym_pointer_expression] = STATE(1129), - [sym_logical_expression] = STATE(1129), - [sym_bitwise_expression] = STATE(1129), - [sym_equality_expression] = STATE(1129), - [sym_relational_expression] = STATE(1129), - [sym_shift_expression] = STATE(1129), - [sym_math_expression] = STATE(1129), - [sym_cast_expression] = STATE(1129), - [sym_sizeof_expression] = STATE(1129), - [sym_subscript_expression] = STATE(1129), - [sym_call_expression] = STATE(1129), - [sym_field_expression] = STATE(1129), - [sym_compound_literal_expression] = STATE(1129), - [sym_parenthesized_expression] = STATE(1129), - [sym_char_literal] = STATE(1129), - [sym_concatenated_string] = STATE(1129), - [sym_string_literal] = STATE(342), - [anon_sym_SEMI] = ACTIONS(3129), - [anon_sym_LPAREN2] = ACTIONS(780), - [anon_sym_STAR] = ACTIONS(782), - [anon_sym_AMP] = ACTIONS(782), - [anon_sym_BANG] = ACTIONS(784), - [anon_sym_TILDE] = ACTIONS(786), - [anon_sym_PLUS] = ACTIONS(788), - [anon_sym_DASH] = ACTIONS(788), - [anon_sym_DASH_DASH] = ACTIONS(790), - [anon_sym_PLUS_PLUS] = ACTIONS(790), - [anon_sym_sizeof] = ACTIONS(792), - [sym_number_literal] = ACTIONS(3131), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(3133), - [sym_false] = ACTIONS(3133), - [sym_null] = ACTIONS(3133), - [sym_identifier] = ACTIONS(3133), - [sym_comment] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(2631), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2633), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2633), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2633), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2633), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2633), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2633), + [sym_preproc_directive] = ACTIONS(2633), + [anon_sym_typedef] = ACTIONS(2633), + [anon_sym_extern] = ACTIONS(2633), + [anon_sym_LBRACE] = ACTIONS(2631), + [anon_sym_LPAREN2] = ACTIONS(2631), + [anon_sym_STAR] = ACTIONS(2631), + [anon_sym_static] = ACTIONS(2633), + [anon_sym_auto] = ACTIONS(2633), + [anon_sym_register] = ACTIONS(2633), + [anon_sym_inline] = ACTIONS(2633), + [anon_sym_const] = ACTIONS(2633), + [anon_sym_restrict] = ACTIONS(2633), + [anon_sym_volatile] = ACTIONS(2633), + [anon_sym__Atomic] = ACTIONS(2633), + [anon_sym_unsigned] = ACTIONS(2633), + [anon_sym_long] = ACTIONS(2633), + [anon_sym_short] = ACTIONS(2633), + [sym_primitive_type] = ACTIONS(2633), + [anon_sym_enum] = ACTIONS(2633), + [anon_sym_struct] = ACTIONS(2633), + [anon_sym_union] = ACTIONS(2633), + [anon_sym_if] = ACTIONS(2633), + [anon_sym_else] = ACTIONS(2633), + [anon_sym_switch] = ACTIONS(2633), + [anon_sym_case] = ACTIONS(2633), + [anon_sym_default] = ACTIONS(2633), + [anon_sym_while] = ACTIONS(2633), + [anon_sym_do] = ACTIONS(2633), + [anon_sym_for] = ACTIONS(2633), + [anon_sym_return] = ACTIONS(2633), + [anon_sym_break] = ACTIONS(2633), + [anon_sym_continue] = ACTIONS(2633), + [anon_sym_goto] = ACTIONS(2633), + [anon_sym_AMP] = ACTIONS(2631), + [anon_sym_BANG] = ACTIONS(2631), + [anon_sym_TILDE] = ACTIONS(2631), + [anon_sym_PLUS] = ACTIONS(2633), + [anon_sym_DASH] = ACTIONS(2633), + [anon_sym_DASH_DASH] = ACTIONS(2631), + [anon_sym_PLUS_PLUS] = ACTIONS(2631), + [anon_sym_sizeof] = ACTIONS(2633), + [sym_number_literal] = ACTIONS(2631), + [anon_sym_SQUOTE] = ACTIONS(2631), + [anon_sym_DQUOTE] = ACTIONS(2631), + [sym_true] = ACTIONS(2633), + [sym_false] = ACTIONS(2633), + [sym_null] = ACTIONS(2633), + [sym_identifier] = ACTIONS(2633), + [sym_comment] = ACTIONS(59), }, - [1089] = { - [sym_argument_list] = STATE(430), - [anon_sym_SEMI] = ACTIONS(3135), - [anon_sym_LPAREN2] = ACTIONS(1012), - [anon_sym_STAR] = ACTIONS(1319), - [anon_sym_LBRACK] = ACTIONS(1016), - [anon_sym_EQ] = ACTIONS(1321), - [anon_sym_QMARK] = ACTIONS(1323), - [anon_sym_STAR_EQ] = ACTIONS(1325), - [anon_sym_SLASH_EQ] = ACTIONS(1325), - [anon_sym_PERCENT_EQ] = ACTIONS(1325), - [anon_sym_PLUS_EQ] = ACTIONS(1325), - [anon_sym_DASH_EQ] = ACTIONS(1325), - [anon_sym_LT_LT_EQ] = ACTIONS(1325), - [anon_sym_GT_GT_EQ] = ACTIONS(1325), - [anon_sym_AMP_EQ] = ACTIONS(1325), - [anon_sym_CARET_EQ] = ACTIONS(1325), - [anon_sym_PIPE_EQ] = ACTIONS(1325), - [anon_sym_AMP] = ACTIONS(1327), - [anon_sym_PIPE_PIPE] = ACTIONS(1329), - [anon_sym_AMP_AMP] = ACTIONS(1331), - [anon_sym_PIPE] = ACTIONS(1333), - [anon_sym_CARET] = ACTIONS(1335), - [anon_sym_EQ_EQ] = ACTIONS(1337), - [anon_sym_BANG_EQ] = ACTIONS(1337), - [anon_sym_LT] = ACTIONS(1339), - [anon_sym_GT] = ACTIONS(1339), - [anon_sym_LT_EQ] = ACTIONS(1341), - [anon_sym_GT_EQ] = ACTIONS(1341), - [anon_sym_LT_LT] = ACTIONS(1343), - [anon_sym_GT_GT] = ACTIONS(1343), - [anon_sym_PLUS] = ACTIONS(1345), - [anon_sym_DASH] = ACTIONS(1345), - [anon_sym_SLASH] = ACTIONS(1319), - [anon_sym_PERCENT] = ACTIONS(1319), - [anon_sym_DASH_DASH] = ACTIONS(1044), - [anon_sym_PLUS_PLUS] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1046), - [anon_sym_DASH_GT] = ACTIONS(1046), - [sym_comment] = ACTIONS(37), + [1078] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3174), + [sym_comment] = ACTIONS(59), }, - [1090] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2938), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2938), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2938), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2938), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2938), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2938), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2938), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2938), - [sym_preproc_directive] = ACTIONS(2938), - [anon_sym_SEMI] = ACTIONS(2940), - [anon_sym_typedef] = ACTIONS(2938), - [anon_sym_extern] = ACTIONS(2938), - [anon_sym_LBRACE] = ACTIONS(2940), - [anon_sym_LPAREN2] = ACTIONS(2940), - [anon_sym_STAR] = ACTIONS(2940), - [anon_sym_static] = ACTIONS(2938), - [anon_sym_auto] = ACTIONS(2938), - [anon_sym_register] = ACTIONS(2938), - [anon_sym_inline] = ACTIONS(2938), - [anon_sym_const] = ACTIONS(2938), - [anon_sym_restrict] = ACTIONS(2938), - [anon_sym_volatile] = ACTIONS(2938), - [anon_sym__Atomic] = ACTIONS(2938), - [anon_sym_unsigned] = ACTIONS(2938), - [anon_sym_long] = ACTIONS(2938), - [anon_sym_short] = ACTIONS(2938), - [sym_primitive_type] = ACTIONS(2938), - [anon_sym_enum] = ACTIONS(2938), - [anon_sym_struct] = ACTIONS(2938), - [anon_sym_union] = ACTIONS(2938), - [anon_sym_if] = ACTIONS(2938), - [anon_sym_else] = ACTIONS(2938), - [anon_sym_switch] = ACTIONS(2938), - [anon_sym_case] = ACTIONS(2938), - [anon_sym_default] = ACTIONS(2938), - [anon_sym_while] = ACTIONS(2938), - [anon_sym_do] = ACTIONS(2938), - [anon_sym_for] = ACTIONS(2938), - [anon_sym_return] = ACTIONS(2938), - [anon_sym_break] = ACTIONS(2938), - [anon_sym_continue] = ACTIONS(2938), - [anon_sym_goto] = ACTIONS(2938), - [anon_sym_AMP] = ACTIONS(2940), - [anon_sym_BANG] = ACTIONS(2940), - [anon_sym_TILDE] = ACTIONS(2940), - [anon_sym_PLUS] = ACTIONS(2938), - [anon_sym_DASH] = ACTIONS(2938), - [anon_sym_DASH_DASH] = ACTIONS(2940), - [anon_sym_PLUS_PLUS] = ACTIONS(2940), - [anon_sym_sizeof] = ACTIONS(2938), - [sym_number_literal] = ACTIONS(2940), - [anon_sym_SQUOTE] = ACTIONS(2940), - [anon_sym_DQUOTE] = ACTIONS(2940), - [sym_true] = ACTIONS(2938), - [sym_false] = ACTIONS(2938), - [sym_null] = ACTIONS(2938), - [sym_identifier] = ACTIONS(2938), - [sym_comment] = ACTIONS(37), + [1079] = { + [sym_compound_statement] = STATE(1131), + [sym_labeled_statement] = STATE(1131), + [sym_expression_statement] = STATE(1131), + [sym_if_statement] = STATE(1131), + [sym_switch_statement] = STATE(1131), + [sym_case_statement] = STATE(1131), + [sym_while_statement] = STATE(1131), + [sym_do_statement] = STATE(1131), + [sym_for_statement] = STATE(1131), + [sym_return_statement] = STATE(1131), + [sym_break_statement] = STATE(1131), + [sym_continue_statement] = STATE(1131), + [sym_goto_statement] = STATE(1131), + [sym__expression] = STATE(756), + [sym_comma_expression] = STATE(757), + [sym_conditional_expression] = STATE(756), + [sym_assignment_expression] = STATE(756), + [sym_pointer_expression] = STATE(756), + [sym_logical_expression] = STATE(756), + [sym_bitwise_expression] = STATE(756), + [sym_equality_expression] = STATE(756), + [sym_relational_expression] = STATE(756), + [sym_shift_expression] = STATE(756), + [sym_math_expression] = STATE(756), + [sym_cast_expression] = STATE(756), + [sym_sizeof_expression] = STATE(756), + [sym_subscript_expression] = STATE(756), + [sym_call_expression] = STATE(756), + [sym_field_expression] = STATE(756), + [sym_compound_literal_expression] = STATE(756), + [sym_parenthesized_expression] = STATE(756), + [sym_char_literal] = STATE(756), + [sym_concatenated_string] = STATE(756), + [sym_string_literal] = STATE(374), + [anon_sym_SEMI] = ACTIONS(1940), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_LPAREN2] = ACTIONS(936), + [anon_sym_STAR] = ACTIONS(938), + [anon_sym_if] = ACTIONS(2752), + [anon_sym_switch] = ACTIONS(2754), + [anon_sym_case] = ACTIONS(2756), + [anon_sym_default] = ACTIONS(2758), + [anon_sym_while] = ACTIONS(2760), + [anon_sym_do] = ACTIONS(1962), + [anon_sym_for] = ACTIONS(2762), + [anon_sym_return] = ACTIONS(1966), + [anon_sym_break] = ACTIONS(1968), + [anon_sym_continue] = ACTIONS(1970), + [anon_sym_goto] = ACTIONS(1972), + [anon_sym_AMP] = ACTIONS(938), + [anon_sym_BANG] = ACTIONS(962), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_DASH_DASH] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(968), + [anon_sym_sizeof] = ACTIONS(970), + [sym_number_literal] = ACTIONS(1974), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(1976), + [sym_false] = ACTIONS(1976), + [sym_null] = ACTIONS(1976), + [sym_identifier] = ACTIONS(2764), + [sym_comment] = ACTIONS(59), }, - [1091] = { - [sym_argument_list] = STATE(430), - [anon_sym_COMMA] = ACTIONS(1433), - [anon_sym_RPAREN] = ACTIONS(3137), - [anon_sym_LPAREN2] = ACTIONS(1012), - [anon_sym_STAR] = ACTIONS(1437), - [anon_sym_LBRACK] = ACTIONS(1016), - [anon_sym_EQ] = ACTIONS(1439), - [anon_sym_QMARK] = ACTIONS(1441), - [anon_sym_STAR_EQ] = ACTIONS(1443), - [anon_sym_SLASH_EQ] = ACTIONS(1443), - [anon_sym_PERCENT_EQ] = ACTIONS(1443), - [anon_sym_PLUS_EQ] = ACTIONS(1443), - [anon_sym_DASH_EQ] = ACTIONS(1443), - [anon_sym_LT_LT_EQ] = ACTIONS(1443), - [anon_sym_GT_GT_EQ] = ACTIONS(1443), - [anon_sym_AMP_EQ] = ACTIONS(1443), - [anon_sym_CARET_EQ] = ACTIONS(1443), - [anon_sym_PIPE_EQ] = ACTIONS(1443), - [anon_sym_AMP] = ACTIONS(1445), - [anon_sym_PIPE_PIPE] = ACTIONS(1447), - [anon_sym_AMP_AMP] = ACTIONS(1449), - [anon_sym_PIPE] = ACTIONS(1451), - [anon_sym_CARET] = ACTIONS(1453), - [anon_sym_EQ_EQ] = ACTIONS(1455), - [anon_sym_BANG_EQ] = ACTIONS(1455), - [anon_sym_LT] = ACTIONS(1457), - [anon_sym_GT] = ACTIONS(1457), - [anon_sym_LT_EQ] = ACTIONS(1459), - [anon_sym_GT_EQ] = ACTIONS(1459), - [anon_sym_LT_LT] = ACTIONS(1461), - [anon_sym_GT_GT] = ACTIONS(1461), - [anon_sym_PLUS] = ACTIONS(1463), - [anon_sym_DASH] = ACTIONS(1463), - [anon_sym_SLASH] = ACTIONS(1437), - [anon_sym_PERCENT] = ACTIONS(1437), - [anon_sym_DASH_DASH] = ACTIONS(1044), - [anon_sym_PLUS_PLUS] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1046), - [anon_sym_DASH_GT] = ACTIONS(1046), - [sym_comment] = ACTIONS(37), + [1080] = { + [sym_compound_statement] = STATE(1008), + [sym_labeled_statement] = STATE(1008), + [sym_expression_statement] = STATE(1008), + [sym_if_statement] = STATE(1008), + [sym_switch_statement] = STATE(1008), + [sym_case_statement] = STATE(1008), + [sym_while_statement] = STATE(1008), + [sym_do_statement] = STATE(1008), + [sym_for_statement] = STATE(1008), + [sym_return_statement] = STATE(1008), + [sym_break_statement] = STATE(1008), + [sym_continue_statement] = STATE(1008), + [sym_goto_statement] = STATE(1008), + [sym__expression] = STATE(756), + [sym_comma_expression] = STATE(757), + [sym_conditional_expression] = STATE(756), + [sym_assignment_expression] = STATE(756), + [sym_pointer_expression] = STATE(756), + [sym_logical_expression] = STATE(756), + [sym_bitwise_expression] = STATE(756), + [sym_equality_expression] = STATE(756), + [sym_relational_expression] = STATE(756), + [sym_shift_expression] = STATE(756), + [sym_math_expression] = STATE(756), + [sym_cast_expression] = STATE(756), + [sym_sizeof_expression] = STATE(756), + [sym_subscript_expression] = STATE(756), + [sym_call_expression] = STATE(756), + [sym_field_expression] = STATE(756), + [sym_compound_literal_expression] = STATE(756), + [sym_parenthesized_expression] = STATE(756), + [sym_char_literal] = STATE(756), + [sym_concatenated_string] = STATE(756), + [sym_string_literal] = STATE(374), + [anon_sym_SEMI] = ACTIONS(1940), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_LPAREN2] = ACTIONS(936), + [anon_sym_STAR] = ACTIONS(938), + [anon_sym_if] = ACTIONS(2752), + [anon_sym_switch] = ACTIONS(2754), + [anon_sym_case] = ACTIONS(2756), + [anon_sym_default] = ACTIONS(2758), + [anon_sym_while] = ACTIONS(2760), + [anon_sym_do] = ACTIONS(1962), + [anon_sym_for] = ACTIONS(2762), + [anon_sym_return] = ACTIONS(1966), + [anon_sym_break] = ACTIONS(1968), + [anon_sym_continue] = ACTIONS(1970), + [anon_sym_goto] = ACTIONS(1972), + [anon_sym_AMP] = ACTIONS(938), + [anon_sym_BANG] = ACTIONS(962), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_DASH_DASH] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(968), + [anon_sym_sizeof] = ACTIONS(970), + [sym_number_literal] = ACTIONS(1974), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(1976), + [sym_false] = ACTIONS(1976), + [sym_null] = ACTIONS(1976), + [sym_identifier] = ACTIONS(2764), + [sym_comment] = ACTIONS(59), }, - [1092] = { - [anon_sym_RPAREN] = ACTIONS(3137), - [sym_comment] = ACTIONS(37), + [1081] = { + [sym_argument_list] = STATE(98), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(1054), + [anon_sym_LBRACK] = ACTIONS(188), + [anon_sym_EQ] = ACTIONS(1056), + [anon_sym_COLON] = ACTIONS(3176), + [anon_sym_QMARK] = ACTIONS(1060), + [anon_sym_STAR_EQ] = ACTIONS(1062), + [anon_sym_SLASH_EQ] = ACTIONS(1062), + [anon_sym_PERCENT_EQ] = ACTIONS(1062), + [anon_sym_PLUS_EQ] = ACTIONS(1062), + [anon_sym_DASH_EQ] = ACTIONS(1062), + [anon_sym_LT_LT_EQ] = ACTIONS(1062), + [anon_sym_GT_GT_EQ] = ACTIONS(1062), + [anon_sym_AMP_EQ] = ACTIONS(1062), + [anon_sym_CARET_EQ] = ACTIONS(1062), + [anon_sym_PIPE_EQ] = ACTIONS(1062), + [anon_sym_AMP] = ACTIONS(1064), + [anon_sym_PIPE_PIPE] = ACTIONS(1066), + [anon_sym_AMP_AMP] = ACTIONS(1068), + [anon_sym_PIPE] = ACTIONS(1070), + [anon_sym_CARET] = ACTIONS(1072), + [anon_sym_EQ_EQ] = ACTIONS(1074), + [anon_sym_BANG_EQ] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(1076), + [anon_sym_GT] = ACTIONS(1076), + [anon_sym_LT_EQ] = ACTIONS(1078), + [anon_sym_GT_EQ] = ACTIONS(1078), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_GT_GT] = ACTIONS(1080), + [anon_sym_PLUS] = ACTIONS(1082), + [anon_sym_DASH] = ACTIONS(1082), + [anon_sym_SLASH] = ACTIONS(1054), + [anon_sym_PERCENT] = ACTIONS(1054), + [anon_sym_DASH_DASH] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(216), + [anon_sym_DOT] = ACTIONS(218), + [anon_sym_DASH_GT] = ACTIONS(218), + [sym_comment] = ACTIONS(59), }, - [1093] = { - [sym_compound_statement] = STATE(1132), - [sym_labeled_statement] = STATE(1132), - [sym_expression_statement] = STATE(1132), - [sym_if_statement] = STATE(1132), - [sym_switch_statement] = STATE(1132), - [sym_case_statement] = STATE(1132), - [sym_while_statement] = STATE(1132), - [sym_do_statement] = STATE(1132), - [sym_for_statement] = STATE(1132), - [sym_return_statement] = STATE(1132), - [sym_break_statement] = STATE(1132), - [sym_continue_statement] = STATE(1132), - [sym_goto_statement] = STATE(1132), - [sym__expression] = STATE(594), - [sym_comma_expression] = STATE(595), - [sym_conditional_expression] = STATE(594), - [sym_assignment_expression] = STATE(594), - [sym_pointer_expression] = STATE(594), - [sym_logical_expression] = STATE(594), - [sym_bitwise_expression] = STATE(594), - [sym_equality_expression] = STATE(594), - [sym_relational_expression] = STATE(594), - [sym_shift_expression] = STATE(594), - [sym_math_expression] = STATE(594), - [sym_cast_expression] = STATE(594), - [sym_sizeof_expression] = STATE(594), - [sym_subscript_expression] = STATE(594), - [sym_call_expression] = STATE(594), - [sym_field_expression] = STATE(594), - [sym_compound_literal_expression] = STATE(594), - [sym_parenthesized_expression] = STATE(594), - [sym_char_literal] = STATE(594), - [sym_concatenated_string] = STATE(594), - [sym_string_literal] = STATE(230), - [anon_sym_SEMI] = ACTIONS(1395), - [anon_sym_LBRACE] = ACTIONS(678), - [anon_sym_LPAREN2] = ACTIONS(507), - [anon_sym_STAR] = ACTIONS(509), - [anon_sym_if] = ACTIONS(1397), - [anon_sym_switch] = ACTIONS(1399), - [anon_sym_case] = ACTIONS(1401), - [anon_sym_default] = ACTIONS(1403), - [anon_sym_while] = ACTIONS(1405), - [anon_sym_do] = ACTIONS(1407), - [anon_sym_for] = ACTIONS(1409), - [anon_sym_return] = ACTIONS(1411), - [anon_sym_break] = ACTIONS(1413), - [anon_sym_continue] = ACTIONS(1415), - [anon_sym_goto] = ACTIONS(1417), - [anon_sym_AMP] = ACTIONS(509), - [anon_sym_BANG] = ACTIONS(533), - [anon_sym_TILDE] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DASH] = ACTIONS(537), - [anon_sym_DASH_DASH] = ACTIONS(539), - [anon_sym_PLUS_PLUS] = ACTIONS(539), - [anon_sym_sizeof] = ACTIONS(541), - [sym_number_literal] = ACTIONS(1419), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(1421), - [sym_false] = ACTIONS(1421), - [sym_null] = ACTIONS(1421), - [sym_identifier] = ACTIONS(2535), - [sym_comment] = ACTIONS(37), + [1082] = { + [sym_declaration] = STATE(1011), + [sym_type_definition] = STATE(1011), + [sym__declaration_specifiers] = STATE(1012), + [sym_compound_statement] = STATE(1011), + [sym_storage_class_specifier] = STATE(142), + [sym_type_qualifier] = STATE(142), + [sym__type_specifier] = STATE(141), + [sym_sized_type_specifier] = STATE(141), + [sym_enum_specifier] = STATE(141), + [sym_struct_specifier] = STATE(141), + [sym_union_specifier] = STATE(141), + [sym_labeled_statement] = STATE(1011), + [sym_expression_statement] = STATE(1011), + [sym_if_statement] = STATE(1011), + [sym_switch_statement] = STATE(1011), + [sym_case_statement] = STATE(1011), + [sym_while_statement] = STATE(1011), + [sym_do_statement] = STATE(1011), + [sym_for_statement] = STATE(1011), + [sym_return_statement] = STATE(1011), + [sym_break_statement] = STATE(1011), + [sym_continue_statement] = STATE(1011), + [sym_goto_statement] = STATE(1011), + [sym__expression] = STATE(756), + [sym_comma_expression] = STATE(757), + [sym_conditional_expression] = STATE(756), + [sym_assignment_expression] = STATE(756), + [sym_pointer_expression] = STATE(756), + [sym_logical_expression] = STATE(756), + [sym_bitwise_expression] = STATE(756), + [sym_equality_expression] = STATE(756), + [sym_relational_expression] = STATE(756), + [sym_shift_expression] = STATE(756), + [sym_math_expression] = STATE(756), + [sym_cast_expression] = STATE(756), + [sym_sizeof_expression] = STATE(756), + [sym_subscript_expression] = STATE(756), + [sym_call_expression] = STATE(756), + [sym_field_expression] = STATE(756), + [sym_compound_literal_expression] = STATE(756), + [sym_parenthesized_expression] = STATE(756), + [sym_char_literal] = STATE(756), + [sym_concatenated_string] = STATE(756), + [sym_string_literal] = STATE(374), + [sym_macro_type_specifier] = STATE(141), + [aux_sym__declaration_specifiers_repeat1] = STATE(142), + [aux_sym_sized_type_specifier_repeat1] = STATE(143), + [anon_sym_SEMI] = ACTIONS(1940), + [anon_sym_typedef] = ACTIONS(267), + [anon_sym_extern] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_LPAREN2] = ACTIONS(936), + [anon_sym_STAR] = ACTIONS(938), + [anon_sym_static] = ACTIONS(25), + [anon_sym_auto] = ACTIONS(25), + [anon_sym_register] = ACTIONS(25), + [anon_sym_inline] = ACTIONS(25), + [anon_sym_const] = ACTIONS(27), + [anon_sym_restrict] = ACTIONS(27), + [anon_sym_volatile] = ACTIONS(27), + [anon_sym__Atomic] = ACTIONS(27), + [anon_sym_unsigned] = ACTIONS(294), + [anon_sym_long] = ACTIONS(294), + [anon_sym_short] = ACTIONS(294), + [sym_primitive_type] = ACTIONS(296), + [anon_sym_enum] = ACTIONS(33), + [anon_sym_struct] = ACTIONS(35), + [anon_sym_union] = ACTIONS(37), + [anon_sym_if] = ACTIONS(2752), + [anon_sym_switch] = ACTIONS(2754), + [anon_sym_case] = ACTIONS(2756), + [anon_sym_default] = ACTIONS(2758), + [anon_sym_while] = ACTIONS(2760), + [anon_sym_do] = ACTIONS(1962), + [anon_sym_for] = ACTIONS(2762), + [anon_sym_return] = ACTIONS(1966), + [anon_sym_break] = ACTIONS(1968), + [anon_sym_continue] = ACTIONS(1970), + [anon_sym_goto] = ACTIONS(1972), + [anon_sym_AMP] = ACTIONS(938), + [anon_sym_BANG] = ACTIONS(962), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_DASH_DASH] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(968), + [anon_sym_sizeof] = ACTIONS(970), + [sym_number_literal] = ACTIONS(1974), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(1976), + [sym_false] = ACTIONS(1976), + [sym_null] = ACTIONS(1976), + [sym_identifier] = ACTIONS(3178), + [sym_comment] = ACTIONS(59), }, - [1094] = { - [sym_argument_list] = STATE(430), - [aux_sym_for_statement_repeat1] = STATE(1134), - [anon_sym_COMMA] = ACTIONS(2344), - [anon_sym_RPAREN] = ACTIONS(3139), - [anon_sym_LPAREN2] = ACTIONS(1012), - [anon_sym_STAR] = ACTIONS(1437), - [anon_sym_LBRACK] = ACTIONS(1016), - [anon_sym_EQ] = ACTIONS(1439), - [anon_sym_QMARK] = ACTIONS(1441), - [anon_sym_STAR_EQ] = ACTIONS(1443), - [anon_sym_SLASH_EQ] = ACTIONS(1443), - [anon_sym_PERCENT_EQ] = ACTIONS(1443), - [anon_sym_PLUS_EQ] = ACTIONS(1443), - [anon_sym_DASH_EQ] = ACTIONS(1443), - [anon_sym_LT_LT_EQ] = ACTIONS(1443), - [anon_sym_GT_GT_EQ] = ACTIONS(1443), - [anon_sym_AMP_EQ] = ACTIONS(1443), - [anon_sym_CARET_EQ] = ACTIONS(1443), - [anon_sym_PIPE_EQ] = ACTIONS(1443), - [anon_sym_AMP] = ACTIONS(1445), - [anon_sym_PIPE_PIPE] = ACTIONS(1447), - [anon_sym_AMP_AMP] = ACTIONS(1449), - [anon_sym_PIPE] = ACTIONS(1451), - [anon_sym_CARET] = ACTIONS(1453), - [anon_sym_EQ_EQ] = ACTIONS(1455), - [anon_sym_BANG_EQ] = ACTIONS(1455), - [anon_sym_LT] = ACTIONS(1457), - [anon_sym_GT] = ACTIONS(1457), - [anon_sym_LT_EQ] = ACTIONS(1459), - [anon_sym_GT_EQ] = ACTIONS(1459), - [anon_sym_LT_LT] = ACTIONS(1461), - [anon_sym_GT_GT] = ACTIONS(1461), - [anon_sym_PLUS] = ACTIONS(1463), - [anon_sym_DASH] = ACTIONS(1463), - [anon_sym_SLASH] = ACTIONS(1437), - [anon_sym_PERCENT] = ACTIONS(1437), - [anon_sym_DASH_DASH] = ACTIONS(1044), - [anon_sym_PLUS_PLUS] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1046), - [anon_sym_DASH_GT] = ACTIONS(1046), - [sym_comment] = ACTIONS(37), + [1083] = { + [sym_compound_statement] = STATE(1013), + [sym_labeled_statement] = STATE(1013), + [sym_expression_statement] = STATE(1013), + [sym_if_statement] = STATE(1013), + [sym_switch_statement] = STATE(1013), + [sym_case_statement] = STATE(1013), + [sym_while_statement] = STATE(1013), + [sym_do_statement] = STATE(1013), + [sym_for_statement] = STATE(1013), + [sym_return_statement] = STATE(1013), + [sym_break_statement] = STATE(1013), + [sym_continue_statement] = STATE(1013), + [sym_goto_statement] = STATE(1013), + [sym__expression] = STATE(756), + [sym_comma_expression] = STATE(757), + [sym_conditional_expression] = STATE(756), + [sym_assignment_expression] = STATE(756), + [sym_pointer_expression] = STATE(756), + [sym_logical_expression] = STATE(756), + [sym_bitwise_expression] = STATE(756), + [sym_equality_expression] = STATE(756), + [sym_relational_expression] = STATE(756), + [sym_shift_expression] = STATE(756), + [sym_math_expression] = STATE(756), + [sym_cast_expression] = STATE(756), + [sym_sizeof_expression] = STATE(756), + [sym_subscript_expression] = STATE(756), + [sym_call_expression] = STATE(756), + [sym_field_expression] = STATE(756), + [sym_compound_literal_expression] = STATE(756), + [sym_parenthesized_expression] = STATE(756), + [sym_char_literal] = STATE(756), + [sym_concatenated_string] = STATE(756), + [sym_string_literal] = STATE(374), + [anon_sym_SEMI] = ACTIONS(1940), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_LPAREN2] = ACTIONS(936), + [anon_sym_STAR] = ACTIONS(938), + [anon_sym_if] = ACTIONS(2752), + [anon_sym_switch] = ACTIONS(2754), + [anon_sym_case] = ACTIONS(2756), + [anon_sym_default] = ACTIONS(2758), + [anon_sym_while] = ACTIONS(2760), + [anon_sym_do] = ACTIONS(1962), + [anon_sym_for] = ACTIONS(2762), + [anon_sym_return] = ACTIONS(1966), + [anon_sym_break] = ACTIONS(1968), + [anon_sym_continue] = ACTIONS(1970), + [anon_sym_goto] = ACTIONS(1972), + [anon_sym_AMP] = ACTIONS(938), + [anon_sym_BANG] = ACTIONS(962), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_DASH_DASH] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(968), + [anon_sym_sizeof] = ACTIONS(970), + [sym_number_literal] = ACTIONS(1974), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(1976), + [sym_false] = ACTIONS(1976), + [sym_null] = ACTIONS(1976), + [sym_identifier] = ACTIONS(2764), + [sym_comment] = ACTIONS(59), }, - [1095] = { + [1084] = { + [sym_declaration] = STATE(1134), + [sym__declaration_specifiers] = STATE(778), + [sym_storage_class_specifier] = STATE(142), + [sym_type_qualifier] = STATE(142), + [sym__type_specifier] = STATE(141), + [sym_sized_type_specifier] = STATE(141), + [sym_enum_specifier] = STATE(141), + [sym_struct_specifier] = STATE(141), + [sym_union_specifier] = STATE(141), [sym__expression] = STATE(1135), [sym_conditional_expression] = STATE(1135), [sym_assignment_expression] = STATE(1135), @@ -44786,328 +45322,424 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_parenthesized_expression] = STATE(1135), [sym_char_literal] = STATE(1135), [sym_concatenated_string] = STATE(1135), + [sym_string_literal] = STATE(534), + [sym_macro_type_specifier] = STATE(141), + [aux_sym__declaration_specifiers_repeat1] = STATE(142), + [aux_sym_sized_type_specifier_repeat1] = STATE(143), + [anon_sym_SEMI] = ACTIONS(3180), + [anon_sym_extern] = ACTIONS(25), + [anon_sym_LPAREN2] = ACTIONS(1349), + [anon_sym_STAR] = ACTIONS(1351), + [anon_sym_static] = ACTIONS(25), + [anon_sym_auto] = ACTIONS(25), + [anon_sym_register] = ACTIONS(25), + [anon_sym_inline] = ACTIONS(25), + [anon_sym_const] = ACTIONS(27), + [anon_sym_restrict] = ACTIONS(27), + [anon_sym_volatile] = ACTIONS(27), + [anon_sym__Atomic] = ACTIONS(27), + [anon_sym_unsigned] = ACTIONS(294), + [anon_sym_long] = ACTIONS(294), + [anon_sym_short] = ACTIONS(294), + [sym_primitive_type] = ACTIONS(296), + [anon_sym_enum] = ACTIONS(33), + [anon_sym_struct] = ACTIONS(35), + [anon_sym_union] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(1351), + [anon_sym_BANG] = ACTIONS(1353), + [anon_sym_TILDE] = ACTIONS(1355), + [anon_sym_PLUS] = ACTIONS(1357), + [anon_sym_DASH] = ACTIONS(1357), + [anon_sym_DASH_DASH] = ACTIONS(1359), + [anon_sym_PLUS_PLUS] = ACTIONS(1359), + [anon_sym_sizeof] = ACTIONS(1361), + [sym_number_literal] = ACTIONS(3182), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(3184), + [sym_false] = ACTIONS(3184), + [sym_null] = ACTIONS(3184), + [sym_identifier] = ACTIONS(2026), + [sym_comment] = ACTIONS(59), + }, + [1085] = { + [sym_compound_statement] = STATE(1019), + [sym_labeled_statement] = STATE(1019), + [sym_expression_statement] = STATE(1019), + [sym_if_statement] = STATE(1019), + [sym_switch_statement] = STATE(1019), + [sym_case_statement] = STATE(1019), + [sym_while_statement] = STATE(1019), + [sym_do_statement] = STATE(1019), + [sym_for_statement] = STATE(1019), + [sym_return_statement] = STATE(1019), + [sym_break_statement] = STATE(1019), + [sym_continue_statement] = STATE(1019), + [sym_goto_statement] = STATE(1019), + [sym__expression] = STATE(756), + [sym_comma_expression] = STATE(757), + [sym_conditional_expression] = STATE(756), + [sym_assignment_expression] = STATE(756), + [sym_pointer_expression] = STATE(756), + [sym_logical_expression] = STATE(756), + [sym_bitwise_expression] = STATE(756), + [sym_equality_expression] = STATE(756), + [sym_relational_expression] = STATE(756), + [sym_shift_expression] = STATE(756), + [sym_math_expression] = STATE(756), + [sym_cast_expression] = STATE(756), + [sym_sizeof_expression] = STATE(756), + [sym_subscript_expression] = STATE(756), + [sym_call_expression] = STATE(756), + [sym_field_expression] = STATE(756), + [sym_compound_literal_expression] = STATE(756), + [sym_parenthesized_expression] = STATE(756), + [sym_char_literal] = STATE(756), + [sym_concatenated_string] = STATE(756), [sym_string_literal] = STATE(374), - [anon_sym_RPAREN] = ACTIONS(3139), - [anon_sym_LPAREN2] = ACTIONS(892), - [anon_sym_STAR] = ACTIONS(894), - [anon_sym_AMP] = ACTIONS(894), - [anon_sym_BANG] = ACTIONS(896), - [anon_sym_TILDE] = ACTIONS(898), - [anon_sym_PLUS] = ACTIONS(900), - [anon_sym_DASH] = ACTIONS(900), - [anon_sym_DASH_DASH] = ACTIONS(902), - [anon_sym_PLUS_PLUS] = ACTIONS(902), - [anon_sym_sizeof] = ACTIONS(904), - [sym_number_literal] = ACTIONS(3141), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(3143), - [sym_false] = ACTIONS(3143), - [sym_null] = ACTIONS(3143), - [sym_identifier] = ACTIONS(3143), - [sym_comment] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(1940), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_LPAREN2] = ACTIONS(936), + [anon_sym_STAR] = ACTIONS(938), + [anon_sym_if] = ACTIONS(2752), + [anon_sym_switch] = ACTIONS(2754), + [anon_sym_case] = ACTIONS(2756), + [anon_sym_default] = ACTIONS(2758), + [anon_sym_while] = ACTIONS(2760), + [anon_sym_do] = ACTIONS(1962), + [anon_sym_for] = ACTIONS(2762), + [anon_sym_return] = ACTIONS(1966), + [anon_sym_break] = ACTIONS(1968), + [anon_sym_continue] = ACTIONS(1970), + [anon_sym_goto] = ACTIONS(1972), + [anon_sym_AMP] = ACTIONS(938), + [anon_sym_BANG] = ACTIONS(962), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_DASH_DASH] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(968), + [anon_sym_sizeof] = ACTIONS(970), + [sym_number_literal] = ACTIONS(1974), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(1976), + [sym_false] = ACTIONS(1976), + [sym_null] = ACTIONS(1976), + [sym_identifier] = ACTIONS(2764), + [sym_comment] = ACTIONS(59), }, - [1096] = { - [sym_argument_list] = STATE(430), - [anon_sym_SEMI] = ACTIONS(3145), - [anon_sym_LPAREN2] = ACTIONS(1012), - [anon_sym_STAR] = ACTIONS(1319), - [anon_sym_LBRACK] = ACTIONS(1016), - [anon_sym_EQ] = ACTIONS(1321), - [anon_sym_QMARK] = ACTIONS(1323), - [anon_sym_STAR_EQ] = ACTIONS(1325), - [anon_sym_SLASH_EQ] = ACTIONS(1325), - [anon_sym_PERCENT_EQ] = ACTIONS(1325), - [anon_sym_PLUS_EQ] = ACTIONS(1325), - [anon_sym_DASH_EQ] = ACTIONS(1325), - [anon_sym_LT_LT_EQ] = ACTIONS(1325), - [anon_sym_GT_GT_EQ] = ACTIONS(1325), - [anon_sym_AMP_EQ] = ACTIONS(1325), - [anon_sym_CARET_EQ] = ACTIONS(1325), - [anon_sym_PIPE_EQ] = ACTIONS(1325), - [anon_sym_AMP] = ACTIONS(1327), - [anon_sym_PIPE_PIPE] = ACTIONS(1329), - [anon_sym_AMP_AMP] = ACTIONS(1331), - [anon_sym_PIPE] = ACTIONS(1333), - [anon_sym_CARET] = ACTIONS(1335), - [anon_sym_EQ_EQ] = ACTIONS(1337), - [anon_sym_BANG_EQ] = ACTIONS(1337), - [anon_sym_LT] = ACTIONS(1339), - [anon_sym_GT] = ACTIONS(1339), - [anon_sym_LT_EQ] = ACTIONS(1341), - [anon_sym_GT_EQ] = ACTIONS(1341), - [anon_sym_LT_LT] = ACTIONS(1343), - [anon_sym_GT_GT] = ACTIONS(1343), - [anon_sym_PLUS] = ACTIONS(1345), - [anon_sym_DASH] = ACTIONS(1345), - [anon_sym_SLASH] = ACTIONS(1319), - [anon_sym_PERCENT] = ACTIONS(1319), - [anon_sym_DASH_DASH] = ACTIONS(1044), - [anon_sym_PLUS_PLUS] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1046), - [anon_sym_DASH_GT] = ACTIONS(1046), - [sym_comment] = ACTIONS(37), + [1086] = { + [sym_compound_statement] = STATE(1136), + [sym_labeled_statement] = STATE(1136), + [sym_expression_statement] = STATE(1136), + [sym_if_statement] = STATE(1136), + [sym_switch_statement] = STATE(1136), + [sym_case_statement] = STATE(1136), + [sym_while_statement] = STATE(1136), + [sym_do_statement] = STATE(1136), + [sym_for_statement] = STATE(1136), + [sym_return_statement] = STATE(1136), + [sym_break_statement] = STATE(1136), + [sym_continue_statement] = STATE(1136), + [sym_goto_statement] = STATE(1136), + [sym__expression] = STATE(756), + [sym_comma_expression] = STATE(757), + [sym_conditional_expression] = STATE(756), + [sym_assignment_expression] = STATE(756), + [sym_pointer_expression] = STATE(756), + [sym_logical_expression] = STATE(756), + [sym_bitwise_expression] = STATE(756), + [sym_equality_expression] = STATE(756), + [sym_relational_expression] = STATE(756), + [sym_shift_expression] = STATE(756), + [sym_math_expression] = STATE(756), + [sym_cast_expression] = STATE(756), + [sym_sizeof_expression] = STATE(756), + [sym_subscript_expression] = STATE(756), + [sym_call_expression] = STATE(756), + [sym_field_expression] = STATE(756), + [sym_compound_literal_expression] = STATE(756), + [sym_parenthesized_expression] = STATE(756), + [sym_char_literal] = STATE(756), + [sym_concatenated_string] = STATE(756), + [sym_string_literal] = STATE(374), + [anon_sym_SEMI] = ACTIONS(1940), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_LPAREN2] = ACTIONS(936), + [anon_sym_STAR] = ACTIONS(938), + [anon_sym_if] = ACTIONS(1952), + [anon_sym_switch] = ACTIONS(1954), + [anon_sym_case] = ACTIONS(1956), + [anon_sym_default] = ACTIONS(1958), + [anon_sym_while] = ACTIONS(1960), + [anon_sym_do] = ACTIONS(1962), + [anon_sym_for] = ACTIONS(1964), + [anon_sym_return] = ACTIONS(1966), + [anon_sym_break] = ACTIONS(1968), + [anon_sym_continue] = ACTIONS(1970), + [anon_sym_goto] = ACTIONS(1972), + [anon_sym_AMP] = ACTIONS(938), + [anon_sym_BANG] = ACTIONS(962), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_DASH_DASH] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(968), + [anon_sym_sizeof] = ACTIONS(970), + [sym_number_literal] = ACTIONS(1974), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(1976), + [sym_false] = ACTIONS(1976), + [sym_null] = ACTIONS(1976), + [sym_identifier] = ACTIONS(2766), + [sym_comment] = ACTIONS(59), }, - [1097] = { - [sym_compound_statement] = STATE(1060), - [sym_labeled_statement] = STATE(1060), - [sym_expression_statement] = STATE(1060), - [sym_if_statement] = STATE(1060), - [sym_switch_statement] = STATE(1060), - [sym_case_statement] = STATE(1060), - [sym_while_statement] = STATE(1060), - [sym_do_statement] = STATE(1060), - [sym_for_statement] = STATE(1060), - [sym_return_statement] = STATE(1060), - [sym_break_statement] = STATE(1060), - [sym_continue_statement] = STATE(1060), - [sym_goto_statement] = STATE(1060), - [sym__expression] = STATE(228), - [sym_comma_expression] = STATE(229), - [sym_conditional_expression] = STATE(228), - [sym_assignment_expression] = STATE(228), - [sym_pointer_expression] = STATE(228), - [sym_logical_expression] = STATE(228), - [sym_bitwise_expression] = STATE(228), - [sym_equality_expression] = STATE(228), - [sym_relational_expression] = STATE(228), - [sym_shift_expression] = STATE(228), - [sym_math_expression] = STATE(228), - [sym_cast_expression] = STATE(228), - [sym_sizeof_expression] = STATE(228), - [sym_subscript_expression] = STATE(228), - [sym_call_expression] = STATE(228), - [sym_field_expression] = STATE(228), - [sym_compound_literal_expression] = STATE(228), - [sym_parenthesized_expression] = STATE(228), - [sym_char_literal] = STATE(228), - [sym_concatenated_string] = STATE(228), - [sym_string_literal] = STATE(230), - [anon_sym_SEMI] = ACTIONS(503), - [anon_sym_LBRACE] = ACTIONS(229), - [anon_sym_LPAREN2] = ACTIONS(507), - [anon_sym_STAR] = ACTIONS(509), - [anon_sym_if] = ACTIONS(1475), - [anon_sym_switch] = ACTIONS(1477), - [anon_sym_case] = ACTIONS(1479), - [anon_sym_default] = ACTIONS(1481), - [anon_sym_while] = ACTIONS(1483), - [anon_sym_do] = ACTIONS(521), - [anon_sym_for] = ACTIONS(1485), - [anon_sym_return] = ACTIONS(525), - [anon_sym_break] = ACTIONS(527), - [anon_sym_continue] = ACTIONS(529), - [anon_sym_goto] = ACTIONS(531), - [anon_sym_AMP] = ACTIONS(509), - [anon_sym_BANG] = ACTIONS(533), - [anon_sym_TILDE] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DASH] = ACTIONS(537), - [anon_sym_DASH_DASH] = ACTIONS(539), - [anon_sym_PLUS_PLUS] = ACTIONS(539), - [anon_sym_sizeof] = ACTIONS(541), - [sym_number_literal] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(547), - [sym_false] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [sym_identifier] = ACTIONS(1487), - [sym_comment] = ACTIONS(37), + [1087] = { + [anon_sym_SEMI] = ACTIONS(2874), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2876), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2876), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2876), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2876), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2876), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2876), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2876), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2876), + [sym_preproc_directive] = ACTIONS(2876), + [anon_sym_typedef] = ACTIONS(2876), + [anon_sym_extern] = ACTIONS(2876), + [anon_sym_LBRACE] = ACTIONS(2874), + [anon_sym_LPAREN2] = ACTIONS(2874), + [anon_sym_STAR] = ACTIONS(2874), + [anon_sym_static] = ACTIONS(2876), + [anon_sym_auto] = ACTIONS(2876), + [anon_sym_register] = ACTIONS(2876), + [anon_sym_inline] = ACTIONS(2876), + [anon_sym_const] = ACTIONS(2876), + [anon_sym_restrict] = ACTIONS(2876), + [anon_sym_volatile] = ACTIONS(2876), + [anon_sym__Atomic] = ACTIONS(2876), + [anon_sym_unsigned] = ACTIONS(2876), + [anon_sym_long] = ACTIONS(2876), + [anon_sym_short] = ACTIONS(2876), + [sym_primitive_type] = ACTIONS(2876), + [anon_sym_enum] = ACTIONS(2876), + [anon_sym_struct] = ACTIONS(2876), + [anon_sym_union] = ACTIONS(2876), + [anon_sym_if] = ACTIONS(2876), + [anon_sym_else] = ACTIONS(2876), + [anon_sym_switch] = ACTIONS(2876), + [anon_sym_case] = ACTIONS(2876), + [anon_sym_default] = ACTIONS(2876), + [anon_sym_while] = ACTIONS(2876), + [anon_sym_do] = ACTIONS(2876), + [anon_sym_for] = ACTIONS(2876), + [anon_sym_return] = ACTIONS(2876), + [anon_sym_break] = ACTIONS(2876), + [anon_sym_continue] = ACTIONS(2876), + [anon_sym_goto] = ACTIONS(2876), + [anon_sym_AMP] = ACTIONS(2874), + [anon_sym_BANG] = ACTIONS(2874), + [anon_sym_TILDE] = ACTIONS(2874), + [anon_sym_PLUS] = ACTIONS(2876), + [anon_sym_DASH] = ACTIONS(2876), + [anon_sym_DASH_DASH] = ACTIONS(2874), + [anon_sym_PLUS_PLUS] = ACTIONS(2874), + [anon_sym_sizeof] = ACTIONS(2876), + [sym_number_literal] = ACTIONS(2874), + [anon_sym_SQUOTE] = ACTIONS(2874), + [anon_sym_DQUOTE] = ACTIONS(2874), + [sym_true] = ACTIONS(2876), + [sym_false] = ACTIONS(2876), + [sym_null] = ACTIONS(2876), + [sym_identifier] = ACTIONS(2876), + [sym_comment] = ACTIONS(59), }, - [1098] = { - [sym_argument_list] = STATE(430), - [aux_sym_for_statement_repeat1] = STATE(1138), - [anon_sym_COMMA] = ACTIONS(2344), - [anon_sym_RPAREN] = ACTIONS(3147), - [anon_sym_LPAREN2] = ACTIONS(1012), - [anon_sym_STAR] = ACTIONS(1437), - [anon_sym_LBRACK] = ACTIONS(1016), - [anon_sym_EQ] = ACTIONS(1439), - [anon_sym_QMARK] = ACTIONS(1441), - [anon_sym_STAR_EQ] = ACTIONS(1443), - [anon_sym_SLASH_EQ] = ACTIONS(1443), - [anon_sym_PERCENT_EQ] = ACTIONS(1443), - [anon_sym_PLUS_EQ] = ACTIONS(1443), - [anon_sym_DASH_EQ] = ACTIONS(1443), - [anon_sym_LT_LT_EQ] = ACTIONS(1443), - [anon_sym_GT_GT_EQ] = ACTIONS(1443), - [anon_sym_AMP_EQ] = ACTIONS(1443), - [anon_sym_CARET_EQ] = ACTIONS(1443), - [anon_sym_PIPE_EQ] = ACTIONS(1443), - [anon_sym_AMP] = ACTIONS(1445), - [anon_sym_PIPE_PIPE] = ACTIONS(1447), - [anon_sym_AMP_AMP] = ACTIONS(1449), - [anon_sym_PIPE] = ACTIONS(1451), - [anon_sym_CARET] = ACTIONS(1453), - [anon_sym_EQ_EQ] = ACTIONS(1455), - [anon_sym_BANG_EQ] = ACTIONS(1455), - [anon_sym_LT] = ACTIONS(1457), - [anon_sym_GT] = ACTIONS(1457), - [anon_sym_LT_EQ] = ACTIONS(1459), - [anon_sym_GT_EQ] = ACTIONS(1459), - [anon_sym_LT_LT] = ACTIONS(1461), - [anon_sym_GT_GT] = ACTIONS(1461), - [anon_sym_PLUS] = ACTIONS(1463), - [anon_sym_DASH] = ACTIONS(1463), - [anon_sym_SLASH] = ACTIONS(1437), - [anon_sym_PERCENT] = ACTIONS(1437), - [anon_sym_DASH_DASH] = ACTIONS(1044), - [anon_sym_PLUS_PLUS] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1046), - [anon_sym_DASH_GT] = ACTIONS(1046), - [sym_comment] = ACTIONS(37), + [1088] = { + [sym__expression] = STATE(1137), + [sym_comma_expression] = STATE(1138), + [sym_conditional_expression] = STATE(1137), + [sym_assignment_expression] = STATE(1137), + [sym_pointer_expression] = STATE(1137), + [sym_logical_expression] = STATE(1137), + [sym_bitwise_expression] = STATE(1137), + [sym_equality_expression] = STATE(1137), + [sym_relational_expression] = STATE(1137), + [sym_shift_expression] = STATE(1137), + [sym_math_expression] = STATE(1137), + [sym_cast_expression] = STATE(1137), + [sym_sizeof_expression] = STATE(1137), + [sym_subscript_expression] = STATE(1137), + [sym_call_expression] = STATE(1137), + [sym_field_expression] = STATE(1137), + [sym_compound_literal_expression] = STATE(1137), + [sym_parenthesized_expression] = STATE(1137), + [sym_char_literal] = STATE(1137), + [sym_concatenated_string] = STATE(1137), + [sym_string_literal] = STATE(55), + [anon_sym_LPAREN2] = ACTIONS(85), + [anon_sym_STAR] = ACTIONS(87), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_PLUS] = ACTIONS(97), + [anon_sym_DASH] = ACTIONS(97), + [anon_sym_DASH_DASH] = ACTIONS(99), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(101), + [sym_number_literal] = ACTIONS(3186), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(3188), + [sym_false] = ACTIONS(3188), + [sym_null] = ACTIONS(3188), + [sym_identifier] = ACTIONS(3188), + [sym_comment] = ACTIONS(59), }, - [1099] = { - [sym__expression] = STATE(1139), - [sym_conditional_expression] = STATE(1139), - [sym_assignment_expression] = STATE(1139), - [sym_pointer_expression] = STATE(1139), - [sym_logical_expression] = STATE(1139), - [sym_bitwise_expression] = STATE(1139), - [sym_equality_expression] = STATE(1139), - [sym_relational_expression] = STATE(1139), - [sym_shift_expression] = STATE(1139), - [sym_math_expression] = STATE(1139), - [sym_cast_expression] = STATE(1139), - [sym_sizeof_expression] = STATE(1139), - [sym_subscript_expression] = STATE(1139), - [sym_call_expression] = STATE(1139), - [sym_field_expression] = STATE(1139), - [sym_compound_literal_expression] = STATE(1139), - [sym_parenthesized_expression] = STATE(1139), - [sym_char_literal] = STATE(1139), - [sym_concatenated_string] = STATE(1139), - [sym_string_literal] = STATE(374), - [anon_sym_RPAREN] = ACTIONS(3147), - [anon_sym_LPAREN2] = ACTIONS(892), - [anon_sym_STAR] = ACTIONS(894), - [anon_sym_AMP] = ACTIONS(894), - [anon_sym_BANG] = ACTIONS(896), - [anon_sym_TILDE] = ACTIONS(898), - [anon_sym_PLUS] = ACTIONS(900), - [anon_sym_DASH] = ACTIONS(900), - [anon_sym_DASH_DASH] = ACTIONS(902), - [anon_sym_PLUS_PLUS] = ACTIONS(902), - [anon_sym_sizeof] = ACTIONS(904), - [sym_number_literal] = ACTIONS(3149), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(3151), - [sym_false] = ACTIONS(3151), - [sym_null] = ACTIONS(3151), - [sym_identifier] = ACTIONS(3151), - [sym_comment] = ACTIONS(37), + [1089] = { + [anon_sym_SEMI] = ACTIONS(2900), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2902), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2902), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2902), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2902), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2902), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2902), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2902), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2902), + [sym_preproc_directive] = ACTIONS(2902), + [anon_sym_typedef] = ACTIONS(2902), + [anon_sym_extern] = ACTIONS(2902), + [anon_sym_LBRACE] = ACTIONS(2900), + [anon_sym_LPAREN2] = ACTIONS(2900), + [anon_sym_STAR] = ACTIONS(2900), + [anon_sym_static] = ACTIONS(2902), + [anon_sym_auto] = ACTIONS(2902), + [anon_sym_register] = ACTIONS(2902), + [anon_sym_inline] = ACTIONS(2902), + [anon_sym_const] = ACTIONS(2902), + [anon_sym_restrict] = ACTIONS(2902), + [anon_sym_volatile] = ACTIONS(2902), + [anon_sym__Atomic] = ACTIONS(2902), + [anon_sym_unsigned] = ACTIONS(2902), + [anon_sym_long] = ACTIONS(2902), + [anon_sym_short] = ACTIONS(2902), + [sym_primitive_type] = ACTIONS(2902), + [anon_sym_enum] = ACTIONS(2902), + [anon_sym_struct] = ACTIONS(2902), + [anon_sym_union] = ACTIONS(2902), + [anon_sym_if] = ACTIONS(2902), + [anon_sym_else] = ACTIONS(2902), + [anon_sym_switch] = ACTIONS(2902), + [anon_sym_case] = ACTIONS(2902), + [anon_sym_default] = ACTIONS(2902), + [anon_sym_while] = ACTIONS(2902), + [anon_sym_do] = ACTIONS(2902), + [anon_sym_for] = ACTIONS(2902), + [anon_sym_return] = ACTIONS(2902), + [anon_sym_break] = ACTIONS(2902), + [anon_sym_continue] = ACTIONS(2902), + [anon_sym_goto] = ACTIONS(2902), + [anon_sym_AMP] = ACTIONS(2900), + [anon_sym_BANG] = ACTIONS(2900), + [anon_sym_TILDE] = ACTIONS(2900), + [anon_sym_PLUS] = ACTIONS(2902), + [anon_sym_DASH] = ACTIONS(2902), + [anon_sym_DASH_DASH] = ACTIONS(2900), + [anon_sym_PLUS_PLUS] = ACTIONS(2900), + [anon_sym_sizeof] = ACTIONS(2902), + [sym_number_literal] = ACTIONS(2900), + [anon_sym_SQUOTE] = ACTIONS(2900), + [anon_sym_DQUOTE] = ACTIONS(2900), + [sym_true] = ACTIONS(2902), + [sym_false] = ACTIONS(2902), + [sym_null] = ACTIONS(2902), + [sym_identifier] = ACTIONS(2902), + [sym_comment] = ACTIONS(59), }, - [1100] = { - [sym_argument_list] = STATE(430), - [anon_sym_SEMI] = ACTIONS(3153), - [anon_sym_LPAREN2] = ACTIONS(1012), - [anon_sym_STAR] = ACTIONS(1319), - [anon_sym_LBRACK] = ACTIONS(1016), - [anon_sym_EQ] = ACTIONS(1321), - [anon_sym_QMARK] = ACTIONS(1323), - [anon_sym_STAR_EQ] = ACTIONS(1325), - [anon_sym_SLASH_EQ] = ACTIONS(1325), - [anon_sym_PERCENT_EQ] = ACTIONS(1325), - [anon_sym_PLUS_EQ] = ACTIONS(1325), - [anon_sym_DASH_EQ] = ACTIONS(1325), - [anon_sym_LT_LT_EQ] = ACTIONS(1325), - [anon_sym_GT_GT_EQ] = ACTIONS(1325), - [anon_sym_AMP_EQ] = ACTIONS(1325), - [anon_sym_CARET_EQ] = ACTIONS(1325), - [anon_sym_PIPE_EQ] = ACTIONS(1325), - [anon_sym_AMP] = ACTIONS(1327), - [anon_sym_PIPE_PIPE] = ACTIONS(1329), - [anon_sym_AMP_AMP] = ACTIONS(1331), - [anon_sym_PIPE] = ACTIONS(1333), - [anon_sym_CARET] = ACTIONS(1335), - [anon_sym_EQ_EQ] = ACTIONS(1337), - [anon_sym_BANG_EQ] = ACTIONS(1337), - [anon_sym_LT] = ACTIONS(1339), - [anon_sym_GT] = ACTIONS(1339), - [anon_sym_LT_EQ] = ACTIONS(1341), - [anon_sym_GT_EQ] = ACTIONS(1341), - [anon_sym_LT_LT] = ACTIONS(1343), - [anon_sym_GT_GT] = ACTIONS(1343), - [anon_sym_PLUS] = ACTIONS(1345), - [anon_sym_DASH] = ACTIONS(1345), - [anon_sym_SLASH] = ACTIONS(1319), - [anon_sym_PERCENT] = ACTIONS(1319), - [anon_sym_DASH_DASH] = ACTIONS(1044), - [anon_sym_PLUS_PLUS] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1046), - [anon_sym_DASH_GT] = ACTIONS(1046), - [sym_comment] = ACTIONS(37), + [1090] = { + [sym__expression] = STATE(1140), + [sym_conditional_expression] = STATE(1140), + [sym_assignment_expression] = STATE(1140), + [sym_pointer_expression] = STATE(1140), + [sym_logical_expression] = STATE(1140), + [sym_bitwise_expression] = STATE(1140), + [sym_equality_expression] = STATE(1140), + [sym_relational_expression] = STATE(1140), + [sym_shift_expression] = STATE(1140), + [sym_math_expression] = STATE(1140), + [sym_cast_expression] = STATE(1140), + [sym_sizeof_expression] = STATE(1140), + [sym_subscript_expression] = STATE(1140), + [sym_call_expression] = STATE(1140), + [sym_field_expression] = STATE(1140), + [sym_compound_literal_expression] = STATE(1140), + [sym_parenthesized_expression] = STATE(1140), + [sym_char_literal] = STATE(1140), + [sym_concatenated_string] = STATE(1140), + [sym_string_literal] = STATE(55), + [anon_sym_RPAREN] = ACTIONS(3190), + [anon_sym_LPAREN2] = ACTIONS(85), + [anon_sym_STAR] = ACTIONS(87), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_PLUS] = ACTIONS(97), + [anon_sym_DASH] = ACTIONS(97), + [anon_sym_DASH_DASH] = ACTIONS(99), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(101), + [sym_number_literal] = ACTIONS(3192), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(3194), + [sym_false] = ACTIONS(3194), + [sym_null] = ACTIONS(3194), + [sym_identifier] = ACTIONS(3194), + [sym_comment] = ACTIONS(59), }, - [1101] = { - [sym_compound_statement] = STATE(970), - [sym_labeled_statement] = STATE(970), - [sym_expression_statement] = STATE(970), - [sym_if_statement] = STATE(970), - [sym_switch_statement] = STATE(970), - [sym_case_statement] = STATE(970), - [sym_while_statement] = STATE(970), - [sym_do_statement] = STATE(970), - [sym_for_statement] = STATE(970), - [sym_return_statement] = STATE(970), - [sym_break_statement] = STATE(970), - [sym_continue_statement] = STATE(970), - [sym_goto_statement] = STATE(970), - [sym__expression] = STATE(228), - [sym_comma_expression] = STATE(229), - [sym_conditional_expression] = STATE(228), - [sym_assignment_expression] = STATE(228), - [sym_pointer_expression] = STATE(228), - [sym_logical_expression] = STATE(228), - [sym_bitwise_expression] = STATE(228), - [sym_equality_expression] = STATE(228), - [sym_relational_expression] = STATE(228), - [sym_shift_expression] = STATE(228), - [sym_math_expression] = STATE(228), - [sym_cast_expression] = STATE(228), - [sym_sizeof_expression] = STATE(228), - [sym_subscript_expression] = STATE(228), - [sym_call_expression] = STATE(228), - [sym_field_expression] = STATE(228), - [sym_compound_literal_expression] = STATE(228), - [sym_parenthesized_expression] = STATE(228), - [sym_char_literal] = STATE(228), - [sym_concatenated_string] = STATE(228), - [sym_string_literal] = STATE(230), - [anon_sym_SEMI] = ACTIONS(503), - [anon_sym_LBRACE] = ACTIONS(229), - [anon_sym_LPAREN2] = ACTIONS(507), - [anon_sym_STAR] = ACTIONS(509), - [anon_sym_if] = ACTIONS(2286), - [anon_sym_switch] = ACTIONS(2288), - [anon_sym_case] = ACTIONS(2290), - [anon_sym_default] = ACTIONS(2292), - [anon_sym_while] = ACTIONS(2294), - [anon_sym_do] = ACTIONS(948), - [anon_sym_for] = ACTIONS(2296), - [anon_sym_return] = ACTIONS(525), - [anon_sym_break] = ACTIONS(527), - [anon_sym_continue] = ACTIONS(529), - [anon_sym_goto] = ACTIONS(531), - [anon_sym_AMP] = ACTIONS(509), - [anon_sym_BANG] = ACTIONS(533), - [anon_sym_TILDE] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DASH] = ACTIONS(537), - [anon_sym_DASH_DASH] = ACTIONS(539), - [anon_sym_PLUS_PLUS] = ACTIONS(539), - [anon_sym_sizeof] = ACTIONS(541), - [sym_number_literal] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(547), - [sym_false] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [sym_identifier] = ACTIONS(2298), - [sym_comment] = ACTIONS(37), + [1091] = { + [sym_argument_list] = STATE(98), + [anon_sym_SEMI] = ACTIONS(3196), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_LBRACK] = ACTIONS(188), + [anon_sym_EQ] = ACTIONS(1896), + [anon_sym_QMARK] = ACTIONS(1898), + [anon_sym_STAR_EQ] = ACTIONS(1900), + [anon_sym_SLASH_EQ] = ACTIONS(1900), + [anon_sym_PERCENT_EQ] = ACTIONS(1900), + [anon_sym_PLUS_EQ] = ACTIONS(1900), + [anon_sym_DASH_EQ] = ACTIONS(1900), + [anon_sym_LT_LT_EQ] = ACTIONS(1900), + [anon_sym_GT_GT_EQ] = ACTIONS(1900), + [anon_sym_AMP_EQ] = ACTIONS(1900), + [anon_sym_CARET_EQ] = ACTIONS(1900), + [anon_sym_PIPE_EQ] = ACTIONS(1900), + [anon_sym_AMP] = ACTIONS(1902), + [anon_sym_PIPE_PIPE] = ACTIONS(1904), + [anon_sym_AMP_AMP] = ACTIONS(1906), + [anon_sym_PIPE] = ACTIONS(1908), + [anon_sym_CARET] = ACTIONS(1910), + [anon_sym_EQ_EQ] = ACTIONS(1912), + [anon_sym_BANG_EQ] = ACTIONS(1912), + [anon_sym_LT] = ACTIONS(1914), + [anon_sym_GT] = ACTIONS(1914), + [anon_sym_LT_EQ] = ACTIONS(1916), + [anon_sym_GT_EQ] = ACTIONS(1916), + [anon_sym_LT_LT] = ACTIONS(1918), + [anon_sym_GT_GT] = ACTIONS(1918), + [anon_sym_PLUS] = ACTIONS(1920), + [anon_sym_DASH] = ACTIONS(1920), + [anon_sym_SLASH] = ACTIONS(1894), + [anon_sym_PERCENT] = ACTIONS(1894), + [anon_sym_DASH_DASH] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(216), + [anon_sym_DOT] = ACTIONS(218), + [anon_sym_DASH_GT] = ACTIONS(218), + [sym_comment] = ACTIONS(59), }, - [1102] = { + [1092] = { [sym__expression] = STATE(1142), [sym_conditional_expression] = STATE(1142), [sym_assignment_expression] = STATE(1142), @@ -45127,69 +45759,95 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_parenthesized_expression] = STATE(1142), [sym_char_literal] = STATE(1142), [sym_concatenated_string] = STATE(1142), - [sym_string_literal] = STATE(374), - [anon_sym_RPAREN] = ACTIONS(3155), - [anon_sym_LPAREN2] = ACTIONS(892), - [anon_sym_STAR] = ACTIONS(894), - [anon_sym_AMP] = ACTIONS(894), - [anon_sym_BANG] = ACTIONS(896), - [anon_sym_TILDE] = ACTIONS(898), - [anon_sym_PLUS] = ACTIONS(900), - [anon_sym_DASH] = ACTIONS(900), - [anon_sym_DASH_DASH] = ACTIONS(902), - [anon_sym_PLUS_PLUS] = ACTIONS(902), - [anon_sym_sizeof] = ACTIONS(904), - [sym_number_literal] = ACTIONS(3157), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(3159), - [sym_false] = ACTIONS(3159), - [sym_null] = ACTIONS(3159), - [sym_identifier] = ACTIONS(3159), - [sym_comment] = ACTIONS(37), + [sym_string_literal] = STATE(534), + [anon_sym_SEMI] = ACTIONS(3196), + [anon_sym_LPAREN2] = ACTIONS(1349), + [anon_sym_STAR] = ACTIONS(1351), + [anon_sym_AMP] = ACTIONS(1351), + [anon_sym_BANG] = ACTIONS(1353), + [anon_sym_TILDE] = ACTIONS(1355), + [anon_sym_PLUS] = ACTIONS(1357), + [anon_sym_DASH] = ACTIONS(1357), + [anon_sym_DASH_DASH] = ACTIONS(1359), + [anon_sym_PLUS_PLUS] = ACTIONS(1359), + [anon_sym_sizeof] = ACTIONS(1361), + [sym_number_literal] = ACTIONS(3198), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(3200), + [sym_false] = ACTIONS(3200), + [sym_null] = ACTIONS(3200), + [sym_identifier] = ACTIONS(3200), + [sym_comment] = ACTIONS(59), }, - [1103] = { - [sym_argument_list] = STATE(430), - [anon_sym_SEMI] = ACTIONS(3161), - [anon_sym_LPAREN2] = ACTIONS(1012), - [anon_sym_STAR] = ACTIONS(1319), - [anon_sym_LBRACK] = ACTIONS(1016), - [anon_sym_EQ] = ACTIONS(1321), - [anon_sym_QMARK] = ACTIONS(1323), - [anon_sym_STAR_EQ] = ACTIONS(1325), - [anon_sym_SLASH_EQ] = ACTIONS(1325), - [anon_sym_PERCENT_EQ] = ACTIONS(1325), - [anon_sym_PLUS_EQ] = ACTIONS(1325), - [anon_sym_DASH_EQ] = ACTIONS(1325), - [anon_sym_LT_LT_EQ] = ACTIONS(1325), - [anon_sym_GT_GT_EQ] = ACTIONS(1325), - [anon_sym_AMP_EQ] = ACTIONS(1325), - [anon_sym_CARET_EQ] = ACTIONS(1325), - [anon_sym_PIPE_EQ] = ACTIONS(1325), - [anon_sym_AMP] = ACTIONS(1327), - [anon_sym_PIPE_PIPE] = ACTIONS(1329), - [anon_sym_AMP_AMP] = ACTIONS(1331), - [anon_sym_PIPE] = ACTIONS(1333), - [anon_sym_CARET] = ACTIONS(1335), - [anon_sym_EQ_EQ] = ACTIONS(1337), - [anon_sym_BANG_EQ] = ACTIONS(1337), - [anon_sym_LT] = ACTIONS(1339), - [anon_sym_GT] = ACTIONS(1339), - [anon_sym_LT_EQ] = ACTIONS(1341), - [anon_sym_GT_EQ] = ACTIONS(1341), - [anon_sym_LT_LT] = ACTIONS(1343), - [anon_sym_GT_GT] = ACTIONS(1343), - [anon_sym_PLUS] = ACTIONS(1345), - [anon_sym_DASH] = ACTIONS(1345), - [anon_sym_SLASH] = ACTIONS(1319), - [anon_sym_PERCENT] = ACTIONS(1319), - [anon_sym_DASH_DASH] = ACTIONS(1044), - [anon_sym_PLUS_PLUS] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1046), - [anon_sym_DASH_GT] = ACTIONS(1046), - [sym_comment] = ACTIONS(37), + [1093] = { + [sym_compound_statement] = STATE(1027), + [sym_labeled_statement] = STATE(1027), + [sym_expression_statement] = STATE(1027), + [sym_if_statement] = STATE(1027), + [sym_switch_statement] = STATE(1027), + [sym_case_statement] = STATE(1027), + [sym_while_statement] = STATE(1027), + [sym_do_statement] = STATE(1027), + [sym_for_statement] = STATE(1027), + [sym_return_statement] = STATE(1027), + [sym_break_statement] = STATE(1027), + [sym_continue_statement] = STATE(1027), + [sym_goto_statement] = STATE(1027), + [sym__expression] = STATE(372), + [sym_comma_expression] = STATE(373), + [sym_conditional_expression] = STATE(372), + [sym_assignment_expression] = STATE(372), + [sym_pointer_expression] = STATE(372), + [sym_logical_expression] = STATE(372), + [sym_bitwise_expression] = STATE(372), + [sym_equality_expression] = STATE(372), + [sym_relational_expression] = STATE(372), + [sym_shift_expression] = STATE(372), + [sym_math_expression] = STATE(372), + [sym_cast_expression] = STATE(372), + [sym_sizeof_expression] = STATE(372), + [sym_subscript_expression] = STATE(372), + [sym_call_expression] = STATE(372), + [sym_field_expression] = STATE(372), + [sym_compound_literal_expression] = STATE(372), + [sym_parenthesized_expression] = STATE(372), + [sym_char_literal] = STATE(372), + [sym_concatenated_string] = STATE(372), + [sym_string_literal] = STATE(374), + [anon_sym_SEMI] = ACTIONS(928), + [anon_sym_LBRACE] = ACTIONS(439), + [anon_sym_LPAREN2] = ACTIONS(936), + [anon_sym_STAR] = ACTIONS(938), + [anon_sym_if] = ACTIONS(1988), + [anon_sym_switch] = ACTIONS(1990), + [anon_sym_case] = ACTIONS(1992), + [anon_sym_default] = ACTIONS(1994), + [anon_sym_while] = ACTIONS(1996), + [anon_sym_do] = ACTIONS(950), + [anon_sym_for] = ACTIONS(1998), + [anon_sym_return] = ACTIONS(954), + [anon_sym_break] = ACTIONS(956), + [anon_sym_continue] = ACTIONS(958), + [anon_sym_goto] = ACTIONS(960), + [anon_sym_AMP] = ACTIONS(938), + [anon_sym_BANG] = ACTIONS(962), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_DASH_DASH] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(968), + [anon_sym_sizeof] = ACTIONS(970), + [sym_number_literal] = ACTIONS(972), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(974), + [sym_false] = ACTIONS(974), + [sym_null] = ACTIONS(974), + [sym_identifier] = ACTIONS(2000), + [sym_comment] = ACTIONS(59), }, - [1104] = { + [1094] = { [sym__expression] = STATE(1144), [sym_conditional_expression] = STATE(1144), [sym_assignment_expression] = STATE(1144), @@ -45209,2048 +45867,2212 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_parenthesized_expression] = STATE(1144), [sym_char_literal] = STATE(1144), [sym_concatenated_string] = STATE(1144), - [sym_string_literal] = STATE(342), - [anon_sym_SEMI] = ACTIONS(3161), - [anon_sym_LPAREN2] = ACTIONS(780), - [anon_sym_STAR] = ACTIONS(782), - [anon_sym_AMP] = ACTIONS(782), - [anon_sym_BANG] = ACTIONS(784), - [anon_sym_TILDE] = ACTIONS(786), - [anon_sym_PLUS] = ACTIONS(788), - [anon_sym_DASH] = ACTIONS(788), - [anon_sym_DASH_DASH] = ACTIONS(790), - [anon_sym_PLUS_PLUS] = ACTIONS(790), - [anon_sym_sizeof] = ACTIONS(792), - [sym_number_literal] = ACTIONS(3163), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(3165), - [sym_false] = ACTIONS(3165), - [sym_null] = ACTIONS(3165), - [sym_identifier] = ACTIONS(3165), - [sym_comment] = ACTIONS(37), + [sym_string_literal] = STATE(55), + [anon_sym_RPAREN] = ACTIONS(3202), + [anon_sym_LPAREN2] = ACTIONS(85), + [anon_sym_STAR] = ACTIONS(87), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_PLUS] = ACTIONS(97), + [anon_sym_DASH] = ACTIONS(97), + [anon_sym_DASH_DASH] = ACTIONS(99), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(101), + [sym_number_literal] = ACTIONS(3204), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(3206), + [sym_false] = ACTIONS(3206), + [sym_null] = ACTIONS(3206), + [sym_identifier] = ACTIONS(3206), + [sym_comment] = ACTIONS(59), + }, + [1095] = { + [sym_argument_list] = STATE(98), + [anon_sym_SEMI] = ACTIONS(3208), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_LBRACK] = ACTIONS(188), + [anon_sym_EQ] = ACTIONS(1896), + [anon_sym_QMARK] = ACTIONS(1898), + [anon_sym_STAR_EQ] = ACTIONS(1900), + [anon_sym_SLASH_EQ] = ACTIONS(1900), + [anon_sym_PERCENT_EQ] = ACTIONS(1900), + [anon_sym_PLUS_EQ] = ACTIONS(1900), + [anon_sym_DASH_EQ] = ACTIONS(1900), + [anon_sym_LT_LT_EQ] = ACTIONS(1900), + [anon_sym_GT_GT_EQ] = ACTIONS(1900), + [anon_sym_AMP_EQ] = ACTIONS(1900), + [anon_sym_CARET_EQ] = ACTIONS(1900), + [anon_sym_PIPE_EQ] = ACTIONS(1900), + [anon_sym_AMP] = ACTIONS(1902), + [anon_sym_PIPE_PIPE] = ACTIONS(1904), + [anon_sym_AMP_AMP] = ACTIONS(1906), + [anon_sym_PIPE] = ACTIONS(1908), + [anon_sym_CARET] = ACTIONS(1910), + [anon_sym_EQ_EQ] = ACTIONS(1912), + [anon_sym_BANG_EQ] = ACTIONS(1912), + [anon_sym_LT] = ACTIONS(1914), + [anon_sym_GT] = ACTIONS(1914), + [anon_sym_LT_EQ] = ACTIONS(1916), + [anon_sym_GT_EQ] = ACTIONS(1916), + [anon_sym_LT_LT] = ACTIONS(1918), + [anon_sym_GT_GT] = ACTIONS(1918), + [anon_sym_PLUS] = ACTIONS(1920), + [anon_sym_DASH] = ACTIONS(1920), + [anon_sym_SLASH] = ACTIONS(1894), + [anon_sym_PERCENT] = ACTIONS(1894), + [anon_sym_DASH_DASH] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(216), + [anon_sym_DOT] = ACTIONS(218), + [anon_sym_DASH_GT] = ACTIONS(218), + [sym_comment] = ACTIONS(59), + }, + [1096] = { + [sym__expression] = STATE(1146), + [sym_conditional_expression] = STATE(1146), + [sym_assignment_expression] = STATE(1146), + [sym_pointer_expression] = STATE(1146), + [sym_logical_expression] = STATE(1146), + [sym_bitwise_expression] = STATE(1146), + [sym_equality_expression] = STATE(1146), + [sym_relational_expression] = STATE(1146), + [sym_shift_expression] = STATE(1146), + [sym_math_expression] = STATE(1146), + [sym_cast_expression] = STATE(1146), + [sym_sizeof_expression] = STATE(1146), + [sym_subscript_expression] = STATE(1146), + [sym_call_expression] = STATE(1146), + [sym_field_expression] = STATE(1146), + [sym_compound_literal_expression] = STATE(1146), + [sym_parenthesized_expression] = STATE(1146), + [sym_char_literal] = STATE(1146), + [sym_concatenated_string] = STATE(1146), + [sym_string_literal] = STATE(534), + [anon_sym_SEMI] = ACTIONS(3208), + [anon_sym_LPAREN2] = ACTIONS(1349), + [anon_sym_STAR] = ACTIONS(1351), + [anon_sym_AMP] = ACTIONS(1351), + [anon_sym_BANG] = ACTIONS(1353), + [anon_sym_TILDE] = ACTIONS(1355), + [anon_sym_PLUS] = ACTIONS(1357), + [anon_sym_DASH] = ACTIONS(1357), + [anon_sym_DASH_DASH] = ACTIONS(1359), + [anon_sym_PLUS_PLUS] = ACTIONS(1359), + [anon_sym_sizeof] = ACTIONS(1361), + [sym_number_literal] = ACTIONS(3210), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(3212), + [sym_false] = ACTIONS(3212), + [sym_null] = ACTIONS(3212), + [sym_identifier] = ACTIONS(3212), + [sym_comment] = ACTIONS(59), + }, + [1097] = { + [anon_sym_else] = ACTIONS(3214), + [anon_sym_while] = ACTIONS(2569), + [sym_comment] = ACTIONS(59), + }, + [1098] = { + [sym_declaration] = STATE(935), + [sym_type_definition] = STATE(935), + [sym__declaration_specifiers] = STATE(778), + [sym_compound_statement] = STATE(935), + [sym_storage_class_specifier] = STATE(142), + [sym_type_qualifier] = STATE(142), + [sym__type_specifier] = STATE(141), + [sym_sized_type_specifier] = STATE(141), + [sym_enum_specifier] = STATE(141), + [sym_struct_specifier] = STATE(141), + [sym_union_specifier] = STATE(141), + [sym_labeled_statement] = STATE(935), + [sym_expression_statement] = STATE(935), + [sym_if_statement] = STATE(935), + [sym_switch_statement] = STATE(935), + [sym_case_statement] = STATE(935), + [sym_while_statement] = STATE(935), + [sym_do_statement] = STATE(935), + [sym_for_statement] = STATE(935), + [sym_return_statement] = STATE(935), + [sym_break_statement] = STATE(935), + [sym_continue_statement] = STATE(935), + [sym_goto_statement] = STATE(935), + [sym__expression] = STATE(372), + [sym_comma_expression] = STATE(373), + [sym_conditional_expression] = STATE(372), + [sym_assignment_expression] = STATE(372), + [sym_pointer_expression] = STATE(372), + [sym_logical_expression] = STATE(372), + [sym_bitwise_expression] = STATE(372), + [sym_equality_expression] = STATE(372), + [sym_relational_expression] = STATE(372), + [sym_shift_expression] = STATE(372), + [sym_math_expression] = STATE(372), + [sym_cast_expression] = STATE(372), + [sym_sizeof_expression] = STATE(372), + [sym_subscript_expression] = STATE(372), + [sym_call_expression] = STATE(372), + [sym_field_expression] = STATE(372), + [sym_compound_literal_expression] = STATE(372), + [sym_parenthesized_expression] = STATE(372), + [sym_char_literal] = STATE(372), + [sym_concatenated_string] = STATE(372), + [sym_string_literal] = STATE(374), + [sym_macro_type_specifier] = STATE(141), + [aux_sym__declaration_specifiers_repeat1] = STATE(142), + [aux_sym_sized_type_specifier_repeat1] = STATE(143), + [anon_sym_SEMI] = ACTIONS(928), + [anon_sym_typedef] = ACTIONS(17), + [anon_sym_extern] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(439), + [anon_sym_LPAREN2] = ACTIONS(936), + [anon_sym_STAR] = ACTIONS(938), + [anon_sym_static] = ACTIONS(25), + [anon_sym_auto] = ACTIONS(25), + [anon_sym_register] = ACTIONS(25), + [anon_sym_inline] = ACTIONS(25), + [anon_sym_const] = ACTIONS(27), + [anon_sym_restrict] = ACTIONS(27), + [anon_sym_volatile] = ACTIONS(27), + [anon_sym__Atomic] = ACTIONS(27), + [anon_sym_unsigned] = ACTIONS(294), + [anon_sym_long] = ACTIONS(294), + [anon_sym_short] = ACTIONS(294), + [sym_primitive_type] = ACTIONS(296), + [anon_sym_enum] = ACTIONS(33), + [anon_sym_struct] = ACTIONS(35), + [anon_sym_union] = ACTIONS(37), + [anon_sym_if] = ACTIONS(2587), + [anon_sym_switch] = ACTIONS(2589), + [anon_sym_case] = ACTIONS(2591), + [anon_sym_default] = ACTIONS(2593), + [anon_sym_while] = ACTIONS(2595), + [anon_sym_do] = ACTIONS(1466), + [anon_sym_for] = ACTIONS(2597), + [anon_sym_return] = ACTIONS(954), + [anon_sym_break] = ACTIONS(956), + [anon_sym_continue] = ACTIONS(958), + [anon_sym_goto] = ACTIONS(960), + [anon_sym_AMP] = ACTIONS(938), + [anon_sym_BANG] = ACTIONS(962), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_DASH_DASH] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(968), + [anon_sym_sizeof] = ACTIONS(970), + [sym_number_literal] = ACTIONS(972), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(974), + [sym_false] = ACTIONS(974), + [sym_null] = ACTIONS(974), + [sym_identifier] = ACTIONS(3112), + [sym_comment] = ACTIONS(59), + }, + [1099] = { + [anon_sym_SEMI] = ACTIONS(166), + [anon_sym_COMMA] = ACTIONS(166), + [anon_sym_extern] = ACTIONS(157), + [anon_sym_LPAREN2] = ACTIONS(159), + [anon_sym_STAR] = ACTIONS(163), + [anon_sym_LBRACK] = ACTIONS(166), + [anon_sym_EQ] = ACTIONS(168), + [anon_sym_static] = ACTIONS(157), + [anon_sym_auto] = ACTIONS(157), + [anon_sym_register] = ACTIONS(157), + [anon_sym_inline] = ACTIONS(157), + [anon_sym_const] = ACTIONS(157), + [anon_sym_restrict] = ACTIONS(157), + [anon_sym_volatile] = ACTIONS(157), + [anon_sym__Atomic] = ACTIONS(157), + [anon_sym_COLON] = ACTIONS(2886), + [anon_sym_QMARK] = ACTIONS(166), + [anon_sym_STAR_EQ] = ACTIONS(166), + [anon_sym_SLASH_EQ] = ACTIONS(166), + [anon_sym_PERCENT_EQ] = ACTIONS(166), + [anon_sym_PLUS_EQ] = ACTIONS(166), + [anon_sym_DASH_EQ] = ACTIONS(166), + [anon_sym_LT_LT_EQ] = ACTIONS(166), + [anon_sym_GT_GT_EQ] = ACTIONS(166), + [anon_sym_AMP_EQ] = ACTIONS(166), + [anon_sym_CARET_EQ] = ACTIONS(166), + [anon_sym_PIPE_EQ] = ACTIONS(166), + [anon_sym_AMP] = ACTIONS(168), + [anon_sym_PIPE_PIPE] = ACTIONS(166), + [anon_sym_AMP_AMP] = ACTIONS(166), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_CARET] = ACTIONS(168), + [anon_sym_EQ_EQ] = ACTIONS(166), + [anon_sym_BANG_EQ] = ACTIONS(166), + [anon_sym_LT] = ACTIONS(168), + [anon_sym_GT] = ACTIONS(168), + [anon_sym_LT_EQ] = ACTIONS(166), + [anon_sym_GT_EQ] = ACTIONS(166), + [anon_sym_LT_LT] = ACTIONS(168), + [anon_sym_GT_GT] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(168), + [anon_sym_DASH] = ACTIONS(168), + [anon_sym_SLASH] = ACTIONS(168), + [anon_sym_PERCENT] = ACTIONS(168), + [anon_sym_DASH_DASH] = ACTIONS(166), + [anon_sym_PLUS_PLUS] = ACTIONS(166), + [anon_sym_DOT] = ACTIONS(166), + [anon_sym_DASH_GT] = ACTIONS(166), + [sym_identifier] = ACTIONS(157), + [sym_comment] = ACTIONS(59), + }, + [1100] = { + [sym__expression] = STATE(1149), + [sym_conditional_expression] = STATE(1149), + [sym_assignment_expression] = STATE(1149), + [sym_pointer_expression] = STATE(1149), + [sym_logical_expression] = STATE(1149), + [sym_bitwise_expression] = STATE(1149), + [sym_equality_expression] = STATE(1149), + [sym_relational_expression] = STATE(1149), + [sym_shift_expression] = STATE(1149), + [sym_math_expression] = STATE(1149), + [sym_cast_expression] = STATE(1149), + [sym_sizeof_expression] = STATE(1149), + [sym_subscript_expression] = STATE(1149), + [sym_call_expression] = STATE(1149), + [sym_field_expression] = STATE(1149), + [sym_compound_literal_expression] = STATE(1149), + [sym_parenthesized_expression] = STATE(1149), + [sym_char_literal] = STATE(1149), + [sym_concatenated_string] = STATE(1149), + [sym_string_literal] = STATE(534), + [anon_sym_SEMI] = ACTIONS(3216), + [anon_sym_LPAREN2] = ACTIONS(1349), + [anon_sym_STAR] = ACTIONS(1351), + [anon_sym_AMP] = ACTIONS(1351), + [anon_sym_BANG] = ACTIONS(1353), + [anon_sym_TILDE] = ACTIONS(1355), + [anon_sym_PLUS] = ACTIONS(1357), + [anon_sym_DASH] = ACTIONS(1357), + [anon_sym_DASH_DASH] = ACTIONS(1359), + [anon_sym_PLUS_PLUS] = ACTIONS(1359), + [anon_sym_sizeof] = ACTIONS(1361), + [sym_number_literal] = ACTIONS(3218), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(3220), + [sym_false] = ACTIONS(3220), + [sym_null] = ACTIONS(3220), + [sym_identifier] = ACTIONS(3220), + [sym_comment] = ACTIONS(59), + }, + [1101] = { + [sym_argument_list] = STATE(98), + [anon_sym_SEMI] = ACTIONS(3222), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_LBRACK] = ACTIONS(188), + [anon_sym_EQ] = ACTIONS(1896), + [anon_sym_QMARK] = ACTIONS(1898), + [anon_sym_STAR_EQ] = ACTIONS(1900), + [anon_sym_SLASH_EQ] = ACTIONS(1900), + [anon_sym_PERCENT_EQ] = ACTIONS(1900), + [anon_sym_PLUS_EQ] = ACTIONS(1900), + [anon_sym_DASH_EQ] = ACTIONS(1900), + [anon_sym_LT_LT_EQ] = ACTIONS(1900), + [anon_sym_GT_GT_EQ] = ACTIONS(1900), + [anon_sym_AMP_EQ] = ACTIONS(1900), + [anon_sym_CARET_EQ] = ACTIONS(1900), + [anon_sym_PIPE_EQ] = ACTIONS(1900), + [anon_sym_AMP] = ACTIONS(1902), + [anon_sym_PIPE_PIPE] = ACTIONS(1904), + [anon_sym_AMP_AMP] = ACTIONS(1906), + [anon_sym_PIPE] = ACTIONS(1908), + [anon_sym_CARET] = ACTIONS(1910), + [anon_sym_EQ_EQ] = ACTIONS(1912), + [anon_sym_BANG_EQ] = ACTIONS(1912), + [anon_sym_LT] = ACTIONS(1914), + [anon_sym_GT] = ACTIONS(1914), + [anon_sym_LT_EQ] = ACTIONS(1916), + [anon_sym_GT_EQ] = ACTIONS(1916), + [anon_sym_LT_LT] = ACTIONS(1918), + [anon_sym_GT_GT] = ACTIONS(1918), + [anon_sym_PLUS] = ACTIONS(1920), + [anon_sym_DASH] = ACTIONS(1920), + [anon_sym_SLASH] = ACTIONS(1894), + [anon_sym_PERCENT] = ACTIONS(1894), + [anon_sym_DASH_DASH] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(216), + [anon_sym_DOT] = ACTIONS(218), + [anon_sym_DASH_GT] = ACTIONS(218), + [sym_comment] = ACTIONS(59), + }, + [1102] = { + [sym_compound_statement] = STATE(1106), + [sym_labeled_statement] = STATE(1106), + [sym_expression_statement] = STATE(1106), + [sym_if_statement] = STATE(1106), + [sym_switch_statement] = STATE(1106), + [sym_case_statement] = STATE(1106), + [sym_while_statement] = STATE(1106), + [sym_do_statement] = STATE(1106), + [sym_for_statement] = STATE(1106), + [sym_return_statement] = STATE(1106), + [sym_break_statement] = STATE(1106), + [sym_continue_statement] = STATE(1106), + [sym_goto_statement] = STATE(1106), + [sym__expression] = STATE(372), + [sym_comma_expression] = STATE(373), + [sym_conditional_expression] = STATE(372), + [sym_assignment_expression] = STATE(372), + [sym_pointer_expression] = STATE(372), + [sym_logical_expression] = STATE(372), + [sym_bitwise_expression] = STATE(372), + [sym_equality_expression] = STATE(372), + [sym_relational_expression] = STATE(372), + [sym_shift_expression] = STATE(372), + [sym_math_expression] = STATE(372), + [sym_cast_expression] = STATE(372), + [sym_sizeof_expression] = STATE(372), + [sym_subscript_expression] = STATE(372), + [sym_call_expression] = STATE(372), + [sym_field_expression] = STATE(372), + [sym_compound_literal_expression] = STATE(372), + [sym_parenthesized_expression] = STATE(372), + [sym_char_literal] = STATE(372), + [sym_concatenated_string] = STATE(372), + [sym_string_literal] = STATE(374), + [anon_sym_SEMI] = ACTIONS(928), + [anon_sym_LBRACE] = ACTIONS(439), + [anon_sym_LPAREN2] = ACTIONS(936), + [anon_sym_STAR] = ACTIONS(938), + [anon_sym_if] = ACTIONS(1456), + [anon_sym_switch] = ACTIONS(1458), + [anon_sym_case] = ACTIONS(1460), + [anon_sym_default] = ACTIONS(1462), + [anon_sym_while] = ACTIONS(1464), + [anon_sym_do] = ACTIONS(1466), + [anon_sym_for] = ACTIONS(1468), + [anon_sym_return] = ACTIONS(954), + [anon_sym_break] = ACTIONS(956), + [anon_sym_continue] = ACTIONS(958), + [anon_sym_goto] = ACTIONS(960), + [anon_sym_AMP] = ACTIONS(938), + [anon_sym_BANG] = ACTIONS(962), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_DASH_DASH] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(968), + [anon_sym_sizeof] = ACTIONS(970), + [sym_number_literal] = ACTIONS(972), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(974), + [sym_false] = ACTIONS(974), + [sym_null] = ACTIONS(974), + [sym_identifier] = ACTIONS(1470), + [sym_comment] = ACTIONS(59), + }, + [1103] = { + [sym_argument_list] = STATE(98), + [aux_sym_for_statement_repeat1] = STATE(1152), + [anon_sym_COMMA] = ACTIONS(1002), + [anon_sym_RPAREN] = ACTIONS(3224), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(319), + [anon_sym_LBRACK] = ACTIONS(188), + [anon_sym_EQ] = ACTIONS(321), + [anon_sym_QMARK] = ACTIONS(323), + [anon_sym_STAR_EQ] = ACTIONS(325), + [anon_sym_SLASH_EQ] = ACTIONS(325), + [anon_sym_PERCENT_EQ] = ACTIONS(325), + [anon_sym_PLUS_EQ] = ACTIONS(325), + [anon_sym_DASH_EQ] = ACTIONS(325), + [anon_sym_LT_LT_EQ] = ACTIONS(325), + [anon_sym_GT_GT_EQ] = ACTIONS(325), + [anon_sym_AMP_EQ] = ACTIONS(325), + [anon_sym_CARET_EQ] = ACTIONS(325), + [anon_sym_PIPE_EQ] = ACTIONS(325), + [anon_sym_AMP] = ACTIONS(327), + [anon_sym_PIPE_PIPE] = ACTIONS(329), + [anon_sym_AMP_AMP] = ACTIONS(331), + [anon_sym_PIPE] = ACTIONS(333), + [anon_sym_CARET] = ACTIONS(335), + [anon_sym_EQ_EQ] = ACTIONS(337), + [anon_sym_BANG_EQ] = ACTIONS(337), + [anon_sym_LT] = ACTIONS(339), + [anon_sym_GT] = ACTIONS(339), + [anon_sym_LT_EQ] = ACTIONS(341), + [anon_sym_GT_EQ] = ACTIONS(341), + [anon_sym_LT_LT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(343), + [anon_sym_PLUS] = ACTIONS(345), + [anon_sym_DASH] = ACTIONS(345), + [anon_sym_SLASH] = ACTIONS(319), + [anon_sym_PERCENT] = ACTIONS(319), + [anon_sym_DASH_DASH] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(216), + [anon_sym_DOT] = ACTIONS(218), + [anon_sym_DASH_GT] = ACTIONS(218), + [sym_comment] = ACTIONS(59), + }, + [1104] = { + [sym__expression] = STATE(1153), + [sym_conditional_expression] = STATE(1153), + [sym_assignment_expression] = STATE(1153), + [sym_pointer_expression] = STATE(1153), + [sym_logical_expression] = STATE(1153), + [sym_bitwise_expression] = STATE(1153), + [sym_equality_expression] = STATE(1153), + [sym_relational_expression] = STATE(1153), + [sym_shift_expression] = STATE(1153), + [sym_math_expression] = STATE(1153), + [sym_cast_expression] = STATE(1153), + [sym_sizeof_expression] = STATE(1153), + [sym_subscript_expression] = STATE(1153), + [sym_call_expression] = STATE(1153), + [sym_field_expression] = STATE(1153), + [sym_compound_literal_expression] = STATE(1153), + [sym_parenthesized_expression] = STATE(1153), + [sym_char_literal] = STATE(1153), + [sym_concatenated_string] = STATE(1153), + [sym_string_literal] = STATE(55), + [anon_sym_RPAREN] = ACTIONS(3224), + [anon_sym_LPAREN2] = ACTIONS(85), + [anon_sym_STAR] = ACTIONS(87), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_PLUS] = ACTIONS(97), + [anon_sym_DASH] = ACTIONS(97), + [anon_sym_DASH_DASH] = ACTIONS(99), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(101), + [sym_number_literal] = ACTIONS(3226), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(3228), + [sym_false] = ACTIONS(3228), + [sym_null] = ACTIONS(3228), + [sym_identifier] = ACTIONS(3228), + [sym_comment] = ACTIONS(59), }, [1105] = { - [sym_compound_statement] = STATE(1109), - [sym_labeled_statement] = STATE(1109), - [sym_expression_statement] = STATE(1109), - [sym_if_statement] = STATE(1109), - [sym_switch_statement] = STATE(1109), - [sym_case_statement] = STATE(1109), - [sym_while_statement] = STATE(1109), - [sym_do_statement] = STATE(1109), - [sym_for_statement] = STATE(1109), - [sym_return_statement] = STATE(1109), - [sym_break_statement] = STATE(1109), - [sym_continue_statement] = STATE(1109), - [sym_goto_statement] = STATE(1109), - [sym__expression] = STATE(228), - [sym_comma_expression] = STATE(229), - [sym_conditional_expression] = STATE(228), - [sym_assignment_expression] = STATE(228), - [sym_pointer_expression] = STATE(228), - [sym_logical_expression] = STATE(228), - [sym_bitwise_expression] = STATE(228), - [sym_equality_expression] = STATE(228), - [sym_relational_expression] = STATE(228), - [sym_shift_expression] = STATE(228), - [sym_math_expression] = STATE(228), - [sym_cast_expression] = STATE(228), - [sym_sizeof_expression] = STATE(228), - [sym_subscript_expression] = STATE(228), - [sym_call_expression] = STATE(228), - [sym_field_expression] = STATE(228), - [sym_compound_literal_expression] = STATE(228), - [sym_parenthesized_expression] = STATE(228), - [sym_char_literal] = STATE(228), - [sym_concatenated_string] = STATE(228), - [sym_string_literal] = STATE(230), - [anon_sym_SEMI] = ACTIONS(503), - [anon_sym_LBRACE] = ACTIONS(229), - [anon_sym_LPAREN2] = ACTIONS(507), - [anon_sym_STAR] = ACTIONS(509), - [anon_sym_if] = ACTIONS(938), - [anon_sym_switch] = ACTIONS(940), - [anon_sym_case] = ACTIONS(942), - [anon_sym_default] = ACTIONS(944), - [anon_sym_while] = ACTIONS(946), - [anon_sym_do] = ACTIONS(948), - [anon_sym_for] = ACTIONS(950), - [anon_sym_return] = ACTIONS(525), - [anon_sym_break] = ACTIONS(527), - [anon_sym_continue] = ACTIONS(529), - [anon_sym_goto] = ACTIONS(531), - [anon_sym_AMP] = ACTIONS(509), - [anon_sym_BANG] = ACTIONS(533), - [anon_sym_TILDE] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DASH] = ACTIONS(537), - [anon_sym_DASH_DASH] = ACTIONS(539), - [anon_sym_PLUS_PLUS] = ACTIONS(539), - [anon_sym_sizeof] = ACTIONS(541), - [sym_number_literal] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(547), - [sym_false] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [sym_identifier] = ACTIONS(952), - [sym_comment] = ACTIONS(37), + [sym_argument_list] = STATE(98), + [anon_sym_SEMI] = ACTIONS(3230), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_LBRACK] = ACTIONS(188), + [anon_sym_EQ] = ACTIONS(1896), + [anon_sym_QMARK] = ACTIONS(1898), + [anon_sym_STAR_EQ] = ACTIONS(1900), + [anon_sym_SLASH_EQ] = ACTIONS(1900), + [anon_sym_PERCENT_EQ] = ACTIONS(1900), + [anon_sym_PLUS_EQ] = ACTIONS(1900), + [anon_sym_DASH_EQ] = ACTIONS(1900), + [anon_sym_LT_LT_EQ] = ACTIONS(1900), + [anon_sym_GT_GT_EQ] = ACTIONS(1900), + [anon_sym_AMP_EQ] = ACTIONS(1900), + [anon_sym_CARET_EQ] = ACTIONS(1900), + [anon_sym_PIPE_EQ] = ACTIONS(1900), + [anon_sym_AMP] = ACTIONS(1902), + [anon_sym_PIPE_PIPE] = ACTIONS(1904), + [anon_sym_AMP_AMP] = ACTIONS(1906), + [anon_sym_PIPE] = ACTIONS(1908), + [anon_sym_CARET] = ACTIONS(1910), + [anon_sym_EQ_EQ] = ACTIONS(1912), + [anon_sym_BANG_EQ] = ACTIONS(1912), + [anon_sym_LT] = ACTIONS(1914), + [anon_sym_GT] = ACTIONS(1914), + [anon_sym_LT_EQ] = ACTIONS(1916), + [anon_sym_GT_EQ] = ACTIONS(1916), + [anon_sym_LT_LT] = ACTIONS(1918), + [anon_sym_GT_GT] = ACTIONS(1918), + [anon_sym_PLUS] = ACTIONS(1920), + [anon_sym_DASH] = ACTIONS(1920), + [anon_sym_SLASH] = ACTIONS(1894), + [anon_sym_PERCENT] = ACTIONS(1894), + [anon_sym_DASH_DASH] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(216), + [anon_sym_DOT] = ACTIONS(218), + [anon_sym_DASH_GT] = ACTIONS(218), + [sym_comment] = ACTIONS(59), }, [1106] = { - [aux_sym_for_statement_repeat1] = STATE(991), - [anon_sym_COMMA] = ACTIONS(2344), - [anon_sym_RPAREN] = ACTIONS(3167), - [sym_comment] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(3232), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3234), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3234), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3234), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3234), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3234), + [sym_preproc_directive] = ACTIONS(3234), + [anon_sym_typedef] = ACTIONS(3234), + [anon_sym_extern] = ACTIONS(3234), + [anon_sym_LBRACE] = ACTIONS(3232), + [anon_sym_RBRACE] = ACTIONS(3232), + [anon_sym_LPAREN2] = ACTIONS(3232), + [anon_sym_STAR] = ACTIONS(3232), + [anon_sym_static] = ACTIONS(3234), + [anon_sym_auto] = ACTIONS(3234), + [anon_sym_register] = ACTIONS(3234), + [anon_sym_inline] = ACTIONS(3234), + [anon_sym_const] = ACTIONS(3234), + [anon_sym_restrict] = ACTIONS(3234), + [anon_sym_volatile] = ACTIONS(3234), + [anon_sym__Atomic] = ACTIONS(3234), + [anon_sym_unsigned] = ACTIONS(3234), + [anon_sym_long] = ACTIONS(3234), + [anon_sym_short] = ACTIONS(3234), + [sym_primitive_type] = ACTIONS(3234), + [anon_sym_enum] = ACTIONS(3234), + [anon_sym_struct] = ACTIONS(3234), + [anon_sym_union] = ACTIONS(3234), + [anon_sym_if] = ACTIONS(3234), + [anon_sym_else] = ACTIONS(3234), + [anon_sym_switch] = ACTIONS(3234), + [anon_sym_case] = ACTIONS(3234), + [anon_sym_default] = ACTIONS(3234), + [anon_sym_while] = ACTIONS(3234), + [anon_sym_do] = ACTIONS(3234), + [anon_sym_for] = ACTIONS(3234), + [anon_sym_return] = ACTIONS(3234), + [anon_sym_break] = ACTIONS(3234), + [anon_sym_continue] = ACTIONS(3234), + [anon_sym_goto] = ACTIONS(3234), + [anon_sym_AMP] = ACTIONS(3232), + [anon_sym_BANG] = ACTIONS(3232), + [anon_sym_TILDE] = ACTIONS(3232), + [anon_sym_PLUS] = ACTIONS(3234), + [anon_sym_DASH] = ACTIONS(3234), + [anon_sym_DASH_DASH] = ACTIONS(3232), + [anon_sym_PLUS_PLUS] = ACTIONS(3232), + [anon_sym_sizeof] = ACTIONS(3234), + [sym_number_literal] = ACTIONS(3232), + [anon_sym_SQUOTE] = ACTIONS(3232), + [anon_sym_DQUOTE] = ACTIONS(3232), + [sym_true] = ACTIONS(3234), + [sym_false] = ACTIONS(3234), + [sym_null] = ACTIONS(3234), + [sym_identifier] = ACTIONS(3234), + [sym_comment] = ACTIONS(59), }, [1107] = { - [sym_argument_list] = STATE(430), - [aux_sym_for_statement_repeat1] = STATE(1146), - [anon_sym_COMMA] = ACTIONS(2344), - [anon_sym_RPAREN] = ACTIONS(3167), - [anon_sym_LPAREN2] = ACTIONS(1012), - [anon_sym_STAR] = ACTIONS(1437), - [anon_sym_LBRACK] = ACTIONS(1016), - [anon_sym_EQ] = ACTIONS(1439), - [anon_sym_QMARK] = ACTIONS(1441), - [anon_sym_STAR_EQ] = ACTIONS(1443), - [anon_sym_SLASH_EQ] = ACTIONS(1443), - [anon_sym_PERCENT_EQ] = ACTIONS(1443), - [anon_sym_PLUS_EQ] = ACTIONS(1443), - [anon_sym_DASH_EQ] = ACTIONS(1443), - [anon_sym_LT_LT_EQ] = ACTIONS(1443), - [anon_sym_GT_GT_EQ] = ACTIONS(1443), - [anon_sym_AMP_EQ] = ACTIONS(1443), - [anon_sym_CARET_EQ] = ACTIONS(1443), - [anon_sym_PIPE_EQ] = ACTIONS(1443), - [anon_sym_AMP] = ACTIONS(1445), - [anon_sym_PIPE_PIPE] = ACTIONS(1447), - [anon_sym_AMP_AMP] = ACTIONS(1449), - [anon_sym_PIPE] = ACTIONS(1451), - [anon_sym_CARET] = ACTIONS(1453), - [anon_sym_EQ_EQ] = ACTIONS(1455), - [anon_sym_BANG_EQ] = ACTIONS(1455), - [anon_sym_LT] = ACTIONS(1457), - [anon_sym_GT] = ACTIONS(1457), - [anon_sym_LT_EQ] = ACTIONS(1459), - [anon_sym_GT_EQ] = ACTIONS(1459), - [anon_sym_LT_LT] = ACTIONS(1461), - [anon_sym_GT_GT] = ACTIONS(1461), - [anon_sym_PLUS] = ACTIONS(1463), - [anon_sym_DASH] = ACTIONS(1463), - [anon_sym_SLASH] = ACTIONS(1437), - [anon_sym_PERCENT] = ACTIONS(1437), - [anon_sym_DASH_DASH] = ACTIONS(1044), - [anon_sym_PLUS_PLUS] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1046), - [anon_sym_DASH_GT] = ACTIONS(1046), - [sym_comment] = ACTIONS(37), + [sym_compound_statement] = STATE(1155), + [sym_labeled_statement] = STATE(1155), + [sym_expression_statement] = STATE(1155), + [sym_if_statement] = STATE(1155), + [sym_switch_statement] = STATE(1155), + [sym_case_statement] = STATE(1155), + [sym_while_statement] = STATE(1155), + [sym_do_statement] = STATE(1155), + [sym_for_statement] = STATE(1155), + [sym_return_statement] = STATE(1155), + [sym_break_statement] = STATE(1155), + [sym_continue_statement] = STATE(1155), + [sym_goto_statement] = STATE(1155), + [sym__expression] = STATE(372), + [sym_comma_expression] = STATE(373), + [sym_conditional_expression] = STATE(372), + [sym_assignment_expression] = STATE(372), + [sym_pointer_expression] = STATE(372), + [sym_logical_expression] = STATE(372), + [sym_bitwise_expression] = STATE(372), + [sym_equality_expression] = STATE(372), + [sym_relational_expression] = STATE(372), + [sym_shift_expression] = STATE(372), + [sym_math_expression] = STATE(372), + [sym_cast_expression] = STATE(372), + [sym_sizeof_expression] = STATE(372), + [sym_subscript_expression] = STATE(372), + [sym_call_expression] = STATE(372), + [sym_field_expression] = STATE(372), + [sym_compound_literal_expression] = STATE(372), + [sym_parenthesized_expression] = STATE(372), + [sym_char_literal] = STATE(372), + [sym_concatenated_string] = STATE(372), + [sym_string_literal] = STATE(374), + [anon_sym_SEMI] = ACTIONS(928), + [anon_sym_LBRACE] = ACTIONS(439), + [anon_sym_LPAREN2] = ACTIONS(936), + [anon_sym_STAR] = ACTIONS(938), + [anon_sym_if] = ACTIONS(940), + [anon_sym_switch] = ACTIONS(942), + [anon_sym_case] = ACTIONS(944), + [anon_sym_default] = ACTIONS(946), + [anon_sym_while] = ACTIONS(948), + [anon_sym_do] = ACTIONS(950), + [anon_sym_for] = ACTIONS(952), + [anon_sym_return] = ACTIONS(954), + [anon_sym_break] = ACTIONS(956), + [anon_sym_continue] = ACTIONS(958), + [anon_sym_goto] = ACTIONS(960), + [anon_sym_AMP] = ACTIONS(938), + [anon_sym_BANG] = ACTIONS(962), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_DASH_DASH] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(968), + [anon_sym_sizeof] = ACTIONS(970), + [sym_number_literal] = ACTIONS(972), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(974), + [sym_false] = ACTIONS(974), + [sym_null] = ACTIONS(974), + [sym_identifier] = ACTIONS(2002), + [sym_comment] = ACTIONS(59), }, [1108] = { - [sym__expression] = STATE(1147), - [sym_conditional_expression] = STATE(1147), - [sym_assignment_expression] = STATE(1147), - [sym_pointer_expression] = STATE(1147), - [sym_logical_expression] = STATE(1147), - [sym_bitwise_expression] = STATE(1147), - [sym_equality_expression] = STATE(1147), - [sym_relational_expression] = STATE(1147), - [sym_shift_expression] = STATE(1147), - [sym_math_expression] = STATE(1147), - [sym_cast_expression] = STATE(1147), - [sym_sizeof_expression] = STATE(1147), - [sym_subscript_expression] = STATE(1147), - [sym_call_expression] = STATE(1147), - [sym_field_expression] = STATE(1147), - [sym_compound_literal_expression] = STATE(1147), - [sym_parenthesized_expression] = STATE(1147), - [sym_char_literal] = STATE(1147), - [sym_concatenated_string] = STATE(1147), - [sym_string_literal] = STATE(374), - [anon_sym_RPAREN] = ACTIONS(3167), - [anon_sym_LPAREN2] = ACTIONS(892), - [anon_sym_STAR] = ACTIONS(894), - [anon_sym_AMP] = ACTIONS(894), - [anon_sym_BANG] = ACTIONS(896), - [anon_sym_TILDE] = ACTIONS(898), - [anon_sym_PLUS] = ACTIONS(900), - [anon_sym_DASH] = ACTIONS(900), - [anon_sym_DASH_DASH] = ACTIONS(902), - [anon_sym_PLUS_PLUS] = ACTIONS(902), - [anon_sym_sizeof] = ACTIONS(904), - [sym_number_literal] = ACTIONS(3169), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(3171), - [sym_false] = ACTIONS(3171), - [sym_null] = ACTIONS(3171), - [sym_identifier] = ACTIONS(3171), - [sym_comment] = ACTIONS(37), + [aux_sym_for_statement_repeat1] = STATE(593), + [anon_sym_COMMA] = ACTIONS(1002), + [anon_sym_RPAREN] = ACTIONS(3236), + [sym_comment] = ACTIONS(59), }, [1109] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3173), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3173), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3173), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3173), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3173), - [sym_preproc_directive] = ACTIONS(3173), - [anon_sym_SEMI] = ACTIONS(3175), - [anon_sym_typedef] = ACTIONS(3173), - [anon_sym_extern] = ACTIONS(3173), - [anon_sym_LBRACE] = ACTIONS(3175), - [anon_sym_RBRACE] = ACTIONS(3175), - [anon_sym_LPAREN2] = ACTIONS(3175), - [anon_sym_STAR] = ACTIONS(3175), - [anon_sym_static] = ACTIONS(3173), - [anon_sym_auto] = ACTIONS(3173), - [anon_sym_register] = ACTIONS(3173), - [anon_sym_inline] = ACTIONS(3173), - [anon_sym_const] = ACTIONS(3173), - [anon_sym_restrict] = ACTIONS(3173), - [anon_sym_volatile] = ACTIONS(3173), - [anon_sym__Atomic] = ACTIONS(3173), - [anon_sym_unsigned] = ACTIONS(3173), - [anon_sym_long] = ACTIONS(3173), - [anon_sym_short] = ACTIONS(3173), - [sym_primitive_type] = ACTIONS(3173), - [anon_sym_enum] = ACTIONS(3173), - [anon_sym_struct] = ACTIONS(3173), - [anon_sym_union] = ACTIONS(3173), - [anon_sym_if] = ACTIONS(3173), - [anon_sym_else] = ACTIONS(3173), - [anon_sym_switch] = ACTIONS(3173), - [anon_sym_case] = ACTIONS(3173), - [anon_sym_default] = ACTIONS(3173), - [anon_sym_while] = ACTIONS(3173), - [anon_sym_do] = ACTIONS(3173), - [anon_sym_for] = ACTIONS(3173), - [anon_sym_return] = ACTIONS(3173), - [anon_sym_break] = ACTIONS(3173), - [anon_sym_continue] = ACTIONS(3173), - [anon_sym_goto] = ACTIONS(3173), - [anon_sym_AMP] = ACTIONS(3175), - [anon_sym_BANG] = ACTIONS(3175), - [anon_sym_TILDE] = ACTIONS(3175), - [anon_sym_PLUS] = ACTIONS(3173), - [anon_sym_DASH] = ACTIONS(3173), - [anon_sym_DASH_DASH] = ACTIONS(3175), - [anon_sym_PLUS_PLUS] = ACTIONS(3175), - [anon_sym_sizeof] = ACTIONS(3173), - [sym_number_literal] = ACTIONS(3175), - [anon_sym_SQUOTE] = ACTIONS(3175), - [anon_sym_DQUOTE] = ACTIONS(3175), - [sym_true] = ACTIONS(3173), - [sym_false] = ACTIONS(3173), - [sym_null] = ACTIONS(3173), - [sym_identifier] = ACTIONS(3173), - [sym_comment] = ACTIONS(37), + [sym_argument_list] = STATE(98), + [aux_sym_for_statement_repeat1] = STATE(1157), + [anon_sym_COMMA] = ACTIONS(1002), + [anon_sym_RPAREN] = ACTIONS(3236), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(319), + [anon_sym_LBRACK] = ACTIONS(188), + [anon_sym_EQ] = ACTIONS(321), + [anon_sym_QMARK] = ACTIONS(323), + [anon_sym_STAR_EQ] = ACTIONS(325), + [anon_sym_SLASH_EQ] = ACTIONS(325), + [anon_sym_PERCENT_EQ] = ACTIONS(325), + [anon_sym_PLUS_EQ] = ACTIONS(325), + [anon_sym_DASH_EQ] = ACTIONS(325), + [anon_sym_LT_LT_EQ] = ACTIONS(325), + [anon_sym_GT_GT_EQ] = ACTIONS(325), + [anon_sym_AMP_EQ] = ACTIONS(325), + [anon_sym_CARET_EQ] = ACTIONS(325), + [anon_sym_PIPE_EQ] = ACTIONS(325), + [anon_sym_AMP] = ACTIONS(327), + [anon_sym_PIPE_PIPE] = ACTIONS(329), + [anon_sym_AMP_AMP] = ACTIONS(331), + [anon_sym_PIPE] = ACTIONS(333), + [anon_sym_CARET] = ACTIONS(335), + [anon_sym_EQ_EQ] = ACTIONS(337), + [anon_sym_BANG_EQ] = ACTIONS(337), + [anon_sym_LT] = ACTIONS(339), + [anon_sym_GT] = ACTIONS(339), + [anon_sym_LT_EQ] = ACTIONS(341), + [anon_sym_GT_EQ] = ACTIONS(341), + [anon_sym_LT_LT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(343), + [anon_sym_PLUS] = ACTIONS(345), + [anon_sym_DASH] = ACTIONS(345), + [anon_sym_SLASH] = ACTIONS(319), + [anon_sym_PERCENT] = ACTIONS(319), + [anon_sym_DASH_DASH] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(216), + [anon_sym_DOT] = ACTIONS(218), + [anon_sym_DASH_GT] = ACTIONS(218), + [sym_comment] = ACTIONS(59), }, [1110] = { - [sym_compound_statement] = STATE(1148), - [sym_labeled_statement] = STATE(1148), - [sym_expression_statement] = STATE(1148), - [sym_if_statement] = STATE(1148), - [sym_switch_statement] = STATE(1148), - [sym_case_statement] = STATE(1148), - [sym_while_statement] = STATE(1148), - [sym_do_statement] = STATE(1148), - [sym_for_statement] = STATE(1148), - [sym_return_statement] = STATE(1148), - [sym_break_statement] = STATE(1148), - [sym_continue_statement] = STATE(1148), - [sym_goto_statement] = STATE(1148), - [sym__expression] = STATE(228), - [sym_comma_expression] = STATE(229), - [sym_conditional_expression] = STATE(228), - [sym_assignment_expression] = STATE(228), - [sym_pointer_expression] = STATE(228), - [sym_logical_expression] = STATE(228), - [sym_bitwise_expression] = STATE(228), - [sym_equality_expression] = STATE(228), - [sym_relational_expression] = STATE(228), - [sym_shift_expression] = STATE(228), - [sym_math_expression] = STATE(228), - [sym_cast_expression] = STATE(228), - [sym_sizeof_expression] = STATE(228), - [sym_subscript_expression] = STATE(228), - [sym_call_expression] = STATE(228), - [sym_field_expression] = STATE(228), - [sym_compound_literal_expression] = STATE(228), - [sym_parenthesized_expression] = STATE(228), - [sym_char_literal] = STATE(228), - [sym_concatenated_string] = STATE(228), - [sym_string_literal] = STATE(230), - [anon_sym_SEMI] = ACTIONS(503), - [anon_sym_LBRACE] = ACTIONS(229), - [anon_sym_LPAREN2] = ACTIONS(507), - [anon_sym_STAR] = ACTIONS(509), - [anon_sym_if] = ACTIONS(511), - [anon_sym_switch] = ACTIONS(513), - [anon_sym_case] = ACTIONS(515), - [anon_sym_default] = ACTIONS(517), - [anon_sym_while] = ACTIONS(519), - [anon_sym_do] = ACTIONS(521), - [anon_sym_for] = ACTIONS(523), - [anon_sym_return] = ACTIONS(525), - [anon_sym_break] = ACTIONS(527), - [anon_sym_continue] = ACTIONS(529), - [anon_sym_goto] = ACTIONS(531), - [anon_sym_AMP] = ACTIONS(509), - [anon_sym_BANG] = ACTIONS(533), - [anon_sym_TILDE] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DASH] = ACTIONS(537), - [anon_sym_DASH_DASH] = ACTIONS(539), - [anon_sym_PLUS_PLUS] = ACTIONS(539), - [anon_sym_sizeof] = ACTIONS(541), - [sym_number_literal] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(547), - [sym_false] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [sym_identifier] = ACTIONS(1489), - [sym_comment] = ACTIONS(37), + [sym__expression] = STATE(1158), + [sym_conditional_expression] = STATE(1158), + [sym_assignment_expression] = STATE(1158), + [sym_pointer_expression] = STATE(1158), + [sym_logical_expression] = STATE(1158), + [sym_bitwise_expression] = STATE(1158), + [sym_equality_expression] = STATE(1158), + [sym_relational_expression] = STATE(1158), + [sym_shift_expression] = STATE(1158), + [sym_math_expression] = STATE(1158), + [sym_cast_expression] = STATE(1158), + [sym_sizeof_expression] = STATE(1158), + [sym_subscript_expression] = STATE(1158), + [sym_call_expression] = STATE(1158), + [sym_field_expression] = STATE(1158), + [sym_compound_literal_expression] = STATE(1158), + [sym_parenthesized_expression] = STATE(1158), + [sym_char_literal] = STATE(1158), + [sym_concatenated_string] = STATE(1158), + [sym_string_literal] = STATE(55), + [anon_sym_RPAREN] = ACTIONS(3236), + [anon_sym_LPAREN2] = ACTIONS(85), + [anon_sym_STAR] = ACTIONS(87), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_PLUS] = ACTIONS(97), + [anon_sym_DASH] = ACTIONS(97), + [anon_sym_DASH_DASH] = ACTIONS(99), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(101), + [sym_number_literal] = ACTIONS(3238), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(3240), + [sym_false] = ACTIONS(3240), + [sym_null] = ACTIONS(3240), + [sym_identifier] = ACTIONS(3240), + [sym_comment] = ACTIONS(59), }, [1111] = { - [aux_sym_for_statement_repeat1] = STATE(991), - [anon_sym_COMMA] = ACTIONS(2344), - [anon_sym_RPAREN] = ACTIONS(3177), - [sym_comment] = ACTIONS(37), - }, - [1112] = { - [sym_argument_list] = STATE(430), - [aux_sym_for_statement_repeat1] = STATE(1150), - [anon_sym_COMMA] = ACTIONS(2344), - [anon_sym_RPAREN] = ACTIONS(3177), - [anon_sym_LPAREN2] = ACTIONS(1012), - [anon_sym_STAR] = ACTIONS(1437), - [anon_sym_LBRACK] = ACTIONS(1016), - [anon_sym_EQ] = ACTIONS(1439), - [anon_sym_QMARK] = ACTIONS(1441), - [anon_sym_STAR_EQ] = ACTIONS(1443), - [anon_sym_SLASH_EQ] = ACTIONS(1443), - [anon_sym_PERCENT_EQ] = ACTIONS(1443), - [anon_sym_PLUS_EQ] = ACTIONS(1443), - [anon_sym_DASH_EQ] = ACTIONS(1443), - [anon_sym_LT_LT_EQ] = ACTIONS(1443), - [anon_sym_GT_GT_EQ] = ACTIONS(1443), - [anon_sym_AMP_EQ] = ACTIONS(1443), - [anon_sym_CARET_EQ] = ACTIONS(1443), - [anon_sym_PIPE_EQ] = ACTIONS(1443), - [anon_sym_AMP] = ACTIONS(1445), - [anon_sym_PIPE_PIPE] = ACTIONS(1447), - [anon_sym_AMP_AMP] = ACTIONS(1449), - [anon_sym_PIPE] = ACTIONS(1451), - [anon_sym_CARET] = ACTIONS(1453), - [anon_sym_EQ_EQ] = ACTIONS(1455), - [anon_sym_BANG_EQ] = ACTIONS(1455), - [anon_sym_LT] = ACTIONS(1457), - [anon_sym_GT] = ACTIONS(1457), - [anon_sym_LT_EQ] = ACTIONS(1459), - [anon_sym_GT_EQ] = ACTIONS(1459), - [anon_sym_LT_LT] = ACTIONS(1461), - [anon_sym_GT_GT] = ACTIONS(1461), - [anon_sym_PLUS] = ACTIONS(1463), - [anon_sym_DASH] = ACTIONS(1463), - [anon_sym_SLASH] = ACTIONS(1437), - [anon_sym_PERCENT] = ACTIONS(1437), - [anon_sym_DASH_DASH] = ACTIONS(1044), - [anon_sym_PLUS_PLUS] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1046), - [anon_sym_DASH_GT] = ACTIONS(1046), - [sym_comment] = ACTIONS(37), - }, - [1113] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2912), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2912), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2912), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2912), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2912), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2912), - [sym_preproc_directive] = ACTIONS(2912), - [anon_sym_SEMI] = ACTIONS(2914), - [anon_sym_typedef] = ACTIONS(2912), - [anon_sym_extern] = ACTIONS(2912), - [anon_sym_LBRACE] = ACTIONS(2914), - [anon_sym_LPAREN2] = ACTIONS(2914), - [anon_sym_STAR] = ACTIONS(2914), - [anon_sym_static] = ACTIONS(2912), - [anon_sym_auto] = ACTIONS(2912), - [anon_sym_register] = ACTIONS(2912), - [anon_sym_inline] = ACTIONS(2912), - [anon_sym_const] = ACTIONS(2912), - [anon_sym_restrict] = ACTIONS(2912), - [anon_sym_volatile] = ACTIONS(2912), - [anon_sym__Atomic] = ACTIONS(2912), - [anon_sym_unsigned] = ACTIONS(2912), - [anon_sym_long] = ACTIONS(2912), - [anon_sym_short] = ACTIONS(2912), - [sym_primitive_type] = ACTIONS(2912), - [anon_sym_enum] = ACTIONS(2912), - [anon_sym_struct] = ACTIONS(2912), - [anon_sym_union] = ACTIONS(2912), - [anon_sym_if] = ACTIONS(2912), - [anon_sym_switch] = ACTIONS(2912), - [anon_sym_case] = ACTIONS(2912), - [anon_sym_default] = ACTIONS(2912), - [anon_sym_while] = ACTIONS(2912), - [anon_sym_do] = ACTIONS(2912), - [anon_sym_for] = ACTIONS(2912), - [anon_sym_return] = ACTIONS(2912), - [anon_sym_break] = ACTIONS(2912), - [anon_sym_continue] = ACTIONS(2912), - [anon_sym_goto] = ACTIONS(2912), - [anon_sym_AMP] = ACTIONS(2914), - [anon_sym_BANG] = ACTIONS(2914), - [anon_sym_TILDE] = ACTIONS(2914), - [anon_sym_PLUS] = ACTIONS(2912), - [anon_sym_DASH] = ACTIONS(2912), - [anon_sym_DASH_DASH] = ACTIONS(2914), - [anon_sym_PLUS_PLUS] = ACTIONS(2914), - [anon_sym_sizeof] = ACTIONS(2912), - [sym_number_literal] = ACTIONS(2914), - [anon_sym_SQUOTE] = ACTIONS(2914), - [anon_sym_DQUOTE] = ACTIONS(2914), - [sym_true] = ACTIONS(2912), - [sym_false] = ACTIONS(2912), - [sym_null] = ACTIONS(2912), - [sym_identifier] = ACTIONS(2912), - [sym_comment] = ACTIONS(37), - }, - [1114] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2916), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2916), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2916), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2916), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2916), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2916), - [sym_preproc_directive] = ACTIONS(2916), - [anon_sym_SEMI] = ACTIONS(2918), - [anon_sym_typedef] = ACTIONS(2916), - [anon_sym_extern] = ACTIONS(2916), - [anon_sym_LBRACE] = ACTIONS(2918), - [anon_sym_LPAREN2] = ACTIONS(2918), - [anon_sym_STAR] = ACTIONS(2918), - [anon_sym_static] = ACTIONS(2916), - [anon_sym_auto] = ACTIONS(2916), - [anon_sym_register] = ACTIONS(2916), - [anon_sym_inline] = ACTIONS(2916), - [anon_sym_const] = ACTIONS(2916), - [anon_sym_restrict] = ACTIONS(2916), - [anon_sym_volatile] = ACTIONS(2916), - [anon_sym__Atomic] = ACTIONS(2916), - [anon_sym_unsigned] = ACTIONS(2916), - [anon_sym_long] = ACTIONS(2916), - [anon_sym_short] = ACTIONS(2916), - [sym_primitive_type] = ACTIONS(2916), - [anon_sym_enum] = ACTIONS(2916), - [anon_sym_struct] = ACTIONS(2916), - [anon_sym_union] = ACTIONS(2916), - [anon_sym_if] = ACTIONS(2916), - [anon_sym_switch] = ACTIONS(2916), - [anon_sym_case] = ACTIONS(2916), - [anon_sym_default] = ACTIONS(2916), - [anon_sym_while] = ACTIONS(2916), - [anon_sym_do] = ACTIONS(2916), - [anon_sym_for] = ACTIONS(2916), - [anon_sym_return] = ACTIONS(2916), - [anon_sym_break] = ACTIONS(2916), - [anon_sym_continue] = ACTIONS(2916), - [anon_sym_goto] = ACTIONS(2916), - [anon_sym_AMP] = ACTIONS(2918), - [anon_sym_BANG] = ACTIONS(2918), - [anon_sym_TILDE] = ACTIONS(2918), - [anon_sym_PLUS] = ACTIONS(2916), - [anon_sym_DASH] = ACTIONS(2916), - [anon_sym_DASH_DASH] = ACTIONS(2918), - [anon_sym_PLUS_PLUS] = ACTIONS(2918), - [anon_sym_sizeof] = ACTIONS(2916), - [sym_number_literal] = ACTIONS(2918), - [anon_sym_SQUOTE] = ACTIONS(2918), - [anon_sym_DQUOTE] = ACTIONS(2918), - [sym_true] = ACTIONS(2916), - [sym_false] = ACTIONS(2916), - [sym_null] = ACTIONS(2916), - [sym_identifier] = ACTIONS(2916), - [sym_comment] = ACTIONS(37), - }, - [1115] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2222), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2222), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2222), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2222), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2222), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2222), - [sym_preproc_directive] = ACTIONS(2222), - [anon_sym_SEMI] = ACTIONS(2224), - [anon_sym_typedef] = ACTIONS(2222), - [anon_sym_extern] = ACTIONS(2222), - [anon_sym_LBRACE] = ACTIONS(2224), - [anon_sym_LPAREN2] = ACTIONS(2224), - [anon_sym_STAR] = ACTIONS(2224), - [anon_sym_static] = ACTIONS(2222), - [anon_sym_auto] = ACTIONS(2222), - [anon_sym_register] = ACTIONS(2222), - [anon_sym_inline] = ACTIONS(2222), - [anon_sym_const] = ACTIONS(2222), - [anon_sym_restrict] = ACTIONS(2222), - [anon_sym_volatile] = ACTIONS(2222), - [anon_sym__Atomic] = ACTIONS(2222), - [anon_sym_unsigned] = ACTIONS(2222), - [anon_sym_long] = ACTIONS(2222), - [anon_sym_short] = ACTIONS(2222), - [sym_primitive_type] = ACTIONS(2222), - [anon_sym_enum] = ACTIONS(2222), - [anon_sym_struct] = ACTIONS(2222), - [anon_sym_union] = ACTIONS(2222), - [anon_sym_if] = ACTIONS(2222), - [anon_sym_else] = ACTIONS(3179), - [anon_sym_switch] = ACTIONS(2222), - [anon_sym_case] = ACTIONS(2222), - [anon_sym_default] = ACTIONS(2222), - [anon_sym_while] = ACTIONS(2222), - [anon_sym_do] = ACTIONS(2222), - [anon_sym_for] = ACTIONS(2222), - [anon_sym_return] = ACTIONS(2222), - [anon_sym_break] = ACTIONS(2222), - [anon_sym_continue] = ACTIONS(2222), - [anon_sym_goto] = ACTIONS(2222), - [anon_sym_AMP] = ACTIONS(2224), - [anon_sym_BANG] = ACTIONS(2224), - [anon_sym_TILDE] = ACTIONS(2224), - [anon_sym_PLUS] = ACTIONS(2222), - [anon_sym_DASH] = ACTIONS(2222), - [anon_sym_DASH_DASH] = ACTIONS(2224), - [anon_sym_PLUS_PLUS] = ACTIONS(2224), - [anon_sym_sizeof] = ACTIONS(2222), - [sym_number_literal] = ACTIONS(2224), - [anon_sym_SQUOTE] = ACTIONS(2224), - [anon_sym_DQUOTE] = ACTIONS(2224), - [sym_true] = ACTIONS(2222), - [sym_false] = ACTIONS(2222), - [sym_null] = ACTIONS(2222), - [sym_identifier] = ACTIONS(2222), - [sym_comment] = ACTIONS(37), - }, - [1116] = { - [sym_declaration] = STATE(1079), - [sym_type_definition] = STATE(1079), - [sym__declaration_specifiers] = STATE(1022), - [sym_compound_statement] = STATE(1079), - [sym_storage_class_specifier] = STATE(87), - [sym_type_qualifier] = STATE(87), - [sym__type_specifier] = STATE(86), - [sym_sized_type_specifier] = STATE(86), - [sym_enum_specifier] = STATE(86), - [sym_struct_specifier] = STATE(86), - [sym_union_specifier] = STATE(86), - [sym_labeled_statement] = STATE(1079), - [sym_expression_statement] = STATE(1079), - [sym_if_statement] = STATE(1079), - [sym_switch_statement] = STATE(1079), - [sym_case_statement] = STATE(1079), - [sym_while_statement] = STATE(1079), - [sym_do_statement] = STATE(1079), - [sym_for_statement] = STATE(1079), - [sym_return_statement] = STATE(1079), - [sym_break_statement] = STATE(1079), - [sym_continue_statement] = STATE(1079), - [sym_goto_statement] = STATE(1079), - [sym__expression] = STATE(800), - [sym_comma_expression] = STATE(801), - [sym_conditional_expression] = STATE(800), - [sym_assignment_expression] = STATE(800), - [sym_pointer_expression] = STATE(800), - [sym_logical_expression] = STATE(800), - [sym_bitwise_expression] = STATE(800), - [sym_equality_expression] = STATE(800), - [sym_relational_expression] = STATE(800), - [sym_shift_expression] = STATE(800), - [sym_math_expression] = STATE(800), - [sym_cast_expression] = STATE(800), - [sym_sizeof_expression] = STATE(800), - [sym_subscript_expression] = STATE(800), - [sym_call_expression] = STATE(800), - [sym_field_expression] = STATE(800), - [sym_compound_literal_expression] = STATE(800), - [sym_parenthesized_expression] = STATE(800), - [sym_char_literal] = STATE(800), - [sym_concatenated_string] = STATE(800), - [sym_string_literal] = STATE(230), - [sym_macro_type_specifier] = STATE(86), - [aux_sym__declaration_specifiers_repeat1] = STATE(87), - [aux_sym_sized_type_specifier_repeat1] = STATE(88), - [anon_sym_SEMI] = ACTIONS(2082), - [anon_sym_typedef] = ACTIONS(359), - [anon_sym_extern] = ACTIONS(21), - [anon_sym_LBRACE] = ACTIONS(1181), - [anon_sym_LPAREN2] = ACTIONS(507), - [anon_sym_STAR] = ACTIONS(509), - [anon_sym_static] = ACTIONS(21), - [anon_sym_auto] = ACTIONS(21), - [anon_sym_register] = ACTIONS(21), - [anon_sym_inline] = ACTIONS(21), - [anon_sym_const] = ACTIONS(23), - [anon_sym_restrict] = ACTIONS(23), - [anon_sym_volatile] = ACTIONS(23), - [anon_sym__Atomic] = ACTIONS(23), - [anon_sym_unsigned] = ACTIONS(167), - [anon_sym_long] = ACTIONS(167), - [anon_sym_short] = ACTIONS(167), - [sym_primitive_type] = ACTIONS(169), - [anon_sym_enum] = ACTIONS(29), - [anon_sym_struct] = ACTIONS(31), - [anon_sym_union] = ACTIONS(33), - [anon_sym_if] = ACTIONS(2788), - [anon_sym_switch] = ACTIONS(2790), - [anon_sym_case] = ACTIONS(2792), - [anon_sym_default] = ACTIONS(2794), - [anon_sym_while] = ACTIONS(2796), - [anon_sym_do] = ACTIONS(2094), - [anon_sym_for] = ACTIONS(2798), - [anon_sym_return] = ACTIONS(2098), - [anon_sym_break] = ACTIONS(2100), - [anon_sym_continue] = ACTIONS(2102), - [anon_sym_goto] = ACTIONS(2104), - [anon_sym_AMP] = ACTIONS(509), - [anon_sym_BANG] = ACTIONS(533), - [anon_sym_TILDE] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DASH] = ACTIONS(537), - [anon_sym_DASH_DASH] = ACTIONS(539), - [anon_sym_PLUS_PLUS] = ACTIONS(539), - [anon_sym_sizeof] = ACTIONS(541), - [sym_number_literal] = ACTIONS(2106), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(2108), - [sym_false] = ACTIONS(2108), - [sym_null] = ACTIONS(2108), - [sym_identifier] = ACTIONS(3103), - [sym_comment] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(3088), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3090), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3090), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3090), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3090), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3090), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3090), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(3090), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(3090), + [sym_preproc_directive] = ACTIONS(3090), + [anon_sym_typedef] = ACTIONS(3090), + [anon_sym_extern] = ACTIONS(3090), + [anon_sym_LBRACE] = ACTIONS(3088), + [anon_sym_LPAREN2] = ACTIONS(3088), + [anon_sym_STAR] = ACTIONS(3088), + [anon_sym_static] = ACTIONS(3090), + [anon_sym_auto] = ACTIONS(3090), + [anon_sym_register] = ACTIONS(3090), + [anon_sym_inline] = ACTIONS(3090), + [anon_sym_const] = ACTIONS(3090), + [anon_sym_restrict] = ACTIONS(3090), + [anon_sym_volatile] = ACTIONS(3090), + [anon_sym__Atomic] = ACTIONS(3090), + [anon_sym_unsigned] = ACTIONS(3090), + [anon_sym_long] = ACTIONS(3090), + [anon_sym_short] = ACTIONS(3090), + [sym_primitive_type] = ACTIONS(3090), + [anon_sym_enum] = ACTIONS(3090), + [anon_sym_struct] = ACTIONS(3090), + [anon_sym_union] = ACTIONS(3090), + [anon_sym_if] = ACTIONS(3090), + [anon_sym_switch] = ACTIONS(3090), + [anon_sym_case] = ACTIONS(3090), + [anon_sym_default] = ACTIONS(3090), + [anon_sym_while] = ACTIONS(3090), + [anon_sym_do] = ACTIONS(3090), + [anon_sym_for] = ACTIONS(3090), + [anon_sym_return] = ACTIONS(3090), + [anon_sym_break] = ACTIONS(3090), + [anon_sym_continue] = ACTIONS(3090), + [anon_sym_goto] = ACTIONS(3090), + [anon_sym_AMP] = ACTIONS(3088), + [anon_sym_BANG] = ACTIONS(3088), + [anon_sym_TILDE] = ACTIONS(3088), + [anon_sym_PLUS] = ACTIONS(3090), + [anon_sym_DASH] = ACTIONS(3090), + [anon_sym_DASH_DASH] = ACTIONS(3088), + [anon_sym_PLUS_PLUS] = ACTIONS(3088), + [anon_sym_sizeof] = ACTIONS(3090), + [sym_number_literal] = ACTIONS(3088), + [anon_sym_SQUOTE] = ACTIONS(3088), + [anon_sym_DQUOTE] = ACTIONS(3088), + [sym_true] = ACTIONS(3090), + [sym_false] = ACTIONS(3090), + [sym_null] = ACTIONS(3090), + [sym_identifier] = ACTIONS(3090), + [sym_comment] = ACTIONS(59), + }, + [1112] = { + [anon_sym_SEMI] = ACTIONS(3092), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3094), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3094), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3094), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3094), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3094), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3094), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(3094), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(3094), + [sym_preproc_directive] = ACTIONS(3094), + [anon_sym_typedef] = ACTIONS(3094), + [anon_sym_extern] = ACTIONS(3094), + [anon_sym_LBRACE] = ACTIONS(3092), + [anon_sym_LPAREN2] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(3092), + [anon_sym_static] = ACTIONS(3094), + [anon_sym_auto] = ACTIONS(3094), + [anon_sym_register] = ACTIONS(3094), + [anon_sym_inline] = ACTIONS(3094), + [anon_sym_const] = ACTIONS(3094), + [anon_sym_restrict] = ACTIONS(3094), + [anon_sym_volatile] = ACTIONS(3094), + [anon_sym__Atomic] = ACTIONS(3094), + [anon_sym_unsigned] = ACTIONS(3094), + [anon_sym_long] = ACTIONS(3094), + [anon_sym_short] = ACTIONS(3094), + [sym_primitive_type] = ACTIONS(3094), + [anon_sym_enum] = ACTIONS(3094), + [anon_sym_struct] = ACTIONS(3094), + [anon_sym_union] = ACTIONS(3094), + [anon_sym_if] = ACTIONS(3094), + [anon_sym_switch] = ACTIONS(3094), + [anon_sym_case] = ACTIONS(3094), + [anon_sym_default] = ACTIONS(3094), + [anon_sym_while] = ACTIONS(3094), + [anon_sym_do] = ACTIONS(3094), + [anon_sym_for] = ACTIONS(3094), + [anon_sym_return] = ACTIONS(3094), + [anon_sym_break] = ACTIONS(3094), + [anon_sym_continue] = ACTIONS(3094), + [anon_sym_goto] = ACTIONS(3094), + [anon_sym_AMP] = ACTIONS(3092), + [anon_sym_BANG] = ACTIONS(3092), + [anon_sym_TILDE] = ACTIONS(3092), + [anon_sym_PLUS] = ACTIONS(3094), + [anon_sym_DASH] = ACTIONS(3094), + [anon_sym_DASH_DASH] = ACTIONS(3092), + [anon_sym_PLUS_PLUS] = ACTIONS(3092), + [anon_sym_sizeof] = ACTIONS(3094), + [sym_number_literal] = ACTIONS(3092), + [anon_sym_SQUOTE] = ACTIONS(3092), + [anon_sym_DQUOTE] = ACTIONS(3092), + [sym_true] = ACTIONS(3094), + [sym_false] = ACTIONS(3094), + [sym_null] = ACTIONS(3094), + [sym_identifier] = ACTIONS(3094), + [sym_comment] = ACTIONS(59), + }, + [1113] = { + [anon_sym_SEMI] = ACTIONS(2784), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2786), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2786), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2786), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2786), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2786), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2786), + [sym_preproc_directive] = ACTIONS(2786), + [anon_sym_typedef] = ACTIONS(2786), + [anon_sym_extern] = ACTIONS(2786), + [anon_sym_LBRACE] = ACTIONS(2784), + [anon_sym_LPAREN2] = ACTIONS(2784), + [anon_sym_STAR] = ACTIONS(2784), + [anon_sym_static] = ACTIONS(2786), + [anon_sym_auto] = ACTIONS(2786), + [anon_sym_register] = ACTIONS(2786), + [anon_sym_inline] = ACTIONS(2786), + [anon_sym_const] = ACTIONS(2786), + [anon_sym_restrict] = ACTIONS(2786), + [anon_sym_volatile] = ACTIONS(2786), + [anon_sym__Atomic] = ACTIONS(2786), + [anon_sym_unsigned] = ACTIONS(2786), + [anon_sym_long] = ACTIONS(2786), + [anon_sym_short] = ACTIONS(2786), + [sym_primitive_type] = ACTIONS(2786), + [anon_sym_enum] = ACTIONS(2786), + [anon_sym_struct] = ACTIONS(2786), + [anon_sym_union] = ACTIONS(2786), + [anon_sym_if] = ACTIONS(2786), + [anon_sym_switch] = ACTIONS(2786), + [anon_sym_case] = ACTIONS(2786), + [anon_sym_default] = ACTIONS(2786), + [anon_sym_while] = ACTIONS(2786), + [anon_sym_do] = ACTIONS(2786), + [anon_sym_for] = ACTIONS(2786), + [anon_sym_return] = ACTIONS(2786), + [anon_sym_break] = ACTIONS(2786), + [anon_sym_continue] = ACTIONS(2786), + [anon_sym_goto] = ACTIONS(2786), + [anon_sym_AMP] = ACTIONS(2784), + [anon_sym_BANG] = ACTIONS(2784), + [anon_sym_TILDE] = ACTIONS(2784), + [anon_sym_PLUS] = ACTIONS(2786), + [anon_sym_DASH] = ACTIONS(2786), + [anon_sym_DASH_DASH] = ACTIONS(2784), + [anon_sym_PLUS_PLUS] = ACTIONS(2784), + [anon_sym_sizeof] = ACTIONS(2786), + [sym_number_literal] = ACTIONS(2784), + [anon_sym_SQUOTE] = ACTIONS(2784), + [anon_sym_DQUOTE] = ACTIONS(2784), + [sym_true] = ACTIONS(2786), + [sym_false] = ACTIONS(2786), + [sym_null] = ACTIONS(2786), + [sym_identifier] = ACTIONS(2786), + [sym_comment] = ACTIONS(59), + }, + [1114] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3242), + [sym_comment] = ACTIONS(59), + }, + [1115] = { + [anon_sym_SEMI] = ACTIONS(2858), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2860), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2860), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2860), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2860), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2860), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2860), + [sym_preproc_directive] = ACTIONS(2860), + [anon_sym_typedef] = ACTIONS(2860), + [anon_sym_extern] = ACTIONS(2860), + [anon_sym_LBRACE] = ACTIONS(2858), + [anon_sym_LPAREN2] = ACTIONS(2858), + [anon_sym_STAR] = ACTIONS(2858), + [anon_sym_static] = ACTIONS(2860), + [anon_sym_auto] = ACTIONS(2860), + [anon_sym_register] = ACTIONS(2860), + [anon_sym_inline] = ACTIONS(2860), + [anon_sym_const] = ACTIONS(2860), + [anon_sym_restrict] = ACTIONS(2860), + [anon_sym_volatile] = ACTIONS(2860), + [anon_sym__Atomic] = ACTIONS(2860), + [anon_sym_unsigned] = ACTIONS(2860), + [anon_sym_long] = ACTIONS(2860), + [anon_sym_short] = ACTIONS(2860), + [sym_primitive_type] = ACTIONS(2860), + [anon_sym_enum] = ACTIONS(2860), + [anon_sym_struct] = ACTIONS(2860), + [anon_sym_union] = ACTIONS(2860), + [anon_sym_if] = ACTIONS(2860), + [anon_sym_switch] = ACTIONS(2860), + [anon_sym_case] = ACTIONS(2860), + [anon_sym_default] = ACTIONS(2860), + [anon_sym_while] = ACTIONS(2860), + [anon_sym_do] = ACTIONS(2860), + [anon_sym_for] = ACTIONS(2860), + [anon_sym_return] = ACTIONS(2860), + [anon_sym_break] = ACTIONS(2860), + [anon_sym_continue] = ACTIONS(2860), + [anon_sym_goto] = ACTIONS(2860), + [anon_sym_AMP] = ACTIONS(2858), + [anon_sym_BANG] = ACTIONS(2858), + [anon_sym_TILDE] = ACTIONS(2858), + [anon_sym_PLUS] = ACTIONS(2860), + [anon_sym_DASH] = ACTIONS(2860), + [anon_sym_DASH_DASH] = ACTIONS(2858), + [anon_sym_PLUS_PLUS] = ACTIONS(2858), + [anon_sym_sizeof] = ACTIONS(2860), + [sym_number_literal] = ACTIONS(2858), + [anon_sym_SQUOTE] = ACTIONS(2858), + [anon_sym_DQUOTE] = ACTIONS(2858), + [sym_true] = ACTIONS(2860), + [sym_false] = ACTIONS(2860), + [sym_null] = ACTIONS(2860), + [sym_identifier] = ACTIONS(2860), + [sym_comment] = ACTIONS(59), + }, + [1116] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3244), + [sym_comment] = ACTIONS(59), }, [1117] = { - [anon_sym_COMMA] = ACTIONS(990), - [anon_sym_SEMI] = ACTIONS(990), - [anon_sym_extern] = ACTIONS(79), - [anon_sym_LPAREN2] = ACTIONS(995), - [anon_sym_STAR] = ACTIONS(999), - [anon_sym_LBRACK] = ACTIONS(990), - [anon_sym_EQ] = ACTIONS(1002), - [anon_sym_static] = ACTIONS(79), - [anon_sym_auto] = ACTIONS(79), - [anon_sym_register] = ACTIONS(79), - [anon_sym_inline] = ACTIONS(79), - [anon_sym_const] = ACTIONS(79), - [anon_sym_restrict] = ACTIONS(79), - [anon_sym_volatile] = ACTIONS(79), - [anon_sym__Atomic] = ACTIONS(79), - [anon_sym_COLON] = ACTIONS(3015), - [anon_sym_QMARK] = ACTIONS(990), - [anon_sym_STAR_EQ] = ACTIONS(990), - [anon_sym_SLASH_EQ] = ACTIONS(990), - [anon_sym_PERCENT_EQ] = ACTIONS(990), - [anon_sym_PLUS_EQ] = ACTIONS(990), - [anon_sym_DASH_EQ] = ACTIONS(990), - [anon_sym_LT_LT_EQ] = ACTIONS(990), - [anon_sym_GT_GT_EQ] = ACTIONS(990), - [anon_sym_AMP_EQ] = ACTIONS(990), - [anon_sym_CARET_EQ] = ACTIONS(990), - [anon_sym_PIPE_EQ] = ACTIONS(990), - [anon_sym_AMP] = ACTIONS(1002), - [anon_sym_PIPE_PIPE] = ACTIONS(990), - [anon_sym_AMP_AMP] = ACTIONS(990), - [anon_sym_PIPE] = ACTIONS(1002), - [anon_sym_CARET] = ACTIONS(1002), - [anon_sym_EQ_EQ] = ACTIONS(990), - [anon_sym_BANG_EQ] = ACTIONS(990), - [anon_sym_LT] = ACTIONS(1002), - [anon_sym_GT] = ACTIONS(1002), - [anon_sym_LT_EQ] = ACTIONS(990), - [anon_sym_GT_EQ] = ACTIONS(990), - [anon_sym_LT_LT] = ACTIONS(1002), - [anon_sym_GT_GT] = ACTIONS(1002), - [anon_sym_PLUS] = ACTIONS(1002), - [anon_sym_DASH] = ACTIONS(1002), - [anon_sym_SLASH] = ACTIONS(1002), - [anon_sym_PERCENT] = ACTIONS(1002), - [anon_sym_DASH_DASH] = ACTIONS(990), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_DOT] = ACTIONS(990), - [anon_sym_DASH_GT] = ACTIONS(990), - [sym_identifier] = ACTIONS(79), - [sym_comment] = ACTIONS(37), + [sym_compound_statement] = STATE(1161), + [sym_labeled_statement] = STATE(1161), + [sym_expression_statement] = STATE(1161), + [sym_if_statement] = STATE(1161), + [sym_switch_statement] = STATE(1161), + [sym_case_statement] = STATE(1161), + [sym_while_statement] = STATE(1161), + [sym_do_statement] = STATE(1161), + [sym_for_statement] = STATE(1161), + [sym_return_statement] = STATE(1161), + [sym_break_statement] = STATE(1161), + [sym_continue_statement] = STATE(1161), + [sym_goto_statement] = STATE(1161), + [sym__expression] = STATE(902), + [sym_comma_expression] = STATE(903), + [sym_conditional_expression] = STATE(902), + [sym_assignment_expression] = STATE(902), + [sym_pointer_expression] = STATE(902), + [sym_logical_expression] = STATE(902), + [sym_bitwise_expression] = STATE(902), + [sym_equality_expression] = STATE(902), + [sym_relational_expression] = STATE(902), + [sym_shift_expression] = STATE(902), + [sym_math_expression] = STATE(902), + [sym_cast_expression] = STATE(902), + [sym_sizeof_expression] = STATE(902), + [sym_subscript_expression] = STATE(902), + [sym_call_expression] = STATE(902), + [sym_field_expression] = STATE(902), + [sym_compound_literal_expression] = STATE(902), + [sym_parenthesized_expression] = STATE(902), + [sym_char_literal] = STATE(902), + [sym_concatenated_string] = STATE(902), + [sym_string_literal] = STATE(374), + [anon_sym_SEMI] = ACTIONS(2481), + [anon_sym_LBRACE] = ACTIONS(1699), + [anon_sym_LPAREN2] = ACTIONS(936), + [anon_sym_STAR] = ACTIONS(938), + [anon_sym_if] = ACTIONS(2964), + [anon_sym_switch] = ACTIONS(2966), + [anon_sym_case] = ACTIONS(2968), + [anon_sym_default] = ACTIONS(2970), + [anon_sym_while] = ACTIONS(2972), + [anon_sym_do] = ACTIONS(2499), + [anon_sym_for] = ACTIONS(2974), + [anon_sym_return] = ACTIONS(2503), + [anon_sym_break] = ACTIONS(2505), + [anon_sym_continue] = ACTIONS(2507), + [anon_sym_goto] = ACTIONS(2509), + [anon_sym_AMP] = ACTIONS(938), + [anon_sym_BANG] = ACTIONS(962), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_DASH_DASH] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(968), + [anon_sym_sizeof] = ACTIONS(970), + [sym_number_literal] = ACTIONS(2511), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(2513), + [sym_false] = ACTIONS(2513), + [sym_null] = ACTIONS(2513), + [sym_identifier] = ACTIONS(2976), + [sym_comment] = ACTIONS(59), }, [1118] = { - [sym__expression] = STATE(1153), - [sym_conditional_expression] = STATE(1153), - [sym_assignment_expression] = STATE(1153), - [sym_pointer_expression] = STATE(1153), - [sym_logical_expression] = STATE(1153), - [sym_bitwise_expression] = STATE(1153), - [sym_equality_expression] = STATE(1153), - [sym_relational_expression] = STATE(1153), - [sym_shift_expression] = STATE(1153), - [sym_math_expression] = STATE(1153), - [sym_cast_expression] = STATE(1153), - [sym_sizeof_expression] = STATE(1153), - [sym_subscript_expression] = STATE(1153), - [sym_call_expression] = STATE(1153), - [sym_field_expression] = STATE(1153), - [sym_compound_literal_expression] = STATE(1153), - [sym_parenthesized_expression] = STATE(1153), - [sym_char_literal] = STATE(1153), - [sym_concatenated_string] = STATE(1153), - [sym_string_literal] = STATE(342), - [anon_sym_SEMI] = ACTIONS(3181), - [anon_sym_LPAREN2] = ACTIONS(780), - [anon_sym_STAR] = ACTIONS(782), - [anon_sym_AMP] = ACTIONS(782), - [anon_sym_BANG] = ACTIONS(784), - [anon_sym_TILDE] = ACTIONS(786), - [anon_sym_PLUS] = ACTIONS(788), - [anon_sym_DASH] = ACTIONS(788), - [anon_sym_DASH_DASH] = ACTIONS(790), - [anon_sym_PLUS_PLUS] = ACTIONS(790), - [anon_sym_sizeof] = ACTIONS(792), - [sym_number_literal] = ACTIONS(3183), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(3185), - [sym_false] = ACTIONS(3185), - [sym_null] = ACTIONS(3185), - [sym_identifier] = ACTIONS(3185), - [sym_comment] = ACTIONS(37), + [sym_compound_statement] = STATE(1066), + [sym_labeled_statement] = STATE(1066), + [sym_expression_statement] = STATE(1066), + [sym_if_statement] = STATE(1066), + [sym_switch_statement] = STATE(1066), + [sym_case_statement] = STATE(1066), + [sym_while_statement] = STATE(1066), + [sym_do_statement] = STATE(1066), + [sym_for_statement] = STATE(1066), + [sym_return_statement] = STATE(1066), + [sym_break_statement] = STATE(1066), + [sym_continue_statement] = STATE(1066), + [sym_goto_statement] = STATE(1066), + [sym__expression] = STATE(902), + [sym_comma_expression] = STATE(903), + [sym_conditional_expression] = STATE(902), + [sym_assignment_expression] = STATE(902), + [sym_pointer_expression] = STATE(902), + [sym_logical_expression] = STATE(902), + [sym_bitwise_expression] = STATE(902), + [sym_equality_expression] = STATE(902), + [sym_relational_expression] = STATE(902), + [sym_shift_expression] = STATE(902), + [sym_math_expression] = STATE(902), + [sym_cast_expression] = STATE(902), + [sym_sizeof_expression] = STATE(902), + [sym_subscript_expression] = STATE(902), + [sym_call_expression] = STATE(902), + [sym_field_expression] = STATE(902), + [sym_compound_literal_expression] = STATE(902), + [sym_parenthesized_expression] = STATE(902), + [sym_char_literal] = STATE(902), + [sym_concatenated_string] = STATE(902), + [sym_string_literal] = STATE(374), + [anon_sym_SEMI] = ACTIONS(2481), + [anon_sym_LBRACE] = ACTIONS(1699), + [anon_sym_LPAREN2] = ACTIONS(936), + [anon_sym_STAR] = ACTIONS(938), + [anon_sym_if] = ACTIONS(2964), + [anon_sym_switch] = ACTIONS(2966), + [anon_sym_case] = ACTIONS(2968), + [anon_sym_default] = ACTIONS(2970), + [anon_sym_while] = ACTIONS(2972), + [anon_sym_do] = ACTIONS(2499), + [anon_sym_for] = ACTIONS(2974), + [anon_sym_return] = ACTIONS(2503), + [anon_sym_break] = ACTIONS(2505), + [anon_sym_continue] = ACTIONS(2507), + [anon_sym_goto] = ACTIONS(2509), + [anon_sym_AMP] = ACTIONS(938), + [anon_sym_BANG] = ACTIONS(962), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_DASH_DASH] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(968), + [anon_sym_sizeof] = ACTIONS(970), + [sym_number_literal] = ACTIONS(2511), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(2513), + [sym_false] = ACTIONS(2513), + [sym_null] = ACTIONS(2513), + [sym_identifier] = ACTIONS(2976), + [sym_comment] = ACTIONS(59), }, [1119] = { - [sym_argument_list] = STATE(430), - [anon_sym_SEMI] = ACTIONS(3187), - [anon_sym_LPAREN2] = ACTIONS(1012), - [anon_sym_STAR] = ACTIONS(1319), - [anon_sym_LBRACK] = ACTIONS(1016), - [anon_sym_EQ] = ACTIONS(1321), - [anon_sym_QMARK] = ACTIONS(1323), - [anon_sym_STAR_EQ] = ACTIONS(1325), - [anon_sym_SLASH_EQ] = ACTIONS(1325), - [anon_sym_PERCENT_EQ] = ACTIONS(1325), - [anon_sym_PLUS_EQ] = ACTIONS(1325), - [anon_sym_DASH_EQ] = ACTIONS(1325), - [anon_sym_LT_LT_EQ] = ACTIONS(1325), - [anon_sym_GT_GT_EQ] = ACTIONS(1325), - [anon_sym_AMP_EQ] = ACTIONS(1325), - [anon_sym_CARET_EQ] = ACTIONS(1325), - [anon_sym_PIPE_EQ] = ACTIONS(1325), - [anon_sym_AMP] = ACTIONS(1327), - [anon_sym_PIPE_PIPE] = ACTIONS(1329), - [anon_sym_AMP_AMP] = ACTIONS(1331), - [anon_sym_PIPE] = ACTIONS(1333), - [anon_sym_CARET] = ACTIONS(1335), - [anon_sym_EQ_EQ] = ACTIONS(1337), - [anon_sym_BANG_EQ] = ACTIONS(1337), - [anon_sym_LT] = ACTIONS(1339), - [anon_sym_GT] = ACTIONS(1339), - [anon_sym_LT_EQ] = ACTIONS(1341), - [anon_sym_GT_EQ] = ACTIONS(1341), - [anon_sym_LT_LT] = ACTIONS(1343), - [anon_sym_GT_GT] = ACTIONS(1343), - [anon_sym_PLUS] = ACTIONS(1345), - [anon_sym_DASH] = ACTIONS(1345), - [anon_sym_SLASH] = ACTIONS(1319), - [anon_sym_PERCENT] = ACTIONS(1319), - [anon_sym_DASH_DASH] = ACTIONS(1044), - [anon_sym_PLUS_PLUS] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1046), - [anon_sym_DASH_GT] = ACTIONS(1046), - [sym_comment] = ACTIONS(37), + [sym_argument_list] = STATE(98), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(1054), + [anon_sym_LBRACK] = ACTIONS(188), + [anon_sym_EQ] = ACTIONS(1056), + [anon_sym_COLON] = ACTIONS(3246), + [anon_sym_QMARK] = ACTIONS(1060), + [anon_sym_STAR_EQ] = ACTIONS(1062), + [anon_sym_SLASH_EQ] = ACTIONS(1062), + [anon_sym_PERCENT_EQ] = ACTIONS(1062), + [anon_sym_PLUS_EQ] = ACTIONS(1062), + [anon_sym_DASH_EQ] = ACTIONS(1062), + [anon_sym_LT_LT_EQ] = ACTIONS(1062), + [anon_sym_GT_GT_EQ] = ACTIONS(1062), + [anon_sym_AMP_EQ] = ACTIONS(1062), + [anon_sym_CARET_EQ] = ACTIONS(1062), + [anon_sym_PIPE_EQ] = ACTIONS(1062), + [anon_sym_AMP] = ACTIONS(1064), + [anon_sym_PIPE_PIPE] = ACTIONS(1066), + [anon_sym_AMP_AMP] = ACTIONS(1068), + [anon_sym_PIPE] = ACTIONS(1070), + [anon_sym_CARET] = ACTIONS(1072), + [anon_sym_EQ_EQ] = ACTIONS(1074), + [anon_sym_BANG_EQ] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(1076), + [anon_sym_GT] = ACTIONS(1076), + [anon_sym_LT_EQ] = ACTIONS(1078), + [anon_sym_GT_EQ] = ACTIONS(1078), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_GT_GT] = ACTIONS(1080), + [anon_sym_PLUS] = ACTIONS(1082), + [anon_sym_DASH] = ACTIONS(1082), + [anon_sym_SLASH] = ACTIONS(1054), + [anon_sym_PERCENT] = ACTIONS(1054), + [anon_sym_DASH_DASH] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(216), + [anon_sym_DOT] = ACTIONS(218), + [anon_sym_DASH_GT] = ACTIONS(218), + [sym_comment] = ACTIONS(59), }, [1120] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2938), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2938), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2938), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2938), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2938), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2938), - [sym_preproc_directive] = ACTIONS(2938), - [anon_sym_SEMI] = ACTIONS(2940), - [anon_sym_typedef] = ACTIONS(2938), - [anon_sym_extern] = ACTIONS(2938), - [anon_sym_LBRACE] = ACTIONS(2940), - [anon_sym_LPAREN2] = ACTIONS(2940), - [anon_sym_STAR] = ACTIONS(2940), - [anon_sym_static] = ACTIONS(2938), - [anon_sym_auto] = ACTIONS(2938), - [anon_sym_register] = ACTIONS(2938), - [anon_sym_inline] = ACTIONS(2938), - [anon_sym_const] = ACTIONS(2938), - [anon_sym_restrict] = ACTIONS(2938), - [anon_sym_volatile] = ACTIONS(2938), - [anon_sym__Atomic] = ACTIONS(2938), - [anon_sym_unsigned] = ACTIONS(2938), - [anon_sym_long] = ACTIONS(2938), - [anon_sym_short] = ACTIONS(2938), - [sym_primitive_type] = ACTIONS(2938), - [anon_sym_enum] = ACTIONS(2938), - [anon_sym_struct] = ACTIONS(2938), - [anon_sym_union] = ACTIONS(2938), - [anon_sym_if] = ACTIONS(2938), - [anon_sym_else] = ACTIONS(2938), - [anon_sym_switch] = ACTIONS(2938), - [anon_sym_case] = ACTIONS(2938), - [anon_sym_default] = ACTIONS(2938), - [anon_sym_while] = ACTIONS(2938), - [anon_sym_do] = ACTIONS(2938), - [anon_sym_for] = ACTIONS(2938), - [anon_sym_return] = ACTIONS(2938), - [anon_sym_break] = ACTIONS(2938), - [anon_sym_continue] = ACTIONS(2938), - [anon_sym_goto] = ACTIONS(2938), - [anon_sym_AMP] = ACTIONS(2940), - [anon_sym_BANG] = ACTIONS(2940), - [anon_sym_TILDE] = ACTIONS(2940), - [anon_sym_PLUS] = ACTIONS(2938), - [anon_sym_DASH] = ACTIONS(2938), - [anon_sym_DASH_DASH] = ACTIONS(2940), - [anon_sym_PLUS_PLUS] = ACTIONS(2940), - [anon_sym_sizeof] = ACTIONS(2938), - [sym_number_literal] = ACTIONS(2940), - [anon_sym_SQUOTE] = ACTIONS(2940), - [anon_sym_DQUOTE] = ACTIONS(2940), - [sym_true] = ACTIONS(2938), - [sym_false] = ACTIONS(2938), - [sym_null] = ACTIONS(2938), - [sym_identifier] = ACTIONS(2938), - [sym_comment] = ACTIONS(37), + [sym_declaration] = STATE(1069), + [sym_type_definition] = STATE(1069), + [sym__declaration_specifiers] = STATE(1070), + [sym_compound_statement] = STATE(1069), + [sym_storage_class_specifier] = STATE(142), + [sym_type_qualifier] = STATE(142), + [sym__type_specifier] = STATE(141), + [sym_sized_type_specifier] = STATE(141), + [sym_enum_specifier] = STATE(141), + [sym_struct_specifier] = STATE(141), + [sym_union_specifier] = STATE(141), + [sym_labeled_statement] = STATE(1069), + [sym_expression_statement] = STATE(1069), + [sym_if_statement] = STATE(1069), + [sym_switch_statement] = STATE(1069), + [sym_case_statement] = STATE(1069), + [sym_while_statement] = STATE(1069), + [sym_do_statement] = STATE(1069), + [sym_for_statement] = STATE(1069), + [sym_return_statement] = STATE(1069), + [sym_break_statement] = STATE(1069), + [sym_continue_statement] = STATE(1069), + [sym_goto_statement] = STATE(1069), + [sym__expression] = STATE(902), + [sym_comma_expression] = STATE(903), + [sym_conditional_expression] = STATE(902), + [sym_assignment_expression] = STATE(902), + [sym_pointer_expression] = STATE(902), + [sym_logical_expression] = STATE(902), + [sym_bitwise_expression] = STATE(902), + [sym_equality_expression] = STATE(902), + [sym_relational_expression] = STATE(902), + [sym_shift_expression] = STATE(902), + [sym_math_expression] = STATE(902), + [sym_cast_expression] = STATE(902), + [sym_sizeof_expression] = STATE(902), + [sym_subscript_expression] = STATE(902), + [sym_call_expression] = STATE(902), + [sym_field_expression] = STATE(902), + [sym_compound_literal_expression] = STATE(902), + [sym_parenthesized_expression] = STATE(902), + [sym_char_literal] = STATE(902), + [sym_concatenated_string] = STATE(902), + [sym_string_literal] = STATE(374), + [sym_macro_type_specifier] = STATE(141), + [aux_sym__declaration_specifiers_repeat1] = STATE(142), + [aux_sym_sized_type_specifier_repeat1] = STATE(143), + [anon_sym_SEMI] = ACTIONS(2481), + [anon_sym_typedef] = ACTIONS(694), + [anon_sym_extern] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(1699), + [anon_sym_LPAREN2] = ACTIONS(936), + [anon_sym_STAR] = ACTIONS(938), + [anon_sym_static] = ACTIONS(25), + [anon_sym_auto] = ACTIONS(25), + [anon_sym_register] = ACTIONS(25), + [anon_sym_inline] = ACTIONS(25), + [anon_sym_const] = ACTIONS(27), + [anon_sym_restrict] = ACTIONS(27), + [anon_sym_volatile] = ACTIONS(27), + [anon_sym__Atomic] = ACTIONS(27), + [anon_sym_unsigned] = ACTIONS(294), + [anon_sym_long] = ACTIONS(294), + [anon_sym_short] = ACTIONS(294), + [sym_primitive_type] = ACTIONS(296), + [anon_sym_enum] = ACTIONS(33), + [anon_sym_struct] = ACTIONS(35), + [anon_sym_union] = ACTIONS(37), + [anon_sym_if] = ACTIONS(2964), + [anon_sym_switch] = ACTIONS(2966), + [anon_sym_case] = ACTIONS(2968), + [anon_sym_default] = ACTIONS(2970), + [anon_sym_while] = ACTIONS(2972), + [anon_sym_do] = ACTIONS(2499), + [anon_sym_for] = ACTIONS(2974), + [anon_sym_return] = ACTIONS(2503), + [anon_sym_break] = ACTIONS(2505), + [anon_sym_continue] = ACTIONS(2507), + [anon_sym_goto] = ACTIONS(2509), + [anon_sym_AMP] = ACTIONS(938), + [anon_sym_BANG] = ACTIONS(962), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_DASH_DASH] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(968), + [anon_sym_sizeof] = ACTIONS(970), + [sym_number_literal] = ACTIONS(2511), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(2513), + [sym_false] = ACTIONS(2513), + [sym_null] = ACTIONS(2513), + [sym_identifier] = ACTIONS(3248), + [sym_comment] = ACTIONS(59), }, [1121] = { - [sym_argument_list] = STATE(430), - [anon_sym_COMMA] = ACTIONS(1433), - [anon_sym_RPAREN] = ACTIONS(3189), - [anon_sym_LPAREN2] = ACTIONS(1012), - [anon_sym_STAR] = ACTIONS(1437), - [anon_sym_LBRACK] = ACTIONS(1016), - [anon_sym_EQ] = ACTIONS(1439), - [anon_sym_QMARK] = ACTIONS(1441), - [anon_sym_STAR_EQ] = ACTIONS(1443), - [anon_sym_SLASH_EQ] = ACTIONS(1443), - [anon_sym_PERCENT_EQ] = ACTIONS(1443), - [anon_sym_PLUS_EQ] = ACTIONS(1443), - [anon_sym_DASH_EQ] = ACTIONS(1443), - [anon_sym_LT_LT_EQ] = ACTIONS(1443), - [anon_sym_GT_GT_EQ] = ACTIONS(1443), - [anon_sym_AMP_EQ] = ACTIONS(1443), - [anon_sym_CARET_EQ] = ACTIONS(1443), - [anon_sym_PIPE_EQ] = ACTIONS(1443), - [anon_sym_AMP] = ACTIONS(1445), - [anon_sym_PIPE_PIPE] = ACTIONS(1447), - [anon_sym_AMP_AMP] = ACTIONS(1449), - [anon_sym_PIPE] = ACTIONS(1451), - [anon_sym_CARET] = ACTIONS(1453), - [anon_sym_EQ_EQ] = ACTIONS(1455), - [anon_sym_BANG_EQ] = ACTIONS(1455), - [anon_sym_LT] = ACTIONS(1457), - [anon_sym_GT] = ACTIONS(1457), - [anon_sym_LT_EQ] = ACTIONS(1459), - [anon_sym_GT_EQ] = ACTIONS(1459), - [anon_sym_LT_LT] = ACTIONS(1461), - [anon_sym_GT_GT] = ACTIONS(1461), - [anon_sym_PLUS] = ACTIONS(1463), - [anon_sym_DASH] = ACTIONS(1463), - [anon_sym_SLASH] = ACTIONS(1437), - [anon_sym_PERCENT] = ACTIONS(1437), - [anon_sym_DASH_DASH] = ACTIONS(1044), - [anon_sym_PLUS_PLUS] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1046), - [anon_sym_DASH_GT] = ACTIONS(1046), - [sym_comment] = ACTIONS(37), + [sym_compound_statement] = STATE(1071), + [sym_labeled_statement] = STATE(1071), + [sym_expression_statement] = STATE(1071), + [sym_if_statement] = STATE(1071), + [sym_switch_statement] = STATE(1071), + [sym_case_statement] = STATE(1071), + [sym_while_statement] = STATE(1071), + [sym_do_statement] = STATE(1071), + [sym_for_statement] = STATE(1071), + [sym_return_statement] = STATE(1071), + [sym_break_statement] = STATE(1071), + [sym_continue_statement] = STATE(1071), + [sym_goto_statement] = STATE(1071), + [sym__expression] = STATE(902), + [sym_comma_expression] = STATE(903), + [sym_conditional_expression] = STATE(902), + [sym_assignment_expression] = STATE(902), + [sym_pointer_expression] = STATE(902), + [sym_logical_expression] = STATE(902), + [sym_bitwise_expression] = STATE(902), + [sym_equality_expression] = STATE(902), + [sym_relational_expression] = STATE(902), + [sym_shift_expression] = STATE(902), + [sym_math_expression] = STATE(902), + [sym_cast_expression] = STATE(902), + [sym_sizeof_expression] = STATE(902), + [sym_subscript_expression] = STATE(902), + [sym_call_expression] = STATE(902), + [sym_field_expression] = STATE(902), + [sym_compound_literal_expression] = STATE(902), + [sym_parenthesized_expression] = STATE(902), + [sym_char_literal] = STATE(902), + [sym_concatenated_string] = STATE(902), + [sym_string_literal] = STATE(374), + [anon_sym_SEMI] = ACTIONS(2481), + [anon_sym_LBRACE] = ACTIONS(1699), + [anon_sym_LPAREN2] = ACTIONS(936), + [anon_sym_STAR] = ACTIONS(938), + [anon_sym_if] = ACTIONS(2964), + [anon_sym_switch] = ACTIONS(2966), + [anon_sym_case] = ACTIONS(2968), + [anon_sym_default] = ACTIONS(2970), + [anon_sym_while] = ACTIONS(2972), + [anon_sym_do] = ACTIONS(2499), + [anon_sym_for] = ACTIONS(2974), + [anon_sym_return] = ACTIONS(2503), + [anon_sym_break] = ACTIONS(2505), + [anon_sym_continue] = ACTIONS(2507), + [anon_sym_goto] = ACTIONS(2509), + [anon_sym_AMP] = ACTIONS(938), + [anon_sym_BANG] = ACTIONS(962), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_DASH_DASH] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(968), + [anon_sym_sizeof] = ACTIONS(970), + [sym_number_literal] = ACTIONS(2511), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(2513), + [sym_false] = ACTIONS(2513), + [sym_null] = ACTIONS(2513), + [sym_identifier] = ACTIONS(2976), + [sym_comment] = ACTIONS(59), }, [1122] = { - [anon_sym_RPAREN] = ACTIONS(3189), - [sym_comment] = ACTIONS(37), + [sym_declaration] = STATE(1164), + [sym__declaration_specifiers] = STATE(778), + [sym_storage_class_specifier] = STATE(142), + [sym_type_qualifier] = STATE(142), + [sym__type_specifier] = STATE(141), + [sym_sized_type_specifier] = STATE(141), + [sym_enum_specifier] = STATE(141), + [sym_struct_specifier] = STATE(141), + [sym_union_specifier] = STATE(141), + [sym__expression] = STATE(1165), + [sym_conditional_expression] = STATE(1165), + [sym_assignment_expression] = STATE(1165), + [sym_pointer_expression] = STATE(1165), + [sym_logical_expression] = STATE(1165), + [sym_bitwise_expression] = STATE(1165), + [sym_equality_expression] = STATE(1165), + [sym_relational_expression] = STATE(1165), + [sym_shift_expression] = STATE(1165), + [sym_math_expression] = STATE(1165), + [sym_cast_expression] = STATE(1165), + [sym_sizeof_expression] = STATE(1165), + [sym_subscript_expression] = STATE(1165), + [sym_call_expression] = STATE(1165), + [sym_field_expression] = STATE(1165), + [sym_compound_literal_expression] = STATE(1165), + [sym_parenthesized_expression] = STATE(1165), + [sym_char_literal] = STATE(1165), + [sym_concatenated_string] = STATE(1165), + [sym_string_literal] = STATE(534), + [sym_macro_type_specifier] = STATE(141), + [aux_sym__declaration_specifiers_repeat1] = STATE(142), + [aux_sym_sized_type_specifier_repeat1] = STATE(143), + [anon_sym_SEMI] = ACTIONS(3250), + [anon_sym_extern] = ACTIONS(25), + [anon_sym_LPAREN2] = ACTIONS(1349), + [anon_sym_STAR] = ACTIONS(1351), + [anon_sym_static] = ACTIONS(25), + [anon_sym_auto] = ACTIONS(25), + [anon_sym_register] = ACTIONS(25), + [anon_sym_inline] = ACTIONS(25), + [anon_sym_const] = ACTIONS(27), + [anon_sym_restrict] = ACTIONS(27), + [anon_sym_volatile] = ACTIONS(27), + [anon_sym__Atomic] = ACTIONS(27), + [anon_sym_unsigned] = ACTIONS(294), + [anon_sym_long] = ACTIONS(294), + [anon_sym_short] = ACTIONS(294), + [sym_primitive_type] = ACTIONS(296), + [anon_sym_enum] = ACTIONS(33), + [anon_sym_struct] = ACTIONS(35), + [anon_sym_union] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(1351), + [anon_sym_BANG] = ACTIONS(1353), + [anon_sym_TILDE] = ACTIONS(1355), + [anon_sym_PLUS] = ACTIONS(1357), + [anon_sym_DASH] = ACTIONS(1357), + [anon_sym_DASH_DASH] = ACTIONS(1359), + [anon_sym_PLUS_PLUS] = ACTIONS(1359), + [anon_sym_sizeof] = ACTIONS(1361), + [sym_number_literal] = ACTIONS(3252), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(3254), + [sym_false] = ACTIONS(3254), + [sym_null] = ACTIONS(3254), + [sym_identifier] = ACTIONS(2026), + [sym_comment] = ACTIONS(59), }, [1123] = { - [sym_compound_statement] = STATE(1156), - [sym_labeled_statement] = STATE(1156), - [sym_expression_statement] = STATE(1156), - [sym_if_statement] = STATE(1156), - [sym_switch_statement] = STATE(1156), - [sym_case_statement] = STATE(1156), - [sym_while_statement] = STATE(1156), - [sym_do_statement] = STATE(1156), - [sym_for_statement] = STATE(1156), - [sym_return_statement] = STATE(1156), - [sym_break_statement] = STATE(1156), - [sym_continue_statement] = STATE(1156), - [sym_goto_statement] = STATE(1156), - [sym__expression] = STATE(800), - [sym_comma_expression] = STATE(801), - [sym_conditional_expression] = STATE(800), - [sym_assignment_expression] = STATE(800), - [sym_pointer_expression] = STATE(800), - [sym_logical_expression] = STATE(800), - [sym_bitwise_expression] = STATE(800), - [sym_equality_expression] = STATE(800), - [sym_relational_expression] = STATE(800), - [sym_shift_expression] = STATE(800), - [sym_math_expression] = STATE(800), - [sym_cast_expression] = STATE(800), - [sym_sizeof_expression] = STATE(800), - [sym_subscript_expression] = STATE(800), - [sym_call_expression] = STATE(800), - [sym_field_expression] = STATE(800), - [sym_compound_literal_expression] = STATE(800), - [sym_parenthesized_expression] = STATE(800), - [sym_char_literal] = STATE(800), - [sym_concatenated_string] = STATE(800), - [sym_string_literal] = STATE(230), - [anon_sym_SEMI] = ACTIONS(2082), - [anon_sym_LBRACE] = ACTIONS(1181), - [anon_sym_LPAREN2] = ACTIONS(507), - [anon_sym_STAR] = ACTIONS(509), - [anon_sym_if] = ACTIONS(2084), - [anon_sym_switch] = ACTIONS(2086), - [anon_sym_case] = ACTIONS(2088), - [anon_sym_default] = ACTIONS(2090), - [anon_sym_while] = ACTIONS(2092), - [anon_sym_do] = ACTIONS(2094), - [anon_sym_for] = ACTIONS(2096), - [anon_sym_return] = ACTIONS(2098), - [anon_sym_break] = ACTIONS(2100), - [anon_sym_continue] = ACTIONS(2102), - [anon_sym_goto] = ACTIONS(2104), - [anon_sym_AMP] = ACTIONS(509), - [anon_sym_BANG] = ACTIONS(533), - [anon_sym_TILDE] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DASH] = ACTIONS(537), - [anon_sym_DASH_DASH] = ACTIONS(539), - [anon_sym_PLUS_PLUS] = ACTIONS(539), - [anon_sym_sizeof] = ACTIONS(541), - [sym_number_literal] = ACTIONS(2106), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(2108), - [sym_false] = ACTIONS(2108), - [sym_null] = ACTIONS(2108), - [sym_identifier] = ACTIONS(2802), - [sym_comment] = ACTIONS(37), + [sym_compound_statement] = STATE(1077), + [sym_labeled_statement] = STATE(1077), + [sym_expression_statement] = STATE(1077), + [sym_if_statement] = STATE(1077), + [sym_switch_statement] = STATE(1077), + [sym_case_statement] = STATE(1077), + [sym_while_statement] = STATE(1077), + [sym_do_statement] = STATE(1077), + [sym_for_statement] = STATE(1077), + [sym_return_statement] = STATE(1077), + [sym_break_statement] = STATE(1077), + [sym_continue_statement] = STATE(1077), + [sym_goto_statement] = STATE(1077), + [sym__expression] = STATE(902), + [sym_comma_expression] = STATE(903), + [sym_conditional_expression] = STATE(902), + [sym_assignment_expression] = STATE(902), + [sym_pointer_expression] = STATE(902), + [sym_logical_expression] = STATE(902), + [sym_bitwise_expression] = STATE(902), + [sym_equality_expression] = STATE(902), + [sym_relational_expression] = STATE(902), + [sym_shift_expression] = STATE(902), + [sym_math_expression] = STATE(902), + [sym_cast_expression] = STATE(902), + [sym_sizeof_expression] = STATE(902), + [sym_subscript_expression] = STATE(902), + [sym_call_expression] = STATE(902), + [sym_field_expression] = STATE(902), + [sym_compound_literal_expression] = STATE(902), + [sym_parenthesized_expression] = STATE(902), + [sym_char_literal] = STATE(902), + [sym_concatenated_string] = STATE(902), + [sym_string_literal] = STATE(374), + [anon_sym_SEMI] = ACTIONS(2481), + [anon_sym_LBRACE] = ACTIONS(1699), + [anon_sym_LPAREN2] = ACTIONS(936), + [anon_sym_STAR] = ACTIONS(938), + [anon_sym_if] = ACTIONS(2964), + [anon_sym_switch] = ACTIONS(2966), + [anon_sym_case] = ACTIONS(2968), + [anon_sym_default] = ACTIONS(2970), + [anon_sym_while] = ACTIONS(2972), + [anon_sym_do] = ACTIONS(2499), + [anon_sym_for] = ACTIONS(2974), + [anon_sym_return] = ACTIONS(2503), + [anon_sym_break] = ACTIONS(2505), + [anon_sym_continue] = ACTIONS(2507), + [anon_sym_goto] = ACTIONS(2509), + [anon_sym_AMP] = ACTIONS(938), + [anon_sym_BANG] = ACTIONS(962), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_DASH_DASH] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(968), + [anon_sym_sizeof] = ACTIONS(970), + [sym_number_literal] = ACTIONS(2511), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(2513), + [sym_false] = ACTIONS(2513), + [sym_null] = ACTIONS(2513), + [sym_identifier] = ACTIONS(2976), + [sym_comment] = ACTIONS(59), }, [1124] = { - [sym_argument_list] = STATE(430), - [aux_sym_for_statement_repeat1] = STATE(1158), - [anon_sym_COMMA] = ACTIONS(2344), - [anon_sym_RPAREN] = ACTIONS(3191), - [anon_sym_LPAREN2] = ACTIONS(1012), - [anon_sym_STAR] = ACTIONS(1437), - [anon_sym_LBRACK] = ACTIONS(1016), - [anon_sym_EQ] = ACTIONS(1439), - [anon_sym_QMARK] = ACTIONS(1441), - [anon_sym_STAR_EQ] = ACTIONS(1443), - [anon_sym_SLASH_EQ] = ACTIONS(1443), - [anon_sym_PERCENT_EQ] = ACTIONS(1443), - [anon_sym_PLUS_EQ] = ACTIONS(1443), - [anon_sym_DASH_EQ] = ACTIONS(1443), - [anon_sym_LT_LT_EQ] = ACTIONS(1443), - [anon_sym_GT_GT_EQ] = ACTIONS(1443), - [anon_sym_AMP_EQ] = ACTIONS(1443), - [anon_sym_CARET_EQ] = ACTIONS(1443), - [anon_sym_PIPE_EQ] = ACTIONS(1443), - [anon_sym_AMP] = ACTIONS(1445), - [anon_sym_PIPE_PIPE] = ACTIONS(1447), - [anon_sym_AMP_AMP] = ACTIONS(1449), - [anon_sym_PIPE] = ACTIONS(1451), - [anon_sym_CARET] = ACTIONS(1453), - [anon_sym_EQ_EQ] = ACTIONS(1455), - [anon_sym_BANG_EQ] = ACTIONS(1455), - [anon_sym_LT] = ACTIONS(1457), - [anon_sym_GT] = ACTIONS(1457), - [anon_sym_LT_EQ] = ACTIONS(1459), - [anon_sym_GT_EQ] = ACTIONS(1459), - [anon_sym_LT_LT] = ACTIONS(1461), - [anon_sym_GT_GT] = ACTIONS(1461), - [anon_sym_PLUS] = ACTIONS(1463), - [anon_sym_DASH] = ACTIONS(1463), - [anon_sym_SLASH] = ACTIONS(1437), - [anon_sym_PERCENT] = ACTIONS(1437), - [anon_sym_DASH_DASH] = ACTIONS(1044), - [anon_sym_PLUS_PLUS] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1046), - [anon_sym_DASH_GT] = ACTIONS(1046), - [sym_comment] = ACTIONS(37), + [sym_compound_statement] = STATE(1166), + [sym_labeled_statement] = STATE(1166), + [sym_expression_statement] = STATE(1166), + [sym_if_statement] = STATE(1166), + [sym_switch_statement] = STATE(1166), + [sym_case_statement] = STATE(1166), + [sym_while_statement] = STATE(1166), + [sym_do_statement] = STATE(1166), + [sym_for_statement] = STATE(1166), + [sym_return_statement] = STATE(1166), + [sym_break_statement] = STATE(1166), + [sym_continue_statement] = STATE(1166), + [sym_goto_statement] = STATE(1166), + [sym__expression] = STATE(902), + [sym_comma_expression] = STATE(903), + [sym_conditional_expression] = STATE(902), + [sym_assignment_expression] = STATE(902), + [sym_pointer_expression] = STATE(902), + [sym_logical_expression] = STATE(902), + [sym_bitwise_expression] = STATE(902), + [sym_equality_expression] = STATE(902), + [sym_relational_expression] = STATE(902), + [sym_shift_expression] = STATE(902), + [sym_math_expression] = STATE(902), + [sym_cast_expression] = STATE(902), + [sym_sizeof_expression] = STATE(902), + [sym_subscript_expression] = STATE(902), + [sym_call_expression] = STATE(902), + [sym_field_expression] = STATE(902), + [sym_compound_literal_expression] = STATE(902), + [sym_parenthesized_expression] = STATE(902), + [sym_char_literal] = STATE(902), + [sym_concatenated_string] = STATE(902), + [sym_string_literal] = STATE(374), + [anon_sym_SEMI] = ACTIONS(2481), + [anon_sym_LBRACE] = ACTIONS(1699), + [anon_sym_LPAREN2] = ACTIONS(936), + [anon_sym_STAR] = ACTIONS(938), + [anon_sym_if] = ACTIONS(2489), + [anon_sym_switch] = ACTIONS(2491), + [anon_sym_case] = ACTIONS(2493), + [anon_sym_default] = ACTIONS(2495), + [anon_sym_while] = ACTIONS(2497), + [anon_sym_do] = ACTIONS(2499), + [anon_sym_for] = ACTIONS(2501), + [anon_sym_return] = ACTIONS(2503), + [anon_sym_break] = ACTIONS(2505), + [anon_sym_continue] = ACTIONS(2507), + [anon_sym_goto] = ACTIONS(2509), + [anon_sym_AMP] = ACTIONS(938), + [anon_sym_BANG] = ACTIONS(962), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_DASH_DASH] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(968), + [anon_sym_sizeof] = ACTIONS(970), + [sym_number_literal] = ACTIONS(2511), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(2513), + [sym_false] = ACTIONS(2513), + [sym_null] = ACTIONS(2513), + [sym_identifier] = ACTIONS(2978), + [sym_comment] = ACTIONS(59), }, [1125] = { - [sym__expression] = STATE(1159), - [sym_conditional_expression] = STATE(1159), - [sym_assignment_expression] = STATE(1159), - [sym_pointer_expression] = STATE(1159), - [sym_logical_expression] = STATE(1159), - [sym_bitwise_expression] = STATE(1159), - [sym_equality_expression] = STATE(1159), - [sym_relational_expression] = STATE(1159), - [sym_shift_expression] = STATE(1159), - [sym_math_expression] = STATE(1159), - [sym_cast_expression] = STATE(1159), - [sym_sizeof_expression] = STATE(1159), - [sym_subscript_expression] = STATE(1159), - [sym_call_expression] = STATE(1159), - [sym_field_expression] = STATE(1159), - [sym_compound_literal_expression] = STATE(1159), - [sym_parenthesized_expression] = STATE(1159), - [sym_char_literal] = STATE(1159), - [sym_concatenated_string] = STATE(1159), - [sym_string_literal] = STATE(374), - [anon_sym_RPAREN] = ACTIONS(3191), - [anon_sym_LPAREN2] = ACTIONS(892), - [anon_sym_STAR] = ACTIONS(894), - [anon_sym_AMP] = ACTIONS(894), - [anon_sym_BANG] = ACTIONS(896), - [anon_sym_TILDE] = ACTIONS(898), - [anon_sym_PLUS] = ACTIONS(900), - [anon_sym_DASH] = ACTIONS(900), - [anon_sym_DASH_DASH] = ACTIONS(902), - [anon_sym_PLUS_PLUS] = ACTIONS(902), - [anon_sym_sizeof] = ACTIONS(904), - [sym_number_literal] = ACTIONS(3193), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(3195), - [sym_false] = ACTIONS(3195), - [sym_null] = ACTIONS(3195), - [sym_identifier] = ACTIONS(3195), - [sym_comment] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(2874), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2876), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2876), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2876), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2876), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2876), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2876), + [sym_preproc_directive] = ACTIONS(2876), + [anon_sym_typedef] = ACTIONS(2876), + [anon_sym_extern] = ACTIONS(2876), + [anon_sym_LBRACE] = ACTIONS(2874), + [anon_sym_LPAREN2] = ACTIONS(2874), + [anon_sym_STAR] = ACTIONS(2874), + [anon_sym_static] = ACTIONS(2876), + [anon_sym_auto] = ACTIONS(2876), + [anon_sym_register] = ACTIONS(2876), + [anon_sym_inline] = ACTIONS(2876), + [anon_sym_const] = ACTIONS(2876), + [anon_sym_restrict] = ACTIONS(2876), + [anon_sym_volatile] = ACTIONS(2876), + [anon_sym__Atomic] = ACTIONS(2876), + [anon_sym_unsigned] = ACTIONS(2876), + [anon_sym_long] = ACTIONS(2876), + [anon_sym_short] = ACTIONS(2876), + [sym_primitive_type] = ACTIONS(2876), + [anon_sym_enum] = ACTIONS(2876), + [anon_sym_struct] = ACTIONS(2876), + [anon_sym_union] = ACTIONS(2876), + [anon_sym_if] = ACTIONS(2876), + [anon_sym_else] = ACTIONS(2876), + [anon_sym_switch] = ACTIONS(2876), + [anon_sym_case] = ACTIONS(2876), + [anon_sym_default] = ACTIONS(2876), + [anon_sym_while] = ACTIONS(2876), + [anon_sym_do] = ACTIONS(2876), + [anon_sym_for] = ACTIONS(2876), + [anon_sym_return] = ACTIONS(2876), + [anon_sym_break] = ACTIONS(2876), + [anon_sym_continue] = ACTIONS(2876), + [anon_sym_goto] = ACTIONS(2876), + [anon_sym_AMP] = ACTIONS(2874), + [anon_sym_BANG] = ACTIONS(2874), + [anon_sym_TILDE] = ACTIONS(2874), + [anon_sym_PLUS] = ACTIONS(2876), + [anon_sym_DASH] = ACTIONS(2876), + [anon_sym_DASH_DASH] = ACTIONS(2874), + [anon_sym_PLUS_PLUS] = ACTIONS(2874), + [anon_sym_sizeof] = ACTIONS(2876), + [sym_number_literal] = ACTIONS(2874), + [anon_sym_SQUOTE] = ACTIONS(2874), + [anon_sym_DQUOTE] = ACTIONS(2874), + [sym_true] = ACTIONS(2876), + [sym_false] = ACTIONS(2876), + [sym_null] = ACTIONS(2876), + [sym_identifier] = ACTIONS(2876), + [sym_comment] = ACTIONS(59), }, [1126] = { - [sym_argument_list] = STATE(430), - [anon_sym_SEMI] = ACTIONS(3197), - [anon_sym_LPAREN2] = ACTIONS(1012), - [anon_sym_STAR] = ACTIONS(1319), - [anon_sym_LBRACK] = ACTIONS(1016), - [anon_sym_EQ] = ACTIONS(1321), - [anon_sym_QMARK] = ACTIONS(1323), - [anon_sym_STAR_EQ] = ACTIONS(1325), - [anon_sym_SLASH_EQ] = ACTIONS(1325), - [anon_sym_PERCENT_EQ] = ACTIONS(1325), - [anon_sym_PLUS_EQ] = ACTIONS(1325), - [anon_sym_DASH_EQ] = ACTIONS(1325), - [anon_sym_LT_LT_EQ] = ACTIONS(1325), - [anon_sym_GT_GT_EQ] = ACTIONS(1325), - [anon_sym_AMP_EQ] = ACTIONS(1325), - [anon_sym_CARET_EQ] = ACTIONS(1325), - [anon_sym_PIPE_EQ] = ACTIONS(1325), - [anon_sym_AMP] = ACTIONS(1327), - [anon_sym_PIPE_PIPE] = ACTIONS(1329), - [anon_sym_AMP_AMP] = ACTIONS(1331), - [anon_sym_PIPE] = ACTIONS(1333), - [anon_sym_CARET] = ACTIONS(1335), - [anon_sym_EQ_EQ] = ACTIONS(1337), - [anon_sym_BANG_EQ] = ACTIONS(1337), - [anon_sym_LT] = ACTIONS(1339), - [anon_sym_GT] = ACTIONS(1339), - [anon_sym_LT_EQ] = ACTIONS(1341), - [anon_sym_GT_EQ] = ACTIONS(1341), - [anon_sym_LT_LT] = ACTIONS(1343), - [anon_sym_GT_GT] = ACTIONS(1343), - [anon_sym_PLUS] = ACTIONS(1345), - [anon_sym_DASH] = ACTIONS(1345), - [anon_sym_SLASH] = ACTIONS(1319), - [anon_sym_PERCENT] = ACTIONS(1319), - [anon_sym_DASH_DASH] = ACTIONS(1044), - [anon_sym_PLUS_PLUS] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1046), - [anon_sym_DASH_GT] = ACTIONS(1046), - [sym_comment] = ACTIONS(37), + [sym__expression] = STATE(1167), + [sym_comma_expression] = STATE(1168), + [sym_conditional_expression] = STATE(1167), + [sym_assignment_expression] = STATE(1167), + [sym_pointer_expression] = STATE(1167), + [sym_logical_expression] = STATE(1167), + [sym_bitwise_expression] = STATE(1167), + [sym_equality_expression] = STATE(1167), + [sym_relational_expression] = STATE(1167), + [sym_shift_expression] = STATE(1167), + [sym_math_expression] = STATE(1167), + [sym_cast_expression] = STATE(1167), + [sym_sizeof_expression] = STATE(1167), + [sym_subscript_expression] = STATE(1167), + [sym_call_expression] = STATE(1167), + [sym_field_expression] = STATE(1167), + [sym_compound_literal_expression] = STATE(1167), + [sym_parenthesized_expression] = STATE(1167), + [sym_char_literal] = STATE(1167), + [sym_concatenated_string] = STATE(1167), + [sym_string_literal] = STATE(55), + [anon_sym_LPAREN2] = ACTIONS(85), + [anon_sym_STAR] = ACTIONS(87), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_PLUS] = ACTIONS(97), + [anon_sym_DASH] = ACTIONS(97), + [anon_sym_DASH_DASH] = ACTIONS(99), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(101), + [sym_number_literal] = ACTIONS(3256), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(3258), + [sym_false] = ACTIONS(3258), + [sym_null] = ACTIONS(3258), + [sym_identifier] = ACTIONS(3258), + [sym_comment] = ACTIONS(59), }, [1127] = { - [sym_compound_statement] = STATE(1090), - [sym_labeled_statement] = STATE(1090), - [sym_expression_statement] = STATE(1090), - [sym_if_statement] = STATE(1090), - [sym_switch_statement] = STATE(1090), - [sym_case_statement] = STATE(1090), - [sym_while_statement] = STATE(1090), - [sym_do_statement] = STATE(1090), - [sym_for_statement] = STATE(1090), - [sym_return_statement] = STATE(1090), - [sym_break_statement] = STATE(1090), - [sym_continue_statement] = STATE(1090), - [sym_goto_statement] = STATE(1090), - [sym__expression] = STATE(594), - [sym_comma_expression] = STATE(595), - [sym_conditional_expression] = STATE(594), - [sym_assignment_expression] = STATE(594), - [sym_pointer_expression] = STATE(594), - [sym_logical_expression] = STATE(594), - [sym_bitwise_expression] = STATE(594), - [sym_equality_expression] = STATE(594), - [sym_relational_expression] = STATE(594), - [sym_shift_expression] = STATE(594), - [sym_math_expression] = STATE(594), - [sym_cast_expression] = STATE(594), - [sym_sizeof_expression] = STATE(594), - [sym_subscript_expression] = STATE(594), - [sym_call_expression] = STATE(594), - [sym_field_expression] = STATE(594), - [sym_compound_literal_expression] = STATE(594), - [sym_parenthesized_expression] = STATE(594), - [sym_char_literal] = STATE(594), - [sym_concatenated_string] = STATE(594), - [sym_string_literal] = STATE(230), - [anon_sym_SEMI] = ACTIONS(1395), - [anon_sym_LBRACE] = ACTIONS(678), - [anon_sym_LPAREN2] = ACTIONS(507), - [anon_sym_STAR] = ACTIONS(509), - [anon_sym_if] = ACTIONS(2521), - [anon_sym_switch] = ACTIONS(2523), - [anon_sym_case] = ACTIONS(2525), - [anon_sym_default] = ACTIONS(2527), - [anon_sym_while] = ACTIONS(2529), - [anon_sym_do] = ACTIONS(1407), - [anon_sym_for] = ACTIONS(2531), - [anon_sym_return] = ACTIONS(1411), - [anon_sym_break] = ACTIONS(1413), - [anon_sym_continue] = ACTIONS(1415), - [anon_sym_goto] = ACTIONS(1417), - [anon_sym_AMP] = ACTIONS(509), - [anon_sym_BANG] = ACTIONS(533), - [anon_sym_TILDE] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DASH] = ACTIONS(537), - [anon_sym_DASH_DASH] = ACTIONS(539), - [anon_sym_PLUS_PLUS] = ACTIONS(539), - [anon_sym_sizeof] = ACTIONS(541), - [sym_number_literal] = ACTIONS(1419), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(1421), - [sym_false] = ACTIONS(1421), - [sym_null] = ACTIONS(1421), - [sym_identifier] = ACTIONS(2533), - [sym_comment] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(2900), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2902), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2902), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2902), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2902), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2902), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2902), + [sym_preproc_directive] = ACTIONS(2902), + [anon_sym_typedef] = ACTIONS(2902), + [anon_sym_extern] = ACTIONS(2902), + [anon_sym_LBRACE] = ACTIONS(2900), + [anon_sym_LPAREN2] = ACTIONS(2900), + [anon_sym_STAR] = ACTIONS(2900), + [anon_sym_static] = ACTIONS(2902), + [anon_sym_auto] = ACTIONS(2902), + [anon_sym_register] = ACTIONS(2902), + [anon_sym_inline] = ACTIONS(2902), + [anon_sym_const] = ACTIONS(2902), + [anon_sym_restrict] = ACTIONS(2902), + [anon_sym_volatile] = ACTIONS(2902), + [anon_sym__Atomic] = ACTIONS(2902), + [anon_sym_unsigned] = ACTIONS(2902), + [anon_sym_long] = ACTIONS(2902), + [anon_sym_short] = ACTIONS(2902), + [sym_primitive_type] = ACTIONS(2902), + [anon_sym_enum] = ACTIONS(2902), + [anon_sym_struct] = ACTIONS(2902), + [anon_sym_union] = ACTIONS(2902), + [anon_sym_if] = ACTIONS(2902), + [anon_sym_else] = ACTIONS(2902), + [anon_sym_switch] = ACTIONS(2902), + [anon_sym_case] = ACTIONS(2902), + [anon_sym_default] = ACTIONS(2902), + [anon_sym_while] = ACTIONS(2902), + [anon_sym_do] = ACTIONS(2902), + [anon_sym_for] = ACTIONS(2902), + [anon_sym_return] = ACTIONS(2902), + [anon_sym_break] = ACTIONS(2902), + [anon_sym_continue] = ACTIONS(2902), + [anon_sym_goto] = ACTIONS(2902), + [anon_sym_AMP] = ACTIONS(2900), + [anon_sym_BANG] = ACTIONS(2900), + [anon_sym_TILDE] = ACTIONS(2900), + [anon_sym_PLUS] = ACTIONS(2902), + [anon_sym_DASH] = ACTIONS(2902), + [anon_sym_DASH_DASH] = ACTIONS(2900), + [anon_sym_PLUS_PLUS] = ACTIONS(2900), + [anon_sym_sizeof] = ACTIONS(2902), + [sym_number_literal] = ACTIONS(2900), + [anon_sym_SQUOTE] = ACTIONS(2900), + [anon_sym_DQUOTE] = ACTIONS(2900), + [sym_true] = ACTIONS(2902), + [sym_false] = ACTIONS(2902), + [sym_null] = ACTIONS(2902), + [sym_identifier] = ACTIONS(2902), + [sym_comment] = ACTIONS(59), }, [1128] = { - [sym__expression] = STATE(1162), - [sym_conditional_expression] = STATE(1162), - [sym_assignment_expression] = STATE(1162), - [sym_pointer_expression] = STATE(1162), - [sym_logical_expression] = STATE(1162), - [sym_bitwise_expression] = STATE(1162), - [sym_equality_expression] = STATE(1162), - [sym_relational_expression] = STATE(1162), - [sym_shift_expression] = STATE(1162), - [sym_math_expression] = STATE(1162), - [sym_cast_expression] = STATE(1162), - [sym_sizeof_expression] = STATE(1162), - [sym_subscript_expression] = STATE(1162), - [sym_call_expression] = STATE(1162), - [sym_field_expression] = STATE(1162), - [sym_compound_literal_expression] = STATE(1162), - [sym_parenthesized_expression] = STATE(1162), - [sym_char_literal] = STATE(1162), - [sym_concatenated_string] = STATE(1162), - [sym_string_literal] = STATE(374), - [anon_sym_RPAREN] = ACTIONS(3199), - [anon_sym_LPAREN2] = ACTIONS(892), - [anon_sym_STAR] = ACTIONS(894), - [anon_sym_AMP] = ACTIONS(894), - [anon_sym_BANG] = ACTIONS(896), - [anon_sym_TILDE] = ACTIONS(898), - [anon_sym_PLUS] = ACTIONS(900), - [anon_sym_DASH] = ACTIONS(900), - [anon_sym_DASH_DASH] = ACTIONS(902), - [anon_sym_PLUS_PLUS] = ACTIONS(902), - [anon_sym_sizeof] = ACTIONS(904), - [sym_number_literal] = ACTIONS(3201), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(3203), - [sym_false] = ACTIONS(3203), - [sym_null] = ACTIONS(3203), - [sym_identifier] = ACTIONS(3203), - [sym_comment] = ACTIONS(37), + [sym__expression] = STATE(1170), + [sym_conditional_expression] = STATE(1170), + [sym_assignment_expression] = STATE(1170), + [sym_pointer_expression] = STATE(1170), + [sym_logical_expression] = STATE(1170), + [sym_bitwise_expression] = STATE(1170), + [sym_equality_expression] = STATE(1170), + [sym_relational_expression] = STATE(1170), + [sym_shift_expression] = STATE(1170), + [sym_math_expression] = STATE(1170), + [sym_cast_expression] = STATE(1170), + [sym_sizeof_expression] = STATE(1170), + [sym_subscript_expression] = STATE(1170), + [sym_call_expression] = STATE(1170), + [sym_field_expression] = STATE(1170), + [sym_compound_literal_expression] = STATE(1170), + [sym_parenthesized_expression] = STATE(1170), + [sym_char_literal] = STATE(1170), + [sym_concatenated_string] = STATE(1170), + [sym_string_literal] = STATE(55), + [anon_sym_RPAREN] = ACTIONS(3260), + [anon_sym_LPAREN2] = ACTIONS(85), + [anon_sym_STAR] = ACTIONS(87), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_PLUS] = ACTIONS(97), + [anon_sym_DASH] = ACTIONS(97), + [anon_sym_DASH_DASH] = ACTIONS(99), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(101), + [sym_number_literal] = ACTIONS(3262), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(3264), + [sym_false] = ACTIONS(3264), + [sym_null] = ACTIONS(3264), + [sym_identifier] = ACTIONS(3264), + [sym_comment] = ACTIONS(59), }, [1129] = { - [sym_argument_list] = STATE(430), - [anon_sym_SEMI] = ACTIONS(3205), - [anon_sym_LPAREN2] = ACTIONS(1012), - [anon_sym_STAR] = ACTIONS(1319), - [anon_sym_LBRACK] = ACTIONS(1016), - [anon_sym_EQ] = ACTIONS(1321), - [anon_sym_QMARK] = ACTIONS(1323), - [anon_sym_STAR_EQ] = ACTIONS(1325), - [anon_sym_SLASH_EQ] = ACTIONS(1325), - [anon_sym_PERCENT_EQ] = ACTIONS(1325), - [anon_sym_PLUS_EQ] = ACTIONS(1325), - [anon_sym_DASH_EQ] = ACTIONS(1325), - [anon_sym_LT_LT_EQ] = ACTIONS(1325), - [anon_sym_GT_GT_EQ] = ACTIONS(1325), - [anon_sym_AMP_EQ] = ACTIONS(1325), - [anon_sym_CARET_EQ] = ACTIONS(1325), - [anon_sym_PIPE_EQ] = ACTIONS(1325), - [anon_sym_AMP] = ACTIONS(1327), - [anon_sym_PIPE_PIPE] = ACTIONS(1329), - [anon_sym_AMP_AMP] = ACTIONS(1331), - [anon_sym_PIPE] = ACTIONS(1333), - [anon_sym_CARET] = ACTIONS(1335), - [anon_sym_EQ_EQ] = ACTIONS(1337), - [anon_sym_BANG_EQ] = ACTIONS(1337), - [anon_sym_LT] = ACTIONS(1339), - [anon_sym_GT] = ACTIONS(1339), - [anon_sym_LT_EQ] = ACTIONS(1341), - [anon_sym_GT_EQ] = ACTIONS(1341), - [anon_sym_LT_LT] = ACTIONS(1343), - [anon_sym_GT_GT] = ACTIONS(1343), - [anon_sym_PLUS] = ACTIONS(1345), - [anon_sym_DASH] = ACTIONS(1345), - [anon_sym_SLASH] = ACTIONS(1319), - [anon_sym_PERCENT] = ACTIONS(1319), - [anon_sym_DASH_DASH] = ACTIONS(1044), - [anon_sym_PLUS_PLUS] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1046), - [anon_sym_DASH_GT] = ACTIONS(1046), - [sym_comment] = ACTIONS(37), + [sym_argument_list] = STATE(98), + [anon_sym_SEMI] = ACTIONS(3266), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_LBRACK] = ACTIONS(188), + [anon_sym_EQ] = ACTIONS(1896), + [anon_sym_QMARK] = ACTIONS(1898), + [anon_sym_STAR_EQ] = ACTIONS(1900), + [anon_sym_SLASH_EQ] = ACTIONS(1900), + [anon_sym_PERCENT_EQ] = ACTIONS(1900), + [anon_sym_PLUS_EQ] = ACTIONS(1900), + [anon_sym_DASH_EQ] = ACTIONS(1900), + [anon_sym_LT_LT_EQ] = ACTIONS(1900), + [anon_sym_GT_GT_EQ] = ACTIONS(1900), + [anon_sym_AMP_EQ] = ACTIONS(1900), + [anon_sym_CARET_EQ] = ACTIONS(1900), + [anon_sym_PIPE_EQ] = ACTIONS(1900), + [anon_sym_AMP] = ACTIONS(1902), + [anon_sym_PIPE_PIPE] = ACTIONS(1904), + [anon_sym_AMP_AMP] = ACTIONS(1906), + [anon_sym_PIPE] = ACTIONS(1908), + [anon_sym_CARET] = ACTIONS(1910), + [anon_sym_EQ_EQ] = ACTIONS(1912), + [anon_sym_BANG_EQ] = ACTIONS(1912), + [anon_sym_LT] = ACTIONS(1914), + [anon_sym_GT] = ACTIONS(1914), + [anon_sym_LT_EQ] = ACTIONS(1916), + [anon_sym_GT_EQ] = ACTIONS(1916), + [anon_sym_LT_LT] = ACTIONS(1918), + [anon_sym_GT_GT] = ACTIONS(1918), + [anon_sym_PLUS] = ACTIONS(1920), + [anon_sym_DASH] = ACTIONS(1920), + [anon_sym_SLASH] = ACTIONS(1894), + [anon_sym_PERCENT] = ACTIONS(1894), + [anon_sym_DASH_DASH] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(216), + [anon_sym_DOT] = ACTIONS(218), + [anon_sym_DASH_GT] = ACTIONS(218), + [sym_comment] = ACTIONS(59), }, [1130] = { - [sym__expression] = STATE(1164), - [sym_conditional_expression] = STATE(1164), - [sym_assignment_expression] = STATE(1164), - [sym_pointer_expression] = STATE(1164), - [sym_logical_expression] = STATE(1164), - [sym_bitwise_expression] = STATE(1164), - [sym_equality_expression] = STATE(1164), - [sym_relational_expression] = STATE(1164), - [sym_shift_expression] = STATE(1164), - [sym_math_expression] = STATE(1164), - [sym_cast_expression] = STATE(1164), - [sym_sizeof_expression] = STATE(1164), - [sym_subscript_expression] = STATE(1164), - [sym_call_expression] = STATE(1164), - [sym_field_expression] = STATE(1164), - [sym_compound_literal_expression] = STATE(1164), - [sym_parenthesized_expression] = STATE(1164), - [sym_char_literal] = STATE(1164), - [sym_concatenated_string] = STATE(1164), - [sym_string_literal] = STATE(342), - [anon_sym_SEMI] = ACTIONS(3205), - [anon_sym_LPAREN2] = ACTIONS(780), - [anon_sym_STAR] = ACTIONS(782), - [anon_sym_AMP] = ACTIONS(782), - [anon_sym_BANG] = ACTIONS(784), - [anon_sym_TILDE] = ACTIONS(786), - [anon_sym_PLUS] = ACTIONS(788), - [anon_sym_DASH] = ACTIONS(788), - [anon_sym_DASH_DASH] = ACTIONS(790), - [anon_sym_PLUS_PLUS] = ACTIONS(790), - [anon_sym_sizeof] = ACTIONS(792), - [sym_number_literal] = ACTIONS(3207), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(3209), - [sym_false] = ACTIONS(3209), - [sym_null] = ACTIONS(3209), - [sym_identifier] = ACTIONS(3209), - [sym_comment] = ACTIONS(37), + [sym__expression] = STATE(1172), + [sym_conditional_expression] = STATE(1172), + [sym_assignment_expression] = STATE(1172), + [sym_pointer_expression] = STATE(1172), + [sym_logical_expression] = STATE(1172), + [sym_bitwise_expression] = STATE(1172), + [sym_equality_expression] = STATE(1172), + [sym_relational_expression] = STATE(1172), + [sym_shift_expression] = STATE(1172), + [sym_math_expression] = STATE(1172), + [sym_cast_expression] = STATE(1172), + [sym_sizeof_expression] = STATE(1172), + [sym_subscript_expression] = STATE(1172), + [sym_call_expression] = STATE(1172), + [sym_field_expression] = STATE(1172), + [sym_compound_literal_expression] = STATE(1172), + [sym_parenthesized_expression] = STATE(1172), + [sym_char_literal] = STATE(1172), + [sym_concatenated_string] = STATE(1172), + [sym_string_literal] = STATE(534), + [anon_sym_SEMI] = ACTIONS(3266), + [anon_sym_LPAREN2] = ACTIONS(1349), + [anon_sym_STAR] = ACTIONS(1351), + [anon_sym_AMP] = ACTIONS(1351), + [anon_sym_BANG] = ACTIONS(1353), + [anon_sym_TILDE] = ACTIONS(1355), + [anon_sym_PLUS] = ACTIONS(1357), + [anon_sym_DASH] = ACTIONS(1357), + [anon_sym_DASH_DASH] = ACTIONS(1359), + [anon_sym_PLUS_PLUS] = ACTIONS(1359), + [anon_sym_sizeof] = ACTIONS(1361), + [sym_number_literal] = ACTIONS(3268), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(3270), + [sym_false] = ACTIONS(3270), + [sym_null] = ACTIONS(3270), + [sym_identifier] = ACTIONS(3270), + [sym_comment] = ACTIONS(59), }, [1131] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2160), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2160), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2160), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2160), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2160), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2160), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2160), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2160), - [sym_preproc_directive] = ACTIONS(2160), - [anon_sym_SEMI] = ACTIONS(2158), - [anon_sym_typedef] = ACTIONS(2160), - [anon_sym_extern] = ACTIONS(2160), - [anon_sym_LBRACE] = ACTIONS(2158), - [anon_sym_LPAREN2] = ACTIONS(2158), - [anon_sym_STAR] = ACTIONS(2158), - [anon_sym_static] = ACTIONS(2160), - [anon_sym_auto] = ACTIONS(2160), - [anon_sym_register] = ACTIONS(2160), - [anon_sym_inline] = ACTIONS(2160), - [anon_sym_const] = ACTIONS(2160), - [anon_sym_restrict] = ACTIONS(2160), - [anon_sym_volatile] = ACTIONS(2160), - [anon_sym__Atomic] = ACTIONS(2160), - [anon_sym_unsigned] = ACTIONS(2160), - [anon_sym_long] = ACTIONS(2160), - [anon_sym_short] = ACTIONS(2160), - [sym_primitive_type] = ACTIONS(2160), - [anon_sym_enum] = ACTIONS(2160), - [anon_sym_struct] = ACTIONS(2160), - [anon_sym_union] = ACTIONS(2160), - [anon_sym_if] = ACTIONS(2160), - [anon_sym_else] = ACTIONS(2160), - [anon_sym_switch] = ACTIONS(2160), - [anon_sym_case] = ACTIONS(2160), - [anon_sym_default] = ACTIONS(2160), - [anon_sym_while] = ACTIONS(2160), - [anon_sym_do] = ACTIONS(2160), - [anon_sym_for] = ACTIONS(2160), - [anon_sym_return] = ACTIONS(2160), - [anon_sym_break] = ACTIONS(2160), - [anon_sym_continue] = ACTIONS(2160), - [anon_sym_goto] = ACTIONS(2160), - [anon_sym_AMP] = ACTIONS(2158), - [anon_sym_BANG] = ACTIONS(2158), - [anon_sym_TILDE] = ACTIONS(2158), - [anon_sym_PLUS] = ACTIONS(2160), - [anon_sym_DASH] = ACTIONS(2160), - [anon_sym_DASH_DASH] = ACTIONS(2158), - [anon_sym_PLUS_PLUS] = ACTIONS(2158), - [anon_sym_sizeof] = ACTIONS(2160), - [sym_number_literal] = ACTIONS(2158), - [anon_sym_SQUOTE] = ACTIONS(2158), - [anon_sym_DQUOTE] = ACTIONS(2158), - [sym_true] = ACTIONS(2160), - [sym_false] = ACTIONS(2160), - [sym_null] = ACTIONS(2160), - [sym_identifier] = ACTIONS(2160), - [sym_comment] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(2569), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2571), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2571), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2571), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2571), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2571), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2571), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2571), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2571), + [sym_preproc_directive] = ACTIONS(2571), + [anon_sym_typedef] = ACTIONS(2571), + [anon_sym_extern] = ACTIONS(2571), + [anon_sym_LBRACE] = ACTIONS(2569), + [anon_sym_LPAREN2] = ACTIONS(2569), + [anon_sym_STAR] = ACTIONS(2569), + [anon_sym_static] = ACTIONS(2571), + [anon_sym_auto] = ACTIONS(2571), + [anon_sym_register] = ACTIONS(2571), + [anon_sym_inline] = ACTIONS(2571), + [anon_sym_const] = ACTIONS(2571), + [anon_sym_restrict] = ACTIONS(2571), + [anon_sym_volatile] = ACTIONS(2571), + [anon_sym__Atomic] = ACTIONS(2571), + [anon_sym_unsigned] = ACTIONS(2571), + [anon_sym_long] = ACTIONS(2571), + [anon_sym_short] = ACTIONS(2571), + [sym_primitive_type] = ACTIONS(2571), + [anon_sym_enum] = ACTIONS(2571), + [anon_sym_struct] = ACTIONS(2571), + [anon_sym_union] = ACTIONS(2571), + [anon_sym_if] = ACTIONS(2571), + [anon_sym_else] = ACTIONS(3272), + [anon_sym_switch] = ACTIONS(2571), + [anon_sym_case] = ACTIONS(2571), + [anon_sym_default] = ACTIONS(2571), + [anon_sym_while] = ACTIONS(2571), + [anon_sym_do] = ACTIONS(2571), + [anon_sym_for] = ACTIONS(2571), + [anon_sym_return] = ACTIONS(2571), + [anon_sym_break] = ACTIONS(2571), + [anon_sym_continue] = ACTIONS(2571), + [anon_sym_goto] = ACTIONS(2571), + [anon_sym_AMP] = ACTIONS(2569), + [anon_sym_BANG] = ACTIONS(2569), + [anon_sym_TILDE] = ACTIONS(2569), + [anon_sym_PLUS] = ACTIONS(2571), + [anon_sym_DASH] = ACTIONS(2571), + [anon_sym_DASH_DASH] = ACTIONS(2569), + [anon_sym_PLUS_PLUS] = ACTIONS(2569), + [anon_sym_sizeof] = ACTIONS(2571), + [sym_number_literal] = ACTIONS(2569), + [anon_sym_SQUOTE] = ACTIONS(2569), + [anon_sym_DQUOTE] = ACTIONS(2569), + [sym_true] = ACTIONS(2571), + [sym_false] = ACTIONS(2571), + [sym_null] = ACTIONS(2571), + [sym_identifier] = ACTIONS(2571), + [sym_comment] = ACTIONS(59), }, [1132] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3087), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3087), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3087), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3087), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3087), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3087), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(3087), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(3087), - [sym_preproc_directive] = ACTIONS(3087), - [anon_sym_SEMI] = ACTIONS(3089), - [anon_sym_typedef] = ACTIONS(3087), - [anon_sym_extern] = ACTIONS(3087), - [anon_sym_LBRACE] = ACTIONS(3089), - [anon_sym_LPAREN2] = ACTIONS(3089), - [anon_sym_STAR] = ACTIONS(3089), - [anon_sym_static] = ACTIONS(3087), - [anon_sym_auto] = ACTIONS(3087), - [anon_sym_register] = ACTIONS(3087), - [anon_sym_inline] = ACTIONS(3087), - [anon_sym_const] = ACTIONS(3087), - [anon_sym_restrict] = ACTIONS(3087), - [anon_sym_volatile] = ACTIONS(3087), - [anon_sym__Atomic] = ACTIONS(3087), - [anon_sym_unsigned] = ACTIONS(3087), - [anon_sym_long] = ACTIONS(3087), - [anon_sym_short] = ACTIONS(3087), - [sym_primitive_type] = ACTIONS(3087), - [anon_sym_enum] = ACTIONS(3087), - [anon_sym_struct] = ACTIONS(3087), - [anon_sym_union] = ACTIONS(3087), - [anon_sym_if] = ACTIONS(3087), - [anon_sym_else] = ACTIONS(3087), - [anon_sym_switch] = ACTIONS(3087), - [anon_sym_case] = ACTIONS(3087), - [anon_sym_default] = ACTIONS(3087), - [anon_sym_while] = ACTIONS(3087), - [anon_sym_do] = ACTIONS(3087), - [anon_sym_for] = ACTIONS(3087), - [anon_sym_return] = ACTIONS(3087), - [anon_sym_break] = ACTIONS(3087), - [anon_sym_continue] = ACTIONS(3087), - [anon_sym_goto] = ACTIONS(3087), - [anon_sym_AMP] = ACTIONS(3089), - [anon_sym_BANG] = ACTIONS(3089), - [anon_sym_TILDE] = ACTIONS(3089), - [anon_sym_PLUS] = ACTIONS(3087), - [anon_sym_DASH] = ACTIONS(3087), - [anon_sym_DASH_DASH] = ACTIONS(3089), - [anon_sym_PLUS_PLUS] = ACTIONS(3089), - [anon_sym_sizeof] = ACTIONS(3087), - [sym_number_literal] = ACTIONS(3089), - [anon_sym_SQUOTE] = ACTIONS(3089), - [anon_sym_DQUOTE] = ACTIONS(3089), - [sym_true] = ACTIONS(3087), - [sym_false] = ACTIONS(3087), - [sym_null] = ACTIONS(3087), - [sym_identifier] = ACTIONS(3087), - [sym_comment] = ACTIONS(37), + [sym_declaration] = STATE(1087), + [sym_type_definition] = STATE(1087), + [sym__declaration_specifiers] = STATE(1012), + [sym_compound_statement] = STATE(1087), + [sym_storage_class_specifier] = STATE(142), + [sym_type_qualifier] = STATE(142), + [sym__type_specifier] = STATE(141), + [sym_sized_type_specifier] = STATE(141), + [sym_enum_specifier] = STATE(141), + [sym_struct_specifier] = STATE(141), + [sym_union_specifier] = STATE(141), + [sym_labeled_statement] = STATE(1087), + [sym_expression_statement] = STATE(1087), + [sym_if_statement] = STATE(1087), + [sym_switch_statement] = STATE(1087), + [sym_case_statement] = STATE(1087), + [sym_while_statement] = STATE(1087), + [sym_do_statement] = STATE(1087), + [sym_for_statement] = STATE(1087), + [sym_return_statement] = STATE(1087), + [sym_break_statement] = STATE(1087), + [sym_continue_statement] = STATE(1087), + [sym_goto_statement] = STATE(1087), + [sym__expression] = STATE(756), + [sym_comma_expression] = STATE(757), + [sym_conditional_expression] = STATE(756), + [sym_assignment_expression] = STATE(756), + [sym_pointer_expression] = STATE(756), + [sym_logical_expression] = STATE(756), + [sym_bitwise_expression] = STATE(756), + [sym_equality_expression] = STATE(756), + [sym_relational_expression] = STATE(756), + [sym_shift_expression] = STATE(756), + [sym_math_expression] = STATE(756), + [sym_cast_expression] = STATE(756), + [sym_sizeof_expression] = STATE(756), + [sym_subscript_expression] = STATE(756), + [sym_call_expression] = STATE(756), + [sym_field_expression] = STATE(756), + [sym_compound_literal_expression] = STATE(756), + [sym_parenthesized_expression] = STATE(756), + [sym_char_literal] = STATE(756), + [sym_concatenated_string] = STATE(756), + [sym_string_literal] = STATE(374), + [sym_macro_type_specifier] = STATE(141), + [aux_sym__declaration_specifiers_repeat1] = STATE(142), + [aux_sym_sized_type_specifier_repeat1] = STATE(143), + [anon_sym_SEMI] = ACTIONS(1940), + [anon_sym_typedef] = ACTIONS(267), + [anon_sym_extern] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_LPAREN2] = ACTIONS(936), + [anon_sym_STAR] = ACTIONS(938), + [anon_sym_static] = ACTIONS(25), + [anon_sym_auto] = ACTIONS(25), + [anon_sym_register] = ACTIONS(25), + [anon_sym_inline] = ACTIONS(25), + [anon_sym_const] = ACTIONS(27), + [anon_sym_restrict] = ACTIONS(27), + [anon_sym_volatile] = ACTIONS(27), + [anon_sym__Atomic] = ACTIONS(27), + [anon_sym_unsigned] = ACTIONS(294), + [anon_sym_long] = ACTIONS(294), + [anon_sym_short] = ACTIONS(294), + [sym_primitive_type] = ACTIONS(296), + [anon_sym_enum] = ACTIONS(33), + [anon_sym_struct] = ACTIONS(35), + [anon_sym_union] = ACTIONS(37), + [anon_sym_if] = ACTIONS(2752), + [anon_sym_switch] = ACTIONS(2754), + [anon_sym_case] = ACTIONS(2756), + [anon_sym_default] = ACTIONS(2758), + [anon_sym_while] = ACTIONS(2760), + [anon_sym_do] = ACTIONS(1962), + [anon_sym_for] = ACTIONS(2762), + [anon_sym_return] = ACTIONS(1966), + [anon_sym_break] = ACTIONS(1968), + [anon_sym_continue] = ACTIONS(1970), + [anon_sym_goto] = ACTIONS(1972), + [anon_sym_AMP] = ACTIONS(938), + [anon_sym_BANG] = ACTIONS(962), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_DASH_DASH] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(968), + [anon_sym_sizeof] = ACTIONS(970), + [sym_number_literal] = ACTIONS(1974), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(1976), + [sym_false] = ACTIONS(1976), + [sym_null] = ACTIONS(1976), + [sym_identifier] = ACTIONS(3178), + [sym_comment] = ACTIONS(59), }, [1133] = { - [sym_compound_statement] = STATE(1165), - [sym_labeled_statement] = STATE(1165), - [sym_expression_statement] = STATE(1165), - [sym_if_statement] = STATE(1165), - [sym_switch_statement] = STATE(1165), - [sym_case_statement] = STATE(1165), - [sym_while_statement] = STATE(1165), - [sym_do_statement] = STATE(1165), - [sym_for_statement] = STATE(1165), - [sym_return_statement] = STATE(1165), - [sym_break_statement] = STATE(1165), - [sym_continue_statement] = STATE(1165), - [sym_goto_statement] = STATE(1165), - [sym__expression] = STATE(594), - [sym_comma_expression] = STATE(595), - [sym_conditional_expression] = STATE(594), - [sym_assignment_expression] = STATE(594), - [sym_pointer_expression] = STATE(594), - [sym_logical_expression] = STATE(594), - [sym_bitwise_expression] = STATE(594), - [sym_equality_expression] = STATE(594), - [sym_relational_expression] = STATE(594), - [sym_shift_expression] = STATE(594), - [sym_math_expression] = STATE(594), - [sym_cast_expression] = STATE(594), - [sym_sizeof_expression] = STATE(594), - [sym_subscript_expression] = STATE(594), - [sym_call_expression] = STATE(594), - [sym_field_expression] = STATE(594), - [sym_compound_literal_expression] = STATE(594), - [sym_parenthesized_expression] = STATE(594), - [sym_char_literal] = STATE(594), - [sym_concatenated_string] = STATE(594), - [sym_string_literal] = STATE(230), - [anon_sym_SEMI] = ACTIONS(1395), - [anon_sym_LBRACE] = ACTIONS(678), - [anon_sym_LPAREN2] = ACTIONS(507), - [anon_sym_STAR] = ACTIONS(509), - [anon_sym_if] = ACTIONS(1397), - [anon_sym_switch] = ACTIONS(1399), - [anon_sym_case] = ACTIONS(1401), - [anon_sym_default] = ACTIONS(1403), - [anon_sym_while] = ACTIONS(1405), - [anon_sym_do] = ACTIONS(1407), - [anon_sym_for] = ACTIONS(1409), - [anon_sym_return] = ACTIONS(1411), - [anon_sym_break] = ACTIONS(1413), - [anon_sym_continue] = ACTIONS(1415), - [anon_sym_goto] = ACTIONS(1417), - [anon_sym_AMP] = ACTIONS(509), - [anon_sym_BANG] = ACTIONS(533), - [anon_sym_TILDE] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DASH] = ACTIONS(537), - [anon_sym_DASH_DASH] = ACTIONS(539), - [anon_sym_PLUS_PLUS] = ACTIONS(539), - [anon_sym_sizeof] = ACTIONS(541), - [sym_number_literal] = ACTIONS(1419), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(1421), - [sym_false] = ACTIONS(1421), - [sym_null] = ACTIONS(1421), - [sym_identifier] = ACTIONS(2535), - [sym_comment] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(166), + [anon_sym_COMMA] = ACTIONS(166), + [anon_sym_extern] = ACTIONS(157), + [anon_sym_LPAREN2] = ACTIONS(159), + [anon_sym_STAR] = ACTIONS(163), + [anon_sym_LBRACK] = ACTIONS(166), + [anon_sym_EQ] = ACTIONS(168), + [anon_sym_static] = ACTIONS(157), + [anon_sym_auto] = ACTIONS(157), + [anon_sym_register] = ACTIONS(157), + [anon_sym_inline] = ACTIONS(157), + [anon_sym_const] = ACTIONS(157), + [anon_sym_restrict] = ACTIONS(157), + [anon_sym_volatile] = ACTIONS(157), + [anon_sym__Atomic] = ACTIONS(157), + [anon_sym_COLON] = ACTIONS(3074), + [anon_sym_QMARK] = ACTIONS(166), + [anon_sym_STAR_EQ] = ACTIONS(166), + [anon_sym_SLASH_EQ] = ACTIONS(166), + [anon_sym_PERCENT_EQ] = ACTIONS(166), + [anon_sym_PLUS_EQ] = ACTIONS(166), + [anon_sym_DASH_EQ] = ACTIONS(166), + [anon_sym_LT_LT_EQ] = ACTIONS(166), + [anon_sym_GT_GT_EQ] = ACTIONS(166), + [anon_sym_AMP_EQ] = ACTIONS(166), + [anon_sym_CARET_EQ] = ACTIONS(166), + [anon_sym_PIPE_EQ] = ACTIONS(166), + [anon_sym_AMP] = ACTIONS(168), + [anon_sym_PIPE_PIPE] = ACTIONS(166), + [anon_sym_AMP_AMP] = ACTIONS(166), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_CARET] = ACTIONS(168), + [anon_sym_EQ_EQ] = ACTIONS(166), + [anon_sym_BANG_EQ] = ACTIONS(166), + [anon_sym_LT] = ACTIONS(168), + [anon_sym_GT] = ACTIONS(168), + [anon_sym_LT_EQ] = ACTIONS(166), + [anon_sym_GT_EQ] = ACTIONS(166), + [anon_sym_LT_LT] = ACTIONS(168), + [anon_sym_GT_GT] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(168), + [anon_sym_DASH] = ACTIONS(168), + [anon_sym_SLASH] = ACTIONS(168), + [anon_sym_PERCENT] = ACTIONS(168), + [anon_sym_DASH_DASH] = ACTIONS(166), + [anon_sym_PLUS_PLUS] = ACTIONS(166), + [anon_sym_DOT] = ACTIONS(166), + [anon_sym_DASH_GT] = ACTIONS(166), + [sym_identifier] = ACTIONS(157), + [sym_comment] = ACTIONS(59), }, [1134] = { - [aux_sym_for_statement_repeat1] = STATE(991), - [anon_sym_COMMA] = ACTIONS(2344), - [anon_sym_RPAREN] = ACTIONS(3211), - [sym_comment] = ACTIONS(37), + [sym__expression] = STATE(1175), + [sym_conditional_expression] = STATE(1175), + [sym_assignment_expression] = STATE(1175), + [sym_pointer_expression] = STATE(1175), + [sym_logical_expression] = STATE(1175), + [sym_bitwise_expression] = STATE(1175), + [sym_equality_expression] = STATE(1175), + [sym_relational_expression] = STATE(1175), + [sym_shift_expression] = STATE(1175), + [sym_math_expression] = STATE(1175), + [sym_cast_expression] = STATE(1175), + [sym_sizeof_expression] = STATE(1175), + [sym_subscript_expression] = STATE(1175), + [sym_call_expression] = STATE(1175), + [sym_field_expression] = STATE(1175), + [sym_compound_literal_expression] = STATE(1175), + [sym_parenthesized_expression] = STATE(1175), + [sym_char_literal] = STATE(1175), + [sym_concatenated_string] = STATE(1175), + [sym_string_literal] = STATE(534), + [anon_sym_SEMI] = ACTIONS(3274), + [anon_sym_LPAREN2] = ACTIONS(1349), + [anon_sym_STAR] = ACTIONS(1351), + [anon_sym_AMP] = ACTIONS(1351), + [anon_sym_BANG] = ACTIONS(1353), + [anon_sym_TILDE] = ACTIONS(1355), + [anon_sym_PLUS] = ACTIONS(1357), + [anon_sym_DASH] = ACTIONS(1357), + [anon_sym_DASH_DASH] = ACTIONS(1359), + [anon_sym_PLUS_PLUS] = ACTIONS(1359), + [anon_sym_sizeof] = ACTIONS(1361), + [sym_number_literal] = ACTIONS(3276), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(3278), + [sym_false] = ACTIONS(3278), + [sym_null] = ACTIONS(3278), + [sym_identifier] = ACTIONS(3278), + [sym_comment] = ACTIONS(59), }, [1135] = { - [sym_argument_list] = STATE(430), - [aux_sym_for_statement_repeat1] = STATE(1167), - [anon_sym_COMMA] = ACTIONS(2344), - [anon_sym_RPAREN] = ACTIONS(3211), - [anon_sym_LPAREN2] = ACTIONS(1012), - [anon_sym_STAR] = ACTIONS(1437), - [anon_sym_LBRACK] = ACTIONS(1016), - [anon_sym_EQ] = ACTIONS(1439), - [anon_sym_QMARK] = ACTIONS(1441), - [anon_sym_STAR_EQ] = ACTIONS(1443), - [anon_sym_SLASH_EQ] = ACTIONS(1443), - [anon_sym_PERCENT_EQ] = ACTIONS(1443), - [anon_sym_PLUS_EQ] = ACTIONS(1443), - [anon_sym_DASH_EQ] = ACTIONS(1443), - [anon_sym_LT_LT_EQ] = ACTIONS(1443), - [anon_sym_GT_GT_EQ] = ACTIONS(1443), - [anon_sym_AMP_EQ] = ACTIONS(1443), - [anon_sym_CARET_EQ] = ACTIONS(1443), - [anon_sym_PIPE_EQ] = ACTIONS(1443), - [anon_sym_AMP] = ACTIONS(1445), - [anon_sym_PIPE_PIPE] = ACTIONS(1447), - [anon_sym_AMP_AMP] = ACTIONS(1449), - [anon_sym_PIPE] = ACTIONS(1451), - [anon_sym_CARET] = ACTIONS(1453), - [anon_sym_EQ_EQ] = ACTIONS(1455), - [anon_sym_BANG_EQ] = ACTIONS(1455), - [anon_sym_LT] = ACTIONS(1457), - [anon_sym_GT] = ACTIONS(1457), - [anon_sym_LT_EQ] = ACTIONS(1459), - [anon_sym_GT_EQ] = ACTIONS(1459), - [anon_sym_LT_LT] = ACTIONS(1461), - [anon_sym_GT_GT] = ACTIONS(1461), - [anon_sym_PLUS] = ACTIONS(1463), - [anon_sym_DASH] = ACTIONS(1463), - [anon_sym_SLASH] = ACTIONS(1437), - [anon_sym_PERCENT] = ACTIONS(1437), - [anon_sym_DASH_DASH] = ACTIONS(1044), - [anon_sym_PLUS_PLUS] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1046), - [anon_sym_DASH_GT] = ACTIONS(1046), - [sym_comment] = ACTIONS(37), + [sym_argument_list] = STATE(98), + [anon_sym_SEMI] = ACTIONS(3280), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_LBRACK] = ACTIONS(188), + [anon_sym_EQ] = ACTIONS(1896), + [anon_sym_QMARK] = ACTIONS(1898), + [anon_sym_STAR_EQ] = ACTIONS(1900), + [anon_sym_SLASH_EQ] = ACTIONS(1900), + [anon_sym_PERCENT_EQ] = ACTIONS(1900), + [anon_sym_PLUS_EQ] = ACTIONS(1900), + [anon_sym_DASH_EQ] = ACTIONS(1900), + [anon_sym_LT_LT_EQ] = ACTIONS(1900), + [anon_sym_GT_GT_EQ] = ACTIONS(1900), + [anon_sym_AMP_EQ] = ACTIONS(1900), + [anon_sym_CARET_EQ] = ACTIONS(1900), + [anon_sym_PIPE_EQ] = ACTIONS(1900), + [anon_sym_AMP] = ACTIONS(1902), + [anon_sym_PIPE_PIPE] = ACTIONS(1904), + [anon_sym_AMP_AMP] = ACTIONS(1906), + [anon_sym_PIPE] = ACTIONS(1908), + [anon_sym_CARET] = ACTIONS(1910), + [anon_sym_EQ_EQ] = ACTIONS(1912), + [anon_sym_BANG_EQ] = ACTIONS(1912), + [anon_sym_LT] = ACTIONS(1914), + [anon_sym_GT] = ACTIONS(1914), + [anon_sym_LT_EQ] = ACTIONS(1916), + [anon_sym_GT_EQ] = ACTIONS(1916), + [anon_sym_LT_LT] = ACTIONS(1918), + [anon_sym_GT_GT] = ACTIONS(1918), + [anon_sym_PLUS] = ACTIONS(1920), + [anon_sym_DASH] = ACTIONS(1920), + [anon_sym_SLASH] = ACTIONS(1894), + [anon_sym_PERCENT] = ACTIONS(1894), + [anon_sym_DASH_DASH] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(216), + [anon_sym_DOT] = ACTIONS(218), + [anon_sym_DASH_GT] = ACTIONS(218), + [sym_comment] = ACTIONS(59), }, [1136] = { - [sym__expression] = STATE(1168), - [sym_conditional_expression] = STATE(1168), - [sym_assignment_expression] = STATE(1168), - [sym_pointer_expression] = STATE(1168), - [sym_logical_expression] = STATE(1168), - [sym_bitwise_expression] = STATE(1168), - [sym_equality_expression] = STATE(1168), - [sym_relational_expression] = STATE(1168), - [sym_shift_expression] = STATE(1168), - [sym_math_expression] = STATE(1168), - [sym_cast_expression] = STATE(1168), - [sym_sizeof_expression] = STATE(1168), - [sym_subscript_expression] = STATE(1168), - [sym_call_expression] = STATE(1168), - [sym_field_expression] = STATE(1168), - [sym_compound_literal_expression] = STATE(1168), - [sym_parenthesized_expression] = STATE(1168), - [sym_char_literal] = STATE(1168), - [sym_concatenated_string] = STATE(1168), - [sym_string_literal] = STATE(374), - [anon_sym_RPAREN] = ACTIONS(3211), - [anon_sym_LPAREN2] = ACTIONS(892), - [anon_sym_STAR] = ACTIONS(894), - [anon_sym_AMP] = ACTIONS(894), - [anon_sym_BANG] = ACTIONS(896), - [anon_sym_TILDE] = ACTIONS(898), - [anon_sym_PLUS] = ACTIONS(900), - [anon_sym_DASH] = ACTIONS(900), - [anon_sym_DASH_DASH] = ACTIONS(902), - [anon_sym_PLUS_PLUS] = ACTIONS(902), - [anon_sym_sizeof] = ACTIONS(904), - [sym_number_literal] = ACTIONS(3213), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(3215), - [sym_false] = ACTIONS(3215), - [sym_null] = ACTIONS(3215), - [sym_identifier] = ACTIONS(3215), - [sym_comment] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(3106), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3108), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3108), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3108), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3108), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3108), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3108), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(3108), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(3108), + [sym_preproc_directive] = ACTIONS(3108), + [anon_sym_typedef] = ACTIONS(3108), + [anon_sym_extern] = ACTIONS(3108), + [anon_sym_LBRACE] = ACTIONS(3106), + [anon_sym_LPAREN2] = ACTIONS(3106), + [anon_sym_STAR] = ACTIONS(3106), + [anon_sym_static] = ACTIONS(3108), + [anon_sym_auto] = ACTIONS(3108), + [anon_sym_register] = ACTIONS(3108), + [anon_sym_inline] = ACTIONS(3108), + [anon_sym_const] = ACTIONS(3108), + [anon_sym_restrict] = ACTIONS(3108), + [anon_sym_volatile] = ACTIONS(3108), + [anon_sym__Atomic] = ACTIONS(3108), + [anon_sym_unsigned] = ACTIONS(3108), + [anon_sym_long] = ACTIONS(3108), + [anon_sym_short] = ACTIONS(3108), + [sym_primitive_type] = ACTIONS(3108), + [anon_sym_enum] = ACTIONS(3108), + [anon_sym_struct] = ACTIONS(3108), + [anon_sym_union] = ACTIONS(3108), + [anon_sym_if] = ACTIONS(3108), + [anon_sym_else] = ACTIONS(3108), + [anon_sym_switch] = ACTIONS(3108), + [anon_sym_case] = ACTIONS(3108), + [anon_sym_default] = ACTIONS(3108), + [anon_sym_while] = ACTIONS(3108), + [anon_sym_do] = ACTIONS(3108), + [anon_sym_for] = ACTIONS(3108), + [anon_sym_return] = ACTIONS(3108), + [anon_sym_break] = ACTIONS(3108), + [anon_sym_continue] = ACTIONS(3108), + [anon_sym_goto] = ACTIONS(3108), + [anon_sym_AMP] = ACTIONS(3106), + [anon_sym_BANG] = ACTIONS(3106), + [anon_sym_TILDE] = ACTIONS(3106), + [anon_sym_PLUS] = ACTIONS(3108), + [anon_sym_DASH] = ACTIONS(3108), + [anon_sym_DASH_DASH] = ACTIONS(3106), + [anon_sym_PLUS_PLUS] = ACTIONS(3106), + [anon_sym_sizeof] = ACTIONS(3108), + [sym_number_literal] = ACTIONS(3106), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_DQUOTE] = ACTIONS(3106), + [sym_true] = ACTIONS(3108), + [sym_false] = ACTIONS(3108), + [sym_null] = ACTIONS(3108), + [sym_identifier] = ACTIONS(3108), + [sym_comment] = ACTIONS(59), }, [1137] = { - [sym_compound_statement] = STATE(1109), - [sym_labeled_statement] = STATE(1109), - [sym_expression_statement] = STATE(1109), - [sym_if_statement] = STATE(1109), - [sym_switch_statement] = STATE(1109), - [sym_case_statement] = STATE(1109), - [sym_while_statement] = STATE(1109), - [sym_do_statement] = STATE(1109), - [sym_for_statement] = STATE(1109), - [sym_return_statement] = STATE(1109), - [sym_break_statement] = STATE(1109), - [sym_continue_statement] = STATE(1109), - [sym_goto_statement] = STATE(1109), - [sym__expression] = STATE(228), - [sym_comma_expression] = STATE(229), - [sym_conditional_expression] = STATE(228), - [sym_assignment_expression] = STATE(228), - [sym_pointer_expression] = STATE(228), - [sym_logical_expression] = STATE(228), - [sym_bitwise_expression] = STATE(228), - [sym_equality_expression] = STATE(228), - [sym_relational_expression] = STATE(228), - [sym_shift_expression] = STATE(228), - [sym_math_expression] = STATE(228), - [sym_cast_expression] = STATE(228), - [sym_sizeof_expression] = STATE(228), - [sym_subscript_expression] = STATE(228), - [sym_call_expression] = STATE(228), - [sym_field_expression] = STATE(228), - [sym_compound_literal_expression] = STATE(228), - [sym_parenthesized_expression] = STATE(228), - [sym_char_literal] = STATE(228), - [sym_concatenated_string] = STATE(228), - [sym_string_literal] = STATE(230), - [anon_sym_SEMI] = ACTIONS(503), - [anon_sym_LBRACE] = ACTIONS(229), - [anon_sym_LPAREN2] = ACTIONS(507), - [anon_sym_STAR] = ACTIONS(509), - [anon_sym_if] = ACTIONS(1475), - [anon_sym_switch] = ACTIONS(1477), - [anon_sym_case] = ACTIONS(1479), - [anon_sym_default] = ACTIONS(1481), - [anon_sym_while] = ACTIONS(1483), - [anon_sym_do] = ACTIONS(521), - [anon_sym_for] = ACTIONS(1485), - [anon_sym_return] = ACTIONS(525), - [anon_sym_break] = ACTIONS(527), - [anon_sym_continue] = ACTIONS(529), - [anon_sym_goto] = ACTIONS(531), - [anon_sym_AMP] = ACTIONS(509), - [anon_sym_BANG] = ACTIONS(533), - [anon_sym_TILDE] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DASH] = ACTIONS(537), - [anon_sym_DASH_DASH] = ACTIONS(539), - [anon_sym_PLUS_PLUS] = ACTIONS(539), - [anon_sym_sizeof] = ACTIONS(541), - [sym_number_literal] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(547), - [sym_false] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [sym_identifier] = ACTIONS(1487), - [sym_comment] = ACTIONS(37), + [sym_argument_list] = STATE(98), + [anon_sym_COMMA] = ACTIONS(315), + [anon_sym_RPAREN] = ACTIONS(3282), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(319), + [anon_sym_LBRACK] = ACTIONS(188), + [anon_sym_EQ] = ACTIONS(321), + [anon_sym_QMARK] = ACTIONS(323), + [anon_sym_STAR_EQ] = ACTIONS(325), + [anon_sym_SLASH_EQ] = ACTIONS(325), + [anon_sym_PERCENT_EQ] = ACTIONS(325), + [anon_sym_PLUS_EQ] = ACTIONS(325), + [anon_sym_DASH_EQ] = ACTIONS(325), + [anon_sym_LT_LT_EQ] = ACTIONS(325), + [anon_sym_GT_GT_EQ] = ACTIONS(325), + [anon_sym_AMP_EQ] = ACTIONS(325), + [anon_sym_CARET_EQ] = ACTIONS(325), + [anon_sym_PIPE_EQ] = ACTIONS(325), + [anon_sym_AMP] = ACTIONS(327), + [anon_sym_PIPE_PIPE] = ACTIONS(329), + [anon_sym_AMP_AMP] = ACTIONS(331), + [anon_sym_PIPE] = ACTIONS(333), + [anon_sym_CARET] = ACTIONS(335), + [anon_sym_EQ_EQ] = ACTIONS(337), + [anon_sym_BANG_EQ] = ACTIONS(337), + [anon_sym_LT] = ACTIONS(339), + [anon_sym_GT] = ACTIONS(339), + [anon_sym_LT_EQ] = ACTIONS(341), + [anon_sym_GT_EQ] = ACTIONS(341), + [anon_sym_LT_LT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(343), + [anon_sym_PLUS] = ACTIONS(345), + [anon_sym_DASH] = ACTIONS(345), + [anon_sym_SLASH] = ACTIONS(319), + [anon_sym_PERCENT] = ACTIONS(319), + [anon_sym_DASH_DASH] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(216), + [anon_sym_DOT] = ACTIONS(218), + [anon_sym_DASH_GT] = ACTIONS(218), + [sym_comment] = ACTIONS(59), }, [1138] = { - [aux_sym_for_statement_repeat1] = STATE(991), - [anon_sym_COMMA] = ACTIONS(2344), - [anon_sym_RPAREN] = ACTIONS(3217), - [sym_comment] = ACTIONS(37), + [anon_sym_RPAREN] = ACTIONS(3282), + [sym_comment] = ACTIONS(59), }, [1139] = { - [sym_argument_list] = STATE(430), - [aux_sym_for_statement_repeat1] = STATE(1170), - [anon_sym_COMMA] = ACTIONS(2344), - [anon_sym_RPAREN] = ACTIONS(3217), - [anon_sym_LPAREN2] = ACTIONS(1012), - [anon_sym_STAR] = ACTIONS(1437), - [anon_sym_LBRACK] = ACTIONS(1016), - [anon_sym_EQ] = ACTIONS(1439), - [anon_sym_QMARK] = ACTIONS(1441), - [anon_sym_STAR_EQ] = ACTIONS(1443), - [anon_sym_SLASH_EQ] = ACTIONS(1443), - [anon_sym_PERCENT_EQ] = ACTIONS(1443), - [anon_sym_PLUS_EQ] = ACTIONS(1443), - [anon_sym_DASH_EQ] = ACTIONS(1443), - [anon_sym_LT_LT_EQ] = ACTIONS(1443), - [anon_sym_GT_GT_EQ] = ACTIONS(1443), - [anon_sym_AMP_EQ] = ACTIONS(1443), - [anon_sym_CARET_EQ] = ACTIONS(1443), - [anon_sym_PIPE_EQ] = ACTIONS(1443), - [anon_sym_AMP] = ACTIONS(1445), - [anon_sym_PIPE_PIPE] = ACTIONS(1447), - [anon_sym_AMP_AMP] = ACTIONS(1449), - [anon_sym_PIPE] = ACTIONS(1451), - [anon_sym_CARET] = ACTIONS(1453), - [anon_sym_EQ_EQ] = ACTIONS(1455), - [anon_sym_BANG_EQ] = ACTIONS(1455), - [anon_sym_LT] = ACTIONS(1457), - [anon_sym_GT] = ACTIONS(1457), - [anon_sym_LT_EQ] = ACTIONS(1459), - [anon_sym_GT_EQ] = ACTIONS(1459), - [anon_sym_LT_LT] = ACTIONS(1461), - [anon_sym_GT_GT] = ACTIONS(1461), - [anon_sym_PLUS] = ACTIONS(1463), - [anon_sym_DASH] = ACTIONS(1463), - [anon_sym_SLASH] = ACTIONS(1437), - [anon_sym_PERCENT] = ACTIONS(1437), - [anon_sym_DASH_DASH] = ACTIONS(1044), - [anon_sym_PLUS_PLUS] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1046), - [anon_sym_DASH_GT] = ACTIONS(1046), - [sym_comment] = ACTIONS(37), - }, - [1140] = { - [sym__expression] = STATE(1171), - [sym_conditional_expression] = STATE(1171), - [sym_assignment_expression] = STATE(1171), - [sym_pointer_expression] = STATE(1171), - [sym_logical_expression] = STATE(1171), - [sym_bitwise_expression] = STATE(1171), - [sym_equality_expression] = STATE(1171), - [sym_relational_expression] = STATE(1171), - [sym_shift_expression] = STATE(1171), - [sym_math_expression] = STATE(1171), - [sym_cast_expression] = STATE(1171), - [sym_sizeof_expression] = STATE(1171), - [sym_subscript_expression] = STATE(1171), - [sym_call_expression] = STATE(1171), - [sym_field_expression] = STATE(1171), - [sym_compound_literal_expression] = STATE(1171), - [sym_parenthesized_expression] = STATE(1171), - [sym_char_literal] = STATE(1171), - [sym_concatenated_string] = STATE(1171), - [sym_string_literal] = STATE(374), - [anon_sym_RPAREN] = ACTIONS(3217), - [anon_sym_LPAREN2] = ACTIONS(892), - [anon_sym_STAR] = ACTIONS(894), - [anon_sym_AMP] = ACTIONS(894), - [anon_sym_BANG] = ACTIONS(896), - [anon_sym_TILDE] = ACTIONS(898), - [anon_sym_PLUS] = ACTIONS(900), - [anon_sym_DASH] = ACTIONS(900), - [anon_sym_DASH_DASH] = ACTIONS(902), - [anon_sym_PLUS_PLUS] = ACTIONS(902), - [anon_sym_sizeof] = ACTIONS(904), - [sym_number_literal] = ACTIONS(3219), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(3221), - [sym_false] = ACTIONS(3221), - [sym_null] = ACTIONS(3221), - [sym_identifier] = ACTIONS(3221), - [sym_comment] = ACTIONS(37), - }, - [1141] = { - [sym_compound_statement] = STATE(1060), - [sym_labeled_statement] = STATE(1060), - [sym_expression_statement] = STATE(1060), - [sym_if_statement] = STATE(1060), - [sym_switch_statement] = STATE(1060), - [sym_case_statement] = STATE(1060), - [sym_while_statement] = STATE(1060), - [sym_do_statement] = STATE(1060), - [sym_for_statement] = STATE(1060), - [sym_return_statement] = STATE(1060), - [sym_break_statement] = STATE(1060), - [sym_continue_statement] = STATE(1060), - [sym_goto_statement] = STATE(1060), - [sym__expression] = STATE(228), - [sym_comma_expression] = STATE(229), - [sym_conditional_expression] = STATE(228), - [sym_assignment_expression] = STATE(228), - [sym_pointer_expression] = STATE(228), - [sym_logical_expression] = STATE(228), - [sym_bitwise_expression] = STATE(228), - [sym_equality_expression] = STATE(228), - [sym_relational_expression] = STATE(228), - [sym_shift_expression] = STATE(228), - [sym_math_expression] = STATE(228), - [sym_cast_expression] = STATE(228), - [sym_sizeof_expression] = STATE(228), - [sym_subscript_expression] = STATE(228), - [sym_call_expression] = STATE(228), - [sym_field_expression] = STATE(228), - [sym_compound_literal_expression] = STATE(228), - [sym_parenthesized_expression] = STATE(228), - [sym_char_literal] = STATE(228), - [sym_concatenated_string] = STATE(228), - [sym_string_literal] = STATE(230), - [anon_sym_SEMI] = ACTIONS(503), - [anon_sym_LBRACE] = ACTIONS(229), - [anon_sym_LPAREN2] = ACTIONS(507), - [anon_sym_STAR] = ACTIONS(509), - [anon_sym_if] = ACTIONS(2286), - [anon_sym_switch] = ACTIONS(2288), - [anon_sym_case] = ACTIONS(2290), - [anon_sym_default] = ACTIONS(2292), - [anon_sym_while] = ACTIONS(2294), - [anon_sym_do] = ACTIONS(948), - [anon_sym_for] = ACTIONS(2296), - [anon_sym_return] = ACTIONS(525), - [anon_sym_break] = ACTIONS(527), - [anon_sym_continue] = ACTIONS(529), - [anon_sym_goto] = ACTIONS(531), - [anon_sym_AMP] = ACTIONS(509), - [anon_sym_BANG] = ACTIONS(533), - [anon_sym_TILDE] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DASH] = ACTIONS(537), - [anon_sym_DASH_DASH] = ACTIONS(539), - [anon_sym_PLUS_PLUS] = ACTIONS(539), - [anon_sym_sizeof] = ACTIONS(541), - [sym_number_literal] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(547), - [sym_false] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [sym_identifier] = ACTIONS(2298), - [sym_comment] = ACTIONS(37), - }, - [1142] = { - [sym_argument_list] = STATE(430), - [aux_sym_for_statement_repeat1] = STATE(1173), - [anon_sym_COMMA] = ACTIONS(2344), - [anon_sym_RPAREN] = ACTIONS(3223), - [anon_sym_LPAREN2] = ACTIONS(1012), - [anon_sym_STAR] = ACTIONS(1437), - [anon_sym_LBRACK] = ACTIONS(1016), - [anon_sym_EQ] = ACTIONS(1439), - [anon_sym_QMARK] = ACTIONS(1441), - [anon_sym_STAR_EQ] = ACTIONS(1443), - [anon_sym_SLASH_EQ] = ACTIONS(1443), - [anon_sym_PERCENT_EQ] = ACTIONS(1443), - [anon_sym_PLUS_EQ] = ACTIONS(1443), - [anon_sym_DASH_EQ] = ACTIONS(1443), - [anon_sym_LT_LT_EQ] = ACTIONS(1443), - [anon_sym_GT_GT_EQ] = ACTIONS(1443), - [anon_sym_AMP_EQ] = ACTIONS(1443), - [anon_sym_CARET_EQ] = ACTIONS(1443), - [anon_sym_PIPE_EQ] = ACTIONS(1443), - [anon_sym_AMP] = ACTIONS(1445), - [anon_sym_PIPE_PIPE] = ACTIONS(1447), - [anon_sym_AMP_AMP] = ACTIONS(1449), - [anon_sym_PIPE] = ACTIONS(1451), - [anon_sym_CARET] = ACTIONS(1453), - [anon_sym_EQ_EQ] = ACTIONS(1455), - [anon_sym_BANG_EQ] = ACTIONS(1455), - [anon_sym_LT] = ACTIONS(1457), - [anon_sym_GT] = ACTIONS(1457), - [anon_sym_LT_EQ] = ACTIONS(1459), - [anon_sym_GT_EQ] = ACTIONS(1459), - [anon_sym_LT_LT] = ACTIONS(1461), - [anon_sym_GT_GT] = ACTIONS(1461), - [anon_sym_PLUS] = ACTIONS(1463), - [anon_sym_DASH] = ACTIONS(1463), - [anon_sym_SLASH] = ACTIONS(1437), - [anon_sym_PERCENT] = ACTIONS(1437), - [anon_sym_DASH_DASH] = ACTIONS(1044), - [anon_sym_PLUS_PLUS] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1046), - [anon_sym_DASH_GT] = ACTIONS(1046), - [sym_comment] = ACTIONS(37), - }, - [1143] = { - [sym__expression] = STATE(1174), - [sym_conditional_expression] = STATE(1174), - [sym_assignment_expression] = STATE(1174), - [sym_pointer_expression] = STATE(1174), - [sym_logical_expression] = STATE(1174), - [sym_bitwise_expression] = STATE(1174), - [sym_equality_expression] = STATE(1174), - [sym_relational_expression] = STATE(1174), - [sym_shift_expression] = STATE(1174), - [sym_math_expression] = STATE(1174), - [sym_cast_expression] = STATE(1174), - [sym_sizeof_expression] = STATE(1174), - [sym_subscript_expression] = STATE(1174), - [sym_call_expression] = STATE(1174), - [sym_field_expression] = STATE(1174), - [sym_compound_literal_expression] = STATE(1174), - [sym_parenthesized_expression] = STATE(1174), - [sym_char_literal] = STATE(1174), - [sym_concatenated_string] = STATE(1174), - [sym_string_literal] = STATE(374), - [anon_sym_RPAREN] = ACTIONS(3223), - [anon_sym_LPAREN2] = ACTIONS(892), - [anon_sym_STAR] = ACTIONS(894), - [anon_sym_AMP] = ACTIONS(894), - [anon_sym_BANG] = ACTIONS(896), - [anon_sym_TILDE] = ACTIONS(898), - [anon_sym_PLUS] = ACTIONS(900), - [anon_sym_DASH] = ACTIONS(900), - [anon_sym_DASH_DASH] = ACTIONS(902), - [anon_sym_PLUS_PLUS] = ACTIONS(902), - [anon_sym_sizeof] = ACTIONS(904), - [sym_number_literal] = ACTIONS(3225), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(3227), - [sym_false] = ACTIONS(3227), - [sym_null] = ACTIONS(3227), - [sym_identifier] = ACTIONS(3227), - [sym_comment] = ACTIONS(37), - }, - [1144] = { - [sym_argument_list] = STATE(430), - [anon_sym_SEMI] = ACTIONS(3229), - [anon_sym_LPAREN2] = ACTIONS(1012), - [anon_sym_STAR] = ACTIONS(1319), - [anon_sym_LBRACK] = ACTIONS(1016), - [anon_sym_EQ] = ACTIONS(1321), - [anon_sym_QMARK] = ACTIONS(1323), - [anon_sym_STAR_EQ] = ACTIONS(1325), - [anon_sym_SLASH_EQ] = ACTIONS(1325), - [anon_sym_PERCENT_EQ] = ACTIONS(1325), - [anon_sym_PLUS_EQ] = ACTIONS(1325), - [anon_sym_DASH_EQ] = ACTIONS(1325), - [anon_sym_LT_LT_EQ] = ACTIONS(1325), - [anon_sym_GT_GT_EQ] = ACTIONS(1325), - [anon_sym_AMP_EQ] = ACTIONS(1325), - [anon_sym_CARET_EQ] = ACTIONS(1325), - [anon_sym_PIPE_EQ] = ACTIONS(1325), - [anon_sym_AMP] = ACTIONS(1327), - [anon_sym_PIPE_PIPE] = ACTIONS(1329), - [anon_sym_AMP_AMP] = ACTIONS(1331), - [anon_sym_PIPE] = ACTIONS(1333), - [anon_sym_CARET] = ACTIONS(1335), - [anon_sym_EQ_EQ] = ACTIONS(1337), - [anon_sym_BANG_EQ] = ACTIONS(1337), - [anon_sym_LT] = ACTIONS(1339), - [anon_sym_GT] = ACTIONS(1339), - [anon_sym_LT_EQ] = ACTIONS(1341), - [anon_sym_GT_EQ] = ACTIONS(1341), - [anon_sym_LT_LT] = ACTIONS(1343), - [anon_sym_GT_GT] = ACTIONS(1343), - [anon_sym_PLUS] = ACTIONS(1345), - [anon_sym_DASH] = ACTIONS(1345), - [anon_sym_SLASH] = ACTIONS(1319), - [anon_sym_PERCENT] = ACTIONS(1319), - [anon_sym_DASH_DASH] = ACTIONS(1044), - [anon_sym_PLUS_PLUS] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1046), - [anon_sym_DASH_GT] = ACTIONS(1046), - [sym_comment] = ACTIONS(37), - }, - [1145] = { - [sym_compound_statement] = STATE(1148), - [sym_labeled_statement] = STATE(1148), - [sym_expression_statement] = STATE(1148), - [sym_if_statement] = STATE(1148), - [sym_switch_statement] = STATE(1148), - [sym_case_statement] = STATE(1148), - [sym_while_statement] = STATE(1148), - [sym_do_statement] = STATE(1148), - [sym_for_statement] = STATE(1148), - [sym_return_statement] = STATE(1148), - [sym_break_statement] = STATE(1148), - [sym_continue_statement] = STATE(1148), - [sym_goto_statement] = STATE(1148), - [sym__expression] = STATE(228), - [sym_comma_expression] = STATE(229), - [sym_conditional_expression] = STATE(228), - [sym_assignment_expression] = STATE(228), - [sym_pointer_expression] = STATE(228), - [sym_logical_expression] = STATE(228), - [sym_bitwise_expression] = STATE(228), - [sym_equality_expression] = STATE(228), - [sym_relational_expression] = STATE(228), - [sym_shift_expression] = STATE(228), - [sym_math_expression] = STATE(228), - [sym_cast_expression] = STATE(228), - [sym_sizeof_expression] = STATE(228), - [sym_subscript_expression] = STATE(228), - [sym_call_expression] = STATE(228), - [sym_field_expression] = STATE(228), - [sym_compound_literal_expression] = STATE(228), - [sym_parenthesized_expression] = STATE(228), - [sym_char_literal] = STATE(228), - [sym_concatenated_string] = STATE(228), - [sym_string_literal] = STATE(230), - [anon_sym_SEMI] = ACTIONS(503), - [anon_sym_LBRACE] = ACTIONS(229), - [anon_sym_LPAREN2] = ACTIONS(507), - [anon_sym_STAR] = ACTIONS(509), - [anon_sym_if] = ACTIONS(938), - [anon_sym_switch] = ACTIONS(940), - [anon_sym_case] = ACTIONS(942), - [anon_sym_default] = ACTIONS(944), - [anon_sym_while] = ACTIONS(946), - [anon_sym_do] = ACTIONS(948), - [anon_sym_for] = ACTIONS(950), - [anon_sym_return] = ACTIONS(525), - [anon_sym_break] = ACTIONS(527), - [anon_sym_continue] = ACTIONS(529), - [anon_sym_goto] = ACTIONS(531), - [anon_sym_AMP] = ACTIONS(509), - [anon_sym_BANG] = ACTIONS(533), - [anon_sym_TILDE] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DASH] = ACTIONS(537), - [anon_sym_DASH_DASH] = ACTIONS(539), - [anon_sym_PLUS_PLUS] = ACTIONS(539), - [anon_sym_sizeof] = ACTIONS(541), - [sym_number_literal] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(547), - [sym_false] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [sym_identifier] = ACTIONS(952), - [sym_comment] = ACTIONS(37), - }, - [1146] = { - [aux_sym_for_statement_repeat1] = STATE(991), - [anon_sym_COMMA] = ACTIONS(2344), - [anon_sym_RPAREN] = ACTIONS(3231), - [sym_comment] = ACTIONS(37), - }, - [1147] = { - [sym_argument_list] = STATE(430), - [aux_sym_for_statement_repeat1] = STATE(1177), - [anon_sym_COMMA] = ACTIONS(2344), - [anon_sym_RPAREN] = ACTIONS(3231), - [anon_sym_LPAREN2] = ACTIONS(1012), - [anon_sym_STAR] = ACTIONS(1437), - [anon_sym_LBRACK] = ACTIONS(1016), - [anon_sym_EQ] = ACTIONS(1439), - [anon_sym_QMARK] = ACTIONS(1441), - [anon_sym_STAR_EQ] = ACTIONS(1443), - [anon_sym_SLASH_EQ] = ACTIONS(1443), - [anon_sym_PERCENT_EQ] = ACTIONS(1443), - [anon_sym_PLUS_EQ] = ACTIONS(1443), - [anon_sym_DASH_EQ] = ACTIONS(1443), - [anon_sym_LT_LT_EQ] = ACTIONS(1443), - [anon_sym_GT_GT_EQ] = ACTIONS(1443), - [anon_sym_AMP_EQ] = ACTIONS(1443), - [anon_sym_CARET_EQ] = ACTIONS(1443), - [anon_sym_PIPE_EQ] = ACTIONS(1443), - [anon_sym_AMP] = ACTIONS(1445), - [anon_sym_PIPE_PIPE] = ACTIONS(1447), - [anon_sym_AMP_AMP] = ACTIONS(1449), - [anon_sym_PIPE] = ACTIONS(1451), - [anon_sym_CARET] = ACTIONS(1453), - [anon_sym_EQ_EQ] = ACTIONS(1455), - [anon_sym_BANG_EQ] = ACTIONS(1455), - [anon_sym_LT] = ACTIONS(1457), - [anon_sym_GT] = ACTIONS(1457), - [anon_sym_LT_EQ] = ACTIONS(1459), - [anon_sym_GT_EQ] = ACTIONS(1459), - [anon_sym_LT_LT] = ACTIONS(1461), - [anon_sym_GT_GT] = ACTIONS(1461), - [anon_sym_PLUS] = ACTIONS(1463), - [anon_sym_DASH] = ACTIONS(1463), - [anon_sym_SLASH] = ACTIONS(1437), - [anon_sym_PERCENT] = ACTIONS(1437), - [anon_sym_DASH_DASH] = ACTIONS(1044), - [anon_sym_PLUS_PLUS] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1046), - [anon_sym_DASH_GT] = ACTIONS(1046), - [sym_comment] = ACTIONS(37), - }, - [1148] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3233), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3233), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3233), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3233), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3233), - [sym_preproc_directive] = ACTIONS(3233), - [anon_sym_SEMI] = ACTIONS(3235), - [anon_sym_typedef] = ACTIONS(3233), - [anon_sym_extern] = ACTIONS(3233), - [anon_sym_LBRACE] = ACTIONS(3235), - [anon_sym_RBRACE] = ACTIONS(3235), - [anon_sym_LPAREN2] = ACTIONS(3235), - [anon_sym_STAR] = ACTIONS(3235), - [anon_sym_static] = ACTIONS(3233), - [anon_sym_auto] = ACTIONS(3233), - [anon_sym_register] = ACTIONS(3233), - [anon_sym_inline] = ACTIONS(3233), - [anon_sym_const] = ACTIONS(3233), - [anon_sym_restrict] = ACTIONS(3233), - [anon_sym_volatile] = ACTIONS(3233), - [anon_sym__Atomic] = ACTIONS(3233), - [anon_sym_unsigned] = ACTIONS(3233), - [anon_sym_long] = ACTIONS(3233), - [anon_sym_short] = ACTIONS(3233), - [sym_primitive_type] = ACTIONS(3233), - [anon_sym_enum] = ACTIONS(3233), - [anon_sym_struct] = ACTIONS(3233), - [anon_sym_union] = ACTIONS(3233), - [anon_sym_if] = ACTIONS(3233), - [anon_sym_else] = ACTIONS(3233), - [anon_sym_switch] = ACTIONS(3233), - [anon_sym_case] = ACTIONS(3233), - [anon_sym_default] = ACTIONS(3233), - [anon_sym_while] = ACTIONS(3233), - [anon_sym_do] = ACTIONS(3233), - [anon_sym_for] = ACTIONS(3233), - [anon_sym_return] = ACTIONS(3233), - [anon_sym_break] = ACTIONS(3233), - [anon_sym_continue] = ACTIONS(3233), - [anon_sym_goto] = ACTIONS(3233), - [anon_sym_AMP] = ACTIONS(3235), - [anon_sym_BANG] = ACTIONS(3235), - [anon_sym_TILDE] = ACTIONS(3235), - [anon_sym_PLUS] = ACTIONS(3233), - [anon_sym_DASH] = ACTIONS(3233), - [anon_sym_DASH_DASH] = ACTIONS(3235), - [anon_sym_PLUS_PLUS] = ACTIONS(3235), - [anon_sym_sizeof] = ACTIONS(3233), - [sym_number_literal] = ACTIONS(3235), - [anon_sym_SQUOTE] = ACTIONS(3235), - [anon_sym_DQUOTE] = ACTIONS(3235), - [sym_true] = ACTIONS(3233), - [sym_false] = ACTIONS(3233), - [sym_null] = ACTIONS(3233), - [sym_identifier] = ACTIONS(3233), - [sym_comment] = ACTIONS(37), - }, - [1149] = { [sym_compound_statement] = STATE(1178), [sym_labeled_statement] = STATE(1178), [sym_expression_statement] = STATE(1178), @@ -47264,133 +48086,103 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(1178), [sym_continue_statement] = STATE(1178), [sym_goto_statement] = STATE(1178), - [sym__expression] = STATE(228), - [sym_comma_expression] = STATE(229), - [sym_conditional_expression] = STATE(228), - [sym_assignment_expression] = STATE(228), - [sym_pointer_expression] = STATE(228), - [sym_logical_expression] = STATE(228), - [sym_bitwise_expression] = STATE(228), - [sym_equality_expression] = STATE(228), - [sym_relational_expression] = STATE(228), - [sym_shift_expression] = STATE(228), - [sym_math_expression] = STATE(228), - [sym_cast_expression] = STATE(228), - [sym_sizeof_expression] = STATE(228), - [sym_subscript_expression] = STATE(228), - [sym_call_expression] = STATE(228), - [sym_field_expression] = STATE(228), - [sym_compound_literal_expression] = STATE(228), - [sym_parenthesized_expression] = STATE(228), - [sym_char_literal] = STATE(228), - [sym_concatenated_string] = STATE(228), - [sym_string_literal] = STATE(230), - [anon_sym_SEMI] = ACTIONS(503), - [anon_sym_LBRACE] = ACTIONS(229), - [anon_sym_LPAREN2] = ACTIONS(507), - [anon_sym_STAR] = ACTIONS(509), - [anon_sym_if] = ACTIONS(511), - [anon_sym_switch] = ACTIONS(513), - [anon_sym_case] = ACTIONS(515), - [anon_sym_default] = ACTIONS(517), - [anon_sym_while] = ACTIONS(519), - [anon_sym_do] = ACTIONS(521), - [anon_sym_for] = ACTIONS(523), - [anon_sym_return] = ACTIONS(525), - [anon_sym_break] = ACTIONS(527), - [anon_sym_continue] = ACTIONS(529), - [anon_sym_goto] = ACTIONS(531), - [anon_sym_AMP] = ACTIONS(509), - [anon_sym_BANG] = ACTIONS(533), - [anon_sym_TILDE] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DASH] = ACTIONS(537), - [anon_sym_DASH_DASH] = ACTIONS(539), - [anon_sym_PLUS_PLUS] = ACTIONS(539), - [anon_sym_sizeof] = ACTIONS(541), - [sym_number_literal] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(547), - [sym_false] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [sym_identifier] = ACTIONS(1489), - [sym_comment] = ACTIONS(37), - }, - [1150] = { - [aux_sym_for_statement_repeat1] = STATE(991), - [anon_sym_COMMA] = ACTIONS(2344), - [anon_sym_RPAREN] = ACTIONS(3237), - [sym_comment] = ACTIONS(37), + [sym__expression] = STATE(756), + [sym_comma_expression] = STATE(757), + [sym_conditional_expression] = STATE(756), + [sym_assignment_expression] = STATE(756), + [sym_pointer_expression] = STATE(756), + [sym_logical_expression] = STATE(756), + [sym_bitwise_expression] = STATE(756), + [sym_equality_expression] = STATE(756), + [sym_relational_expression] = STATE(756), + [sym_shift_expression] = STATE(756), + [sym_math_expression] = STATE(756), + [sym_cast_expression] = STATE(756), + [sym_sizeof_expression] = STATE(756), + [sym_subscript_expression] = STATE(756), + [sym_call_expression] = STATE(756), + [sym_field_expression] = STATE(756), + [sym_compound_literal_expression] = STATE(756), + [sym_parenthesized_expression] = STATE(756), + [sym_char_literal] = STATE(756), + [sym_concatenated_string] = STATE(756), + [sym_string_literal] = STATE(374), + [anon_sym_SEMI] = ACTIONS(1940), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_LPAREN2] = ACTIONS(936), + [anon_sym_STAR] = ACTIONS(938), + [anon_sym_if] = ACTIONS(1952), + [anon_sym_switch] = ACTIONS(1954), + [anon_sym_case] = ACTIONS(1956), + [anon_sym_default] = ACTIONS(1958), + [anon_sym_while] = ACTIONS(1960), + [anon_sym_do] = ACTIONS(1962), + [anon_sym_for] = ACTIONS(1964), + [anon_sym_return] = ACTIONS(1966), + [anon_sym_break] = ACTIONS(1968), + [anon_sym_continue] = ACTIONS(1970), + [anon_sym_goto] = ACTIONS(1972), + [anon_sym_AMP] = ACTIONS(938), + [anon_sym_BANG] = ACTIONS(962), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_DASH_DASH] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(968), + [anon_sym_sizeof] = ACTIONS(970), + [sym_number_literal] = ACTIONS(1974), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(1976), + [sym_false] = ACTIONS(1976), + [sym_null] = ACTIONS(1976), + [sym_identifier] = ACTIONS(2766), + [sym_comment] = ACTIONS(59), }, - [1151] = { - [sym_compound_statement] = STATE(1120), - [sym_labeled_statement] = STATE(1120), - [sym_expression_statement] = STATE(1120), - [sym_if_statement] = STATE(1120), - [sym_switch_statement] = STATE(1120), - [sym_case_statement] = STATE(1120), - [sym_while_statement] = STATE(1120), - [sym_do_statement] = STATE(1120), - [sym_for_statement] = STATE(1120), - [sym_return_statement] = STATE(1120), - [sym_break_statement] = STATE(1120), - [sym_continue_statement] = STATE(1120), - [sym_goto_statement] = STATE(1120), - [sym__expression] = STATE(800), - [sym_comma_expression] = STATE(801), - [sym_conditional_expression] = STATE(800), - [sym_assignment_expression] = STATE(800), - [sym_pointer_expression] = STATE(800), - [sym_logical_expression] = STATE(800), - [sym_bitwise_expression] = STATE(800), - [sym_equality_expression] = STATE(800), - [sym_relational_expression] = STATE(800), - [sym_shift_expression] = STATE(800), - [sym_math_expression] = STATE(800), - [sym_cast_expression] = STATE(800), - [sym_sizeof_expression] = STATE(800), - [sym_subscript_expression] = STATE(800), - [sym_call_expression] = STATE(800), - [sym_field_expression] = STATE(800), - [sym_compound_literal_expression] = STATE(800), - [sym_parenthesized_expression] = STATE(800), - [sym_char_literal] = STATE(800), - [sym_concatenated_string] = STATE(800), - [sym_string_literal] = STATE(230), - [anon_sym_SEMI] = ACTIONS(2082), - [anon_sym_LBRACE] = ACTIONS(1181), - [anon_sym_LPAREN2] = ACTIONS(507), - [anon_sym_STAR] = ACTIONS(509), - [anon_sym_if] = ACTIONS(2788), - [anon_sym_switch] = ACTIONS(2790), - [anon_sym_case] = ACTIONS(2792), - [anon_sym_default] = ACTIONS(2794), - [anon_sym_while] = ACTIONS(2796), - [anon_sym_do] = ACTIONS(2094), - [anon_sym_for] = ACTIONS(2798), - [anon_sym_return] = ACTIONS(2098), - [anon_sym_break] = ACTIONS(2100), - [anon_sym_continue] = ACTIONS(2102), - [anon_sym_goto] = ACTIONS(2104), - [anon_sym_AMP] = ACTIONS(509), - [anon_sym_BANG] = ACTIONS(533), - [anon_sym_TILDE] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DASH] = ACTIONS(537), - [anon_sym_DASH_DASH] = ACTIONS(539), - [anon_sym_PLUS_PLUS] = ACTIONS(539), - [anon_sym_sizeof] = ACTIONS(541), - [sym_number_literal] = ACTIONS(2106), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(2108), - [sym_false] = ACTIONS(2108), - [sym_null] = ACTIONS(2108), - [sym_identifier] = ACTIONS(2800), - [sym_comment] = ACTIONS(37), + [1140] = { + [sym_argument_list] = STATE(98), + [aux_sym_for_statement_repeat1] = STATE(1180), + [anon_sym_COMMA] = ACTIONS(1002), + [anon_sym_RPAREN] = ACTIONS(3284), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(319), + [anon_sym_LBRACK] = ACTIONS(188), + [anon_sym_EQ] = ACTIONS(321), + [anon_sym_QMARK] = ACTIONS(323), + [anon_sym_STAR_EQ] = ACTIONS(325), + [anon_sym_SLASH_EQ] = ACTIONS(325), + [anon_sym_PERCENT_EQ] = ACTIONS(325), + [anon_sym_PLUS_EQ] = ACTIONS(325), + [anon_sym_DASH_EQ] = ACTIONS(325), + [anon_sym_LT_LT_EQ] = ACTIONS(325), + [anon_sym_GT_GT_EQ] = ACTIONS(325), + [anon_sym_AMP_EQ] = ACTIONS(325), + [anon_sym_CARET_EQ] = ACTIONS(325), + [anon_sym_PIPE_EQ] = ACTIONS(325), + [anon_sym_AMP] = ACTIONS(327), + [anon_sym_PIPE_PIPE] = ACTIONS(329), + [anon_sym_AMP_AMP] = ACTIONS(331), + [anon_sym_PIPE] = ACTIONS(333), + [anon_sym_CARET] = ACTIONS(335), + [anon_sym_EQ_EQ] = ACTIONS(337), + [anon_sym_BANG_EQ] = ACTIONS(337), + [anon_sym_LT] = ACTIONS(339), + [anon_sym_GT] = ACTIONS(339), + [anon_sym_LT_EQ] = ACTIONS(341), + [anon_sym_GT_EQ] = ACTIONS(341), + [anon_sym_LT_LT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(343), + [anon_sym_PLUS] = ACTIONS(345), + [anon_sym_DASH] = ACTIONS(345), + [anon_sym_SLASH] = ACTIONS(319), + [anon_sym_PERCENT] = ACTIONS(319), + [anon_sym_DASH_DASH] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(216), + [anon_sym_DOT] = ACTIONS(218), + [anon_sym_DASH_GT] = ACTIONS(218), + [sym_comment] = ACTIONS(59), }, - [1152] = { + [1141] = { [sym__expression] = STATE(1181), [sym_conditional_expression] = STATE(1181), [sym_assignment_expression] = STATE(1181), @@ -47410,493 +48202,410 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_parenthesized_expression] = STATE(1181), [sym_char_literal] = STATE(1181), [sym_concatenated_string] = STATE(1181), - [sym_string_literal] = STATE(374), - [anon_sym_RPAREN] = ACTIONS(3239), - [anon_sym_LPAREN2] = ACTIONS(892), - [anon_sym_STAR] = ACTIONS(894), - [anon_sym_AMP] = ACTIONS(894), - [anon_sym_BANG] = ACTIONS(896), - [anon_sym_TILDE] = ACTIONS(898), - [anon_sym_PLUS] = ACTIONS(900), - [anon_sym_DASH] = ACTIONS(900), - [anon_sym_DASH_DASH] = ACTIONS(902), - [anon_sym_PLUS_PLUS] = ACTIONS(902), - [anon_sym_sizeof] = ACTIONS(904), - [sym_number_literal] = ACTIONS(3241), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(3243), - [sym_false] = ACTIONS(3243), - [sym_null] = ACTIONS(3243), - [sym_identifier] = ACTIONS(3243), - [sym_comment] = ACTIONS(37), + [sym_string_literal] = STATE(55), + [anon_sym_RPAREN] = ACTIONS(3284), + [anon_sym_LPAREN2] = ACTIONS(85), + [anon_sym_STAR] = ACTIONS(87), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_PLUS] = ACTIONS(97), + [anon_sym_DASH] = ACTIONS(97), + [anon_sym_DASH_DASH] = ACTIONS(99), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(101), + [sym_number_literal] = ACTIONS(3286), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(3288), + [sym_false] = ACTIONS(3288), + [sym_null] = ACTIONS(3288), + [sym_identifier] = ACTIONS(3288), + [sym_comment] = ACTIONS(59), }, - [1153] = { - [sym_argument_list] = STATE(430), - [anon_sym_SEMI] = ACTIONS(3245), - [anon_sym_LPAREN2] = ACTIONS(1012), - [anon_sym_STAR] = ACTIONS(1319), - [anon_sym_LBRACK] = ACTIONS(1016), - [anon_sym_EQ] = ACTIONS(1321), - [anon_sym_QMARK] = ACTIONS(1323), - [anon_sym_STAR_EQ] = ACTIONS(1325), - [anon_sym_SLASH_EQ] = ACTIONS(1325), - [anon_sym_PERCENT_EQ] = ACTIONS(1325), - [anon_sym_PLUS_EQ] = ACTIONS(1325), - [anon_sym_DASH_EQ] = ACTIONS(1325), - [anon_sym_LT_LT_EQ] = ACTIONS(1325), - [anon_sym_GT_GT_EQ] = ACTIONS(1325), - [anon_sym_AMP_EQ] = ACTIONS(1325), - [anon_sym_CARET_EQ] = ACTIONS(1325), - [anon_sym_PIPE_EQ] = ACTIONS(1325), - [anon_sym_AMP] = ACTIONS(1327), - [anon_sym_PIPE_PIPE] = ACTIONS(1329), - [anon_sym_AMP_AMP] = ACTIONS(1331), - [anon_sym_PIPE] = ACTIONS(1333), - [anon_sym_CARET] = ACTIONS(1335), - [anon_sym_EQ_EQ] = ACTIONS(1337), - [anon_sym_BANG_EQ] = ACTIONS(1337), - [anon_sym_LT] = ACTIONS(1339), - [anon_sym_GT] = ACTIONS(1339), - [anon_sym_LT_EQ] = ACTIONS(1341), - [anon_sym_GT_EQ] = ACTIONS(1341), - [anon_sym_LT_LT] = ACTIONS(1343), - [anon_sym_GT_GT] = ACTIONS(1343), - [anon_sym_PLUS] = ACTIONS(1345), - [anon_sym_DASH] = ACTIONS(1345), - [anon_sym_SLASH] = ACTIONS(1319), - [anon_sym_PERCENT] = ACTIONS(1319), - [anon_sym_DASH_DASH] = ACTIONS(1044), - [anon_sym_PLUS_PLUS] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1046), - [anon_sym_DASH_GT] = ACTIONS(1046), - [sym_comment] = ACTIONS(37), - }, - [1154] = { - [sym__expression] = STATE(1183), - [sym_conditional_expression] = STATE(1183), - [sym_assignment_expression] = STATE(1183), - [sym_pointer_expression] = STATE(1183), - [sym_logical_expression] = STATE(1183), - [sym_bitwise_expression] = STATE(1183), - [sym_equality_expression] = STATE(1183), - [sym_relational_expression] = STATE(1183), - [sym_shift_expression] = STATE(1183), - [sym_math_expression] = STATE(1183), - [sym_cast_expression] = STATE(1183), - [sym_sizeof_expression] = STATE(1183), - [sym_subscript_expression] = STATE(1183), - [sym_call_expression] = STATE(1183), - [sym_field_expression] = STATE(1183), - [sym_compound_literal_expression] = STATE(1183), - [sym_parenthesized_expression] = STATE(1183), - [sym_char_literal] = STATE(1183), - [sym_concatenated_string] = STATE(1183), - [sym_string_literal] = STATE(342), - [anon_sym_SEMI] = ACTIONS(3245), - [anon_sym_LPAREN2] = ACTIONS(780), - [anon_sym_STAR] = ACTIONS(782), - [anon_sym_AMP] = ACTIONS(782), - [anon_sym_BANG] = ACTIONS(784), - [anon_sym_TILDE] = ACTIONS(786), - [anon_sym_PLUS] = ACTIONS(788), - [anon_sym_DASH] = ACTIONS(788), - [anon_sym_DASH_DASH] = ACTIONS(790), - [anon_sym_PLUS_PLUS] = ACTIONS(790), - [anon_sym_sizeof] = ACTIONS(792), - [sym_number_literal] = ACTIONS(3247), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(3249), - [sym_false] = ACTIONS(3249), - [sym_null] = ACTIONS(3249), - [sym_identifier] = ACTIONS(3249), - [sym_comment] = ACTIONS(37), - }, - [1155] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2160), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2160), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2160), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2160), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2160), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2160), - [sym_preproc_directive] = ACTIONS(2160), - [anon_sym_SEMI] = ACTIONS(2158), - [anon_sym_typedef] = ACTIONS(2160), - [anon_sym_extern] = ACTIONS(2160), - [anon_sym_LBRACE] = ACTIONS(2158), - [anon_sym_LPAREN2] = ACTIONS(2158), - [anon_sym_STAR] = ACTIONS(2158), - [anon_sym_static] = ACTIONS(2160), - [anon_sym_auto] = ACTIONS(2160), - [anon_sym_register] = ACTIONS(2160), - [anon_sym_inline] = ACTIONS(2160), - [anon_sym_const] = ACTIONS(2160), - [anon_sym_restrict] = ACTIONS(2160), - [anon_sym_volatile] = ACTIONS(2160), - [anon_sym__Atomic] = ACTIONS(2160), - [anon_sym_unsigned] = ACTIONS(2160), - [anon_sym_long] = ACTIONS(2160), - [anon_sym_short] = ACTIONS(2160), - [sym_primitive_type] = ACTIONS(2160), - [anon_sym_enum] = ACTIONS(2160), - [anon_sym_struct] = ACTIONS(2160), - [anon_sym_union] = ACTIONS(2160), - [anon_sym_if] = ACTIONS(2160), - [anon_sym_else] = ACTIONS(2160), - [anon_sym_switch] = ACTIONS(2160), - [anon_sym_case] = ACTIONS(2160), - [anon_sym_default] = ACTIONS(2160), - [anon_sym_while] = ACTIONS(2160), - [anon_sym_do] = ACTIONS(2160), - [anon_sym_for] = ACTIONS(2160), - [anon_sym_return] = ACTIONS(2160), - [anon_sym_break] = ACTIONS(2160), - [anon_sym_continue] = ACTIONS(2160), - [anon_sym_goto] = ACTIONS(2160), - [anon_sym_AMP] = ACTIONS(2158), - [anon_sym_BANG] = ACTIONS(2158), - [anon_sym_TILDE] = ACTIONS(2158), - [anon_sym_PLUS] = ACTIONS(2160), - [anon_sym_DASH] = ACTIONS(2160), - [anon_sym_DASH_DASH] = ACTIONS(2158), - [anon_sym_PLUS_PLUS] = ACTIONS(2158), - [anon_sym_sizeof] = ACTIONS(2160), - [sym_number_literal] = ACTIONS(2158), - [anon_sym_SQUOTE] = ACTIONS(2158), - [anon_sym_DQUOTE] = ACTIONS(2158), - [sym_true] = ACTIONS(2160), - [sym_false] = ACTIONS(2160), - [sym_null] = ACTIONS(2160), - [sym_identifier] = ACTIONS(2160), - [sym_comment] = ACTIONS(37), - }, - [1156] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3087), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3087), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3087), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3087), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3087), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3087), - [sym_preproc_directive] = ACTIONS(3087), - [anon_sym_SEMI] = ACTIONS(3089), - [anon_sym_typedef] = ACTIONS(3087), - [anon_sym_extern] = ACTIONS(3087), - [anon_sym_LBRACE] = ACTIONS(3089), - [anon_sym_LPAREN2] = ACTIONS(3089), - [anon_sym_STAR] = ACTIONS(3089), - [anon_sym_static] = ACTIONS(3087), - [anon_sym_auto] = ACTIONS(3087), - [anon_sym_register] = ACTIONS(3087), - [anon_sym_inline] = ACTIONS(3087), - [anon_sym_const] = ACTIONS(3087), - [anon_sym_restrict] = ACTIONS(3087), - [anon_sym_volatile] = ACTIONS(3087), - [anon_sym__Atomic] = ACTIONS(3087), - [anon_sym_unsigned] = ACTIONS(3087), - [anon_sym_long] = ACTIONS(3087), - [anon_sym_short] = ACTIONS(3087), - [sym_primitive_type] = ACTIONS(3087), - [anon_sym_enum] = ACTIONS(3087), - [anon_sym_struct] = ACTIONS(3087), - [anon_sym_union] = ACTIONS(3087), - [anon_sym_if] = ACTIONS(3087), - [anon_sym_else] = ACTIONS(3087), - [anon_sym_switch] = ACTIONS(3087), - [anon_sym_case] = ACTIONS(3087), - [anon_sym_default] = ACTIONS(3087), - [anon_sym_while] = ACTIONS(3087), - [anon_sym_do] = ACTIONS(3087), - [anon_sym_for] = ACTIONS(3087), - [anon_sym_return] = ACTIONS(3087), - [anon_sym_break] = ACTIONS(3087), - [anon_sym_continue] = ACTIONS(3087), - [anon_sym_goto] = ACTIONS(3087), - [anon_sym_AMP] = ACTIONS(3089), - [anon_sym_BANG] = ACTIONS(3089), - [anon_sym_TILDE] = ACTIONS(3089), - [anon_sym_PLUS] = ACTIONS(3087), - [anon_sym_DASH] = ACTIONS(3087), - [anon_sym_DASH_DASH] = ACTIONS(3089), - [anon_sym_PLUS_PLUS] = ACTIONS(3089), - [anon_sym_sizeof] = ACTIONS(3087), - [sym_number_literal] = ACTIONS(3089), - [anon_sym_SQUOTE] = ACTIONS(3089), - [anon_sym_DQUOTE] = ACTIONS(3089), - [sym_true] = ACTIONS(3087), - [sym_false] = ACTIONS(3087), - [sym_null] = ACTIONS(3087), - [sym_identifier] = ACTIONS(3087), - [sym_comment] = ACTIONS(37), + [1142] = { + [sym_argument_list] = STATE(98), + [anon_sym_SEMI] = ACTIONS(3290), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_LBRACK] = ACTIONS(188), + [anon_sym_EQ] = ACTIONS(1896), + [anon_sym_QMARK] = ACTIONS(1898), + [anon_sym_STAR_EQ] = ACTIONS(1900), + [anon_sym_SLASH_EQ] = ACTIONS(1900), + [anon_sym_PERCENT_EQ] = ACTIONS(1900), + [anon_sym_PLUS_EQ] = ACTIONS(1900), + [anon_sym_DASH_EQ] = ACTIONS(1900), + [anon_sym_LT_LT_EQ] = ACTIONS(1900), + [anon_sym_GT_GT_EQ] = ACTIONS(1900), + [anon_sym_AMP_EQ] = ACTIONS(1900), + [anon_sym_CARET_EQ] = ACTIONS(1900), + [anon_sym_PIPE_EQ] = ACTIONS(1900), + [anon_sym_AMP] = ACTIONS(1902), + [anon_sym_PIPE_PIPE] = ACTIONS(1904), + [anon_sym_AMP_AMP] = ACTIONS(1906), + [anon_sym_PIPE] = ACTIONS(1908), + [anon_sym_CARET] = ACTIONS(1910), + [anon_sym_EQ_EQ] = ACTIONS(1912), + [anon_sym_BANG_EQ] = ACTIONS(1912), + [anon_sym_LT] = ACTIONS(1914), + [anon_sym_GT] = ACTIONS(1914), + [anon_sym_LT_EQ] = ACTIONS(1916), + [anon_sym_GT_EQ] = ACTIONS(1916), + [anon_sym_LT_LT] = ACTIONS(1918), + [anon_sym_GT_GT] = ACTIONS(1918), + [anon_sym_PLUS] = ACTIONS(1920), + [anon_sym_DASH] = ACTIONS(1920), + [anon_sym_SLASH] = ACTIONS(1894), + [anon_sym_PERCENT] = ACTIONS(1894), + [anon_sym_DASH_DASH] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(216), + [anon_sym_DOT] = ACTIONS(218), + [anon_sym_DASH_GT] = ACTIONS(218), + [sym_comment] = ACTIONS(59), }, - [1157] = { - [sym_compound_statement] = STATE(1184), - [sym_labeled_statement] = STATE(1184), - [sym_expression_statement] = STATE(1184), - [sym_if_statement] = STATE(1184), - [sym_switch_statement] = STATE(1184), - [sym_case_statement] = STATE(1184), - [sym_while_statement] = STATE(1184), - [sym_do_statement] = STATE(1184), - [sym_for_statement] = STATE(1184), - [sym_return_statement] = STATE(1184), - [sym_break_statement] = STATE(1184), - [sym_continue_statement] = STATE(1184), - [sym_goto_statement] = STATE(1184), - [sym__expression] = STATE(800), - [sym_comma_expression] = STATE(801), - [sym_conditional_expression] = STATE(800), - [sym_assignment_expression] = STATE(800), - [sym_pointer_expression] = STATE(800), - [sym_logical_expression] = STATE(800), - [sym_bitwise_expression] = STATE(800), - [sym_equality_expression] = STATE(800), - [sym_relational_expression] = STATE(800), - [sym_shift_expression] = STATE(800), - [sym_math_expression] = STATE(800), - [sym_cast_expression] = STATE(800), - [sym_sizeof_expression] = STATE(800), - [sym_subscript_expression] = STATE(800), - [sym_call_expression] = STATE(800), - [sym_field_expression] = STATE(800), - [sym_compound_literal_expression] = STATE(800), - [sym_parenthesized_expression] = STATE(800), - [sym_char_literal] = STATE(800), - [sym_concatenated_string] = STATE(800), - [sym_string_literal] = STATE(230), - [anon_sym_SEMI] = ACTIONS(2082), - [anon_sym_LBRACE] = ACTIONS(1181), - [anon_sym_LPAREN2] = ACTIONS(507), - [anon_sym_STAR] = ACTIONS(509), - [anon_sym_if] = ACTIONS(2084), - [anon_sym_switch] = ACTIONS(2086), - [anon_sym_case] = ACTIONS(2088), - [anon_sym_default] = ACTIONS(2090), - [anon_sym_while] = ACTIONS(2092), - [anon_sym_do] = ACTIONS(2094), - [anon_sym_for] = ACTIONS(2096), - [anon_sym_return] = ACTIONS(2098), - [anon_sym_break] = ACTIONS(2100), - [anon_sym_continue] = ACTIONS(2102), - [anon_sym_goto] = ACTIONS(2104), - [anon_sym_AMP] = ACTIONS(509), - [anon_sym_BANG] = ACTIONS(533), - [anon_sym_TILDE] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DASH] = ACTIONS(537), - [anon_sym_DASH_DASH] = ACTIONS(539), - [anon_sym_PLUS_PLUS] = ACTIONS(539), - [anon_sym_sizeof] = ACTIONS(541), - [sym_number_literal] = ACTIONS(2106), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(2108), - [sym_false] = ACTIONS(2108), - [sym_null] = ACTIONS(2108), - [sym_identifier] = ACTIONS(2802), - [sym_comment] = ACTIONS(37), + [1143] = { + [sym_compound_statement] = STATE(1106), + [sym_labeled_statement] = STATE(1106), + [sym_expression_statement] = STATE(1106), + [sym_if_statement] = STATE(1106), + [sym_switch_statement] = STATE(1106), + [sym_case_statement] = STATE(1106), + [sym_while_statement] = STATE(1106), + [sym_do_statement] = STATE(1106), + [sym_for_statement] = STATE(1106), + [sym_return_statement] = STATE(1106), + [sym_break_statement] = STATE(1106), + [sym_continue_statement] = STATE(1106), + [sym_goto_statement] = STATE(1106), + [sym__expression] = STATE(372), + [sym_comma_expression] = STATE(373), + [sym_conditional_expression] = STATE(372), + [sym_assignment_expression] = STATE(372), + [sym_pointer_expression] = STATE(372), + [sym_logical_expression] = STATE(372), + [sym_bitwise_expression] = STATE(372), + [sym_equality_expression] = STATE(372), + [sym_relational_expression] = STATE(372), + [sym_shift_expression] = STATE(372), + [sym_math_expression] = STATE(372), + [sym_cast_expression] = STATE(372), + [sym_sizeof_expression] = STATE(372), + [sym_subscript_expression] = STATE(372), + [sym_call_expression] = STATE(372), + [sym_field_expression] = STATE(372), + [sym_compound_literal_expression] = STATE(372), + [sym_parenthesized_expression] = STATE(372), + [sym_char_literal] = STATE(372), + [sym_concatenated_string] = STATE(372), + [sym_string_literal] = STATE(374), + [anon_sym_SEMI] = ACTIONS(928), + [anon_sym_LBRACE] = ACTIONS(439), + [anon_sym_LPAREN2] = ACTIONS(936), + [anon_sym_STAR] = ACTIONS(938), + [anon_sym_if] = ACTIONS(1988), + [anon_sym_switch] = ACTIONS(1990), + [anon_sym_case] = ACTIONS(1992), + [anon_sym_default] = ACTIONS(1994), + [anon_sym_while] = ACTIONS(1996), + [anon_sym_do] = ACTIONS(950), + [anon_sym_for] = ACTIONS(1998), + [anon_sym_return] = ACTIONS(954), + [anon_sym_break] = ACTIONS(956), + [anon_sym_continue] = ACTIONS(958), + [anon_sym_goto] = ACTIONS(960), + [anon_sym_AMP] = ACTIONS(938), + [anon_sym_BANG] = ACTIONS(962), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_DASH_DASH] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(968), + [anon_sym_sizeof] = ACTIONS(970), + [sym_number_literal] = ACTIONS(972), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(974), + [sym_false] = ACTIONS(974), + [sym_null] = ACTIONS(974), + [sym_identifier] = ACTIONS(2000), + [sym_comment] = ACTIONS(59), }, - [1158] = { - [aux_sym_for_statement_repeat1] = STATE(991), - [anon_sym_COMMA] = ACTIONS(2344), - [anon_sym_RPAREN] = ACTIONS(3251), - [sym_comment] = ACTIONS(37), + [1144] = { + [sym_argument_list] = STATE(98), + [aux_sym_for_statement_repeat1] = STATE(1184), + [anon_sym_COMMA] = ACTIONS(1002), + [anon_sym_RPAREN] = ACTIONS(3292), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(319), + [anon_sym_LBRACK] = ACTIONS(188), + [anon_sym_EQ] = ACTIONS(321), + [anon_sym_QMARK] = ACTIONS(323), + [anon_sym_STAR_EQ] = ACTIONS(325), + [anon_sym_SLASH_EQ] = ACTIONS(325), + [anon_sym_PERCENT_EQ] = ACTIONS(325), + [anon_sym_PLUS_EQ] = ACTIONS(325), + [anon_sym_DASH_EQ] = ACTIONS(325), + [anon_sym_LT_LT_EQ] = ACTIONS(325), + [anon_sym_GT_GT_EQ] = ACTIONS(325), + [anon_sym_AMP_EQ] = ACTIONS(325), + [anon_sym_CARET_EQ] = ACTIONS(325), + [anon_sym_PIPE_EQ] = ACTIONS(325), + [anon_sym_AMP] = ACTIONS(327), + [anon_sym_PIPE_PIPE] = ACTIONS(329), + [anon_sym_AMP_AMP] = ACTIONS(331), + [anon_sym_PIPE] = ACTIONS(333), + [anon_sym_CARET] = ACTIONS(335), + [anon_sym_EQ_EQ] = ACTIONS(337), + [anon_sym_BANG_EQ] = ACTIONS(337), + [anon_sym_LT] = ACTIONS(339), + [anon_sym_GT] = ACTIONS(339), + [anon_sym_LT_EQ] = ACTIONS(341), + [anon_sym_GT_EQ] = ACTIONS(341), + [anon_sym_LT_LT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(343), + [anon_sym_PLUS] = ACTIONS(345), + [anon_sym_DASH] = ACTIONS(345), + [anon_sym_SLASH] = ACTIONS(319), + [anon_sym_PERCENT] = ACTIONS(319), + [anon_sym_DASH_DASH] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(216), + [anon_sym_DOT] = ACTIONS(218), + [anon_sym_DASH_GT] = ACTIONS(218), + [sym_comment] = ACTIONS(59), }, - [1159] = { - [sym_argument_list] = STATE(430), - [aux_sym_for_statement_repeat1] = STATE(1186), - [anon_sym_COMMA] = ACTIONS(2344), - [anon_sym_RPAREN] = ACTIONS(3251), - [anon_sym_LPAREN2] = ACTIONS(1012), - [anon_sym_STAR] = ACTIONS(1437), - [anon_sym_LBRACK] = ACTIONS(1016), - [anon_sym_EQ] = ACTIONS(1439), - [anon_sym_QMARK] = ACTIONS(1441), - [anon_sym_STAR_EQ] = ACTIONS(1443), - [anon_sym_SLASH_EQ] = ACTIONS(1443), - [anon_sym_PERCENT_EQ] = ACTIONS(1443), - [anon_sym_PLUS_EQ] = ACTIONS(1443), - [anon_sym_DASH_EQ] = ACTIONS(1443), - [anon_sym_LT_LT_EQ] = ACTIONS(1443), - [anon_sym_GT_GT_EQ] = ACTIONS(1443), - [anon_sym_AMP_EQ] = ACTIONS(1443), - [anon_sym_CARET_EQ] = ACTIONS(1443), - [anon_sym_PIPE_EQ] = ACTIONS(1443), - [anon_sym_AMP] = ACTIONS(1445), - [anon_sym_PIPE_PIPE] = ACTIONS(1447), - [anon_sym_AMP_AMP] = ACTIONS(1449), - [anon_sym_PIPE] = ACTIONS(1451), - [anon_sym_CARET] = ACTIONS(1453), - [anon_sym_EQ_EQ] = ACTIONS(1455), - [anon_sym_BANG_EQ] = ACTIONS(1455), - [anon_sym_LT] = ACTIONS(1457), - [anon_sym_GT] = ACTIONS(1457), - [anon_sym_LT_EQ] = ACTIONS(1459), - [anon_sym_GT_EQ] = ACTIONS(1459), - [anon_sym_LT_LT] = ACTIONS(1461), - [anon_sym_GT_GT] = ACTIONS(1461), - [anon_sym_PLUS] = ACTIONS(1463), - [anon_sym_DASH] = ACTIONS(1463), - [anon_sym_SLASH] = ACTIONS(1437), - [anon_sym_PERCENT] = ACTIONS(1437), - [anon_sym_DASH_DASH] = ACTIONS(1044), - [anon_sym_PLUS_PLUS] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1046), - [anon_sym_DASH_GT] = ACTIONS(1046), - [sym_comment] = ACTIONS(37), + [1145] = { + [sym__expression] = STATE(1185), + [sym_conditional_expression] = STATE(1185), + [sym_assignment_expression] = STATE(1185), + [sym_pointer_expression] = STATE(1185), + [sym_logical_expression] = STATE(1185), + [sym_bitwise_expression] = STATE(1185), + [sym_equality_expression] = STATE(1185), + [sym_relational_expression] = STATE(1185), + [sym_shift_expression] = STATE(1185), + [sym_math_expression] = STATE(1185), + [sym_cast_expression] = STATE(1185), + [sym_sizeof_expression] = STATE(1185), + [sym_subscript_expression] = STATE(1185), + [sym_call_expression] = STATE(1185), + [sym_field_expression] = STATE(1185), + [sym_compound_literal_expression] = STATE(1185), + [sym_parenthesized_expression] = STATE(1185), + [sym_char_literal] = STATE(1185), + [sym_concatenated_string] = STATE(1185), + [sym_string_literal] = STATE(55), + [anon_sym_RPAREN] = ACTIONS(3292), + [anon_sym_LPAREN2] = ACTIONS(85), + [anon_sym_STAR] = ACTIONS(87), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_PLUS] = ACTIONS(97), + [anon_sym_DASH] = ACTIONS(97), + [anon_sym_DASH_DASH] = ACTIONS(99), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(101), + [sym_number_literal] = ACTIONS(3294), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(3296), + [sym_false] = ACTIONS(3296), + [sym_null] = ACTIONS(3296), + [sym_identifier] = ACTIONS(3296), + [sym_comment] = ACTIONS(59), }, - [1160] = { - [sym__expression] = STATE(1187), - [sym_conditional_expression] = STATE(1187), - [sym_assignment_expression] = STATE(1187), - [sym_pointer_expression] = STATE(1187), - [sym_logical_expression] = STATE(1187), - [sym_bitwise_expression] = STATE(1187), - [sym_equality_expression] = STATE(1187), - [sym_relational_expression] = STATE(1187), - [sym_shift_expression] = STATE(1187), - [sym_math_expression] = STATE(1187), - [sym_cast_expression] = STATE(1187), - [sym_sizeof_expression] = STATE(1187), - [sym_subscript_expression] = STATE(1187), - [sym_call_expression] = STATE(1187), - [sym_field_expression] = STATE(1187), - [sym_compound_literal_expression] = STATE(1187), - [sym_parenthesized_expression] = STATE(1187), - [sym_char_literal] = STATE(1187), - [sym_concatenated_string] = STATE(1187), + [1146] = { + [sym_argument_list] = STATE(98), + [anon_sym_SEMI] = ACTIONS(3298), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_LBRACK] = ACTIONS(188), + [anon_sym_EQ] = ACTIONS(1896), + [anon_sym_QMARK] = ACTIONS(1898), + [anon_sym_STAR_EQ] = ACTIONS(1900), + [anon_sym_SLASH_EQ] = ACTIONS(1900), + [anon_sym_PERCENT_EQ] = ACTIONS(1900), + [anon_sym_PLUS_EQ] = ACTIONS(1900), + [anon_sym_DASH_EQ] = ACTIONS(1900), + [anon_sym_LT_LT_EQ] = ACTIONS(1900), + [anon_sym_GT_GT_EQ] = ACTIONS(1900), + [anon_sym_AMP_EQ] = ACTIONS(1900), + [anon_sym_CARET_EQ] = ACTIONS(1900), + [anon_sym_PIPE_EQ] = ACTIONS(1900), + [anon_sym_AMP] = ACTIONS(1902), + [anon_sym_PIPE_PIPE] = ACTIONS(1904), + [anon_sym_AMP_AMP] = ACTIONS(1906), + [anon_sym_PIPE] = ACTIONS(1908), + [anon_sym_CARET] = ACTIONS(1910), + [anon_sym_EQ_EQ] = ACTIONS(1912), + [anon_sym_BANG_EQ] = ACTIONS(1912), + [anon_sym_LT] = ACTIONS(1914), + [anon_sym_GT] = ACTIONS(1914), + [anon_sym_LT_EQ] = ACTIONS(1916), + [anon_sym_GT_EQ] = ACTIONS(1916), + [anon_sym_LT_LT] = ACTIONS(1918), + [anon_sym_GT_GT] = ACTIONS(1918), + [anon_sym_PLUS] = ACTIONS(1920), + [anon_sym_DASH] = ACTIONS(1920), + [anon_sym_SLASH] = ACTIONS(1894), + [anon_sym_PERCENT] = ACTIONS(1894), + [anon_sym_DASH_DASH] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(216), + [anon_sym_DOT] = ACTIONS(218), + [anon_sym_DASH_GT] = ACTIONS(218), + [sym_comment] = ACTIONS(59), + }, + [1147] = { + [sym_compound_statement] = STATE(1027), + [sym_labeled_statement] = STATE(1027), + [sym_expression_statement] = STATE(1027), + [sym_if_statement] = STATE(1027), + [sym_switch_statement] = STATE(1027), + [sym_case_statement] = STATE(1027), + [sym_while_statement] = STATE(1027), + [sym_do_statement] = STATE(1027), + [sym_for_statement] = STATE(1027), + [sym_return_statement] = STATE(1027), + [sym_break_statement] = STATE(1027), + [sym_continue_statement] = STATE(1027), + [sym_goto_statement] = STATE(1027), + [sym__expression] = STATE(372), + [sym_comma_expression] = STATE(373), + [sym_conditional_expression] = STATE(372), + [sym_assignment_expression] = STATE(372), + [sym_pointer_expression] = STATE(372), + [sym_logical_expression] = STATE(372), + [sym_bitwise_expression] = STATE(372), + [sym_equality_expression] = STATE(372), + [sym_relational_expression] = STATE(372), + [sym_shift_expression] = STATE(372), + [sym_math_expression] = STATE(372), + [sym_cast_expression] = STATE(372), + [sym_sizeof_expression] = STATE(372), + [sym_subscript_expression] = STATE(372), + [sym_call_expression] = STATE(372), + [sym_field_expression] = STATE(372), + [sym_compound_literal_expression] = STATE(372), + [sym_parenthesized_expression] = STATE(372), + [sym_char_literal] = STATE(372), + [sym_concatenated_string] = STATE(372), [sym_string_literal] = STATE(374), - [anon_sym_RPAREN] = ACTIONS(3251), - [anon_sym_LPAREN2] = ACTIONS(892), - [anon_sym_STAR] = ACTIONS(894), - [anon_sym_AMP] = ACTIONS(894), - [anon_sym_BANG] = ACTIONS(896), - [anon_sym_TILDE] = ACTIONS(898), - [anon_sym_PLUS] = ACTIONS(900), - [anon_sym_DASH] = ACTIONS(900), - [anon_sym_DASH_DASH] = ACTIONS(902), - [anon_sym_PLUS_PLUS] = ACTIONS(902), - [anon_sym_sizeof] = ACTIONS(904), - [sym_number_literal] = ACTIONS(3253), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(3255), - [sym_false] = ACTIONS(3255), - [sym_null] = ACTIONS(3255), - [sym_identifier] = ACTIONS(3255), - [sym_comment] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(928), + [anon_sym_LBRACE] = ACTIONS(439), + [anon_sym_LPAREN2] = ACTIONS(936), + [anon_sym_STAR] = ACTIONS(938), + [anon_sym_if] = ACTIONS(2587), + [anon_sym_switch] = ACTIONS(2589), + [anon_sym_case] = ACTIONS(2591), + [anon_sym_default] = ACTIONS(2593), + [anon_sym_while] = ACTIONS(2595), + [anon_sym_do] = ACTIONS(1466), + [anon_sym_for] = ACTIONS(2597), + [anon_sym_return] = ACTIONS(954), + [anon_sym_break] = ACTIONS(956), + [anon_sym_continue] = ACTIONS(958), + [anon_sym_goto] = ACTIONS(960), + [anon_sym_AMP] = ACTIONS(938), + [anon_sym_BANG] = ACTIONS(962), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_DASH_DASH] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(968), + [anon_sym_sizeof] = ACTIONS(970), + [sym_number_literal] = ACTIONS(972), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(974), + [sym_false] = ACTIONS(974), + [sym_null] = ACTIONS(974), + [sym_identifier] = ACTIONS(2599), + [sym_comment] = ACTIONS(59), }, - [1161] = { - [sym_compound_statement] = STATE(1132), - [sym_labeled_statement] = STATE(1132), - [sym_expression_statement] = STATE(1132), - [sym_if_statement] = STATE(1132), - [sym_switch_statement] = STATE(1132), - [sym_case_statement] = STATE(1132), - [sym_while_statement] = STATE(1132), - [sym_do_statement] = STATE(1132), - [sym_for_statement] = STATE(1132), - [sym_return_statement] = STATE(1132), - [sym_break_statement] = STATE(1132), - [sym_continue_statement] = STATE(1132), - [sym_goto_statement] = STATE(1132), - [sym__expression] = STATE(594), - [sym_comma_expression] = STATE(595), - [sym_conditional_expression] = STATE(594), - [sym_assignment_expression] = STATE(594), - [sym_pointer_expression] = STATE(594), - [sym_logical_expression] = STATE(594), - [sym_bitwise_expression] = STATE(594), - [sym_equality_expression] = STATE(594), - [sym_relational_expression] = STATE(594), - [sym_shift_expression] = STATE(594), - [sym_math_expression] = STATE(594), - [sym_cast_expression] = STATE(594), - [sym_sizeof_expression] = STATE(594), - [sym_subscript_expression] = STATE(594), - [sym_call_expression] = STATE(594), - [sym_field_expression] = STATE(594), - [sym_compound_literal_expression] = STATE(594), - [sym_parenthesized_expression] = STATE(594), - [sym_char_literal] = STATE(594), - [sym_concatenated_string] = STATE(594), - [sym_string_literal] = STATE(230), - [anon_sym_SEMI] = ACTIONS(1395), - [anon_sym_LBRACE] = ACTIONS(678), - [anon_sym_LPAREN2] = ACTIONS(507), - [anon_sym_STAR] = ACTIONS(509), - [anon_sym_if] = ACTIONS(2521), - [anon_sym_switch] = ACTIONS(2523), - [anon_sym_case] = ACTIONS(2525), - [anon_sym_default] = ACTIONS(2527), - [anon_sym_while] = ACTIONS(2529), - [anon_sym_do] = ACTIONS(1407), - [anon_sym_for] = ACTIONS(2531), - [anon_sym_return] = ACTIONS(1411), - [anon_sym_break] = ACTIONS(1413), - [anon_sym_continue] = ACTIONS(1415), - [anon_sym_goto] = ACTIONS(1417), - [anon_sym_AMP] = ACTIONS(509), - [anon_sym_BANG] = ACTIONS(533), - [anon_sym_TILDE] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DASH] = ACTIONS(537), - [anon_sym_DASH_DASH] = ACTIONS(539), - [anon_sym_PLUS_PLUS] = ACTIONS(539), - [anon_sym_sizeof] = ACTIONS(541), - [sym_number_literal] = ACTIONS(1419), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(1421), - [sym_false] = ACTIONS(1421), - [sym_null] = ACTIONS(1421), - [sym_identifier] = ACTIONS(2533), - [sym_comment] = ACTIONS(37), + [1148] = { + [sym__expression] = STATE(1188), + [sym_conditional_expression] = STATE(1188), + [sym_assignment_expression] = STATE(1188), + [sym_pointer_expression] = STATE(1188), + [sym_logical_expression] = STATE(1188), + [sym_bitwise_expression] = STATE(1188), + [sym_equality_expression] = STATE(1188), + [sym_relational_expression] = STATE(1188), + [sym_shift_expression] = STATE(1188), + [sym_math_expression] = STATE(1188), + [sym_cast_expression] = STATE(1188), + [sym_sizeof_expression] = STATE(1188), + [sym_subscript_expression] = STATE(1188), + [sym_call_expression] = STATE(1188), + [sym_field_expression] = STATE(1188), + [sym_compound_literal_expression] = STATE(1188), + [sym_parenthesized_expression] = STATE(1188), + [sym_char_literal] = STATE(1188), + [sym_concatenated_string] = STATE(1188), + [sym_string_literal] = STATE(55), + [anon_sym_RPAREN] = ACTIONS(3300), + [anon_sym_LPAREN2] = ACTIONS(85), + [anon_sym_STAR] = ACTIONS(87), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_PLUS] = ACTIONS(97), + [anon_sym_DASH] = ACTIONS(97), + [anon_sym_DASH_DASH] = ACTIONS(99), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(101), + [sym_number_literal] = ACTIONS(3302), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(3304), + [sym_false] = ACTIONS(3304), + [sym_null] = ACTIONS(3304), + [sym_identifier] = ACTIONS(3304), + [sym_comment] = ACTIONS(59), }, - [1162] = { - [sym_argument_list] = STATE(430), - [aux_sym_for_statement_repeat1] = STATE(1189), - [anon_sym_COMMA] = ACTIONS(2344), - [anon_sym_RPAREN] = ACTIONS(3257), - [anon_sym_LPAREN2] = ACTIONS(1012), - [anon_sym_STAR] = ACTIONS(1437), - [anon_sym_LBRACK] = ACTIONS(1016), - [anon_sym_EQ] = ACTIONS(1439), - [anon_sym_QMARK] = ACTIONS(1441), - [anon_sym_STAR_EQ] = ACTIONS(1443), - [anon_sym_SLASH_EQ] = ACTIONS(1443), - [anon_sym_PERCENT_EQ] = ACTIONS(1443), - [anon_sym_PLUS_EQ] = ACTIONS(1443), - [anon_sym_DASH_EQ] = ACTIONS(1443), - [anon_sym_LT_LT_EQ] = ACTIONS(1443), - [anon_sym_GT_GT_EQ] = ACTIONS(1443), - [anon_sym_AMP_EQ] = ACTIONS(1443), - [anon_sym_CARET_EQ] = ACTIONS(1443), - [anon_sym_PIPE_EQ] = ACTIONS(1443), - [anon_sym_AMP] = ACTIONS(1445), - [anon_sym_PIPE_PIPE] = ACTIONS(1447), - [anon_sym_AMP_AMP] = ACTIONS(1449), - [anon_sym_PIPE] = ACTIONS(1451), - [anon_sym_CARET] = ACTIONS(1453), - [anon_sym_EQ_EQ] = ACTIONS(1455), - [anon_sym_BANG_EQ] = ACTIONS(1455), - [anon_sym_LT] = ACTIONS(1457), - [anon_sym_GT] = ACTIONS(1457), - [anon_sym_LT_EQ] = ACTIONS(1459), - [anon_sym_GT_EQ] = ACTIONS(1459), - [anon_sym_LT_LT] = ACTIONS(1461), - [anon_sym_GT_GT] = ACTIONS(1461), - [anon_sym_PLUS] = ACTIONS(1463), - [anon_sym_DASH] = ACTIONS(1463), - [anon_sym_SLASH] = ACTIONS(1437), - [anon_sym_PERCENT] = ACTIONS(1437), - [anon_sym_DASH_DASH] = ACTIONS(1044), - [anon_sym_PLUS_PLUS] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1046), - [anon_sym_DASH_GT] = ACTIONS(1046), - [sym_comment] = ACTIONS(37), + [1149] = { + [sym_argument_list] = STATE(98), + [anon_sym_SEMI] = ACTIONS(3306), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_LBRACK] = ACTIONS(188), + [anon_sym_EQ] = ACTIONS(1896), + [anon_sym_QMARK] = ACTIONS(1898), + [anon_sym_STAR_EQ] = ACTIONS(1900), + [anon_sym_SLASH_EQ] = ACTIONS(1900), + [anon_sym_PERCENT_EQ] = ACTIONS(1900), + [anon_sym_PLUS_EQ] = ACTIONS(1900), + [anon_sym_DASH_EQ] = ACTIONS(1900), + [anon_sym_LT_LT_EQ] = ACTIONS(1900), + [anon_sym_GT_GT_EQ] = ACTIONS(1900), + [anon_sym_AMP_EQ] = ACTIONS(1900), + [anon_sym_CARET_EQ] = ACTIONS(1900), + [anon_sym_PIPE_EQ] = ACTIONS(1900), + [anon_sym_AMP] = ACTIONS(1902), + [anon_sym_PIPE_PIPE] = ACTIONS(1904), + [anon_sym_AMP_AMP] = ACTIONS(1906), + [anon_sym_PIPE] = ACTIONS(1908), + [anon_sym_CARET] = ACTIONS(1910), + [anon_sym_EQ_EQ] = ACTIONS(1912), + [anon_sym_BANG_EQ] = ACTIONS(1912), + [anon_sym_LT] = ACTIONS(1914), + [anon_sym_GT] = ACTIONS(1914), + [anon_sym_LT_EQ] = ACTIONS(1916), + [anon_sym_GT_EQ] = ACTIONS(1916), + [anon_sym_LT_LT] = ACTIONS(1918), + [anon_sym_GT_GT] = ACTIONS(1918), + [anon_sym_PLUS] = ACTIONS(1920), + [anon_sym_DASH] = ACTIONS(1920), + [anon_sym_SLASH] = ACTIONS(1894), + [anon_sym_PERCENT] = ACTIONS(1894), + [anon_sym_DASH_DASH] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(216), + [anon_sym_DOT] = ACTIONS(218), + [anon_sym_DASH_GT] = ACTIONS(218), + [sym_comment] = ACTIONS(59), }, - [1163] = { + [1150] = { [sym__expression] = STATE(1190), [sym_conditional_expression] = STATE(1190), [sym_assignment_expression] = STATE(1190), @@ -47916,477 +48625,680 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_parenthesized_expression] = STATE(1190), [sym_char_literal] = STATE(1190), [sym_concatenated_string] = STATE(1190), - [sym_string_literal] = STATE(374), - [anon_sym_RPAREN] = ACTIONS(3257), - [anon_sym_LPAREN2] = ACTIONS(892), - [anon_sym_STAR] = ACTIONS(894), - [anon_sym_AMP] = ACTIONS(894), - [anon_sym_BANG] = ACTIONS(896), - [anon_sym_TILDE] = ACTIONS(898), - [anon_sym_PLUS] = ACTIONS(900), - [anon_sym_DASH] = ACTIONS(900), - [anon_sym_DASH_DASH] = ACTIONS(902), - [anon_sym_PLUS_PLUS] = ACTIONS(902), - [anon_sym_sizeof] = ACTIONS(904), - [sym_number_literal] = ACTIONS(3259), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(3261), - [sym_false] = ACTIONS(3261), - [sym_null] = ACTIONS(3261), - [sym_identifier] = ACTIONS(3261), - [sym_comment] = ACTIONS(37), + [sym_string_literal] = STATE(534), + [anon_sym_SEMI] = ACTIONS(3306), + [anon_sym_LPAREN2] = ACTIONS(1349), + [anon_sym_STAR] = ACTIONS(1351), + [anon_sym_AMP] = ACTIONS(1351), + [anon_sym_BANG] = ACTIONS(1353), + [anon_sym_TILDE] = ACTIONS(1355), + [anon_sym_PLUS] = ACTIONS(1357), + [anon_sym_DASH] = ACTIONS(1357), + [anon_sym_DASH_DASH] = ACTIONS(1359), + [anon_sym_PLUS_PLUS] = ACTIONS(1359), + [anon_sym_sizeof] = ACTIONS(1361), + [sym_number_literal] = ACTIONS(3308), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(3310), + [sym_false] = ACTIONS(3310), + [sym_null] = ACTIONS(3310), + [sym_identifier] = ACTIONS(3310), + [sym_comment] = ACTIONS(59), }, - [1164] = { - [sym_argument_list] = STATE(430), - [anon_sym_SEMI] = ACTIONS(3263), - [anon_sym_LPAREN2] = ACTIONS(1012), - [anon_sym_STAR] = ACTIONS(1319), - [anon_sym_LBRACK] = ACTIONS(1016), - [anon_sym_EQ] = ACTIONS(1321), - [anon_sym_QMARK] = ACTIONS(1323), - [anon_sym_STAR_EQ] = ACTIONS(1325), - [anon_sym_SLASH_EQ] = ACTIONS(1325), - [anon_sym_PERCENT_EQ] = ACTIONS(1325), - [anon_sym_PLUS_EQ] = ACTIONS(1325), - [anon_sym_DASH_EQ] = ACTIONS(1325), - [anon_sym_LT_LT_EQ] = ACTIONS(1325), - [anon_sym_GT_GT_EQ] = ACTIONS(1325), - [anon_sym_AMP_EQ] = ACTIONS(1325), - [anon_sym_CARET_EQ] = ACTIONS(1325), - [anon_sym_PIPE_EQ] = ACTIONS(1325), - [anon_sym_AMP] = ACTIONS(1327), - [anon_sym_PIPE_PIPE] = ACTIONS(1329), - [anon_sym_AMP_AMP] = ACTIONS(1331), - [anon_sym_PIPE] = ACTIONS(1333), - [anon_sym_CARET] = ACTIONS(1335), - [anon_sym_EQ_EQ] = ACTIONS(1337), - [anon_sym_BANG_EQ] = ACTIONS(1337), - [anon_sym_LT] = ACTIONS(1339), - [anon_sym_GT] = ACTIONS(1339), - [anon_sym_LT_EQ] = ACTIONS(1341), - [anon_sym_GT_EQ] = ACTIONS(1341), - [anon_sym_LT_LT] = ACTIONS(1343), - [anon_sym_GT_GT] = ACTIONS(1343), - [anon_sym_PLUS] = ACTIONS(1345), - [anon_sym_DASH] = ACTIONS(1345), - [anon_sym_SLASH] = ACTIONS(1319), - [anon_sym_PERCENT] = ACTIONS(1319), - [anon_sym_DASH_DASH] = ACTIONS(1044), - [anon_sym_PLUS_PLUS] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1046), - [anon_sym_DASH_GT] = ACTIONS(1046), - [sym_comment] = ACTIONS(37), + [1151] = { + [sym_compound_statement] = STATE(1155), + [sym_labeled_statement] = STATE(1155), + [sym_expression_statement] = STATE(1155), + [sym_if_statement] = STATE(1155), + [sym_switch_statement] = STATE(1155), + [sym_case_statement] = STATE(1155), + [sym_while_statement] = STATE(1155), + [sym_do_statement] = STATE(1155), + [sym_for_statement] = STATE(1155), + [sym_return_statement] = STATE(1155), + [sym_break_statement] = STATE(1155), + [sym_continue_statement] = STATE(1155), + [sym_goto_statement] = STATE(1155), + [sym__expression] = STATE(372), + [sym_comma_expression] = STATE(373), + [sym_conditional_expression] = STATE(372), + [sym_assignment_expression] = STATE(372), + [sym_pointer_expression] = STATE(372), + [sym_logical_expression] = STATE(372), + [sym_bitwise_expression] = STATE(372), + [sym_equality_expression] = STATE(372), + [sym_relational_expression] = STATE(372), + [sym_shift_expression] = STATE(372), + [sym_math_expression] = STATE(372), + [sym_cast_expression] = STATE(372), + [sym_sizeof_expression] = STATE(372), + [sym_subscript_expression] = STATE(372), + [sym_call_expression] = STATE(372), + [sym_field_expression] = STATE(372), + [sym_compound_literal_expression] = STATE(372), + [sym_parenthesized_expression] = STATE(372), + [sym_char_literal] = STATE(372), + [sym_concatenated_string] = STATE(372), + [sym_string_literal] = STATE(374), + [anon_sym_SEMI] = ACTIONS(928), + [anon_sym_LBRACE] = ACTIONS(439), + [anon_sym_LPAREN2] = ACTIONS(936), + [anon_sym_STAR] = ACTIONS(938), + [anon_sym_if] = ACTIONS(1456), + [anon_sym_switch] = ACTIONS(1458), + [anon_sym_case] = ACTIONS(1460), + [anon_sym_default] = ACTIONS(1462), + [anon_sym_while] = ACTIONS(1464), + [anon_sym_do] = ACTIONS(1466), + [anon_sym_for] = ACTIONS(1468), + [anon_sym_return] = ACTIONS(954), + [anon_sym_break] = ACTIONS(956), + [anon_sym_continue] = ACTIONS(958), + [anon_sym_goto] = ACTIONS(960), + [anon_sym_AMP] = ACTIONS(938), + [anon_sym_BANG] = ACTIONS(962), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_DASH_DASH] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(968), + [anon_sym_sizeof] = ACTIONS(970), + [sym_number_literal] = ACTIONS(972), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(974), + [sym_false] = ACTIONS(974), + [sym_null] = ACTIONS(974), + [sym_identifier] = ACTIONS(1470), + [sym_comment] = ACTIONS(59), }, - [1165] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3173), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3173), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3173), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3173), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3173), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3173), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(3173), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(3173), - [sym_preproc_directive] = ACTIONS(3173), - [anon_sym_SEMI] = ACTIONS(3175), - [anon_sym_typedef] = ACTIONS(3173), - [anon_sym_extern] = ACTIONS(3173), - [anon_sym_LBRACE] = ACTIONS(3175), - [anon_sym_LPAREN2] = ACTIONS(3175), - [anon_sym_STAR] = ACTIONS(3175), - [anon_sym_static] = ACTIONS(3173), - [anon_sym_auto] = ACTIONS(3173), - [anon_sym_register] = ACTIONS(3173), - [anon_sym_inline] = ACTIONS(3173), - [anon_sym_const] = ACTIONS(3173), - [anon_sym_restrict] = ACTIONS(3173), - [anon_sym_volatile] = ACTIONS(3173), - [anon_sym__Atomic] = ACTIONS(3173), - [anon_sym_unsigned] = ACTIONS(3173), - [anon_sym_long] = ACTIONS(3173), - [anon_sym_short] = ACTIONS(3173), - [sym_primitive_type] = ACTIONS(3173), - [anon_sym_enum] = ACTIONS(3173), - [anon_sym_struct] = ACTIONS(3173), - [anon_sym_union] = ACTIONS(3173), - [anon_sym_if] = ACTIONS(3173), - [anon_sym_else] = ACTIONS(3173), - [anon_sym_switch] = ACTIONS(3173), - [anon_sym_case] = ACTIONS(3173), - [anon_sym_default] = ACTIONS(3173), - [anon_sym_while] = ACTIONS(3173), - [anon_sym_do] = ACTIONS(3173), - [anon_sym_for] = ACTIONS(3173), - [anon_sym_return] = ACTIONS(3173), - [anon_sym_break] = ACTIONS(3173), - [anon_sym_continue] = ACTIONS(3173), - [anon_sym_goto] = ACTIONS(3173), - [anon_sym_AMP] = ACTIONS(3175), - [anon_sym_BANG] = ACTIONS(3175), - [anon_sym_TILDE] = ACTIONS(3175), - [anon_sym_PLUS] = ACTIONS(3173), - [anon_sym_DASH] = ACTIONS(3173), - [anon_sym_DASH_DASH] = ACTIONS(3175), - [anon_sym_PLUS_PLUS] = ACTIONS(3175), - [anon_sym_sizeof] = ACTIONS(3173), - [sym_number_literal] = ACTIONS(3175), - [anon_sym_SQUOTE] = ACTIONS(3175), - [anon_sym_DQUOTE] = ACTIONS(3175), - [sym_true] = ACTIONS(3173), - [sym_false] = ACTIONS(3173), - [sym_null] = ACTIONS(3173), - [sym_identifier] = ACTIONS(3173), - [sym_comment] = ACTIONS(37), + [1152] = { + [aux_sym_for_statement_repeat1] = STATE(593), + [anon_sym_COMMA] = ACTIONS(1002), + [anon_sym_RPAREN] = ACTIONS(3312), + [sym_comment] = ACTIONS(59), }, - [1166] = { - [sym_compound_statement] = STATE(1192), - [sym_labeled_statement] = STATE(1192), - [sym_expression_statement] = STATE(1192), - [sym_if_statement] = STATE(1192), - [sym_switch_statement] = STATE(1192), - [sym_case_statement] = STATE(1192), - [sym_while_statement] = STATE(1192), - [sym_do_statement] = STATE(1192), - [sym_for_statement] = STATE(1192), - [sym_return_statement] = STATE(1192), - [sym_break_statement] = STATE(1192), - [sym_continue_statement] = STATE(1192), - [sym_goto_statement] = STATE(1192), - [sym__expression] = STATE(594), - [sym_comma_expression] = STATE(595), - [sym_conditional_expression] = STATE(594), - [sym_assignment_expression] = STATE(594), - [sym_pointer_expression] = STATE(594), - [sym_logical_expression] = STATE(594), - [sym_bitwise_expression] = STATE(594), - [sym_equality_expression] = STATE(594), - [sym_relational_expression] = STATE(594), - [sym_shift_expression] = STATE(594), - [sym_math_expression] = STATE(594), - [sym_cast_expression] = STATE(594), - [sym_sizeof_expression] = STATE(594), - [sym_subscript_expression] = STATE(594), - [sym_call_expression] = STATE(594), - [sym_field_expression] = STATE(594), - [sym_compound_literal_expression] = STATE(594), - [sym_parenthesized_expression] = STATE(594), - [sym_char_literal] = STATE(594), - [sym_concatenated_string] = STATE(594), - [sym_string_literal] = STATE(230), - [anon_sym_SEMI] = ACTIONS(1395), - [anon_sym_LBRACE] = ACTIONS(678), - [anon_sym_LPAREN2] = ACTIONS(507), - [anon_sym_STAR] = ACTIONS(509), - [anon_sym_if] = ACTIONS(1397), - [anon_sym_switch] = ACTIONS(1399), - [anon_sym_case] = ACTIONS(1401), - [anon_sym_default] = ACTIONS(1403), - [anon_sym_while] = ACTIONS(1405), - [anon_sym_do] = ACTIONS(1407), - [anon_sym_for] = ACTIONS(1409), - [anon_sym_return] = ACTIONS(1411), - [anon_sym_break] = ACTIONS(1413), - [anon_sym_continue] = ACTIONS(1415), - [anon_sym_goto] = ACTIONS(1417), - [anon_sym_AMP] = ACTIONS(509), - [anon_sym_BANG] = ACTIONS(533), - [anon_sym_TILDE] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DASH] = ACTIONS(537), - [anon_sym_DASH_DASH] = ACTIONS(539), - [anon_sym_PLUS_PLUS] = ACTIONS(539), - [anon_sym_sizeof] = ACTIONS(541), - [sym_number_literal] = ACTIONS(1419), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(1421), - [sym_false] = ACTIONS(1421), - [sym_null] = ACTIONS(1421), - [sym_identifier] = ACTIONS(2535), - [sym_comment] = ACTIONS(37), + [1153] = { + [sym_argument_list] = STATE(98), + [aux_sym_for_statement_repeat1] = STATE(1192), + [anon_sym_COMMA] = ACTIONS(1002), + [anon_sym_RPAREN] = ACTIONS(3312), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(319), + [anon_sym_LBRACK] = ACTIONS(188), + [anon_sym_EQ] = ACTIONS(321), + [anon_sym_QMARK] = ACTIONS(323), + [anon_sym_STAR_EQ] = ACTIONS(325), + [anon_sym_SLASH_EQ] = ACTIONS(325), + [anon_sym_PERCENT_EQ] = ACTIONS(325), + [anon_sym_PLUS_EQ] = ACTIONS(325), + [anon_sym_DASH_EQ] = ACTIONS(325), + [anon_sym_LT_LT_EQ] = ACTIONS(325), + [anon_sym_GT_GT_EQ] = ACTIONS(325), + [anon_sym_AMP_EQ] = ACTIONS(325), + [anon_sym_CARET_EQ] = ACTIONS(325), + [anon_sym_PIPE_EQ] = ACTIONS(325), + [anon_sym_AMP] = ACTIONS(327), + [anon_sym_PIPE_PIPE] = ACTIONS(329), + [anon_sym_AMP_AMP] = ACTIONS(331), + [anon_sym_PIPE] = ACTIONS(333), + [anon_sym_CARET] = ACTIONS(335), + [anon_sym_EQ_EQ] = ACTIONS(337), + [anon_sym_BANG_EQ] = ACTIONS(337), + [anon_sym_LT] = ACTIONS(339), + [anon_sym_GT] = ACTIONS(339), + [anon_sym_LT_EQ] = ACTIONS(341), + [anon_sym_GT_EQ] = ACTIONS(341), + [anon_sym_LT_LT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(343), + [anon_sym_PLUS] = ACTIONS(345), + [anon_sym_DASH] = ACTIONS(345), + [anon_sym_SLASH] = ACTIONS(319), + [anon_sym_PERCENT] = ACTIONS(319), + [anon_sym_DASH_DASH] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(216), + [anon_sym_DOT] = ACTIONS(218), + [anon_sym_DASH_GT] = ACTIONS(218), + [sym_comment] = ACTIONS(59), }, - [1167] = { - [aux_sym_for_statement_repeat1] = STATE(991), - [anon_sym_COMMA] = ACTIONS(2344), - [anon_sym_RPAREN] = ACTIONS(3265), - [sym_comment] = ACTIONS(37), + [1154] = { + [sym__expression] = STATE(1193), + [sym_conditional_expression] = STATE(1193), + [sym_assignment_expression] = STATE(1193), + [sym_pointer_expression] = STATE(1193), + [sym_logical_expression] = STATE(1193), + [sym_bitwise_expression] = STATE(1193), + [sym_equality_expression] = STATE(1193), + [sym_relational_expression] = STATE(1193), + [sym_shift_expression] = STATE(1193), + [sym_math_expression] = STATE(1193), + [sym_cast_expression] = STATE(1193), + [sym_sizeof_expression] = STATE(1193), + [sym_subscript_expression] = STATE(1193), + [sym_call_expression] = STATE(1193), + [sym_field_expression] = STATE(1193), + [sym_compound_literal_expression] = STATE(1193), + [sym_parenthesized_expression] = STATE(1193), + [sym_char_literal] = STATE(1193), + [sym_concatenated_string] = STATE(1193), + [sym_string_literal] = STATE(55), + [anon_sym_RPAREN] = ACTIONS(3312), + [anon_sym_LPAREN2] = ACTIONS(85), + [anon_sym_STAR] = ACTIONS(87), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_PLUS] = ACTIONS(97), + [anon_sym_DASH] = ACTIONS(97), + [anon_sym_DASH_DASH] = ACTIONS(99), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(101), + [sym_number_literal] = ACTIONS(3314), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(3316), + [sym_false] = ACTIONS(3316), + [sym_null] = ACTIONS(3316), + [sym_identifier] = ACTIONS(3316), + [sym_comment] = ACTIONS(59), }, - [1168] = { - [sym_argument_list] = STATE(430), - [aux_sym_for_statement_repeat1] = STATE(1194), - [anon_sym_COMMA] = ACTIONS(2344), - [anon_sym_RPAREN] = ACTIONS(3265), - [anon_sym_LPAREN2] = ACTIONS(1012), - [anon_sym_STAR] = ACTIONS(1437), - [anon_sym_LBRACK] = ACTIONS(1016), - [anon_sym_EQ] = ACTIONS(1439), - [anon_sym_QMARK] = ACTIONS(1441), - [anon_sym_STAR_EQ] = ACTIONS(1443), - [anon_sym_SLASH_EQ] = ACTIONS(1443), - [anon_sym_PERCENT_EQ] = ACTIONS(1443), - [anon_sym_PLUS_EQ] = ACTIONS(1443), - [anon_sym_DASH_EQ] = ACTIONS(1443), - [anon_sym_LT_LT_EQ] = ACTIONS(1443), - [anon_sym_GT_GT_EQ] = ACTIONS(1443), - [anon_sym_AMP_EQ] = ACTIONS(1443), - [anon_sym_CARET_EQ] = ACTIONS(1443), - [anon_sym_PIPE_EQ] = ACTIONS(1443), - [anon_sym_AMP] = ACTIONS(1445), - [anon_sym_PIPE_PIPE] = ACTIONS(1447), - [anon_sym_AMP_AMP] = ACTIONS(1449), - [anon_sym_PIPE] = ACTIONS(1451), - [anon_sym_CARET] = ACTIONS(1453), - [anon_sym_EQ_EQ] = ACTIONS(1455), - [anon_sym_BANG_EQ] = ACTIONS(1455), - [anon_sym_LT] = ACTIONS(1457), - [anon_sym_GT] = ACTIONS(1457), - [anon_sym_LT_EQ] = ACTIONS(1459), - [anon_sym_GT_EQ] = ACTIONS(1459), - [anon_sym_LT_LT] = ACTIONS(1461), - [anon_sym_GT_GT] = ACTIONS(1461), - [anon_sym_PLUS] = ACTIONS(1463), - [anon_sym_DASH] = ACTIONS(1463), - [anon_sym_SLASH] = ACTIONS(1437), - [anon_sym_PERCENT] = ACTIONS(1437), - [anon_sym_DASH_DASH] = ACTIONS(1044), - [anon_sym_PLUS_PLUS] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1046), - [anon_sym_DASH_GT] = ACTIONS(1046), - [sym_comment] = ACTIONS(37), + [1155] = { + [anon_sym_SEMI] = ACTIONS(3318), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3320), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3320), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3320), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3320), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3320), + [sym_preproc_directive] = ACTIONS(3320), + [anon_sym_typedef] = ACTIONS(3320), + [anon_sym_extern] = ACTIONS(3320), + [anon_sym_LBRACE] = ACTIONS(3318), + [anon_sym_RBRACE] = ACTIONS(3318), + [anon_sym_LPAREN2] = ACTIONS(3318), + [anon_sym_STAR] = ACTIONS(3318), + [anon_sym_static] = ACTIONS(3320), + [anon_sym_auto] = ACTIONS(3320), + [anon_sym_register] = ACTIONS(3320), + [anon_sym_inline] = ACTIONS(3320), + [anon_sym_const] = ACTIONS(3320), + [anon_sym_restrict] = ACTIONS(3320), + [anon_sym_volatile] = ACTIONS(3320), + [anon_sym__Atomic] = ACTIONS(3320), + [anon_sym_unsigned] = ACTIONS(3320), + [anon_sym_long] = ACTIONS(3320), + [anon_sym_short] = ACTIONS(3320), + [sym_primitive_type] = ACTIONS(3320), + [anon_sym_enum] = ACTIONS(3320), + [anon_sym_struct] = ACTIONS(3320), + [anon_sym_union] = ACTIONS(3320), + [anon_sym_if] = ACTIONS(3320), + [anon_sym_else] = ACTIONS(3320), + [anon_sym_switch] = ACTIONS(3320), + [anon_sym_case] = ACTIONS(3320), + [anon_sym_default] = ACTIONS(3320), + [anon_sym_while] = ACTIONS(3320), + [anon_sym_do] = ACTIONS(3320), + [anon_sym_for] = ACTIONS(3320), + [anon_sym_return] = ACTIONS(3320), + [anon_sym_break] = ACTIONS(3320), + [anon_sym_continue] = ACTIONS(3320), + [anon_sym_goto] = ACTIONS(3320), + [anon_sym_AMP] = ACTIONS(3318), + [anon_sym_BANG] = ACTIONS(3318), + [anon_sym_TILDE] = ACTIONS(3318), + [anon_sym_PLUS] = ACTIONS(3320), + [anon_sym_DASH] = ACTIONS(3320), + [anon_sym_DASH_DASH] = ACTIONS(3318), + [anon_sym_PLUS_PLUS] = ACTIONS(3318), + [anon_sym_sizeof] = ACTIONS(3320), + [sym_number_literal] = ACTIONS(3318), + [anon_sym_SQUOTE] = ACTIONS(3318), + [anon_sym_DQUOTE] = ACTIONS(3318), + [sym_true] = ACTIONS(3320), + [sym_false] = ACTIONS(3320), + [sym_null] = ACTIONS(3320), + [sym_identifier] = ACTIONS(3320), + [sym_comment] = ACTIONS(59), }, - [1169] = { - [sym_compound_statement] = STATE(1148), - [sym_labeled_statement] = STATE(1148), - [sym_expression_statement] = STATE(1148), - [sym_if_statement] = STATE(1148), - [sym_switch_statement] = STATE(1148), - [sym_case_statement] = STATE(1148), - [sym_while_statement] = STATE(1148), - [sym_do_statement] = STATE(1148), - [sym_for_statement] = STATE(1148), - [sym_return_statement] = STATE(1148), - [sym_break_statement] = STATE(1148), - [sym_continue_statement] = STATE(1148), - [sym_goto_statement] = STATE(1148), - [sym__expression] = STATE(228), - [sym_comma_expression] = STATE(229), - [sym_conditional_expression] = STATE(228), - [sym_assignment_expression] = STATE(228), - [sym_pointer_expression] = STATE(228), - [sym_logical_expression] = STATE(228), - [sym_bitwise_expression] = STATE(228), - [sym_equality_expression] = STATE(228), - [sym_relational_expression] = STATE(228), - [sym_shift_expression] = STATE(228), - [sym_math_expression] = STATE(228), - [sym_cast_expression] = STATE(228), - [sym_sizeof_expression] = STATE(228), - [sym_subscript_expression] = STATE(228), - [sym_call_expression] = STATE(228), - [sym_field_expression] = STATE(228), - [sym_compound_literal_expression] = STATE(228), - [sym_parenthesized_expression] = STATE(228), - [sym_char_literal] = STATE(228), - [sym_concatenated_string] = STATE(228), - [sym_string_literal] = STATE(230), - [anon_sym_SEMI] = ACTIONS(503), - [anon_sym_LBRACE] = ACTIONS(229), - [anon_sym_LPAREN2] = ACTIONS(507), - [anon_sym_STAR] = ACTIONS(509), - [anon_sym_if] = ACTIONS(1475), - [anon_sym_switch] = ACTIONS(1477), - [anon_sym_case] = ACTIONS(1479), - [anon_sym_default] = ACTIONS(1481), - [anon_sym_while] = ACTIONS(1483), - [anon_sym_do] = ACTIONS(521), - [anon_sym_for] = ACTIONS(1485), - [anon_sym_return] = ACTIONS(525), - [anon_sym_break] = ACTIONS(527), - [anon_sym_continue] = ACTIONS(529), - [anon_sym_goto] = ACTIONS(531), - [anon_sym_AMP] = ACTIONS(509), - [anon_sym_BANG] = ACTIONS(533), - [anon_sym_TILDE] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DASH] = ACTIONS(537), - [anon_sym_DASH_DASH] = ACTIONS(539), - [anon_sym_PLUS_PLUS] = ACTIONS(539), - [anon_sym_sizeof] = ACTIONS(541), - [sym_number_literal] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(547), - [sym_false] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [sym_identifier] = ACTIONS(1487), - [sym_comment] = ACTIONS(37), + [1156] = { + [sym_compound_statement] = STATE(1194), + [sym_labeled_statement] = STATE(1194), + [sym_expression_statement] = STATE(1194), + [sym_if_statement] = STATE(1194), + [sym_switch_statement] = STATE(1194), + [sym_case_statement] = STATE(1194), + [sym_while_statement] = STATE(1194), + [sym_do_statement] = STATE(1194), + [sym_for_statement] = STATE(1194), + [sym_return_statement] = STATE(1194), + [sym_break_statement] = STATE(1194), + [sym_continue_statement] = STATE(1194), + [sym_goto_statement] = STATE(1194), + [sym__expression] = STATE(372), + [sym_comma_expression] = STATE(373), + [sym_conditional_expression] = STATE(372), + [sym_assignment_expression] = STATE(372), + [sym_pointer_expression] = STATE(372), + [sym_logical_expression] = STATE(372), + [sym_bitwise_expression] = STATE(372), + [sym_equality_expression] = STATE(372), + [sym_relational_expression] = STATE(372), + [sym_shift_expression] = STATE(372), + [sym_math_expression] = STATE(372), + [sym_cast_expression] = STATE(372), + [sym_sizeof_expression] = STATE(372), + [sym_subscript_expression] = STATE(372), + [sym_call_expression] = STATE(372), + [sym_field_expression] = STATE(372), + [sym_compound_literal_expression] = STATE(372), + [sym_parenthesized_expression] = STATE(372), + [sym_char_literal] = STATE(372), + [sym_concatenated_string] = STATE(372), + [sym_string_literal] = STATE(374), + [anon_sym_SEMI] = ACTIONS(928), + [anon_sym_LBRACE] = ACTIONS(439), + [anon_sym_LPAREN2] = ACTIONS(936), + [anon_sym_STAR] = ACTIONS(938), + [anon_sym_if] = ACTIONS(940), + [anon_sym_switch] = ACTIONS(942), + [anon_sym_case] = ACTIONS(944), + [anon_sym_default] = ACTIONS(946), + [anon_sym_while] = ACTIONS(948), + [anon_sym_do] = ACTIONS(950), + [anon_sym_for] = ACTIONS(952), + [anon_sym_return] = ACTIONS(954), + [anon_sym_break] = ACTIONS(956), + [anon_sym_continue] = ACTIONS(958), + [anon_sym_goto] = ACTIONS(960), + [anon_sym_AMP] = ACTIONS(938), + [anon_sym_BANG] = ACTIONS(962), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_DASH_DASH] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(968), + [anon_sym_sizeof] = ACTIONS(970), + [sym_number_literal] = ACTIONS(972), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(974), + [sym_false] = ACTIONS(974), + [sym_null] = ACTIONS(974), + [sym_identifier] = ACTIONS(2002), + [sym_comment] = ACTIONS(59), }, - [1170] = { - [aux_sym_for_statement_repeat1] = STATE(991), - [anon_sym_COMMA] = ACTIONS(2344), - [anon_sym_RPAREN] = ACTIONS(3267), - [sym_comment] = ACTIONS(37), + [1157] = { + [aux_sym_for_statement_repeat1] = STATE(593), + [anon_sym_COMMA] = ACTIONS(1002), + [anon_sym_RPAREN] = ACTIONS(3322), + [sym_comment] = ACTIONS(59), }, - [1171] = { - [sym_argument_list] = STATE(430), + [1158] = { + [sym_argument_list] = STATE(98), [aux_sym_for_statement_repeat1] = STATE(1196), - [anon_sym_COMMA] = ACTIONS(2344), - [anon_sym_RPAREN] = ACTIONS(3267), - [anon_sym_LPAREN2] = ACTIONS(1012), - [anon_sym_STAR] = ACTIONS(1437), - [anon_sym_LBRACK] = ACTIONS(1016), - [anon_sym_EQ] = ACTIONS(1439), - [anon_sym_QMARK] = ACTIONS(1441), - [anon_sym_STAR_EQ] = ACTIONS(1443), - [anon_sym_SLASH_EQ] = ACTIONS(1443), - [anon_sym_PERCENT_EQ] = ACTIONS(1443), - [anon_sym_PLUS_EQ] = ACTIONS(1443), - [anon_sym_DASH_EQ] = ACTIONS(1443), - [anon_sym_LT_LT_EQ] = ACTIONS(1443), - [anon_sym_GT_GT_EQ] = ACTIONS(1443), - [anon_sym_AMP_EQ] = ACTIONS(1443), - [anon_sym_CARET_EQ] = ACTIONS(1443), - [anon_sym_PIPE_EQ] = ACTIONS(1443), - [anon_sym_AMP] = ACTIONS(1445), - [anon_sym_PIPE_PIPE] = ACTIONS(1447), - [anon_sym_AMP_AMP] = ACTIONS(1449), - [anon_sym_PIPE] = ACTIONS(1451), - [anon_sym_CARET] = ACTIONS(1453), - [anon_sym_EQ_EQ] = ACTIONS(1455), - [anon_sym_BANG_EQ] = ACTIONS(1455), - [anon_sym_LT] = ACTIONS(1457), - [anon_sym_GT] = ACTIONS(1457), - [anon_sym_LT_EQ] = ACTIONS(1459), - [anon_sym_GT_EQ] = ACTIONS(1459), - [anon_sym_LT_LT] = ACTIONS(1461), - [anon_sym_GT_GT] = ACTIONS(1461), - [anon_sym_PLUS] = ACTIONS(1463), - [anon_sym_DASH] = ACTIONS(1463), - [anon_sym_SLASH] = ACTIONS(1437), - [anon_sym_PERCENT] = ACTIONS(1437), - [anon_sym_DASH_DASH] = ACTIONS(1044), - [anon_sym_PLUS_PLUS] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1046), - [anon_sym_DASH_GT] = ACTIONS(1046), - [sym_comment] = ACTIONS(37), + [anon_sym_COMMA] = ACTIONS(1002), + [anon_sym_RPAREN] = ACTIONS(3322), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(319), + [anon_sym_LBRACK] = ACTIONS(188), + [anon_sym_EQ] = ACTIONS(321), + [anon_sym_QMARK] = ACTIONS(323), + [anon_sym_STAR_EQ] = ACTIONS(325), + [anon_sym_SLASH_EQ] = ACTIONS(325), + [anon_sym_PERCENT_EQ] = ACTIONS(325), + [anon_sym_PLUS_EQ] = ACTIONS(325), + [anon_sym_DASH_EQ] = ACTIONS(325), + [anon_sym_LT_LT_EQ] = ACTIONS(325), + [anon_sym_GT_GT_EQ] = ACTIONS(325), + [anon_sym_AMP_EQ] = ACTIONS(325), + [anon_sym_CARET_EQ] = ACTIONS(325), + [anon_sym_PIPE_EQ] = ACTIONS(325), + [anon_sym_AMP] = ACTIONS(327), + [anon_sym_PIPE_PIPE] = ACTIONS(329), + [anon_sym_AMP_AMP] = ACTIONS(331), + [anon_sym_PIPE] = ACTIONS(333), + [anon_sym_CARET] = ACTIONS(335), + [anon_sym_EQ_EQ] = ACTIONS(337), + [anon_sym_BANG_EQ] = ACTIONS(337), + [anon_sym_LT] = ACTIONS(339), + [anon_sym_GT] = ACTIONS(339), + [anon_sym_LT_EQ] = ACTIONS(341), + [anon_sym_GT_EQ] = ACTIONS(341), + [anon_sym_LT_LT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(343), + [anon_sym_PLUS] = ACTIONS(345), + [anon_sym_DASH] = ACTIONS(345), + [anon_sym_SLASH] = ACTIONS(319), + [anon_sym_PERCENT] = ACTIONS(319), + [anon_sym_DASH_DASH] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(216), + [anon_sym_DOT] = ACTIONS(218), + [anon_sym_DASH_GT] = ACTIONS(218), + [sym_comment] = ACTIONS(59), }, - [1172] = { - [sym_compound_statement] = STATE(1109), - [sym_labeled_statement] = STATE(1109), - [sym_expression_statement] = STATE(1109), - [sym_if_statement] = STATE(1109), - [sym_switch_statement] = STATE(1109), - [sym_case_statement] = STATE(1109), - [sym_while_statement] = STATE(1109), - [sym_do_statement] = STATE(1109), - [sym_for_statement] = STATE(1109), - [sym_return_statement] = STATE(1109), - [sym_break_statement] = STATE(1109), - [sym_continue_statement] = STATE(1109), - [sym_goto_statement] = STATE(1109), - [sym__expression] = STATE(228), - [sym_comma_expression] = STATE(229), - [sym_conditional_expression] = STATE(228), - [sym_assignment_expression] = STATE(228), - [sym_pointer_expression] = STATE(228), - [sym_logical_expression] = STATE(228), - [sym_bitwise_expression] = STATE(228), - [sym_equality_expression] = STATE(228), - [sym_relational_expression] = STATE(228), - [sym_shift_expression] = STATE(228), - [sym_math_expression] = STATE(228), - [sym_cast_expression] = STATE(228), - [sym_sizeof_expression] = STATE(228), - [sym_subscript_expression] = STATE(228), - [sym_call_expression] = STATE(228), - [sym_field_expression] = STATE(228), - [sym_compound_literal_expression] = STATE(228), - [sym_parenthesized_expression] = STATE(228), - [sym_char_literal] = STATE(228), - [sym_concatenated_string] = STATE(228), - [sym_string_literal] = STATE(230), - [anon_sym_SEMI] = ACTIONS(503), - [anon_sym_LBRACE] = ACTIONS(229), - [anon_sym_LPAREN2] = ACTIONS(507), - [anon_sym_STAR] = ACTIONS(509), - [anon_sym_if] = ACTIONS(2286), - [anon_sym_switch] = ACTIONS(2288), - [anon_sym_case] = ACTIONS(2290), - [anon_sym_default] = ACTIONS(2292), - [anon_sym_while] = ACTIONS(2294), - [anon_sym_do] = ACTIONS(948), - [anon_sym_for] = ACTIONS(2296), - [anon_sym_return] = ACTIONS(525), - [anon_sym_break] = ACTIONS(527), - [anon_sym_continue] = ACTIONS(529), - [anon_sym_goto] = ACTIONS(531), - [anon_sym_AMP] = ACTIONS(509), - [anon_sym_BANG] = ACTIONS(533), - [anon_sym_TILDE] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DASH] = ACTIONS(537), - [anon_sym_DASH_DASH] = ACTIONS(539), - [anon_sym_PLUS_PLUS] = ACTIONS(539), - [anon_sym_sizeof] = ACTIONS(541), - [sym_number_literal] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(547), - [sym_false] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [sym_identifier] = ACTIONS(2298), - [sym_comment] = ACTIONS(37), + [1159] = { + [anon_sym_SEMI] = ACTIONS(3088), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3090), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3090), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3090), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3090), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3090), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3090), + [sym_preproc_directive] = ACTIONS(3090), + [anon_sym_typedef] = ACTIONS(3090), + [anon_sym_extern] = ACTIONS(3090), + [anon_sym_LBRACE] = ACTIONS(3088), + [anon_sym_LPAREN2] = ACTIONS(3088), + [anon_sym_STAR] = ACTIONS(3088), + [anon_sym_static] = ACTIONS(3090), + [anon_sym_auto] = ACTIONS(3090), + [anon_sym_register] = ACTIONS(3090), + [anon_sym_inline] = ACTIONS(3090), + [anon_sym_const] = ACTIONS(3090), + [anon_sym_restrict] = ACTIONS(3090), + [anon_sym_volatile] = ACTIONS(3090), + [anon_sym__Atomic] = ACTIONS(3090), + [anon_sym_unsigned] = ACTIONS(3090), + [anon_sym_long] = ACTIONS(3090), + [anon_sym_short] = ACTIONS(3090), + [sym_primitive_type] = ACTIONS(3090), + [anon_sym_enum] = ACTIONS(3090), + [anon_sym_struct] = ACTIONS(3090), + [anon_sym_union] = ACTIONS(3090), + [anon_sym_if] = ACTIONS(3090), + [anon_sym_switch] = ACTIONS(3090), + [anon_sym_case] = ACTIONS(3090), + [anon_sym_default] = ACTIONS(3090), + [anon_sym_while] = ACTIONS(3090), + [anon_sym_do] = ACTIONS(3090), + [anon_sym_for] = ACTIONS(3090), + [anon_sym_return] = ACTIONS(3090), + [anon_sym_break] = ACTIONS(3090), + [anon_sym_continue] = ACTIONS(3090), + [anon_sym_goto] = ACTIONS(3090), + [anon_sym_AMP] = ACTIONS(3088), + [anon_sym_BANG] = ACTIONS(3088), + [anon_sym_TILDE] = ACTIONS(3088), + [anon_sym_PLUS] = ACTIONS(3090), + [anon_sym_DASH] = ACTIONS(3090), + [anon_sym_DASH_DASH] = ACTIONS(3088), + [anon_sym_PLUS_PLUS] = ACTIONS(3088), + [anon_sym_sizeof] = ACTIONS(3090), + [sym_number_literal] = ACTIONS(3088), + [anon_sym_SQUOTE] = ACTIONS(3088), + [anon_sym_DQUOTE] = ACTIONS(3088), + [sym_true] = ACTIONS(3090), + [sym_false] = ACTIONS(3090), + [sym_null] = ACTIONS(3090), + [sym_identifier] = ACTIONS(3090), + [sym_comment] = ACTIONS(59), }, - [1173] = { - [aux_sym_for_statement_repeat1] = STATE(991), - [anon_sym_COMMA] = ACTIONS(2344), - [anon_sym_RPAREN] = ACTIONS(3269), - [sym_comment] = ACTIONS(37), + [1160] = { + [anon_sym_SEMI] = ACTIONS(3092), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3094), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3094), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3094), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3094), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3094), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3094), + [sym_preproc_directive] = ACTIONS(3094), + [anon_sym_typedef] = ACTIONS(3094), + [anon_sym_extern] = ACTIONS(3094), + [anon_sym_LBRACE] = ACTIONS(3092), + [anon_sym_LPAREN2] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(3092), + [anon_sym_static] = ACTIONS(3094), + [anon_sym_auto] = ACTIONS(3094), + [anon_sym_register] = ACTIONS(3094), + [anon_sym_inline] = ACTIONS(3094), + [anon_sym_const] = ACTIONS(3094), + [anon_sym_restrict] = ACTIONS(3094), + [anon_sym_volatile] = ACTIONS(3094), + [anon_sym__Atomic] = ACTIONS(3094), + [anon_sym_unsigned] = ACTIONS(3094), + [anon_sym_long] = ACTIONS(3094), + [anon_sym_short] = ACTIONS(3094), + [sym_primitive_type] = ACTIONS(3094), + [anon_sym_enum] = ACTIONS(3094), + [anon_sym_struct] = ACTIONS(3094), + [anon_sym_union] = ACTIONS(3094), + [anon_sym_if] = ACTIONS(3094), + [anon_sym_switch] = ACTIONS(3094), + [anon_sym_case] = ACTIONS(3094), + [anon_sym_default] = ACTIONS(3094), + [anon_sym_while] = ACTIONS(3094), + [anon_sym_do] = ACTIONS(3094), + [anon_sym_for] = ACTIONS(3094), + [anon_sym_return] = ACTIONS(3094), + [anon_sym_break] = ACTIONS(3094), + [anon_sym_continue] = ACTIONS(3094), + [anon_sym_goto] = ACTIONS(3094), + [anon_sym_AMP] = ACTIONS(3092), + [anon_sym_BANG] = ACTIONS(3092), + [anon_sym_TILDE] = ACTIONS(3092), + [anon_sym_PLUS] = ACTIONS(3094), + [anon_sym_DASH] = ACTIONS(3094), + [anon_sym_DASH_DASH] = ACTIONS(3092), + [anon_sym_PLUS_PLUS] = ACTIONS(3092), + [anon_sym_sizeof] = ACTIONS(3094), + [sym_number_literal] = ACTIONS(3092), + [anon_sym_SQUOTE] = ACTIONS(3092), + [anon_sym_DQUOTE] = ACTIONS(3092), + [sym_true] = ACTIONS(3094), + [sym_false] = ACTIONS(3094), + [sym_null] = ACTIONS(3094), + [sym_identifier] = ACTIONS(3094), + [sym_comment] = ACTIONS(59), }, - [1174] = { - [sym_argument_list] = STATE(430), - [aux_sym_for_statement_repeat1] = STATE(1198), - [anon_sym_COMMA] = ACTIONS(2344), - [anon_sym_RPAREN] = ACTIONS(3269), - [anon_sym_LPAREN2] = ACTIONS(1012), - [anon_sym_STAR] = ACTIONS(1437), - [anon_sym_LBRACK] = ACTIONS(1016), - [anon_sym_EQ] = ACTIONS(1439), - [anon_sym_QMARK] = ACTIONS(1441), - [anon_sym_STAR_EQ] = ACTIONS(1443), - [anon_sym_SLASH_EQ] = ACTIONS(1443), - [anon_sym_PERCENT_EQ] = ACTIONS(1443), - [anon_sym_PLUS_EQ] = ACTIONS(1443), - [anon_sym_DASH_EQ] = ACTIONS(1443), - [anon_sym_LT_LT_EQ] = ACTIONS(1443), - [anon_sym_GT_GT_EQ] = ACTIONS(1443), - [anon_sym_AMP_EQ] = ACTIONS(1443), - [anon_sym_CARET_EQ] = ACTIONS(1443), - [anon_sym_PIPE_EQ] = ACTIONS(1443), - [anon_sym_AMP] = ACTIONS(1445), - [anon_sym_PIPE_PIPE] = ACTIONS(1447), - [anon_sym_AMP_AMP] = ACTIONS(1449), - [anon_sym_PIPE] = ACTIONS(1451), - [anon_sym_CARET] = ACTIONS(1453), - [anon_sym_EQ_EQ] = ACTIONS(1455), - [anon_sym_BANG_EQ] = ACTIONS(1455), - [anon_sym_LT] = ACTIONS(1457), - [anon_sym_GT] = ACTIONS(1457), - [anon_sym_LT_EQ] = ACTIONS(1459), - [anon_sym_GT_EQ] = ACTIONS(1459), - [anon_sym_LT_LT] = ACTIONS(1461), - [anon_sym_GT_GT] = ACTIONS(1461), - [anon_sym_PLUS] = ACTIONS(1463), - [anon_sym_DASH] = ACTIONS(1463), - [anon_sym_SLASH] = ACTIONS(1437), - [anon_sym_PERCENT] = ACTIONS(1437), - [anon_sym_DASH_DASH] = ACTIONS(1044), - [anon_sym_PLUS_PLUS] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1046), - [anon_sym_DASH_GT] = ACTIONS(1046), - [sym_comment] = ACTIONS(37), + [1161] = { + [anon_sym_SEMI] = ACTIONS(2569), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2571), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2571), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2571), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2571), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2571), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2571), + [sym_preproc_directive] = ACTIONS(2571), + [anon_sym_typedef] = ACTIONS(2571), + [anon_sym_extern] = ACTIONS(2571), + [anon_sym_LBRACE] = ACTIONS(2569), + [anon_sym_LPAREN2] = ACTIONS(2569), + [anon_sym_STAR] = ACTIONS(2569), + [anon_sym_static] = ACTIONS(2571), + [anon_sym_auto] = ACTIONS(2571), + [anon_sym_register] = ACTIONS(2571), + [anon_sym_inline] = ACTIONS(2571), + [anon_sym_const] = ACTIONS(2571), + [anon_sym_restrict] = ACTIONS(2571), + [anon_sym_volatile] = ACTIONS(2571), + [anon_sym__Atomic] = ACTIONS(2571), + [anon_sym_unsigned] = ACTIONS(2571), + [anon_sym_long] = ACTIONS(2571), + [anon_sym_short] = ACTIONS(2571), + [sym_primitive_type] = ACTIONS(2571), + [anon_sym_enum] = ACTIONS(2571), + [anon_sym_struct] = ACTIONS(2571), + [anon_sym_union] = ACTIONS(2571), + [anon_sym_if] = ACTIONS(2571), + [anon_sym_else] = ACTIONS(3324), + [anon_sym_switch] = ACTIONS(2571), + [anon_sym_case] = ACTIONS(2571), + [anon_sym_default] = ACTIONS(2571), + [anon_sym_while] = ACTIONS(2571), + [anon_sym_do] = ACTIONS(2571), + [anon_sym_for] = ACTIONS(2571), + [anon_sym_return] = ACTIONS(2571), + [anon_sym_break] = ACTIONS(2571), + [anon_sym_continue] = ACTIONS(2571), + [anon_sym_goto] = ACTIONS(2571), + [anon_sym_AMP] = ACTIONS(2569), + [anon_sym_BANG] = ACTIONS(2569), + [anon_sym_TILDE] = ACTIONS(2569), + [anon_sym_PLUS] = ACTIONS(2571), + [anon_sym_DASH] = ACTIONS(2571), + [anon_sym_DASH_DASH] = ACTIONS(2569), + [anon_sym_PLUS_PLUS] = ACTIONS(2569), + [anon_sym_sizeof] = ACTIONS(2571), + [sym_number_literal] = ACTIONS(2569), + [anon_sym_SQUOTE] = ACTIONS(2569), + [anon_sym_DQUOTE] = ACTIONS(2569), + [sym_true] = ACTIONS(2571), + [sym_false] = ACTIONS(2571), + [sym_null] = ACTIONS(2571), + [sym_identifier] = ACTIONS(2571), + [sym_comment] = ACTIONS(59), }, - [1175] = { + [1162] = { + [sym_declaration] = STATE(1125), + [sym_type_definition] = STATE(1125), + [sym__declaration_specifiers] = STATE(1070), + [sym_compound_statement] = STATE(1125), + [sym_storage_class_specifier] = STATE(142), + [sym_type_qualifier] = STATE(142), + [sym__type_specifier] = STATE(141), + [sym_sized_type_specifier] = STATE(141), + [sym_enum_specifier] = STATE(141), + [sym_struct_specifier] = STATE(141), + [sym_union_specifier] = STATE(141), + [sym_labeled_statement] = STATE(1125), + [sym_expression_statement] = STATE(1125), + [sym_if_statement] = STATE(1125), + [sym_switch_statement] = STATE(1125), + [sym_case_statement] = STATE(1125), + [sym_while_statement] = STATE(1125), + [sym_do_statement] = STATE(1125), + [sym_for_statement] = STATE(1125), + [sym_return_statement] = STATE(1125), + [sym_break_statement] = STATE(1125), + [sym_continue_statement] = STATE(1125), + [sym_goto_statement] = STATE(1125), + [sym__expression] = STATE(902), + [sym_comma_expression] = STATE(903), + [sym_conditional_expression] = STATE(902), + [sym_assignment_expression] = STATE(902), + [sym_pointer_expression] = STATE(902), + [sym_logical_expression] = STATE(902), + [sym_bitwise_expression] = STATE(902), + [sym_equality_expression] = STATE(902), + [sym_relational_expression] = STATE(902), + [sym_shift_expression] = STATE(902), + [sym_math_expression] = STATE(902), + [sym_cast_expression] = STATE(902), + [sym_sizeof_expression] = STATE(902), + [sym_subscript_expression] = STATE(902), + [sym_call_expression] = STATE(902), + [sym_field_expression] = STATE(902), + [sym_compound_literal_expression] = STATE(902), + [sym_parenthesized_expression] = STATE(902), + [sym_char_literal] = STATE(902), + [sym_concatenated_string] = STATE(902), + [sym_string_literal] = STATE(374), + [sym_macro_type_specifier] = STATE(141), + [aux_sym__declaration_specifiers_repeat1] = STATE(142), + [aux_sym_sized_type_specifier_repeat1] = STATE(143), + [anon_sym_SEMI] = ACTIONS(2481), + [anon_sym_typedef] = ACTIONS(694), + [anon_sym_extern] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(1699), + [anon_sym_LPAREN2] = ACTIONS(936), + [anon_sym_STAR] = ACTIONS(938), + [anon_sym_static] = ACTIONS(25), + [anon_sym_auto] = ACTIONS(25), + [anon_sym_register] = ACTIONS(25), + [anon_sym_inline] = ACTIONS(25), + [anon_sym_const] = ACTIONS(27), + [anon_sym_restrict] = ACTIONS(27), + [anon_sym_volatile] = ACTIONS(27), + [anon_sym__Atomic] = ACTIONS(27), + [anon_sym_unsigned] = ACTIONS(294), + [anon_sym_long] = ACTIONS(294), + [anon_sym_short] = ACTIONS(294), + [sym_primitive_type] = ACTIONS(296), + [anon_sym_enum] = ACTIONS(33), + [anon_sym_struct] = ACTIONS(35), + [anon_sym_union] = ACTIONS(37), + [anon_sym_if] = ACTIONS(2964), + [anon_sym_switch] = ACTIONS(2966), + [anon_sym_case] = ACTIONS(2968), + [anon_sym_default] = ACTIONS(2970), + [anon_sym_while] = ACTIONS(2972), + [anon_sym_do] = ACTIONS(2499), + [anon_sym_for] = ACTIONS(2974), + [anon_sym_return] = ACTIONS(2503), + [anon_sym_break] = ACTIONS(2505), + [anon_sym_continue] = ACTIONS(2507), + [anon_sym_goto] = ACTIONS(2509), + [anon_sym_AMP] = ACTIONS(938), + [anon_sym_BANG] = ACTIONS(962), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_DASH_DASH] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(968), + [anon_sym_sizeof] = ACTIONS(970), + [sym_number_literal] = ACTIONS(2511), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(2513), + [sym_false] = ACTIONS(2513), + [sym_null] = ACTIONS(2513), + [sym_identifier] = ACTIONS(3248), + [sym_comment] = ACTIONS(59), + }, + [1163] = { + [anon_sym_SEMI] = ACTIONS(166), + [anon_sym_COMMA] = ACTIONS(166), + [anon_sym_extern] = ACTIONS(157), + [anon_sym_LPAREN2] = ACTIONS(159), + [anon_sym_STAR] = ACTIONS(163), + [anon_sym_LBRACK] = ACTIONS(166), + [anon_sym_EQ] = ACTIONS(168), + [anon_sym_static] = ACTIONS(157), + [anon_sym_auto] = ACTIONS(157), + [anon_sym_register] = ACTIONS(157), + [anon_sym_inline] = ACTIONS(157), + [anon_sym_const] = ACTIONS(157), + [anon_sym_restrict] = ACTIONS(157), + [anon_sym_volatile] = ACTIONS(157), + [anon_sym__Atomic] = ACTIONS(157), + [anon_sym_COLON] = ACTIONS(3160), + [anon_sym_QMARK] = ACTIONS(166), + [anon_sym_STAR_EQ] = ACTIONS(166), + [anon_sym_SLASH_EQ] = ACTIONS(166), + [anon_sym_PERCENT_EQ] = ACTIONS(166), + [anon_sym_PLUS_EQ] = ACTIONS(166), + [anon_sym_DASH_EQ] = ACTIONS(166), + [anon_sym_LT_LT_EQ] = ACTIONS(166), + [anon_sym_GT_GT_EQ] = ACTIONS(166), + [anon_sym_AMP_EQ] = ACTIONS(166), + [anon_sym_CARET_EQ] = ACTIONS(166), + [anon_sym_PIPE_EQ] = ACTIONS(166), + [anon_sym_AMP] = ACTIONS(168), + [anon_sym_PIPE_PIPE] = ACTIONS(166), + [anon_sym_AMP_AMP] = ACTIONS(166), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_CARET] = ACTIONS(168), + [anon_sym_EQ_EQ] = ACTIONS(166), + [anon_sym_BANG_EQ] = ACTIONS(166), + [anon_sym_LT] = ACTIONS(168), + [anon_sym_GT] = ACTIONS(168), + [anon_sym_LT_EQ] = ACTIONS(166), + [anon_sym_GT_EQ] = ACTIONS(166), + [anon_sym_LT_LT] = ACTIONS(168), + [anon_sym_GT_GT] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(168), + [anon_sym_DASH] = ACTIONS(168), + [anon_sym_SLASH] = ACTIONS(168), + [anon_sym_PERCENT] = ACTIONS(168), + [anon_sym_DASH_DASH] = ACTIONS(166), + [anon_sym_PLUS_PLUS] = ACTIONS(166), + [anon_sym_DOT] = ACTIONS(166), + [anon_sym_DASH_GT] = ACTIONS(166), + [sym_identifier] = ACTIONS(157), + [sym_comment] = ACTIONS(59), + }, + [1164] = { [sym__expression] = STATE(1199), [sym_conditional_expression] = STATE(1199), [sym_assignment_expression] = STATE(1199), @@ -48406,1794 +49318,1891 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_parenthesized_expression] = STATE(1199), [sym_char_literal] = STATE(1199), [sym_concatenated_string] = STATE(1199), + [sym_string_literal] = STATE(534), + [anon_sym_SEMI] = ACTIONS(3326), + [anon_sym_LPAREN2] = ACTIONS(1349), + [anon_sym_STAR] = ACTIONS(1351), + [anon_sym_AMP] = ACTIONS(1351), + [anon_sym_BANG] = ACTIONS(1353), + [anon_sym_TILDE] = ACTIONS(1355), + [anon_sym_PLUS] = ACTIONS(1357), + [anon_sym_DASH] = ACTIONS(1357), + [anon_sym_DASH_DASH] = ACTIONS(1359), + [anon_sym_PLUS_PLUS] = ACTIONS(1359), + [anon_sym_sizeof] = ACTIONS(1361), + [sym_number_literal] = ACTIONS(3328), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(3330), + [sym_false] = ACTIONS(3330), + [sym_null] = ACTIONS(3330), + [sym_identifier] = ACTIONS(3330), + [sym_comment] = ACTIONS(59), + }, + [1165] = { + [sym_argument_list] = STATE(98), + [anon_sym_SEMI] = ACTIONS(3332), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_LBRACK] = ACTIONS(188), + [anon_sym_EQ] = ACTIONS(1896), + [anon_sym_QMARK] = ACTIONS(1898), + [anon_sym_STAR_EQ] = ACTIONS(1900), + [anon_sym_SLASH_EQ] = ACTIONS(1900), + [anon_sym_PERCENT_EQ] = ACTIONS(1900), + [anon_sym_PLUS_EQ] = ACTIONS(1900), + [anon_sym_DASH_EQ] = ACTIONS(1900), + [anon_sym_LT_LT_EQ] = ACTIONS(1900), + [anon_sym_GT_GT_EQ] = ACTIONS(1900), + [anon_sym_AMP_EQ] = ACTIONS(1900), + [anon_sym_CARET_EQ] = ACTIONS(1900), + [anon_sym_PIPE_EQ] = ACTIONS(1900), + [anon_sym_AMP] = ACTIONS(1902), + [anon_sym_PIPE_PIPE] = ACTIONS(1904), + [anon_sym_AMP_AMP] = ACTIONS(1906), + [anon_sym_PIPE] = ACTIONS(1908), + [anon_sym_CARET] = ACTIONS(1910), + [anon_sym_EQ_EQ] = ACTIONS(1912), + [anon_sym_BANG_EQ] = ACTIONS(1912), + [anon_sym_LT] = ACTIONS(1914), + [anon_sym_GT] = ACTIONS(1914), + [anon_sym_LT_EQ] = ACTIONS(1916), + [anon_sym_GT_EQ] = ACTIONS(1916), + [anon_sym_LT_LT] = ACTIONS(1918), + [anon_sym_GT_GT] = ACTIONS(1918), + [anon_sym_PLUS] = ACTIONS(1920), + [anon_sym_DASH] = ACTIONS(1920), + [anon_sym_SLASH] = ACTIONS(1894), + [anon_sym_PERCENT] = ACTIONS(1894), + [anon_sym_DASH_DASH] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(216), + [anon_sym_DOT] = ACTIONS(218), + [anon_sym_DASH_GT] = ACTIONS(218), + [sym_comment] = ACTIONS(59), + }, + [1166] = { + [anon_sym_SEMI] = ACTIONS(3106), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3108), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3108), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3108), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3108), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3108), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3108), + [sym_preproc_directive] = ACTIONS(3108), + [anon_sym_typedef] = ACTIONS(3108), + [anon_sym_extern] = ACTIONS(3108), + [anon_sym_LBRACE] = ACTIONS(3106), + [anon_sym_LPAREN2] = ACTIONS(3106), + [anon_sym_STAR] = ACTIONS(3106), + [anon_sym_static] = ACTIONS(3108), + [anon_sym_auto] = ACTIONS(3108), + [anon_sym_register] = ACTIONS(3108), + [anon_sym_inline] = ACTIONS(3108), + [anon_sym_const] = ACTIONS(3108), + [anon_sym_restrict] = ACTIONS(3108), + [anon_sym_volatile] = ACTIONS(3108), + [anon_sym__Atomic] = ACTIONS(3108), + [anon_sym_unsigned] = ACTIONS(3108), + [anon_sym_long] = ACTIONS(3108), + [anon_sym_short] = ACTIONS(3108), + [sym_primitive_type] = ACTIONS(3108), + [anon_sym_enum] = ACTIONS(3108), + [anon_sym_struct] = ACTIONS(3108), + [anon_sym_union] = ACTIONS(3108), + [anon_sym_if] = ACTIONS(3108), + [anon_sym_else] = ACTIONS(3108), + [anon_sym_switch] = ACTIONS(3108), + [anon_sym_case] = ACTIONS(3108), + [anon_sym_default] = ACTIONS(3108), + [anon_sym_while] = ACTIONS(3108), + [anon_sym_do] = ACTIONS(3108), + [anon_sym_for] = ACTIONS(3108), + [anon_sym_return] = ACTIONS(3108), + [anon_sym_break] = ACTIONS(3108), + [anon_sym_continue] = ACTIONS(3108), + [anon_sym_goto] = ACTIONS(3108), + [anon_sym_AMP] = ACTIONS(3106), + [anon_sym_BANG] = ACTIONS(3106), + [anon_sym_TILDE] = ACTIONS(3106), + [anon_sym_PLUS] = ACTIONS(3108), + [anon_sym_DASH] = ACTIONS(3108), + [anon_sym_DASH_DASH] = ACTIONS(3106), + [anon_sym_PLUS_PLUS] = ACTIONS(3106), + [anon_sym_sizeof] = ACTIONS(3108), + [sym_number_literal] = ACTIONS(3106), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_DQUOTE] = ACTIONS(3106), + [sym_true] = ACTIONS(3108), + [sym_false] = ACTIONS(3108), + [sym_null] = ACTIONS(3108), + [sym_identifier] = ACTIONS(3108), + [sym_comment] = ACTIONS(59), + }, + [1167] = { + [sym_argument_list] = STATE(98), + [anon_sym_COMMA] = ACTIONS(315), + [anon_sym_RPAREN] = ACTIONS(3334), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(319), + [anon_sym_LBRACK] = ACTIONS(188), + [anon_sym_EQ] = ACTIONS(321), + [anon_sym_QMARK] = ACTIONS(323), + [anon_sym_STAR_EQ] = ACTIONS(325), + [anon_sym_SLASH_EQ] = ACTIONS(325), + [anon_sym_PERCENT_EQ] = ACTIONS(325), + [anon_sym_PLUS_EQ] = ACTIONS(325), + [anon_sym_DASH_EQ] = ACTIONS(325), + [anon_sym_LT_LT_EQ] = ACTIONS(325), + [anon_sym_GT_GT_EQ] = ACTIONS(325), + [anon_sym_AMP_EQ] = ACTIONS(325), + [anon_sym_CARET_EQ] = ACTIONS(325), + [anon_sym_PIPE_EQ] = ACTIONS(325), + [anon_sym_AMP] = ACTIONS(327), + [anon_sym_PIPE_PIPE] = ACTIONS(329), + [anon_sym_AMP_AMP] = ACTIONS(331), + [anon_sym_PIPE] = ACTIONS(333), + [anon_sym_CARET] = ACTIONS(335), + [anon_sym_EQ_EQ] = ACTIONS(337), + [anon_sym_BANG_EQ] = ACTIONS(337), + [anon_sym_LT] = ACTIONS(339), + [anon_sym_GT] = ACTIONS(339), + [anon_sym_LT_EQ] = ACTIONS(341), + [anon_sym_GT_EQ] = ACTIONS(341), + [anon_sym_LT_LT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(343), + [anon_sym_PLUS] = ACTIONS(345), + [anon_sym_DASH] = ACTIONS(345), + [anon_sym_SLASH] = ACTIONS(319), + [anon_sym_PERCENT] = ACTIONS(319), + [anon_sym_DASH_DASH] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(216), + [anon_sym_DOT] = ACTIONS(218), + [anon_sym_DASH_GT] = ACTIONS(218), + [sym_comment] = ACTIONS(59), + }, + [1168] = { + [anon_sym_RPAREN] = ACTIONS(3334), + [sym_comment] = ACTIONS(59), + }, + [1169] = { + [sym_compound_statement] = STATE(1202), + [sym_labeled_statement] = STATE(1202), + [sym_expression_statement] = STATE(1202), + [sym_if_statement] = STATE(1202), + [sym_switch_statement] = STATE(1202), + [sym_case_statement] = STATE(1202), + [sym_while_statement] = STATE(1202), + [sym_do_statement] = STATE(1202), + [sym_for_statement] = STATE(1202), + [sym_return_statement] = STATE(1202), + [sym_break_statement] = STATE(1202), + [sym_continue_statement] = STATE(1202), + [sym_goto_statement] = STATE(1202), + [sym__expression] = STATE(902), + [sym_comma_expression] = STATE(903), + [sym_conditional_expression] = STATE(902), + [sym_assignment_expression] = STATE(902), + [sym_pointer_expression] = STATE(902), + [sym_logical_expression] = STATE(902), + [sym_bitwise_expression] = STATE(902), + [sym_equality_expression] = STATE(902), + [sym_relational_expression] = STATE(902), + [sym_shift_expression] = STATE(902), + [sym_math_expression] = STATE(902), + [sym_cast_expression] = STATE(902), + [sym_sizeof_expression] = STATE(902), + [sym_subscript_expression] = STATE(902), + [sym_call_expression] = STATE(902), + [sym_field_expression] = STATE(902), + [sym_compound_literal_expression] = STATE(902), + [sym_parenthesized_expression] = STATE(902), + [sym_char_literal] = STATE(902), + [sym_concatenated_string] = STATE(902), + [sym_string_literal] = STATE(374), + [anon_sym_SEMI] = ACTIONS(2481), + [anon_sym_LBRACE] = ACTIONS(1699), + [anon_sym_LPAREN2] = ACTIONS(936), + [anon_sym_STAR] = ACTIONS(938), + [anon_sym_if] = ACTIONS(2489), + [anon_sym_switch] = ACTIONS(2491), + [anon_sym_case] = ACTIONS(2493), + [anon_sym_default] = ACTIONS(2495), + [anon_sym_while] = ACTIONS(2497), + [anon_sym_do] = ACTIONS(2499), + [anon_sym_for] = ACTIONS(2501), + [anon_sym_return] = ACTIONS(2503), + [anon_sym_break] = ACTIONS(2505), + [anon_sym_continue] = ACTIONS(2507), + [anon_sym_goto] = ACTIONS(2509), + [anon_sym_AMP] = ACTIONS(938), + [anon_sym_BANG] = ACTIONS(962), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_DASH_DASH] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(968), + [anon_sym_sizeof] = ACTIONS(970), + [sym_number_literal] = ACTIONS(2511), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(2513), + [sym_false] = ACTIONS(2513), + [sym_null] = ACTIONS(2513), + [sym_identifier] = ACTIONS(2978), + [sym_comment] = ACTIONS(59), + }, + [1170] = { + [sym_argument_list] = STATE(98), + [aux_sym_for_statement_repeat1] = STATE(1204), + [anon_sym_COMMA] = ACTIONS(1002), + [anon_sym_RPAREN] = ACTIONS(3336), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(319), + [anon_sym_LBRACK] = ACTIONS(188), + [anon_sym_EQ] = ACTIONS(321), + [anon_sym_QMARK] = ACTIONS(323), + [anon_sym_STAR_EQ] = ACTIONS(325), + [anon_sym_SLASH_EQ] = ACTIONS(325), + [anon_sym_PERCENT_EQ] = ACTIONS(325), + [anon_sym_PLUS_EQ] = ACTIONS(325), + [anon_sym_DASH_EQ] = ACTIONS(325), + [anon_sym_LT_LT_EQ] = ACTIONS(325), + [anon_sym_GT_GT_EQ] = ACTIONS(325), + [anon_sym_AMP_EQ] = ACTIONS(325), + [anon_sym_CARET_EQ] = ACTIONS(325), + [anon_sym_PIPE_EQ] = ACTIONS(325), + [anon_sym_AMP] = ACTIONS(327), + [anon_sym_PIPE_PIPE] = ACTIONS(329), + [anon_sym_AMP_AMP] = ACTIONS(331), + [anon_sym_PIPE] = ACTIONS(333), + [anon_sym_CARET] = ACTIONS(335), + [anon_sym_EQ_EQ] = ACTIONS(337), + [anon_sym_BANG_EQ] = ACTIONS(337), + [anon_sym_LT] = ACTIONS(339), + [anon_sym_GT] = ACTIONS(339), + [anon_sym_LT_EQ] = ACTIONS(341), + [anon_sym_GT_EQ] = ACTIONS(341), + [anon_sym_LT_LT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(343), + [anon_sym_PLUS] = ACTIONS(345), + [anon_sym_DASH] = ACTIONS(345), + [anon_sym_SLASH] = ACTIONS(319), + [anon_sym_PERCENT] = ACTIONS(319), + [anon_sym_DASH_DASH] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(216), + [anon_sym_DOT] = ACTIONS(218), + [anon_sym_DASH_GT] = ACTIONS(218), + [sym_comment] = ACTIONS(59), + }, + [1171] = { + [sym__expression] = STATE(1205), + [sym_conditional_expression] = STATE(1205), + [sym_assignment_expression] = STATE(1205), + [sym_pointer_expression] = STATE(1205), + [sym_logical_expression] = STATE(1205), + [sym_bitwise_expression] = STATE(1205), + [sym_equality_expression] = STATE(1205), + [sym_relational_expression] = STATE(1205), + [sym_shift_expression] = STATE(1205), + [sym_math_expression] = STATE(1205), + [sym_cast_expression] = STATE(1205), + [sym_sizeof_expression] = STATE(1205), + [sym_subscript_expression] = STATE(1205), + [sym_call_expression] = STATE(1205), + [sym_field_expression] = STATE(1205), + [sym_compound_literal_expression] = STATE(1205), + [sym_parenthesized_expression] = STATE(1205), + [sym_char_literal] = STATE(1205), + [sym_concatenated_string] = STATE(1205), + [sym_string_literal] = STATE(55), + [anon_sym_RPAREN] = ACTIONS(3336), + [anon_sym_LPAREN2] = ACTIONS(85), + [anon_sym_STAR] = ACTIONS(87), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_PLUS] = ACTIONS(97), + [anon_sym_DASH] = ACTIONS(97), + [anon_sym_DASH_DASH] = ACTIONS(99), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(101), + [sym_number_literal] = ACTIONS(3338), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(3340), + [sym_false] = ACTIONS(3340), + [sym_null] = ACTIONS(3340), + [sym_identifier] = ACTIONS(3340), + [sym_comment] = ACTIONS(59), + }, + [1172] = { + [sym_argument_list] = STATE(98), + [anon_sym_SEMI] = ACTIONS(3342), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_LBRACK] = ACTIONS(188), + [anon_sym_EQ] = ACTIONS(1896), + [anon_sym_QMARK] = ACTIONS(1898), + [anon_sym_STAR_EQ] = ACTIONS(1900), + [anon_sym_SLASH_EQ] = ACTIONS(1900), + [anon_sym_PERCENT_EQ] = ACTIONS(1900), + [anon_sym_PLUS_EQ] = ACTIONS(1900), + [anon_sym_DASH_EQ] = ACTIONS(1900), + [anon_sym_LT_LT_EQ] = ACTIONS(1900), + [anon_sym_GT_GT_EQ] = ACTIONS(1900), + [anon_sym_AMP_EQ] = ACTIONS(1900), + [anon_sym_CARET_EQ] = ACTIONS(1900), + [anon_sym_PIPE_EQ] = ACTIONS(1900), + [anon_sym_AMP] = ACTIONS(1902), + [anon_sym_PIPE_PIPE] = ACTIONS(1904), + [anon_sym_AMP_AMP] = ACTIONS(1906), + [anon_sym_PIPE] = ACTIONS(1908), + [anon_sym_CARET] = ACTIONS(1910), + [anon_sym_EQ_EQ] = ACTIONS(1912), + [anon_sym_BANG_EQ] = ACTIONS(1912), + [anon_sym_LT] = ACTIONS(1914), + [anon_sym_GT] = ACTIONS(1914), + [anon_sym_LT_EQ] = ACTIONS(1916), + [anon_sym_GT_EQ] = ACTIONS(1916), + [anon_sym_LT_LT] = ACTIONS(1918), + [anon_sym_GT_GT] = ACTIONS(1918), + [anon_sym_PLUS] = ACTIONS(1920), + [anon_sym_DASH] = ACTIONS(1920), + [anon_sym_SLASH] = ACTIONS(1894), + [anon_sym_PERCENT] = ACTIONS(1894), + [anon_sym_DASH_DASH] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(216), + [anon_sym_DOT] = ACTIONS(218), + [anon_sym_DASH_GT] = ACTIONS(218), + [sym_comment] = ACTIONS(59), + }, + [1173] = { + [sym_compound_statement] = STATE(1136), + [sym_labeled_statement] = STATE(1136), + [sym_expression_statement] = STATE(1136), + [sym_if_statement] = STATE(1136), + [sym_switch_statement] = STATE(1136), + [sym_case_statement] = STATE(1136), + [sym_while_statement] = STATE(1136), + [sym_do_statement] = STATE(1136), + [sym_for_statement] = STATE(1136), + [sym_return_statement] = STATE(1136), + [sym_break_statement] = STATE(1136), + [sym_continue_statement] = STATE(1136), + [sym_goto_statement] = STATE(1136), + [sym__expression] = STATE(756), + [sym_comma_expression] = STATE(757), + [sym_conditional_expression] = STATE(756), + [sym_assignment_expression] = STATE(756), + [sym_pointer_expression] = STATE(756), + [sym_logical_expression] = STATE(756), + [sym_bitwise_expression] = STATE(756), + [sym_equality_expression] = STATE(756), + [sym_relational_expression] = STATE(756), + [sym_shift_expression] = STATE(756), + [sym_math_expression] = STATE(756), + [sym_cast_expression] = STATE(756), + [sym_sizeof_expression] = STATE(756), + [sym_subscript_expression] = STATE(756), + [sym_call_expression] = STATE(756), + [sym_field_expression] = STATE(756), + [sym_compound_literal_expression] = STATE(756), + [sym_parenthesized_expression] = STATE(756), + [sym_char_literal] = STATE(756), + [sym_concatenated_string] = STATE(756), [sym_string_literal] = STATE(374), - [anon_sym_RPAREN] = ACTIONS(3269), - [anon_sym_LPAREN2] = ACTIONS(892), - [anon_sym_STAR] = ACTIONS(894), - [anon_sym_AMP] = ACTIONS(894), - [anon_sym_BANG] = ACTIONS(896), - [anon_sym_TILDE] = ACTIONS(898), - [anon_sym_PLUS] = ACTIONS(900), - [anon_sym_DASH] = ACTIONS(900), - [anon_sym_DASH_DASH] = ACTIONS(902), - [anon_sym_PLUS_PLUS] = ACTIONS(902), - [anon_sym_sizeof] = ACTIONS(904), - [sym_number_literal] = ACTIONS(3271), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(3273), - [sym_false] = ACTIONS(3273), - [sym_null] = ACTIONS(3273), - [sym_identifier] = ACTIONS(3273), - [sym_comment] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(1940), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_LPAREN2] = ACTIONS(936), + [anon_sym_STAR] = ACTIONS(938), + [anon_sym_if] = ACTIONS(2752), + [anon_sym_switch] = ACTIONS(2754), + [anon_sym_case] = ACTIONS(2756), + [anon_sym_default] = ACTIONS(2758), + [anon_sym_while] = ACTIONS(2760), + [anon_sym_do] = ACTIONS(1962), + [anon_sym_for] = ACTIONS(2762), + [anon_sym_return] = ACTIONS(1966), + [anon_sym_break] = ACTIONS(1968), + [anon_sym_continue] = ACTIONS(1970), + [anon_sym_goto] = ACTIONS(1972), + [anon_sym_AMP] = ACTIONS(938), + [anon_sym_BANG] = ACTIONS(962), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_DASH_DASH] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(968), + [anon_sym_sizeof] = ACTIONS(970), + [sym_number_literal] = ACTIONS(1974), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(1976), + [sym_false] = ACTIONS(1976), + [sym_null] = ACTIONS(1976), + [sym_identifier] = ACTIONS(2764), + [sym_comment] = ACTIONS(59), + }, + [1174] = { + [sym__expression] = STATE(1208), + [sym_conditional_expression] = STATE(1208), + [sym_assignment_expression] = STATE(1208), + [sym_pointer_expression] = STATE(1208), + [sym_logical_expression] = STATE(1208), + [sym_bitwise_expression] = STATE(1208), + [sym_equality_expression] = STATE(1208), + [sym_relational_expression] = STATE(1208), + [sym_shift_expression] = STATE(1208), + [sym_math_expression] = STATE(1208), + [sym_cast_expression] = STATE(1208), + [sym_sizeof_expression] = STATE(1208), + [sym_subscript_expression] = STATE(1208), + [sym_call_expression] = STATE(1208), + [sym_field_expression] = STATE(1208), + [sym_compound_literal_expression] = STATE(1208), + [sym_parenthesized_expression] = STATE(1208), + [sym_char_literal] = STATE(1208), + [sym_concatenated_string] = STATE(1208), + [sym_string_literal] = STATE(55), + [anon_sym_RPAREN] = ACTIONS(3344), + [anon_sym_LPAREN2] = ACTIONS(85), + [anon_sym_STAR] = ACTIONS(87), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_PLUS] = ACTIONS(97), + [anon_sym_DASH] = ACTIONS(97), + [anon_sym_DASH_DASH] = ACTIONS(99), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(101), + [sym_number_literal] = ACTIONS(3346), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(3348), + [sym_false] = ACTIONS(3348), + [sym_null] = ACTIONS(3348), + [sym_identifier] = ACTIONS(3348), + [sym_comment] = ACTIONS(59), + }, + [1175] = { + [sym_argument_list] = STATE(98), + [anon_sym_SEMI] = ACTIONS(3350), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_LBRACK] = ACTIONS(188), + [anon_sym_EQ] = ACTIONS(1896), + [anon_sym_QMARK] = ACTIONS(1898), + [anon_sym_STAR_EQ] = ACTIONS(1900), + [anon_sym_SLASH_EQ] = ACTIONS(1900), + [anon_sym_PERCENT_EQ] = ACTIONS(1900), + [anon_sym_PLUS_EQ] = ACTIONS(1900), + [anon_sym_DASH_EQ] = ACTIONS(1900), + [anon_sym_LT_LT_EQ] = ACTIONS(1900), + [anon_sym_GT_GT_EQ] = ACTIONS(1900), + [anon_sym_AMP_EQ] = ACTIONS(1900), + [anon_sym_CARET_EQ] = ACTIONS(1900), + [anon_sym_PIPE_EQ] = ACTIONS(1900), + [anon_sym_AMP] = ACTIONS(1902), + [anon_sym_PIPE_PIPE] = ACTIONS(1904), + [anon_sym_AMP_AMP] = ACTIONS(1906), + [anon_sym_PIPE] = ACTIONS(1908), + [anon_sym_CARET] = ACTIONS(1910), + [anon_sym_EQ_EQ] = ACTIONS(1912), + [anon_sym_BANG_EQ] = ACTIONS(1912), + [anon_sym_LT] = ACTIONS(1914), + [anon_sym_GT] = ACTIONS(1914), + [anon_sym_LT_EQ] = ACTIONS(1916), + [anon_sym_GT_EQ] = ACTIONS(1916), + [anon_sym_LT_LT] = ACTIONS(1918), + [anon_sym_GT_GT] = ACTIONS(1918), + [anon_sym_PLUS] = ACTIONS(1920), + [anon_sym_DASH] = ACTIONS(1920), + [anon_sym_SLASH] = ACTIONS(1894), + [anon_sym_PERCENT] = ACTIONS(1894), + [anon_sym_DASH_DASH] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(216), + [anon_sym_DOT] = ACTIONS(218), + [anon_sym_DASH_GT] = ACTIONS(218), + [sym_comment] = ACTIONS(59), }, [1176] = { - [sym_compound_statement] = STATE(1178), - [sym_labeled_statement] = STATE(1178), - [sym_expression_statement] = STATE(1178), - [sym_if_statement] = STATE(1178), - [sym_switch_statement] = STATE(1178), - [sym_case_statement] = STATE(1178), - [sym_while_statement] = STATE(1178), - [sym_do_statement] = STATE(1178), - [sym_for_statement] = STATE(1178), - [sym_return_statement] = STATE(1178), - [sym_break_statement] = STATE(1178), - [sym_continue_statement] = STATE(1178), - [sym_goto_statement] = STATE(1178), - [sym__expression] = STATE(228), - [sym_comma_expression] = STATE(229), - [sym_conditional_expression] = STATE(228), - [sym_assignment_expression] = STATE(228), - [sym_pointer_expression] = STATE(228), - [sym_logical_expression] = STATE(228), - [sym_bitwise_expression] = STATE(228), - [sym_equality_expression] = STATE(228), - [sym_relational_expression] = STATE(228), - [sym_shift_expression] = STATE(228), - [sym_math_expression] = STATE(228), - [sym_cast_expression] = STATE(228), - [sym_sizeof_expression] = STATE(228), - [sym_subscript_expression] = STATE(228), - [sym_call_expression] = STATE(228), - [sym_field_expression] = STATE(228), - [sym_compound_literal_expression] = STATE(228), - [sym_parenthesized_expression] = STATE(228), - [sym_char_literal] = STATE(228), - [sym_concatenated_string] = STATE(228), - [sym_string_literal] = STATE(230), - [anon_sym_SEMI] = ACTIONS(503), - [anon_sym_LBRACE] = ACTIONS(229), - [anon_sym_LPAREN2] = ACTIONS(507), - [anon_sym_STAR] = ACTIONS(509), - [anon_sym_if] = ACTIONS(938), - [anon_sym_switch] = ACTIONS(940), - [anon_sym_case] = ACTIONS(942), - [anon_sym_default] = ACTIONS(944), - [anon_sym_while] = ACTIONS(946), - [anon_sym_do] = ACTIONS(948), - [anon_sym_for] = ACTIONS(950), - [anon_sym_return] = ACTIONS(525), - [anon_sym_break] = ACTIONS(527), - [anon_sym_continue] = ACTIONS(529), - [anon_sym_goto] = ACTIONS(531), - [anon_sym_AMP] = ACTIONS(509), - [anon_sym_BANG] = ACTIONS(533), - [anon_sym_TILDE] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DASH] = ACTIONS(537), - [anon_sym_DASH_DASH] = ACTIONS(539), - [anon_sym_PLUS_PLUS] = ACTIONS(539), - [anon_sym_sizeof] = ACTIONS(541), - [sym_number_literal] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(547), - [sym_false] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [sym_identifier] = ACTIONS(952), - [sym_comment] = ACTIONS(37), + [sym__expression] = STATE(1210), + [sym_conditional_expression] = STATE(1210), + [sym_assignment_expression] = STATE(1210), + [sym_pointer_expression] = STATE(1210), + [sym_logical_expression] = STATE(1210), + [sym_bitwise_expression] = STATE(1210), + [sym_equality_expression] = STATE(1210), + [sym_relational_expression] = STATE(1210), + [sym_shift_expression] = STATE(1210), + [sym_math_expression] = STATE(1210), + [sym_cast_expression] = STATE(1210), + [sym_sizeof_expression] = STATE(1210), + [sym_subscript_expression] = STATE(1210), + [sym_call_expression] = STATE(1210), + [sym_field_expression] = STATE(1210), + [sym_compound_literal_expression] = STATE(1210), + [sym_parenthesized_expression] = STATE(1210), + [sym_char_literal] = STATE(1210), + [sym_concatenated_string] = STATE(1210), + [sym_string_literal] = STATE(534), + [anon_sym_SEMI] = ACTIONS(3350), + [anon_sym_LPAREN2] = ACTIONS(1349), + [anon_sym_STAR] = ACTIONS(1351), + [anon_sym_AMP] = ACTIONS(1351), + [anon_sym_BANG] = ACTIONS(1353), + [anon_sym_TILDE] = ACTIONS(1355), + [anon_sym_PLUS] = ACTIONS(1357), + [anon_sym_DASH] = ACTIONS(1357), + [anon_sym_DASH_DASH] = ACTIONS(1359), + [anon_sym_PLUS_PLUS] = ACTIONS(1359), + [anon_sym_sizeof] = ACTIONS(1361), + [sym_number_literal] = ACTIONS(3352), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(3354), + [sym_false] = ACTIONS(3354), + [sym_null] = ACTIONS(3354), + [sym_identifier] = ACTIONS(3354), + [sym_comment] = ACTIONS(59), }, [1177] = { - [aux_sym_for_statement_repeat1] = STATE(991), - [anon_sym_COMMA] = ACTIONS(2344), - [anon_sym_RPAREN] = ACTIONS(3275), - [sym_comment] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(792), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(794), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(794), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(794), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(794), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(794), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(794), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(794), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(794), + [sym_preproc_directive] = ACTIONS(794), + [anon_sym_typedef] = ACTIONS(794), + [anon_sym_extern] = ACTIONS(794), + [anon_sym_LBRACE] = ACTIONS(792), + [anon_sym_LPAREN2] = ACTIONS(792), + [anon_sym_STAR] = ACTIONS(792), + [anon_sym_static] = ACTIONS(794), + [anon_sym_auto] = ACTIONS(794), + [anon_sym_register] = ACTIONS(794), + [anon_sym_inline] = ACTIONS(794), + [anon_sym_const] = ACTIONS(794), + [anon_sym_restrict] = ACTIONS(794), + [anon_sym_volatile] = ACTIONS(794), + [anon_sym__Atomic] = ACTIONS(794), + [anon_sym_unsigned] = ACTIONS(794), + [anon_sym_long] = ACTIONS(794), + [anon_sym_short] = ACTIONS(794), + [sym_primitive_type] = ACTIONS(794), + [anon_sym_enum] = ACTIONS(794), + [anon_sym_struct] = ACTIONS(794), + [anon_sym_union] = ACTIONS(794), + [anon_sym_if] = ACTIONS(794), + [anon_sym_else] = ACTIONS(794), + [anon_sym_switch] = ACTIONS(794), + [anon_sym_case] = ACTIONS(794), + [anon_sym_default] = ACTIONS(794), + [anon_sym_while] = ACTIONS(794), + [anon_sym_do] = ACTIONS(794), + [anon_sym_for] = ACTIONS(794), + [anon_sym_return] = ACTIONS(794), + [anon_sym_break] = ACTIONS(794), + [anon_sym_continue] = ACTIONS(794), + [anon_sym_goto] = ACTIONS(794), + [anon_sym_AMP] = ACTIONS(792), + [anon_sym_BANG] = ACTIONS(792), + [anon_sym_TILDE] = ACTIONS(792), + [anon_sym_PLUS] = ACTIONS(794), + [anon_sym_DASH] = ACTIONS(794), + [anon_sym_DASH_DASH] = ACTIONS(792), + [anon_sym_PLUS_PLUS] = ACTIONS(792), + [anon_sym_sizeof] = ACTIONS(794), + [sym_number_literal] = ACTIONS(792), + [anon_sym_SQUOTE] = ACTIONS(792), + [anon_sym_DQUOTE] = ACTIONS(792), + [sym_true] = ACTIONS(794), + [sym_false] = ACTIONS(794), + [sym_null] = ACTIONS(794), + [sym_identifier] = ACTIONS(794), + [sym_comment] = ACTIONS(59), }, [1178] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3277), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3277), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3277), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3277), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3277), - [sym_preproc_directive] = ACTIONS(3277), - [anon_sym_SEMI] = ACTIONS(3279), - [anon_sym_typedef] = ACTIONS(3277), - [anon_sym_extern] = ACTIONS(3277), - [anon_sym_LBRACE] = ACTIONS(3279), - [anon_sym_RBRACE] = ACTIONS(3279), - [anon_sym_LPAREN2] = ACTIONS(3279), - [anon_sym_STAR] = ACTIONS(3279), - [anon_sym_static] = ACTIONS(3277), - [anon_sym_auto] = ACTIONS(3277), - [anon_sym_register] = ACTIONS(3277), - [anon_sym_inline] = ACTIONS(3277), - [anon_sym_const] = ACTIONS(3277), - [anon_sym_restrict] = ACTIONS(3277), - [anon_sym_volatile] = ACTIONS(3277), - [anon_sym__Atomic] = ACTIONS(3277), - [anon_sym_unsigned] = ACTIONS(3277), - [anon_sym_long] = ACTIONS(3277), - [anon_sym_short] = ACTIONS(3277), - [sym_primitive_type] = ACTIONS(3277), - [anon_sym_enum] = ACTIONS(3277), - [anon_sym_struct] = ACTIONS(3277), - [anon_sym_union] = ACTIONS(3277), - [anon_sym_if] = ACTIONS(3277), - [anon_sym_else] = ACTIONS(3277), - [anon_sym_switch] = ACTIONS(3277), - [anon_sym_case] = ACTIONS(3277), - [anon_sym_default] = ACTIONS(3277), - [anon_sym_while] = ACTIONS(3277), - [anon_sym_do] = ACTIONS(3277), - [anon_sym_for] = ACTIONS(3277), - [anon_sym_return] = ACTIONS(3277), - [anon_sym_break] = ACTIONS(3277), - [anon_sym_continue] = ACTIONS(3277), - [anon_sym_goto] = ACTIONS(3277), - [anon_sym_AMP] = ACTIONS(3279), - [anon_sym_BANG] = ACTIONS(3279), - [anon_sym_TILDE] = ACTIONS(3279), - [anon_sym_PLUS] = ACTIONS(3277), - [anon_sym_DASH] = ACTIONS(3277), - [anon_sym_DASH_DASH] = ACTIONS(3279), - [anon_sym_PLUS_PLUS] = ACTIONS(3279), - [anon_sym_sizeof] = ACTIONS(3277), - [sym_number_literal] = ACTIONS(3279), - [anon_sym_SQUOTE] = ACTIONS(3279), - [anon_sym_DQUOTE] = ACTIONS(3279), - [sym_true] = ACTIONS(3277), - [sym_false] = ACTIONS(3277), - [sym_null] = ACTIONS(3277), - [sym_identifier] = ACTIONS(3277), - [sym_comment] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(3232), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3234), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3234), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3234), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3234), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3234), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3234), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(3234), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(3234), + [sym_preproc_directive] = ACTIONS(3234), + [anon_sym_typedef] = ACTIONS(3234), + [anon_sym_extern] = ACTIONS(3234), + [anon_sym_LBRACE] = ACTIONS(3232), + [anon_sym_LPAREN2] = ACTIONS(3232), + [anon_sym_STAR] = ACTIONS(3232), + [anon_sym_static] = ACTIONS(3234), + [anon_sym_auto] = ACTIONS(3234), + [anon_sym_register] = ACTIONS(3234), + [anon_sym_inline] = ACTIONS(3234), + [anon_sym_const] = ACTIONS(3234), + [anon_sym_restrict] = ACTIONS(3234), + [anon_sym_volatile] = ACTIONS(3234), + [anon_sym__Atomic] = ACTIONS(3234), + [anon_sym_unsigned] = ACTIONS(3234), + [anon_sym_long] = ACTIONS(3234), + [anon_sym_short] = ACTIONS(3234), + [sym_primitive_type] = ACTIONS(3234), + [anon_sym_enum] = ACTIONS(3234), + [anon_sym_struct] = ACTIONS(3234), + [anon_sym_union] = ACTIONS(3234), + [anon_sym_if] = ACTIONS(3234), + [anon_sym_else] = ACTIONS(3234), + [anon_sym_switch] = ACTIONS(3234), + [anon_sym_case] = ACTIONS(3234), + [anon_sym_default] = ACTIONS(3234), + [anon_sym_while] = ACTIONS(3234), + [anon_sym_do] = ACTIONS(3234), + [anon_sym_for] = ACTIONS(3234), + [anon_sym_return] = ACTIONS(3234), + [anon_sym_break] = ACTIONS(3234), + [anon_sym_continue] = ACTIONS(3234), + [anon_sym_goto] = ACTIONS(3234), + [anon_sym_AMP] = ACTIONS(3232), + [anon_sym_BANG] = ACTIONS(3232), + [anon_sym_TILDE] = ACTIONS(3232), + [anon_sym_PLUS] = ACTIONS(3234), + [anon_sym_DASH] = ACTIONS(3234), + [anon_sym_DASH_DASH] = ACTIONS(3232), + [anon_sym_PLUS_PLUS] = ACTIONS(3232), + [anon_sym_sizeof] = ACTIONS(3234), + [sym_number_literal] = ACTIONS(3232), + [anon_sym_SQUOTE] = ACTIONS(3232), + [anon_sym_DQUOTE] = ACTIONS(3232), + [sym_true] = ACTIONS(3234), + [sym_false] = ACTIONS(3234), + [sym_null] = ACTIONS(3234), + [sym_identifier] = ACTIONS(3234), + [sym_comment] = ACTIONS(59), }, [1179] = { - [sym_compound_statement] = STATE(1201), - [sym_labeled_statement] = STATE(1201), - [sym_expression_statement] = STATE(1201), - [sym_if_statement] = STATE(1201), - [sym_switch_statement] = STATE(1201), - [sym_case_statement] = STATE(1201), - [sym_while_statement] = STATE(1201), - [sym_do_statement] = STATE(1201), - [sym_for_statement] = STATE(1201), - [sym_return_statement] = STATE(1201), - [sym_break_statement] = STATE(1201), - [sym_continue_statement] = STATE(1201), - [sym_goto_statement] = STATE(1201), - [sym__expression] = STATE(228), - [sym_comma_expression] = STATE(229), - [sym_conditional_expression] = STATE(228), - [sym_assignment_expression] = STATE(228), - [sym_pointer_expression] = STATE(228), - [sym_logical_expression] = STATE(228), - [sym_bitwise_expression] = STATE(228), - [sym_equality_expression] = STATE(228), - [sym_relational_expression] = STATE(228), - [sym_shift_expression] = STATE(228), - [sym_math_expression] = STATE(228), - [sym_cast_expression] = STATE(228), - [sym_sizeof_expression] = STATE(228), - [sym_subscript_expression] = STATE(228), - [sym_call_expression] = STATE(228), - [sym_field_expression] = STATE(228), - [sym_compound_literal_expression] = STATE(228), - [sym_parenthesized_expression] = STATE(228), - [sym_char_literal] = STATE(228), - [sym_concatenated_string] = STATE(228), - [sym_string_literal] = STATE(230), - [anon_sym_SEMI] = ACTIONS(503), - [anon_sym_LBRACE] = ACTIONS(229), - [anon_sym_LPAREN2] = ACTIONS(507), - [anon_sym_STAR] = ACTIONS(509), - [anon_sym_if] = ACTIONS(511), - [anon_sym_switch] = ACTIONS(513), - [anon_sym_case] = ACTIONS(515), - [anon_sym_default] = ACTIONS(517), - [anon_sym_while] = ACTIONS(519), - [anon_sym_do] = ACTIONS(521), - [anon_sym_for] = ACTIONS(523), - [anon_sym_return] = ACTIONS(525), - [anon_sym_break] = ACTIONS(527), - [anon_sym_continue] = ACTIONS(529), - [anon_sym_goto] = ACTIONS(531), - [anon_sym_AMP] = ACTIONS(509), - [anon_sym_BANG] = ACTIONS(533), - [anon_sym_TILDE] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DASH] = ACTIONS(537), - [anon_sym_DASH_DASH] = ACTIONS(539), - [anon_sym_PLUS_PLUS] = ACTIONS(539), - [anon_sym_sizeof] = ACTIONS(541), - [sym_number_literal] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(547), - [sym_false] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [sym_identifier] = ACTIONS(1489), - [sym_comment] = ACTIONS(37), + [sym_compound_statement] = STATE(1211), + [sym_labeled_statement] = STATE(1211), + [sym_expression_statement] = STATE(1211), + [sym_if_statement] = STATE(1211), + [sym_switch_statement] = STATE(1211), + [sym_case_statement] = STATE(1211), + [sym_while_statement] = STATE(1211), + [sym_do_statement] = STATE(1211), + [sym_for_statement] = STATE(1211), + [sym_return_statement] = STATE(1211), + [sym_break_statement] = STATE(1211), + [sym_continue_statement] = STATE(1211), + [sym_goto_statement] = STATE(1211), + [sym__expression] = STATE(756), + [sym_comma_expression] = STATE(757), + [sym_conditional_expression] = STATE(756), + [sym_assignment_expression] = STATE(756), + [sym_pointer_expression] = STATE(756), + [sym_logical_expression] = STATE(756), + [sym_bitwise_expression] = STATE(756), + [sym_equality_expression] = STATE(756), + [sym_relational_expression] = STATE(756), + [sym_shift_expression] = STATE(756), + [sym_math_expression] = STATE(756), + [sym_cast_expression] = STATE(756), + [sym_sizeof_expression] = STATE(756), + [sym_subscript_expression] = STATE(756), + [sym_call_expression] = STATE(756), + [sym_field_expression] = STATE(756), + [sym_compound_literal_expression] = STATE(756), + [sym_parenthesized_expression] = STATE(756), + [sym_char_literal] = STATE(756), + [sym_concatenated_string] = STATE(756), + [sym_string_literal] = STATE(374), + [anon_sym_SEMI] = ACTIONS(1940), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_LPAREN2] = ACTIONS(936), + [anon_sym_STAR] = ACTIONS(938), + [anon_sym_if] = ACTIONS(1952), + [anon_sym_switch] = ACTIONS(1954), + [anon_sym_case] = ACTIONS(1956), + [anon_sym_default] = ACTIONS(1958), + [anon_sym_while] = ACTIONS(1960), + [anon_sym_do] = ACTIONS(1962), + [anon_sym_for] = ACTIONS(1964), + [anon_sym_return] = ACTIONS(1966), + [anon_sym_break] = ACTIONS(1968), + [anon_sym_continue] = ACTIONS(1970), + [anon_sym_goto] = ACTIONS(1972), + [anon_sym_AMP] = ACTIONS(938), + [anon_sym_BANG] = ACTIONS(962), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_DASH_DASH] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(968), + [anon_sym_sizeof] = ACTIONS(970), + [sym_number_literal] = ACTIONS(1974), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(1976), + [sym_false] = ACTIONS(1976), + [sym_null] = ACTIONS(1976), + [sym_identifier] = ACTIONS(2766), + [sym_comment] = ACTIONS(59), }, [1180] = { - [sym_compound_statement] = STATE(1156), - [sym_labeled_statement] = STATE(1156), - [sym_expression_statement] = STATE(1156), - [sym_if_statement] = STATE(1156), - [sym_switch_statement] = STATE(1156), - [sym_case_statement] = STATE(1156), - [sym_while_statement] = STATE(1156), - [sym_do_statement] = STATE(1156), - [sym_for_statement] = STATE(1156), - [sym_return_statement] = STATE(1156), - [sym_break_statement] = STATE(1156), - [sym_continue_statement] = STATE(1156), - [sym_goto_statement] = STATE(1156), - [sym__expression] = STATE(800), - [sym_comma_expression] = STATE(801), - [sym_conditional_expression] = STATE(800), - [sym_assignment_expression] = STATE(800), - [sym_pointer_expression] = STATE(800), - [sym_logical_expression] = STATE(800), - [sym_bitwise_expression] = STATE(800), - [sym_equality_expression] = STATE(800), - [sym_relational_expression] = STATE(800), - [sym_shift_expression] = STATE(800), - [sym_math_expression] = STATE(800), - [sym_cast_expression] = STATE(800), - [sym_sizeof_expression] = STATE(800), - [sym_subscript_expression] = STATE(800), - [sym_call_expression] = STATE(800), - [sym_field_expression] = STATE(800), - [sym_compound_literal_expression] = STATE(800), - [sym_parenthesized_expression] = STATE(800), - [sym_char_literal] = STATE(800), - [sym_concatenated_string] = STATE(800), - [sym_string_literal] = STATE(230), - [anon_sym_SEMI] = ACTIONS(2082), - [anon_sym_LBRACE] = ACTIONS(1181), - [anon_sym_LPAREN2] = ACTIONS(507), - [anon_sym_STAR] = ACTIONS(509), - [anon_sym_if] = ACTIONS(2788), - [anon_sym_switch] = ACTIONS(2790), - [anon_sym_case] = ACTIONS(2792), - [anon_sym_default] = ACTIONS(2794), - [anon_sym_while] = ACTIONS(2796), - [anon_sym_do] = ACTIONS(2094), - [anon_sym_for] = ACTIONS(2798), - [anon_sym_return] = ACTIONS(2098), - [anon_sym_break] = ACTIONS(2100), - [anon_sym_continue] = ACTIONS(2102), - [anon_sym_goto] = ACTIONS(2104), - [anon_sym_AMP] = ACTIONS(509), - [anon_sym_BANG] = ACTIONS(533), - [anon_sym_TILDE] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DASH] = ACTIONS(537), - [anon_sym_DASH_DASH] = ACTIONS(539), - [anon_sym_PLUS_PLUS] = ACTIONS(539), - [anon_sym_sizeof] = ACTIONS(541), - [sym_number_literal] = ACTIONS(2106), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(2108), - [sym_false] = ACTIONS(2108), - [sym_null] = ACTIONS(2108), - [sym_identifier] = ACTIONS(2800), - [sym_comment] = ACTIONS(37), + [aux_sym_for_statement_repeat1] = STATE(593), + [anon_sym_COMMA] = ACTIONS(1002), + [anon_sym_RPAREN] = ACTIONS(3356), + [sym_comment] = ACTIONS(59), }, [1181] = { - [sym_argument_list] = STATE(430), - [aux_sym_for_statement_repeat1] = STATE(1203), - [anon_sym_COMMA] = ACTIONS(2344), - [anon_sym_RPAREN] = ACTIONS(3281), - [anon_sym_LPAREN2] = ACTIONS(1012), - [anon_sym_STAR] = ACTIONS(1437), - [anon_sym_LBRACK] = ACTIONS(1016), - [anon_sym_EQ] = ACTIONS(1439), - [anon_sym_QMARK] = ACTIONS(1441), - [anon_sym_STAR_EQ] = ACTIONS(1443), - [anon_sym_SLASH_EQ] = ACTIONS(1443), - [anon_sym_PERCENT_EQ] = ACTIONS(1443), - [anon_sym_PLUS_EQ] = ACTIONS(1443), - [anon_sym_DASH_EQ] = ACTIONS(1443), - [anon_sym_LT_LT_EQ] = ACTIONS(1443), - [anon_sym_GT_GT_EQ] = ACTIONS(1443), - [anon_sym_AMP_EQ] = ACTIONS(1443), - [anon_sym_CARET_EQ] = ACTIONS(1443), - [anon_sym_PIPE_EQ] = ACTIONS(1443), - [anon_sym_AMP] = ACTIONS(1445), - [anon_sym_PIPE_PIPE] = ACTIONS(1447), - [anon_sym_AMP_AMP] = ACTIONS(1449), - [anon_sym_PIPE] = ACTIONS(1451), - [anon_sym_CARET] = ACTIONS(1453), - [anon_sym_EQ_EQ] = ACTIONS(1455), - [anon_sym_BANG_EQ] = ACTIONS(1455), - [anon_sym_LT] = ACTIONS(1457), - [anon_sym_GT] = ACTIONS(1457), - [anon_sym_LT_EQ] = ACTIONS(1459), - [anon_sym_GT_EQ] = ACTIONS(1459), - [anon_sym_LT_LT] = ACTIONS(1461), - [anon_sym_GT_GT] = ACTIONS(1461), - [anon_sym_PLUS] = ACTIONS(1463), - [anon_sym_DASH] = ACTIONS(1463), - [anon_sym_SLASH] = ACTIONS(1437), - [anon_sym_PERCENT] = ACTIONS(1437), - [anon_sym_DASH_DASH] = ACTIONS(1044), - [anon_sym_PLUS_PLUS] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1046), - [anon_sym_DASH_GT] = ACTIONS(1046), - [sym_comment] = ACTIONS(37), + [sym_argument_list] = STATE(98), + [aux_sym_for_statement_repeat1] = STATE(1213), + [anon_sym_COMMA] = ACTIONS(1002), + [anon_sym_RPAREN] = ACTIONS(3356), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(319), + [anon_sym_LBRACK] = ACTIONS(188), + [anon_sym_EQ] = ACTIONS(321), + [anon_sym_QMARK] = ACTIONS(323), + [anon_sym_STAR_EQ] = ACTIONS(325), + [anon_sym_SLASH_EQ] = ACTIONS(325), + [anon_sym_PERCENT_EQ] = ACTIONS(325), + [anon_sym_PLUS_EQ] = ACTIONS(325), + [anon_sym_DASH_EQ] = ACTIONS(325), + [anon_sym_LT_LT_EQ] = ACTIONS(325), + [anon_sym_GT_GT_EQ] = ACTIONS(325), + [anon_sym_AMP_EQ] = ACTIONS(325), + [anon_sym_CARET_EQ] = ACTIONS(325), + [anon_sym_PIPE_EQ] = ACTIONS(325), + [anon_sym_AMP] = ACTIONS(327), + [anon_sym_PIPE_PIPE] = ACTIONS(329), + [anon_sym_AMP_AMP] = ACTIONS(331), + [anon_sym_PIPE] = ACTIONS(333), + [anon_sym_CARET] = ACTIONS(335), + [anon_sym_EQ_EQ] = ACTIONS(337), + [anon_sym_BANG_EQ] = ACTIONS(337), + [anon_sym_LT] = ACTIONS(339), + [anon_sym_GT] = ACTIONS(339), + [anon_sym_LT_EQ] = ACTIONS(341), + [anon_sym_GT_EQ] = ACTIONS(341), + [anon_sym_LT_LT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(343), + [anon_sym_PLUS] = ACTIONS(345), + [anon_sym_DASH] = ACTIONS(345), + [anon_sym_SLASH] = ACTIONS(319), + [anon_sym_PERCENT] = ACTIONS(319), + [anon_sym_DASH_DASH] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(216), + [anon_sym_DOT] = ACTIONS(218), + [anon_sym_DASH_GT] = ACTIONS(218), + [sym_comment] = ACTIONS(59), }, [1182] = { - [sym__expression] = STATE(1204), - [sym_conditional_expression] = STATE(1204), - [sym_assignment_expression] = STATE(1204), - [sym_pointer_expression] = STATE(1204), - [sym_logical_expression] = STATE(1204), - [sym_bitwise_expression] = STATE(1204), - [sym_equality_expression] = STATE(1204), - [sym_relational_expression] = STATE(1204), - [sym_shift_expression] = STATE(1204), - [sym_math_expression] = STATE(1204), - [sym_cast_expression] = STATE(1204), - [sym_sizeof_expression] = STATE(1204), - [sym_subscript_expression] = STATE(1204), - [sym_call_expression] = STATE(1204), - [sym_field_expression] = STATE(1204), - [sym_compound_literal_expression] = STATE(1204), - [sym_parenthesized_expression] = STATE(1204), - [sym_char_literal] = STATE(1204), - [sym_concatenated_string] = STATE(1204), - [sym_string_literal] = STATE(374), - [anon_sym_RPAREN] = ACTIONS(3281), - [anon_sym_LPAREN2] = ACTIONS(892), - [anon_sym_STAR] = ACTIONS(894), - [anon_sym_AMP] = ACTIONS(894), - [anon_sym_BANG] = ACTIONS(896), - [anon_sym_TILDE] = ACTIONS(898), - [anon_sym_PLUS] = ACTIONS(900), - [anon_sym_DASH] = ACTIONS(900), - [anon_sym_DASH_DASH] = ACTIONS(902), - [anon_sym_PLUS_PLUS] = ACTIONS(902), - [anon_sym_sizeof] = ACTIONS(904), - [sym_number_literal] = ACTIONS(3283), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(3285), - [sym_false] = ACTIONS(3285), - [sym_null] = ACTIONS(3285), - [sym_identifier] = ACTIONS(3285), - [sym_comment] = ACTIONS(37), + [sym__expression] = STATE(1214), + [sym_conditional_expression] = STATE(1214), + [sym_assignment_expression] = STATE(1214), + [sym_pointer_expression] = STATE(1214), + [sym_logical_expression] = STATE(1214), + [sym_bitwise_expression] = STATE(1214), + [sym_equality_expression] = STATE(1214), + [sym_relational_expression] = STATE(1214), + [sym_shift_expression] = STATE(1214), + [sym_math_expression] = STATE(1214), + [sym_cast_expression] = STATE(1214), + [sym_sizeof_expression] = STATE(1214), + [sym_subscript_expression] = STATE(1214), + [sym_call_expression] = STATE(1214), + [sym_field_expression] = STATE(1214), + [sym_compound_literal_expression] = STATE(1214), + [sym_parenthesized_expression] = STATE(1214), + [sym_char_literal] = STATE(1214), + [sym_concatenated_string] = STATE(1214), + [sym_string_literal] = STATE(55), + [anon_sym_RPAREN] = ACTIONS(3356), + [anon_sym_LPAREN2] = ACTIONS(85), + [anon_sym_STAR] = ACTIONS(87), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_PLUS] = ACTIONS(97), + [anon_sym_DASH] = ACTIONS(97), + [anon_sym_DASH_DASH] = ACTIONS(99), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(101), + [sym_number_literal] = ACTIONS(3358), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(3360), + [sym_false] = ACTIONS(3360), + [sym_null] = ACTIONS(3360), + [sym_identifier] = ACTIONS(3360), + [sym_comment] = ACTIONS(59), }, [1183] = { - [sym_argument_list] = STATE(430), - [anon_sym_SEMI] = ACTIONS(3287), - [anon_sym_LPAREN2] = ACTIONS(1012), - [anon_sym_STAR] = ACTIONS(1319), - [anon_sym_LBRACK] = ACTIONS(1016), - [anon_sym_EQ] = ACTIONS(1321), - [anon_sym_QMARK] = ACTIONS(1323), - [anon_sym_STAR_EQ] = ACTIONS(1325), - [anon_sym_SLASH_EQ] = ACTIONS(1325), - [anon_sym_PERCENT_EQ] = ACTIONS(1325), - [anon_sym_PLUS_EQ] = ACTIONS(1325), - [anon_sym_DASH_EQ] = ACTIONS(1325), - [anon_sym_LT_LT_EQ] = ACTIONS(1325), - [anon_sym_GT_GT_EQ] = ACTIONS(1325), - [anon_sym_AMP_EQ] = ACTIONS(1325), - [anon_sym_CARET_EQ] = ACTIONS(1325), - [anon_sym_PIPE_EQ] = ACTIONS(1325), - [anon_sym_AMP] = ACTIONS(1327), - [anon_sym_PIPE_PIPE] = ACTIONS(1329), - [anon_sym_AMP_AMP] = ACTIONS(1331), - [anon_sym_PIPE] = ACTIONS(1333), - [anon_sym_CARET] = ACTIONS(1335), - [anon_sym_EQ_EQ] = ACTIONS(1337), - [anon_sym_BANG_EQ] = ACTIONS(1337), - [anon_sym_LT] = ACTIONS(1339), - [anon_sym_GT] = ACTIONS(1339), - [anon_sym_LT_EQ] = ACTIONS(1341), - [anon_sym_GT_EQ] = ACTIONS(1341), - [anon_sym_LT_LT] = ACTIONS(1343), - [anon_sym_GT_GT] = ACTIONS(1343), - [anon_sym_PLUS] = ACTIONS(1345), - [anon_sym_DASH] = ACTIONS(1345), - [anon_sym_SLASH] = ACTIONS(1319), - [anon_sym_PERCENT] = ACTIONS(1319), - [anon_sym_DASH_DASH] = ACTIONS(1044), - [anon_sym_PLUS_PLUS] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1046), - [anon_sym_DASH_GT] = ACTIONS(1046), - [sym_comment] = ACTIONS(37), - }, - [1184] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3173), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3173), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3173), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3173), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3173), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3173), - [sym_preproc_directive] = ACTIONS(3173), - [anon_sym_SEMI] = ACTIONS(3175), - [anon_sym_typedef] = ACTIONS(3173), - [anon_sym_extern] = ACTIONS(3173), - [anon_sym_LBRACE] = ACTIONS(3175), - [anon_sym_LPAREN2] = ACTIONS(3175), - [anon_sym_STAR] = ACTIONS(3175), - [anon_sym_static] = ACTIONS(3173), - [anon_sym_auto] = ACTIONS(3173), - [anon_sym_register] = ACTIONS(3173), - [anon_sym_inline] = ACTIONS(3173), - [anon_sym_const] = ACTIONS(3173), - [anon_sym_restrict] = ACTIONS(3173), - [anon_sym_volatile] = ACTIONS(3173), - [anon_sym__Atomic] = ACTIONS(3173), - [anon_sym_unsigned] = ACTIONS(3173), - [anon_sym_long] = ACTIONS(3173), - [anon_sym_short] = ACTIONS(3173), - [sym_primitive_type] = ACTIONS(3173), - [anon_sym_enum] = ACTIONS(3173), - [anon_sym_struct] = ACTIONS(3173), - [anon_sym_union] = ACTIONS(3173), - [anon_sym_if] = ACTIONS(3173), - [anon_sym_else] = ACTIONS(3173), - [anon_sym_switch] = ACTIONS(3173), - [anon_sym_case] = ACTIONS(3173), - [anon_sym_default] = ACTIONS(3173), - [anon_sym_while] = ACTIONS(3173), - [anon_sym_do] = ACTIONS(3173), - [anon_sym_for] = ACTIONS(3173), - [anon_sym_return] = ACTIONS(3173), - [anon_sym_break] = ACTIONS(3173), - [anon_sym_continue] = ACTIONS(3173), - [anon_sym_goto] = ACTIONS(3173), - [anon_sym_AMP] = ACTIONS(3175), - [anon_sym_BANG] = ACTIONS(3175), - [anon_sym_TILDE] = ACTIONS(3175), - [anon_sym_PLUS] = ACTIONS(3173), - [anon_sym_DASH] = ACTIONS(3173), - [anon_sym_DASH_DASH] = ACTIONS(3175), - [anon_sym_PLUS_PLUS] = ACTIONS(3175), - [anon_sym_sizeof] = ACTIONS(3173), - [sym_number_literal] = ACTIONS(3175), - [anon_sym_SQUOTE] = ACTIONS(3175), - [anon_sym_DQUOTE] = ACTIONS(3175), - [sym_true] = ACTIONS(3173), - [sym_false] = ACTIONS(3173), - [sym_null] = ACTIONS(3173), - [sym_identifier] = ACTIONS(3173), - [sym_comment] = ACTIONS(37), - }, - [1185] = { - [sym_compound_statement] = STATE(1206), - [sym_labeled_statement] = STATE(1206), - [sym_expression_statement] = STATE(1206), - [sym_if_statement] = STATE(1206), - [sym_switch_statement] = STATE(1206), - [sym_case_statement] = STATE(1206), - [sym_while_statement] = STATE(1206), - [sym_do_statement] = STATE(1206), - [sym_for_statement] = STATE(1206), - [sym_return_statement] = STATE(1206), - [sym_break_statement] = STATE(1206), - [sym_continue_statement] = STATE(1206), - [sym_goto_statement] = STATE(1206), - [sym__expression] = STATE(800), - [sym_comma_expression] = STATE(801), - [sym_conditional_expression] = STATE(800), - [sym_assignment_expression] = STATE(800), - [sym_pointer_expression] = STATE(800), - [sym_logical_expression] = STATE(800), - [sym_bitwise_expression] = STATE(800), - [sym_equality_expression] = STATE(800), - [sym_relational_expression] = STATE(800), - [sym_shift_expression] = STATE(800), - [sym_math_expression] = STATE(800), - [sym_cast_expression] = STATE(800), - [sym_sizeof_expression] = STATE(800), - [sym_subscript_expression] = STATE(800), - [sym_call_expression] = STATE(800), - [sym_field_expression] = STATE(800), - [sym_compound_literal_expression] = STATE(800), - [sym_parenthesized_expression] = STATE(800), - [sym_char_literal] = STATE(800), - [sym_concatenated_string] = STATE(800), - [sym_string_literal] = STATE(230), - [anon_sym_SEMI] = ACTIONS(2082), - [anon_sym_LBRACE] = ACTIONS(1181), - [anon_sym_LPAREN2] = ACTIONS(507), - [anon_sym_STAR] = ACTIONS(509), - [anon_sym_if] = ACTIONS(2084), - [anon_sym_switch] = ACTIONS(2086), - [anon_sym_case] = ACTIONS(2088), - [anon_sym_default] = ACTIONS(2090), - [anon_sym_while] = ACTIONS(2092), - [anon_sym_do] = ACTIONS(2094), - [anon_sym_for] = ACTIONS(2096), - [anon_sym_return] = ACTIONS(2098), - [anon_sym_break] = ACTIONS(2100), - [anon_sym_continue] = ACTIONS(2102), - [anon_sym_goto] = ACTIONS(2104), - [anon_sym_AMP] = ACTIONS(509), - [anon_sym_BANG] = ACTIONS(533), - [anon_sym_TILDE] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DASH] = ACTIONS(537), - [anon_sym_DASH_DASH] = ACTIONS(539), - [anon_sym_PLUS_PLUS] = ACTIONS(539), - [anon_sym_sizeof] = ACTIONS(541), - [sym_number_literal] = ACTIONS(2106), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(2108), - [sym_false] = ACTIONS(2108), - [sym_null] = ACTIONS(2108), - [sym_identifier] = ACTIONS(2802), - [sym_comment] = ACTIONS(37), + [sym_compound_statement] = STATE(1155), + [sym_labeled_statement] = STATE(1155), + [sym_expression_statement] = STATE(1155), + [sym_if_statement] = STATE(1155), + [sym_switch_statement] = STATE(1155), + [sym_case_statement] = STATE(1155), + [sym_while_statement] = STATE(1155), + [sym_do_statement] = STATE(1155), + [sym_for_statement] = STATE(1155), + [sym_return_statement] = STATE(1155), + [sym_break_statement] = STATE(1155), + [sym_continue_statement] = STATE(1155), + [sym_goto_statement] = STATE(1155), + [sym__expression] = STATE(372), + [sym_comma_expression] = STATE(373), + [sym_conditional_expression] = STATE(372), + [sym_assignment_expression] = STATE(372), + [sym_pointer_expression] = STATE(372), + [sym_logical_expression] = STATE(372), + [sym_bitwise_expression] = STATE(372), + [sym_equality_expression] = STATE(372), + [sym_relational_expression] = STATE(372), + [sym_shift_expression] = STATE(372), + [sym_math_expression] = STATE(372), + [sym_cast_expression] = STATE(372), + [sym_sizeof_expression] = STATE(372), + [sym_subscript_expression] = STATE(372), + [sym_call_expression] = STATE(372), + [sym_field_expression] = STATE(372), + [sym_compound_literal_expression] = STATE(372), + [sym_parenthesized_expression] = STATE(372), + [sym_char_literal] = STATE(372), + [sym_concatenated_string] = STATE(372), + [sym_string_literal] = STATE(374), + [anon_sym_SEMI] = ACTIONS(928), + [anon_sym_LBRACE] = ACTIONS(439), + [anon_sym_LPAREN2] = ACTIONS(936), + [anon_sym_STAR] = ACTIONS(938), + [anon_sym_if] = ACTIONS(1988), + [anon_sym_switch] = ACTIONS(1990), + [anon_sym_case] = ACTIONS(1992), + [anon_sym_default] = ACTIONS(1994), + [anon_sym_while] = ACTIONS(1996), + [anon_sym_do] = ACTIONS(950), + [anon_sym_for] = ACTIONS(1998), + [anon_sym_return] = ACTIONS(954), + [anon_sym_break] = ACTIONS(956), + [anon_sym_continue] = ACTIONS(958), + [anon_sym_goto] = ACTIONS(960), + [anon_sym_AMP] = ACTIONS(938), + [anon_sym_BANG] = ACTIONS(962), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_DASH_DASH] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(968), + [anon_sym_sizeof] = ACTIONS(970), + [sym_number_literal] = ACTIONS(972), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(974), + [sym_false] = ACTIONS(974), + [sym_null] = ACTIONS(974), + [sym_identifier] = ACTIONS(2000), + [sym_comment] = ACTIONS(59), + }, + [1184] = { + [aux_sym_for_statement_repeat1] = STATE(593), + [anon_sym_COMMA] = ACTIONS(1002), + [anon_sym_RPAREN] = ACTIONS(3362), + [sym_comment] = ACTIONS(59), + }, + [1185] = { + [sym_argument_list] = STATE(98), + [aux_sym_for_statement_repeat1] = STATE(1216), + [anon_sym_COMMA] = ACTIONS(1002), + [anon_sym_RPAREN] = ACTIONS(3362), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(319), + [anon_sym_LBRACK] = ACTIONS(188), + [anon_sym_EQ] = ACTIONS(321), + [anon_sym_QMARK] = ACTIONS(323), + [anon_sym_STAR_EQ] = ACTIONS(325), + [anon_sym_SLASH_EQ] = ACTIONS(325), + [anon_sym_PERCENT_EQ] = ACTIONS(325), + [anon_sym_PLUS_EQ] = ACTIONS(325), + [anon_sym_DASH_EQ] = ACTIONS(325), + [anon_sym_LT_LT_EQ] = ACTIONS(325), + [anon_sym_GT_GT_EQ] = ACTIONS(325), + [anon_sym_AMP_EQ] = ACTIONS(325), + [anon_sym_CARET_EQ] = ACTIONS(325), + [anon_sym_PIPE_EQ] = ACTIONS(325), + [anon_sym_AMP] = ACTIONS(327), + [anon_sym_PIPE_PIPE] = ACTIONS(329), + [anon_sym_AMP_AMP] = ACTIONS(331), + [anon_sym_PIPE] = ACTIONS(333), + [anon_sym_CARET] = ACTIONS(335), + [anon_sym_EQ_EQ] = ACTIONS(337), + [anon_sym_BANG_EQ] = ACTIONS(337), + [anon_sym_LT] = ACTIONS(339), + [anon_sym_GT] = ACTIONS(339), + [anon_sym_LT_EQ] = ACTIONS(341), + [anon_sym_GT_EQ] = ACTIONS(341), + [anon_sym_LT_LT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(343), + [anon_sym_PLUS] = ACTIONS(345), + [anon_sym_DASH] = ACTIONS(345), + [anon_sym_SLASH] = ACTIONS(319), + [anon_sym_PERCENT] = ACTIONS(319), + [anon_sym_DASH_DASH] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(216), + [anon_sym_DOT] = ACTIONS(218), + [anon_sym_DASH_GT] = ACTIONS(218), + [sym_comment] = ACTIONS(59), }, [1186] = { - [aux_sym_for_statement_repeat1] = STATE(991), - [anon_sym_COMMA] = ACTIONS(2344), - [anon_sym_RPAREN] = ACTIONS(3289), - [sym_comment] = ACTIONS(37), + [sym__expression] = STATE(1217), + [sym_conditional_expression] = STATE(1217), + [sym_assignment_expression] = STATE(1217), + [sym_pointer_expression] = STATE(1217), + [sym_logical_expression] = STATE(1217), + [sym_bitwise_expression] = STATE(1217), + [sym_equality_expression] = STATE(1217), + [sym_relational_expression] = STATE(1217), + [sym_shift_expression] = STATE(1217), + [sym_math_expression] = STATE(1217), + [sym_cast_expression] = STATE(1217), + [sym_sizeof_expression] = STATE(1217), + [sym_subscript_expression] = STATE(1217), + [sym_call_expression] = STATE(1217), + [sym_field_expression] = STATE(1217), + [sym_compound_literal_expression] = STATE(1217), + [sym_parenthesized_expression] = STATE(1217), + [sym_char_literal] = STATE(1217), + [sym_concatenated_string] = STATE(1217), + [sym_string_literal] = STATE(55), + [anon_sym_RPAREN] = ACTIONS(3362), + [anon_sym_LPAREN2] = ACTIONS(85), + [anon_sym_STAR] = ACTIONS(87), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_PLUS] = ACTIONS(97), + [anon_sym_DASH] = ACTIONS(97), + [anon_sym_DASH_DASH] = ACTIONS(99), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(101), + [sym_number_literal] = ACTIONS(3364), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(3366), + [sym_false] = ACTIONS(3366), + [sym_null] = ACTIONS(3366), + [sym_identifier] = ACTIONS(3366), + [sym_comment] = ACTIONS(59), }, [1187] = { - [sym_argument_list] = STATE(430), - [aux_sym_for_statement_repeat1] = STATE(1208), - [anon_sym_COMMA] = ACTIONS(2344), - [anon_sym_RPAREN] = ACTIONS(3289), - [anon_sym_LPAREN2] = ACTIONS(1012), - [anon_sym_STAR] = ACTIONS(1437), - [anon_sym_LBRACK] = ACTIONS(1016), - [anon_sym_EQ] = ACTIONS(1439), - [anon_sym_QMARK] = ACTIONS(1441), - [anon_sym_STAR_EQ] = ACTIONS(1443), - [anon_sym_SLASH_EQ] = ACTIONS(1443), - [anon_sym_PERCENT_EQ] = ACTIONS(1443), - [anon_sym_PLUS_EQ] = ACTIONS(1443), - [anon_sym_DASH_EQ] = ACTIONS(1443), - [anon_sym_LT_LT_EQ] = ACTIONS(1443), - [anon_sym_GT_GT_EQ] = ACTIONS(1443), - [anon_sym_AMP_EQ] = ACTIONS(1443), - [anon_sym_CARET_EQ] = ACTIONS(1443), - [anon_sym_PIPE_EQ] = ACTIONS(1443), - [anon_sym_AMP] = ACTIONS(1445), - [anon_sym_PIPE_PIPE] = ACTIONS(1447), - [anon_sym_AMP_AMP] = ACTIONS(1449), - [anon_sym_PIPE] = ACTIONS(1451), - [anon_sym_CARET] = ACTIONS(1453), - [anon_sym_EQ_EQ] = ACTIONS(1455), - [anon_sym_BANG_EQ] = ACTIONS(1455), - [anon_sym_LT] = ACTIONS(1457), - [anon_sym_GT] = ACTIONS(1457), - [anon_sym_LT_EQ] = ACTIONS(1459), - [anon_sym_GT_EQ] = ACTIONS(1459), - [anon_sym_LT_LT] = ACTIONS(1461), - [anon_sym_GT_GT] = ACTIONS(1461), - [anon_sym_PLUS] = ACTIONS(1463), - [anon_sym_DASH] = ACTIONS(1463), - [anon_sym_SLASH] = ACTIONS(1437), - [anon_sym_PERCENT] = ACTIONS(1437), - [anon_sym_DASH_DASH] = ACTIONS(1044), - [anon_sym_PLUS_PLUS] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1046), - [anon_sym_DASH_GT] = ACTIONS(1046), - [sym_comment] = ACTIONS(37), + [sym_compound_statement] = STATE(1106), + [sym_labeled_statement] = STATE(1106), + [sym_expression_statement] = STATE(1106), + [sym_if_statement] = STATE(1106), + [sym_switch_statement] = STATE(1106), + [sym_case_statement] = STATE(1106), + [sym_while_statement] = STATE(1106), + [sym_do_statement] = STATE(1106), + [sym_for_statement] = STATE(1106), + [sym_return_statement] = STATE(1106), + [sym_break_statement] = STATE(1106), + [sym_continue_statement] = STATE(1106), + [sym_goto_statement] = STATE(1106), + [sym__expression] = STATE(372), + [sym_comma_expression] = STATE(373), + [sym_conditional_expression] = STATE(372), + [sym_assignment_expression] = STATE(372), + [sym_pointer_expression] = STATE(372), + [sym_logical_expression] = STATE(372), + [sym_bitwise_expression] = STATE(372), + [sym_equality_expression] = STATE(372), + [sym_relational_expression] = STATE(372), + [sym_shift_expression] = STATE(372), + [sym_math_expression] = STATE(372), + [sym_cast_expression] = STATE(372), + [sym_sizeof_expression] = STATE(372), + [sym_subscript_expression] = STATE(372), + [sym_call_expression] = STATE(372), + [sym_field_expression] = STATE(372), + [sym_compound_literal_expression] = STATE(372), + [sym_parenthesized_expression] = STATE(372), + [sym_char_literal] = STATE(372), + [sym_concatenated_string] = STATE(372), + [sym_string_literal] = STATE(374), + [anon_sym_SEMI] = ACTIONS(928), + [anon_sym_LBRACE] = ACTIONS(439), + [anon_sym_LPAREN2] = ACTIONS(936), + [anon_sym_STAR] = ACTIONS(938), + [anon_sym_if] = ACTIONS(2587), + [anon_sym_switch] = ACTIONS(2589), + [anon_sym_case] = ACTIONS(2591), + [anon_sym_default] = ACTIONS(2593), + [anon_sym_while] = ACTIONS(2595), + [anon_sym_do] = ACTIONS(1466), + [anon_sym_for] = ACTIONS(2597), + [anon_sym_return] = ACTIONS(954), + [anon_sym_break] = ACTIONS(956), + [anon_sym_continue] = ACTIONS(958), + [anon_sym_goto] = ACTIONS(960), + [anon_sym_AMP] = ACTIONS(938), + [anon_sym_BANG] = ACTIONS(962), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_DASH_DASH] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(968), + [anon_sym_sizeof] = ACTIONS(970), + [sym_number_literal] = ACTIONS(972), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(974), + [sym_false] = ACTIONS(974), + [sym_null] = ACTIONS(974), + [sym_identifier] = ACTIONS(2599), + [sym_comment] = ACTIONS(59), }, [1188] = { - [sym_compound_statement] = STATE(1165), - [sym_labeled_statement] = STATE(1165), - [sym_expression_statement] = STATE(1165), - [sym_if_statement] = STATE(1165), - [sym_switch_statement] = STATE(1165), - [sym_case_statement] = STATE(1165), - [sym_while_statement] = STATE(1165), - [sym_do_statement] = STATE(1165), - [sym_for_statement] = STATE(1165), - [sym_return_statement] = STATE(1165), - [sym_break_statement] = STATE(1165), - [sym_continue_statement] = STATE(1165), - [sym_goto_statement] = STATE(1165), - [sym__expression] = STATE(594), - [sym_comma_expression] = STATE(595), - [sym_conditional_expression] = STATE(594), - [sym_assignment_expression] = STATE(594), - [sym_pointer_expression] = STATE(594), - [sym_logical_expression] = STATE(594), - [sym_bitwise_expression] = STATE(594), - [sym_equality_expression] = STATE(594), - [sym_relational_expression] = STATE(594), - [sym_shift_expression] = STATE(594), - [sym_math_expression] = STATE(594), - [sym_cast_expression] = STATE(594), - [sym_sizeof_expression] = STATE(594), - [sym_subscript_expression] = STATE(594), - [sym_call_expression] = STATE(594), - [sym_field_expression] = STATE(594), - [sym_compound_literal_expression] = STATE(594), - [sym_parenthesized_expression] = STATE(594), - [sym_char_literal] = STATE(594), - [sym_concatenated_string] = STATE(594), - [sym_string_literal] = STATE(230), - [anon_sym_SEMI] = ACTIONS(1395), - [anon_sym_LBRACE] = ACTIONS(678), - [anon_sym_LPAREN2] = ACTIONS(507), - [anon_sym_STAR] = ACTIONS(509), - [anon_sym_if] = ACTIONS(2521), - [anon_sym_switch] = ACTIONS(2523), - [anon_sym_case] = ACTIONS(2525), - [anon_sym_default] = ACTIONS(2527), - [anon_sym_while] = ACTIONS(2529), - [anon_sym_do] = ACTIONS(1407), - [anon_sym_for] = ACTIONS(2531), - [anon_sym_return] = ACTIONS(1411), - [anon_sym_break] = ACTIONS(1413), - [anon_sym_continue] = ACTIONS(1415), - [anon_sym_goto] = ACTIONS(1417), - [anon_sym_AMP] = ACTIONS(509), - [anon_sym_BANG] = ACTIONS(533), - [anon_sym_TILDE] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DASH] = ACTIONS(537), - [anon_sym_DASH_DASH] = ACTIONS(539), - [anon_sym_PLUS_PLUS] = ACTIONS(539), - [anon_sym_sizeof] = ACTIONS(541), - [sym_number_literal] = ACTIONS(1419), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(1421), - [sym_false] = ACTIONS(1421), - [sym_null] = ACTIONS(1421), - [sym_identifier] = ACTIONS(2533), - [sym_comment] = ACTIONS(37), + [sym_argument_list] = STATE(98), + [aux_sym_for_statement_repeat1] = STATE(1219), + [anon_sym_COMMA] = ACTIONS(1002), + [anon_sym_RPAREN] = ACTIONS(3368), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(319), + [anon_sym_LBRACK] = ACTIONS(188), + [anon_sym_EQ] = ACTIONS(321), + [anon_sym_QMARK] = ACTIONS(323), + [anon_sym_STAR_EQ] = ACTIONS(325), + [anon_sym_SLASH_EQ] = ACTIONS(325), + [anon_sym_PERCENT_EQ] = ACTIONS(325), + [anon_sym_PLUS_EQ] = ACTIONS(325), + [anon_sym_DASH_EQ] = ACTIONS(325), + [anon_sym_LT_LT_EQ] = ACTIONS(325), + [anon_sym_GT_GT_EQ] = ACTIONS(325), + [anon_sym_AMP_EQ] = ACTIONS(325), + [anon_sym_CARET_EQ] = ACTIONS(325), + [anon_sym_PIPE_EQ] = ACTIONS(325), + [anon_sym_AMP] = ACTIONS(327), + [anon_sym_PIPE_PIPE] = ACTIONS(329), + [anon_sym_AMP_AMP] = ACTIONS(331), + [anon_sym_PIPE] = ACTIONS(333), + [anon_sym_CARET] = ACTIONS(335), + [anon_sym_EQ_EQ] = ACTIONS(337), + [anon_sym_BANG_EQ] = ACTIONS(337), + [anon_sym_LT] = ACTIONS(339), + [anon_sym_GT] = ACTIONS(339), + [anon_sym_LT_EQ] = ACTIONS(341), + [anon_sym_GT_EQ] = ACTIONS(341), + [anon_sym_LT_LT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(343), + [anon_sym_PLUS] = ACTIONS(345), + [anon_sym_DASH] = ACTIONS(345), + [anon_sym_SLASH] = ACTIONS(319), + [anon_sym_PERCENT] = ACTIONS(319), + [anon_sym_DASH_DASH] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(216), + [anon_sym_DOT] = ACTIONS(218), + [anon_sym_DASH_GT] = ACTIONS(218), + [sym_comment] = ACTIONS(59), }, [1189] = { - [aux_sym_for_statement_repeat1] = STATE(991), - [anon_sym_COMMA] = ACTIONS(2344), - [anon_sym_RPAREN] = ACTIONS(3291), - [sym_comment] = ACTIONS(37), + [sym__expression] = STATE(1220), + [sym_conditional_expression] = STATE(1220), + [sym_assignment_expression] = STATE(1220), + [sym_pointer_expression] = STATE(1220), + [sym_logical_expression] = STATE(1220), + [sym_bitwise_expression] = STATE(1220), + [sym_equality_expression] = STATE(1220), + [sym_relational_expression] = STATE(1220), + [sym_shift_expression] = STATE(1220), + [sym_math_expression] = STATE(1220), + [sym_cast_expression] = STATE(1220), + [sym_sizeof_expression] = STATE(1220), + [sym_subscript_expression] = STATE(1220), + [sym_call_expression] = STATE(1220), + [sym_field_expression] = STATE(1220), + [sym_compound_literal_expression] = STATE(1220), + [sym_parenthesized_expression] = STATE(1220), + [sym_char_literal] = STATE(1220), + [sym_concatenated_string] = STATE(1220), + [sym_string_literal] = STATE(55), + [anon_sym_RPAREN] = ACTIONS(3368), + [anon_sym_LPAREN2] = ACTIONS(85), + [anon_sym_STAR] = ACTIONS(87), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_PLUS] = ACTIONS(97), + [anon_sym_DASH] = ACTIONS(97), + [anon_sym_DASH_DASH] = ACTIONS(99), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(101), + [sym_number_literal] = ACTIONS(3370), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(3372), + [sym_false] = ACTIONS(3372), + [sym_null] = ACTIONS(3372), + [sym_identifier] = ACTIONS(3372), + [sym_comment] = ACTIONS(59), }, [1190] = { - [sym_argument_list] = STATE(430), - [aux_sym_for_statement_repeat1] = STATE(1210), - [anon_sym_COMMA] = ACTIONS(2344), - [anon_sym_RPAREN] = ACTIONS(3291), - [anon_sym_LPAREN2] = ACTIONS(1012), - [anon_sym_STAR] = ACTIONS(1437), - [anon_sym_LBRACK] = ACTIONS(1016), - [anon_sym_EQ] = ACTIONS(1439), - [anon_sym_QMARK] = ACTIONS(1441), - [anon_sym_STAR_EQ] = ACTIONS(1443), - [anon_sym_SLASH_EQ] = ACTIONS(1443), - [anon_sym_PERCENT_EQ] = ACTIONS(1443), - [anon_sym_PLUS_EQ] = ACTIONS(1443), - [anon_sym_DASH_EQ] = ACTIONS(1443), - [anon_sym_LT_LT_EQ] = ACTIONS(1443), - [anon_sym_GT_GT_EQ] = ACTIONS(1443), - [anon_sym_AMP_EQ] = ACTIONS(1443), - [anon_sym_CARET_EQ] = ACTIONS(1443), - [anon_sym_PIPE_EQ] = ACTIONS(1443), - [anon_sym_AMP] = ACTIONS(1445), - [anon_sym_PIPE_PIPE] = ACTIONS(1447), - [anon_sym_AMP_AMP] = ACTIONS(1449), - [anon_sym_PIPE] = ACTIONS(1451), - [anon_sym_CARET] = ACTIONS(1453), - [anon_sym_EQ_EQ] = ACTIONS(1455), - [anon_sym_BANG_EQ] = ACTIONS(1455), - [anon_sym_LT] = ACTIONS(1457), - [anon_sym_GT] = ACTIONS(1457), - [anon_sym_LT_EQ] = ACTIONS(1459), - [anon_sym_GT_EQ] = ACTIONS(1459), - [anon_sym_LT_LT] = ACTIONS(1461), - [anon_sym_GT_GT] = ACTIONS(1461), - [anon_sym_PLUS] = ACTIONS(1463), - [anon_sym_DASH] = ACTIONS(1463), - [anon_sym_SLASH] = ACTIONS(1437), - [anon_sym_PERCENT] = ACTIONS(1437), - [anon_sym_DASH_DASH] = ACTIONS(1044), - [anon_sym_PLUS_PLUS] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1046), - [anon_sym_DASH_GT] = ACTIONS(1046), - [sym_comment] = ACTIONS(37), + [sym_argument_list] = STATE(98), + [anon_sym_SEMI] = ACTIONS(3374), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_LBRACK] = ACTIONS(188), + [anon_sym_EQ] = ACTIONS(1896), + [anon_sym_QMARK] = ACTIONS(1898), + [anon_sym_STAR_EQ] = ACTIONS(1900), + [anon_sym_SLASH_EQ] = ACTIONS(1900), + [anon_sym_PERCENT_EQ] = ACTIONS(1900), + [anon_sym_PLUS_EQ] = ACTIONS(1900), + [anon_sym_DASH_EQ] = ACTIONS(1900), + [anon_sym_LT_LT_EQ] = ACTIONS(1900), + [anon_sym_GT_GT_EQ] = ACTIONS(1900), + [anon_sym_AMP_EQ] = ACTIONS(1900), + [anon_sym_CARET_EQ] = ACTIONS(1900), + [anon_sym_PIPE_EQ] = ACTIONS(1900), + [anon_sym_AMP] = ACTIONS(1902), + [anon_sym_PIPE_PIPE] = ACTIONS(1904), + [anon_sym_AMP_AMP] = ACTIONS(1906), + [anon_sym_PIPE] = ACTIONS(1908), + [anon_sym_CARET] = ACTIONS(1910), + [anon_sym_EQ_EQ] = ACTIONS(1912), + [anon_sym_BANG_EQ] = ACTIONS(1912), + [anon_sym_LT] = ACTIONS(1914), + [anon_sym_GT] = ACTIONS(1914), + [anon_sym_LT_EQ] = ACTIONS(1916), + [anon_sym_GT_EQ] = ACTIONS(1916), + [anon_sym_LT_LT] = ACTIONS(1918), + [anon_sym_GT_GT] = ACTIONS(1918), + [anon_sym_PLUS] = ACTIONS(1920), + [anon_sym_DASH] = ACTIONS(1920), + [anon_sym_SLASH] = ACTIONS(1894), + [anon_sym_PERCENT] = ACTIONS(1894), + [anon_sym_DASH_DASH] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(216), + [anon_sym_DOT] = ACTIONS(218), + [anon_sym_DASH_GT] = ACTIONS(218), + [sym_comment] = ACTIONS(59), }, [1191] = { - [sym__expression] = STATE(1211), - [sym_conditional_expression] = STATE(1211), - [sym_assignment_expression] = STATE(1211), - [sym_pointer_expression] = STATE(1211), - [sym_logical_expression] = STATE(1211), - [sym_bitwise_expression] = STATE(1211), - [sym_equality_expression] = STATE(1211), - [sym_relational_expression] = STATE(1211), - [sym_shift_expression] = STATE(1211), - [sym_math_expression] = STATE(1211), - [sym_cast_expression] = STATE(1211), - [sym_sizeof_expression] = STATE(1211), - [sym_subscript_expression] = STATE(1211), - [sym_call_expression] = STATE(1211), - [sym_field_expression] = STATE(1211), - [sym_compound_literal_expression] = STATE(1211), - [sym_parenthesized_expression] = STATE(1211), - [sym_char_literal] = STATE(1211), - [sym_concatenated_string] = STATE(1211), + [sym_compound_statement] = STATE(1194), + [sym_labeled_statement] = STATE(1194), + [sym_expression_statement] = STATE(1194), + [sym_if_statement] = STATE(1194), + [sym_switch_statement] = STATE(1194), + [sym_case_statement] = STATE(1194), + [sym_while_statement] = STATE(1194), + [sym_do_statement] = STATE(1194), + [sym_for_statement] = STATE(1194), + [sym_return_statement] = STATE(1194), + [sym_break_statement] = STATE(1194), + [sym_continue_statement] = STATE(1194), + [sym_goto_statement] = STATE(1194), + [sym__expression] = STATE(372), + [sym_comma_expression] = STATE(373), + [sym_conditional_expression] = STATE(372), + [sym_assignment_expression] = STATE(372), + [sym_pointer_expression] = STATE(372), + [sym_logical_expression] = STATE(372), + [sym_bitwise_expression] = STATE(372), + [sym_equality_expression] = STATE(372), + [sym_relational_expression] = STATE(372), + [sym_shift_expression] = STATE(372), + [sym_math_expression] = STATE(372), + [sym_cast_expression] = STATE(372), + [sym_sizeof_expression] = STATE(372), + [sym_subscript_expression] = STATE(372), + [sym_call_expression] = STATE(372), + [sym_field_expression] = STATE(372), + [sym_compound_literal_expression] = STATE(372), + [sym_parenthesized_expression] = STATE(372), + [sym_char_literal] = STATE(372), + [sym_concatenated_string] = STATE(372), [sym_string_literal] = STATE(374), - [anon_sym_RPAREN] = ACTIONS(3291), - [anon_sym_LPAREN2] = ACTIONS(892), - [anon_sym_STAR] = ACTIONS(894), - [anon_sym_AMP] = ACTIONS(894), - [anon_sym_BANG] = ACTIONS(896), - [anon_sym_TILDE] = ACTIONS(898), - [anon_sym_PLUS] = ACTIONS(900), - [anon_sym_DASH] = ACTIONS(900), - [anon_sym_DASH_DASH] = ACTIONS(902), - [anon_sym_PLUS_PLUS] = ACTIONS(902), - [anon_sym_sizeof] = ACTIONS(904), - [sym_number_literal] = ACTIONS(3293), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(3295), - [sym_false] = ACTIONS(3295), - [sym_null] = ACTIONS(3295), - [sym_identifier] = ACTIONS(3295), - [sym_comment] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(928), + [anon_sym_LBRACE] = ACTIONS(439), + [anon_sym_LPAREN2] = ACTIONS(936), + [anon_sym_STAR] = ACTIONS(938), + [anon_sym_if] = ACTIONS(1456), + [anon_sym_switch] = ACTIONS(1458), + [anon_sym_case] = ACTIONS(1460), + [anon_sym_default] = ACTIONS(1462), + [anon_sym_while] = ACTIONS(1464), + [anon_sym_do] = ACTIONS(1466), + [anon_sym_for] = ACTIONS(1468), + [anon_sym_return] = ACTIONS(954), + [anon_sym_break] = ACTIONS(956), + [anon_sym_continue] = ACTIONS(958), + [anon_sym_goto] = ACTIONS(960), + [anon_sym_AMP] = ACTIONS(938), + [anon_sym_BANG] = ACTIONS(962), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_DASH_DASH] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(968), + [anon_sym_sizeof] = ACTIONS(970), + [sym_number_literal] = ACTIONS(972), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(974), + [sym_false] = ACTIONS(974), + [sym_null] = ACTIONS(974), + [sym_identifier] = ACTIONS(1470), + [sym_comment] = ACTIONS(59), }, [1192] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3233), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3233), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3233), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3233), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3233), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3233), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(3233), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(3233), - [sym_preproc_directive] = ACTIONS(3233), - [anon_sym_SEMI] = ACTIONS(3235), - [anon_sym_typedef] = ACTIONS(3233), - [anon_sym_extern] = ACTIONS(3233), - [anon_sym_LBRACE] = ACTIONS(3235), - [anon_sym_LPAREN2] = ACTIONS(3235), - [anon_sym_STAR] = ACTIONS(3235), - [anon_sym_static] = ACTIONS(3233), - [anon_sym_auto] = ACTIONS(3233), - [anon_sym_register] = ACTIONS(3233), - [anon_sym_inline] = ACTIONS(3233), - [anon_sym_const] = ACTIONS(3233), - [anon_sym_restrict] = ACTIONS(3233), - [anon_sym_volatile] = ACTIONS(3233), - [anon_sym__Atomic] = ACTIONS(3233), - [anon_sym_unsigned] = ACTIONS(3233), - [anon_sym_long] = ACTIONS(3233), - [anon_sym_short] = ACTIONS(3233), - [sym_primitive_type] = ACTIONS(3233), - [anon_sym_enum] = ACTIONS(3233), - [anon_sym_struct] = ACTIONS(3233), - [anon_sym_union] = ACTIONS(3233), - [anon_sym_if] = ACTIONS(3233), - [anon_sym_else] = ACTIONS(3233), - [anon_sym_switch] = ACTIONS(3233), - [anon_sym_case] = ACTIONS(3233), - [anon_sym_default] = ACTIONS(3233), - [anon_sym_while] = ACTIONS(3233), - [anon_sym_do] = ACTIONS(3233), - [anon_sym_for] = ACTIONS(3233), - [anon_sym_return] = ACTIONS(3233), - [anon_sym_break] = ACTIONS(3233), - [anon_sym_continue] = ACTIONS(3233), - [anon_sym_goto] = ACTIONS(3233), - [anon_sym_AMP] = ACTIONS(3235), - [anon_sym_BANG] = ACTIONS(3235), - [anon_sym_TILDE] = ACTIONS(3235), - [anon_sym_PLUS] = ACTIONS(3233), - [anon_sym_DASH] = ACTIONS(3233), - [anon_sym_DASH_DASH] = ACTIONS(3235), - [anon_sym_PLUS_PLUS] = ACTIONS(3235), - [anon_sym_sizeof] = ACTIONS(3233), - [sym_number_literal] = ACTIONS(3235), - [anon_sym_SQUOTE] = ACTIONS(3235), - [anon_sym_DQUOTE] = ACTIONS(3235), - [sym_true] = ACTIONS(3233), - [sym_false] = ACTIONS(3233), - [sym_null] = ACTIONS(3233), - [sym_identifier] = ACTIONS(3233), - [sym_comment] = ACTIONS(37), + [aux_sym_for_statement_repeat1] = STATE(593), + [anon_sym_COMMA] = ACTIONS(1002), + [anon_sym_RPAREN] = ACTIONS(3376), + [sym_comment] = ACTIONS(59), }, [1193] = { - [sym_compound_statement] = STATE(1212), - [sym_labeled_statement] = STATE(1212), - [sym_expression_statement] = STATE(1212), - [sym_if_statement] = STATE(1212), - [sym_switch_statement] = STATE(1212), - [sym_case_statement] = STATE(1212), - [sym_while_statement] = STATE(1212), - [sym_do_statement] = STATE(1212), - [sym_for_statement] = STATE(1212), - [sym_return_statement] = STATE(1212), - [sym_break_statement] = STATE(1212), - [sym_continue_statement] = STATE(1212), - [sym_goto_statement] = STATE(1212), - [sym__expression] = STATE(594), - [sym_comma_expression] = STATE(595), - [sym_conditional_expression] = STATE(594), - [sym_assignment_expression] = STATE(594), - [sym_pointer_expression] = STATE(594), - [sym_logical_expression] = STATE(594), - [sym_bitwise_expression] = STATE(594), - [sym_equality_expression] = STATE(594), - [sym_relational_expression] = STATE(594), - [sym_shift_expression] = STATE(594), - [sym_math_expression] = STATE(594), - [sym_cast_expression] = STATE(594), - [sym_sizeof_expression] = STATE(594), - [sym_subscript_expression] = STATE(594), - [sym_call_expression] = STATE(594), - [sym_field_expression] = STATE(594), - [sym_compound_literal_expression] = STATE(594), - [sym_parenthesized_expression] = STATE(594), - [sym_char_literal] = STATE(594), - [sym_concatenated_string] = STATE(594), - [sym_string_literal] = STATE(230), - [anon_sym_SEMI] = ACTIONS(1395), - [anon_sym_LBRACE] = ACTIONS(678), - [anon_sym_LPAREN2] = ACTIONS(507), - [anon_sym_STAR] = ACTIONS(509), - [anon_sym_if] = ACTIONS(1397), - [anon_sym_switch] = ACTIONS(1399), - [anon_sym_case] = ACTIONS(1401), - [anon_sym_default] = ACTIONS(1403), - [anon_sym_while] = ACTIONS(1405), - [anon_sym_do] = ACTIONS(1407), - [anon_sym_for] = ACTIONS(1409), - [anon_sym_return] = ACTIONS(1411), - [anon_sym_break] = ACTIONS(1413), - [anon_sym_continue] = ACTIONS(1415), - [anon_sym_goto] = ACTIONS(1417), - [anon_sym_AMP] = ACTIONS(509), - [anon_sym_BANG] = ACTIONS(533), - [anon_sym_TILDE] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DASH] = ACTIONS(537), - [anon_sym_DASH_DASH] = ACTIONS(539), - [anon_sym_PLUS_PLUS] = ACTIONS(539), - [anon_sym_sizeof] = ACTIONS(541), - [sym_number_literal] = ACTIONS(1419), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(1421), - [sym_false] = ACTIONS(1421), - [sym_null] = ACTIONS(1421), - [sym_identifier] = ACTIONS(2535), - [sym_comment] = ACTIONS(37), + [sym_argument_list] = STATE(98), + [aux_sym_for_statement_repeat1] = STATE(1223), + [anon_sym_COMMA] = ACTIONS(1002), + [anon_sym_RPAREN] = ACTIONS(3376), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(319), + [anon_sym_LBRACK] = ACTIONS(188), + [anon_sym_EQ] = ACTIONS(321), + [anon_sym_QMARK] = ACTIONS(323), + [anon_sym_STAR_EQ] = ACTIONS(325), + [anon_sym_SLASH_EQ] = ACTIONS(325), + [anon_sym_PERCENT_EQ] = ACTIONS(325), + [anon_sym_PLUS_EQ] = ACTIONS(325), + [anon_sym_DASH_EQ] = ACTIONS(325), + [anon_sym_LT_LT_EQ] = ACTIONS(325), + [anon_sym_GT_GT_EQ] = ACTIONS(325), + [anon_sym_AMP_EQ] = ACTIONS(325), + [anon_sym_CARET_EQ] = ACTIONS(325), + [anon_sym_PIPE_EQ] = ACTIONS(325), + [anon_sym_AMP] = ACTIONS(327), + [anon_sym_PIPE_PIPE] = ACTIONS(329), + [anon_sym_AMP_AMP] = ACTIONS(331), + [anon_sym_PIPE] = ACTIONS(333), + [anon_sym_CARET] = ACTIONS(335), + [anon_sym_EQ_EQ] = ACTIONS(337), + [anon_sym_BANG_EQ] = ACTIONS(337), + [anon_sym_LT] = ACTIONS(339), + [anon_sym_GT] = ACTIONS(339), + [anon_sym_LT_EQ] = ACTIONS(341), + [anon_sym_GT_EQ] = ACTIONS(341), + [anon_sym_LT_LT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(343), + [anon_sym_PLUS] = ACTIONS(345), + [anon_sym_DASH] = ACTIONS(345), + [anon_sym_SLASH] = ACTIONS(319), + [anon_sym_PERCENT] = ACTIONS(319), + [anon_sym_DASH_DASH] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(216), + [anon_sym_DOT] = ACTIONS(218), + [anon_sym_DASH_GT] = ACTIONS(218), + [sym_comment] = ACTIONS(59), }, [1194] = { - [aux_sym_for_statement_repeat1] = STATE(991), - [anon_sym_COMMA] = ACTIONS(2344), - [anon_sym_RPAREN] = ACTIONS(3297), - [sym_comment] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(3378), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3380), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3380), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3380), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3380), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3380), + [sym_preproc_directive] = ACTIONS(3380), + [anon_sym_typedef] = ACTIONS(3380), + [anon_sym_extern] = ACTIONS(3380), + [anon_sym_LBRACE] = ACTIONS(3378), + [anon_sym_RBRACE] = ACTIONS(3378), + [anon_sym_LPAREN2] = ACTIONS(3378), + [anon_sym_STAR] = ACTIONS(3378), + [anon_sym_static] = ACTIONS(3380), + [anon_sym_auto] = ACTIONS(3380), + [anon_sym_register] = ACTIONS(3380), + [anon_sym_inline] = ACTIONS(3380), + [anon_sym_const] = ACTIONS(3380), + [anon_sym_restrict] = ACTIONS(3380), + [anon_sym_volatile] = ACTIONS(3380), + [anon_sym__Atomic] = ACTIONS(3380), + [anon_sym_unsigned] = ACTIONS(3380), + [anon_sym_long] = ACTIONS(3380), + [anon_sym_short] = ACTIONS(3380), + [sym_primitive_type] = ACTIONS(3380), + [anon_sym_enum] = ACTIONS(3380), + [anon_sym_struct] = ACTIONS(3380), + [anon_sym_union] = ACTIONS(3380), + [anon_sym_if] = ACTIONS(3380), + [anon_sym_else] = ACTIONS(3380), + [anon_sym_switch] = ACTIONS(3380), + [anon_sym_case] = ACTIONS(3380), + [anon_sym_default] = ACTIONS(3380), + [anon_sym_while] = ACTIONS(3380), + [anon_sym_do] = ACTIONS(3380), + [anon_sym_for] = ACTIONS(3380), + [anon_sym_return] = ACTIONS(3380), + [anon_sym_break] = ACTIONS(3380), + [anon_sym_continue] = ACTIONS(3380), + [anon_sym_goto] = ACTIONS(3380), + [anon_sym_AMP] = ACTIONS(3378), + [anon_sym_BANG] = ACTIONS(3378), + [anon_sym_TILDE] = ACTIONS(3378), + [anon_sym_PLUS] = ACTIONS(3380), + [anon_sym_DASH] = ACTIONS(3380), + [anon_sym_DASH_DASH] = ACTIONS(3378), + [anon_sym_PLUS_PLUS] = ACTIONS(3378), + [anon_sym_sizeof] = ACTIONS(3380), + [sym_number_literal] = ACTIONS(3378), + [anon_sym_SQUOTE] = ACTIONS(3378), + [anon_sym_DQUOTE] = ACTIONS(3378), + [sym_true] = ACTIONS(3380), + [sym_false] = ACTIONS(3380), + [sym_null] = ACTIONS(3380), + [sym_identifier] = ACTIONS(3380), + [sym_comment] = ACTIONS(59), }, [1195] = { - [sym_compound_statement] = STATE(1178), - [sym_labeled_statement] = STATE(1178), - [sym_expression_statement] = STATE(1178), - [sym_if_statement] = STATE(1178), - [sym_switch_statement] = STATE(1178), - [sym_case_statement] = STATE(1178), - [sym_while_statement] = STATE(1178), - [sym_do_statement] = STATE(1178), - [sym_for_statement] = STATE(1178), - [sym_return_statement] = STATE(1178), - [sym_break_statement] = STATE(1178), - [sym_continue_statement] = STATE(1178), - [sym_goto_statement] = STATE(1178), - [sym__expression] = STATE(228), - [sym_comma_expression] = STATE(229), - [sym_conditional_expression] = STATE(228), - [sym_assignment_expression] = STATE(228), - [sym_pointer_expression] = STATE(228), - [sym_logical_expression] = STATE(228), - [sym_bitwise_expression] = STATE(228), - [sym_equality_expression] = STATE(228), - [sym_relational_expression] = STATE(228), - [sym_shift_expression] = STATE(228), - [sym_math_expression] = STATE(228), - [sym_cast_expression] = STATE(228), - [sym_sizeof_expression] = STATE(228), - [sym_subscript_expression] = STATE(228), - [sym_call_expression] = STATE(228), - [sym_field_expression] = STATE(228), - [sym_compound_literal_expression] = STATE(228), - [sym_parenthesized_expression] = STATE(228), - [sym_char_literal] = STATE(228), - [sym_concatenated_string] = STATE(228), - [sym_string_literal] = STATE(230), - [anon_sym_SEMI] = ACTIONS(503), - [anon_sym_LBRACE] = ACTIONS(229), - [anon_sym_LPAREN2] = ACTIONS(507), - [anon_sym_STAR] = ACTIONS(509), - [anon_sym_if] = ACTIONS(1475), - [anon_sym_switch] = ACTIONS(1477), - [anon_sym_case] = ACTIONS(1479), - [anon_sym_default] = ACTIONS(1481), - [anon_sym_while] = ACTIONS(1483), - [anon_sym_do] = ACTIONS(521), - [anon_sym_for] = ACTIONS(1485), - [anon_sym_return] = ACTIONS(525), - [anon_sym_break] = ACTIONS(527), - [anon_sym_continue] = ACTIONS(529), - [anon_sym_goto] = ACTIONS(531), - [anon_sym_AMP] = ACTIONS(509), - [anon_sym_BANG] = ACTIONS(533), - [anon_sym_TILDE] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DASH] = ACTIONS(537), - [anon_sym_DASH_DASH] = ACTIONS(539), - [anon_sym_PLUS_PLUS] = ACTIONS(539), - [anon_sym_sizeof] = ACTIONS(541), - [sym_number_literal] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(547), - [sym_false] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [sym_identifier] = ACTIONS(1487), - [sym_comment] = ACTIONS(37), + [sym_compound_statement] = STATE(1224), + [sym_labeled_statement] = STATE(1224), + [sym_expression_statement] = STATE(1224), + [sym_if_statement] = STATE(1224), + [sym_switch_statement] = STATE(1224), + [sym_case_statement] = STATE(1224), + [sym_while_statement] = STATE(1224), + [sym_do_statement] = STATE(1224), + [sym_for_statement] = STATE(1224), + [sym_return_statement] = STATE(1224), + [sym_break_statement] = STATE(1224), + [sym_continue_statement] = STATE(1224), + [sym_goto_statement] = STATE(1224), + [sym__expression] = STATE(372), + [sym_comma_expression] = STATE(373), + [sym_conditional_expression] = STATE(372), + [sym_assignment_expression] = STATE(372), + [sym_pointer_expression] = STATE(372), + [sym_logical_expression] = STATE(372), + [sym_bitwise_expression] = STATE(372), + [sym_equality_expression] = STATE(372), + [sym_relational_expression] = STATE(372), + [sym_shift_expression] = STATE(372), + [sym_math_expression] = STATE(372), + [sym_cast_expression] = STATE(372), + [sym_sizeof_expression] = STATE(372), + [sym_subscript_expression] = STATE(372), + [sym_call_expression] = STATE(372), + [sym_field_expression] = STATE(372), + [sym_compound_literal_expression] = STATE(372), + [sym_parenthesized_expression] = STATE(372), + [sym_char_literal] = STATE(372), + [sym_concatenated_string] = STATE(372), + [sym_string_literal] = STATE(374), + [anon_sym_SEMI] = ACTIONS(928), + [anon_sym_LBRACE] = ACTIONS(439), + [anon_sym_LPAREN2] = ACTIONS(936), + [anon_sym_STAR] = ACTIONS(938), + [anon_sym_if] = ACTIONS(940), + [anon_sym_switch] = ACTIONS(942), + [anon_sym_case] = ACTIONS(944), + [anon_sym_default] = ACTIONS(946), + [anon_sym_while] = ACTIONS(948), + [anon_sym_do] = ACTIONS(950), + [anon_sym_for] = ACTIONS(952), + [anon_sym_return] = ACTIONS(954), + [anon_sym_break] = ACTIONS(956), + [anon_sym_continue] = ACTIONS(958), + [anon_sym_goto] = ACTIONS(960), + [anon_sym_AMP] = ACTIONS(938), + [anon_sym_BANG] = ACTIONS(962), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_DASH_DASH] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(968), + [anon_sym_sizeof] = ACTIONS(970), + [sym_number_literal] = ACTIONS(972), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(974), + [sym_false] = ACTIONS(974), + [sym_null] = ACTIONS(974), + [sym_identifier] = ACTIONS(2002), + [sym_comment] = ACTIONS(59), }, [1196] = { - [aux_sym_for_statement_repeat1] = STATE(991), - [anon_sym_COMMA] = ACTIONS(2344), - [anon_sym_RPAREN] = ACTIONS(3299), - [sym_comment] = ACTIONS(37), + [aux_sym_for_statement_repeat1] = STATE(593), + [anon_sym_COMMA] = ACTIONS(1002), + [anon_sym_RPAREN] = ACTIONS(3382), + [sym_comment] = ACTIONS(59), }, [1197] = { - [sym_compound_statement] = STATE(1148), - [sym_labeled_statement] = STATE(1148), - [sym_expression_statement] = STATE(1148), - [sym_if_statement] = STATE(1148), - [sym_switch_statement] = STATE(1148), - [sym_case_statement] = STATE(1148), - [sym_while_statement] = STATE(1148), - [sym_do_statement] = STATE(1148), - [sym_for_statement] = STATE(1148), - [sym_return_statement] = STATE(1148), - [sym_break_statement] = STATE(1148), - [sym_continue_statement] = STATE(1148), - [sym_goto_statement] = STATE(1148), - [sym__expression] = STATE(228), - [sym_comma_expression] = STATE(229), - [sym_conditional_expression] = STATE(228), - [sym_assignment_expression] = STATE(228), - [sym_pointer_expression] = STATE(228), - [sym_logical_expression] = STATE(228), - [sym_bitwise_expression] = STATE(228), - [sym_equality_expression] = STATE(228), - [sym_relational_expression] = STATE(228), - [sym_shift_expression] = STATE(228), - [sym_math_expression] = STATE(228), - [sym_cast_expression] = STATE(228), - [sym_sizeof_expression] = STATE(228), - [sym_subscript_expression] = STATE(228), - [sym_call_expression] = STATE(228), - [sym_field_expression] = STATE(228), - [sym_compound_literal_expression] = STATE(228), - [sym_parenthesized_expression] = STATE(228), - [sym_char_literal] = STATE(228), - [sym_concatenated_string] = STATE(228), - [sym_string_literal] = STATE(230), - [anon_sym_SEMI] = ACTIONS(503), - [anon_sym_LBRACE] = ACTIONS(229), - [anon_sym_LPAREN2] = ACTIONS(507), - [anon_sym_STAR] = ACTIONS(509), - [anon_sym_if] = ACTIONS(2286), - [anon_sym_switch] = ACTIONS(2288), - [anon_sym_case] = ACTIONS(2290), - [anon_sym_default] = ACTIONS(2292), - [anon_sym_while] = ACTIONS(2294), - [anon_sym_do] = ACTIONS(948), - [anon_sym_for] = ACTIONS(2296), - [anon_sym_return] = ACTIONS(525), - [anon_sym_break] = ACTIONS(527), - [anon_sym_continue] = ACTIONS(529), - [anon_sym_goto] = ACTIONS(531), - [anon_sym_AMP] = ACTIONS(509), - [anon_sym_BANG] = ACTIONS(533), - [anon_sym_TILDE] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DASH] = ACTIONS(537), - [anon_sym_DASH_DASH] = ACTIONS(539), - [anon_sym_PLUS_PLUS] = ACTIONS(539), - [anon_sym_sizeof] = ACTIONS(541), - [sym_number_literal] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(547), - [sym_false] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [sym_identifier] = ACTIONS(2298), - [sym_comment] = ACTIONS(37), + [sym_compound_statement] = STATE(1166), + [sym_labeled_statement] = STATE(1166), + [sym_expression_statement] = STATE(1166), + [sym_if_statement] = STATE(1166), + [sym_switch_statement] = STATE(1166), + [sym_case_statement] = STATE(1166), + [sym_while_statement] = STATE(1166), + [sym_do_statement] = STATE(1166), + [sym_for_statement] = STATE(1166), + [sym_return_statement] = STATE(1166), + [sym_break_statement] = STATE(1166), + [sym_continue_statement] = STATE(1166), + [sym_goto_statement] = STATE(1166), + [sym__expression] = STATE(902), + [sym_comma_expression] = STATE(903), + [sym_conditional_expression] = STATE(902), + [sym_assignment_expression] = STATE(902), + [sym_pointer_expression] = STATE(902), + [sym_logical_expression] = STATE(902), + [sym_bitwise_expression] = STATE(902), + [sym_equality_expression] = STATE(902), + [sym_relational_expression] = STATE(902), + [sym_shift_expression] = STATE(902), + [sym_math_expression] = STATE(902), + [sym_cast_expression] = STATE(902), + [sym_sizeof_expression] = STATE(902), + [sym_subscript_expression] = STATE(902), + [sym_call_expression] = STATE(902), + [sym_field_expression] = STATE(902), + [sym_compound_literal_expression] = STATE(902), + [sym_parenthesized_expression] = STATE(902), + [sym_char_literal] = STATE(902), + [sym_concatenated_string] = STATE(902), + [sym_string_literal] = STATE(374), + [anon_sym_SEMI] = ACTIONS(2481), + [anon_sym_LBRACE] = ACTIONS(1699), + [anon_sym_LPAREN2] = ACTIONS(936), + [anon_sym_STAR] = ACTIONS(938), + [anon_sym_if] = ACTIONS(2964), + [anon_sym_switch] = ACTIONS(2966), + [anon_sym_case] = ACTIONS(2968), + [anon_sym_default] = ACTIONS(2970), + [anon_sym_while] = ACTIONS(2972), + [anon_sym_do] = ACTIONS(2499), + [anon_sym_for] = ACTIONS(2974), + [anon_sym_return] = ACTIONS(2503), + [anon_sym_break] = ACTIONS(2505), + [anon_sym_continue] = ACTIONS(2507), + [anon_sym_goto] = ACTIONS(2509), + [anon_sym_AMP] = ACTIONS(938), + [anon_sym_BANG] = ACTIONS(962), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_DASH_DASH] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(968), + [anon_sym_sizeof] = ACTIONS(970), + [sym_number_literal] = ACTIONS(2511), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(2513), + [sym_false] = ACTIONS(2513), + [sym_null] = ACTIONS(2513), + [sym_identifier] = ACTIONS(2976), + [sym_comment] = ACTIONS(59), }, [1198] = { - [aux_sym_for_statement_repeat1] = STATE(991), - [anon_sym_COMMA] = ACTIONS(2344), - [anon_sym_RPAREN] = ACTIONS(3301), - [sym_comment] = ACTIONS(37), + [sym__expression] = STATE(1227), + [sym_conditional_expression] = STATE(1227), + [sym_assignment_expression] = STATE(1227), + [sym_pointer_expression] = STATE(1227), + [sym_logical_expression] = STATE(1227), + [sym_bitwise_expression] = STATE(1227), + [sym_equality_expression] = STATE(1227), + [sym_relational_expression] = STATE(1227), + [sym_shift_expression] = STATE(1227), + [sym_math_expression] = STATE(1227), + [sym_cast_expression] = STATE(1227), + [sym_sizeof_expression] = STATE(1227), + [sym_subscript_expression] = STATE(1227), + [sym_call_expression] = STATE(1227), + [sym_field_expression] = STATE(1227), + [sym_compound_literal_expression] = STATE(1227), + [sym_parenthesized_expression] = STATE(1227), + [sym_char_literal] = STATE(1227), + [sym_concatenated_string] = STATE(1227), + [sym_string_literal] = STATE(55), + [anon_sym_RPAREN] = ACTIONS(3384), + [anon_sym_LPAREN2] = ACTIONS(85), + [anon_sym_STAR] = ACTIONS(87), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_PLUS] = ACTIONS(97), + [anon_sym_DASH] = ACTIONS(97), + [anon_sym_DASH_DASH] = ACTIONS(99), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(101), + [sym_number_literal] = ACTIONS(3386), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(3388), + [sym_false] = ACTIONS(3388), + [sym_null] = ACTIONS(3388), + [sym_identifier] = ACTIONS(3388), + [sym_comment] = ACTIONS(59), }, [1199] = { - [sym_argument_list] = STATE(430), - [aux_sym_for_statement_repeat1] = STATE(1216), - [anon_sym_COMMA] = ACTIONS(2344), - [anon_sym_RPAREN] = ACTIONS(3301), - [anon_sym_LPAREN2] = ACTIONS(1012), - [anon_sym_STAR] = ACTIONS(1437), - [anon_sym_LBRACK] = ACTIONS(1016), - [anon_sym_EQ] = ACTIONS(1439), - [anon_sym_QMARK] = ACTIONS(1441), - [anon_sym_STAR_EQ] = ACTIONS(1443), - [anon_sym_SLASH_EQ] = ACTIONS(1443), - [anon_sym_PERCENT_EQ] = ACTIONS(1443), - [anon_sym_PLUS_EQ] = ACTIONS(1443), - [anon_sym_DASH_EQ] = ACTIONS(1443), - [anon_sym_LT_LT_EQ] = ACTIONS(1443), - [anon_sym_GT_GT_EQ] = ACTIONS(1443), - [anon_sym_AMP_EQ] = ACTIONS(1443), - [anon_sym_CARET_EQ] = ACTIONS(1443), - [anon_sym_PIPE_EQ] = ACTIONS(1443), - [anon_sym_AMP] = ACTIONS(1445), - [anon_sym_PIPE_PIPE] = ACTIONS(1447), - [anon_sym_AMP_AMP] = ACTIONS(1449), - [anon_sym_PIPE] = ACTIONS(1451), - [anon_sym_CARET] = ACTIONS(1453), - [anon_sym_EQ_EQ] = ACTIONS(1455), - [anon_sym_BANG_EQ] = ACTIONS(1455), - [anon_sym_LT] = ACTIONS(1457), - [anon_sym_GT] = ACTIONS(1457), - [anon_sym_LT_EQ] = ACTIONS(1459), - [anon_sym_GT_EQ] = ACTIONS(1459), - [anon_sym_LT_LT] = ACTIONS(1461), - [anon_sym_GT_GT] = ACTIONS(1461), - [anon_sym_PLUS] = ACTIONS(1463), - [anon_sym_DASH] = ACTIONS(1463), - [anon_sym_SLASH] = ACTIONS(1437), - [anon_sym_PERCENT] = ACTIONS(1437), - [anon_sym_DASH_DASH] = ACTIONS(1044), - [anon_sym_PLUS_PLUS] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1046), - [anon_sym_DASH_GT] = ACTIONS(1046), - [sym_comment] = ACTIONS(37), + [sym_argument_list] = STATE(98), + [anon_sym_SEMI] = ACTIONS(3390), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_LBRACK] = ACTIONS(188), + [anon_sym_EQ] = ACTIONS(1896), + [anon_sym_QMARK] = ACTIONS(1898), + [anon_sym_STAR_EQ] = ACTIONS(1900), + [anon_sym_SLASH_EQ] = ACTIONS(1900), + [anon_sym_PERCENT_EQ] = ACTIONS(1900), + [anon_sym_PLUS_EQ] = ACTIONS(1900), + [anon_sym_DASH_EQ] = ACTIONS(1900), + [anon_sym_LT_LT_EQ] = ACTIONS(1900), + [anon_sym_GT_GT_EQ] = ACTIONS(1900), + [anon_sym_AMP_EQ] = ACTIONS(1900), + [anon_sym_CARET_EQ] = ACTIONS(1900), + [anon_sym_PIPE_EQ] = ACTIONS(1900), + [anon_sym_AMP] = ACTIONS(1902), + [anon_sym_PIPE_PIPE] = ACTIONS(1904), + [anon_sym_AMP_AMP] = ACTIONS(1906), + [anon_sym_PIPE] = ACTIONS(1908), + [anon_sym_CARET] = ACTIONS(1910), + [anon_sym_EQ_EQ] = ACTIONS(1912), + [anon_sym_BANG_EQ] = ACTIONS(1912), + [anon_sym_LT] = ACTIONS(1914), + [anon_sym_GT] = ACTIONS(1914), + [anon_sym_LT_EQ] = ACTIONS(1916), + [anon_sym_GT_EQ] = ACTIONS(1916), + [anon_sym_LT_LT] = ACTIONS(1918), + [anon_sym_GT_GT] = ACTIONS(1918), + [anon_sym_PLUS] = ACTIONS(1920), + [anon_sym_DASH] = ACTIONS(1920), + [anon_sym_SLASH] = ACTIONS(1894), + [anon_sym_PERCENT] = ACTIONS(1894), + [anon_sym_DASH_DASH] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(216), + [anon_sym_DOT] = ACTIONS(218), + [anon_sym_DASH_GT] = ACTIONS(218), + [sym_comment] = ACTIONS(59), }, [1200] = { - [sym_compound_statement] = STATE(1201), - [sym_labeled_statement] = STATE(1201), - [sym_expression_statement] = STATE(1201), - [sym_if_statement] = STATE(1201), - [sym_switch_statement] = STATE(1201), - [sym_case_statement] = STATE(1201), - [sym_while_statement] = STATE(1201), - [sym_do_statement] = STATE(1201), - [sym_for_statement] = STATE(1201), - [sym_return_statement] = STATE(1201), - [sym_break_statement] = STATE(1201), - [sym_continue_statement] = STATE(1201), - [sym_goto_statement] = STATE(1201), - [sym__expression] = STATE(228), - [sym_comma_expression] = STATE(229), - [sym_conditional_expression] = STATE(228), - [sym_assignment_expression] = STATE(228), - [sym_pointer_expression] = STATE(228), - [sym_logical_expression] = STATE(228), - [sym_bitwise_expression] = STATE(228), - [sym_equality_expression] = STATE(228), - [sym_relational_expression] = STATE(228), - [sym_shift_expression] = STATE(228), - [sym_math_expression] = STATE(228), - [sym_cast_expression] = STATE(228), - [sym_sizeof_expression] = STATE(228), - [sym_subscript_expression] = STATE(228), - [sym_call_expression] = STATE(228), - [sym_field_expression] = STATE(228), - [sym_compound_literal_expression] = STATE(228), - [sym_parenthesized_expression] = STATE(228), - [sym_char_literal] = STATE(228), - [sym_concatenated_string] = STATE(228), - [sym_string_literal] = STATE(230), - [anon_sym_SEMI] = ACTIONS(503), - [anon_sym_LBRACE] = ACTIONS(229), - [anon_sym_LPAREN2] = ACTIONS(507), - [anon_sym_STAR] = ACTIONS(509), - [anon_sym_if] = ACTIONS(938), - [anon_sym_switch] = ACTIONS(940), - [anon_sym_case] = ACTIONS(942), - [anon_sym_default] = ACTIONS(944), - [anon_sym_while] = ACTIONS(946), - [anon_sym_do] = ACTIONS(948), - [anon_sym_for] = ACTIONS(950), - [anon_sym_return] = ACTIONS(525), - [anon_sym_break] = ACTIONS(527), - [anon_sym_continue] = ACTIONS(529), - [anon_sym_goto] = ACTIONS(531), - [anon_sym_AMP] = ACTIONS(509), - [anon_sym_BANG] = ACTIONS(533), - [anon_sym_TILDE] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DASH] = ACTIONS(537), - [anon_sym_DASH_DASH] = ACTIONS(539), - [anon_sym_PLUS_PLUS] = ACTIONS(539), - [anon_sym_sizeof] = ACTIONS(541), - [sym_number_literal] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(547), - [sym_false] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [sym_identifier] = ACTIONS(952), - [sym_comment] = ACTIONS(37), + [sym__expression] = STATE(1229), + [sym_conditional_expression] = STATE(1229), + [sym_assignment_expression] = STATE(1229), + [sym_pointer_expression] = STATE(1229), + [sym_logical_expression] = STATE(1229), + [sym_bitwise_expression] = STATE(1229), + [sym_equality_expression] = STATE(1229), + [sym_relational_expression] = STATE(1229), + [sym_shift_expression] = STATE(1229), + [sym_math_expression] = STATE(1229), + [sym_cast_expression] = STATE(1229), + [sym_sizeof_expression] = STATE(1229), + [sym_subscript_expression] = STATE(1229), + [sym_call_expression] = STATE(1229), + [sym_field_expression] = STATE(1229), + [sym_compound_literal_expression] = STATE(1229), + [sym_parenthesized_expression] = STATE(1229), + [sym_char_literal] = STATE(1229), + [sym_concatenated_string] = STATE(1229), + [sym_string_literal] = STATE(534), + [anon_sym_SEMI] = ACTIONS(3390), + [anon_sym_LPAREN2] = ACTIONS(1349), + [anon_sym_STAR] = ACTIONS(1351), + [anon_sym_AMP] = ACTIONS(1351), + [anon_sym_BANG] = ACTIONS(1353), + [anon_sym_TILDE] = ACTIONS(1355), + [anon_sym_PLUS] = ACTIONS(1357), + [anon_sym_DASH] = ACTIONS(1357), + [anon_sym_DASH_DASH] = ACTIONS(1359), + [anon_sym_PLUS_PLUS] = ACTIONS(1359), + [anon_sym_sizeof] = ACTIONS(1361), + [sym_number_literal] = ACTIONS(3392), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(3394), + [sym_false] = ACTIONS(3394), + [sym_null] = ACTIONS(3394), + [sym_identifier] = ACTIONS(3394), + [sym_comment] = ACTIONS(59), }, [1201] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3303), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3303), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3303), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3303), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3303), - [sym_preproc_directive] = ACTIONS(3303), - [anon_sym_SEMI] = ACTIONS(3305), - [anon_sym_typedef] = ACTIONS(3303), - [anon_sym_extern] = ACTIONS(3303), - [anon_sym_LBRACE] = ACTIONS(3305), - [anon_sym_RBRACE] = ACTIONS(3305), - [anon_sym_LPAREN2] = ACTIONS(3305), - [anon_sym_STAR] = ACTIONS(3305), - [anon_sym_static] = ACTIONS(3303), - [anon_sym_auto] = ACTIONS(3303), - [anon_sym_register] = ACTIONS(3303), - [anon_sym_inline] = ACTIONS(3303), - [anon_sym_const] = ACTIONS(3303), - [anon_sym_restrict] = ACTIONS(3303), - [anon_sym_volatile] = ACTIONS(3303), - [anon_sym__Atomic] = ACTIONS(3303), - [anon_sym_unsigned] = ACTIONS(3303), - [anon_sym_long] = ACTIONS(3303), - [anon_sym_short] = ACTIONS(3303), - [sym_primitive_type] = ACTIONS(3303), - [anon_sym_enum] = ACTIONS(3303), - [anon_sym_struct] = ACTIONS(3303), - [anon_sym_union] = ACTIONS(3303), - [anon_sym_if] = ACTIONS(3303), - [anon_sym_else] = ACTIONS(3303), - [anon_sym_switch] = ACTIONS(3303), - [anon_sym_case] = ACTIONS(3303), - [anon_sym_default] = ACTIONS(3303), - [anon_sym_while] = ACTIONS(3303), - [anon_sym_do] = ACTIONS(3303), - [anon_sym_for] = ACTIONS(3303), - [anon_sym_return] = ACTIONS(3303), - [anon_sym_break] = ACTIONS(3303), - [anon_sym_continue] = ACTIONS(3303), - [anon_sym_goto] = ACTIONS(3303), - [anon_sym_AMP] = ACTIONS(3305), - [anon_sym_BANG] = ACTIONS(3305), - [anon_sym_TILDE] = ACTIONS(3305), - [anon_sym_PLUS] = ACTIONS(3303), - [anon_sym_DASH] = ACTIONS(3303), - [anon_sym_DASH_DASH] = ACTIONS(3305), - [anon_sym_PLUS_PLUS] = ACTIONS(3305), - [anon_sym_sizeof] = ACTIONS(3303), - [sym_number_literal] = ACTIONS(3305), - [anon_sym_SQUOTE] = ACTIONS(3305), - [anon_sym_DQUOTE] = ACTIONS(3305), - [sym_true] = ACTIONS(3303), - [sym_false] = ACTIONS(3303), - [sym_null] = ACTIONS(3303), - [sym_identifier] = ACTIONS(3303), - [sym_comment] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(792), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(794), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(794), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(794), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(794), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(794), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(794), + [sym_preproc_directive] = ACTIONS(794), + [anon_sym_typedef] = ACTIONS(794), + [anon_sym_extern] = ACTIONS(794), + [anon_sym_LBRACE] = ACTIONS(792), + [anon_sym_LPAREN2] = ACTIONS(792), + [anon_sym_STAR] = ACTIONS(792), + [anon_sym_static] = ACTIONS(794), + [anon_sym_auto] = ACTIONS(794), + [anon_sym_register] = ACTIONS(794), + [anon_sym_inline] = ACTIONS(794), + [anon_sym_const] = ACTIONS(794), + [anon_sym_restrict] = ACTIONS(794), + [anon_sym_volatile] = ACTIONS(794), + [anon_sym__Atomic] = ACTIONS(794), + [anon_sym_unsigned] = ACTIONS(794), + [anon_sym_long] = ACTIONS(794), + [anon_sym_short] = ACTIONS(794), + [sym_primitive_type] = ACTIONS(794), + [anon_sym_enum] = ACTIONS(794), + [anon_sym_struct] = ACTIONS(794), + [anon_sym_union] = ACTIONS(794), + [anon_sym_if] = ACTIONS(794), + [anon_sym_else] = ACTIONS(794), + [anon_sym_switch] = ACTIONS(794), + [anon_sym_case] = ACTIONS(794), + [anon_sym_default] = ACTIONS(794), + [anon_sym_while] = ACTIONS(794), + [anon_sym_do] = ACTIONS(794), + [anon_sym_for] = ACTIONS(794), + [anon_sym_return] = ACTIONS(794), + [anon_sym_break] = ACTIONS(794), + [anon_sym_continue] = ACTIONS(794), + [anon_sym_goto] = ACTIONS(794), + [anon_sym_AMP] = ACTIONS(792), + [anon_sym_BANG] = ACTIONS(792), + [anon_sym_TILDE] = ACTIONS(792), + [anon_sym_PLUS] = ACTIONS(794), + [anon_sym_DASH] = ACTIONS(794), + [anon_sym_DASH_DASH] = ACTIONS(792), + [anon_sym_PLUS_PLUS] = ACTIONS(792), + [anon_sym_sizeof] = ACTIONS(794), + [sym_number_literal] = ACTIONS(792), + [anon_sym_SQUOTE] = ACTIONS(792), + [anon_sym_DQUOTE] = ACTIONS(792), + [sym_true] = ACTIONS(794), + [sym_false] = ACTIONS(794), + [sym_null] = ACTIONS(794), + [sym_identifier] = ACTIONS(794), + [sym_comment] = ACTIONS(59), }, [1202] = { - [sym_compound_statement] = STATE(1184), - [sym_labeled_statement] = STATE(1184), - [sym_expression_statement] = STATE(1184), - [sym_if_statement] = STATE(1184), - [sym_switch_statement] = STATE(1184), - [sym_case_statement] = STATE(1184), - [sym_while_statement] = STATE(1184), - [sym_do_statement] = STATE(1184), - [sym_for_statement] = STATE(1184), - [sym_return_statement] = STATE(1184), - [sym_break_statement] = STATE(1184), - [sym_continue_statement] = STATE(1184), - [sym_goto_statement] = STATE(1184), - [sym__expression] = STATE(800), - [sym_comma_expression] = STATE(801), - [sym_conditional_expression] = STATE(800), - [sym_assignment_expression] = STATE(800), - [sym_pointer_expression] = STATE(800), - [sym_logical_expression] = STATE(800), - [sym_bitwise_expression] = STATE(800), - [sym_equality_expression] = STATE(800), - [sym_relational_expression] = STATE(800), - [sym_shift_expression] = STATE(800), - [sym_math_expression] = STATE(800), - [sym_cast_expression] = STATE(800), - [sym_sizeof_expression] = STATE(800), - [sym_subscript_expression] = STATE(800), - [sym_call_expression] = STATE(800), - [sym_field_expression] = STATE(800), - [sym_compound_literal_expression] = STATE(800), - [sym_parenthesized_expression] = STATE(800), - [sym_char_literal] = STATE(800), - [sym_concatenated_string] = STATE(800), - [sym_string_literal] = STATE(230), - [anon_sym_SEMI] = ACTIONS(2082), - [anon_sym_LBRACE] = ACTIONS(1181), - [anon_sym_LPAREN2] = ACTIONS(507), - [anon_sym_STAR] = ACTIONS(509), - [anon_sym_if] = ACTIONS(2788), - [anon_sym_switch] = ACTIONS(2790), - [anon_sym_case] = ACTIONS(2792), - [anon_sym_default] = ACTIONS(2794), - [anon_sym_while] = ACTIONS(2796), - [anon_sym_do] = ACTIONS(2094), - [anon_sym_for] = ACTIONS(2798), - [anon_sym_return] = ACTIONS(2098), - [anon_sym_break] = ACTIONS(2100), - [anon_sym_continue] = ACTIONS(2102), - [anon_sym_goto] = ACTIONS(2104), - [anon_sym_AMP] = ACTIONS(509), - [anon_sym_BANG] = ACTIONS(533), - [anon_sym_TILDE] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DASH] = ACTIONS(537), - [anon_sym_DASH_DASH] = ACTIONS(539), - [anon_sym_PLUS_PLUS] = ACTIONS(539), - [anon_sym_sizeof] = ACTIONS(541), - [sym_number_literal] = ACTIONS(2106), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(2108), - [sym_false] = ACTIONS(2108), - [sym_null] = ACTIONS(2108), - [sym_identifier] = ACTIONS(2800), - [sym_comment] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(3232), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3234), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3234), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3234), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3234), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3234), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3234), + [sym_preproc_directive] = ACTIONS(3234), + [anon_sym_typedef] = ACTIONS(3234), + [anon_sym_extern] = ACTIONS(3234), + [anon_sym_LBRACE] = ACTIONS(3232), + [anon_sym_LPAREN2] = ACTIONS(3232), + [anon_sym_STAR] = ACTIONS(3232), + [anon_sym_static] = ACTIONS(3234), + [anon_sym_auto] = ACTIONS(3234), + [anon_sym_register] = ACTIONS(3234), + [anon_sym_inline] = ACTIONS(3234), + [anon_sym_const] = ACTIONS(3234), + [anon_sym_restrict] = ACTIONS(3234), + [anon_sym_volatile] = ACTIONS(3234), + [anon_sym__Atomic] = ACTIONS(3234), + [anon_sym_unsigned] = ACTIONS(3234), + [anon_sym_long] = ACTIONS(3234), + [anon_sym_short] = ACTIONS(3234), + [sym_primitive_type] = ACTIONS(3234), + [anon_sym_enum] = ACTIONS(3234), + [anon_sym_struct] = ACTIONS(3234), + [anon_sym_union] = ACTIONS(3234), + [anon_sym_if] = ACTIONS(3234), + [anon_sym_else] = ACTIONS(3234), + [anon_sym_switch] = ACTIONS(3234), + [anon_sym_case] = ACTIONS(3234), + [anon_sym_default] = ACTIONS(3234), + [anon_sym_while] = ACTIONS(3234), + [anon_sym_do] = ACTIONS(3234), + [anon_sym_for] = ACTIONS(3234), + [anon_sym_return] = ACTIONS(3234), + [anon_sym_break] = ACTIONS(3234), + [anon_sym_continue] = ACTIONS(3234), + [anon_sym_goto] = ACTIONS(3234), + [anon_sym_AMP] = ACTIONS(3232), + [anon_sym_BANG] = ACTIONS(3232), + [anon_sym_TILDE] = ACTIONS(3232), + [anon_sym_PLUS] = ACTIONS(3234), + [anon_sym_DASH] = ACTIONS(3234), + [anon_sym_DASH_DASH] = ACTIONS(3232), + [anon_sym_PLUS_PLUS] = ACTIONS(3232), + [anon_sym_sizeof] = ACTIONS(3234), + [sym_number_literal] = ACTIONS(3232), + [anon_sym_SQUOTE] = ACTIONS(3232), + [anon_sym_DQUOTE] = ACTIONS(3232), + [sym_true] = ACTIONS(3234), + [sym_false] = ACTIONS(3234), + [sym_null] = ACTIONS(3234), + [sym_identifier] = ACTIONS(3234), + [sym_comment] = ACTIONS(59), }, [1203] = { - [aux_sym_for_statement_repeat1] = STATE(991), - [anon_sym_COMMA] = ACTIONS(2344), - [anon_sym_RPAREN] = ACTIONS(3307), - [sym_comment] = ACTIONS(37), + [sym_compound_statement] = STATE(1230), + [sym_labeled_statement] = STATE(1230), + [sym_expression_statement] = STATE(1230), + [sym_if_statement] = STATE(1230), + [sym_switch_statement] = STATE(1230), + [sym_case_statement] = STATE(1230), + [sym_while_statement] = STATE(1230), + [sym_do_statement] = STATE(1230), + [sym_for_statement] = STATE(1230), + [sym_return_statement] = STATE(1230), + [sym_break_statement] = STATE(1230), + [sym_continue_statement] = STATE(1230), + [sym_goto_statement] = STATE(1230), + [sym__expression] = STATE(902), + [sym_comma_expression] = STATE(903), + [sym_conditional_expression] = STATE(902), + [sym_assignment_expression] = STATE(902), + [sym_pointer_expression] = STATE(902), + [sym_logical_expression] = STATE(902), + [sym_bitwise_expression] = STATE(902), + [sym_equality_expression] = STATE(902), + [sym_relational_expression] = STATE(902), + [sym_shift_expression] = STATE(902), + [sym_math_expression] = STATE(902), + [sym_cast_expression] = STATE(902), + [sym_sizeof_expression] = STATE(902), + [sym_subscript_expression] = STATE(902), + [sym_call_expression] = STATE(902), + [sym_field_expression] = STATE(902), + [sym_compound_literal_expression] = STATE(902), + [sym_parenthesized_expression] = STATE(902), + [sym_char_literal] = STATE(902), + [sym_concatenated_string] = STATE(902), + [sym_string_literal] = STATE(374), + [anon_sym_SEMI] = ACTIONS(2481), + [anon_sym_LBRACE] = ACTIONS(1699), + [anon_sym_LPAREN2] = ACTIONS(936), + [anon_sym_STAR] = ACTIONS(938), + [anon_sym_if] = ACTIONS(2489), + [anon_sym_switch] = ACTIONS(2491), + [anon_sym_case] = ACTIONS(2493), + [anon_sym_default] = ACTIONS(2495), + [anon_sym_while] = ACTIONS(2497), + [anon_sym_do] = ACTIONS(2499), + [anon_sym_for] = ACTIONS(2501), + [anon_sym_return] = ACTIONS(2503), + [anon_sym_break] = ACTIONS(2505), + [anon_sym_continue] = ACTIONS(2507), + [anon_sym_goto] = ACTIONS(2509), + [anon_sym_AMP] = ACTIONS(938), + [anon_sym_BANG] = ACTIONS(962), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_DASH_DASH] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(968), + [anon_sym_sizeof] = ACTIONS(970), + [sym_number_literal] = ACTIONS(2511), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(2513), + [sym_false] = ACTIONS(2513), + [sym_null] = ACTIONS(2513), + [sym_identifier] = ACTIONS(2978), + [sym_comment] = ACTIONS(59), }, [1204] = { - [sym_argument_list] = STATE(430), - [aux_sym_for_statement_repeat1] = STATE(1218), - [anon_sym_COMMA] = ACTIONS(2344), - [anon_sym_RPAREN] = ACTIONS(3307), - [anon_sym_LPAREN2] = ACTIONS(1012), - [anon_sym_STAR] = ACTIONS(1437), - [anon_sym_LBRACK] = ACTIONS(1016), - [anon_sym_EQ] = ACTIONS(1439), - [anon_sym_QMARK] = ACTIONS(1441), - [anon_sym_STAR_EQ] = ACTIONS(1443), - [anon_sym_SLASH_EQ] = ACTIONS(1443), - [anon_sym_PERCENT_EQ] = ACTIONS(1443), - [anon_sym_PLUS_EQ] = ACTIONS(1443), - [anon_sym_DASH_EQ] = ACTIONS(1443), - [anon_sym_LT_LT_EQ] = ACTIONS(1443), - [anon_sym_GT_GT_EQ] = ACTIONS(1443), - [anon_sym_AMP_EQ] = ACTIONS(1443), - [anon_sym_CARET_EQ] = ACTIONS(1443), - [anon_sym_PIPE_EQ] = ACTIONS(1443), - [anon_sym_AMP] = ACTIONS(1445), - [anon_sym_PIPE_PIPE] = ACTIONS(1447), - [anon_sym_AMP_AMP] = ACTIONS(1449), - [anon_sym_PIPE] = ACTIONS(1451), - [anon_sym_CARET] = ACTIONS(1453), - [anon_sym_EQ_EQ] = ACTIONS(1455), - [anon_sym_BANG_EQ] = ACTIONS(1455), - [anon_sym_LT] = ACTIONS(1457), - [anon_sym_GT] = ACTIONS(1457), - [anon_sym_LT_EQ] = ACTIONS(1459), - [anon_sym_GT_EQ] = ACTIONS(1459), - [anon_sym_LT_LT] = ACTIONS(1461), - [anon_sym_GT_GT] = ACTIONS(1461), - [anon_sym_PLUS] = ACTIONS(1463), - [anon_sym_DASH] = ACTIONS(1463), - [anon_sym_SLASH] = ACTIONS(1437), - [anon_sym_PERCENT] = ACTIONS(1437), - [anon_sym_DASH_DASH] = ACTIONS(1044), - [anon_sym_PLUS_PLUS] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1046), - [anon_sym_DASH_GT] = ACTIONS(1046), - [sym_comment] = ACTIONS(37), + [aux_sym_for_statement_repeat1] = STATE(593), + [anon_sym_COMMA] = ACTIONS(1002), + [anon_sym_RPAREN] = ACTIONS(3396), + [sym_comment] = ACTIONS(59), }, [1205] = { - [sym__expression] = STATE(1219), - [sym_conditional_expression] = STATE(1219), - [sym_assignment_expression] = STATE(1219), - [sym_pointer_expression] = STATE(1219), - [sym_logical_expression] = STATE(1219), - [sym_bitwise_expression] = STATE(1219), - [sym_equality_expression] = STATE(1219), - [sym_relational_expression] = STATE(1219), - [sym_shift_expression] = STATE(1219), - [sym_math_expression] = STATE(1219), - [sym_cast_expression] = STATE(1219), - [sym_sizeof_expression] = STATE(1219), - [sym_subscript_expression] = STATE(1219), - [sym_call_expression] = STATE(1219), - [sym_field_expression] = STATE(1219), - [sym_compound_literal_expression] = STATE(1219), - [sym_parenthesized_expression] = STATE(1219), - [sym_char_literal] = STATE(1219), - [sym_concatenated_string] = STATE(1219), - [sym_string_literal] = STATE(374), - [anon_sym_RPAREN] = ACTIONS(3307), - [anon_sym_LPAREN2] = ACTIONS(892), - [anon_sym_STAR] = ACTIONS(894), - [anon_sym_AMP] = ACTIONS(894), - [anon_sym_BANG] = ACTIONS(896), - [anon_sym_TILDE] = ACTIONS(898), - [anon_sym_PLUS] = ACTIONS(900), - [anon_sym_DASH] = ACTIONS(900), - [anon_sym_DASH_DASH] = ACTIONS(902), - [anon_sym_PLUS_PLUS] = ACTIONS(902), - [anon_sym_sizeof] = ACTIONS(904), - [sym_number_literal] = ACTIONS(3309), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(3311), - [sym_false] = ACTIONS(3311), - [sym_null] = ACTIONS(3311), - [sym_identifier] = ACTIONS(3311), - [sym_comment] = ACTIONS(37), + [sym_argument_list] = STATE(98), + [aux_sym_for_statement_repeat1] = STATE(1232), + [anon_sym_COMMA] = ACTIONS(1002), + [anon_sym_RPAREN] = ACTIONS(3396), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(319), + [anon_sym_LBRACK] = ACTIONS(188), + [anon_sym_EQ] = ACTIONS(321), + [anon_sym_QMARK] = ACTIONS(323), + [anon_sym_STAR_EQ] = ACTIONS(325), + [anon_sym_SLASH_EQ] = ACTIONS(325), + [anon_sym_PERCENT_EQ] = ACTIONS(325), + [anon_sym_PLUS_EQ] = ACTIONS(325), + [anon_sym_DASH_EQ] = ACTIONS(325), + [anon_sym_LT_LT_EQ] = ACTIONS(325), + [anon_sym_GT_GT_EQ] = ACTIONS(325), + [anon_sym_AMP_EQ] = ACTIONS(325), + [anon_sym_CARET_EQ] = ACTIONS(325), + [anon_sym_PIPE_EQ] = ACTIONS(325), + [anon_sym_AMP] = ACTIONS(327), + [anon_sym_PIPE_PIPE] = ACTIONS(329), + [anon_sym_AMP_AMP] = ACTIONS(331), + [anon_sym_PIPE] = ACTIONS(333), + [anon_sym_CARET] = ACTIONS(335), + [anon_sym_EQ_EQ] = ACTIONS(337), + [anon_sym_BANG_EQ] = ACTIONS(337), + [anon_sym_LT] = ACTIONS(339), + [anon_sym_GT] = ACTIONS(339), + [anon_sym_LT_EQ] = ACTIONS(341), + [anon_sym_GT_EQ] = ACTIONS(341), + [anon_sym_LT_LT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(343), + [anon_sym_PLUS] = ACTIONS(345), + [anon_sym_DASH] = ACTIONS(345), + [anon_sym_SLASH] = ACTIONS(319), + [anon_sym_PERCENT] = ACTIONS(319), + [anon_sym_DASH_DASH] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(216), + [anon_sym_DOT] = ACTIONS(218), + [anon_sym_DASH_GT] = ACTIONS(218), + [sym_comment] = ACTIONS(59), }, [1206] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3233), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3233), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3233), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3233), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3233), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3233), - [sym_preproc_directive] = ACTIONS(3233), - [anon_sym_SEMI] = ACTIONS(3235), - [anon_sym_typedef] = ACTIONS(3233), - [anon_sym_extern] = ACTIONS(3233), - [anon_sym_LBRACE] = ACTIONS(3235), - [anon_sym_LPAREN2] = ACTIONS(3235), - [anon_sym_STAR] = ACTIONS(3235), - [anon_sym_static] = ACTIONS(3233), - [anon_sym_auto] = ACTIONS(3233), - [anon_sym_register] = ACTIONS(3233), - [anon_sym_inline] = ACTIONS(3233), - [anon_sym_const] = ACTIONS(3233), - [anon_sym_restrict] = ACTIONS(3233), - [anon_sym_volatile] = ACTIONS(3233), - [anon_sym__Atomic] = ACTIONS(3233), - [anon_sym_unsigned] = ACTIONS(3233), - [anon_sym_long] = ACTIONS(3233), - [anon_sym_short] = ACTIONS(3233), - [sym_primitive_type] = ACTIONS(3233), - [anon_sym_enum] = ACTIONS(3233), - [anon_sym_struct] = ACTIONS(3233), - [anon_sym_union] = ACTIONS(3233), - [anon_sym_if] = ACTIONS(3233), - [anon_sym_else] = ACTIONS(3233), - [anon_sym_switch] = ACTIONS(3233), - [anon_sym_case] = ACTIONS(3233), - [anon_sym_default] = ACTIONS(3233), - [anon_sym_while] = ACTIONS(3233), - [anon_sym_do] = ACTIONS(3233), - [anon_sym_for] = ACTIONS(3233), - [anon_sym_return] = ACTIONS(3233), - [anon_sym_break] = ACTIONS(3233), - [anon_sym_continue] = ACTIONS(3233), - [anon_sym_goto] = ACTIONS(3233), - [anon_sym_AMP] = ACTIONS(3235), - [anon_sym_BANG] = ACTIONS(3235), - [anon_sym_TILDE] = ACTIONS(3235), - [anon_sym_PLUS] = ACTIONS(3233), - [anon_sym_DASH] = ACTIONS(3233), - [anon_sym_DASH_DASH] = ACTIONS(3235), - [anon_sym_PLUS_PLUS] = ACTIONS(3235), - [anon_sym_sizeof] = ACTIONS(3233), - [sym_number_literal] = ACTIONS(3235), - [anon_sym_SQUOTE] = ACTIONS(3235), - [anon_sym_DQUOTE] = ACTIONS(3235), - [sym_true] = ACTIONS(3233), - [sym_false] = ACTIONS(3233), - [sym_null] = ACTIONS(3233), - [sym_identifier] = ACTIONS(3233), - [sym_comment] = ACTIONS(37), + [sym__expression] = STATE(1233), + [sym_conditional_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_pointer_expression] = STATE(1233), + [sym_logical_expression] = STATE(1233), + [sym_bitwise_expression] = STATE(1233), + [sym_equality_expression] = STATE(1233), + [sym_relational_expression] = STATE(1233), + [sym_shift_expression] = STATE(1233), + [sym_math_expression] = STATE(1233), + [sym_cast_expression] = STATE(1233), + [sym_sizeof_expression] = STATE(1233), + [sym_subscript_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_field_expression] = STATE(1233), + [sym_compound_literal_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_char_literal] = STATE(1233), + [sym_concatenated_string] = STATE(1233), + [sym_string_literal] = STATE(55), + [anon_sym_RPAREN] = ACTIONS(3396), + [anon_sym_LPAREN2] = ACTIONS(85), + [anon_sym_STAR] = ACTIONS(87), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_PLUS] = ACTIONS(97), + [anon_sym_DASH] = ACTIONS(97), + [anon_sym_DASH_DASH] = ACTIONS(99), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(101), + [sym_number_literal] = ACTIONS(3398), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(3400), + [sym_false] = ACTIONS(3400), + [sym_null] = ACTIONS(3400), + [sym_identifier] = ACTIONS(3400), + [sym_comment] = ACTIONS(59), }, [1207] = { - [sym_compound_statement] = STATE(1220), - [sym_labeled_statement] = STATE(1220), - [sym_expression_statement] = STATE(1220), - [sym_if_statement] = STATE(1220), - [sym_switch_statement] = STATE(1220), - [sym_case_statement] = STATE(1220), - [sym_while_statement] = STATE(1220), - [sym_do_statement] = STATE(1220), - [sym_for_statement] = STATE(1220), - [sym_return_statement] = STATE(1220), - [sym_break_statement] = STATE(1220), - [sym_continue_statement] = STATE(1220), - [sym_goto_statement] = STATE(1220), - [sym__expression] = STATE(800), - [sym_comma_expression] = STATE(801), - [sym_conditional_expression] = STATE(800), - [sym_assignment_expression] = STATE(800), - [sym_pointer_expression] = STATE(800), - [sym_logical_expression] = STATE(800), - [sym_bitwise_expression] = STATE(800), - [sym_equality_expression] = STATE(800), - [sym_relational_expression] = STATE(800), - [sym_shift_expression] = STATE(800), - [sym_math_expression] = STATE(800), - [sym_cast_expression] = STATE(800), - [sym_sizeof_expression] = STATE(800), - [sym_subscript_expression] = STATE(800), - [sym_call_expression] = STATE(800), - [sym_field_expression] = STATE(800), - [sym_compound_literal_expression] = STATE(800), - [sym_parenthesized_expression] = STATE(800), - [sym_char_literal] = STATE(800), - [sym_concatenated_string] = STATE(800), - [sym_string_literal] = STATE(230), - [anon_sym_SEMI] = ACTIONS(2082), - [anon_sym_LBRACE] = ACTIONS(1181), - [anon_sym_LPAREN2] = ACTIONS(507), - [anon_sym_STAR] = ACTIONS(509), - [anon_sym_if] = ACTIONS(2084), - [anon_sym_switch] = ACTIONS(2086), - [anon_sym_case] = ACTIONS(2088), - [anon_sym_default] = ACTIONS(2090), - [anon_sym_while] = ACTIONS(2092), - [anon_sym_do] = ACTIONS(2094), - [anon_sym_for] = ACTIONS(2096), - [anon_sym_return] = ACTIONS(2098), - [anon_sym_break] = ACTIONS(2100), - [anon_sym_continue] = ACTIONS(2102), - [anon_sym_goto] = ACTIONS(2104), - [anon_sym_AMP] = ACTIONS(509), - [anon_sym_BANG] = ACTIONS(533), - [anon_sym_TILDE] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DASH] = ACTIONS(537), - [anon_sym_DASH_DASH] = ACTIONS(539), - [anon_sym_PLUS_PLUS] = ACTIONS(539), - [anon_sym_sizeof] = ACTIONS(541), - [sym_number_literal] = ACTIONS(2106), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(2108), - [sym_false] = ACTIONS(2108), - [sym_null] = ACTIONS(2108), - [sym_identifier] = ACTIONS(2802), - [sym_comment] = ACTIONS(37), - }, - [1208] = { - [aux_sym_for_statement_repeat1] = STATE(991), - [anon_sym_COMMA] = ACTIONS(2344), - [anon_sym_RPAREN] = ACTIONS(3313), - [sym_comment] = ACTIONS(37), - }, - [1209] = { - [sym_compound_statement] = STATE(1192), - [sym_labeled_statement] = STATE(1192), - [sym_expression_statement] = STATE(1192), - [sym_if_statement] = STATE(1192), - [sym_switch_statement] = STATE(1192), - [sym_case_statement] = STATE(1192), - [sym_while_statement] = STATE(1192), - [sym_do_statement] = STATE(1192), - [sym_for_statement] = STATE(1192), - [sym_return_statement] = STATE(1192), - [sym_break_statement] = STATE(1192), - [sym_continue_statement] = STATE(1192), - [sym_goto_statement] = STATE(1192), - [sym__expression] = STATE(594), - [sym_comma_expression] = STATE(595), - [sym_conditional_expression] = STATE(594), - [sym_assignment_expression] = STATE(594), - [sym_pointer_expression] = STATE(594), - [sym_logical_expression] = STATE(594), - [sym_bitwise_expression] = STATE(594), - [sym_equality_expression] = STATE(594), - [sym_relational_expression] = STATE(594), - [sym_shift_expression] = STATE(594), - [sym_math_expression] = STATE(594), - [sym_cast_expression] = STATE(594), - [sym_sizeof_expression] = STATE(594), - [sym_subscript_expression] = STATE(594), - [sym_call_expression] = STATE(594), - [sym_field_expression] = STATE(594), - [sym_compound_literal_expression] = STATE(594), - [sym_parenthesized_expression] = STATE(594), - [sym_char_literal] = STATE(594), - [sym_concatenated_string] = STATE(594), - [sym_string_literal] = STATE(230), - [anon_sym_SEMI] = ACTIONS(1395), - [anon_sym_LBRACE] = ACTIONS(678), - [anon_sym_LPAREN2] = ACTIONS(507), - [anon_sym_STAR] = ACTIONS(509), - [anon_sym_if] = ACTIONS(2521), - [anon_sym_switch] = ACTIONS(2523), - [anon_sym_case] = ACTIONS(2525), - [anon_sym_default] = ACTIONS(2527), - [anon_sym_while] = ACTIONS(2529), - [anon_sym_do] = ACTIONS(1407), - [anon_sym_for] = ACTIONS(2531), - [anon_sym_return] = ACTIONS(1411), - [anon_sym_break] = ACTIONS(1413), - [anon_sym_continue] = ACTIONS(1415), - [anon_sym_goto] = ACTIONS(1417), - [anon_sym_AMP] = ACTIONS(509), - [anon_sym_BANG] = ACTIONS(533), - [anon_sym_TILDE] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DASH] = ACTIONS(537), - [anon_sym_DASH_DASH] = ACTIONS(539), - [anon_sym_PLUS_PLUS] = ACTIONS(539), - [anon_sym_sizeof] = ACTIONS(541), - [sym_number_literal] = ACTIONS(1419), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(1421), - [sym_false] = ACTIONS(1421), - [sym_null] = ACTIONS(1421), - [sym_identifier] = ACTIONS(2533), - [sym_comment] = ACTIONS(37), - }, - [1210] = { - [aux_sym_for_statement_repeat1] = STATE(991), - [anon_sym_COMMA] = ACTIONS(2344), - [anon_sym_RPAREN] = ACTIONS(3315), - [sym_comment] = ACTIONS(37), - }, - [1211] = { - [sym_argument_list] = STATE(430), - [aux_sym_for_statement_repeat1] = STATE(1223), - [anon_sym_COMMA] = ACTIONS(2344), - [anon_sym_RPAREN] = ACTIONS(3315), - [anon_sym_LPAREN2] = ACTIONS(1012), - [anon_sym_STAR] = ACTIONS(1437), - [anon_sym_LBRACK] = ACTIONS(1016), - [anon_sym_EQ] = ACTIONS(1439), - [anon_sym_QMARK] = ACTIONS(1441), - [anon_sym_STAR_EQ] = ACTIONS(1443), - [anon_sym_SLASH_EQ] = ACTIONS(1443), - [anon_sym_PERCENT_EQ] = ACTIONS(1443), - [anon_sym_PLUS_EQ] = ACTIONS(1443), - [anon_sym_DASH_EQ] = ACTIONS(1443), - [anon_sym_LT_LT_EQ] = ACTIONS(1443), - [anon_sym_GT_GT_EQ] = ACTIONS(1443), - [anon_sym_AMP_EQ] = ACTIONS(1443), - [anon_sym_CARET_EQ] = ACTIONS(1443), - [anon_sym_PIPE_EQ] = ACTIONS(1443), - [anon_sym_AMP] = ACTIONS(1445), - [anon_sym_PIPE_PIPE] = ACTIONS(1447), - [anon_sym_AMP_AMP] = ACTIONS(1449), - [anon_sym_PIPE] = ACTIONS(1451), - [anon_sym_CARET] = ACTIONS(1453), - [anon_sym_EQ_EQ] = ACTIONS(1455), - [anon_sym_BANG_EQ] = ACTIONS(1455), - [anon_sym_LT] = ACTIONS(1457), - [anon_sym_GT] = ACTIONS(1457), - [anon_sym_LT_EQ] = ACTIONS(1459), - [anon_sym_GT_EQ] = ACTIONS(1459), - [anon_sym_LT_LT] = ACTIONS(1461), - [anon_sym_GT_GT] = ACTIONS(1461), - [anon_sym_PLUS] = ACTIONS(1463), - [anon_sym_DASH] = ACTIONS(1463), - [anon_sym_SLASH] = ACTIONS(1437), - [anon_sym_PERCENT] = ACTIONS(1437), - [anon_sym_DASH_DASH] = ACTIONS(1044), - [anon_sym_PLUS_PLUS] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1046), - [anon_sym_DASH_GT] = ACTIONS(1046), - [sym_comment] = ACTIONS(37), - }, - [1212] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3277), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3277), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3277), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3277), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3277), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3277), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(3277), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(3277), - [sym_preproc_directive] = ACTIONS(3277), - [anon_sym_SEMI] = ACTIONS(3279), - [anon_sym_typedef] = ACTIONS(3277), - [anon_sym_extern] = ACTIONS(3277), - [anon_sym_LBRACE] = ACTIONS(3279), - [anon_sym_LPAREN2] = ACTIONS(3279), - [anon_sym_STAR] = ACTIONS(3279), - [anon_sym_static] = ACTIONS(3277), - [anon_sym_auto] = ACTIONS(3277), - [anon_sym_register] = ACTIONS(3277), - [anon_sym_inline] = ACTIONS(3277), - [anon_sym_const] = ACTIONS(3277), - [anon_sym_restrict] = ACTIONS(3277), - [anon_sym_volatile] = ACTIONS(3277), - [anon_sym__Atomic] = ACTIONS(3277), - [anon_sym_unsigned] = ACTIONS(3277), - [anon_sym_long] = ACTIONS(3277), - [anon_sym_short] = ACTIONS(3277), - [sym_primitive_type] = ACTIONS(3277), - [anon_sym_enum] = ACTIONS(3277), - [anon_sym_struct] = ACTIONS(3277), - [anon_sym_union] = ACTIONS(3277), - [anon_sym_if] = ACTIONS(3277), - [anon_sym_else] = ACTIONS(3277), - [anon_sym_switch] = ACTIONS(3277), - [anon_sym_case] = ACTIONS(3277), - [anon_sym_default] = ACTIONS(3277), - [anon_sym_while] = ACTIONS(3277), - [anon_sym_do] = ACTIONS(3277), - [anon_sym_for] = ACTIONS(3277), - [anon_sym_return] = ACTIONS(3277), - [anon_sym_break] = ACTIONS(3277), - [anon_sym_continue] = ACTIONS(3277), - [anon_sym_goto] = ACTIONS(3277), - [anon_sym_AMP] = ACTIONS(3279), - [anon_sym_BANG] = ACTIONS(3279), - [anon_sym_TILDE] = ACTIONS(3279), - [anon_sym_PLUS] = ACTIONS(3277), - [anon_sym_DASH] = ACTIONS(3277), - [anon_sym_DASH_DASH] = ACTIONS(3279), - [anon_sym_PLUS_PLUS] = ACTIONS(3279), - [anon_sym_sizeof] = ACTIONS(3277), - [sym_number_literal] = ACTIONS(3279), - [anon_sym_SQUOTE] = ACTIONS(3279), - [anon_sym_DQUOTE] = ACTIONS(3279), - [sym_true] = ACTIONS(3277), - [sym_false] = ACTIONS(3277), - [sym_null] = ACTIONS(3277), - [sym_identifier] = ACTIONS(3277), - [sym_comment] = ACTIONS(37), - }, - [1213] = { - [sym_compound_statement] = STATE(1224), - [sym_labeled_statement] = STATE(1224), - [sym_expression_statement] = STATE(1224), - [sym_if_statement] = STATE(1224), - [sym_switch_statement] = STATE(1224), - [sym_case_statement] = STATE(1224), - [sym_while_statement] = STATE(1224), - [sym_do_statement] = STATE(1224), - [sym_for_statement] = STATE(1224), - [sym_return_statement] = STATE(1224), - [sym_break_statement] = STATE(1224), - [sym_continue_statement] = STATE(1224), - [sym_goto_statement] = STATE(1224), - [sym__expression] = STATE(594), - [sym_comma_expression] = STATE(595), - [sym_conditional_expression] = STATE(594), - [sym_assignment_expression] = STATE(594), - [sym_pointer_expression] = STATE(594), - [sym_logical_expression] = STATE(594), - [sym_bitwise_expression] = STATE(594), - [sym_equality_expression] = STATE(594), - [sym_relational_expression] = STATE(594), - [sym_shift_expression] = STATE(594), - [sym_math_expression] = STATE(594), - [sym_cast_expression] = STATE(594), - [sym_sizeof_expression] = STATE(594), - [sym_subscript_expression] = STATE(594), - [sym_call_expression] = STATE(594), - [sym_field_expression] = STATE(594), - [sym_compound_literal_expression] = STATE(594), - [sym_parenthesized_expression] = STATE(594), - [sym_char_literal] = STATE(594), - [sym_concatenated_string] = STATE(594), - [sym_string_literal] = STATE(230), - [anon_sym_SEMI] = ACTIONS(1395), - [anon_sym_LBRACE] = ACTIONS(678), - [anon_sym_LPAREN2] = ACTIONS(507), - [anon_sym_STAR] = ACTIONS(509), - [anon_sym_if] = ACTIONS(1397), - [anon_sym_switch] = ACTIONS(1399), - [anon_sym_case] = ACTIONS(1401), - [anon_sym_default] = ACTIONS(1403), - [anon_sym_while] = ACTIONS(1405), - [anon_sym_do] = ACTIONS(1407), - [anon_sym_for] = ACTIONS(1409), - [anon_sym_return] = ACTIONS(1411), - [anon_sym_break] = ACTIONS(1413), - [anon_sym_continue] = ACTIONS(1415), - [anon_sym_goto] = ACTIONS(1417), - [anon_sym_AMP] = ACTIONS(509), - [anon_sym_BANG] = ACTIONS(533), - [anon_sym_TILDE] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DASH] = ACTIONS(537), - [anon_sym_DASH_DASH] = ACTIONS(539), - [anon_sym_PLUS_PLUS] = ACTIONS(539), - [anon_sym_sizeof] = ACTIONS(541), - [sym_number_literal] = ACTIONS(1419), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(1421), - [sym_false] = ACTIONS(1421), - [sym_null] = ACTIONS(1421), - [sym_identifier] = ACTIONS(2535), - [sym_comment] = ACTIONS(37), - }, - [1214] = { - [sym_compound_statement] = STATE(1201), - [sym_labeled_statement] = STATE(1201), - [sym_expression_statement] = STATE(1201), - [sym_if_statement] = STATE(1201), - [sym_switch_statement] = STATE(1201), - [sym_case_statement] = STATE(1201), - [sym_while_statement] = STATE(1201), - [sym_do_statement] = STATE(1201), - [sym_for_statement] = STATE(1201), - [sym_return_statement] = STATE(1201), - [sym_break_statement] = STATE(1201), - [sym_continue_statement] = STATE(1201), - [sym_goto_statement] = STATE(1201), - [sym__expression] = STATE(228), - [sym_comma_expression] = STATE(229), - [sym_conditional_expression] = STATE(228), - [sym_assignment_expression] = STATE(228), - [sym_pointer_expression] = STATE(228), - [sym_logical_expression] = STATE(228), - [sym_bitwise_expression] = STATE(228), - [sym_equality_expression] = STATE(228), - [sym_relational_expression] = STATE(228), - [sym_shift_expression] = STATE(228), - [sym_math_expression] = STATE(228), - [sym_cast_expression] = STATE(228), - [sym_sizeof_expression] = STATE(228), - [sym_subscript_expression] = STATE(228), - [sym_call_expression] = STATE(228), - [sym_field_expression] = STATE(228), - [sym_compound_literal_expression] = STATE(228), - [sym_parenthesized_expression] = STATE(228), - [sym_char_literal] = STATE(228), - [sym_concatenated_string] = STATE(228), - [sym_string_literal] = STATE(230), - [anon_sym_SEMI] = ACTIONS(503), - [anon_sym_LBRACE] = ACTIONS(229), - [anon_sym_LPAREN2] = ACTIONS(507), - [anon_sym_STAR] = ACTIONS(509), - [anon_sym_if] = ACTIONS(1475), - [anon_sym_switch] = ACTIONS(1477), - [anon_sym_case] = ACTIONS(1479), - [anon_sym_default] = ACTIONS(1481), - [anon_sym_while] = ACTIONS(1483), - [anon_sym_do] = ACTIONS(521), - [anon_sym_for] = ACTIONS(1485), - [anon_sym_return] = ACTIONS(525), - [anon_sym_break] = ACTIONS(527), - [anon_sym_continue] = ACTIONS(529), - [anon_sym_goto] = ACTIONS(531), - [anon_sym_AMP] = ACTIONS(509), - [anon_sym_BANG] = ACTIONS(533), - [anon_sym_TILDE] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DASH] = ACTIONS(537), - [anon_sym_DASH_DASH] = ACTIONS(539), - [anon_sym_PLUS_PLUS] = ACTIONS(539), - [anon_sym_sizeof] = ACTIONS(541), - [sym_number_literal] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(547), - [sym_false] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [sym_identifier] = ACTIONS(1487), - [sym_comment] = ACTIONS(37), - }, - [1215] = { [sym_compound_statement] = STATE(1178), [sym_labeled_statement] = STATE(1178), [sym_expression_statement] = STATE(1178), @@ -50202,643 +51211,1493 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_case_statement] = STATE(1178), [sym_while_statement] = STATE(1178), [sym_do_statement] = STATE(1178), - [sym_for_statement] = STATE(1178), - [sym_return_statement] = STATE(1178), - [sym_break_statement] = STATE(1178), - [sym_continue_statement] = STATE(1178), - [sym_goto_statement] = STATE(1178), - [sym__expression] = STATE(228), - [sym_comma_expression] = STATE(229), - [sym_conditional_expression] = STATE(228), - [sym_assignment_expression] = STATE(228), - [sym_pointer_expression] = STATE(228), - [sym_logical_expression] = STATE(228), - [sym_bitwise_expression] = STATE(228), - [sym_equality_expression] = STATE(228), - [sym_relational_expression] = STATE(228), - [sym_shift_expression] = STATE(228), - [sym_math_expression] = STATE(228), - [sym_cast_expression] = STATE(228), - [sym_sizeof_expression] = STATE(228), - [sym_subscript_expression] = STATE(228), - [sym_call_expression] = STATE(228), - [sym_field_expression] = STATE(228), - [sym_compound_literal_expression] = STATE(228), - [sym_parenthesized_expression] = STATE(228), - [sym_char_literal] = STATE(228), - [sym_concatenated_string] = STATE(228), - [sym_string_literal] = STATE(230), - [anon_sym_SEMI] = ACTIONS(503), - [anon_sym_LBRACE] = ACTIONS(229), - [anon_sym_LPAREN2] = ACTIONS(507), - [anon_sym_STAR] = ACTIONS(509), - [anon_sym_if] = ACTIONS(2286), - [anon_sym_switch] = ACTIONS(2288), - [anon_sym_case] = ACTIONS(2290), - [anon_sym_default] = ACTIONS(2292), - [anon_sym_while] = ACTIONS(2294), - [anon_sym_do] = ACTIONS(948), - [anon_sym_for] = ACTIONS(2296), - [anon_sym_return] = ACTIONS(525), - [anon_sym_break] = ACTIONS(527), - [anon_sym_continue] = ACTIONS(529), - [anon_sym_goto] = ACTIONS(531), - [anon_sym_AMP] = ACTIONS(509), - [anon_sym_BANG] = ACTIONS(533), - [anon_sym_TILDE] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DASH] = ACTIONS(537), - [anon_sym_DASH_DASH] = ACTIONS(539), - [anon_sym_PLUS_PLUS] = ACTIONS(539), - [anon_sym_sizeof] = ACTIONS(541), - [sym_number_literal] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(547), - [sym_false] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [sym_identifier] = ACTIONS(2298), - [sym_comment] = ACTIONS(37), + [sym_for_statement] = STATE(1178), + [sym_return_statement] = STATE(1178), + [sym_break_statement] = STATE(1178), + [sym_continue_statement] = STATE(1178), + [sym_goto_statement] = STATE(1178), + [sym__expression] = STATE(756), + [sym_comma_expression] = STATE(757), + [sym_conditional_expression] = STATE(756), + [sym_assignment_expression] = STATE(756), + [sym_pointer_expression] = STATE(756), + [sym_logical_expression] = STATE(756), + [sym_bitwise_expression] = STATE(756), + [sym_equality_expression] = STATE(756), + [sym_relational_expression] = STATE(756), + [sym_shift_expression] = STATE(756), + [sym_math_expression] = STATE(756), + [sym_cast_expression] = STATE(756), + [sym_sizeof_expression] = STATE(756), + [sym_subscript_expression] = STATE(756), + [sym_call_expression] = STATE(756), + [sym_field_expression] = STATE(756), + [sym_compound_literal_expression] = STATE(756), + [sym_parenthesized_expression] = STATE(756), + [sym_char_literal] = STATE(756), + [sym_concatenated_string] = STATE(756), + [sym_string_literal] = STATE(374), + [anon_sym_SEMI] = ACTIONS(1940), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_LPAREN2] = ACTIONS(936), + [anon_sym_STAR] = ACTIONS(938), + [anon_sym_if] = ACTIONS(2752), + [anon_sym_switch] = ACTIONS(2754), + [anon_sym_case] = ACTIONS(2756), + [anon_sym_default] = ACTIONS(2758), + [anon_sym_while] = ACTIONS(2760), + [anon_sym_do] = ACTIONS(1962), + [anon_sym_for] = ACTIONS(2762), + [anon_sym_return] = ACTIONS(1966), + [anon_sym_break] = ACTIONS(1968), + [anon_sym_continue] = ACTIONS(1970), + [anon_sym_goto] = ACTIONS(1972), + [anon_sym_AMP] = ACTIONS(938), + [anon_sym_BANG] = ACTIONS(962), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_DASH_DASH] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(968), + [anon_sym_sizeof] = ACTIONS(970), + [sym_number_literal] = ACTIONS(1974), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(1976), + [sym_false] = ACTIONS(1976), + [sym_null] = ACTIONS(1976), + [sym_identifier] = ACTIONS(2764), + [sym_comment] = ACTIONS(59), + }, + [1208] = { + [sym_argument_list] = STATE(98), + [aux_sym_for_statement_repeat1] = STATE(1235), + [anon_sym_COMMA] = ACTIONS(1002), + [anon_sym_RPAREN] = ACTIONS(3402), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(319), + [anon_sym_LBRACK] = ACTIONS(188), + [anon_sym_EQ] = ACTIONS(321), + [anon_sym_QMARK] = ACTIONS(323), + [anon_sym_STAR_EQ] = ACTIONS(325), + [anon_sym_SLASH_EQ] = ACTIONS(325), + [anon_sym_PERCENT_EQ] = ACTIONS(325), + [anon_sym_PLUS_EQ] = ACTIONS(325), + [anon_sym_DASH_EQ] = ACTIONS(325), + [anon_sym_LT_LT_EQ] = ACTIONS(325), + [anon_sym_GT_GT_EQ] = ACTIONS(325), + [anon_sym_AMP_EQ] = ACTIONS(325), + [anon_sym_CARET_EQ] = ACTIONS(325), + [anon_sym_PIPE_EQ] = ACTIONS(325), + [anon_sym_AMP] = ACTIONS(327), + [anon_sym_PIPE_PIPE] = ACTIONS(329), + [anon_sym_AMP_AMP] = ACTIONS(331), + [anon_sym_PIPE] = ACTIONS(333), + [anon_sym_CARET] = ACTIONS(335), + [anon_sym_EQ_EQ] = ACTIONS(337), + [anon_sym_BANG_EQ] = ACTIONS(337), + [anon_sym_LT] = ACTIONS(339), + [anon_sym_GT] = ACTIONS(339), + [anon_sym_LT_EQ] = ACTIONS(341), + [anon_sym_GT_EQ] = ACTIONS(341), + [anon_sym_LT_LT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(343), + [anon_sym_PLUS] = ACTIONS(345), + [anon_sym_DASH] = ACTIONS(345), + [anon_sym_SLASH] = ACTIONS(319), + [anon_sym_PERCENT] = ACTIONS(319), + [anon_sym_DASH_DASH] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(216), + [anon_sym_DOT] = ACTIONS(218), + [anon_sym_DASH_GT] = ACTIONS(218), + [sym_comment] = ACTIONS(59), + }, + [1209] = { + [sym__expression] = STATE(1236), + [sym_conditional_expression] = STATE(1236), + [sym_assignment_expression] = STATE(1236), + [sym_pointer_expression] = STATE(1236), + [sym_logical_expression] = STATE(1236), + [sym_bitwise_expression] = STATE(1236), + [sym_equality_expression] = STATE(1236), + [sym_relational_expression] = STATE(1236), + [sym_shift_expression] = STATE(1236), + [sym_math_expression] = STATE(1236), + [sym_cast_expression] = STATE(1236), + [sym_sizeof_expression] = STATE(1236), + [sym_subscript_expression] = STATE(1236), + [sym_call_expression] = STATE(1236), + [sym_field_expression] = STATE(1236), + [sym_compound_literal_expression] = STATE(1236), + [sym_parenthesized_expression] = STATE(1236), + [sym_char_literal] = STATE(1236), + [sym_concatenated_string] = STATE(1236), + [sym_string_literal] = STATE(55), + [anon_sym_RPAREN] = ACTIONS(3402), + [anon_sym_LPAREN2] = ACTIONS(85), + [anon_sym_STAR] = ACTIONS(87), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_PLUS] = ACTIONS(97), + [anon_sym_DASH] = ACTIONS(97), + [anon_sym_DASH_DASH] = ACTIONS(99), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(101), + [sym_number_literal] = ACTIONS(3404), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(3406), + [sym_false] = ACTIONS(3406), + [sym_null] = ACTIONS(3406), + [sym_identifier] = ACTIONS(3406), + [sym_comment] = ACTIONS(59), + }, + [1210] = { + [sym_argument_list] = STATE(98), + [anon_sym_SEMI] = ACTIONS(3408), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_LBRACK] = ACTIONS(188), + [anon_sym_EQ] = ACTIONS(1896), + [anon_sym_QMARK] = ACTIONS(1898), + [anon_sym_STAR_EQ] = ACTIONS(1900), + [anon_sym_SLASH_EQ] = ACTIONS(1900), + [anon_sym_PERCENT_EQ] = ACTIONS(1900), + [anon_sym_PLUS_EQ] = ACTIONS(1900), + [anon_sym_DASH_EQ] = ACTIONS(1900), + [anon_sym_LT_LT_EQ] = ACTIONS(1900), + [anon_sym_GT_GT_EQ] = ACTIONS(1900), + [anon_sym_AMP_EQ] = ACTIONS(1900), + [anon_sym_CARET_EQ] = ACTIONS(1900), + [anon_sym_PIPE_EQ] = ACTIONS(1900), + [anon_sym_AMP] = ACTIONS(1902), + [anon_sym_PIPE_PIPE] = ACTIONS(1904), + [anon_sym_AMP_AMP] = ACTIONS(1906), + [anon_sym_PIPE] = ACTIONS(1908), + [anon_sym_CARET] = ACTIONS(1910), + [anon_sym_EQ_EQ] = ACTIONS(1912), + [anon_sym_BANG_EQ] = ACTIONS(1912), + [anon_sym_LT] = ACTIONS(1914), + [anon_sym_GT] = ACTIONS(1914), + [anon_sym_LT_EQ] = ACTIONS(1916), + [anon_sym_GT_EQ] = ACTIONS(1916), + [anon_sym_LT_LT] = ACTIONS(1918), + [anon_sym_GT_GT] = ACTIONS(1918), + [anon_sym_PLUS] = ACTIONS(1920), + [anon_sym_DASH] = ACTIONS(1920), + [anon_sym_SLASH] = ACTIONS(1894), + [anon_sym_PERCENT] = ACTIONS(1894), + [anon_sym_DASH_DASH] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(216), + [anon_sym_DOT] = ACTIONS(218), + [anon_sym_DASH_GT] = ACTIONS(218), + [sym_comment] = ACTIONS(59), + }, + [1211] = { + [anon_sym_SEMI] = ACTIONS(3318), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3320), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3320), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3320), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3320), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3320), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3320), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(3320), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(3320), + [sym_preproc_directive] = ACTIONS(3320), + [anon_sym_typedef] = ACTIONS(3320), + [anon_sym_extern] = ACTIONS(3320), + [anon_sym_LBRACE] = ACTIONS(3318), + [anon_sym_LPAREN2] = ACTIONS(3318), + [anon_sym_STAR] = ACTIONS(3318), + [anon_sym_static] = ACTIONS(3320), + [anon_sym_auto] = ACTIONS(3320), + [anon_sym_register] = ACTIONS(3320), + [anon_sym_inline] = ACTIONS(3320), + [anon_sym_const] = ACTIONS(3320), + [anon_sym_restrict] = ACTIONS(3320), + [anon_sym_volatile] = ACTIONS(3320), + [anon_sym__Atomic] = ACTIONS(3320), + [anon_sym_unsigned] = ACTIONS(3320), + [anon_sym_long] = ACTIONS(3320), + [anon_sym_short] = ACTIONS(3320), + [sym_primitive_type] = ACTIONS(3320), + [anon_sym_enum] = ACTIONS(3320), + [anon_sym_struct] = ACTIONS(3320), + [anon_sym_union] = ACTIONS(3320), + [anon_sym_if] = ACTIONS(3320), + [anon_sym_else] = ACTIONS(3320), + [anon_sym_switch] = ACTIONS(3320), + [anon_sym_case] = ACTIONS(3320), + [anon_sym_default] = ACTIONS(3320), + [anon_sym_while] = ACTIONS(3320), + [anon_sym_do] = ACTIONS(3320), + [anon_sym_for] = ACTIONS(3320), + [anon_sym_return] = ACTIONS(3320), + [anon_sym_break] = ACTIONS(3320), + [anon_sym_continue] = ACTIONS(3320), + [anon_sym_goto] = ACTIONS(3320), + [anon_sym_AMP] = ACTIONS(3318), + [anon_sym_BANG] = ACTIONS(3318), + [anon_sym_TILDE] = ACTIONS(3318), + [anon_sym_PLUS] = ACTIONS(3320), + [anon_sym_DASH] = ACTIONS(3320), + [anon_sym_DASH_DASH] = ACTIONS(3318), + [anon_sym_PLUS_PLUS] = ACTIONS(3318), + [anon_sym_sizeof] = ACTIONS(3320), + [sym_number_literal] = ACTIONS(3318), + [anon_sym_SQUOTE] = ACTIONS(3318), + [anon_sym_DQUOTE] = ACTIONS(3318), + [sym_true] = ACTIONS(3320), + [sym_false] = ACTIONS(3320), + [sym_null] = ACTIONS(3320), + [sym_identifier] = ACTIONS(3320), + [sym_comment] = ACTIONS(59), + }, + [1212] = { + [sym_compound_statement] = STATE(1238), + [sym_labeled_statement] = STATE(1238), + [sym_expression_statement] = STATE(1238), + [sym_if_statement] = STATE(1238), + [sym_switch_statement] = STATE(1238), + [sym_case_statement] = STATE(1238), + [sym_while_statement] = STATE(1238), + [sym_do_statement] = STATE(1238), + [sym_for_statement] = STATE(1238), + [sym_return_statement] = STATE(1238), + [sym_break_statement] = STATE(1238), + [sym_continue_statement] = STATE(1238), + [sym_goto_statement] = STATE(1238), + [sym__expression] = STATE(756), + [sym_comma_expression] = STATE(757), + [sym_conditional_expression] = STATE(756), + [sym_assignment_expression] = STATE(756), + [sym_pointer_expression] = STATE(756), + [sym_logical_expression] = STATE(756), + [sym_bitwise_expression] = STATE(756), + [sym_equality_expression] = STATE(756), + [sym_relational_expression] = STATE(756), + [sym_shift_expression] = STATE(756), + [sym_math_expression] = STATE(756), + [sym_cast_expression] = STATE(756), + [sym_sizeof_expression] = STATE(756), + [sym_subscript_expression] = STATE(756), + [sym_call_expression] = STATE(756), + [sym_field_expression] = STATE(756), + [sym_compound_literal_expression] = STATE(756), + [sym_parenthesized_expression] = STATE(756), + [sym_char_literal] = STATE(756), + [sym_concatenated_string] = STATE(756), + [sym_string_literal] = STATE(374), + [anon_sym_SEMI] = ACTIONS(1940), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_LPAREN2] = ACTIONS(936), + [anon_sym_STAR] = ACTIONS(938), + [anon_sym_if] = ACTIONS(1952), + [anon_sym_switch] = ACTIONS(1954), + [anon_sym_case] = ACTIONS(1956), + [anon_sym_default] = ACTIONS(1958), + [anon_sym_while] = ACTIONS(1960), + [anon_sym_do] = ACTIONS(1962), + [anon_sym_for] = ACTIONS(1964), + [anon_sym_return] = ACTIONS(1966), + [anon_sym_break] = ACTIONS(1968), + [anon_sym_continue] = ACTIONS(1970), + [anon_sym_goto] = ACTIONS(1972), + [anon_sym_AMP] = ACTIONS(938), + [anon_sym_BANG] = ACTIONS(962), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_DASH_DASH] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(968), + [anon_sym_sizeof] = ACTIONS(970), + [sym_number_literal] = ACTIONS(1974), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(1976), + [sym_false] = ACTIONS(1976), + [sym_null] = ACTIONS(1976), + [sym_identifier] = ACTIONS(2766), + [sym_comment] = ACTIONS(59), + }, + [1213] = { + [aux_sym_for_statement_repeat1] = STATE(593), + [anon_sym_COMMA] = ACTIONS(1002), + [anon_sym_RPAREN] = ACTIONS(3410), + [sym_comment] = ACTIONS(59), + }, + [1214] = { + [sym_argument_list] = STATE(98), + [aux_sym_for_statement_repeat1] = STATE(1240), + [anon_sym_COMMA] = ACTIONS(1002), + [anon_sym_RPAREN] = ACTIONS(3410), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(319), + [anon_sym_LBRACK] = ACTIONS(188), + [anon_sym_EQ] = ACTIONS(321), + [anon_sym_QMARK] = ACTIONS(323), + [anon_sym_STAR_EQ] = ACTIONS(325), + [anon_sym_SLASH_EQ] = ACTIONS(325), + [anon_sym_PERCENT_EQ] = ACTIONS(325), + [anon_sym_PLUS_EQ] = ACTIONS(325), + [anon_sym_DASH_EQ] = ACTIONS(325), + [anon_sym_LT_LT_EQ] = ACTIONS(325), + [anon_sym_GT_GT_EQ] = ACTIONS(325), + [anon_sym_AMP_EQ] = ACTIONS(325), + [anon_sym_CARET_EQ] = ACTIONS(325), + [anon_sym_PIPE_EQ] = ACTIONS(325), + [anon_sym_AMP] = ACTIONS(327), + [anon_sym_PIPE_PIPE] = ACTIONS(329), + [anon_sym_AMP_AMP] = ACTIONS(331), + [anon_sym_PIPE] = ACTIONS(333), + [anon_sym_CARET] = ACTIONS(335), + [anon_sym_EQ_EQ] = ACTIONS(337), + [anon_sym_BANG_EQ] = ACTIONS(337), + [anon_sym_LT] = ACTIONS(339), + [anon_sym_GT] = ACTIONS(339), + [anon_sym_LT_EQ] = ACTIONS(341), + [anon_sym_GT_EQ] = ACTIONS(341), + [anon_sym_LT_LT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(343), + [anon_sym_PLUS] = ACTIONS(345), + [anon_sym_DASH] = ACTIONS(345), + [anon_sym_SLASH] = ACTIONS(319), + [anon_sym_PERCENT] = ACTIONS(319), + [anon_sym_DASH_DASH] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(216), + [anon_sym_DOT] = ACTIONS(218), + [anon_sym_DASH_GT] = ACTIONS(218), + [sym_comment] = ACTIONS(59), + }, + [1215] = { + [sym_compound_statement] = STATE(1194), + [sym_labeled_statement] = STATE(1194), + [sym_expression_statement] = STATE(1194), + [sym_if_statement] = STATE(1194), + [sym_switch_statement] = STATE(1194), + [sym_case_statement] = STATE(1194), + [sym_while_statement] = STATE(1194), + [sym_do_statement] = STATE(1194), + [sym_for_statement] = STATE(1194), + [sym_return_statement] = STATE(1194), + [sym_break_statement] = STATE(1194), + [sym_continue_statement] = STATE(1194), + [sym_goto_statement] = STATE(1194), + [sym__expression] = STATE(372), + [sym_comma_expression] = STATE(373), + [sym_conditional_expression] = STATE(372), + [sym_assignment_expression] = STATE(372), + [sym_pointer_expression] = STATE(372), + [sym_logical_expression] = STATE(372), + [sym_bitwise_expression] = STATE(372), + [sym_equality_expression] = STATE(372), + [sym_relational_expression] = STATE(372), + [sym_shift_expression] = STATE(372), + [sym_math_expression] = STATE(372), + [sym_cast_expression] = STATE(372), + [sym_sizeof_expression] = STATE(372), + [sym_subscript_expression] = STATE(372), + [sym_call_expression] = STATE(372), + [sym_field_expression] = STATE(372), + [sym_compound_literal_expression] = STATE(372), + [sym_parenthesized_expression] = STATE(372), + [sym_char_literal] = STATE(372), + [sym_concatenated_string] = STATE(372), + [sym_string_literal] = STATE(374), + [anon_sym_SEMI] = ACTIONS(928), + [anon_sym_LBRACE] = ACTIONS(439), + [anon_sym_LPAREN2] = ACTIONS(936), + [anon_sym_STAR] = ACTIONS(938), + [anon_sym_if] = ACTIONS(1988), + [anon_sym_switch] = ACTIONS(1990), + [anon_sym_case] = ACTIONS(1992), + [anon_sym_default] = ACTIONS(1994), + [anon_sym_while] = ACTIONS(1996), + [anon_sym_do] = ACTIONS(950), + [anon_sym_for] = ACTIONS(1998), + [anon_sym_return] = ACTIONS(954), + [anon_sym_break] = ACTIONS(956), + [anon_sym_continue] = ACTIONS(958), + [anon_sym_goto] = ACTIONS(960), + [anon_sym_AMP] = ACTIONS(938), + [anon_sym_BANG] = ACTIONS(962), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_DASH_DASH] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(968), + [anon_sym_sizeof] = ACTIONS(970), + [sym_number_literal] = ACTIONS(972), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(974), + [sym_false] = ACTIONS(974), + [sym_null] = ACTIONS(974), + [sym_identifier] = ACTIONS(2000), + [sym_comment] = ACTIONS(59), }, [1216] = { - [aux_sym_for_statement_repeat1] = STATE(991), - [anon_sym_COMMA] = ACTIONS(2344), - [anon_sym_RPAREN] = ACTIONS(3317), - [sym_comment] = ACTIONS(37), + [aux_sym_for_statement_repeat1] = STATE(593), + [anon_sym_COMMA] = ACTIONS(1002), + [anon_sym_RPAREN] = ACTIONS(3412), + [sym_comment] = ACTIONS(59), }, [1217] = { - [sym_compound_statement] = STATE(1206), - [sym_labeled_statement] = STATE(1206), - [sym_expression_statement] = STATE(1206), - [sym_if_statement] = STATE(1206), - [sym_switch_statement] = STATE(1206), - [sym_case_statement] = STATE(1206), - [sym_while_statement] = STATE(1206), - [sym_do_statement] = STATE(1206), - [sym_for_statement] = STATE(1206), - [sym_return_statement] = STATE(1206), - [sym_break_statement] = STATE(1206), - [sym_continue_statement] = STATE(1206), - [sym_goto_statement] = STATE(1206), - [sym__expression] = STATE(800), - [sym_comma_expression] = STATE(801), - [sym_conditional_expression] = STATE(800), - [sym_assignment_expression] = STATE(800), - [sym_pointer_expression] = STATE(800), - [sym_logical_expression] = STATE(800), - [sym_bitwise_expression] = STATE(800), - [sym_equality_expression] = STATE(800), - [sym_relational_expression] = STATE(800), - [sym_shift_expression] = STATE(800), - [sym_math_expression] = STATE(800), - [sym_cast_expression] = STATE(800), - [sym_sizeof_expression] = STATE(800), - [sym_subscript_expression] = STATE(800), - [sym_call_expression] = STATE(800), - [sym_field_expression] = STATE(800), - [sym_compound_literal_expression] = STATE(800), - [sym_parenthesized_expression] = STATE(800), - [sym_char_literal] = STATE(800), - [sym_concatenated_string] = STATE(800), - [sym_string_literal] = STATE(230), - [anon_sym_SEMI] = ACTIONS(2082), - [anon_sym_LBRACE] = ACTIONS(1181), - [anon_sym_LPAREN2] = ACTIONS(507), - [anon_sym_STAR] = ACTIONS(509), - [anon_sym_if] = ACTIONS(2788), - [anon_sym_switch] = ACTIONS(2790), - [anon_sym_case] = ACTIONS(2792), - [anon_sym_default] = ACTIONS(2794), - [anon_sym_while] = ACTIONS(2796), - [anon_sym_do] = ACTIONS(2094), - [anon_sym_for] = ACTIONS(2798), - [anon_sym_return] = ACTIONS(2098), - [anon_sym_break] = ACTIONS(2100), - [anon_sym_continue] = ACTIONS(2102), - [anon_sym_goto] = ACTIONS(2104), - [anon_sym_AMP] = ACTIONS(509), - [anon_sym_BANG] = ACTIONS(533), - [anon_sym_TILDE] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DASH] = ACTIONS(537), - [anon_sym_DASH_DASH] = ACTIONS(539), - [anon_sym_PLUS_PLUS] = ACTIONS(539), - [anon_sym_sizeof] = ACTIONS(541), - [sym_number_literal] = ACTIONS(2106), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(2108), - [sym_false] = ACTIONS(2108), - [sym_null] = ACTIONS(2108), - [sym_identifier] = ACTIONS(2800), - [sym_comment] = ACTIONS(37), + [sym_argument_list] = STATE(98), + [aux_sym_for_statement_repeat1] = STATE(1242), + [anon_sym_COMMA] = ACTIONS(1002), + [anon_sym_RPAREN] = ACTIONS(3412), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(319), + [anon_sym_LBRACK] = ACTIONS(188), + [anon_sym_EQ] = ACTIONS(321), + [anon_sym_QMARK] = ACTIONS(323), + [anon_sym_STAR_EQ] = ACTIONS(325), + [anon_sym_SLASH_EQ] = ACTIONS(325), + [anon_sym_PERCENT_EQ] = ACTIONS(325), + [anon_sym_PLUS_EQ] = ACTIONS(325), + [anon_sym_DASH_EQ] = ACTIONS(325), + [anon_sym_LT_LT_EQ] = ACTIONS(325), + [anon_sym_GT_GT_EQ] = ACTIONS(325), + [anon_sym_AMP_EQ] = ACTIONS(325), + [anon_sym_CARET_EQ] = ACTIONS(325), + [anon_sym_PIPE_EQ] = ACTIONS(325), + [anon_sym_AMP] = ACTIONS(327), + [anon_sym_PIPE_PIPE] = ACTIONS(329), + [anon_sym_AMP_AMP] = ACTIONS(331), + [anon_sym_PIPE] = ACTIONS(333), + [anon_sym_CARET] = ACTIONS(335), + [anon_sym_EQ_EQ] = ACTIONS(337), + [anon_sym_BANG_EQ] = ACTIONS(337), + [anon_sym_LT] = ACTIONS(339), + [anon_sym_GT] = ACTIONS(339), + [anon_sym_LT_EQ] = ACTIONS(341), + [anon_sym_GT_EQ] = ACTIONS(341), + [anon_sym_LT_LT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(343), + [anon_sym_PLUS] = ACTIONS(345), + [anon_sym_DASH] = ACTIONS(345), + [anon_sym_SLASH] = ACTIONS(319), + [anon_sym_PERCENT] = ACTIONS(319), + [anon_sym_DASH_DASH] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(216), + [anon_sym_DOT] = ACTIONS(218), + [anon_sym_DASH_GT] = ACTIONS(218), + [sym_comment] = ACTIONS(59), }, [1218] = { - [aux_sym_for_statement_repeat1] = STATE(991), - [anon_sym_COMMA] = ACTIONS(2344), - [anon_sym_RPAREN] = ACTIONS(3319), - [sym_comment] = ACTIONS(37), + [sym_compound_statement] = STATE(1155), + [sym_labeled_statement] = STATE(1155), + [sym_expression_statement] = STATE(1155), + [sym_if_statement] = STATE(1155), + [sym_switch_statement] = STATE(1155), + [sym_case_statement] = STATE(1155), + [sym_while_statement] = STATE(1155), + [sym_do_statement] = STATE(1155), + [sym_for_statement] = STATE(1155), + [sym_return_statement] = STATE(1155), + [sym_break_statement] = STATE(1155), + [sym_continue_statement] = STATE(1155), + [sym_goto_statement] = STATE(1155), + [sym__expression] = STATE(372), + [sym_comma_expression] = STATE(373), + [sym_conditional_expression] = STATE(372), + [sym_assignment_expression] = STATE(372), + [sym_pointer_expression] = STATE(372), + [sym_logical_expression] = STATE(372), + [sym_bitwise_expression] = STATE(372), + [sym_equality_expression] = STATE(372), + [sym_relational_expression] = STATE(372), + [sym_shift_expression] = STATE(372), + [sym_math_expression] = STATE(372), + [sym_cast_expression] = STATE(372), + [sym_sizeof_expression] = STATE(372), + [sym_subscript_expression] = STATE(372), + [sym_call_expression] = STATE(372), + [sym_field_expression] = STATE(372), + [sym_compound_literal_expression] = STATE(372), + [sym_parenthesized_expression] = STATE(372), + [sym_char_literal] = STATE(372), + [sym_concatenated_string] = STATE(372), + [sym_string_literal] = STATE(374), + [anon_sym_SEMI] = ACTIONS(928), + [anon_sym_LBRACE] = ACTIONS(439), + [anon_sym_LPAREN2] = ACTIONS(936), + [anon_sym_STAR] = ACTIONS(938), + [anon_sym_if] = ACTIONS(2587), + [anon_sym_switch] = ACTIONS(2589), + [anon_sym_case] = ACTIONS(2591), + [anon_sym_default] = ACTIONS(2593), + [anon_sym_while] = ACTIONS(2595), + [anon_sym_do] = ACTIONS(1466), + [anon_sym_for] = ACTIONS(2597), + [anon_sym_return] = ACTIONS(954), + [anon_sym_break] = ACTIONS(956), + [anon_sym_continue] = ACTIONS(958), + [anon_sym_goto] = ACTIONS(960), + [anon_sym_AMP] = ACTIONS(938), + [anon_sym_BANG] = ACTIONS(962), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_DASH_DASH] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(968), + [anon_sym_sizeof] = ACTIONS(970), + [sym_number_literal] = ACTIONS(972), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(974), + [sym_false] = ACTIONS(974), + [sym_null] = ACTIONS(974), + [sym_identifier] = ACTIONS(2599), + [sym_comment] = ACTIONS(59), }, [1219] = { - [sym_argument_list] = STATE(430), - [aux_sym_for_statement_repeat1] = STATE(1227), - [anon_sym_COMMA] = ACTIONS(2344), - [anon_sym_RPAREN] = ACTIONS(3319), - [anon_sym_LPAREN2] = ACTIONS(1012), - [anon_sym_STAR] = ACTIONS(1437), - [anon_sym_LBRACK] = ACTIONS(1016), - [anon_sym_EQ] = ACTIONS(1439), - [anon_sym_QMARK] = ACTIONS(1441), - [anon_sym_STAR_EQ] = ACTIONS(1443), - [anon_sym_SLASH_EQ] = ACTIONS(1443), - [anon_sym_PERCENT_EQ] = ACTIONS(1443), - [anon_sym_PLUS_EQ] = ACTIONS(1443), - [anon_sym_DASH_EQ] = ACTIONS(1443), - [anon_sym_LT_LT_EQ] = ACTIONS(1443), - [anon_sym_GT_GT_EQ] = ACTIONS(1443), - [anon_sym_AMP_EQ] = ACTIONS(1443), - [anon_sym_CARET_EQ] = ACTIONS(1443), - [anon_sym_PIPE_EQ] = ACTIONS(1443), - [anon_sym_AMP] = ACTIONS(1445), - [anon_sym_PIPE_PIPE] = ACTIONS(1447), - [anon_sym_AMP_AMP] = ACTIONS(1449), - [anon_sym_PIPE] = ACTIONS(1451), - [anon_sym_CARET] = ACTIONS(1453), - [anon_sym_EQ_EQ] = ACTIONS(1455), - [anon_sym_BANG_EQ] = ACTIONS(1455), - [anon_sym_LT] = ACTIONS(1457), - [anon_sym_GT] = ACTIONS(1457), - [anon_sym_LT_EQ] = ACTIONS(1459), - [anon_sym_GT_EQ] = ACTIONS(1459), - [anon_sym_LT_LT] = ACTIONS(1461), - [anon_sym_GT_GT] = ACTIONS(1461), - [anon_sym_PLUS] = ACTIONS(1463), - [anon_sym_DASH] = ACTIONS(1463), - [anon_sym_SLASH] = ACTIONS(1437), - [anon_sym_PERCENT] = ACTIONS(1437), - [anon_sym_DASH_DASH] = ACTIONS(1044), - [anon_sym_PLUS_PLUS] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1046), - [anon_sym_DASH_GT] = ACTIONS(1046), - [sym_comment] = ACTIONS(37), + [aux_sym_for_statement_repeat1] = STATE(593), + [anon_sym_COMMA] = ACTIONS(1002), + [anon_sym_RPAREN] = ACTIONS(3414), + [sym_comment] = ACTIONS(59), }, [1220] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3277), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3277), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3277), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3277), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3277), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3277), - [sym_preproc_directive] = ACTIONS(3277), - [anon_sym_SEMI] = ACTIONS(3279), - [anon_sym_typedef] = ACTIONS(3277), - [anon_sym_extern] = ACTIONS(3277), - [anon_sym_LBRACE] = ACTIONS(3279), - [anon_sym_LPAREN2] = ACTIONS(3279), - [anon_sym_STAR] = ACTIONS(3279), - [anon_sym_static] = ACTIONS(3277), - [anon_sym_auto] = ACTIONS(3277), - [anon_sym_register] = ACTIONS(3277), - [anon_sym_inline] = ACTIONS(3277), - [anon_sym_const] = ACTIONS(3277), - [anon_sym_restrict] = ACTIONS(3277), - [anon_sym_volatile] = ACTIONS(3277), - [anon_sym__Atomic] = ACTIONS(3277), - [anon_sym_unsigned] = ACTIONS(3277), - [anon_sym_long] = ACTIONS(3277), - [anon_sym_short] = ACTIONS(3277), - [sym_primitive_type] = ACTIONS(3277), - [anon_sym_enum] = ACTIONS(3277), - [anon_sym_struct] = ACTIONS(3277), - [anon_sym_union] = ACTIONS(3277), - [anon_sym_if] = ACTIONS(3277), - [anon_sym_else] = ACTIONS(3277), - [anon_sym_switch] = ACTIONS(3277), - [anon_sym_case] = ACTIONS(3277), - [anon_sym_default] = ACTIONS(3277), - [anon_sym_while] = ACTIONS(3277), - [anon_sym_do] = ACTIONS(3277), - [anon_sym_for] = ACTIONS(3277), - [anon_sym_return] = ACTIONS(3277), - [anon_sym_break] = ACTIONS(3277), - [anon_sym_continue] = ACTIONS(3277), - [anon_sym_goto] = ACTIONS(3277), - [anon_sym_AMP] = ACTIONS(3279), - [anon_sym_BANG] = ACTIONS(3279), - [anon_sym_TILDE] = ACTIONS(3279), - [anon_sym_PLUS] = ACTIONS(3277), - [anon_sym_DASH] = ACTIONS(3277), - [anon_sym_DASH_DASH] = ACTIONS(3279), - [anon_sym_PLUS_PLUS] = ACTIONS(3279), - [anon_sym_sizeof] = ACTIONS(3277), - [sym_number_literal] = ACTIONS(3279), - [anon_sym_SQUOTE] = ACTIONS(3279), - [anon_sym_DQUOTE] = ACTIONS(3279), - [sym_true] = ACTIONS(3277), - [sym_false] = ACTIONS(3277), - [sym_null] = ACTIONS(3277), - [sym_identifier] = ACTIONS(3277), - [sym_comment] = ACTIONS(37), + [sym_argument_list] = STATE(98), + [aux_sym_for_statement_repeat1] = STATE(1244), + [anon_sym_COMMA] = ACTIONS(1002), + [anon_sym_RPAREN] = ACTIONS(3414), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(319), + [anon_sym_LBRACK] = ACTIONS(188), + [anon_sym_EQ] = ACTIONS(321), + [anon_sym_QMARK] = ACTIONS(323), + [anon_sym_STAR_EQ] = ACTIONS(325), + [anon_sym_SLASH_EQ] = ACTIONS(325), + [anon_sym_PERCENT_EQ] = ACTIONS(325), + [anon_sym_PLUS_EQ] = ACTIONS(325), + [anon_sym_DASH_EQ] = ACTIONS(325), + [anon_sym_LT_LT_EQ] = ACTIONS(325), + [anon_sym_GT_GT_EQ] = ACTIONS(325), + [anon_sym_AMP_EQ] = ACTIONS(325), + [anon_sym_CARET_EQ] = ACTIONS(325), + [anon_sym_PIPE_EQ] = ACTIONS(325), + [anon_sym_AMP] = ACTIONS(327), + [anon_sym_PIPE_PIPE] = ACTIONS(329), + [anon_sym_AMP_AMP] = ACTIONS(331), + [anon_sym_PIPE] = ACTIONS(333), + [anon_sym_CARET] = ACTIONS(335), + [anon_sym_EQ_EQ] = ACTIONS(337), + [anon_sym_BANG_EQ] = ACTIONS(337), + [anon_sym_LT] = ACTIONS(339), + [anon_sym_GT] = ACTIONS(339), + [anon_sym_LT_EQ] = ACTIONS(341), + [anon_sym_GT_EQ] = ACTIONS(341), + [anon_sym_LT_LT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(343), + [anon_sym_PLUS] = ACTIONS(345), + [anon_sym_DASH] = ACTIONS(345), + [anon_sym_SLASH] = ACTIONS(319), + [anon_sym_PERCENT] = ACTIONS(319), + [anon_sym_DASH_DASH] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(216), + [anon_sym_DOT] = ACTIONS(218), + [anon_sym_DASH_GT] = ACTIONS(218), + [sym_comment] = ACTIONS(59), }, [1221] = { - [sym_compound_statement] = STATE(1228), - [sym_labeled_statement] = STATE(1228), - [sym_expression_statement] = STATE(1228), - [sym_if_statement] = STATE(1228), - [sym_switch_statement] = STATE(1228), - [sym_case_statement] = STATE(1228), - [sym_while_statement] = STATE(1228), - [sym_do_statement] = STATE(1228), - [sym_for_statement] = STATE(1228), - [sym_return_statement] = STATE(1228), - [sym_break_statement] = STATE(1228), - [sym_continue_statement] = STATE(1228), - [sym_goto_statement] = STATE(1228), - [sym__expression] = STATE(800), - [sym_comma_expression] = STATE(801), - [sym_conditional_expression] = STATE(800), - [sym_assignment_expression] = STATE(800), - [sym_pointer_expression] = STATE(800), - [sym_logical_expression] = STATE(800), - [sym_bitwise_expression] = STATE(800), - [sym_equality_expression] = STATE(800), - [sym_relational_expression] = STATE(800), - [sym_shift_expression] = STATE(800), - [sym_math_expression] = STATE(800), - [sym_cast_expression] = STATE(800), - [sym_sizeof_expression] = STATE(800), - [sym_subscript_expression] = STATE(800), - [sym_call_expression] = STATE(800), - [sym_field_expression] = STATE(800), - [sym_compound_literal_expression] = STATE(800), - [sym_parenthesized_expression] = STATE(800), - [sym_char_literal] = STATE(800), - [sym_concatenated_string] = STATE(800), - [sym_string_literal] = STATE(230), - [anon_sym_SEMI] = ACTIONS(2082), - [anon_sym_LBRACE] = ACTIONS(1181), - [anon_sym_LPAREN2] = ACTIONS(507), - [anon_sym_STAR] = ACTIONS(509), - [anon_sym_if] = ACTIONS(2084), - [anon_sym_switch] = ACTIONS(2086), - [anon_sym_case] = ACTIONS(2088), - [anon_sym_default] = ACTIONS(2090), - [anon_sym_while] = ACTIONS(2092), - [anon_sym_do] = ACTIONS(2094), - [anon_sym_for] = ACTIONS(2096), - [anon_sym_return] = ACTIONS(2098), - [anon_sym_break] = ACTIONS(2100), - [anon_sym_continue] = ACTIONS(2102), - [anon_sym_goto] = ACTIONS(2104), - [anon_sym_AMP] = ACTIONS(509), - [anon_sym_BANG] = ACTIONS(533), - [anon_sym_TILDE] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DASH] = ACTIONS(537), - [anon_sym_DASH_DASH] = ACTIONS(539), - [anon_sym_PLUS_PLUS] = ACTIONS(539), - [anon_sym_sizeof] = ACTIONS(541), - [sym_number_literal] = ACTIONS(2106), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(2108), - [sym_false] = ACTIONS(2108), - [sym_null] = ACTIONS(2108), - [sym_identifier] = ACTIONS(2802), - [sym_comment] = ACTIONS(37), + [sym__expression] = STATE(1245), + [sym_conditional_expression] = STATE(1245), + [sym_assignment_expression] = STATE(1245), + [sym_pointer_expression] = STATE(1245), + [sym_logical_expression] = STATE(1245), + [sym_bitwise_expression] = STATE(1245), + [sym_equality_expression] = STATE(1245), + [sym_relational_expression] = STATE(1245), + [sym_shift_expression] = STATE(1245), + [sym_math_expression] = STATE(1245), + [sym_cast_expression] = STATE(1245), + [sym_sizeof_expression] = STATE(1245), + [sym_subscript_expression] = STATE(1245), + [sym_call_expression] = STATE(1245), + [sym_field_expression] = STATE(1245), + [sym_compound_literal_expression] = STATE(1245), + [sym_parenthesized_expression] = STATE(1245), + [sym_char_literal] = STATE(1245), + [sym_concatenated_string] = STATE(1245), + [sym_string_literal] = STATE(55), + [anon_sym_RPAREN] = ACTIONS(3414), + [anon_sym_LPAREN2] = ACTIONS(85), + [anon_sym_STAR] = ACTIONS(87), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_PLUS] = ACTIONS(97), + [anon_sym_DASH] = ACTIONS(97), + [anon_sym_DASH_DASH] = ACTIONS(99), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(101), + [sym_number_literal] = ACTIONS(3416), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(3418), + [sym_false] = ACTIONS(3418), + [sym_null] = ACTIONS(3418), + [sym_identifier] = ACTIONS(3418), + [sym_comment] = ACTIONS(59), }, [1222] = { - [sym_compound_statement] = STATE(1212), - [sym_labeled_statement] = STATE(1212), - [sym_expression_statement] = STATE(1212), - [sym_if_statement] = STATE(1212), - [sym_switch_statement] = STATE(1212), - [sym_case_statement] = STATE(1212), - [sym_while_statement] = STATE(1212), - [sym_do_statement] = STATE(1212), - [sym_for_statement] = STATE(1212), - [sym_return_statement] = STATE(1212), - [sym_break_statement] = STATE(1212), - [sym_continue_statement] = STATE(1212), - [sym_goto_statement] = STATE(1212), - [sym__expression] = STATE(594), - [sym_comma_expression] = STATE(595), - [sym_conditional_expression] = STATE(594), - [sym_assignment_expression] = STATE(594), - [sym_pointer_expression] = STATE(594), - [sym_logical_expression] = STATE(594), - [sym_bitwise_expression] = STATE(594), - [sym_equality_expression] = STATE(594), - [sym_relational_expression] = STATE(594), - [sym_shift_expression] = STATE(594), - [sym_math_expression] = STATE(594), - [sym_cast_expression] = STATE(594), - [sym_sizeof_expression] = STATE(594), - [sym_subscript_expression] = STATE(594), - [sym_call_expression] = STATE(594), - [sym_field_expression] = STATE(594), - [sym_compound_literal_expression] = STATE(594), - [sym_parenthesized_expression] = STATE(594), - [sym_char_literal] = STATE(594), - [sym_concatenated_string] = STATE(594), - [sym_string_literal] = STATE(230), - [anon_sym_SEMI] = ACTIONS(1395), - [anon_sym_LBRACE] = ACTIONS(678), - [anon_sym_LPAREN2] = ACTIONS(507), - [anon_sym_STAR] = ACTIONS(509), - [anon_sym_if] = ACTIONS(2521), - [anon_sym_switch] = ACTIONS(2523), - [anon_sym_case] = ACTIONS(2525), - [anon_sym_default] = ACTIONS(2527), - [anon_sym_while] = ACTIONS(2529), - [anon_sym_do] = ACTIONS(1407), - [anon_sym_for] = ACTIONS(2531), - [anon_sym_return] = ACTIONS(1411), - [anon_sym_break] = ACTIONS(1413), - [anon_sym_continue] = ACTIONS(1415), - [anon_sym_goto] = ACTIONS(1417), - [anon_sym_AMP] = ACTIONS(509), - [anon_sym_BANG] = ACTIONS(533), - [anon_sym_TILDE] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DASH] = ACTIONS(537), - [anon_sym_DASH_DASH] = ACTIONS(539), - [anon_sym_PLUS_PLUS] = ACTIONS(539), - [anon_sym_sizeof] = ACTIONS(541), - [sym_number_literal] = ACTIONS(1419), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(1421), - [sym_false] = ACTIONS(1421), - [sym_null] = ACTIONS(1421), - [sym_identifier] = ACTIONS(2533), - [sym_comment] = ACTIONS(37), + [sym_compound_statement] = STATE(1224), + [sym_labeled_statement] = STATE(1224), + [sym_expression_statement] = STATE(1224), + [sym_if_statement] = STATE(1224), + [sym_switch_statement] = STATE(1224), + [sym_case_statement] = STATE(1224), + [sym_while_statement] = STATE(1224), + [sym_do_statement] = STATE(1224), + [sym_for_statement] = STATE(1224), + [sym_return_statement] = STATE(1224), + [sym_break_statement] = STATE(1224), + [sym_continue_statement] = STATE(1224), + [sym_goto_statement] = STATE(1224), + [sym__expression] = STATE(372), + [sym_comma_expression] = STATE(373), + [sym_conditional_expression] = STATE(372), + [sym_assignment_expression] = STATE(372), + [sym_pointer_expression] = STATE(372), + [sym_logical_expression] = STATE(372), + [sym_bitwise_expression] = STATE(372), + [sym_equality_expression] = STATE(372), + [sym_relational_expression] = STATE(372), + [sym_shift_expression] = STATE(372), + [sym_math_expression] = STATE(372), + [sym_cast_expression] = STATE(372), + [sym_sizeof_expression] = STATE(372), + [sym_subscript_expression] = STATE(372), + [sym_call_expression] = STATE(372), + [sym_field_expression] = STATE(372), + [sym_compound_literal_expression] = STATE(372), + [sym_parenthesized_expression] = STATE(372), + [sym_char_literal] = STATE(372), + [sym_concatenated_string] = STATE(372), + [sym_string_literal] = STATE(374), + [anon_sym_SEMI] = ACTIONS(928), + [anon_sym_LBRACE] = ACTIONS(439), + [anon_sym_LPAREN2] = ACTIONS(936), + [anon_sym_STAR] = ACTIONS(938), + [anon_sym_if] = ACTIONS(1456), + [anon_sym_switch] = ACTIONS(1458), + [anon_sym_case] = ACTIONS(1460), + [anon_sym_default] = ACTIONS(1462), + [anon_sym_while] = ACTIONS(1464), + [anon_sym_do] = ACTIONS(1466), + [anon_sym_for] = ACTIONS(1468), + [anon_sym_return] = ACTIONS(954), + [anon_sym_break] = ACTIONS(956), + [anon_sym_continue] = ACTIONS(958), + [anon_sym_goto] = ACTIONS(960), + [anon_sym_AMP] = ACTIONS(938), + [anon_sym_BANG] = ACTIONS(962), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_DASH_DASH] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(968), + [anon_sym_sizeof] = ACTIONS(970), + [sym_number_literal] = ACTIONS(972), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(974), + [sym_false] = ACTIONS(974), + [sym_null] = ACTIONS(974), + [sym_identifier] = ACTIONS(1470), + [sym_comment] = ACTIONS(59), }, [1223] = { - [aux_sym_for_statement_repeat1] = STATE(991), - [anon_sym_COMMA] = ACTIONS(2344), - [anon_sym_RPAREN] = ACTIONS(3321), - [sym_comment] = ACTIONS(37), + [aux_sym_for_statement_repeat1] = STATE(593), + [anon_sym_COMMA] = ACTIONS(1002), + [anon_sym_RPAREN] = ACTIONS(3420), + [sym_comment] = ACTIONS(59), }, [1224] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3303), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3303), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3303), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3303), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3303), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3303), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(3303), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(3303), - [sym_preproc_directive] = ACTIONS(3303), - [anon_sym_SEMI] = ACTIONS(3305), - [anon_sym_typedef] = ACTIONS(3303), - [anon_sym_extern] = ACTIONS(3303), - [anon_sym_LBRACE] = ACTIONS(3305), - [anon_sym_LPAREN2] = ACTIONS(3305), - [anon_sym_STAR] = ACTIONS(3305), - [anon_sym_static] = ACTIONS(3303), - [anon_sym_auto] = ACTIONS(3303), - [anon_sym_register] = ACTIONS(3303), - [anon_sym_inline] = ACTIONS(3303), - [anon_sym_const] = ACTIONS(3303), - [anon_sym_restrict] = ACTIONS(3303), - [anon_sym_volatile] = ACTIONS(3303), - [anon_sym__Atomic] = ACTIONS(3303), - [anon_sym_unsigned] = ACTIONS(3303), - [anon_sym_long] = ACTIONS(3303), - [anon_sym_short] = ACTIONS(3303), - [sym_primitive_type] = ACTIONS(3303), - [anon_sym_enum] = ACTIONS(3303), - [anon_sym_struct] = ACTIONS(3303), - [anon_sym_union] = ACTIONS(3303), - [anon_sym_if] = ACTIONS(3303), - [anon_sym_else] = ACTIONS(3303), - [anon_sym_switch] = ACTIONS(3303), - [anon_sym_case] = ACTIONS(3303), - [anon_sym_default] = ACTIONS(3303), - [anon_sym_while] = ACTIONS(3303), - [anon_sym_do] = ACTIONS(3303), - [anon_sym_for] = ACTIONS(3303), - [anon_sym_return] = ACTIONS(3303), - [anon_sym_break] = ACTIONS(3303), - [anon_sym_continue] = ACTIONS(3303), - [anon_sym_goto] = ACTIONS(3303), - [anon_sym_AMP] = ACTIONS(3305), - [anon_sym_BANG] = ACTIONS(3305), - [anon_sym_TILDE] = ACTIONS(3305), - [anon_sym_PLUS] = ACTIONS(3303), - [anon_sym_DASH] = ACTIONS(3303), - [anon_sym_DASH_DASH] = ACTIONS(3305), - [anon_sym_PLUS_PLUS] = ACTIONS(3305), - [anon_sym_sizeof] = ACTIONS(3303), - [sym_number_literal] = ACTIONS(3305), - [anon_sym_SQUOTE] = ACTIONS(3305), - [anon_sym_DQUOTE] = ACTIONS(3305), - [sym_true] = ACTIONS(3303), - [sym_false] = ACTIONS(3303), - [sym_null] = ACTIONS(3303), - [sym_identifier] = ACTIONS(3303), - [sym_comment] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(3422), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3424), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3424), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3424), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3424), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3424), + [sym_preproc_directive] = ACTIONS(3424), + [anon_sym_typedef] = ACTIONS(3424), + [anon_sym_extern] = ACTIONS(3424), + [anon_sym_LBRACE] = ACTIONS(3422), + [anon_sym_RBRACE] = ACTIONS(3422), + [anon_sym_LPAREN2] = ACTIONS(3422), + [anon_sym_STAR] = ACTIONS(3422), + [anon_sym_static] = ACTIONS(3424), + [anon_sym_auto] = ACTIONS(3424), + [anon_sym_register] = ACTIONS(3424), + [anon_sym_inline] = ACTIONS(3424), + [anon_sym_const] = ACTIONS(3424), + [anon_sym_restrict] = ACTIONS(3424), + [anon_sym_volatile] = ACTIONS(3424), + [anon_sym__Atomic] = ACTIONS(3424), + [anon_sym_unsigned] = ACTIONS(3424), + [anon_sym_long] = ACTIONS(3424), + [anon_sym_short] = ACTIONS(3424), + [sym_primitive_type] = ACTIONS(3424), + [anon_sym_enum] = ACTIONS(3424), + [anon_sym_struct] = ACTIONS(3424), + [anon_sym_union] = ACTIONS(3424), + [anon_sym_if] = ACTIONS(3424), + [anon_sym_else] = ACTIONS(3424), + [anon_sym_switch] = ACTIONS(3424), + [anon_sym_case] = ACTIONS(3424), + [anon_sym_default] = ACTIONS(3424), + [anon_sym_while] = ACTIONS(3424), + [anon_sym_do] = ACTIONS(3424), + [anon_sym_for] = ACTIONS(3424), + [anon_sym_return] = ACTIONS(3424), + [anon_sym_break] = ACTIONS(3424), + [anon_sym_continue] = ACTIONS(3424), + [anon_sym_goto] = ACTIONS(3424), + [anon_sym_AMP] = ACTIONS(3422), + [anon_sym_BANG] = ACTIONS(3422), + [anon_sym_TILDE] = ACTIONS(3422), + [anon_sym_PLUS] = ACTIONS(3424), + [anon_sym_DASH] = ACTIONS(3424), + [anon_sym_DASH_DASH] = ACTIONS(3422), + [anon_sym_PLUS_PLUS] = ACTIONS(3422), + [anon_sym_sizeof] = ACTIONS(3424), + [sym_number_literal] = ACTIONS(3422), + [anon_sym_SQUOTE] = ACTIONS(3422), + [anon_sym_DQUOTE] = ACTIONS(3422), + [sym_true] = ACTIONS(3424), + [sym_false] = ACTIONS(3424), + [sym_null] = ACTIONS(3424), + [sym_identifier] = ACTIONS(3424), + [sym_comment] = ACTIONS(59), }, [1225] = { - [sym_compound_statement] = STATE(1201), - [sym_labeled_statement] = STATE(1201), - [sym_expression_statement] = STATE(1201), - [sym_if_statement] = STATE(1201), - [sym_switch_statement] = STATE(1201), - [sym_case_statement] = STATE(1201), - [sym_while_statement] = STATE(1201), - [sym_do_statement] = STATE(1201), - [sym_for_statement] = STATE(1201), - [sym_return_statement] = STATE(1201), - [sym_break_statement] = STATE(1201), - [sym_continue_statement] = STATE(1201), - [sym_goto_statement] = STATE(1201), - [sym__expression] = STATE(228), - [sym_comma_expression] = STATE(229), - [sym_conditional_expression] = STATE(228), - [sym_assignment_expression] = STATE(228), - [sym_pointer_expression] = STATE(228), - [sym_logical_expression] = STATE(228), - [sym_bitwise_expression] = STATE(228), - [sym_equality_expression] = STATE(228), - [sym_relational_expression] = STATE(228), - [sym_shift_expression] = STATE(228), - [sym_math_expression] = STATE(228), - [sym_cast_expression] = STATE(228), - [sym_sizeof_expression] = STATE(228), - [sym_subscript_expression] = STATE(228), - [sym_call_expression] = STATE(228), - [sym_field_expression] = STATE(228), - [sym_compound_literal_expression] = STATE(228), - [sym_parenthesized_expression] = STATE(228), - [sym_char_literal] = STATE(228), - [sym_concatenated_string] = STATE(228), - [sym_string_literal] = STATE(230), - [anon_sym_SEMI] = ACTIONS(503), - [anon_sym_LBRACE] = ACTIONS(229), - [anon_sym_LPAREN2] = ACTIONS(507), - [anon_sym_STAR] = ACTIONS(509), - [anon_sym_if] = ACTIONS(2286), - [anon_sym_switch] = ACTIONS(2288), - [anon_sym_case] = ACTIONS(2290), - [anon_sym_default] = ACTIONS(2292), - [anon_sym_while] = ACTIONS(2294), - [anon_sym_do] = ACTIONS(948), - [anon_sym_for] = ACTIONS(2296), - [anon_sym_return] = ACTIONS(525), - [anon_sym_break] = ACTIONS(527), - [anon_sym_continue] = ACTIONS(529), - [anon_sym_goto] = ACTIONS(531), - [anon_sym_AMP] = ACTIONS(509), - [anon_sym_BANG] = ACTIONS(533), - [anon_sym_TILDE] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DASH] = ACTIONS(537), - [anon_sym_DASH_DASH] = ACTIONS(539), - [anon_sym_PLUS_PLUS] = ACTIONS(539), - [anon_sym_sizeof] = ACTIONS(541), - [sym_number_literal] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(547), - [sym_false] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [sym_identifier] = ACTIONS(2298), - [sym_comment] = ACTIONS(37), + [sym_compound_statement] = STATE(1247), + [sym_labeled_statement] = STATE(1247), + [sym_expression_statement] = STATE(1247), + [sym_if_statement] = STATE(1247), + [sym_switch_statement] = STATE(1247), + [sym_case_statement] = STATE(1247), + [sym_while_statement] = STATE(1247), + [sym_do_statement] = STATE(1247), + [sym_for_statement] = STATE(1247), + [sym_return_statement] = STATE(1247), + [sym_break_statement] = STATE(1247), + [sym_continue_statement] = STATE(1247), + [sym_goto_statement] = STATE(1247), + [sym__expression] = STATE(372), + [sym_comma_expression] = STATE(373), + [sym_conditional_expression] = STATE(372), + [sym_assignment_expression] = STATE(372), + [sym_pointer_expression] = STATE(372), + [sym_logical_expression] = STATE(372), + [sym_bitwise_expression] = STATE(372), + [sym_equality_expression] = STATE(372), + [sym_relational_expression] = STATE(372), + [sym_shift_expression] = STATE(372), + [sym_math_expression] = STATE(372), + [sym_cast_expression] = STATE(372), + [sym_sizeof_expression] = STATE(372), + [sym_subscript_expression] = STATE(372), + [sym_call_expression] = STATE(372), + [sym_field_expression] = STATE(372), + [sym_compound_literal_expression] = STATE(372), + [sym_parenthesized_expression] = STATE(372), + [sym_char_literal] = STATE(372), + [sym_concatenated_string] = STATE(372), + [sym_string_literal] = STATE(374), + [anon_sym_SEMI] = ACTIONS(928), + [anon_sym_LBRACE] = ACTIONS(439), + [anon_sym_LPAREN2] = ACTIONS(936), + [anon_sym_STAR] = ACTIONS(938), + [anon_sym_if] = ACTIONS(940), + [anon_sym_switch] = ACTIONS(942), + [anon_sym_case] = ACTIONS(944), + [anon_sym_default] = ACTIONS(946), + [anon_sym_while] = ACTIONS(948), + [anon_sym_do] = ACTIONS(950), + [anon_sym_for] = ACTIONS(952), + [anon_sym_return] = ACTIONS(954), + [anon_sym_break] = ACTIONS(956), + [anon_sym_continue] = ACTIONS(958), + [anon_sym_goto] = ACTIONS(960), + [anon_sym_AMP] = ACTIONS(938), + [anon_sym_BANG] = ACTIONS(962), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_DASH_DASH] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(968), + [anon_sym_sizeof] = ACTIONS(970), + [sym_number_literal] = ACTIONS(972), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(974), + [sym_false] = ACTIONS(974), + [sym_null] = ACTIONS(974), + [sym_identifier] = ACTIONS(2002), + [sym_comment] = ACTIONS(59), }, [1226] = { - [sym_compound_statement] = STATE(1220), - [sym_labeled_statement] = STATE(1220), - [sym_expression_statement] = STATE(1220), - [sym_if_statement] = STATE(1220), - [sym_switch_statement] = STATE(1220), - [sym_case_statement] = STATE(1220), - [sym_while_statement] = STATE(1220), - [sym_do_statement] = STATE(1220), - [sym_for_statement] = STATE(1220), - [sym_return_statement] = STATE(1220), - [sym_break_statement] = STATE(1220), - [sym_continue_statement] = STATE(1220), - [sym_goto_statement] = STATE(1220), - [sym__expression] = STATE(800), - [sym_comma_expression] = STATE(801), - [sym_conditional_expression] = STATE(800), - [sym_assignment_expression] = STATE(800), - [sym_pointer_expression] = STATE(800), - [sym_logical_expression] = STATE(800), - [sym_bitwise_expression] = STATE(800), - [sym_equality_expression] = STATE(800), - [sym_relational_expression] = STATE(800), - [sym_shift_expression] = STATE(800), - [sym_math_expression] = STATE(800), - [sym_cast_expression] = STATE(800), - [sym_sizeof_expression] = STATE(800), - [sym_subscript_expression] = STATE(800), - [sym_call_expression] = STATE(800), - [sym_field_expression] = STATE(800), - [sym_compound_literal_expression] = STATE(800), - [sym_parenthesized_expression] = STATE(800), - [sym_char_literal] = STATE(800), - [sym_concatenated_string] = STATE(800), - [sym_string_literal] = STATE(230), - [anon_sym_SEMI] = ACTIONS(2082), - [anon_sym_LBRACE] = ACTIONS(1181), - [anon_sym_LPAREN2] = ACTIONS(507), - [anon_sym_STAR] = ACTIONS(509), - [anon_sym_if] = ACTIONS(2788), - [anon_sym_switch] = ACTIONS(2790), - [anon_sym_case] = ACTIONS(2792), - [anon_sym_default] = ACTIONS(2794), - [anon_sym_while] = ACTIONS(2796), - [anon_sym_do] = ACTIONS(2094), - [anon_sym_for] = ACTIONS(2798), - [anon_sym_return] = ACTIONS(2098), - [anon_sym_break] = ACTIONS(2100), - [anon_sym_continue] = ACTIONS(2102), - [anon_sym_goto] = ACTIONS(2104), - [anon_sym_AMP] = ACTIONS(509), - [anon_sym_BANG] = ACTIONS(533), - [anon_sym_TILDE] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DASH] = ACTIONS(537), - [anon_sym_DASH_DASH] = ACTIONS(539), - [anon_sym_PLUS_PLUS] = ACTIONS(539), - [anon_sym_sizeof] = ACTIONS(541), - [sym_number_literal] = ACTIONS(2106), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(2108), - [sym_false] = ACTIONS(2108), - [sym_null] = ACTIONS(2108), - [sym_identifier] = ACTIONS(2800), - [sym_comment] = ACTIONS(37), + [sym_compound_statement] = STATE(1202), + [sym_labeled_statement] = STATE(1202), + [sym_expression_statement] = STATE(1202), + [sym_if_statement] = STATE(1202), + [sym_switch_statement] = STATE(1202), + [sym_case_statement] = STATE(1202), + [sym_while_statement] = STATE(1202), + [sym_do_statement] = STATE(1202), + [sym_for_statement] = STATE(1202), + [sym_return_statement] = STATE(1202), + [sym_break_statement] = STATE(1202), + [sym_continue_statement] = STATE(1202), + [sym_goto_statement] = STATE(1202), + [sym__expression] = STATE(902), + [sym_comma_expression] = STATE(903), + [sym_conditional_expression] = STATE(902), + [sym_assignment_expression] = STATE(902), + [sym_pointer_expression] = STATE(902), + [sym_logical_expression] = STATE(902), + [sym_bitwise_expression] = STATE(902), + [sym_equality_expression] = STATE(902), + [sym_relational_expression] = STATE(902), + [sym_shift_expression] = STATE(902), + [sym_math_expression] = STATE(902), + [sym_cast_expression] = STATE(902), + [sym_sizeof_expression] = STATE(902), + [sym_subscript_expression] = STATE(902), + [sym_call_expression] = STATE(902), + [sym_field_expression] = STATE(902), + [sym_compound_literal_expression] = STATE(902), + [sym_parenthesized_expression] = STATE(902), + [sym_char_literal] = STATE(902), + [sym_concatenated_string] = STATE(902), + [sym_string_literal] = STATE(374), + [anon_sym_SEMI] = ACTIONS(2481), + [anon_sym_LBRACE] = ACTIONS(1699), + [anon_sym_LPAREN2] = ACTIONS(936), + [anon_sym_STAR] = ACTIONS(938), + [anon_sym_if] = ACTIONS(2964), + [anon_sym_switch] = ACTIONS(2966), + [anon_sym_case] = ACTIONS(2968), + [anon_sym_default] = ACTIONS(2970), + [anon_sym_while] = ACTIONS(2972), + [anon_sym_do] = ACTIONS(2499), + [anon_sym_for] = ACTIONS(2974), + [anon_sym_return] = ACTIONS(2503), + [anon_sym_break] = ACTIONS(2505), + [anon_sym_continue] = ACTIONS(2507), + [anon_sym_goto] = ACTIONS(2509), + [anon_sym_AMP] = ACTIONS(938), + [anon_sym_BANG] = ACTIONS(962), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_DASH_DASH] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(968), + [anon_sym_sizeof] = ACTIONS(970), + [sym_number_literal] = ACTIONS(2511), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(2513), + [sym_false] = ACTIONS(2513), + [sym_null] = ACTIONS(2513), + [sym_identifier] = ACTIONS(2976), + [sym_comment] = ACTIONS(59), }, [1227] = { - [aux_sym_for_statement_repeat1] = STATE(991), - [anon_sym_COMMA] = ACTIONS(2344), - [anon_sym_RPAREN] = ACTIONS(3323), - [sym_comment] = ACTIONS(37), + [sym_argument_list] = STATE(98), + [aux_sym_for_statement_repeat1] = STATE(1249), + [anon_sym_COMMA] = ACTIONS(1002), + [anon_sym_RPAREN] = ACTIONS(3426), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(319), + [anon_sym_LBRACK] = ACTIONS(188), + [anon_sym_EQ] = ACTIONS(321), + [anon_sym_QMARK] = ACTIONS(323), + [anon_sym_STAR_EQ] = ACTIONS(325), + [anon_sym_SLASH_EQ] = ACTIONS(325), + [anon_sym_PERCENT_EQ] = ACTIONS(325), + [anon_sym_PLUS_EQ] = ACTIONS(325), + [anon_sym_DASH_EQ] = ACTIONS(325), + [anon_sym_LT_LT_EQ] = ACTIONS(325), + [anon_sym_GT_GT_EQ] = ACTIONS(325), + [anon_sym_AMP_EQ] = ACTIONS(325), + [anon_sym_CARET_EQ] = ACTIONS(325), + [anon_sym_PIPE_EQ] = ACTIONS(325), + [anon_sym_AMP] = ACTIONS(327), + [anon_sym_PIPE_PIPE] = ACTIONS(329), + [anon_sym_AMP_AMP] = ACTIONS(331), + [anon_sym_PIPE] = ACTIONS(333), + [anon_sym_CARET] = ACTIONS(335), + [anon_sym_EQ_EQ] = ACTIONS(337), + [anon_sym_BANG_EQ] = ACTIONS(337), + [anon_sym_LT] = ACTIONS(339), + [anon_sym_GT] = ACTIONS(339), + [anon_sym_LT_EQ] = ACTIONS(341), + [anon_sym_GT_EQ] = ACTIONS(341), + [anon_sym_LT_LT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(343), + [anon_sym_PLUS] = ACTIONS(345), + [anon_sym_DASH] = ACTIONS(345), + [anon_sym_SLASH] = ACTIONS(319), + [anon_sym_PERCENT] = ACTIONS(319), + [anon_sym_DASH_DASH] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(216), + [anon_sym_DOT] = ACTIONS(218), + [anon_sym_DASH_GT] = ACTIONS(218), + [sym_comment] = ACTIONS(59), }, [1228] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3303), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3303), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3303), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3303), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3303), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3303), - [sym_preproc_directive] = ACTIONS(3303), - [anon_sym_SEMI] = ACTIONS(3305), - [anon_sym_typedef] = ACTIONS(3303), - [anon_sym_extern] = ACTIONS(3303), - [anon_sym_LBRACE] = ACTIONS(3305), - [anon_sym_LPAREN2] = ACTIONS(3305), - [anon_sym_STAR] = ACTIONS(3305), - [anon_sym_static] = ACTIONS(3303), - [anon_sym_auto] = ACTIONS(3303), - [anon_sym_register] = ACTIONS(3303), - [anon_sym_inline] = ACTIONS(3303), - [anon_sym_const] = ACTIONS(3303), - [anon_sym_restrict] = ACTIONS(3303), - [anon_sym_volatile] = ACTIONS(3303), - [anon_sym__Atomic] = ACTIONS(3303), - [anon_sym_unsigned] = ACTIONS(3303), - [anon_sym_long] = ACTIONS(3303), - [anon_sym_short] = ACTIONS(3303), - [sym_primitive_type] = ACTIONS(3303), - [anon_sym_enum] = ACTIONS(3303), - [anon_sym_struct] = ACTIONS(3303), - [anon_sym_union] = ACTIONS(3303), - [anon_sym_if] = ACTIONS(3303), - [anon_sym_else] = ACTIONS(3303), - [anon_sym_switch] = ACTIONS(3303), - [anon_sym_case] = ACTIONS(3303), - [anon_sym_default] = ACTIONS(3303), - [anon_sym_while] = ACTIONS(3303), - [anon_sym_do] = ACTIONS(3303), - [anon_sym_for] = ACTIONS(3303), - [anon_sym_return] = ACTIONS(3303), - [anon_sym_break] = ACTIONS(3303), - [anon_sym_continue] = ACTIONS(3303), - [anon_sym_goto] = ACTIONS(3303), - [anon_sym_AMP] = ACTIONS(3305), - [anon_sym_BANG] = ACTIONS(3305), - [anon_sym_TILDE] = ACTIONS(3305), - [anon_sym_PLUS] = ACTIONS(3303), - [anon_sym_DASH] = ACTIONS(3303), - [anon_sym_DASH_DASH] = ACTIONS(3305), - [anon_sym_PLUS_PLUS] = ACTIONS(3305), - [anon_sym_sizeof] = ACTIONS(3303), - [sym_number_literal] = ACTIONS(3305), - [anon_sym_SQUOTE] = ACTIONS(3305), - [anon_sym_DQUOTE] = ACTIONS(3305), - [sym_true] = ACTIONS(3303), - [sym_false] = ACTIONS(3303), - [sym_null] = ACTIONS(3303), - [sym_identifier] = ACTIONS(3303), - [sym_comment] = ACTIONS(37), + [sym__expression] = STATE(1250), + [sym_conditional_expression] = STATE(1250), + [sym_assignment_expression] = STATE(1250), + [sym_pointer_expression] = STATE(1250), + [sym_logical_expression] = STATE(1250), + [sym_bitwise_expression] = STATE(1250), + [sym_equality_expression] = STATE(1250), + [sym_relational_expression] = STATE(1250), + [sym_shift_expression] = STATE(1250), + [sym_math_expression] = STATE(1250), + [sym_cast_expression] = STATE(1250), + [sym_sizeof_expression] = STATE(1250), + [sym_subscript_expression] = STATE(1250), + [sym_call_expression] = STATE(1250), + [sym_field_expression] = STATE(1250), + [sym_compound_literal_expression] = STATE(1250), + [sym_parenthesized_expression] = STATE(1250), + [sym_char_literal] = STATE(1250), + [sym_concatenated_string] = STATE(1250), + [sym_string_literal] = STATE(55), + [anon_sym_RPAREN] = ACTIONS(3426), + [anon_sym_LPAREN2] = ACTIONS(85), + [anon_sym_STAR] = ACTIONS(87), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_PLUS] = ACTIONS(97), + [anon_sym_DASH] = ACTIONS(97), + [anon_sym_DASH_DASH] = ACTIONS(99), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(101), + [sym_number_literal] = ACTIONS(3428), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(3430), + [sym_false] = ACTIONS(3430), + [sym_null] = ACTIONS(3430), + [sym_identifier] = ACTIONS(3430), + [sym_comment] = ACTIONS(59), }, [1229] = { + [sym_argument_list] = STATE(98), + [anon_sym_SEMI] = ACTIONS(3432), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_LBRACK] = ACTIONS(188), + [anon_sym_EQ] = ACTIONS(1896), + [anon_sym_QMARK] = ACTIONS(1898), + [anon_sym_STAR_EQ] = ACTIONS(1900), + [anon_sym_SLASH_EQ] = ACTIONS(1900), + [anon_sym_PERCENT_EQ] = ACTIONS(1900), + [anon_sym_PLUS_EQ] = ACTIONS(1900), + [anon_sym_DASH_EQ] = ACTIONS(1900), + [anon_sym_LT_LT_EQ] = ACTIONS(1900), + [anon_sym_GT_GT_EQ] = ACTIONS(1900), + [anon_sym_AMP_EQ] = ACTIONS(1900), + [anon_sym_CARET_EQ] = ACTIONS(1900), + [anon_sym_PIPE_EQ] = ACTIONS(1900), + [anon_sym_AMP] = ACTIONS(1902), + [anon_sym_PIPE_PIPE] = ACTIONS(1904), + [anon_sym_AMP_AMP] = ACTIONS(1906), + [anon_sym_PIPE] = ACTIONS(1908), + [anon_sym_CARET] = ACTIONS(1910), + [anon_sym_EQ_EQ] = ACTIONS(1912), + [anon_sym_BANG_EQ] = ACTIONS(1912), + [anon_sym_LT] = ACTIONS(1914), + [anon_sym_GT] = ACTIONS(1914), + [anon_sym_LT_EQ] = ACTIONS(1916), + [anon_sym_GT_EQ] = ACTIONS(1916), + [anon_sym_LT_LT] = ACTIONS(1918), + [anon_sym_GT_GT] = ACTIONS(1918), + [anon_sym_PLUS] = ACTIONS(1920), + [anon_sym_DASH] = ACTIONS(1920), + [anon_sym_SLASH] = ACTIONS(1894), + [anon_sym_PERCENT] = ACTIONS(1894), + [anon_sym_DASH_DASH] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(216), + [anon_sym_DOT] = ACTIONS(218), + [anon_sym_DASH_GT] = ACTIONS(218), + [sym_comment] = ACTIONS(59), + }, + [1230] = { + [anon_sym_SEMI] = ACTIONS(3318), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3320), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3320), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3320), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3320), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3320), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3320), + [sym_preproc_directive] = ACTIONS(3320), + [anon_sym_typedef] = ACTIONS(3320), + [anon_sym_extern] = ACTIONS(3320), + [anon_sym_LBRACE] = ACTIONS(3318), + [anon_sym_LPAREN2] = ACTIONS(3318), + [anon_sym_STAR] = ACTIONS(3318), + [anon_sym_static] = ACTIONS(3320), + [anon_sym_auto] = ACTIONS(3320), + [anon_sym_register] = ACTIONS(3320), + [anon_sym_inline] = ACTIONS(3320), + [anon_sym_const] = ACTIONS(3320), + [anon_sym_restrict] = ACTIONS(3320), + [anon_sym_volatile] = ACTIONS(3320), + [anon_sym__Atomic] = ACTIONS(3320), + [anon_sym_unsigned] = ACTIONS(3320), + [anon_sym_long] = ACTIONS(3320), + [anon_sym_short] = ACTIONS(3320), + [sym_primitive_type] = ACTIONS(3320), + [anon_sym_enum] = ACTIONS(3320), + [anon_sym_struct] = ACTIONS(3320), + [anon_sym_union] = ACTIONS(3320), + [anon_sym_if] = ACTIONS(3320), + [anon_sym_else] = ACTIONS(3320), + [anon_sym_switch] = ACTIONS(3320), + [anon_sym_case] = ACTIONS(3320), + [anon_sym_default] = ACTIONS(3320), + [anon_sym_while] = ACTIONS(3320), + [anon_sym_do] = ACTIONS(3320), + [anon_sym_for] = ACTIONS(3320), + [anon_sym_return] = ACTIONS(3320), + [anon_sym_break] = ACTIONS(3320), + [anon_sym_continue] = ACTIONS(3320), + [anon_sym_goto] = ACTIONS(3320), + [anon_sym_AMP] = ACTIONS(3318), + [anon_sym_BANG] = ACTIONS(3318), + [anon_sym_TILDE] = ACTIONS(3318), + [anon_sym_PLUS] = ACTIONS(3320), + [anon_sym_DASH] = ACTIONS(3320), + [anon_sym_DASH_DASH] = ACTIONS(3318), + [anon_sym_PLUS_PLUS] = ACTIONS(3318), + [anon_sym_sizeof] = ACTIONS(3320), + [sym_number_literal] = ACTIONS(3318), + [anon_sym_SQUOTE] = ACTIONS(3318), + [anon_sym_DQUOTE] = ACTIONS(3318), + [sym_true] = ACTIONS(3320), + [sym_false] = ACTIONS(3320), + [sym_null] = ACTIONS(3320), + [sym_identifier] = ACTIONS(3320), + [sym_comment] = ACTIONS(59), + }, + [1231] = { + [sym_compound_statement] = STATE(1252), + [sym_labeled_statement] = STATE(1252), + [sym_expression_statement] = STATE(1252), + [sym_if_statement] = STATE(1252), + [sym_switch_statement] = STATE(1252), + [sym_case_statement] = STATE(1252), + [sym_while_statement] = STATE(1252), + [sym_do_statement] = STATE(1252), + [sym_for_statement] = STATE(1252), + [sym_return_statement] = STATE(1252), + [sym_break_statement] = STATE(1252), + [sym_continue_statement] = STATE(1252), + [sym_goto_statement] = STATE(1252), + [sym__expression] = STATE(902), + [sym_comma_expression] = STATE(903), + [sym_conditional_expression] = STATE(902), + [sym_assignment_expression] = STATE(902), + [sym_pointer_expression] = STATE(902), + [sym_logical_expression] = STATE(902), + [sym_bitwise_expression] = STATE(902), + [sym_equality_expression] = STATE(902), + [sym_relational_expression] = STATE(902), + [sym_shift_expression] = STATE(902), + [sym_math_expression] = STATE(902), + [sym_cast_expression] = STATE(902), + [sym_sizeof_expression] = STATE(902), + [sym_subscript_expression] = STATE(902), + [sym_call_expression] = STATE(902), + [sym_field_expression] = STATE(902), + [sym_compound_literal_expression] = STATE(902), + [sym_parenthesized_expression] = STATE(902), + [sym_char_literal] = STATE(902), + [sym_concatenated_string] = STATE(902), + [sym_string_literal] = STATE(374), + [anon_sym_SEMI] = ACTIONS(2481), + [anon_sym_LBRACE] = ACTIONS(1699), + [anon_sym_LPAREN2] = ACTIONS(936), + [anon_sym_STAR] = ACTIONS(938), + [anon_sym_if] = ACTIONS(2489), + [anon_sym_switch] = ACTIONS(2491), + [anon_sym_case] = ACTIONS(2493), + [anon_sym_default] = ACTIONS(2495), + [anon_sym_while] = ACTIONS(2497), + [anon_sym_do] = ACTIONS(2499), + [anon_sym_for] = ACTIONS(2501), + [anon_sym_return] = ACTIONS(2503), + [anon_sym_break] = ACTIONS(2505), + [anon_sym_continue] = ACTIONS(2507), + [anon_sym_goto] = ACTIONS(2509), + [anon_sym_AMP] = ACTIONS(938), + [anon_sym_BANG] = ACTIONS(962), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_DASH_DASH] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(968), + [anon_sym_sizeof] = ACTIONS(970), + [sym_number_literal] = ACTIONS(2511), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(2513), + [sym_false] = ACTIONS(2513), + [sym_null] = ACTIONS(2513), + [sym_identifier] = ACTIONS(2978), + [sym_comment] = ACTIONS(59), + }, + [1232] = { + [aux_sym_for_statement_repeat1] = STATE(593), + [anon_sym_COMMA] = ACTIONS(1002), + [anon_sym_RPAREN] = ACTIONS(3434), + [sym_comment] = ACTIONS(59), + }, + [1233] = { + [sym_argument_list] = STATE(98), + [aux_sym_for_statement_repeat1] = STATE(1254), + [anon_sym_COMMA] = ACTIONS(1002), + [anon_sym_RPAREN] = ACTIONS(3434), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(319), + [anon_sym_LBRACK] = ACTIONS(188), + [anon_sym_EQ] = ACTIONS(321), + [anon_sym_QMARK] = ACTIONS(323), + [anon_sym_STAR_EQ] = ACTIONS(325), + [anon_sym_SLASH_EQ] = ACTIONS(325), + [anon_sym_PERCENT_EQ] = ACTIONS(325), + [anon_sym_PLUS_EQ] = ACTIONS(325), + [anon_sym_DASH_EQ] = ACTIONS(325), + [anon_sym_LT_LT_EQ] = ACTIONS(325), + [anon_sym_GT_GT_EQ] = ACTIONS(325), + [anon_sym_AMP_EQ] = ACTIONS(325), + [anon_sym_CARET_EQ] = ACTIONS(325), + [anon_sym_PIPE_EQ] = ACTIONS(325), + [anon_sym_AMP] = ACTIONS(327), + [anon_sym_PIPE_PIPE] = ACTIONS(329), + [anon_sym_AMP_AMP] = ACTIONS(331), + [anon_sym_PIPE] = ACTIONS(333), + [anon_sym_CARET] = ACTIONS(335), + [anon_sym_EQ_EQ] = ACTIONS(337), + [anon_sym_BANG_EQ] = ACTIONS(337), + [anon_sym_LT] = ACTIONS(339), + [anon_sym_GT] = ACTIONS(339), + [anon_sym_LT_EQ] = ACTIONS(341), + [anon_sym_GT_EQ] = ACTIONS(341), + [anon_sym_LT_LT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(343), + [anon_sym_PLUS] = ACTIONS(345), + [anon_sym_DASH] = ACTIONS(345), + [anon_sym_SLASH] = ACTIONS(319), + [anon_sym_PERCENT] = ACTIONS(319), + [anon_sym_DASH_DASH] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(216), + [anon_sym_DOT] = ACTIONS(218), + [anon_sym_DASH_GT] = ACTIONS(218), + [sym_comment] = ACTIONS(59), + }, + [1234] = { + [sym_compound_statement] = STATE(1211), + [sym_labeled_statement] = STATE(1211), + [sym_expression_statement] = STATE(1211), + [sym_if_statement] = STATE(1211), + [sym_switch_statement] = STATE(1211), + [sym_case_statement] = STATE(1211), + [sym_while_statement] = STATE(1211), + [sym_do_statement] = STATE(1211), + [sym_for_statement] = STATE(1211), + [sym_return_statement] = STATE(1211), + [sym_break_statement] = STATE(1211), + [sym_continue_statement] = STATE(1211), + [sym_goto_statement] = STATE(1211), + [sym__expression] = STATE(756), + [sym_comma_expression] = STATE(757), + [sym_conditional_expression] = STATE(756), + [sym_assignment_expression] = STATE(756), + [sym_pointer_expression] = STATE(756), + [sym_logical_expression] = STATE(756), + [sym_bitwise_expression] = STATE(756), + [sym_equality_expression] = STATE(756), + [sym_relational_expression] = STATE(756), + [sym_shift_expression] = STATE(756), + [sym_math_expression] = STATE(756), + [sym_cast_expression] = STATE(756), + [sym_sizeof_expression] = STATE(756), + [sym_subscript_expression] = STATE(756), + [sym_call_expression] = STATE(756), + [sym_field_expression] = STATE(756), + [sym_compound_literal_expression] = STATE(756), + [sym_parenthesized_expression] = STATE(756), + [sym_char_literal] = STATE(756), + [sym_concatenated_string] = STATE(756), + [sym_string_literal] = STATE(374), + [anon_sym_SEMI] = ACTIONS(1940), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_LPAREN2] = ACTIONS(936), + [anon_sym_STAR] = ACTIONS(938), + [anon_sym_if] = ACTIONS(2752), + [anon_sym_switch] = ACTIONS(2754), + [anon_sym_case] = ACTIONS(2756), + [anon_sym_default] = ACTIONS(2758), + [anon_sym_while] = ACTIONS(2760), + [anon_sym_do] = ACTIONS(1962), + [anon_sym_for] = ACTIONS(2762), + [anon_sym_return] = ACTIONS(1966), + [anon_sym_break] = ACTIONS(1968), + [anon_sym_continue] = ACTIONS(1970), + [anon_sym_goto] = ACTIONS(1972), + [anon_sym_AMP] = ACTIONS(938), + [anon_sym_BANG] = ACTIONS(962), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_DASH_DASH] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(968), + [anon_sym_sizeof] = ACTIONS(970), + [sym_number_literal] = ACTIONS(1974), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(1976), + [sym_false] = ACTIONS(1976), + [sym_null] = ACTIONS(1976), + [sym_identifier] = ACTIONS(2764), + [sym_comment] = ACTIONS(59), + }, + [1235] = { + [aux_sym_for_statement_repeat1] = STATE(593), + [anon_sym_COMMA] = ACTIONS(1002), + [anon_sym_RPAREN] = ACTIONS(3436), + [sym_comment] = ACTIONS(59), + }, + [1236] = { + [sym_argument_list] = STATE(98), + [aux_sym_for_statement_repeat1] = STATE(1256), + [anon_sym_COMMA] = ACTIONS(1002), + [anon_sym_RPAREN] = ACTIONS(3436), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(319), + [anon_sym_LBRACK] = ACTIONS(188), + [anon_sym_EQ] = ACTIONS(321), + [anon_sym_QMARK] = ACTIONS(323), + [anon_sym_STAR_EQ] = ACTIONS(325), + [anon_sym_SLASH_EQ] = ACTIONS(325), + [anon_sym_PERCENT_EQ] = ACTIONS(325), + [anon_sym_PLUS_EQ] = ACTIONS(325), + [anon_sym_DASH_EQ] = ACTIONS(325), + [anon_sym_LT_LT_EQ] = ACTIONS(325), + [anon_sym_GT_GT_EQ] = ACTIONS(325), + [anon_sym_AMP_EQ] = ACTIONS(325), + [anon_sym_CARET_EQ] = ACTIONS(325), + [anon_sym_PIPE_EQ] = ACTIONS(325), + [anon_sym_AMP] = ACTIONS(327), + [anon_sym_PIPE_PIPE] = ACTIONS(329), + [anon_sym_AMP_AMP] = ACTIONS(331), + [anon_sym_PIPE] = ACTIONS(333), + [anon_sym_CARET] = ACTIONS(335), + [anon_sym_EQ_EQ] = ACTIONS(337), + [anon_sym_BANG_EQ] = ACTIONS(337), + [anon_sym_LT] = ACTIONS(339), + [anon_sym_GT] = ACTIONS(339), + [anon_sym_LT_EQ] = ACTIONS(341), + [anon_sym_GT_EQ] = ACTIONS(341), + [anon_sym_LT_LT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(343), + [anon_sym_PLUS] = ACTIONS(345), + [anon_sym_DASH] = ACTIONS(345), + [anon_sym_SLASH] = ACTIONS(319), + [anon_sym_PERCENT] = ACTIONS(319), + [anon_sym_DASH_DASH] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(216), + [anon_sym_DOT] = ACTIONS(218), + [anon_sym_DASH_GT] = ACTIONS(218), + [sym_comment] = ACTIONS(59), + }, + [1237] = { + [sym__expression] = STATE(1257), + [sym_conditional_expression] = STATE(1257), + [sym_assignment_expression] = STATE(1257), + [sym_pointer_expression] = STATE(1257), + [sym_logical_expression] = STATE(1257), + [sym_bitwise_expression] = STATE(1257), + [sym_equality_expression] = STATE(1257), + [sym_relational_expression] = STATE(1257), + [sym_shift_expression] = STATE(1257), + [sym_math_expression] = STATE(1257), + [sym_cast_expression] = STATE(1257), + [sym_sizeof_expression] = STATE(1257), + [sym_subscript_expression] = STATE(1257), + [sym_call_expression] = STATE(1257), + [sym_field_expression] = STATE(1257), + [sym_compound_literal_expression] = STATE(1257), + [sym_parenthesized_expression] = STATE(1257), + [sym_char_literal] = STATE(1257), + [sym_concatenated_string] = STATE(1257), + [sym_string_literal] = STATE(55), + [anon_sym_RPAREN] = ACTIONS(3436), + [anon_sym_LPAREN2] = ACTIONS(85), + [anon_sym_STAR] = ACTIONS(87), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_PLUS] = ACTIONS(97), + [anon_sym_DASH] = ACTIONS(97), + [anon_sym_DASH_DASH] = ACTIONS(99), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(101), + [sym_number_literal] = ACTIONS(3438), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(3440), + [sym_false] = ACTIONS(3440), + [sym_null] = ACTIONS(3440), + [sym_identifier] = ACTIONS(3440), + [sym_comment] = ACTIONS(59), + }, + [1238] = { + [anon_sym_SEMI] = ACTIONS(3378), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3380), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3380), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3380), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3380), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3380), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3380), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(3380), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(3380), + [sym_preproc_directive] = ACTIONS(3380), + [anon_sym_typedef] = ACTIONS(3380), + [anon_sym_extern] = ACTIONS(3380), + [anon_sym_LBRACE] = ACTIONS(3378), + [anon_sym_LPAREN2] = ACTIONS(3378), + [anon_sym_STAR] = ACTIONS(3378), + [anon_sym_static] = ACTIONS(3380), + [anon_sym_auto] = ACTIONS(3380), + [anon_sym_register] = ACTIONS(3380), + [anon_sym_inline] = ACTIONS(3380), + [anon_sym_const] = ACTIONS(3380), + [anon_sym_restrict] = ACTIONS(3380), + [anon_sym_volatile] = ACTIONS(3380), + [anon_sym__Atomic] = ACTIONS(3380), + [anon_sym_unsigned] = ACTIONS(3380), + [anon_sym_long] = ACTIONS(3380), + [anon_sym_short] = ACTIONS(3380), + [sym_primitive_type] = ACTIONS(3380), + [anon_sym_enum] = ACTIONS(3380), + [anon_sym_struct] = ACTIONS(3380), + [anon_sym_union] = ACTIONS(3380), + [anon_sym_if] = ACTIONS(3380), + [anon_sym_else] = ACTIONS(3380), + [anon_sym_switch] = ACTIONS(3380), + [anon_sym_case] = ACTIONS(3380), + [anon_sym_default] = ACTIONS(3380), + [anon_sym_while] = ACTIONS(3380), + [anon_sym_do] = ACTIONS(3380), + [anon_sym_for] = ACTIONS(3380), + [anon_sym_return] = ACTIONS(3380), + [anon_sym_break] = ACTIONS(3380), + [anon_sym_continue] = ACTIONS(3380), + [anon_sym_goto] = ACTIONS(3380), + [anon_sym_AMP] = ACTIONS(3378), + [anon_sym_BANG] = ACTIONS(3378), + [anon_sym_TILDE] = ACTIONS(3378), + [anon_sym_PLUS] = ACTIONS(3380), + [anon_sym_DASH] = ACTIONS(3380), + [anon_sym_DASH_DASH] = ACTIONS(3378), + [anon_sym_PLUS_PLUS] = ACTIONS(3378), + [anon_sym_sizeof] = ACTIONS(3380), + [sym_number_literal] = ACTIONS(3378), + [anon_sym_SQUOTE] = ACTIONS(3378), + [anon_sym_DQUOTE] = ACTIONS(3378), + [sym_true] = ACTIONS(3380), + [sym_false] = ACTIONS(3380), + [sym_null] = ACTIONS(3380), + [sym_identifier] = ACTIONS(3380), + [sym_comment] = ACTIONS(59), + }, + [1239] = { + [sym_compound_statement] = STATE(1258), + [sym_labeled_statement] = STATE(1258), + [sym_expression_statement] = STATE(1258), + [sym_if_statement] = STATE(1258), + [sym_switch_statement] = STATE(1258), + [sym_case_statement] = STATE(1258), + [sym_while_statement] = STATE(1258), + [sym_do_statement] = STATE(1258), + [sym_for_statement] = STATE(1258), + [sym_return_statement] = STATE(1258), + [sym_break_statement] = STATE(1258), + [sym_continue_statement] = STATE(1258), + [sym_goto_statement] = STATE(1258), + [sym__expression] = STATE(756), + [sym_comma_expression] = STATE(757), + [sym_conditional_expression] = STATE(756), + [sym_assignment_expression] = STATE(756), + [sym_pointer_expression] = STATE(756), + [sym_logical_expression] = STATE(756), + [sym_bitwise_expression] = STATE(756), + [sym_equality_expression] = STATE(756), + [sym_relational_expression] = STATE(756), + [sym_shift_expression] = STATE(756), + [sym_math_expression] = STATE(756), + [sym_cast_expression] = STATE(756), + [sym_sizeof_expression] = STATE(756), + [sym_subscript_expression] = STATE(756), + [sym_call_expression] = STATE(756), + [sym_field_expression] = STATE(756), + [sym_compound_literal_expression] = STATE(756), + [sym_parenthesized_expression] = STATE(756), + [sym_char_literal] = STATE(756), + [sym_concatenated_string] = STATE(756), + [sym_string_literal] = STATE(374), + [anon_sym_SEMI] = ACTIONS(1940), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_LPAREN2] = ACTIONS(936), + [anon_sym_STAR] = ACTIONS(938), + [anon_sym_if] = ACTIONS(1952), + [anon_sym_switch] = ACTIONS(1954), + [anon_sym_case] = ACTIONS(1956), + [anon_sym_default] = ACTIONS(1958), + [anon_sym_while] = ACTIONS(1960), + [anon_sym_do] = ACTIONS(1962), + [anon_sym_for] = ACTIONS(1964), + [anon_sym_return] = ACTIONS(1966), + [anon_sym_break] = ACTIONS(1968), + [anon_sym_continue] = ACTIONS(1970), + [anon_sym_goto] = ACTIONS(1972), + [anon_sym_AMP] = ACTIONS(938), + [anon_sym_BANG] = ACTIONS(962), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_DASH_DASH] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(968), + [anon_sym_sizeof] = ACTIONS(970), + [sym_number_literal] = ACTIONS(1974), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(1976), + [sym_false] = ACTIONS(1976), + [sym_null] = ACTIONS(1976), + [sym_identifier] = ACTIONS(2766), + [sym_comment] = ACTIONS(59), + }, + [1240] = { + [aux_sym_for_statement_repeat1] = STATE(593), + [anon_sym_COMMA] = ACTIONS(1002), + [anon_sym_RPAREN] = ACTIONS(3442), + [sym_comment] = ACTIONS(59), + }, + [1241] = { [sym_compound_statement] = STATE(1224), [sym_labeled_statement] = STATE(1224), [sym_expression_statement] = STATE(1224), @@ -50852,125 +52711,1682 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(1224), [sym_continue_statement] = STATE(1224), [sym_goto_statement] = STATE(1224), - [sym__expression] = STATE(594), - [sym_comma_expression] = STATE(595), - [sym_conditional_expression] = STATE(594), - [sym_assignment_expression] = STATE(594), - [sym_pointer_expression] = STATE(594), - [sym_logical_expression] = STATE(594), - [sym_bitwise_expression] = STATE(594), - [sym_equality_expression] = STATE(594), - [sym_relational_expression] = STATE(594), - [sym_shift_expression] = STATE(594), - [sym_math_expression] = STATE(594), - [sym_cast_expression] = STATE(594), - [sym_sizeof_expression] = STATE(594), - [sym_subscript_expression] = STATE(594), - [sym_call_expression] = STATE(594), - [sym_field_expression] = STATE(594), - [sym_compound_literal_expression] = STATE(594), - [sym_parenthesized_expression] = STATE(594), - [sym_char_literal] = STATE(594), - [sym_concatenated_string] = STATE(594), - [sym_string_literal] = STATE(230), - [anon_sym_SEMI] = ACTIONS(1395), - [anon_sym_LBRACE] = ACTIONS(678), - [anon_sym_LPAREN2] = ACTIONS(507), - [anon_sym_STAR] = ACTIONS(509), - [anon_sym_if] = ACTIONS(2521), - [anon_sym_switch] = ACTIONS(2523), - [anon_sym_case] = ACTIONS(2525), - [anon_sym_default] = ACTIONS(2527), - [anon_sym_while] = ACTIONS(2529), - [anon_sym_do] = ACTIONS(1407), - [anon_sym_for] = ACTIONS(2531), - [anon_sym_return] = ACTIONS(1411), - [anon_sym_break] = ACTIONS(1413), - [anon_sym_continue] = ACTIONS(1415), - [anon_sym_goto] = ACTIONS(1417), - [anon_sym_AMP] = ACTIONS(509), - [anon_sym_BANG] = ACTIONS(533), - [anon_sym_TILDE] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DASH] = ACTIONS(537), - [anon_sym_DASH_DASH] = ACTIONS(539), - [anon_sym_PLUS_PLUS] = ACTIONS(539), - [anon_sym_sizeof] = ACTIONS(541), - [sym_number_literal] = ACTIONS(1419), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(1421), - [sym_false] = ACTIONS(1421), - [sym_null] = ACTIONS(1421), - [sym_identifier] = ACTIONS(2533), - [sym_comment] = ACTIONS(37), + [sym__expression] = STATE(372), + [sym_comma_expression] = STATE(373), + [sym_conditional_expression] = STATE(372), + [sym_assignment_expression] = STATE(372), + [sym_pointer_expression] = STATE(372), + [sym_logical_expression] = STATE(372), + [sym_bitwise_expression] = STATE(372), + [sym_equality_expression] = STATE(372), + [sym_relational_expression] = STATE(372), + [sym_shift_expression] = STATE(372), + [sym_math_expression] = STATE(372), + [sym_cast_expression] = STATE(372), + [sym_sizeof_expression] = STATE(372), + [sym_subscript_expression] = STATE(372), + [sym_call_expression] = STATE(372), + [sym_field_expression] = STATE(372), + [sym_compound_literal_expression] = STATE(372), + [sym_parenthesized_expression] = STATE(372), + [sym_char_literal] = STATE(372), + [sym_concatenated_string] = STATE(372), + [sym_string_literal] = STATE(374), + [anon_sym_SEMI] = ACTIONS(928), + [anon_sym_LBRACE] = ACTIONS(439), + [anon_sym_LPAREN2] = ACTIONS(936), + [anon_sym_STAR] = ACTIONS(938), + [anon_sym_if] = ACTIONS(1988), + [anon_sym_switch] = ACTIONS(1990), + [anon_sym_case] = ACTIONS(1992), + [anon_sym_default] = ACTIONS(1994), + [anon_sym_while] = ACTIONS(1996), + [anon_sym_do] = ACTIONS(950), + [anon_sym_for] = ACTIONS(1998), + [anon_sym_return] = ACTIONS(954), + [anon_sym_break] = ACTIONS(956), + [anon_sym_continue] = ACTIONS(958), + [anon_sym_goto] = ACTIONS(960), + [anon_sym_AMP] = ACTIONS(938), + [anon_sym_BANG] = ACTIONS(962), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_DASH_DASH] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(968), + [anon_sym_sizeof] = ACTIONS(970), + [sym_number_literal] = ACTIONS(972), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(974), + [sym_false] = ACTIONS(974), + [sym_null] = ACTIONS(974), + [sym_identifier] = ACTIONS(2000), + [sym_comment] = ACTIONS(59), + }, + [1242] = { + [aux_sym_for_statement_repeat1] = STATE(593), + [anon_sym_COMMA] = ACTIONS(1002), + [anon_sym_RPAREN] = ACTIONS(3444), + [sym_comment] = ACTIONS(59), + }, + [1243] = { + [sym_compound_statement] = STATE(1194), + [sym_labeled_statement] = STATE(1194), + [sym_expression_statement] = STATE(1194), + [sym_if_statement] = STATE(1194), + [sym_switch_statement] = STATE(1194), + [sym_case_statement] = STATE(1194), + [sym_while_statement] = STATE(1194), + [sym_do_statement] = STATE(1194), + [sym_for_statement] = STATE(1194), + [sym_return_statement] = STATE(1194), + [sym_break_statement] = STATE(1194), + [sym_continue_statement] = STATE(1194), + [sym_goto_statement] = STATE(1194), + [sym__expression] = STATE(372), + [sym_comma_expression] = STATE(373), + [sym_conditional_expression] = STATE(372), + [sym_assignment_expression] = STATE(372), + [sym_pointer_expression] = STATE(372), + [sym_logical_expression] = STATE(372), + [sym_bitwise_expression] = STATE(372), + [sym_equality_expression] = STATE(372), + [sym_relational_expression] = STATE(372), + [sym_shift_expression] = STATE(372), + [sym_math_expression] = STATE(372), + [sym_cast_expression] = STATE(372), + [sym_sizeof_expression] = STATE(372), + [sym_subscript_expression] = STATE(372), + [sym_call_expression] = STATE(372), + [sym_field_expression] = STATE(372), + [sym_compound_literal_expression] = STATE(372), + [sym_parenthesized_expression] = STATE(372), + [sym_char_literal] = STATE(372), + [sym_concatenated_string] = STATE(372), + [sym_string_literal] = STATE(374), + [anon_sym_SEMI] = ACTIONS(928), + [anon_sym_LBRACE] = ACTIONS(439), + [anon_sym_LPAREN2] = ACTIONS(936), + [anon_sym_STAR] = ACTIONS(938), + [anon_sym_if] = ACTIONS(2587), + [anon_sym_switch] = ACTIONS(2589), + [anon_sym_case] = ACTIONS(2591), + [anon_sym_default] = ACTIONS(2593), + [anon_sym_while] = ACTIONS(2595), + [anon_sym_do] = ACTIONS(1466), + [anon_sym_for] = ACTIONS(2597), + [anon_sym_return] = ACTIONS(954), + [anon_sym_break] = ACTIONS(956), + [anon_sym_continue] = ACTIONS(958), + [anon_sym_goto] = ACTIONS(960), + [anon_sym_AMP] = ACTIONS(938), + [anon_sym_BANG] = ACTIONS(962), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_DASH_DASH] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(968), + [anon_sym_sizeof] = ACTIONS(970), + [sym_number_literal] = ACTIONS(972), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(974), + [sym_false] = ACTIONS(974), + [sym_null] = ACTIONS(974), + [sym_identifier] = ACTIONS(2599), + [sym_comment] = ACTIONS(59), + }, + [1244] = { + [aux_sym_for_statement_repeat1] = STATE(593), + [anon_sym_COMMA] = ACTIONS(1002), + [anon_sym_RPAREN] = ACTIONS(3446), + [sym_comment] = ACTIONS(59), + }, + [1245] = { + [sym_argument_list] = STATE(98), + [aux_sym_for_statement_repeat1] = STATE(1262), + [anon_sym_COMMA] = ACTIONS(1002), + [anon_sym_RPAREN] = ACTIONS(3446), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(319), + [anon_sym_LBRACK] = ACTIONS(188), + [anon_sym_EQ] = ACTIONS(321), + [anon_sym_QMARK] = ACTIONS(323), + [anon_sym_STAR_EQ] = ACTIONS(325), + [anon_sym_SLASH_EQ] = ACTIONS(325), + [anon_sym_PERCENT_EQ] = ACTIONS(325), + [anon_sym_PLUS_EQ] = ACTIONS(325), + [anon_sym_DASH_EQ] = ACTIONS(325), + [anon_sym_LT_LT_EQ] = ACTIONS(325), + [anon_sym_GT_GT_EQ] = ACTIONS(325), + [anon_sym_AMP_EQ] = ACTIONS(325), + [anon_sym_CARET_EQ] = ACTIONS(325), + [anon_sym_PIPE_EQ] = ACTIONS(325), + [anon_sym_AMP] = ACTIONS(327), + [anon_sym_PIPE_PIPE] = ACTIONS(329), + [anon_sym_AMP_AMP] = ACTIONS(331), + [anon_sym_PIPE] = ACTIONS(333), + [anon_sym_CARET] = ACTIONS(335), + [anon_sym_EQ_EQ] = ACTIONS(337), + [anon_sym_BANG_EQ] = ACTIONS(337), + [anon_sym_LT] = ACTIONS(339), + [anon_sym_GT] = ACTIONS(339), + [anon_sym_LT_EQ] = ACTIONS(341), + [anon_sym_GT_EQ] = ACTIONS(341), + [anon_sym_LT_LT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(343), + [anon_sym_PLUS] = ACTIONS(345), + [anon_sym_DASH] = ACTIONS(345), + [anon_sym_SLASH] = ACTIONS(319), + [anon_sym_PERCENT] = ACTIONS(319), + [anon_sym_DASH_DASH] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(216), + [anon_sym_DOT] = ACTIONS(218), + [anon_sym_DASH_GT] = ACTIONS(218), + [sym_comment] = ACTIONS(59), + }, + [1246] = { + [sym_compound_statement] = STATE(1247), + [sym_labeled_statement] = STATE(1247), + [sym_expression_statement] = STATE(1247), + [sym_if_statement] = STATE(1247), + [sym_switch_statement] = STATE(1247), + [sym_case_statement] = STATE(1247), + [sym_while_statement] = STATE(1247), + [sym_do_statement] = STATE(1247), + [sym_for_statement] = STATE(1247), + [sym_return_statement] = STATE(1247), + [sym_break_statement] = STATE(1247), + [sym_continue_statement] = STATE(1247), + [sym_goto_statement] = STATE(1247), + [sym__expression] = STATE(372), + [sym_comma_expression] = STATE(373), + [sym_conditional_expression] = STATE(372), + [sym_assignment_expression] = STATE(372), + [sym_pointer_expression] = STATE(372), + [sym_logical_expression] = STATE(372), + [sym_bitwise_expression] = STATE(372), + [sym_equality_expression] = STATE(372), + [sym_relational_expression] = STATE(372), + [sym_shift_expression] = STATE(372), + [sym_math_expression] = STATE(372), + [sym_cast_expression] = STATE(372), + [sym_sizeof_expression] = STATE(372), + [sym_subscript_expression] = STATE(372), + [sym_call_expression] = STATE(372), + [sym_field_expression] = STATE(372), + [sym_compound_literal_expression] = STATE(372), + [sym_parenthesized_expression] = STATE(372), + [sym_char_literal] = STATE(372), + [sym_concatenated_string] = STATE(372), + [sym_string_literal] = STATE(374), + [anon_sym_SEMI] = ACTIONS(928), + [anon_sym_LBRACE] = ACTIONS(439), + [anon_sym_LPAREN2] = ACTIONS(936), + [anon_sym_STAR] = ACTIONS(938), + [anon_sym_if] = ACTIONS(1456), + [anon_sym_switch] = ACTIONS(1458), + [anon_sym_case] = ACTIONS(1460), + [anon_sym_default] = ACTIONS(1462), + [anon_sym_while] = ACTIONS(1464), + [anon_sym_do] = ACTIONS(1466), + [anon_sym_for] = ACTIONS(1468), + [anon_sym_return] = ACTIONS(954), + [anon_sym_break] = ACTIONS(956), + [anon_sym_continue] = ACTIONS(958), + [anon_sym_goto] = ACTIONS(960), + [anon_sym_AMP] = ACTIONS(938), + [anon_sym_BANG] = ACTIONS(962), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_DASH_DASH] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(968), + [anon_sym_sizeof] = ACTIONS(970), + [sym_number_literal] = ACTIONS(972), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(974), + [sym_false] = ACTIONS(974), + [sym_null] = ACTIONS(974), + [sym_identifier] = ACTIONS(1470), + [sym_comment] = ACTIONS(59), + }, + [1247] = { + [anon_sym_SEMI] = ACTIONS(3448), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3450), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3450), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3450), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3450), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3450), + [sym_preproc_directive] = ACTIONS(3450), + [anon_sym_typedef] = ACTIONS(3450), + [anon_sym_extern] = ACTIONS(3450), + [anon_sym_LBRACE] = ACTIONS(3448), + [anon_sym_RBRACE] = ACTIONS(3448), + [anon_sym_LPAREN2] = ACTIONS(3448), + [anon_sym_STAR] = ACTIONS(3448), + [anon_sym_static] = ACTIONS(3450), + [anon_sym_auto] = ACTIONS(3450), + [anon_sym_register] = ACTIONS(3450), + [anon_sym_inline] = ACTIONS(3450), + [anon_sym_const] = ACTIONS(3450), + [anon_sym_restrict] = ACTIONS(3450), + [anon_sym_volatile] = ACTIONS(3450), + [anon_sym__Atomic] = ACTIONS(3450), + [anon_sym_unsigned] = ACTIONS(3450), + [anon_sym_long] = ACTIONS(3450), + [anon_sym_short] = ACTIONS(3450), + [sym_primitive_type] = ACTIONS(3450), + [anon_sym_enum] = ACTIONS(3450), + [anon_sym_struct] = ACTIONS(3450), + [anon_sym_union] = ACTIONS(3450), + [anon_sym_if] = ACTIONS(3450), + [anon_sym_else] = ACTIONS(3450), + [anon_sym_switch] = ACTIONS(3450), + [anon_sym_case] = ACTIONS(3450), + [anon_sym_default] = ACTIONS(3450), + [anon_sym_while] = ACTIONS(3450), + [anon_sym_do] = ACTIONS(3450), + [anon_sym_for] = ACTIONS(3450), + [anon_sym_return] = ACTIONS(3450), + [anon_sym_break] = ACTIONS(3450), + [anon_sym_continue] = ACTIONS(3450), + [anon_sym_goto] = ACTIONS(3450), + [anon_sym_AMP] = ACTIONS(3448), + [anon_sym_BANG] = ACTIONS(3448), + [anon_sym_TILDE] = ACTIONS(3448), + [anon_sym_PLUS] = ACTIONS(3450), + [anon_sym_DASH] = ACTIONS(3450), + [anon_sym_DASH_DASH] = ACTIONS(3448), + [anon_sym_PLUS_PLUS] = ACTIONS(3448), + [anon_sym_sizeof] = ACTIONS(3450), + [sym_number_literal] = ACTIONS(3448), + [anon_sym_SQUOTE] = ACTIONS(3448), + [anon_sym_DQUOTE] = ACTIONS(3448), + [sym_true] = ACTIONS(3450), + [sym_false] = ACTIONS(3450), + [sym_null] = ACTIONS(3450), + [sym_identifier] = ACTIONS(3450), + [sym_comment] = ACTIONS(59), + }, + [1248] = { + [sym_compound_statement] = STATE(1230), + [sym_labeled_statement] = STATE(1230), + [sym_expression_statement] = STATE(1230), + [sym_if_statement] = STATE(1230), + [sym_switch_statement] = STATE(1230), + [sym_case_statement] = STATE(1230), + [sym_while_statement] = STATE(1230), + [sym_do_statement] = STATE(1230), + [sym_for_statement] = STATE(1230), + [sym_return_statement] = STATE(1230), + [sym_break_statement] = STATE(1230), + [sym_continue_statement] = STATE(1230), + [sym_goto_statement] = STATE(1230), + [sym__expression] = STATE(902), + [sym_comma_expression] = STATE(903), + [sym_conditional_expression] = STATE(902), + [sym_assignment_expression] = STATE(902), + [sym_pointer_expression] = STATE(902), + [sym_logical_expression] = STATE(902), + [sym_bitwise_expression] = STATE(902), + [sym_equality_expression] = STATE(902), + [sym_relational_expression] = STATE(902), + [sym_shift_expression] = STATE(902), + [sym_math_expression] = STATE(902), + [sym_cast_expression] = STATE(902), + [sym_sizeof_expression] = STATE(902), + [sym_subscript_expression] = STATE(902), + [sym_call_expression] = STATE(902), + [sym_field_expression] = STATE(902), + [sym_compound_literal_expression] = STATE(902), + [sym_parenthesized_expression] = STATE(902), + [sym_char_literal] = STATE(902), + [sym_concatenated_string] = STATE(902), + [sym_string_literal] = STATE(374), + [anon_sym_SEMI] = ACTIONS(2481), + [anon_sym_LBRACE] = ACTIONS(1699), + [anon_sym_LPAREN2] = ACTIONS(936), + [anon_sym_STAR] = ACTIONS(938), + [anon_sym_if] = ACTIONS(2964), + [anon_sym_switch] = ACTIONS(2966), + [anon_sym_case] = ACTIONS(2968), + [anon_sym_default] = ACTIONS(2970), + [anon_sym_while] = ACTIONS(2972), + [anon_sym_do] = ACTIONS(2499), + [anon_sym_for] = ACTIONS(2974), + [anon_sym_return] = ACTIONS(2503), + [anon_sym_break] = ACTIONS(2505), + [anon_sym_continue] = ACTIONS(2507), + [anon_sym_goto] = ACTIONS(2509), + [anon_sym_AMP] = ACTIONS(938), + [anon_sym_BANG] = ACTIONS(962), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_DASH_DASH] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(968), + [anon_sym_sizeof] = ACTIONS(970), + [sym_number_literal] = ACTIONS(2511), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(2513), + [sym_false] = ACTIONS(2513), + [sym_null] = ACTIONS(2513), + [sym_identifier] = ACTIONS(2976), + [sym_comment] = ACTIONS(59), + }, + [1249] = { + [aux_sym_for_statement_repeat1] = STATE(593), + [anon_sym_COMMA] = ACTIONS(1002), + [anon_sym_RPAREN] = ACTIONS(3452), + [sym_comment] = ACTIONS(59), + }, + [1250] = { + [sym_argument_list] = STATE(98), + [aux_sym_for_statement_repeat1] = STATE(1264), + [anon_sym_COMMA] = ACTIONS(1002), + [anon_sym_RPAREN] = ACTIONS(3452), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(319), + [anon_sym_LBRACK] = ACTIONS(188), + [anon_sym_EQ] = ACTIONS(321), + [anon_sym_QMARK] = ACTIONS(323), + [anon_sym_STAR_EQ] = ACTIONS(325), + [anon_sym_SLASH_EQ] = ACTIONS(325), + [anon_sym_PERCENT_EQ] = ACTIONS(325), + [anon_sym_PLUS_EQ] = ACTIONS(325), + [anon_sym_DASH_EQ] = ACTIONS(325), + [anon_sym_LT_LT_EQ] = ACTIONS(325), + [anon_sym_GT_GT_EQ] = ACTIONS(325), + [anon_sym_AMP_EQ] = ACTIONS(325), + [anon_sym_CARET_EQ] = ACTIONS(325), + [anon_sym_PIPE_EQ] = ACTIONS(325), + [anon_sym_AMP] = ACTIONS(327), + [anon_sym_PIPE_PIPE] = ACTIONS(329), + [anon_sym_AMP_AMP] = ACTIONS(331), + [anon_sym_PIPE] = ACTIONS(333), + [anon_sym_CARET] = ACTIONS(335), + [anon_sym_EQ_EQ] = ACTIONS(337), + [anon_sym_BANG_EQ] = ACTIONS(337), + [anon_sym_LT] = ACTIONS(339), + [anon_sym_GT] = ACTIONS(339), + [anon_sym_LT_EQ] = ACTIONS(341), + [anon_sym_GT_EQ] = ACTIONS(341), + [anon_sym_LT_LT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(343), + [anon_sym_PLUS] = ACTIONS(345), + [anon_sym_DASH] = ACTIONS(345), + [anon_sym_SLASH] = ACTIONS(319), + [anon_sym_PERCENT] = ACTIONS(319), + [anon_sym_DASH_DASH] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(216), + [anon_sym_DOT] = ACTIONS(218), + [anon_sym_DASH_GT] = ACTIONS(218), + [sym_comment] = ACTIONS(59), + }, + [1251] = { + [sym__expression] = STATE(1265), + [sym_conditional_expression] = STATE(1265), + [sym_assignment_expression] = STATE(1265), + [sym_pointer_expression] = STATE(1265), + [sym_logical_expression] = STATE(1265), + [sym_bitwise_expression] = STATE(1265), + [sym_equality_expression] = STATE(1265), + [sym_relational_expression] = STATE(1265), + [sym_shift_expression] = STATE(1265), + [sym_math_expression] = STATE(1265), + [sym_cast_expression] = STATE(1265), + [sym_sizeof_expression] = STATE(1265), + [sym_subscript_expression] = STATE(1265), + [sym_call_expression] = STATE(1265), + [sym_field_expression] = STATE(1265), + [sym_compound_literal_expression] = STATE(1265), + [sym_parenthesized_expression] = STATE(1265), + [sym_char_literal] = STATE(1265), + [sym_concatenated_string] = STATE(1265), + [sym_string_literal] = STATE(55), + [anon_sym_RPAREN] = ACTIONS(3452), + [anon_sym_LPAREN2] = ACTIONS(85), + [anon_sym_STAR] = ACTIONS(87), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_PLUS] = ACTIONS(97), + [anon_sym_DASH] = ACTIONS(97), + [anon_sym_DASH_DASH] = ACTIONS(99), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(101), + [sym_number_literal] = ACTIONS(3454), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(3456), + [sym_false] = ACTIONS(3456), + [sym_null] = ACTIONS(3456), + [sym_identifier] = ACTIONS(3456), + [sym_comment] = ACTIONS(59), + }, + [1252] = { + [anon_sym_SEMI] = ACTIONS(3378), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3380), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3380), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3380), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3380), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3380), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3380), + [sym_preproc_directive] = ACTIONS(3380), + [anon_sym_typedef] = ACTIONS(3380), + [anon_sym_extern] = ACTIONS(3380), + [anon_sym_LBRACE] = ACTIONS(3378), + [anon_sym_LPAREN2] = ACTIONS(3378), + [anon_sym_STAR] = ACTIONS(3378), + [anon_sym_static] = ACTIONS(3380), + [anon_sym_auto] = ACTIONS(3380), + [anon_sym_register] = ACTIONS(3380), + [anon_sym_inline] = ACTIONS(3380), + [anon_sym_const] = ACTIONS(3380), + [anon_sym_restrict] = ACTIONS(3380), + [anon_sym_volatile] = ACTIONS(3380), + [anon_sym__Atomic] = ACTIONS(3380), + [anon_sym_unsigned] = ACTIONS(3380), + [anon_sym_long] = ACTIONS(3380), + [anon_sym_short] = ACTIONS(3380), + [sym_primitive_type] = ACTIONS(3380), + [anon_sym_enum] = ACTIONS(3380), + [anon_sym_struct] = ACTIONS(3380), + [anon_sym_union] = ACTIONS(3380), + [anon_sym_if] = ACTIONS(3380), + [anon_sym_else] = ACTIONS(3380), + [anon_sym_switch] = ACTIONS(3380), + [anon_sym_case] = ACTIONS(3380), + [anon_sym_default] = ACTIONS(3380), + [anon_sym_while] = ACTIONS(3380), + [anon_sym_do] = ACTIONS(3380), + [anon_sym_for] = ACTIONS(3380), + [anon_sym_return] = ACTIONS(3380), + [anon_sym_break] = ACTIONS(3380), + [anon_sym_continue] = ACTIONS(3380), + [anon_sym_goto] = ACTIONS(3380), + [anon_sym_AMP] = ACTIONS(3378), + [anon_sym_BANG] = ACTIONS(3378), + [anon_sym_TILDE] = ACTIONS(3378), + [anon_sym_PLUS] = ACTIONS(3380), + [anon_sym_DASH] = ACTIONS(3380), + [anon_sym_DASH_DASH] = ACTIONS(3378), + [anon_sym_PLUS_PLUS] = ACTIONS(3378), + [anon_sym_sizeof] = ACTIONS(3380), + [sym_number_literal] = ACTIONS(3378), + [anon_sym_SQUOTE] = ACTIONS(3378), + [anon_sym_DQUOTE] = ACTIONS(3378), + [sym_true] = ACTIONS(3380), + [sym_false] = ACTIONS(3380), + [sym_null] = ACTIONS(3380), + [sym_identifier] = ACTIONS(3380), + [sym_comment] = ACTIONS(59), + }, + [1253] = { + [sym_compound_statement] = STATE(1266), + [sym_labeled_statement] = STATE(1266), + [sym_expression_statement] = STATE(1266), + [sym_if_statement] = STATE(1266), + [sym_switch_statement] = STATE(1266), + [sym_case_statement] = STATE(1266), + [sym_while_statement] = STATE(1266), + [sym_do_statement] = STATE(1266), + [sym_for_statement] = STATE(1266), + [sym_return_statement] = STATE(1266), + [sym_break_statement] = STATE(1266), + [sym_continue_statement] = STATE(1266), + [sym_goto_statement] = STATE(1266), + [sym__expression] = STATE(902), + [sym_comma_expression] = STATE(903), + [sym_conditional_expression] = STATE(902), + [sym_assignment_expression] = STATE(902), + [sym_pointer_expression] = STATE(902), + [sym_logical_expression] = STATE(902), + [sym_bitwise_expression] = STATE(902), + [sym_equality_expression] = STATE(902), + [sym_relational_expression] = STATE(902), + [sym_shift_expression] = STATE(902), + [sym_math_expression] = STATE(902), + [sym_cast_expression] = STATE(902), + [sym_sizeof_expression] = STATE(902), + [sym_subscript_expression] = STATE(902), + [sym_call_expression] = STATE(902), + [sym_field_expression] = STATE(902), + [sym_compound_literal_expression] = STATE(902), + [sym_parenthesized_expression] = STATE(902), + [sym_char_literal] = STATE(902), + [sym_concatenated_string] = STATE(902), + [sym_string_literal] = STATE(374), + [anon_sym_SEMI] = ACTIONS(2481), + [anon_sym_LBRACE] = ACTIONS(1699), + [anon_sym_LPAREN2] = ACTIONS(936), + [anon_sym_STAR] = ACTIONS(938), + [anon_sym_if] = ACTIONS(2489), + [anon_sym_switch] = ACTIONS(2491), + [anon_sym_case] = ACTIONS(2493), + [anon_sym_default] = ACTIONS(2495), + [anon_sym_while] = ACTIONS(2497), + [anon_sym_do] = ACTIONS(2499), + [anon_sym_for] = ACTIONS(2501), + [anon_sym_return] = ACTIONS(2503), + [anon_sym_break] = ACTIONS(2505), + [anon_sym_continue] = ACTIONS(2507), + [anon_sym_goto] = ACTIONS(2509), + [anon_sym_AMP] = ACTIONS(938), + [anon_sym_BANG] = ACTIONS(962), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_DASH_DASH] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(968), + [anon_sym_sizeof] = ACTIONS(970), + [sym_number_literal] = ACTIONS(2511), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(2513), + [sym_false] = ACTIONS(2513), + [sym_null] = ACTIONS(2513), + [sym_identifier] = ACTIONS(2978), + [sym_comment] = ACTIONS(59), + }, + [1254] = { + [aux_sym_for_statement_repeat1] = STATE(593), + [anon_sym_COMMA] = ACTIONS(1002), + [anon_sym_RPAREN] = ACTIONS(3458), + [sym_comment] = ACTIONS(59), + }, + [1255] = { + [sym_compound_statement] = STATE(1238), + [sym_labeled_statement] = STATE(1238), + [sym_expression_statement] = STATE(1238), + [sym_if_statement] = STATE(1238), + [sym_switch_statement] = STATE(1238), + [sym_case_statement] = STATE(1238), + [sym_while_statement] = STATE(1238), + [sym_do_statement] = STATE(1238), + [sym_for_statement] = STATE(1238), + [sym_return_statement] = STATE(1238), + [sym_break_statement] = STATE(1238), + [sym_continue_statement] = STATE(1238), + [sym_goto_statement] = STATE(1238), + [sym__expression] = STATE(756), + [sym_comma_expression] = STATE(757), + [sym_conditional_expression] = STATE(756), + [sym_assignment_expression] = STATE(756), + [sym_pointer_expression] = STATE(756), + [sym_logical_expression] = STATE(756), + [sym_bitwise_expression] = STATE(756), + [sym_equality_expression] = STATE(756), + [sym_relational_expression] = STATE(756), + [sym_shift_expression] = STATE(756), + [sym_math_expression] = STATE(756), + [sym_cast_expression] = STATE(756), + [sym_sizeof_expression] = STATE(756), + [sym_subscript_expression] = STATE(756), + [sym_call_expression] = STATE(756), + [sym_field_expression] = STATE(756), + [sym_compound_literal_expression] = STATE(756), + [sym_parenthesized_expression] = STATE(756), + [sym_char_literal] = STATE(756), + [sym_concatenated_string] = STATE(756), + [sym_string_literal] = STATE(374), + [anon_sym_SEMI] = ACTIONS(1940), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_LPAREN2] = ACTIONS(936), + [anon_sym_STAR] = ACTIONS(938), + [anon_sym_if] = ACTIONS(2752), + [anon_sym_switch] = ACTIONS(2754), + [anon_sym_case] = ACTIONS(2756), + [anon_sym_default] = ACTIONS(2758), + [anon_sym_while] = ACTIONS(2760), + [anon_sym_do] = ACTIONS(1962), + [anon_sym_for] = ACTIONS(2762), + [anon_sym_return] = ACTIONS(1966), + [anon_sym_break] = ACTIONS(1968), + [anon_sym_continue] = ACTIONS(1970), + [anon_sym_goto] = ACTIONS(1972), + [anon_sym_AMP] = ACTIONS(938), + [anon_sym_BANG] = ACTIONS(962), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_DASH_DASH] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(968), + [anon_sym_sizeof] = ACTIONS(970), + [sym_number_literal] = ACTIONS(1974), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(1976), + [sym_false] = ACTIONS(1976), + [sym_null] = ACTIONS(1976), + [sym_identifier] = ACTIONS(2764), + [sym_comment] = ACTIONS(59), + }, + [1256] = { + [aux_sym_for_statement_repeat1] = STATE(593), + [anon_sym_COMMA] = ACTIONS(1002), + [anon_sym_RPAREN] = ACTIONS(3460), + [sym_comment] = ACTIONS(59), + }, + [1257] = { + [sym_argument_list] = STATE(98), + [aux_sym_for_statement_repeat1] = STATE(1269), + [anon_sym_COMMA] = ACTIONS(1002), + [anon_sym_RPAREN] = ACTIONS(3460), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(319), + [anon_sym_LBRACK] = ACTIONS(188), + [anon_sym_EQ] = ACTIONS(321), + [anon_sym_QMARK] = ACTIONS(323), + [anon_sym_STAR_EQ] = ACTIONS(325), + [anon_sym_SLASH_EQ] = ACTIONS(325), + [anon_sym_PERCENT_EQ] = ACTIONS(325), + [anon_sym_PLUS_EQ] = ACTIONS(325), + [anon_sym_DASH_EQ] = ACTIONS(325), + [anon_sym_LT_LT_EQ] = ACTIONS(325), + [anon_sym_GT_GT_EQ] = ACTIONS(325), + [anon_sym_AMP_EQ] = ACTIONS(325), + [anon_sym_CARET_EQ] = ACTIONS(325), + [anon_sym_PIPE_EQ] = ACTIONS(325), + [anon_sym_AMP] = ACTIONS(327), + [anon_sym_PIPE_PIPE] = ACTIONS(329), + [anon_sym_AMP_AMP] = ACTIONS(331), + [anon_sym_PIPE] = ACTIONS(333), + [anon_sym_CARET] = ACTIONS(335), + [anon_sym_EQ_EQ] = ACTIONS(337), + [anon_sym_BANG_EQ] = ACTIONS(337), + [anon_sym_LT] = ACTIONS(339), + [anon_sym_GT] = ACTIONS(339), + [anon_sym_LT_EQ] = ACTIONS(341), + [anon_sym_GT_EQ] = ACTIONS(341), + [anon_sym_LT_LT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(343), + [anon_sym_PLUS] = ACTIONS(345), + [anon_sym_DASH] = ACTIONS(345), + [anon_sym_SLASH] = ACTIONS(319), + [anon_sym_PERCENT] = ACTIONS(319), + [anon_sym_DASH_DASH] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(216), + [anon_sym_DOT] = ACTIONS(218), + [anon_sym_DASH_GT] = ACTIONS(218), + [sym_comment] = ACTIONS(59), + }, + [1258] = { + [anon_sym_SEMI] = ACTIONS(3422), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3424), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3424), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3424), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3424), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3424), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3424), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(3424), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(3424), + [sym_preproc_directive] = ACTIONS(3424), + [anon_sym_typedef] = ACTIONS(3424), + [anon_sym_extern] = ACTIONS(3424), + [anon_sym_LBRACE] = ACTIONS(3422), + [anon_sym_LPAREN2] = ACTIONS(3422), + [anon_sym_STAR] = ACTIONS(3422), + [anon_sym_static] = ACTIONS(3424), + [anon_sym_auto] = ACTIONS(3424), + [anon_sym_register] = ACTIONS(3424), + [anon_sym_inline] = ACTIONS(3424), + [anon_sym_const] = ACTIONS(3424), + [anon_sym_restrict] = ACTIONS(3424), + [anon_sym_volatile] = ACTIONS(3424), + [anon_sym__Atomic] = ACTIONS(3424), + [anon_sym_unsigned] = ACTIONS(3424), + [anon_sym_long] = ACTIONS(3424), + [anon_sym_short] = ACTIONS(3424), + [sym_primitive_type] = ACTIONS(3424), + [anon_sym_enum] = ACTIONS(3424), + [anon_sym_struct] = ACTIONS(3424), + [anon_sym_union] = ACTIONS(3424), + [anon_sym_if] = ACTIONS(3424), + [anon_sym_else] = ACTIONS(3424), + [anon_sym_switch] = ACTIONS(3424), + [anon_sym_case] = ACTIONS(3424), + [anon_sym_default] = ACTIONS(3424), + [anon_sym_while] = ACTIONS(3424), + [anon_sym_do] = ACTIONS(3424), + [anon_sym_for] = ACTIONS(3424), + [anon_sym_return] = ACTIONS(3424), + [anon_sym_break] = ACTIONS(3424), + [anon_sym_continue] = ACTIONS(3424), + [anon_sym_goto] = ACTIONS(3424), + [anon_sym_AMP] = ACTIONS(3422), + [anon_sym_BANG] = ACTIONS(3422), + [anon_sym_TILDE] = ACTIONS(3422), + [anon_sym_PLUS] = ACTIONS(3424), + [anon_sym_DASH] = ACTIONS(3424), + [anon_sym_DASH_DASH] = ACTIONS(3422), + [anon_sym_PLUS_PLUS] = ACTIONS(3422), + [anon_sym_sizeof] = ACTIONS(3424), + [sym_number_literal] = ACTIONS(3422), + [anon_sym_SQUOTE] = ACTIONS(3422), + [anon_sym_DQUOTE] = ACTIONS(3422), + [sym_true] = ACTIONS(3424), + [sym_false] = ACTIONS(3424), + [sym_null] = ACTIONS(3424), + [sym_identifier] = ACTIONS(3424), + [sym_comment] = ACTIONS(59), + }, + [1259] = { + [sym_compound_statement] = STATE(1270), + [sym_labeled_statement] = STATE(1270), + [sym_expression_statement] = STATE(1270), + [sym_if_statement] = STATE(1270), + [sym_switch_statement] = STATE(1270), + [sym_case_statement] = STATE(1270), + [sym_while_statement] = STATE(1270), + [sym_do_statement] = STATE(1270), + [sym_for_statement] = STATE(1270), + [sym_return_statement] = STATE(1270), + [sym_break_statement] = STATE(1270), + [sym_continue_statement] = STATE(1270), + [sym_goto_statement] = STATE(1270), + [sym__expression] = STATE(756), + [sym_comma_expression] = STATE(757), + [sym_conditional_expression] = STATE(756), + [sym_assignment_expression] = STATE(756), + [sym_pointer_expression] = STATE(756), + [sym_logical_expression] = STATE(756), + [sym_bitwise_expression] = STATE(756), + [sym_equality_expression] = STATE(756), + [sym_relational_expression] = STATE(756), + [sym_shift_expression] = STATE(756), + [sym_math_expression] = STATE(756), + [sym_cast_expression] = STATE(756), + [sym_sizeof_expression] = STATE(756), + [sym_subscript_expression] = STATE(756), + [sym_call_expression] = STATE(756), + [sym_field_expression] = STATE(756), + [sym_compound_literal_expression] = STATE(756), + [sym_parenthesized_expression] = STATE(756), + [sym_char_literal] = STATE(756), + [sym_concatenated_string] = STATE(756), + [sym_string_literal] = STATE(374), + [anon_sym_SEMI] = ACTIONS(1940), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_LPAREN2] = ACTIONS(936), + [anon_sym_STAR] = ACTIONS(938), + [anon_sym_if] = ACTIONS(1952), + [anon_sym_switch] = ACTIONS(1954), + [anon_sym_case] = ACTIONS(1956), + [anon_sym_default] = ACTIONS(1958), + [anon_sym_while] = ACTIONS(1960), + [anon_sym_do] = ACTIONS(1962), + [anon_sym_for] = ACTIONS(1964), + [anon_sym_return] = ACTIONS(1966), + [anon_sym_break] = ACTIONS(1968), + [anon_sym_continue] = ACTIONS(1970), + [anon_sym_goto] = ACTIONS(1972), + [anon_sym_AMP] = ACTIONS(938), + [anon_sym_BANG] = ACTIONS(962), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_DASH_DASH] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(968), + [anon_sym_sizeof] = ACTIONS(970), + [sym_number_literal] = ACTIONS(1974), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(1976), + [sym_false] = ACTIONS(1976), + [sym_null] = ACTIONS(1976), + [sym_identifier] = ACTIONS(2766), + [sym_comment] = ACTIONS(59), + }, + [1260] = { + [sym_compound_statement] = STATE(1247), + [sym_labeled_statement] = STATE(1247), + [sym_expression_statement] = STATE(1247), + [sym_if_statement] = STATE(1247), + [sym_switch_statement] = STATE(1247), + [sym_case_statement] = STATE(1247), + [sym_while_statement] = STATE(1247), + [sym_do_statement] = STATE(1247), + [sym_for_statement] = STATE(1247), + [sym_return_statement] = STATE(1247), + [sym_break_statement] = STATE(1247), + [sym_continue_statement] = STATE(1247), + [sym_goto_statement] = STATE(1247), + [sym__expression] = STATE(372), + [sym_comma_expression] = STATE(373), + [sym_conditional_expression] = STATE(372), + [sym_assignment_expression] = STATE(372), + [sym_pointer_expression] = STATE(372), + [sym_logical_expression] = STATE(372), + [sym_bitwise_expression] = STATE(372), + [sym_equality_expression] = STATE(372), + [sym_relational_expression] = STATE(372), + [sym_shift_expression] = STATE(372), + [sym_math_expression] = STATE(372), + [sym_cast_expression] = STATE(372), + [sym_sizeof_expression] = STATE(372), + [sym_subscript_expression] = STATE(372), + [sym_call_expression] = STATE(372), + [sym_field_expression] = STATE(372), + [sym_compound_literal_expression] = STATE(372), + [sym_parenthesized_expression] = STATE(372), + [sym_char_literal] = STATE(372), + [sym_concatenated_string] = STATE(372), + [sym_string_literal] = STATE(374), + [anon_sym_SEMI] = ACTIONS(928), + [anon_sym_LBRACE] = ACTIONS(439), + [anon_sym_LPAREN2] = ACTIONS(936), + [anon_sym_STAR] = ACTIONS(938), + [anon_sym_if] = ACTIONS(1988), + [anon_sym_switch] = ACTIONS(1990), + [anon_sym_case] = ACTIONS(1992), + [anon_sym_default] = ACTIONS(1994), + [anon_sym_while] = ACTIONS(1996), + [anon_sym_do] = ACTIONS(950), + [anon_sym_for] = ACTIONS(1998), + [anon_sym_return] = ACTIONS(954), + [anon_sym_break] = ACTIONS(956), + [anon_sym_continue] = ACTIONS(958), + [anon_sym_goto] = ACTIONS(960), + [anon_sym_AMP] = ACTIONS(938), + [anon_sym_BANG] = ACTIONS(962), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_DASH_DASH] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(968), + [anon_sym_sizeof] = ACTIONS(970), + [sym_number_literal] = ACTIONS(972), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(974), + [sym_false] = ACTIONS(974), + [sym_null] = ACTIONS(974), + [sym_identifier] = ACTIONS(2000), + [sym_comment] = ACTIONS(59), }, - [1230] = { - [sym_compound_statement] = STATE(1228), - [sym_labeled_statement] = STATE(1228), - [sym_expression_statement] = STATE(1228), - [sym_if_statement] = STATE(1228), - [sym_switch_statement] = STATE(1228), - [sym_case_statement] = STATE(1228), - [sym_while_statement] = STATE(1228), - [sym_do_statement] = STATE(1228), - [sym_for_statement] = STATE(1228), - [sym_return_statement] = STATE(1228), - [sym_break_statement] = STATE(1228), - [sym_continue_statement] = STATE(1228), - [sym_goto_statement] = STATE(1228), - [sym__expression] = STATE(800), - [sym_comma_expression] = STATE(801), - [sym_conditional_expression] = STATE(800), - [sym_assignment_expression] = STATE(800), - [sym_pointer_expression] = STATE(800), - [sym_logical_expression] = STATE(800), - [sym_bitwise_expression] = STATE(800), - [sym_equality_expression] = STATE(800), - [sym_relational_expression] = STATE(800), - [sym_shift_expression] = STATE(800), - [sym_math_expression] = STATE(800), - [sym_cast_expression] = STATE(800), - [sym_sizeof_expression] = STATE(800), - [sym_subscript_expression] = STATE(800), - [sym_call_expression] = STATE(800), - [sym_field_expression] = STATE(800), - [sym_compound_literal_expression] = STATE(800), - [sym_parenthesized_expression] = STATE(800), - [sym_char_literal] = STATE(800), - [sym_concatenated_string] = STATE(800), - [sym_string_literal] = STATE(230), - [anon_sym_SEMI] = ACTIONS(2082), - [anon_sym_LBRACE] = ACTIONS(1181), - [anon_sym_LPAREN2] = ACTIONS(507), - [anon_sym_STAR] = ACTIONS(509), - [anon_sym_if] = ACTIONS(2788), - [anon_sym_switch] = ACTIONS(2790), - [anon_sym_case] = ACTIONS(2792), - [anon_sym_default] = ACTIONS(2794), - [anon_sym_while] = ACTIONS(2796), - [anon_sym_do] = ACTIONS(2094), - [anon_sym_for] = ACTIONS(2798), - [anon_sym_return] = ACTIONS(2098), - [anon_sym_break] = ACTIONS(2100), - [anon_sym_continue] = ACTIONS(2102), - [anon_sym_goto] = ACTIONS(2104), - [anon_sym_AMP] = ACTIONS(509), - [anon_sym_BANG] = ACTIONS(533), - [anon_sym_TILDE] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DASH] = ACTIONS(537), - [anon_sym_DASH_DASH] = ACTIONS(539), - [anon_sym_PLUS_PLUS] = ACTIONS(539), - [anon_sym_sizeof] = ACTIONS(541), - [sym_number_literal] = ACTIONS(2106), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(39), - [sym_true] = ACTIONS(2108), - [sym_false] = ACTIONS(2108), - [sym_null] = ACTIONS(2108), - [sym_identifier] = ACTIONS(2800), - [sym_comment] = ACTIONS(37), + [1261] = { + [sym_compound_statement] = STATE(1224), + [sym_labeled_statement] = STATE(1224), + [sym_expression_statement] = STATE(1224), + [sym_if_statement] = STATE(1224), + [sym_switch_statement] = STATE(1224), + [sym_case_statement] = STATE(1224), + [sym_while_statement] = STATE(1224), + [sym_do_statement] = STATE(1224), + [sym_for_statement] = STATE(1224), + [sym_return_statement] = STATE(1224), + [sym_break_statement] = STATE(1224), + [sym_continue_statement] = STATE(1224), + [sym_goto_statement] = STATE(1224), + [sym__expression] = STATE(372), + [sym_comma_expression] = STATE(373), + [sym_conditional_expression] = STATE(372), + [sym_assignment_expression] = STATE(372), + [sym_pointer_expression] = STATE(372), + [sym_logical_expression] = STATE(372), + [sym_bitwise_expression] = STATE(372), + [sym_equality_expression] = STATE(372), + [sym_relational_expression] = STATE(372), + [sym_shift_expression] = STATE(372), + [sym_math_expression] = STATE(372), + [sym_cast_expression] = STATE(372), + [sym_sizeof_expression] = STATE(372), + [sym_subscript_expression] = STATE(372), + [sym_call_expression] = STATE(372), + [sym_field_expression] = STATE(372), + [sym_compound_literal_expression] = STATE(372), + [sym_parenthesized_expression] = STATE(372), + [sym_char_literal] = STATE(372), + [sym_concatenated_string] = STATE(372), + [sym_string_literal] = STATE(374), + [anon_sym_SEMI] = ACTIONS(928), + [anon_sym_LBRACE] = ACTIONS(439), + [anon_sym_LPAREN2] = ACTIONS(936), + [anon_sym_STAR] = ACTIONS(938), + [anon_sym_if] = ACTIONS(2587), + [anon_sym_switch] = ACTIONS(2589), + [anon_sym_case] = ACTIONS(2591), + [anon_sym_default] = ACTIONS(2593), + [anon_sym_while] = ACTIONS(2595), + [anon_sym_do] = ACTIONS(1466), + [anon_sym_for] = ACTIONS(2597), + [anon_sym_return] = ACTIONS(954), + [anon_sym_break] = ACTIONS(956), + [anon_sym_continue] = ACTIONS(958), + [anon_sym_goto] = ACTIONS(960), + [anon_sym_AMP] = ACTIONS(938), + [anon_sym_BANG] = ACTIONS(962), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_DASH_DASH] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(968), + [anon_sym_sizeof] = ACTIONS(970), + [sym_number_literal] = ACTIONS(972), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(974), + [sym_false] = ACTIONS(974), + [sym_null] = ACTIONS(974), + [sym_identifier] = ACTIONS(2599), + [sym_comment] = ACTIONS(59), + }, + [1262] = { + [aux_sym_for_statement_repeat1] = STATE(593), + [anon_sym_COMMA] = ACTIONS(1002), + [anon_sym_RPAREN] = ACTIONS(3462), + [sym_comment] = ACTIONS(59), + }, + [1263] = { + [sym_compound_statement] = STATE(1252), + [sym_labeled_statement] = STATE(1252), + [sym_expression_statement] = STATE(1252), + [sym_if_statement] = STATE(1252), + [sym_switch_statement] = STATE(1252), + [sym_case_statement] = STATE(1252), + [sym_while_statement] = STATE(1252), + [sym_do_statement] = STATE(1252), + [sym_for_statement] = STATE(1252), + [sym_return_statement] = STATE(1252), + [sym_break_statement] = STATE(1252), + [sym_continue_statement] = STATE(1252), + [sym_goto_statement] = STATE(1252), + [sym__expression] = STATE(902), + [sym_comma_expression] = STATE(903), + [sym_conditional_expression] = STATE(902), + [sym_assignment_expression] = STATE(902), + [sym_pointer_expression] = STATE(902), + [sym_logical_expression] = STATE(902), + [sym_bitwise_expression] = STATE(902), + [sym_equality_expression] = STATE(902), + [sym_relational_expression] = STATE(902), + [sym_shift_expression] = STATE(902), + [sym_math_expression] = STATE(902), + [sym_cast_expression] = STATE(902), + [sym_sizeof_expression] = STATE(902), + [sym_subscript_expression] = STATE(902), + [sym_call_expression] = STATE(902), + [sym_field_expression] = STATE(902), + [sym_compound_literal_expression] = STATE(902), + [sym_parenthesized_expression] = STATE(902), + [sym_char_literal] = STATE(902), + [sym_concatenated_string] = STATE(902), + [sym_string_literal] = STATE(374), + [anon_sym_SEMI] = ACTIONS(2481), + [anon_sym_LBRACE] = ACTIONS(1699), + [anon_sym_LPAREN2] = ACTIONS(936), + [anon_sym_STAR] = ACTIONS(938), + [anon_sym_if] = ACTIONS(2964), + [anon_sym_switch] = ACTIONS(2966), + [anon_sym_case] = ACTIONS(2968), + [anon_sym_default] = ACTIONS(2970), + [anon_sym_while] = ACTIONS(2972), + [anon_sym_do] = ACTIONS(2499), + [anon_sym_for] = ACTIONS(2974), + [anon_sym_return] = ACTIONS(2503), + [anon_sym_break] = ACTIONS(2505), + [anon_sym_continue] = ACTIONS(2507), + [anon_sym_goto] = ACTIONS(2509), + [anon_sym_AMP] = ACTIONS(938), + [anon_sym_BANG] = ACTIONS(962), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_DASH_DASH] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(968), + [anon_sym_sizeof] = ACTIONS(970), + [sym_number_literal] = ACTIONS(2511), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(2513), + [sym_false] = ACTIONS(2513), + [sym_null] = ACTIONS(2513), + [sym_identifier] = ACTIONS(2976), + [sym_comment] = ACTIONS(59), + }, + [1264] = { + [aux_sym_for_statement_repeat1] = STATE(593), + [anon_sym_COMMA] = ACTIONS(1002), + [anon_sym_RPAREN] = ACTIONS(3464), + [sym_comment] = ACTIONS(59), + }, + [1265] = { + [sym_argument_list] = STATE(98), + [aux_sym_for_statement_repeat1] = STATE(1273), + [anon_sym_COMMA] = ACTIONS(1002), + [anon_sym_RPAREN] = ACTIONS(3464), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(319), + [anon_sym_LBRACK] = ACTIONS(188), + [anon_sym_EQ] = ACTIONS(321), + [anon_sym_QMARK] = ACTIONS(323), + [anon_sym_STAR_EQ] = ACTIONS(325), + [anon_sym_SLASH_EQ] = ACTIONS(325), + [anon_sym_PERCENT_EQ] = ACTIONS(325), + [anon_sym_PLUS_EQ] = ACTIONS(325), + [anon_sym_DASH_EQ] = ACTIONS(325), + [anon_sym_LT_LT_EQ] = ACTIONS(325), + [anon_sym_GT_GT_EQ] = ACTIONS(325), + [anon_sym_AMP_EQ] = ACTIONS(325), + [anon_sym_CARET_EQ] = ACTIONS(325), + [anon_sym_PIPE_EQ] = ACTIONS(325), + [anon_sym_AMP] = ACTIONS(327), + [anon_sym_PIPE_PIPE] = ACTIONS(329), + [anon_sym_AMP_AMP] = ACTIONS(331), + [anon_sym_PIPE] = ACTIONS(333), + [anon_sym_CARET] = ACTIONS(335), + [anon_sym_EQ_EQ] = ACTIONS(337), + [anon_sym_BANG_EQ] = ACTIONS(337), + [anon_sym_LT] = ACTIONS(339), + [anon_sym_GT] = ACTIONS(339), + [anon_sym_LT_EQ] = ACTIONS(341), + [anon_sym_GT_EQ] = ACTIONS(341), + [anon_sym_LT_LT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(343), + [anon_sym_PLUS] = ACTIONS(345), + [anon_sym_DASH] = ACTIONS(345), + [anon_sym_SLASH] = ACTIONS(319), + [anon_sym_PERCENT] = ACTIONS(319), + [anon_sym_DASH_DASH] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(216), + [anon_sym_DOT] = ACTIONS(218), + [anon_sym_DASH_GT] = ACTIONS(218), + [sym_comment] = ACTIONS(59), + }, + [1266] = { + [anon_sym_SEMI] = ACTIONS(3422), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3424), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3424), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3424), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3424), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3424), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3424), + [sym_preproc_directive] = ACTIONS(3424), + [anon_sym_typedef] = ACTIONS(3424), + [anon_sym_extern] = ACTIONS(3424), + [anon_sym_LBRACE] = ACTIONS(3422), + [anon_sym_LPAREN2] = ACTIONS(3422), + [anon_sym_STAR] = ACTIONS(3422), + [anon_sym_static] = ACTIONS(3424), + [anon_sym_auto] = ACTIONS(3424), + [anon_sym_register] = ACTIONS(3424), + [anon_sym_inline] = ACTIONS(3424), + [anon_sym_const] = ACTIONS(3424), + [anon_sym_restrict] = ACTIONS(3424), + [anon_sym_volatile] = ACTIONS(3424), + [anon_sym__Atomic] = ACTIONS(3424), + [anon_sym_unsigned] = ACTIONS(3424), + [anon_sym_long] = ACTIONS(3424), + [anon_sym_short] = ACTIONS(3424), + [sym_primitive_type] = ACTIONS(3424), + [anon_sym_enum] = ACTIONS(3424), + [anon_sym_struct] = ACTIONS(3424), + [anon_sym_union] = ACTIONS(3424), + [anon_sym_if] = ACTIONS(3424), + [anon_sym_else] = ACTIONS(3424), + [anon_sym_switch] = ACTIONS(3424), + [anon_sym_case] = ACTIONS(3424), + [anon_sym_default] = ACTIONS(3424), + [anon_sym_while] = ACTIONS(3424), + [anon_sym_do] = ACTIONS(3424), + [anon_sym_for] = ACTIONS(3424), + [anon_sym_return] = ACTIONS(3424), + [anon_sym_break] = ACTIONS(3424), + [anon_sym_continue] = ACTIONS(3424), + [anon_sym_goto] = ACTIONS(3424), + [anon_sym_AMP] = ACTIONS(3422), + [anon_sym_BANG] = ACTIONS(3422), + [anon_sym_TILDE] = ACTIONS(3422), + [anon_sym_PLUS] = ACTIONS(3424), + [anon_sym_DASH] = ACTIONS(3424), + [anon_sym_DASH_DASH] = ACTIONS(3422), + [anon_sym_PLUS_PLUS] = ACTIONS(3422), + [anon_sym_sizeof] = ACTIONS(3424), + [sym_number_literal] = ACTIONS(3422), + [anon_sym_SQUOTE] = ACTIONS(3422), + [anon_sym_DQUOTE] = ACTIONS(3422), + [sym_true] = ACTIONS(3424), + [sym_false] = ACTIONS(3424), + [sym_null] = ACTIONS(3424), + [sym_identifier] = ACTIONS(3424), + [sym_comment] = ACTIONS(59), + }, + [1267] = { + [sym_compound_statement] = STATE(1274), + [sym_labeled_statement] = STATE(1274), + [sym_expression_statement] = STATE(1274), + [sym_if_statement] = STATE(1274), + [sym_switch_statement] = STATE(1274), + [sym_case_statement] = STATE(1274), + [sym_while_statement] = STATE(1274), + [sym_do_statement] = STATE(1274), + [sym_for_statement] = STATE(1274), + [sym_return_statement] = STATE(1274), + [sym_break_statement] = STATE(1274), + [sym_continue_statement] = STATE(1274), + [sym_goto_statement] = STATE(1274), + [sym__expression] = STATE(902), + [sym_comma_expression] = STATE(903), + [sym_conditional_expression] = STATE(902), + [sym_assignment_expression] = STATE(902), + [sym_pointer_expression] = STATE(902), + [sym_logical_expression] = STATE(902), + [sym_bitwise_expression] = STATE(902), + [sym_equality_expression] = STATE(902), + [sym_relational_expression] = STATE(902), + [sym_shift_expression] = STATE(902), + [sym_math_expression] = STATE(902), + [sym_cast_expression] = STATE(902), + [sym_sizeof_expression] = STATE(902), + [sym_subscript_expression] = STATE(902), + [sym_call_expression] = STATE(902), + [sym_field_expression] = STATE(902), + [sym_compound_literal_expression] = STATE(902), + [sym_parenthesized_expression] = STATE(902), + [sym_char_literal] = STATE(902), + [sym_concatenated_string] = STATE(902), + [sym_string_literal] = STATE(374), + [anon_sym_SEMI] = ACTIONS(2481), + [anon_sym_LBRACE] = ACTIONS(1699), + [anon_sym_LPAREN2] = ACTIONS(936), + [anon_sym_STAR] = ACTIONS(938), + [anon_sym_if] = ACTIONS(2489), + [anon_sym_switch] = ACTIONS(2491), + [anon_sym_case] = ACTIONS(2493), + [anon_sym_default] = ACTIONS(2495), + [anon_sym_while] = ACTIONS(2497), + [anon_sym_do] = ACTIONS(2499), + [anon_sym_for] = ACTIONS(2501), + [anon_sym_return] = ACTIONS(2503), + [anon_sym_break] = ACTIONS(2505), + [anon_sym_continue] = ACTIONS(2507), + [anon_sym_goto] = ACTIONS(2509), + [anon_sym_AMP] = ACTIONS(938), + [anon_sym_BANG] = ACTIONS(962), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_DASH_DASH] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(968), + [anon_sym_sizeof] = ACTIONS(970), + [sym_number_literal] = ACTIONS(2511), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(2513), + [sym_false] = ACTIONS(2513), + [sym_null] = ACTIONS(2513), + [sym_identifier] = ACTIONS(2978), + [sym_comment] = ACTIONS(59), + }, + [1268] = { + [sym_compound_statement] = STATE(1258), + [sym_labeled_statement] = STATE(1258), + [sym_expression_statement] = STATE(1258), + [sym_if_statement] = STATE(1258), + [sym_switch_statement] = STATE(1258), + [sym_case_statement] = STATE(1258), + [sym_while_statement] = STATE(1258), + [sym_do_statement] = STATE(1258), + [sym_for_statement] = STATE(1258), + [sym_return_statement] = STATE(1258), + [sym_break_statement] = STATE(1258), + [sym_continue_statement] = STATE(1258), + [sym_goto_statement] = STATE(1258), + [sym__expression] = STATE(756), + [sym_comma_expression] = STATE(757), + [sym_conditional_expression] = STATE(756), + [sym_assignment_expression] = STATE(756), + [sym_pointer_expression] = STATE(756), + [sym_logical_expression] = STATE(756), + [sym_bitwise_expression] = STATE(756), + [sym_equality_expression] = STATE(756), + [sym_relational_expression] = STATE(756), + [sym_shift_expression] = STATE(756), + [sym_math_expression] = STATE(756), + [sym_cast_expression] = STATE(756), + [sym_sizeof_expression] = STATE(756), + [sym_subscript_expression] = STATE(756), + [sym_call_expression] = STATE(756), + [sym_field_expression] = STATE(756), + [sym_compound_literal_expression] = STATE(756), + [sym_parenthesized_expression] = STATE(756), + [sym_char_literal] = STATE(756), + [sym_concatenated_string] = STATE(756), + [sym_string_literal] = STATE(374), + [anon_sym_SEMI] = ACTIONS(1940), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_LPAREN2] = ACTIONS(936), + [anon_sym_STAR] = ACTIONS(938), + [anon_sym_if] = ACTIONS(2752), + [anon_sym_switch] = ACTIONS(2754), + [anon_sym_case] = ACTIONS(2756), + [anon_sym_default] = ACTIONS(2758), + [anon_sym_while] = ACTIONS(2760), + [anon_sym_do] = ACTIONS(1962), + [anon_sym_for] = ACTIONS(2762), + [anon_sym_return] = ACTIONS(1966), + [anon_sym_break] = ACTIONS(1968), + [anon_sym_continue] = ACTIONS(1970), + [anon_sym_goto] = ACTIONS(1972), + [anon_sym_AMP] = ACTIONS(938), + [anon_sym_BANG] = ACTIONS(962), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_DASH_DASH] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(968), + [anon_sym_sizeof] = ACTIONS(970), + [sym_number_literal] = ACTIONS(1974), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(1976), + [sym_false] = ACTIONS(1976), + [sym_null] = ACTIONS(1976), + [sym_identifier] = ACTIONS(2764), + [sym_comment] = ACTIONS(59), + }, + [1269] = { + [aux_sym_for_statement_repeat1] = STATE(593), + [anon_sym_COMMA] = ACTIONS(1002), + [anon_sym_RPAREN] = ACTIONS(3466), + [sym_comment] = ACTIONS(59), + }, + [1270] = { + [anon_sym_SEMI] = ACTIONS(3448), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3450), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3450), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3450), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3450), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3450), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3450), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(3450), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(3450), + [sym_preproc_directive] = ACTIONS(3450), + [anon_sym_typedef] = ACTIONS(3450), + [anon_sym_extern] = ACTIONS(3450), + [anon_sym_LBRACE] = ACTIONS(3448), + [anon_sym_LPAREN2] = ACTIONS(3448), + [anon_sym_STAR] = ACTIONS(3448), + [anon_sym_static] = ACTIONS(3450), + [anon_sym_auto] = ACTIONS(3450), + [anon_sym_register] = ACTIONS(3450), + [anon_sym_inline] = ACTIONS(3450), + [anon_sym_const] = ACTIONS(3450), + [anon_sym_restrict] = ACTIONS(3450), + [anon_sym_volatile] = ACTIONS(3450), + [anon_sym__Atomic] = ACTIONS(3450), + [anon_sym_unsigned] = ACTIONS(3450), + [anon_sym_long] = ACTIONS(3450), + [anon_sym_short] = ACTIONS(3450), + [sym_primitive_type] = ACTIONS(3450), + [anon_sym_enum] = ACTIONS(3450), + [anon_sym_struct] = ACTIONS(3450), + [anon_sym_union] = ACTIONS(3450), + [anon_sym_if] = ACTIONS(3450), + [anon_sym_else] = ACTIONS(3450), + [anon_sym_switch] = ACTIONS(3450), + [anon_sym_case] = ACTIONS(3450), + [anon_sym_default] = ACTIONS(3450), + [anon_sym_while] = ACTIONS(3450), + [anon_sym_do] = ACTIONS(3450), + [anon_sym_for] = ACTIONS(3450), + [anon_sym_return] = ACTIONS(3450), + [anon_sym_break] = ACTIONS(3450), + [anon_sym_continue] = ACTIONS(3450), + [anon_sym_goto] = ACTIONS(3450), + [anon_sym_AMP] = ACTIONS(3448), + [anon_sym_BANG] = ACTIONS(3448), + [anon_sym_TILDE] = ACTIONS(3448), + [anon_sym_PLUS] = ACTIONS(3450), + [anon_sym_DASH] = ACTIONS(3450), + [anon_sym_DASH_DASH] = ACTIONS(3448), + [anon_sym_PLUS_PLUS] = ACTIONS(3448), + [anon_sym_sizeof] = ACTIONS(3450), + [sym_number_literal] = ACTIONS(3448), + [anon_sym_SQUOTE] = ACTIONS(3448), + [anon_sym_DQUOTE] = ACTIONS(3448), + [sym_true] = ACTIONS(3450), + [sym_false] = ACTIONS(3450), + [sym_null] = ACTIONS(3450), + [sym_identifier] = ACTIONS(3450), + [sym_comment] = ACTIONS(59), + }, + [1271] = { + [sym_compound_statement] = STATE(1247), + [sym_labeled_statement] = STATE(1247), + [sym_expression_statement] = STATE(1247), + [sym_if_statement] = STATE(1247), + [sym_switch_statement] = STATE(1247), + [sym_case_statement] = STATE(1247), + [sym_while_statement] = STATE(1247), + [sym_do_statement] = STATE(1247), + [sym_for_statement] = STATE(1247), + [sym_return_statement] = STATE(1247), + [sym_break_statement] = STATE(1247), + [sym_continue_statement] = STATE(1247), + [sym_goto_statement] = STATE(1247), + [sym__expression] = STATE(372), + [sym_comma_expression] = STATE(373), + [sym_conditional_expression] = STATE(372), + [sym_assignment_expression] = STATE(372), + [sym_pointer_expression] = STATE(372), + [sym_logical_expression] = STATE(372), + [sym_bitwise_expression] = STATE(372), + [sym_equality_expression] = STATE(372), + [sym_relational_expression] = STATE(372), + [sym_shift_expression] = STATE(372), + [sym_math_expression] = STATE(372), + [sym_cast_expression] = STATE(372), + [sym_sizeof_expression] = STATE(372), + [sym_subscript_expression] = STATE(372), + [sym_call_expression] = STATE(372), + [sym_field_expression] = STATE(372), + [sym_compound_literal_expression] = STATE(372), + [sym_parenthesized_expression] = STATE(372), + [sym_char_literal] = STATE(372), + [sym_concatenated_string] = STATE(372), + [sym_string_literal] = STATE(374), + [anon_sym_SEMI] = ACTIONS(928), + [anon_sym_LBRACE] = ACTIONS(439), + [anon_sym_LPAREN2] = ACTIONS(936), + [anon_sym_STAR] = ACTIONS(938), + [anon_sym_if] = ACTIONS(2587), + [anon_sym_switch] = ACTIONS(2589), + [anon_sym_case] = ACTIONS(2591), + [anon_sym_default] = ACTIONS(2593), + [anon_sym_while] = ACTIONS(2595), + [anon_sym_do] = ACTIONS(1466), + [anon_sym_for] = ACTIONS(2597), + [anon_sym_return] = ACTIONS(954), + [anon_sym_break] = ACTIONS(956), + [anon_sym_continue] = ACTIONS(958), + [anon_sym_goto] = ACTIONS(960), + [anon_sym_AMP] = ACTIONS(938), + [anon_sym_BANG] = ACTIONS(962), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_DASH_DASH] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(968), + [anon_sym_sizeof] = ACTIONS(970), + [sym_number_literal] = ACTIONS(972), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(974), + [sym_false] = ACTIONS(974), + [sym_null] = ACTIONS(974), + [sym_identifier] = ACTIONS(2599), + [sym_comment] = ACTIONS(59), + }, + [1272] = { + [sym_compound_statement] = STATE(1266), + [sym_labeled_statement] = STATE(1266), + [sym_expression_statement] = STATE(1266), + [sym_if_statement] = STATE(1266), + [sym_switch_statement] = STATE(1266), + [sym_case_statement] = STATE(1266), + [sym_while_statement] = STATE(1266), + [sym_do_statement] = STATE(1266), + [sym_for_statement] = STATE(1266), + [sym_return_statement] = STATE(1266), + [sym_break_statement] = STATE(1266), + [sym_continue_statement] = STATE(1266), + [sym_goto_statement] = STATE(1266), + [sym__expression] = STATE(902), + [sym_comma_expression] = STATE(903), + [sym_conditional_expression] = STATE(902), + [sym_assignment_expression] = STATE(902), + [sym_pointer_expression] = STATE(902), + [sym_logical_expression] = STATE(902), + [sym_bitwise_expression] = STATE(902), + [sym_equality_expression] = STATE(902), + [sym_relational_expression] = STATE(902), + [sym_shift_expression] = STATE(902), + [sym_math_expression] = STATE(902), + [sym_cast_expression] = STATE(902), + [sym_sizeof_expression] = STATE(902), + [sym_subscript_expression] = STATE(902), + [sym_call_expression] = STATE(902), + [sym_field_expression] = STATE(902), + [sym_compound_literal_expression] = STATE(902), + [sym_parenthesized_expression] = STATE(902), + [sym_char_literal] = STATE(902), + [sym_concatenated_string] = STATE(902), + [sym_string_literal] = STATE(374), + [anon_sym_SEMI] = ACTIONS(2481), + [anon_sym_LBRACE] = ACTIONS(1699), + [anon_sym_LPAREN2] = ACTIONS(936), + [anon_sym_STAR] = ACTIONS(938), + [anon_sym_if] = ACTIONS(2964), + [anon_sym_switch] = ACTIONS(2966), + [anon_sym_case] = ACTIONS(2968), + [anon_sym_default] = ACTIONS(2970), + [anon_sym_while] = ACTIONS(2972), + [anon_sym_do] = ACTIONS(2499), + [anon_sym_for] = ACTIONS(2974), + [anon_sym_return] = ACTIONS(2503), + [anon_sym_break] = ACTIONS(2505), + [anon_sym_continue] = ACTIONS(2507), + [anon_sym_goto] = ACTIONS(2509), + [anon_sym_AMP] = ACTIONS(938), + [anon_sym_BANG] = ACTIONS(962), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_DASH_DASH] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(968), + [anon_sym_sizeof] = ACTIONS(970), + [sym_number_literal] = ACTIONS(2511), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(2513), + [sym_false] = ACTIONS(2513), + [sym_null] = ACTIONS(2513), + [sym_identifier] = ACTIONS(2976), + [sym_comment] = ACTIONS(59), + }, + [1273] = { + [aux_sym_for_statement_repeat1] = STATE(593), + [anon_sym_COMMA] = ACTIONS(1002), + [anon_sym_RPAREN] = ACTIONS(3468), + [sym_comment] = ACTIONS(59), + }, + [1274] = { + [anon_sym_SEMI] = ACTIONS(3448), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3450), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3450), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3450), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3450), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3450), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3450), + [sym_preproc_directive] = ACTIONS(3450), + [anon_sym_typedef] = ACTIONS(3450), + [anon_sym_extern] = ACTIONS(3450), + [anon_sym_LBRACE] = ACTIONS(3448), + [anon_sym_LPAREN2] = ACTIONS(3448), + [anon_sym_STAR] = ACTIONS(3448), + [anon_sym_static] = ACTIONS(3450), + [anon_sym_auto] = ACTIONS(3450), + [anon_sym_register] = ACTIONS(3450), + [anon_sym_inline] = ACTIONS(3450), + [anon_sym_const] = ACTIONS(3450), + [anon_sym_restrict] = ACTIONS(3450), + [anon_sym_volatile] = ACTIONS(3450), + [anon_sym__Atomic] = ACTIONS(3450), + [anon_sym_unsigned] = ACTIONS(3450), + [anon_sym_long] = ACTIONS(3450), + [anon_sym_short] = ACTIONS(3450), + [sym_primitive_type] = ACTIONS(3450), + [anon_sym_enum] = ACTIONS(3450), + [anon_sym_struct] = ACTIONS(3450), + [anon_sym_union] = ACTIONS(3450), + [anon_sym_if] = ACTIONS(3450), + [anon_sym_else] = ACTIONS(3450), + [anon_sym_switch] = ACTIONS(3450), + [anon_sym_case] = ACTIONS(3450), + [anon_sym_default] = ACTIONS(3450), + [anon_sym_while] = ACTIONS(3450), + [anon_sym_do] = ACTIONS(3450), + [anon_sym_for] = ACTIONS(3450), + [anon_sym_return] = ACTIONS(3450), + [anon_sym_break] = ACTIONS(3450), + [anon_sym_continue] = ACTIONS(3450), + [anon_sym_goto] = ACTIONS(3450), + [anon_sym_AMP] = ACTIONS(3448), + [anon_sym_BANG] = ACTIONS(3448), + [anon_sym_TILDE] = ACTIONS(3448), + [anon_sym_PLUS] = ACTIONS(3450), + [anon_sym_DASH] = ACTIONS(3450), + [anon_sym_DASH_DASH] = ACTIONS(3448), + [anon_sym_PLUS_PLUS] = ACTIONS(3448), + [anon_sym_sizeof] = ACTIONS(3450), + [sym_number_literal] = ACTIONS(3448), + [anon_sym_SQUOTE] = ACTIONS(3448), + [anon_sym_DQUOTE] = ACTIONS(3448), + [sym_true] = ACTIONS(3450), + [sym_false] = ACTIONS(3450), + [sym_null] = ACTIONS(3450), + [sym_identifier] = ACTIONS(3450), + [sym_comment] = ACTIONS(59), + }, + [1275] = { + [sym_compound_statement] = STATE(1270), + [sym_labeled_statement] = STATE(1270), + [sym_expression_statement] = STATE(1270), + [sym_if_statement] = STATE(1270), + [sym_switch_statement] = STATE(1270), + [sym_case_statement] = STATE(1270), + [sym_while_statement] = STATE(1270), + [sym_do_statement] = STATE(1270), + [sym_for_statement] = STATE(1270), + [sym_return_statement] = STATE(1270), + [sym_break_statement] = STATE(1270), + [sym_continue_statement] = STATE(1270), + [sym_goto_statement] = STATE(1270), + [sym__expression] = STATE(756), + [sym_comma_expression] = STATE(757), + [sym_conditional_expression] = STATE(756), + [sym_assignment_expression] = STATE(756), + [sym_pointer_expression] = STATE(756), + [sym_logical_expression] = STATE(756), + [sym_bitwise_expression] = STATE(756), + [sym_equality_expression] = STATE(756), + [sym_relational_expression] = STATE(756), + [sym_shift_expression] = STATE(756), + [sym_math_expression] = STATE(756), + [sym_cast_expression] = STATE(756), + [sym_sizeof_expression] = STATE(756), + [sym_subscript_expression] = STATE(756), + [sym_call_expression] = STATE(756), + [sym_field_expression] = STATE(756), + [sym_compound_literal_expression] = STATE(756), + [sym_parenthesized_expression] = STATE(756), + [sym_char_literal] = STATE(756), + [sym_concatenated_string] = STATE(756), + [sym_string_literal] = STATE(374), + [anon_sym_SEMI] = ACTIONS(1940), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_LPAREN2] = ACTIONS(936), + [anon_sym_STAR] = ACTIONS(938), + [anon_sym_if] = ACTIONS(2752), + [anon_sym_switch] = ACTIONS(2754), + [anon_sym_case] = ACTIONS(2756), + [anon_sym_default] = ACTIONS(2758), + [anon_sym_while] = ACTIONS(2760), + [anon_sym_do] = ACTIONS(1962), + [anon_sym_for] = ACTIONS(2762), + [anon_sym_return] = ACTIONS(1966), + [anon_sym_break] = ACTIONS(1968), + [anon_sym_continue] = ACTIONS(1970), + [anon_sym_goto] = ACTIONS(1972), + [anon_sym_AMP] = ACTIONS(938), + [anon_sym_BANG] = ACTIONS(962), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_DASH_DASH] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(968), + [anon_sym_sizeof] = ACTIONS(970), + [sym_number_literal] = ACTIONS(1974), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(1976), + [sym_false] = ACTIONS(1976), + [sym_null] = ACTIONS(1976), + [sym_identifier] = ACTIONS(2764), + [sym_comment] = ACTIONS(59), + }, + [1276] = { + [sym_compound_statement] = STATE(1274), + [sym_labeled_statement] = STATE(1274), + [sym_expression_statement] = STATE(1274), + [sym_if_statement] = STATE(1274), + [sym_switch_statement] = STATE(1274), + [sym_case_statement] = STATE(1274), + [sym_while_statement] = STATE(1274), + [sym_do_statement] = STATE(1274), + [sym_for_statement] = STATE(1274), + [sym_return_statement] = STATE(1274), + [sym_break_statement] = STATE(1274), + [sym_continue_statement] = STATE(1274), + [sym_goto_statement] = STATE(1274), + [sym__expression] = STATE(902), + [sym_comma_expression] = STATE(903), + [sym_conditional_expression] = STATE(902), + [sym_assignment_expression] = STATE(902), + [sym_pointer_expression] = STATE(902), + [sym_logical_expression] = STATE(902), + [sym_bitwise_expression] = STATE(902), + [sym_equality_expression] = STATE(902), + [sym_relational_expression] = STATE(902), + [sym_shift_expression] = STATE(902), + [sym_math_expression] = STATE(902), + [sym_cast_expression] = STATE(902), + [sym_sizeof_expression] = STATE(902), + [sym_subscript_expression] = STATE(902), + [sym_call_expression] = STATE(902), + [sym_field_expression] = STATE(902), + [sym_compound_literal_expression] = STATE(902), + [sym_parenthesized_expression] = STATE(902), + [sym_char_literal] = STATE(902), + [sym_concatenated_string] = STATE(902), + [sym_string_literal] = STATE(374), + [anon_sym_SEMI] = ACTIONS(2481), + [anon_sym_LBRACE] = ACTIONS(1699), + [anon_sym_LPAREN2] = ACTIONS(936), + [anon_sym_STAR] = ACTIONS(938), + [anon_sym_if] = ACTIONS(2964), + [anon_sym_switch] = ACTIONS(2966), + [anon_sym_case] = ACTIONS(2968), + [anon_sym_default] = ACTIONS(2970), + [anon_sym_while] = ACTIONS(2972), + [anon_sym_do] = ACTIONS(2499), + [anon_sym_for] = ACTIONS(2974), + [anon_sym_return] = ACTIONS(2503), + [anon_sym_break] = ACTIONS(2505), + [anon_sym_continue] = ACTIONS(2507), + [anon_sym_goto] = ACTIONS(2509), + [anon_sym_AMP] = ACTIONS(938), + [anon_sym_BANG] = ACTIONS(962), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_DASH_DASH] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(968), + [anon_sym_sizeof] = ACTIONS(970), + [sym_number_literal] = ACTIONS(2511), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_true] = ACTIONS(2513), + [sym_false] = ACTIONS(2513), + [sym_null] = ACTIONS(2513), + [sym_identifier] = ACTIONS(2976), + [sym_comment] = ACTIONS(59), }, }; @@ -50986,1582 +54402,1649 @@ static TSParseActionEntry ts_parse_actions[] = { [15] = {.count = 1, .reusable = false}, SHIFT(6), [17] = {.count = 1, .reusable = false}, SHIFT(7), [19] = {.count = 1, .reusable = false}, SHIFT(8), - [21] = {.count = 1, .reusable = false}, SHIFT(9), - [23] = {.count = 1, .reusable = false}, SHIFT(10), - [25] = {.count = 1, .reusable = false}, SHIFT(20), - [27] = {.count = 1, .reusable = false}, SHIFT(17), - [29] = {.count = 1, .reusable = false}, SHIFT(11), - [31] = {.count = 1, .reusable = false}, SHIFT(12), + [21] = {.count = 1, .reusable = true}, SHIFT(9), + [23] = {.count = 1, .reusable = true}, SHIFT(10), + [25] = {.count = 1, .reusable = false}, SHIFT(11), + [27] = {.count = 1, .reusable = false}, SHIFT(12), + [29] = {.count = 1, .reusable = false}, SHIFT(31), + [31] = {.count = 1, .reusable = false}, SHIFT(25), [33] = {.count = 1, .reusable = false}, SHIFT(13), [35] = {.count = 1, .reusable = false}, SHIFT(14), - [37] = {.count = 1, .reusable = true}, SHIFT_EXTRA(), - [39] = {.count = 1, .reusable = true}, SHIFT(21), - [41] = {.count = 1, .reusable = true}, SHIFT(22), - [43] = {.count = 1, .reusable = true}, SHIFT(23), - [45] = {.count = 1, .reusable = false}, SHIFT(24), - [47] = {.count = 1, .reusable = false}, SHIFT_EXTRA(), - [49] = {.count = 1, .reusable = true}, SHIFT(25), - [51] = {.count = 1, .reusable = false}, SHIFT(26), - [53] = {.count = 1, .reusable = false}, SHIFT(27), - [55] = {.count = 1, .reusable = false}, SHIFT(30), - [57] = {.count = 1, .reusable = false}, SHIFT(28), - [59] = {.count = 1, .reusable = false}, REDUCE(sym_storage_class_specifier, 1), - [61] = {.count = 1, .reusable = true}, REDUCE(sym_storage_class_specifier, 1), - [63] = {.count = 1, .reusable = true}, REDUCE(sym_type_qualifier, 1), - [65] = {.count = 1, .reusable = false}, REDUCE(sym_type_qualifier, 1), - [67] = {.count = 1, .reusable = true}, SHIFT(32), - [69] = {.count = 1, .reusable = true}, SHIFT(33), - [71] = {.count = 1, .reusable = true}, SHIFT(35), - [73] = {.count = 1, .reusable = true}, SHIFT(36), - [75] = {.count = 1, .reusable = true}, SHIFT(38), - [77] = {.count = 1, .reusable = true}, REDUCE(sym__type_specifier, 1, .alias_sequence_id = 1), - [79] = {.count = 1, .reusable = false}, REDUCE(sym__type_specifier, 1, .alias_sequence_id = 1), - [81] = {.count = 2, .reusable = true}, REDUCE(sym__type_specifier, 1, .alias_sequence_id = 1), SHIFT(40), - [84] = {.count = 1, .reusable = true}, ACCEPT_INPUT(), - [86] = {.count = 1, .reusable = true}, SHIFT(41), - [88] = {.count = 1, .reusable = true}, SHIFT(42), - [90] = {.count = 1, .reusable = true}, SHIFT(43), - [92] = {.count = 1, .reusable = true}, SHIFT(44), - [94] = {.count = 1, .reusable = true}, REDUCE(sym__declaration_specifiers, 1), - [96] = {.count = 1, .reusable = false}, REDUCE(sym__declaration_specifiers, 1), - [98] = {.count = 1, .reusable = true}, REDUCE(sym_translation_unit, 1), - [100] = {.count = 1, .reusable = false}, SHIFT(48), - [102] = {.count = 1, .reusable = true}, REDUCE(sym_sized_type_specifier, 1), - [104] = {.count = 1, .reusable = false}, REDUCE(sym_sized_type_specifier, 1), - [106] = {.count = 1, .reusable = false}, SHIFT(52), - [108] = {.count = 1, .reusable = false}, SHIFT(50), - [110] = {.count = 2, .reusable = false}, REDUCE(sym_sized_type_specifier, 1), SHIFT(51), - [113] = {.count = 1, .reusable = false}, SHIFT(53), - [115] = {.count = 1, .reusable = true}, SHIFT(54), - [117] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_include, 2), - [119] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_include, 2), - [121] = {.count = 1, .reusable = false}, SHIFT(55), - [123] = {.count = 1, .reusable = true}, SHIFT(56), - [125] = {.count = 1, .reusable = false}, SHIFT(57), - [127] = {.count = 1, .reusable = false}, SHIFT(59), - [129] = {.count = 1, .reusable = false}, SHIFT(60), - [131] = {.count = 1, .reusable = false}, SHIFT(61), - [133] = {.count = 1, .reusable = false}, SHIFT(62), - [135] = {.count = 1, .reusable = false}, SHIFT(63), - [137] = {.count = 1, .reusable = false}, SHIFT(64), - [139] = {.count = 1, .reusable = false}, SHIFT(65), - [141] = {.count = 1, .reusable = false}, SHIFT(66), - [143] = {.count = 1, .reusable = false}, SHIFT(67), - [145] = {.count = 1, .reusable = false}, SHIFT(68), + [37] = {.count = 1, .reusable = false}, SHIFT(15), + [39] = {.count = 1, .reusable = true}, SHIFT(16), + [41] = {.count = 1, .reusable = true}, SHIFT(17), + [43] = {.count = 1, .reusable = false}, SHIFT(18), + [45] = {.count = 1, .reusable = true}, SHIFT(18), + [47] = {.count = 1, .reusable = false}, SHIFT(19), + [49] = {.count = 1, .reusable = true}, SHIFT(26), + [51] = {.count = 1, .reusable = true}, SHIFT(20), + [53] = {.count = 1, .reusable = true}, SHIFT(21), + [55] = {.count = 1, .reusable = false}, SHIFT(26), + [57] = {.count = 1, .reusable = false}, SHIFT(22), + [59] = {.count = 1, .reusable = true}, SHIFT_EXTRA(), + [61] = {.count = 1, .reusable = true}, SHIFT(32), + [63] = {.count = 1, .reusable = true}, SHIFT(33), + [65] = {.count = 1, .reusable = true}, SHIFT(34), + [67] = {.count = 1, .reusable = false}, SHIFT(35), + [69] = {.count = 1, .reusable = false}, SHIFT_EXTRA(), + [71] = {.count = 1, .reusable = true}, SHIFT(36), + [73] = {.count = 1, .reusable = false}, SHIFT(37), + [75] = {.count = 1, .reusable = false}, SHIFT(38), + [77] = {.count = 1, .reusable = false}, SHIFT(42), + [79] = {.count = 1, .reusable = false}, SHIFT(40), + [81] = {.count = 1, .reusable = false}, SHIFT(39), + [83] = {.count = 1, .reusable = false}, REDUCE(sym_storage_class_specifier, 1), + [85] = {.count = 1, .reusable = true}, SHIFT(44), + [87] = {.count = 1, .reusable = true}, SHIFT(45), + [89] = {.count = 1, .reusable = false}, SHIFT(57), + [91] = {.count = 1, .reusable = false}, SHIFT(51), + [93] = {.count = 1, .reusable = true}, SHIFT(46), + [95] = {.count = 1, .reusable = true}, SHIFT(47), + [97] = {.count = 1, .reusable = false}, SHIFT(48), + [99] = {.count = 1, .reusable = true}, SHIFT(48), + [101] = {.count = 1, .reusable = false}, SHIFT(49), + [103] = {.count = 1, .reusable = true}, SHIFT(52), + [105] = {.count = 1, .reusable = false}, SHIFT(52), + [107] = {.count = 1, .reusable = false}, SHIFT(50), + [109] = {.count = 1, .reusable = true}, SHIFT(58), + [111] = {.count = 1, .reusable = false}, SHIFT(58), + [113] = {.count = 1, .reusable = true}, REDUCE(sym_storage_class_specifier, 1), + [115] = {.count = 1, .reusable = true}, REDUCE(sym_type_qualifier, 1), + [117] = {.count = 1, .reusable = false}, REDUCE(sym_type_qualifier, 1), + [119] = {.count = 1, .reusable = true}, SHIFT(59), + [121] = {.count = 1, .reusable = true}, SHIFT(60), + [123] = {.count = 1, .reusable = true}, SHIFT(62), + [125] = {.count = 1, .reusable = true}, SHIFT(63), + [127] = {.count = 1, .reusable = true}, SHIFT(65), + [129] = {.count = 1, .reusable = true}, SHIFT(67), + [131] = {.count = 1, .reusable = false}, SHIFT(67), + [133] = {.count = 1, .reusable = true}, SHIFT(68), + [135] = {.count = 1, .reusable = false}, SHIFT(68), + [137] = {.count = 1, .reusable = true}, SHIFT(69), + [139] = {.count = 1, .reusable = false}, SHIFT(69), + [141] = {.count = 1, .reusable = true}, SHIFT(70), + [143] = {.count = 1, .reusable = true}, SHIFT(71), + [145] = {.count = 1, .reusable = false}, SHIFT(71), [147] = {.count = 1, .reusable = false}, SHIFT(72), - [149] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_call, 2), - [151] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_call, 2), - [153] = {.count = 1, .reusable = true}, SHIFT(75), - [155] = {.count = 1, .reusable = true}, SHIFT(76), - [157] = {.count = 1, .reusable = true}, SHIFT(77), - [159] = {.count = 1, .reusable = true}, SHIFT(78), - [161] = {.count = 1, .reusable = false}, SHIFT(80), - [163] = {.count = 1, .reusable = false}, SHIFT(82), - [165] = {.count = 1, .reusable = true}, SHIFT(83), - [167] = {.count = 1, .reusable = false}, SHIFT(88), - [169] = {.count = 1, .reusable = false}, SHIFT(86), - [171] = {.count = 1, .reusable = true}, SHIFT(89), - [173] = {.count = 1, .reusable = true}, SHIFT(90), - [175] = {.count = 1, .reusable = true}, SHIFT(91), - [177] = {.count = 1, .reusable = true}, REDUCE(sym_enum_specifier, 2, .alias_sequence_id = 2), - [179] = {.count = 1, .reusable = false}, REDUCE(sym_enum_specifier, 2, .alias_sequence_id = 2), - [181] = {.count = 1, .reusable = true}, REDUCE(sym_enum_specifier, 2), - [183] = {.count = 1, .reusable = false}, REDUCE(sym_enum_specifier, 2), - [185] = {.count = 1, .reusable = false}, SHIFT(94), - [187] = {.count = 1, .reusable = true}, SHIFT(95), - [189] = {.count = 1, .reusable = true}, SHIFT(96), - [191] = {.count = 1, .reusable = false}, SHIFT(101), - [193] = {.count = 1, .reusable = false}, SHIFT(98), - [195] = {.count = 1, .reusable = true}, REDUCE(sym_struct_specifier, 2, .alias_sequence_id = 2), - [197] = {.count = 1, .reusable = false}, REDUCE(sym_struct_specifier, 2, .alias_sequence_id = 2), - [199] = {.count = 1, .reusable = true}, REDUCE(sym_struct_specifier, 2), - [201] = {.count = 1, .reusable = false}, REDUCE(sym_struct_specifier, 2), - [203] = {.count = 1, .reusable = true}, REDUCE(sym_union_specifier, 2, .alias_sequence_id = 2), - [205] = {.count = 1, .reusable = false}, REDUCE(sym_union_specifier, 2, .alias_sequence_id = 2), - [207] = {.count = 1, .reusable = true}, REDUCE(sym_union_specifier, 2), - [209] = {.count = 1, .reusable = false}, REDUCE(sym_union_specifier, 2), - [211] = {.count = 1, .reusable = false}, SHIFT(107), - [213] = {.count = 1, .reusable = false}, SHIFT(104), - [215] = {.count = 1, .reusable = true}, REDUCE(sym__empty_declaration, 2), - [217] = {.count = 1, .reusable = false}, REDUCE(sym__empty_declaration, 2), - [219] = {.count = 1, .reusable = true}, SHIFT(108), - [221] = {.count = 1, .reusable = true}, SHIFT(109), - [223] = {.count = 1, .reusable = false}, SHIFT(110), - [225] = {.count = 1, .reusable = true}, SHIFT(112), - [227] = {.count = 1, .reusable = true}, SHIFT(113), - [229] = {.count = 1, .reusable = true}, SHIFT(114), - [231] = {.count = 1, .reusable = true}, SHIFT(115), - [233] = {.count = 1, .reusable = true}, SHIFT(116), - [235] = {.count = 1, .reusable = true}, SHIFT(117), - [237] = {.count = 1, .reusable = true}, REDUCE(sym__declaration_specifiers, 2), - [239] = {.count = 1, .reusable = false}, REDUCE(sym__declaration_specifiers, 2), - [241] = {.count = 1, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), - [243] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2), - [246] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3), - [249] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4), - [252] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5), - [255] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6), - [258] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(7), - [261] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(8), - [264] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(9), - [267] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(10), - [270] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(20), - [273] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(17), - [276] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(11), - [279] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(12), - [282] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(13), - [285] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(14), - [288] = {.count = 2, .reusable = false}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(9), - [291] = {.count = 2, .reusable = false}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(10), - [294] = {.count = 1, .reusable = false}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), - [296] = {.count = 1, .reusable = true}, REDUCE(sym_sized_type_specifier, 2), - [298] = {.count = 1, .reusable = false}, REDUCE(sym_sized_type_specifier, 2), - [300] = {.count = 1, .reusable = true}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .alias_sequence_id = 2), - [302] = {.count = 1, .reusable = false}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .alias_sequence_id = 2), - [304] = {.count = 1, .reusable = true}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), - [306] = {.count = 1, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), - [308] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(52), - [311] = {.count = 1, .reusable = true}, REDUCE(sym_string_literal, 2), - [313] = {.count = 1, .reusable = false}, REDUCE(sym_string_literal, 2), - [315] = {.count = 1, .reusable = false}, SHIFT(123), - [317] = {.count = 1, .reusable = true}, SHIFT(124), - [319] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_def, 3), - [321] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_def, 3), - [323] = {.count = 1, .reusable = true}, SHIFT(125), - [325] = {.count = 1, .reusable = true}, SHIFT(126), - [327] = {.count = 1, .reusable = true}, SHIFT(127), - [329] = {.count = 1, .reusable = false}, SHIFT(128), - [331] = {.count = 1, .reusable = false}, SHIFT(129), - [333] = {.count = 1, .reusable = true}, SHIFT(130), - [335] = {.count = 1, .reusable = true}, SHIFT(131), - [337] = {.count = 1, .reusable = true}, SHIFT(132), - [339] = {.count = 1, .reusable = false}, SHIFT(133), - [341] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if, 3), - [343] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if, 3), - [345] = {.count = 1, .reusable = true}, SHIFT(134), - [347] = {.count = 1, .reusable = false}, SHIFT(135), - [349] = {.count = 1, .reusable = false}, SHIFT(136), - [351] = {.count = 1, .reusable = false}, SHIFT(137), - [353] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_else, 1), - [355] = {.count = 1, .reusable = false}, SHIFT(138), - [357] = {.count = 1, .reusable = false}, SHIFT(139), - [359] = {.count = 1, .reusable = false}, SHIFT(140), - [361] = {.count = 1, .reusable = false}, SHIFT(141), - [363] = {.count = 1, .reusable = false}, SHIFT(144), - [365] = {.count = 1, .reusable = false}, SHIFT(145), - [367] = {.count = 1, .reusable = false}, SHIFT(146), - [369] = {.count = 1, .reusable = false}, SHIFT(147), - [371] = {.count = 1, .reusable = true}, SHIFT(150), - [373] = {.count = 1, .reusable = true}, SHIFT(151), - [375] = {.count = 1, .reusable = true}, SHIFT(152), - [377] = {.count = 1, .reusable = false}, SHIFT(150), - [379] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef, 3), - [381] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef, 3), - [383] = {.count = 1, .reusable = true}, SHIFT(156), - [385] = {.count = 1, .reusable = false}, SHIFT(156), - [387] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_call, 3), - [389] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_call, 3), - [391] = {.count = 1, .reusable = true}, SHIFT(158), - [393] = {.count = 1, .reusable = false}, SHIFT(78), - [395] = {.count = 1, .reusable = true}, REDUCE(sym__type_declarator, 1, .alias_sequence_id = 1), - [397] = {.count = 1, .reusable = true}, SHIFT(162), - [399] = {.count = 1, .reusable = true}, SHIFT(163), - [401] = {.count = 2, .reusable = false}, REDUCE(aux_sym_type_definition_repeat1, 2), SHIFT_REPEAT(10), - [404] = {.count = 1, .reusable = false}, REDUCE(aux_sym_type_definition_repeat1, 2), - [406] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(82), - [409] = {.count = 1, .reusable = true}, SHIFT(166), - [411] = {.count = 1, .reusable = true}, REDUCE(sym_linkage_specification, 3), - [413] = {.count = 1, .reusable = false}, REDUCE(sym_linkage_specification, 3), - [415] = {.count = 1, .reusable = false}, SHIFT(169), - [417] = {.count = 1, .reusable = false}, SHIFT(170), - [419] = {.count = 1, .reusable = true}, SHIFT(171), - [421] = {.count = 1, .reusable = true}, REDUCE(sym_enumerator_list, 2), - [423] = {.count = 1, .reusable = false}, REDUCE(sym_enumerator_list, 2), - [425] = {.count = 1, .reusable = true}, REDUCE(sym_enumerator, 1), - [427] = {.count = 1, .reusable = true}, SHIFT(172), - [429] = {.count = 1, .reusable = true}, SHIFT(173), - [431] = {.count = 1, .reusable = true}, REDUCE(sym_enum_specifier, 3, .alias_sequence_id = 2), - [433] = {.count = 1, .reusable = false}, REDUCE(sym_enum_specifier, 3, .alias_sequence_id = 2), - [435] = {.count = 1, .reusable = false}, SHIFT(175), - [437] = {.count = 1, .reusable = true}, SHIFT(176), - [439] = {.count = 1, .reusable = true}, REDUCE(sym_field_declaration_list, 2), - [441] = {.count = 1, .reusable = false}, REDUCE(sym_field_declaration_list, 2), - [443] = {.count = 1, .reusable = true}, SHIFT(177), - [445] = {.count = 1, .reusable = true}, SHIFT(178), - [447] = {.count = 1, .reusable = true}, SHIFT(179), - [449] = {.count = 1, .reusable = true}, SHIFT(180), - [451] = {.count = 1, .reusable = true}, SHIFT(181), - [453] = {.count = 1, .reusable = true}, SHIFT(184), - [455] = {.count = 1, .reusable = false}, SHIFT(186), - [457] = {.count = 1, .reusable = false}, SHIFT(187), - [459] = {.count = 1, .reusable = true}, REDUCE(sym_struct_specifier, 3, .alias_sequence_id = 2), - [461] = {.count = 1, .reusable = false}, REDUCE(sym_struct_specifier, 3, .alias_sequence_id = 2), - [463] = {.count = 1, .reusable = true}, REDUCE(sym_union_specifier, 3, .alias_sequence_id = 2), - [465] = {.count = 1, .reusable = false}, REDUCE(sym_union_specifier, 3, .alias_sequence_id = 2), - [467] = {.count = 1, .reusable = true}, REDUCE(sym_type_descriptor, 1), - [469] = {.count = 1, .reusable = true}, SHIFT(188), - [471] = {.count = 1, .reusable = true}, SHIFT(189), - [473] = {.count = 1, .reusable = true}, SHIFT(190), - [475] = {.count = 1, .reusable = true}, SHIFT(193), - [477] = {.count = 1, .reusable = false}, SHIFT(194), - [479] = {.count = 1, .reusable = false}, SHIFT(195), - [481] = {.count = 1, .reusable = false}, SHIFT(51), - [483] = {.count = 1, .reusable = true}, SHIFT(197), - [485] = {.count = 1, .reusable = true}, REDUCE(sym_pointer_declarator, 2, .dynamic_precedence = 1), - [487] = {.count = 1, .reusable = false}, SHIFT(198), - [489] = {.count = 1, .reusable = true}, SHIFT(200), - [491] = {.count = 1, .reusable = true}, SHIFT(201), - [493] = {.count = 1, .reusable = true}, REDUCE(sym_declaration, 3), - [495] = {.count = 1, .reusable = false}, REDUCE(sym_declaration, 3), - [497] = {.count = 1, .reusable = false}, SHIFT(203), - [499] = {.count = 1, .reusable = false}, SHIFT(204), - [501] = {.count = 1, .reusable = false}, SHIFT(205), - [503] = {.count = 1, .reusable = true}, SHIFT(206), - [505] = {.count = 1, .reusable = true}, SHIFT(207), - [507] = {.count = 1, .reusable = true}, SHIFT(208), - [509] = {.count = 1, .reusable = true}, SHIFT(209), - [511] = {.count = 1, .reusable = false}, SHIFT(210), - [513] = {.count = 1, .reusable = false}, SHIFT(211), - [515] = {.count = 1, .reusable = false}, SHIFT(212), - [517] = {.count = 1, .reusable = false}, SHIFT(213), - [519] = {.count = 1, .reusable = false}, SHIFT(214), - [521] = {.count = 1, .reusable = false}, SHIFT(215), - [523] = {.count = 1, .reusable = false}, SHIFT(216), - [525] = {.count = 1, .reusable = false}, SHIFT(217), - [527] = {.count = 1, .reusable = false}, SHIFT(218), - [529] = {.count = 1, .reusable = false}, SHIFT(219), - [531] = {.count = 1, .reusable = false}, SHIFT(220), - [533] = {.count = 1, .reusable = true}, SHIFT(221), - [535] = {.count = 1, .reusable = true}, SHIFT(222), - [537] = {.count = 1, .reusable = false}, SHIFT(223), - [539] = {.count = 1, .reusable = true}, SHIFT(223), - [541] = {.count = 1, .reusable = false}, SHIFT(224), - [543] = {.count = 1, .reusable = true}, SHIFT(228), - [545] = {.count = 1, .reusable = true}, SHIFT(225), - [547] = {.count = 1, .reusable = false}, SHIFT(228), - [549] = {.count = 1, .reusable = false}, SHIFT(226), - [551] = {.count = 1, .reusable = true}, SHIFT(232), - [553] = {.count = 1, .reusable = true}, SHIFT(233), - [555] = {.count = 1, .reusable = false}, SHIFT(237), - [557] = {.count = 1, .reusable = false}, SHIFT(235), - [559] = {.count = 1, .reusable = true}, SHIFT(238), - [561] = {.count = 1, .reusable = true}, SHIFT(239), - [563] = {.count = 1, .reusable = true}, SHIFT(240), - [565] = {.count = 1, .reusable = false}, SHIFT(251), - [567] = {.count = 1, .reusable = false}, SHIFT(247), - [569] = {.count = 1, .reusable = true}, SHIFT(241), - [571] = {.count = 1, .reusable = true}, SHIFT(242), - [573] = {.count = 1, .reusable = false}, SHIFT(243), - [575] = {.count = 1, .reusable = true}, SHIFT(243), - [577] = {.count = 1, .reusable = false}, SHIFT(244), - [579] = {.count = 1, .reusable = true}, SHIFT(248), - [581] = {.count = 1, .reusable = false}, SHIFT(248), - [583] = {.count = 1, .reusable = false}, SHIFT(245), - [585] = {.count = 1, .reusable = true}, SHIFT(252), - [587] = {.count = 1, .reusable = true}, SHIFT(253), - [589] = {.count = 1, .reusable = false}, SHIFT(253), - [591] = {.count = 1, .reusable = true}, REDUCE(sym_function_definition, 3), - [593] = {.count = 1, .reusable = false}, REDUCE(sym_function_definition, 3), - [595] = {.count = 1, .reusable = true}, REDUCE(sym_function_declarator, 2), - [597] = {.count = 1, .reusable = true}, SHIFT(255), - [599] = {.count = 1, .reusable = true}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), - [601] = {.count = 1, .reusable = true}, REDUCE(sym__declaration_specifiers, 3), - [603] = {.count = 1, .reusable = false}, REDUCE(sym__declaration_specifiers, 3), - [605] = {.count = 1, .reusable = true}, REDUCE(sym_string_literal, 3), - [607] = {.count = 1, .reusable = false}, REDUCE(sym_string_literal, 3), - [609] = {.count = 1, .reusable = false}, REDUCE(aux_sym_string_literal_repeat1, 2), - [611] = {.count = 2, .reusable = true}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(124), - [614] = {.count = 1, .reusable = true}, SHIFT(257), - [616] = {.count = 1, .reusable = true}, SHIFT(258), - [618] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_params, 2), - [620] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_def, 4), - [622] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_def, 4), - [624] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_function_def, 4), - [626] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_function_def, 4), - [628] = {.count = 1, .reusable = true}, SHIFT(260), - [630] = {.count = 1, .reusable = false}, SHIFT(261), - [632] = {.count = 1, .reusable = true}, SHIFT(262), - [634] = {.count = 1, .reusable = false}, SHIFT(263), - [636] = {.count = 1, .reusable = false}, SHIFT(264), - [638] = {.count = 1, .reusable = false}, SHIFT(266), - [640] = {.count = 1, .reusable = false}, SHIFT(269), - [642] = {.count = 1, .reusable = true}, SHIFT(272), - [644] = {.count = 1, .reusable = true}, SHIFT(273), - [646] = {.count = 1, .reusable = true}, SHIFT(274), - [648] = {.count = 1, .reusable = false}, SHIFT(275), - [650] = {.count = 1, .reusable = true}, SHIFT(276), - [652] = {.count = 1, .reusable = false}, SHIFT(277), - [654] = {.count = 1, .reusable = false}, SHIFT(278), - [656] = {.count = 1, .reusable = false}, SHIFT(279), - [658] = {.count = 1, .reusable = true}, SHIFT(282), - [660] = {.count = 1, .reusable = true}, SHIFT(283), - [662] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_else, 2), - [664] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_elif, 2), - [666] = {.count = 1, .reusable = true}, SHIFT(288), - [668] = {.count = 1, .reusable = false}, SHIFT(290), - [670] = {.count = 1, .reusable = true}, SHIFT(291), - [672] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if, 4), - [674] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if, 4), - [676] = {.count = 1, .reusable = true}, SHIFT(294), - [678] = {.count = 1, .reusable = true}, SHIFT(295), - [680] = {.count = 1, .reusable = true}, SHIFT(298), - [682] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(59), - [685] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(60), - [688] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(61), - [691] = {.count = 1, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), - [693] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(63), - [696] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(66), - [699] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(67), - [702] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(68), - [705] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef, 4), - [707] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef, 4), - [709] = {.count = 1, .reusable = true}, SHIFT(299), - [711] = {.count = 1, .reusable = true}, SHIFT(301), - [713] = {.count = 1, .reusable = true}, REDUCE(sym_pointer_type_declarator, 2, .dynamic_precedence = 1), - [715] = {.count = 1, .reusable = true}, REDUCE(sym_type_definition, 4), - [717] = {.count = 1, .reusable = false}, REDUCE(sym_type_definition, 4), - [719] = {.count = 1, .reusable = true}, SHIFT(303), - [721] = {.count = 1, .reusable = true}, SHIFT(305), - [723] = {.count = 1, .reusable = false}, SHIFT(305), - [725] = {.count = 1, .reusable = true}, REDUCE(sym_function_type_declarator, 2), - [727] = {.count = 1, .reusable = true}, SHIFT(306), - [729] = {.count = 1, .reusable = true}, REDUCE(sym_declaration_list, 2), - [731] = {.count = 1, .reusable = false}, REDUCE(sym_declaration_list, 2), - [733] = {.count = 1, .reusable = true}, SHIFT(307), - [735] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(170), - [738] = {.count = 1, .reusable = true}, REDUCE(sym_enumerator_list, 3), - [740] = {.count = 1, .reusable = false}, REDUCE(sym_enumerator_list, 3), - [742] = {.count = 1, .reusable = true}, SHIFT(311), - [744] = {.count = 1, .reusable = true}, SHIFT(312), - [746] = {.count = 1, .reusable = true}, SHIFT(313), - [748] = {.count = 1, .reusable = true}, SHIFT(314), - [750] = {.count = 1, .reusable = false}, SHIFT(315), - [752] = {.count = 1, .reusable = true}, SHIFT(315), - [754] = {.count = 1, .reusable = false}, SHIFT(316), - [756] = {.count = 1, .reusable = true}, SHIFT(317), - [758] = {.count = 1, .reusable = false}, SHIFT(317), - [760] = {.count = 1, .reusable = true}, SHIFT(319), - [762] = {.count = 1, .reusable = true}, SHIFT(321), - [764] = {.count = 1, .reusable = true}, SHIFT(323), - [766] = {.count = 1, .reusable = true}, SHIFT(324), - [768] = {.count = 1, .reusable = true}, SHIFT(325), - [770] = {.count = 1, .reusable = true}, SHIFT(328), - [772] = {.count = 1, .reusable = false}, REDUCE(sym_field_declaration, 2), - [774] = {.count = 1, .reusable = true}, REDUCE(sym_field_declaration, 2), - [776] = {.count = 1, .reusable = true}, SHIFT(331), - [778] = {.count = 1, .reusable = false}, SHIFT(181), - [780] = {.count = 1, .reusable = true}, SHIFT(335), - [782] = {.count = 1, .reusable = true}, SHIFT(336), - [784] = {.count = 1, .reusable = true}, SHIFT(337), - [786] = {.count = 1, .reusable = true}, SHIFT(338), - [788] = {.count = 1, .reusable = false}, SHIFT(339), - [790] = {.count = 1, .reusable = true}, SHIFT(339), - [792] = {.count = 1, .reusable = false}, SHIFT(340), - [794] = {.count = 1, .reusable = true}, SHIFT(341), - [796] = {.count = 1, .reusable = false}, SHIFT(341), - [798] = {.count = 1, .reusable = true}, REDUCE(sym__field_declarator, 1, .alias_sequence_id = 3), - [800] = {.count = 1, .reusable = true}, SHIFT(343), - [802] = {.count = 1, .reusable = true}, SHIFT(344), - [804] = {.count = 1, .reusable = true}, SHIFT(345), - [806] = {.count = 1, .reusable = true}, SHIFT(346), - [808] = {.count = 1, .reusable = true}, REDUCE(sym_field_declaration_list, 3), - [810] = {.count = 1, .reusable = false}, REDUCE(sym_field_declaration_list, 3), - [812] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(94), - [815] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(95), - [818] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(9), - [821] = {.count = 1, .reusable = true}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), - [823] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(10), - [826] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(101), - [829] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(98), - [832] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(11), - [835] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(12), - [838] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(13), - [841] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(14), - [844] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(187), - [847] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_pointer_declarator, 1, .dynamic_precedence = 1), - [849] = {.count = 1, .reusable = true}, SHIFT(10), - [851] = {.count = 1, .reusable = true}, SHIFT(354), - [853] = {.count = 1, .reusable = true}, SHIFT(356), - [855] = {.count = 1, .reusable = false}, SHIFT(356), - [857] = {.count = 1, .reusable = true}, REDUCE(sym_type_descriptor, 2), - [859] = {.count = 1, .reusable = true}, SHIFT(357), - [861] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_function_declarator, 1), - [863] = {.count = 1, .reusable = true}, REDUCE(sym_macro_type_specifier, 4, .dynamic_precedence = -1), - [865] = {.count = 1, .reusable = false}, REDUCE(sym_macro_type_specifier, 4, .dynamic_precedence = -1), - [867] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(195), - [870] = {.count = 1, .reusable = true}, REDUCE(sym__declarator, 3, .dynamic_precedence = -10), - [872] = {.count = 1, .reusable = true}, REDUCE(sym_pointer_declarator, 3, .dynamic_precedence = 1), - [874] = {.count = 1, .reusable = true}, REDUCE(aux_sym_type_definition_repeat1, 2), - [876] = {.count = 1, .reusable = true}, REDUCE(aux_sym_declaration_repeat1, 2), - [878] = {.count = 1, .reusable = true}, SHIFT(361), - [880] = {.count = 1, .reusable = false}, SHIFT(362), - [882] = {.count = 1, .reusable = true}, SHIFT(363), - [884] = {.count = 1, .reusable = false}, REDUCE(sym_expression_statement, 1), - [886] = {.count = 1, .reusable = true}, REDUCE(sym_expression_statement, 1), - [888] = {.count = 1, .reusable = true}, REDUCE(sym_compound_statement, 2), - [890] = {.count = 1, .reusable = false}, REDUCE(sym_compound_statement, 2), - [892] = {.count = 1, .reusable = true}, SHIFT(364), - [894] = {.count = 1, .reusable = true}, SHIFT(365), - [896] = {.count = 1, .reusable = true}, SHIFT(366), - [898] = {.count = 1, .reusable = true}, SHIFT(367), - [900] = {.count = 1, .reusable = false}, SHIFT(368), - [902] = {.count = 1, .reusable = true}, SHIFT(368), - [904] = {.count = 1, .reusable = false}, SHIFT(369), - [906] = {.count = 1, .reusable = true}, SHIFT(371), - [908] = {.count = 1, .reusable = false}, SHIFT(371), - [910] = {.count = 1, .reusable = false}, SHIFT(370), - [912] = {.count = 1, .reusable = true}, SHIFT(375), - [914] = {.count = 1, .reusable = false}, SHIFT(375), - [916] = {.count = 1, .reusable = true}, SHIFT(376), - [918] = {.count = 1, .reusable = true}, SHIFT(379), - [920] = {.count = 1, .reusable = true}, SHIFT(380), - [922] = {.count = 1, .reusable = true}, SHIFT(381), - [924] = {.count = 1, .reusable = true}, SHIFT(382), - [926] = {.count = 1, .reusable = false}, SHIFT(383), - [928] = {.count = 1, .reusable = true}, SHIFT(383), - [930] = {.count = 1, .reusable = false}, SHIFT(384), - [932] = {.count = 1, .reusable = true}, SHIFT(385), - [934] = {.count = 1, .reusable = false}, SHIFT(385), - [936] = {.count = 1, .reusable = true}, SHIFT(387), - [938] = {.count = 1, .reusable = false}, SHIFT(389), - [940] = {.count = 1, .reusable = false}, SHIFT(390), - [942] = {.count = 1, .reusable = false}, SHIFT(391), - [944] = {.count = 1, .reusable = false}, SHIFT(392), - [946] = {.count = 1, .reusable = false}, SHIFT(393), - [948] = {.count = 1, .reusable = false}, SHIFT(394), - [950] = {.count = 1, .reusable = false}, SHIFT(395), - [952] = {.count = 1, .reusable = false}, SHIFT(396), - [954] = {.count = 1, .reusable = true}, SHIFT(398), - [956] = {.count = 1, .reusable = true}, SHIFT(399), - [958] = {.count = 1, .reusable = true}, SHIFT(400), - [960] = {.count = 1, .reusable = false}, SHIFT(400), - [962] = {.count = 1, .reusable = true}, SHIFT(401), - [964] = {.count = 1, .reusable = true}, SHIFT(402), - [966] = {.count = 1, .reusable = true}, SHIFT(403), - [968] = {.count = 1, .reusable = true}, SHIFT(404), - [970] = {.count = 1, .reusable = false}, SHIFT(404), - [972] = {.count = 1, .reusable = true}, SHIFT(405), - [974] = {.count = 1, .reusable = false}, SHIFT(405), - [976] = {.count = 1, .reusable = true}, SHIFT(406), - [978] = {.count = 1, .reusable = false}, SHIFT(406), - [980] = {.count = 1, .reusable = true}, SHIFT(407), - [982] = {.count = 1, .reusable = true}, SHIFT(408), - [984] = {.count = 1, .reusable = false}, SHIFT(408), - [986] = {.count = 1, .reusable = false}, SHIFT(409), - [988] = {.count = 1, .reusable = true}, SHIFT(409), - [990] = {.count = 1, .reusable = true}, REDUCE(sym__expression, 1), - [992] = {.count = 2, .reusable = true}, REDUCE(sym__type_specifier, 1, .alias_sequence_id = 1), REDUCE(sym__expression, 1), - [995] = {.count = 3, .reusable = true}, REDUCE(sym__type_specifier, 1, .alias_sequence_id = 1), REDUCE(sym__expression, 1), SHIFT(40), - [999] = {.count = 2, .reusable = false}, REDUCE(sym__type_specifier, 1, .alias_sequence_id = 1), REDUCE(sym__expression, 1), - [1002] = {.count = 1, .reusable = false}, REDUCE(sym__expression, 1), - [1004] = {.count = 1, .reusable = true}, SHIFT(410), - [1006] = {.count = 1, .reusable = true}, SHIFT(411), - [1008] = {.count = 1, .reusable = true}, SHIFT(412), - [1010] = {.count = 1, .reusable = true}, SHIFT(413), - [1012] = {.count = 1, .reusable = true}, SHIFT(414), - [1014] = {.count = 1, .reusable = false}, SHIFT(415), - [1016] = {.count = 1, .reusable = true}, SHIFT(416), - [1018] = {.count = 1, .reusable = false}, SHIFT(417), - [1020] = {.count = 1, .reusable = true}, SHIFT(418), - [1022] = {.count = 1, .reusable = true}, SHIFT(417), - [1024] = {.count = 1, .reusable = false}, SHIFT(419), - [1026] = {.count = 1, .reusable = true}, SHIFT(420), - [1028] = {.count = 1, .reusable = true}, SHIFT(421), - [1030] = {.count = 1, .reusable = false}, SHIFT(422), - [1032] = {.count = 1, .reusable = false}, SHIFT(423), - [1034] = {.count = 1, .reusable = true}, SHIFT(424), - [1036] = {.count = 1, .reusable = false}, SHIFT(425), - [1038] = {.count = 1, .reusable = true}, SHIFT(425), - [1040] = {.count = 1, .reusable = false}, SHIFT(426), - [1042] = {.count = 1, .reusable = false}, SHIFT(427), - [1044] = {.count = 1, .reusable = true}, SHIFT(428), - [1046] = {.count = 1, .reusable = true}, SHIFT(429), - [1048] = {.count = 1, .reusable = true}, SHIFT(432), - [1050] = {.count = 1, .reusable = true}, SHIFT(434), - [1052] = {.count = 1, .reusable = true}, SHIFT(435), - [1054] = {.count = 1, .reusable = true}, REDUCE(sym_parameter_list, 2), - [1056] = {.count = 1, .reusable = true}, REDUCE(sym_parameter_declaration, 1), - [1058] = {.count = 1, .reusable = true}, SHIFT(437), - [1060] = {.count = 1, .reusable = true}, SHIFT(438), - [1062] = {.count = 1, .reusable = true}, SHIFT(439), - [1064] = {.count = 1, .reusable = false}, SHIFT(442), - [1066] = {.count = 1, .reusable = false}, SHIFT(443), - [1068] = {.count = 1, .reusable = true}, REDUCE(sym_array_declarator, 3), - [1070] = {.count = 1, .reusable = true}, SHIFT(445), - [1072] = {.count = 1, .reusable = true}, SHIFT(446), - [1074] = {.count = 1, .reusable = false}, SHIFT(446), - [1076] = {.count = 1, .reusable = true}, SHIFT(447), - [1078] = {.count = 1, .reusable = true}, SHIFT(448), - [1080] = {.count = 1, .reusable = false}, SHIFT(448), - [1082] = {.count = 1, .reusable = false}, SHIFT(450), - [1084] = {.count = 1, .reusable = false}, SHIFT(451), - [1086] = {.count = 1, .reusable = true}, SHIFT(452), - [1088] = {.count = 1, .reusable = true}, SHIFT(451), - [1090] = {.count = 1, .reusable = false}, SHIFT(453), - [1092] = {.count = 1, .reusable = true}, SHIFT(454), - [1094] = {.count = 1, .reusable = true}, SHIFT(455), - [1096] = {.count = 1, .reusable = false}, SHIFT(456), - [1098] = {.count = 1, .reusable = false}, SHIFT(457), - [1100] = {.count = 1, .reusable = true}, SHIFT(458), - [1102] = {.count = 1, .reusable = false}, SHIFT(459), - [1104] = {.count = 1, .reusable = true}, SHIFT(459), - [1106] = {.count = 1, .reusable = false}, SHIFT(460), - [1108] = {.count = 1, .reusable = false}, SHIFT(461), - [1110] = {.count = 1, .reusable = false}, SHIFT(463), - [1112] = {.count = 1, .reusable = false}, SHIFT(464), - [1114] = {.count = 1, .reusable = true}, SHIFT(465), - [1116] = {.count = 1, .reusable = true}, SHIFT(466), - [1118] = {.count = 1, .reusable = true}, SHIFT(467), - [1120] = {.count = 1, .reusable = true}, SHIFT(468), - [1122] = {.count = 1, .reusable = true}, SHIFT(469), - [1124] = {.count = 1, .reusable = false}, SHIFT(469), - [1126] = {.count = 1, .reusable = true}, REDUCE(sym_init_declarator, 3), - [1128] = {.count = 1, .reusable = true}, REDUCE(sym_declaration, 4), - [1130] = {.count = 1, .reusable = false}, REDUCE(sym_declaration, 4), - [1132] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_repeat1, 2), SHIFT_REPEAT(112), - [1135] = {.count = 1, .reusable = true}, SHIFT(472), - [1137] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_params, 3), - [1139] = {.count = 1, .reusable = true}, SHIFT(473), - [1141] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_function_def, 5), - [1143] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_function_def, 5), - [1145] = {.count = 1, .reusable = false}, SHIFT(475), - [1147] = {.count = 1, .reusable = true}, SHIFT(476), - [1149] = {.count = 1, .reusable = false}, SHIFT(477), - [1151] = {.count = 1, .reusable = false}, SHIFT(478), - [1153] = {.count = 1, .reusable = true}, SHIFT(479), - [1155] = {.count = 1, .reusable = false}, SHIFT(479), - [1157] = {.count = 1, .reusable = true}, SHIFT(481), - [1159] = {.count = 1, .reusable = false}, SHIFT(481), - [1161] = {.count = 1, .reusable = false}, SHIFT(483), - [1163] = {.count = 1, .reusable = true}, SHIFT(484), - [1165] = {.count = 1, .reusable = false}, SHIFT(485), - [1167] = {.count = 1, .reusable = false}, SHIFT(486), - [1169] = {.count = 1, .reusable = false}, SHIFT(488), - [1171] = {.count = 1, .reusable = false}, SHIFT(491), - [1173] = {.count = 1, .reusable = true}, SHIFT(494), - [1175] = {.count = 1, .reusable = false}, SHIFT(496), - [1177] = {.count = 1, .reusable = true}, SHIFT(497), - [1179] = {.count = 1, .reusable = true}, SHIFT(500), - [1181] = {.count = 1, .reusable = true}, SHIFT(501), - [1183] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(135), - [1186] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(136), - [1189] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(137), - [1192] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(138), - [1195] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(139), - [1198] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(140), - [1201] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(141), - [1204] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_elif, 3), - [1206] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_elif, 3), - [1208] = {.count = 1, .reusable = true}, SHIFT(505), - [1210] = {.count = 1, .reusable = true}, SHIFT(507), - [1212] = {.count = 1, .reusable = true}, SHIFT(509), - [1214] = {.count = 1, .reusable = true}, SHIFT(511), - [1216] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if, 5), - [1218] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if, 5), - [1220] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef, 5), - [1222] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef, 5), - [1224] = {.count = 1, .reusable = true}, REDUCE(sym__type_declarator, 3, .dynamic_precedence = -10), - [1226] = {.count = 1, .reusable = true}, REDUCE(sym_pointer_type_declarator, 3, .dynamic_precedence = 1), - [1228] = {.count = 1, .reusable = true}, REDUCE(sym_array_type_declarator, 3), - [1230] = {.count = 1, .reusable = true}, SHIFT(512), - [1232] = {.count = 1, .reusable = true}, SHIFT(513), - [1234] = {.count = 1, .reusable = false}, SHIFT(513), - [1236] = {.count = 1, .reusable = true}, REDUCE(sym_type_definition, 5), - [1238] = {.count = 1, .reusable = false}, REDUCE(sym_type_definition, 5), - [1240] = {.count = 1, .reusable = true}, REDUCE(sym_declaration_list, 3), - [1242] = {.count = 1, .reusable = false}, REDUCE(sym_declaration_list, 3), - [1244] = {.count = 1, .reusable = true}, SHIFT(515), - [1246] = {.count = 1, .reusable = true}, SHIFT(516), - [1248] = {.count = 1, .reusable = false}, SHIFT(516), - [1250] = {.count = 1, .reusable = true}, REDUCE(sym_enumerator, 3), - [1252] = {.count = 1, .reusable = false}, SHIFT(517), - [1254] = {.count = 1, .reusable = false}, SHIFT(518), - [1256] = {.count = 1, .reusable = true}, SHIFT(519), - [1258] = {.count = 1, .reusable = true}, SHIFT(518), - [1260] = {.count = 1, .reusable = false}, SHIFT(520), - [1262] = {.count = 1, .reusable = true}, SHIFT(521), - [1264] = {.count = 1, .reusable = true}, SHIFT(522), - [1266] = {.count = 1, .reusable = false}, SHIFT(523), - [1268] = {.count = 1, .reusable = false}, SHIFT(524), - [1270] = {.count = 1, .reusable = true}, SHIFT(525), - [1272] = {.count = 1, .reusable = false}, SHIFT(526), - [1274] = {.count = 1, .reusable = true}, SHIFT(526), - [1276] = {.count = 1, .reusable = false}, SHIFT(527), - [1278] = {.count = 1, .reusable = false}, SHIFT(528), - [1280] = {.count = 1, .reusable = true}, REDUCE(sym_enumerator_list, 4), - [1282] = {.count = 1, .reusable = false}, REDUCE(sym_enumerator_list, 4), - [1284] = {.count = 1, .reusable = true}, REDUCE(aux_sym_enumerator_list_repeat1, 2), - [1286] = {.count = 1, .reusable = true}, SHIFT(530), - [1288] = {.count = 2, .reusable = true}, REDUCE(aux_sym_enumerator_list_repeat1, 2), SHIFT_REPEAT(531), - [1291] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if_in_field_declaration_list, 3), - [1293] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if_in_field_declaration_list, 3), - [1295] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_else_in_field_declaration_list, 1), - [1297] = {.count = 1, .reusable = false}, SHIFT(533), - [1299] = {.count = 1, .reusable = true}, SHIFT(534), - [1301] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3), - [1303] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3), - [1305] = {.count = 1, .reusable = true}, SHIFT(537), - [1307] = {.count = 1, .reusable = true}, SHIFT(540), - [1309] = {.count = 1, .reusable = true}, REDUCE(sym_pointer_field_declarator, 2, .dynamic_precedence = 1), - [1311] = {.count = 1, .reusable = true}, SHIFT(543), - [1313] = {.count = 1, .reusable = true}, SHIFT(544), - [1315] = {.count = 1, .reusable = false}, SHIFT(544), - [1317] = {.count = 1, .reusable = true}, SHIFT(545), - [1319] = {.count = 1, .reusable = false}, SHIFT(546), - [1321] = {.count = 1, .reusable = false}, SHIFT(547), - [1323] = {.count = 1, .reusable = true}, SHIFT(548), - [1325] = {.count = 1, .reusable = true}, SHIFT(547), - [1327] = {.count = 1, .reusable = false}, SHIFT(549), - [1329] = {.count = 1, .reusable = true}, SHIFT(550), - [1331] = {.count = 1, .reusable = true}, SHIFT(551), - [1333] = {.count = 1, .reusable = false}, SHIFT(552), - [1335] = {.count = 1, .reusable = false}, SHIFT(553), - [1337] = {.count = 1, .reusable = true}, SHIFT(554), - [1339] = {.count = 1, .reusable = false}, SHIFT(555), - [1341] = {.count = 1, .reusable = true}, SHIFT(555), - [1343] = {.count = 1, .reusable = false}, SHIFT(556), - [1345] = {.count = 1, .reusable = false}, SHIFT(557), - [1347] = {.count = 1, .reusable = false}, REDUCE(sym_field_declaration, 3), - [1349] = {.count = 1, .reusable = true}, REDUCE(sym_field_declaration, 3), - [1351] = {.count = 1, .reusable = true}, SHIFT(560), - [1353] = {.count = 1, .reusable = true}, SHIFT(562), - [1355] = {.count = 1, .reusable = false}, SHIFT(562), - [1357] = {.count = 1, .reusable = true}, SHIFT(563), - [1359] = {.count = 1, .reusable = false}, SHIFT(563), - [1361] = {.count = 1, .reusable = true}, REDUCE(sym_function_field_declarator, 2), - [1363] = {.count = 1, .reusable = true}, SHIFT(564), - [1365] = {.count = 1, .reusable = true}, SHIFT(566), - [1367] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_pointer_declarator, 2, .dynamic_precedence = 1), - [1369] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_array_declarator, 2), - [1371] = {.count = 1, .reusable = true}, SHIFT(569), - [1373] = {.count = 1, .reusable = true}, SHIFT(570), - [1375] = {.count = 1, .reusable = false}, SHIFT(570), - [1377] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_function_declarator, 2), - [1379] = {.count = 1, .reusable = true}, REDUCE(sym_type_descriptor, 3), - [1381] = {.count = 1, .reusable = false}, SHIFT(572), - [1383] = {.count = 1, .reusable = true}, SHIFT(573), - [1385] = {.count = 1, .reusable = false}, SHIFT(574), - [1387] = {.count = 1, .reusable = false}, SHIFT(575), - [1389] = {.count = 1, .reusable = false}, SHIFT(576), - [1391] = {.count = 1, .reusable = false}, SHIFT(577), - [1393] = {.count = 1, .reusable = false}, SHIFT(578), - [1395] = {.count = 1, .reusable = true}, SHIFT(579), - [1397] = {.count = 1, .reusable = false}, SHIFT(580), - [1399] = {.count = 1, .reusable = false}, SHIFT(581), - [1401] = {.count = 1, .reusable = false}, SHIFT(582), - [1403] = {.count = 1, .reusable = false}, SHIFT(583), - [1405] = {.count = 1, .reusable = false}, SHIFT(584), - [1407] = {.count = 1, .reusable = false}, SHIFT(585), - [1409] = {.count = 1, .reusable = false}, SHIFT(586), - [1411] = {.count = 1, .reusable = false}, SHIFT(587), - [1413] = {.count = 1, .reusable = false}, SHIFT(588), - [1415] = {.count = 1, .reusable = false}, SHIFT(589), - [1417] = {.count = 1, .reusable = false}, SHIFT(590), - [1419] = {.count = 1, .reusable = true}, SHIFT(594), - [1421] = {.count = 1, .reusable = false}, SHIFT(594), - [1423] = {.count = 1, .reusable = false}, SHIFT(591), - [1425] = {.count = 1, .reusable = false}, SHIFT(597), - [1427] = {.count = 1, .reusable = true}, SHIFT(601), - [1429] = {.count = 1, .reusable = true}, SHIFT(602), - [1431] = {.count = 1, .reusable = false}, SHIFT(602), - [1433] = {.count = 1, .reusable = true}, SHIFT(603), - [1435] = {.count = 1, .reusable = true}, SHIFT(604), - [1437] = {.count = 1, .reusable = false}, SHIFT(605), - [1439] = {.count = 1, .reusable = false}, SHIFT(606), - [1441] = {.count = 1, .reusable = true}, SHIFT(607), - [1443] = {.count = 1, .reusable = true}, SHIFT(606), - [1445] = {.count = 1, .reusable = false}, SHIFT(608), - [1447] = {.count = 1, .reusable = true}, SHIFT(609), - [1449] = {.count = 1, .reusable = true}, SHIFT(610), - [1451] = {.count = 1, .reusable = false}, SHIFT(611), - [1453] = {.count = 1, .reusable = false}, SHIFT(612), - [1455] = {.count = 1, .reusable = true}, SHIFT(613), - [1457] = {.count = 1, .reusable = false}, SHIFT(614), - [1459] = {.count = 1, .reusable = true}, SHIFT(614), - [1461] = {.count = 1, .reusable = false}, SHIFT(615), - [1463] = {.count = 1, .reusable = false}, SHIFT(616), - [1465] = {.count = 1, .reusable = true}, SHIFT(617), - [1467] = {.count = 1, .reusable = true}, REDUCE(sym_pointer_expression, 2), - [1469] = {.count = 1, .reusable = false}, REDUCE(sym_pointer_expression, 2), - [1471] = {.count = 1, .reusable = true}, SHIFT(619), - [1473] = {.count = 1, .reusable = false}, SHIFT(619), - [1475] = {.count = 1, .reusable = false}, SHIFT(621), - [1477] = {.count = 1, .reusable = false}, SHIFT(622), - [1479] = {.count = 1, .reusable = false}, SHIFT(623), - [1481] = {.count = 1, .reusable = false}, SHIFT(624), - [1483] = {.count = 1, .reusable = false}, SHIFT(625), - [1485] = {.count = 1, .reusable = false}, SHIFT(626), - [1487] = {.count = 1, .reusable = false}, SHIFT(627), - [1489] = {.count = 1, .reusable = false}, SHIFT(629), - [1491] = {.count = 1, .reusable = true}, SHIFT(632), - [1493] = {.count = 1, .reusable = true}, SHIFT(633), - [1495] = {.count = 1, .reusable = false}, SHIFT(633), - [1497] = {.count = 1, .reusable = false}, SHIFT(634), - [1499] = {.count = 1, .reusable = false}, SHIFT(635), - [1501] = {.count = 1, .reusable = true}, SHIFT(636), - [1503] = {.count = 1, .reusable = true}, SHIFT(637), - [1505] = {.count = 1, .reusable = true}, SHIFT(635), - [1507] = {.count = 1, .reusable = false}, SHIFT(638), - [1509] = {.count = 1, .reusable = true}, SHIFT(639), - [1511] = {.count = 1, .reusable = true}, SHIFT(640), - [1513] = {.count = 1, .reusable = false}, SHIFT(641), - [1515] = {.count = 1, .reusable = false}, SHIFT(642), - [1517] = {.count = 1, .reusable = true}, SHIFT(643), - [1519] = {.count = 1, .reusable = false}, SHIFT(644), - [1521] = {.count = 1, .reusable = true}, SHIFT(644), - [1523] = {.count = 1, .reusable = false}, SHIFT(645), - [1525] = {.count = 1, .reusable = false}, SHIFT(646), - [1527] = {.count = 1, .reusable = false}, SHIFT(648), - [1529] = {.count = 1, .reusable = true}, SHIFT(654), - [1531] = {.count = 1, .reusable = false}, SHIFT(654), - [1533] = {.count = 1, .reusable = true}, SHIFT(655), - [1535] = {.count = 1, .reusable = true}, SHIFT(658), - [1537] = {.count = 1, .reusable = true}, SHIFT(659), - [1539] = {.count = 1, .reusable = true}, SHIFT(660), - [1541] = {.count = 1, .reusable = true}, SHIFT(661), - [1543] = {.count = 1, .reusable = true}, SHIFT(663), - [1545] = {.count = 1, .reusable = false}, SHIFT(663), - [1547] = {.count = 1, .reusable = false}, SHIFT(662), - [1549] = {.count = 1, .reusable = false}, REDUCE(sym_return_statement, 2), - [1551] = {.count = 1, .reusable = true}, REDUCE(sym_return_statement, 2), - [1553] = {.count = 1, .reusable = true}, SHIFT(664), - [1555] = {.count = 1, .reusable = false}, REDUCE(sym_break_statement, 2), - [1557] = {.count = 1, .reusable = true}, REDUCE(sym_break_statement, 2), - [1559] = {.count = 1, .reusable = false}, REDUCE(sym_continue_statement, 2), - [1561] = {.count = 1, .reusable = true}, REDUCE(sym_continue_statement, 2), - [1563] = {.count = 1, .reusable = true}, SHIFT(665), - [1565] = {.count = 1, .reusable = true}, REDUCE(sym_logical_expression, 2), - [1567] = {.count = 1, .reusable = false}, REDUCE(sym_logical_expression, 2), - [1569] = {.count = 1, .reusable = true}, REDUCE(sym_bitwise_expression, 2), - [1571] = {.count = 1, .reusable = false}, REDUCE(sym_bitwise_expression, 2), - [1573] = {.count = 1, .reusable = true}, REDUCE(sym_math_expression, 2), - [1575] = {.count = 1, .reusable = false}, REDUCE(sym_math_expression, 2), - [1577] = {.count = 1, .reusable = true}, REDUCE(sym_sizeof_expression, 2), - [1579] = {.count = 1, .reusable = false}, REDUCE(sym_sizeof_expression, 2), - [1581] = {.count = 1, .reusable = true}, SHIFT(667), - [1583] = {.count = 1, .reusable = true}, SHIFT(669), - [1585] = {.count = 1, .reusable = false}, SHIFT(669), - [1587] = {.count = 1, .reusable = false}, REDUCE(sym_expression_statement, 2), - [1589] = {.count = 1, .reusable = true}, REDUCE(sym_expression_statement, 2), - [1591] = {.count = 1, .reusable = true}, SHIFT(671), - [1593] = {.count = 1, .reusable = true}, SHIFT(672), - [1595] = {.count = 1, .reusable = false}, SHIFT(672), - [1597] = {.count = 1, .reusable = true}, SHIFT(673), - [1599] = {.count = 1, .reusable = false}, SHIFT(673), - [1601] = {.count = 1, .reusable = true}, SHIFT(674), - [1603] = {.count = 1, .reusable = false}, SHIFT(674), - [1605] = {.count = 1, .reusable = true}, SHIFT(675), - [1607] = {.count = 1, .reusable = false}, SHIFT(675), - [1609] = {.count = 1, .reusable = true}, SHIFT(676), - [1611] = {.count = 1, .reusable = false}, SHIFT(676), - [1613] = {.count = 1, .reusable = true}, SHIFT(677), - [1615] = {.count = 1, .reusable = false}, SHIFT(677), - [1617] = {.count = 1, .reusable = true}, SHIFT(678), - [1619] = {.count = 1, .reusable = false}, SHIFT(678), - [1621] = {.count = 1, .reusable = true}, SHIFT(679), - [1623] = {.count = 1, .reusable = false}, SHIFT(679), - [1625] = {.count = 1, .reusable = true}, SHIFT(680), - [1627] = {.count = 1, .reusable = false}, SHIFT(680), - [1629] = {.count = 1, .reusable = true}, SHIFT(681), - [1631] = {.count = 1, .reusable = false}, SHIFT(681), - [1633] = {.count = 1, .reusable = true}, SHIFT(682), - [1635] = {.count = 1, .reusable = false}, SHIFT(682), - [1637] = {.count = 1, .reusable = true}, SHIFT(683), - [1639] = {.count = 1, .reusable = false}, SHIFT(683), - [1641] = {.count = 1, .reusable = true}, SHIFT(684), - [1643] = {.count = 1, .reusable = false}, SHIFT(684), - [1645] = {.count = 1, .reusable = true}, SHIFT(685), - [1647] = {.count = 1, .reusable = false}, SHIFT(685), - [1649] = {.count = 1, .reusable = true}, SHIFT(686), - [1651] = {.count = 1, .reusable = true}, REDUCE(sym_call_expression, 2), - [1653] = {.count = 1, .reusable = false}, REDUCE(sym_call_expression, 2), - [1655] = {.count = 1, .reusable = true}, REDUCE(sym_concatenated_string, 2), - [1657] = {.count = 1, .reusable = false}, REDUCE(sym_concatenated_string, 2), - [1659] = {.count = 1, .reusable = true}, REDUCE(sym_compound_statement, 3), - [1661] = {.count = 1, .reusable = false}, REDUCE(sym_compound_statement, 3), - [1663] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(203), - [1666] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(3), - [1669] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(204), - [1672] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(205), - [1675] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(6), - [1678] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(206), - [1681] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(7), - [1684] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(9), - [1687] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(114), - [1690] = {.count = 1, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), - [1692] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(208), - [1695] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(209), - [1698] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(10), - [1701] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(20), - [1704] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(17), - [1707] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(11), - [1710] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(12), - [1713] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(13), - [1716] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(210), - [1719] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(211), - [1722] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(212), - [1725] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(213), - [1728] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(214), - [1731] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(215), - [1734] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(216), - [1737] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(217), - [1740] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(218), - [1743] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(219), - [1746] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(220), - [1749] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(221), - [1752] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(222), - [1755] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(223), - [1758] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(223), - [1761] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(224), - [1764] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(228), - [1767] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(225), - [1770] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(21), - [1773] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(228), - [1776] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(226), - [1779] = {.count = 1, .reusable = true}, SHIFT(688), - [1781] = {.count = 1, .reusable = true}, REDUCE(sym_parameter_list, 3), - [1783] = {.count = 1, .reusable = true}, SHIFT(689), - [1785] = {.count = 1, .reusable = true}, SHIFT(691), - [1787] = {.count = 1, .reusable = false}, SHIFT(692), - [1789] = {.count = 1, .reusable = true}, REDUCE(sym_parameter_declaration, 2), - [1791] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(443), - [1794] = {.count = 1, .reusable = true}, SHIFT(696), - [1796] = {.count = 1, .reusable = true}, REDUCE(sym_array_declarator, 4), - [1798] = {.count = 1, .reusable = true}, SHIFT(698), - [1800] = {.count = 1, .reusable = true}, SHIFT(700), - [1802] = {.count = 1, .reusable = false}, SHIFT(700), - [1804] = {.count = 1, .reusable = true}, SHIFT(701), - [1806] = {.count = 1, .reusable = false}, SHIFT(701), - [1808] = {.count = 1, .reusable = true}, SHIFT(702), - [1810] = {.count = 1, .reusable = false}, SHIFT(702), - [1812] = {.count = 1, .reusable = true}, SHIFT(703), - [1814] = {.count = 1, .reusable = false}, SHIFT(703), - [1816] = {.count = 1, .reusable = true}, SHIFT(704), - [1818] = {.count = 1, .reusable = false}, SHIFT(704), - [1820] = {.count = 1, .reusable = true}, SHIFT(705), - [1822] = {.count = 1, .reusable = false}, SHIFT(705), - [1824] = {.count = 1, .reusable = true}, SHIFT(706), - [1826] = {.count = 1, .reusable = false}, SHIFT(706), - [1828] = {.count = 1, .reusable = true}, SHIFT(707), - [1830] = {.count = 1, .reusable = false}, SHIFT(707), - [1832] = {.count = 1, .reusable = true}, SHIFT(708), - [1834] = {.count = 1, .reusable = false}, SHIFT(708), - [1836] = {.count = 1, .reusable = true}, SHIFT(709), - [1838] = {.count = 1, .reusable = false}, SHIFT(709), - [1840] = {.count = 1, .reusable = true}, SHIFT(710), - [1842] = {.count = 1, .reusable = false}, SHIFT(710), - [1844] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(464), - [1847] = {.count = 1, .reusable = true}, SHIFT(713), - [1849] = {.count = 1, .reusable = true}, REDUCE(sym_initializer_list, 2), - [1851] = {.count = 1, .reusable = false}, REDUCE(sym_initializer_list, 2), - [1853] = {.count = 1, .reusable = true}, SHIFT(714), - [1855] = {.count = 1, .reusable = false}, SHIFT(714), - [1857] = {.count = 1, .reusable = true}, SHIFT(715), - [1859] = {.count = 1, .reusable = true}, SHIFT(716), - [1861] = {.count = 1, .reusable = true}, SHIFT(718), - [1863] = {.count = 1, .reusable = true}, REDUCE(aux_sym_preproc_params_repeat1, 2), - [1865] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_params, 4), - [1867] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_params_repeat1, 2), SHIFT_REPEAT(257), - [1870] = {.count = 1, .reusable = true}, SHIFT(720), - [1872] = {.count = 1, .reusable = true}, SHIFT(721), - [1874] = {.count = 1, .reusable = true}, SHIFT(722), - [1876] = {.count = 1, .reusable = false}, SHIFT(723), - [1878] = {.count = 1, .reusable = true}, SHIFT(724), - [1880] = {.count = 1, .reusable = false}, SHIFT(725), - [1882] = {.count = 1, .reusable = false}, SHIFT(726), - [1884] = {.count = 1, .reusable = true}, SHIFT(727), - [1886] = {.count = 1, .reusable = false}, SHIFT(727), - [1888] = {.count = 1, .reusable = true}, SHIFT(729), - [1890] = {.count = 1, .reusable = false}, SHIFT(729), - [1892] = {.count = 1, .reusable = true}, SHIFT(731), - [1894] = {.count = 1, .reusable = true}, SHIFT(733), - [1896] = {.count = 1, .reusable = true}, SHIFT(735), - [1898] = {.count = 1, .reusable = true}, SHIFT(737), - [1900] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_elif, 4), - [1902] = {.count = 1, .reusable = true}, SHIFT(738), - [1904] = {.count = 1, .reusable = true}, SHIFT(739), - [1906] = {.count = 1, .reusable = true}, SHIFT(740), - [1908] = {.count = 1, .reusable = true}, REDUCE(sym_array_type_declarator, 4), - [1910] = {.count = 1, .reusable = true}, SHIFT(741), - [1912] = {.count = 1, .reusable = true}, SHIFT(742), - [1914] = {.count = 1, .reusable = true}, SHIFT(744), - [1916] = {.count = 1, .reusable = false}, SHIFT(744), - [1918] = {.count = 1, .reusable = true}, SHIFT(745), - [1920] = {.count = 1, .reusable = false}, SHIFT(745), - [1922] = {.count = 1, .reusable = true}, SHIFT(746), - [1924] = {.count = 1, .reusable = false}, SHIFT(746), - [1926] = {.count = 1, .reusable = true}, SHIFT(747), - [1928] = {.count = 1, .reusable = false}, SHIFT(747), - [1930] = {.count = 1, .reusable = true}, SHIFT(748), - [1932] = {.count = 1, .reusable = false}, SHIFT(748), - [1934] = {.count = 1, .reusable = true}, SHIFT(749), - [1936] = {.count = 1, .reusable = false}, SHIFT(749), - [1938] = {.count = 1, .reusable = true}, SHIFT(750), - [1940] = {.count = 1, .reusable = false}, SHIFT(750), - [1942] = {.count = 1, .reusable = true}, SHIFT(751), - [1944] = {.count = 1, .reusable = false}, SHIFT(751), - [1946] = {.count = 1, .reusable = true}, SHIFT(752), - [1948] = {.count = 1, .reusable = false}, SHIFT(752), - [1950] = {.count = 1, .reusable = true}, SHIFT(753), - [1952] = {.count = 1, .reusable = false}, SHIFT(753), - [1954] = {.count = 1, .reusable = true}, SHIFT(754), - [1956] = {.count = 1, .reusable = false}, SHIFT(754), - [1958] = {.count = 1, .reusable = true}, REDUCE(sym_enumerator_list, 5), - [1960] = {.count = 1, .reusable = false}, REDUCE(sym_enumerator_list, 5), - [1962] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_else_in_field_declaration_list, 2), - [1964] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_elif_in_field_declaration_list, 2), - [1966] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if_in_field_declaration_list, 4), - [1968] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if_in_field_declaration_list, 4), - [1970] = {.count = 1, .reusable = true}, SHIFT(759), - [1972] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4), - [1974] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4), - [1976] = {.count = 1, .reusable = true}, SHIFT(760), - [1978] = {.count = 1, .reusable = true}, REDUCE(sym__field_declarator, 3, .dynamic_precedence = -10), - [1980] = {.count = 1, .reusable = true}, REDUCE(sym_pointer_field_declarator, 3, .dynamic_precedence = 1), - [1982] = {.count = 1, .reusable = true}, SHIFT(761), - [1984] = {.count = 1, .reusable = false}, REDUCE(sym_field_declaration, 4), - [1986] = {.count = 1, .reusable = true}, REDUCE(sym_field_declaration, 4), - [1988] = {.count = 1, .reusable = true}, SHIFT(763), - [1990] = {.count = 1, .reusable = false}, SHIFT(763), - [1992] = {.count = 1, .reusable = true}, SHIFT(764), - [1994] = {.count = 1, .reusable = false}, SHIFT(764), - [1996] = {.count = 1, .reusable = true}, SHIFT(765), - [1998] = {.count = 1, .reusable = false}, SHIFT(765), - [2000] = {.count = 1, .reusable = true}, SHIFT(766), - [2002] = {.count = 1, .reusable = false}, SHIFT(766), - [2004] = {.count = 1, .reusable = true}, SHIFT(767), - [2006] = {.count = 1, .reusable = false}, SHIFT(767), - [2008] = {.count = 1, .reusable = true}, SHIFT(768), - [2010] = {.count = 1, .reusable = false}, SHIFT(768), - [2012] = {.count = 1, .reusable = true}, SHIFT(769), - [2014] = {.count = 1, .reusable = false}, SHIFT(769), - [2016] = {.count = 1, .reusable = true}, SHIFT(770), - [2018] = {.count = 1, .reusable = false}, SHIFT(770), - [2020] = {.count = 1, .reusable = true}, SHIFT(771), - [2022] = {.count = 1, .reusable = false}, SHIFT(771), - [2024] = {.count = 1, .reusable = true}, SHIFT(772), - [2026] = {.count = 1, .reusable = false}, SHIFT(772), - [2028] = {.count = 1, .reusable = true}, SHIFT(773), - [2030] = {.count = 1, .reusable = false}, SHIFT(773), - [2032] = {.count = 1, .reusable = true}, REDUCE(aux_sym_field_declaration_repeat1, 2), - [2034] = {.count = 1, .reusable = true}, REDUCE(sym_array_field_declarator, 3), - [2036] = {.count = 1, .reusable = true}, SHIFT(775), - [2038] = {.count = 1, .reusable = true}, SHIFT(776), - [2040] = {.count = 1, .reusable = false}, SHIFT(776), - [2042] = {.count = 1, .reusable = true}, SHIFT(777), - [2044] = {.count = 1, .reusable = true}, SHIFT(778), - [2046] = {.count = 1, .reusable = false}, SHIFT(778), - [2048] = {.count = 2, .reusable = true}, REDUCE(aux_sym_field_declaration_repeat1, 2), SHIFT_REPEAT(343), - [2051] = {.count = 1, .reusable = true}, REDUCE(sym__abstract_declarator, 3), - [2053] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_pointer_declarator, 3, .dynamic_precedence = 1), - [2055] = {.count = 2, .reusable = true}, REDUCE(aux_sym_type_definition_repeat1, 2), SHIFT_REPEAT(10), - [2058] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_array_declarator, 3), - [2060] = {.count = 1, .reusable = true}, SHIFT(779), - [2062] = {.count = 1, .reusable = true}, SHIFT(780), - [2064] = {.count = 1, .reusable = false}, SHIFT(780), - [2066] = {.count = 1, .reusable = false}, SHIFT(781), - [2068] = {.count = 1, .reusable = false}, SHIFT(782), - [2070] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if_in_compound_statement, 3), - [2072] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if_in_compound_statement, 3), - [2074] = {.count = 1, .reusable = true}, SHIFT(783), - [2076] = {.count = 1, .reusable = false}, SHIFT(784), - [2078] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_else_in_compound_statement, 1), - [2080] = {.count = 1, .reusable = false}, SHIFT(785), - [2082] = {.count = 1, .reusable = true}, SHIFT(786), - [2084] = {.count = 1, .reusable = false}, SHIFT(787), - [2086] = {.count = 1, .reusable = false}, SHIFT(788), - [2088] = {.count = 1, .reusable = false}, SHIFT(789), - [2090] = {.count = 1, .reusable = false}, SHIFT(790), - [2092] = {.count = 1, .reusable = false}, SHIFT(791), - [2094] = {.count = 1, .reusable = false}, SHIFT(792), - [2096] = {.count = 1, .reusable = false}, SHIFT(793), - [2098] = {.count = 1, .reusable = false}, SHIFT(794), - [2100] = {.count = 1, .reusable = false}, SHIFT(795), - [2102] = {.count = 1, .reusable = false}, SHIFT(796), - [2104] = {.count = 1, .reusable = false}, SHIFT(797), - [2106] = {.count = 1, .reusable = true}, SHIFT(800), - [2108] = {.count = 1, .reusable = false}, SHIFT(800), - [2110] = {.count = 1, .reusable = false}, SHIFT(798), - [2112] = {.count = 1, .reusable = false}, SHIFT(803), - [2114] = {.count = 1, .reusable = true}, SHIFT(806), - [2116] = {.count = 1, .reusable = false}, SHIFT(806), - [2118] = {.count = 1, .reusable = true}, SHIFT(807), - [2120] = {.count = 1, .reusable = true}, SHIFT(810), - [2122] = {.count = 1, .reusable = true}, SHIFT(811), - [2124] = {.count = 1, .reusable = true}, SHIFT(812), - [2126] = {.count = 1, .reusable = false}, SHIFT(812), - [2128] = {.count = 1, .reusable = true}, SHIFT(813), - [2130] = {.count = 1, .reusable = true}, SHIFT(814), - [2132] = {.count = 1, .reusable = true}, SHIFT(815), - [2134] = {.count = 1, .reusable = true}, SHIFT(816), - [2136] = {.count = 1, .reusable = true}, SHIFT(817), - [2138] = {.count = 1, .reusable = true}, SHIFT(818), - [2140] = {.count = 1, .reusable = true}, SHIFT(819), - [2142] = {.count = 1, .reusable = false}, SHIFT(817), - [2144] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_compound_statement, 3), - [2146] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_compound_statement, 3), - [2148] = {.count = 1, .reusable = true}, SHIFT(822), - [2150] = {.count = 1, .reusable = false}, SHIFT(822), - [2152] = {.count = 1, .reusable = true}, SHIFT(824), - [2154] = {.count = 1, .reusable = true}, SHIFT(826), - [2156] = {.count = 1, .reusable = false}, SHIFT(826), - [2158] = {.count = 1, .reusable = true}, REDUCE(sym_parenthesized_expression, 3), - [2160] = {.count = 1, .reusable = false}, REDUCE(sym_parenthesized_expression, 3), - [2162] = {.count = 1, .reusable = true}, SHIFT(827), - [2164] = {.count = 1, .reusable = false}, SHIFT(827), - [2166] = {.count = 1, .reusable = true}, SHIFT(828), - [2168] = {.count = 1, .reusable = false}, SHIFT(828), - [2170] = {.count = 1, .reusable = true}, SHIFT(829), - [2172] = {.count = 1, .reusable = false}, SHIFT(829), - [2174] = {.count = 1, .reusable = true}, SHIFT(830), - [2176] = {.count = 1, .reusable = false}, SHIFT(830), - [2178] = {.count = 1, .reusable = true}, SHIFT(831), - [2180] = {.count = 1, .reusable = false}, SHIFT(831), - [2182] = {.count = 1, .reusable = true}, SHIFT(832), - [2184] = {.count = 1, .reusable = false}, SHIFT(832), - [2186] = {.count = 1, .reusable = true}, SHIFT(833), - [2188] = {.count = 1, .reusable = false}, SHIFT(833), - [2190] = {.count = 1, .reusable = true}, SHIFT(834), - [2192] = {.count = 1, .reusable = false}, SHIFT(834), - [2194] = {.count = 1, .reusable = true}, SHIFT(835), - [2196] = {.count = 1, .reusable = false}, SHIFT(835), - [2198] = {.count = 1, .reusable = true}, SHIFT(836), - [2200] = {.count = 1, .reusable = false}, SHIFT(836), - [2202] = {.count = 1, .reusable = true}, SHIFT(837), - [2204] = {.count = 1, .reusable = false}, SHIFT(837), - [2206] = {.count = 1, .reusable = true}, SHIFT(838), - [2208] = {.count = 1, .reusable = false}, SHIFT(838), - [2210] = {.count = 1, .reusable = true}, SHIFT(841), - [2212] = {.count = 1, .reusable = true}, SHIFT(844), - [2214] = {.count = 1, .reusable = false}, SHIFT(844), - [2216] = {.count = 1, .reusable = true}, SHIFT(845), - [2218] = {.count = 1, .reusable = true}, SHIFT(847), - [2220] = {.count = 1, .reusable = true}, SHIFT(848), - [2222] = {.count = 1, .reusable = false}, REDUCE(sym_if_statement, 3), - [2224] = {.count = 1, .reusable = true}, REDUCE(sym_if_statement, 3), - [2226] = {.count = 1, .reusable = false}, SHIFT(849), - [2228] = {.count = 1, .reusable = false}, REDUCE(sym_switch_statement, 3), - [2230] = {.count = 1, .reusable = true}, REDUCE(sym_switch_statement, 3), - [2232] = {.count = 1, .reusable = true}, SHIFT(850), - [2234] = {.count = 1, .reusable = true}, SHIFT(852), - [2236] = {.count = 1, .reusable = false}, SHIFT(852), - [2238] = {.count = 1, .reusable = true}, SHIFT(854), - [2240] = {.count = 1, .reusable = false}, SHIFT(854), - [2242] = {.count = 1, .reusable = true}, SHIFT(855), - [2244] = {.count = 1, .reusable = false}, SHIFT(855), - [2246] = {.count = 1, .reusable = true}, SHIFT(856), - [2248] = {.count = 1, .reusable = false}, SHIFT(856), - [2250] = {.count = 1, .reusable = true}, SHIFT(857), - [2252] = {.count = 1, .reusable = false}, SHIFT(857), - [2254] = {.count = 1, .reusable = true}, SHIFT(858), - [2256] = {.count = 1, .reusable = false}, SHIFT(858), - [2258] = {.count = 1, .reusable = true}, SHIFT(859), - [2260] = {.count = 1, .reusable = false}, SHIFT(859), - [2262] = {.count = 1, .reusable = true}, SHIFT(860), - [2264] = {.count = 1, .reusable = false}, SHIFT(860), - [2266] = {.count = 1, .reusable = true}, SHIFT(861), - [2268] = {.count = 1, .reusable = false}, SHIFT(861), - [2270] = {.count = 1, .reusable = true}, SHIFT(862), - [2272] = {.count = 1, .reusable = false}, SHIFT(862), - [2274] = {.count = 1, .reusable = true}, SHIFT(863), - [2276] = {.count = 1, .reusable = false}, SHIFT(863), - [2278] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 3), - [2280] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 3), - [2282] = {.count = 1, .reusable = false}, REDUCE(sym_while_statement, 3), - [2284] = {.count = 1, .reusable = true}, REDUCE(sym_while_statement, 3), - [2286] = {.count = 1, .reusable = false}, SHIFT(865), - [2288] = {.count = 1, .reusable = false}, SHIFT(866), - [2290] = {.count = 1, .reusable = false}, SHIFT(867), - [2292] = {.count = 1, .reusable = false}, SHIFT(868), - [2294] = {.count = 1, .reusable = false}, SHIFT(869), - [2296] = {.count = 1, .reusable = false}, SHIFT(870), - [2298] = {.count = 1, .reusable = false}, SHIFT(871), - [2300] = {.count = 1, .reusable = true}, SHIFT(873), - [2302] = {.count = 1, .reusable = false}, SHIFT(874), - [2304] = {.count = 1, .reusable = true}, SHIFT(875), - [2306] = {.count = 1, .reusable = true}, SHIFT(876), - [2308] = {.count = 1, .reusable = true}, SHIFT(877), - [2310] = {.count = 1, .reusable = false}, SHIFT(877), - [2312] = {.count = 1, .reusable = true}, SHIFT(879), - [2314] = {.count = 1, .reusable = true}, SHIFT(880), - [2316] = {.count = 1, .reusable = false}, SHIFT(880), - [2318] = {.count = 1, .reusable = true}, SHIFT(881), - [2320] = {.count = 1, .reusable = false}, REDUCE(sym_return_statement, 3), - [2322] = {.count = 1, .reusable = true}, REDUCE(sym_return_statement, 3), - [2324] = {.count = 1, .reusable = false}, REDUCE(sym_goto_statement, 3, .alias_sequence_id = 4), - [2326] = {.count = 1, .reusable = true}, REDUCE(sym_goto_statement, 3, .alias_sequence_id = 4), - [2328] = {.count = 1, .reusable = true}, SHIFT(882), - [2330] = {.count = 1, .reusable = true}, REDUCE(sym_char_literal, 3), - [2332] = {.count = 1, .reusable = false}, REDUCE(sym_char_literal, 3), - [2334] = {.count = 1, .reusable = false}, REDUCE(sym_labeled_statement, 3, .alias_sequence_id = 5), - [2336] = {.count = 1, .reusable = true}, REDUCE(sym_labeled_statement, 3, .alias_sequence_id = 5), - [2338] = {.count = 1, .reusable = true}, REDUCE(sym_comma_expression, 3), - [2340] = {.count = 1, .reusable = true}, REDUCE(sym_argument_list, 2), - [2342] = {.count = 1, .reusable = false}, REDUCE(sym_argument_list, 2), - [2344] = {.count = 1, .reusable = true}, SHIFT(883), - [2346] = {.count = 1, .reusable = true}, SHIFT(884), - [2348] = {.count = 1, .reusable = true}, REDUCE(sym_math_expression, 3), - [2350] = {.count = 1, .reusable = false}, REDUCE(sym_math_expression, 3), - [2352] = {.count = 1, .reusable = true}, SHIFT(886), - [2354] = {.count = 1, .reusable = true}, REDUCE(sym_assignment_expression, 3), - [2356] = {.count = 1, .reusable = true}, SHIFT(887), - [2358] = {.count = 1, .reusable = true}, REDUCE(sym_bitwise_expression, 3), - [2360] = {.count = 1, .reusable = false}, REDUCE(sym_bitwise_expression, 3), - [2362] = {.count = 1, .reusable = true}, REDUCE(sym_logical_expression, 3), - [2364] = {.count = 1, .reusable = false}, REDUCE(sym_logical_expression, 3), - [2366] = {.count = 1, .reusable = true}, REDUCE(sym_equality_expression, 3), - [2368] = {.count = 1, .reusable = false}, REDUCE(sym_equality_expression, 3), - [2370] = {.count = 1, .reusable = true}, REDUCE(sym_relational_expression, 3), - [2372] = {.count = 1, .reusable = false}, REDUCE(sym_relational_expression, 3), - [2374] = {.count = 1, .reusable = true}, REDUCE(sym_shift_expression, 3), - [2376] = {.count = 1, .reusable = false}, REDUCE(sym_shift_expression, 3), - [2378] = {.count = 1, .reusable = true}, REDUCE(sym_field_expression, 3, .alias_sequence_id = 6), - [2380] = {.count = 1, .reusable = false}, REDUCE(sym_field_expression, 3, .alias_sequence_id = 6), - [2382] = {.count = 1, .reusable = true}, REDUCE(aux_sym_concatenated_string_repeat1, 2), - [2384] = {.count = 1, .reusable = false}, REDUCE(aux_sym_concatenated_string_repeat1, 2), - [2386] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(21), - [2389] = {.count = 1, .reusable = true}, REDUCE(aux_sym_parameter_list_repeat1, 2), - [2391] = {.count = 1, .reusable = true}, REDUCE(sym_parameter_list, 4), - [2393] = {.count = 2, .reusable = true}, REDUCE(aux_sym_parameter_list_repeat1, 2), SHIFT_REPEAT(434), - [2396] = {.count = 2, .reusable = true}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .alias_sequence_id = 1), - [2399] = {.count = 3, .reusable = true}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .alias_sequence_id = 1), SHIFT(40), - [2403] = {.count = 1, .reusable = true}, SHIFT(890), - [2405] = {.count = 1, .reusable = true}, REDUCE(sym_array_declarator, 5), - [2407] = {.count = 1, .reusable = true}, SHIFT(891), - [2409] = {.count = 1, .reusable = true}, REDUCE(sym_initializer_list, 3), - [2411] = {.count = 1, .reusable = false}, REDUCE(sym_initializer_list, 3), - [2413] = {.count = 1, .reusable = true}, SHIFT(892), - [2415] = {.count = 1, .reusable = true}, REDUCE(sym_field_designator, 2, .alias_sequence_id = 7), - [2417] = {.count = 1, .reusable = true}, SHIFT(893), - [2419] = {.count = 1, .reusable = true}, SHIFT(894), - [2421] = {.count = 1, .reusable = false}, SHIFT(894), - [2423] = {.count = 1, .reusable = true}, SHIFT(896), - [2425] = {.count = 1, .reusable = true}, SHIFT(898), - [2427] = {.count = 1, .reusable = false}, SHIFT(898), - [2429] = {.count = 2, .reusable = true}, REDUCE(aux_sym_initializer_pair_repeat1, 2), SHIFT_REPEAT(467), - [2432] = {.count = 1, .reusable = true}, REDUCE(aux_sym_initializer_pair_repeat1, 2), - [2434] = {.count = 2, .reusable = true}, REDUCE(aux_sym_initializer_pair_repeat1, 2), SHIFT_REPEAT(468), - [2437] = {.count = 1, .reusable = true}, SHIFT(900), - [2439] = {.count = 1, .reusable = true}, SHIFT(901), - [2441] = {.count = 1, .reusable = true}, SHIFT(902), - [2443] = {.count = 1, .reusable = true}, SHIFT(903), - [2445] = {.count = 1, .reusable = true}, SHIFT(904), - [2447] = {.count = 1, .reusable = true}, SHIFT(905), - [2449] = {.count = 1, .reusable = true}, REDUCE(sym_array_type_declarator, 5), - [2451] = {.count = 1, .reusable = true}, SHIFT(906), - [2453] = {.count = 1, .reusable = true}, SHIFT(907), - [2455] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_elif_in_field_declaration_list, 3), - [2457] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if_in_field_declaration_list, 5), - [2459] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if_in_field_declaration_list, 5), - [2461] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5), - [2463] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5), - [2465] = {.count = 1, .reusable = true}, SHIFT(909), - [2467] = {.count = 1, .reusable = true}, SHIFT(910), - [2469] = {.count = 1, .reusable = true}, REDUCE(sym_array_field_declarator, 4), - [2471] = {.count = 1, .reusable = true}, SHIFT(911), - [2473] = {.count = 1, .reusable = false}, REDUCE(sym_field_declaration, 5), - [2475] = {.count = 1, .reusable = true}, REDUCE(sym_field_declaration, 5), - [2477] = {.count = 1, .reusable = true}, SHIFT(912), - [2479] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_array_declarator, 4), - [2481] = {.count = 1, .reusable = true}, SHIFT(913), - [2483] = {.count = 1, .reusable = false}, SHIFT(914), - [2485] = {.count = 1, .reusable = false}, SHIFT(917), - [2487] = {.count = 1, .reusable = false}, SHIFT(920), - [2489] = {.count = 1, .reusable = true}, SHIFT(921), - [2491] = {.count = 1, .reusable = true}, SHIFT(924), - [2493] = {.count = 1, .reusable = false}, SHIFT(924), - [2495] = {.count = 1, .reusable = true}, SHIFT(925), - [2497] = {.count = 1, .reusable = true}, SHIFT(928), - [2499] = {.count = 1, .reusable = true}, SHIFT(929), - [2501] = {.count = 1, .reusable = true}, SHIFT(930), - [2503] = {.count = 1, .reusable = false}, SHIFT(930), - [2505] = {.count = 1, .reusable = true}, SHIFT(931), - [2507] = {.count = 1, .reusable = true}, SHIFT(932), - [2509] = {.count = 1, .reusable = true}, SHIFT(933), - [2511] = {.count = 1, .reusable = true}, SHIFT(934), - [2513] = {.count = 1, .reusable = true}, SHIFT(935), - [2515] = {.count = 1, .reusable = true}, SHIFT(936), - [2517] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_else_in_compound_statement, 2), - [2519] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_elif_in_compound_statement, 2), - [2521] = {.count = 1, .reusable = false}, SHIFT(940), - [2523] = {.count = 1, .reusable = false}, SHIFT(941), - [2525] = {.count = 1, .reusable = false}, SHIFT(942), - [2527] = {.count = 1, .reusable = false}, SHIFT(943), - [2529] = {.count = 1, .reusable = false}, SHIFT(944), - [2531] = {.count = 1, .reusable = false}, SHIFT(945), - [2533] = {.count = 1, .reusable = false}, SHIFT(946), - [2535] = {.count = 1, .reusable = false}, SHIFT(948), - [2537] = {.count = 1, .reusable = true}, SHIFT(950), - [2539] = {.count = 1, .reusable = false}, SHIFT(951), - [2541] = {.count = 1, .reusable = true}, SHIFT(955), - [2543] = {.count = 1, .reusable = true}, SHIFT(956), - [2545] = {.count = 1, .reusable = true}, SHIFT(957), - [2547] = {.count = 1, .reusable = false}, SHIFT(957), - [2549] = {.count = 1, .reusable = true}, SHIFT(958), - [2551] = {.count = 1, .reusable = true}, SHIFT(959), - [2553] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if_in_compound_statement, 4), - [2555] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if_in_compound_statement, 4), - [2557] = {.count = 1, .reusable = true}, SHIFT(961), - [2559] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(59), - [2562] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(60), - [2565] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(574), - [2568] = {.count = 1, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), - [2570] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(576), - [2573] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(66), - [2576] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(579), - [2579] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(67), - [2582] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(295), - [2585] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(580), - [2588] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(581), - [2591] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(582), - [2594] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(583), - [2597] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(584), - [2600] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(585), - [2603] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(586), - [2606] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(587), - [2609] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(588), - [2612] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(589), - [2615] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(590), - [2618] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(594), - [2621] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(594), - [2624] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(591), - [2627] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_compound_statement, 4), - [2629] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_compound_statement, 4), - [2631] = {.count = 1, .reusable = true}, SHIFT(962), - [2633] = {.count = 1, .reusable = true}, SHIFT(963), - [2635] = {.count = 1, .reusable = true}, SHIFT(964), - [2637] = {.count = 1, .reusable = true}, REDUCE(sym_cast_expression, 4), - [2639] = {.count = 1, .reusable = false}, REDUCE(sym_cast_expression, 4), - [2641] = {.count = 1, .reusable = true}, REDUCE(sym_compound_literal_expression, 4), - [2643] = {.count = 1, .reusable = false}, REDUCE(sym_compound_literal_expression, 4), - [2645] = {.count = 1, .reusable = true}, SHIFT(966), - [2647] = {.count = 1, .reusable = false}, SHIFT(967), - [2649] = {.count = 1, .reusable = true}, SHIFT(968), - [2651] = {.count = 1, .reusable = true}, SHIFT(969), - [2653] = {.count = 1, .reusable = false}, SHIFT(969), - [2655] = {.count = 1, .reusable = true}, SHIFT(971), - [2657] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 4), - [2659] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 4), - [2661] = {.count = 1, .reusable = true}, SHIFT(972), - [2663] = {.count = 1, .reusable = true}, SHIFT(975), - [2665] = {.count = 1, .reusable = false}, SHIFT(975), - [2667] = {.count = 1, .reusable = true}, SHIFT(976), - [2669] = {.count = 1, .reusable = true}, SHIFT(978), - [2671] = {.count = 1, .reusable = true}, SHIFT(979), - [2673] = {.count = 1, .reusable = true}, SHIFT(980), - [2675] = {.count = 1, .reusable = true}, SHIFT(981), - [2677] = {.count = 1, .reusable = true}, SHIFT(982), - [2679] = {.count = 1, .reusable = true}, SHIFT(983), - [2681] = {.count = 1, .reusable = false}, SHIFT(983), - [2683] = {.count = 1, .reusable = true}, SHIFT(984), - [2685] = {.count = 1, .reusable = false}, REDUCE(sym_do_statement, 4), - [2687] = {.count = 1, .reusable = true}, REDUCE(sym_do_statement, 4), - [2689] = {.count = 1, .reusable = true}, SHIFT(985), - [2691] = {.count = 1, .reusable = true}, SHIFT(986), - [2693] = {.count = 1, .reusable = false}, SHIFT(986), - [2695] = {.count = 1, .reusable = true}, SHIFT(987), - [2697] = {.count = 1, .reusable = true}, SHIFT(988), - [2699] = {.count = 1, .reusable = false}, SHIFT(988), - [2701] = {.count = 1, .reusable = true}, REDUCE(sym_sizeof_expression, 4), - [2703] = {.count = 1, .reusable = false}, SHIFT(209), - [2705] = {.count = 1, .reusable = false}, REDUCE(sym_sizeof_expression, 4), - [2707] = {.count = 1, .reusable = false}, SHIFT(221), - [2709] = {.count = 1, .reusable = true}, SHIFT(989), - [2711] = {.count = 1, .reusable = false}, SHIFT(989), - [2713] = {.count = 1, .reusable = true}, REDUCE(sym_argument_list, 3), - [2715] = {.count = 1, .reusable = false}, REDUCE(sym_argument_list, 3), - [2717] = {.count = 1, .reusable = true}, SHIFT(990), - [2719] = {.count = 1, .reusable = true}, REDUCE(sym_subscript_expression, 4), - [2721] = {.count = 1, .reusable = false}, REDUCE(sym_subscript_expression, 4), - [2723] = {.count = 1, .reusable = true}, SHIFT(992), - [2725] = {.count = 1, .reusable = false}, SHIFT(992), - [2727] = {.count = 1, .reusable = false}, SHIFT(239), - [2729] = {.count = 1, .reusable = false}, SHIFT(241), - [2731] = {.count = 1, .reusable = true}, SHIFT(994), - [2733] = {.count = 1, .reusable = false}, SHIFT(994), - [2735] = {.count = 1, .reusable = true}, REDUCE(sym_subscript_designator, 3), - [2737] = {.count = 1, .reusable = true}, REDUCE(sym_initializer_list, 4), - [2739] = {.count = 1, .reusable = false}, REDUCE(sym_initializer_list, 4), - [2741] = {.count = 1, .reusable = true}, REDUCE(aux_sym_initializer_list_repeat1, 2), - [2743] = {.count = 1, .reusable = true}, SHIFT(995), - [2745] = {.count = 2, .reusable = true}, REDUCE(aux_sym_initializer_list_repeat1, 2), SHIFT_REPEAT(996), - [2748] = {.count = 1, .reusable = true}, REDUCE(sym_initializer_pair, 3), - [2750] = {.count = 1, .reusable = false}, SHIFT(312), - [2752] = {.count = 1, .reusable = false}, SHIFT(313), - [2754] = {.count = 1, .reusable = true}, SHIFT(997), - [2756] = {.count = 1, .reusable = false}, SHIFT(997), - [2758] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_elif_in_field_declaration_list, 4), - [2760] = {.count = 1, .reusable = false}, SHIFT(336), - [2762] = {.count = 1, .reusable = false}, SHIFT(337), - [2764] = {.count = 1, .reusable = true}, SHIFT(998), - [2766] = {.count = 1, .reusable = false}, SHIFT(998), - [2768] = {.count = 1, .reusable = true}, REDUCE(sym_array_field_declarator, 5), - [2770] = {.count = 1, .reusable = false}, REDUCE(sym_field_declaration, 6), - [2772] = {.count = 1, .reusable = true}, REDUCE(sym_field_declaration, 6), - [2774] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_array_declarator, 5), - [2776] = {.count = 1, .reusable = true}, SHIFT(999), - [2778] = {.count = 1, .reusable = false}, SHIFT(999), - [2780] = {.count = 1, .reusable = true}, SHIFT(1001), - [2782] = {.count = 1, .reusable = false}, SHIFT(1001), - [2784] = {.count = 1, .reusable = false}, SHIFT(1003), - [2786] = {.count = 1, .reusable = false}, SHIFT(1006), - [2788] = {.count = 1, .reusable = false}, SHIFT(1009), - [2790] = {.count = 1, .reusable = false}, SHIFT(1010), - [2792] = {.count = 1, .reusable = false}, SHIFT(1011), - [2794] = {.count = 1, .reusable = false}, SHIFT(1012), - [2796] = {.count = 1, .reusable = false}, SHIFT(1013), - [2798] = {.count = 1, .reusable = false}, SHIFT(1014), - [2800] = {.count = 1, .reusable = false}, SHIFT(1015), - [2802] = {.count = 1, .reusable = false}, SHIFT(1017), - [2804] = {.count = 1, .reusable = true}, SHIFT(1019), - [2806] = {.count = 1, .reusable = false}, SHIFT(1020), - [2808] = {.count = 1, .reusable = true}, SHIFT(1024), - [2810] = {.count = 1, .reusable = true}, SHIFT(1025), - [2812] = {.count = 1, .reusable = true}, SHIFT(1026), - [2814] = {.count = 1, .reusable = false}, SHIFT(1026), - [2816] = {.count = 1, .reusable = true}, SHIFT(1027), - [2818] = {.count = 1, .reusable = true}, SHIFT(1028), - [2820] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(135), - [2823] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(136), - [2826] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(784), - [2829] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(785), - [2832] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(139), - [2835] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(786), - [2838] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(140), - [2841] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(501), - [2844] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(787), - [2847] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(788), - [2850] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(789), - [2853] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(790), - [2856] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(791), - [2859] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(792), - [2862] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(793), - [2865] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(794), - [2868] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(795), - [2871] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(796), - [2874] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(797), - [2877] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(800), - [2880] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(800), - [2883] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(798), - [2886] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_elif_in_compound_statement, 3), - [2888] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_elif_in_compound_statement, 3), - [2890] = {.count = 1, .reusable = true}, SHIFT(1033), - [2892] = {.count = 1, .reusable = false}, SHIFT(1033), - [2894] = {.count = 1, .reusable = true}, SHIFT(1034), - [2896] = {.count = 1, .reusable = true}, SHIFT(1036), - [2898] = {.count = 1, .reusable = true}, SHIFT(1037), - [2900] = {.count = 1, .reusable = false}, SHIFT(1038), - [2902] = {.count = 1, .reusable = true}, SHIFT(1040), - [2904] = {.count = 1, .reusable = true}, SHIFT(1042), - [2906] = {.count = 1, .reusable = true}, SHIFT(1043), - [2908] = {.count = 1, .reusable = false}, SHIFT(1043), - [2910] = {.count = 1, .reusable = true}, SHIFT(1044), - [2912] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if_in_compound_statement, 5), - [2914] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if_in_compound_statement, 5), - [2916] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_compound_statement, 5), - [2918] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_compound_statement, 5), - [2920] = {.count = 1, .reusable = false}, SHIFT(365), - [2922] = {.count = 1, .reusable = false}, SHIFT(366), - [2924] = {.count = 1, .reusable = true}, SHIFT(1045), - [2926] = {.count = 1, .reusable = false}, SHIFT(1045), - [2928] = {.count = 1, .reusable = false}, SHIFT(1046), - [2930] = {.count = 1, .reusable = true}, SHIFT(1047), - [2932] = {.count = 1, .reusable = true}, SHIFT(1048), - [2934] = {.count = 1, .reusable = false}, SHIFT(1048), - [2936] = {.count = 1, .reusable = true}, SHIFT(1049), - [2938] = {.count = 1, .reusable = false}, REDUCE(sym_if_statement, 5), - [2940] = {.count = 1, .reusable = true}, REDUCE(sym_if_statement, 5), - [2942] = {.count = 1, .reusable = false}, SHIFT(380), - [2944] = {.count = 1, .reusable = false}, SHIFT(381), - [2946] = {.count = 1, .reusable = true}, SHIFT(1050), - [2948] = {.count = 1, .reusable = false}, SHIFT(1050), - [2950] = {.count = 1, .reusable = true}, SHIFT(1052), - [2952] = {.count = 1, .reusable = false}, SHIFT(1053), - [2954] = {.count = 1, .reusable = true}, SHIFT(1054), - [2956] = {.count = 1, .reusable = true}, SHIFT(1055), - [2958] = {.count = 1, .reusable = false}, SHIFT(1055), - [2960] = {.count = 1, .reusable = true}, SHIFT(1056), - [2962] = {.count = 1, .reusable = true}, SHIFT(1057), + [149] = {.count = 1, .reusable = true}, SHIFT(72), + [151] = {.count = 1, .reusable = false}, SHIFT(73), + [153] = {.count = 1, .reusable = true}, SHIFT(74), + [155] = {.count = 1, .reusable = true}, REDUCE(sym__type_specifier, 1, .alias_sequence_id = 1), + [157] = {.count = 1, .reusable = false}, REDUCE(sym__type_specifier, 1, .alias_sequence_id = 1), + [159] = {.count = 3, .reusable = true}, REDUCE(sym__type_specifier, 1, .alias_sequence_id = 1), REDUCE(sym__expression, 1), SHIFT(75), + [163] = {.count = 2, .reusable = false}, REDUCE(sym__type_specifier, 1, .alias_sequence_id = 1), REDUCE(sym__expression, 1), + [166] = {.count = 1, .reusable = true}, REDUCE(sym__expression, 1), + [168] = {.count = 1, .reusable = false}, REDUCE(sym__expression, 1), + [170] = {.count = 1, .reusable = true}, ACCEPT_INPUT(), + [172] = {.count = 1, .reusable = true}, SHIFT(76), + [174] = {.count = 1, .reusable = true}, SHIFT(77), + [176] = {.count = 1, .reusable = true}, SHIFT(78), + [178] = {.count = 1, .reusable = true}, SHIFT(79), + [180] = {.count = 1, .reusable = true}, REDUCE(sym__declaration_specifiers, 1), + [182] = {.count = 1, .reusable = false}, REDUCE(sym__declaration_specifiers, 1), + [184] = {.count = 1, .reusable = true}, SHIFT(82), + [186] = {.count = 1, .reusable = false}, SHIFT(83), + [188] = {.count = 1, .reusable = true}, SHIFT(84), + [190] = {.count = 1, .reusable = false}, SHIFT(85), + [192] = {.count = 1, .reusable = true}, SHIFT(86), + [194] = {.count = 1, .reusable = true}, SHIFT(85), + [196] = {.count = 1, .reusable = false}, SHIFT(87), + [198] = {.count = 1, .reusable = true}, SHIFT(88), + [200] = {.count = 1, .reusable = true}, SHIFT(89), + [202] = {.count = 1, .reusable = false}, SHIFT(90), + [204] = {.count = 1, .reusable = false}, SHIFT(91), + [206] = {.count = 1, .reusable = true}, SHIFT(92), + [208] = {.count = 1, .reusable = false}, SHIFT(93), + [210] = {.count = 1, .reusable = true}, SHIFT(93), + [212] = {.count = 1, .reusable = false}, SHIFT(94), + [214] = {.count = 1, .reusable = false}, SHIFT(95), + [216] = {.count = 1, .reusable = true}, SHIFT(96), + [218] = {.count = 1, .reusable = true}, SHIFT(97), + [220] = {.count = 1, .reusable = true}, SHIFT(99), + [222] = {.count = 1, .reusable = true}, REDUCE(sym_translation_unit, 1), + [224] = {.count = 1, .reusable = false}, SHIFT(102), + [226] = {.count = 1, .reusable = true}, REDUCE(sym_sized_type_specifier, 1), + [228] = {.count = 1, .reusable = false}, REDUCE(sym_sized_type_specifier, 1), + [230] = {.count = 1, .reusable = false}, SHIFT(106), + [232] = {.count = 1, .reusable = false}, SHIFT(104), + [234] = {.count = 2, .reusable = false}, REDUCE(sym_sized_type_specifier, 1), SHIFT(105), + [237] = {.count = 1, .reusable = false}, SHIFT(107), + [239] = {.count = 1, .reusable = true}, SHIFT(108), + [241] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_include, 2), + [243] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_include, 2), + [245] = {.count = 1, .reusable = false}, SHIFT(109), + [247] = {.count = 1, .reusable = true}, SHIFT(110), + [249] = {.count = 1, .reusable = false}, SHIFT(111), + [251] = {.count = 1, .reusable = false}, SHIFT(113), + [253] = {.count = 1, .reusable = false}, SHIFT(114), + [255] = {.count = 1, .reusable = false}, SHIFT(115), + [257] = {.count = 1, .reusable = false}, SHIFT(116), + [259] = {.count = 1, .reusable = false}, SHIFT(117), + [261] = {.count = 1, .reusable = false}, SHIFT(118), + [263] = {.count = 1, .reusable = false}, SHIFT(119), + [265] = {.count = 1, .reusable = false}, SHIFT(120), + [267] = {.count = 1, .reusable = false}, SHIFT(121), + [269] = {.count = 1, .reusable = false}, SHIFT(122), + [271] = {.count = 1, .reusable = false}, SHIFT(127), + [273] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_call, 2), + [275] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_call, 2), + [277] = {.count = 1, .reusable = true}, SHIFT(130), + [279] = {.count = 2, .reusable = true}, REDUCE(sym__type_specifier, 1, .alias_sequence_id = 1), SHIFT(75), + [282] = {.count = 1, .reusable = true}, SHIFT(131), + [284] = {.count = 1, .reusable = true}, SHIFT(132), + [286] = {.count = 1, .reusable = true}, SHIFT(133), + [288] = {.count = 1, .reusable = false}, SHIFT(135), + [290] = {.count = 1, .reusable = false}, SHIFT(137), + [292] = {.count = 1, .reusable = true}, SHIFT(138), + [294] = {.count = 1, .reusable = false}, SHIFT(143), + [296] = {.count = 1, .reusable = false}, SHIFT(141), + [298] = {.count = 1, .reusable = true}, SHIFT(145), + [300] = {.count = 1, .reusable = true}, SHIFT(146), + [302] = {.count = 1, .reusable = false}, SHIFT(146), + [304] = {.count = 2, .reusable = true}, REDUCE(sym__type_specifier, 1, .alias_sequence_id = 1), REDUCE(sym__expression, 1), + [307] = {.count = 1, .reusable = true}, REDUCE(sym_type_descriptor, 1), + [309] = {.count = 1, .reusable = true}, SHIFT(147), + [311] = {.count = 1, .reusable = true}, SHIFT(148), + [313] = {.count = 1, .reusable = true}, SHIFT(149), + [315] = {.count = 1, .reusable = true}, SHIFT(152), + [317] = {.count = 1, .reusable = true}, SHIFT(153), + [319] = {.count = 1, .reusable = false}, SHIFT(154), + [321] = {.count = 1, .reusable = false}, SHIFT(155), + [323] = {.count = 1, .reusable = true}, SHIFT(156), + [325] = {.count = 1, .reusable = true}, SHIFT(155), + [327] = {.count = 1, .reusable = false}, SHIFT(157), + [329] = {.count = 1, .reusable = true}, SHIFT(158), + [331] = {.count = 1, .reusable = true}, SHIFT(159), + [333] = {.count = 1, .reusable = false}, SHIFT(160), + [335] = {.count = 1, .reusable = false}, SHIFT(161), + [337] = {.count = 1, .reusable = true}, SHIFT(162), + [339] = {.count = 1, .reusable = false}, SHIFT(163), + [341] = {.count = 1, .reusable = true}, SHIFT(163), + [343] = {.count = 1, .reusable = false}, SHIFT(164), + [345] = {.count = 1, .reusable = false}, SHIFT(165), + [347] = {.count = 1, .reusable = true}, SHIFT(166), + [349] = {.count = 1, .reusable = false}, SHIFT(168), + [351] = {.count = 1, .reusable = false}, SHIFT(169), + [353] = {.count = 1, .reusable = false}, SHIFT(105), + [355] = {.count = 1, .reusable = true}, REDUCE(sym_pointer_expression, 2), + [357] = {.count = 1, .reusable = false}, REDUCE(sym_pointer_expression, 2), + [359] = {.count = 1, .reusable = true}, SHIFT(170), + [361] = {.count = 1, .reusable = true}, SHIFT(171), + [363] = {.count = 1, .reusable = true}, SHIFT(172), + [365] = {.count = 1, .reusable = true}, REDUCE(sym_enum_specifier, 2, .alias_sequence_id = 2), + [367] = {.count = 1, .reusable = false}, REDUCE(sym_enum_specifier, 2, .alias_sequence_id = 2), + [369] = {.count = 1, .reusable = true}, REDUCE(sym_enum_specifier, 2), + [371] = {.count = 1, .reusable = false}, REDUCE(sym_enum_specifier, 2), + [373] = {.count = 1, .reusable = false}, SHIFT(175), + [375] = {.count = 1, .reusable = true}, SHIFT(176), + [377] = {.count = 1, .reusable = true}, SHIFT(177), + [379] = {.count = 1, .reusable = false}, SHIFT(182), + [381] = {.count = 1, .reusable = false}, SHIFT(179), + [383] = {.count = 1, .reusable = true}, REDUCE(sym_struct_specifier, 2, .alias_sequence_id = 2), + [385] = {.count = 1, .reusable = false}, REDUCE(sym_struct_specifier, 2, .alias_sequence_id = 2), + [387] = {.count = 1, .reusable = true}, REDUCE(sym_struct_specifier, 2), + [389] = {.count = 1, .reusable = false}, REDUCE(sym_struct_specifier, 2), + [391] = {.count = 1, .reusable = true}, REDUCE(sym_union_specifier, 2, .alias_sequence_id = 2), + [393] = {.count = 1, .reusable = false}, REDUCE(sym_union_specifier, 2, .alias_sequence_id = 2), + [395] = {.count = 1, .reusable = true}, REDUCE(sym_union_specifier, 2), + [397] = {.count = 1, .reusable = false}, REDUCE(sym_union_specifier, 2), + [399] = {.count = 1, .reusable = true}, REDUCE(sym_logical_expression, 2), + [401] = {.count = 1, .reusable = false}, REDUCE(sym_logical_expression, 2), + [403] = {.count = 1, .reusable = true}, REDUCE(sym_bitwise_expression, 2), + [405] = {.count = 1, .reusable = false}, REDUCE(sym_bitwise_expression, 2), + [407] = {.count = 1, .reusable = true}, REDUCE(sym_math_expression, 2), + [409] = {.count = 1, .reusable = false}, REDUCE(sym_math_expression, 2), + [411] = {.count = 1, .reusable = false}, REDUCE(sym_sizeof_expression, 2), + [413] = {.count = 1, .reusable = true}, REDUCE(sym_sizeof_expression, 2), + [415] = {.count = 1, .reusable = true}, SHIFT(186), + [417] = {.count = 1, .reusable = true}, REDUCE(sym_string_literal, 2), + [419] = {.count = 1, .reusable = false}, REDUCE(sym_string_literal, 2), + [421] = {.count = 1, .reusable = false}, SHIFT(187), + [423] = {.count = 1, .reusable = true}, SHIFT(188), + [425] = {.count = 1, .reusable = true}, REDUCE(sym__empty_declaration, 2), + [427] = {.count = 1, .reusable = false}, REDUCE(sym__empty_declaration, 2), + [429] = {.count = 1, .reusable = true}, SHIFT(190), + [431] = {.count = 1, .reusable = true}, SHIFT(191), + [433] = {.count = 1, .reusable = false}, SHIFT(192), + [435] = {.count = 1, .reusable = true}, SHIFT(194), + [437] = {.count = 1, .reusable = true}, SHIFT(195), + [439] = {.count = 1, .reusable = true}, SHIFT(196), + [441] = {.count = 1, .reusable = true}, SHIFT(197), + [443] = {.count = 1, .reusable = true}, SHIFT(198), + [445] = {.count = 1, .reusable = true}, SHIFT(199), + [447] = {.count = 1, .reusable = true}, REDUCE(sym__declaration_specifiers, 2), + [449] = {.count = 1, .reusable = false}, REDUCE(sym__declaration_specifiers, 2), + [451] = {.count = 1, .reusable = true}, SHIFT(204), + [453] = {.count = 1, .reusable = true}, SHIFT(205), + [455] = {.count = 1, .reusable = false}, SHIFT(205), + [457] = {.count = 1, .reusable = true}, SHIFT(206), + [459] = {.count = 1, .reusable = false}, SHIFT(206), + [461] = {.count = 1, .reusable = true}, SHIFT(207), + [463] = {.count = 1, .reusable = true}, SHIFT(208), + [465] = {.count = 1, .reusable = true}, SHIFT(209), + [467] = {.count = 1, .reusable = true}, SHIFT(210), + [469] = {.count = 1, .reusable = false}, SHIFT(211), + [471] = {.count = 1, .reusable = true}, SHIFT(211), + [473] = {.count = 1, .reusable = false}, SHIFT(212), + [475] = {.count = 1, .reusable = true}, SHIFT(213), + [477] = {.count = 1, .reusable = false}, SHIFT(213), + [479] = {.count = 1, .reusable = true}, SHIFT(215), + [481] = {.count = 1, .reusable = false}, SHIFT(215), + [483] = {.count = 1, .reusable = true}, SHIFT(216), + [485] = {.count = 1, .reusable = true}, SHIFT(217), + [487] = {.count = 1, .reusable = true}, SHIFT(218), + [489] = {.count = 1, .reusable = true}, SHIFT(219), + [491] = {.count = 1, .reusable = false}, SHIFT(220), + [493] = {.count = 1, .reusable = true}, SHIFT(220), + [495] = {.count = 1, .reusable = false}, SHIFT(221), + [497] = {.count = 1, .reusable = true}, SHIFT(222), + [499] = {.count = 1, .reusable = false}, SHIFT(222), + [501] = {.count = 1, .reusable = true}, SHIFT(224), + [503] = {.count = 1, .reusable = false}, SHIFT(224), + [505] = {.count = 1, .reusable = true}, SHIFT(225), + [507] = {.count = 1, .reusable = false}, SHIFT(225), + [509] = {.count = 1, .reusable = true}, SHIFT(226), + [511] = {.count = 1, .reusable = false}, SHIFT(226), + [513] = {.count = 1, .reusable = true}, SHIFT(227), + [515] = {.count = 1, .reusable = false}, SHIFT(227), + [517] = {.count = 1, .reusable = true}, SHIFT(228), + [519] = {.count = 1, .reusable = false}, SHIFT(228), + [521] = {.count = 1, .reusable = true}, SHIFT(229), + [523] = {.count = 1, .reusable = false}, SHIFT(229), + [525] = {.count = 1, .reusable = true}, SHIFT(230), + [527] = {.count = 1, .reusable = false}, SHIFT(230), + [529] = {.count = 1, .reusable = true}, SHIFT(231), + [531] = {.count = 1, .reusable = false}, SHIFT(231), + [533] = {.count = 1, .reusable = true}, SHIFT(232), + [535] = {.count = 1, .reusable = false}, SHIFT(232), + [537] = {.count = 1, .reusable = true}, SHIFT(233), + [539] = {.count = 1, .reusable = true}, REDUCE(sym_call_expression, 2), + [541] = {.count = 1, .reusable = false}, REDUCE(sym_call_expression, 2), + [543] = {.count = 1, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), + [545] = {.count = 1, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), + [547] = {.count = 1, .reusable = true}, REDUCE(sym_concatenated_string, 2), + [549] = {.count = 1, .reusable = false}, REDUCE(sym_concatenated_string, 2), + [551] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2), + [554] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3), + [557] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4), + [560] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5), + [563] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6), + [566] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(7), + [569] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(8), + [572] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(9), + [575] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(10), + [578] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(11), + [581] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(12), + [584] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(31), + [587] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(25), + [590] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(13), + [593] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(14), + [596] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(15), + [599] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(16), + [602] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(17), + [605] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(18), + [608] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(18), + [611] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(19), + [614] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(26), + [617] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(20), + [620] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(21), + [623] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(26), + [626] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(22), + [629] = {.count = 2, .reusable = false}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(11), + [632] = {.count = 2, .reusable = false}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(12), + [635] = {.count = 1, .reusable = false}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), + [637] = {.count = 1, .reusable = true}, REDUCE(sym_sized_type_specifier, 2), + [639] = {.count = 1, .reusable = false}, REDUCE(sym_sized_type_specifier, 2), + [641] = {.count = 1, .reusable = true}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .alias_sequence_id = 2), + [643] = {.count = 1, .reusable = false}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .alias_sequence_id = 2), + [645] = {.count = 1, .reusable = true}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), + [647] = {.count = 1, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), + [649] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(106), + [652] = {.count = 1, .reusable = false}, SHIFT(236), + [654] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_def, 3), + [656] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_def, 3), + [658] = {.count = 1, .reusable = true}, SHIFT(237), + [660] = {.count = 1, .reusable = true}, SHIFT(238), + [662] = {.count = 1, .reusable = true}, SHIFT(239), + [664] = {.count = 1, .reusable = false}, SHIFT(240), + [666] = {.count = 1, .reusable = false}, SHIFT(241), + [668] = {.count = 1, .reusable = true}, SHIFT(242), + [670] = {.count = 1, .reusable = true}, SHIFT(243), + [672] = {.count = 1, .reusable = true}, SHIFT(244), + [674] = {.count = 1, .reusable = false}, SHIFT(245), + [676] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if, 3), + [678] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if, 3), + [680] = {.count = 1, .reusable = true}, SHIFT(246), + [682] = {.count = 1, .reusable = false}, SHIFT(247), + [684] = {.count = 1, .reusable = false}, SHIFT(248), + [686] = {.count = 1, .reusable = false}, SHIFT(249), + [688] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_else, 1), + [690] = {.count = 1, .reusable = false}, SHIFT(250), + [692] = {.count = 1, .reusable = false}, SHIFT(251), + [694] = {.count = 1, .reusable = false}, SHIFT(252), + [696] = {.count = 1, .reusable = false}, SHIFT(253), + [698] = {.count = 1, .reusable = false}, SHIFT(257), + [700] = {.count = 1, .reusable = false}, SHIFT(258), + [702] = {.count = 1, .reusable = false}, SHIFT(259), + [704] = {.count = 1, .reusable = false}, SHIFT(260), + [706] = {.count = 1, .reusable = true}, SHIFT(263), + [708] = {.count = 1, .reusable = true}, SHIFT(264), + [710] = {.count = 1, .reusable = true}, SHIFT(265), + [712] = {.count = 1, .reusable = true}, SHIFT(267), + [714] = {.count = 1, .reusable = false}, SHIFT(263), + [716] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef, 3), + [718] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef, 3), + [720] = {.count = 1, .reusable = true}, SHIFT(270), + [722] = {.count = 1, .reusable = false}, SHIFT(270), + [724] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_call, 3), + [726] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_call, 3), + [728] = {.count = 1, .reusable = true}, SHIFT(272), + [730] = {.count = 1, .reusable = false}, SHIFT(133), + [732] = {.count = 1, .reusable = true}, REDUCE(sym__type_declarator, 1, .alias_sequence_id = 1), + [734] = {.count = 1, .reusable = true}, SHIFT(276), + [736] = {.count = 1, .reusable = true}, SHIFT(277), + [738] = {.count = 2, .reusable = false}, REDUCE(aux_sym_type_definition_repeat1, 2), SHIFT_REPEAT(12), + [741] = {.count = 1, .reusable = false}, REDUCE(aux_sym_type_definition_repeat1, 2), + [743] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(137), + [746] = {.count = 1, .reusable = true}, SHIFT(280), + [748] = {.count = 1, .reusable = true}, REDUCE(sym_linkage_specification, 3), + [750] = {.count = 1, .reusable = false}, REDUCE(sym_linkage_specification, 3), + [752] = {.count = 1, .reusable = false}, SHIFT(283), + [754] = {.count = 1, .reusable = false}, SHIFT(284), + [756] = {.count = 1, .reusable = true}, SHIFT(285), + [758] = {.count = 1, .reusable = true}, SHIFT(287), + [760] = {.count = 1, .reusable = true}, SHIFT(288), + [762] = {.count = 1, .reusable = false}, SHIFT(293), + [764] = {.count = 1, .reusable = false}, SHIFT(291), + [766] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_pointer_declarator, 1, .dynamic_precedence = 1), + [768] = {.count = 1, .reusable = true}, SHIFT(12), + [770] = {.count = 1, .reusable = true}, SHIFT(296), + [772] = {.count = 1, .reusable = false}, SHIFT(302), + [774] = {.count = 1, .reusable = false}, SHIFT(299), + [776] = {.count = 1, .reusable = true}, SHIFT(300), + [778] = {.count = 1, .reusable = false}, SHIFT(300), + [780] = {.count = 1, .reusable = false}, SHIFT(297), + [782] = {.count = 1, .reusable = true}, REDUCE(sym_type_descriptor, 2), + [784] = {.count = 1, .reusable = true}, SHIFT(303), + [786] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_function_declarator, 1), + [788] = {.count = 1, .reusable = true}, SHIFT(305), + [790] = {.count = 1, .reusable = false}, SHIFT(305), + [792] = {.count = 1, .reusable = true}, REDUCE(sym_parenthesized_expression, 3), + [794] = {.count = 1, .reusable = false}, REDUCE(sym_parenthesized_expression, 3), + [796] = {.count = 1, .reusable = true}, SHIFT(307), + [798] = {.count = 1, .reusable = false}, SHIFT(307), + [800] = {.count = 1, .reusable = true}, SHIFT(308), + [802] = {.count = 1, .reusable = false}, SHIFT(308), + [804] = {.count = 1, .reusable = true}, SHIFT(309), + [806] = {.count = 1, .reusable = false}, SHIFT(309), + [808] = {.count = 1, .reusable = true}, SHIFT(310), + [810] = {.count = 1, .reusable = false}, SHIFT(310), + [812] = {.count = 1, .reusable = true}, SHIFT(311), + [814] = {.count = 1, .reusable = false}, SHIFT(311), + [816] = {.count = 1, .reusable = true}, SHIFT(312), + [818] = {.count = 1, .reusable = false}, SHIFT(312), + [820] = {.count = 1, .reusable = true}, SHIFT(313), + [822] = {.count = 1, .reusable = false}, SHIFT(313), + [824] = {.count = 1, .reusable = true}, SHIFT(314), + [826] = {.count = 1, .reusable = false}, SHIFT(314), + [828] = {.count = 1, .reusable = true}, SHIFT(315), + [830] = {.count = 1, .reusable = false}, SHIFT(315), + [832] = {.count = 1, .reusable = true}, SHIFT(316), + [834] = {.count = 1, .reusable = false}, SHIFT(316), + [836] = {.count = 1, .reusable = true}, SHIFT(317), + [838] = {.count = 1, .reusable = false}, SHIFT(317), + [840] = {.count = 1, .reusable = true}, SHIFT(318), + [842] = {.count = 1, .reusable = true}, SHIFT(319), + [844] = {.count = 1, .reusable = false}, SHIFT(319), + [846] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(169), + [849] = {.count = 1, .reusable = true}, SHIFT(323), + [851] = {.count = 1, .reusable = true}, REDUCE(sym_enumerator_list, 2), + [853] = {.count = 1, .reusable = false}, REDUCE(sym_enumerator_list, 2), + [855] = {.count = 1, .reusable = true}, REDUCE(sym_enumerator, 1), + [857] = {.count = 1, .reusable = true}, SHIFT(324), + [859] = {.count = 1, .reusable = true}, SHIFT(325), + [861] = {.count = 1, .reusable = true}, REDUCE(sym_enum_specifier, 3, .alias_sequence_id = 2), + [863] = {.count = 1, .reusable = false}, REDUCE(sym_enum_specifier, 3, .alias_sequence_id = 2), + [865] = {.count = 1, .reusable = false}, SHIFT(327), + [867] = {.count = 1, .reusable = true}, SHIFT(328), + [869] = {.count = 1, .reusable = true}, REDUCE(sym_field_declaration_list, 2), + [871] = {.count = 1, .reusable = false}, REDUCE(sym_field_declaration_list, 2), + [873] = {.count = 1, .reusable = true}, SHIFT(329), + [875] = {.count = 1, .reusable = true}, SHIFT(330), + [877] = {.count = 1, .reusable = true}, SHIFT(331), + [879] = {.count = 1, .reusable = true}, SHIFT(332), + [881] = {.count = 1, .reusable = true}, SHIFT(333), + [883] = {.count = 1, .reusable = true}, SHIFT(336), + [885] = {.count = 1, .reusable = false}, SHIFT(338), + [887] = {.count = 1, .reusable = false}, SHIFT(339), + [889] = {.count = 1, .reusable = true}, REDUCE(sym_struct_specifier, 3, .alias_sequence_id = 2), + [891] = {.count = 1, .reusable = false}, REDUCE(sym_struct_specifier, 3, .alias_sequence_id = 2), + [893] = {.count = 1, .reusable = true}, REDUCE(sym_union_specifier, 3, .alias_sequence_id = 2), + [895] = {.count = 1, .reusable = false}, REDUCE(sym_union_specifier, 3, .alias_sequence_id = 2), + [897] = {.count = 1, .reusable = true}, SHIFT(340), + [899] = {.count = 1, .reusable = true}, REDUCE(sym_char_literal, 3), + [901] = {.count = 1, .reusable = false}, REDUCE(sym_char_literal, 3), + [903] = {.count = 1, .reusable = true}, REDUCE(sym_string_literal, 3), + [905] = {.count = 1, .reusable = false}, REDUCE(sym_string_literal, 3), + [907] = {.count = 1, .reusable = false}, REDUCE(aux_sym_string_literal_repeat1, 2), + [909] = {.count = 2, .reusable = true}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(188), + [912] = {.count = 1, .reusable = true}, SHIFT(341), + [914] = {.count = 1, .reusable = true}, SHIFT(343), + [916] = {.count = 1, .reusable = true}, REDUCE(sym_pointer_declarator, 2, .dynamic_precedence = 1), + [918] = {.count = 1, .reusable = false}, SHIFT(344), + [920] = {.count = 1, .reusable = true}, REDUCE(sym_declaration, 3), + [922] = {.count = 1, .reusable = false}, REDUCE(sym_declaration, 3), + [924] = {.count = 1, .reusable = true}, SHIFT(346), + [926] = {.count = 1, .reusable = true}, SHIFT(347), + [928] = {.count = 1, .reusable = true}, SHIFT(349), + [930] = {.count = 1, .reusable = false}, SHIFT(350), + [932] = {.count = 1, .reusable = false}, SHIFT(351), + [934] = {.count = 1, .reusable = true}, SHIFT(352), + [936] = {.count = 1, .reusable = true}, SHIFT(353), + [938] = {.count = 1, .reusable = true}, SHIFT(354), + [940] = {.count = 1, .reusable = false}, SHIFT(355), + [942] = {.count = 1, .reusable = false}, SHIFT(356), + [944] = {.count = 1, .reusable = false}, SHIFT(357), + [946] = {.count = 1, .reusable = false}, SHIFT(358), + [948] = {.count = 1, .reusable = false}, SHIFT(359), + [950] = {.count = 1, .reusable = false}, SHIFT(360), + [952] = {.count = 1, .reusable = false}, SHIFT(361), + [954] = {.count = 1, .reusable = false}, SHIFT(362), + [956] = {.count = 1, .reusable = false}, SHIFT(363), + [958] = {.count = 1, .reusable = false}, SHIFT(364), + [960] = {.count = 1, .reusable = false}, SHIFT(365), + [962] = {.count = 1, .reusable = true}, SHIFT(366), + [964] = {.count = 1, .reusable = true}, SHIFT(367), + [966] = {.count = 1, .reusable = false}, SHIFT(368), + [968] = {.count = 1, .reusable = true}, SHIFT(368), + [970] = {.count = 1, .reusable = false}, SHIFT(369), + [972] = {.count = 1, .reusable = true}, SHIFT(372), + [974] = {.count = 1, .reusable = false}, SHIFT(372), + [976] = {.count = 1, .reusable = false}, SHIFT(370), + [978] = {.count = 1, .reusable = true}, SHIFT(376), + [980] = {.count = 1, .reusable = true}, SHIFT(378), + [982] = {.count = 1, .reusable = false}, SHIFT(378), + [984] = {.count = 1, .reusable = true}, SHIFT(379), + [986] = {.count = 1, .reusable = false}, SHIFT(379), + [988] = {.count = 1, .reusable = true}, REDUCE(sym_function_definition, 3), + [990] = {.count = 1, .reusable = false}, REDUCE(sym_function_definition, 3), + [992] = {.count = 1, .reusable = true}, REDUCE(sym_function_declarator, 2), + [994] = {.count = 1, .reusable = true}, SHIFT(381), + [996] = {.count = 1, .reusable = true}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), + [998] = {.count = 1, .reusable = true}, REDUCE(sym_argument_list, 2), + [1000] = {.count = 1, .reusable = false}, REDUCE(sym_argument_list, 2), + [1002] = {.count = 1, .reusable = true}, SHIFT(383), + [1004] = {.count = 1, .reusable = true}, SHIFT(384), + [1006] = {.count = 1, .reusable = true}, REDUCE(sym_math_expression, 3), + [1008] = {.count = 1, .reusable = false}, REDUCE(sym_math_expression, 3), + [1010] = {.count = 1, .reusable = true}, SHIFT(387), + [1012] = {.count = 1, .reusable = true}, SHIFT(388), + [1014] = {.count = 1, .reusable = false}, SHIFT(388), + [1016] = {.count = 1, .reusable = false}, SHIFT(389), + [1018] = {.count = 1, .reusable = true}, SHIFT(390), + [1020] = {.count = 1, .reusable = false}, SHIFT(391), + [1022] = {.count = 1, .reusable = true}, SHIFT(392), + [1024] = {.count = 1, .reusable = true}, SHIFT(391), + [1026] = {.count = 1, .reusable = false}, SHIFT(393), + [1028] = {.count = 1, .reusable = true}, SHIFT(394), + [1030] = {.count = 1, .reusable = true}, SHIFT(395), + [1032] = {.count = 1, .reusable = false}, SHIFT(396), + [1034] = {.count = 1, .reusable = false}, SHIFT(397), + [1036] = {.count = 1, .reusable = true}, SHIFT(398), + [1038] = {.count = 1, .reusable = false}, SHIFT(399), + [1040] = {.count = 1, .reusable = true}, SHIFT(399), + [1042] = {.count = 1, .reusable = false}, SHIFT(400), + [1044] = {.count = 1, .reusable = false}, SHIFT(401), + [1046] = {.count = 1, .reusable = true}, REDUCE(sym_assignment_expression, 3), + [1048] = {.count = 1, .reusable = true}, SHIFT(404), + [1050] = {.count = 1, .reusable = true}, SHIFT(405), + [1052] = {.count = 1, .reusable = false}, SHIFT(405), + [1054] = {.count = 1, .reusable = false}, SHIFT(406), + [1056] = {.count = 1, .reusable = false}, SHIFT(407), + [1058] = {.count = 1, .reusable = true}, SHIFT(408), + [1060] = {.count = 1, .reusable = true}, SHIFT(409), + [1062] = {.count = 1, .reusable = true}, SHIFT(407), + [1064] = {.count = 1, .reusable = false}, SHIFT(410), + [1066] = {.count = 1, .reusable = true}, SHIFT(411), + [1068] = {.count = 1, .reusable = true}, SHIFT(412), + [1070] = {.count = 1, .reusable = false}, SHIFT(413), + [1072] = {.count = 1, .reusable = false}, SHIFT(414), + [1074] = {.count = 1, .reusable = true}, SHIFT(415), + [1076] = {.count = 1, .reusable = false}, SHIFT(416), + [1078] = {.count = 1, .reusable = true}, SHIFT(416), + [1080] = {.count = 1, .reusable = false}, SHIFT(417), + [1082] = {.count = 1, .reusable = false}, SHIFT(418), + [1084] = {.count = 1, .reusable = false}, REDUCE(sym_bitwise_expression, 3), + [1086] = {.count = 1, .reusable = true}, REDUCE(sym_bitwise_expression, 3), + [1088] = {.count = 1, .reusable = false}, REDUCE(sym_logical_expression, 3), + [1090] = {.count = 1, .reusable = true}, REDUCE(sym_logical_expression, 3), + [1092] = {.count = 1, .reusable = false}, REDUCE(sym_equality_expression, 3), + [1094] = {.count = 1, .reusable = true}, REDUCE(sym_equality_expression, 3), + [1096] = {.count = 1, .reusable = false}, REDUCE(sym_relational_expression, 3), + [1098] = {.count = 1, .reusable = true}, REDUCE(sym_relational_expression, 3), + [1100] = {.count = 1, .reusable = false}, REDUCE(sym_shift_expression, 3), + [1102] = {.count = 1, .reusable = true}, REDUCE(sym_shift_expression, 3), + [1104] = {.count = 1, .reusable = true}, REDUCE(sym_field_expression, 3, .alias_sequence_id = 3), + [1106] = {.count = 1, .reusable = false}, REDUCE(sym_field_expression, 3, .alias_sequence_id = 3), + [1108] = {.count = 1, .reusable = true}, REDUCE(aux_sym_concatenated_string_repeat1, 2), + [1110] = {.count = 1, .reusable = false}, REDUCE(aux_sym_concatenated_string_repeat1, 2), + [1112] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(21), + [1115] = {.count = 1, .reusable = true}, REDUCE(sym__declaration_specifiers, 3), + [1117] = {.count = 1, .reusable = false}, REDUCE(sym__declaration_specifiers, 3), + [1119] = {.count = 1, .reusable = true}, SHIFT(420), + [1121] = {.count = 1, .reusable = true}, SHIFT(421), + [1123] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_params, 2), + [1125] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_def, 4), + [1127] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_def, 4), + [1129] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_function_def, 4), + [1131] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_function_def, 4), + [1133] = {.count = 1, .reusable = true}, SHIFT(423), + [1135] = {.count = 1, .reusable = false}, SHIFT(424), + [1137] = {.count = 1, .reusable = true}, SHIFT(425), + [1139] = {.count = 1, .reusable = false}, SHIFT(426), + [1141] = {.count = 1, .reusable = false}, SHIFT(427), + [1143] = {.count = 1, .reusable = false}, SHIFT(429), + [1145] = {.count = 1, .reusable = false}, SHIFT(432), + [1147] = {.count = 1, .reusable = true}, SHIFT(435), + [1149] = {.count = 1, .reusable = true}, SHIFT(436), + [1151] = {.count = 1, .reusable = true}, SHIFT(437), + [1153] = {.count = 1, .reusable = false}, SHIFT(438), + [1155] = {.count = 1, .reusable = true}, SHIFT(439), + [1157] = {.count = 1, .reusable = false}, SHIFT(440), + [1159] = {.count = 1, .reusable = false}, SHIFT(441), + [1161] = {.count = 1, .reusable = false}, SHIFT(442), + [1163] = {.count = 1, .reusable = true}, SHIFT(445), + [1165] = {.count = 1, .reusable = true}, SHIFT(446), + [1167] = {.count = 1, .reusable = true}, SHIFT(448), + [1169] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_else, 2), + [1171] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_elif, 2), + [1173] = {.count = 1, .reusable = true}, SHIFT(452), + [1175] = {.count = 1, .reusable = false}, SHIFT(454), + [1177] = {.count = 1, .reusable = true}, SHIFT(455), + [1179] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if, 4), + [1181] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if, 4), + [1183] = {.count = 1, .reusable = true}, SHIFT(458), + [1185] = {.count = 1, .reusable = true}, SHIFT(459), + [1187] = {.count = 1, .reusable = true}, SHIFT(462), + [1189] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(113), + [1192] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(114), + [1195] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(115), + [1198] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(117), + [1201] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(120), + [1204] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(121), + [1207] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(122), + [1210] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef, 4), + [1212] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef, 4), + [1214] = {.count = 1, .reusable = true}, SHIFT(463), + [1216] = {.count = 1, .reusable = true}, SHIFT(465), + [1218] = {.count = 1, .reusable = true}, REDUCE(sym_pointer_type_declarator, 2, .dynamic_precedence = 1), + [1220] = {.count = 1, .reusable = true}, REDUCE(sym_type_definition, 4), + [1222] = {.count = 1, .reusable = false}, REDUCE(sym_type_definition, 4), + [1224] = {.count = 1, .reusable = true}, SHIFT(467), + [1226] = {.count = 1, .reusable = true}, SHIFT(469), + [1228] = {.count = 1, .reusable = false}, SHIFT(469), + [1230] = {.count = 1, .reusable = true}, REDUCE(sym_function_type_declarator, 2), + [1232] = {.count = 1, .reusable = true}, SHIFT(470), + [1234] = {.count = 1, .reusable = true}, REDUCE(sym_declaration_list, 2), + [1236] = {.count = 1, .reusable = false}, REDUCE(sym_declaration_list, 2), + [1238] = {.count = 1, .reusable = true}, SHIFT(471), + [1240] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(284), + [1243] = {.count = 1, .reusable = true}, SHIFT(475), + [1245] = {.count = 1, .reusable = true}, SHIFT(476), + [1247] = {.count = 1, .reusable = true}, SHIFT(477), + [1249] = {.count = 1, .reusable = true}, REDUCE(sym_parameter_list, 2), + [1251] = {.count = 1, .reusable = true}, REDUCE(sym_parameter_declaration, 1), + [1253] = {.count = 1, .reusable = true}, SHIFT(479), + [1255] = {.count = 1, .reusable = true}, SHIFT(480), + [1257] = {.count = 1, .reusable = true}, SHIFT(481), + [1259] = {.count = 1, .reusable = true}, SHIFT(483), + [1261] = {.count = 1, .reusable = false}, SHIFT(485), + [1263] = {.count = 1, .reusable = false}, SHIFT(486), + [1265] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_pointer_declarator, 2, .dynamic_precedence = 1), + [1267] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_array_declarator, 2), + [1269] = {.count = 1, .reusable = true}, SHIFT(489), + [1271] = {.count = 1, .reusable = true}, SHIFT(490), + [1273] = {.count = 1, .reusable = false}, SHIFT(490), + [1275] = {.count = 1, .reusable = false}, SHIFT(492), + [1277] = {.count = 1, .reusable = false}, SHIFT(493), + [1279] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_function_declarator, 2), + [1281] = {.count = 1, .reusable = true}, REDUCE(sym_comma_expression, 3), + [1283] = {.count = 1, .reusable = true}, SHIFT(495), + [1285] = {.count = 1, .reusable = true}, SHIFT(496), + [1287] = {.count = 1, .reusable = true}, SHIFT(497), + [1289] = {.count = 1, .reusable = true}, SHIFT(498), + [1291] = {.count = 1, .reusable = true}, SHIFT(499), + [1293] = {.count = 1, .reusable = true}, SHIFT(500), + [1295] = {.count = 1, .reusable = true}, SHIFT(501), + [1297] = {.count = 1, .reusable = true}, SHIFT(502), + [1299] = {.count = 1, .reusable = false}, SHIFT(503), + [1301] = {.count = 1, .reusable = true}, SHIFT(503), + [1303] = {.count = 1, .reusable = false}, SHIFT(504), + [1305] = {.count = 1, .reusable = true}, SHIFT(505), + [1307] = {.count = 1, .reusable = true}, SHIFT(506), + [1309] = {.count = 1, .reusable = false}, SHIFT(506), + [1311] = {.count = 1, .reusable = true}, REDUCE(sym_cast_expression, 4), + [1313] = {.count = 1, .reusable = false}, REDUCE(sym_cast_expression, 4), + [1315] = {.count = 1, .reusable = true}, REDUCE(sym_compound_literal_expression, 4), + [1317] = {.count = 1, .reusable = false}, REDUCE(sym_compound_literal_expression, 4), + [1319] = {.count = 1, .reusable = true}, REDUCE(sym_type_descriptor, 3), + [1321] = {.count = 1, .reusable = true}, REDUCE(sym_enumerator_list, 3), + [1323] = {.count = 1, .reusable = false}, REDUCE(sym_enumerator_list, 3), + [1325] = {.count = 1, .reusable = true}, SHIFT(510), + [1327] = {.count = 1, .reusable = false}, SHIFT(510), + [1329] = {.count = 1, .reusable = true}, SHIFT(511), + [1331] = {.count = 1, .reusable = true}, SHIFT(513), + [1333] = {.count = 1, .reusable = true}, SHIFT(515), + [1335] = {.count = 1, .reusable = true}, SHIFT(516), + [1337] = {.count = 1, .reusable = true}, SHIFT(517), + [1339] = {.count = 1, .reusable = true}, SHIFT(520), + [1341] = {.count = 1, .reusable = false}, REDUCE(sym_field_declaration, 2), + [1343] = {.count = 1, .reusable = true}, REDUCE(sym_field_declaration, 2), + [1345] = {.count = 1, .reusable = true}, SHIFT(523), + [1347] = {.count = 1, .reusable = false}, SHIFT(333), + [1349] = {.count = 1, .reusable = true}, SHIFT(527), + [1351] = {.count = 1, .reusable = true}, SHIFT(528), + [1353] = {.count = 1, .reusable = true}, SHIFT(529), + [1355] = {.count = 1, .reusable = true}, SHIFT(530), + [1357] = {.count = 1, .reusable = false}, SHIFT(531), + [1359] = {.count = 1, .reusable = true}, SHIFT(531), + [1361] = {.count = 1, .reusable = false}, SHIFT(532), + [1363] = {.count = 1, .reusable = true}, SHIFT(533), + [1365] = {.count = 1, .reusable = false}, SHIFT(533), + [1367] = {.count = 1, .reusable = true}, REDUCE(sym__field_declarator, 1, .alias_sequence_id = 4), + [1369] = {.count = 1, .reusable = true}, SHIFT(535), + [1371] = {.count = 1, .reusable = true}, SHIFT(536), + [1373] = {.count = 1, .reusable = true}, SHIFT(537), + [1375] = {.count = 1, .reusable = true}, SHIFT(538), + [1377] = {.count = 1, .reusable = true}, REDUCE(sym_field_declaration_list, 3), + [1379] = {.count = 1, .reusable = false}, REDUCE(sym_field_declaration_list, 3), + [1381] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(175), + [1384] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(176), + [1387] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(11), + [1390] = {.count = 1, .reusable = true}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), + [1392] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(12), + [1395] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(182), + [1398] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(179), + [1401] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(13), + [1404] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(14), + [1407] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(15), + [1410] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(39), + [1413] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(339), + [1416] = {.count = 1, .reusable = false}, SHIFT(10), + [1418] = {.count = 1, .reusable = true}, REDUCE(sym_sizeof_expression, 4), + [1420] = {.count = 1, .reusable = false}, REDUCE(sym_sizeof_expression, 4), + [1422] = {.count = 1, .reusable = false}, SHIFT(16), + [1424] = {.count = 1, .reusable = true}, REDUCE(sym_macro_type_specifier, 4, .dynamic_precedence = -1), + [1426] = {.count = 1, .reusable = false}, REDUCE(sym_macro_type_specifier, 4, .dynamic_precedence = -1), + [1428] = {.count = 1, .reusable = true}, REDUCE(sym__declarator, 3, .dynamic_precedence = -10), + [1430] = {.count = 1, .reusable = true}, REDUCE(sym_pointer_declarator, 3, .dynamic_precedence = 1), + [1432] = {.count = 1, .reusable = true}, REDUCE(aux_sym_type_definition_repeat1, 2), + [1434] = {.count = 1, .reusable = true}, REDUCE(aux_sym_declaration_repeat1, 2), + [1436] = {.count = 1, .reusable = true}, REDUCE(sym_expression_statement, 1), + [1438] = {.count = 1, .reusable = false}, REDUCE(sym_expression_statement, 1), + [1440] = {.count = 1, .reusable = false}, SHIFT(544), + [1442] = {.count = 1, .reusable = true}, SHIFT(545), + [1444] = {.count = 1, .reusable = true}, REDUCE(sym_compound_statement, 2), + [1446] = {.count = 1, .reusable = false}, REDUCE(sym_compound_statement, 2), + [1448] = {.count = 1, .reusable = true}, SHIFT(547), + [1450] = {.count = 1, .reusable = true}, SHIFT(550), + [1452] = {.count = 1, .reusable = false}, SHIFT(550), + [1454] = {.count = 1, .reusable = true}, SHIFT(551), + [1456] = {.count = 1, .reusable = false}, SHIFT(553), + [1458] = {.count = 1, .reusable = false}, SHIFT(554), + [1460] = {.count = 1, .reusable = false}, SHIFT(555), + [1462] = {.count = 1, .reusable = false}, SHIFT(556), + [1464] = {.count = 1, .reusable = false}, SHIFT(557), + [1466] = {.count = 1, .reusable = false}, SHIFT(558), + [1468] = {.count = 1, .reusable = false}, SHIFT(559), + [1470] = {.count = 1, .reusable = false}, SHIFT(560), + [1472] = {.count = 1, .reusable = true}, SHIFT(562), + [1474] = {.count = 1, .reusable = true}, SHIFT(563), + [1476] = {.count = 1, .reusable = true}, SHIFT(564), + [1478] = {.count = 1, .reusable = false}, SHIFT(564), + [1480] = {.count = 1, .reusable = true}, SHIFT(565), + [1482] = {.count = 1, .reusable = true}, SHIFT(566), + [1484] = {.count = 1, .reusable = true}, SHIFT(567), + [1486] = {.count = 1, .reusable = true}, SHIFT(568), + [1488] = {.count = 1, .reusable = true}, SHIFT(569), + [1490] = {.count = 1, .reusable = false}, SHIFT(569), + [1492] = {.count = 1, .reusable = true}, SHIFT(570), + [1494] = {.count = 1, .reusable = true}, SHIFT(571), + [1496] = {.count = 1, .reusable = true}, SHIFT(572), + [1498] = {.count = 1, .reusable = true}, SHIFT(573), + [1500] = {.count = 1, .reusable = false}, SHIFT(574), + [1502] = {.count = 1, .reusable = false}, SHIFT(575), + [1504] = {.count = 1, .reusable = true}, SHIFT(576), + [1506] = {.count = 1, .reusable = true}, SHIFT(575), + [1508] = {.count = 1, .reusable = false}, SHIFT(577), + [1510] = {.count = 1, .reusable = true}, SHIFT(578), + [1512] = {.count = 1, .reusable = true}, SHIFT(579), + [1514] = {.count = 1, .reusable = false}, SHIFT(580), + [1516] = {.count = 1, .reusable = false}, SHIFT(581), + [1518] = {.count = 1, .reusable = true}, SHIFT(582), + [1520] = {.count = 1, .reusable = false}, SHIFT(583), + [1522] = {.count = 1, .reusable = true}, SHIFT(583), + [1524] = {.count = 1, .reusable = false}, SHIFT(584), + [1526] = {.count = 1, .reusable = false}, SHIFT(585), + [1528] = {.count = 1, .reusable = true}, SHIFT(587), + [1530] = {.count = 1, .reusable = true}, REDUCE(sym_array_declarator, 3), + [1532] = {.count = 1, .reusable = true}, SHIFT(589), + [1534] = {.count = 1, .reusable = true}, SHIFT(590), + [1536] = {.count = 1, .reusable = false}, SHIFT(590), + [1538] = {.count = 1, .reusable = true}, REDUCE(sym_init_declarator, 3), + [1540] = {.count = 1, .reusable = true}, REDUCE(sym_declaration, 4), + [1542] = {.count = 1, .reusable = false}, REDUCE(sym_declaration, 4), + [1544] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_repeat1, 2), SHIFT_REPEAT(195), + [1547] = {.count = 1, .reusable = true}, SHIFT(591), + [1549] = {.count = 1, .reusable = false}, SHIFT(591), + [1551] = {.count = 1, .reusable = true}, REDUCE(sym_argument_list, 3), + [1553] = {.count = 1, .reusable = false}, REDUCE(sym_argument_list, 3), + [1555] = {.count = 1, .reusable = true}, SHIFT(592), + [1557] = {.count = 1, .reusable = true}, SHIFT(594), + [1559] = {.count = 1, .reusable = true}, REDUCE(sym_subscript_expression, 4), + [1561] = {.count = 1, .reusable = false}, REDUCE(sym_subscript_expression, 4), + [1563] = {.count = 1, .reusable = true}, SHIFT(596), + [1565] = {.count = 1, .reusable = false}, SHIFT(596), + [1567] = {.count = 1, .reusable = true}, SHIFT(597), + [1569] = {.count = 1, .reusable = false}, SHIFT(597), + [1571] = {.count = 1, .reusable = true}, SHIFT(598), + [1573] = {.count = 1, .reusable = false}, SHIFT(598), + [1575] = {.count = 1, .reusable = true}, SHIFT(599), + [1577] = {.count = 1, .reusable = false}, SHIFT(599), + [1579] = {.count = 1, .reusable = true}, SHIFT(600), + [1581] = {.count = 1, .reusable = false}, SHIFT(600), + [1583] = {.count = 1, .reusable = true}, SHIFT(601), + [1585] = {.count = 1, .reusable = false}, SHIFT(601), + [1587] = {.count = 1, .reusable = true}, SHIFT(602), + [1589] = {.count = 1, .reusable = false}, SHIFT(602), + [1591] = {.count = 1, .reusable = true}, SHIFT(603), + [1593] = {.count = 1, .reusable = false}, SHIFT(603), + [1595] = {.count = 1, .reusable = true}, SHIFT(604), + [1597] = {.count = 1, .reusable = false}, SHIFT(604), + [1599] = {.count = 1, .reusable = true}, SHIFT(605), + [1601] = {.count = 1, .reusable = false}, SHIFT(605), + [1603] = {.count = 1, .reusable = true}, SHIFT(606), + [1605] = {.count = 1, .reusable = false}, SHIFT(606), + [1607] = {.count = 1, .reusable = true}, SHIFT(608), + [1609] = {.count = 1, .reusable = true}, SHIFT(610), + [1611] = {.count = 1, .reusable = false}, SHIFT(610), + [1613] = {.count = 1, .reusable = true}, SHIFT(611), + [1615] = {.count = 1, .reusable = false}, SHIFT(611), + [1617] = {.count = 1, .reusable = true}, SHIFT(612), + [1619] = {.count = 1, .reusable = false}, SHIFT(612), + [1621] = {.count = 1, .reusable = true}, SHIFT(613), + [1623] = {.count = 1, .reusable = false}, SHIFT(613), + [1625] = {.count = 1, .reusable = true}, SHIFT(614), + [1627] = {.count = 1, .reusable = false}, SHIFT(614), + [1629] = {.count = 1, .reusable = true}, SHIFT(615), + [1631] = {.count = 1, .reusable = false}, SHIFT(615), + [1633] = {.count = 1, .reusable = true}, SHIFT(616), + [1635] = {.count = 1, .reusable = false}, SHIFT(616), + [1637] = {.count = 1, .reusable = true}, SHIFT(617), + [1639] = {.count = 1, .reusable = false}, SHIFT(617), + [1641] = {.count = 1, .reusable = true}, SHIFT(618), + [1643] = {.count = 1, .reusable = false}, SHIFT(618), + [1645] = {.count = 1, .reusable = true}, SHIFT(619), + [1647] = {.count = 1, .reusable = false}, SHIFT(619), + [1649] = {.count = 1, .reusable = true}, SHIFT(620), + [1651] = {.count = 1, .reusable = false}, SHIFT(620), + [1653] = {.count = 1, .reusable = true}, SHIFT(622), + [1655] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_params, 3), + [1657] = {.count = 1, .reusable = true}, SHIFT(623), + [1659] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_function_def, 5), + [1661] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_function_def, 5), + [1663] = {.count = 1, .reusable = false}, SHIFT(625), + [1665] = {.count = 1, .reusable = true}, SHIFT(626), + [1667] = {.count = 1, .reusable = false}, SHIFT(627), + [1669] = {.count = 1, .reusable = false}, SHIFT(628), + [1671] = {.count = 1, .reusable = true}, SHIFT(629), + [1673] = {.count = 1, .reusable = false}, SHIFT(629), + [1675] = {.count = 1, .reusable = true}, SHIFT(631), + [1677] = {.count = 1, .reusable = false}, SHIFT(631), + [1679] = {.count = 1, .reusable = false}, SHIFT(633), + [1681] = {.count = 1, .reusable = true}, SHIFT(634), + [1683] = {.count = 1, .reusable = false}, SHIFT(635), + [1685] = {.count = 1, .reusable = false}, SHIFT(636), + [1687] = {.count = 1, .reusable = false}, SHIFT(638), + [1689] = {.count = 1, .reusable = false}, SHIFT(641), + [1691] = {.count = 1, .reusable = true}, SHIFT(644), + [1693] = {.count = 1, .reusable = false}, SHIFT(646), + [1695] = {.count = 1, .reusable = true}, SHIFT(647), + [1697] = {.count = 1, .reusable = true}, SHIFT(650), + [1699] = {.count = 1, .reusable = true}, SHIFT(651), + [1701] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(247), + [1704] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(248), + [1707] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(249), + [1710] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(250), + [1713] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(251), + [1716] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(252), + [1719] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(253), + [1722] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_elif, 3), + [1724] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_elif, 3), + [1726] = {.count = 1, .reusable = true}, SHIFT(655), + [1728] = {.count = 1, .reusable = true}, SHIFT(657), + [1730] = {.count = 1, .reusable = true}, SHIFT(659), + [1732] = {.count = 1, .reusable = true}, SHIFT(661), + [1734] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if, 5), + [1736] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if, 5), + [1738] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef, 5), + [1740] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef, 5), + [1742] = {.count = 1, .reusable = true}, REDUCE(sym__type_declarator, 3, .dynamic_precedence = -10), + [1744] = {.count = 1, .reusable = true}, REDUCE(sym_pointer_type_declarator, 3, .dynamic_precedence = 1), + [1746] = {.count = 1, .reusable = true}, REDUCE(sym_array_type_declarator, 3), + [1748] = {.count = 1, .reusable = true}, SHIFT(662), + [1750] = {.count = 1, .reusable = true}, SHIFT(663), + [1752] = {.count = 1, .reusable = false}, SHIFT(663), + [1754] = {.count = 1, .reusable = true}, REDUCE(sym_type_definition, 5), + [1756] = {.count = 1, .reusable = false}, REDUCE(sym_type_definition, 5), + [1758] = {.count = 1, .reusable = true}, REDUCE(sym_declaration_list, 3), + [1760] = {.count = 1, .reusable = false}, REDUCE(sym_declaration_list, 3), + [1762] = {.count = 1, .reusable = false}, SHIFT(45), + [1764] = {.count = 1, .reusable = false}, SHIFT(46), + [1766] = {.count = 1, .reusable = true}, SHIFT(664), + [1768] = {.count = 1, .reusable = true}, REDUCE(sym_parameter_list, 3), + [1770] = {.count = 1, .reusable = true}, SHIFT(665), + [1772] = {.count = 1, .reusable = true}, SHIFT(667), + [1774] = {.count = 1, .reusable = false}, SHIFT(668), + [1776] = {.count = 1, .reusable = true}, REDUCE(sym_parameter_declaration, 2), + [1778] = {.count = 1, .reusable = true}, REDUCE(sym__abstract_declarator, 3), + [1780] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(486), + [1783] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_pointer_declarator, 3, .dynamic_precedence = 1), + [1785] = {.count = 2, .reusable = true}, REDUCE(aux_sym_type_definition_repeat1, 2), SHIFT_REPEAT(12), + [1788] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_array_declarator, 3), + [1790] = {.count = 1, .reusable = true}, SHIFT(672), + [1792] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(493), + [1795] = {.count = 1, .reusable = true}, SHIFT(675), + [1797] = {.count = 1, .reusable = false}, SHIFT(675), + [1799] = {.count = 1, .reusable = true}, SHIFT(676), + [1801] = {.count = 1, .reusable = false}, SHIFT(676), + [1803] = {.count = 1, .reusable = true}, SHIFT(677), + [1805] = {.count = 1, .reusable = true}, REDUCE(sym_initializer_list, 2), + [1807] = {.count = 1, .reusable = false}, REDUCE(sym_initializer_list, 2), + [1809] = {.count = 1, .reusable = true}, SHIFT(679), + [1811] = {.count = 1, .reusable = false}, SHIFT(679), + [1813] = {.count = 1, .reusable = true}, SHIFT(680), + [1815] = {.count = 1, .reusable = true}, SHIFT(681), + [1817] = {.count = 1, .reusable = false}, SHIFT(681), + [1819] = {.count = 1, .reusable = true}, SHIFT(682), + [1821] = {.count = 1, .reusable = true}, SHIFT(683), + [1823] = {.count = 1, .reusable = false}, SHIFT(684), + [1825] = {.count = 1, .reusable = false}, SHIFT(685), + [1827] = {.count = 1, .reusable = true}, SHIFT(686), + [1829] = {.count = 1, .reusable = true}, SHIFT(685), + [1831] = {.count = 1, .reusable = false}, SHIFT(687), + [1833] = {.count = 1, .reusable = true}, SHIFT(688), + [1835] = {.count = 1, .reusable = true}, SHIFT(689), + [1837] = {.count = 1, .reusable = false}, SHIFT(690), + [1839] = {.count = 1, .reusable = false}, SHIFT(691), + [1841] = {.count = 1, .reusable = true}, SHIFT(692), + [1843] = {.count = 1, .reusable = false}, SHIFT(693), + [1845] = {.count = 1, .reusable = true}, SHIFT(693), + [1847] = {.count = 1, .reusable = false}, SHIFT(694), + [1849] = {.count = 1, .reusable = false}, SHIFT(695), + [1851] = {.count = 1, .reusable = true}, SHIFT(698), + [1853] = {.count = 1, .reusable = true}, REDUCE(sym_enumerator, 3), + [1855] = {.count = 1, .reusable = true}, REDUCE(sym_enumerator_list, 4), + [1857] = {.count = 1, .reusable = false}, REDUCE(sym_enumerator_list, 4), + [1859] = {.count = 1, .reusable = true}, REDUCE(aux_sym_enumerator_list_repeat1, 2), + [1861] = {.count = 1, .reusable = true}, SHIFT(700), + [1863] = {.count = 2, .reusable = true}, REDUCE(aux_sym_enumerator_list_repeat1, 2), SHIFT_REPEAT(701), + [1866] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if_in_field_declaration_list, 3), + [1868] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if_in_field_declaration_list, 3), + [1870] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_else_in_field_declaration_list, 1), + [1872] = {.count = 1, .reusable = false}, SHIFT(703), + [1874] = {.count = 1, .reusable = true}, SHIFT(704), + [1876] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3), + [1878] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3), + [1880] = {.count = 1, .reusable = true}, SHIFT(707), + [1882] = {.count = 1, .reusable = true}, SHIFT(710), + [1884] = {.count = 1, .reusable = true}, REDUCE(sym_pointer_field_declarator, 2, .dynamic_precedence = 1), + [1886] = {.count = 1, .reusable = true}, SHIFT(713), + [1888] = {.count = 1, .reusable = true}, SHIFT(714), + [1890] = {.count = 1, .reusable = false}, SHIFT(714), + [1892] = {.count = 1, .reusable = true}, SHIFT(715), + [1894] = {.count = 1, .reusable = false}, SHIFT(716), + [1896] = {.count = 1, .reusable = false}, SHIFT(717), + [1898] = {.count = 1, .reusable = true}, SHIFT(718), + [1900] = {.count = 1, .reusable = true}, SHIFT(717), + [1902] = {.count = 1, .reusable = false}, SHIFT(719), + [1904] = {.count = 1, .reusable = true}, SHIFT(720), + [1906] = {.count = 1, .reusable = true}, SHIFT(721), + [1908] = {.count = 1, .reusable = false}, SHIFT(722), + [1910] = {.count = 1, .reusable = false}, SHIFT(723), + [1912] = {.count = 1, .reusable = true}, SHIFT(724), + [1914] = {.count = 1, .reusable = false}, SHIFT(725), + [1916] = {.count = 1, .reusable = true}, SHIFT(725), + [1918] = {.count = 1, .reusable = false}, SHIFT(726), + [1920] = {.count = 1, .reusable = false}, SHIFT(727), + [1922] = {.count = 1, .reusable = false}, REDUCE(sym_field_declaration, 3), + [1924] = {.count = 1, .reusable = true}, REDUCE(sym_field_declaration, 3), + [1926] = {.count = 1, .reusable = true}, SHIFT(730), + [1928] = {.count = 1, .reusable = true}, SHIFT(732), + [1930] = {.count = 1, .reusable = false}, SHIFT(732), + [1932] = {.count = 1, .reusable = true}, SHIFT(733), + [1934] = {.count = 1, .reusable = false}, SHIFT(733), + [1936] = {.count = 1, .reusable = true}, REDUCE(sym_function_field_declarator, 2), + [1938] = {.count = 1, .reusable = true}, SHIFT(734), + [1940] = {.count = 1, .reusable = true}, SHIFT(736), + [1942] = {.count = 1, .reusable = false}, SHIFT(737), + [1944] = {.count = 1, .reusable = false}, SHIFT(738), + [1946] = {.count = 1, .reusable = false}, SHIFT(739), + [1948] = {.count = 1, .reusable = false}, SHIFT(740), + [1950] = {.count = 1, .reusable = false}, SHIFT(741), + [1952] = {.count = 1, .reusable = false}, SHIFT(742), + [1954] = {.count = 1, .reusable = false}, SHIFT(743), + [1956] = {.count = 1, .reusable = false}, SHIFT(744), + [1958] = {.count = 1, .reusable = false}, SHIFT(745), + [1960] = {.count = 1, .reusable = false}, SHIFT(746), + [1962] = {.count = 1, .reusable = false}, SHIFT(747), + [1964] = {.count = 1, .reusable = false}, SHIFT(748), + [1966] = {.count = 1, .reusable = false}, SHIFT(749), + [1968] = {.count = 1, .reusable = false}, SHIFT(750), + [1970] = {.count = 1, .reusable = false}, SHIFT(751), + [1972] = {.count = 1, .reusable = false}, SHIFT(752), + [1974] = {.count = 1, .reusable = true}, SHIFT(756), + [1976] = {.count = 1, .reusable = false}, SHIFT(756), + [1978] = {.count = 1, .reusable = false}, SHIFT(753), + [1980] = {.count = 1, .reusable = false}, SHIFT(759), + [1982] = {.count = 1, .reusable = true}, SHIFT(762), + [1984] = {.count = 1, .reusable = true}, SHIFT(763), + [1986] = {.count = 1, .reusable = false}, SHIFT(763), + [1988] = {.count = 1, .reusable = false}, SHIFT(765), + [1990] = {.count = 1, .reusable = false}, SHIFT(766), + [1992] = {.count = 1, .reusable = false}, SHIFT(767), + [1994] = {.count = 1, .reusable = false}, SHIFT(768), + [1996] = {.count = 1, .reusable = false}, SHIFT(769), + [1998] = {.count = 1, .reusable = false}, SHIFT(770), + [2000] = {.count = 1, .reusable = false}, SHIFT(771), + [2002] = {.count = 1, .reusable = false}, SHIFT(773), + [2004] = {.count = 1, .reusable = true}, SHIFT(775), + [2006] = {.count = 1, .reusable = false}, SHIFT(776), + [2008] = {.count = 1, .reusable = true}, SHIFT(782), + [2010] = {.count = 1, .reusable = false}, SHIFT(782), + [2012] = {.count = 1, .reusable = true}, SHIFT(783), + [2014] = {.count = 1, .reusable = true}, SHIFT(786), + [2016] = {.count = 1, .reusable = true}, SHIFT(787), + [2018] = {.count = 1, .reusable = true}, SHIFT(788), + [2020] = {.count = 1, .reusable = true}, SHIFT(789), + [2022] = {.count = 1, .reusable = true}, SHIFT(791), + [2024] = {.count = 1, .reusable = false}, SHIFT(791), + [2026] = {.count = 1, .reusable = false}, SHIFT(790), + [2028] = {.count = 1, .reusable = true}, REDUCE(sym_return_statement, 2), + [2030] = {.count = 1, .reusable = false}, REDUCE(sym_return_statement, 2), + [2032] = {.count = 1, .reusable = true}, SHIFT(792), + [2034] = {.count = 1, .reusable = true}, REDUCE(sym_break_statement, 2), + [2036] = {.count = 1, .reusable = false}, REDUCE(sym_break_statement, 2), + [2038] = {.count = 1, .reusable = true}, REDUCE(sym_continue_statement, 2), + [2040] = {.count = 1, .reusable = false}, REDUCE(sym_continue_statement, 2), + [2042] = {.count = 1, .reusable = true}, SHIFT(793), + [2044] = {.count = 1, .reusable = true}, REDUCE(sym_expression_statement, 2), + [2046] = {.count = 1, .reusable = false}, REDUCE(sym_expression_statement, 2), + [2048] = {.count = 1, .reusable = true}, SHIFT(796), + [2050] = {.count = 1, .reusable = false}, SHIFT(796), + [2052] = {.count = 1, .reusable = true}, SHIFT(797), + [2054] = {.count = 1, .reusable = false}, SHIFT(797), + [2056] = {.count = 1, .reusable = true}, SHIFT(798), + [2058] = {.count = 1, .reusable = false}, SHIFT(798), + [2060] = {.count = 1, .reusable = true}, SHIFT(799), + [2062] = {.count = 1, .reusable = false}, SHIFT(799), + [2064] = {.count = 1, .reusable = true}, SHIFT(800), + [2066] = {.count = 1, .reusable = false}, SHIFT(800), + [2068] = {.count = 1, .reusable = true}, SHIFT(801), + [2070] = {.count = 1, .reusable = false}, SHIFT(801), + [2072] = {.count = 1, .reusable = true}, SHIFT(802), + [2074] = {.count = 1, .reusable = false}, SHIFT(802), + [2076] = {.count = 1, .reusable = true}, SHIFT(803), + [2078] = {.count = 1, .reusable = false}, SHIFT(803), + [2080] = {.count = 1, .reusable = true}, SHIFT(804), + [2082] = {.count = 1, .reusable = false}, SHIFT(804), + [2084] = {.count = 1, .reusable = true}, SHIFT(805), + [2086] = {.count = 1, .reusable = false}, SHIFT(805), + [2088] = {.count = 1, .reusable = true}, SHIFT(806), + [2090] = {.count = 1, .reusable = false}, SHIFT(806), + [2092] = {.count = 1, .reusable = true}, SHIFT(807), + [2094] = {.count = 1, .reusable = false}, SHIFT(807), + [2096] = {.count = 1, .reusable = true}, REDUCE(sym_compound_statement, 3), + [2098] = {.count = 1, .reusable = false}, REDUCE(sym_compound_statement, 3), + [2100] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(349), + [2103] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(2), + [2106] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(3), + [2109] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(350), + [2112] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(351), + [2115] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(6), + [2118] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(7), + [2121] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(11), + [2124] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(196), + [2127] = {.count = 1, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), + [2129] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(353), + [2132] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(354), + [2135] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(12), + [2138] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(31), + [2141] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(25), + [2144] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(13), + [2147] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(14), + [2150] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(15), + [2153] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(355), + [2156] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(356), + [2159] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(357), + [2162] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(358), + [2165] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(359), + [2168] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(360), + [2171] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(361), + [2174] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(362), + [2177] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(363), + [2180] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(364), + [2183] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(365), + [2186] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(366), + [2189] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(367), + [2192] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(368), + [2195] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(368), + [2198] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(369), + [2201] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(372), + [2204] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(20), + [2207] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(21), + [2210] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(372), + [2213] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(370), + [2216] = {.count = 1, .reusable = true}, REDUCE(sym_array_declarator, 4), + [2218] = {.count = 1, .reusable = true}, SHIFT(809), + [2220] = {.count = 1, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), + [2222] = {.count = 1, .reusable = true}, REDUCE(sym_argument_list, 4), + [2224] = {.count = 1, .reusable = false}, REDUCE(sym_argument_list, 4), + [2226] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(383), + [2229] = {.count = 1, .reusable = true}, SHIFT(810), + [2231] = {.count = 1, .reusable = true}, SHIFT(811), + [2233] = {.count = 1, .reusable = true}, SHIFT(812), + [2235] = {.count = 1, .reusable = true}, SHIFT(813), + [2237] = {.count = 1, .reusable = true}, REDUCE(aux_sym_preproc_params_repeat1, 2), + [2239] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_params, 4), + [2241] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_params_repeat1, 2), SHIFT_REPEAT(420), + [2244] = {.count = 1, .reusable = true}, SHIFT(814), + [2246] = {.count = 1, .reusable = true}, SHIFT(815), + [2248] = {.count = 1, .reusable = true}, SHIFT(816), + [2250] = {.count = 1, .reusable = false}, SHIFT(817), + [2252] = {.count = 1, .reusable = true}, SHIFT(818), + [2254] = {.count = 1, .reusable = false}, SHIFT(819), + [2256] = {.count = 1, .reusable = false}, SHIFT(820), + [2258] = {.count = 1, .reusable = true}, SHIFT(821), + [2260] = {.count = 1, .reusable = false}, SHIFT(821), + [2262] = {.count = 1, .reusable = true}, SHIFT(823), + [2264] = {.count = 1, .reusable = false}, SHIFT(823), + [2266] = {.count = 1, .reusable = true}, SHIFT(825), + [2268] = {.count = 1, .reusable = true}, SHIFT(827), + [2270] = {.count = 1, .reusable = true}, SHIFT(829), + [2272] = {.count = 1, .reusable = true}, SHIFT(831), + [2274] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_elif, 4), + [2276] = {.count = 1, .reusable = true}, SHIFT(832), + [2278] = {.count = 1, .reusable = true}, SHIFT(833), + [2280] = {.count = 1, .reusable = true}, SHIFT(834), + [2282] = {.count = 1, .reusable = true}, REDUCE(sym_array_type_declarator, 4), + [2284] = {.count = 1, .reusable = true}, SHIFT(835), + [2286] = {.count = 1, .reusable = true}, REDUCE(aux_sym_parameter_list_repeat1, 2), + [2288] = {.count = 1, .reusable = true}, REDUCE(sym_parameter_list, 4), + [2290] = {.count = 2, .reusable = true}, REDUCE(aux_sym_parameter_list_repeat1, 2), SHIFT_REPEAT(476), + [2293] = {.count = 2, .reusable = true}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .alias_sequence_id = 1), + [2296] = {.count = 3, .reusable = true}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .alias_sequence_id = 1), SHIFT(75), + [2300] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_array_declarator, 4), + [2302] = {.count = 1, .reusable = true}, SHIFT(838), + [2304] = {.count = 1, .reusable = true}, REDUCE(sym_conditional_expression, 5), + [2306] = {.count = 1, .reusable = true}, REDUCE(sym_initializer_list, 3), + [2308] = {.count = 1, .reusable = false}, REDUCE(sym_initializer_list, 3), + [2310] = {.count = 1, .reusable = true}, SHIFT(839), + [2312] = {.count = 1, .reusable = true}, SHIFT(840), + [2314] = {.count = 1, .reusable = true}, REDUCE(sym_field_designator, 2, .alias_sequence_id = 5), + [2316] = {.count = 1, .reusable = true}, SHIFT(842), + [2318] = {.count = 1, .reusable = true}, SHIFT(843), + [2320] = {.count = 1, .reusable = false}, SHIFT(843), + [2322] = {.count = 1, .reusable = true}, SHIFT(845), + [2324] = {.count = 1, .reusable = false}, SHIFT(845), + [2326] = {.count = 1, .reusable = true}, SHIFT(846), + [2328] = {.count = 1, .reusable = false}, SHIFT(846), + [2330] = {.count = 1, .reusable = true}, SHIFT(847), + [2332] = {.count = 1, .reusable = false}, SHIFT(847), + [2334] = {.count = 1, .reusable = true}, SHIFT(848), + [2336] = {.count = 1, .reusable = false}, SHIFT(848), + [2338] = {.count = 1, .reusable = true}, SHIFT(849), + [2340] = {.count = 1, .reusable = false}, SHIFT(849), + [2342] = {.count = 1, .reusable = true}, SHIFT(850), + [2344] = {.count = 1, .reusable = false}, SHIFT(850), + [2346] = {.count = 1, .reusable = true}, SHIFT(851), + [2348] = {.count = 1, .reusable = false}, SHIFT(851), + [2350] = {.count = 1, .reusable = true}, SHIFT(852), + [2352] = {.count = 1, .reusable = false}, SHIFT(852), + [2354] = {.count = 1, .reusable = true}, SHIFT(853), + [2356] = {.count = 1, .reusable = false}, SHIFT(853), + [2358] = {.count = 1, .reusable = true}, SHIFT(854), + [2360] = {.count = 1, .reusable = false}, SHIFT(854), + [2362] = {.count = 1, .reusable = true}, SHIFT(855), + [2364] = {.count = 1, .reusable = false}, SHIFT(855), + [2366] = {.count = 1, .reusable = true}, SHIFT(856), + [2368] = {.count = 1, .reusable = true}, SHIFT(859), + [2370] = {.count = 1, .reusable = false}, SHIFT(859), + [2372] = {.count = 2, .reusable = true}, REDUCE(aux_sym_initializer_pair_repeat1, 2), SHIFT_REPEAT(500), + [2375] = {.count = 1, .reusable = true}, REDUCE(aux_sym_initializer_pair_repeat1, 2), + [2377] = {.count = 2, .reusable = true}, REDUCE(aux_sym_initializer_pair_repeat1, 2), SHIFT_REPEAT(505), + [2380] = {.count = 1, .reusable = true}, REDUCE(sym_enumerator_list, 5), + [2382] = {.count = 1, .reusable = false}, REDUCE(sym_enumerator_list, 5), + [2384] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_else_in_field_declaration_list, 2), + [2386] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_elif_in_field_declaration_list, 2), + [2388] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if_in_field_declaration_list, 4), + [2390] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if_in_field_declaration_list, 4), + [2392] = {.count = 1, .reusable = true}, SHIFT(864), + [2394] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4), + [2396] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4), + [2398] = {.count = 1, .reusable = true}, SHIFT(865), + [2400] = {.count = 1, .reusable = true}, REDUCE(sym__field_declarator, 3, .dynamic_precedence = -10), + [2402] = {.count = 1, .reusable = true}, REDUCE(sym_pointer_field_declarator, 3, .dynamic_precedence = 1), + [2404] = {.count = 1, .reusable = true}, SHIFT(866), + [2406] = {.count = 1, .reusable = false}, REDUCE(sym_field_declaration, 4), + [2408] = {.count = 1, .reusable = true}, REDUCE(sym_field_declaration, 4), + [2410] = {.count = 1, .reusable = true}, SHIFT(868), + [2412] = {.count = 1, .reusable = false}, SHIFT(868), + [2414] = {.count = 1, .reusable = true}, SHIFT(869), + [2416] = {.count = 1, .reusable = false}, SHIFT(869), + [2418] = {.count = 1, .reusable = true}, SHIFT(870), + [2420] = {.count = 1, .reusable = false}, SHIFT(870), + [2422] = {.count = 1, .reusable = true}, SHIFT(871), + [2424] = {.count = 1, .reusable = false}, SHIFT(871), + [2426] = {.count = 1, .reusable = true}, SHIFT(872), + [2428] = {.count = 1, .reusable = false}, SHIFT(872), + [2430] = {.count = 1, .reusable = true}, SHIFT(873), + [2432] = {.count = 1, .reusable = false}, SHIFT(873), + [2434] = {.count = 1, .reusable = true}, SHIFT(874), + [2436] = {.count = 1, .reusable = false}, SHIFT(874), + [2438] = {.count = 1, .reusable = true}, SHIFT(875), + [2440] = {.count = 1, .reusable = false}, SHIFT(875), + [2442] = {.count = 1, .reusable = true}, SHIFT(876), + [2444] = {.count = 1, .reusable = false}, SHIFT(876), + [2446] = {.count = 1, .reusable = true}, SHIFT(877), + [2448] = {.count = 1, .reusable = false}, SHIFT(877), + [2450] = {.count = 1, .reusable = true}, SHIFT(878), + [2452] = {.count = 1, .reusable = false}, SHIFT(878), + [2454] = {.count = 1, .reusable = true}, REDUCE(aux_sym_field_declaration_repeat1, 2), + [2456] = {.count = 1, .reusable = true}, REDUCE(sym_array_field_declarator, 3), + [2458] = {.count = 1, .reusable = true}, SHIFT(880), + [2460] = {.count = 1, .reusable = true}, SHIFT(881), + [2462] = {.count = 1, .reusable = false}, SHIFT(881), + [2464] = {.count = 1, .reusable = true}, SHIFT(882), + [2466] = {.count = 1, .reusable = true}, SHIFT(883), + [2468] = {.count = 1, .reusable = false}, SHIFT(883), + [2470] = {.count = 2, .reusable = true}, REDUCE(aux_sym_field_declaration_repeat1, 2), SHIFT_REPEAT(536), + [2473] = {.count = 1, .reusable = false}, SHIFT(884), + [2475] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if_in_compound_statement, 3), + [2477] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if_in_compound_statement, 3), + [2479] = {.count = 1, .reusable = true}, SHIFT(885), + [2481] = {.count = 1, .reusable = true}, SHIFT(886), + [2483] = {.count = 1, .reusable = false}, SHIFT(887), + [2485] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_else_in_compound_statement, 1), + [2487] = {.count = 1, .reusable = false}, SHIFT(888), + [2489] = {.count = 1, .reusable = false}, SHIFT(889), + [2491] = {.count = 1, .reusable = false}, SHIFT(890), + [2493] = {.count = 1, .reusable = false}, SHIFT(891), + [2495] = {.count = 1, .reusable = false}, SHIFT(892), + [2497] = {.count = 1, .reusable = false}, SHIFT(893), + [2499] = {.count = 1, .reusable = false}, SHIFT(894), + [2501] = {.count = 1, .reusable = false}, SHIFT(895), + [2503] = {.count = 1, .reusable = false}, SHIFT(896), + [2505] = {.count = 1, .reusable = false}, SHIFT(897), + [2507] = {.count = 1, .reusable = false}, SHIFT(898), + [2509] = {.count = 1, .reusable = false}, SHIFT(899), + [2511] = {.count = 1, .reusable = true}, SHIFT(902), + [2513] = {.count = 1, .reusable = false}, SHIFT(902), + [2515] = {.count = 1, .reusable = false}, SHIFT(900), + [2517] = {.count = 1, .reusable = false}, SHIFT(905), + [2519] = {.count = 1, .reusable = true}, SHIFT(908), + [2521] = {.count = 1, .reusable = false}, SHIFT(908), + [2523] = {.count = 1, .reusable = true}, SHIFT(909), + [2525] = {.count = 1, .reusable = true}, SHIFT(912), + [2527] = {.count = 1, .reusable = true}, SHIFT(913), + [2529] = {.count = 1, .reusable = true}, SHIFT(914), + [2531] = {.count = 1, .reusable = false}, SHIFT(914), + [2533] = {.count = 1, .reusable = true}, SHIFT(915), + [2535] = {.count = 1, .reusable = true}, SHIFT(916), + [2537] = {.count = 1, .reusable = true}, SHIFT(917), + [2539] = {.count = 1, .reusable = true}, SHIFT(918), + [2541] = {.count = 1, .reusable = true}, SHIFT(919), + [2543] = {.count = 1, .reusable = true}, SHIFT(920), + [2545] = {.count = 1, .reusable = true}, SHIFT(921), + [2547] = {.count = 1, .reusable = false}, SHIFT(919), + [2549] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_compound_statement, 3), + [2551] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_compound_statement, 3), + [2553] = {.count = 1, .reusable = true}, SHIFT(924), + [2555] = {.count = 1, .reusable = false}, SHIFT(924), + [2557] = {.count = 1, .reusable = true}, SHIFT(926), + [2559] = {.count = 1, .reusable = true}, SHIFT(929), + [2561] = {.count = 1, .reusable = false}, SHIFT(929), + [2563] = {.count = 1, .reusable = true}, SHIFT(930), + [2565] = {.count = 1, .reusable = true}, SHIFT(932), + [2567] = {.count = 1, .reusable = true}, SHIFT(933), + [2569] = {.count = 1, .reusable = true}, REDUCE(sym_if_statement, 3), + [2571] = {.count = 1, .reusable = false}, REDUCE(sym_if_statement, 3), + [2573] = {.count = 1, .reusable = false}, SHIFT(934), + [2575] = {.count = 1, .reusable = true}, REDUCE(sym_switch_statement, 3), + [2577] = {.count = 1, .reusable = false}, REDUCE(sym_switch_statement, 3), + [2579] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 3), + [2581] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 3), + [2583] = {.count = 1, .reusable = true}, REDUCE(sym_while_statement, 3), + [2585] = {.count = 1, .reusable = false}, REDUCE(sym_while_statement, 3), + [2587] = {.count = 1, .reusable = false}, SHIFT(936), + [2589] = {.count = 1, .reusable = false}, SHIFT(937), + [2591] = {.count = 1, .reusable = false}, SHIFT(938), + [2593] = {.count = 1, .reusable = false}, SHIFT(939), + [2595] = {.count = 1, .reusable = false}, SHIFT(940), + [2597] = {.count = 1, .reusable = false}, SHIFT(941), + [2599] = {.count = 1, .reusable = false}, SHIFT(942), + [2601] = {.count = 1, .reusable = true}, SHIFT(944), + [2603] = {.count = 1, .reusable = false}, SHIFT(945), + [2605] = {.count = 1, .reusable = true}, SHIFT(946), + [2607] = {.count = 1, .reusable = true}, SHIFT(947), + [2609] = {.count = 1, .reusable = true}, SHIFT(948), + [2611] = {.count = 1, .reusable = false}, SHIFT(948), + [2613] = {.count = 1, .reusable = true}, SHIFT(950), + [2615] = {.count = 1, .reusable = true}, SHIFT(951), + [2617] = {.count = 1, .reusable = false}, SHIFT(951), + [2619] = {.count = 1, .reusable = true}, SHIFT(952), + [2621] = {.count = 1, .reusable = true}, REDUCE(sym_return_statement, 3), + [2623] = {.count = 1, .reusable = false}, REDUCE(sym_return_statement, 3), + [2625] = {.count = 1, .reusable = true}, REDUCE(sym_goto_statement, 3, .alias_sequence_id = 6), + [2627] = {.count = 1, .reusable = false}, REDUCE(sym_goto_statement, 3, .alias_sequence_id = 6), + [2629] = {.count = 1, .reusable = true}, SHIFT(953), + [2631] = {.count = 1, .reusable = true}, REDUCE(sym_labeled_statement, 3, .alias_sequence_id = 7), + [2633] = {.count = 1, .reusable = false}, REDUCE(sym_labeled_statement, 3, .alias_sequence_id = 7), + [2635] = {.count = 1, .reusable = true}, SHIFT(954), + [2637] = {.count = 1, .reusable = true}, REDUCE(sym_array_declarator, 5), + [2639] = {.count = 1, .reusable = false}, SHIFT(208), + [2641] = {.count = 1, .reusable = false}, SHIFT(209), + [2643] = {.count = 1, .reusable = true}, SHIFT(955), + [2645] = {.count = 1, .reusable = false}, SHIFT(955), + [2647] = {.count = 1, .reusable = false}, SHIFT(217), + [2649] = {.count = 1, .reusable = false}, SHIFT(218), + [2651] = {.count = 1, .reusable = true}, SHIFT(956), + [2653] = {.count = 1, .reusable = false}, SHIFT(956), + [2655] = {.count = 1, .reusable = true}, SHIFT(957), + [2657] = {.count = 1, .reusable = true}, SHIFT(958), + [2659] = {.count = 1, .reusable = true}, SHIFT(959), + [2661] = {.count = 1, .reusable = true}, SHIFT(960), + [2663] = {.count = 1, .reusable = true}, SHIFT(961), + [2665] = {.count = 1, .reusable = true}, SHIFT(962), + [2667] = {.count = 1, .reusable = true}, REDUCE(sym_array_type_declarator, 5), + [2669] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_array_declarator, 5), + [2671] = {.count = 1, .reusable = true}, REDUCE(sym_subscript_designator, 3), + [2673] = {.count = 1, .reusable = true}, SHIFT(964), + [2675] = {.count = 1, .reusable = true}, REDUCE(sym_initializer_list, 4), + [2677] = {.count = 1, .reusable = false}, REDUCE(sym_initializer_list, 4), + [2679] = {.count = 1, .reusable = true}, REDUCE(aux_sym_initializer_list_repeat1, 2), + [2681] = {.count = 1, .reusable = true}, SHIFT(965), + [2683] = {.count = 1, .reusable = true}, SHIFT(966), + [2685] = {.count = 2, .reusable = true}, REDUCE(aux_sym_initializer_list_repeat1, 2), SHIFT_REPEAT(967), + [2688] = {.count = 1, .reusable = true}, REDUCE(sym_initializer_pair, 3), + [2690] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_elif_in_field_declaration_list, 3), + [2692] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if_in_field_declaration_list, 5), + [2694] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if_in_field_declaration_list, 5), + [2696] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5), + [2698] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5), + [2700] = {.count = 1, .reusable = true}, SHIFT(969), + [2702] = {.count = 1, .reusable = true}, SHIFT(970), + [2704] = {.count = 1, .reusable = true}, REDUCE(sym_array_field_declarator, 4), + [2706] = {.count = 1, .reusable = true}, SHIFT(971), + [2708] = {.count = 1, .reusable = false}, REDUCE(sym_field_declaration, 5), + [2710] = {.count = 1, .reusable = true}, REDUCE(sym_field_declaration, 5), + [2712] = {.count = 1, .reusable = true}, SHIFT(972), + [2714] = {.count = 1, .reusable = false}, SHIFT(973), + [2716] = {.count = 1, .reusable = false}, SHIFT(976), + [2718] = {.count = 1, .reusable = false}, SHIFT(979), + [2720] = {.count = 1, .reusable = true}, SHIFT(980), + [2722] = {.count = 1, .reusable = true}, SHIFT(983), + [2724] = {.count = 1, .reusable = false}, SHIFT(983), + [2726] = {.count = 1, .reusable = true}, SHIFT(984), + [2728] = {.count = 1, .reusable = true}, SHIFT(987), + [2730] = {.count = 1, .reusable = true}, SHIFT(988), + [2732] = {.count = 1, .reusable = true}, SHIFT(989), + [2734] = {.count = 1, .reusable = false}, SHIFT(989), + [2736] = {.count = 1, .reusable = true}, SHIFT(990), + [2738] = {.count = 1, .reusable = true}, SHIFT(991), + [2740] = {.count = 1, .reusable = true}, SHIFT(992), + [2742] = {.count = 1, .reusable = true}, SHIFT(993), + [2744] = {.count = 1, .reusable = true}, SHIFT(994), + [2746] = {.count = 1, .reusable = true}, SHIFT(995), + [2748] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_else_in_compound_statement, 2), + [2750] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_elif_in_compound_statement, 2), + [2752] = {.count = 1, .reusable = false}, SHIFT(999), + [2754] = {.count = 1, .reusable = false}, SHIFT(1000), + [2756] = {.count = 1, .reusable = false}, SHIFT(1001), + [2758] = {.count = 1, .reusable = false}, SHIFT(1002), + [2760] = {.count = 1, .reusable = false}, SHIFT(1003), + [2762] = {.count = 1, .reusable = false}, SHIFT(1004), + [2764] = {.count = 1, .reusable = false}, SHIFT(1005), + [2766] = {.count = 1, .reusable = false}, SHIFT(1007), + [2768] = {.count = 1, .reusable = true}, SHIFT(1009), + [2770] = {.count = 1, .reusable = false}, SHIFT(1010), + [2772] = {.count = 1, .reusable = true}, SHIFT(1014), + [2774] = {.count = 1, .reusable = true}, SHIFT(1015), + [2776] = {.count = 1, .reusable = true}, SHIFT(1016), + [2778] = {.count = 1, .reusable = false}, SHIFT(1016), + [2780] = {.count = 1, .reusable = true}, SHIFT(1017), + [2782] = {.count = 1, .reusable = true}, SHIFT(1018), + [2784] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if_in_compound_statement, 4), + [2786] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if_in_compound_statement, 4), + [2788] = {.count = 1, .reusable = true}, SHIFT(1020), + [2790] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(736), + [2793] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(113), + [2796] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(114), + [2799] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(737), + [2802] = {.count = 1, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), + [2804] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(739), + [2807] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(120), + [2810] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(121), + [2813] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(459), + [2816] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(742), + [2819] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(743), + [2822] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(744), + [2825] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(745), + [2828] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(746), + [2831] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(747), + [2834] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(748), + [2837] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(749), + [2840] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(750), + [2843] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(751), + [2846] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(752), + [2849] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(756), + [2852] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(756), + [2855] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(753), + [2858] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_compound_statement, 4), + [2860] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_compound_statement, 4), + [2862] = {.count = 1, .reusable = true}, SHIFT(1021), + [2864] = {.count = 1, .reusable = true}, SHIFT(1023), + [2866] = {.count = 1, .reusable = false}, SHIFT(1024), + [2868] = {.count = 1, .reusable = true}, SHIFT(1025), + [2870] = {.count = 1, .reusable = true}, SHIFT(1026), + [2872] = {.count = 1, .reusable = false}, SHIFT(1026), + [2874] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 4), + [2876] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 4), + [2878] = {.count = 1, .reusable = true}, SHIFT(1030), + [2880] = {.count = 1, .reusable = false}, SHIFT(1030), + [2882] = {.count = 1, .reusable = true}, SHIFT(1031), + [2884] = {.count = 1, .reusable = true}, SHIFT(1033), + [2886] = {.count = 1, .reusable = true}, SHIFT(1034), + [2888] = {.count = 1, .reusable = true}, SHIFT(1035), + [2890] = {.count = 1, .reusable = true}, SHIFT(1036), + [2892] = {.count = 1, .reusable = true}, SHIFT(1037), + [2894] = {.count = 1, .reusable = true}, SHIFT(1038), + [2896] = {.count = 1, .reusable = false}, SHIFT(1038), + [2898] = {.count = 1, .reusable = true}, SHIFT(1039), + [2900] = {.count = 1, .reusable = true}, REDUCE(sym_do_statement, 4), + [2902] = {.count = 1, .reusable = false}, REDUCE(sym_do_statement, 4), + [2904] = {.count = 1, .reusable = true}, SHIFT(1040), + [2906] = {.count = 1, .reusable = true}, SHIFT(1041), + [2908] = {.count = 1, .reusable = false}, SHIFT(1041), + [2910] = {.count = 1, .reusable = true}, SHIFT(1042), + [2912] = {.count = 1, .reusable = true}, SHIFT(1043), + [2914] = {.count = 1, .reusable = false}, SHIFT(1043), + [2916] = {.count = 1, .reusable = false}, SHIFT(354), + [2918] = {.count = 1, .reusable = false}, SHIFT(366), + [2920] = {.count = 1, .reusable = true}, SHIFT(1044), + [2922] = {.count = 1, .reusable = false}, SHIFT(1044), + [2924] = {.count = 1, .reusable = false}, SHIFT(499), + [2926] = {.count = 1, .reusable = false}, SHIFT(501), + [2928] = {.count = 1, .reusable = true}, SHIFT(1045), + [2930] = {.count = 1, .reusable = false}, SHIFT(1045), + [2932] = {.count = 1, .reusable = true}, REDUCE(sym_initializer_list, 5), + [2934] = {.count = 1, .reusable = false}, REDUCE(sym_initializer_list, 5), + [2936] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_elif_in_field_declaration_list, 4), + [2938] = {.count = 1, .reusable = false}, SHIFT(528), + [2940] = {.count = 1, .reusable = false}, SHIFT(529), + [2942] = {.count = 1, .reusable = true}, SHIFT(1046), + [2944] = {.count = 1, .reusable = false}, SHIFT(1046), + [2946] = {.count = 1, .reusable = true}, REDUCE(sym_array_field_declarator, 5), + [2948] = {.count = 1, .reusable = false}, REDUCE(sym_field_declaration, 6), + [2950] = {.count = 1, .reusable = true}, REDUCE(sym_field_declaration, 6), + [2952] = {.count = 1, .reusable = true}, SHIFT(1047), + [2954] = {.count = 1, .reusable = false}, SHIFT(1047), + [2956] = {.count = 1, .reusable = true}, SHIFT(1049), + [2958] = {.count = 1, .reusable = false}, SHIFT(1049), + [2960] = {.count = 1, .reusable = false}, SHIFT(1051), + [2962] = {.count = 1, .reusable = false}, SHIFT(1054), [2964] = {.count = 1, .reusable = false}, SHIFT(1057), - [2966] = {.count = 1, .reusable = true}, SHIFT(1058), - [2968] = {.count = 1, .reusable = true}, SHIFT(1059), - [2970] = {.count = 1, .reusable = false}, SHIFT(1059), - [2972] = {.count = 1, .reusable = true}, SHIFT(1061), - [2974] = {.count = 1, .reusable = true}, SHIFT(1063), + [2966] = {.count = 1, .reusable = false}, SHIFT(1058), + [2968] = {.count = 1, .reusable = false}, SHIFT(1059), + [2970] = {.count = 1, .reusable = false}, SHIFT(1060), + [2972] = {.count = 1, .reusable = false}, SHIFT(1061), + [2974] = {.count = 1, .reusable = false}, SHIFT(1062), [2976] = {.count = 1, .reusable = false}, SHIFT(1063), - [2978] = {.count = 1, .reusable = true}, SHIFT(1064), - [2980] = {.count = 1, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), - [2982] = {.count = 1, .reusable = true}, REDUCE(sym_argument_list, 4), - [2984] = {.count = 1, .reusable = false}, REDUCE(sym_argument_list, 4), - [2986] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(883), - [2989] = {.count = 1, .reusable = true}, REDUCE(sym_conditional_expression, 5), - [2991] = {.count = 1, .reusable = true}, REDUCE(sym_initializer_list, 5), - [2993] = {.count = 1, .reusable = false}, REDUCE(sym_initializer_list, 5), - [2995] = {.count = 1, .reusable = true}, SHIFT(1065), - [2997] = {.count = 1, .reusable = true}, SHIFT(1066), - [2999] = {.count = 1, .reusable = true}, SHIFT(1067), - [3001] = {.count = 1, .reusable = false}, SHIFT(1067), - [3003] = {.count = 1, .reusable = true}, SHIFT(1069), - [3005] = {.count = 1, .reusable = false}, SHIFT(1069), - [3007] = {.count = 1, .reusable = true}, SHIFT(1073), - [3009] = {.count = 1, .reusable = false}, SHIFT(1073), - [3011] = {.count = 1, .reusable = true}, SHIFT(1074), - [3013] = {.count = 1, .reusable = true}, SHIFT(1076), - [3015] = {.count = 1, .reusable = true}, SHIFT(1077), - [3017] = {.count = 1, .reusable = false}, SHIFT(1078), - [3019] = {.count = 1, .reusable = true}, SHIFT(1080), - [3021] = {.count = 1, .reusable = true}, SHIFT(1082), - [3023] = {.count = 1, .reusable = true}, SHIFT(1083), - [3025] = {.count = 1, .reusable = false}, SHIFT(1083), - [3027] = {.count = 1, .reusable = true}, SHIFT(1084), - [3029] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_elif_in_compound_statement, 4), - [3031] = {.count = 1, .reusable = true}, SHIFT(1086), - [3033] = {.count = 1, .reusable = false}, SHIFT(1087), - [3035] = {.count = 1, .reusable = true}, SHIFT(1088), - [3037] = {.count = 1, .reusable = true}, SHIFT(1089), - [3039] = {.count = 1, .reusable = false}, SHIFT(1089), - [3041] = {.count = 1, .reusable = true}, SHIFT(1091), - [3043] = {.count = 1, .reusable = false}, SHIFT(1091), - [3045] = {.count = 1, .reusable = true}, SHIFT(1093), - [3047] = {.count = 1, .reusable = true}, SHIFT(1094), - [3049] = {.count = 1, .reusable = false}, SHIFT(1094), - [3051] = {.count = 1, .reusable = true}, SHIFT(1095), - [3053] = {.count = 1, .reusable = true}, SHIFT(1096), - [3055] = {.count = 1, .reusable = false}, SHIFT(1096), - [3057] = {.count = 1, .reusable = true}, SHIFT(1097), - [3059] = {.count = 1, .reusable = true}, SHIFT(1098), - [3061] = {.count = 1, .reusable = false}, SHIFT(1098), - [3063] = {.count = 1, .reusable = true}, SHIFT(1099), - [3065] = {.count = 1, .reusable = true}, SHIFT(1100), - [3067] = {.count = 1, .reusable = false}, SHIFT(1100), - [3069] = {.count = 1, .reusable = true}, SHIFT(1101), - [3071] = {.count = 1, .reusable = true}, SHIFT(1102), - [3073] = {.count = 1, .reusable = true}, SHIFT(1103), - [3075] = {.count = 1, .reusable = false}, SHIFT(1103), - [3077] = {.count = 1, .reusable = true}, SHIFT(1104), - [3079] = {.count = 1, .reusable = true}, SHIFT(1105), - [3081] = {.count = 1, .reusable = true}, SHIFT(1107), - [3083] = {.count = 1, .reusable = false}, SHIFT(1107), - [3085] = {.count = 1, .reusable = true}, SHIFT(1108), - [3087] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 6), - [3089] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 6), - [3091] = {.count = 1, .reusable = true}, SHIFT(1110), - [3093] = {.count = 1, .reusable = true}, SHIFT(1112), - [3095] = {.count = 1, .reusable = false}, SHIFT(1112), - [3097] = {.count = 1, .reusable = true}, SHIFT(1113), - [3099] = {.count = 1, .reusable = true}, SHIFT(1114), - [3101] = {.count = 1, .reusable = true}, SHIFT(1116), - [3103] = {.count = 1, .reusable = false}, SHIFT(1117), - [3105] = {.count = 1, .reusable = true}, SHIFT(1118), - [3107] = {.count = 1, .reusable = true}, SHIFT(1119), - [3109] = {.count = 1, .reusable = false}, SHIFT(1119), - [3111] = {.count = 1, .reusable = true}, SHIFT(1121), - [3113] = {.count = 1, .reusable = false}, SHIFT(1121), - [3115] = {.count = 1, .reusable = true}, SHIFT(1123), - [3117] = {.count = 1, .reusable = true}, SHIFT(1124), - [3119] = {.count = 1, .reusable = false}, SHIFT(1124), - [3121] = {.count = 1, .reusable = true}, SHIFT(1125), - [3123] = {.count = 1, .reusable = true}, SHIFT(1126), - [3125] = {.count = 1, .reusable = false}, SHIFT(1126), - [3127] = {.count = 1, .reusable = false}, SHIFT(1127), - [3129] = {.count = 1, .reusable = true}, SHIFT(1128), - [3131] = {.count = 1, .reusable = true}, SHIFT(1129), - [3133] = {.count = 1, .reusable = false}, SHIFT(1129), - [3135] = {.count = 1, .reusable = true}, SHIFT(1130), - [3137] = {.count = 1, .reusable = true}, SHIFT(1131), - [3139] = {.count = 1, .reusable = true}, SHIFT(1133), - [3141] = {.count = 1, .reusable = true}, SHIFT(1135), - [3143] = {.count = 1, .reusable = false}, SHIFT(1135), - [3145] = {.count = 1, .reusable = true}, SHIFT(1136), - [3147] = {.count = 1, .reusable = true}, SHIFT(1137), - [3149] = {.count = 1, .reusable = true}, SHIFT(1139), - [3151] = {.count = 1, .reusable = false}, SHIFT(1139), - [3153] = {.count = 1, .reusable = true}, SHIFT(1140), - [3155] = {.count = 1, .reusable = true}, SHIFT(1141), - [3157] = {.count = 1, .reusable = true}, SHIFT(1142), - [3159] = {.count = 1, .reusable = false}, SHIFT(1142), - [3161] = {.count = 1, .reusable = true}, SHIFT(1143), - [3163] = {.count = 1, .reusable = true}, SHIFT(1144), - [3165] = {.count = 1, .reusable = false}, SHIFT(1144), - [3167] = {.count = 1, .reusable = true}, SHIFT(1145), - [3169] = {.count = 1, .reusable = true}, SHIFT(1147), - [3171] = {.count = 1, .reusable = false}, SHIFT(1147), - [3173] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 7), - [3175] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 7), - [3177] = {.count = 1, .reusable = true}, SHIFT(1149), - [3179] = {.count = 1, .reusable = false}, SHIFT(1151), - [3181] = {.count = 1, .reusable = true}, SHIFT(1152), - [3183] = {.count = 1, .reusable = true}, SHIFT(1153), - [3185] = {.count = 1, .reusable = false}, SHIFT(1153), - [3187] = {.count = 1, .reusable = true}, SHIFT(1154), - [3189] = {.count = 1, .reusable = true}, SHIFT(1155), - [3191] = {.count = 1, .reusable = true}, SHIFT(1157), - [3193] = {.count = 1, .reusable = true}, SHIFT(1159), - [3195] = {.count = 1, .reusable = false}, SHIFT(1159), - [3197] = {.count = 1, .reusable = true}, SHIFT(1160), - [3199] = {.count = 1, .reusable = true}, SHIFT(1161), - [3201] = {.count = 1, .reusable = true}, SHIFT(1162), - [3203] = {.count = 1, .reusable = false}, SHIFT(1162), - [3205] = {.count = 1, .reusable = true}, SHIFT(1163), - [3207] = {.count = 1, .reusable = true}, SHIFT(1164), - [3209] = {.count = 1, .reusable = false}, SHIFT(1164), - [3211] = {.count = 1, .reusable = true}, SHIFT(1166), - [3213] = {.count = 1, .reusable = true}, SHIFT(1168), - [3215] = {.count = 1, .reusable = false}, SHIFT(1168), - [3217] = {.count = 1, .reusable = true}, SHIFT(1169), - [3219] = {.count = 1, .reusable = true}, SHIFT(1171), - [3221] = {.count = 1, .reusable = false}, SHIFT(1171), - [3223] = {.count = 1, .reusable = true}, SHIFT(1172), - [3225] = {.count = 1, .reusable = true}, SHIFT(1174), - [3227] = {.count = 1, .reusable = false}, SHIFT(1174), - [3229] = {.count = 1, .reusable = true}, SHIFT(1175), - [3231] = {.count = 1, .reusable = true}, SHIFT(1176), - [3233] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 8), - [3235] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 8), - [3237] = {.count = 1, .reusable = true}, SHIFT(1179), - [3239] = {.count = 1, .reusable = true}, SHIFT(1180), - [3241] = {.count = 1, .reusable = true}, SHIFT(1181), - [3243] = {.count = 1, .reusable = false}, SHIFT(1181), - [3245] = {.count = 1, .reusable = true}, SHIFT(1182), - [3247] = {.count = 1, .reusable = true}, SHIFT(1183), - [3249] = {.count = 1, .reusable = false}, SHIFT(1183), - [3251] = {.count = 1, .reusable = true}, SHIFT(1185), - [3253] = {.count = 1, .reusable = true}, SHIFT(1187), - [3255] = {.count = 1, .reusable = false}, SHIFT(1187), - [3257] = {.count = 1, .reusable = true}, SHIFT(1188), - [3259] = {.count = 1, .reusable = true}, SHIFT(1190), - [3261] = {.count = 1, .reusable = false}, SHIFT(1190), - [3263] = {.count = 1, .reusable = true}, SHIFT(1191), - [3265] = {.count = 1, .reusable = true}, SHIFT(1193), - [3267] = {.count = 1, .reusable = true}, SHIFT(1195), - [3269] = {.count = 1, .reusable = true}, SHIFT(1197), - [3271] = {.count = 1, .reusable = true}, SHIFT(1199), - [3273] = {.count = 1, .reusable = false}, SHIFT(1199), - [3275] = {.count = 1, .reusable = true}, SHIFT(1200), - [3277] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 9), - [3279] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 9), - [3281] = {.count = 1, .reusable = true}, SHIFT(1202), - [3283] = {.count = 1, .reusable = true}, SHIFT(1204), - [3285] = {.count = 1, .reusable = false}, SHIFT(1204), - [3287] = {.count = 1, .reusable = true}, SHIFT(1205), - [3289] = {.count = 1, .reusable = true}, SHIFT(1207), - [3291] = {.count = 1, .reusable = true}, SHIFT(1209), - [3293] = {.count = 1, .reusable = true}, SHIFT(1211), - [3295] = {.count = 1, .reusable = false}, SHIFT(1211), - [3297] = {.count = 1, .reusable = true}, SHIFT(1213), - [3299] = {.count = 1, .reusable = true}, SHIFT(1214), - [3301] = {.count = 1, .reusable = true}, SHIFT(1215), - [3303] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 10), - [3305] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 10), - [3307] = {.count = 1, .reusable = true}, SHIFT(1217), - [3309] = {.count = 1, .reusable = true}, SHIFT(1219), - [3311] = {.count = 1, .reusable = false}, SHIFT(1219), - [3313] = {.count = 1, .reusable = true}, SHIFT(1221), - [3315] = {.count = 1, .reusable = true}, SHIFT(1222), - [3317] = {.count = 1, .reusable = true}, SHIFT(1225), - [3319] = {.count = 1, .reusable = true}, SHIFT(1226), - [3321] = {.count = 1, .reusable = true}, SHIFT(1229), - [3323] = {.count = 1, .reusable = true}, SHIFT(1230), + [2978] = {.count = 1, .reusable = false}, SHIFT(1065), + [2980] = {.count = 1, .reusable = true}, SHIFT(1067), + [2982] = {.count = 1, .reusable = false}, SHIFT(1068), + [2984] = {.count = 1, .reusable = true}, SHIFT(1072), + [2986] = {.count = 1, .reusable = true}, SHIFT(1073), + [2988] = {.count = 1, .reusable = true}, SHIFT(1074), + [2990] = {.count = 1, .reusable = false}, SHIFT(1074), + [2992] = {.count = 1, .reusable = true}, SHIFT(1075), + [2994] = {.count = 1, .reusable = true}, SHIFT(1076), + [2996] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(886), + [2999] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(247), + [3002] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(248), + [3005] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(887), + [3008] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(888), + [3011] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(251), + [3014] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(252), + [3017] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(651), + [3020] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(889), + [3023] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(890), + [3026] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(891), + [3029] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(892), + [3032] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(893), + [3035] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(894), + [3038] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(895), + [3041] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(896), + [3044] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(897), + [3047] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(898), + [3050] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(899), + [3053] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(902), + [3056] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(902), + [3059] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(900), + [3062] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_elif_in_compound_statement, 3), + [3064] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_elif_in_compound_statement, 3), + [3066] = {.count = 1, .reusable = true}, SHIFT(1081), + [3068] = {.count = 1, .reusable = false}, SHIFT(1081), + [3070] = {.count = 1, .reusable = true}, SHIFT(1082), + [3072] = {.count = 1, .reusable = true}, SHIFT(1084), + [3074] = {.count = 1, .reusable = true}, SHIFT(1085), + [3076] = {.count = 1, .reusable = false}, SHIFT(1086), + [3078] = {.count = 1, .reusable = true}, SHIFT(1088), + [3080] = {.count = 1, .reusable = true}, SHIFT(1090), + [3082] = {.count = 1, .reusable = true}, SHIFT(1091), + [3084] = {.count = 1, .reusable = false}, SHIFT(1091), + [3086] = {.count = 1, .reusable = true}, SHIFT(1092), + [3088] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if_in_compound_statement, 5), + [3090] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if_in_compound_statement, 5), + [3092] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_compound_statement, 5), + [3094] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_compound_statement, 5), + [3096] = {.count = 1, .reusable = false}, SHIFT(1093), + [3098] = {.count = 1, .reusable = true}, SHIFT(1094), + [3100] = {.count = 1, .reusable = true}, SHIFT(1095), + [3102] = {.count = 1, .reusable = false}, SHIFT(1095), + [3104] = {.count = 1, .reusable = true}, SHIFT(1096), + [3106] = {.count = 1, .reusable = true}, REDUCE(sym_if_statement, 5), + [3108] = {.count = 1, .reusable = false}, REDUCE(sym_if_statement, 5), + [3110] = {.count = 1, .reusable = true}, SHIFT(1098), + [3112] = {.count = 1, .reusable = false}, SHIFT(1099), + [3114] = {.count = 1, .reusable = true}, SHIFT(1100), + [3116] = {.count = 1, .reusable = true}, SHIFT(1101), + [3118] = {.count = 1, .reusable = false}, SHIFT(1101), + [3120] = {.count = 1, .reusable = true}, SHIFT(1102), + [3122] = {.count = 1, .reusable = true}, SHIFT(1103), + [3124] = {.count = 1, .reusable = false}, SHIFT(1103), + [3126] = {.count = 1, .reusable = true}, SHIFT(1104), + [3128] = {.count = 1, .reusable = true}, SHIFT(1105), + [3130] = {.count = 1, .reusable = false}, SHIFT(1105), + [3132] = {.count = 1, .reusable = true}, SHIFT(1107), + [3134] = {.count = 1, .reusable = true}, SHIFT(1109), + [3136] = {.count = 1, .reusable = false}, SHIFT(1109), + [3138] = {.count = 1, .reusable = true}, SHIFT(1110), + [3140] = {.count = 1, .reusable = true}, SHIFT(1111), + [3142] = {.count = 1, .reusable = true}, SHIFT(1112), + [3144] = {.count = 1, .reusable = true}, SHIFT(1113), + [3146] = {.count = 1, .reusable = false}, SHIFT(1113), + [3148] = {.count = 1, .reusable = true}, SHIFT(1115), + [3150] = {.count = 1, .reusable = false}, SHIFT(1115), + [3152] = {.count = 1, .reusable = true}, SHIFT(1119), + [3154] = {.count = 1, .reusable = false}, SHIFT(1119), + [3156] = {.count = 1, .reusable = true}, SHIFT(1120), + [3158] = {.count = 1, .reusable = true}, SHIFT(1122), + [3160] = {.count = 1, .reusable = true}, SHIFT(1123), + [3162] = {.count = 1, .reusable = false}, SHIFT(1124), + [3164] = {.count = 1, .reusable = true}, SHIFT(1126), + [3166] = {.count = 1, .reusable = true}, SHIFT(1128), + [3168] = {.count = 1, .reusable = true}, SHIFT(1129), + [3170] = {.count = 1, .reusable = false}, SHIFT(1129), + [3172] = {.count = 1, .reusable = true}, SHIFT(1130), + [3174] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_elif_in_compound_statement, 4), + [3176] = {.count = 1, .reusable = true}, SHIFT(1132), + [3178] = {.count = 1, .reusable = false}, SHIFT(1133), + [3180] = {.count = 1, .reusable = true}, SHIFT(1134), + [3182] = {.count = 1, .reusable = true}, SHIFT(1135), + [3184] = {.count = 1, .reusable = false}, SHIFT(1135), + [3186] = {.count = 1, .reusable = true}, SHIFT(1137), + [3188] = {.count = 1, .reusable = false}, SHIFT(1137), + [3190] = {.count = 1, .reusable = true}, SHIFT(1139), + [3192] = {.count = 1, .reusable = true}, SHIFT(1140), + [3194] = {.count = 1, .reusable = false}, SHIFT(1140), + [3196] = {.count = 1, .reusable = true}, SHIFT(1141), + [3198] = {.count = 1, .reusable = true}, SHIFT(1142), + [3200] = {.count = 1, .reusable = false}, SHIFT(1142), + [3202] = {.count = 1, .reusable = true}, SHIFT(1143), + [3204] = {.count = 1, .reusable = true}, SHIFT(1144), + [3206] = {.count = 1, .reusable = false}, SHIFT(1144), + [3208] = {.count = 1, .reusable = true}, SHIFT(1145), + [3210] = {.count = 1, .reusable = true}, SHIFT(1146), + [3212] = {.count = 1, .reusable = false}, SHIFT(1146), + [3214] = {.count = 1, .reusable = true}, SHIFT(1147), + [3216] = {.count = 1, .reusable = true}, SHIFT(1148), + [3218] = {.count = 1, .reusable = true}, SHIFT(1149), + [3220] = {.count = 1, .reusable = false}, SHIFT(1149), + [3222] = {.count = 1, .reusable = true}, SHIFT(1150), + [3224] = {.count = 1, .reusable = true}, SHIFT(1151), + [3226] = {.count = 1, .reusable = true}, SHIFT(1153), + [3228] = {.count = 1, .reusable = false}, SHIFT(1153), + [3230] = {.count = 1, .reusable = true}, SHIFT(1154), + [3232] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 6), + [3234] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 6), + [3236] = {.count = 1, .reusable = true}, SHIFT(1156), + [3238] = {.count = 1, .reusable = true}, SHIFT(1158), + [3240] = {.count = 1, .reusable = false}, SHIFT(1158), + [3242] = {.count = 1, .reusable = true}, SHIFT(1159), + [3244] = {.count = 1, .reusable = true}, SHIFT(1160), + [3246] = {.count = 1, .reusable = true}, SHIFT(1162), + [3248] = {.count = 1, .reusable = false}, SHIFT(1163), + [3250] = {.count = 1, .reusable = true}, SHIFT(1164), + [3252] = {.count = 1, .reusable = true}, SHIFT(1165), + [3254] = {.count = 1, .reusable = false}, SHIFT(1165), + [3256] = {.count = 1, .reusable = true}, SHIFT(1167), + [3258] = {.count = 1, .reusable = false}, SHIFT(1167), + [3260] = {.count = 1, .reusable = true}, SHIFT(1169), + [3262] = {.count = 1, .reusable = true}, SHIFT(1170), + [3264] = {.count = 1, .reusable = false}, SHIFT(1170), + [3266] = {.count = 1, .reusable = true}, SHIFT(1171), + [3268] = {.count = 1, .reusable = true}, SHIFT(1172), + [3270] = {.count = 1, .reusable = false}, SHIFT(1172), + [3272] = {.count = 1, .reusable = false}, SHIFT(1173), + [3274] = {.count = 1, .reusable = true}, SHIFT(1174), + [3276] = {.count = 1, .reusable = true}, SHIFT(1175), + [3278] = {.count = 1, .reusable = false}, SHIFT(1175), + [3280] = {.count = 1, .reusable = true}, SHIFT(1176), + [3282] = {.count = 1, .reusable = true}, SHIFT(1177), + [3284] = {.count = 1, .reusable = true}, SHIFT(1179), + [3286] = {.count = 1, .reusable = true}, SHIFT(1181), + [3288] = {.count = 1, .reusable = false}, SHIFT(1181), + [3290] = {.count = 1, .reusable = true}, SHIFT(1182), + [3292] = {.count = 1, .reusable = true}, SHIFT(1183), + [3294] = {.count = 1, .reusable = true}, SHIFT(1185), + [3296] = {.count = 1, .reusable = false}, SHIFT(1185), + [3298] = {.count = 1, .reusable = true}, SHIFT(1186), + [3300] = {.count = 1, .reusable = true}, SHIFT(1187), + [3302] = {.count = 1, .reusable = true}, SHIFT(1188), + [3304] = {.count = 1, .reusable = false}, SHIFT(1188), + [3306] = {.count = 1, .reusable = true}, SHIFT(1189), + [3308] = {.count = 1, .reusable = true}, SHIFT(1190), + [3310] = {.count = 1, .reusable = false}, SHIFT(1190), + [3312] = {.count = 1, .reusable = true}, SHIFT(1191), + [3314] = {.count = 1, .reusable = true}, SHIFT(1193), + [3316] = {.count = 1, .reusable = false}, SHIFT(1193), + [3318] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 7), + [3320] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 7), + [3322] = {.count = 1, .reusable = true}, SHIFT(1195), + [3324] = {.count = 1, .reusable = false}, SHIFT(1197), + [3326] = {.count = 1, .reusable = true}, SHIFT(1198), + [3328] = {.count = 1, .reusable = true}, SHIFT(1199), + [3330] = {.count = 1, .reusable = false}, SHIFT(1199), + [3332] = {.count = 1, .reusable = true}, SHIFT(1200), + [3334] = {.count = 1, .reusable = true}, SHIFT(1201), + [3336] = {.count = 1, .reusable = true}, SHIFT(1203), + [3338] = {.count = 1, .reusable = true}, SHIFT(1205), + [3340] = {.count = 1, .reusable = false}, SHIFT(1205), + [3342] = {.count = 1, .reusable = true}, SHIFT(1206), + [3344] = {.count = 1, .reusable = true}, SHIFT(1207), + [3346] = {.count = 1, .reusable = true}, SHIFT(1208), + [3348] = {.count = 1, .reusable = false}, SHIFT(1208), + [3350] = {.count = 1, .reusable = true}, SHIFT(1209), + [3352] = {.count = 1, .reusable = true}, SHIFT(1210), + [3354] = {.count = 1, .reusable = false}, SHIFT(1210), + [3356] = {.count = 1, .reusable = true}, SHIFT(1212), + [3358] = {.count = 1, .reusable = true}, SHIFT(1214), + [3360] = {.count = 1, .reusable = false}, SHIFT(1214), + [3362] = {.count = 1, .reusable = true}, SHIFT(1215), + [3364] = {.count = 1, .reusable = true}, SHIFT(1217), + [3366] = {.count = 1, .reusable = false}, SHIFT(1217), + [3368] = {.count = 1, .reusable = true}, SHIFT(1218), + [3370] = {.count = 1, .reusable = true}, SHIFT(1220), + [3372] = {.count = 1, .reusable = false}, SHIFT(1220), + [3374] = {.count = 1, .reusable = true}, SHIFT(1221), + [3376] = {.count = 1, .reusable = true}, SHIFT(1222), + [3378] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 8), + [3380] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 8), + [3382] = {.count = 1, .reusable = true}, SHIFT(1225), + [3384] = {.count = 1, .reusable = true}, SHIFT(1226), + [3386] = {.count = 1, .reusable = true}, SHIFT(1227), + [3388] = {.count = 1, .reusable = false}, SHIFT(1227), + [3390] = {.count = 1, .reusable = true}, SHIFT(1228), + [3392] = {.count = 1, .reusable = true}, SHIFT(1229), + [3394] = {.count = 1, .reusable = false}, SHIFT(1229), + [3396] = {.count = 1, .reusable = true}, SHIFT(1231), + [3398] = {.count = 1, .reusable = true}, SHIFT(1233), + [3400] = {.count = 1, .reusable = false}, SHIFT(1233), + [3402] = {.count = 1, .reusable = true}, SHIFT(1234), + [3404] = {.count = 1, .reusable = true}, SHIFT(1236), + [3406] = {.count = 1, .reusable = false}, SHIFT(1236), + [3408] = {.count = 1, .reusable = true}, SHIFT(1237), + [3410] = {.count = 1, .reusable = true}, SHIFT(1239), + [3412] = {.count = 1, .reusable = true}, SHIFT(1241), + [3414] = {.count = 1, .reusable = true}, SHIFT(1243), + [3416] = {.count = 1, .reusable = true}, SHIFT(1245), + [3418] = {.count = 1, .reusable = false}, SHIFT(1245), + [3420] = {.count = 1, .reusable = true}, SHIFT(1246), + [3422] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 9), + [3424] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 9), + [3426] = {.count = 1, .reusable = true}, SHIFT(1248), + [3428] = {.count = 1, .reusable = true}, SHIFT(1250), + [3430] = {.count = 1, .reusable = false}, SHIFT(1250), + [3432] = {.count = 1, .reusable = true}, SHIFT(1251), + [3434] = {.count = 1, .reusable = true}, SHIFT(1253), + [3436] = {.count = 1, .reusable = true}, SHIFT(1255), + [3438] = {.count = 1, .reusable = true}, SHIFT(1257), + [3440] = {.count = 1, .reusable = false}, SHIFT(1257), + [3442] = {.count = 1, .reusable = true}, SHIFT(1259), + [3444] = {.count = 1, .reusable = true}, SHIFT(1260), + [3446] = {.count = 1, .reusable = true}, SHIFT(1261), + [3448] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 10), + [3450] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 10), + [3452] = {.count = 1, .reusable = true}, SHIFT(1263), + [3454] = {.count = 1, .reusable = true}, SHIFT(1265), + [3456] = {.count = 1, .reusable = false}, SHIFT(1265), + [3458] = {.count = 1, .reusable = true}, SHIFT(1267), + [3460] = {.count = 1, .reusable = true}, SHIFT(1268), + [3462] = {.count = 1, .reusable = true}, SHIFT(1271), + [3464] = {.count = 1, .reusable = true}, SHIFT(1272), + [3466] = {.count = 1, .reusable = true}, SHIFT(1275), + [3468] = {.count = 1, .reusable = true}, SHIFT(1276), }; #ifdef _WIN32